summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2023-10-22 21:47:20 +0200
committerYuval Adam <_@yuv.al>2023-10-22 21:47:20 +0200
commitaf2fe66f4869fe72eef77d2754f1c2fce7e2868c (patch)
treed94a3361bd5d2920a5de1f3ae54c75bef543206c
parent26f746ae0b6285f3584c4dd571ae9c0da49bd062 (diff)
Implement cities build
-rw-r--r--pakarlib/build.py27
-rw-r--r--pakarlib/data/build/cities.json1
2 files changed, 28 insertions, 0 deletions
diff --git a/pakarlib/build.py b/pakarlib/build.py
new file mode 100644
index 0000000..3cb8c67
--- /dev/null
+++ b/pakarlib/build.py
@@ -0,0 +1,27 @@
+import json
+
+from collections import defaultdict
+from pathlib import Path
+
+DATA_DIR = Path(__file__).parent / "data"
+
+def build_cities():
+ print("Building cities...")
+ LANGS = ["he", "ar", "en", "ru"]
+ LANG_FIELDS = ["label", "mixname"]
+
+ d = defaultdict(dict)
+
+ for lang in LANGS:
+ with open(DATA_DIR / "cities"/ f"{lang}.json", "r") as f:
+ cities = json.load(f)
+ for city in cities:
+ for field in LANG_FIELDS:
+ city[f"{field}_{lang}"] = city.pop(field)
+ d[city["value"]].update(city)
+
+ with open(DATA_DIR / "build"/ "cities.json", "w") as f:
+ f.write(json.dumps(list(d.values())))
+
+if __name__ == "__main__":
+ build_cities()
diff --git a/pakarlib/data/build/cities.json b/pakarlib/data/build/cities.json
new file mode 100644
index 0000000..7bdae95
--- /dev/null
+++ b/pakarlib/data/build/cities.json
@@ -0,0 +1 @@
+[{"value": "00492CC4C22CD69EF443F7C0CA84FEAC", "id": "337", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d2\u05df \u05d9\u05d1\u05e0\u05d4", "mixname_he": "\u05d2\u05df \u05d9\u05d1\u05e0\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u0627\u0646 \u064a\u0641\u0646\u0647", "mixname_ar": "\u062c\u0627\u0646 \u064a\u0641\u0646\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Gan Yavne", "mixname_en": "Gan Yavne | <span>Lachish</span>", "label_ru": "\u0413\u0430\u043d \u042f\u0432\u043d\u0435", "mixname_ru": "\u0413\u0430\u043d \u042f\u0432\u043d\u0435 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "00D71D61E60593F47A81AEDF4E761A76", "id": "533", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d9\u05e4\u05ea\u05d7", "mixname_he": "\u05d9\u05e4\u05ea\u05d7 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u064a\u0641\u062a\u0627\u062d", "mixname_ar": "\u064a\u0641\u062a\u0627\u062d | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Iftach", "mixname_en": "Iftach | <span>Confrontation Line</span>", "label_ru": "\u0418\u0444\u0442\u0430\u0445", "mixname_ru": "\u0418\u0444\u0442\u0430\u0445 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "01067AE82392F4D460A153B7199F7E6C", "id": "541", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05d9\u05e8\u05d3\u05e0\u05d4", "mixname_he": "\u05d9\u05e8\u05d3\u05e0\u05d4 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u064a\u0627\u0631\u062f\u064a\u0646\u0627", "mixname_ar": "\u064a\u0627\u0631\u062f\u064a\u0646\u0627 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Yardena", "mixname_en": "Yardena | <span>Beit She'an Valley</span>", "label_ru": "\u042f\u0440\u0434\u0435\u043d\u0430", "mixname_ru": "\u042f\u0440\u0434\u0435\u043d\u0430 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "0108304DE5EB4B88CF383031164DCDB6", "id": "791", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05de\u05e2\u05e0\u05d9\u05ea", "mixname_he": "\u05de\u05e2\u05e0\u05d9\u05ea | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0645\u0639\u0646\u064a\u062a", "mixname_ar": "\u0645\u0639\u0646\u064a\u062a | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Ma'anit", "mixname_en": "Ma'anit | <span>Menashe</span>", "label_ru": "\u041c\u0430\u0430\u043d\u0438\u0442", "mixname_ru": "\u041c\u0430\u0430\u043d\u0438\u0442 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "010D42193435626EB91BCCC98D5CE879", "id": "164", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d1\u05d0\u05e8\u05d9", "mixname_he": "\u05d1\u05d0\u05e8\u05d9 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0628\u0626\u064a\u0631\u064a", "mixname_ar": "\u0628\u0626\u064a\u0631\u064a | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Be'eri", "mixname_en": "Be'eri | <span>Gaza Envelope</span>", "label_ru": "\u0411\u0435\u044d\u0440\u0438", "mixname_ru": "\u0411\u0435\u044d\u0440\u0438 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "014D8777FBDE8DEA4D92CFD3E88C1EE9", "id": "275", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2'\u05dc\u05d2'\u05d5\u05dc\u05d9\u05d4", "mixname_he": "\u05d2'\u05dc\u05d2'\u05d5\u05dc\u05d9\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0644\u062c\u0648\u0644\u064a\u0647", "mixname_ar": "\u062c\u0644\u062c\u0648\u0644\u064a\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Jaljulia", "mixname_en": "Jaljulia | <span>Sharon</span>", "label_ru": "\u0414\u0436\u0430\u043b\u044c\u0434\u0436\u0443\u043b\u0438\u044f", "mixname_ru": "\u0414\u0436\u0430\u043b\u044c\u0434\u0436\u0443\u043b\u0438\u044f | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "015611BC97577DF78172D12CFE01593C", "id": "1099", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05e7\u05d3\u05de\u05d4", "mixname_he": "\u05e7\u05d3\u05de\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u064a\u062f\u0645\u0627", "mixname_ar": "\u0643\u064a\u062f\u0645\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kedma", "mixname_en": "Kedma | <span>Lachish</span>", "label_ru": "\u041a\u0435\u0434\u043c\u0430", "mixname_ru": "\u041a\u0435\u0434\u043c\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "01898F2D6682D762D06E37AC0FF69BC7", "id": "496", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d9\u05d1\u05d5\u05dc", "mixname_he": "\u05d9\u05d1\u05d5\u05dc | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u064a\u0628\u0648\u0644", "mixname_ar": "\u064a\u0628\u0648\u0644 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Yevul", "mixname_en": "Yevul | <span>Gaza Envelope</span>", "label_ru": "\u0419\u0435\u0432\u0443\u043b\u044c", "mixname_ru": "\u0419\u0435\u0432\u0443\u043b\u044c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "01B2D095729A4A565374F43EBCB9C66D", "id": "260", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05e8\u05d8\u05e2\u05d4", "mixname_he": "\u05d1\u05e8\u05d8\u05e2\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0628\u0631\u0637\u0639\u0647", "mixname_ar": "\u0628\u0631\u0637\u0639\u0647 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Bart'a", "mixname_en": "Bart'a | <span>Wadi Ara</span>", "label_ru": "\u0411\u0430\u0440\u0442\u0430", "mixname_ru": "\u0411\u0430\u0440\u0442\u0430 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "01C149C05F7C8A8B02C900C7CA24B75B", "id": "137", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05e4\u05e8\u05ea", "mixname_he": "\u05d0\u05e4\u05e8\u05ea | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0625\u0641\u0631\u0627\u062a", "mixname_ar": "\u0625\u0641\u0631\u0627\u062a | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Efrat", "mixname_en": "Efrat | <span>Yehuda</span>", "label_ru": "\u042d\u0444\u0440\u0430\u0442", "mixname_ru": "\u042d\u0444\u0440\u0430\u0442 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "0263E460EDF99BD7A7415F638813999A", "id": "832", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05de\u05e9\u05de\u05e8\u05ea", "mixname_he": "\u05de\u05e9\u05de\u05e8\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0634\u0645\u0648\u0631\u062a", "mixname_ar": "\u0645\u0634\u0645\u0648\u0631\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Mishmeret", "mixname_en": "Mishmeret | <span>Sharon</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0435\u0440\u0435\u0442", "mixname_ru": "\u041c\u0438\u0448\u043c\u0435\u0440\u0435\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "02714FB19040FF274C4807E57ABBC26C", "id": "1069", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e4\u05e8\u05d5\u05d3", "mixname_he": "\u05e4\u05e8\u05d5\u05d3 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0641\u0631\u0648\u062f", "mixname_ar": "\u0641\u0631\u0648\u062f | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Farod", "mixname_en": "Farod | <span>Upper Galilee</span>", "label_ru": "\u0424\u0430\u0440\u043e\u0434", "mixname_ru": "\u0424\u0430\u0440\u043e\u0434 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "02A28AEF396616462A6857137497B373", "id": "654", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05db\u05e4\u05e8 \u05ea\u05e4\u05d5\u05d7", "mixname_he": "\u05db\u05e4\u05e8 \u05ea\u05e4\u05d5\u05d7 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062a\u0628\u0648\u0627\u062d", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062a\u0628\u0648\u0627\u062d | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Kfar Tapuach", "mixname_en": "Kfar Tapuach | <span>Shomron</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0422\u0430\u043f\u0443\u0430\u0445", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0422\u0430\u043f\u0443\u0430\u0445 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "02D9839DEEC9CB9F39A85BA990364930", "id": "257", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d1\u05e8\u05d5\u05db\u05d9\u05df", "mixname_he": "\u05d1\u05e8\u05d5\u05db\u05d9\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0631\u0648\u062e\u064a\u0646", "mixname_ar": "\u0628\u0631\u0648\u062e\u064a\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Brukhin", "mixname_en": "Brukhin | <span>Shomron</span>", "label_ru": "\u0411\u0440\u0443\u0445\u0438\u043d", "mixname_ru": "\u0411\u0440\u0443\u0445\u0438\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "02FD6B5B7A94E1A3C8A4A6D9CE9A1239", "id": "1104", "areaid": 9, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e7\u05d3\u05e9 \u05d1\u05e8\u05e0\u05e2", "mixname_he": "\u05e7\u05d3\u05e9 \u05d1\u05e8\u05e0\u05e2 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0643\u062f\u064a\u0634 \u0628\u0631\u0646\u064a\u0639", "mixname_ar": "\u0643\u062f\u064a\u0634 \u0628\u0631\u0646\u064a\u0639 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Kadesh Barneah", "mixname_en": "Kadesh Barneah | <span>South Negev</span>", "label_ru": "\u041a\u0430\u0434\u0435\u0448 \u0411\u0430\u0440\u043d\u0435\u0430", "mixname_ru": "\u041a\u0430\u0434\u0435\u0448 \u0411\u0430\u0440\u043d\u0435\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "02FFBD4503D153FE45DB580CB1709A06", "id": "1108", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e7\u05d9\u05d3\u05d4", "mixname_he": "\u05e7\u05d9\u05d3\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u064a\u062f\u0647", "mixname_ar": "\u0643\u064a\u062f\u0647 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Kida", "mixname_en": "Kida | <span>Shomron</span>", "label_ru": "\u041a\u0438\u0434\u0430", "mixname_ru": "\u041a\u0438\u0434\u0430 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "038367C8CE63D8D7301EDB914D430063", "id": "39", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d5\u05e8\u05e0\u05d9\u05dd", "mixname_he": "\u05d0\u05d5\u05e8\u05e0\u05d9\u05dd | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0623\u0648\u0631\u0646\u064a\u0645", "mixname_ar": "\u0623\u0648\u0631\u0646\u064a\u0645 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Oranim", "mixname_en": "Oranim | <span>HaAmakim</span>", "label_ru": "\u041e\u0440\u0430\u043d\u0438\u043c", "mixname_ru": "\u041e\u0440\u0430\u043d\u0438\u043c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "038A535F8EA514B48D1E202F984D1E2F", "id": "1254", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05e9\u05e2\u05e8 \u05d0\u05e4\u05e8\u05d9\u05dd", "mixname_he": "\u05e9\u05e2\u05e8 \u05d0\u05e4\u05e8\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0634\u0627\u0639\u0631 \u0625\u0641\u0631\u0627\u064a\u0645", "mixname_ar": "\u0634\u0627\u0639\u0631 \u0625\u0641\u0631\u0627\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Sha'ar Efraim", "mixname_en": "Sha'ar Efraim | <span>Sharon</span>", "label_ru": "\u0428\u0430\u0430\u0440 \u042d\u0444\u0440\u0430\u0438\u043c", "mixname_ru": "\u0428\u0430\u0430\u0440 \u042d\u0444\u0440\u0430\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "03C06B66BD6291632E77B5ACF87D7D0C", "id": "61", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e0\u05e9\u05e8 - \u05e8\u05de\u05dc\u05d4", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e0\u05e9\u05e8 - \u05e8\u05de\u05dc\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0646\u064a\u0634\u0631 (\u0627\u0644\u0631\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0646\u064a\u0634\u0631 (\u0627\u0644\u0631\u0645 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Nesher Industrial Zone (Ramla)", "mixname_en": "Nesher Industrial Zone (Ramla) | <span>HaShfela</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041d\u0435\u0448\u0435\u0440 (\u0420\u0430\u043c\u043b\u0430)", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041d\u0435\u0448\u0435\u0440 (\u0420\u0430\u043c\u043b\u0430) | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "03D518104A74B487D642500BF607942D", "id": "351", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d2\u05e2\u05ea\u05d5\u05df", "mixname_he": "\u05d2\u05e2\u05ea\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062c\u0639\u062a\u0648\u0646", "mixname_ar": "\u062c\u0639\u062a\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ga'aton", "mixname_en": "Ga'aton | <span>Confrontation Line</span>", "label_ru": "\u0413\u0430\u0430\u0442\u043e\u043d", "mixname_ru": "\u0413\u0430\u0430\u0442\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "03E9165907303A43FCB0A9ECCB64A774", "id": "602", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05e1", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05e1 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0647\u0633", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0647\u0633 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Hess", "mixname_en": "Kfar Hess | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0425\u0435\u0441", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0425\u0435\u0441 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "0411E32E4929446FDC084561E6F9B9CC", "id": "1187", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05e8\u05e9\u05e4\u05d5\u05df", "mixname_he": "\u05e8\u05e9\u05e4\u05d5\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0631\u0634\u0628\u0648\u0646", "mixname_ar": "\u0631\u0634\u0628\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Rishpon", "mixname_en": "Rishpon | <span>Sharon</span>", "label_ru": "\u0420\u0438\u0448\u043f\u043e\u043d", "mixname_ru": "\u0420\u0438\u0448\u043f\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "0412B9D2AFB96436F384E186024AE0A5", "id": "698", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05de\u05d1\u05e7\u05d9\u05e2\u05d9\u05dd", "mixname_he": "\u05de\u05d1\u05e7\u05d9\u05e2\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u0641\u0643\u064a\u0639\u064a\u0645", "mixname_ar": "\u0645\u0641\u0643\u064a\u0639\u064a\u0645 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Mavki'im", "mixname_en": "Mavki'im | <span>West Lachish</span>", "label_ru": "\u041c\u0430\u0432\u043a\u0438\u0438\u043c", "mixname_ru": "\u041c\u0430\u0432\u043a\u0438\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "0429648D81A92B463A201D5EF7FF991C", "id": "344", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d2\u05e0\u05d9 \u05d4\u05d3\u05e8", "mixname_he": "\u05d2\u05e0\u05d9 \u05d4\u05d3\u05e8 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u0627\u0646\u064a \u0647\u062f\u0627\u0631", "mixname_ar": "\u062c\u0627\u0646\u064a \u0647\u062f\u0627\u0631 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ganei Hadar", "mixname_en": "Ganei Hadar | <span>HaShfela</span>", "label_ru": "\u0413\u0430\u043d\u0435\u0439 \u0425\u0430\u0434\u0430\u0440", "mixname_ru": "\u0413\u0430\u043d\u0435\u0439 \u0425\u0430\u0434\u0430\u0440 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "04EF339238DF1ED497370E9D02256B82", "id": "1015", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0440\u0435\u0434\u043d\u044f\u044f \u0410\u0440\u0430\u0432\u0430", "label_he": "\u05e2\u05d9\u05e8 \u05d0\u05d5\u05d1\u05d5\u05ea", "mixname_he": "\u05e2\u05d9\u05e8 \u05d0\u05d5\u05d1\u05d5\u05ea | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0639\u064a\u0631 \u0623\u0648\u0641\u0648\u062a", "mixname_ar": "\u0639\u064a\u0631 \u0623\u0648\u0641\u0648\u062a | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Ir Ovot", "mixname_en": "Ir Ovot | <span>Arava</span>", "label_ru": "\u0418\u0440 \u041e\u0432\u043e\u0442", "mixname_ru": "\u0418\u0440 \u041e\u0432\u043e\u0442 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "05023D27578C7F9ADBF54D19917E9911", "id": "550", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d9\u05e9\u05e8\u05e9", "mixname_he": "\u05d9\u05e9\u05e8\u05e9 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u064a\u0634\u0631\u0634", "mixname_ar": "\u064a\u0634\u0631\u0634 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Yashresh", "mixname_en": "Yashresh | <span>HaShfela</span>", "label_ru": "\u042f\u0448\u0440\u0435\u0448", "mixname_ru": "\u042f\u0448\u0440\u0435\u0448 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "050351041FA0F285AAF889A0E8F48846", "id": "1325", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d9\u05e2\u05dc", "mixname_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d9\u05e2\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u0644\u062f\u0627\u0646 \u064a\u0627\u0639\u064a\u0644", "mixname_ar": "\u0628\u0644\u062f\u0627\u0646 \u064a\u0627\u0639\u064a\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Yael Settlements", "mixname_en": "Yael Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u042f\u044d\u043b\u044c", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u042f\u044d\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "0505F015C3724F852FF32D6627D75C81", "id": "767", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05de\u05e2\u05d1\u05e8\u05d5\u05ea", "mixname_he": "\u05de\u05e2\u05d1\u05e8\u05d5\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0639\u0641\u0631\u0648\u062a", "mixname_ar": "\u0645\u0639\u0641\u0631\u0648\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ma'abarot", "mixname_en": "Ma'abarot | <span>Sharon</span>", "label_ru": "\u041c\u0430\u0430\u0431\u043e\u0440\u043e\u0442", "mixname_ru": "\u041c\u0430\u0430\u0431\u043e\u0440\u043e\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "0544846A8E9B54A70AB6CAB51BD70E89", "id": "186", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05d4\u05dc\u05d5\u05d9", "mixname_he": "\u05d1\u05d9\u05ea \u05d4\u05dc\u05d5\u05d9 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0647\u0644\u064a\u0641\u064a", "mixname_ar": "\u0628\u064a\u062a \u0647\u0644\u064a\u0641\u064a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Beit HaLevi", "mixname_en": "Beit HaLevi | <span>Sharon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u041b\u0435\u0432\u0438", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u041b\u0435\u0432\u0438 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "056ADAFB16D77E47E4FFC439EA5D3351", "id": "218", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05d1\u05d9\u05ea \u05e2\u05d5\u05d1\u05d3", "mixname_he": "\u05d1\u05d9\u05ea \u05e2\u05d5\u05d1\u05d3 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u0639\u0648\u0641\u064a\u062f", "mixname_ar": "\u0628\u064a\u062a \u0639\u0648\u0641\u064a\u062f | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Beit Oved", "mixname_en": "Beit Oved | <span>HaShfela</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u041e\u0432\u0435\u0434", "mixname_ru": "\u0411\u0435\u0439\u0442 \u041e\u0432\u0435\u0434 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "0592B150C9FC18B0D5A236C931CAE31C", "id": "956", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e2\u05d1\u05d3\u05ea", "mixname_he": "\u05e2\u05d1\u05d3\u05ea | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0639\u0628\u062f\u0627\u062a", "mixname_ar": "\u0639\u0628\u062f\u0627\u062a | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Ovdat", "mixname_en": "Ovdat | <span>South Negev</span>", "label_ru": "\u041e\u0432\u0434\u0430\u0442", "mixname_ru": "\u041e\u0432\u0434\u0430\u0442 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "05ADB9C93BEDCC3AFBF0783175AEFBDC", "id": "274", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d2'\u05d5\u05dc\u05d9\u05e1", "mixname_he": "\u05d2'\u05d5\u05dc\u05d9\u05e1 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062c\u0648\u0644\u0633", "mixname_ar": "\u062c\u0648\u0644\u0633 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Julis", "mixname_en": "Julis | <span>Upper Galilee</span>", "label_ru": "\u0414\u0436\u0443\u043b\u0438\u0441", "mixname_ru": "\u0414\u0436\u0443\u043b\u0438\u0441 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "05B4E7589307167ED9843EE12731EAE8", "id": "1241", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05e9\u05dc\u05d5\u05d5\u05d4", "mixname_he": "\u05e9\u05dc\u05d5\u05d5\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0634\u0644\u0641\u0627\u0647", "mixname_ar": "\u0634\u0644\u0641\u0627\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Shalva", "mixname_en": "Shalva | <span>Lachish</span>", "label_ru": "\u0428\u0430\u043b\u0432\u0430", "mixname_ru": "\u0428\u0430\u043b\u0432\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "05DED6A84D6B7E5E65F50E2840591666", "id": "1010", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05e2\u05d9\u05df \u05e9\u05de\u05e8", "mixname_he": "\u05e2\u05d9\u05df \u05e9\u05de\u05e8 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0634\u064a\u0645\u0631", "mixname_ar": "\u0639\u064a\u0646 \u0634\u064a\u0645\u0631 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Ein Shemer", "mixname_en": "Ein Shemer | <span>Menashe</span>", "label_ru": "\u042d\u0439\u043d \u0428\u0435\u043c\u0435\u0440", "mixname_ru": "\u042d\u0439\u043d \u0428\u0435\u043c\u0435\u0440 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "05F1D69E1FC6E771DB2A93CEC6A2F2DC", "id": "1013", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e2\u05d9\u05e0\u05d1\u05e8", "mixname_he": "\u05e2\u05d9\u05e0\u05d1\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0639\u064a\u0646\u0628\u0627\u0631", "mixname_ar": "\u0639\u064a\u0646\u0628\u0627\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Inbar", "mixname_en": "Inbar | <span>Center Galilee</span>", "label_ru": "\u0418\u043d\u0431\u0430\u0440", "mixname_ru": "\u0418\u043d\u0431\u0430\u0440 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "0616D9B03326B061DB9FF89C6E49A468", "id": "6", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u043e\u043d\u0430", "label_he": "\u05d0\u05d1\u05d9\u05d0\u05dc", "mixname_he": "\u05d0\u05d1\u05d9\u05d0\u05dc | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0623\u0641\u064a\u0626\u064a\u0644", "mixname_ar": "\u0623\u0641\u064a\u0626\u064a\u0644 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Aviel", "mixname_en": "Aviel | <span>Menashe</span>", "label_ru": "\u0410\u0432\u0438\u044d\u043b\u044c", "mixname_ru": "\u0410\u0432\u0438\u044d\u043b\u044c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "068B1EC2A4DB0896DD71DBFB03C4AFD0", "id": "722", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05d5\u05e2\u05d0\u05d5\u05d5\u05d9\u05d4", "mixname_he": "\u05de\u05d5\u05e2\u05d0\u05d5\u05d5\u05d9\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u0639\u0627\u0648\u064a\u0629", "mixname_ar": "\u0645\u0639\u0627\u0648\u064a\u0629 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Mu'awiya", "mixname_en": "Mu'awiya | <span>Wadi Ara</span>", "label_ru": "\u041c\u0443\u0430\u0432\u0438\u044f", "mixname_ru": "\u041c\u0443\u0430\u0432\u0438\u044f | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "069D96CB601E4D605A11834E86CE68C8", "id": "983", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e2\u05d9\u05df \u05d1\u05d5\u05e7\u05e7", "mixname_he": "\u05e2\u05d9\u05df \u05d1\u05d5\u05e7\u05e7 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0639\u064a\u0646 \u0628\u0648\u0643\u0643", "mixname_ar": "\u0639\u064a\u0646 \u0628\u0648\u0643\u0643 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Ein Bokek", "mixname_en": "Ein Bokek | <span>Dead Sea</span>", "label_ru": "\u042d\u0439\u043d \u0411\u043e\u043a\u0435\u043a", "mixname_ru": "\u042d\u0439\u043d \u0411\u043e\u043a\u0435\u043a | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "06A382855B501C4A29512E7644846464", "id": "315", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d2\u05d3\u05e8\u05d4", "mixname_he": "\u05d2\u05d3\u05e8\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u062f\u064a\u0631\u0647", "mixname_ar": "\u062c\u062f\u064a\u0631\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Gdera", "mixname_en": "Gdera | <span>Lachish</span>", "label_ru": "\u0413\u0430\u0434\u0435\u0440\u0430", "mixname_ru": "\u0413\u0430\u0434\u0435\u0440\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "07361CA5B75BB12192E6B2A3C05A5EB5", "id": "1097", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e7\u05d3\u05d9\u05de\u05d4-\u05e6\u05d5\u05e8\u05df", "mixname_he": "\u05e7\u05d3\u05d9\u05de\u05d4-\u05e6\u05d5\u05e8\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u062f\u064a\u0645\u0627 \u062a\u0635\u0648\u0631\u0627\u0646", "mixname_ar": "\u0643\u062f\u064a\u0645\u0627 \u062a\u0635\u0648\u0631\u0627\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kadima - Zoran", "mixname_en": "Kadima - Zoran | <span>Sharon</span>", "label_ru": "\u041a\u0430\u0434\u0438\u043c\u0430-\u0426\u043e\u0440\u0430\u043d", "mixname_ru": "\u041a\u0430\u0434\u0438\u043c\u0430-\u0426\u043e\u0440\u0430\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "073B099A2C788FB21696EEA509F018A6", "id": "387", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d4\u05d5\u05d3\u05d9\u05d5\u05ea", "mixname_he": "\u05d4\u05d5\u05d3\u05d9\u05d5\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0647\u0648\u062f\u064a\u0648\u062a", "mixname_ar": "\u0647\u0648\u062f\u064a\u0648\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Hodayot", "mixname_en": "Hodayot | <span>Lower Galilee</span>", "label_ru": "\u0425\u043e\u0434\u0430\u0439\u043e\u0442", "mixname_ru": "\u0425\u043e\u0434\u0430\u0439\u043e\u0442 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "076CF05E5EBCB2CBB855C9E64D94222C", "id": "309", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d2\u05d1\u05e2\u05ea\u05d9", "mixname_he": "\u05d2\u05d1\u05e2\u05ea\u05d9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a\u064a", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a\u064a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Givati", "mixname_en": "Givati | <span>Lachish</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442\u0438", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442\u0438 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "076DA373723CF83F85F59C214B5510A0", "id": "350", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05d2\u05e2\u05e9", "mixname_he": "\u05d2\u05e2\u05e9 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0627\u0639\u0627\u0634", "mixname_ar": "\u062c\u0627\u0639\u0627\u0634 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ga'ash", "mixname_en": "Ga'ash | <span>Sharon</span>", "label_ru": "\u0413\u0430\u0430\u0448", "mixname_ru": "\u0413\u0430\u0430\u0448 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "077FA4C7368F3CA68620A446E2FA5EA9", "id": "395", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d4\u05de\u05e8\u05db\u05d6 \u05d4\u05d0\u05e7\u05d3\u05de\u05d9 \u05e8\u05d5\u05e4\u05d9\u05df", "mixname_he": "\u05d4\u05de\u05e8\u05db\u05d6 \u05d4\u05d0\u05e7\u05d3\u05de\u05d9 \u05e8\u05d5\u05e4\u05d9\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0631\u0643\u0632 \u0627\u0644\u0623\u0643\u0627\u062f\u064a\u0645\u064a \u0631\u0648\u0628\u064a\u0646", "mixname_ar": "\u0627\u0644\u0645\u0631\u0643\u0632 \u0627\u0644\u0623\u0643\u0627\u062f\u064a\u0645\u064a \u0631\u0648\u0628\u064a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ruppin Academic Center", "mixname_en": "Ruppin Academic Center | <span>Sharon</span>", "label_ru": "\u0410\u043a\u0430\u0434\u0435\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0446\u0435\u043d\u0442\u0440 \u0420\u0443\u043f\u0438\u043d", "mixname_ru": "\u0410\u043a\u0430\u0434\u0435\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0446\u0435\u043d\u0442\u0440 \u0420\u0443\u043f\u0438\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "079EE9F581A427AA3C72BBB8628E7B3B", "id": "546", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d0\u05d5\u05de\u05df", "mixname_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d0\u05d5\u05de\u05df | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u064a\u0634\u0648\u0641\u064a \u0623\u0645\u0627\u0646", "mixname_ar": "\u064a\u0634\u0648\u0641\u064a \u0623\u0645\u0627\u0646 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Amen Settlements", "mixname_en": "Amen Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0410\u043c\u0435\u043d", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0410\u043c\u0435\u043d | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "07E9690A560930F0D80D560C9F2597F9", "id": "1106", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e7\u05d5\u05e8\u05e0\u05d9\u05ea", "mixname_he": "\u05e7\u05d5\u05e8\u05e0\u05d9\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0643\u0648\u0631\u0646\u064a\u062a", "mixname_ar": "\u0643\u0648\u0631\u0646\u064a\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Koranit", "mixname_en": "Koranit | <span>Center Galilee</span>", "label_ru": "\u041a\u043e\u0440\u0430\u043d\u0438\u0442", "mixname_ru": "\u041a\u043e\u0440\u0430\u043d\u0438\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "08039F723C5C81B10FB16A3A87B17BE6", "id": "1067", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e4\u05e8\u05d3\u05e1 \u05d7\u05e0\u05d4-\u05db\u05e8\u05db\u05d5\u05e8", "mixname_he": "\u05e4\u05e8\u05d3\u05e1 \u05d7\u05e0\u05d4-\u05db\u05e8\u05db\u05d5\u05e8 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0628\u0631\u062f\u064a\u0633 \u062d\u0646\u0627", "mixname_ar": "\u0628\u0631\u062f\u064a\u0633 \u062d\u0646\u0627 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Pardes Hana - Karkur", "mixname_en": "Pardes Hana - Karkur | <span>Menashe</span>", "label_ru": "\u041f\u0430\u0440\u0434\u0435\u0441-\u0425\u0430\u043d\u0430 - \u041a\u0430\u0440\u043a\u0443\u0440", "mixname_ru": "\u041f\u0430\u0440\u0434\u0435\u0441-\u0425\u0430\u043d\u0430 - \u041a\u0430\u0440\u043a\u0443\u0440 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "0821F61A2DD66EFE7FAEC36658BE24E4", "id": "349", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d2\u05e0\u05d9\u05d2\u05e8", "mixname_he": "\u05d2\u05e0\u05d9\u05d2\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062c\u064a\u0646\u062c\u0627\u0631", "mixname_ar": "\u062c\u064a\u0646\u062c\u0627\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Genigar", "mixname_en": "Genigar | <span>HaAmakim</span>", "label_ru": "\u0413\u0435\u043d\u0438\u0433\u0430\u0440", "mixname_ru": "\u0413\u0435\u043d\u0438\u0433\u0430\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "086E2FE4E5D72490610BDF7436579D08", "id": "279", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d2\u05d0\u05d5\u05dc\u05d9 \u05ea\u05d9\u05de\u05df", "mixname_he": "\u05d2\u05d0\u05d5\u05dc\u05d9 \u05ea\u05d9\u05de\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0626\u0648\u0644\u064a \u062a\u064a\u0645\u0627\u0646", "mixname_ar": "\u062c\u0626\u0648\u0644\u064a \u062a\u064a\u0645\u0627\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Geulei Teiman", "mixname_en": "Geulei Teiman | <span>Sharon</span>", "label_ru": "\u0413\u0435\u0443\u043b\u0435\u0439 \u0422\u0435\u0439\u043c\u0430\u043d", "mixname_ru": "\u0413\u0435\u0443\u043b\u0435\u0439 \u0422\u0435\u0439\u043c\u0430\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "0890A684C4F7B203BDFE1DA42BB5C54B", "id": "1349", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05ea\u05e7\u05d5\u05de\u05d4", "mixname_he": "\u05ea\u05e7\u05d5\u05de\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062a\u0643\u0648\u0645\u0647", "mixname_ar": "\u062a\u0643\u0648\u0645\u0647 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Tkuma", "mixname_en": "Tkuma | <span>Gaza Envelope</span>", "label_ru": "\u0422\u043a\u0443\u043c\u0430", "mixname_ru": "\u0422\u043a\u0443\u043c\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "08A95DF3BD7834878FB33536357A4E33", "id": "366", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05d3\u05d5\u05e8", "mixname_he": "\u05d3\u05d5\u05e8 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u062f\u0648\u0631", "mixname_ar": "\u062f\u0648\u0631 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Dor", "mixname_en": "Dor | <span>HaCarmel</span>", "label_ru": "\u0414\u043e\u0440", "mixname_ru": "\u0414\u043e\u0440 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "08ADA149C9AE4852D31565A42237A297", "id": "734", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05de\u05d6\u05e8\u05e2\u05d4", "mixname_he": "\u05de\u05d6\u05e8\u05e2\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0645\u0632\u0631\u0639\u0629", "mixname_ar": "\u0645\u0632\u0631\u0639\u0629 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Mazra'a", "mixname_en": "Mazra'a | <span>Upper Galilee</span>", "label_ru": "\u041c\u0430\u0437\u0440\u0430", "mixname_ru": "\u041c\u0430\u0437\u0440\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "08B62AE7CE924E8C5358800B68A0AAD5", "id": "1268", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e9\u05e8\u05e9\u05e8\u05ea", "mixname_he": "\u05e9\u05e8\u05e9\u05e8\u05ea | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0634\u0631\u0634\u0631\u062a", "mixname_ar": "\u0634\u0631\u0634\u0631\u062a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Sharsheret", "mixname_en": "Sharsheret | <span>West Negev</span>", "label_ru": "\u0428\u0430\u0440\u0448\u0435\u0440\u0435\u0442", "mixname_ru": "\u0428\u0430\u0440\u0448\u0435\u0440\u0435\u0442 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "08EEAEA68BCD195E2F151DECD89130AF", "id": "1096", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e7\u05d3\u05d5\u05de\u05d9\u05dd", "mixname_he": "\u05e7\u05d3\u05d5\u05de\u05d9\u05dd | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u062f\u0648\u0645\u064a\u0645", "mixname_ar": "\u0643\u062f\u0648\u0645\u064a\u0645 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Kdumim", "mixname_en": "Kdumim | <span>Shomron</span>", "label_ru": "\u041a\u0434\u0443\u043c\u0438\u043c", "mixname_ru": "\u041a\u0434\u0443\u043c\u0438\u043c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "09707FC1E90E64F63A40FD286CBABDD9", "id": "130", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d0\u05de\u05e5", "mixname_he": "\u05d0\u05de\u05e5 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u0648\u0645\u062a\u0633", "mixname_ar": "\u0623\u0648\u0645\u062a\u0633 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Amatz", "mixname_en": "Amatz | <span>Sharon</span>", "label_ru": "\u0410\u043c\u0430\u0446", "mixname_ru": "\u0410\u043c\u0430\u0446 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "0973F5E49F48416DF841DC8BC067306A", "id": "1222", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e9\u05d4\u05dd", "mixname_he": "\u05e9\u05d4\u05dd | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0634\u0648\u0647\u0627\u0645", "mixname_ar": "\u0634\u0648\u0647\u0627\u0645 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Shoham", "mixname_en": "Shoham | <span>Yarkon</span>", "label_ru": "\u0428\u043e\u0445\u0430\u043c", "mixname_ru": "\u0428\u043e\u0445\u0430\u043c | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "09AC5E2B8C849D7AB34B4B10B722BC85", "id": "1298", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05ea\u05e2\u05d5\u05d6", "mixname_he": "\u05ea\u05e2\u05d5\u05d6 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0627\u0639\u0648\u0632", "mixname_ar": "\u062a\u0627\u0639\u0648\u0632 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Taoz", "mixname_en": "Taoz | <span>Shfelat Yehuda</span>", "label_ru": "\u0422\u0430\u043e\u0437", "mixname_ru": "\u0422\u0430\u043e\u0437 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "09CA094B8B28A62C0E1836480AEA3601", "id": "384", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d4\u05d3\u05e8 \u05e2\u05dd", "mixname_he": "\u05d4\u05d3\u05e8 \u05e2\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0647\u062f\u0627\u0631 \u0639\u0627\u0645", "mixname_ar": "\u0647\u062f\u0627\u0631 \u0639\u0627\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Hadar Am", "mixname_en": "Hadar Am | <span>Sharon</span>", "label_ru": "\u0425\u0430\u0434\u0430\u0440 \u0410\u043c", "mixname_ru": "\u0425\u0430\u0434\u0430\u0440 \u0410\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "09E1A0D629E977D7706C519BDDC87401", "id": "881", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05e0\u05d7\u05dc\u05d4", "mixname_he": "\u05e0\u05d7\u05dc\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u062d\u0627\u0644\u0627", "mixname_ar": "\u0646\u062d\u0627\u0644\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Nachla", "mixname_en": "Nachla | <span>Lachish</span>", "label_ru": "\u041d\u0430\u0445\u043b\u0430", "mixname_ru": "\u041d\u0430\u0445\u043b\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "0A2AD7ABA93E48F8A6F07047ACAB4FC8", "id": "1329", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "Gilboa Regional Council", "label_he": "\u05e0\u05d9\u05e8 \u05d9\u05e4\u05d4", "mixname_he": "\u05e0\u05d9\u05e8 \u05d9\u05e4\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_en": "Nir Yafeh", "mixname_en": "Nir Yafeh | <span>HaAmakim</span>"}, {"value": "0A9D91CB5BA04C5F742C95FAC88F1DFB", "id": "1051", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e4\u05d3\u05d9\u05d4", "mixname_he": "\u05e4\u05d3\u05d9\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0628\u0627\u062f\u064a\u0627", "mixname_ar": "\u0628\u0627\u062f\u064a\u0627 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Pdaya", "mixname_en": "Pdaya | <span>HaShfela</span>", "label_ru": "\u041f\u0434\u0430\u044f", "mixname_ru": "\u041f\u0434\u0430\u044f | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "0A9F551A1CD43E8520C8C81A2F72D8B4", "id": "878", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05e0\u05d5\u05e8\u05d9\u05ea", "mixname_he": "\u05e0\u05d5\u05e8\u05d9\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0646\u0648\u0631\u064a\u062a", "mixname_ar": "\u0646\u0648\u0631\u064a\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Nurit", "mixname_en": "Nurit | <span>HaAmakim</span>", "label_ru": "\u041d\u0443\u0440\u0438\u0442", "mixname_ru": "\u041d\u0443\u0440\u0438\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "0A9F9B6E4C3F0DADD5CB754B7132B4FE", "id": "869", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05e0\u05d5\u05e2\u05dd", "mixname_he": "\u05e0\u05d5\u05e2\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u0648\u0639\u0627\u0645", "mixname_ar": "\u0646\u0648\u0639\u0627\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Noam", "mixname_en": "Noam | <span>Lachish</span>", "label_ru": "\u041d\u043e\u0430\u043c", "mixname_ru": "\u041d\u043e\u0430\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "0AB57654A67F5593D747AB572974B7C1", "id": "339", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05d2\u05df \u05e9\u05d5\u05e8\u05e7", "mixname_he": "\u05d2\u05df \u05e9\u05d5\u05e8\u05e7 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u0627\u0646 \u0634\u0648\u0631\u0643", "mixname_ar": "\u062c\u0627\u0646 \u0634\u0648\u0631\u0643 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Gan Sorek", "mixname_en": "Gan Sorek | <span>HaShfela</span>", "label_ru": "\u0413\u0430\u043d \u0428\u043e\u0440\u0435\u043a", "mixname_ru": "\u0413\u0430\u043d \u0428\u043e\u0440\u0435\u043a | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "0B504B09C747D34EFD411CDCCFF0CE60", "id": "262", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d1\u05e8\u05e2\u05dd", "mixname_he": "\u05d1\u05e8\u05e2\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0628\u0631\u0639\u0627\u0645", "mixname_ar": "\u0628\u0631\u0639\u0627\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Baram", "mixname_en": "Baram | <span>Confrontation Line</span>", "label_ru": "\u0411\u0430\u0440\u0430\u043c", "mixname_ru": "\u0411\u0430\u0440\u0430\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "0B5F238C07EDB33F0E935B3088A253A8", "id": "493", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d8\u05de\u05e8\u05d4 \u05d1\u05d2\u05dc\u05d1\u05d5\u05e2", "mixname_he": "\u05d8\u05de\u05e8\u05d4 \u05d1\u05d2\u05dc\u05d1\u05d5\u05e2 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0637\u0645\u0631\u0647 (\u0627\u0644\u062c\u0644\u0628\u0648\u0639)", "mixname_ar": "\u0637\u0645\u0631\u0647 (\u0627\u0644\u062c\u0644\u0628\u0648\u0639) | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Tamra (Gilboa)", "mixname_en": "Tamra (Gilboa) | <span>HaAmakim</span>", "label_ru": "\u0422\u0430\u043c\u0440\u0430 (\u0413\u0438\u043b\u044c\u0431\u043e\u0430)", "mixname_ru": "\u0422\u0430\u043c\u0440\u0430 (\u0413\u0438\u043b\u044c\u0431\u043e\u0430) | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "0BFEA19601593697D1E1658FF2EDD821", "id": "264", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d1\u05e8\u05e7\u05df", "mixname_he": "\u05d1\u05e8\u05e7\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0631\u0643\u0627\u0646", "mixname_ar": "\u0628\u0631\u0643\u0627\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Barkan", "mixname_en": "Barkan | <span>Shomron</span>", "label_ru": "\u0411\u0430\u0440\u043a\u0430\u043d", "mixname_ru": "\u0411\u0430\u0440\u043a\u0430\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "0C588BF16EF26DCFB2C27C4E10E2C778", "id": "78", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05ea\u05e8\u05d3\u05d9\u05d5\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05ea\u05e8\u05d3\u05d9\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u0631\u062f\u064a\u0648\u0646", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u0631\u062f\u064a\u0648\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Teradion Industrial Zone", "mixname_en": "Teradion Industrial Zone | <span>Center Galilee</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0422\u0435\u0440\u0430\u0434\u0438\u043e\u043d", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0422\u0435\u0440\u0430\u0434\u0438\u043e\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "0C7B04BE705F7DC839257509EBB68F17", "id": "615", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05db\u05e4\u05e8 \u05d7\u05e8\u05d5\u05d1", "mixname_he": "\u05db\u05e4\u05e8 \u05d7\u05e8\u05d5\u05d1 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0643\u0641\u0631 \u062d\u0631\u0648\u0628", "mixname_ar": "\u0643\u0641\u0631 \u062d\u0631\u0648\u0628 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Kfar Haruv", "mixname_en": "Kfar Haruv | <span>South Golan</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0440\u0443\u0432", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0440\u0443\u0432 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "0C8370B3F96B541C8B6F6490DF9823CF", "id": "921", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e0\u05e2\u05de\u05d4", "mixname_he": "\u05e0\u05e2\u05de\u05d4 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0646\u0639\u0645\u0627\u0647", "mixname_ar": "\u0646\u0639\u0645\u0627\u0647 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Na'ama", "mixname_en": "Na'ama | <span>Bika'a</span>", "label_ru": "\u041d\u0430\u0430\u043c\u0430", "mixname_ru": "\u041d\u0430\u0430\u043c\u0430 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "0D07A8CC6DB197004C22FA3E38CC198C", "id": "618", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05d9\u05d3\u05d9\u05d3\u05d9\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05d9\u05d3\u05d9\u05d3\u05d9\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u064a\u062f\u064a\u062f\u064a\u0627\u0647", "mixname_ar": "\u0643\u0641\u0631 \u064a\u062f\u064a\u062f\u064a\u0627\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Yedidia", "mixname_en": "Kfar Yedidia | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u042f\u0434\u0438\u0434\u044c\u044f", "mixname_ru": "\u041a\u0444\u0430\u0440 \u042f\u0434\u0438\u0434\u044c\u044f | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "0D08652C2B472B67A590D22A3FA132B7", "id": "1337", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "Maalot Yosef Regional Council", "label_he": "\u05e4\u05e7\u05d9\u05e2\u05d9\u05df \u05d4\u05d7\u05d3\u05e9\u05d4", "mixname_he": "\u05e4\u05e7\u05d9\u05e2\u05d9\u05df \u05d4\u05d7\u05d3\u05e9\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_en": "Peki'in HaHadasha", "mixname_en": "Peki'in HaHadasha | <span>Confrontation Line</span>"}, {"value": "0D302365FC94C1C42AEAF9F901383CEE", "id": "688", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05de\u05d0\u05d5\u05e8", "mixname_he": "\u05de\u05d0\u05d5\u05e8 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0645\u0626\u0648\u0631", "mixname_ar": "\u0645\u0626\u0648\u0631 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Maor", "mixname_en": "Maor | <span>Menashe</span>", "label_ru": "\u041c\u0430\u043e\u0440", "mixname_ru": "\u041c\u0430\u043e\u0440 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "0D7B82F97C6A584FD031B0D1DB6BC724", "id": "265", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d1\u05e8\u05e7\u05ea", "mixname_he": "\u05d1\u05e8\u05e7\u05ea | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0628\u0631\u0643\u0627\u062a", "mixname_ar": "\u0628\u0631\u0643\u0627\u062a | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Bareket", "mixname_en": "Bareket | <span>Yarkon</span>", "label_ru": "\u0411\u0430\u0440\u0435\u043a\u0435\u0442", "mixname_ru": "\u0411\u0430\u0440\u0435\u043a\u0435\u0442 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "0DA84EA8BEB9F56F4AA18D7D91892018", "id": "763", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05de\u05e1\u05d9\u05dc\u05ea \u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05de\u05e1\u05d9\u05dc\u05ea \u05e6\u05d9\u05d5\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0633\u064a\u0644\u0648\u062a \u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u0645\u0633\u064a\u0644\u0648\u062a \u062a\u0633\u064a\u0648\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Mesillat Zion", "mixname_en": "Mesillat Zion | <span>Shfelat Yehuda</span>", "label_ru": "\u041c\u0435\u0441\u0438\u043b\u0430\u0442 \u0426\u0438\u043e\u043d", "mixname_ru": "\u041c\u0435\u0441\u0438\u043b\u0430\u0442 \u0426\u0438\u043e\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "0DB69D0ACD57D79941B5D797374C319A", "id": "1211", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e9\u05d3\u05d4 \u05e0\u05d9\u05e6\u05df", "mixname_he": "\u05e9\u05d3\u05d4 \u05e0\u05d9\u05e6\u05df | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0646\u064a\u062a\u0633\u0627\u0646", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0646\u064a\u062a\u0633\u0627\u0646 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Sdeh Nitzan", "mixname_en": "Sdeh Nitzan | <span>Gaza Envelope</span>", "label_ru": "\u0421\u0434\u044d \u041d\u0438\u0446\u0430\u043d", "mixname_ru": "\u0421\u0434\u044d \u041d\u0438\u0446\u0430\u043d | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "0DB85DA53E4872E33E3EBA9BE13EE027", "id": "121", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u043b\u043e\u0442 \u041c\u0435\u0440\u0442\u0432\u043e\u0433\u043e \u043c\u043e\u0440\u044f", "label_he": "\u05d0\u05dc\u05de\u05d5\u05d2", "mixname_he": "\u05d0\u05dc\u05de\u05d5\u05d2 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0623\u0644\u0645\u0648\u063a", "mixname_ar": "\u0623\u0644\u0645\u0648\u063a | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Almog", "mixname_en": "Almog | <span>Dead Sea</span>", "label_ru": "\u0410\u043b\u044c\u043c\u043e\u0433", "mixname_ru": "\u0410\u043b\u044c\u043c\u043e\u0433 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "0E642B8CE4199BFDEB06C78DE76689F9", "id": "144", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d0\u05e9\u05d1\u05dc", "mixname_he": "\u05d0\u05e9\u05d1\u05dc | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0625\u0634\u0628\u0627\u0644", "mixname_ar": "\u0625\u0634\u0628\u0627\u0644 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Eshbal", "mixname_en": "Eshbal | <span>Center Galilee</span>", "label_ru": "\u042d\u0448\u0431\u0430\u043b\u044c", "mixname_ru": "\u042d\u0448\u0431\u0430\u043b\u044c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "0EE9B9E53824AD1805702F872E0B62ED", "id": "797", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05de\u05e6\u05dc\u05d9\u05d7", "mixname_he": "\u05de\u05e6\u05dc\u05d9\u05d7 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0645\u062a\u0633\u0644\u064a\u062d", "mixname_ar": "\u0645\u062a\u0633\u0644\u064a\u062d | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Matzliach", "mixname_en": "Matzliach | <span>HaShfela</span>", "label_ru": "\u041c\u0430\u0446\u043b\u0438\u0430\u0445", "mixname_ru": "\u041c\u0430\u0446\u043b\u0438\u0430\u0445 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "0EEC25A2F6366025CA107A2891155890", "id": "514", "areaid": 16, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d9\u05d5\u05e9\u05d9\u05d1\u05d9\u05d4", "mixname_he": "\u05d9\u05d5\u05e9\u05d9\u05d1\u05d9\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u064a\u0648\u0634\u064a\u0628\u064a\u0627\u0647", "mixname_ar": "\u064a\u0648\u0634\u064a\u0628\u064a\u0627\u0647 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Yoshivia", "mixname_en": "Yoshivia | <span>West Negev</span>", "label_ru": "\u0419\u043e\u0448\u0432\u0438\u044f", "mixname_ru": "\u0419\u043e\u0448\u0432\u0438\u044f | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "0EF0E4AC01F8F28A7FE35766FF26C090", "id": "714", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05de\u05d3\u05e8\u05da \u05e2\u05d5\u05d6", "mixname_he": "\u05de\u05d3\u05e8\u05da \u05e2\u05d5\u05d6 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u062f\u0631\u0627\u062e \u0639\u0648\u0632", "mixname_ar": "\u0645\u062f\u0631\u0627\u062e \u0639\u0648\u0632 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Midrach Oz", "mixname_en": "Midrach Oz | <span>Wadi Ara</span>", "label_ru": "\u041c\u0438\u0434\u0440\u0430\u0445 \u041e\u0437", "mixname_ru": "\u041c\u0438\u0434\u0440\u0430\u0445 \u041e\u0437 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "0F1488B4D86FFFD0BCD7E991F4FDB556", "id": "148", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d0\u05e9\u05d7\u05e8", "mixname_he": "\u05d0\u05e9\u05d7\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0625\u0634\u062d\u0627\u0631", "mixname_ar": "\u0625\u0634\u062d\u0627\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Eshchar", "mixname_en": "Eshchar | <span>Center Galilee</span>", "label_ru": "\u042d\u0448\u0445\u0430\u0440", "mixname_ru": "\u042d\u0448\u0445\u0430\u0440 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "0F39CAE6FBB782436E919FB4DD499DA6", "id": "325", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d2\u05d9\u05e0\u05d5\u05e1\u05e8", "mixname_he": "\u05d2\u05d9\u05e0\u05d5\u05e1\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u062c\u064a\u0646\u0648\u0633\u0627\u0631", "mixname_ar": "\u062c\u064a\u0646\u0648\u0633\u0627\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Ginosar", "mixname_en": "Ginosar | <span>Lower Galilee</span>", "label_ru": "\u0413\u0438\u043d\u043e\u0441\u0430\u0440", "mixname_ru": "\u0413\u0438\u043d\u043e\u0441\u0430\u0440 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "0FE77E4F1D15134D1DC8F7A240D3424E", "id": "1192", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e9\u05d1\u05d5\u05ea \u05e8\u05d7\u05dc", "mixname_he": "\u05e9\u05d1\u05d5\u05ea \u05e8\u05d7\u05dc | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0634\u0628\u0648\u062a \u0631\u062d\u0644", "mixname_ar": "\u0634\u0628\u0648\u062a \u0631\u062d\u0644 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Shvut Rachel", "mixname_en": "Shvut Rachel | <span>Shomron</span>", "label_ru": "\u0428\u0432\u0443\u0442 \u0420\u0430\u0445\u0435\u043b\u044c", "mixname_ru": "\u0428\u0432\u0443\u0442 \u0420\u0430\u0445\u0435\u043b\u044c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "1042A04CABFF47245A4746D9FFD1AC80", "id": "1198", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e9\u05d3\u05d4 \u05d0\u05d1\u05e8\u05d4\u05dd", "mixname_he": "\u05e9\u05d3\u05d4 \u05d0\u05d1\u05e8\u05d4\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0623\u0628\u0631\u0627\u0647\u0627\u0645", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0623\u0628\u0631\u0627\u0647\u0627\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Sdeh Avraham", "mixname_en": "Sdeh Avraham | <span>Gaza Envelope</span>", "label_ru": "\u0421\u0434\u044d \u0410\u0432\u0440\u0430\u0430\u043c", "mixname_ru": "\u0421\u0434\u044d \u0410\u0432\u0440\u0430\u0430\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "10B4B40A5C9EB8999035A6206F2506A7", "id": "1103", "areaid": 6, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e7\u05d3\u05e8\u05d9\u05dd", "mixname_he": "\u05e7\u05d3\u05e8\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u062f\u0627\u0631\u064a\u0645", "mixname_ar": "\u0643\u062f\u0627\u0631\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kadarim", "mixname_en": "Kadarim | <span>Upper Galilee</span>", "label_ru": "\u041a\u0430\u0434\u0430\u0440\u0438\u043c", "mixname_ru": "\u041a\u0430\u0434\u0430\u0440\u0438\u043c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "10C1B5D0B0293DA98CF273DF32F051BA", "id": "72", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e8\u05d5\u05ea\u05dd", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e8\u05d5\u05ea\u05dd | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0631\u0648\u062a\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0631\u0648\u062a\u0645 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Rotem Industrial Zone", "mixname_en": "Rotem Industrial Zone | <span>South Negev</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0420\u043e\u0442\u0435\u043c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0420\u043e\u0442\u0435\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "11738425F02008ADA36D781AE0B3A351", "id": "444", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d7\u05d5\u05e4\u05d9\u05ea", "mixname_he": "\u05d7\u05d5\u05e4\u05d9\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0648\u0641\u064a\u062a", "mixname_ar": "\u062d\u0648\u0641\u064a\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Hofit", "mixname_en": "Hofit | <span>Sharon</span>", "label_ru": "\u0425\u043e\u0444\u0438\u0442", "mixname_ru": "\u0425\u043e\u0444\u0438\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "11EEF94752B8A9650B10D28A4245E7E7", "id": "98", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05dc-\u05d7'\u05d5\u05d5\u05d0\u05dc\u05d3 \u05de\u05e2\u05e8\u05d1", "mixname_he": "\u05d0\u05dc-\u05d7'\u05d5\u05d5\u05d0\u05dc\u05d3 \u05de\u05e2\u05e8\u05d1 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u062e\u0648\u0627\u0644\u062f \u063a\u0631\u0628", "mixname_ar": "\u0627\u0644\u062e\u0648\u0627\u0644\u062f \u063a\u0631\u0628 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Al Khawaled - West", "mixname_en": "Al Khawaled - West | <span>HaAmakim</span>", "label_ru": "\u0410\u043b\u044c \u0425\u0430\u0432\u0430\u043b\u0435\u0434 - \u0437\u0430\u043f\u0430\u0434", "mixname_ru": "\u0410\u043b\u044c \u0425\u0430\u0432\u0430\u043b\u0435\u0434 - \u0437\u0430\u043f\u0430\u0434 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "11F877BBC493F0C3C3E6E4AE45D9A280", "id": "694", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05de\u05d1\u05d5\u05d0 \u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05dd", "mixname_he": "\u05de\u05d1\u05d5\u05d0 \u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05dd | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0627\u0641\u0648 \u0645\u0648\u062f\u064a\u0639\u064a\u0645", "mixname_ar": "\u0645\u0627\u0641\u0648 \u0645\u0648\u062f\u064a\u0639\u064a\u0645 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Mevo Modi'im", "mixname_en": "Mevo Modi'im | <span>Yarkon</span>", "label_ru": "\u041c\u0435\u0432\u043e \u041c\u043e\u0434\u0438\u0438\u043c", "mixname_ru": "\u041c\u0435\u0432\u043e \u041c\u043e\u0434\u0438\u0438\u043c | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "11F88E19E84E0BE88D3A2337ED941AFE", "id": "1031", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e2\u05e1\u05e4\u05d9\u05d0", "mixname_he": "\u05e2\u05e1\u05e4\u05d9\u05d0 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0639\u0633\u0641\u064a\u0627", "mixname_ar": "\u0639\u0633\u0641\u064a\u0627 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Isfiya", "mixname_en": "Isfiya | <span>HaCarmel</span>", "label_ru": "\u0418\u0441\u0444\u0438\u044f", "mixname_ru": "\u0418\u0441\u0444\u0438\u044f | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "121CC7554D79580C9FA75AAC56B3DB0C", "id": "76", "areaid": 6, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e9\u05e2\u05e8 \u05e0\u05e2\u05de\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e9\u05e2\u05e8 \u05e0\u05e2\u05de\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0634\u0627\u0639\u0631 \u0646\u0639\u0645\u0627", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0634\u0627\u0639\u0631 \u0646\u0639\u0645\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Sha'ar Na'aman Industrial Zone", "mixname_en": "Sha'ar Na'aman Industrial Zone | <span>Upper Galilee</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0428\u0430\u0430\u0440 \u041d\u0430\u0430\u043c\u0430\u043d", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0428\u0430\u0430\u0440 \u041d\u0430\u0430\u043c\u0430\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "1225EA0A46AD4D211D29EFC7C35E6A8C", "id": "1024", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e2\u05de\u05d9\u05e0\u05d3\u05d1", "mixname_he": "\u05e2\u05de\u05d9\u05e0\u05d3\u05d1 | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0639\u0645\u064a\u0646\u062f\u0627\u0641", "mixname_ar": "\u0639\u0645\u064a\u0646\u062f\u0627\u0641 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Aminadav", "mixname_en": "Aminadav | <span>Jerusalem</span>", "label_ru": "\u0410\u043c\u0438\u043d\u0430\u0434\u0430\u0432", "mixname_ru": "\u0410\u043c\u0438\u043d\u0430\u0434\u0430\u0432 | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "1228FA27037D518EB8A423DF1EF7B9F4", "id": "575", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e1\u05d9\u05d9\u05e4\u05d4", "mixname_he": "\u05db\u05e1\u05d9\u05d9\u05e4\u05d4 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0643\u0633\u064a\u0641\u0629", "mixname_ar": "\u0643\u0633\u064a\u0641\u0629 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Kuseife", "mixname_en": "Kuseife | <span>South Negev</span>", "label_ru": "\u041a\u0443\u0441\u0444\u0438\u044f", "mixname_ru": "\u041a\u0443\u0441\u0444\u0438\u044f | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "12345A233FE7ABB8F13F2E8DC72790B1", "id": "591", "areaid": 15, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05db\u05e4\u05e8 \u05d2\u05dc\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d2\u05dc\u05d9\u05dd | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062c\u0627\u0644\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062c\u0627\u0644\u064a\u0645 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Kfar Galim", "mixname_en": "Kfar Galim | <span>Menashe</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0413\u0430\u043b\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0413\u0430\u043b\u0438\u043c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "1237DB6EEA4A9BBF60A435C744D7A121", "id": "230", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d1\u05d9\u05ea \u05e9\u05e7\u05de\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05e9\u05e7\u05de\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u064a\u062a \u0634\u064a\u0643\u0645\u0627", "mixname_ar": "\u0628\u064a\u062a \u0634\u064a\u0643\u0645\u0627 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Beit Shikma", "mixname_en": "Beit Shikma | <span>West Lachish</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0428\u0438\u043a\u043c\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0428\u0438\u043a\u043c\u0430 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "125C6B19BA0BAC111D8401CBBB792486", "id": "507", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d9\u05d3 \u05e8\u05de\u05d1''\u05dd", "mixname_he": "\u05d9\u05d3 \u05e8\u05de\u05d1''\u05dd | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u064a\u062f \u0631\u0645\u0628\u0627\u0645", "mixname_ar": "\u064a\u062f \u0631\u0645\u0628\u0627\u0645 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Yad Rambam", "mixname_en": "Yad Rambam | <span>HaShfela</span>", "label_ru": "\u042f\u0434 \u0420\u0430\u043c\u0431\u0430\u043c", "mixname_ru": "\u042f\u0434 \u0420\u0430\u043c\u0431\u0430\u043c | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "12803225EFB3E1C3CC33DC2FA02A00A3", "id": "6024", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e0\u05ea\u05e0\u05d9\u05d4 - \u05de\u05e2\u05e8\u05d1", "mixname_he": "\u05e0\u05ea\u05e0\u05d9\u05d4 - \u05de\u05e2\u05e8\u05d1 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u062a\u0627\u0646\u064a\u0627- \u063a\u0631\u0628", "mixname_ar": "\u0646\u062a\u0627\u0646\u064a\u0627- \u063a\u0631\u0628 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Netanya - West", "mixname_en": "Netanya - West | <span>Sharon</span>", "label_ru": "\u041d\u0435\u0442\u0430\u043d\u0438\u044f - \u0437\u0430\u043f\u0430\u0434", "mixname_ru": "\u041d\u0435\u0442\u0430\u043d\u0438\u044f - \u0437\u0430\u043f\u0430\u0434 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "128067FCC96BFADD1D021FA916883503", "id": "701", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05de\u05d2'\u05d3\u05dc \u05e9\u05de\u05e1", "mixname_he": "\u05de\u05d2'\u05d3\u05dc \u05e9\u05de\u05e1 | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0645\u062c\u062f\u0644 \u0634\u0645\u0633", "mixname_ar": "\u0645\u062c\u062f\u0644 \u0634\u0645\u0633 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Majdal Shams", "mixname_en": "Majdal Shams | <span>North Golan</span>", "label_ru": "\u041c\u0430\u0434\u0436\u0434 \u0410\u043b\u044c \u0428\u0430\u043c\u0441", "mixname_ru": "\u041c\u0430\u0434\u0436\u0434 \u0410\u043b\u044c \u0428\u0430\u043c\u0441 | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "128D0BFFE7C20D19D8CD57E97321A959", "id": "479", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d8\u05d5\u05d1\u05d0 \u05d6\u05e0\u05d2\u05e8\u05d9\u05d4", "mixname_he": "\u05d8\u05d5\u05d1\u05d0 \u05d6\u05e0\u05d2\u05e8\u05d9\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0637\u0648\u0628\u0627 \u0627\u0644\u0632\u0646\u063a\u0631\u064a\u0629", "mixname_ar": "\u0637\u0648\u0628\u0627 \u0627\u0644\u0632\u0646\u063a\u0631\u064a\u0629 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Tuba-Zangariyye", "mixname_en": "Tuba-Zangariyye | <span>Upper Galilee</span>", "label_ru": "\u0422\u0443\u0431\u0430 \u0417\u0430\u043d\u0433\u0430\u0440\u0438\u044f", "mixname_ru": "\u0422\u0443\u0431\u0430 \u0417\u0430\u043d\u0433\u0430\u0440\u0438\u044f | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "12A598A6AB5592B814F5CF8C6A6E1B64", "id": "742", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05de\u05d9\u05e6\u05d3", "mixname_he": "\u05de\u05d9\u05e6\u05d3 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u064a\u062a\u0633\u0627\u062f", "mixname_ar": "\u0645\u064a\u062a\u0633\u0627\u062f | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Metzad", "mixname_en": "Metzad | <span>Yehuda</span>", "label_ru": "\u041c\u0435\u0446\u0430\u0434", "mixname_ru": "\u041c\u0435\u0446\u0430\u0434 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "12C8BA679377FCEC10AE9839B8084ED1", "id": "773", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05de\u05e2\u05d5\u05df \u05e6\u05d5\u05e4\u05d9\u05d4", "mixname_he": "\u05de\u05e2\u05d5\u05df \u05e6\u05d5\u05e4\u05d9\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u0643\u0627\u0646 \u0627\u0642\u0627\u0645\u0629 \u062a\u0633\u062a\u0648\u0641\u064a\u0627", "mixname_ar": "\u0645\u0643\u0627\u0646 \u0627\u0642\u0627\u0645\u0629 \u062a\u0633\u062a\u0648\u0641\u064a\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Maon Tzofia", "mixname_en": "Maon Tzofia | <span>Lachish</span>", "label_ru": "\u041c\u0430\u043e\u043d \u0426\u043e\u0444\u0438\u044f", "mixname_ru": "\u041c\u0430\u043e\u043d \u0426\u043e\u0444\u0438\u044f | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "12D8B85521EDCBD87FF99E80E3422471", "id": "110", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05d0\u05dc\u05d5\u05e0\u05d9 \u05d9\u05e6\u05d7\u05e7", "mixname_he": "\u05d0\u05dc\u05d5\u05e0\u05d9 \u05d9\u05e6\u05d7\u05e7 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0623\u0644\u0648\u0646\u064a \u064a\u062a\u0633\u062d\u0627\u0642", "mixname_ar": "\u0623\u0644\u0648\u0646\u064a \u064a\u062a\u0633\u062d\u0627\u0642 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Alonei Itzhak", "mixname_en": "Alonei Itzhak | <span>Menashe</span>", "label_ru": "\u0410\u043b\u043e\u043d\u0435\u0439 \u0418\u0446\u0445\u0430\u043a", "mixname_ru": "\u0410\u043b\u043e\u043d\u0435\u0439 \u0418\u0446\u0445\u0430\u043a | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "12E5A5F09CFAE51BCBBF7CE31243C720", "id": "786", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05e2\u05d9\u05e8\u05d5\u05df", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05e2\u05d9\u05e8\u05d5\u05df | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u0639\u064a\u0631\u0648\u0646", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u0639\u064a\u0631\u0648\u0646 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Ma'aleh Iron", "mixname_en": "Ma'aleh Iron | <span>Wadi Ara</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0418\u0440\u043e\u043d", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0418\u0440\u043e\u043d | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "1349C238343E1DEC3F82BD79BF46AE3C", "id": "20", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05d0\u05d3\u05d5\u05e8\u05d4", "mixname_he": "\u05d0\u05d3\u05d5\u05e8\u05d4 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u062f\u0648\u0631\u0627", "mixname_ar": "\u0627\u062f\u0648\u0631\u0627 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Adora", "mixname_en": "Adora | <span>Yehuda</span>", "label_ru": "\u0410\u0434\u043e\u0440\u0430", "mixname_ru": "\u0410\u0434\u043e\u0440\u0430 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "1359834F583DBB63FAF5142D5200E970", "id": "293", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d4\u05e9\u05dc\u05d5\u05e9\u05d4", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d4\u05e9\u05dc\u05d5\u05e9\u05d4 | <span>\u05d3\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0647\u0634\u0644\u0648\u0634\u0627", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0647\u0634\u0644\u0648\u0634\u0627 | <span>\u062f\u0627\u0646</span>", "label_en": "Givat HaShlosha", "mixname_en": "Givat HaShlosha | <span>Dan</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0445\u0430-\u0428\u043b\u043e\u0448\u0430", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0445\u0430-\u0428\u043b\u043e\u0448\u0430 | <span>\u0414\u0430\u043d</span>"}, {"value": "13952A314CD04FAF86EF452F647D43A4", "id": "840", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e0\u05d0\u05d5\u05ea \u05d2\u05d5\u05dc\u05df", "mixname_he": "\u05e0\u05d0\u05d5\u05ea \u05d2\u05d5\u05dc\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0646\u0624\u0648\u062a \u062c\u0648\u0644\u0627\u0646", "mixname_ar": "\u0646\u0624\u0648\u062a \u062c\u0648\u0644\u0627\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Neot Golan", "mixname_en": "Neot Golan | <span>South Golan</span>", "label_ru": "\u041d\u0435\u043e\u0442 \u0413\u043e\u043b\u0430\u043d", "mixname_ru": "\u041d\u0435\u043e\u0442 \u0413\u043e\u043b\u0430\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "13E6F60BA36CCD69AB2499B255DF77CB", "id": "890", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e0\u05d8\u05d5\u05e8", "mixname_he": "\u05e0\u05d8\u05d5\u05e8 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0646\u0627\u0637\u0648\u0631", "mixname_ar": "\u0646\u0627\u0637\u0648\u0631 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Natur", "mixname_en": "Natur | <span>South Golan</span>", "label_ru": "\u041d\u0430\u0442\u0443\u0440", "mixname_ru": "\u041d\u0430\u0442\u0443\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "144979D9F178E0926BC1F823FC2F5770", "id": "414", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d6\u05d9\u05e7\u05d9\u05dd", "mixname_he": "\u05d6\u05d9\u05e7\u05d9\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0632\u064a\u0643\u064a\u0645", "mixname_ar": "\u0632\u064a\u0643\u064a\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Zikim", "mixname_en": "Zikim | <span>Gaza Envelope</span>", "label_ru": "\u0417\u0438\u043a\u0438\u043c", "mixname_ru": "\u0417\u0438\u043a\u0438\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "14797EBE78A59368DB357704BF0287F5", "id": "1071", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e4\u05ea\u05d7 \u05ea\u05e7\u05d5\u05d5\u05d4", "mixname_he": "\u05e4\u05ea\u05d7 \u05ea\u05e7\u05d5\u05d5\u05d4 | <span>\u05d3\u05df</span>", "label_ar": "\u0628\u064a\u062a\u062d \u062a\u064a\u0643\u0641\u0627", "mixname_ar": "\u0628\u064a\u062a\u062d \u062a\u064a\u0643\u0641\u0627 | <span>\u062f\u0627\u0646</span>", "label_en": "Petach Tikva", "mixname_en": "Petach Tikva | <span>Dan</span>", "label_ru": "\u041f\u0435\u0442\u0430\u0445 \u0422\u0438\u043a\u0432\u0430", "mixname_ru": "\u041f\u0435\u0442\u0430\u0445 \u0422\u0438\u043a\u0432\u0430 | <span>\u0414\u0430\u043d</span>"}, {"value": "14B09B5B78F378701F8E828014C098A1", "id": "310", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05ea\u05d9\u05d9\u05dd", "mixname_he": "\u05d2\u05d1\u05e2\u05ea\u05d9\u05d9\u05dd | <span>\u05d3\u05df</span>", "label_ar": "\u062c\u0641\u0639\u062a\u0627\u064a\u0645", "mixname_ar": "\u062c\u0641\u0639\u062a\u0627\u064a\u0645 | <span>\u062f\u0627\u0646</span>", "label_en": "Givatayim", "mixname_en": "Givatayim | <span>Dan</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442\u0430\u0438\u043c", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442\u0430\u0438\u043c | <span>\u0414\u0430\u043d</span>"}, {"value": "151BBB034CA22E5A3BC2DDAFDE701CAD", "id": "455", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05d7\u05de\u05d3", "mixname_he": "\u05d7\u05de\u05d3 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062d\u064a\u0645\u062f", "mixname_ar": "\u062d\u064a\u0645\u062f | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Hemed", "mixname_en": "Hemed | <span>HaShfela</span>", "label_ru": "\u0425\u0435\u043c\u0435\u0434", "mixname_ru": "\u0425\u0435\u043c\u0435\u0434 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "156415B0B1A37FAAE48D961A6D24FC01", "id": "1316", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05de\u05d1\u05d8\u05d7\u05d9\u05dd, \u05e2\u05de\u05d9\u05e2\u05d5\u05d6, \u05d9\u05e9\u05e2", "mixname_he": "\u05de\u05d1\u05d8\u05d7\u05d9\u05dd, \u05e2\u05de\u05d9\u05e2\u05d5\u05d6, \u05d9\u05e9\u05e2 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0645\u0641\u062a\u0627\u062d\u064a\u0645\u060c \u0639\u0627\u0645\u064a\u0639\u0648\u0632\u060c \u064a\u064a\u0634\u0639", "mixname_ar": "\u0645\u0641\u062a\u0627\u062d\u064a\u0645\u060c \u0639\u0627\u0645\u064a\u0639\u0648\u0632\u060c \u064a\u064a\u0634\u0639 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Mivtachim Amioz Yesha", "mixname_en": "Mivtachim Amioz Yesha | <span>Gaza Envelope</span>", "label_ru": "\u041c\u0438\u0432\u0442\u0430\u0445\u0438\u043c \u0410\u043c\u0438\u043e\u0437 \u0419\u0435\u0448\u0430", "mixname_ru": "\u041c\u0438\u0432\u0442\u0430\u0445\u0438\u043c \u0410\u043c\u0438\u043e\u0437 \u0419\u0435\u0448\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "15C26538AB69209C12190E0846EBB20D", "id": "190", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d1\u05d9\u05ea \u05d4\u05e9\u05d9\u05d8\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05d4\u05e9\u05d9\u05d8\u05d4 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0647\u0634\u064a\u062a\u0627", "mixname_ar": "\u0628\u064a\u062a \u0647\u0634\u064a\u062a\u0627 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Beit HaShita", "mixname_en": "Beit HaShita | <span>Beit She'an Valley</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u0428\u0438\u0442\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u0428\u0438\u0442\u0430 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "15F5B670C421F05826F455A54C8A9A17", "id": "868", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05e9\u05dc\u05d5\u05dd", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05e9\u05dc\u05d5\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0634\u0627\u0644\u0648\u0645", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0634\u0627\u0644\u0648\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Neveh Shalom", "mixname_en": "Neveh Shalom | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u0428\u0430\u043b\u043e\u043c", "mixname_ru": "\u041d\u0435\u0432\u0435 \u0428\u0430\u043b\u043e\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "1601110AB9BBE29EE8320CAD797DCBD4", "id": "1312", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d7\u05d1\u05e6\u05dc\u05ea \u05d4\u05e9\u05e8\u05d5\u05df \u05d5\u05e6\u05d5\u05e7\u05d9 \u05d9\u05dd", "mixname_he": "\u05d7\u05d1\u05e6\u05dc\u05ea \u05d4\u05e9\u05e8\u05d5\u05df \u05d5\u05e6\u05d5\u05e7\u05d9 \u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0647\u0641\u0627\u062a\u0633\u064a\u0644\u064a\u062a \u0647\u0634\u0627\u0631\u0648\u0646", "mixname_ar": "\u0647\u0641\u0627\u062a\u0633\u064a\u0644\u064a\u062a \u0647\u0634\u0627\u0631\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Havatzelet HaSharon and Tzukei Yam", "mixname_en": "Havatzelet HaSharon and Tzukei Yam | <span>Sharon</span>", "label_ru": "\u0425\u0430\u0432\u0430\u0446\u0435\u043b\u0435\u0442 \u0430-\u0428\u0430\u0440\u043e\u043d \u0438 \u0426\u0443\u043a\u0435\u0439 \u042f", "mixname_ru": "\u0425\u0430\u0432\u0430\u0446\u0435\u043b\u0435\u0442 \u0430-\u0428\u0430\u0440\u043e\u043d \u0438 \u0426\u0443\u043a\u0435\u0439 \u042f | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "1622C8DCD0CCB57D87DD6C6C8CD95813", "id": "239", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042f\u0432\u043d\u0435", "label_he": "\u05d1\u05e0\u05d9 \u05d3\u05e8\u05d5\u05dd", "mixname_he": "\u05d1\u05e0\u05d9 \u05d3\u05e8\u05d5\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0646\u064a \u062f\u0631\u0648\u0645", "mixname_ar": "\u0628\u0646\u064a \u062f\u0631\u0648\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Bnei Darom", "mixname_en": "Bnei Darom | <span>Lachish</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0414\u0430\u0440\u043e\u043c", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0414\u0430\u0440\u043e\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "162FE45D88D0152F55C000DEEB02207D", "id": "147", "areaid": 5, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05e9\u05d3\u05d5\u05ea \u05d9\u05e2\u05e7\u05d1 \u05de\u05d0\u05d5\u05d7\u05d3", "mixname_he": "\u05d0\u05e9\u05d3\u05d5\u05ea \u05d9\u05e2\u05e7\u05d1 \u05de\u05d0\u05d5\u05d7\u05d3 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0623\u0634\u062f\u0648\u062a \u064a\u0639\u0642\u0648\u0628 \u0645\u0626\u0648\u062d\u0627\u062f", "mixname_ar": "\u0623\u0634\u062f\u0648\u062a \u064a\u0639\u0642\u0648\u0628 \u0645\u0626\u0648\u062d\u0627\u062f | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Ashdot Yaakov Meuhad", "mixname_en": "Ashdot Yaakov Meuhad | <span>South Golan</span>", "label_ru": "\u0410\u0448\u0434\u043e\u0442 \u042f\u0430\u043a\u043e\u0432 \u041c\u0435\u0443\u0445\u0430\u0434", "mixname_ru": "\u0410\u0448\u0434\u043e\u0442 \u042f\u0430\u043a\u043e\u0432 \u041c\u0435\u0443\u0445\u0430\u0434 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "1645EB75A6FD4D2B795463CCFEA9631B", "id": "419", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d6\u05de\u05e8\u05ea, \u05e9\u05d5\u05d1\u05d4", "mixname_he": "\u05d6\u05de\u05e8\u05ea, \u05e9\u05d5\u05d1\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0632\u064a\u0645\u0631\u0627\u062a \u0648\u0634\u0648\u0641\u0627", "mixname_ar": "\u0632\u064a\u0645\u0631\u0627\u062a \u0648\u0634\u0648\u0641\u0627 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Zimrat and Shuva", "mixname_en": "Zimrat and Shuva | <span>Gaza Envelope</span>", "label_ru": "\u0417\u0438\u043c\u0440\u0430\u0442 \u0438 \u0428\u0443\u0432\u0430", "mixname_ru": "\u0417\u0438\u043c\u0440\u0430\u0442 \u0438 \u0428\u0443\u0432\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "165CFB5E40474F7BBE3AD0FAC22331A0", "id": "622", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05d9\u05e1\u05d9\u05e3", "mixname_he": "\u05db\u05e4\u05e8 \u05d9\u05e1\u05d9\u05e3 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u064a\u0627\u0633\u064a\u0641", "mixname_ar": "\u0643\u0641\u0631 \u064a\u0627\u0633\u064a\u0641 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kfar Yassif", "mixname_en": "Kfar Yassif | <span>Upper Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u042f\u0441\u0438\u0444", "mixname_ru": "\u041a\u0444\u0430\u0440 \u042f\u0441\u0438\u0444 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "168E367406B908A5E605AA574BAA648B", "id": "739", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05de\u05d8\u05e2", "mixname_he": "\u05de\u05d8\u05e2 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0637\u0627\u0639", "mixname_ar": "\u0645\u0637\u0627\u0639 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Mata", "mixname_en": "Mata | <span>Shfelat Yehuda</span>", "label_ru": "\u041c\u0430\u0442\u0430", "mixname_ru": "\u041c\u0430\u0442\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "169CB8C2BACCB1118D919135402A3A12", "id": "1092", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e6\u05e4\u05ea", "mixname_he": "\u05e6\u05e4\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0635\u0641\u062f", "mixname_ar": "\u0635\u0641\u062f | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Safed", "mixname_en": "Safed | <span>Upper Galilee</span>", "label_ru": "\u0426\u0444\u0430\u0442", "mixname_ru": "\u0426\u0444\u0430\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "16BD87A7F5BA362F6953237671DD9831", "id": "338", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d2\u05df \u05e0\u05e8", "mixname_he": "\u05d2\u05df \u05e0\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062c\u0627\u0646 \u0646\u064a\u0631", "mixname_ar": "\u062c\u0627\u0646 \u0646\u064a\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Gan Ner", "mixname_en": "Gan Ner | <span>HaAmakim</span>", "label_ru": "\u0413\u0430\u043d \u041d\u0435\u0440", "mixname_ru": "\u0413\u0430\u043d \u041d\u0435\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "16EAA5A32E0E53A6034F2A0DBC73BCF9", "id": "624", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05db\u05de\u05d0", "mixname_he": "\u05db\u05e4\u05e8 \u05db\u05de\u05d0 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u0643\u0645\u0627", "mixname_ar": "\u0643\u0641\u0631 \u0643\u0645\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Kfar Kama", "mixname_en": "Kfar Kama | <span>Lower Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041a\u0430\u043c\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041a\u0430\u043c\u0430 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "172844DEDD94EF4CB8FAEF1F32F69072", "id": "243", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d1\u05e0\u05d9 \u05e2\u05d8\u05e8\u05d5\u05ea", "mixname_he": "\u05d1\u05e0\u05d9 \u05e2\u05d8\u05e8\u05d5\u05ea | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0628\u0646\u064a \u0639\u0637\u0627\u0631\u0648\u062a", "mixname_ar": "\u0628\u0646\u064a \u0639\u0637\u0627\u0631\u0648\u062a | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Bnei Atarot", "mixname_en": "Bnei Atarot | <span>Yarkon</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0410\u0442\u0430\u0440\u043e\u0442", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0410\u0442\u0430\u0440\u043e\u0442 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "1779864A78E093E8EB2C35A9F677BD16", "id": "480", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d8\u05d5\u05e8\u05e2\u05d0\u05df", "mixname_he": "\u05d8\u05d5\u05e8\u05e2\u05d0\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0637\u0631\u0639\u0627\u0646", "mixname_ar": "\u0637\u0631\u0639\u0627\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Turan", "mixname_en": "Turan | <span>Center Galilee</span>", "label_ru": "\u0422\u0443\u0440\u0430\u043d", "mixname_ru": "\u0422\u0443\u0440\u0430\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "17BE9E3003BD06D6EDE42266DB0DED4F", "id": "621", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05db\u05e4\u05e8 \u05d9\u05d7\u05d6\u05e7\u05d0\u05dc", "mixname_he": "\u05db\u05e4\u05e8 \u05d9\u05d7\u05d6\u05e7\u05d0\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0631 \u064a\u062d\u0632\u0643\u064a\u0644", "mixname_ar": "\u0643\u0641\u0631 \u064a\u062d\u0632\u0643\u064a\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Yechezkel", "mixname_en": "Kfar Yechezkel | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0418\u0445\u0435\u0437\u043a\u0438\u0435\u043b\u044c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0418\u0445\u0435\u0437\u043a\u0438\u0435\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "183ACDD2E3106160EF5D805EDCA68570", "id": "1041", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e2\u05e8\u05e2\u05e8\u05d4 \u05d1\u05e0\u05d2\u05d1", "mixname_he": "\u05e2\u05e8\u05e2\u05e8\u05d4 \u05d1\u05e0\u05d2\u05d1 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0639\u0631\u0639\u0631\u0629 \u0627\u0644\u0646\u0642\u0628", "mixname_ar": "\u0639\u0631\u0639\u0631\u0629 \u0627\u0644\u0646\u0642\u0628 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Ar'ara BaNegev", "mixname_en": "Ar'ara BaNegev | <span>South Negev</span>", "label_ru": "\u0410\u0440\u0430\u0440\u0430 \u0431\u0430 \u041d\u0435\u0433\u0435\u0432", "mixname_ru": "\u0410\u0440\u0430\u0440\u0430 \u0431\u0430 \u041d\u0435\u0433\u0435\u0432 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "18805D1605D15D19C498B27E797A44ED", "id": "97", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05db\u05e1\u05d0\u05dc", "mixname_he": "\u05d0\u05db\u05e1\u05d0\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0643\u0633\u0627\u0644", "mixname_ar": "\u0627\u0643\u0633\u0627\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Iksal", "mixname_en": "Iksal | <span>HaAmakim</span>", "label_ru": "\u0418\u043a\u0441\u0430\u043b\u044c", "mixname_ru": "\u0418\u043a\u0441\u0430\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "18B5588717A7C8D33E290EC0B6620148", "id": "766", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05de\u05e2'\u05d0\u05e8", "mixname_he": "\u05de\u05e2'\u05d0\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0627\u0644\u0645\u063a\u0627\u0631", "mixname_ar": "\u0627\u0644\u0645\u063a\u0627\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Maghar", "mixname_en": "Maghar | <span>Center Galilee</span>", "label_ru": "", "mixname_ru": " | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "18B6AC7D1E511A3A42B1ADF54B5DFB63", "id": "187", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05d1\u05d9\u05ea \u05d4\u05dc\u05dc", "mixname_he": "\u05d1\u05d9\u05ea \u05d4\u05dc\u05dc | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0628\u064a\u062a \u0647\u064a\u0644\u0644", "mixname_ar": "\u0628\u064a\u062a \u0647\u064a\u0644\u0644 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Beit Hillel", "mixname_en": "Beit Hillel | <span>Confrontation Line</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u0438\u043b\u0435\u043b\u044c", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u0438\u043b\u0435\u043b\u044c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "190D3A410A4CEC7B85AE35AA2A08D6D3", "id": "245", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05d1\u05e0\u05d9 \u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05d1\u05e0\u05d9 \u05e6\u05d9\u05d5\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0646\u064a \u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u0628\u0646\u064a \u062a\u0633\u064a\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Bnei Zion", "mixname_en": "Bnei Zion | <span>Sharon</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0426\u0438\u043e\u043d", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0426\u0438\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "1962483A63830AC7B843421C29BABB24", "id": "1114", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05e7\u05e6\u05d9\u05e8", "mixname_he": "\u05e7\u05e6\u05d9\u05e8 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0643\u062a\u0633\u064a\u0631", "mixname_ar": "\u0643\u062a\u0633\u064a\u0631 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Katzir", "mixname_en": "Katzir | <span>Wadi Ara</span>", "label_ru": "\u041a\u0430\u0446\u0438\u0440", "mixname_ru": "\u041a\u0430\u0446\u0438\u0440 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "197DEA757CAD9DD54B3534857B048EE3", "id": "772", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05de\u05e2\u05d5\u05df", "mixname_he": "\u05de\u05e2\u05d5\u05df | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0639\u0648\u0646", "mixname_ar": "\u0645\u0639\u0648\u0646 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ma'on", "mixname_en": "Ma'on | <span>Yehuda</span>", "label_ru": "\u041c\u0430\u043e\u043d", "mixname_ru": "\u041c\u0430\u043e\u043d | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "19C29BC919CEBD06864A646A043C7C72", "id": "506", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05d9\u05d3 \u05e0\u05ea\u05df", "mixname_he": "\u05d9\u05d3 \u05e0\u05ea\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u064a\u062f \u0646\u062a\u0627\u0646", "mixname_ar": "\u064a\u062f \u0646\u062a\u0627\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Yad Natan", "mixname_en": "Yad Natan | <span>Lachish</span>", "label_ru": "\u042f\u0434 \u041d\u0430\u0442\u0430\u043d", "mixname_ru": "\u042f\u0434 \u041d\u0430\u0442\u0430\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "19F005EEB65DE2BDE332E8E7337F50E5", "id": "741", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05de\u05d9\u05d9\u05e1\u05e8", "mixname_he": "\u05de\u05d9\u05d9\u05e1\u05e8 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u064a\u0633\u0631", "mixname_ar": "\u0645\u064a\u0633\u0631 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Meiser", "mixname_en": "Meiser | <span>Wadi Ara</span>", "label_ru": "\u041c\u0435\u0439\u0441\u0435\u0440", "mixname_ru": "\u041c\u0435\u0439\u0441\u0435\u0440 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "1A01066260BC7734BD06345F8052CD8F", "id": "83", "areaid": 6, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d0\u05d7\u05d9\u05d4\u05d5\u05d3", "mixname_he": "\u05d0\u05d7\u05d9\u05d4\u05d5\u05d3 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0623\u062d\u064a\u0647\u0648\u062f", "mixname_ar": "\u0623\u062d\u064a\u0647\u0648\u062f | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Achihud", "mixname_en": "Achihud | <span>Upper Galilee</span>", "label_ru": "\u0410\u0445\u0438\u0445\u0443\u0434", "mixname_ru": "\u0410\u0445\u0438\u0445\u0443\u0434 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "1A18CE9537AB39FA7197FDF7C21C4369", "id": "1271", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05ea\u05d0\u05e9\u05d5\u05e8", "mixname_he": "\u05ea\u05d0\u05e9\u05d5\u05e8 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u0627\u0634\u0648\u0631", "mixname_ar": "\u062a\u0627\u0634\u0648\u0631 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Ta'ashur", "mixname_en": "Ta'ashur | <span>West Negev</span>", "label_ru": "\u0422\u0430\u0430\u0448\u0443\u0440", "mixname_ru": "\u0422\u0430\u0430\u0448\u0443\u0440 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "1A27923935BAE028B18EBFE43603BBFD", "id": "1058", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e4\u05dc\u05da", "mixname_he": "\u05e4\u05dc\u05da | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u0644\u062e", "mixname_ar": "\u0628\u064a\u0644\u062e | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Pelekh", "mixname_en": "Pelekh | <span>Upper Galilee</span>", "label_ru": "\u041f\u0435\u043b\u0435\u0445", "mixname_ru": "\u041f\u0435\u043b\u0435\u0445 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "1A3425762A93EEC188E9DB3647A779FE", "id": "531", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d9\u05e4\u05d9\u05ea", "mixname_he": "\u05d9\u05e4\u05d9\u05ea | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u064a\u0627\u0641\u064a\u062a", "mixname_ar": "\u064a\u0627\u0641\u064a\u062a | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Yafit", "mixname_en": "Yafit | <span>Bika'a</span>", "label_ru": "\u042f\u0444\u0438\u0442", "mixname_ru": "\u042f\u0444\u0438\u0442 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "1A7717C0F6CA909CE35BEA1BB8A3D7DD", "id": "979", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e2\u05d9\u05dc\u05d5\u05d8", "mixname_he": "\u05e2\u05d9\u05dc\u05d5\u05d8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0639\u064a\u0644\u0648\u0637", "mixname_ar": "\u0639\u064a\u0644\u0648\u0637 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ilut", "mixname_en": "Ilut | <span>HaAmakim</span>", "label_ru": "\u0418\u043b\u0443\u0442", "mixname_ru": "\u0418\u043b\u0443\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "1A9653CC573E90DBFE707F03F5E45D51", "id": "134", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d0\u05e4\u05d9\u05e7", "mixname_he": "\u05d0\u05e4\u05d9\u05e7 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0623\u0641\u064a\u0643", "mixname_ar": "\u0623\u0641\u064a\u0643 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Afik", "mixname_en": "Afik | <span>South Golan</span>", "label_ru": "\u0410\u0444\u0438\u043a", "mixname_ru": "\u0410\u0444\u0438\u043a | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "1AB4F188C72B83473559FD9B2A7A663A", "id": "1358", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e7\u05e8\u05d9\u05d9\u05ea \u05d2\u05ea", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e7\u05e8\u05d9\u05d9\u05ea \u05d2\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0643\u0631\u064a\u0627\u062a \u062c\u0627\u062a", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0643\u0631\u064a\u0627\u062a \u062c\u0627\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Industrial area Kiryat Gat", "mixname_en": "Industrial area Kiryat Gat | <span>Lachish</span>", "label_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u041a\u0438\u0440\u044c\u044f\u0442 \u0413\u0430\u0442", "mixname_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u041a\u0438\u0440\u044c\u044f\u0442 \u0413\u0430\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "1B4962BBB773EDE064F1B6CE28157BB8", "id": "917", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e0\u05e1 \u05e2\u05de\u05d9\u05dd", "mixname_he": "\u05e0\u05e1 \u05e2\u05de\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0646\u0633 \u0639\u0627\u0645\u064a\u0645", "mixname_ar": "\u0646\u0633 \u0639\u0627\u0645\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Ness Amim", "mixname_en": "Ness Amim | <span>Upper Galilee</span>", "label_ru": "\u041d\u0435\u0441 \u0410\u043c\u043e\u0441", "mixname_ru": "\u041d\u0435\u0441 \u0410\u043c\u043e\u0441 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "1BA7A6472CB36A604865E1E664BCC6F5", "id": "1353", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05ea\u05d7\u05e0\u05ea \u05e8\u05db\u05d1\u05ea \u05db\u05e4\u05e8 \u05d9\u05d4\u05d5\u05e9\u05d5\u05e2", "mixname_he": "\u05ea\u05d7\u05e0\u05ea \u05e8\u05db\u05d1\u05ea \u05db\u05e4\u05e8 \u05d9\u05d4\u05d5\u05e9\u05d5\u05e2 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0645\u062d\u0637\u0629 \u0627\u0644\u0642\u0637\u0627\u0631 \u0643\u0641\u0627\u0631 \u064a\u0647\u0648\u0634\u0639", "mixname_ar": "\u0645\u062d\u0637\u0629 \u0627\u0644\u0642\u0637\u0627\u0631 \u0643\u0641\u0627\u0631 \u064a\u0647\u0648\u0634\u0639 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Yehoshua train station", "mixname_en": "Kfar Yehoshua train station | <span>HaAmakim</span>", "label_ru": "\u0416\u0414 \u0441\u0442\u0430\u043d\u0446\u0438\u044f \u041a\u0444\u0430\u0440 \u0415\u0448\u0443\u0430", "mixname_ru": "\u0416\u0414 \u0441\u0442\u0430\u043d\u0446\u0438\u044f \u041a\u0444\u0430\u0440 \u0415\u0448\u0443\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "1BDCFBC890349260F9F4192A3EB30F46", "id": "58", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05de\u05d1\u05d5\u05d0\u05d5\u05ea \u05d4\u05d2\u05dc\u05d1\u05d5\u05e2", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05de\u05d1\u05d5\u05d0\u05d5\u05ea \u05d4\u05d2\u05dc\u05d1\u05d5\u05e2 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u0628\u0624\u0648\u062a \u0647\u062c\u0644", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u0628\u0624\u0648\u062a \u0647\u062c\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Mevuot HaGilboa Industrial Zone", "mixname_en": "Mevuot HaGilboa Industrial Zone | <span>HaAmakim</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041c\u0435\u0432\u0443\u043e\u0442 \u0445\u0430-\u0413\u0438\u043b\u044c\u0431\u043e\u0430", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041c\u0435\u0432\u0443\u043e\u0442 \u0445\u0430-\u0413\u0438\u043b\u044c\u0431\u043e\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "1C6C0D5FC636284104D96F960C759F16", "id": "379", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d3\u05e7\u05dc", "mixname_he": "\u05d3\u05e7\u05dc | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062f\u064a\u0643\u0644", "mixname_ar": "\u062f\u064a\u0643\u0644 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Dekel", "mixname_en": "Dekel | <span>Gaza Envelope</span>", "label_ru": "\u0414\u0435\u043a\u0435\u043b\u044c", "mixname_ru": "\u0414\u0435\u043a\u0435\u043b\u044c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "1CA461791F39B18CE7B0A2E5FCC1BC52", "id": "41", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05d0\u05d5\u05e9\u05d4", "mixname_he": "\u05d0\u05d5\u05e9\u05d4 | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0623\u0648\u0634\u0629", "mixname_ar": "\u0623\u0648\u0634\u0629 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Usha", "mixname_en": "Usha | <span>HaMifratz</span>", "label_ru": "\u0423\u0448\u0430", "mixname_ru": "\u0423\u0448\u0430 | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "1D60351F5E53F0EC79C6ABCF5F29DE83", "id": "105", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05dc\u05d5\u05df \u05d4\u05d2\u05dc\u05d9\u05dc", "mixname_he": "\u05d0\u05dc\u05d5\u05df \u05d4\u05d2\u05dc\u05d9\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0623\u0644\u0648\u0646 \u0647\u062c\u0644\u064a\u0644", "mixname_ar": "\u0623\u0644\u0648\u0646 \u0647\u062c\u0644\u064a\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Alon HaGalil", "mixname_en": "Alon HaGalil | <span>HaAmakim</span>", "label_ru": "\u0410\u043b\u043e\u043d \u0430-\u0413\u0430\u043b\u0438\u043b\u044c", "mixname_ru": "\u0410\u043b\u043e\u043d \u0430-\u0413\u0430\u043b\u0438\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "1D93ECFAFDC0177E0347E322360BF668", "id": "776", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05de\u05e2\u05d9\u05d9\u05df \u05e6\u05d1\u05d9", "mixname_he": "\u05de\u05e2\u05d9\u05d9\u05df \u05e6\u05d1\u05d9 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0645\u0639\u064a\u0627\u0646 \u062a\u0633\u0641\u064a", "mixname_ar": "\u0645\u0639\u064a\u0627\u0646 \u062a\u0633\u0641\u064a | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Ma'ayan Zvi", "mixname_en": "Ma'ayan Zvi | <span>Menashe</span>", "label_ru": "\u041c\u0430\u0430\u044f\u043d \u0426\u0432\u0438", "mixname_ru": "\u041c\u0430\u0430\u044f\u043d \u0426\u0432\u0438 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "1DBCA19736A080669987BEC2A7E726C2", "id": "165", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d1\u05d5\u05e1\u05ea\u05df \u05d4\u05d2\u05dc\u05d9\u05dc", "mixname_he": "\u05d1\u05d5\u05e1\u05ea\u05df \u05d4\u05d2\u05dc\u05d9\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0628\u0633\u062a\u0627\u0646 \u0627\u0644\u062c\u0644\u064a\u0644", "mixname_ar": "\u0628\u0633\u062a\u0627\u0646 \u0627\u0644\u062c\u0644\u064a\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Bustan HaGalil", "mixname_en": "Bustan HaGalil | <span>Upper Galilee</span>", "label_ru": "\u0411\u0443\u0441\u0442\u0430\u043d \u0445\u0430-\u0413\u0430\u043b\u0438\u043b\u044c", "mixname_ru": "\u0411\u0443\u0441\u0442\u0430\u043d \u0445\u0430-\u0413\u0430\u043b\u0438\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "1E4A9F9FBB2793E506EE54A051188F4D", "id": "36", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d0\u05d5\u05e8\u05d5\u05ea", "mixname_he": "\u05d0\u05d5\u05e8\u05d5\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u0648\u0631\u0648\u062a", "mixname_ar": "\u0623\u0648\u0631\u0648\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Orot", "mixname_en": "Orot | <span>Lachish</span>", "label_ru": "\u041e\u0440\u043e\u0442", "mixname_ru": "\u041e\u0440\u043e\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "1EF686BA1D20A86E527298540341C28E", "id": "340", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0440\u0435\u043d\u0435\u0440", "label_he": "\u05d2\u05df \u05e9\u05dc\u05de\u05d4", "mixname_he": "\u05d2\u05df \u05e9\u05dc\u05de\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u0627\u0646 \u0634\u0644\u0648\u0645\u0648", "mixname_ar": "\u062c\u0627\u0646 \u0634\u0644\u0648\u0645\u0648 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Gan Shlomo", "mixname_en": "Gan Shlomo | <span>HaShfela</span>", "label_ru": "\u0413\u0430\u043d \u0428\u043b\u043e\u043c\u043e", "mixname_ru": "\u0413\u0430\u043d \u0428\u043b\u043e\u043c\u043e | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "1F269C6A67F71A6A46B5720BBB23DB2C", "id": "1372", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05d5\u05ea \u05d2\u05d5\u05e8\u05dc", "mixname_he": "\u05d2\u05d1\u05e2\u05d5\u05ea \u05d2\u05d5\u05e8\u05dc | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062c\u0628\u0639\u0648\u062a \u062c\u0648\u0631\u0627\u0644", "mixname_ar": "\u062c\u0628\u0639\u0648\u062a \u062c\u0648\u0631\u0627\u0644 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Givat Goral", "mixname_en": "Givat Goral | <span>Center Negev</span>", "label_ru": "\u0413\u0432\u0430\u043e\u0442 \u0413\u043e\u0440\u0430\u043b\u044c", "mixname_ru": "\u0413\u0432\u0430\u043e\u0442 \u0413\u043e\u0440\u0430\u043b\u044c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "1F28CC104E5174F54923718B0FD7BB88", "id": "1384", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d5\u05e8\u05d5\u05df \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d5\u05de\u05e1\u05d7\u05e8", "mixname_he": "\u05d0\u05d5\u05e8\u05d5\u05df \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d5\u05de\u05e1\u05d7\u05e8 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0623\u0648\u0631\u0648\u0646 \u0635\u0646\u0627\u0639\u0629 \u0648\u062a\u062c\u0627\u0631\u0629", "mixname_ar": "\u0623\u0648\u0631\u0648\u0646 \u0635\u0646\u0627\u0639\u0629 \u0648\u062a\u062c\u0627\u0631\u0629 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Oron Industrial Zone", "mixname_en": "Oron Industrial Zone | <span>South Negev</span>", "label_ru": "\u041e\u0440\u043e\u043d \u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u0438 \u0442\u043e\u0440\u0433\u043e\u0432\u043b\u044f", "mixname_ru": "\u041e\u0440\u043e\u043d \u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u0438 \u0442\u043e\u0440\u0433\u043e\u0432\u043b\u044f | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "1F8F1A5B42CEA5BABB097AB4A7389DD9", "id": "1253", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e9\u05e2\u05dc\u05d1\u05d9\u05dd", "mixname_he": "\u05e9\u05e2\u05dc\u05d1\u05d9\u05dd | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0634\u0639\u0644\u0628\u064a\u0645", "mixname_ar": "\u0634\u0639\u0644\u0628\u064a\u0645 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Sha'alabim", "mixname_en": "Sha'alabim | <span>Yarkon</span>", "label_ru": "\u0428\u0430\u0430\u043b\u0430\u0431\u0438\u043c", "mixname_ru": "\u0428\u0430\u0430\u043b\u0430\u0431\u0438\u043c | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "1FA0ECCDE6637D6BAF5AF39023CCF1D7", "id": "162", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d1\u05d0\u05e8\u05d5\u05ea \u05d9\u05e6\u05d7\u05e7", "mixname_he": "\u05d1\u05d0\u05e8\u05d5\u05ea \u05d9\u05e6\u05d7\u05e7 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0628\u0626\u0631\u0648\u062a \u064a\u062a\u0633\u062d\u0627\u0642", "mixname_ar": "\u0628\u0626\u0631\u0648\u062a \u064a\u062a\u0633\u062d\u0627\u0642 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Be'erot Itzhak", "mixname_en": "Be'erot Itzhak | <span>Yarkon</span>", "label_ru": "\u0411\u0435\u044d\u0440\u043e\u0442 \u0418\u0446\u0445\u0430\u043a", "mixname_ru": "\u0411\u0435\u044d\u0440\u043e\u0442 \u0418\u0446\u0445\u0430\u043a | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "1FBF65C3484B835F605B8E509CF52C45", "id": "699", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05d1\u05e9\u05e8\u05ea \u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05de\u05d1\u05e9\u05e8\u05ea \u05e6\u05d9\u05d5\u05df | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0645\u0628\u0631\u064a\u0634\u062a \u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u0645\u0628\u0631\u064a\u0634\u062a \u062a\u0633\u064a\u0648\u0646 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Mevasseret Zion", "mixname_en": "Mevasseret Zion | <span>Jerusalem</span>", "label_ru": "\u041c\u0435\u0432\u0430\u0441\u0435\u0440\u0435\u0442 \u0426\u0438\u043e\u043d", "mixname_ru": "\u041c\u0435\u0432\u0430\u0441\u0435\u0440\u0435\u0442 \u0426\u0438\u043e\u043d | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "1FD3EFF87DF9CE15E40422800DFF4A83", "id": "465", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d7\u05e6\u05d1", "mixname_he": "\u05d7\u05e6\u05d1 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062d\u064a\u062a\u0633\u0641", "mixname_ar": "\u062d\u064a\u062a\u0633\u0641 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Hatzav", "mixname_en": "Hatzav | <span>Lachish</span>", "label_ru": "\u0425\u0430\u0446\u0430\u0432", "mixname_ru": "\u0425\u0430\u0446\u0430\u0432 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "20742E751C78A6C82C5AF1DD42F2DC2A", "id": "476", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d7\u05e8\u05e9\u05d9\u05dd", "mixname_he": "\u05d7\u05e8\u05e9\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062d\u0648\u0631\u0627\u0634\u064a\u0645", "mixname_ar": "\u062d\u0648\u0631\u0627\u0634\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Harashim", "mixname_en": "Harashim | <span>Upper Galilee</span>", "label_ru": "\u0425\u0430\u0440\u0430\u0448\u0438\u043c", "mixname_ru": "\u0425\u0430\u0440\u0430\u0448\u0438\u043c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "20C0B212CB4A85AB765743BB2A748106", "id": "1348", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "", "label_he": "\u05de\u05d8\u05d5\u05d5\u05d7 \u05e0\u05d9\u05e8 \u05e2\u05dd", "mixname_he": "\u05de\u05d8\u05d5\u05d5\u05d7 \u05e0\u05d9\u05e8 \u05e2\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0633\u0627\u062d\u0629 \u0627\u0644\u0642\u0648\u0627\u0633 \u0646\u064a\u0631 \u0639\u0627\u0645", "mixname_ar": "\u0633\u0627\u062d\u0629 \u0627\u0644\u0642\u0648\u0627\u0633 \u0646\u064a\u0631 \u0639\u0627\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Nir- Um shooting range", "mixname_en": "Nir- Um shooting range | <span>Gaza Envelope</span>", "label_ru": "\u0422\u0438\u0440 \u041d\u0438\u0440-\u0410\u043c", "mixname_ru": "\u0422\u0438\u0440 \u041d\u0438\u0440-\u0410\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "20E82014154C28F67F32C73B46C44106", "id": "836", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05ea\u05d7\u05dd \u05e6\u05d5\u05de\u05ea \u05e9\u05d5\u05e7\u05ea", "mixname_he": "\u05de\u05ea\u05d7\u05dd \u05e6\u05d5\u05de\u05ea \u05e9\u05d5\u05e7\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0646\u0637\u0642\u0629 \u0645\u0641\u0631\u0642 \u0634\u0648\u0643\u0627\u062a", "mixname_ar": "\u0645\u0646\u0637\u0642\u0629 \u0645\u0641\u0631\u0642 \u0634\u0648\u0643\u0627\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Shoket Junction Center", "mixname_en": "Shoket Junction Center | <span>Center Negev</span>", "label_ru": "\u0426\u0435\u043d\u0442\u0440 \u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u0442\u043e\u043a \u0428\u043e\u043a\u0435\u0442", "mixname_ru": "\u0426\u0435\u043d\u0442\u0440 \u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u0442\u043e\u043a \u0428\u043e\u043a\u0435\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "20E9CE93D055545A9F498FCBAB07A636", "id": "1084", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e6\u05d5\u05e8 \u05e0\u05ea\u05df", "mixname_he": "\u05e6\u05d5\u05e8 \u05e0\u05ea\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0633\u0648\u0631 \u0646\u0627\u062a\u0627\u0646", "mixname_ar": "\u062a\u0633\u0648\u0631 \u0646\u0627\u062a\u0627\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tzur Natan", "mixname_en": "Tzur Natan | <span>Sharon</span>", "label_ru": "\u0426\u0443\u0440 \u041d\u0430\u0442\u0430\u043d", "mixname_ru": "\u0426\u0443\u0440 \u041d\u0430\u0442\u0430\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "210032669909D9B678F1BF8119AEB7EB", "id": "697", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05de\u05d1\u05d8\u05d7\u05d9\u05dd, \u05e2\u05de\u05d9\u05e2\u05d5\u05d6, \u05d9\u05e9\u05e2", "mixname_he": "\u05de\u05d1\u05d8\u05d7\u05d9\u05dd, \u05e2\u05de\u05d9\u05e2\u05d5\u05d6, \u05d9\u05e9\u05e2 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0645\u0641\u062a\u0627\u062d\u064a\u0645\u060c \u0639\u0627\u0645\u064a\u0639\u0648\u0632\u060c \u064a\u064a\u0634\u0639", "mixname_ar": "\u0645\u0641\u062a\u0627\u062d\u064a\u0645\u060c \u0639\u0627\u0645\u064a\u0639\u0648\u0632\u060c \u064a\u064a\u0634\u0639 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Mivtachim Amioz Yesha", "mixname_en": "Mivtachim Amioz Yesha | <span>Gaza Envelope</span>", "label_ru": "\u041c\u0438\u0432\u0442\u0430\u0445\u0438\u043c \u0410\u043c\u0438\u043e\u0437 \u0419\u0435\u0448\u0430", "mixname_ru": "\u041c\u0438\u0432\u0442\u0430\u0445\u0438\u043c \u0410\u043c\u0438\u043e\u0437 \u0419\u0435\u0448\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "215CC4EE9A9B9D7DFBDCF69CE2ED319F", "id": "690", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05de\u05d1\u05d5\u05d0 \u05d1\u05d9\u05ea\u05e8", "mixname_he": "\u05de\u05d1\u05d5\u05d0 \u05d1\u05d9\u05ea\u05e8 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0627\u0641\u0648 \u0628\u064a\u062a\u0627\u0631", "mixname_ar": "\u0645\u0627\u0641\u0648 \u0628\u064a\u062a\u0627\u0631 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Mevo Beitar", "mixname_en": "Mevo Beitar | <span>Shfelat Yehuda</span>", "label_ru": "\u041c\u0435\u0432\u043e \u0411\u0435\u0439\u0442\u0430\u0440", "mixname_ru": "\u041c\u0435\u0432\u043e \u0411\u0435\u0439\u0442\u0430\u0440 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "21B1F190E85E2383ADDFAAAB1AEB1B09", "id": "992", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05e2\u05d9\u05df \u05d4\u05e2\u05de\u05e7", "mixname_he": "\u05e2\u05d9\u05df \u05d4\u05e2\u05de\u05e7 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0647\u0639\u064a\u0645\u0643", "mixname_ar": "\u0639\u064a\u0646 \u0647\u0639\u064a\u0645\u0643 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Ein HaEmek", "mixname_en": "Ein HaEmek | <span>Wadi Ara</span>", "label_ru": "\u042d\u0439\u043d \u0445\u0430-\u042d\u043c\u0435\u043a", "mixname_ru": "\u042d\u0439\u043d \u0445\u0430-\u042d\u043c\u0435\u043a | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "21ED9C9ACCBD1C430DE90DD7DFA2521D", "id": "321", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d2\u05d9\u05d0\u05d4", "mixname_he": "\u05d2\u05d9\u05d0\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u064a\u0626\u0627\u0647", "mixname_ar": "\u062c\u064a\u0626\u0627\u0647 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Ge'a", "mixname_en": "Ge'a | <span>West Lachish</span>", "label_ru": "\u0413\u0435\u044f", "mixname_ru": "\u0413\u0435\u044f | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "22C3CED42A9696E1ED40CB8C8C665215", "id": "1357", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05ea\u05d7\u05dd \u05e4\u05d9 \u05d2\u05dc\u05d9\u05dc\u05d5\u05ea", "mixname_he": "\u05de\u05ea\u05d7\u05dd \u05e4\u05d9 \u05d2\u05dc\u05d9\u05dc\u05d5\u05ea | <span>\u05d3\u05df</span>", "label_ar": "\u0645\u064f\u062c\u0645\u0639 \u0628\u064a \u062c\u0644\u064a\u0644\u0648\u062a", "mixname_ar": "\u0645\u064f\u062c\u0645\u0639 \u0628\u064a \u062c\u0644\u064a\u0644\u0648\u062a | <span>\u062f\u0627\u0646</span>", "label_en": "Pi Glilot compound", "mixname_en": "Pi Glilot compound | <span>Dan</span>", "label_ru": "\u0426\u0435\u043d\u0442\u0440 \u041f\u0438 \u0413\u043b\u0438\u043b\u043e\u0442", "mixname_ru": "\u0426\u0435\u043d\u0442\u0440 \u041f\u0438 \u0413\u043b\u0438\u043b\u043e\u0442 | <span>\u0414\u0430\u043d</span>"}, {"value": "235DC06F571DEDA195E063441C40C3CF", "id": "942", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e1\u05d5\u05e4\u05d4", "mixname_he": "\u05e1\u05d5\u05e4\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0633\u0648\u0641\u0647", "mixname_ar": "\u0633\u0648\u0641\u0647 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Sufa", "mixname_en": "Sufa | <span>Gaza Envelope</span>", "label_ru": "\u0421\u0443\u0444\u0430", "mixname_ru": "\u0421\u0443\u0444\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "243778EADF5D12AB8A337BF02D1A380B", "id": "1147", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05e8\u05d2\u05d1\u05d9\u05dd", "mixname_he": "\u05e8\u05d2\u05d1\u05d9\u05dd | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0631\u062c\u0627\u0641\u064a\u0645", "mixname_ar": "\u0631\u062c\u0627\u0641\u064a\u0645 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Regavim", "mixname_en": "Regavim | <span>Wadi Ara</span>", "label_ru": "\u0420\u0435\u0433\u0430\u0432\u0438\u043c", "mixname_ru": "\u0420\u0435\u0433\u0430\u0432\u0438\u043c | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "249951371A2236155716AD628333AA67", "id": "631", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05db\u05e4\u05e8 \u05de\u05e0\u05d7\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05e0\u05d7\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0645\u0646\u0627\u062d\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0645\u0646\u0627\u062d\u064a\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kfar Menachem", "mixname_en": "Kfar Menachem | <span>Shfelat Yehuda</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041c\u0435\u043d\u0430\u0445\u0435\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041c\u0435\u043d\u0430\u0445\u0435\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "24B7BCBC66BF9DD1E299B58BE24882DE", "id": "1190", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e9\u05d0\u05e0\u05d8\u05d9 \u05d1\u05de\u05d3\u05d1\u05e8", "mixname_he": "\u05e9\u05d0\u05e0\u05d8\u05d9 \u05d1\u05de\u05d3\u05d1\u05e8 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0634\u0627\u0646\u0637\u064a \u0641\u064a \u0627\u0644\u0635\u062d\u0631\u0627\u0621", "mixname_ar": "\u0634\u0627\u0646\u0637\u064a \u0641\u064a \u0627\u0644\u0635\u062d\u0631\u0627\u0621 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Shanti BaMidbar", "mixname_en": "Shanti BaMidbar | <span>South Negev</span>", "label_ru": "\u0428\u0430\u043d\u0442\u0438 \u0431\u0430 \u041c\u0438\u0434\u0431\u0430\u0440", "mixname_ru": "\u0428\u0430\u043d\u0442\u0438 \u0431\u0430 \u041c\u0438\u0434\u0431\u0430\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "24CFC4B60250B92781EF66ABB94F5E0B", "id": "1075", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e6\u05d5\u05d1\u05d4", "mixname_he": "\u05e6\u05d5\u05d1\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0633\u0648\u0641\u0627", "mixname_ar": "\u062a\u0633\u0648\u0641\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tzuba", "mixname_en": "Tzuba | <span>Shfelat Yehuda</span>", "label_ru": "\u0426\u0443\u0431\u0430", "mixname_ru": "\u0426\u0443\u0431\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "24FD0B955779722FE88E0C0EB2F0EDA9", "id": "67", "areaid": 7, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05de\u05d7", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05de\u05d7 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u0633\u064a\u0645\u062d", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u0633\u064a\u0645\u062d | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Tzemach Industrial Zone", "mixname_en": "Tzemach Industrial Zone | <span>Lower Galilee</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0426\u0435\u043c\u0430\u0445", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0426\u0435\u043c\u0430\u0445 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "252C4DB835124002FAF957A6E7434774", "id": "1305", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c \u041a\u0430\u0441\u0443\u043c", "label_he": "\u05ea\u05d0\u05e8\u05d1\u05d9\u05df", "mixname_he": "\u05ea\u05d0\u05e8\u05d1\u05d9\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u0631\u0627\u0628\u064a\u0646", "mixname_ar": "\u062a\u0631\u0627\u0628\u064a\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Tirabin", "mixname_en": "Tirabin | <span>Center Negev</span>", "label_ru": "\u0422\u0438\u0440\u0430\u0431\u0438\u043d", "mixname_ru": "\u0422\u0438\u0440\u0430\u0431\u0438\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "252E2F8571F7DEAFB06462A3A788A899", "id": "923", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e0\u05e2\u05e8\u05df", "mixname_he": "\u05e0\u05e2\u05e8\u05df | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0646\u0639\u0631\u0627\u0646", "mixname_ar": "\u0646\u0639\u0631\u0627\u0646 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Niran", "mixname_en": "Niran | <span>Bika'a</span>", "label_ru": "\u041d\u0438\u0440\u0430\u043d", "mixname_ru": "\u041d\u0438\u0440\u0430\u043d | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "2530ED20285D6FDC7A154CEDA3A674BC", "id": "892", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05e0\u05d8\u05e2\u05d9\u05dd", "mixname_he": "\u05e0\u05d8\u05e2\u05d9\u05dd | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0646\u062a\u0627\u0639\u064a\u0645", "mixname_ar": "\u0646\u062a\u0627\u0639\u064a\u0645 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Neta'im", "mixname_en": "Neta'im | <span>HaShfela</span>", "label_ru": "\u041d\u0435\u0442\u0430\u0438\u043c", "mixname_ru": "\u041d\u0435\u0442\u0430\u0438\u043c | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "254D0630C99D0A75C375043CB2B050DB", "id": "1072", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e4\u05ea\u05d7\u05d9\u05d4", "mixname_he": "\u05e4\u05ea\u05d7\u05d9\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0641\u062a\u062d\u064a\u0629", "mixname_ar": "\u0641\u062a\u062d\u064a\u0629 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ptachia", "mixname_en": "Ptachia | <span>HaShfela</span>", "label_ru": "\u041f\u0442\u0430\u0445\u0438\u044f", "mixname_ru": "\u041f\u0442\u0430\u0445\u0438\u044f | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "25739F54C541C9BFF5BF71D747B9FF8E", "id": "294", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d5\u05d5\u05dc\u05e4\u05e1\u05d5\u05df", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d5\u05d5\u05dc\u05e4\u05e1\u05d5\u05df | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0641\u0648\u0644\u0641\u0633\u0648\u0646", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0641\u0648\u0644\u0641\u0633\u0648\u0646 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Givat Wolfson", "mixname_en": "Givat Wolfson | <span>HaCarmel</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0412\u043e\u043b\u044c\u0444\u0441\u043e\u043d", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0412\u043e\u043b\u044c\u0444\u0441\u043e\u043d | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "258019FF6235FED3B21DA48FE4613442", "id": "1129", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05ea \u05d0\u05e8\u05d1\u05e2", "mixname_he": "\u05e7\u05e8\u05d9\u05ea \u05d0\u05e8\u05d1\u05e2 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0623\u0631\u0628\u0639", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0623\u0631\u0628\u0639 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kiryat Arba", "mixname_en": "Kiryat Arba | <span>Yehuda</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0410\u0440\u0431\u0430", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0410\u0440\u0431\u0430 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "26147E43768576253016F5EAD93DD0AC", "id": "68", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05e4\u05d5\u05e0\u05d9 \u05d0\u05e9\u05e7\u05dc\u05d5\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05e4\u05d5\u05e0\u05d9 \u05d0\u05e9\u05e7\u05dc\u05d5\u05df | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Ashkelon Northern Industrial Zone", "mixname_en": "Ashkelon Northern Industrial Zone | <span>West Lachish</span>", "label_ru": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u043f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0448\u043a\u0435\u043b\u043e\u043d\u0430", "mixname_ru": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u043f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0448\u043a\u0435\u043b\u043e\u043d\u0430 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "2633A683782E8323D9552E334AD844E9", "id": "640", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05db\u05e4\u05e8 \u05e1\u05d9\u05e8\u05e7\u05d9\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05e1\u05d9\u05e8\u05e7\u05d9\u05df | <span>\u05d3\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0633\u064a\u0631\u0643\u064a\u0646", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0633\u064a\u0631\u0643\u064a\u0646 | <span>\u062f\u0627\u0646</span>", "label_en": "Kfar Sirkin", "mixname_en": "Kfar Sirkin | <span>Dan</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0421\u0438\u0440\u043a\u0438\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0421\u0438\u0440\u043a\u0438\u043d | <span>\u0414\u0430\u043d</span>"}, {"value": "264D44457361C184048B47C87CE7F2E7", "id": "19", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d0\u05d1\u05e9\u05dc\u05d5\u05dd", "mixname_he": "\u05d0\u05d1\u05e9\u05dc\u05d5\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0627\u0641\u064a\u0634\u0627\u0644\u0648\u0645", "mixname_ar": "\u0627\u0641\u064a\u0634\u0627\u0644\u0648\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Avshalom", "mixname_en": "Avshalom | <span>Gaza Envelope</span>", "label_ru": "\u0410\u0432\u0448\u0430\u043b\u043e\u043c", "mixname_ru": "\u0410\u0432\u0448\u0430\u043b\u043e\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "26606EB7152467CC3A36E273F4AEBF15", "id": "535", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d9\u05e6\u05d9\u05e5", "mixname_he": "\u05d9\u05e6\u05d9\u05e5 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u064a\u062a\u0633\u064a\u0633", "mixname_ar": "\u064a\u062a\u0633\u064a\u0633 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Yatzitz", "mixname_en": "Yatzitz | <span>HaShfela</span>", "label_ru": "\u042f\u0446\u0438\u0446", "mixname_ru": "\u042f\u0446\u0438\u0446 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "2684CBD4EFC83A6E61EE58CAE2EEB387", "id": "1077", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e6\u05d5\u05e4\u05d9\u05dd", "mixname_he": "\u05e6\u05d5\u05e4\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0633\u0648\u0641\u064a\u0646", "mixname_ar": "\u062a\u0633\u0648\u0641\u064a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tzofin", "mixname_en": "Tzofin | <span>Sharon</span>", "label_ru": "\u0426\u043e\u0444\u0438\u043d", "mixname_ru": "\u0426\u043e\u0444\u0438\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "26A94A928C042B99F540734F2B0A83F2", "id": "1228", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e9\u05d5\u05e7\u05d3\u05d4", "mixname_he": "\u05e9\u05d5\u05e7\u05d3\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0634\u0648\u0643\u062f\u0627\u0647", "mixname_ar": "\u0634\u0648\u0643\u062f\u0627\u0647 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Shokeda", "mixname_en": "Shokeda | <span>Gaza Envelope</span>", "label_ru": "\u0428\u043e\u043a\u0435\u0434\u0430", "mixname_ru": "\u0428\u043e\u043a\u0435\u0434\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "2704FCA0101E04B2097A383C97295F5F", "id": "1240", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e9\u05db\u05e0\u05d9\u05d4", "mixname_he": "\u05e9\u05db\u05e0\u05d9\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0634\u062e\u0627\u0646\u064a\u0627", "mixname_ar": "\u0634\u062e\u0627\u0646\u064a\u0627 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Shekhanya", "mixname_en": "Shekhanya | <span>Center Galilee</span>", "label_ru": "\u0428\u0435\u0445\u0430\u043d\u0438\u044f", "mixname_ru": "\u0428\u0435\u0445\u0430\u043d\u0438\u044f | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "275BA663D54A884EB0000DA067D2B825", "id": "224", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05d1\u05d9\u05ea \u05e7\u05de\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05e7\u05de\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u064a\u062a \u0643\u0627\u0645\u0627", "mixname_ar": "\u0628\u064a\u062a \u0643\u0627\u0645\u0627 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Beit Kama", "mixname_en": "Beit Kama | <span>Center Negev</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u041a\u0430\u043c\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u041a\u0430\u043c\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "277F1712A0AAFB3C911351B83FDDF985", "id": "721", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05de\u05d5\u05dc\u05d3\u05ea", "mixname_he": "\u05de\u05d5\u05dc\u05d3\u05ea | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0645\u0648\u0644\u062f\u062a", "mixname_ar": "\u0645\u0648\u0644\u062f\u062a | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Moledet", "mixname_en": "Moledet | <span>Beit She'an Valley</span>", "label_ru": "\u041c\u043e\u043b\u0435\u0434\u0435\u0442", "mixname_ru": "\u041c\u043e\u043b\u0435\u0434\u0435\u0442 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "2797FAD4D33BF795CBC6C4AA28AE25BA", "id": "918", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e0\u05e1 \u05e6\u05d9\u05d5\u05e0\u05d4", "mixname_he": "\u05e0\u05e1 \u05e6\u05d9\u05d5\u05e0\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0646\u0633 \u062a\u0633\u064a\u0648\u0646\u0627", "mixname_ar": "\u0646\u0633 \u062a\u0633\u064a\u0648\u0646\u0627 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ness Ziona", "mixname_en": "Ness Ziona | <span>HaShfela</span>", "label_ru": "\u041d\u0435\u0441 \u0426\u0438\u043e\u043d\u0430", "mixname_ru": "\u041d\u0435\u0441 \u0426\u0438\u043e\u043d\u0430 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "279F59DDBD52E724A76ACD7DED4D61D8", "id": "370", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d3\u05d9\u05e8 \u05d0\u05dc-\u05d0\u05e1\u05d3", "mixname_he": "\u05d3\u05d9\u05e8 \u05d0\u05dc-\u05d0\u05e1\u05d3 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062f\u064a\u0631 \u0627\u0644\u0623\u0633\u062f", "mixname_ar": "\u062f\u064a\u0631 \u0627\u0644\u0623\u0633\u062f | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Deir al-Asad", "mixname_en": "Deir al-Asad | <span>Upper Galilee</span>", "label_ru": "\u0414\u0438\u0440 \u042d\u043b\u044c-\u0410\u0441\u0430\u0434", "mixname_ru": "\u0414\u0438\u0440 \u042d\u043b\u044c-\u0410\u0441\u0430\u0434 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "27AF38C73610B480210E80FD58DA1B86", "id": "559", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05db\u05d5\u05db\u05d1 \u05d9\u05e2\u05e7\u05d1", "mixname_he": "\u05db\u05d5\u05db\u05d1 \u05d9\u05e2\u05e7\u05d1 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0648\u062e\u0627\u0641 \u064a\u0639\u0642\u0648\u0628", "mixname_ar": "\u0643\u0648\u062e\u0627\u0641 \u064a\u0639\u0642\u0648\u0628 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Kokhav Ya'akov", "mixname_en": "Kokhav Ya'akov | <span>Shomron</span>", "label_ru": "\u041a\u043e\u0445\u0430\u0432 \u042f\u0430\u043a\u043e\u0432", "mixname_ru": "\u041a\u043e\u0445\u0430\u0432 \u042f\u0430\u043a\u043e\u0432 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "27CE6573EAFDA458782031B9D525CB2E", "id": "592", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05db\u05e4\u05e8 \u05d2\u05dc\u05d9\u05e7\u05e1\u05d5\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05d2\u05dc\u05d9\u05e7\u05e1\u05d5\u05df | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062c\u0644\u064a\u0643\u0633\u0648\u0646", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062c\u0644\u064a\u0643\u0633\u0648\u0646 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Kfar Glickson", "mixname_en": "Kfar Glickson | <span>Menashe</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0413\u043b\u0438\u043a\u0441\u043e\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0413\u043b\u0438\u043a\u0441\u043e\u043d | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "280365092D5B19D9F5A1E546446EFA8B", "id": "833", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05de\u05e9\u05e2\u05df", "mixname_he": "\u05de\u05e9\u05e2\u05df | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u0634\u0639\u0627\u0646", "mixname_ar": "\u0645\u0634\u0639\u0627\u0646 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Mishan", "mixname_en": "Mishan | <span>West Lachish</span>", "label_ru": "\u041c\u0438\u0448\u0430\u043d", "mixname_ru": "\u041c\u0438\u0448\u0430\u043d | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "2813572C623EE2E02C55433932448C85", "id": "489", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d8\u05dc \u05e9\u05d7\u05e8", "mixname_he": "\u05d8\u05dc \u05e9\u05d7\u05e8 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0627\u0644 \u0634\u0627\u062d\u0627\u0631", "mixname_ar": "\u062a\u0627\u0644 \u0634\u0627\u062d\u0627\u0631 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tal Shachar", "mixname_en": "Tal Shachar | <span>Shfelat Yehuda</span>", "label_ru": "\u0422\u0430\u043b\u044c \u0428\u0430\u0445\u0430\u0440", "mixname_ru": "\u0422\u0430\u043b\u044c \u0428\u0430\u0445\u0430\u0440 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "28146BB5E5939A24B2089BC59380C105", "id": "410", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u043b\u043e\u0442 \u041c\u0435\u0440\u0442\u0432\u043e\u0433\u043e \u043c\u043e\u0440\u044f", "label_he": "\u05d5\u05e8\u05d3 \u05d9\u05e8\u05d9\u05d7\u05d5", "mixname_he": "\u05d5\u05e8\u05d3 \u05d9\u05e8\u05d9\u05d7\u05d5 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0641\u064a\u0631\u062f \u064a\u0631\u064a\u062d\u0648", "mixname_ar": "\u0641\u064a\u0631\u062f \u064a\u0631\u064a\u062d\u0648 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Vered Yericho", "mixname_en": "Vered Yericho | <span>Dead Sea</span>", "label_ru": "\u0412\u0435\u0440\u0435\u0434 \u0419\u0435\u0440\u0438\u0445\u043e", "mixname_ru": "\u0412\u0435\u0440\u0435\u0434 \u0419\u0435\u0440\u0438\u0445\u043e | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "287D719668699576A0C4D4AECA77BA30", "id": "1177", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05de\u05ea \u05d4\u05e9\u05e8\u05d5\u05df", "mixname_he": "\u05e8\u05de\u05ea \u05d4\u05e9\u05e8\u05d5\u05df | <span>\u05d3\u05df</span>", "label_ar": "\u0631\u0645\u0627\u062a \u0647\u0634\u0627\u0631\u0648\u0646", "mixname_ar": "\u0631\u0645\u0627\u062a \u0647\u0634\u0627\u0631\u0648\u0646 | <span>\u062f\u0627\u0646</span>", "label_en": "Ramat HaSharon", "mixname_en": "Ramat HaSharon | <span>Dan</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d | <span>\u0414\u0430\u043d</span>"}, {"value": "289EBA9C0C3D8FFAB00169BBA59BE2D7", "id": "837", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05de\u05ea\u05df", "mixname_he": "\u05de\u05ea\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u062a\u0627\u0646", "mixname_ar": "\u0645\u062a\u0627\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Matan", "mixname_en": "Matan | <span>Sharon</span>", "label_ru": "\u041c\u0430\u0442\u0430\u043d", "mixname_ru": "\u041c\u0430\u0442\u0430\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "28A1B9D02F83A6EFDF139DE2837AF3FC", "id": "887", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05d7\u05e9\u05d5\u05df", "mixname_he": "\u05e0\u05d7\u05e9\u05d5\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u062d\u0634\u0648\u0646", "mixname_ar": "\u0646\u062d\u0634\u0648\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Nachshon", "mixname_en": "Nachshon | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0430\u0445\u0448\u043e\u043d", "mixname_ru": "\u041d\u0430\u0445\u0448\u043e\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "28B8EF868CEB1BBB6B6E846728A124F8", "id": "627", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05db\u05e4\u05e8 \u05de\u05d9\u05de\u05d5\u05df \u05d5\u05ea\u05d5\u05e9\u05d9\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05d9\u05de\u05d5\u05df \u05d5\u05ea\u05d5\u05e9\u05d9\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0645\u064a\u0645\u0648\u0646 \u0648\u062a\u0648\u0634\u064a\u0627", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0645\u064a\u0645\u0648\u0646 \u0648\u062a\u0648\u0634\u064a\u0627 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Kfar Maimon and Tushia", "mixname_en": "Kfar Maimon and Tushia | <span>Gaza Envelope</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041c\u0430\u0439\u043c\u043e\u043d \u0438 \u0422\u0443\u0448\u0438\u044f", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041c\u0430\u0439\u043c\u043e\u043d \u0438 \u0422\u0443\u0448\u0438\u044f | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "28D4EC56EFA2737EC99942FC44D33514", "id": "1326", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d7\u05d1\u05e8", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d7\u05d1\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u064a\u0634\u0648\u0641\u064a \u062d\u064a\u0641\u0631", "mixname_ar": "\u064a\u0634\u0648\u0641\u064a \u062d\u064a\u0641\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Hever Settlements", "mixname_en": "Hever Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0425\u0435\u0432\u0435\u0440", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0425\u0435\u0432\u0435\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "291C7E74459E7389E9F0677E004E473E", "id": "568", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05db\u05d9\u05e9\u05d5\u05e8", "mixname_he": "\u05db\u05d9\u05e9\u05d5\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u064a\u0634\u0648\u0631", "mixname_ar": "\u0643\u064a\u0634\u0648\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kishor", "mixname_en": "Kishor | <span>Upper Galilee</span>", "label_ru": "\u041a\u0438\u0448\u043e\u0440", "mixname_ru": "\u041a\u0438\u0448\u043e\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "296204F645EFBA3BFC6089C737DAAC3A", "id": "578", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e2\u05d1\u05d9\u05d4 \u05d8\u05d1\u05d0\u05e9", "mixname_he": "\u05db\u05e2\u05d1\u05d9\u05d4 \u05d8\u05d1\u05d0\u05e9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0639\u0628\u064a\u0629 \u0637\u0628\u0627\u0634", "mixname_ar": "\u0643\u0639\u0628\u064a\u0629 \u0637\u0628\u0627\u0634 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ka'abiyye Tabbash", "mixname_en": "Ka'abiyye Tabbash | <span>HaAmakim</span>", "label_ru": "\u041a\u0430\u0430\u0431\u0438\u044f \u0422\u0430\u0431\u0430\u0448", "mixname_ru": "\u041a\u0430\u0430\u0431\u0438\u044f \u0422\u0430\u0431\u0430\u0448 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "29D5DBA21CB19024243104D3142CF9FA", "id": "972", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05e2\u05d6\u05e8\u05d9\u05d0\u05dc", "mixname_he": "\u05e2\u05d6\u05e8\u05d9\u05d0\u05dc | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0632\u0631\u064a\u0626\u064a\u0644", "mixname_ar": "\u0639\u0632\u0631\u064a\u0626\u064a\u0644 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Azriel", "mixname_en": "Azriel | <span>Sharon</span>", "label_ru": "\u0410\u0437\u0440\u0438\u044d\u043b\u044c", "mixname_ru": "\u0410\u0437\u0440\u0438\u044d\u043b\u044c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "2A1D4B2E63CC0C86CDA27362DBFB82DF", "id": "268", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05ea \u05d7\u05df", "mixname_he": "\u05d1\u05ea \u05d7\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0627\u062a \u062d\u064a\u0646", "mixname_ar": "\u0628\u0627\u062a \u062d\u064a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Bat Chen", "mixname_en": "Bat Chen | <span>Sharon</span>", "label_ru": "\u0411\u0430\u0442 \u0425\u0435\u043d", "mixname_ru": "\u0411\u0430\u0442 \u0425\u0435\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "2A239D5ACE88FFB1FFF2C831C782E2E6", "id": "62", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e2\u05d3 \u05d4\u05dc\u05d5\u05dd", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e2\u05d3 \u05d4\u05dc\u05d5\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0639\u0627\u062f \u0647\u0644\u0648\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0639\u0627\u062f \u0647\u0644\u0648\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ad Halom Industrial Zone", "mixname_en": "Ad Halom Industrial Zone | <span>Lachish</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0434 \u0425\u0430\u043b\u043e\u043c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0434 \u0425\u0430\u043b\u043e\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "2A63A6A0B35E90CFB68DCFA41E6D370E", "id": "1144", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e8\u05d1\u05d9\u05d1\u05d9\u05dd", "mixname_he": "\u05e8\u05d1\u05d9\u05d1\u05d9\u05dd | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0631\u0641\u064a\u0641\u064a\u0645", "mixname_ar": "\u0631\u0641\u064a\u0641\u064a\u0645 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Revivim", "mixname_en": "Revivim | <span>South Negev</span>", "label_ru": "\u0420\u0435\u0432\u0438\u0432\u0438\u043c", "mixname_ru": "\u0420\u0435\u0432\u0438\u0432\u0438\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "2AC1C50A94D4198D1E6747E90E3431D0", "id": "43", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d0\u05db\u05d6\u05d9\u05d1 \u05de\u05d9\u05dc\u05d5\u05d0\u05d5\u05ea", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d0\u05db\u05d6\u05d9\u05d1 \u05de\u05d9\u05dc\u05d5\u05d0\u05d5\u05ea | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0623\u062e\u0632\u064a\u0641 \u0645\u064a\u0644", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0623\u062e\u0632\u064a\u0641 \u0645\u064a\u0644 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Achziv Miluot Industrial Zone", "mixname_en": "Achziv Miluot Industrial Zone | <span>Confrontation Line</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0445\u0437\u0438\u0432 \u041c\u0438\u043b\u0443\u043e\u0442", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0445\u0437\u0438\u0432 \u041c\u0438\u043b\u0443\u043e\u0442 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "2AEB55C31B5907E3D9E373647C591FE0", "id": "811", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05e8\u05d7\u05d1\u05d9\u05d4 \u05e7\u05d9\u05d1\u05d5\u05e5", "mixname_he": "\u05de\u05e8\u05d7\u05d1\u05d9\u05d4 \u05e7\u05d9\u05d1\u05d5\u05e5 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0645\u0631\u062d\u0627\u0641\u064a\u0627 \u0643\u064a\u0628\u0648\u062a\u0633", "mixname_ar": "\u0645\u0631\u062d\u0627\u0641\u064a\u0627 \u0643\u064a\u0628\u0648\u062a\u0633 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Merhavia Kibbutz", "mixname_en": "Merhavia Kibbutz | <span>HaAmakim</span>", "label_ru": "\u041c\u0435\u0440\u0445\u0430\u0432\u0438\u044f \u041a\u0438\u0431\u0431\u0443\u0446", "mixname_ru": "\u041c\u0435\u0440\u0445\u0430\u0432\u0438\u044f \u041a\u0438\u0431\u0431\u0443\u0446 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "2B0ED588DCF5379058E287A6893BB12C", "id": "241", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d1\u05e0\u05d9 \u05d9\u05d4\u05d5\u05d3\u05d4 \u05d5\u05d2\u05d1\u05e2\u05ea \u05d9\u05d5\u05d0\u05d1", "mixname_he": "\u05d1\u05e0\u05d9 \u05d9\u05d4\u05d5\u05d3\u05d4 \u05d5\u05d2\u05d1\u05e2\u05ea \u05d9\u05d5\u05d0\u05d1 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0628\u0646\u064a \u064a\u0647\u0648\u062f\u0627 \u0648\u062c\u0641\u0639\u0627\u062a \u064a\u0648\u0626\u0627\u0641", "mixname_ar": "\u0628\u0646\u064a \u064a\u0647\u0648\u062f\u0627 \u0648\u062c\u0641\u0639\u0627\u062a \u064a\u0648\u0626\u0627\u0641 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Bnei Yehuda and Givat Yoav", "mixname_en": "Bnei Yehuda and Givat Yoav | <span>South Golan</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0418\u0435\u0443\u0434\u0430 \u0438 \u0413\u0438\u0432\u0430\u0442 \u0419\u043e\u0430\u0432", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0418\u0435\u0443\u0434\u0430 \u0438 \u0413\u0438\u0432\u0430\u0442 \u0419\u043e\u0430\u0432 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "2B9CA67D791DB606432BBA33EA893E6A", "id": "888", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e0\u05d7\u05e9\u05d5\u05e0\u05d9\u05dd", "mixname_he": "\u05e0\u05d7\u05e9\u05d5\u05e0\u05d9\u05dd | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0646\u062d\u0634\u0648\u0646\u064a\u0645", "mixname_ar": "\u0646\u062d\u0634\u0648\u0646\u064a\u0645 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Nachshonim", "mixname_en": "Nachshonim | <span>Yarkon</span>", "label_ru": "\u041d\u0430\u0445\u0448\u043e\u043d\u0438\u043c", "mixname_ru": "\u041d\u0430\u0445\u0448\u043e\u043d\u0438\u043c | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "2B9E4A37D90F70ED5E7B0AA099F7F72B", "id": "64", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e2\u05de\u05e7 \u05d7\u05e4\u05e8", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e2\u05de\u05e7 \u05d7\u05e4\u05e8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0639\u064a\u0645\u0643 \u062d\u064a\u0641\u0631", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0639\u064a\u0645\u0643 \u062d\u064a\u0641\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Emek Heffer Industrial Zone", "mixname_en": "Emek Heffer Industrial Zone | <span>Sharon</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "2BA2CA7732A99E74B2DCA52180A5A188", "id": "1371", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "", "label_he": "\u05e6\u05d5\u05d7\u05e8", "mixname_he": "\u05e6\u05d5\u05d7\u05e8 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062a\u0635\u0648\u062d\u0627\u0631", "mixname_ar": "\u062a\u0635\u0648\u062d\u0627\u0631 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Tzohar", "mixname_en": "Tzohar | <span>Gaza Envelope</span>", "label_ru": "\u0426\u043e\u0445\u0430\u0440", "mixname_ru": "\u0426\u043e\u0445\u0430\u0440 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "2BB4976686C79F238A996FA40BCFF2BA", "id": "154", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d0\u05e9\u05ea\u05d0\u05d5\u05dc", "mixname_he": "\u05d0\u05e9\u05ea\u05d0\u05d5\u05dc | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0634\u062a\u0648\u0626\u064a\u0644", "mixname_ar": "\u0627\u0634\u062a\u0648\u0626\u064a\u0644 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Eshtaol", "mixname_en": "Eshtaol | <span>Shfelat Yehuda</span>", "label_ru": "\u042d\u0448\u0442\u0430\u043e\u043b\u044c", "mixname_ru": "\u042d\u0448\u0442\u0430\u043e\u043b\u044c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "2BC1219D2D001E8E2095169F5465B924", "id": "1131", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d7\u05d9\u05e0\u05d5\u05da \u05de\u05e8\u05d7\u05d1\u05d9\u05dd", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d7\u05d9\u05e0\u05d5\u05da \u05de\u05e8\u05d7\u05d1\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u062d\u064a\u0646\u0648\u062e \u0645\u0631\u062d\u0627\u0641\u064a\u0645", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u062d\u064a\u0646\u0648\u062e \u0645\u0631\u062d\u0627\u0641\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Merhavim Educational Campus", "mixname_en": "Merhavim Educational Campus | <span>West Negev</span>", "label_ru": "\u0423\u0447\u0435\u0431\u043d\u044b\u0439 \u0446\u0435\u043d\u0442\u0440 \u041c\u0435\u0440\u0445\u0430\u0432\u0438\u043c", "mixname_ru": "\u0423\u0447\u0435\u0431\u043d\u044b\u0439 \u0446\u0435\u043d\u0442\u0440 \u041c\u0435\u0440\u0445\u0430\u0432\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "2BDDE623019E58D48EDC77BD762CA846", "id": "949", "areaid": 25, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05e1\u05e0\u05e1\u05e0\u05d4", "mixname_he": "\u05e1\u05e0\u05e1\u05e0\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0633\u0646\u0633\u0646\u0647", "mixname_ar": "\u0633\u0646\u0633\u0646\u0647 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Sansana", "mixname_en": "Sansana | <span>Center Negev</span>", "label_ru": "\u0421\u0430\u043d\u0441\u0430\u043d\u0430", "mixname_ru": "\u0421\u0430\u043d\u0441\u0430\u043d\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "2BF91CBD102222C3ED998444155424E5", "id": "49", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d3\u05d9\u05de\u05d5\u05e0\u05d4", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d3\u05d9\u05de\u05d5\u05e0\u05d4 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062f\u064a\u0645\u0648\u0646\u0627", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062f\u064a\u0645\u0648\u0646\u0627 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Dimona Industrial Zone", "mixname_en": "Dimona Industrial Zone | <span>South Negev</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0414\u0438\u043c\u043e\u043d\u0430", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0414\u0438\u043c\u043e\u043d\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "2C0E870846F7A1B49A3F656F7242F9ED", "id": "383", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d4\u05d2\u05d5\u05e9\u05e8\u05d9\u05dd", "mixname_he": "\u05d4\u05d2\u05d5\u05e9\u05e8\u05d9\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0647\u062c\u0648\u0634\u0631\u064a\u0645", "mixname_ar": "\u0647\u062c\u0648\u0634\u0631\u064a\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "HaGoshrim", "mixname_en": "HaGoshrim | <span>Confrontation Line</span>", "label_ru": "\u0445\u0430-\u0413\u043e\u0448\u0440\u0438\u043c", "mixname_ru": "\u0445\u0430-\u0413\u043e\u0448\u0440\u0438\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "2CD910D705674D53CF698F8801087B74", "id": "986", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e2\u05d9\u05df \u05d3\u05d5\u05e8", "mixname_he": "\u05e2\u05d9\u05df \u05d3\u05d5\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0639\u064a\u0646 \u062f\u0648\u0631", "mixname_ar": "\u0639\u064a\u0646 \u062f\u0648\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ein Dor", "mixname_en": "Ein Dor | <span>HaAmakim</span>", "label_ru": "\u042d\u0439\u043d \u0414\u043e\u0440", "mixname_ru": "\u042d\u0439\u043d \u0414\u043e\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "2CE098374F95EC3C3661D903EFCA1FD0", "id": "580", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d0\u05d3\u05d5\u05de\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d0\u05d3\u05d5\u05de\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0623\u062f\u0648\u0645\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0623\u062f\u0648\u0645\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kfar Edomim", "mixname_en": "Kfar Edomim | <span>Yehuda</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0410\u0434\u0443\u043c\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0410\u0434\u0443\u043c\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "2D28389354BF7AF5F3E1E79E2E9AA11B", "id": "708", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05de\u05d2\u05d9\u05d3\u05d5", "mixname_he": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05de\u05d2\u05d9\u05d3\u05d5 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u062c\u064a\u062f\u0648", "mixname_ar": "\u0645\u062c\u064a\u062f\u0648 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Megiddo", "mixname_en": "Megiddo | <span>Wadi Ara</span>", "label_ru": "\u041c\u0435\u0433\u0438\u0434\u0434\u043e", "mixname_ru": "\u041c\u0435\u0433\u0438\u0434\u0434\u043e | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "2D4188F7D5DB9A2A0E3FDE5203555526", "id": "251", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05d1\u05e6\u05e8\u05d4", "mixname_he": "\u05d1\u05e6\u05e8\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0635\u0631\u0629", "mixname_ar": "\u0628\u0635\u0631\u0629 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Batzra", "mixname_en": "Batzra | <span>Sharon</span>", "label_ru": "\u0411\u0430\u0446\u0440\u0430", "mixname_ru": "\u0411\u0430\u0446\u0440\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "2D691FD5453DA7757DEA9D1528914D64", "id": "867", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05de\u05d9\u05db\u05d0\u05dc - \u05e8\u05d5\u05d2\u05dc\u05d9\u05ea", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05de\u05d9\u05db\u05d0\u05dc - \u05e8\u05d5\u05d2\u05dc\u05d9\u05ea | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0645\u0628\u064a\u062e\u0627\u0626\u064a\u0644 (\u0631\u0648\u062c\u0644\u064a\u062a)", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0645\u0628\u064a\u062e\u0627\u0626\u064a\u0644 (\u0631\u0648\u062c\u0644\u064a\u062a) | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Neveh Michael (Rogalit)", "mixname_en": "Neveh Michael (Rogalit) | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u041c\u0438\u0445\u0430\u044d\u043b\u044c (\u0420\u043e\u0433\u0430\u043b\u0438\u0442)", "mixname_ru": "\u041d\u0435\u0432\u0435 \u041c\u0438\u0445\u0430\u044d\u043b\u044c (\u0420\u043e\u0433\u0430\u043b\u0438\u0442) | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "2DFE7AB57E93132548BCD4E9BD3206BA", "id": "1181", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05e8\u05de\u05ea \u05e6\u05d1\u05d9", "mixname_he": "\u05e8\u05de\u05ea \u05e6\u05d1\u05d9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0631\u0645\u0627\u062a \u062a\u0633\u0641\u064a", "mixname_ar": "\u0631\u0645\u0627\u062a \u062a\u0633\u0641\u064a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ramat Zvi", "mixname_en": "Ramat Zvi | <span>HaAmakim</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0426\u0432\u0438", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0426\u0432\u0438 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "2E34796EBF706EB61FAE6BD4B5173F22", "id": "1286", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05dc \u05e9\u05d1\u05e2", "mixname_he": "\u05ea\u05dc \u05e9\u05d1\u05e2 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u0644 \u0627\u0644\u0633\u0628\u0639", "mixname_ar": "\u062a\u0644 \u0627\u0644\u0633\u0628\u0639 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Tel Sheva", "mixname_en": "Tel Sheva | <span>Center Negev</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0428\u0435\u0432\u0430", "mixname_ru": "\u0422\u0435\u043b\u044c \u0428\u0435\u0432\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "2E35A109CF6527D3E60C75F383C20624", "id": "1231", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05e9\u05d5\u05e9\u05e0\u05ea \u05d4\u05e2\u05de\u05e7\u05d9\u05dd", "mixname_he": "\u05e9\u05d5\u05e9\u05e0\u05ea \u05d4\u05e2\u05de\u05e7\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0634\u0648\u0634\u0646\u0629 \u0647\u0639\u0645\u0643\u064a\u0645", "mixname_ar": "\u0634\u0648\u0634\u0646\u0629 \u0647\u0639\u0645\u0643\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Shoshanat Ha'Amakim", "mixname_en": "Shoshanat Ha'Amakim | <span>Sharon</span>", "label_ru": "\u0428\u043e\u0448\u0430\u043d\u0430\u0442 \u0445\u0430-\u0410\u043c\u0430\u043a\u0438\u043c", "mixname_ru": "\u0428\u043e\u0448\u0430\u043d\u0430\u0442 \u0445\u0430-\u0410\u043c\u0430\u043a\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "2E5412FF16DB07E184C1EF6A2E042BA1", "id": "570", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05db\u05dc\u05d9\u05dc", "mixname_he": "\u05db\u05dc\u05d9\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062e\u0644\u064a\u0644", "mixname_ar": "\u062e\u0644\u064a\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Klil", "mixname_en": "Klil | <span>Upper Galilee</span>", "label_ru": "\u041a\u043b\u0438\u043b\u044c", "mixname_ru": "\u041a\u043b\u0438\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "2E5C1D07825EDDB4E0D92DC1500D263A", "id": "904", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e0\u05d9\u05e8 \u05d7''\u05df", "mixname_he": "\u05e0\u05d9\u05e8 \u05d7''\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u064a\u0631 \u062d\u064a\u0646", "mixname_ar": "\u0646\u064a\u0631 \u062d\u064a\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Nir Chen", "mixname_en": "Nir Chen | <span>Lachish</span>", "label_ru": "\u041d\u0438\u0440 \u0425\u0435\u043d", "mixname_ru": "\u041d\u0438\u0440 \u0425\u0435\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "2E88148916D5D07B7A54193585B10BD2", "id": "655", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05ea\u05e7\u05d5\u05d5\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05ea\u05e7\u05d5\u05d5\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062a\u0643\u0641\u0627", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062a\u0643\u0641\u0627 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Tikva", "mixname_en": "Kfar Tikva | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0422\u0438\u043a\u0432\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0422\u0438\u043a\u0432\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "2EEF43C3FB12D4F81CB2A8939922EE6E", "id": "954", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e1\u05ea\u05e8\u05d9\u05d4", "mixname_he": "\u05e1\u05ea\u05e8\u05d9\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0633\u062a\u0627\u0631\u064a\u0647", "mixname_ar": "\u0633\u062a\u0627\u0631\u064a\u0647 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Sitria", "mixname_en": "Sitria | <span>HaShfela</span>", "label_ru": "\u0421\u0438\u0442\u0440\u0438\u044f", "mixname_ru": "\u0421\u0438\u0442\u0440\u0438\u044f | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "2EEF7A7AF12DF45F6AE21A1A8E057491", "id": "142", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05d0\u05e8\u05e1\u05d5\u05e3", "mixname_he": "\u05d0\u05e8\u05e1\u05d5\u05e3 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u0631\u0633\u0648\u0641", "mixname_ar": "\u0623\u0631\u0633\u0648\u0641 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Arsuf", "mixname_en": "Arsuf | <span>Sharon</span>", "label_ru": "\u0410\u0440\u0441\u0443\u0444", "mixname_ru": "\u0410\u0440\u0441\u0443\u0444 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "2EF9A143598FE8E66878B04A64DF141F", "id": "1074", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e6\u05d1\u05e2\u05d5\u05df", "mixname_he": "\u05e6\u05d1\u05e2\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062a\u0633\u0641\u0639\u0648\u0646", "mixname_ar": "\u062a\u0633\u0641\u0639\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Zivon", "mixname_en": "Zivon | <span>Confrontation Line</span>", "label_ru": "\u0426\u0438\u0432\u043e\u043d", "mixname_ru": "\u0426\u0438\u0432\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "2F381F0CB5965BE14F76BDD109A2DCD9", "id": "733", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05d6\u05e8\u05e2", "mixname_he": "\u05de\u05d6\u05e8\u05e2 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0645\u0632\u0631\u0627\u0639", "mixname_ar": "\u0645\u0632\u0631\u0627\u0639 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Mizra", "mixname_en": "Mizra | <span>HaAmakim</span>", "label_ru": "\u041c\u0438\u0437\u0440\u0430", "mixname_ru": "\u041c\u0438\u0437\u0440\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "2F4E37BF6DBF10671938193ED3434928", "id": "23", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05d0\u05d5\u05d3\u05d9\u05dd", "mixname_he": "\u05d0\u05d5\u05d3\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0648\u062f\u064a\u0645", "mixname_ar": "\u0627\u0648\u062f\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Udim", "mixname_en": "Udim | <span>Sharon</span>", "label_ru": "\u0423\u0434\u0438\u043c", "mixname_ru": "\u0423\u0434\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "2F81E962CEFCC87819298E946D1C5C31", "id": "1173", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e8\u05de\u05ea \u05d3\u05d5\u05d3", "mixname_he": "\u05e8\u05de\u05ea \u05d3\u05d5\u05d3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0631\u0645\u0627\u062a \u062f\u0627\u0641\u064a\u062f", "mixname_ar": "\u0631\u0645\u0627\u062a \u062f\u0627\u0641\u064a\u062f | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ramat David", "mixname_en": "Ramat David | <span>HaAmakim</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0414\u0430\u0432\u0438\u0434", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0414\u0430\u0432\u0438\u0434 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "2F8EB31F907807B7B20274D54C80C966", "id": "460", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d7\u05e0\u05d9\u05d0\u05dc", "mixname_he": "\u05d7\u05e0\u05d9\u05d0\u05dc | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0646\u064a\u0626\u0644", "mixname_ar": "\u062d\u0646\u064a\u0626\u0644 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Haniel", "mixname_en": "Haniel | <span>Sharon</span>", "label_ru": "\u0425\u0430\u043d\u0438\u044d\u043b\u044c", "mixname_ru": "\u0425\u0430\u043d\u0438\u044d\u043b\u044c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "2FEA1BEBEF33EDE1E206064A740C2D4A", "id": "787", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05e2\u05de\u05d5\u05e1", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05e2\u05de\u05d5\u05e1 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u0639\u0627\u0645\u0648\u0633", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u0639\u0627\u0645\u0648\u0633 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ma'aleh Amos", "mixname_en": "Ma'aleh Amos | <span>Yehuda</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0410\u043c\u043e\u0441", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0410\u043c\u043e\u0441 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "2FED545DEB53FF87AD0CEED6962E2DE1", "id": "1391", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05d0\u05ea\u05e8 \u05d3\u05d5\u05d3\u05d0\u05d9\u05dd", "mixname_he": "\u05d0\u05ea\u05e8 \u05d3\u05d5\u05d3\u05d0\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0648\u0642\u0639 \u062f\u0648\u062f\u0627\u0626\u064a\u0645", "mixname_ar": "\u0645\u0648\u0642\u0639 \u062f\u0648\u062f\u0627\u0626\u064a\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Dudaim Site", "mixname_en": "Dudaim Site | <span>Center Negev</span>", "label_ru": "\u0421\u0432\u0430\u043b\u043a\u0430 \u0414\u0443\u0434\u0430\u0438\u043c", "mixname_ru": "\u0421\u0432\u0430\u043b\u043a\u0430 \u0414\u0443\u0434\u0430\u0438\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "3010D8E01009E5DE3AC1E9079208A452", "id": "521", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d9\u05e0\u05d5\u05d7-\u05d2'\u05ea", "mixname_he": "\u05d9\u05e0\u05d5\u05d7-\u05d2'\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u064a\u0627\u0646\u0648\u062d - \u062c\u062a", "mixname_ar": "\u064a\u0627\u0646\u0648\u062d - \u062c\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Yanuh-Jat", "mixname_en": "Yanuh-Jat | <span>Upper Galilee</span>", "label_ru": "\u042f\u043d\u0443\u0445-\u0414\u0436\u0430\u0442", "mixname_ru": "\u042f\u043d\u0443\u0445-\u0414\u0436\u0430\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "30575131195759E33F4F0C1E6D4C9B30", "id": "1068", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e4\u05e8\u05d3\u05e1\u05d9\u05d4", "mixname_he": "\u05e4\u05e8\u05d3\u05e1\u05d9\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0641\u0631\u062f\u0633\u064a\u0627", "mixname_ar": "\u0641\u0631\u062f\u0633\u064a\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Pardessiya", "mixname_en": "Pardessiya | <span>Sharon</span>", "label_ru": "\u041f\u0430\u0440\u0434\u0435\u0441\u0438\u044f", "mixname_ru": "\u041f\u0430\u0440\u0434\u0435\u0441\u0438\u044f | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "30729B4BB86FCEC82F4B2A54F60BC2D1", "id": "336", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d2\u05df \u05d9\u05d0\u05e9\u05d9\u05d4", "mixname_he": "\u05d2\u05df \u05d9\u05d0\u05e9\u05d9\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0627\u0646 \u064a\u0627\u0634\u064a\u0647", "mixname_ar": "\u062c\u0627\u0646 \u064a\u0627\u0634\u064a\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Gan Yoshia", "mixname_en": "Gan Yoshia | <span>Sharon</span>", "label_ru": "\u0413\u0430\u043d \u0419\u043e\u0448\u0438\u0430", "mixname_ru": "\u0413\u0430\u043d \u0419\u043e\u0448\u0438\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "30A26AE8F21953174DE1F9FD31F640AB", "id": "125", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d0\u05dc\u05e7\u05d5\u05e9", "mixname_he": "\u05d0\u05dc\u05e7\u05d5\u05e9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u0644\u0643\u0648\u0634", "mixname_ar": "\u0627\u0644\u0643\u0648\u0634 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Alkosh", "mixname_en": "Alkosh | <span>Confrontation Line</span>", "label_ru": "\u0410\u043b\u044c\u043a\u043e\u0448", "mixname_ru": "\u0410\u043b\u044c\u043a\u043e\u0448 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "310DED626394EF93812713B3DE5CF8BC", "id": "1364", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05e2\u05e9\u05d0\u05d4\u05dc", "mixname_he": "\u05e2\u05e9\u05d0\u05d4\u05dc | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0639\u0633\u0627\u0626\u064a\u0644", "mixname_ar": "\u0639\u0633\u0627\u0626\u064a\u0644 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Asa-El", "mixname_en": "Asa-El | <span>Yehuda</span>", "label_ru": "\u0410\u0441\u0430\u044d\u043b\u044c", "mixname_ru": "\u0410\u0441\u0430\u044d\u043b\u044c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "3156F42C03713F150D42B2EBCC0E1DBC", "id": "569", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05dc\u05d0 \u05d3\u05de\u05d5\u05df", "mixname_he": "\u05db\u05dc\u05d0 \u05d3\u05de\u05d5\u05df | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0633\u062c\u0646 \u0627\u0644\u062f\u0627\u0645\u0648\u0646", "mixname_ar": "\u0633\u062c\u0646 \u0627\u0644\u062f\u0627\u0645\u0648\u0646 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Damon Priosn", "mixname_en": "Damon Priosn | <span>HaCarmel</span>", "label_ru": "\u0422\u044e\u0440\u044c\u043c\u0430 \u0414\u0430\u043c\u043e\u043d", "mixname_ru": "\u0422\u044e\u0440\u044c\u043c\u0430 \u0414\u0430\u043c\u043e\u043d | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "316168122ADFFBD247938306339A0492", "id": "989", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05e2\u05d9\u05df \u05d4\u05d7\u05d5\u05e8\u05e9", "mixname_he": "\u05e2\u05d9\u05df \u05d4\u05d7\u05d5\u05e8\u05e9 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0647\u062d\u0648\u0631\u0634", "mixname_ar": "\u0639\u064a\u0646 \u0647\u062d\u0648\u0631\u0634 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ein HaHoresh", "mixname_en": "Ein HaHoresh | <span>Sharon</span>", "label_ru": "\u042d\u0439\u043d \u0445\u0430-\u0425\u043e\u0440\u0435\u0448", "mixname_ru": "\u042d\u0439\u043d \u0445\u0430-\u0425\u043e\u0440\u0435\u0448 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "31A58A203A5E7F4DA777649F2BB6E06B", "id": "332", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d2\u05de\u05d6\u05d5", "mixname_he": "\u05d2\u05de\u05d6\u05d5 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u062c\u0645\u0632\u0648", "mixname_ar": "\u062c\u0645\u0632\u0648 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Gimzo", "mixname_en": "Gimzo | <span>Yarkon</span>", "label_ru": "\u0413\u0438\u043c\u0437\u043e", "mixname_ru": "\u0413\u0438\u043c\u0437\u043e | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "31BF669EDB35291073CED5A53235C43D", "id": "1003", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e2\u05d9\u05df \u05db\u05e8\u05de\u05dc", "mixname_he": "\u05e2\u05d9\u05df \u05db\u05e8\u05de\u05dc | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0639\u064a\u0646 \u0643\u0631\u0645\u0644", "mixname_ar": "\u0639\u064a\u0646 \u0643\u0631\u0645\u0644 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Ein Carmel", "mixname_en": "Ein Carmel | <span>HaCarmel</span>", "label_ru": "\u042d\u0439\u043d \u041a\u0430\u0440\u043c\u0435\u043b\u044c", "mixname_ru": "\u042d\u0439\u043d \u041a\u0430\u0440\u043c\u0435\u043b\u044c | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "31CB09BDDD4C827786221C7D83E9787D", "id": "1204", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e9\u05d3\u05d4 \u05d5\u05e8\u05d1\u05d5\u05e8\u05d2", "mixname_he": "\u05e9\u05d3\u05d4 \u05d5\u05e8\u05d1\u05d5\u05e8\u05d2 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0648\u0631\u0628\u0648\u0631\u063a", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0648\u0631\u0628\u0648\u0631\u063a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Sdeh Warburg", "mixname_en": "Sdeh Warburg | <span>Sharon</span>", "label_ru": "\u0421\u0434\u044d \u0412\u0430\u0440\u0431\u0443\u0440\u0433", "mixname_ru": "\u0421\u0434\u044d \u0412\u0430\u0440\u0431\u0443\u0440\u0433 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "3202695F8E2D49A4FCA18B95A88C0CA4", "id": "1221", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "", "label_he": "\u05e9\u05d3\u05e8\u05d5\u05ea, \u05d0\u05d9\u05d1\u05d9\u05dd, \u05e0\u05d9\u05e8 \u05e2\u05dd", "mixname_he": "\u05e9\u05d3\u05e8\u05d5\u05ea, \u05d0\u05d9\u05d1\u05d9\u05dd, \u05e0\u05d9\u05e8 \u05e2\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0633\u062f\u064a\u0631\u0648\u062a \u060c \u0625\u064a\u0641\u064a\u0645 \u060c \u0646\u064a\u0631 \u0639\u0627\u0645", "mixname_ar": "\u0633\u062f\u064a\u0631\u0648\u062a \u060c \u0625\u064a\u0641\u064a\u0645 \u060c \u0646\u064a\u0631 \u0639\u0627\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Sderot, Ivim, Nir Am", "mixname_en": "Sderot, Ivim, Nir Am | <span>Gaza Envelope</span>", "label_ru": "\u0421\u0434\u0435\u0440\u043e\u0442, \u0418\u0432\u0438\u043c, \u041d\u0438\u0440 \u0410\u043c", "mixname_ru": "\u0421\u0434\u0435\u0440\u043e\u0442, \u0418\u0432\u0438\u043c, \u041d\u0438\u0440 \u0410\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "321ABBAC52A955D0BDF18977D8C822B3", "id": "1367", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d4\u05e8\u05d0\u05dc \u05d5\u05d2\u05d1\u05e2\u05ea \u05d4\u05e8\u05d5\u05d0\u05d4", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d4\u05e8\u05d0\u05dc \u05d5\u05d2\u05d1\u05e2\u05ea \u05d4\u05e8\u05d5\u05d0\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0647\u0627\u0631\u064a\u0626\u064a\u0644 \u0648\u062c\u0641\u0639\u0627\u062a \u0647\u0627 \u0631\u0648\u0626\u064a", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0647\u0627\u0631\u064a\u0626\u064a\u0644 \u0648\u062c\u0641\u0639\u0627\u062a \u0647\u0627 \u0631\u0648\u0626\u064a | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Gival Harel and Gival Haroe", "mixname_en": "Gival Harel and Gival Haroe | <span>Shomron</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0430\u0440\u044d\u043b\u044c \u0438 \u0413\u0438\u0432\u0430\u0442 \u0425\u0430-\u0420\u043e\u044d", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0430\u0440\u044d\u043b\u044c \u0438 \u0413\u0438\u0432\u0430\u0442 \u0425\u0430-\u0420\u043e\u044d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "32308D4A747B7EA5E94160FC87D1FD19", "id": "515", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d9\u05d6\u05e8\u05e2\u05d0\u05dc", "mixname_he": "\u05d9\u05d6\u05e8\u05e2\u05d0\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u064a\u0632\u0631\u0639\u0626\u064a\u0644", "mixname_ar": "\u064a\u0632\u0631\u0639\u0626\u064a\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Yizre'el", "mixname_en": "Yizre'el | <span>HaAmakim</span>", "label_ru": "\u0418\u0437\u0440\u0435\u044d\u043b\u044c", "mixname_ru": "\u0418\u0437\u0440\u0435\u044d\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "3254273FA9B12FAABE9BD3860A687CBE", "id": "510", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d9\u05d5\u05d1\u05dc", "mixname_he": "\u05db\u05e4\u05e8 \u05d9\u05d5\u05d1\u05dc | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u064a\u0648\u0641\u0627\u0644", "mixname_ar": "\u0643\u0641\u0627\u0631 \u064a\u0648\u0641\u0627\u0644 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Kfar Yuval", "mixname_en": "Kfar Yuval | <span>Confrontation Line</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u042e\u0432\u0430\u043b\u044c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u042e\u0432\u0430\u043b\u044c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "32631A75E4C05B2B5A43C161CAF9E5B7", "id": "303", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05db''\u05d7", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05db''\u05d7 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0643\u0648\u0627\u062d", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0643\u0648\u0627\u062d | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Giv'at Ko'ah", "mixname_en": "Giv'at Ko'ah | <span>Yarkon</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u041a\u043e\u0430\u0445", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u041a\u043e\u0430\u0445 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "3285F9922489CEEEB377FD677F2CB9F4", "id": "871", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e0\u05d5\u05e4\u05d9 \u05e0\u05d7\u05de\u05d9\u05d4", "mixname_he": "\u05e0\u05d5\u05e4\u05d9 \u05e0\u05d7\u05de\u05d9\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0648\u0641\u064a\u0647 \u0646\u062d\u0627\u0645\u064a\u0647", "mixname_ar": "\u0646\u0648\u0641\u064a\u0647 \u0646\u062d\u0627\u0645\u064a\u0647 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Nofei Nehemiah", "mixname_en": "Nofei Nehemiah | <span>Shomron</span>", "label_ru": "\u041d\u043e\u0444\u0435\u0439 \u041d\u0435\u0445\u0435\u043c\u0438\u044f", "mixname_ru": "\u041d\u043e\u0444\u0435\u0439 \u041d\u0435\u0445\u0435\u043c\u0438\u044f | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "32BF6BA191ECD87564E345BA3A13D2CA", "id": "789", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05e9\u05d5\u05de\u05e8\u05d5\u05df", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05e9\u05d5\u05de\u05e8\u05d5\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0639\u0627\u0644\u064a\u0647 \u0634\u0648\u0645\u0631\u0648\u0646", "mixname_ar": "\u0645\u0639\u0627\u0644\u064a\u0647 \u0634\u0648\u0645\u0631\u0648\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Ma'aleh Shomron", "mixname_en": "Ma'aleh Shomron | <span>Shomron</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0428\u043e\u043c\u0440\u043e\u043d", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0428\u043e\u043c\u0440\u043e\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "33194117DF6C9459E12C78B08FEA4989", "id": "523", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d9\u05e1\u05d5\u05d3 \u05d4\u05de\u05e2\u05dc\u05d4", "mixname_he": "\u05d9\u05e1\u05d5\u05d3 \u05d4\u05de\u05e2\u05dc\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u064a\u0633\u0648\u062f \u0647\u0645\u0639\u0644\u0627\u0647", "mixname_ar": "\u064a\u0633\u0648\u062f \u0647\u0645\u0639\u0644\u0627\u0647 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Yesud Hama'ala", "mixname_en": "Yesud Hama'ala | <span>Upper Galilee</span>", "label_ru": "\u0415\u0441\u0443\u0434 \u0445\u0430-\u041c\u0430\u0430\u043b\u0435", "mixname_ru": "\u0415\u0441\u0443\u0434 \u0445\u0430-\u041c\u0430\u0430\u043b\u0435 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "331AC4CA2C7F055F5103EA09B065A1DD", "id": "1309", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d1\u05e0\u05d9 \u05d9\u05d4\u05d5\u05d3\u05d4 \u05d5\u05d2\u05d1\u05e2\u05ea \u05d9\u05d5\u05d0\u05d1", "mixname_he": "\u05d1\u05e0\u05d9 \u05d9\u05d4\u05d5\u05d3\u05d4 \u05d5\u05d2\u05d1\u05e2\u05ea \u05d9\u05d5\u05d0\u05d1 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0628\u0646\u064a \u064a\u0647\u0648\u062f\u0627 \u0648\u062c\u0641\u0639\u0627\u062a \u064a\u0648\u0626\u0627\u0641", "mixname_ar": "\u0628\u0646\u064a \u064a\u0647\u0648\u062f\u0627 \u0648\u062c\u0641\u0639\u0627\u062a \u064a\u0648\u0626\u0627\u0641 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Bnei Yehuda and Givat Yoav", "mixname_en": "Bnei Yehuda and Givat Yoav | <span>South Golan</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0418\u0435\u0443\u0434\u0430 \u0438 \u0413\u0438\u0432\u0430\u0442 \u0419\u043e\u0430\u0432", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0418\u0435\u0443\u0434\u0430 \u0438 \u0413\u0438\u0432\u0430\u0442 \u0419\u043e\u0430\u0432 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "3332BC2023932CC3BB0F413EB8D39DDB", "id": "362", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d3\u05d2\u05e0\u05d9\u05d4 \u05d0", "mixname_he": "\u05d3\u05d2\u05e0\u05d9\u05d4 \u05d0 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u062f\u062c\u0627\u0646\u064a\u0627 \u0623\u2018", "mixname_ar": "\u062f\u062c\u0627\u0646\u064a\u0627 \u0623\u2018 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Degania Alef", "mixname_en": "Degania Alef | <span>Lower Galilee</span>", "label_ru": "\u0414\u0433\u0430\u043d\u0438\u044f \u0410\u043b\u0435\u0444", "mixname_ru": "\u0414\u0433\u0430\u043d\u0438\u044f \u0410\u043b\u0435\u0444 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "3364DD0322FAB2B673AE98C701290F88", "id": "114", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05dc\u05d9\u05db\u05d9\u05df", "mixname_he": "\u05d0\u05dc\u05d9\u05db\u05d9\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u064a\u062e\u064a\u0646", "mixname_ar": "\u0627\u0644\u064a\u062e\u064a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Elyachin", "mixname_en": "Elyachin | <span>Sharon</span>", "label_ru": "\u042d\u043b\u044c\u044f\u0445\u0438\u043d", "mixname_ru": "\u042d\u043b\u044c\u044f\u0445\u0438\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "339EACA709E2D473F6FBC627583A7228", "id": "1299", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05e2\u05e9\u05d9\u05d5\u05df \u05d7\u05e6\u05d1", "mixname_he": "\u05ea\u05e2\u05e9\u05d9\u05d5\u05df \u05d7\u05e6\u05d1 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u062a\u0639\u0633\u064a\u0648\u0646 \u062d\u0627\u062a\u0633\u0627\u0641", "mixname_ar": "\u062a\u0639\u0633\u064a\u0648\u0646 \u062d\u0627\u062a\u0633\u0627\u0641 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Hatzav Industrial Zone", "mixname_en": "Hatzav Industrial Zone | <span>Yarkon</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0425\u0430\u0446\u0430\u0432", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0425\u0430\u0446\u0430\u0432 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "33A6D6D95B152C55B6F49C3A3605DAFD", "id": "1202", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e9\u05d3\u05d4 \u05d1\u05d5\u05e7\u05e8", "mixname_he": "\u05e9\u05d3\u05d4 \u05d1\u05d5\u05e7\u05e8 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0628\u0648\u0643\u0631", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0628\u0648\u0643\u0631 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Sdeh Boker", "mixname_en": "Sdeh Boker | <span>South Negev</span>", "label_ru": "\u0421\u0434\u044d \u0411\u043e\u043a\u0435\u0440", "mixname_ru": "\u0421\u0434\u044d \u0411\u043e\u043a\u0435\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "33B6A52AE2DE5BC0A9381CB3CA1AFDB1", "id": "1107", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05e7\u05d8\u05d5\u05e8\u05d4", "mixname_he": "\u05e7\u05d8\u05d5\u05e8\u05d4 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0643\u062a\u0648\u0631\u0627\u0647", "mixname_ar": "\u0643\u062a\u0648\u0631\u0627\u0647 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Ktura", "mixname_en": "Ktura | <span>Arava</span>", "label_ru": "\u041a\u0442\u0443\u0440\u0430", "mixname_ru": "\u041a\u0442\u0443\u0440\u0430 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "34017920C06FCDAE8D0DA6C6954FCCFF", "id": "1260", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05e9\u05e4\u05d9\u05e8", "mixname_he": "\u05e9\u05e4\u05d9\u05e8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0634\u0641\u064a\u0631", "mixname_ar": "\u0634\u0641\u064a\u0631 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Shafir", "mixname_en": "Shafir | <span>Lachish</span>", "label_ru": "\u0428\u0430\u0444\u0438\u0440", "mixname_ru": "\u0428\u0430\u0444\u0438\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "34EF14D68DDD8F8CCAF64F85B0F8C9DB", "id": "112", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d0\u05dc\u05d9 \u05e2\u05d3", "mixname_he": "\u05d0\u05dc\u05d9 \u05e2\u05d3 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0625\u0644\u064a \u0639\u0627\u062f", "mixname_ar": "\u0625\u0644\u064a \u0639\u0627\u062f | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Eliad", "mixname_en": "Eliad | <span>South Golan</span>", "label_ru": "\u042d\u043b\u0438 \u0410\u0434", "mixname_ru": "\u042d\u043b\u0438 \u0410\u0434 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "34FFFEFF89BB4BB5CCB2BDD3BFFA066F", "id": "133", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05e2\u05d1\u05dc\u05d9\u05df", "mixname_he": "\u05d0\u05e2\u05d1\u05dc\u05d9\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0625\u0639\u0628\u0644\u064a\u0646", "mixname_ar": "\u0625\u0639\u0628\u0644\u064a\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Ibillin", "mixname_en": "Ibillin | <span>Center Galilee</span>", "label_ru": "\u0418\u0431\u043b\u0438\u043d", "mixname_ru": "\u0418\u0431\u043b\u0438\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "35068A2DB251571E7BDC50959EDFB6B1", "id": "703", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05de\u05d2\u05d3\u05dc", "mixname_he": "\u05de\u05d2\u05d3\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0645\u062c\u062f\u0627\u0644", "mixname_ar": "\u0645\u062c\u062f\u0627\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Migdal", "mixname_en": "Migdal | <span>Lower Galilee</span>", "label_ru": "\u041c\u0438\u0433\u0434\u0430\u043b\u044c", "mixname_ru": "\u041c\u0438\u0433\u0434\u0430\u043b\u044c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "354B22FBD281ED5ADA8A53E66200AAC5", "id": "1320", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "Misgav Regional Council", "label_he": "\u05d2\u05d9\u05dc\u05d5\u05df \u05e6\u05d5\u05e8\u05d9\u05ea", "mixname_he": "\u05d2\u05d9\u05dc\u05d5\u05df \u05e6\u05d5\u05e8\u05d9\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_en": "Gilon Tzurit", "mixname_en": "Gilon Tzurit | <span>Upper Galilee</span>"}, {"value": "3551BEB11180C476EC663D0C3C7EAA01", "id": "826", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05d9\u05e8\u05d3\u05df", "mixname_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05d9\u05e8\u05d3\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u064a\u0631\u062f\u0646", "mixname_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u064a\u0631\u062f\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Mishmar HaYarden", "mixname_en": "Mishmar HaYarden | <span>Upper Galilee</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u042f\u0440\u0434\u0435\u043d", "mixname_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u042f\u0440\u0434\u0435\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "35D0C4FBE004042B613B39CF2DC68B97", "id": "830", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05e9\u05e8\u05d5\u05df", "mixname_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05e9\u05e8\u05d5\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u0634\u0631\u0648\u0646", "mixname_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u0634\u0631\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Mishmar HaSharon", "mixname_en": "Mishmar HaSharon | <span>Sharon</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "mixname_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "35D27834677B24954A72E51031AF3A95", "id": "780", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05d2\u05dc\u05d1\u05d5\u05e2", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05d2\u05dc\u05d1\u05d5\u05e2 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u062c\u0644\u0628\u0648\u0639", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u062c\u0644\u0628\u0648\u0639 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Ma'aleh Gilboa", "mixname_en": "Ma'aleh Gilboa | <span>Beit She'an Valley</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0413\u0438\u043b\u044c\u0431\u043e\u0430 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "35F767CCB77FC0E36EBF3ADC2EB43CDB", "id": "34", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d5\u05e8 \u05e2\u05e7\u05d9\u05d1\u05d0", "mixname_he": "\u05d0\u05d5\u05e8 \u05e2\u05e7\u05d9\u05d1\u05d0 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0623\u0648\u0631 \u0639\u0643\u064a\u0641\u0627", "mixname_ar": "\u0623\u0648\u0631 \u0639\u0643\u064a\u0641\u0627 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Or Akiva", "mixname_en": "Or Akiva | <span>Menashe</span>", "label_ru": "\u041e\u0440 \u0410\u043a\u0438\u0432\u0430", "mixname_ru": "\u041e\u0440 \u0410\u043a\u0438\u0432\u0430 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "361B3C17083DF8EA5728A5D899B4B5EC", "id": "6002", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05e9\u05d3\u05d5\u05d3 - \u05d7,\u05d8,\u05d9,\u05d9\u05d2,\u05d9\u05d3,\u05d8\u05d6", "mixname_he": "\u05d0\u05e9\u05d3\u05d5\u05d3 -\u05d9\u05d0,\u05d9\u05d1,\u05d8\u05d5,\u05d9\u05d6,\u05de\u05e8\u05d9\u05e0\u05d4,\u05e1\u05d9\u05d8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u0634\u062f\u0648\u062f- \u064a \u0623\u060c \u064a \u0628\u060c \u0637 \u0648\u060c \u064a \u0632\u060c \u0645\u0631\u064a", "mixname_ar": "\u0623\u0634\u062f\u0648\u062f- \u064a \u0623\u060c \u064a \u0628\u060c \u0637 \u0648\u060c \u064a \u0632\u060c \u0645\u0631\u064a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ashdod - Yod Alef, Yod Bet, Tet Vav, Yod Zain, Marina, City", "mixname_en": "Ashdod - Yod Alef, Yod Bet, Tet Vav, Yod Zain, Marina, City | <span>Lachish</span>", "label_ru": "\u0410\u0448\u0434\u043e\u0434 - \u0445\u0435\u0442, \u0442\u0435\u0442, \u0439\u043e\u0434, \u0439\u043e\u0434 \u0433\u0438\u043c", "mixname_ru": "\u0410\u0448\u0434\u043e\u0434 - \u0445\u0435\u0442, \u0442\u0435\u0442, \u0439\u043e\u0434, \u0439\u043e\u0434 \u0433\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "366DE2FCBFD199BF06F31C5AD7DE46C8", "id": "284", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05d1\u05e2", "mixname_he": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05d1\u05e2 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062c\u064a\u0628\u0627\u0639", "mixname_ar": "\u062c\u064a\u0628\u0627\u0639 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Geva", "mixname_en": "Geva | <span>HaAmakim</span>", "label_ru": "\u0413\u0435\u0432\u0430", "mixname_ru": "\u0413\u0435\u0432\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "36784FA9584E0BC4D2B4A53B31611E0A", "id": "1095", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042f\u0432\u043d\u0435", "label_he": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d9\u05d1\u05e0\u05d4", "mixname_he": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d9\u05d1\u05e0\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u062c\u0645\u0648\u0639\u0629 \u064a\u0627\u0641\u0646\u064a\u0647", "mixname_ar": "\u0645\u062c\u0645\u0648\u0639\u0629 \u064a\u0627\u0641\u0646\u064a\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kvutzat Yavne", "mixname_en": "Kvutzat Yavne | <span>Lachish</span>", "label_ru": "\u041a\u0432\u0443\u0446\u0430\u0442 \u042f\u0432\u043d\u0435", "mixname_ru": "\u041a\u0432\u0443\u0446\u0430\u0442 \u042f\u0432\u043d\u0435 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "368F0F0540C6FEE498484687510B2DCA", "id": "1189", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e8\u05ea\u05de\u05d9\u05dd", "mixname_he": "\u05e8\u05ea\u05de\u05d9\u05dd | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0631\u062a\u0645\u064a\u0645", "mixname_ar": "\u0631\u062a\u0645\u064a\u0645 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Retamim", "mixname_en": "Retamim | <span>South Negev</span>", "label_ru": "\u0420\u0435\u0442\u0430\u043c\u0438\u043c", "mixname_ru": "\u0420\u0435\u0442\u0430\u043c\u0438\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "36D9107D79103A47AA30075482C64D0F", "id": "485", "areaid": 15, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d8\u05d9\u05e8\u05ea \u05db\u05e8\u05de\u05dc", "mixname_he": "\u05d8\u05d9\u05e8\u05ea \u05db\u05e8\u05de\u05dc | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0637\u064a\u0631\u0627\u062a \u0643\u0631\u0645\u0644", "mixname_ar": "\u0637\u064a\u0631\u0627\u062a \u0643\u0631\u0645\u0644 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Tirat Carmel", "mixname_en": "Tirat Carmel | <span>Menashe</span>", "label_ru": "\u0422\u0438\u0440\u0430\u0442 \u041a\u0430\u0440\u043c\u0435\u043b\u044c", "mixname_ru": "\u0422\u0438\u0440\u0430\u0442 \u041a\u0430\u0440\u043c\u0435\u043b\u044c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "374A4F0D65DDB3DAD764BDE06C01BA6D", "id": "1196", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e9\u05d1\u05dc\u05d9", "mixname_he": "\u05e9\u05d1\u05dc\u05d9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0634\u0628\u0644\u064a", "mixname_ar": "\u0634\u0628\u0644\u064a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Shibli", "mixname_en": "Shibli | <span>HaAmakim</span>", "label_ru": "\u0428\u0438\u0431\u043b\u0438", "mixname_ru": "\u0428\u0438\u0431\u043b\u0438 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "375B9B4012E960032FC9C023396A458B", "id": "1318", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05de\u05e2\u05d2\u05dc\u05d9\u05dd, \u05d2\u05d1\u05e2\u05d5\u05dc\u05d9\u05dd, \u05de\u05dc\u05d9\u05dc\u05d5\u05ea", "mixname_he": "\u05de\u05e2\u05d2\u05dc\u05d9\u05dd, \u05d2\u05d1\u05e2\u05d5\u05dc\u05d9\u05dd, \u05de\u05dc\u05d9\u05dc\u05d5\u05ea | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0639\u062c\u0627\u0644\u064a\u0645\u060c, \u062c\u0641\u0639\u0648\u0644\u064a\u0645\u060c, \u0645\u0644\u064a\u0644\u0648\u062a", "mixname_ar": "\u0645\u0639\u062c\u0627\u0644\u064a\u0645\u060c, \u062c\u0641\u0639\u0648\u0644\u064a\u0645\u060c, \u0645\u0644\u064a\u0644\u0648\u062a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Maagalim, Givolim, Melilot", "mixname_en": "Maagalim, Givolim, Melilot | <span>West Negev</span>", "label_ru": "\u041c\u0430\u0430\u0433\u0430\u043b\u0438\u043c, \u0413\u0438\u0432\u043e\u043b\u0438\u043c, \u041c\u0435\u043b\u0438\u0442\u043e\u0442", "mixname_ru": "\u041c\u0430\u0430\u0433\u0430\u043b\u0438\u043c, \u0413\u0438\u0432\u043e\u043b\u0438\u043c, \u041c\u0435\u043b\u0438\u0442\u043e\u0442 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "377178755FA582FB1269BE9452171561", "id": "645", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05e7\u05d0\u05e1\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05e7\u05d0\u05e1\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u0642\u0627\u0633\u0645", "mixname_ar": "\u0643\u0641\u0631 \u0642\u0627\u0633\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Kassem", "mixname_en": "Kfar Kassem | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041a\u0430\u0441\u0435\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041a\u0430\u0441\u0435\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "377D8F3FA9146D3E3DE670B5AA261C6E", "id": "525", "areaid": 6, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d9\u05e1\u05e2\u05d5\u05e8", "mixname_he": "\u05d9\u05e1\u05e2\u05d5\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u064a\u0633\u0639\u0648\u0631", "mixname_ar": "\u064a\u0633\u0639\u0648\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Yasur", "mixname_en": "Yasur | <span>Upper Galilee</span>", "label_ru": "\u042f\u0441\u0443\u0440", "mixname_ru": "\u042f\u0441\u0443\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "378223E1188FAE1675DCA2BF15615F56", "id": "90", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d0\u05d9\u05dc\u05d5\u05df", "mixname_he": "\u05d0\u05d9\u05dc\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u064a\u0644\u0648\u0646", "mixname_ar": "\u0627\u064a\u0644\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Eilon", "mixname_en": "Eilon | <span>Confrontation Line</span>", "label_ru": "\u042d\u0439\u043b\u043e\u043d", "mixname_ru": "\u042d\u0439\u043b\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "37A3C1FCFE9CF8B657802E98399B29E5", "id": "1119", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d1\u05d9\u05d0\u05dc\u05d9\u05e7", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d1\u05d9\u05d0\u05dc\u05d9\u05e7 | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0628\u064a\u0627\u0644\u064a\u0643", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0628\u064a\u0627\u0644\u064a\u0643 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Kiryat Biyalik", "mixname_en": "Kiryat Biyalik | <span>HaMifratz</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0411\u044f\u043b\u0438\u043a", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0411\u044f\u043b\u0438\u043a | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "37A72D2AEAEA327278A021FB206DA10A", "id": "883", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05e0\u05d7\u05dc\u05d9\u05dd", "mixname_he": "\u05e0\u05d7\u05dc\u05d9\u05dd | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0646\u062d\u0644\u064a\u0645", "mixname_ar": "\u0646\u062d\u0644\u064a\u0645 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Nechalim", "mixname_en": "Nechalim | <span>Yarkon</span>", "label_ru": "\u041d\u0435\u0445\u0430\u043b\u0438\u043c", "mixname_ru": "\u041d\u0435\u0445\u0430\u043b\u0438\u043c | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "381FD9B9308251654F96A0BEF8E2FAE8", "id": "378", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d3\u05e4\u05e0\u05d4", "mixname_he": "\u05d3\u05e4\u05e0\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062f\u0641\u0646\u0627", "mixname_ar": "\u062f\u0641\u0646\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Dafna", "mixname_en": "Dafna | <span>Confrontation Line</span>", "label_ru": "\u0414\u0430\u0444\u043d\u0430", "mixname_ru": "\u0414\u0430\u0444\u043d\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "3850000A6F3033931086A9E08F78A172", "id": "172", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d9\u05e8 \u05d0\u05dc\u05de\u05db\u05e1\u05d5\u05e8", "mixname_he": "\u05d1\u05d9\u05e8 \u05d0\u05dc\u05de\u05db\u05e1\u05d5\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0628\u0626\u0631 \u0627\u0644\u0645\u0643\u0633\u0648\u0631", "mixname_ar": "\u0628\u0626\u0631 \u0627\u0644\u0645\u0643\u0633\u0648\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Bir al-Maksur", "mixname_en": "Bir al-Maksur | <span>Center Galilee</span>", "label_ru": "\u0411\u0438\u0440 \u0430\u043b\u044c-\u041c\u0430\u043a\u0441\u0443\u0440", "mixname_ru": "\u0411\u0438\u0440 \u0430\u043b\u044c-\u041c\u0430\u043a\u0441\u0443\u0440 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "387DAA5FFFCE3FE89BB9CCD3CA555CB0", "id": "1383", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05e6\u05dc\u05de\u05d5\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05e6\u05dc\u05de\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0633\u062c\u0646 \u062a\u0635\u0644\u0645\u0648\u0646", "mixname_ar": "\u0633\u062c\u0646 \u062a\u0635\u0644\u0645\u0648\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Tsalmon Detention Center", "mixname_en": "Tsalmon Detention Center | <span>Center Galilee</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0421\u043e\u0445\u0430\u0440 \u0426\u0430\u043b\u043c\u043e\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0421\u043e\u0445\u0430\u0440 \u0426\u0430\u043b\u043c\u043e\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "3896F8FD13C07F97F745FF1DA7509C39", "id": "6029", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05dc \u05d0\u05d1\u05d9\u05d1 - \u05d3\u05e8\u05d5\u05dd \u05d4\u05e2\u05d9\u05e8 \u05d5\u05d9\u05e4\u05d5", "mixname_he": "\u05ea\u05dc \u05d0\u05d1\u05d9\u05d1 - \u05e2\u05d1\u05e8 \u05d4\u05d9\u05e8\u05e7\u05d5\u05df | <span>\u05d3\u05df</span>", "label_ar": "\u062a\u0644 \u0623\u0628\u064a\u0628\u00a0\u0647\u064a\u0631\u0643\u0648\u0646", "mixname_ar": "\u062a\u0644 \u0623\u0628\u064a\u0628\u00a0\u0647\u064a\u0631\u0643\u0648\u0646 | <span>\u062f\u0627\u0646</span>", "label_en": "Tel Aviv - South and Jaffa", "mixname_en": "Tel Aviv - South and Jaffa | <span>Dan</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0410\u0432\u0438\u0432 - \u042e\u0436\u043d\u044b\u0439 \u0420\u0430\u0439\u043e\u043d \u0438 \u042f\u0444", "mixname_ru": "\u0422\u0435\u043b\u044c \u0410\u0432\u0438\u0432 - \u042e\u0436\u043d\u044b\u0439 \u0420\u0430\u0439\u043e\u043d \u0438 \u042f\u0444 | <span>\u0414\u0430\u043d</span>"}, {"value": "395F74351FB200CE56247884756B0D37", "id": "651", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05e9\u05de\u05d5\u05d0\u05dc", "mixname_he": "\u05db\u05e4\u05e8 \u05e9\u05de\u05d5\u05d0\u05dc | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0634\u0645\u0648\u0626\u064a\u0644", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0634\u0645\u0648\u0626\u064a\u0644 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Kfar Shmuel", "mixname_en": "Kfar Shmuel | <span>HaShfela</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0428\u043c\u0443\u044d\u043b\u044c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0428\u043c\u0443\u044d\u043b\u044c | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "398AD1C0136C32C950101C24A4F9B6AB", "id": "178", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d1\u05d9\u05ea \u05d0\u05dc\u05e4\u05d0 \u05d5\u05d7\u05e4\u05e6\u05d9\u05d1\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05d0\u05dc\u05e4\u05d0 \u05d5\u05d7\u05e4\u05e6\u05d9\u05d1\u05d4 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0623\u0644\u0641\u0627 \u0648\u062d\u0641\u062a\u0633\u0641\u0627", "mixname_ar": "\u0628\u064a\u062a \u0623\u0644\u0641\u0627 \u0648\u062d\u0641\u062a\u0633\u0641\u0627 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Beit Alfa and Heftziba", "mixname_en": "Beit Alfa and Heftziba | <span>Beit She'an Valley</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0410\u043b\u044c\u0444\u0430 \u0438 \u0425\u0435\u0444\u0446\u0438\u0431\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0410\u043b\u044c\u0444\u0430 \u0438 \u0425\u0435\u0444\u0446\u0438\u0431\u0430 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "39A3D40E1083DA46ECD50DF965540061", "id": "1116", "areaid": 5, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e7\u05e6\u05e8\u05d9\u05df", "mixname_he": "\u05e7\u05e6\u05e8\u05d9\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0643\u062a\u0633\u0631\u064a\u0646", "mixname_ar": "\u0643\u062a\u0633\u0631\u064a\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Katzrin", "mixname_en": "Katzrin | <span>South Golan</span>", "label_ru": "\u041a\u0430\u0446\u0440\u0438\u043d", "mixname_ru": "\u041a\u0430\u0446\u0440\u0438\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "39B3381D51EE52BF89411FF871F86B25", "id": "1081", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e6\u05d5\u05e8 \u05d4\u05d3\u05e1\u05d4", "mixname_he": "\u05e6\u05d5\u05e8 \u05d4\u05d3\u05e1\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0633\u0648\u0631 \u0647\u062f\u0627\u0633\u0627", "mixname_ar": "\u062a\u0633\u0648\u0631 \u0647\u062f\u0627\u0633\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tzur Hadassa", "mixname_en": "Tzur Hadassa | <span>Shfelat Yehuda</span>", "label_ru": "\u0426\u0443\u0440 \u0425\u0430\u0434\u0430\u0441\u0441\u0430", "mixname_ru": "\u0426\u0443\u0440 \u0425\u0430\u0434\u0430\u0441\u0441\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "3A05F720A844817F71F7347B31E7F9A6", "id": "459", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "", "label_he": "\u05d7\u05de\u05ea \u05d2\u05d3\u05e8", "mixname_he": "\u05d7\u05de\u05ea \u05d2\u05d3\u05e8 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u062d\u0627\u0645\u0627\u062a \u062c\u0627\u062f\u064a\u0631", "mixname_ar": "\u062d\u0627\u0645\u0627\u062a \u062c\u0627\u062f\u064a\u0631 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Hamat gader", "mixname_en": "Hamat gader | <span>South Golan</span>", "label_ru": "\u0425\u0430\u043c\u0430\u0434 \u0413\u0430\u0434\u0435\u0440", "mixname_ru": "\u0425\u0430\u043c\u0430\u0434 \u0413\u0430\u0434\u0435\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "3A20886FCEB42EDED6C68413DA621693", "id": "572", "areaid": 9, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05db\u05de\u05d4\u05d9\u05df", "mixname_he": "\u05db\u05de\u05d4\u05d9\u05df | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0643\u0645\u0647\u064a\u0646", "mixname_ar": "\u0643\u0645\u0647\u064a\u0646 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Kmehin", "mixname_en": "Kmehin | <span>South Negev</span>", "label_ru": "\u041a\u043c\u0435\u0438\u043d", "mixname_ru": "\u041a\u043c\u0435\u0438\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "3A60960F68F53D35B9CF44FE5610A640", "id": "545", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d9\u05e8\u05e7\u05d5\u05e0\u05d4", "mixname_he": "\u05d9\u05e8\u05e7\u05d5\u05e0\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u064a\u0631\u0643\u0648\u0646\u0629", "mixname_ar": "\u064a\u0631\u0643\u0648\u0646\u0629 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Yarkona", "mixname_en": "Yarkona | <span>Sharon</span>", "label_ru": "\u042f\u0440\u043a\u043e\u043d\u0430", "mixname_ru": "\u042f\u0440\u043a\u043e\u043d\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "3B377483BD32241B6A1B06CA469A9A02", "id": "518", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d9\u05d9\u05d8''\u05d1", "mixname_he": "\u05d9\u05d9\u05d8''\u05d1 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u064a\u064a\u0637\u0627\u0628", "mixname_ar": "\u064a\u064a\u0637\u0627\u0628 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Yitav", "mixname_en": "Yitav | <span>Bika'a</span>", "label_ru": "\u0418\u0442\u0430\u0432", "mixname_ru": "\u0418\u0442\u0430\u0432 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "3B49710EF38B919874F781B1BDE79C2B", "id": "798", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05de\u05e6\u05e4\u05d4", "mixname_he": "\u05de\u05e6\u05e4\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0645\u062a\u0633\u0628\u064a", "mixname_ar": "\u0645\u062a\u0633\u0628\u064a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Mitzpeh", "mixname_en": "Mitzpeh | <span>Lower Galilee</span>", "label_ru": "\u041c\u0438\u0446\u043f\u0435", "mixname_ru": "\u041c\u0438\u0446\u043f\u0435 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "3B4FC55D6EB6F164BC92D44BEF82C2F0", "id": "667", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05db\u05e8\u05de\u05d9\u05dd", "mixname_he": "\u05db\u05e8\u05de\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0643\u0631\u0645\u064a\u0645", "mixname_ar": "\u0643\u0631\u0645\u064a\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Kramim", "mixname_en": "Kramim | <span>Center Negev</span>", "label_ru": "\u041a\u0440\u0430\u043c\u0438\u043c", "mixname_ru": "\u041a\u0440\u0430\u043c\u0438\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "3B7C68C5A49DD18C6CD659E971D59066", "id": "536", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05d9\u05e7\u05d5\u05dd", "mixname_he": "\u05d9\u05e7\u05d5\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u064a\u0643\u0648\u0645", "mixname_ar": "\u064a\u0643\u0648\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Yakum", "mixname_en": "Yakum | <span>Sharon</span>", "label_ru": "\u042f\u043a\u0443\u043c", "mixname_ru": "\u042f\u043a\u0443\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "3B8BCC8BECC72C9968C5761FB361DEFE", "id": "217", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e1\u05e4\u05e8 \u05e9\u05d3\u05d4 \u05de\u05d9\u05e8\u05d5\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05e1\u05e4\u05e8 \u05e9\u05d3\u05d4 \u05de\u05d9\u05e8\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u062f\u0631\u0633\u0629 \u0633\u062f\u0647 \u0645\u064a\u0631\u0648\u0646", "mixname_ar": "\u0645\u062f\u0631\u0633\u0629 \u0633\u062f\u0647 \u0645\u064a\u0631\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Sdeh Meron School", "mixname_en": "Sdeh Meron School | <span>Confrontation Line</span>", "label_ru": "\u0428\u043a\u043e\u043b\u0430 \u0421\u0434\u0435 \u041c\u0438\u0440\u043e\u043d", "mixname_ru": "\u0428\u043a\u043e\u043b\u0430 \u0421\u0434\u0435 \u041c\u0438\u0440\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "3C4432475121FB764B1914DD033673D8", "id": "849", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e0\u05d4\u05d5\u05e8\u05d4", "mixname_he": "\u05e0\u05d4\u05d5\u05e8\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u0647\u0648\u0631\u0627", "mixname_ar": "\u0646\u0647\u0648\u0631\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Nehora", "mixname_en": "Nehora | <span>Lachish</span>", "label_ru": "\u041d\u0435\u043e\u0440\u0430", "mixname_ru": "\u041d\u0435\u043e\u0440\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "3C6304250948FDBF2F350A6876B35FDF", "id": "1030", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e2\u05e0\u05d1", "mixname_he": "\u05e2\u05e0\u05d1 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646\u0627\u0628", "mixname_ar": "\u0639\u064a\u0646\u0627\u0628 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Einav", "mixname_en": "Einav | <span>Shomron</span>", "label_ru": "\u042d\u0439\u043d\u0430\u0432", "mixname_ru": "\u042d\u0439\u043d\u0430\u0432 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "3C7C3B03FE942B8B0B8538524AF9ED18", "id": "1126", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05e0\u05d8\u05e4\u05d9\u05dd", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05e0\u05d8\u05e4\u05d9\u05dd | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0646\u062a\u0627\u0641\u064a\u0645", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0646\u062a\u0627\u0641\u064a\u0645 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Kiryat Netafim", "mixname_en": "Kiryat Netafim | <span>Shomron</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u041d\u0435\u0442\u0430\u0444\u0438\u043c", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u041d\u0435\u0442\u0430\u0444\u0438\u043c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "3CC90E0A16A0F9696D7EA7F2C2A8BA7A", "id": "396", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d4\u05e1\u05d5\u05dc\u05dc\u05d9\u05dd", "mixname_he": "\u05d4\u05e1\u05d5\u05dc\u05dc\u05d9\u05dd | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0647\u0633\u0648\u0644\u064a\u0644\u064a\u0645", "mixname_ar": "\u0647\u0633\u0648\u0644\u064a\u0644\u064a\u0645 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "HaSollelim", "mixname_en": "HaSollelim | <span>HaAmakim</span>", "label_ru": "\u0445\u0430-\u0421\u043e\u043b\u0435\u043b\u0438\u043c", "mixname_ru": "\u0445\u0430-\u0421\u043e\u043b\u0435\u043b\u0438\u043c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "3D1CB6C64AA8FB41D16AC94599895CDD", "id": "491", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d8\u05dc\u05de\u05d5\u05df", "mixname_he": "\u05d8\u05dc\u05de\u05d5\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0644\u0645\u0648\u0646", "mixname_ar": "\u062a\u0644\u0645\u0648\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Talmon", "mixname_en": "Talmon | <span>Shomron</span>", "label_ru": "\u0422\u0430\u043b\u044c\u043c\u043e\u043d", "mixname_ru": "\u0422\u0430\u043b\u044c\u043c\u043e\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "3D27817036742BBBC45D7FF241C881BA", "id": "1148", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05e8\u05d4\u05d8", "mixname_he": "\u05e8\u05d4\u05d8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0631\u0647\u0637", "mixname_ar": "\u0631\u0647\u0637 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Rahat", "mixname_en": "Rahat | <span>Center Negev</span>", "label_ru": "\u0420\u0430\u0445\u0430\u0442", "mixname_ru": "\u0420\u0430\u0445\u0430\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "3D778444C4CEF84A291F9916485BA141", "id": "175", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05d1\u05d9\u05ea \u05d0\u05d5\u05e8\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05d0\u05d5\u05e8\u05df | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0628\u064a\u062a \u0623\u0648\u0631\u0646", "mixname_ar": "\u0628\u064a\u062a \u0623\u0648\u0631\u0646 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Beit Oren", "mixname_en": "Beit Oren | <span>HaCarmel</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u041e\u0440\u0435\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u041e\u0440\u0435\u043d | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "3D865F699C93028C7C71084FD313BD4F", "id": "1005", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e2\u05d9\u05df \u05e0\u05e7\u05d5\u05d1\u05d0", "mixname_he": "\u05e2\u05d9\u05df \u05e0\u05e7\u05d5\u05d1\u05d0 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0646\u0642\u0648\u0628\u0627", "mixname_ar": "\u0639\u064a\u0646 \u0646\u0642\u0648\u0628\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ein Naqquba", "mixname_en": "Ein Naqquba | <span>Shfelat Yehuda</span>", "label_ru": "\u042d\u0439\u043d \u041d\u0430\u043a\u043a\u0443\u0431\u0430", "mixname_ru": "\u042d\u0439\u043d \u041d\u0430\u043a\u043a\u0443\u0431\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "3DA7BE979450E8ACF75EBB534275C66A", "id": "1154", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e8\u05d5\u05e2\u05d9", "mixname_he": "\u05e8\u05d5\u05e2\u05d9 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0631\u0648\u0639\u064a", "mixname_ar": "\u0631\u0648\u0639\u064a | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Roee", "mixname_en": "Roee | <span>Bika'a</span>", "label_ru": "\u0420\u043e\u0438", "mixname_ru": "\u0420\u043e\u0438 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "3DAE9A4A80054FC0EBF0BE5C792D4AA0", "id": "11", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d0\u05d1\u05d9\u05e8\u05d9\u05dd", "mixname_he": "\u05d0\u05d1\u05d9\u05e8\u05d9\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0623\u0641\u064a\u0631\u064a\u0645", "mixname_ar": "\u0623\u0641\u064a\u0631\u064a\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Abirim", "mixname_en": "Abirim | <span>Confrontation Line</span>", "label_ru": "\u0410\u0431\u0438\u0440\u0438\u043c", "mixname_ru": "\u0410\u0431\u0438\u0440\u0438\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "3DD6F59AB2EAABBE76F2C90BC374D3EF", "id": "29", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c \u041a\u0430\u0441\u0443\u043c", "label_he": "\u05d0\u05d5\u05dd \u05d1\u05d8\u05d9\u05df", "mixname_he": "\u05d0\u05d5\u05dd \u05d1\u05d8\u05d9\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0623\u0645 \u0628\u0637\u064a\u0646", "mixname_ar": "\u0623\u0645 \u0628\u0637\u064a\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Umm Batin", "mixname_en": "Umm Batin | <span>Center Negev</span>", "label_ru": "\u0423\u043c \u0411\u0430\u0442\u0438\u043d", "mixname_ru": "\u0423\u043c \u0411\u0430\u0442\u0438\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "3E31B16DFA15AAFC0039B349F3B8AFC3", "id": "192", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d1\u05d9\u05ea \u05d6\u05d9\u05ea", "mixname_he": "\u05d1\u05d9\u05ea \u05d6\u05d9\u05ea | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0628\u064a\u062a \u0632\u064a\u062a", "mixname_ar": "\u0628\u064a\u062a \u0632\u064a\u062a | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Beit Zayit", "mixname_en": "Beit Zayit | <span>Jerusalem</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0417\u0430\u0439\u0442", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0417\u0430\u0439\u0442 | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "3E670DC85A4E7C08F3A1853F0D7AF5F8", "id": "21", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d0\u05d3\u05de\u05d9\u05ea", "mixname_he": "\u05d0\u05d3\u05de\u05d9\u05ea | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0623\u062f\u0645\u064a\u062a", "mixname_ar": "\u0623\u062f\u0645\u064a\u062a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Idmit", "mixname_en": "Idmit | <span>Confrontation Line</span>", "label_ru": "\u0418\u0434\u043c\u0438\u0442", "mixname_ru": "\u0418\u0434\u043c\u0438\u0442 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "3E8E83AF17DBCBBE8D6130373ED194E1", "id": "1359", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05d0\u05e8 \u05d8\u05d5\u05d1\u05d9\u05d4", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05d0\u05e8 \u05d8\u05d5\u05d1\u05d9\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0626\u0631 \u062a\u0648\u0641\u064a\u0627", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0626\u0631 \u062a\u0648\u0641\u064a\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Industrial area Be'er Tovia", "mixname_en": "Industrial area Be'er Tovia | <span>Lachish</span>", "label_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "mixname_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "3EAF07E43F24DE3EE4EB84E267ACBFB3", "id": "709", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05de\u05d2\u05dc", "mixname_he": "\u05de\u05d2\u05dc | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u062c\u0627\u0644", "mixname_ar": "\u0645\u062c\u0627\u0644 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Magal", "mixname_en": "Magal | <span>Wadi Ara</span>", "label_ru": "\u041c\u0430\u0433\u0430\u043b\u044c", "mixname_ru": "\u041c\u0430\u0433\u0430\u043b\u044c | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "3ED3E9D4BF90CC0B63DFCEC6090F618B", "id": "557", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05db\u05d5\u05db\u05d1 \u05d4\u05e9\u05d7\u05e8", "mixname_he": "\u05db\u05d5\u05db\u05d1 \u05d4\u05e9\u05d7\u05e8 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0648\u062e\u0627\u0641 \u0647\u0634\u0627\u062d\u0627\u0631", "mixname_ar": "\u0643\u0648\u062e\u0627\u0641 \u0647\u0634\u0627\u062d\u0627\u0631 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Kokhav HaShahar", "mixname_en": "Kokhav HaShahar | <span>Shomron</span>", "label_ru": "\u041a\u043e\u0445\u0430\u0432 \u0445\u0430-\u0428\u0430\u0445\u0430\u0440", "mixname_ru": "\u041a\u043e\u0445\u0430\u0432 \u0445\u0430-\u0428\u0430\u0445\u0430\u0440 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "3F0372F5B6A2B2C1946F497F0FC56974", "id": "700", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05de\u05d2'\u05d3\u05dc \u05db\u05e8\u05d5\u05dd", "mixname_he": "\u05de\u05d2'\u05d3\u05dc \u05db\u05e8\u05d5\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0645\u062c\u062f \u0627\u0644\u0643\u0631\u0648\u0645", "mixname_ar": "\u0645\u062c\u062f \u0627\u0644\u0643\u0631\u0648\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Majd al-Krum", "mixname_en": "Majd al-Krum | <span>Upper Galilee</span>", "label_ru": "\u041c\u0430\u0434\u0436\u0434 \u0410\u043b\u044c \u041a\u0440\u0443\u043c", "mixname_ru": "\u041c\u0430\u0434\u0436\u0434 \u0410\u043b\u044c \u041a\u0440\u0443\u043c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "3F05AFA411771D93DF5824412632B3AA", "id": "562", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "", "label_he": "\u05db\u05d5\u05e9\u05d9 \u05e8\u05de\u05d5\u05df", "mixname_he": "\u05db\u05d5\u05e9\u05d9 \u05e8\u05de\u05d5\u05df | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0643\u0648\u0634\u064a \u0631\u064a\u0645\u0648\u0646", "mixname_ar": "\u0643\u0648\u0634\u064a \u0631\u064a\u0645\u0648\u0646 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Kushi Rimon", "mixname_en": "Kushi Rimon | <span>Arava</span>", "label_ru": "\u041a\u0443\u0448\u0438 \u0420\u0430\u043c\u043e\u043d", "mixname_ru": "\u041a\u0443\u0448\u0438 \u0420\u0430\u043c\u043e\u043d | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "3F4227D282D7A222ED0EFC890416516F", "id": "1338", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "Hevel Modiin Regional Council", "label_he": "\u05db\u05e8\u05dd \u05d1\u05df \u05e9\u05de\u05df", "mixname_he": "\u05db\u05e8\u05dd \u05d1\u05df \u05e9\u05de\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_en": "Kerem BenShemen", "mixname_en": "Kerem BenShemen | <span>HaShfela</span>"}, {"value": "3F464233BFD6E91D3306445A18A7910A", "id": "1185", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05e2\u05e0\u05e0\u05d4", "mixname_he": "\u05e8\u05e2\u05e0\u05e0\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0631\u0639\u0646\u0627\u0646\u0627", "mixname_ar": "\u0631\u0639\u0646\u0627\u0646\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ra'anana", "mixname_en": "Ra'anana | <span>Sharon</span>", "label_ru": "\u0420\u0430\u0430\u043d\u0430\u043d\u0430", "mixname_ru": "\u0420\u0430\u0430\u043d\u0430\u043d\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "3F7184D796513BFEF08BA88A03D3D1C4", "id": "195", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d1\u05d9\u05ea \u05d7\u05d5\u05e8\u05d5\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05d7\u05d5\u05e8\u05d5\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u062d\u0648\u0631\u0648\u0646", "mixname_ar": "\u0628\u064a\u062a \u062d\u0648\u0631\u0648\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Beit Horon", "mixname_en": "Beit Horon | <span>Shomron</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u043e\u0440\u043e\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u043e\u0440\u043e\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "3F7F002C3C95F601CAF07D70D081C51D", "id": "998", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0422\u0430\u043c\u0430\u0440", "label_he": "\u05e2\u05d9\u05df \u05d7\u05e6\u05d1\u05d4", "mixname_he": "\u05e2\u05d9\u05df \u05d7\u05e6\u05d1\u05d4 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u062d\u062a\u0633\u0641\u0627", "mixname_ar": "\u0639\u064a\u0646 \u062d\u062a\u0633\u0641\u0627 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Ein Hatzeva", "mixname_en": "Ein Hatzeva | <span>Arava</span>", "label_ru": "\u042d\u0439\u043d \u0425\u0430\u0446\u0435\u0432\u0430", "mixname_ru": "\u042d\u0439\u043d \u0425\u0430\u0446\u0435\u0432\u0430 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "3F923F1709E5134A0FE47B9D9B14573E", "id": "692", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05de\u05d1\u05d5\u05d0 \u05d7\u05d5\u05e8\u05d5\u05df", "mixname_he": "\u05de\u05d1\u05d5\u05d0 \u05d7\u05d5\u05e8\u05d5\u05df | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0627\u0641\u0648 \u062d\u0648\u0631\u0648\u0646", "mixname_ar": "\u0645\u0627\u0641\u0648 \u062d\u0648\u0631\u0648\u0646 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Mevo Horon", "mixname_en": "Mevo Horon | <span>Yarkon</span>", "label_ru": "\u041c\u0435\u0432\u043e \u0425\u043e\u0440\u043e\u043d", "mixname_ru": "\u041c\u0435\u0432\u043e \u0425\u043e\u0440\u043e\u043d | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "3FCD435C197649E8BA51975D612035B5", "id": "914", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e0\u05d9\u05e8\u05d9\u05ea", "mixname_he": "\u05e0\u05d9\u05e8\u05d9\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u064a\u0631\u064a\u062a", "mixname_ar": "\u0646\u064a\u0631\u064a\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Nirit", "mixname_en": "Nirit | <span>Sharon</span>", "label_ru": "\u041d\u0438\u0440\u0438\u0442", "mixname_ru": "\u041d\u0438\u0440\u0438\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "3FDF180D2C6E684B2F460A42BA59EA20", "id": "1209", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e9\u05d3\u05d4 \u05e0\u05d7\u05d5\u05dd", "mixname_he": "\u05e9\u05d3\u05d4 \u05e0\u05d7\u05d5\u05dd | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0646\u0627\u062d\u0648\u0645", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0646\u0627\u062d\u0648\u0645 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Sdeh Nachum", "mixname_en": "Sdeh Nachum | <span>Beit She'an Valley</span>", "label_ru": "\u0421\u0434\u044d \u041d\u0430\u0445\u0443\u043c", "mixname_ru": "\u0421\u0434\u044d \u041d\u0430\u0445\u0443\u043c | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "3FEC69A9F93DACA1F20945B919F1EAD1", "id": "985", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0422\u0430\u043c\u0430\u0440", "label_he": "\u05e2\u05d9\u05df \u05d2\u05d3\u05d9", "mixname_he": "\u05e2\u05d9\u05df \u05d2\u05d3\u05d9 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0639\u064a\u0646 \u062c\u062f\u064a", "mixname_ar": "\u0639\u064a\u0646 \u062c\u062f\u064a | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Ein Gedi", "mixname_en": "Ein Gedi | <span>Dead Sea</span>", "label_ru": "\u042d\u0439\u043d \u0413\u0435\u0434\u0438", "mixname_ru": "\u042d\u0439\u043d \u0413\u0435\u0434\u0438 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "3FEE28AE42DEEC6C99CAE9A8A615145F", "id": "1217", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e9\u05d3\u05d9 \u05ea\u05e8\u05d5\u05de\u05d5\u05ea", "mixname_he": "\u05e9\u05d3\u05d9 \u05ea\u05e8\u05d5\u05de\u05d5\u05ea | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u062a\u0631\u0648\u0645\u0648\u062a", "mixname_ar": "\u0633\u062f\u064a\u0647 \u062a\u0631\u0648\u0645\u0648\u062a | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Sdei Trumot", "mixname_en": "Sdei Trumot | <span>Beit She'an Valley</span>", "label_ru": "\u0421\u0434\u0435\u0439 \u0422\u0440\u0443\u043c\u043e\u0442", "mixname_ru": "\u0421\u0434\u0435\u0439 \u0422\u0440\u0443\u043c\u043e\u0442 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "4026EC67E8CF4EAC673BE4C46DBBEC8B", "id": "431", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d7\u05d3 \u05e0\u05e1", "mixname_he": "\u05d7\u05d3 \u05e0\u05e1 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u062d\u0627\u062f \u0646\u064a\u0633", "mixname_ar": "\u062d\u0627\u062f \u0646\u064a\u0633 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Had Ness", "mixname_en": "Had Ness | <span>South Golan</span>", "label_ru": "\u0425\u0430\u0434 \u041d\u0435\u0441", "mixname_ru": "\u0425\u0430\u0434 \u041d\u0435\u0441 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "404B6377009680FD26E9422EDD30F1EC", "id": "79", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d0\u05d7\u05d5\u05d5\u05d4", "mixname_he": "\u05d0\u05d7\u05d5\u05d5\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u062d\u0641\u0627", "mixname_ar": "\u0623\u062d\u0641\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Achva", "mixname_en": "Achva | <span>Lachish</span>", "label_ru": "\u0410\u0445\u0432\u0430", "mixname_ru": "\u0410\u0445\u0432\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "406DE6CC6C42F11AFA6FE78E497B6673", "id": "296", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d6\u05d0\u05d1", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d6\u05d0\u05d1 | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0632\u0626\u064a\u0641", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0632\u0626\u064a\u0641 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Givat Ze'ev", "mixname_en": "Givat Ze'ev | <span>Jerusalem</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0417\u0435\u044d\u0432", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0417\u0435\u044d\u0432 | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "4078459B7E6113B517F751D53575E7AD", "id": "711", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05de\u05d2\u05df \u05e9\u05d0\u05d5\u05dc", "mixname_he": "\u05de\u05d2\u05df \u05e9\u05d0\u05d5\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0645\u0627\u062c\u0646 \u0634\u0627\u0624\u0648\u0644", "mixname_ar": "\u0645\u0627\u062c\u0646 \u0634\u0627\u0624\u0648\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Magen Shaul", "mixname_en": "Magen Shaul | <span>HaAmakim</span>", "label_ru": "\u041c\u0430\u0433\u0435\u043d \u0428\u0430\u0443\u043b\u044c", "mixname_ru": "\u041c\u0430\u0433\u0435\u043d \u0428\u0430\u0443\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "408BFAD26EE13817755AFB4BA8EC78B5", "id": "206", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05d1\u05d9\u05ea \u05d9\u05ea\u05d9\u05e8", "mixname_he": "\u05d1\u05d9\u05ea \u05d9\u05ea\u05d9\u05e8 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u064a\u062a\u064a\u0631", "mixname_ar": "\u0628\u064a\u062a \u064a\u062a\u064a\u0631 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beit Yatir", "mixname_en": "Beit Yatir | <span>Yehuda</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u042f\u0442\u0438\u0440", "mixname_ru": "\u0411\u0435\u0439\u0442 \u042f\u0442\u0438\u0440 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "4090A9B2E798E8D04FB6364F130CFCB0", "id": "598", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05de\u05db\u05d1\u05d9", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05de\u05db\u05d1\u05d9 | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0647\u0645\u0643\u0627\u0628\u064a", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0647\u0645\u0643\u0627\u0628\u064a | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Kfar HaMaccabi", "mixname_en": "Kfar HaMaccabi | <span>HaMifratz</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u041c\u0430\u043a\u043a\u0430\u0431\u0438", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u041c\u0430\u043a\u043a\u0430\u0431\u0438 | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "409A21111F1A2B4760D6A1D1529786AE", "id": "865", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d9\u05e8\u05e7", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d9\u05e8\u05e7 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u064a\u064a\u0631\u0643", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u064a\u064a\u0631\u0643 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Neveh Yarak", "mixname_en": "Neveh Yarak | <span>Sharon</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u042f\u0440\u0430\u043a", "mixname_ru": "\u041d\u0435\u0432\u0435 \u042f\u0440\u0430\u043a | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "40D964E985E1399B839D441A112DB3BE", "id": "1382", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d3\u05e0\u05d9\u05d0\u05dc", "mixname_he": "\u05d3\u05e0\u05d9\u05d0\u05dc | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062f\u0627\u0646\u064a\u0627\u0644", "mixname_ar": "\u062f\u0627\u0646\u064a\u0627\u0644 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Daniel", "mixname_en": "Daniel | <span>West Negev</span>", "label_ru": "\u0414\u0430\u043d\u0438\u044d\u043b\u044c", "mixname_ru": "\u0414\u0430\u043d\u0438\u044d\u043b\u044c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "41463800F00949A77335A15937122427", "id": "519", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d9\u05db\u05d9\u05e0\u05d9", "mixname_he": "\u05d9\u05db\u05d9\u05e0\u05d9 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u064a\u0627\u062e\u064a\u0646\u064a", "mixname_ar": "\u064a\u0627\u062e\u064a\u0646\u064a | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Yakhini", "mixname_en": "Yakhini | <span>Gaza Envelope</span>", "label_ru": "\u042f\u0445\u0438\u043d\u0438", "mixname_ru": "\u042f\u0445\u0438\u043d\u0438 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "418E75BAC7B4A3D94BFE99388732594A", "id": "827", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05e0\u05d2\u05d1", "mixname_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05e0\u05d2\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u0646\u064a\u062c\u0641", "mixname_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u0646\u064a\u062c\u0641 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Mishmar HaNegev", "mixname_en": "Mishmar HaNegev | <span>Center Negev</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "mixname_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "41ED2D0BEDBE24278285540D6B1C5623", "id": "808", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05de\u05e8\u05d5\u05dd \u05d2\u05d5\u05dc\u05df", "mixname_he": "\u05de\u05e8\u05d5\u05dd \u05d2\u05d5\u05dc\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0645\u0631\u0648\u0645 \u062c\u0648\u0644\u0627\u0646", "mixname_ar": "\u0645\u0631\u0648\u0645 \u062c\u0648\u0644\u0627\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Merom Golan", "mixname_en": "Merom Golan | <span>North Golan</span>", "label_ru": "\u041c\u0435\u0440\u043e\u043c \u0413\u043e\u043b\u0430\u043d", "mixname_ru": "\u041c\u0435\u0440\u043e\u043c \u0413\u043e\u043b\u0430\u043d | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "4256082A2B216BFBD5563A0D88DB0E98", "id": "509", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05d9\u05d4\u05dc", "mixname_he": "\u05d9\u05d4\u05dc | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u064a\u0627\u0647\u0644", "mixname_ar": "\u064a\u0627\u0647\u0644 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Yahel", "mixname_en": "Yahel | <span>Arava</span>", "label_ru": "\u042f\u0445\u0435\u043b\u044c", "mixname_ru": "\u042f\u0445\u0435\u043b\u044c | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "4262B3F755EFC4290E2C1F73AAD0DADA", "id": "796", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e6\u05d5\u05e7\u05d9 \u05d3\u05e8\u05d2\u05d5\u05ea", "mixname_he": "\u05de\u05e6\u05d5\u05e7\u05d9 \u05d3\u05e8\u05d2\u05d5\u05ea | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0645\u062a\u0633\u0648\u0643\u064a \u062f\u0631\u0627\u062c\u0648\u062a", "mixname_ar": "\u0645\u062a\u0633\u0648\u0643\u064a \u062f\u0631\u0627\u062c\u0648\u062a | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Metzokei Dragot", "mixname_en": "Metzokei Dragot | <span>Dead Sea</span>", "label_ru": "\u041c\u0435\u0446\u043e\u043a\u0435\u0439 \u0414\u0440\u0430\u0433\u043e\u0442", "mixname_ru": "\u041c\u0435\u0446\u043e\u043a\u0435\u0439 \u0414\u0440\u0430\u0433\u043e\u0442 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "42EF55867BD0D23700AE5954626267B7", "id": "752", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05de\u05dc\u05db\u05d9\u05d4", "mixname_he": "\u05de\u05dc\u05db\u05d9\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0644\u0627\u062e\u064a\u0627", "mixname_ar": "\u0645\u0644\u0627\u062e\u064a\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Malkia", "mixname_en": "Malkia | <span>Confrontation Line</span>", "label_ru": "\u041c\u0430\u043b\u043a\u0438\u044f", "mixname_ru": "\u041c\u0430\u043b\u043a\u0438\u044f | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "430EA71A662A46B63BBE90F0375F9F59", "id": "761", "areaid": 5, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05e1\u05d3\u05d4", "mixname_he": "\u05de\u05e1\u05d3\u05d4 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0645\u0633\u0627\u062f\u0647", "mixname_ar": "\u0645\u0633\u0627\u062f\u0647 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Masada", "mixname_en": "Masada | <span>South Golan</span>", "label_ru": "\u041c\u0430\u0441\u0430\u0434\u0430", "mixname_ru": "\u041c\u0430\u0441\u0430\u0434\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "4323BA6355CB2E2A645D0D18C741C43B", "id": "46", "areaid": 6, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05e8-\u05dc\u05d1", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05e8-\u05dc\u05d1 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0627\u0631- \u0644\u064a\u0641", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0627\u0631- \u0644\u064a\u0641 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Bar Lev Industrial Zone", "mixname_en": "Bar Lev Industrial Zone | <span>Upper Galilee</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0411\u0430\u0440-\u041b\u0435\u0432", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0411\u0430\u0440-\u041b\u0435\u0432 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "4364A2D745B6FB9902C2E39B36BA61F7", "id": "399", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d4\u05e8 \u05d0\u05d3\u05e8", "mixname_he": "\u05d4\u05e8 \u05d0\u05d3\u05e8 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0647\u0627\u0631 \u0622\u062f\u0627\u0631", "mixname_ar": "\u0647\u0627\u0631 \u0622\u062f\u0627\u0631 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Har Adar", "mixname_en": "Har Adar | <span>Shfelat Yehuda</span>", "label_ru": "\u0425\u0430\u0440 \u0410\u0434\u0430\u0440", "mixname_ru": "\u0425\u0430\u0440 \u0410\u0434\u0430\u0440 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "43AAE1D1909A2C7CBB58E670C263DBC5", "id": "472", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05d7\u05e8\u05d5\u05ea", "mixname_he": "\u05d7\u05e8\u05d5\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0631\u0648\u062a", "mixname_ar": "\u062d\u0631\u0648\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Herut", "mixname_en": "Herut | <span>Sharon</span>", "label_ru": "\u0425\u0435\u0440\u0443\u0442", "mixname_ru": "\u0425\u0435\u0440\u0443\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "43D86316BB491C0E7090661BF5EAA46B", "id": "128", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d0\u05de\u05d9\u05e8\u05d9\u05dd", "mixname_he": "\u05d0\u05de\u05d9\u05e8\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0623\u0645\u064a\u0631\u064a\u0645", "mixname_ar": "\u0623\u0645\u064a\u0631\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Amirim", "mixname_en": "Amirim | <span>Upper Galilee</span>", "label_ru": "\u0410\u043c\u0438\u0440\u0438\u043c", "mixname_ru": "\u0410\u043c\u0438\u0440\u0438\u043c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "43E304196738E4CCB6077C2852BB0A84", "id": "1206", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e9\u05d3\u05d4 \u05d9\u05e2\u05e7\u05d1", "mixname_he": "\u05e9\u05d3\u05d4 \u05d9\u05e2\u05e7\u05d1 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u064a\u0639\u0642\u0648\u0628", "mixname_ar": "\u0633\u062f\u064a\u0647 \u064a\u0639\u0642\u0648\u0628 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Sdeh Yacov", "mixname_en": "Sdeh Yacov | <span>HaAmakim</span>", "label_ru": "\u0421\u0434\u044d \u042f\u0430\u043a\u043e\u0432", "mixname_ru": "\u0421\u0434\u044d \u042f\u0430\u043a\u043e\u0432 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "43F605CA512BDE1167C3F1AACEEF0BE0", "id": "765", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05de\u05e1\u05e2\u05d3\u05d4", "mixname_he": "\u05de\u05e1\u05e2\u05d3\u05d4 | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0645\u0633\u0639\u062f\u0647", "mixname_ar": "\u0645\u0633\u0639\u062f\u0647 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Mas'ade", "mixname_en": "Mas'ade | <span>North Golan</span>", "label_ru": "\u041c\u0430\u0441\u0430\u0434\u0435", "mixname_ru": "\u041c\u0430\u0441\u0430\u0434\u0435 | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "4447B59D17E062FCE8BFBD40CAE82DAA", "id": "613", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05db\u05e4\u05e8 \u05d7\u05e0\u05e0\u05d9\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05d7\u05e0\u05e0\u05d9\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0643\u0641\u0631 \u062d\u0646\u0627\u0646\u064a\u0627", "mixname_ar": "\u0643\u0641\u0631 \u062d\u0646\u0627\u0646\u064a\u0627 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Kfar Hanania", "mixname_en": "Kfar Hanania | <span>Center Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u043d\u0430\u043d\u0438\u044f", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u043d\u0430\u043d\u0438\u044f | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "447935727D89FAF1B34E38FBD392A6D3", "id": "253", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d1\u05e7\u05d5\u05e2", "mixname_he": "\u05d1\u05e7\u05d5\u05e2 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u0643\u0648\u0639", "mixname_ar": "\u0628\u0643\u0648\u0639 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beko'a", "mixname_en": "Beko'a | <span>Shfelat Yehuda</span>", "label_ru": "\u0411\u043a\u043e\u0430", "mixname_ru": "\u0411\u043a\u043e\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "44BAFFF8CFBEA22ABF9D34A831797AC8", "id": "1004", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e2\u05d9\u05df \u05de\u05d0\u05d4\u05dc", "mixname_he": "\u05e2\u05d9\u05df \u05de\u05d0\u05d4\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0639\u064a\u0646 \u0645\u0627\u0647\u0644", "mixname_ar": "\u0639\u064a\u0646 \u0645\u0627\u0647\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ein Mahil", "mixname_en": "Ein Mahil | <span>HaAmakim</span>", "label_ru": "\u042d\u0439\u043d \u041c\u0430\u0445\u0435\u043b\u044c", "mixname_ru": "\u042d\u0439\u043d \u041c\u0430\u0445\u0435\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "44F02A18F39CFE1F1096DC02A75FD70F", "id": "1339", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "Mate Binyamin Regional Council", "label_he": "\u05d2\u05d1\u05e2\u05d5\u05df \u05d4\u05d7\u05d3\u05e9\u05d4", "mixname_he": "\u05d2\u05d1\u05e2\u05d5\u05df \u05d4\u05d7\u05d3\u05e9\u05d4 | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_en": "Giv'on HaHadasha", "mixname_en": "Giv'on HaHadasha | <span>Jerusalem</span>"}, {"value": "4500132113E048474DC85EC00D4D8763", "id": "1350", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05d3\u05e8\u05d5\u05dd \u05d4\u05e9\u05e8\u05d5\u05df", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05d3\u05e8\u05d5\u05dd \u05d4\u05e9\u05e8\u05d5\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u062c\u0644\u0633 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u062f\u0631\u0648\u0645 \u0647\u0634\u0627\u0631\u0648\u0646", "mixname_ar": "\u0627\u0644\u0645\u062c\u0644\u0633 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u062f\u0631\u0648\u0645 \u0647\u0634\u0627\u0631\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Southern Sharon Regional Council", "mixname_en": "Southern Sharon Regional Council | <span>Sharon</span>", "label_ru": "\u041c\u0435\u0441\u0442\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442 \u0414\u0440\u043e\u043c \u0425\u0430 \u0428\u0430\u0440\u043e\u043d", "mixname_ru": "\u041c\u0435\u0441\u0442\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442 \u0414\u0440\u043e\u043c \u0425\u0430 \u0428\u0430\u0440\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "452D6B60FB9474C5BB529BF66EF15969", "id": "1328", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d7\u05d1\u05e8", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d7\u05d1\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u064a\u0634\u0648\u0641\u064a \u062d\u064a\u0641\u0631", "mixname_ar": "\u064a\u0634\u0648\u0641\u064a \u062d\u064a\u0641\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Hever Settlements", "mixname_en": "Hever Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0425\u0435\u0432\u0435\u0440", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0425\u0435\u0432\u0435\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "45BF8B134CCEFB3AF15B10191F492FCE", "id": "637", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05db\u05e4\u05e8 \u05e1\u05d0\u05dc\u05d3", "mixname_he": "\u05db\u05e4\u05e8 \u05e1\u05d0\u05dc\u05d3 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0633\u0627\u0644\u062f", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0633\u0627\u0644\u062f | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Kfar Szold", "mixname_en": "Kfar Szold | <span>Confrontation Line</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0421\u043e\u043b\u044c\u0434", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0421\u043e\u043b\u044c\u0434 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "45CF1C5B8F672AB2C9E73AABB55C3EB2", "id": "1225", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05e9\u05d5\u05de\u05e8\u05d4", "mixname_he": "\u05e9\u05d5\u05de\u05e8\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0634\u0648\u0645\u0631\u0647", "mixname_ar": "\u0634\u0648\u0645\u0631\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Shomera", "mixname_en": "Shomera | <span>Confrontation Line</span>", "label_ru": "\u0428\u043e\u043c\u0435\u0440\u0430", "mixname_ru": "\u0428\u043e\u043c\u0435\u0440\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "4655160C41D7E4972CCC2553E4676AB7", "id": "69", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e7\u05d3\u05de\u05ea \u05d2\u05dc\u05d9\u05dc", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e7\u05d3\u05de\u05ea \u05d2\u05dc\u05d9\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0643\u064a\u062f\u0645\u0627\u062a \u062c\u0644", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0643\u064a\u062f\u0645\u0627\u062a \u062c\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Kidmat Galil Industrial Zone", "mixname_en": "Kidmat Galil Industrial Zone | <span>Lower Galilee</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041a\u0438\u0434\u043c\u0430\u0442 \u0413\u0430\u043b\u0438\u043b\u044c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041a\u0438\u0434\u043c\u0430\u0442 \u0413\u0430\u043b\u0438\u043b\u044c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "46571CA0732B077F85902E2B0B966556", "id": "322", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0440\u0435\u043d\u0435\u0440", "label_he": "\u05d2\u05d9\u05d1\u05ea\u05d5\u05df", "mixname_he": "\u05d2\u05d9\u05d1\u05ea\u05d5\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u064a\u0641\u062a\u0648\u0646", "mixname_ar": "\u062c\u064a\u0641\u062a\u0648\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Gibton", "mixname_en": "Gibton | <span>HaShfela</span>", "label_ru": "\u0413\u0438\u0431\u0442\u043e\u043d", "mixname_ru": "\u0413\u0438\u0431\u0442\u043e\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "466799EF4FE2EDE51E59668244AA5DEC", "id": "320", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d2\u05d6\u05e8", "mixname_he": "\u05d2\u05d6\u05e8 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u064a\u0632\u0631", "mixname_ar": "\u062c\u064a\u0632\u0631 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Gezer", "mixname_en": "Gezer | <span>HaShfela</span>", "label_ru": "\u0413\u0435\u0437\u0435\u0440", "mixname_ru": "\u0413\u0435\u0437\u0435\u0440 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "4671CB05EF68987D5979BEA79B76C0D5", "id": "329", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05d2\u05dc\u05d0\u05d5\u05df", "mixname_he": "\u05d2\u05dc\u05d0\u05d5\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062c\u064a\u0644\u0648\u0646", "mixname_ar": "\u062c\u064a\u0644\u0648\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Galon", "mixname_en": "Galon | <span>Shfelat Yehuda</span>", "label_ru": "\u0413\u0430\u043b\u043e\u043d", "mixname_ru": "\u0413\u0430\u043b\u043e\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "46A1FA2D26B2A22572C48A1731753451", "id": "56", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05db\u05e8\u05de\u05d9\u05d0\u05dc", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05db\u05e8\u05de\u05d9\u05d0\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0643\u0631\u0645\u064a\u0626\u064a\u0644", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0643\u0631\u0645\u064a\u0626\u064a\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Carmiel Industrial Zone", "mixname_en": "Carmiel Industrial Zone | <span>Upper Galilee</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041a\u0430\u0440\u043c\u0438\u044d\u043b\u044c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041a\u0430\u0440\u043c\u0438\u044d\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "4702345CAF2EA5EFCFDC92B9D00E9F5F", "id": "609", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05db\u05e4\u05e8 \u05d6\u05d9\u05ea\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d6\u05d9\u05ea\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0632\u064a\u062a\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0632\u064a\u062a\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Kfar Zeitim", "mixname_en": "Kfar Zeitim | <span>Lower Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0417\u0435\u0438\u0442\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0417\u0435\u0438\u0442\u0438\u043c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "4782B3687BC12DA64EB0DA709A95B55C", "id": "289", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d2\u05d1\u05e2\u05d5\u05ea \u05e2\u05d3\u05df", "mixname_he": "\u05d2\u05d1\u05e2\u05d5\u05ea \u05e2\u05d3\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062c\u0641\u0627\u0639\u0648\u062a \u0639\u064a\u062f\u0646", "mixname_ar": "\u062c\u0641\u0627\u0639\u0648\u062a \u0639\u064a\u062f\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Giv'ot Eden", "mixname_en": "Giv'ot Eden | <span>Shfelat Yehuda</span>", "label_ru": "\u0413\u0438\u0432\u043e\u0442 \u042d\u0434\u0435\u043d", "mixname_ru": "\u0413\u0438\u0432\u043e\u0442 \u042d\u0434\u0435\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "47AAF6460CADB60F33DDD49FFAB11136", "id": "1183", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e8\u05e0\u05df", "mixname_he": "\u05e8\u05e0\u05df | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0631\u064a\u0646\u0646", "mixname_ar": "\u0631\u064a\u0646\u0646 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Renan", "mixname_en": "Renan | <span>West Negev</span>", "label_ru": "\u0420\u0435\u043d\u0430\u043d", "mixname_ru": "\u0420\u0435\u043d\u0430\u043d | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "47D355BDA40C86F8CAB287C85B8DCDF1", "id": "955", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05e2\u05d1\u05d3\u05d5\u05df", "mixname_he": "\u05e2\u05d1\u05d3\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0639\u0628\u062f\u0648\u0646", "mixname_ar": "\u0639\u0628\u062f\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Avdon", "mixname_en": "Avdon | <span>Confrontation Line</span>", "label_ru": "\u0410\u0432\u0434\u043e\u043d", "mixname_ru": "\u0410\u0432\u0434\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "4828B7D50A2C4997C5B5CAAC4FFDA07B", "id": "520", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05d9\u05e0\u05d5\u05d1", "mixname_he": "\u05d9\u05e0\u05d5\u05d1 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u064a\u0646\u0648\u0641", "mixname_ar": "\u064a\u0646\u0648\u0641 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Yanuv", "mixname_en": "Yanuv | <span>Sharon</span>", "label_ru": "\u042f\u043d\u0443\u0432", "mixname_ru": "\u042f\u043d\u0443\u0432 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "485466738C6F7D60E38D6EE7F8D75F99", "id": "209", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d1\u05d9\u05ea \u05e0\u05d7\u05de\u05d9\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05e0\u05d7\u05de\u05d9\u05d4 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0646\u062d\u0645\u064a\u0627", "mixname_ar": "\u0628\u064a\u062a \u0646\u062d\u0645\u064a\u0627 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Beit Nechemia", "mixname_en": "Beit Nechemia | <span>Yarkon</span>", "label_ru": "\u0411\u0435\u0438\u0442 \u041d\u0435\u0445\u0435\u043c\u0438\u044f", "mixname_ru": "\u0411\u0435\u0438\u0442 \u041d\u0435\u0445\u0435\u043c\u0438\u044f | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "48D301CD5486E282E7178E7BC1F65BA1", "id": "484", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d8\u05d9\u05e8\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4", "mixname_he": "\u05d8\u05d9\u05e8\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0637\u064a\u0631\u0627\u062a \u064a\u0647\u0648\u062f\u0627", "mixname_ar": "\u0637\u064a\u0631\u0627\u062a \u064a\u0647\u0648\u062f\u0627 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Tirat Yehuda", "mixname_en": "Tirat Yehuda | <span>Yarkon</span>", "label_ru": "\u0422\u0438\u0440\u0430\u0442 \u0418\u0435\u0443\u0434\u0430", "mixname_ru": "\u0422\u0438\u0440\u0430\u0442 \u0418\u0435\u0443\u0434\u0430 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "4967F8CAA48EB0CB3BDB2B7ED027FBEC", "id": "542", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d9\u05e8\u05d5\u05d7\u05dd", "mixname_he": "\u05d9\u05e8\u05d5\u05d7\u05dd | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u064a\u0631\u0648\u062d\u0627\u0645", "mixname_ar": "\u064a\u0631\u0648\u062d\u0627\u0645 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Yeruham", "mixname_en": "Yeruham | <span>South Negev</span>", "label_ru": "\u0419\u0435\u0440\u0443\u0445\u0430\u043c", "mixname_ru": "\u0419\u0435\u0440\u0443\u0445\u0430\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "498C6EB949B5745C682EEB89691946F0", "id": "1304", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05ea\u05e7\u05d5\u05e2", "mixname_he": "\u05ea\u05e7\u05d5\u05e2 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0643\u0648\u0639", "mixname_ar": "\u062a\u0643\u0648\u0639 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tko'a", "mixname_en": "Tko'a | <span>Yehuda</span>", "label_ru": "\u0422\u043a\u043e\u0430", "mixname_ru": "\u0422\u043a\u043e\u0430 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "49DCE39186F71B503B602D03A6B87451", "id": "1019", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e2\u05dc\u05d9", "mixname_he": "\u05e2\u05dc\u05d9 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0644\u064a", "mixname_ar": "\u0639\u0644\u064a | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Eli", "mixname_en": "Eli | <span>Shomron</span>", "label_ru": "\u042d\u043b\u0438", "mixname_ru": "\u042d\u043b\u0438 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "49EA50E74AEA7BF34F54C72E13B80787", "id": "681", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05dc\u05d5\u05d8\u05df", "mixname_he": "\u05dc\u05d5\u05d8\u05df | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0644\u0648\u0637\u0646", "mixname_ar": "\u0644\u0648\u0637\u0646 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Lotan", "mixname_en": "Lotan | <span>Arava</span>", "label_ru": "\u041b\u043e\u0442\u0430\u043d", "mixname_ru": "\u041b\u043e\u0442\u0430\u043d | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "49ED541D4ED1DC7FAB4FF6C11880DE00", "id": "630", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05de\u05e0\u05d3\u05d0", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05e0\u05d3\u05d0 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0643\u0641\u0631 \u0645\u0646\u062f\u0627", "mixname_ar": "\u0643\u0641\u0631 \u0645\u0646\u062f\u0627 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Kfar Manda", "mixname_en": "Kfar Manda | <span>Center Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041c\u0430\u043d\u0434\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041c\u0430\u043d\u0434\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "4A3D1F0F4C75C71406AD22BFD3AB950C", "id": "1346", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d2\u05e0\u05d9 \u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df", "mixname_he": "\u05d2\u05e0\u05d9 \u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u062c\u0627\u0646\u064a \u0645\u0648\u062f\u064a\u0639\u064a\u0646", "mixname_ar": "\u062c\u0627\u0646\u064a \u0645\u0648\u062f\u064a\u0639\u064a\u0646 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Ganei Modi'in", "mixname_en": "Ganei Modi'in | <span>Yarkon</span>", "label_ru": "\u0413\u0430\u043d\u0435\u0439 \u041c\u043e\u0434\u0438\u0438\u043d", "mixname_ru": "\u0413\u0430\u043d\u0435\u0439 \u041c\u043e\u0434\u0438\u0438\u043d | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "4AAE9C4E9CDECEBC9386B1656334E370", "id": "1112", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e7\u05dc\u05e0\u05e1\u05d5\u05d5\u05d4", "mixname_he": "\u05e7\u05dc\u05e0\u05e1\u05d5\u05d5\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0642\u0644\u0646\u0633\u0648\u0629", "mixname_ar": "\u0642\u0644\u0646\u0633\u0648\u0629 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Qalansawe", "mixname_en": "Qalansawe | <span>Sharon</span>", "label_ru": "\u041a\u0430\u043b\u0430\u043d\u0441\u0443\u0430", "mixname_ru": "\u041a\u0430\u043b\u0430\u043d\u0441\u0443\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "4AF96BC5AB78D255F24277BAFCDFCB15", "id": "104", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d0\u05dc\u05d5\u05df", "mixname_he": "\u05d0\u05dc\u05d5\u05df | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0623\u0644\u0648\u0646", "mixname_ar": "\u0623\u0644\u0648\u0646 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Alon", "mixname_en": "Alon | <span>Yehuda</span>", "label_ru": "\u0410\u043b\u043e\u043d", "mixname_ru": "\u0410\u043b\u043e\u043d | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "4B09FCF6201FEA212B0B9CC5A38ACE17", "id": "974", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05e2\u05d6\u05e8\u05d9\u05e7\u05dd", "mixname_he": "\u05e2\u05d6\u05e8\u05d9\u05e7\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0639\u0632\u0631\u064a\u0643\u0645", "mixname_ar": "\u0639\u0632\u0631\u064a\u0643\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Azrikam", "mixname_en": "Azrikam | <span>Lachish</span>", "label_ru": "\u0410\u0437\u0440\u0438\u043a\u0430\u043c", "mixname_ru": "\u0410\u0437\u0440\u0438\u043a\u0430\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "4B573E666BC4F454D599876CB7CE5A6B", "id": "84", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d0\u05d7\u05d9\u05d8\u05d5\u05d1", "mixname_he": "\u05d0\u05d7\u05d9\u05d8\u05d5\u05d1 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u062d\u064a\u0637\u0648\u0641", "mixname_ar": "\u0623\u062d\u064a\u0637\u0648\u0641 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ahituv", "mixname_en": "Ahituv | <span>Sharon</span>", "label_ru": "\u0410\u0445\u0438\u0442\u0443\u0432", "mixname_ru": "\u0410\u0445\u0438\u0442\u0443\u0432 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "4B5B0ECDF678C71789424CD17C486E63", "id": "820", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05de\u05e9\u05d4\u05d3", "mixname_he": "\u05de\u05e9\u05d4\u05d3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0645\u0634\u0647\u062f", "mixname_ar": "\u0627\u0644\u0645\u0634\u0647\u062f | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Mashhad", "mixname_en": "Mashhad | <span>HaAmakim</span>", "label_ru": "\u041c\u0430\u0448\u0445\u0430\u0434", "mixname_ru": "\u041c\u0430\u0448\u0445\u0430\u0434 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "4B990F6C7AAB25AA08827E2212CF12F5", "id": "99", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05d0\u05dc \u05e2\u05d6\u05d9", "mixname_he": "\u05d0\u05dc \u05e2\u05d6\u05d9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644 \u0639\u0627\u0632\u064a", "mixname_ar": "\u0627\u0644 \u0639\u0627\u0632\u064a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Al Azi", "mixname_en": "Al Azi | <span>Lachish</span>", "label_ru": "\u0410\u043b\u044c \u0410\u0437\u0438", "mixname_ru": "\u0410\u043b\u044c \u0410\u0437\u0438 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "4BBF4ABB37F49930E7118C072644A7FA", "id": "947", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05e1\u05de\u05e8", "mixname_he": "\u05e1\u05de\u05e8 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0633\u0645\u0631", "mixname_ar": "\u0633\u0645\u0631 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Samar", "mixname_en": "Samar | <span>Arava</span>", "label_ru": "\u0421\u0430\u043c\u0430\u0440", "mixname_ru": "\u0421\u0430\u043c\u0430\u0440 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "4BCF21AD43D5B7B9B31F500898DE7131", "id": "13", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d0\u05d1\u05df \u05de\u05e0\u05d7\u05dd", "mixname_he": "\u05d0\u05d1\u05df \u05de\u05e0\u05d7\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0625\u064a\u0641\u064a\u0646 \u0645\u0646\u0627\u062d\u064a\u0645", "mixname_ar": "\u0625\u064a\u0641\u064a\u0646 \u0645\u0646\u0627\u062d\u064a\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Even Menachem", "mixname_en": "Even Menachem | <span>Confrontation Line</span>", "label_ru": "\u042d\u0432\u0435\u043d \u041c\u0435\u043d\u0430\u0445\u0435\u043c", "mixname_ru": "\u042d\u0432\u0435\u043d \u041c\u0435\u043d\u0430\u0445\u0435\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "4C26418B2FBFB0C70581CBBD23A1FBD8", "id": "1197", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e9\u05d2\u05d1 \u05e9\u05dc\u05d5\u05dd", "mixname_he": "\u05e9\u05d2\u05d1 \u05e9\u05dc\u05d5\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0633\u064a\u062c\u0641 \u0634\u0627\u0644\u0648\u0645", "mixname_ar": "\u0633\u064a\u062c\u0641 \u0634\u0627\u0644\u0648\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Segev Shalom", "mixname_en": "Segev Shalom | <span>Center Negev</span>", "label_ru": "\u0421\u0435\u0433\u0435\u0432 \u0428\u0430\u043b\u043e\u043c", "mixname_ru": "\u0421\u0435\u0433\u0435\u0432 \u0428\u0430\u043b\u043e\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "4CCD569154CFADDB7D848F71D72504DF", "id": "794", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e6\u05d3\u05d4", "mixname_he": "\u05de\u05e6\u05d3\u05d4 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0645\u062a\u0633\u0627\u062f\u0647", "mixname_ar": "\u0645\u062a\u0633\u0627\u062f\u0647 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Massada", "mixname_en": "Massada | <span>Dead Sea</span>", "label_ru": "\u041c\u0430\u0441\u0441\u0430\u0434\u0430", "mixname_ru": "\u041c\u0430\u0441\u0441\u0430\u0434\u0430 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "4DABF11DDCBAC8CC9DB086AC617F668D", "id": "505", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d9\u05d3 \u05de\u05e8\u05d3\u05db\u05d9", "mixname_he": "\u05d9\u05d3 \u05de\u05e8\u05d3\u05db\u05d9 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u064a\u062f \u0645\u0648\u0631\u062f\u062e\u0627\u064a", "mixname_ar": "\u064a\u062f \u0645\u0648\u0631\u062f\u062e\u0627\u064a | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Yad Mordechai", "mixname_en": "Yad Mordechai | <span>Gaza Envelope</span>", "label_ru": "\u042f\u0434 \u041c\u043e\u0440\u0434\u0435\u0445\u0430\u0439", "mixname_ru": "\u042f\u0434 \u041c\u043e\u0440\u0434\u0435\u0445\u0430\u0439 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "4DC532C79BC22B0C972832E9AF87C9A2", "id": "1143", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05e8\u05d1\u05d3\u05d9\u05dd", "mixname_he": "\u05e8\u05d1\u05d3\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0631\u0641\u0627\u062f\u064a\u0645", "mixname_ar": "\u0631\u0641\u0627\u062f\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Revadim", "mixname_en": "Revadim | <span>Lachish</span>", "label_ru": "\u0420\u0435\u0432\u0430\u0434\u0438\u043c", "mixname_ru": "\u0420\u0435\u0432\u0430\u0434\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "4E16D1984F70D24984100F67EC644523", "id": "812", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e8\u05d7\u05e6\u05d0\u05d5\u05ea \u05e2\u05d9\u05df \u05d2\u05d3\u05d9", "mixname_he": "\u05de\u05e8\u05d7\u05e6\u05d0\u05d5\u05ea \u05e2\u05d9\u05df \u05d2\u05d3\u05d9 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u062d\u0645\u0627\u0645\u0627\u062a \u0639\u064a\u0646 \u062c\u062f\u064a", "mixname_ar": "\u062d\u0645\u0627\u0645\u0627\u062a \u0639\u064a\u0646 \u062c\u062f\u064a | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Ein Gedi Baths", "mixname_en": "Ein Gedi Baths | <span>Dead Sea</span>", "label_ru": "\u042d\u0439\u043d \u0413\u0435\u0434\u0438 \u0441\u043f\u0430", "mixname_ru": "\u042d\u0439\u043d \u0413\u0435\u0434\u0438 \u0441\u043f\u0430 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "4E1DB3A6DD73A79E5928C544B9627C5C", "id": "605", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05d5\u05d9\u05ea\u05e7\u05d9\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05d5\u05d9\u05ea\u05e7\u05d9\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0641\u064a\u062a\u0643\u064a\u0646", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0641\u064a\u062a\u0643\u064a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Vitkin", "mixname_en": "Kfar Vitkin | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0412\u0438\u0442\u043a\u0438\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0412\u0438\u0442\u043a\u0438\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "4E5A37678C0FB9694CD0C7318DB4A7AD", "id": "155", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05ea\u05e8 \u05d4\u05d4\u05e0\u05e6\u05d7\u05d4 \u05d2\u05d5\u05dc\u05e0\u05d9", "mixname_he": "\u05d0\u05ea\u05e8 \u05d4\u05d4\u05e0\u05e6\u05d7\u05d4 \u05d2\u05d5\u05dc\u05e0\u05d9 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0645\u0648\u0642\u0639 \u062a\u0630\u0643\u0627\u0631\u064a \u0641\u064a \u063a\u0648\u0644\u0627\u0646\u064a", "mixname_ar": "\u0645\u0648\u0642\u0639 \u062a\u0630\u0643\u0627\u0631\u064a \u0641\u064a \u063a\u0648\u0644\u0627\u0646\u064a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Golani Memorial Site", "mixname_en": "Golani Memorial Site | <span>Lower Galilee</span>", "label_ru": "\u041c\u0435\u043c\u043e\u0440\u0438\u0430\u043b \u0413\u043e\u043b\u0430\u043d\u0438", "mixname_ru": "\u041c\u0435\u043c\u043e\u0440\u0438\u0430\u043b \u0413\u043e\u043b\u0430\u043d\u0438 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "4E645076C72C7F8F0DF697655F8FEF66", "id": "15", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05d0\u05d1\u05df \u05e9\u05de\u05d5\u05d0\u05dc", "mixname_he": "\u05d0\u05d1\u05df \u05e9\u05de\u05d5\u05d0\u05dc | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u064a\u0641\u064a\u0646 \u0634\u0645\u0648\u0626\u064a\u0644", "mixname_ar": "\u0627\u064a\u0641\u064a\u0646 \u0634\u0645\u0648\u0626\u064a\u0644 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Even Shmuel", "mixname_en": "Even Shmuel | <span>Lachish</span>", "label_ru": "\u042d\u0432\u0435\u043d \u0428\u043c\u0443\u044d\u043b\u044c", "mixname_ru": "\u042d\u0432\u0435\u043d \u0428\u043c\u0443\u044d\u043b\u044c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "4E7351048D48F615FCB2991CA748D919", "id": "1191", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05e9\u05d0\u05e8 \u05d9\u05e9\u05d5\u05d1", "mixname_he": "\u05e9\u05d0\u05e8 \u05d9\u05e9\u05d5\u05d1 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0634\u0622\u0631 \u064a\u0634\u0648\u0641", "mixname_ar": "\u0634\u0622\u0631 \u064a\u0634\u0648\u0641 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Shear Yeshuv", "mixname_en": "Shear Yeshuv | <span>Confrontation Line</span>", "label_ru": "\u0428\u0430\u0430\u0440 \u0419\u0435\u0448\u0443\u0432", "mixname_ru": "\u0428\u0430\u0430\u0440 \u0419\u0435\u0448\u0443\u0432 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "4E8B83AF9977DD05C8E75F766D05CF86", "id": "843", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05e0\u05d0\u05d5\u05ea \u05e1\u05de\u05d3\u05e8", "mixname_he": "\u05e0\u05d0\u05d5\u05ea \u05e1\u05de\u05d3\u05e8 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0646\u0624\u0648\u062a \u0633\u0645\u062f\u0627\u0631", "mixname_ar": "\u0646\u0624\u0648\u062a \u0633\u0645\u062f\u0627\u0631 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Neot Smadar", "mixname_en": "Neot Smadar | <span>Arava</span>", "label_ru": "\u041d\u0435\u043e\u0442 \u0421\u043c\u0430\u0434\u0430\u0440", "mixname_ru": "\u041d\u0435\u043e\u0442 \u0421\u043c\u0430\u0434\u0430\u0440 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "4EADE8E15B29A1F477EE3A8FF78903D1", "id": "156", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d0\u05e7\u05d4 \u05d0\u05dc \u05d2\u05e8\u05d1\u05d9\u05d9\u05d4", "mixname_he": "\u05d1\u05d0\u05e7\u05d4 \u05d0\u05dc \u05d2\u05e8\u05d1\u05d9\u05d9\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0628\u0627\u0642\u0629 \u0627\u0644\u063a\u0631\u0628\u064a\u0629", "mixname_ar": "\u0628\u0627\u0642\u0629 \u0627\u0644\u063a\u0631\u0628\u064a\u0629 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "bqa al-Gharbiyye", "mixname_en": "bqa al-Gharbiyye | <span>Wadi Ara</span>", "label_ru": "\u0411\u0430\u043a\u0430 \u0430\u043b\u044c \u0413\u0430\u0440\u0431\u0438\u044f", "mixname_ru": "\u0411\u0430\u043a\u0430 \u0430\u043b\u044c \u0413\u0430\u0440\u0431\u0438\u044f | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "4EC4F42374506EE78509E1955FFAFC40", "id": "382", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05d4\u05d1\u05d5\u05e0\u05d9\u05dd", "mixname_he": "\u05d4\u05d1\u05d5\u05e0\u05d9\u05dd | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0647\u0628\u0648\u0646\u064a\u0645", "mixname_ar": "\u0647\u0628\u0648\u0646\u064a\u0645 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "HaBonim", "mixname_en": "HaBonim | <span>HaCarmel</span>", "label_ru": "\u0445\u0430-\u0411\u043e\u043d\u0438\u043c", "mixname_ru": "\u0445\u0430-\u0411\u043e\u043d\u0438\u043c | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "4F0DE7AC7D48DC7878AE8A5AEB4D1B83", "id": "931", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05dc''\u05d4", "mixname_he": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05dc''\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u062a\u064a\u0641 \u0647\u064a\u0644\u0627", "mixname_ar": "\u0646\u062a\u064a\u0641 \u0647\u064a\u0644\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Netiv HaLamed-Heh", "mixname_en": "Netiv HaLamed-Heh | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0435\u0442\u0438\u0432 \u0445\u0430-\u041b\u0430\u043c\u0435\u0434-\u0425\u0435\u0439", "mixname_ru": "\u041d\u0435\u0442\u0438\u0432 \u0445\u0430-\u041b\u0430\u043c\u0435\u0434-\u0425\u0435\u0439 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "4F167A010DFD06FC98CFBE321B255B97", "id": "433", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d5\u05d5\u05ea \u05d9\u05d0\u05d9\u05e8", "mixname_he": "\u05d7\u05d5\u05d5\u05ea \u05d9\u05d0\u05d9\u05e8 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0632\u0631\u0639\u062a \u064a\u0627\u0626\u064a\u0631", "mixname_ar": "\u0645\u0632\u0631\u0639\u062a \u064a\u0627\u0626\u064a\u0631 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Havat Yair", "mixname_en": "Havat Yair | <span>Shomron</span>", "label_ru": "\u0425\u0430\u0432\u0430\u0442 \u042f\u0438\u0440", "mixname_ru": "\u0425\u0430\u0432\u0430\u0442 \u042f\u0438\u0440 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "4F19092D9D9953698221274E4B76B2AC", "id": "1360", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05de\u05d9\u05e9\u05d5\u05e8 \u05d0\u05d3\u05d5\u05de\u05d9\u05dd", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05de\u05d9\u05e9\u05d5\u05e8 \u05d0\u05d3\u05d5\u05de\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u064a\u0634\u0648\u0631 \u0627\u062f\u0648\u0645\u064a\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u064a\u0634\u0648\u0631 \u0627\u062f\u0648\u0645\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Industrial area Mishor Edomim", "mixname_en": "Industrial area Mishor Edomim | <span>Yehuda</span>", "label_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u041c\u0438\u0448\u043e\u0440 \u0410\u0434\u0443\u043c\u0438\u043c", "mixname_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u041c\u0438\u0448\u043e\u0440 \u0410\u0434\u0443\u043c\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "4F695B9E1DBCF7C357103D55C37D07A7", "id": "298", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d7\u05d9\u05d9\u05dd \u05d0\u05d9\u05d7\u05d5\u05d3", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d7\u05d9\u05d9\u05dd \u05d0\u05d9\u05d7\u05d5\u05d3 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u064a\u0641\u0639\u0627\u062a \u062d\u0627\u064a\u064a\u0645 \u0625\u064a\u062d\u0648\u062f", "mixname_ar": "\u062c\u064a\u0641\u0639\u0627\u062a \u062d\u0627\u064a\u064a\u0645 \u0625\u064a\u062d\u0648\u062f | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Givat Haim (Ihud)", "mixname_en": "Givat Haim (Ihud) | <span>Sharon</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0430\u0438\u043c \u042d\u0445\u0443\u0434", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0430\u0438\u043c \u042d\u0445\u0443\u0434 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "5004D2A141F918D7D6554B5375A0B598", "id": "876", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05e0\u05d5\u05e7\u05d3\u05d9\u05dd", "mixname_he": "\u05e0\u05d5\u05e7\u05d3\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0648\u0643\u062f\u064a\u0645", "mixname_ar": "\u0646\u0648\u0643\u062f\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Nokdim", "mixname_en": "Nokdim | <span>Yehuda</span>", "label_ru": "\u041d\u043e\u043a\u0434\u0438\u043c", "mixname_ru": "\u041d\u043e\u043a\u0434\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "5020A93D3C95DF0AA7B466DBD7EA8FAE", "id": "198", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05d1\u05d9\u05ea \u05d7\u05e0\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05d7\u05e0\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u062d\u0646\u0627\u0646", "mixname_ar": "\u0628\u064a\u062a \u062d\u0646\u0627\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Beit Hanan", "mixname_en": "Beit Hanan | <span>HaShfela</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u043d\u0430\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u043d\u0430\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "50214CE069B275384E237FBD9D64C9F6", "id": "330", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d2\u05dc\u05d2\u05dc", "mixname_he": "\u05d2\u05dc\u05d2\u05dc | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u062c\u0644\u062c\u0644", "mixname_ar": "\u062c\u0644\u062c\u0644 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Gilgal", "mixname_en": "Gilgal | <span>Bika'a</span>", "label_ru": "\u0413\u0438\u043b\u044c\u0433\u0430\u043b\u044c", "mixname_ru": "\u0413\u0438\u043b\u044c\u0433\u0430\u043b\u044c | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "504A4EDD6B29CE7E8A0C70F41EB76FD3", "id": "1128", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05e2\u05e7\u05e8\u05d5\u05df", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05e2\u05e7\u05e8\u05d5\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0639\u0643\u0631\u0648\u0646", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0639\u0643\u0631\u0648\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Kiryat Ekron", "mixname_en": "Kiryat Ekron | <span>HaShfela</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u042d\u043a\u0440\u043e\u043d", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u042d\u043a\u0440\u043e\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "50783812AACC53C295B4594D530084BD", "id": "272", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05ea\u05d9 \u05de\u05dc\u05d5\u05df \u05d9\u05dd \u05d4\u05de\u05dc\u05d7", "mixname_he": "\u05d1\u05ea\u05d9 \u05de\u05dc\u05d5\u05df \u05d9\u05dd \u05d4\u05de\u05dc\u05d7 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0641\u0646\u0627\u062f\u0642 \u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a", "mixname_ar": "\u0641\u0646\u0627\u062f\u0642 \u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Dead Sea Hotels", "mixname_en": "Dead Sea Hotels | <span>Dead Sea</span>", "label_ru": "\u0413\u043e\u0441\u0442\u0438\u043d\u0438\u0446\u044b \u041c\u0435\u0440\u0442\u0432\u043e\u0433\u043e \u041c\u043e\u0440\u044f", "mixname_ru": "\u0413\u043e\u0441\u0442\u0438\u043d\u0438\u0446\u044b \u041c\u0435\u0440\u0442\u0432\u043e\u0433\u043e \u041c\u043e\u0440\u044f | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "509873F71CEFEC2C72034C3074CBB311", "id": "816", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05de\u05e8\u05db\u05d6 \u05e9\u05e4\u05d9\u05e8\u05d0", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05e9\u05e4\u05d9\u05e8\u05d0 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u0631\u0643\u0632 \u0634\u0641\u064a\u0631\u0627", "mixname_ar": "\u0645\u0631\u0643\u0632 \u0634\u0641\u064a\u0631\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Merkaz Shapira", "mixname_en": "Merkaz Shapira | <span>Lachish</span>", "label_ru": "\u0426\u0435\u043d\u0442\u0440 \u0428\u0430\u043f\u0438\u0440\u0430", "mixname_ru": "\u0426\u0435\u043d\u0442\u0440 \u0428\u0430\u043f\u0438\u0440\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "50C87B91A6B419761C25DFEFA06FCD11", "id": "1290", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05ea\u05dc\u05de\u05d9 \u05d0\u05dc\u05e2\u05d6\u05e8", "mixname_he": "\u05ea\u05dc\u05de\u05d9 \u05d0\u05dc\u05e2\u05d6\u05e8 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062a\u0644\u0645\u064a \u0625\u0644\u064a\u0639\u064a\u0632\u0631", "mixname_ar": "\u062a\u0644\u0645\u064a \u0625\u0644\u064a\u0639\u064a\u0632\u0631 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Talmei Elazar", "mixname_en": "Talmei Elazar | <span>Menashe</span>", "label_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u042d\u043b\u0438\u044d\u0437\u0435\u0440", "mixname_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u042d\u043b\u0438\u044d\u0437\u0435\u0440 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "50D200239188401B6281028604797672", "id": "467", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d7\u05e6\u05d5\u05e8", "mixname_he": "\u05d7\u05e6\u05d5\u05e8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062d\u062a\u0633\u0648\u0631", "mixname_ar": "\u062d\u062a\u0633\u0648\u0631 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Hatzor", "mixname_en": "Hatzor | <span>Lachish</span>", "label_ru": "\u0425\u0430\u0446\u043e\u0440", "mixname_ru": "\u0425\u0430\u0446\u043e\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "50D70E978D0572A4BB332910B6BC9832", "id": "1170", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05e8\u05de\u05d5\u05ea \u05de\u05e0\u05e9\u05d4", "mixname_he": "\u05e8\u05de\u05d5\u05ea \u05de\u05e0\u05e9\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0631\u0627\u0645\u0648\u062a \u0645\u0646\u0634\u064a\u0647", "mixname_ar": "\u0631\u0627\u0645\u0648\u062a \u0645\u0646\u0634\u064a\u0647 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Ramot Menashe", "mixname_en": "Ramot Menashe | <span>Wadi Ara</span>", "label_ru": "\u0420\u0430\u043c\u043e\u0442 \u041c\u0435\u043d\u0430\u0448\u0435", "mixname_ru": "\u0420\u0430\u043c\u043e\u0442 \u041c\u0435\u043d\u0430\u0448\u0435 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "51046051F9E3AF5A5D4CEE57071193F7", "id": "223", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05d1\u05d9\u05ea \u05e6\u05d1\u05d9", "mixname_he": "\u05d1\u05d9\u05ea \u05e6\u05d1\u05d9 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0628\u064a\u062a \u062a\u0633\u0641\u064a", "mixname_ar": "\u0628\u064a\u062a \u062a\u0633\u0641\u064a | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Beit Zvi", "mixname_en": "Beit Zvi | <span>HaCarmel</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0426\u0432\u0438", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0426\u0432\u0438 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "514DC484DC32E9331FDF66D702694CAB", "id": "932", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05e2\u05e9\u05e8\u05d4", "mixname_he": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05e2\u05e9\u05e8\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0646\u062a\u064a\u0641 \u0647\u0639\u0633\u0631\u0627\u0647", "mixname_ar": "\u0646\u062a\u064a\u0641 \u0647\u0639\u0633\u0631\u0627\u0647 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Netiv HaAssara", "mixname_en": "Netiv HaAssara | <span>Gaza Envelope</span>", "label_ru": "\u041d\u0435\u0442\u0438\u0432 \u0445\u0430-\u0410\u0441\u0430\u0440\u0430", "mixname_ru": "\u041d\u0435\u0442\u0438\u0432 \u0445\u0430-\u0410\u0441\u0430\u0440\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "514E2CC27678DAA20A3BB3F1A241854B", "id": "684", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05dc\u05db\u05d9\u05e9", "mixname_he": "\u05dc\u05db\u05d9\u05e9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0644\u062e\u064a\u0634", "mixname_ar": "\u0644\u062e\u064a\u0634 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Lakhish", "mixname_en": "Lakhish | <span>Lachish</span>", "label_ru": "\u041b\u0430\u0445\u0438\u0448", "mixname_ru": "\u041b\u0430\u0445\u0438\u0448 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "5158E0193E799F0AB282D7D72C97D374", "id": "182", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05d1\u05d9\u05ea \u05d2\u05d5\u05d1\u05e8\u05d9\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05d2\u05d5\u05d1\u05e8\u05d9\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u062c\u0648\u0628\u0631\u064a\u0646", "mixname_ar": "\u0628\u064a\u062a \u062c\u0648\u0628\u0631\u064a\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beit Guvrin", "mixname_en": "Beit Guvrin | <span>Shfelat Yehuda</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0413\u043e\u0432\u0440\u0438\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0413\u043e\u0432\u0440\u0438\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "51D7F46EF1456E4AC998490D25F0D96D", "id": "976", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0440\u0435\u0434\u043d\u044f\u044f \u0410\u0440\u0430\u0432\u0430", "label_he": "\u05e2\u05d9\u05d3\u05df", "mixname_he": "\u05e2\u05d9\u05d3\u05df | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0639\u064a\u062f\u0627\u0646", "mixname_ar": "\u0639\u064a\u062f\u0627\u0646 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Idan", "mixname_en": "Idan | <span>Arava</span>", "label_ru": "\u0418\u0434\u0430\u043d", "mixname_ru": "\u0418\u0434\u0430\u043d | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "51F07725ECBEC31626B2E00C56F7A6D5", "id": "73", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e8\u05de\u05ea \u05d3\u05dc\u05ea\u05d5\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e8\u05de\u05ea \u05d3\u05dc\u05ea\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0631\u0645\u0627\u062a \u062f\u0644\u062a\u0648", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0631\u0645\u0627\u062a \u062f\u0644\u062a\u0648 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ramat Dalton Industrial Zone", "mixname_en": "Ramat Dalton Industrial Zone | <span>Confrontation Line</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0420\u0430\u043c\u0430\u0442 \u0414\u0430\u043b\u044c\u0442\u043e\u043d", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0420\u0430\u043c\u0430\u0442 \u0414\u0430\u043b\u044c\u0442\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "523AFA1AA269A33729CD4CD3FAB95220", "id": "516", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d9\u05d7\u05d9\u05e2\u05dd", "mixname_he": "\u05d9\u05d7\u05d9\u05e2\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u064a\u062d\u064a\u0639\u0627\u0645", "mixname_ar": "\u064a\u062d\u064a\u0639\u0627\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Yechiam", "mixname_en": "Yechiam | <span>Confrontation Line</span>", "label_ru": "\u0419\u0435\u0445\u0438\u0430\u043c", "mixname_ru": "\u0419\u0435\u0445\u0438\u0430\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "52410A2842F514B1287A760CD65E0BB5", "id": "116", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05d0\u05dc\u05d9\u05e4\u05dc\u05d8", "mixname_he": "\u05d0\u05dc\u05d9\u05e4\u05dc\u05d8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0625\u0644\u064a\u0641\u0644\u062a", "mixname_ar": "\u0625\u0644\u064a\u0641\u0644\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Elifelet", "mixname_en": "Elifelet | <span>Upper Galilee</span>", "label_ru": "\u042d\u043b\u0438\u0444\u0435\u043b\u0435\u0442", "mixname_ru": "\u042d\u043b\u0438\u0444\u0435\u043b\u0435\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "524964509D7ECD21F9C3AFF0E2860EF6", "id": "1157", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05d7\u05d5\u05d1\u05d5\u05ea", "mixname_he": "\u05e8\u05d7\u05d5\u05d1\u05d5\u05ea | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0631\u062d\u0648\u0641\u0648\u062a", "mixname_ar": "\u0631\u062d\u0648\u0641\u0648\u062a | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Rehovot", "mixname_en": "Rehovot | <span>HaShfela</span>", "label_ru": "\u0420\u0435\u0445\u043e\u0432\u043e\u0442", "mixname_ru": "\u0420\u0435\u0445\u043e\u0432\u043e\u0442 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "532DEA8E0853C41B5B5B1AEFB7939BA9", "id": "882", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e0\u05d7\u05dc\u05d9\u05d0\u05dc", "mixname_he": "\u05e0\u05d7\u05dc\u05d9\u05d0\u05dc | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0627\u062d\u0644\u064a\u0626\u0644", "mixname_ar": "\u0646\u0627\u062d\u0644\u064a\u0626\u0644 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Nachliel", "mixname_en": "Nachliel | <span>Shomron</span>", "label_ru": "\u041d\u0430\u0445\u043b\u0438\u044d\u043b\u044c", "mixname_ru": "\u041d\u0430\u0445\u043b\u0438\u044d\u043b\u044c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "53A0139F7DF592CA6CC329A9E1B5C8C9", "id": "314", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d2\u05d3\u05e2\u05d5\u05e0\u05d4", "mixname_he": "\u05d2\u05d3\u05e2\u05d5\u05e0\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062c\u062f\u0639\u0648\u0646\u0647", "mixname_ar": "\u062c\u062f\u0639\u0648\u0646\u0647 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Gidona", "mixname_en": "Gidona | <span>HaAmakim</span>", "label_ru": "\u0413\u0438\u0434\u043e\u043d\u0430", "mixname_ru": "\u0413\u0438\u0434\u043e\u043d\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "53A9CEDCB41A84EA7D8C7F2B5E8CB76B", "id": "469", "areaid": 25, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05d7\u05e6\u05e8\u05d9\u05dd", "mixname_he": "\u05d7\u05e6\u05e8\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062d\u062a\u0633\u0631\u064a\u0645", "mixname_ar": "\u062d\u062a\u0633\u0631\u064a\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Hatzerim", "mixname_en": "Hatzerim | <span>Center Negev</span>", "label_ru": "\u0425\u0430\u0446\u0435\u0440\u0438\u043c", "mixname_ru": "\u0425\u0430\u0446\u0435\u0440\u0438\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "543D0AFA2A7E1B18F8FB6A4197BCBBFA", "id": "391", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d4\u05d9\u05d5\u05d2\u05d1", "mixname_he": "\u05d4\u05d9\u05d5\u05d2\u05d1 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0647\u064a\u0648\u062c\u0641", "mixname_ar": "\u0647\u064a\u0648\u062c\u0641 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "HaYogev", "mixname_en": "HaYogev | <span>HaAmakim</span>", "label_ru": "\u0445\u0430-\u0419\u043e\u0433\u0435\u0432", "mixname_ru": "\u0445\u0430-\u0419\u043e\u0433\u0435\u0432 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "549E04A32766DDF904163AD6F1C99358", "id": "1028", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e2\u05de\u05e0\u05d5\u05d0\u05dc", "mixname_he": "\u05e2\u05de\u05e0\u05d5\u05d0\u05dc | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0645\u0646\u0648\u0626\u064a\u0644", "mixname_ar": "\u0639\u0645\u0646\u0648\u0626\u064a\u0644 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Immanuel", "mixname_en": "Immanuel | <span>Shomron</span>", "label_ru": "\u0418\u043c\u0430\u043d\u0443\u0435\u043b\u044c", "mixname_ru": "\u0418\u043c\u0430\u043d\u0443\u0435\u043b\u044c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "54C85CB4B7D3E5FE9CED56B0EA887DF8", "id": "1266", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e9\u05e8\u05d9\u05d2\u05d9\u05dd - \u05dc\u05d9\u05d0\u05d5\u05df", "mixname_he": "\u05e9\u05e8\u05d9\u05d2\u05d9\u05dd - \u05dc\u05d9\u05d0\u05d5\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0634\u0631\u064a\u062c\u064a\u0645 (\u0644\u064a\u0624\u0648\u0646)", "mixname_ar": "\u0634\u0631\u064a\u062c\u064a\u0645 (\u0644\u064a\u0624\u0648\u0646) | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Srigim (Li-On)", "mixname_en": "Srigim (Li-On) | <span>Shfelat Yehuda</span>", "label_ru": "\u0421\u0440\u0438\u0433\u0438\u043c (\u041b\u0438\u043e\u043d)", "mixname_ru": "\u0421\u0440\u0438\u0433\u0438\u043c (\u041b\u0438\u043e\u043d) | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "54CBA1B154B100A0472DA44F14199D71", "id": "950", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e1\u05e2\u05d3", "mixname_he": "\u05e1\u05e2\u05d3 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0633\u0639\u062f", "mixname_ar": "\u0633\u0639\u062f | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Sa'ad", "mixname_en": "Sa'ad | <span>Gaza Envelope</span>", "label_ru": "\u0421\u0430\u0430\u0434", "mixname_ru": "\u0421\u0430\u0430\u0434 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "5510BE96B57B38BAE02BF05F82C1D3DD", "id": "176", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05d0\u05dc", "mixname_he": "\u05d1\u05d9\u05ea \u05d0\u05dc | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0625\u064a\u0644\u0627", "mixname_ar": "\u0628\u064a\u062a \u0625\u064a\u0644\u0627 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Beit El", "mixname_en": "Beit El | <span>Shomron</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u042d\u043b\u044c", "mixname_ru": "\u0411\u0435\u0439\u0442 \u042d\u043b\u044c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "552F216B212CB3EEE6F67757812848C8", "id": "775", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05de\u05e2\u05d9\u05d9\u05df \u05d1\u05e8\u05d5\u05da", "mixname_he": "\u05de\u05e2\u05d9\u05d9\u05df \u05d1\u05e8\u05d5\u05da | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0639\u064a\u0627\u0646 \u0628\u0627\u0631\u0648\u062e", "mixname_ar": "\u0645\u0639\u064a\u0627\u0646 \u0628\u0627\u0631\u0648\u062e | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ma'ayan Baruch", "mixname_en": "Ma'ayan Baruch | <span>Confrontation Line</span>", "label_ru": "\u041c\u0430\u0430\u044f\u043d \u0411\u0430\u0440\u0443\u0445", "mixname_ru": "\u041c\u0430\u0430\u044f\u043d \u0411\u0430\u0440\u0443\u0445 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "553EEBCD718979EF031BB2766807EC96", "id": "1182", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e8\u05de\u05ea \u05e8\u05d6\u05d9\u05d0\u05dc", "mixname_he": "\u05e8\u05de\u05ea \u05e8\u05d6\u05d9\u05d0\u05dc | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0631\u0645\u0627\u062a \u0631\u0627\u0632\u0626\u064a\u0644", "mixname_ar": "\u0631\u0645\u0627\u062a \u0631\u0627\u0632\u0626\u064a\u0644 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ramat Raziel", "mixname_en": "Ramat Raziel | <span>Shfelat Yehuda</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0420\u0430\u0437\u0438\u044d\u043b\u044c", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0420\u0430\u0437\u0438\u044d\u043b\u044c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "554AE3717F13FE3DB38F683BB034307E", "id": "1272", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05ea\u05d3\u05d4\u05e8", "mixname_he": "\u05ea\u05d3\u05d4\u05e8 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u062f\u0647\u0627\u0631", "mixname_ar": "\u062a\u062f\u0647\u0627\u0631 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Tidhar", "mixname_en": "Tidhar | <span>West Negev</span>", "label_ru": "\u0422\u0438\u0434\u0445\u0430\u0440", "mixname_ru": "\u0422\u0438\u0434\u0445\u0430\u0440 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "55713E5E569FE006A66E0A425AAC3716", "id": "1239", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05e9\u05d9\u05dc\u05ea", "mixname_he": "\u05e9\u05d9\u05dc\u05ea | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0634\u064a\u0644\u0627\u062a", "mixname_ar": "\u0634\u064a\u0644\u0627\u062a | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Shilat", "mixname_en": "Shilat | <span>Yarkon</span>", "label_ru": "\u0428\u0438\u043b\u0430\u0442", "mixname_ru": "\u0428\u0438\u043b\u0430\u0442 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "559388AA1EAB03791DF2D71D952E7D2F", "id": "439", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d5\u05dc\u05d5\u05df", "mixname_he": "\u05d7\u05d5\u05dc\u05d5\u05df | <span>\u05d3\u05df</span>", "label_ar": "\u062d\u0648\u0644\u0648\u0646", "mixname_ar": "\u062d\u0648\u0644\u0648\u0646 | <span>\u062f\u0627\u0646</span>", "label_en": "Holon", "mixname_en": "Holon | <span>Dan</span>", "label_ru": "\u0425\u043e\u043b\u043e\u043d", "mixname_ru": "\u0425\u043e\u043b\u043e\u043d | <span>\u0414\u0430\u043d</span>"}, {"value": "55998C9E70A0EB9CC5DF33C410F4F104", "id": "42", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 | <span>\u05d3\u05df</span>", "label_ar": "\u0622\u0632\u0648\u0631", "mixname_ar": "\u0622\u0632\u0648\u0631 | <span>\u062f\u0627\u0646</span>", "label_en": "Azor", "mixname_en": "Azor | <span>Dan</span>", "label_ru": "\u0410\u0437\u043e\u0440", "mixname_ru": "\u0410\u0437\u043e\u0440 | <span>\u0414\u0430\u043d</span>"}, {"value": "5665A74DE286FFFC0A81770A27A8CEF3", "id": "1155", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e8\u05d5\u05ea\u05dd", "mixname_he": "\u05e8\u05d5\u05ea\u05dd | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0631\u0648\u062a\u0645", "mixname_ar": "\u0631\u0648\u062a\u0645 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Rotem", "mixname_en": "Rotem | <span>Bika'a</span>", "label_ru": "\u0420\u043e\u0442\u0435\u043c", "mixname_ru": "\u0420\u043e\u0442\u0435\u043c | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "567673EAA23997F342792B90AD283D6E", "id": "53", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d8\u05d9\u05e8\u05d4", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d8\u05d9\u05e8\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0637\u064a\u0631\u0647.", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0637\u064a\u0631\u0647. | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tira Industrial Area", "mixname_en": "Tira Industrial Area | <span>Sharon</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0422\u0438\u0440\u0430", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0422\u0438\u0440\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "569C4E8F1F833DD887FBF67B12CCB859", "id": "197", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0430\u0445\u0430\u043b\u044c \u0421\u043e\u0440\u0435\u043a", "label_he": "\u05d1\u05d9\u05ea \u05d7\u05dc\u05e7\u05d9\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05d7\u05dc\u05e7\u05d9\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u064a\u062a \u062d\u0644\u0642\u064a\u0629", "mixname_ar": "\u0628\u064a\u062a \u062d\u0644\u0642\u064a\u0629 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Beit Hilkia", "mixname_en": "Beit Hilkia | <span>Lachish</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u0438\u043b\u044c\u043a\u0438\u044f", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u0438\u043b\u044c\u043a\u0438\u044f | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "56B2C66AC44185FA3ECA51D0DF45A7A6", "id": "682", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05dc\u05d8\u05e8\u05d5\u05df", "mixname_he": "\u05dc\u05d8\u05e8\u05d5\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0644\u0637\u0631\u0648\u0646", "mixname_ar": "\u0644\u0637\u0631\u0648\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Latrun", "mixname_en": "Latrun | <span>Shfelat Yehuda</span>", "label_ru": "\u041b\u0430\u0442\u0440\u0443\u043d", "mixname_ru": "\u041b\u0430\u0442\u0440\u0443\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "56CD5261BFCB982908EEAE264D1895AB", "id": "277", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05d2'\u05e9 - \u05d2\u05d5\u05e9 \u05d7\u05dc\u05d1", "mixname_he": "\u05d2'\u05e9 - \u05d2\u05d5\u05e9 \u05d7\u05dc\u05d1 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u0644\u062c\u0634", "mixname_ar": "\u0627\u0644\u062c\u0634 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Jish (Gush Halav)", "mixname_en": "Jish (Gush Halav) | <span>Confrontation Line</span>", "label_ru": "\u0414\u0436\u0438\u0448 (\u0413\u0443\u0448 \u0425\u0430\u043b\u0430\u0432)", "mixname_ru": "\u0414\u0436\u0438\u0448 (\u0413\u0443\u0448 \u0425\u0430\u043b\u0430\u0432) | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "571D8DC349628546C908B7C09BD2BE53", "id": "1109", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e7\u05d9\u05e1\u05e8\u05d9\u05d4", "mixname_he": "\u05e7\u05d9\u05e1\u05e8\u05d9\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0642\u064a\u0633\u0627\u0631\u064a\u0627", "mixname_ar": "\u0642\u064a\u0633\u0627\u0631\u064a\u0627 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Caesarea", "mixname_en": "Caesarea | <span>Menashe</span>", "label_ru": "\u041a\u0435\u0439\u0441\u0430\u0440\u0438\u044f", "mixname_ru": "\u041a\u0435\u0439\u0441\u0430\u0440\u0438\u044f | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "57426F6A98BE90FE94C03D31D3A79519", "id": "1066", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "", "label_he": "\u05e4\u05e7\u05d9\u05e2\u05d9\u05df", "mixname_he": "\u05e4\u05e7\u05d9\u05e2\u05d9\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u0644\u0628\u0642\u064a\u0639\u0629", "mixname_ar": "\u0627\u0644\u0628\u0642\u064a\u0639\u0629 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Peki'in", "mixname_en": "Peki'in | <span>Confrontation Line</span>", "label_ru": "\u041f\u0435\u043a\u0438\u0438\u043d", "mixname_ru": "\u041f\u0435\u043a\u0438\u0438\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "574294DF04DCDD4E8EB63F5BD3B1A74D", "id": "1379", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e1\u05d9\u05e0\u05de\u05d4 \u05e1\u05d9\u05d8\u05d9 \u05d2\u05dc\u05d9\u05dc\u05d5\u05ea", "mixname_he": "\u05e1\u05d9\u05e0\u05de\u05d4 \u05e1\u05d9\u05d8\u05d9 \u05d2\u05dc\u05d9\u05dc\u05d5\u05ea | <span>\u05d3\u05df</span>", "label_ar": "\u0633\u064a\u0646\u0645\u0627 \u0633\u064a\u062a\u064a \u062c\u0644\u064a\u0644\u0648\u062a", "mixname_ar": "\u0633\u064a\u0646\u0645\u0627 \u0633\u064a\u062a\u064a \u062c\u0644\u064a\u0644\u0648\u062a | <span>\u062f\u0627\u0646</span>", "label_en": "Cinema City Glilot", "mixname_en": "Cinema City Glilot | <span>Dan</span>", "label_ru": "\u0421\u0438\u043d\u0435\u043c\u0430 \u0421\u0438\u0442\u0438 \u0413\u043b\u0438\u043b\u043e\u0442", "mixname_ru": "\u0421\u0438\u043d\u0435\u043c\u0430 \u0421\u0438\u0442\u0438 \u0413\u043b\u0438\u043b\u043e\u0442 | <span>\u0414\u0430\u043d</span>"}, {"value": "5776487C149AD1B6B1033BA7087674AD", "id": "975", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e2\u05d8\u05e8\u05ea", "mixname_he": "\u05e2\u05d8\u05e8\u05ea | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0637\u0631\u062a", "mixname_ar": "\u0639\u0637\u0631\u062a | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Atteret", "mixname_en": "Atteret | <span>Shomron</span>", "label_ru": "\u0410\u0442\u0435\u0440\u0435\u0442", "mixname_ru": "\u0410\u0442\u0435\u0440\u0435\u0442 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "577A4453511D61D182E423947A9B9705", "id": "565", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05db\u05d9\u05e0\u05e8\u05ea \u05e7\u05d1\u05d5\u05e6\u05d4", "mixname_he": "\u05db\u05d9\u05e0\u05e8\u05ea \u05e7\u05d1\u05d5\u05e6\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0637\u0628\u0631\u064a\u0627 \u0645\u062c\u0645\u0648\u0639\u0629", "mixname_ar": "\u0637\u0628\u0631\u064a\u0627 \u0645\u062c\u0645\u0648\u0639\u0629 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Kvutzat Kinneret", "mixname_en": "Kvutzat Kinneret | <span>Lower Galilee</span>", "label_ru": "\u041a\u0432\u0443\u0446\u0430\u0442 \u041a\u0438\u043d\u0435\u0440\u0435\u0442", "mixname_ru": "\u041a\u0432\u0443\u0446\u0430\u0442 \u041a\u0438\u043d\u0435\u0440\u0435\u0442 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "578C6EAD581C61D339B27DDDD986D97D", "id": "781", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05d2\u05de\u05dc\u05d0", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05d2\u05de\u05dc\u05d0 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u062c\u0645\u0644\u0627", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u062c\u0645\u0644\u0627 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Ma'aleh Gamla", "mixname_en": "Ma'aleh Gamla | <span>South Golan</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0413\u0430\u043c\u043b\u0430", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0413\u0430\u043c\u043b\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "578EDD82414161E580A3EA819A39DEC9", "id": "661", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05db\u05e8\u05dd \u05e9\u05dc\u05d5\u05dd", "mixname_he": "\u05db\u05e8\u05dd \u05e9\u05dc\u05d5\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0643\u0631\u0645 \u0634\u0644\u0648\u0645", "mixname_ar": "\u0643\u0631\u0645 \u0634\u0644\u0648\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Kerem Shalom", "mixname_en": "Kerem Shalom | <span>Gaza Envelope</span>", "label_ru": "\u041a\u0435\u0440\u0435\u043c \u0428\u0430\u043b\u043e\u043c", "mixname_ru": "\u041a\u0435\u0440\u0435\u043c \u0428\u0430\u043b\u043e\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "578F4F14C3CAB8505B020F363DB15941", "id": "625", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05db\u05e0\u05d0", "mixname_he": "\u05db\u05e4\u05e8 \u05db\u05e0\u05d0 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0631 \u0643\u0646\u0627", "mixname_ar": "\u0643\u0641\u0631 \u0643\u0646\u0627 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Kana", "mixname_en": "Kfar Kana | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041a\u0430\u043d\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041a\u0430\u043d\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "57B85F363B2627167C7D4D092A190BAA", "id": "1362", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d0\u05dc\u05d5\u05df \u05d4\u05ea\u05d1\u05d5\u05e8", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d0\u05dc\u05d5\u05df \u05d4\u05ea\u05d1\u05d5\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0623\u0644\u0648\u0646 \u0647\u062a\u0627\u0641\u0648\u0631", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0623\u0644\u0648\u0646 \u0647\u062a\u0627\u0641\u0648\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Industrial area Alon Hatovor", "mixname_en": "Industrial area Alon Hatovor | <span>HaAmakim</span>", "label_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u0410\u043b\u043e\u043d \u0425\u0430-\u0422\u0430\u0432\u043e\u0440", "mixname_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u0410\u043b\u043e\u043d \u0425\u0430-\u0422\u0430\u0432\u043e\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "57D8A6011B7822FFC945856E643476C1", "id": "571", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05db\u05dc\u05e0\u05d9\u05ea", "mixname_he": "\u05db\u05dc\u05e0\u05d9\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0643\u0644\u0627\u0646\u064a\u062a", "mixname_ar": "\u0643\u0644\u0627\u0646\u064a\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Kalanit", "mixname_en": "Kalanit | <span>Center Galilee</span>", "label_ru": "\u041a\u0430\u043b\u0430\u043d\u0438\u0442", "mixname_ru": "\u041a\u0430\u043b\u0430\u043d\u0438\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "57EE2C5CD1589324EBB64EB33ACECC60", "id": "1200", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e9\u05d3\u05d4 \u05d0\u05dc\u05d9\u05d4\u05d5", "mixname_he": "\u05e9\u05d3\u05d4 \u05d0\u05dc\u05d9\u05d4\u05d5 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0625\u0644\u064a\u0627\u0647\u0648", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0625\u0644\u064a\u0627\u0647\u0648 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Sdeh Eliyahu", "mixname_en": "Sdeh Eliyahu | <span>Beit She'an Valley</span>", "label_ru": "\u0421\u0434\u044d \u042d\u043b\u0438\u044f\u0433\u0443", "mixname_ru": "\u0421\u0434\u044d \u042d\u043b\u0438\u044f\u0433\u0443 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "582AB330792A9B7E696371BD0C26E038", "id": "995", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05e2\u05d9\u05df \u05d5\u05e8\u05d3", "mixname_he": "\u05e2\u05d9\u05df \u05d5\u05e8\u05d3 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0648\u0631\u062f", "mixname_ar": "\u0639\u064a\u0646 \u0648\u0631\u062f | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ein Vered", "mixname_en": "Ein Vered | <span>Sharon</span>", "label_ru": "\u042d\u0439\u043d \u0412\u0435\u0440\u0435\u0434", "mixname_ru": "\u042d\u0439\u043d \u0412\u0435\u0440\u0435\u0434 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "5833DB9788FBB87DBAC93F96F492DDAB", "id": "532", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d9\u05e4\u05e2\u05ea", "mixname_he": "\u05d9\u05e4\u05e2\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u064a\u0641\u0639\u0627\u062a", "mixname_ar": "\u064a\u0641\u0639\u0627\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ifat", "mixname_en": "Ifat | <span>HaAmakim</span>", "label_ru": "\u0418\u0444\u0430\u0442", "mixname_ru": "\u0418\u0444\u0430\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "585AFF477FE9AEC4E959F8D9058FF895", "id": "689", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05de\u05d0\u05d9\u05e8 \u05e9\u05e4\u05d9\u05d4", "mixname_he": "\u05de\u05d0\u05d9\u05e8 \u05e9\u05e4\u05d9\u05d4 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0645\u0626\u064a\u0631 \u0634\u0641\u064a\u0647", "mixname_ar": "\u0645\u0626\u064a\u0631 \u0634\u0641\u064a\u0647 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Meir Shfeya", "mixname_en": "Meir Shfeya | <span>HaCarmel</span>", "label_ru": "\u041c\u0435\u0438\u0440 \u0428\u0444\u0435\u044f", "mixname_ru": "\u041c\u0435\u0438\u0440 \u0428\u0444\u0435\u044f | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "589703A0A82C88AEB65B836BD070D25A", "id": "821", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05e9\u05d5\u05d0\u05d4", "mixname_he": "\u05de\u05e9\u05d5\u05d0\u05d4 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0645\u0633\u0648\u0623\u0647", "mixname_ar": "\u0645\u0633\u0648\u0623\u0647 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Masua", "mixname_en": "Masua | <span>Bika'a</span>", "label_ru": "\u041c\u0430\u0441\u0443\u0430", "mixname_ru": "\u041c\u0430\u0441\u0443\u0430 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "58A7A72A22DFB71D341CF32C2E9B4C25", "id": "159", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d1\u05d0\u05e8 \u05d8\u05d5\u05d1\u05d9\u05d4", "mixname_he": "\u05d1\u05d0\u05e8 \u05d8\u05d5\u05d1\u05d9\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0626\u064a\u0631 \u0637\u0648\u0628\u064a\u0627", "mixname_ar": "\u0628\u0626\u064a\u0631 \u0637\u0648\u0628\u064a\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Be'er Tuvia", "mixname_en": "Be'er Tuvia | <span>Lachish</span>", "label_ru": "\u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u044c\u044f", "mixname_ru": "\u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u044c\u044f | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "58B1635639D167C33E310A43A4BE8CEB", "id": "710", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05de\u05d2\u05df", "mixname_he": "\u05de\u05d2\u05df | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0645\u0627\u062c\u0646", "mixname_ar": "\u0645\u0627\u062c\u0646 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Magen", "mixname_en": "Magen | <span>Gaza Envelope</span>", "label_ru": "\u041c\u0430\u0433\u0435\u043d", "mixname_ru": "\u041c\u0430\u0433\u0435\u043d | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "58BDC87698A3D89655A344358B0D9742", "id": "577", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e2\u05d1\u05d9\u05d4", "mixname_he": "\u05db\u05e2\u05d1\u05d9\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0639\u0628\u064a\u0629", "mixname_ar": "\u0643\u0639\u0628\u064a\u0629 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ka'abiyye", "mixname_en": "Ka'abiyye | <span>HaAmakim</span>", "label_ru": "\u041a\u0430\u0430\u0431\u0438\u044f", "mixname_ru": "\u041a\u0430\u0430\u0431\u0438\u044f | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "58CBAE72219183B9F3DB35E98DFDDB30", "id": "1258", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e9\u05e2\u05e8\u05d9 \u05ea\u05e7\u05d5\u05d5\u05d4", "mixname_he": "\u05e9\u05e2\u05e8\u05d9 \u05ea\u05e7\u05d5\u05d5\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0634\u0639\u0627\u0631\u064a \u062a\u0643\u0641\u0627\u0647", "mixname_ar": "\u0634\u0639\u0627\u0631\u064a \u062a\u0643\u0641\u0627\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Sha'arei Tikva", "mixname_en": "Sha'arei Tikva | <span>Sharon</span>", "label_ru": "\u0428\u0430\u0430\u0440\u0435\u0439 \u0422\u0438\u043a\u0432\u0430", "mixname_ru": "\u0428\u0430\u0430\u0440\u0435\u0439 \u0422\u0438\u043a\u0432\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "58DB129BD3F14A343B89B2045E8B4EA0", "id": "447", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05d7\u05d5\u05e8\u05e4\u05d9\u05e9", "mixname_he": "\u05d7\u05d5\u05e8\u05e4\u05d9\u05e9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062d\u0631\u0641\u064a\u0634", "mixname_ar": "\u062d\u0631\u0641\u064a\u0634 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Hurfeish", "mixname_en": "Hurfeish | <span>Confrontation Line</span>", "label_ru": "\u0425\u0443\u0440\u0444\u0435\u0448", "mixname_ru": "\u0425\u0443\u0440\u0444\u0435\u0448 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "58E511996953CB58E118DE63AAE34FBC", "id": "1120", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d2\u05ea, \u05db\u05e8\u05de\u05d9 \u05d2\u05ea", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d2\u05ea, \u05db\u05e8\u05de\u05d9 \u05d2\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u063a\u0627\u062a , \u0643\u0631\u0645\u064a \u062c\u0627\u062a", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u063a\u0627\u062a , \u0643\u0631\u0645\u064a \u062c\u0627\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kiryat Gat , Karmei Gat", "mixname_en": "Kiryat Gat , Karmei Gat | <span>Lachish</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0413\u0430\u0442 , \u041a\u0430\u0440\u043c\u0435\u0439 \u0413\u0430\u0442", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0413\u0430\u0442 , \u041a\u0430\u0440\u043c\u0435\u0439 \u0413\u0430\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "5905DEC634F08103982FC0887922119C", "id": "1100", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e7\u05d3\u05de\u05ea \u05e6\u05d1\u05d9", "mixname_he": "\u05e7\u05d3\u05de\u05ea \u05e6\u05d1\u05d9 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0643\u064a\u062f\u0645\u0627\u062a \u062a\u0633\u0641\u064a", "mixname_ar": "\u0643\u064a\u062f\u0645\u0627\u062a \u062a\u0633\u0641\u064a | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Kidmat Zvi", "mixname_en": "Kidmat Zvi | <span>South Golan</span>", "label_ru": "\u041a\u0438\u0434\u043c\u0430\u0442 \u0426\u0432\u0438", "mixname_ru": "\u041a\u0438\u0434\u043c\u0430\u0442 \u0426\u0432\u0438 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "5911A43F2EE2B99DD72591E66295393B", "id": "457", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d7\u05de\u05d3\u05ea", "mixname_he": "\u05d7\u05de\u05d3\u05ea | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u062d\u0645\u062f\u0627\u062a", "mixname_ar": "\u062d\u0645\u062f\u0627\u062a | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Hemdat", "mixname_en": "Hemdat | <span>Bika'a</span>", "label_ru": "\u0425\u0435\u043c\u0434\u0430\u0442", "mixname_ru": "\u0425\u0435\u043c\u0434\u0430\u0442 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "597459A20EDFB1CA847EF1E39DBA79A5", "id": "166", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d5\u05e2\u05d9\u05d9\u05e0\u05d4-\u05e0\u05d5\u05d2'\u05d9\u05d3\u05d0\u05ea", "mixname_he": "\u05d1\u05d5\u05e2\u05d9\u05d9\u05e0\u05d4-\u05e0\u05d5\u05d2'\u05d9\u05d3\u05d0\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0627\u0644\u0628\u0639\u0646\u0629 \u0627\u0644\u0646\u062c\u064a\u062f\u0627\u062a", "mixname_ar": "\u0627\u0644\u0628\u0639\u0646\u0629 \u0627\u0644\u0646\u062c\u064a\u062f\u0627\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Bu'eine Nujeidat", "mixname_en": "Bu'eine Nujeidat | <span>Center Galilee</span>", "label_ru": "\u0411\u0443\u044d\u0439\u043d\u0435-\u041d\u0443\u0434\u0436\u0435\u0439\u0434\u0430\u0442", "mixname_ru": "\u0411\u0443\u044d\u0439\u043d\u0435-\u041d\u0443\u0434\u0436\u0435\u0439\u0434\u0430\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "59864AF319BE2CF83656DCD54D8F5D76", "id": "411", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05d5\u05e8\u05d3\u05d5\u05df", "mixname_he": "\u05d5\u05e8\u05d3\u05d5\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0641\u0631\u062f\u0648\u0646", "mixname_ar": "\u0641\u0631\u062f\u0648\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Vardon", "mixname_en": "Vardon | <span>Lachish</span>", "label_ru": "\u0412\u0430\u0440\u0434\u043e\u043d", "mixname_ru": "\u0412\u0430\u0440\u0434\u043e\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "59902B2665E7AE87A592F0A225C10BE1", "id": "1361", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d7\u05d1\u05dc \u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d7\u05d1\u05dc \u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u0648\u062f\u064a\u0639\u064a\u0646", "mixname_ar": "\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u0648\u062f\u064a\u0639\u064a\u0646 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Industrial area Hevel Modi'in", "mixname_en": "Industrial area Hevel Modi'in | <span>Yarkon</span>", "label_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "mixname_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "59B049BED6FCB453062FE8FA691B6397", "id": "140", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d0\u05e8\u05d6", "mixname_he": "\u05d0\u05e8\u05d6 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0625\u064a\u0631\u0632", "mixname_ar": "\u0625\u064a\u0631\u0632 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Erez", "mixname_en": "Erez | <span>Gaza Envelope</span>", "label_ru": "\u042d\u0440\u0435\u0437", "mixname_ru": "\u042d\u0440\u0435\u0437 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "59BC3A9A181DD1E0A3B85C4B25237982", "id": "299", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d7\u05d9\u05d9\u05dd \u05de\u05d0\u05d5\u05d7\u05d3", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d7\u05d9\u05d9\u05dd \u05de\u05d0\u05d5\u05d7\u05d3 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u062d\u0627\u064a\u064a\u0645 \u0645\u0624\u0648\u062d\u0627\u062f", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u062d\u0627\u064a\u064a\u0645 \u0645\u0624\u0648\u062d\u0627\u062f | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Givat Haim (Meuhad)", "mixname_en": "Givat Haim (Meuhad) | <span>Sharon</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0430\u0438\u043c \u041c\u0435\u0443\u0445\u0430\u0434", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0430\u0438\u043c \u041c\u0435\u0443\u0445\u0430\u0434 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "59CCF33EF74C79E4483913534B1C6771", "id": "754", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05de\u05e0\u05d5\u05e3", "mixname_he": "\u05de\u05e0\u05d5\u05e3 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0645\u0627\u0646\u0648\u0641", "mixname_ar": "\u0645\u0627\u0646\u0648\u0641 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Manof", "mixname_en": "Manof | <span>Center Galilee</span>", "label_ru": "\u041c\u0430\u043d\u043e\u0444", "mixname_ru": "\u041c\u0430\u043d\u043e\u0444 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "59D642F562648EE79A39FC8259329768", "id": "201", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05d7\u05e9\u05de\u05d5\u05e0\u05d0\u05d9", "mixname_he": "\u05d1\u05d9\u05ea \u05d7\u05e9\u05de\u05d5\u05e0\u05d0\u05d9 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u062d\u0634\u0645\u0648\u0646\u0627\u0626\u064a", "mixname_ar": "\u0628\u064a\u062a \u062d\u0634\u0645\u0648\u0646\u0627\u0626\u064a | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Beit Hashmonai", "mixname_en": "Beit Hashmonai | <span>HaShfela</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u0448\u043c\u043e\u043d\u0430\u0438", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u0448\u043c\u043e\u043d\u0430\u0438 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "5A4E941220D204FD88373FA9A7FC48DB", "id": "1227", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e9\u05d5\u05de\u05e8\u05ea", "mixname_he": "\u05e9\u05d5\u05de\u05e8\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0634\u0648\u0645\u0631\u0627\u062a", "mixname_ar": "\u0634\u0648\u0645\u0631\u0627\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Shomrat", "mixname_en": "Shomrat | <span>Upper Galilee</span>", "label_ru": "\u0428\u043e\u043c\u0440\u0430\u0442", "mixname_ru": "\u0428\u043e\u043c\u0440\u0430\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "5A93B8E4A018C734931E355A216858B4", "id": "850", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e0\u05d4\u05dc\u05dc", "mixname_he": "\u05e0\u05d4\u05dc\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0646\u0647\u0644\u0627\u0644", "mixname_ar": "\u0646\u0647\u0644\u0627\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Nahalal", "mixname_en": "Nahalal | <span>HaAmakim</span>", "label_ru": "\u041d\u0430\u0445\u0430\u043b\u0430\u043b\u044c", "mixname_ru": "\u041d\u0430\u0445\u0430\u043b\u0430\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "5AB81073BA6806C12905FC951037386E", "id": "958", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05e2'\u05d2'\u05e8", "mixname_he": "\u05e2'\u05d2'\u05e8 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u0644\u063a\u062c\u0631", "mixname_ar": "\u0627\u0644\u063a\u062c\u0631 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ghajar", "mixname_en": "Ghajar | <span>Confrontation Line</span>", "label_ru": "\u0420\u0430\u0434\u0436\u0430\u0440", "mixname_ru": "\u0420\u0430\u0434\u0436\u0430\u0440 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "5AC069C790EC261B0B4A53828D3D13FD", "id": "311", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d2\u05d1\u05e8\u05e2\u05dd", "mixname_he": "\u05d2\u05d1\u05e8\u05e2\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062c\u0641\u0631\u0639\u0627\u0645", "mixname_ar": "\u062c\u0641\u0631\u0639\u0627\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Gvaram", "mixname_en": "Gvaram | <span>Gaza Envelope</span>", "label_ru": "\u0413\u0432\u0430\u0440\u0430\u043c", "mixname_ru": "\u0413\u0432\u0430\u0440\u0430\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "5B1F73BF90BD89140E6E66D9A9CD60FB", "id": "740", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05de\u05d9 \u05e2\u05de\u05d9", "mixname_he": "\u05de\u05d9 \u05e2\u05de\u05d9 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u064a \u0639\u0627\u0645\u064a", "mixname_ar": "\u0645\u064a \u0639\u0627\u0645\u064a | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Mei Ami", "mixname_en": "Mei Ami | <span>Wadi Ara</span>", "label_ru": "\u041c\u0435\u0439 \u0410\u043c\u0438", "mixname_ru": "\u041c\u0435\u0439 \u0410\u043c\u0438 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "5B48720E134C40079973AECAF79E18B8", "id": "288", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05d2\u05d1\u05e2\u05d5\u05ea \u05d1\u05e8", "mixname_he": "\u05d2\u05d1\u05e2\u05d5\u05ea \u05d1\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062c\u0641\u0627\u0639\u0648\u062a \u0628\u0627\u0631", "mixname_ar": "\u062c\u0641\u0627\u0639\u0648\u062a \u0628\u0627\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Giv'ot Bar", "mixname_en": "Giv'ot Bar | <span>Center Negev</span>", "label_ru": "\u0413\u0438\u0432\u043e\u0442 \u0411\u0430\u0440", "mixname_ru": "\u0413\u0438\u0432\u043e\u0442 \u0411\u0430\u0440 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "5B544E7E299E9697C4BC1752790C82A5", "id": "862", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d7\u05e8\u05d9\u05e3", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d7\u05e8\u05d9\u05e3 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u062d\u0631\u064a\u0641", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u062d\u0631\u064a\u0641 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Neveh Harif", "mixname_en": "Neveh Harif | <span>Arava</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u0425\u0430\u0440\u0438\u0444", "mixname_ru": "\u041d\u0435\u0432\u0435 \u0425\u0430\u0440\u0438\u0444 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "5B60146D120E2E977F0F8316C54AACDE", "id": "813", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05de\u05e9\u05d2\u05d1", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05de\u05e9\u05d2\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0627\u0644\u0645\u0631\u0643\u0632 \u0627\u0644\u0627\u0642\u0644\u064a\u0645\u064a \u0645\u0633\u062c\u0627\u0641", "mixname_ar": "\u0627\u0644\u0645\u0631\u0643\u0632 \u0627\u0644\u0627\u0642\u0644\u064a\u0645\u064a \u0645\u0633\u062c\u0627\u0641 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Misgav Regional Center", "mixname_en": "Misgav Regional Center | <span>Center Galilee</span>", "label_ru": "\u0420\u0430\u0439\u043e\u043d\u043d\u044b\u0439 \u0446\u0435\u043d\u0442\u0440 \u041c\u0438\u0441\u0433\u0430\u0432", "mixname_ru": "\u0420\u0430\u0439\u043e\u043d\u043d\u044b\u0439 \u0446\u0435\u043d\u0442\u0440 \u041c\u0438\u0441\u0433\u0430\u0432 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "5B8D2A7755B748598D7BD3E5621D0D92", "id": "819", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05de\u05e9\u05d2\u05d1 \u05e2\u05dd", "mixname_he": "\u05de\u05e9\u05d2\u05d1 \u05e2\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0633\u062c\u0627\u0641 \u0639\u0627\u0645", "mixname_ar": "\u0645\u0633\u062c\u0627\u0641 \u0639\u0627\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Misgav Am", "mixname_en": "Misgav Am | <span>Confrontation Line</span>", "label_ru": "\u041c\u0438\u0441\u0433\u0430\u0432 \u0410\u043c", "mixname_ru": "\u041c\u0438\u0441\u0433\u0430\u0432 \u0410\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "5B95FBDFA41A8DF2414603E0300A61DC", "id": "1163", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e8\u05d9\u05de\u05d5\u05e0\u05d9\u05dd", "mixname_he": "\u05e8\u05d9\u05de\u05d5\u05e0\u05d9\u05dd | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0631\u064a\u0645\u0648\u0646\u064a\u0645", "mixname_ar": "\u0631\u064a\u0645\u0648\u0646\u064a\u0645 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Rimonim", "mixname_en": "Rimonim | <span>Shomron</span>", "label_ru": "\u0420\u0438\u043c\u043e\u043d\u0438\u043c", "mixname_ru": "\u0420\u0438\u043c\u043e\u043d\u0438\u043c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "5B9E9E316D276DD0CAB546B309800B80", "id": "527", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05d9\u05e2\u05e3", "mixname_he": "\u05d9\u05e2\u05e3 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u064a\u0627\u0639\u0641", "mixname_ar": "\u064a\u0627\u0639\u0641 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ya'af", "mixname_en": "Ya'af | <span>Sharon</span>", "label_ru": "\u042f\u0430\u0444", "mixname_ru": "\u042f\u0430\u0444 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "5B9FEF0C19BDDD74D2D01C3112679421", "id": "1026", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u043e\u043d\u0430", "label_he": "\u05e2\u05de\u05d9\u05e7\u05dd", "mixname_he": "\u05e2\u05de\u05d9\u05e7\u05dd | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0639\u0645\u064a\u0643\u0627\u0645", "mixname_ar": "\u0639\u0645\u064a\u0643\u0627\u0645 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Amikam", "mixname_en": "Amikam | <span>Menashe</span>", "label_ru": "\u0410\u043c\u0438\u043a\u0430\u043c", "mixname_ru": "\u0410\u043c\u0438\u043a\u0430\u043c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "5C69942B6683C18664B1D6CE1FEEEF6E", "id": "666", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05db\u05e8\u05de\u05d9\u05d4", "mixname_he": "\u05db\u05e8\u05de\u05d9\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0643\u0631\u0645\u064a\u0647", "mixname_ar": "\u0643\u0631\u0645\u064a\u0647 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Karmia", "mixname_en": "Karmia | <span>Gaza Envelope</span>", "label_ru": "\u041a\u0430\u0440\u043c\u0438\u044f", "mixname_ru": "\u041a\u0430\u0440\u043c\u0438\u044f | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "5C72853E66A7213BD66858B60BEE0A6B", "id": "1115", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0435\u0432\u0435 \u041c\u0438\u0434\u0431\u0430\u0440", "label_he": "\u05e7\u05e6\u05e8-\u05d0-\u05e1\u05d9\u05e8", "mixname_he": "\u05e7\u05e6\u05e8-\u05d0-\u05e1\u05d9\u05e8 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0642\u0635\u0631 \u0627\u0644\u0633\u064a\u0631", "mixname_ar": "\u0642\u0635\u0631 \u0627\u0644\u0633\u064a\u0631 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Qasr al-Sir", "mixname_en": "Qasr al-Sir | <span>South Negev</span>", "label_ru": "\u041a\u0430\u0441\u0440 \u0430\u043b\u044c-\u0421\u0438\u0440", "mixname_ru": "\u041a\u0430\u0441\u0440 \u0430\u043b\u044c-\u0421\u0438\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "5C74A2260151A0DCAB24209D5C331557", "id": "92", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d0\u05d9\u05dc\u05e0\u05d9\u05d4", "mixname_he": "\u05d0\u05d9\u05dc\u05e0\u05d9\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u064a\u0644\u0627\u0646\u064a\u0627", "mixname_ar": "\u0627\u064a\u0644\u0627\u0646\u064a\u0627 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ilania", "mixname_en": "Ilania | <span>HaAmakim</span>", "label_ru": "\u0418\u043b\u0430\u043d\u0438\u044f", "mixname_ru": "\u0418\u043b\u0430\u043d\u0438\u044f | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "5C7980013DCD4297DD3D6274CFCFC9DA", "id": "1224", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05e9\u05d5\u05d1\u05dc", "mixname_he": "\u05e9\u05d5\u05d1\u05dc | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0634\u0648\u0628\u0644", "mixname_ar": "\u0634\u0648\u0628\u0644 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Shoval", "mixname_en": "Shoval | <span>Center Negev</span>", "label_ru": "\u0428\u043e\u0432\u0430\u043b\u044c", "mixname_ru": "\u0428\u043e\u0432\u0430\u043b\u044c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "5C91CDBB30F69536A381E902F92592F2", "id": "1146", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e8\u05d2\u05d1\u05d4", "mixname_he": "\u05e8\u05d2\u05d1\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0631\u062c\u0628\u0629", "mixname_ar": "\u0631\u062c\u0628\u0629 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Regba", "mixname_en": "Regba | <span>Upper Galilee</span>", "label_ru": "\u0420\u0435\u0433\u0431\u0430", "mixname_ru": "\u0420\u0435\u0433\u0431\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "5CC176B3B0338BBAD97153ADCD6942AE", "id": "297", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d7\u05d1\u05d9\u05d1\u05d4", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d7\u05d1\u05d9\u05d1\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u062d\u0628\u064a\u064a\u0627\u0647", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u062d\u0628\u064a\u064a\u0627\u0647 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Givat Haviva", "mixname_en": "Givat Haviva | <span>Menashe</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0430\u0432\u0438\u0432\u0430", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0430\u0432\u0438\u0432\u0430 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "5CD4988A3BACF560191A09D80F200D54", "id": "292", "areaid": 22, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0440\u0435\u043d\u0435\u0440", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d1\u05e8\u05e0\u05e8", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d1\u05e8\u05e0\u05e8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0628\u0631\u0646\u0631", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0628\u0631\u0646\u0631 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Givat Brenner", "mixname_en": "Givat Brenner | <span>Lachish</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0411\u0440\u0435\u043d\u0435\u0440", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0411\u0440\u0435\u043d\u0435\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "5D6C5AABF94FBB0D6DBCF9ED814FC68D", "id": "658", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e8\u05dd \u05d1\u05d9\u05d1\u05e0\u05d4", "mixname_he": "\u05db\u05e8\u05dd \u05d1\u05d9\u05d1\u05e0\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0631\u0645 \u0628\u064a\u0628\u0646\u0629", "mixname_ar": "\u0643\u0631\u0645 \u0628\u064a\u0628\u0646\u0629 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kerem BeYavne", "mixname_en": "Kerem BeYavne | <span>Lachish</span>", "label_ru": "\u041a\u0435\u0440\u0435\u043c \u0411\u0435\u042f\u0432\u043d\u0435", "mixname_ru": "\u041a\u0435\u0440\u0435\u043c \u0411\u0435\u042f\u0432\u043d\u0435 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "5D753B9F824F27C3E0125AB66D8DC3D0", "id": "48", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05e8\u05d5\u05e9", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05e8\u05d5\u05e9 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0631\u0648\u0634", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0631\u0648\u0634 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Brosh Industrial Zone", "mixname_en": "Brosh Industrial Zone | <span>Shfelat Yehuda</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0411\u0440\u043e\u0448", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0411\u0440\u043e\u0448 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "5D7ABF908516A6032C6E155D6B33CFEE", "id": "784", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05dc\u05d1\u05d5\u05e0\u05d4", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05dc\u05d1\u05d5\u05e0\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u0644\u0628\u0648\u0646\u0627", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u0644\u0628\u0648\u0646\u0627 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Ma'aleh Levona", "mixname_en": "Ma'aleh Levona | <span>Shomron</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u041b\u0435\u0432\u043e\u043d\u0430", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u041b\u0435\u0432\u043e\u043d\u0430 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "5D7B5B6B51642357CD2F1B8C4D913168", "id": "443", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d7\u05d5\u05e1\u05e0\u05d9\u05d9\u05d4", "mixname_he": "\u05d7\u05d5\u05e1\u05e0\u05d9\u05d9\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0627\u0644\u062d\u0635\u064a\u0646\u064a\u0629", "mixname_ar": "\u0627\u0644\u062d\u0635\u064a\u0646\u064a\u0629 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Hussniyya", "mixname_en": "Hussniyya | <span>Center Galilee</span>", "label_ru": "\u0425\u0443\u0441\u043d\u0438\u044f", "mixname_ru": "\u0425\u0443\u0441\u043d\u0438\u044f | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "5DA5FA2DE7A2F50B2409CF116B6138E8", "id": "1244", "areaid": 26, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e9\u05dc\u05d5\u05de\u05d9\u05ea", "mixname_he": "\u05e9\u05dc\u05d5\u05de\u05d9\u05ea | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0634\u0644\u0648\u0645\u064a\u062a", "mixname_ar": "\u0634\u0644\u0648\u0645\u064a\u062a | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Shlomit", "mixname_en": "Shlomit | <span>Gaza Envelope</span>", "label_ru": "\u0428\u043b\u043e\u043c\u0438\u0442", "mixname_ru": "\u0428\u043b\u043e\u043c\u0438\u0442 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "5DC15356BB6334EBE9A206B479F1CDD8", "id": "453", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d7\u05dc\u05de\u05d9\u05e9", "mixname_he": "\u05d7\u05dc\u05de\u05d9\u05e9 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0644\u0645\u064a\u0634", "mixname_ar": "\u062d\u0644\u0645\u064a\u0634 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Halamish", "mixname_en": "Halamish | <span>Shomron</span>", "label_ru": "\u0425\u0430\u043b\u0430\u043c\u0438\u0448", "mixname_ru": "\u0425\u0430\u043b\u0430\u043c\u0438\u0448 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "5DDF5EAA0D8868429DE513559D870AE0", "id": "929", "areaid": 15, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e0\u05e9\u05e8", "mixname_he": "\u05e0\u05e9\u05e8 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0646\u064a\u0634\u0631", "mixname_ar": "\u0646\u064a\u0634\u0631 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Nesher", "mixname_en": "Nesher | <span>Menashe</span>", "label_ru": "\u041d\u0435\u0448\u0435\u0440", "mixname_ru": "\u041d\u0435\u0448\u0435\u0440 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "5E0E9F655304BA9B05E3FDDA21ABEEB5", "id": "300", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d7\u05df", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d7\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u062d\u064a\u0646", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u062d\u064a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Givat Hen", "mixname_en": "Givat Hen | <span>Sharon</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0435\u043d", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0425\u0435\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "5E12C254555DB7D9945B426D145A5E74", "id": "254", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d1\u05e7\u05e2\u05d5\u05ea", "mixname_he": "\u05d1\u05e7\u05e2\u05d5\u05ea | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0628\u0643\u0639\u0648\u062a", "mixname_ar": "\u0628\u0643\u0639\u0648\u062a | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Beka'ot", "mixname_en": "Beka'ot | <span>Bika'a</span>", "label_ru": "\u0411\u043a\u0430\u043e\u0442", "mixname_ru": "\u0411\u043a\u0430\u043e\u0442 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "5E1B5C5B494796B3B9E0212CE5E5A544", "id": "831", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05de\u05e9\u05de\u05e8\u05d5\u05ea", "mixname_he": "\u05de\u05e9\u05de\u05e8\u05d5\u05ea | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0645\u0634\u0645\u0648\u0631\u062a", "mixname_ar": "\u0645\u0634\u0645\u0648\u0631\u062a | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Mishmarot", "mixname_en": "Mishmarot | <span>Menashe</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0430\u0440\u043e\u0442", "mixname_ru": "\u041c\u0438\u0448\u043c\u0430\u0440\u043e\u0442 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "5E396BEB4F03E84563F206609B58BF19", "id": "305", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05e2\u05d3\u05d4", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05e2\u05d3\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0639\u064a\u062f\u0627", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0639\u064a\u062f\u0627 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Givat Ada", "mixname_en": "Givat Ada | <span>Menashe</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0410\u0434\u0430", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0410\u0434\u0430 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "5E41F08221022C727055152794F50DF7", "id": "1288", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05ea\u05dc\u05dd", "mixname_he": "\u05ea\u05dc\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u064a\u0644\u0645", "mixname_ar": "\u062a\u064a\u0644\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Telem", "mixname_en": "Telem | <span>Yehuda</span>", "label_ru": "\u0422\u0435\u043b\u0435\u043c", "mixname_ru": "\u0422\u0435\u043b\u0435\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "5E55EEEE1429B87E862B4DC6D3E1B775", "id": "403", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05de\u05db\u05de\u05e0\u05d9\u05dd", "mixname_he": "\u05de\u05db\u05de\u05e0\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0645\u062e\u0645\u0627\u0646\u064a\u0645", "mixname_ar": "\u0645\u062e\u0645\u0627\u0646\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Mikhmanim", "mixname_en": "Mikhmanim | <span>Upper Galilee</span>", "label_ru": "\u041c\u0438\u0445\u043c\u0430\u043d\u0438\u043c", "mixname_ru": "\u041c\u0438\u0445\u043c\u0430\u043d\u0438\u043c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "5E5B065B89E27F88A3A63860E2BDEECC", "id": "893", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05d8\u05e3", "mixname_he": "\u05e0\u05d8\u05e3 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0637\u0627\u0641", "mixname_ar": "\u0646\u0637\u0627\u0641 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Nataf", "mixname_en": "Nataf | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0430\u0442\u0430\u0444", "mixname_ru": "\u041d\u0430\u0442\u0430\u0444 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "5E7B32DF6049A30FB6A13E73376A7A97", "id": "644", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05db\u05e4\u05e8 \u05e4\u05d9\u05e0\u05e1", "mixname_he": "\u05db\u05e4\u05e8 \u05e4\u05d9\u05e0\u05e1 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0628\u064a\u0646\u0633", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0628\u064a\u0646\u0633 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Kfar Pinnes", "mixname_en": "Kfar Pinnes | <span>Menashe</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041f\u0438\u043d\u0435\u0441", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041f\u0438\u043d\u0435\u0441 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "5E7DD1EECAAC3CA1C26B295FA0D39F67", "id": "91", "areaid": 1, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05d0\u05d9\u05dc\u05d5\u05ea", "mixname_he": "\u05d0\u05d9\u05dc\u05d5\u05ea | <span>\u05d0\u05d9\u05dc\u05ea</span>", "label_ar": "\u0627\u064a\u0627\u0644\u0648\u062a", "mixname_ar": "\u0627\u064a\u0627\u0644\u0648\u062a | <span>\u0627\u064a\u0644\u0627\u062a</span>", "label_en": "Eilot", "mixname_en": "Eilot | <span>Eilat</span>", "label_ru": "\u042d\u0439\u043b\u043e\u0442", "mixname_ru": "\u042d\u0439\u043b\u043e\u0442 | <span>\u042d\u0439\u043b\u0430\u0442</span>"}, {"value": "5E80C170F85A0E6BE37D04532E3B742F", "id": "256", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d1\u05e8 \u05d9\u05d5\u05d7\u05d0\u05d9", "mixname_he": "\u05d1\u05e8 \u05d9\u05d5\u05d7\u05d0\u05d9 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0628\u0627\u0631 \u064a\u0648\u062d\u0627\u064a", "mixname_ar": "\u0628\u0627\u0631 \u064a\u0648\u062d\u0627\u064a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Bar Yochai", "mixname_en": "Bar Yochai | <span>Upper Galilee</span>", "label_ru": "\u0411\u0430\u0440 \u0419\u043e\u0445\u0430\u0439", "mixname_ru": "\u0411\u0430\u0440 \u0419\u043e\u0445\u0430\u0439 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "5EA37C293517C8F78B3E60A731C57F83", "id": "282", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d2\u05d1\u05d5\u05dc\u05d5\u05ea", "mixname_he": "\u05d2\u05d1\u05d5\u05dc\u05d5\u05ea | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062c\u0641\u0648\u0644\u0648\u062a", "mixname_ar": "\u062c\u0641\u0648\u0644\u0648\u062a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Gvulot", "mixname_en": "Gvulot | <span>West Negev</span>", "label_ru": "\u0413\u0432\u0443\u043b\u043e\u0442", "mixname_ru": "\u0413\u0432\u0443\u043b\u043e\u0442 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "5EC278134297453C8BF211E41A5F8A2A", "id": "235", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d1\u05df \u05e2\u05de\u05d9", "mixname_he": "\u05d1\u05df \u05e2\u05de\u05d9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0628\u0646 \u0639\u0627\u0645\u064a", "mixname_ar": "\u0628\u0646 \u0639\u0627\u0645\u064a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ben Ami", "mixname_en": "Ben Ami | <span>Confrontation Line</span>", "label_ru": "\u0411\u0435\u043d \u0410\u043c\u0438", "mixname_ru": "\u0411\u0435\u043d \u0410\u043c\u0438 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "5EE52B3D54A820F423AADF7B0A8BD0E4", "id": "6037", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05e9\u05e7\u05dc\u05d5\u05df - \u05d3\u05e8\u05d5\u05dd", "mixname_he": "\u05d0\u05e9\u05e7\u05dc\u05d5\u05df - \u05e6\u05e4\u05d5\u05df | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u0634\u0643\u0644\u0648\u0646 - \u062c\u0646\u0648\u0628", "mixname_ar": "\u0623\u0634\u0643\u0644\u0648\u0646 - \u062c\u0646\u0648\u0628 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Ashkelon - South", "mixname_en": "Ashkelon - South | <span>West Lachish</span>", "label_ru": "\u0410\u0448\u043a\u0435\u043b\u043e\u043d - \u042e\u0433", "mixname_ru": "\u0410\u0448\u043a\u0435\u043b\u043e\u043d - \u042e\u0433 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "5F06DEED8025AB9B313BB57A1313A62A", "id": "759", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05e0\u05e9\u05d9\u05ea \u05d6\u05d1\u05d3\u05d4", "mixname_he": "\u05de\u05e0\u05e9\u05d9\u05ea \u05d6\u05d1\u05d3\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0645\u0646\u0634\u064a\u0629 \u0632\u0628\u062f\u0629", "mixname_ar": "\u0645\u0646\u0634\u064a\u0629 \u0632\u0628\u062f\u0629 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Manshiya Zabda", "mixname_en": "Manshiya Zabda | <span>HaAmakim</span>", "label_ru": "\u041c\u0430\u043d\u0448\u0438\u044f \u0417\u0430\u0431\u0434\u0430", "mixname_ru": "\u041c\u0430\u043d\u0448\u0438\u044f \u0417\u0430\u0431\u0434\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "5F17F65BA5B94DAEE2A253A8064A4BC6", "id": "693", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05de\u05d1\u05d5\u05d0 \u05d7\u05de\u05d4", "mixname_he": "\u05de\u05d1\u05d5\u05d0 \u05d7\u05de\u05d4 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0645\u0627\u0641\u0648 \u062d\u0627\u0645\u0627\u0647", "mixname_ar": "\u0645\u0627\u0641\u0648 \u062d\u0627\u0645\u0627\u0647 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Mevo Hama", "mixname_en": "Mevo Hama | <span>South Golan</span>", "label_ru": "\u041c\u0435\u0432\u043e \u0425\u0430\u043c\u0430", "mixname_ru": "\u041c\u0435\u0432\u043e \u0425\u0430\u043c\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "5F6D52BFBA2C7F35FF47E6DAE4C0D792", "id": "951", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e1\u05e2\u05e8", "mixname_he": "\u05e1\u05e2\u05e8 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0633\u0627\u0639\u0631", "mixname_ar": "\u0633\u0627\u0639\u0631 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Sa'ar", "mixname_en": "Sa'ar | <span>Confrontation Line</span>", "label_ru": "\u0421\u0430\u0430\u0440", "mixname_ru": "\u0421\u0430\u0430\u0440 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "5F8924C3B71FC7E09F37A2BAD0C61511", "id": "354", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d2\u05e9\u05d5\u05e8", "mixname_he": "\u05d2\u05e9\u05d5\u05e8 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u062c\u0627\u0634\u0648\u0631", "mixname_ar": "\u062c\u0627\u0634\u0648\u0631 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Gshur", "mixname_en": "Gshur | <span>South Golan</span>", "label_ru": "\u0413\u0448\u0443\u0440", "mixname_ru": "\u0413\u0448\u0443\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "5F91813DDBE7BA18ABC615DA9E2BFEC7", "id": "1321", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05e1\u05de\"\u05d4", "mixname_he": "\u05d1\u05e1\u05de\"\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_en": "Basma", "mixname_en": "Basma | <span>Wadi Ara</span>"}, {"value": "5FA523F0F1CF842C29A43D199DF1213E", "id": "331", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05d2\u05dc\u05e2\u05d3", "mixname_he": "\u05d2\u05dc\u05e2\u05d3 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u062c\u0644\u0639\u0627\u062f (\u0627\u064a\u0641\u064a\u0646 \u064a\u062a\u0633\u062d\u0627\u0642)", "mixname_ar": "\u062c\u0644\u0639\u0627\u062f (\u0627\u064a\u0641\u064a\u0646 \u064a\u062a\u0633\u062d\u0627\u0642) | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Gal'ed (Even Itzhak)", "mixname_en": "Gal'ed (Even Itzhak) | <span>Wadi Ara</span>", "label_ru": "\u0413\u0430\u043b\u0435\u0434 (\u042d\u0432\u0435\u043d \u0418\u0446\u0445\u0430\u043a)", "mixname_ru": "\u0413\u0430\u043b\u0435\u0434 (\u042d\u0432\u0435\u043d \u0418\u0446\u0445\u0430\u043a) | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "5FCE568633D880B4107973FD3AC40CB9", "id": "579", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0434\u0435\u0440\u043e\u0442", "label_he": "\u05db\u05e4\u05e8 \u05d0\u05d1\u05d9\u05d1", "mixname_he": "\u05db\u05e4\u05e8 \u05d0\u05d1\u05d9\u05d1 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0623\u0641\u064a\u0641", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0623\u0641\u064a\u0641 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kfar Aviv", "mixname_en": "Kfar Aviv | <span>Lachish</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0410\u0432\u0438\u0432", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0410\u0432\u0438\u0432 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "6000", "id": "361B3C17083DF8EA5728A5D899B4B5EC", "areaid": 22, "color": "O", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05e9\u05d3\u05d5\u05d3 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d0\u05e9\u05d3\u05d5\u05d3 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u0634\u062f\u0648\u062f - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u0623\u0634\u062f\u0648\u062f - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ashdod - all areas", "mixname_en": "Ashdod - all areas | <span>Lachish</span>", "label_ru": "\u0410\u0448\u0434\u043e\u0434 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0410\u0448\u0434\u043e\u0434 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "6004", "id": "B412D33709D091B52F7A3CD01F15A718", "areaid": 25, "color": "O", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d0\u05e8 \u05e9\u05d1\u05e2 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d1\u05d0\u05e8 \u05e9\u05d1\u05e2 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u0626\u0631 \u0627\u0644\u0633\u0628\u0639 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u0628\u0626\u0631 \u0627\u0644\u0633\u0628\u0639 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Beer Sheva - all areas", "mixname_en": "Beer Sheva - all areas | <span>Center Negev</span>", "label_ru": "\u0411\u0435\u044d\u0440-\u0428\u0435\u0432\u0430 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0411\u0435\u044d\u0440-\u0428\u0435\u0432\u0430 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "600718D0A97B0BD69DFEE9C4813F428E", "id": "1171", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05e8\u05de\u05d5\u05ea \u05e0\u05e4\u05ea\u05dc\u05d9", "mixname_he": "\u05e8\u05de\u05d5\u05ea \u05e0\u05e4\u05ea\u05dc\u05d9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0631\u0627\u0645\u0648\u062a \u0646\u0627\u0641\u062a\u0627\u0644\u064a", "mixname_ar": "\u0631\u0627\u0645\u0648\u062a \u0646\u0627\u0641\u062a\u0627\u0644\u064a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ramot Naftali", "mixname_en": "Ramot Naftali | <span>Confrontation Line</span>", "label_ru": "\u0420\u0430\u043c\u043e\u0442 \u041d\u0430\u0444\u0442\u0430\u043b\u0438", "mixname_ru": "\u0420\u0430\u043c\u043e\u0442 \u041d\u0430\u0444\u0442\u0430\u043b\u0438 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "6009", "id": "F45AB2C88228D6CBBDF5D1BFD8F14FFA", "areaid": 8, "color": "Y", "migun_time": 90, "rashut": "", "label_he": "\u05d4\u05e8\u05e6\u05dc\u05d9\u05d4 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d4\u05e8\u05e6\u05dc\u05d9\u05d4 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05d3\u05df</span>", "label_ar": "\u0647\u0631\u062a\u0633\u0644\u064a\u0627 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u0647\u0631\u062a\u0633\u0644\u064a\u0627 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u062f\u0627\u0646</span>", "label_en": "Herzliya - all areas", "mixname_en": "Herzliya - all areas | <span>Dan</span>", "label_ru": "\u0413\u0435\u0440\u0446\u043b\u0438\u044f - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0413\u0435\u0440\u0446\u043b\u0438\u044f - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u0414\u0430\u043d</span>"}, {"value": "6010", "id": "DFC0C698A54E2D452A14D1DEDBBCA9F0", "areaid": 15, "color": "G", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d3\u05e8\u05d4 \u05db\u05dc - \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d7\u05d3\u05e8\u05d4 \u05db\u05dc - \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062d\u062f\u064a\u0631\u0627 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u062d\u062f\u064a\u0631\u0627 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Hadera - all areas", "mixname_en": "Hadera - all areas | <span>Menashe</span>", "label_ru": "\u0425\u0430\u0434\u0435\u0440\u0430 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0425\u0430\u0434\u0435\u0440\u0430 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "6014", "id": "BB6FFE64EF1EB20509E4E4D5CA4E3718", "areaid": 15, "color": "G", "migun_time": 60, "rashut": "", "label_he": "\u05d7\u05d9\u05e4\u05d4 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d7\u05d9\u05e4\u05d4 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062d\u064a\u0641\u0627 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u062d\u064a\u0641\u0627 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Haifa - all areas", "mixname_en": "Haifa - all areas | <span>Menashe</span>", "label_ru": "\u0425\u0430\u0439\u0444\u0430 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0425\u0430\u0439\u0444\u0430 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "6018", "id": "80ACCE46A448E7F5349E2AC1F05A1CAA", "areaid": 20, "color": "Y", "migun_time": 90, "rashut": "", "label_he": "\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0623\u0648\u0631\u0634\u0644\u064a\u0645 \u0627\u0644\u0642\u062f\u0633 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u0623\u0648\u0631\u0634\u0644\u064a\u0645 \u0627\u0644\u0642\u062f\u0633 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Jerusalem - all areas", "mixname_en": "Jerusalem - all areas | <span>Jerusalem</span>", "label_ru": "\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "6019F48A972034F184B477A6C8B0D0F1", "id": "3", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d1\u05d5 \u05e1\u05e0\u05d0\u05df", "mixname_he": "\u05d0\u05d1\u05d5 \u05e1\u05e0\u05d0\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0628\u0648 \u0633\u0646\u0627\u0646", "mixname_ar": "\u0627\u0628\u0648 \u0633\u0646\u0627\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Abu Snan", "mixname_en": "Abu Snan | <span>Upper Galilee</span>", "label_ru": "\u0410\u0431\u0443 \u0421\u043d\u0430\u043d", "mixname_ru": "\u0410\u0431\u0443 \u0421\u043d\u0430\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "6023", "id": "12803225EFB3E1C3CC33DC2FA02A00A3", "areaid": 27, "color": "Y", "migun_time": 90, "rashut": "", "label_he": "\u05e0\u05ea\u05e0\u05d9\u05d4 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05e0\u05ea\u05e0\u05d9\u05d4 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u062a\u0627\u0646\u064a\u0627 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u0646\u062a\u0627\u0646\u064a\u0627 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Netanya - all areas", "mixname_en": "Netanya - all areas | <span>Sharon</span>", "label_ru": "\u041d\u0435\u0442\u0430\u043d\u0438\u044f - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u041d\u0435\u0442\u0430\u043d\u0438\u044f - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "6026", "id": "AF03968847DDE999E86F2C64B0B7443C", "areaid": 12, "color": "Y", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05d0\u05e9\u05d5\u05df \u05dc\u05e6\u05d9\u05d5\u05df - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05e8\u05d0\u05e9\u05d5\u05df \u05dc\u05e6\u05d9\u05d5\u05df - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0631\u064a\u0634\u0648\u0646 \u0644\u062a\u0633\u064a\u0648\u0646 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u0631\u064a\u0634\u0648\u0646 \u0644\u062a\u0633\u064a\u0648\u0646 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Rishon Lezion - all areas", "mixname_en": "Rishon Lezion - all areas | <span>HaShfela</span>", "label_ru": "\u0420\u0438\u0448\u043e\u043d \u043b\u0435-\u0426\u0438\u043e\u043d - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0420\u0438\u0448\u043e\u043d \u043b\u0435-\u0426\u0438\u043e\u043d - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "6027", "id": "7C2F2A3FB518D22DE4A6337F8C442BE4", "areaid": 8, "color": "Y", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05de\u05ea \u05d2\u05df - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05e8\u05de\u05ea \u05d2\u05df - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05d3\u05df</span>", "label_ar": "\u0631\u0645\u0627\u062a \u063a\u0627\u0646 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u0631\u0645\u0627\u062a \u063a\u0627\u0646 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u062f\u0627\u0646</span>", "label_en": "Ramat Gan - all areas", "mixname_en": "Ramat Gan - all areas | <span>Dan</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442-\u0413\u0430\u043d - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442-\u0413\u0430\u043d - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u0414\u0430\u043d</span>"}, {"value": "6032", "id": "3896F8FD13C07F97F745FF1DA7509C39", "areaid": 8, "color": "Y", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05dc \u05d0\u05d1\u05d9\u05d1 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05ea\u05dc \u05d0\u05d1\u05d9\u05d1 - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05d3\u05df</span>", "label_ar": "\u062a\u0644 \u0623\u0628\u064a\u0628 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u062a\u0644 \u0623\u0628\u064a\u0628 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u062f\u0627\u0646</span>", "label_en": "Tel Aviv - all areas", "mixname_en": "Tel Aviv - all areas | <span>Dan</span>", "label_ru": "\u0422\u0435\u043b\u044c-\u0410\u0432\u0438\u0432 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0422\u0435\u043b\u044c-\u0410\u0432\u0438\u0432 - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u0414\u0430\u043d</span>"}, {"value": "6037", "id": "5EE52B3D54A820F423AADF7B0A8BD0E4", "areaid": 19, "color": "O", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05e9\u05e7\u05dc\u05d5\u05df - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d0\u05e9\u05e7\u05dc\u05d5\u05df - \u05db\u05dc \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u0634\u0643\u0644\u0648\u0646 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642", "mixname_ar": "\u0623\u0634\u0643\u0644\u0648\u0646 - \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Ashkelon - all areas", "mixname_en": "Ashkelon - all areas | <span>West Lachish</span>", "label_ru": "\u0410\u0448\u043a\u0435\u043b\u043e\u043d - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b", "mixname_ru": "\u0410\u0448\u043a\u0435\u043b\u043e\u043d - \u0432\u0441\u0435 \u0440\u0430\u0439\u043e\u043d\u044b | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "6043655E390778E5C87450645F01AB62", "id": "1246", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e9\u05de\u05d9\u05e8", "mixname_he": "\u05e9\u05de\u05d9\u05e8 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0634\u0645\u064a\u0631", "mixname_ar": "\u0634\u0645\u064a\u0631 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Shamir", "mixname_en": "Shamir | <span>Confrontation Line</span>", "label_ru": "\u0428\u0430\u043c\u0438\u0440", "mixname_ru": "\u0428\u0430\u043c\u0438\u0440 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "6046050111020BCE701E6CF1AC20731E", "id": "788", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05e6\u05d1\u05d9\u05d4", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05e6\u05d1\u05d9\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u062a\u0633\u0641\u064a\u0627", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u062a\u0633\u0641\u064a\u0627 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Ma'aleh Zvia", "mixname_en": "Ma'aleh Zvia | <span>Center Galilee</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0426\u0432\u0438\u044f", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0426\u0432\u0438\u044f | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "605D0DFE5B4B85F0DD61FC2F6AE6B721", "id": "669", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05db\u05e8\u05de\u05dc", "mixname_he": "\u05db\u05e8\u05de\u05dc | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0631\u0645\u0644", "mixname_ar": "\u0643\u0631\u0645\u0644 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Carmel", "mixname_en": "Carmel | <span>Yehuda</span>", "label_ru": "\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "mixname_ru": "\u041a\u0430\u0440\u043c\u0435\u043b\u044c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "60A1A91F3D4D734DA3313BFB78A86101", "id": "1008", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05e2\u05d9\u05df \u05e7\u05e0\u05d9\u05d9\u05d0", "mixname_he": "\u05e2\u05d9\u05df \u05e7\u05e0\u05d9\u05d9\u05d0 | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0642\u064a\u0646\u064a\u0627", "mixname_ar": "\u0639\u064a\u0646 \u0642\u064a\u0646\u064a\u0627 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Ein Quiniyye", "mixname_en": "Ein Quiniyye | <span>North Golan</span>", "label_ru": "\u042d\u0439\u043d \u041a\u0438\u043d\u0438\u044f", "mixname_ru": "\u042d\u0439\u043d \u041a\u0438\u043d\u0438\u044f | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "60B01663557BC76330C4EE2CE033F791", "id": "1303", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05ea\u05e7\u05d5\u05de\u05d4 \u05d5\u05d7\u05d5\u05d5\u05ea \u05d9\u05d6\u05e8\u05e2\u05dd", "mixname_he": "\u05ea\u05e7\u05d5\u05de\u05d4 \u05d5\u05d7\u05d5\u05d5\u05ea \u05d9\u05d6\u05e8\u05e2\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062a\u0643\u0648\u0645\u0647 \u0648\u0645\u0632\u0631\u0639\u0629 \u064a\u0632\u0631\u0627\u0639\u0645", "mixname_ar": "\u062a\u0643\u0648\u0645\u0647 \u0648\u0645\u0632\u0631\u0639\u0629 \u064a\u0632\u0631\u0627\u0639\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Tkuma and Havat Izra'am", "mixname_en": "Tkuma and Havat Izra'am | <span>Gaza Envelope</span>", "label_ru": "\u0422\u043a\u0443\u043c\u0430 \u0438 \u0425\u0430\u0432\u0430\u0442 \u0418\u0437\u0440\u0430\u0430\u043c", "mixname_ru": "\u0422\u043a\u0443\u043c\u0430 \u0438 \u0425\u0430\u0432\u0430\u0442 \u0418\u0437\u0440\u0430\u0430\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "60EF7482E63F418E09E2CD4F8BBB8AF8", "id": "935", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e1\u05d0\u05d2'\u05d5\u05e8", "mixname_he": "\u05e1\u05d0\u05d2'\u05d5\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0633\u0627\u062c\u0648\u0631", "mixname_ar": "\u0633\u0627\u062c\u0648\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Sajur", "mixname_en": "Sajur | <span>Upper Galilee</span>", "label_ru": "\u0421\u0430\u0434\u0436\u0443\u0440", "mixname_ru": "\u0421\u0430\u0434\u0436\u0443\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "6188E2215312C8688EE72F6DB231051F", "id": "978", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e2\u05d9\u05dc\u05d1\u05d5\u05df", "mixname_he": "\u05e2\u05d9\u05dc\u05d1\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0639\u064a\u0644\u0628\u0648\u0646", "mixname_ar": "\u0639\u064a\u0644\u0628\u0648\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Eilabun", "mixname_en": "Eilabun | <span>Center Galilee</span>", "label_ru": "\u042d\u0439\u043b\u0430\u0431\u0443\u043d", "mixname_ru": "\u042d\u0439\u043b\u0430\u0431\u0443\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "62099BD21F23D708C71D489C78E679F7", "id": "522", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d9\u05e0\u05d5\u05df", "mixname_he": "\u05d9\u05e0\u05d5\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u064a\u0646\u0648\u0646", "mixname_ar": "\u064a\u0646\u0648\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Yinon", "mixname_en": "Yinon | <span>Lachish</span>", "label_ru": "\u0418\u043d\u043e\u043d", "mixname_ru": "\u0418\u043d\u043e\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "6276A72AED79F6F844743DD761F403B1", "id": "211", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d1\u05d9\u05ea \u05e0\u05e7\u05d5\u05e4\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05e0\u05e7\u05d5\u05e4\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u0646\u0642\u0648\u0628\u0627", "mixname_ar": "\u0628\u064a\u062a \u0646\u0642\u0648\u0628\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beit Nekofa", "mixname_en": "Beit Nekofa | <span>Shfelat Yehuda</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u041d\u0435\u043a\u043e\u0444\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u041d\u0435\u043a\u043e\u0444\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "62BA12FAA2196B26B17F52F08B2563AD", "id": "118", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d0\u05dc\u05d9\u05e9\u05d9\u05d1", "mixname_he": "\u05d0\u05dc\u05d9\u05e9\u05d9\u05d1 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u0644\u064a\u0634\u064a\u0641", "mixname_ar": "\u0623\u0644\u064a\u0634\u064a\u0641 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Elyashiv", "mixname_en": "Elyashiv | <span>Sharon</span>", "label_ru": "\u042d\u043b\u044c\u044f\u0448\u0438\u0432", "mixname_ru": "\u042d\u043b\u044c\u044f\u0448\u0438\u0432 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "62DB083B38E02D6CABB4C32A887D60B4", "id": "397", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d4\u05e2\u05d5\u05d2\u05df", "mixname_he": "\u05d4\u05e2\u05d5\u05d2\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0647\u0639\u0648\u063a\u0646", "mixname_ar": "\u0647\u0639\u0648\u063a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "HaOgen", "mixname_en": "HaOgen | <span>Sharon</span>", "label_ru": "\u0445\u0430-\u041e\u0433\u0435\u043d", "mixname_ru": "\u0445\u0430-\u041e\u0433\u0435\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "63211D7C795D12ACB2D31C287370D2E3", "id": "456", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05d7\u05de\u05d3\u05d9\u05d4", "mixname_he": "\u05d7\u05de\u05d3\u05d9\u05d4 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u062d\u0645\u062f\u064a\u0629", "mixname_ar": "\u062d\u0645\u062f\u064a\u0629 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Hamadia", "mixname_en": "Hamadia | <span>Beit She'an Valley</span>", "label_ru": "\u0425\u0430\u043c\u0430\u0434\u0438\u044f", "mixname_ru": "\u0425\u0430\u043c\u0430\u0434\u0438\u044f | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "634BE4A74FA4806BB9ECBD44BDBE1A8D", "id": "1281", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05ea\u05dc \u05d9\u05e6\u05d7\u05e7", "mixname_he": "\u05ea\u05dc \u05d9\u05e6\u05d7\u05e7 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0644 \u064a\u062a\u0633\u062d\u0627\u0642", "mixname_ar": "\u062a\u0644 \u064a\u062a\u0633\u062d\u0627\u0642 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tel Itzhak", "mixname_en": "Tel Itzhak | <span>Sharon</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0418\u0446\u0445\u0430\u043a", "mixname_ru": "\u0422\u0435\u043b\u044c \u0418\u0446\u0445\u0430\u043a | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "6367F2887353C9884C9D9770EBDF8941", "id": "501", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05d9\u05d2\u05dc", "mixname_he": "\u05d9\u05d2\u05dc | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u064a\u064a\u062c\u0627\u0644", "mixname_ar": "\u064a\u064a\u062c\u0627\u0644 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Yagel", "mixname_en": "Yagel | <span>HaShfela</span>", "label_ru": "\u042f\u0433\u0435\u043b\u044c", "mixname_ru": "\u042f\u0433\u0435\u043b\u044c | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "6394DBE568286CA0AF3A0EF8E226CEAD", "id": "430", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d7\u05d2\u05dc\u05d4", "mixname_he": "\u05d7\u05d2\u05dc\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0627\u062c\u0627\u0644\u0627\u0647", "mixname_ar": "\u062d\u0627\u062c\u0627\u0644\u0627\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Hogla", "mixname_en": "Hogla | <span>Sharon</span>", "label_ru": "\u0425\u043e\u0433\u043b\u0430", "mixname_ru": "\u0425\u043e\u0433\u043b\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "63A221CA17718FF687A9C691C424FC72", "id": "853", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e0\u05d5\u05d2\u05d4", "mixname_he": "\u05e0\u05d5\u05d2\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u0648\u062c\u0647", "mixname_ar": "\u0646\u0648\u062c\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Noga", "mixname_en": "Noga | <span>Lachish</span>", "label_ru": "\u041d\u043e\u0433\u0430", "mixname_ru": "\u041d\u043e\u0433\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "63AA76472D335C7DC2ED5002CB41B5BE", "id": "538", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05d9\u05e7\u05e0\u05e2\u05dd \u05d4\u05de\u05d5\u05e9\u05d1\u05d4 \u05d5\u05d4\u05d6\u05d5\u05e8\u05e2", "mixname_he": "\u05d9\u05e7\u05e0\u05e2\u05dd \u05d4\u05de\u05d5\u05e9\u05d1\u05d4 \u05d5\u05d4\u05d6\u05d5\u05e8\u05e2 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u064a\u0648\u0643\u0646\u0639\u0627\u0645 \u0647\u0645\u0648\u0634\u0627\u0641\u0647 \u0648\u0647\u0632\u0648\u0631\u0639", "mixname_ar": "\u064a\u0648\u0643\u0646\u0639\u0627\u0645 \u0647\u0645\u0648\u0634\u0627\u0641\u0647 \u0648\u0647\u0632\u0648\u0631\u0639 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Yokneam Moshava", "mixname_en": "Yokneam Moshava | <span>Wadi Ara</span>", "label_ru": "\u0419\u043e\u043a\u043d\u0435\u0430\u043c \u0445\u0430-\u041c\u043e\u0448\u0430\u0432\u0430 \u0438 \u0445\u0430-\u0417\u043e\u0440\u0435", "mixname_ru": "\u0419\u043e\u043a\u043d\u0435\u0430\u043c \u0445\u0430-\u041c\u043e\u0448\u0430\u0432\u0430 \u0438 \u0445\u0430-\u0417\u043e\u0440\u0435 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "63B9820F871DE08678B42B8F7EE198C8", "id": "1376", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d4\u05e8 \u05d4\u05e0\u05d2\u05d1", "mixname_he": "\u05d4\u05e8 \u05d4\u05e0\u05d2\u05d1 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062c\u0628\u0627\u0644 \u0627\u0644\u0646\u0642\u0628", "mixname_ar": "\u062c\u0628\u0627\u0644 \u0627\u0644\u0646\u0642\u0628 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Har Ha'Negev", "mixname_en": "Har Ha'Negev | <span>South Negev</span>", "label_ru": "\u0425\u0430\u0440 \u0425\u0430-\u041d\u0435\u0433\u0435\u0432", "mixname_ru": "\u0425\u0430\u0440 \u0425\u0430-\u041d\u0435\u0433\u0435\u0432 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "642F238AD4B948BC3E77A63BA38C2FBA", "id": "1381", "areaid": 29, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05dc \u05e2\u05de\u05d0\u05e8\u05e0\u05d9, \u05d0\u05dc \u05de\u05e1\u05e7", "mixname_he": "\u05d0\u05dc \u05e2\u05de\u05d0\u05e8\u05e0\u05d9, \u05d0\u05dc \u05de\u05e1\u05e7 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0627\u0644\u0639\u0645\u0627\u0631\u0646\u064a \u060c \u0627\u0644\u0645\u0633\u0643", "mixname_ar": "\u0627\u0644\u0639\u0645\u0627\u0631\u0646\u064a \u060c \u0627\u0644\u0645\u0633\u0643 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "El-Amrana, El-Mask", "mixname_en": "El-Amrana, El-Mask | <span>Arava</span>", "label_ru": "\u042d\u043b\u044c-\u0410\u043c\u0430\u0440\u043d\u0430, \u042d\u043b\u044c-\u041c\u0430\u0441\u043a", "mixname_ru": "\u042d\u043b\u044c-\u0410\u043c\u0430\u0440\u043d\u0430, \u042d\u043b\u044c-\u041c\u0430\u0441\u043a | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "644FA8E3F4D35193ED838A25FC918AE2", "id": "599", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05e0\u05d2\u05d9\u05d3", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05e0\u05d2\u05d9\u05d3 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0647\u0646\u062c\u064a\u062f", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0647\u0646\u062c\u064a\u062f | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kfar HaNagid", "mixname_en": "Kfar HaNagid | <span>Lachish</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u041d\u0430\u0433\u0438\u0434", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u041d\u0430\u0433\u0438\u0434 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "648420D94F02DC2A85F5075A2B373148", "id": "18", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u043b\u043e\u0442 \u041c\u0435\u0440\u0442\u0432\u043e\u0433\u043e \u043c\u043e\u0440\u044f", "label_he": "\u05d0\u05d1\u05e0\u05ea", "mixname_he": "\u05d0\u05d1\u05e0\u05ea | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0627\u064a\u0641\u0646\u0627\u062a", "mixname_ar": "\u0627\u064a\u0641\u0646\u0627\u062a | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Avnat", "mixname_en": "Avnat | <span>Dead Sea</span>", "label_ru": "\u0410\u0432\u043d\u0430\u0442", "mixname_ru": "\u0410\u0432\u043d\u0430\u0442 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "64956E251B15C13CD1DDBDB2FF839EE6", "id": "85", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d0\u05d7\u05d9\u05e1\u05de\u05da", "mixname_he": "\u05d0\u05d7\u05d9\u05e1\u05de\u05da | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0623\u062d\u064a\u0633\u064a\u0645\u062e", "mixname_ar": "\u0623\u062d\u064a\u0633\u064a\u0645\u062e | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ahisemech", "mixname_en": "Ahisemech | <span>HaShfela</span>", "label_ru": "\u0410\u0445\u0438\u0441\u0435\u043c\u0435\u0445", "mixname_ru": "\u0410\u0445\u0438\u0441\u0435\u043c\u0435\u0445 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "64B565A9B8AA2E7D3BB71582416C5351", "id": "341", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05d2\u05df \u05e9\u05de\u05d5\u05d0\u05dc", "mixname_he": "\u05d2\u05df \u05e9\u05de\u05d5\u05d0\u05dc | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062c\u0627\u0646 \u0634\u0645\u0648\u0626\u064a\u0644", "mixname_ar": "\u062c\u0627\u0646 \u0634\u0645\u0648\u0626\u064a\u0644 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Gan Shmuel", "mixname_en": "Gan Shmuel | <span>Menashe</span>", "label_ru": "\u0413\u0430\u043d \u0428\u043c\u0443\u044d\u043b\u044c", "mixname_ru": "\u0413\u0430\u043d \u0428\u043c\u0443\u044d\u043b\u044c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "64CCE96F2E1D5B01659ACA04208FFBA8", "id": "441", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d7\u05d5\u05dc\u05ea\u05d4", "mixname_he": "\u05d7\u05d5\u05dc\u05ea\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062d\u0648\u0644\u0627\u062a\u0627", "mixname_ar": "\u062d\u0648\u0644\u0627\u062a\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Hulata", "mixname_en": "Hulata | <span>Upper Galilee</span>", "label_ru": "\u0425\u0443\u043b\u0430\u0442\u0430", "mixname_ru": "\u0425\u0443\u043b\u0430\u0442\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "656613AE6E1977B30A3BD71267326937", "id": "911", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e0\u05d9\u05e8 \u05e2\u05e7\u05d9\u05d1\u05d0", "mixname_he": "\u05e0\u05d9\u05e8 \u05e2\u05e7\u05d9\u05d1\u05d0 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0646\u064a\u0631 \u0639\u0643\u064a\u0641\u0627", "mixname_ar": "\u0646\u064a\u0631 \u0639\u0643\u064a\u0641\u0627 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Nir Akiva", "mixname_en": "Nir Akiva | <span>West Negev</span>", "label_ru": "\u041d\u0438\u0440 \u0410\u043a\u0438\u0432\u0430", "mixname_ru": "\u041d\u0438\u0440 \u0410\u043a\u0438\u0432\u0430 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "6574C8EE7B0398FB15752F9D0705145E", "id": "1270", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05e9\u05ea\u05d5\u05dc\u05d9\u05dd", "mixname_he": "\u05e9\u05ea\u05d5\u05dc\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0634\u062a\u0648\u0644\u064a\u0645", "mixname_ar": "\u0634\u062a\u0648\u0644\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Shtulim", "mixname_en": "Shtulim | <span>Lachish</span>", "label_ru": "\u0428\u0442\u0443\u043b\u0438\u043c", "mixname_ru": "\u0428\u0442\u0443\u043b\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "65F020DF1FFDE8E9A818EBF86089E55E", "id": "401", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05d4\u05e8 \u05d2\u05d9\u05dc\u05d4", "mixname_he": "\u05d4\u05e8 \u05d2\u05d9\u05dc\u05d4 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0647\u0627\u0631 \u062c\u064a\u0644\u0648", "mixname_ar": "\u0647\u0627\u0631 \u062c\u064a\u0644\u0648 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Har Gilo", "mixname_en": "Har Gilo | <span>Yehuda</span>", "label_ru": "\u0425\u0430\u0440 \u0413\u0438\u043b\u043e", "mixname_ru": "\u0425\u0430\u0440 \u0413\u0438\u043b\u043e | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "669EA348DA8AE1D0DC73B0D859298CA4", "id": "1118", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d0\u05d5\u05e0\u05d5", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d0\u05d5\u05e0\u05d5 | <span>\u05d3\u05df</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0623\u0648\u0646\u0648", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0623\u0648\u0646\u0648 | <span>\u062f\u0627\u0646</span>", "label_en": "Kiryat Ono", "mixname_en": "Kiryat Ono | <span>Dan</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u041e\u043d\u043e", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u041e\u043d\u043e | <span>\u0414\u0430\u043d</span>"}, {"value": "66C3E4B472B0C554BF510D38F86D72D0", "id": "1308", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "Gilboa Regional Council", "label_he": "\u05d7\u05e4\u05e6\u05d9\u05d1\u05d4 \u05d5\u05d1\u05d9\u05ea \u05d0\u05dc\u05e4\u05d0", "mixname_he": "\u05d7\u05e4\u05e6\u05d9\u05d1\u05d4 \u05d5\u05d1\u05d9\u05ea \u05d0\u05dc\u05e4\u05d0 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_en": "Heftziba and Beit Alfa", "mixname_en": "Heftziba and Beit Alfa | <span>Beit She'an Valley</span>"}, {"value": "66C8069AC2850CE89822D497FC86C7C4", "id": "261", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d1\u05e8\u05db\u05d9\u05d4", "mixname_he": "\u05d1\u05e8\u05db\u05d9\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0631\u0627\u062e\u064a\u0627", "mixname_ar": "\u0628\u0631\u0627\u062e\u064a\u0627 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Berekhya", "mixname_en": "Berekhya | <span>West Lachish</span>", "label_ru": "\u0411\u0435\u0440\u0435\u043a\u0438\u044f", "mixname_ru": "\u0411\u0435\u0440\u0435\u043a\u0438\u044f | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "66EB0E8546A0145610D77DC6F26C9A91", "id": "1251", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e9\u05e2\u05d1", "mixname_he": "\u05e9\u05e2\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0634\u0639\u0628", "mixname_ar": "\u0634\u0639\u0628 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Sha'ab", "mixname_en": "Sha'ab | <span>Center Galilee</span>", "label_ru": "\u0428\u0430\u0430\u0431", "mixname_ru": "\u0428\u0430\u0430\u0431 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "670B365C0725207331C60A650EDEAC84", "id": "1135", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e8\u05d0\u05de\u05d4", "mixname_he": "\u05e8\u05d0\u05de\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0631\u0627\u0645\u0647", "mixname_ar": "\u0627\u0644\u0631\u0627\u0645\u0647 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Rama", "mixname_en": "Rama | <span>Upper Galilee</span>", "label_ru": "\u0420\u0430\u043c\u0430", "mixname_ru": "\u0420\u0430\u043c\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "6772CCD34CAF998BEE6568B7E5889DF9", "id": "38", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d0\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d0\u05d5\u05e8\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0623\u0648\u0631\u064a\u0645", "mixname_ar": "\u0623\u0648\u0631\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Urim", "mixname_en": "Urim | <span>West Negev</span>", "label_ru": "\u0423\u0440\u0438\u043c", "mixname_ru": "\u0423\u0440\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "6785C3AF8436C91DB844BB6D89D347C9", "id": "1193", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e9\u05d1\u05d9 \u05d3\u05e8\u05d5\u05dd", "mixname_he": "\u05e9\u05d1\u05d9 \u05d3\u05e8\u05d5\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0634\u064a\u0641\u064a \u062f\u0631\u0648\u0645", "mixname_ar": "\u0634\u064a\u0641\u064a \u062f\u0631\u0648\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Shavei Darom", "mixname_en": "Shavei Darom | <span>West Negev</span>", "label_ru": "\u0428\u0430\u0432\u0435\u0439 \u0414\u0430\u0440\u043e\u043c", "mixname_ru": "\u0428\u0430\u0432\u0435\u0439 \u0414\u0430\u0440\u043e\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "67DD6A3F118843F3B3D6165B03FEEF87", "id": "280", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05d2\u05d0\u05d5\u05dc\u05d9\u05dd", "mixname_he": "\u05d2\u05d0\u05d5\u05dc\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0626\u0648\u0644\u064a\u0645", "mixname_ar": "\u062c\u0626\u0648\u0644\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Geulim", "mixname_en": "Geulim | <span>Sharon</span>", "label_ru": "\u0413\u0435\u0443\u043b\u0438\u043c", "mixname_ru": "\u0413\u0435\u0443\u043b\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "68924CAF60CE0D7CE0B369ED061CF32D", "id": "402", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05db\u05de\u05d5\u05df", "mixname_he": "\u05db\u05de\u05d5\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0645\u0648\u0646", "mixname_ar": "\u0643\u0645\u0648\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kamon", "mixname_en": "Kamon | <span>Upper Galilee</span>", "label_ru": "\u041a\u0430\u043c\u043e\u043d", "mixname_ru": "\u041a\u0430\u043c\u043e\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "6979FFD0DAB7B847C8B095226F6733B0", "id": "730", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05de\u05d5\u05e8\u05e9\u05ea", "mixname_he": "\u05de\u05d5\u05e8\u05e9\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0645\u0648\u0631\u064a\u0634\u062a", "mixname_ar": "\u0645\u0648\u0631\u064a\u0634\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Moreshet", "mixname_en": "Moreshet | <span>Center Galilee</span>", "label_ru": "\u041c\u043e\u0440\u0435\u0448\u0435\u0442", "mixname_ru": "\u041c\u043e\u0440\u0435\u0448\u0435\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "697DE08DC66F989E8E837B71665D4CD0", "id": "473", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05e8\u05d9\u05e9", "mixname_he": "\u05d7\u05e8\u05d9\u05e9 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u062d\u0631\u064a\u0634", "mixname_ar": "\u062d\u0631\u064a\u0634 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Harish", "mixname_en": "Harish | <span>Wadi Ara</span>", "label_ru": "\u0425\u0430\u0440\u0438\u0448", "mixname_ru": "\u0425\u0430\u0440\u0438\u0448 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "6981FFB65AEC54AE6E8BBC7D1615743D", "id": "400", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d4\u05e8 \u05d1\u05e8\u05db\u05d4", "mixname_he": "\u05d4\u05e8 \u05d1\u05e8\u05db\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0647\u0627\u0631 \u0628\u0631\u0627\u062e\u0627", "mixname_ar": "\u0647\u0627\u0631 \u0628\u0631\u0627\u062e\u0627 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Har Bracha", "mixname_en": "Har Bracha | <span>Shomron</span>", "label_ru": "\u0425\u0430\u0440 \u0411\u0440\u0430\u0445\u0430", "mixname_ru": "\u0425\u0430\u0440 \u0411\u0440\u0430\u0445\u0430 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "6A0FE55AC3BB071187DDFAB0477D8CDF", "id": "1098", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e7\u05d3\u05d9\u05ea\u05d0", "mixname_he": "\u05e7\u05d3\u05d9\u05ea\u05d0 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u062f\u064a\u062a\u0627", "mixname_ar": "\u0643\u062f\u064a\u062a\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kadita", "mixname_en": "Kadita | <span>Upper Galilee</span>", "label_ru": "\u041a\u0430\u0434\u0438\u0442\u0430", "mixname_ru": "\u041a\u0430\u0434\u0438\u0442\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "6A19211216CEE90658C7A414AFB4FE92", "id": "160", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d0\u05e8 \u05d9\u05e2\u05e7\u05d1", "mixname_he": "\u05d1\u05d0\u05e8 \u05d9\u05e2\u05e7\u05d1 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0628\u0626\u064a\u0631 \u064a\u0639\u0642\u0648\u0628", "mixname_ar": "\u0628\u0626\u064a\u0631 \u064a\u0639\u0642\u0648\u0628 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Be'er Yacov", "mixname_en": "Be'er Yacov | <span>HaShfela</span>", "label_ru": "\u0411\u0435\u044d\u0440 \u042f\u0430\u043a\u043e\u0432", "mixname_ru": "\u0411\u0435\u044d\u0440 \u042f\u0430\u043a\u043e\u0432 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "6A1EEE5D347D7A53F149EDB792C56DFB", "id": "47", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05e8\u05d0\u05d5\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05e8\u05d0\u05d5\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0631\u0623\u0648\u0646", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0631\u0623\u0648\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Bar On Industrial Zone", "mixname_en": "Bar On Industrial Zone | <span>Shomron</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0411\u0430\u0440 \u041e\u043d", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0411\u0430\u0440 \u041e\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "6A2813E178F94FC9ECF3F40A852019D4", "id": "437", "areaid": 16, "color": "B", "migun_time": 15, "rashut": "", "label_he": "\u05d7\u05d5\u05d5\u05ea \u05e9\u05d9\u05e7\u05de\u05d9\u05dd", "mixname_he": "\u05d7\u05d5\u05d5\u05ea \u05e9\u05d9\u05e7\u05de\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0632\u0631\u0639\u0629 \u0634\u064a\u0643\u0645\u064a\u0645", "mixname_ar": "\u0645\u0632\u0631\u0639\u0629 \u0634\u064a\u0643\u0645\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Havat Shikmim", "mixname_en": "Havat Shikmim | <span>West Negev</span>", "label_ru": "\u0425\u0430\u0432\u0430\u0442 \u0428\u0438\u043a\u043c\u0438\u043c", "mixname_ru": "\u0425\u0430\u0432\u0430\u0442 \u0428\u0438\u043a\u043c\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "6A54159AAC996888CE0D38B5F9D2F014", "id": "1110", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e7\u05dc\u05d7\u05d9\u05dd", "mixname_he": "\u05e7\u05dc\u05d7\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0643\u0644\u062d\u064a\u0645", "mixname_ar": "\u0643\u0644\u062d\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Klachim", "mixname_en": "Klachim | <span>West Negev</span>", "label_ru": "\u041a\u043b\u0430\u0445\u0438\u043c", "mixname_ru": "\u041a\u043b\u0430\u0445\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "6A6177E10AD18BDC89F8B67D09B84F05", "id": "964", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c-\u0411\u0430\u0442\u0443\u0444", "label_he": "\u05e2\u05d5\u05d6\u05d9\u05d9\u05e8", "mixname_he": "\u05e2\u05d5\u05d6\u05d9\u05d9\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0627\u0644\u0639\u0632\u064a\u0631", "mixname_ar": "\u0627\u0644\u0639\u0632\u064a\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Uzeir", "mixname_en": "Uzeir | <span>Center Galilee</span>", "label_ru": "\u0423\u0437\u0438\u0435\u0440", "mixname_ru": "\u0423\u0437\u0438\u0435\u0440 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "6A6CAE64569587573B67FE91C51D83CA", "id": "353", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05d2\u05e8\u05d5\u05e4\u05d9\u05ea", "mixname_he": "\u05d2\u05e8\u05d5\u05e4\u05d9\u05ea | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u062c\u0631\u0648\u0641\u064a\u062a", "mixname_ar": "\u062c\u0631\u0648\u0641\u064a\u062a | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Grofit", "mixname_en": "Grofit | <span>Arava</span>", "label_ru": "\u0413\u0440\u043e\u0444\u0438\u0442", "mixname_ru": "\u0413\u0440\u043e\u0444\u0438\u0442 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "6ADCC081D670701CD3DDC0976D1CD034", "id": "822", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05de\u05e9\u05d5\u05d0\u05d5\u05ea \u05d9\u05e6\u05d7\u05e7", "mixname_he": "\u05de\u05e9\u05d5\u05d0\u05d5\u05ea \u05d9\u05e6\u05d7\u05e7 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u0633\u0648\u0624\u062a \u064a\u062a\u0633\u062d\u0627\u0642", "mixname_ar": "\u0645\u0633\u0648\u0624\u062a \u064a\u062a\u0633\u062d\u0627\u0642 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Masuot Itzhak", "mixname_en": "Masuot Itzhak | <span>Lachish</span>", "label_ru": "\u041c\u0430\u0441\u0443\u043e\u0442 \u0418\u0446\u0445\u0430\u043a", "mixname_ru": "\u041c\u0430\u0441\u0443\u043e\u0442 \u0418\u0446\u0445\u0430\u043a | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "6AFB81E129EB17771D9153B9598DA00A", "id": "879", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05d7\u05d5\u05e9\u05d4", "mixname_he": "\u05e0\u05d7\u05d5\u05e9\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u062d\u0648\u0634\u0627", "mixname_ar": "\u0646\u062d\u0648\u0634\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Nehusha", "mixname_en": "Nehusha | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0435\u0445\u0443\u0448\u0430", "mixname_ru": "\u041d\u0435\u0445\u0443\u0448\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "6B1088961ECBBB8DA210E7C11BDC3F33", "id": "528", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d9\u05e2\u05e8\u05d4", "mixname_he": "\u05d9\u05e2\u05e8\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u064a\u0627\u0639\u0631\u0647", "mixname_ar": "\u064a\u0627\u0639\u0631\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ya'ara", "mixname_en": "Ya'ara | <span>Confrontation Line</span>", "label_ru": "\u042f\u0430\u0440\u0430", "mixname_ru": "\u042f\u0430\u0440\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "6B367536669E29064E9B7ABE09DD3211", "id": "483", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d8\u05d9\u05e8\u05d4", "mixname_he": "\u05d8\u05d9\u05e8\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0637\u064a\u0631\u0629", "mixname_ar": "\u0627\u0644\u0637\u064a\u0631\u0629 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tira", "mixname_en": "Tira | <span>Sharon</span>", "label_ru": "\u0422\u0438\u0440\u0430", "mixname_ru": "\u0422\u0438\u0440\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "6B6D97032A6773A213801C6359D38B9C", "id": "915", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e0\u05de\u05e8\u05d5\u05d3", "mixname_he": "\u05e0\u05de\u05e8\u05d5\u05d3 | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0646\u0645\u0631\u0648\u062f", "mixname_ar": "\u0646\u0645\u0631\u0648\u062f | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Nimrod", "mixname_en": "Nimrod | <span>North Golan</span>", "label_ru": "\u041d\u0438\u043c\u0440\u043e\u0434", "mixname_ru": "\u041d\u0438\u043c\u0440\u043e\u0434 | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "6B8D707E26281CCC90B57D42C429D3B2", "id": "802", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05de\u05e6\u05e4\u05d4 \u05e0\u05d8\u05d5\u05e4\u05d4", "mixname_he": "\u05de\u05e6\u05e4\u05d4 \u05e0\u05d8\u05d5\u05e4\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0645\u062a\u0633\u0628\u064a \u0646\u062a\u0648\u0641\u0627", "mixname_ar": "\u0645\u062a\u0633\u0628\u064a \u0646\u062a\u0648\u0641\u0627 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Mitzpeh Netofa", "mixname_en": "Mitzpeh Netofa | <span>Center Galilee</span>", "label_ru": "\u041c\u0438\u0446\u043f\u0435 \u041d\u0435\u0442\u043e\u0444\u0430", "mixname_ru": "\u041c\u0438\u0446\u043f\u0435 \u041d\u0435\u0442\u043e\u0444\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "6BC5EBC9AA96321DD19BD87829617472", "id": "938", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05e1\u05d2\u05d5\u05dc\u05d4", "mixname_he": "\u05e1\u05d2\u05d5\u05dc\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0633\u062c\u0648\u0644\u0627", "mixname_ar": "\u0633\u062c\u0648\u0644\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Sgula", "mixname_en": "Sgula | <span>Lachish</span>", "label_ru": "\u0421\u0433\u0443\u043b\u0430", "mixname_ru": "\u0421\u0433\u0443\u043b\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "6BCE758914DDF81ABB208B94CED54C72", "id": "647", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05e7\u05e8\u05e2", "mixname_he": "\u05db\u05e4\u05e8 \u05e7\u05e8\u05e2 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0643\u0641\u0631 \u0642\u0631\u0639", "mixname_ar": "\u0643\u0641\u0631 \u0642\u0631\u0639 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Kfar Kara", "mixname_en": "Kfar Kara | <span>Wadi Ara</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041a\u0430\u0440\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041a\u0430\u0440\u0430 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "6BDDBA02B95B7B5DC5735796AFF1E28A", "id": "7", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d0\u05d1\u05d9\u05d1\u05d9\u05dd", "mixname_he": "\u05d0\u05d1\u05d9\u05d1\u05d9\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0623\u0641\u064a\u0641\u064a\u0645", "mixname_ar": "\u0623\u0641\u064a\u0641\u064a\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Avivim", "mixname_en": "Avivim | <span>Confrontation Line</span>", "label_ru": "\u0410\u0432\u0438\u0432\u0438\u043c", "mixname_ru": "\u0410\u0432\u0438\u0432\u0438\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "6C0D7DEB957864C8F1AC348A094880B7", "id": "768", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05de\u05e2\u05d2\u05dc\u05d9\u05dd, \u05d2\u05d1\u05e2\u05d5\u05dc\u05d9\u05dd, \u05de\u05dc\u05d9\u05dc\u05d5\u05ea", "mixname_he": "\u05de\u05e2\u05d2\u05dc\u05d9\u05dd, \u05d2\u05d1\u05e2\u05d5\u05dc\u05d9\u05dd, \u05de\u05dc\u05d9\u05dc\u05d5\u05ea | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0639\u062c\u0627\u0644\u064a\u0645\u060c, \u062c\u0641\u0639\u0648\u0644\u064a\u0645\u060c, \u0645\u0644\u064a\u0644\u0648\u062a", "mixname_ar": "\u0645\u0639\u062c\u0627\u0644\u064a\u0645\u060c, \u062c\u0641\u0639\u0648\u0644\u064a\u0645\u060c, \u0645\u0644\u064a\u0644\u0648\u062a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Maagalim, Givolim, Melilot", "mixname_en": "Maagalim, Givolim, Melilot | <span>West Negev</span>", "label_ru": "\u041c\u0430\u0430\u0433\u0430\u043b\u0438\u043c, \u0413\u0438\u0432\u043e\u043b\u0438\u043c, \u041c\u0435\u043b\u0438\u0442\u043e\u0442", "mixname_ru": "\u041c\u0430\u0430\u0433\u0430\u043b\u0438\u043c, \u0413\u0438\u0432\u043e\u043b\u0438\u043c, \u041c\u0435\u043b\u0438\u0442\u043e\u0442 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "6C0E790623F3069E234B09275A245086", "id": "316", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d2\u05d5\u05e0\u05df", "mixname_he": "\u05d2\u05d5\u05e0\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062c\u0648\u0646\u0646", "mixname_ar": "\u062c\u0648\u0646\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Gonen", "mixname_en": "Gonen | <span>Confrontation Line</span>", "label_ru": "\u0413\u043e\u043d\u0435\u043d", "mixname_ru": "\u0413\u043e\u043d\u0435\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "6C4A93BAE9D48D3B1F6BD85F95813A34", "id": "641", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05e2\u05d1\u05d5\u05d3\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05e2\u05d1\u05d5\u05d3\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0639\u0641\u0648\u062f\u0627\u0647", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0639\u0641\u0648\u062f\u0627\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Avoda", "mixname_en": "Kfar Avoda | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0410\u0432\u043e\u0434\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0410\u0432\u043e\u0434\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "6C6D4D5D1722A94A03B463D29F9CCDD2", "id": "252", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d1\u05e6\u05ea", "mixname_he": "\u05d1\u05e6\u05ea | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0628\u062a\u0633\u062a", "mixname_ar": "\u0628\u062a\u0633\u062a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Betzet", "mixname_en": "Betzet | <span>Confrontation Line</span>", "label_ru": "\u0411\u0435\u0446\u0435\u0442", "mixname_ru": "\u0411\u0435\u0446\u0435\u0442 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "6CCB1D397ADB4D0086A701ED2BF3D644", "id": "481", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d8\u05d9\u05d9\u05d1\u05d4", "mixname_he": "\u05d8\u05d9\u05d9\u05d1\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0637\u064a\u0628\u0647", "mixname_ar": "\u0627\u0644\u0637\u064a\u0628\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tayibe", "mixname_en": "Tayibe | <span>Sharon</span>", "label_ru": "\u0422\u0430\u0439\u0431\u0435", "mixname_ru": "\u0422\u0430\u0439\u0431\u0435 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "6CFBF8C837BD1BF9A6E1D2394DDF3E1F", "id": "1050", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e4\u05d3\u05d5\u05d9\u05d9\u05dd", "mixname_he": "\u05e4\u05d3\u05d5\u05d9\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u062f\u0648\u0626\u064a\u064a\u0645", "mixname_ar": "\u0628\u062f\u0648\u0626\u064a\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Pduim", "mixname_en": "Pduim | <span>West Negev</span>", "label_ru": "\u041f\u0434\u0443\u0438\u043c", "mixname_ru": "\u041f\u0434\u0443\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "6D70C1ADDB1A17ACAA202835F2954525", "id": "982", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e2\u05d9\u05df \u05d0\u05dc \u05d0\u05e1\u05d3", "mixname_he": "\u05e2\u05d9\u05df \u05d0\u05dc \u05d0\u05e1\u05d3 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0627\u0644\u0623\u0633\u062f", "mixname_ar": "\u0639\u064a\u0646 \u0627\u0644\u0623\u0633\u062f | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Ein al-Asad", "mixname_en": "Ein al-Asad | <span>Upper Galilee</span>", "label_ru": "\u042d\u0439\u043d \u0430\u043b\u044c \u0410\u0441\u0430\u0434", "mixname_ru": "\u042d\u0439\u043d \u0430\u043b\u044c \u0410\u0441\u0430\u0434 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "6DBC3FB5ACF55FA0251D42DC907CB57F", "id": "594", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05d2\u05de\u05d9\u05dc\u05d4 \u05de\u05dc\u05db\u05d9\u05e9\u05d5\u05e2", "mixname_he": "\u05db\u05e4\u05e8 \u05d2\u05de\u05d9\u05dc\u05d4 \u05de\u05dc\u05db\u05d9\u05e9\u05d5\u05e2 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u062c\u0645\u064a\u0644\u0629 \u0645\u0644\u062e\u064a\u0634\u0648\u0639", "mixname_ar": "\u0643\u0641\u0631 \u062c\u0645\u064a\u0644\u0629 \u0645\u0644\u062e\u064a\u0634\u0648\u0639 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Mlkishua Rehabilitation Village", "mixname_en": "Mlkishua Rehabilitation Village | <span>Beit She'an Valley</span>", "label_ru": "\u0420\u0435\u0430\u0431\u0438\u043b\u0438\u0442\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a \u041c", "mixname_ru": "\u0420\u0435\u0430\u0431\u0438\u043b\u0438\u0442\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a \u041c | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "6DFFF1E05FDCD1C949E597BB3B9D31C9", "id": "1207", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05e9\u05d3\u05d4 \u05d9\u05e6\u05d7\u05e7", "mixname_he": "\u05e9\u05d3\u05d4 \u05d9\u05e6\u05d7\u05e7 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u064a\u062a\u0633\u062d\u0627\u0642", "mixname_ar": "\u0633\u062f\u064a\u0647 \u064a\u062a\u0633\u062d\u0627\u0642 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Sdeh Itzhak", "mixname_en": "Sdeh Itzhak | <span>Menashe</span>", "label_ru": "\u0421\u0434\u044d \u0418\u0446\u0445\u0430\u043a", "mixname_ru": "\u0421\u0434\u044d \u0418\u0446\u0445\u0430\u043a | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "6E441E08D18ED8528E319218FB73437F", "id": "1370", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05de\u05e9\u05d9\u05ea", "mixname_he": "\u05de\u05de\u05e9\u05d9\u05ea | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0645\u0627\u0634\u064a\u062a", "mixname_ar": "\u0645\u0645\u0627\u0634\u064a\u062a | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Mamashit", "mixname_en": "Mamashit | <span>South Negev</span>", "label_ru": "\u041c\u0430\u043c\u0430\u0448\u0438\u0442", "mixname_ru": "\u041c\u0430\u043c\u0430\u0448\u0438\u0442 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "6E5B8CE02620E4ADD30F4925CB3438AE", "id": "997", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e2\u05d9\u05df \u05d7\u05d5\u05d3", "mixname_he": "\u05e2\u05d9\u05df \u05d7\u05d5\u05d3 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0639\u064a\u0646 \u062d\u0648\u062f", "mixname_ar": "\u0639\u064a\u0646 \u062d\u0648\u062f | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Ein Chod", "mixname_en": "Ein Chod | <span>HaCarmel</span>", "label_ru": "\u042d\u0439\u043d \u0425\u043e\u0434", "mixname_ru": "\u042d\u0439\u043d \u0425\u043e\u0434 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "6E6909FB66EF32991B78B16076213068", "id": "1220", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e9\u05d3\u05de\u05d5\u05ea \u05de\u05d7\u05d5\u05dc\u05d4", "mixname_he": "\u05e9\u05d3\u05de\u05d5\u05ea \u05de\u05d7\u05d5\u05dc\u05d4 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0634\u062f\u0645\u0648\u062a \u0645\u062d\u0648\u0644\u0627", "mixname_ar": "\u0634\u062f\u0645\u0648\u062a \u0645\u062d\u0648\u0644\u0627 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Shadmot Mechola", "mixname_en": "Shadmot Mechola | <span>Bika'a</span>", "label_ru": "\u0428\u0430\u0434\u043c\u043e\u0442 \u041c\u0435\u0445\u043e\u043b\u0430", "mixname_ru": "\u0428\u0430\u0434\u043c\u043e\u0442 \u041c\u0435\u0445\u043e\u043b\u0430 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "6E69A221402E620974CDD3C7F0EF27F0", "id": "957", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e2\u05d1\u05e8\u05d5\u05df", "mixname_he": "\u05e2\u05d1\u05e8\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0639\u0628\u0631\u0648\u0646", "mixname_ar": "\u0639\u0628\u0631\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Evron", "mixname_en": "Evron | <span>Confrontation Line</span>", "label_ru": "\u042d\u0432\u0440\u043e\u043d", "mixname_ru": "\u042d\u0432\u0440\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "70104A408DF2715DCFC735FB319C9475", "id": "14", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d0\u05d1\u05df \u05e1\u05e4\u05d9\u05e8", "mixname_he": "\u05d0\u05d1\u05df \u05e1\u05e4\u05d9\u05e8 | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0627\u064a\u0641\u064a\u0646 \u0633\u0641\u064a\u0631", "mixname_ar": "\u0627\u064a\u0641\u064a\u0646 \u0633\u0641\u064a\u0631 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Even Sapir", "mixname_en": "Even Sapir | <span>Jerusalem</span>", "label_ru": "\u042d\u0432\u0435\u043d \u0421\u0430\u043f\u0438\u0440", "mixname_ru": "\u042d\u0432\u0435\u043d \u0421\u0430\u043f\u0438\u0440 | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "7056E11D66D5912572336836BC9C2B99", "id": "242", "areaid": 26, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d1\u05e0\u05d9 \u05e0\u05e6\u05e8\u05d9\u05dd", "mixname_he": "\u05d1\u05e0\u05d9 \u05e0\u05e6\u05e8\u05d9\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0628\u0646\u064a \u0646\u062a\u0633\u0631\u064a\u0645", "mixname_ar": "\u0628\u0646\u064a \u0646\u062a\u0633\u0631\u064a\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Bnei Netzarim", "mixname_en": "Bnei Netzarim | <span>Gaza Envelope</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u041d\u0435\u0446\u0430\u0440\u0438\u043c", "mixname_ru": "\u0411\u043d\u0435\u0439 \u041d\u0435\u0446\u0430\u0440\u0438\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "70735929D3A5D49E60AFD1B3A0F9A7A3", "id": "188", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05d4\u05e2\u05de\u05e7", "mixname_he": "\u05d1\u05d9\u05ea \u05d4\u05e2\u05de\u05e7 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0647\u0639\u064a\u0645\u0643", "mixname_ar": "\u0628\u064a\u062a \u0647\u0639\u064a\u0645\u0643 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Beit HaEmek", "mixname_en": "Beit HaEmek | <span>Upper Galilee</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u042d\u043c\u0435\u043a", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u042d\u043c\u0435\u043a | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "7144647DEA68D88E81E84921D818E8C6", "id": "962", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e2\u05d3\u05e0\u05d9\u05dd", "mixname_he": "\u05e2\u05d3\u05e0\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u062f\u0627\u0646\u064a\u0645", "mixname_ar": "\u0639\u062f\u0627\u0646\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Adanim", "mixname_en": "Adanim | <span>Sharon</span>", "label_ru": "\u0410\u0434\u0430\u043d\u0438\u043c", "mixname_ru": "\u0410\u0434\u0430\u043d\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "7154D85D82A96040C8A82F3F9CEA84CE", "id": "393", "areaid": 7, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d4\u05de\u05db\u05dc\u05dc\u05d4 \u05d4\u05d0\u05e7\u05d3\u05de\u05d9\u05ea \u05db\u05e0\u05e8\u05ea", "mixname_he": "\u05d4\u05de\u05db\u05dc\u05dc\u05d4 \u05d4\u05d0\u05e7\u05d3\u05de\u05d9\u05ea \u05db\u05e0\u05e8\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0643\u0644\u064a\u0629 \u0627\u0644\u0623\u0643\u0627\u062f\u064a\u0645\u064a\u0629 \u0643\u0646\u064a\u0631\u062a", "mixname_ar": "\u0627\u0644\u0643\u0644\u064a\u0629 \u0627\u0644\u0623\u0643\u0627\u062f\u064a\u0645\u064a\u0629 \u0643\u0646\u064a\u0631\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Kinneret Academic College", "mixname_en": "Kinneret Academic College | <span>Lower Galilee</span>", "label_ru": "\u0410\u043a\u0430\u0434\u0435\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043a\u043e\u043b\u043b\u0435\u0434\u0436 \u041a\u0438\u043d\u0435", "mixname_ru": "\u0410\u043a\u0430\u0434\u0435\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043a\u043e\u043b\u043b\u0435\u0434\u0436 \u041a\u0438\u043d\u0435 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "71560473A55F27975EFD054ECF8895C3", "id": "838", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05de\u05ea\u05ea", "mixname_he": "\u05de\u05ea\u05ea | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u062a\u0627\u062a", "mixname_ar": "\u0645\u062a\u0627\u062a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Matat", "mixname_en": "Matat | <span>Confrontation Line</span>", "label_ru": "\u041c\u0430\u0442\u0430\u0442", "mixname_ru": "\u041c\u0430\u0442\u0430\u0442 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "7166DF97A597F58D459167E92D64422E", "id": "2", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0435\u0432\u0435 \u041c\u0438\u0434\u0431\u0430\u0440", "label_he": "\u05d0\u05d1\u05d5 \u05ea\u05dc\u05d5\u05dc", "mixname_he": "\u05d0\u05d1\u05d5 \u05ea\u05dc\u05d5\u05dc | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0623\u0628\u0648 \u062a\u0644\u0648\u0644", "mixname_ar": "\u0623\u0628\u0648 \u062a\u0644\u0648\u0644 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Abu Talul", "mixname_en": "Abu Talul | <span>South Negev</span>", "label_ru": "\u0410\u0431\u0443 \u0422\u0430\u043b\u0443\u043b\u044c", "mixname_ru": "\u0410\u0431\u0443 \u0422\u0430\u043b\u0443\u043b\u044c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "71D8D223C72CE718F05DE141E0EE7CF0", "id": "889", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05e0\u05d8\u05d5\u05e2\u05d4", "mixname_he": "\u05e0\u05d8\u05d5\u05e2\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0646\u062a\u0648\u0639\u0627\u0647", "mixname_ar": "\u0646\u062a\u0648\u0639\u0627\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Netua", "mixname_en": "Netua | <span>Confrontation Line</span>", "label_ru": "\u041d\u0435\u0442\u0443\u0430", "mixname_ru": "\u041d\u0435\u0442\u0443\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "71FC51647B5E30F0E204EC64F2387DB7", "id": "980", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e2\u05d9\u05df \u05d0\u05d9\u05d9\u05dc\u05d4", "mixname_he": "\u05e2\u05d9\u05df \u05d0\u05d9\u05d9\u05dc\u05d4 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0639\u064a\u0646 \u0623\u064a\u064a\u0644\u0627", "mixname_ar": "\u0639\u064a\u0646 \u0623\u064a\u064a\u0644\u0627 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Ein Ayala", "mixname_en": "Ein Ayala | <span>HaCarmel</span>", "label_ru": "\u042d\u0439\u043d \u0410\u044f\u043b\u0430", "mixname_ru": "\u042d\u0439\u043d \u0410\u044f\u043b\u0430 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "7219C97B2EA7F2B3792AC3AB438A21DC", "id": "760", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05de\u05e1\u05d3", "mixname_he": "\u05de\u05e1\u05d3 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0645\u0633\u0627\u062f", "mixname_ar": "\u0645\u0633\u0627\u062f | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Massad", "mixname_en": "Massad | <span>Center Galilee</span>", "label_ru": "\u041c\u0430\u0441\u0441\u0430\u0434", "mixname_ru": "\u041c\u0430\u0441\u0441\u0430\u0434 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "7244BDC15DF5D82DBAF538E0B1F892F0", "id": "1017", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e2\u05db\u05d5 - \u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4", "mixname_he": "\u05e2\u05db\u05d5 - \u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0639\u0643\u0627- \u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629", "mixname_ar": "\u0639\u0643\u0627- \u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Acco - Industrial Zone", "mixname_en": "Acco - Industrial Zone | <span>Upper Galilee</span>", "label_ru": "\u0410\u043a\u043a\u043e - \u043f\u0440\u043e\u043c\u0437\u043e\u043d\u0430", "mixname_ru": "\u0410\u043a\u043a\u043e - \u043f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "728C9CE289B41B39D2017AC4FCE19C1D", "id": "65", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6.\u05d7.\u05e8", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6.\u05d7.\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u0633\u0627\u062d\u0627\u0631", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u0633\u0627\u062d\u0627\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Tzahar Industrial Zone", "mixname_en": "Tzahar Industrial Zone | <span>Upper Galilee</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0426\u0430\u0445\u0430\u0440", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0426\u0430\u0445\u0430\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "72CC4EC51445CB3B0348C607EE1D5D3F", "id": "408", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c-\u0411\u0430\u0442\u0443\u0444", "label_he": "\u05d5\u05d0\u05d3\u05d9 \u05d0\u05dc \u05d7\u05de\u05d0\u05dd", "mixname_he": "\u05d5\u05d0\u05d3\u05d9 \u05d0\u05dc \u05d7\u05de\u05d0\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0648\u0627\u062f\u064a \u0627\u0644\u062d\u0645\u0627\u0645", "mixname_ar": "\u0648\u0627\u062f\u064a \u0627\u0644\u062d\u0645\u0627\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Wadi Hamam", "mixname_en": "Wadi Hamam | <span>Lower Galilee</span>", "label_ru": "\u0412\u0430\u0434\u0438 \u042d\u043b\u044c \u0425\u0430\u043c\u0430\u043c", "mixname_ru": "\u0412\u0430\u0434\u0438 \u042d\u043b\u044c \u0425\u0430\u043c\u0430\u043c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "72D09302ED76D3328D48EE6691933A9A", "id": "945", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e1\u05dc\u05e2\u05d9\u05ea", "mixname_he": "\u05e1\u05dc\u05e2\u05d9\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0633\u0644\u0639\u064a\u062a", "mixname_ar": "\u0633\u0644\u0639\u064a\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Salit", "mixname_en": "Salit | <span>Sharon</span>", "label_ru": "\u0421\u0430\u043b\u0438\u0442", "mixname_ru": "\u0421\u0430\u043b\u0438\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "731CB93B27D2890A86C7A95E9F9EA94C", "id": "1368", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d0\u05e1\u05e3", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d0\u05e1\u05e3 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0623\u0633\u0627\u0641", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0623\u0633\u0627\u0641 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Givat Asaf", "mixname_en": "Givat Asaf | <span>Shomron</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0410\u0441\u0430\u0444", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0410\u0441\u0430\u0444 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "732913F89B783494B935F903DE488ADB", "id": "247", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0440\u0435\u043d\u0435\u0440", "label_he": "\u05d1\u05e0\u05d9\u05d4", "mixname_he": "\u05d1\u05e0\u05d9\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0646\u064a\u0647", "mixname_ar": "\u0628\u0646\u064a\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Bnaya", "mixname_en": "Bnaya | <span>Lachish</span>", "label_ru": "\u0411\u043d\u0430\u0439\u044f", "mixname_ru": "\u0411\u043d\u0430\u0439\u044f | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "7355F1E68CA21B57BBC0C97CE9BD28EB", "id": "715", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05de\u05d3\u05e8\u05e9\u05ea \u05d1\u05df \u05d2\u05d5\u05e8\u05d9\u05d5\u05df", "mixname_he": "\u05de\u05d3\u05e8\u05e9\u05ea \u05d1\u05df \u05d2\u05d5\u05e8\u05d9\u05d5\u05df | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u062f\u0631\u0634\u062a \u0628\u0646 \u063a\u0648\u0631\u064a\u0648\u0646", "mixname_ar": "\u0645\u062f\u0631\u0634\u062a \u0628\u0646 \u063a\u0648\u0631\u064a\u0648\u0646 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Ben Gurion College", "mixname_en": "Ben Gurion College | <span>South Negev</span>", "label_ru": "\u041a\u043e\u043b\u043b\u0435\u0434\u0436 \u0411\u0435\u043d \u0413\u0443\u0440\u0438\u043e\u043d", "mixname_ru": "\u041a\u043e\u043b\u043b\u0435\u0434\u0436 \u0411\u0435\u043d \u0413\u0443\u0440\u0438\u043e\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "73663C011B1EB2EFD12130D47679C126", "id": "129", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05d0\u05de\u05e0\u05d5\u05df", "mixname_he": "\u05d0\u05de\u05e0\u05d5\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0623\u0645\u0646\u0648\u0646", "mixname_ar": "\u0623\u0645\u0646\u0648\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Amnon", "mixname_en": "Amnon | <span>Upper Galilee</span>", "label_ru": "\u0410\u043c\u043d\u043e\u043d", "mixname_ru": "\u0410\u043c\u043d\u043e\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "73673902C0964ECC194DAB763E2DC03B", "id": "963", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05e2\u05d5\u05d6\u05d4", "mixname_he": "\u05e2\u05d5\u05d6\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0639\u0648\u0632\u0629", "mixname_ar": "\u0639\u0648\u0632\u0629 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Uzza", "mixname_en": "Uzza | <span>Lachish</span>", "label_ru": "\u0423\u0437\u0430", "mixname_ru": "\u0423\u0437\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "736785A72E798CAED9EBF9E9F9796609", "id": "377", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05d3\u05df", "mixname_he": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05d3\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062f\u0627\u0646", "mixname_ar": "\u062f\u0627\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Dan", "mixname_en": "Dan | <span>Confrontation Line</span>", "label_ru": "\u0414\u0430\u043d", "mixname_ru": "\u0414\u0430\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "73761228D9FB52981C870B2C24BE06D1", "id": "173", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0435\u0432\u0435 \u041c\u0438\u0434\u0431\u0430\u0440", "label_he": "\u05d1\u05d9\u05e8 \u05d4\u05d3\u05d0\u05d2'", "mixname_he": "\u05d1\u05d9\u05e8 \u05d4\u05d3\u05d0\u05d2' | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u0626\u0631 \u0647\u062f\u0627\u062c", "mixname_ar": "\u0628\u0626\u0631 \u0647\u062f\u0627\u062c | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Bir Hadaj", "mixname_en": "Bir Hadaj | <span>South Negev</span>", "label_ru": "\u0411\u0438\u0440 \u0425\u0430\u0434\u0430\u0434\u0436", "mixname_ru": "\u0411\u0438\u0440 \u0425\u0430\u0434\u0430\u0434\u0436 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "737C770A2C22D81DBC2CC65E9100384D", "id": "5", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d0\u05d1\u05d8\u05dc\u05d9\u05d5\u05df", "mixname_he": "\u05d0\u05d1\u05d8\u05dc\u05d9\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0627\u0641\u062a\u0644\u064a\u0648\u0646", "mixname_ar": "\u0627\u0641\u062a\u0644\u064a\u0648\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Avtalion", "mixname_en": "Avtalion | <span>Center Galilee</span>", "label_ru": "\u0410\u0432\u0442\u0430\u043b\u0438\u043e\u043d", "mixname_ru": "\u0410\u0432\u0442\u0430\u043b\u0438\u043e\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "73B127E053D392C2DD9CC98C04744A44", "id": "642", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05db\u05e4\u05e8 \u05e2\u05d6\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05e2\u05d6\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u063a\u0632\u0647", "mixname_ar": "\u063a\u0632\u0647 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Kfar Azza", "mixname_en": "Kfar Azza | <span>Gaza Envelope</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0410\u0437\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0410\u0437\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "73C7EA343C23BF8B25C75EC7B8D9787F", "id": "405", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d4\u05e8\u05d0\u05dc", "mixname_he": "\u05d4\u05e8\u05d0\u05dc | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0647\u0631\u0626\u064a\u0644", "mixname_ar": "\u0647\u0631\u0626\u064a\u0644 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Harel", "mixname_en": "Harel | <span>Shfelat Yehuda</span>", "label_ru": "\u0425\u0430\u0440\u044d\u043b\u044c", "mixname_ru": "\u0425\u0430\u0440\u044d\u043b\u044c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "7405292EF9B25C721DEC14C6C5E20502", "id": "968", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e2\u05d5\u05e4\u05e8\u05d9\u05dd", "mixname_he": "\u05e2\u05d5\u05e4\u05e8\u05d9\u05dd | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0648\u0641\u0631\u064a\u0645", "mixname_ar": "\u0639\u0648\u0641\u0631\u064a\u0645 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Ofarim", "mixname_en": "Ofarim | <span>Shomron</span>", "label_ru": "\u041e\u0444\u0430\u0440\u0438\u043c", "mixname_ru": "\u041e\u0444\u0430\u0440\u0438\u043c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "742F31BE5D39B9B10D28C72D5C3DA96F", "id": "269", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05ea \u05d7\u05e4\u05e8", "mixname_he": "\u05d1\u05ea \u05d7\u05e4\u05e8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0627\u062a \u062d\u064a\u0641\u0631", "mixname_ar": "\u0628\u0627\u062a \u062d\u064a\u0641\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Bat Hefer", "mixname_en": "Bat Hefer | <span>Sharon</span>", "label_ru": "\u0411\u0430\u0442 \u0425\u0435\u0444\u0435\u0440", "mixname_ru": "\u0411\u0430\u0442 \u0425\u0435\u0444\u0435\u0440 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "7470ABDE835CD1F4A2A570B972E2E79D", "id": "1374", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05dc \u05e1\u05d9\u05d9\u05d3", "mixname_he": "\u05d0\u05dc \u05e1\u05d9\u05d9\u05d3 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0627\u0644\u0633\u064a\u062f", "mixname_ar": "\u0627\u0644\u0633\u064a\u062f | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "El-Sid", "mixname_en": "El-Sid | <span>Center Negev</span>", "label_ru": "\u0410\u043b\u044c-\u0421\u0430\u0439\u0438\u0434", "mixname_ru": "\u0410\u043b\u044c-\u0421\u0430\u0439\u0438\u0434 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "7479183B9D7532D23B39BED1786614B9", "id": "111", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05dc\u05d5\u05e0\u05d9\u05dd", "mixname_he": "\u05d0\u05dc\u05d5\u05e0\u05d9\u05dd | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0623\u0644\u0648\u0646\u064a\u0645", "mixname_ar": "\u0623\u0644\u0648\u0646\u064a\u0645 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Alonim", "mixname_en": "Alonim | <span>HaAmakim</span>", "label_ru": "\u0410\u043b\u043e\u043d\u0438\u043c", "mixname_ru": "\u0410\u043b\u043e\u043d\u0438\u043c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "74839420E0D689DABCA8EA87DC212E75", "id": "866", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05de\u05d1\u05d8\u05d7", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05de\u05d1\u05d8\u05d7 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0645\u0628\u0637\u0627\u062d", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0645\u0628\u0637\u0627\u062d | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Neveh Mivtach", "mixname_en": "Neveh Mivtach | <span>Lachish</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u041c\u0438\u0432\u0442\u0430\u0445", "mixname_ru": "\u041d\u0435\u0432\u0435 \u041c\u0438\u0432\u0442\u0430\u0445 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "7490342EEE862126394B54B0CCCF4B5A", "id": "1094", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e6\u05e8\u05e2\u05d4", "mixname_he": "\u05e6\u05e8\u05e2\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0635\u0631\u0639\u0647", "mixname_ar": "\u0635\u0631\u0639\u0647 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tzora", "mixname_en": "Tzora | <span>Shfelat Yehuda</span>", "label_ru": "\u0426\u0440\u043e\u0430", "mixname_ru": "\u0426\u0440\u043e\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "74C9EF31FC2D6576E2BE7E4EF2C21D30", "id": "1113", "areaid": 2, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e7\u05dc\u05e2", "mixname_he": "\u05e7\u05dc\u05e2 | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0643\u064a\u0644\u0639", "mixname_ar": "\u0643\u064a\u0644\u0639 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Kela", "mixname_en": "Kela | <span>North Golan</span>", "label_ru": "\u041a\u0435\u0434\u0430\u0440", "mixname_ru": "\u041a\u0435\u0434\u0430\u0440 | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "74D335E549744E274F46B44663161954", "id": "1032", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e2\u05e4\u05d5\u05dc\u05d4", "mixname_he": "\u05e2\u05e4\u05d5\u05dc\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0639\u0641\u0648\u0644\u0629-", "mixname_ar": "\u0627\u0644\u0639\u0641\u0648\u0644\u0629- | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Afula", "mixname_en": "Afula | <span>HaAmakim</span>", "label_ru": "\u0410\u0444\u0443\u043b\u0430", "mixname_ru": "\u0410\u0444\u0443\u043b\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "74D851ABA9D9218CD6E3200C3900D4DF", "id": "149", "areaid": 25, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05d0\u05e9\u05db\u05d5\u05dc\u05d5\u05ea", "mixname_he": "\u05d0\u05e9\u05db\u05d5\u05dc\u05d5\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0623\u0634\u0643\u0648\u0644\u0648\u062a", "mixname_ar": "\u0623\u0634\u0643\u0648\u0644\u0648\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Eshkolot", "mixname_en": "Eshkolot | <span>Center Negev</span>", "label_ru": "\u042d\u0448\u043a\u043e\u043b\u043e\u0442", "mixname_ru": "\u042d\u0448\u043a\u043e\u043b\u043e\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "74DEFD41A45D580B615D8BF4AECCDAA8", "id": "413", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05d6\u05d5\u05d4\u05e8", "mixname_he": "\u05d6\u05d5\u05d4\u05e8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0632\u0648\u0647\u0631", "mixname_ar": "\u0632\u0648\u0647\u0631 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Zohar", "mixname_en": "Zohar | <span>Lachish</span>", "label_ru": "\u0417\u043e\u0430\u0440", "mixname_ru": "\u0417\u043e\u0430\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "7539DDC7BC4EF2FB7132EF2D5E12B462", "id": "1261", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e9\u05e4\u05e8", "mixname_he": "\u05e9\u05e4\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0634\u064a\u0641\u0631", "mixname_ar": "\u0634\u064a\u0641\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Shefer", "mixname_en": "Shefer | <span>Upper Galilee</span>", "label_ru": "\u0428\u0435\u0444\u0435\u0440", "mixname_ru": "\u0428\u0435\u0444\u0435\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "7542B1F9C5D0799E6F35A5A594C81542", "id": "607", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05d5\u05e8\u05d3\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d5\u05e8\u05d3\u05d9\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0641\u0631\u0627\u062f\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0641\u0631\u0627\u062f\u064a\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Kfar Vradim", "mixname_en": "Kfar Vradim | <span>Confrontation Line</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0412\u0440\u0430\u0434\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0412\u0440\u0430\u0434\u0438\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "757437388B5663D9DA4B9840867BB54C", "id": "503", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d9\u05d3 \u05d4\u05e9\u05de\u05d5\u05e0\u05d4", "mixname_he": "\u05d9\u05d3 \u05d4\u05e9\u05de\u05d5\u05e0\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u064a\u062f \u0647\u0634\u0645\u0648\u0646\u0647", "mixname_ar": "\u064a\u062f \u0647\u0634\u0645\u0648\u0646\u0647 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Yad HaShmona", "mixname_en": "Yad HaShmona | <span>Shfelat Yehuda</span>", "label_ru": "\u042f\u0434 \u0445\u0430-\u0428\u043c\u043e\u043d\u0430", "mixname_ru": "\u042f\u0434 \u0445\u0430-\u0428\u043c\u043e\u043d\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "757A79CB7F050492DE9D13AEC3B0605F", "id": "225", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d1\u05d9\u05ea \u05e7\u05e9\u05ea", "mixname_he": "\u05d1\u05d9\u05ea \u05e7\u05e9\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u064a\u062a \u0643\u064a\u0634\u062a", "mixname_ar": "\u0628\u064a\u062a \u0643\u064a\u0634\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Beit Keshet", "mixname_en": "Beit Keshet | <span>HaAmakim</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u041a\u0435\u0448\u0435\u0442", "mixname_ru": "\u0411\u0435\u0439\u0442 \u041a\u0435\u0448\u0435\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "75AE8E5DDDC93AFECA4987050F86B3B7", "id": "1167", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e8\u05de\u05d5\u05ea", "mixname_he": "\u05e8\u05de\u05d5\u05ea | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0631\u0627\u0645\u0648\u062a", "mixname_ar": "\u0631\u0627\u0645\u0648\u062a | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Ramot", "mixname_en": "Ramot | <span>South Golan</span>", "label_ru": "\u0420\u0430\u043c\u043e\u0442", "mixname_ru": "\u0420\u0430\u043c\u043e\u0442 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "75BA5CD83C2B3365C94C0DC52D2EEE55", "id": "1064", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e4\u05e2\u05de\u05d9 \u05ea\u05e9''\u05d6", "mixname_he": "\u05e4\u05e2\u05de\u05d9 \u05ea\u05e9''\u05d6 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u0639\u0627\u0645\u064a \u062a\u0634\u0627\u0632", "mixname_ar": "\u0628\u0639\u0627\u0645\u064a \u062a\u0634\u0627\u0632 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Pa'amei Tashaz", "mixname_en": "Pa'amei Tashaz | <span>West Negev</span>", "label_ru": "\u041f\u0430\u0430\u043c\u0435\u0439 \u0422\u0430\u0448\u0430\u0437", "mixname_ru": "\u041f\u0430\u0430\u043c\u0435\u0439 \u0422\u0430\u0448\u0430\u0437 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "762D69AEBC632CE4F498DED457D27F37", "id": "539", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d9\u05e7\u05e0\u05e2\u05dd \u05e2\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05d9\u05e7\u05e0\u05e2\u05dd \u05e2\u05d9\u05dc\u05d9\u05ea | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u064a\u0648\u0643\u0646\u0639\u0627\u0645 \u0639\u064a\u0644\u064a\u062a", "mixname_ar": "\u064a\u0648\u0643\u0646\u0639\u0627\u0645 \u0639\u064a\u0644\u064a\u062a | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Yokneam Illit", "mixname_en": "Yokneam Illit | <span>Wadi Ara</span>", "label_ru": "\u0419\u043e\u043a\u043d\u0435\u0430\u043c \u0418\u043b\u0438\u0442", "mixname_ru": "\u0419\u043e\u043a\u043d\u0435\u0430\u043c \u0418\u043b\u0438\u0442 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "7651812632B5AABE90546F87E570480B", "id": "1", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d1\u05d5-\u05d2\u05d5\u05e9", "mixname_he": "\u05d0\u05d1\u05d5-\u05d2\u05d5\u05e9 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0628\u0648 \u063a\u0648\u0634", "mixname_ar": "\u0627\u0628\u0648 \u063a\u0648\u0634 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Abu Ghosh", "mixname_en": "Abu Ghosh | <span>Shfelat Yehuda</span>", "label_ru": "\u0410\u0431\u0443-\u0413\u043e\u0448", "mixname_ru": "\u0410\u0431\u0443-\u0413\u043e\u0448 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "7677E72FD44969AE3230A80191960607", "id": "894", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e0\u05d9\u05dc''\u05d9", "mixname_he": "\u05e0\u05d9\u05dc''\u05d9 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u064a\u0644\u064a", "mixname_ar": "\u0646\u064a\u0644\u064a | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Nili", "mixname_en": "Nili | <span>Shomron</span>", "label_ru": "\u041d\u0438\u043b\u0438", "mixname_ru": "\u041d\u0438\u043b\u0438 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "76BB36AE255A1D9D261BFF814E753DEA", "id": "662", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05db\u05e8\u05de\u05d9 \u05d9\u05d5\u05e1\u05e3", "mixname_he": "\u05db\u05e8\u05de\u05d9 \u05d9\u05d5\u05e1\u05e3 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0643\u0631\u0645\u064a \u064a\u0648\u0633\u0641", "mixname_ar": "\u0643\u0631\u0645\u064a \u064a\u0648\u0633\u0641 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Karmei Yossef", "mixname_en": "Karmei Yossef | <span>HaShfela</span>", "label_ru": "\u041a\u0430\u0440\u043c\u0435\u0439 \u0419\u043e\u0441\u0435\u0444", "mixname_ru": "\u041a\u0430\u0440\u043c\u0435\u0439 \u0419\u043e\u0441\u0435\u0444 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "76C24C30A14CE8C3F7B1F6FF0B2DF27A", "id": "328", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d2\u05d9\u05ea\u05d9\u05ea", "mixname_he": "\u05d2\u05d9\u05ea\u05d9\u05ea | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u062c\u064a\u062a\u064a\u062a", "mixname_ar": "\u062c\u064a\u062a\u064a\u062a | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Gitit", "mixname_en": "Gitit | <span>Bika'a</span>", "label_ru": "\u0413\u0438\u0442\u0438\u0442", "mixname_ru": "\u0413\u0438\u0442\u0438\u0442 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "76CB6BE7F83F95D45A6DF81DE536B583", "id": "44", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d0\u05e4\u05e7 \u05d5\u05dc\u05d1 \u05d4\u05d0\u05e8\u05e5", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d0\u05e4\u05e7 \u05d5\u05dc\u05d1 \u05d4\u05d0\u05e8\u05e5 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0623\u0641\u064a\u0643 \u0648\u0644\u064a\u0641", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0623\u0641\u064a\u0643 \u0648\u0644\u064a\u0641 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Afek and Lev Ha\"aretz Industrial Zone", "mixname_en": "Afek and Lev Ha\"aretz Industrial Zone | <span>Yarkon</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0444\u0435\u043a \u0438 \u041b\u0435\u0432 \u0445\u0430-\u0410\u0440\u0435\u0446", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0444\u0435\u043a \u0438 \u041b\u0435\u0432 \u0445\u0430-\u0410\u0440\u0435\u0446 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "770E19AF733F194D581D0C1BEC939B70", "id": "1264", "areaid": 17, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e9\u05e7\u05e3", "mixname_he": "\u05e9\u05e7\u05e3 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0634\u064a\u0643\u0641", "mixname_ar": "\u0634\u064a\u0643\u0641 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Shekef", "mixname_en": "Shekef | <span>Yehuda</span>", "label_ru": "\u0428\u0435\u043a\u0435\u0444", "mixname_ru": "\u0428\u0435\u043a\u0435\u0444 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "779BCBC12A12F038E4237F0DAE3B1660", "id": "1229", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e9\u05d5\u05e8\u05e9", "mixname_he": "\u05e9\u05d5\u05e8\u05e9 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0634\u0648\u0631\u0634", "mixname_ar": "\u0634\u0648\u0631\u0634 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Shoresh", "mixname_en": "Shoresh | <span>Shfelat Yehuda</span>", "label_ru": "\u0428\u043e\u0440\u0435\u0448", "mixname_ru": "\u0428\u043e\u0440\u0435\u0448 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "77A70B9D64F4D871D5EA094B06DF74F0", "id": "89", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d0\u05d9\u05d9\u05dc\u05ea \u05d4\u05e9\u05d7\u05e8", "mixname_he": "\u05d0\u05d9\u05d9\u05dc\u05ea \u05d4\u05e9\u05d7\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0623\u064a\u064a\u0644\u062a \u0647\u0634\u0627\u062d\u0631", "mixname_ar": "\u0623\u064a\u064a\u0644\u062a \u0647\u0634\u0627\u062d\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Ayelet HaShachar", "mixname_en": "Ayelet HaShachar | <span>Upper Galilee</span>", "label_ru": "\u0410\u0439\u0435\u043b\u0435\u0442 \u0445\u0430-\u0428\u0430\u0445\u0430\u0440", "mixname_ru": "\u0410\u0439\u0435\u043b\u0435\u0442 \u0445\u0430-\u0428\u0430\u0445\u0430\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "77B096A57D3ACA269E55434523F8CDC5", "id": "553", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05d0\u05d5\u05db\u05d1 \u05d0\u05d1\u05d5 \u05d0\u05dc\u05d4\u05d9\u05d2'\u05d0", "mixname_he": "\u05db\u05d0\u05d5\u05db\u05d1 \u05d0\u05d1\u05d5 \u05d0\u05dc\u05d4\u05d9\u05d2'\u05d0 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0643\u0648\u0643\u0628 \u0627\u0628\u0648 \u0627\u0644\u0647\u064a\u062c\u0627", "mixname_ar": "\u0643\u0648\u0643\u0628 \u0627\u0628\u0648 \u0627\u0644\u0647\u064a\u062c\u0627 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Kaukab Abu al-Hija", "mixname_en": "Kaukab Abu al-Hija | <span>Center Galilee</span>", "label_ru": "\u041a\u0430\u0443\u043a\u0430\u0431 \u0410\u0431\u0443 \u0410\u043b\u044c\u0445\u0438\u0436\u0434\u0430", "mixname_ru": "\u041a\u0430\u0443\u043a\u0430\u0431 \u0410\u0431\u0443 \u0410\u043b\u044c\u0445\u0438\u0436\u0434\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "77B69A814F255E581A00E8DF2828C9CC", "id": "486", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05d8\u05d9\u05e8\u05ea \u05e6\u05d1\u05d9", "mixname_he": "\u05d8\u05d9\u05e8\u05ea \u05e6\u05d1\u05d9 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0637\u064a\u0631\u0627\u062a \u062a\u0633\u0641\u064a", "mixname_ar": "\u0637\u064a\u0631\u0627\u062a \u062a\u0633\u0641\u064a | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Tirat Zvi", "mixname_en": "Tirat Zvi | <span>Beit She'an Valley</span>", "label_ru": "\u0422\u0438\u0440\u0430\u0442 \u0426\u0432\u0438", "mixname_ru": "\u0422\u0438\u0440\u0430\u0442 \u0426\u0432\u0438 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "77F03374DAF8580026B8A54F350F5C05", "id": "728", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05de\u05d5\u05e7\u05d9\u05d1\u05dc\u05d4", "mixname_he": "\u05de\u05d5\u05e7\u05d9\u05d1\u05dc\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0645\u0642\u064a\u0628\u0644\u0629", "mixname_ar": "\u0645\u0642\u064a\u0628\u0644\u0629 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Muqeibla", "mixname_en": "Muqeibla | <span>HaAmakim</span>", "label_ru": "\u041c\u0443\u043a\u0435\u0439\u0431\u043b\u0430", "mixname_ru": "\u041c\u0443\u043a\u0435\u0439\u0431\u043b\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "78241368DF7F3DD1BDCD2DAA4EA8756F", "id": "886", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e0\u05d7\u05e9\u05d5\u05dc\u05d9\u05dd", "mixname_he": "\u05e0\u05d7\u05e9\u05d5\u05dc\u05d9\u05dd | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0646\u062d\u0634\u0648\u0644\u064a\u0645", "mixname_ar": "\u0646\u062d\u0634\u0648\u0644\u064a\u0645 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Nachsholim", "mixname_en": "Nachsholim | <span>HaCarmel</span>", "label_ru": "\u041d\u0430\u0445\u0448\u043e\u043b\u0438\u043c", "mixname_ru": "\u041d\u0430\u0445\u0448\u043e\u043b\u0438\u043c | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "7841E2B5F45FFB8BAE93B630FFD164CE", "id": "934", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e0\u05ea\u05d9\u05d1\u05d5\u05ea", "mixname_he": "\u05e0\u05ea\u05d9\u05d1\u05d5\u05ea | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0646\u062a\u064a\u0641\u0648", "mixname_ar": "\u0646\u062a\u064a\u0641\u0648 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Netivot", "mixname_en": "Netivot | <span>West Negev</span>", "label_ru": "\u041d\u0435\u0442\u0438\u0432\u043e\u0442", "mixname_ru": "\u041d\u0435\u0442\u0438\u0432\u043e\u0442 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "7890DCA17D46DA6B28D2EC6148B6026D", "id": "650", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05db\u05e4\u05e8 \u05e9\u05de\u05d0\u05d9", "mixname_he": "\u05db\u05e4\u05e8 \u05e9\u05de\u05d0\u05d9 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0634\u0645\u0627\u064a", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0634\u0645\u0627\u064a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kfar Shamai", "mixname_en": "Kfar Shamai | <span>Upper Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0428\u0430\u043c\u0430\u0439", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0428\u0430\u043c\u0430\u0439 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "789D04C9B535AD3288105E3D60606860", "id": "977", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05e2\u05d9\u05d9\u05e0\u05d5\u05ea", "mixname_he": "\u05e2\u05d9\u05d9\u05e0\u05d5\u05ea | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0639\u064a\u0646\u0648\u062a", "mixname_ar": "\u0639\u064a\u0646\u0648\u062a | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ayanot", "mixname_en": "Ayanot | <span>HaShfela</span>", "label_ru": "\u0410\u044f\u043d\u043e\u0442", "mixname_ru": "\u0410\u044f\u043d\u043e\u0442 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "78BCD8597DDD20BDB68C6C8C91026D02", "id": "136", "areaid": 6, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d0\u05e4\u05e7", "mixname_he": "\u05d0\u05e4\u05e7 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0623\u0641\u064a\u0643", "mixname_ar": "\u0623\u0641\u064a\u0643 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Afek", "mixname_en": "Afek | <span>Upper Galilee</span>", "label_ru": "\u0410\u0444\u0435\u043a", "mixname_ru": "\u0410\u0444\u0435\u043a | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "78D3FF0907E164207238125F5CEE0B95", "id": "153", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d0\u05e9\u05e8\u05ea", "mixname_he": "\u05d0\u05e9\u05e8\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0623\u0648\u0634\u0631\u0627\u062a", "mixname_ar": "\u0623\u0648\u0634\u0631\u0627\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Oshrat", "mixname_en": "Oshrat | <span>Upper Galilee</span>", "label_ru": "\u041e\u0448\u0440\u0430\u0442", "mixname_ru": "\u041e\u0448\u0440\u0430\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "7910E9D0E39614C0A2DC2DF310099D9C", "id": "1049", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e4\u05d3\u05d5\u05d0\u05dc", "mixname_he": "\u05e4\u05d3\u05d5\u05d0\u05dc | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u062f\u0648\u0626\u064a\u0644", "mixname_ar": "\u0628\u062f\u0648\u0626\u064a\u0644 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Paduel", "mixname_en": "Paduel | <span>Shomron</span>", "label_ru": "\u041f\u0430\u0434\u0443\u0435\u043b\u044c", "mixname_ru": "\u041f\u0430\u0434\u0443\u0435\u043b\u044c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "7936061EADB03BFA9FE6BBC38208DE2A", "id": "930", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05d2\u05d3\u05d5\u05d3", "mixname_he": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05d2\u05d3\u05d5\u05d3 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0646\u062a\u064a\u0641 \u0647\u062c\u062f\u0648\u062f", "mixname_ar": "\u0646\u062a\u064a\u0641 \u0647\u062c\u062f\u0648\u062f | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Netiv HaGdud", "mixname_en": "Netiv HaGdud | <span>Bika'a</span>", "label_ru": "\u041d\u0435\u0442\u0438\u0432 \u0445\u0430-\u0413\u0434\u0443\u0434", "mixname_ru": "\u041d\u0435\u0442\u0438\u0432 \u0445\u0430-\u0413\u0434\u0443\u0434 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "79D8AC59EE54E9E6A0727B681E4C03F1", "id": "1238", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e9\u05d9\u05dc\u05d4", "mixname_he": "\u05e9\u05d9\u05dc\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0634\u064a\u0644\u0648", "mixname_ar": "\u0634\u064a\u0644\u0648 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Shilo", "mixname_en": "Shilo | <span>Shomron</span>", "label_ru": "\u0428\u0438\u043b\u043e", "mixname_ru": "\u0428\u0438\u043b\u043e | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "79D9DFBF1F3117721B3DC2178D238DD3", "id": "863", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d9\u05dd", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d9\u05dd | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u064a\u0627\u0645", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u064a\u0627\u0645 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Neveh Yam", "mixname_en": "Neveh Yam | <span>HaCarmel</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u042f\u043c", "mixname_ru": "\u041d\u0435\u0432\u0435 \u042f\u043c | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "79E5C92C5E52DE0C6F50BDDF8672FF2B", "id": "432", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d7\u05d3\u05d9\u05d3", "mixname_he": "\u05d7\u05d3\u05d9\u05d3 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u062d\u062f\u064a\u062f", "mixname_ar": "\u062d\u062f\u064a\u062f | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Hadid", "mixname_en": "Hadid | <span>Yarkon</span>", "label_ru": "\u0425\u0430\u0434\u0438\u0434", "mixname_ru": "\u0425\u0430\u0434\u0438\u0434 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "7A1D7C00E9DE8AEA12ADFAB6A6F492D8", "id": "1101", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05e7\u05d3\u05e8", "mixname_he": "\u05e7\u05d3\u05e8 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u062f\u0627\u0631", "mixname_ar": "\u0643\u062f\u0627\u0631 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kadarim", "mixname_en": "Kadarim | <span>Yehuda</span>", "label_ru": "\u041a\u0435\u0434\u0430\u0440", "mixname_ru": "\u041a\u0435\u0434\u0430\u0440 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "7A2EBE572FB48C28C1D86CF1F77B7A58", "id": "406", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d4\u05e8\u05d3\u05d5\u05e3", "mixname_he": "\u05d4\u05e8\u05d3\u05d5\u05e3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0647\u0627\u0631\u062f\u0648\u0641", "mixname_ar": "\u0647\u0627\u0631\u062f\u0648\u0641 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Harduf", "mixname_en": "Harduf | <span>HaAmakim</span>", "label_ru": "\u0425\u0430\u0440\u0434\u0443\u0444", "mixname_ru": "\u0425\u0430\u0440\u0434\u0443\u0444 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "7A4BCFD06BA55A81B6436EE1D911A195", "id": "902", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042f\u0432\u043d\u0435", "label_he": "\u05e0\u05d9\u05e8 \u05d2\u05dc\u05d9\u05dd", "mixname_he": "\u05e0\u05d9\u05e8 \u05d2\u05dc\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u064a\u0631 \u062c\u0644\u064a\u0645", "mixname_ar": "\u0646\u064a\u0631 \u062c\u0644\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Nir Galim", "mixname_en": "Nir Galim | <span>Lachish</span>", "label_ru": "\u041d\u0438\u0440 \u0413\u0430\u043b\u0438\u043c", "mixname_ru": "\u041d\u0438\u0440 \u0413\u0430\u043b\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "7A84A53C4584DAB82A2D1AEA28662957", "id": "1083", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05e6\u05d5\u05e8 \u05de\u05e9\u05d4", "mixname_he": "\u05e6\u05d5\u05e8 \u05de\u05e9\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062b\u0633\u0648\u0631 \u0645\u0648\u0634\u064a\u0647", "mixname_ar": "\u062b\u0633\u0648\u0631 \u0645\u0648\u0634\u064a\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tzur Moshe", "mixname_en": "Tzur Moshe | <span>Sharon</span>", "label_ru": "\u0426\u0443\u0440 \u041c\u043e\u0448\u0435", "mixname_ru": "\u0426\u0443\u0440 \u041c\u043e\u0448\u0435 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "7AE94710E0EBFCAC7AE044E04D8029E0", "id": "35", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d0\u05d5\u05e8\u05d4", "mixname_he": "\u05d0\u05d5\u05e8\u05d4 | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0623\u0648\u0631\u0629", "mixname_ar": "\u0623\u0648\u0631\u0629 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Ora", "mixname_en": "Ora | <span>Jerusalem</span>", "label_ru": "\u041e\u0440\u0430", "mixname_ru": "\u041e\u0440\u0430 | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "7B4E1F3ED903AA436E7A776FAE482E7F", "id": "1073", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e6\u05d0\u05dc\u05d9\u05dd", "mixname_he": "\u05e6\u05d0\u05dc\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u0633\u0626\u0644\u064a\u0645", "mixname_ar": "\u062a\u0633\u0626\u0644\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Ze'elim", "mixname_en": "Ze'elim | <span>West Negev</span>", "label_ru": "\u0426\u0435\u044d\u043b\u0438\u043c", "mixname_ru": "\u0426\u0435\u044d\u043b\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "7B4E6870298E59FDC009811788DE379B", "id": "454", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d7\u05dc\u05e5", "mixname_he": "\u05d7\u05dc\u05e5 | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062d\u064a\u0644\u062a\u0633", "mixname_ar": "\u062d\u064a\u0644\u062a\u0633 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Heletz", "mixname_en": "Heletz | <span>West Lachish</span>", "label_ru": "\u0425\u0435\u043b\u0435\u0446", "mixname_ru": "\u0425\u0435\u043b\u0435\u0446 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "7B544799143870931F6A16C5D9F39FCD", "id": "1295", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05ea\u05dc\u05de\u05d9\u05dd", "mixname_he": "\u05ea\u05dc\u05de\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062a\u0644\u0645\u064a\u0645", "mixname_ar": "\u062a\u0644\u0645\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Tlamim", "mixname_en": "Tlamim | <span>Lachish</span>", "label_ru": "\u0422\u043b\u0430\u043c\u0438\u043c", "mixname_ru": "\u0422\u043b\u0430\u043c\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "7B60154F0C2627570ACF096289B20095", "id": "482", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d8\u05d9\u05d9\u05d1\u05d4 \u05d1\u05d2\u05dc\u05d1\u05d5\u05e2", "mixname_he": "\u05d8\u05d9\u05d9\u05d1\u05d4 \u05d1\u05d2\u05dc\u05d1\u05d5\u05e2 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0627\u0644\u0637\u064a\u0628\u0647 (\u062c\u0644\u0628\u0648\u0639)", "mixname_ar": "\u0627\u0644\u0637\u064a\u0628\u0647 (\u062c\u0644\u0628\u0648\u0639) | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Taibe (Gilboa)", "mixname_en": "Taibe (Gilboa) | <span>Beit She'an Valley</span>", "label_ru": "\u0422\u0430\u0439\u0431\u0435 (\u0413\u0438\u043b\u044c\u0431\u043e\u0430)", "mixname_ru": "\u0422\u0430\u0439\u0431\u0435 (\u0413\u0438\u043b\u044c\u0431\u043e\u0430) | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "7B972D2587359423931DE8A116904349", "id": "1354", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05de\u05e8\u05d5\u05dd \u05d2\u05dc\u05d9\u05dc", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05de\u05e8\u05d5\u05dd \u05d2\u05dc\u05d9\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u062c\u0644\u0633 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u0645\u0627\u0631\u0648\u0645 \u0647\u062c\u0644\u064a\u0644", "mixname_ar": "\u0627\u0644\u0645\u062c\u0644\u0633 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u0645\u0627\u0631\u0648\u0645 \u0647\u062c\u0644\u064a\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Merom Hagalil Regional Council", "mixname_en": "Merom Hagalil Regional Council | <span>Upper Galilee</span>", "label_ru": "\u041c\u0435\u0442\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442 \u041c\u0430\u0440\u043e\u043c \u0413\u0430\u043b\u0438\u043b\u044c", "mixname_ru": "\u041c\u0435\u0442\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442 \u041c\u0430\u0440\u043e\u043c \u0413\u0430\u043b\u0438\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "7BCD4873DA18274E1EB72F86C4946B56", "id": "346", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d2\u05e0\u05d9 \u05d9\u05d5\u05d7\u05e0\u05df", "mixname_he": "\u05d2\u05e0\u05d9 \u05d9\u05d5\u05d7\u05e0\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u0627\u0646\u064a \u064a\u0648\u062d\u0627\u0646\u0627\u0646", "mixname_ar": "\u062c\u0627\u0646\u064a \u064a\u0648\u062d\u0627\u0646\u0627\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ganei Yochanan", "mixname_en": "Ganei Yochanan | <span>HaShfela</span>", "label_ru": "\u0413\u0430\u043d\u0435\u0439 \u0419\u043e\u0445\u0430\u043d\u0430\u043d", "mixname_ru": "\u0413\u0430\u043d\u0435\u0439 \u0419\u043e\u0445\u0430\u043d\u0430\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "7BFD7C11A8F8909F4C76CA348116290F", "id": "30", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05d5\u05e4\u05e7\u05d9\u05dd", "mixname_he": "\u05d0\u05d5\u05e4\u05e7\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0623\u0648\u0641\u0643\u064a\u0645", "mixname_ar": "\u0623\u0648\u0641\u0643\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Ofakim", "mixname_en": "Ofakim | <span>West Negev</span>", "label_ru": "\u041e\u0444\u0430\u043a\u0438\u043c", "mixname_ru": "\u041e\u0444\u0430\u043a\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "7C2F2A3FB518D22DE4A6337F8C442BE4", "id": "6028", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05de\u05ea \u05d2\u05df - \u05de\u05e2\u05e8\u05d1", "mixname_he": "\u05e8\u05de\u05ea \u05d2\u05df - \u05de\u05e2\u05e8\u05d1 | <span>\u05d3\u05df</span>", "label_ar": "\u0631\u0645\u0627\u062a \u063a\u0627\u0646 \u063a\u0631\u0628", "mixname_ar": "\u0631\u0645\u0627\u062a \u063a\u0627\u0646 \u063a\u0631\u0628 | <span>\u062f\u0627\u0646</span>", "label_en": "Ramat Gan - West", "mixname_en": "Ramat Gan - West | <span>Dan</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0413\u0430\u043d - \u0437\u0430\u043f\u0430\u0434", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0413\u0430\u043d - \u0437\u0430\u043f\u0430\u0434 | <span>\u0414\u0430\u043d</span>"}, {"value": "7C5235C51A2FDA98FE7D2AC03209A007", "id": "713", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05de\u05d2\u05e9\u05d9\u05de\u05d9\u05dd", "mixname_he": "\u05de\u05d2\u05e9\u05d9\u05de\u05d9\u05dd | <span>\u05d3\u05df</span>", "label_ar": "\u0645\u062c\u0634\u064a\u0645\u064a\u0645", "mixname_ar": "\u0645\u062c\u0634\u064a\u0645\u064a\u0645 | <span>\u062f\u0627\u0646</span>", "label_en": "Magshimim", "mixname_en": "Magshimim | <span>Dan</span>", "label_ru": "\u041c\u0430\u0433\u0448\u0438\u043c\u0438\u043c", "mixname_ru": "\u041c\u0430\u0433\u0448\u0438\u043c\u0438\u043c | <span>\u0414\u0430\u043d</span>"}, {"value": "7C7B131CF21577529FC2C1234B190F1B", "id": "898", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05e0\u05d9\u05e6\u05e0\u05d9 \u05e2\u05d5\u05d6", "mixname_he": "\u05e0\u05d9\u05e6\u05e0\u05d9 \u05e2\u05d5\u05d6 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u064a\u062a\u0633\u0646\u064a \u0639\u0648\u0632", "mixname_ar": "\u0646\u064a\u062a\u0633\u0646\u064a \u0639\u0648\u0632 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Nitzanei Oz", "mixname_en": "Nitzanei Oz | <span>Sharon</span>", "label_ru": "\u041d\u0438\u0446\u0430\u043d\u0435\u0439 \u041e\u0437", "mixname_ru": "\u041d\u0438\u0446\u0430\u043d\u0435\u0439 \u041e\u0437 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "7C85388B92EEE5D1DA404AFCD62555CF", "id": "40", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d5\u05e8\u05e0\u05d9\u05ea", "mixname_he": "\u05d0\u05d5\u05e8\u05e0\u05d9\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u0648\u0631\u0646\u064a\u062a", "mixname_ar": "\u0623\u0648\u0631\u0646\u064a\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Oranit", "mixname_en": "Oranit | <span>Sharon</span>", "label_ru": "\u041e\u0440\u0430\u043d\u0438\u0442", "mixname_ru": "\u041e\u0440\u0430\u043d\u0438\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "7CA655219F6AF3F3B731FBF434059DC2", "id": "167", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05d1\u05d5\u05e7\u05e2\u05ea\u05d0", "mixname_he": "\u05d1\u05d5\u05e7\u05e2\u05ea\u05d0 | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0628\u0642\u0639\u0627\u062b\u0627", "mixname_ar": "\u0628\u0642\u0639\u0627\u062b\u0627 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Buq'ata", "mixname_en": "Buq'ata | <span>North Golan</span>", "label_ru": "\u0411\u0443\u043a\u0430\u0442\u0430", "mixname_ru": "\u0411\u0443\u043a\u0430\u0442\u0430 | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "7CFE3A724ECC4F31B7550EB5715B539F", "id": "981", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e2\u05d9\u05df \u05d0\u05dc-\u05e1\u05d4\u05dc\u05d4", "mixname_he": "\u05e2\u05d9\u05df \u05d0\u05dc-\u05e1\u05d4\u05dc\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0627\u0644\u0633\u0647\u0644\u0629", "mixname_ar": "\u0639\u064a\u0646 \u0627\u0644\u0633\u0647\u0644\u0629 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Ein as-Sahla", "mixname_en": "Ein as-Sahla | <span>Wadi Ara</span>", "label_ru": "\u042d\u0439\u043d \u0410\u0441-\u0421\u0430\u0445\u043b\u0430", "mixname_ru": "\u042d\u0439\u043d \u0410\u0441-\u0421\u0430\u0445\u043b\u0430 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "7D87BF8C2187DF8C30932B5D33B69C63", "id": "707", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05de\u05d2\u05d3\u05dc\u05d9\u05dd", "mixname_he": "\u05de\u05d2\u05d3\u05dc\u05d9\u05dd | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u062c\u062f\u0644\u064a\u0645", "mixname_ar": "\u0645\u062c\u062f\u0644\u064a\u0645 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Megadlim", "mixname_en": "Megadlim | <span>Shomron</span>", "label_ru": "\u041c\u0435\u0433\u0430\u0434\u043b\u0438\u043c", "mixname_ru": "\u041c\u0435\u0433\u0430\u0434\u043b\u0438\u043c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "7DE8B4177A342C70F7D86AF5219A2858", "id": "1078", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e6\u05d5\u05e4\u05d9\u05ea", "mixname_he": "\u05e6\u05d5\u05e4\u05d9\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0633\u0648\u0641\u064a\u062a", "mixname_ar": "\u062a\u0633\u0648\u0641\u064a\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tzofit", "mixname_en": "Tzofit | <span>Sharon</span>", "label_ru": "\u0426\u043e\u0444\u0438\u0442", "mixname_ru": "\u0426\u043e\u0444\u0438\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "7E1A56201F30ACE46C75DEEB467C9C82", "id": "1056", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05e4\u05d5\u05e8\u05ea", "mixname_he": "\u05e4\u05d5\u05e8\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0641\u0648\u0631\u0627\u062a", "mixname_ar": "\u0641\u0648\u0631\u0627\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Porat", "mixname_en": "Porat | <span>Sharon</span>", "label_ru": "\u041f\u043e\u0440\u0430\u0442", "mixname_ru": "\u041f\u043e\u0440\u0430\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "7E627BABF633D98CAAD285E6FB204BEC", "id": "59", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05de\u05d9\u05ea\u05e8\u05d9\u05dd", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05de\u05d9\u05ea\u05e8\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u064a\u062a\u0627\u0631\u064a\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u064a\u062a\u0627\u0631\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Meitarim Industrial Zone", "mixname_en": "Meitarim Industrial Zone | <span>Yehuda</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041c\u0435\u0439\u0442\u0430\u0440\u0438\u043c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041c\u0435\u0439\u0442\u0430\u0440\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "7E88E49FDE49BD0F29624D95A1028D97", "id": "504", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d9\u05d3 \u05d7\u05e0\u05d4", "mixname_he": "\u05d9\u05d3 \u05d7\u05e0\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u064a\u062f \u062d\u0646\u0627", "mixname_ar": "\u064a\u062f \u062d\u0646\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Yad Hana", "mixname_en": "Yad Hana | <span>Sharon</span>", "label_ru": "\u042f\u0434 \u0425\u0430\u043d\u0430", "mixname_ru": "\u042f\u0434 \u0425\u0430\u043d\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "7EB51B1EAEEEAE818345C6FB30266BF6", "id": "1334", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "Mate Yehuda Regional Council", "label_he": "\u05e8\u05de\u05ea \u05e8\u05d7\u05dc", "mixname_he": "\u05e8\u05de\u05ea \u05e8\u05d7\u05dc | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_en": "Ramat Rachel", "mixname_en": "Ramat Rachel | <span>Jerusalem</span>"}, {"value": "7F354B30076389C976350B7F044B64A7", "id": "446", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d5\u05e8\u05d4", "mixname_he": "\u05d7\u05d5\u05e8\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062d\u0648\u0631\u0647", "mixname_ar": "\u062d\u0648\u0631\u0647 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Hura", "mixname_en": "Hura | <span>Center Negev</span>", "label_ru": "\u0425\u0443\u0440\u0430", "mixname_ru": "\u0425\u0443\u0440\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "7F37AD0CC0F9254FA5826932B1578D4D", "id": "368", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0443\u0441\u0442\u0430\u043d \u0430\u043b\u044c-\u041c\u0430\u0440\u0434\u0436", "label_he": "\u05d3\u05d7\u05d9", "mixname_he": "\u05d3\u05d7\u05d9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u062f\u062d\u064a", "mixname_ar": "\u0627\u0644\u062f\u062d\u064a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ed-Dahi", "mixname_en": "Ed-Dahi | <span>HaAmakim</span>", "label_ru": "\u0414\u0430\u0445\u0438", "mixname_ru": "\u0414\u0430\u0445\u0438 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "7F4EF6289C6D28F6EEF90442EF1B0256", "id": "600", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05e0\u05d5\u05e2\u05e8 \u05d9\u05de\u05d9\u05df \u05d0\u05d5\u05e8\u05d3", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05e0\u05d5\u05e2\u05e8 \u05d9\u05de\u05d9\u05df \u05d0\u05d5\u05e8\u05d3 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0647\u0646\u0648\u0639\u0631 \u064a\u0645\u064a\u0646 \u0623\u0648\u0631\u062f", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0647\u0646\u0648\u0639\u0631 \u064a\u0645\u064a\u0646 \u0623\u0648\u0631\u062f | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Yemin Orde Youth Village", "mixname_en": "Yemin Orde Youth Village | <span>HaCarmel</span>", "label_ru": "\u041c\u043e\u043b\u043e\u0434\u0435\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a \u041a\u0444\u0430\u0440 \u041e\u0440", "mixname_ru": "\u041c\u043e\u043b\u043e\u0434\u0435\u0436\u043d\u044b\u0439 \u043f\u043e\u0441\u0435\u043b\u043e\u043a \u041a\u0444\u0430\u0440 \u041e\u0440 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "7F56E779A942E3DB096A33A87719F0D6", "id": "1203", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e9\u05d3\u05d4 \u05d3\u05d5\u05d3", "mixname_he": "\u05e9\u05d3\u05d4 \u05d3\u05d5\u05d3 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u062f\u0627\u0641\u064a\u062f", "mixname_ar": "\u0633\u062f\u064a\u0647 \u062f\u0627\u0641\u064a\u062f | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Sdeh David", "mixname_en": "Sdeh David | <span>Lachish</span>", "label_ru": "\u0421\u0434\u0435 \u0414\u0430\u0432\u0438\u0434", "mixname_ru": "\u0421\u0434\u0435 \u0414\u0430\u0432\u0438\u0434 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "7FD1CC6E2920DB1FD284C18C69C0B082", "id": "1301", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05ea\u05e4\u05e8\u05d7", "mixname_he": "\u05ea\u05e4\u05e8\u05d7 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u0641\u0631\u0627\u062d", "mixname_ar": "\u062a\u0641\u0631\u0627\u062d | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Tifrach", "mixname_en": "Tifrach | <span>West Negev</span>", "label_ru": "\u0422\u0438\u0444\u0440\u0430\u0445", "mixname_ru": "\u0422\u0438\u0444\u0440\u0430\u0445 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "806276AE3D2AAFAC619D6813292F577D", "id": "1344", "areaid": 19, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05e0\u05d9\u05e6\u05df", "mixname_he": "\u05e0\u05d9\u05e6\u05df | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u064a\u062a\u0633\u0627\u0646", "mixname_ar": "\u0646\u064a\u062a\u0633\u0627\u0646 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Nitzan", "mixname_en": "Nitzan | <span>West Lachish</span>", "label_ru": "\u041d\u0438\u0446\u0430\u043d", "mixname_ru": "\u041d\u0438\u0446\u0430\u043d | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "80ACCE46A448E7F5349E2AC1F05A1CAA", "id": "6018", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd - \u05d3\u05e8\u05d5\u05dd", "mixname_he": "\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd - \u05e6\u05e4\u05d5\u05df | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0642\u062f\u0633 \u0634\u0631\u0642", "mixname_ar": "\u0627\u0644\u0642\u062f\u0633 \u0634\u0631\u0642 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Jerusalem - West", "mixname_en": "Jerusalem - West | <span>Jerusalem</span>", "label_ru": "\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c - \u042e\u0433", "mixname_ru": "\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c - \u042e\u0433 | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "80D0101DC1B096CE0DAD4DA0AC2386B3", "id": "490", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d8\u05dc\u05dc\u05d9\u05dd", "mixname_he": "\u05d8\u05dc\u05dc\u05d9\u05dd | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u0644\u0627\u0644\u064a\u0645", "mixname_ar": "\u062a\u0644\u0627\u0644\u064a\u0645 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Tlalim", "mixname_en": "Tlalim | <span>South Negev</span>", "label_ru": "\u0422\u043b\u0430\u043b\u0438\u043c", "mixname_ru": "\u0422\u043b\u0430\u043b\u0438\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "8151183603DCC8D5A4C0F37D42ADCC33", "id": "60", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e0\u05d9\u05e8 \u05e2\u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e0\u05d9\u05e8 \u05e2\u05e6\u05d9\u05d5\u05df | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0645\u062c\u0644\u0633 \u0627\u0642\u0644\u0645\u064a \u0646\u064a\u0631 \u0639\u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u0645\u062c\u0644\u0633 \u0627\u0642\u0644\u0645\u064a \u0646\u064a\u0631 \u0639\u062a\u0633\u064a\u0648\u0646 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Nir Etzion Industrial Area", "mixname_en": "Nir Etzion Industrial Area | <span>HaCarmel</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041d\u0438\u0440 \u042d\u0446\u0438\u043e\u043d", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041d\u0438\u0440 \u042d\u0446\u0438\u043e\u043d | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "8177FE81351969B716F1DF771CCF240D", "id": "842", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e0\u05d0\u05d5\u05ea \u05de\u05e8\u05d3\u05db\u05d9", "mixname_he": "\u05e0\u05d0\u05d5\u05ea \u05de\u05e8\u05d3\u05db\u05d9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0646\u0624\u0648\u062a \u0645\u0631\u062f\u062e\u0627\u064a", "mixname_ar": "\u0646\u0624\u0648\u062a \u0645\u0631\u062f\u062e\u0627\u064a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Neot Mordechai", "mixname_en": "Neot Mordechai | <span>Confrontation Line</span>", "label_ru": "\u041d\u0435\u043e\u0442 \u041c\u043e\u0440\u0434\u0435\u0445\u0430\u0439", "mixname_ru": "\u041d\u0435\u043e\u0442 \u041c\u043e\u0440\u0434\u0435\u0445\u0430\u0439 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "817A6425613CE9FCED38917B397FDA7D", "id": "233", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d1\u05dc\u05e4\u05d5\u05e8\u05d9\u05d4", "mixname_he": "\u05d1\u05dc\u05e4\u05d5\u05e8\u05d9\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u0644\u0641\u0648\u0631\u064a\u0627", "mixname_ar": "\u0628\u0644\u0641\u0648\u0631\u064a\u0627 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Balfuria", "mixname_en": "Balfuria | <span>HaAmakim</span>", "label_ru": "\u0411\u0430\u043b\u044c\u0444\u0443\u0440\u0438\u044f", "mixname_ru": "\u0411\u0430\u043b\u044c\u0444\u0443\u0440\u0438\u044f | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "824594BDC71D000F23ADEE19B5E8EC79", "id": "718", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df - \u05dc\u05d9\u05d2\u05d3 \u05e1\u05e0\u05d8\u05e8", "mixname_he": "\u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df - \u05dc\u05d9\u05d2\u05d3 \u05e1\u05e0\u05d8\u05e8 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0648\u062f\u064a\u0639\u064a\u0646- \u0644\u064a\u062c\u062f \u0633\u0646\u062a\u0631", "mixname_ar": "\u0645\u0648\u062f\u064a\u0639\u064a\u0646- \u0644\u064a\u062c\u062f \u0633\u0646\u062a\u0631 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Modi'in - Ligad Center", "mixname_en": "Modi'in - Ligad Center | <span>Yarkon</span>", "label_ru": "\u041c\u043e\u0434\u0438\u0438\u043d - \u0446\u0435\u043d\u0442\u0440 \u041b\u0438\u0433\u0430\u0434", "mixname_ru": "\u041c\u043e\u0434\u0438\u0438\u043d - \u0446\u0435\u043d\u0442\u0440 \u041b\u0438\u0433\u0430\u0434 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "825613657FBA1FA2AD2563DD4B73F97B", "id": "150", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05d0\u05e9\u05dc \u05d4\u05e0\u05e9\u05d9\u05d0", "mixname_he": "\u05d0\u05e9\u05dc \u05d4\u05e0\u05e9\u05d9\u05d0 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0625\u064a\u0634\u0644 \u0647\u0646\u0633\u064a", "mixname_ar": "\u0625\u064a\u0634\u0644 \u0647\u0646\u0633\u064a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Eshel HaNassi", "mixname_en": "Eshel HaNassi | <span>West Negev</span>", "label_ru": "\u042d\u0448\u0435\u043b\u044c \u0430-\u041d\u0430\u0441\u0438", "mixname_ru": "\u042d\u0448\u0435\u043b\u044c \u0430-\u041d\u0430\u0441\u0438 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "82567F5BC38C487826BE9A8950E99F0F", "id": "1352", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e4\u05e0\u05d9\u05de\u05d9\u05d9\u05ea \u05e2\u05d9\u05df \u05db\u05e8\u05dd", "mixname_he": "\u05e4\u05e0\u05d9\u05de\u05d9\u05d9\u05ea \u05e2\u05d9\u05df \u05db\u05e8\u05dd | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0645\u062f\u0631\u0633\u0629 \u0627\u0644\u062f\u0627\u062e\u0644\u064a\u0629 \u0639\u064a\u0646 \u0643\u0627\u0631\u0645", "mixname_ar": "\u0627\u0644\u0645\u062f\u0631\u0633\u0629 \u0627\u0644\u062f\u0627\u062e\u0644\u064a\u0629 \u0639\u064a\u0646 \u0643\u0627\u0631\u0645 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Ein Kerem Boarding School", "mixname_en": "Ein Kerem Boarding School | <span>Jerusalem</span>", "label_ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430\u0442 \u042d\u0439\u043d \u041a\u0435\u0440\u0435\u043c", "mixname_ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430\u0442 \u042d\u0439\u043d \u041a\u0435\u0440\u0435\u043c | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "825F19F54FBB075626B398BE725B82C8", "id": "844", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05e0\u05e2\u05d5\u05e8\u05d4", "mixname_he": "\u05e0\u05e2\u05d5\u05e8\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0646\u0627\u0639\u0648\u0631\u0629", "mixname_ar": "\u0627\u0644\u0646\u0627\u0639\u0648\u0631\u0629 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Na'ura", "mixname_en": "Na'ura | <span>HaAmakim</span>", "label_ru": "\u041d\u0430\u0443\u0440\u0430", "mixname_ru": "\u041d\u0430\u0443\u0440\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "828EFECD6C26D29F65AF1350BD972A89", "id": "815", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05de\u05e8\u05db\u05d6 \u05de\u05d9\u05e8''\u05d1", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05de\u05d9\u05e8''\u05d1 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0645\u0631\u0643\u0632 \u0645\u064a\u0631\u0627\u0628", "mixname_ar": "\u0645\u0631\u0643\u0632 \u0645\u064a\u0631\u0627\u0628 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Merav Center", "mixname_en": "Merav Center | <span>HaCarmel</span>", "label_ru": "\u0426\u0435\u043d\u0442\u0440 \u041c\u0435\u0440\u0430\u0432", "mixname_ru": "\u0426\u0435\u043d\u0442\u0440 \u041c\u0435\u0440\u0430\u0432 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "82D61BBC38F7DCEDFE8C31C38087D09F", "id": "912", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05e0\u05d9\u05e8 \u05e6\u05d1\u05d9", "mixname_he": "\u05e0\u05d9\u05e8 \u05e6\u05d1\u05d9 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0646\u064a\u0631 \u062a\u0633\u0641\u064a", "mixname_ar": "\u0646\u064a\u0631 \u062a\u0633\u0641\u064a | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Nir Zvi", "mixname_en": "Nir Zvi | <span>HaShfela</span>", "label_ru": "\u041d\u0438\u0440 \u0426\u0432\u0438", "mixname_ru": "\u041d\u0438\u0440 \u0426\u0432\u0438 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "82F32047C16BC8F6327D7052C339D43A", "id": "1136", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e8\u05d0\u05e1 \u05d0\u05dc-\u05e2\u05d9\u05df", "mixname_he": "\u05e8\u05d0\u05e1 \u05d0\u05dc-\u05e2\u05d9\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0631\u0627\u0633 \u0627\u0644\u0639\u064a\u0646", "mixname_ar": "\u0631\u0627\u0633 \u0627\u0644\u0639\u064a\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Ras al-ein", "mixname_en": "Ras al-ein | <span>Center Galilee</span>", "label_ru": "\u0420\u0430\u0441 \u0430\u043b\u044c-\u042d\u0439\u043d", "mixname_ru": "\u0420\u0430\u0441 \u0430\u043b\u044c-\u042d\u0439\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "833B8648F0076823DCD509978E5D4B3A", "id": "513", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d9\u05d5\u05e0\u05ea\u05df", "mixname_he": "\u05d9\u05d5\u05e0\u05ea\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u064a\u0648\u0646\u062a\u0627\u0646", "mixname_ar": "\u064a\u0648\u0646\u062a\u0627\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Yonatan", "mixname_en": "Yonatan | <span>South Golan</span>", "label_ru": "\u0419\u043e\u043d\u0430\u0442\u0430\u043d", "mixname_ru": "\u0419\u043e\u043d\u0430\u0442\u0430\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "83855BCA2E238EF4766985B3E61806AB", "id": "561", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05db\u05d5\u05e8\u05d6\u05d9\u05dd \u05d5\u05e8\u05d3 \u05d4\u05d2\u05dc\u05d9\u05dc", "mixname_he": "\u05db\u05d5\u05e8\u05d6\u05d9\u05dd \u05d5\u05e8\u05d3 \u05d4\u05d2\u05dc\u05d9\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062e\u0648\u0631\u0632\u064a\u0645\u060c \u0648\u0631\u062f \u0647\u062c\u0644\u064a\u0644", "mixname_ar": "\u062e\u0648\u0631\u0632\u064a\u0645\u060c \u0648\u0631\u062f \u0647\u062c\u0644\u064a\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Korazim Vered HaGalil", "mixname_en": "Korazim Vered HaGalil | <span>Upper Galilee</span>", "label_ru": "\u041a\u043e\u0440\u0430\u0437\u0438\u043c \u0412\u0435\u0440\u0435\u0434 \u0445\u0430-\u0413\u0430\u043b\u0438\u043b\u044c", "mixname_ru": "\u041a\u043e\u0440\u0430\u0437\u0438\u043c \u0412\u0435\u0440\u0435\u0434 \u0445\u0430-\u0413\u0430\u043b\u0438\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "838F6B4E367EE436E197B5EBE6CFF1FF", "id": "1386", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05e9\u05d3\u05d5\u05d3 - \u05d0\u05d9\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05e4\u05d5\u05e0\u05d9", "mixname_he": "\u05d0\u05e9\u05d3\u05d5\u05d3 - \u05d0\u05d9\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05e4\u05d5\u05e0\u05d9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629,", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629, | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ashdod - Northern Industrial Zone and port", "mixname_en": "Ashdod - Northern Industrial Zone and port | <span>Lachish</span>", "label_ru": "\u0410\u0448\u0434\u043e\u0434 - \u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u043f\u0440\u043e\u043c\u0437\u043e\u043d\u0430, \u041f", "mixname_ru": "\u0410\u0448\u0434\u043e\u0434 - \u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u043f\u0440\u043e\u043c\u0437\u043e\u043d\u0430, \u041f | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "8392A13D0DCB5FBDD4B677ACCFB28151", "id": "530", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d9\u05e4\u05d9\u05e2", "mixname_he": "\u05d9\u05e4\u05d9\u05e2 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u064a\u0627\u0641\u0629 \u0627\u0644\u0646\u0627\u0635\u0631\u0629", "mixname_ar": "\u064a\u0627\u0641\u0629 \u0627\u0644\u0646\u0627\u0635\u0631\u0629 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Yafia", "mixname_en": "Yafia | <span>HaAmakim</span>", "label_ru": "\u042f\u0444\u0438\u0430", "mixname_ru": "\u042f\u0444\u0438\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "83A35E30CB542D5FB20ABA4478A41841", "id": "8", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d0\u05d1\u05d9\u05d2\u05d3\u05d5\u05e8", "mixname_he": "\u05d0\u05d1\u05d9\u05d2\u05d3\u05d5\u05e8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0641\u064a\u063a\u062f\u0648\u0631", "mixname_ar": "\u0627\u0641\u064a\u063a\u062f\u0648\u0631 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Avigdor", "mixname_en": "Avigdor | <span>Lachish</span>", "label_ru": "\u0410\u0432\u0438\u0433\u0434\u043e\u0440", "mixname_ru": "\u0410\u0432\u0438\u0433\u0434\u043e\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "83CE065A64274D4E7656F0AB0F667F31", "id": "255", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d1\u05e8 \u05d2\u05d9\u05d5\u05e8\u05d0", "mixname_he": "\u05d1\u05e8 \u05d2\u05d9\u05d5\u05e8\u05d0 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u0627\u0631 \u062c\u064a\u0648\u0631\u0627", "mixname_ar": "\u0628\u0627\u0631 \u062c\u064a\u0648\u0631\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Bar Giora", "mixname_en": "Bar Giora | <span>Shfelat Yehuda</span>", "label_ru": "\u0411\u0430\u0440 \u0413\u0438\u043e\u0440\u0430", "mixname_ru": "\u0411\u0430\u0440 \u0413\u0438\u043e\u0440\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "84232CBC21AC0FD8AA2B6551B3B90A67", "id": "558", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05d5\u05db\u05d1 \u05d9\u05d0\u05d9\u05e8 - \u05e6\u05d5\u05e8 \u05d9\u05d2\u05d0\u05dc", "mixname_he": "\u05db\u05d5\u05db\u05d1 \u05d9\u05d0\u05d9\u05e8 - \u05e6\u05d5\u05e8 \u05d9\u05d2\u05d0\u05dc | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0648\u062e\u0627\u0641 \u064a\u0626\u064a\u0631", "mixname_ar": "\u0643\u0648\u062e\u0627\u0641 \u064a\u0626\u064a\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kokhav Ya'ir - Tzur Yigal", "mixname_en": "Kokhav Ya'ir - Tzur Yigal | <span>Sharon</span>", "label_ru": "\u041a\u043e\u0445\u0430\u0432 \u042f\u0438\u0440 - \u0426\u0443\u0440 \u0418\u0433\u0430\u043b\u044c", "mixname_ru": "\u041a\u043e\u0445\u0430\u0432 \u042f\u0438\u0440 - \u0426\u0443\u0440 \u0418\u0433\u0430\u043b\u044c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "8454A4FF24E03BB74F07957FCCAE13AF", "id": "885", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e0\u05d7\u05e3", "mixname_he": "\u05e0\u05d7\u05e3 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0646\u062d\u0641", "mixname_ar": "\u0646\u062d\u0641 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Nachaf", "mixname_en": "Nachaf | <span>Upper Galilee</span>", "label_ru": "\u041d\u0430\u0445\u0430\u0444", "mixname_ru": "\u041d\u0430\u0445\u0430\u0444 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "8464DBE8518F03C2D30DB26E7B9A5812", "id": "670", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05dc\u05d1\u05d5\u05df", "mixname_he": "\u05dc\u05d1\u05d5\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0644\u0641\u0648\u0646", "mixname_ar": "\u0644\u0641\u0648\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Lavon", "mixname_en": "Lavon | <span>Upper Galilee</span>", "label_ru": "\u041b\u0430\u0432\u043e\u043d", "mixname_ru": "\u041b\u0430\u0432\u043e\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "84854B25408777B44862EF3FD8019F4C", "id": "1237", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e9\u05d9\u05d9\u05d7' \u05d3\u05e0\u05d5\u05df", "mixname_he": "\u05e9\u05d9\u05d9\u05d7' \u05d3\u05e0\u05d5\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0634\u064a\u062e \u062f\u0646\u0648\u0646", "mixname_ar": "\u0627\u0644\u0634\u064a\u062e \u062f\u0646\u0648\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Sheikh Danun", "mixname_en": "Sheikh Danun | <span>Upper Galilee</span>", "label_ru": "\u0428\u0435\u0439\u0445 \u0414\u0430\u043d\u0443\u043d", "mixname_ru": "\u0428\u0435\u0439\u0445 \u0414\u0430\u043d\u0443\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "84A6A1FCC8B723173C6CFCC175364FB3", "id": "215", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05e9\u05d9\u05d8\u05d4 \u05d5\u05d2\u05dc\u05d1\u05d5\u05e2", "mixname_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05e9\u05d9\u05d8\u05d4 \u05d5\u05d2\u05dc\u05d1\u05d5\u05e2 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0633\u062c\u0646 \u0634\u0637\u0627 \u0647\u062c\u0644\u0628\u0648\u0639", "mixname_ar": "\u0633\u062c\u0646 \u0634\u0637\u0627 \u0647\u062c\u0644\u0628\u0648\u0639 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Shita and Gilboa Prison", "mixname_en": "Shita and Gilboa Prison | <span>HaAmakim</span>", "label_ru": "\u0422\u044e\u0440\u044c\u043c\u0430 \u0428\u0438\u0442\u0430 \u0438 \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "mixname_ru": "\u0422\u044e\u0440\u044c\u043c\u0430 \u0428\u0438\u0442\u0430 \u0438 \u0413\u0438\u043b\u044c\u0431\u043e\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "84A7C2B71A8FC027100CFA31486F5AC5", "id": "199", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05d1\u05d9\u05ea \u05d7\u05e0\u05e0\u05d9\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05d7\u05e0\u05e0\u05d9\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u062d\u0646\u0627\u0646\u064a\u0647", "mixname_ar": "\u0628\u064a\u062a \u062d\u0646\u0627\u0646\u064a\u0647 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Beit Hanania", "mixname_en": "Beit Hanania | <span>Menashe</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u043d\u0430\u043d\u0438\u044f", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u043d\u0430\u043d\u0438\u044f | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "84CE8F0F2E4AE0CC882FDB5E1A7A9A61", "id": "659", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05db\u05e8\u05dd \u05d1\u05df \u05d6\u05de\u05e8\u05d4", "mixname_he": "\u05db\u05e8\u05dd \u05d1\u05df \u05d6\u05de\u05e8\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0643\u0631\u0645 \u0628\u0646 \u0632\u0645\u0631\u0647", "mixname_ar": "\u0643\u0631\u0645 \u0628\u0646 \u0632\u0645\u0631\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Kerem Ben Zimra", "mixname_en": "Kerem Ben Zimra | <span>Confrontation Line</span>", "label_ru": "\u041a\u0435\u0440\u0435\u043c \u0411\u0435\u043d \u0417\u0438\u043c\u0440\u0430", "mixname_ru": "\u041a\u0435\u0440\u0435\u043c \u0411\u0435\u043d \u0417\u0438\u043c\u0440\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "851342EEE1B047D04911E77C97804B12", "id": "1300", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05e2\u05e9\u05d9\u05d5\u05df \u05e6\u05e8\u05d9\u05e4\u05d9\u05df", "mixname_he": "\u05ea\u05e2\u05e9\u05d9\u05d5\u05df \u05e6\u05e8\u05d9\u05e4\u05d9\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062a\u0639\u0633\u064a\u0648\u0646 \u062a\u0633\u0631\u064a\u0641\u064a\u0646", "mixname_ar": "\u062a\u0639\u0633\u064a\u0648\u0646 \u062a\u0633\u0631\u064a\u0641\u064a\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Zrifin Industrial Zone", "mixname_en": "Zrifin Industrial Zone | <span>HaShfela</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0426\u0440\u0438\u0444\u0438\u043d", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0426\u0440\u0438\u0444\u0438\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "8517383987A4F872CFE7239B24B1AA49", "id": "161", "areaid": 9, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d1\u05d0\u05e8 \u05de\u05d9\u05dc\u05db\u05d4", "mixname_he": "\u05d1\u05d0\u05e8 \u05de\u05d9\u05dc\u05db\u05d4 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u0626\u064a\u0631 \u0645\u064a\u0644\u062e\u0627", "mixname_ar": "\u0628\u0626\u064a\u0631 \u0645\u064a\u0644\u062e\u0627 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Be'er Milka", "mixname_en": "Be'er Milka | <span>South Negev</span>", "label_ru": "\u0411\u0435\u044d\u0440 \u041c\u0438\u043b\u043a\u0430", "mixname_ru": "\u0411\u0435\u044d\u0440 \u041c\u0438\u043b\u043a\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "851D0014A1024AEE4F647FC30DD8651D", "id": "1009", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e2\u05d9\u05df \u05e8\u05d0\u05e4\u05d4", "mixname_he": "\u05e2\u05d9\u05df \u05e8\u05d0\u05e4\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0631\u0627\u0641\u0627", "mixname_ar": "\u0639\u064a\u0646 \u0631\u0627\u0641\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ein Rafa", "mixname_en": "Ein Rafa | <span>Shfelat Yehuda</span>", "label_ru": "\u042d\u0439\u043d \u0420\u0430\u0444\u0430", "mixname_ru": "\u042d\u0439\u043d \u0420\u0430\u0444\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "854B6FF5F9CD6AB2C8BD2D3657305E48", "id": "716", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df", "mixname_he": "\u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0648\u062f\u064a\u0639\u064a\u0646", "mixname_ar": "\u0645\u0648\u062f\u064a\u0639\u064a\u0646 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Modi'in", "mixname_en": "Modi'in | <span>Yarkon</span>", "label_ru": "\u041c\u043e\u0434\u0438\u0438\u043d", "mixname_ru": "\u041c\u043e\u0434\u0438\u0438\u043d | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "8553B5A720605DB461115E9BB3260390", "id": "1175", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05de\u05ea \u05d4\u05e0\u05d3\u05d9\u05d1", "mixname_he": "\u05e8\u05de\u05ea \u05d4\u05e0\u05d3\u05d9\u05d1 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0631\u0645\u0627\u062a \u0647\u0646\u062f\u064a\u0641", "mixname_ar": "\u0631\u0645\u0627\u062a \u0647\u0646\u062f\u064a\u0641 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Ramat HaNadiv", "mixname_en": "Ramat HaNadiv | <span>Menashe</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0445\u0430-\u041d\u0430\u0434\u0438\u0432", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0445\u0430-\u041d\u0430\u0434\u0438\u0432 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "8561E26B02A76311887D4A2C15EADAF0", "id": "436", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d5\u05d5\u05ea \u05e9\u05d3\u05d4 \u05d1\u05e8", "mixname_he": "\u05d7\u05d5\u05d5\u05ea \u05e9\u05d3\u05d4 \u05d1\u05e8 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0632\u0631\u0639\u0629 \u062d\u0642\u0644 \u0628\u0627\u0631", "mixname_ar": "\u0645\u0632\u0631\u0639\u0629 \u062d\u0642\u0644 \u0628\u0627\u0631 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Havat Sdeh Bar", "mixname_en": "Havat Sdeh Bar | <span>Yehuda</span>", "label_ru": "\u0425\u0430\u0432\u0430\u0442 \u0421\u0434\u0435 \u0411\u0430\u0440", "mixname_ru": "\u0425\u0430\u0432\u0430\u0442 \u0421\u0434\u0435 \u0411\u0430\u0440 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "857A7CCD728AC075AF5CA7088837CE67", "id": "564", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05db\u05d9\u05e0\u05e8\u05ea \u05de\u05d5\u05e9\u05d1\u05d4", "mixname_he": "\u05db\u05d9\u05e0\u05e8\u05ea \u05de\u05d5\u05e9\u05d1\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0637\u0628\u0631\u064a\u0627 \u0645\u0648\u0634\u0641\u0627", "mixname_ar": "\u0637\u0628\u0631\u064a\u0627 \u0645\u0648\u0634\u0641\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Moshavat Kinneret", "mixname_en": "Moshavat Kinneret | <span>Lower Galilee</span>", "label_ru": "\u041a\u0438\u043d\u0435\u0440\u0435\u0442 \u0445\u0430-\u041c\u043e\u0448\u0430\u0432\u0430", "mixname_ru": "\u041a\u0438\u043d\u0435\u0440\u0435\u0442 \u0445\u0430-\u041c\u043e\u0448\u0430\u0432\u0430 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "85B8A19E09011302508CB457FAF08C39", "id": "1287", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05ea\u05dc \u05ea\u05d0\u05d5\u05de\u05d9\u05dd", "mixname_he": "\u05ea\u05dc \u05ea\u05d0\u05d5\u05de\u05d9\u05dd | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u062a\u0644 \u062a\u0624\u0648\u0645\u064a\u0645", "mixname_ar": "\u062a\u0644 \u062a\u0624\u0648\u0645\u064a\u0645 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Tel Teomim", "mixname_en": "Tel Teomim | <span>Beit She'an Valley</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0422\u0435\u043e\u043c\u0438\u043c", "mixname_ru": "\u0422\u0435\u043b\u044c \u0422\u0435\u043e\u043c\u0438\u043c | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "85C81115FFE5C8635D9B1BD066B0B0E9", "id": "1085", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05e6\u05d5\u05e8\u05d9\u05d0\u05dc", "mixname_he": "\u05e6\u05d5\u05e8\u05d9\u05d0\u05dc | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062a\u0633\u0648\u0631\u064a\u0626\u0644", "mixname_ar": "\u062a\u0633\u0648\u0631\u064a\u0626\u0644 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Tzuriel", "mixname_en": "Tzuriel | <span>Confrontation Line</span>", "label_ru": "\u0426\u0443\u0440\u0438\u044d\u043b\u044c", "mixname_ru": "\u0426\u0443\u0440\u0438\u044d\u043b\u044c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "85FA0B6BA988D9E32CE72D0E9C96AD48", "id": "356", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d2\u05e9\u05e8 \u05d4\u05d6\u05d9\u05d5", "mixname_he": "\u05d2\u05e9\u05e8 \u05d4\u05d6\u05d9\u05d5 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062c\u064a\u0634\u064a\u0631 \u0647\u0632\u064a\u0641", "mixname_ar": "\u062c\u064a\u0634\u064a\u0631 \u0647\u0632\u064a\u0641 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Gesher HaZiv", "mixname_en": "Gesher HaZiv | <span>Confrontation Line</span>", "label_ru": "\u0413\u0435\u0448\u0435\u0440 \u0445\u0430-\u0417\u0438\u0432", "mixname_ru": "\u0413\u0435\u0448\u0435\u0440 \u0445\u0430-\u0417\u0438\u0432 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "862EDE610AA53644FCB7A236E16D8A40", "id": "394", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d4\u05de\u05e2\u05e4\u05d9\u05dc", "mixname_he": "\u05d4\u05de\u05e2\u05e4\u05d9\u05dc | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0647\u0645\u0641\u0639\u064a\u0644", "mixname_ar": "\u0647\u0645\u0641\u0639\u064a\u0644 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "HaMa'apil", "mixname_en": "HaMa'apil | <span>Sharon</span>", "label_ru": "\u0445\u0430-\u041c\u0430\u0430\u043f\u0438\u043b\u044c", "mixname_ru": "\u0445\u0430-\u041c\u0430\u0430\u043f\u0438\u043b\u044c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "8635C05B728B2E1B2FEC7423488F9C77", "id": "635", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05e0\u05d5\u05e2\u05e8 \u05d1\u05df \u05e9\u05de\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05e0\u05d5\u05e2\u05e8 \u05d1\u05df \u05e9\u05de\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0643\u0641\u0631 \u0646\u0648\u0639\u0631 \u0628\u0646 \u0634\u064a\u0645\u0646", "mixname_ar": "\u0643\u0641\u0631 \u0646\u0648\u0639\u0631 \u0628\u0646 \u0634\u064a\u0645\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ben Shemen Youth Village", "mixname_en": "Ben Shemen Youth Village | <span>HaShfela</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041d\u043e\u0430\u0440 \u0411\u0435\u043d \u0428\u0435\u043c\u0435\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041d\u043e\u0430\u0440 \u0411\u0435\u043d \u0428\u0435\u043c\u0435\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "868619A5D421C59DB31D0557F981712B", "id": "656", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05db\u05e8\u05db\u05d5\u05dd", "mixname_he": "\u05db\u05e8\u05db\u05d5\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0631\u0643\u0648\u0645", "mixname_ar": "\u0643\u0631\u0643\u0648\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Karkom", "mixname_en": "Karkom | <span>Upper Galilee</span>", "label_ru": "\u041a\u0430\u0440\u043a\u043e\u043c", "mixname_ru": "\u041a\u0430\u0440\u043a\u043e\u043c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "869E8E2D30EBF6BEAEFD8F97F66BF501", "id": "181", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05d2'\u05d0\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05d2'\u05d0\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u062c\u0646", "mixname_ar": "\u0628\u064a\u062a \u062c\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Beit Jann", "mixname_en": "Beit Jann | <span>Upper Galilee</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0414\u0436\u0430\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0414\u0436\u0430\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "86C8E2E140E611A404B376BBD56FCE3B", "id": "420", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d6\u05e0\u05d5\u05d7", "mixname_he": "\u05d6\u05e0\u05d5\u05d7 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0632\u0646\u0648\u062d", "mixname_ar": "\u0632\u0646\u0648\u062d | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Zanoah", "mixname_en": "Zanoah | <span>Shfelat Yehuda</span>", "label_ru": "\u0417\u0430\u043d\u043e\u0430\u0445", "mixname_ru": "\u0417\u0430\u043d\u043e\u0430\u0445 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "8735076AE039F09C9F41609C7CD5BF74", "id": "1090", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05e6\u05e4\u05e8\u05d9\u05d4", "mixname_he": "\u05e6\u05e4\u05e8\u05d9\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062a\u0633\u0641\u0627\u0631\u064a\u0647", "mixname_ar": "\u062a\u0633\u0641\u0627\u0631\u064a\u0647 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Tzafria", "mixname_en": "Tzafria | <span>HaShfela</span>", "label_ru": "\u0426\u0430\u0444\u0440\u0438\u044f", "mixname_ru": "\u0426\u0430\u0444\u0440\u0438\u044f | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "8774F3A9591A962FDAADD429C7EDDE2A", "id": "55", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05db\u05e0\u05d5\u05ea", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05db\u05e0\u05d5\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0643\u0646\u0648\u062a", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0643\u0646\u0648\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kannot Industrial Zone", "mixname_en": "Kannot Industrial Zone | <span>Lachish</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041a\u0430\u043d\u043d\u043e\u0442", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041a\u0430\u043d\u043d\u043e\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "87B849874E8C158EA31E64525A2766EC", "id": "1178", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05e8\u05de\u05ea \u05d9\u05d5\u05d7\u05e0\u05df", "mixname_he": "\u05e8\u05de\u05ea \u05d9\u05d5\u05d7\u05e0\u05df | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0631\u0645\u0627\u062a \u064a\u0648\u062d\u0627\u0646\u0627\u0646", "mixname_ar": "\u0631\u0645\u0627\u062a \u064a\u0648\u062d\u0627\u0646\u0627\u0646 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Ramat Yochana", "mixname_en": "Ramat Yochana | <span>HaMifratz</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0419\u043e\u0445\u0430\u043d\u0430\u043d", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0419\u043e\u0445\u0430\u043d\u0430\u043d | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "88136DD39BCDD0BC00556F35F41A4399", "id": "1062", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e4\u05e1\u05d2\u05d5\u05ea", "mixname_he": "\u05e4\u05e1\u05d2\u05d5\u05ea | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0633\u0627\u062c\u0648\u062a", "mixname_ar": "\u0628\u0633\u0627\u062c\u0648\u062a | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Psagot", "mixname_en": "Psagot | <span>Shomron</span>", "label_ru": "\u041f\u0441\u0430\u0433\u043e\u0442", "mixname_ru": "\u041f\u0441\u0430\u0433\u043e\u0442 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "882471D7974426BBBB756C692BD94D2C", "id": "756", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05de\u05e0\u05d7\u05de\u05d9\u05d4", "mixname_he": "\u05de\u05e0\u05d7\u05de\u05d9\u05d4 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0645\u0646\u062d\u0645\u064a\u0647", "mixname_ar": "\u0645\u0646\u062d\u0645\u064a\u0647 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Menahemia", "mixname_en": "Menahemia | <span>Beit She'an Valley</span>", "label_ru": "\u041c\u0435\u043d\u0430\u0445\u0435\u043c\u0438\u044f", "mixname_ru": "\u041c\u0435\u043d\u0430\u0445\u0435\u043c\u0438\u044f | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "882EE269A0A67DBFE5D65C41A10610AC", "id": "163", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d0\u05e8\u05d5\u05ea\u05d9\u05d9\u05dd", "mixname_he": "\u05d1\u05d0\u05e8\u05d5\u05ea\u05d9\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0626\u0631\u0648\u062a\u0627\u064a\u0645", "mixname_ar": "\u0628\u0626\u0631\u0648\u062a\u0627\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Be'erotaim", "mixname_en": "Be'erotaim | <span>Sharon</span>", "label_ru": "\u0411\u0435\u044d\u0440\u043e\u0442\u0430\u0438\u043c", "mixname_ru": "\u0411\u0435\u044d\u0440\u043e\u0442\u0430\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "886301B5205368470B65AD8CFAE3BAC9", "id": "291", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d0\u05dc\u05d4", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d0\u05dc\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0625\u064a\u0644\u0627", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0625\u064a\u0644\u0627 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Givat Ela", "mixname_en": "Givat Ela | <span>HaAmakim</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u042d\u043b\u0430", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u042d\u043b\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "888DF27F938DD5071A634FDB1531313E", "id": "450", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "", "label_he": "\u05d7\u05d9-\u05d1\u05e8 \u05d9\u05d8\u05d1\u05ea\u05d4", "mixname_he": "\u05d7\u05d9-\u05d1\u05e8 \u05d9\u05d8\u05d1\u05ea\u05d4 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u062d\u0627\u064a\u064a \u0628\u0627\u0631\u00a0\u064a\u0648\u062a\u0641\u0627\u062a\u0627", "mixname_ar": "\u062d\u0627\u064a\u064a \u0628\u0627\u0631\u00a0\u064a\u0648\u062a\u0641\u0627\u062a\u0627 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Yotvata Hai Bar Nature Reserve", "mixname_en": "Yotvata Hai Bar Nature Reserve | <span>Arava</span>", "label_ru": "\u0425\u0430\u0439-\u0411\u0430\u0440 \u0419\u043e\u0442\u0432\u0430\u0442\u0430", "mixname_ru": "\u0425\u0430\u0439-\u0411\u0430\u0440 \u0419\u043e\u0442\u0432\u0430\u0442\u0430 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "8921B752A566E2185D760952B0256097", "id": "677", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05dc\u05d5\u05d3", "mixname_he": "\u05dc\u05d5\u05d3 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0627\u0644\u0644\u062f", "mixname_ar": "\u0627\u0644\u0644\u062f | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Lod", "mixname_en": "Lod | <span>HaShfela</span>", "label_ru": "\u041b\u043e\u0434", "mixname_ru": "\u041b\u043e\u0434 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "894A92D2919B598FADA1A0DABECAA7FC", "id": "1199", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e9\u05d3\u05d4 \u05d0\u05d9\u05dc\u05df", "mixname_he": "\u05e9\u05d3\u05d4 \u05d0\u05d9\u05dc\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0625\u064a\u0644\u0627\u0646", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0625\u064a\u0644\u0627\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Sdeh Ilan", "mixname_en": "Sdeh Ilan | <span>Lower Galilee</span>", "label_ru": "\u0421\u0434\u044d \u0418\u043b\u0430\u043d", "mixname_ru": "\u0421\u0434\u044d \u0418\u043b\u0430\u043d | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "8959A35CAFA75BA48A21BD705AA751EF", "id": "1249", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05e9\u05e0\u05d9 \u05dc\u05d9\u05d1\u05e0\u05d4", "mixname_he": "\u05e9\u05e0\u05d9 \u05dc\u05d9\u05d1\u05e0\u05d4 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0634\u0627\u0646\u064a \u0644\u064a\u0641\u0646\u0647", "mixname_ar": "\u0634\u0627\u0646\u064a \u0644\u064a\u0641\u0646\u0647 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Sheni LeYavne", "mixname_en": "Sheni LeYavne | <span>Yehuda</span>", "label_ru": "\u0428\u0435\u043d\u0438 \u043b\u0435-\u042f\u0432\u043d\u0435", "mixname_ru": "\u0428\u0435\u043d\u0438 \u043b\u0435-\u042f\u0432\u043d\u0435 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "89601E7DA41A75433A555746E146DB10", "id": "146", "areaid": 5, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05e9\u05d3\u05d5\u05ea \u05d9\u05e2\u05e7\u05d1 \u05d0\u05d9\u05d7\u05d5\u05d3", "mixname_he": "\u05d0\u05e9\u05d3\u05d5\u05ea \u05d9\u05e2\u05e7\u05d1 \u05d0\u05d9\u05d7\u05d5\u05d3 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0623\u0634\u062f\u0648\u062a \u064a\u0639\u0642\u0648\u0628 \u0625\u064a\u062d\u0648\u062f", "mixname_ar": "\u0623\u0634\u062f\u0648\u062a \u064a\u0639\u0642\u0648\u0628 \u0625\u064a\u062d\u0648\u062f | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Ashdod Yacov Ichud", "mixname_en": "Ashdod Yacov Ichud | <span>South Golan</span>", "label_ru": "\u0410\u0448\u0434\u043e\u0442 \u042f\u0430\u043a\u043e\u0432 \u0418\u0445\u0443\u0434", "mixname_ru": "\u0410\u0448\u0434\u043e\u0442 \u042f\u0430\u043a\u043e\u0432 \u0418\u0445\u0443\u0434 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "89679BD023B4DE666AD79E1470E20D83", "id": "283", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d2\u05d1\u05d9\u05dd, \u05de\u05db\u05dc\u05dc\u05ea \u05e1\u05e4\u05d9\u05e8", "mixname_he": "\u05d2\u05d1\u05d9\u05dd, \u05de\u05db\u05dc\u05dc\u05ea \u05e1\u05e4\u05d9\u05e8 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0643\u0644\u064a\u0629 \u0633\u0641\u064a\u0631", "mixname_ar": "\u0643\u0644\u064a\u0629 \u0633\u0641\u064a\u0631 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Gavim, Sapir College", "mixname_en": "Gavim, Sapir College | <span>Gaza Envelope</span>", "label_ru": "\u0413\u0430\u0431\u0438\u043c, \u043a\u043e\u043b\u043b\u0435\u0434\u0436 \u0421\u0430\u043f\u0438\u0440", "mixname_ru": "\u0413\u0430\u0431\u0438\u043c, \u043a\u043e\u043b\u043b\u0435\u0434\u0436 \u0421\u0430\u043f\u0438\u0440 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "8A07836B5D5BB2718F85A4E7DF6F40C8", "id": "1215", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e9\u05d3\u05d5\u05ea \u05de\u05d9\u05db\u05d4", "mixname_he": "\u05e9\u05d3\u05d5\u05ea \u05de\u05d9\u05db\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0633\u062f\u0648\u062a \u0645\u064a\u062e\u0627", "mixname_ar": "\u0633\u062f\u0648\u062a \u0645\u064a\u062e\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Sdot Micha", "mixname_en": "Sdot Micha | <span>Shfelat Yehuda</span>", "label_ru": "\u0421\u0434\u043e\u0442 \u041c\u0438\u0445\u0430", "mixname_ru": "\u0421\u0434\u043e\u0442 \u041c\u0438\u0445\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "8A111906F01DC05A40604001AA8BD2CD", "id": "1046", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0440\u0435\u0434\u043d\u044f\u044f \u0410\u0440\u0430\u0432\u0430", "label_he": "\u05e4\u05d0\u05e8\u05df", "mixname_he": "\u05e4\u05d0\u05e8\u05df | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0641\u0627\u0631\u0646", "mixname_ar": "\u0641\u0627\u0631\u0646 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Paran", "mixname_en": "Paran | <span>Arava</span>", "label_ru": "\u041f\u0430\u0440\u0430\u043d", "mixname_ru": "\u041f\u0430\u0440\u0430\u043d | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "8A1CDEA0F3AF52E034B38E234B5EA0B9", "id": "920", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e0\u05e2\u05dc\u05d4", "mixname_he": "\u05e0\u05e2\u05dc\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0639\u0644\u0627\u0647", "mixname_ar": "\u0646\u0639\u0644\u0627\u0647 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Na'aleh", "mixname_en": "Na'aleh | <span>Shomron</span>", "label_ru": "\u041d\u0430\u0430\u043b\u0435", "mixname_ru": "\u041d\u0430\u0430\u043b\u0435 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "8A7EC742385C9FB841E07A709F6EAC5A", "id": "910", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e0\u05d9\u05e8 \u05e2\u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05e0\u05d9\u05e8 \u05e2\u05e6\u05d9\u05d5\u05df | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0646\u064a\u0631 \u0639\u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u0646\u064a\u0631 \u0639\u062a\u0633\u064a\u0648\u0646 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Nir Etzion", "mixname_en": "Nir Etzion | <span>HaCarmel</span>", "label_ru": "\u041d\u0438\u0440 \u042d\u0446\u0438\u043e\u043d", "mixname_ru": "\u041d\u0438\u0440 \u042d\u0446\u0438\u043e\u043d | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "8AB164799FDD03840F34E56CEDC41521", "id": "1282", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05dc \u05de\u05d5\u05e0\u05d3", "mixname_he": "\u05ea\u05dc \u05de\u05d5\u05e0\u05d3 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0644 \u0645\u0648\u0646\u062f", "mixname_ar": "\u062a\u0644 \u0645\u0648\u0646\u062f | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tel Mond", "mixname_en": "Tel Mond | <span>Sharon</span>", "label_ru": "\u0422\u0435\u043b\u044c \u041c\u043e\u043d\u0434", "mixname_ru": "\u0422\u0435\u043b\u044c \u041c\u043e\u043d\u0434 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "8ABA26C2573649144F96EC1C65D34AB4", "id": "583", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d0\u05dc\u05d3\u05d3", "mixname_he": "\u05db\u05e4\u05e8 \u05d0\u05dc\u05d3\u05d3 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0627\u0644\u062f\u0627\u062f", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0627\u0644\u062f\u0627\u062f | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kfar Eldad", "mixname_en": "Kfar Eldad | <span>Yehuda</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u042d\u043b\u044c\u0434\u0430\u0434", "mixname_ru": "\u041a\u0444\u0430\u0440 \u042d\u043b\u044c\u0434\u0430\u0434 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "8B111E44B7D1C5A741A682AD8ECB04E5", "id": "967", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e2\u05d5\u05e4\u05e8", "mixname_he": "\u05e2\u05d5\u05e4\u05e8 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0639\u0648\u0641\u0631", "mixname_ar": "\u0639\u0648\u0641\u0631 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Ofer", "mixname_en": "Ofer | <span>HaCarmel</span>", "label_ru": "\u041e\u0444\u0435\u0440", "mixname_ru": "\u041e\u0444\u0435\u0440 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "8B607F5274650F94F894CB9C41A461AD", "id": "913", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e0\u05d9\u05e8\u05d9\u05dd", "mixname_he": "\u05e0\u05d9\u05e8\u05d9\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0646\u064a\u0631\u064a\u0645", "mixname_ar": "\u0646\u064a\u0631\u064a\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Nirim", "mixname_en": "Nirim | <span>Gaza Envelope</span>", "label_ru": "\u041d\u0438\u0440\u0438\u043c", "mixname_ru": "\u041d\u0438\u0440\u0438\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "8B71DE04A0318B62D7C0C23A20754EB9", "id": "1139", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05d0\u05e9 \u05d4\u05e2\u05d9\u05df", "mixname_he": "\u05e8\u05d0\u05e9 \u05d4\u05e2\u05d9\u05df | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0631\u0627\u0633 \u0627\u0644\u0639\u064a\u0646", "mixname_ar": "\u0631\u0627\u0633 \u0627\u0644\u0639\u064a\u0646 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Rosh HaAyin", "mixname_en": "Rosh HaAyin | <span>Yarkon</span>", "label_ru": "\u0420\u043e\u0448 \u0445\u0430-\u0410\u0439\u043d", "mixname_ru": "\u0420\u043e\u0448 \u0445\u0430-\u0410\u0439\u043d | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "8BB6ED9FA0ED4538AAC20B188C27B86D", "id": "588", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05d1\u05e8\u05d0", "mixname_he": "\u05db\u05e4\u05e8 \u05d1\u05e8\u05d0 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u0628\u0631\u0627", "mixname_ar": "\u0643\u0641\u0631 \u0628\u0631\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kafr Bara", "mixname_en": "Kafr Bara | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0411\u0430\u0440\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0411\u0430\u0440\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "8BC57095B9291B72BE839F7BCC70F720", "id": "906", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05e0\u05d9\u05e8 \u05d9\u05e9\u05e8\u05d0\u05dc", "mixname_he": "\u05e0\u05d9\u05e8 \u05d9\u05e9\u05e8\u05d0\u05dc | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u064a\u0631 \u0627\u0633\u0631\u0627\u0626\u064a\u0644", "mixname_ar": "\u0646\u064a\u0631 \u0627\u0633\u0631\u0627\u0626\u064a\u0644 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Nir Israel", "mixname_en": "Nir Israel | <span>West Lachish</span>", "label_ru": "\u041d\u0438\u0440 \u0418\u0441\u0440\u0430\u044d\u043b\u044c", "mixname_ru": "\u041d\u0438\u0440 \u0418\u0441\u0440\u0430\u044d\u043b\u044c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "8C007EBDCAD22A8391E3308EC1C90382", "id": "1165", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e8\u05db\u05e1\u05d9\u05dd", "mixname_he": "\u05e8\u05db\u05e1\u05d9\u05dd | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0631\u062e\u0627\u0633\u064a\u0645", "mixname_ar": "\u0631\u062e\u0627\u0633\u064a\u0645 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Rechasim", "mixname_en": "Rechasim | <span>HaMifratz</span>", "label_ru": "\u0420\u0435\u0445\u0430\u0441\u0438\u043c", "mixname_ru": "\u0420\u0435\u0445\u0430\u0441\u0438\u043c | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "8C0F7AB874C492D5B22A20B8095B9395", "id": "735", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05d7\u05d5\u05dc\u05d4", "mixname_he": "\u05de\u05d7\u05d5\u05dc\u05d4 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0645\u062d\u0648\u0644\u0647", "mixname_ar": "\u0645\u062d\u0648\u0644\u0647 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Mehola", "mixname_en": "Mehola | <span>Bika'a</span>", "label_ru": "\u041c\u0435\u0445\u043e\u043b\u0430", "mixname_ru": "\u041c\u0435\u0445\u043e\u043b\u0430 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "8C3F04F1A506440FA1D6704AEA276995", "id": "925", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e0\u05e6\u05e8 \u05e1\u05e8\u05e0\u05d9", "mixname_he": "\u05e0\u05e6\u05e8 \u05e1\u05e8\u05e0\u05d9 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0646\u064a\u062a\u0633\u0631 \u0633\u0631\u0627\u0646\u064a", "mixname_ar": "\u0646\u064a\u062a\u0633\u0631 \u0633\u0631\u0627\u0646\u064a | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Netzer Sireni", "mixname_en": "Netzer Sireni | <span>HaShfela</span>", "label_ru": "\u041d\u0435\u0446\u0435\u0440 \u0421\u0438\u0440\u0435\u043d\u0438", "mixname_ru": "\u041d\u0435\u0446\u0435\u0440 \u0421\u0438\u0440\u0435\u043d\u0438 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "8C43C8E1A1AD93CCBD5006E2560DD8A1", "id": "1277", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05ea\u05d9\u05de\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05ea\u05d9\u05de\u05d5\u05e8\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062a\u064a\u0645\u0648\u0631\u064a\u0645", "mixname_ar": "\u062a\u064a\u0645\u0648\u0631\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Timorim", "mixname_en": "Timorim | <span>Lachish</span>", "label_ru": "\u0422\u0438\u043c\u043e\u0440\u0438\u043c", "mixname_ru": "\u0422\u0438\u043c\u043e\u0440\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "8C5ECA7B23172B2F438594E3487F8035", "id": "1016", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e2\u05db\u05d5", "mixname_he": "\u05e2\u05db\u05d5 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0639\u0643\u0627", "mixname_ar": "\u0639\u0643\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Acre", "mixname_en": "Acre | <span>Upper Galilee</span>", "label_ru": "\u0410\u043a\u043a\u043e", "mixname_ru": "\u0410\u043a\u043a\u043e | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "8CBA806DF1CBD1B9E0EED8A4E66CC462", "id": "664", "areaid": 17, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05db\u05e8\u05de\u05d9 \u05e7\u05d8\u05d9\u05e3", "mixname_he": "\u05db\u05e8\u05de\u05d9 \u05e7\u05d8\u05d9\u05e3 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0631\u0645\u064a \u0643\u0637\u064a\u0641", "mixname_ar": "\u0643\u0631\u0645\u064a \u0643\u0637\u064a\u0641 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Karmei Katif", "mixname_en": "Karmei Katif | <span>Yehuda</span>", "label_ru": "\u041a\u0430\u0440\u043c\u0435\u0439 \u041a\u0430\u0442\u0438\u0444", "mixname_ru": "\u041a\u0430\u0440\u043c\u0435\u0439 \u041a\u0430\u0442\u0438\u0444 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "8CDDF69434D78087823577784BBB4BE2", "id": "818", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0434\u0435\u0440\u043e\u0442", "label_he": "\u05de\u05e9\u05d2\u05d1 \u05d3\u05d1", "mixname_he": "\u05de\u05e9\u05d2\u05d1 \u05d3\u05d1 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u0633\u062c\u0627\u0641 \u062f\u0648\u0641", "mixname_ar": "\u0645\u0633\u062c\u0627\u0641 \u062f\u0648\u0641 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Misgav Dov", "mixname_en": "Misgav Dov | <span>Lachish</span>", "label_ru": "\u041c\u0438\u0441\u0433\u0430\u0432 \u0414\u043e\u0432", "mixname_ru": "\u041c\u0438\u0441\u0433\u0430\u0432 \u0414\u043e\u0432 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "8D236F5C41F8E2D7A63C3834DF81CFC7", "id": "563", "areaid": 6, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05db\u05d7\u05dc", "mixname_he": "\u05db\u05d7\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0627\u062d\u0627\u0644", "mixname_ar": "\u0643\u0627\u062d\u0627\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kahal", "mixname_en": "Kahal | <span>Upper Galilee</span>", "label_ru": "\u041a\u0430\u0445\u0430\u043b\u044c", "mixname_ru": "\u041a\u0430\u0445\u0430\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "8D567E31493344404775D888F904B48B", "id": "1208", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e9\u05d3\u05d4 \u05de\u05e9\u05d4", "mixname_he": "\u05e9\u05d3\u05d4 \u05de\u05e9\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0645\u0648\u0634\u064a\u0647", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0645\u0648\u0634\u064a\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Sdeh Moshe", "mixname_en": "Sdeh Moshe | <span>Lachish</span>", "label_ru": "\u0421\u0434\u044d \u041c\u043e\u0448\u0435", "mixname_ru": "\u0421\u0434\u044d \u041c\u043e\u0448\u0435 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "8E03D35B91BA3D10DFBC95B09B1C96C1", "id": "803", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e6\u05e4\u05d4 \u05e8\u05de\u05d5\u05df", "mixname_he": "\u05de\u05e6\u05e4\u05d4 \u05e8\u05de\u05d5\u05df | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u062a\u0633\u0641\u064a \u0631\u0645\u0648\u0646", "mixname_ar": "\u0645\u062a\u0633\u0641\u064a \u0631\u0645\u0648\u0646 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Mitzpeh Ramon", "mixname_en": "Mitzpeh Ramon | <span>South Negev</span>", "label_ru": "\u041c\u0438\u0446\u043f\u0435 \u0420\u0430\u043c\u043e\u043d", "mixname_ru": "\u041c\u0438\u0446\u043f\u0435 \u0420\u0430\u043c\u043e\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "8E49CD33AE2E8731BDAB7876EEF6B4AE", "id": "1230", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e9\u05d5\u05e8\u05e9\u05d9\u05dd", "mixname_he": "\u05e9\u05d5\u05e8\u05e9\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0634\u0648\u0631\u0634\u064a\u0645", "mixname_ar": "\u0634\u0648\u0631\u0634\u064a\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Shorashim", "mixname_en": "Shorashim | <span>Center Galilee</span>", "label_ru": "\u0428\u043e\u0440\u0430\u0448\u0438\u043c", "mixname_ru": "\u0428\u043e\u0440\u0430\u0448\u0438\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "8E704FC25042F194392017717D7F09CB", "id": "847", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05e0\u05d2\u05d1\u05d4", "mixname_he": "\u05e0\u05d2\u05d1\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u062c\u0628\u0627", "mixname_ar": "\u0646\u062c\u0628\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Negba", "mixname_en": "Negba | <span>Lachish</span>", "label_ru": "\u041d\u0435\u0433\u0431\u0430", "mixname_ru": "\u041d\u0435\u0433\u0431\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "8EB01C72FDD179B9AB071E100A1484D4", "id": "1138", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e8\u05d0\u05e9 \u05d4\u05e0\u05e7\u05e8\u05d4", "mixname_he": "\u05e8\u05d0\u05e9 \u05d4\u05e0\u05e7\u05e8\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0631\u0627\u0633 \u0627\u0644\u0646\u0627\u0642\u0648\u0631\u0629", "mixname_ar": "\u0631\u0627\u0633 \u0627\u0644\u0646\u0627\u0642\u0648\u0631\u0629 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Rosh HaNikra", "mixname_en": "Rosh HaNikra | <span>Confrontation Line</span>", "label_ru": "\u0420\u043e\u0448 \u0445\u0430-\u041d\u0438\u043a\u0440\u0430", "mixname_ru": "\u0420\u043e\u0448 \u0445\u0430-\u041d\u0438\u043a\u0440\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "8EBAEAD31698F1DC41B39964AA67CB3A", "id": "581", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05db\u05e4\u05e8 \u05d0\u05d5\u05e8\u05d9\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05d0\u05d5\u05e8\u05d9\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0623\u0648\u0631\u064a\u0627", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0623\u0648\u0631\u064a\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kfar Uriah", "mixname_en": "Kfar Uriah | <span>Shfelat Yehuda</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0423\u0440\u0438\u044f", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0423\u0440\u0438\u044f | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "8EF394358A555E7BE5DDC6E9C256FB25", "id": "180", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d1\u05d9\u05ea \u05d1\u05e8\u05dc", "mixname_he": "\u05d1\u05d9\u05ea \u05d1\u05e8\u05dc | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0628\u064a\u0631\u0644", "mixname_ar": "\u0628\u064a\u062a \u0628\u064a\u0631\u0644 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Beit Berl", "mixname_en": "Beit Berl | <span>Sharon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0411\u0435\u0440\u043b", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0411\u0435\u0440\u043b | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "8F20C14F2844EACED3435A99039F3632", "id": "1018", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e2\u05dc\u05d5\u05de\u05d9\u05dd", "mixname_he": "\u05e2\u05dc\u05d5\u05de\u05d9\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0639\u0644\u0648\u0645\u064a\u0645", "mixname_ar": "\u0639\u0644\u0648\u0645\u064a\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Alumim", "mixname_en": "Alumim | <span>Gaza Envelope</span>", "label_ru": "\u0410\u043b\u0443\u043c\u0438\u043c", "mixname_ru": "\u0410\u043b\u0443\u043c\u0438\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "8F6567837FD96DEC0DDC79D79FF98F9F", "id": "452", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d7\u05d9\u05e0\u05e0\u05d9\u05ea", "mixname_he": "\u05d7\u05d9\u05e0\u05e0\u05d9\u05ea | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u064a\u0646\u0627\u0646\u064a\u062a", "mixname_ar": "\u062d\u064a\u0646\u0627\u0646\u064a\u062a | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Hinanit", "mixname_en": "Hinanit | <span>Shomron</span>", "label_ru": "\u0425\u0438\u043d\u0430\u043d\u0438\u0442", "mixname_ru": "\u0425\u0438\u043d\u0430\u043d\u0438\u0442 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "8F6908715AAF0CD492954A6C7CFB3E98", "id": "719", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df \u05e2\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df \u05e2\u05d9\u05dc\u05d9\u05ea | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0648\u062f\u064a\u0639\u064a\u0646 \u0639\u064a\u0644\u064a\u062a", "mixname_ar": "\u0645\u0648\u062f\u064a\u0639\u064a\u0646 \u0639\u064a\u0644\u064a\u062a | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Modi'in Illit", "mixname_en": "Modi'in Illit | <span>Yarkon</span>", "label_ru": "\u041c\u043e\u0434\u0438\u0438\u043d \u0418\u043b\u0438\u0442", "mixname_ru": "\u041c\u043e\u0434\u0438\u0438\u043d \u0418\u043b\u0438\u0442 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "8FD85BCA9CD3F428358A530EA5D9EF30", "id": "1086", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e6\u05d5\u05e8\u05d9\u05ea \u05d2\u05d9\u05dc\u05d5\u05df", "mixname_he": "\u05e6\u05d5\u05e8\u05d9\u05ea \u05d2\u05d9\u05dc\u05d5\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062a\u0633\u0648\u0631\u064a\u062a\u060c \u062c\u064a\u0644\u0648\u0646", "mixname_ar": "\u062a\u0633\u0648\u0631\u064a\u062a\u060c \u062c\u064a\u0644\u0648\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Tzurit Gilon", "mixname_en": "Tzurit Gilon | <span>Upper Galilee</span>", "label_ru": "\u0426\u0443\u0440\u0438\u0442 \u0413\u0438\u043b\u043e\u043d", "mixname_ru": "\u0426\u0443\u0440\u0438\u0442 \u0413\u0438\u043b\u043e\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "90316C5C42B9D4F79DCDB8BF850797BB", "id": "237", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05e0\u05d9 \u05d1\u05e8\u05e7", "mixname_he": "\u05d1\u05e0\u05d9 \u05d1\u05e8\u05e7 | <span>\u05d3\u05df</span>", "label_ar": "\u0628\u0646\u064a \u0628\u0631\u0627\u0643", "mixname_ar": "\u0628\u0646\u064a \u0628\u0631\u0627\u0643 | <span>\u062f\u0627\u0646</span>", "label_en": "Bnei Brak", "mixname_en": "Bnei Brak | <span>Dan</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0411\u0440\u0430\u043a", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0411\u0440\u0430\u043a | <span>\u0414\u0430\u043d</span>"}, {"value": "906F4F5F8C41FD8DC7CCDDE57440B5D4", "id": "762", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05de\u05e1\u05d9\u05dc\u05d5\u05ea", "mixname_he": "\u05de\u05e1\u05d9\u05dc\u05d5\u05ea | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0645\u0633\u064a\u0644\u0648\u062a", "mixname_ar": "\u0645\u0633\u064a\u0644\u0648\u062a | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Messilot", "mixname_en": "Messilot | <span>Beit She'an Valley</span>", "label_ru": "\u041c\u0435\u0441\u0438\u043b\u043e\u0442", "mixname_ru": "\u041c\u0435\u0441\u0438\u043b\u043e\u0442 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "90ADDF047D2D350FD6ADEC8F50E99714", "id": "731", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05de\u05d6\u05d5\u05e8", "mixname_he": "\u05de\u05d6\u05d5\u05e8 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0627\u0632\u0648\u0631", "mixname_ar": "\u0645\u0627\u0632\u0648\u0631 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Mazor", "mixname_en": "Mazor | <span>Yarkon</span>", "label_ru": "\u041c\u0430\u0437\u043e\u0440", "mixname_ru": "\u041c\u0430\u0437\u043e\u0440 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "90C251389B7DD6EF38C7A969261C6AD1", "id": "1080", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0440\u0435\u0434\u043d\u044f\u044f \u0410\u0440\u0430\u0432\u0430", "label_he": "\u05e6\u05d5\u05e7\u05d9\u05dd", "mixname_he": "\u05e6\u05d5\u05e7\u05d9\u05dd | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u062a\u0633\u0648\u0643\u064a\u0645", "mixname_ar": "\u062a\u0633\u0648\u0643\u064a\u0645 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Tzukim", "mixname_en": "Tzukim | <span>Arava</span>", "label_ru": "\u0426\u0443\u043a\u0438\u043c", "mixname_ru": "\u0426\u0443\u043a\u0438\u043c | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "90C7F2943C4A79DBC07E0B120D81777C", "id": "317", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d2\u05d5\u05e8\u05df", "mixname_he": "\u05d2\u05d5\u05e8\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062c\u0648\u0631\u0646", "mixname_ar": "\u062c\u0648\u0631\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Goren", "mixname_en": "Goren | <span>Confrontation Line</span>", "label_ru": "\u0413\u043e\u0440\u0435\u043d", "mixname_ru": "\u0413\u043e\u0440\u0435\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "90F06858C46894889FC448D38A02744B", "id": "1331", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "Gilboa Regional Council", "label_he": "\u05d2\u05d3\u05d9\u05e9", "mixname_he": "\u05d2\u05d3\u05d9\u05e9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_en": "Gadish", "mixname_en": "Gadish | <span>HaAmakim</span>"}, {"value": "90F988CAC7D2490C98CA62704B3C9125", "id": "184", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05d3\u05d2\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05d3\u05d2\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u062f\u062c\u0627\u0646", "mixname_ar": "\u0628\u064a\u062a \u062f\u062c\u0627\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Beit Dagan", "mixname_en": "Beit Dagan | <span>HaShfela</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0414\u0430\u0433\u0430\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0414\u0430\u0433\u0430\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "90FDCEF1DF4E4B8564B8E1C0E112237A", "id": "313", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d2\u05d3\u05d5\u05ea", "mixname_he": "\u05d2\u05d3\u05d5\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062c\u0627\u062f\u0648\u062a", "mixname_ar": "\u062c\u0627\u062f\u0648\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Gadot", "mixname_en": "Gadot | <span>Upper Galilee</span>", "label_ru": "\u0413\u0430\u0434\u043e\u0442", "mixname_ru": "\u0413\u0430\u0434\u043e\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "912CAB0D81DDB5BA675AC3CF47AF0737", "id": "157", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05d1\u05d0\u05e8 \u05d0\u05d5\u05e8\u05d4", "mixname_he": "\u05d1\u05d0\u05e8 \u05d0\u05d5\u05e8\u05d4 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0628\u0626\u064a\u0631 \u0623\u0648\u0631\u0647", "mixname_ar": "\u0628\u0626\u064a\u0631 \u0623\u0648\u0631\u0647 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Be'er Ora", "mixname_en": "Be'er Ora | <span>Arava</span>", "label_ru": "\u0411\u0435\u044d\u0440 \u041e\u0440\u0430", "mixname_ru": "\u0411\u0435\u044d\u0440 \u041e\u0440\u0430 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "913B06F61996CE3731BDF492198B7D1B", "id": "1283", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05ea\u05dc \u05e2\u05d3\u05e9\u05d9\u05dd", "mixname_he": "\u05ea\u05dc \u05e2\u05d3\u05e9\u05d9\u05dd | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062a\u0644 \u0639\u062f\u0627\u0634\u064a\u0645", "mixname_ar": "\u062a\u0644 \u0639\u062f\u0627\u0634\u064a\u0645 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Tel Adashim", "mixname_en": "Tel Adashim | <span>HaAmakim</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0410\u0434\u0430\u0448\u0438\u043c", "mixname_ru": "\u0422\u0435\u043b\u044c \u0410\u0434\u0430\u0448\u0438\u043c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "916A49133125B2C2F23B7B9B2FFEACE7", "id": "611", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05db\u05e4\u05e8 \u05d7\u05d9\u05d8\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d7\u05d9\u05d8\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062d\u064a\u0637\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062d\u064a\u0637\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Kfar Hittim", "mixname_en": "Kfar Hittim | <span>Lower Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0425\u0438\u0442\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0425\u0438\u0442\u0438\u043c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "91953F7FC1D1E860A6154E035693DE1D", "id": "80", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05d0\u05d7\u05d5\u05d6\u05dd", "mixname_he": "\u05d0\u05d7\u05d5\u05d6\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u062d\u0648\u0632\u0627\u0645", "mixname_ar": "\u0623\u062d\u0648\u0632\u0627\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ahuzam", "mixname_en": "Ahuzam | <span>Lachish</span>", "label_ru": "\u0410\u0445\u0443\u0437\u0430\u043c", "mixname_ru": "\u0410\u0445\u0443\u0437\u0430\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "91C0EAB7E2C14C370DEDF2B2FFE06635", "id": "952", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0440\u0435\u0434\u043d\u044f\u044f \u0410\u0440\u0430\u0432\u0430", "label_he": "\u05e1\u05e4\u05d9\u05e8", "mixname_he": "\u05e1\u05e4\u05d9\u05e8 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0633\u0641\u064a\u0631", "mixname_ar": "\u0633\u0641\u064a\u0631 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Sapir", "mixname_en": "Sapir | <span>Arava</span>", "label_ru": "\u0421\u0430\u043f\u0438\u0440", "mixname_ru": "\u0421\u0430\u043f\u0438\u0440 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "91FBC36C68083568A3BF82B000B36D10", "id": "416", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d6\u05db\u05e8\u05d5\u05df \u05d9\u05e2\u05e7\u05d1", "mixname_he": "\u05d6\u05db\u05e8\u05d5\u05df \u05d9\u05e2\u05e7\u05d1 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0632\u062e\u0631\u0648\u0646 \u064a\u0639\u0642\u0648\u0628", "mixname_ar": "\u0632\u062e\u0631\u0648\u0646 \u064a\u0639\u0642\u0648\u0628 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Zichron Yacov", "mixname_en": "Zichron Yacov | <span>Menashe</span>", "label_ru": "\u0417\u0438\u0445\u0440\u043e\u043d \u042f\u0430\u043a\u043e\u0432", "mixname_ru": "\u0417\u0438\u0445\u0440\u043e\u043d \u042f\u0430\u043a\u043e\u0432 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "920C9262BC8E584603B413AF4D376B30", "id": "177", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0440\u0435\u043d\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05d0\u05dc\u05e2\u05d6\u05e8\u05d9", "mixname_he": "\u05d1\u05d9\u05ea \u05d0\u05dc\u05e2\u05d6\u05e8\u05d9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u064a\u062a \u0627\u0644\u064a\u0639\u0632\u0631\u064a", "mixname_ar": "\u0628\u064a\u062a \u0627\u0644\u064a\u0639\u0632\u0631\u064a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Beit Elazari", "mixname_en": "Beit Elazari | <span>Lachish</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u042d\u043b\u044c\u0430\u0437\u0430\u0440\u0438", "mixname_ru": "\u0411\u0435\u0439\u0442 \u042d\u043b\u044c\u0430\u0437\u0430\u0440\u0438 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "920E306DD267D6056D05AED17E49026B", "id": "304", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u043e\u043d\u0430", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05e0\u05d9\u05dc''\u05d9", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05e0\u05d9\u05dc''\u05d9 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0646\u064a\u0644\u064a", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0646\u064a\u0644\u064a | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Givat Nili", "mixname_en": "Givat Nili | <span>Wadi Ara</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u041d\u0438\u043b\u0438", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u041d\u0438\u043b\u0438 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "9216D5B8A38971E6A15C946FABF2BD91", "id": "131", "areaid": 17, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05d0\u05de\u05e6\u05d9\u05d4", "mixname_he": "\u05d0\u05de\u05e6\u05d9\u05d4 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0623\u0645\u062a\u0633\u064a\u0627", "mixname_ar": "\u0623\u0645\u062a\u0633\u064a\u0627 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Amatzia", "mixname_en": "Amatzia | <span>Yehuda</span>", "label_ru": "\u0410\u043c\u0430\u0446\u0438\u044f", "mixname_ru": "\u0410\u043c\u0430\u0446\u0438\u044f | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "9235009F8414E10C6193D6C9E9668E23", "id": "139", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05e8\u05d2\u05de\u05df", "mixname_he": "\u05d0\u05e8\u05d2\u05de\u05df | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0623\u0631\u062c\u0645\u0627\u0646", "mixname_ar": "\u0623\u0631\u062c\u0645\u0627\u0646 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Argaman", "mixname_en": "Argaman | <span>Bika'a</span>", "label_ru": "\u0410\u0440\u0433\u0430\u043c\u0430\u043d", "mixname_ru": "\u0410\u0440\u0433\u0430\u043c\u0430\u043d | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "925F592F99BB3976F30545F246406707", "id": "943", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e1\u05db\u05e0\u05d9\u05df", "mixname_he": "\u05e1\u05db\u05e0\u05d9\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0633\u062e\u0646\u064a\u0646", "mixname_ar": "\u0633\u062e\u0646\u064a\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Sakhnin", "mixname_en": "Sakhnin | <span>Center Galilee</span>", "label_ru": "\u0421\u0430\u0445\u043d\u0438\u043d", "mixname_ru": "\u0421\u0430\u0445\u043d\u0438\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "929A4B56FA1AC53B1A9EF066782564C4", "id": "1014", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e2\u05d9\u05e0\u05ea", "mixname_he": "\u05e2\u05d9\u05e0\u05ea | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646\u0627\u062a", "mixname_ar": "\u0639\u064a\u0646\u0627\u062a | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Einat", "mixname_en": "Einat | <span>Yarkon</span>", "label_ru": "\u042d\u0439\u043d\u0430\u0442", "mixname_ru": "\u042d\u0439\u043d\u0430\u0442 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "92D29777A66382EC583505EB772E485A", "id": "421", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d6\u05e8\u05d5\u05e2\u05d4", "mixname_he": "\u05d6\u05e8\u05d5\u05e2\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0632\u0631\u0648\u0639\u0647", "mixname_ar": "\u0632\u0631\u0648\u0639\u0647 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Zru'a", "mixname_en": "Zru'a | <span>West Negev</span>", "label_ru": "\u0417\u0440\u0443\u0430", "mixname_ru": "\u0417\u0440\u0443\u0430 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "92E71C26E4317F7FA59267248E4D8EBD", "id": "639", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05db\u05e4\u05e8 \u05e1\u05d9\u05dc\u05d1\u05e8", "mixname_he": "\u05db\u05e4\u05e8 \u05e1\u05d9\u05dc\u05d1\u05e8 | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0641\u0631 \u0633\u064a\u0644\u0641\u064a\u0631", "mixname_ar": "\u0643\u0641\u0631 \u0633\u064a\u0644\u0641\u064a\u0631 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Kfar Silver", "mixname_en": "Kfar Silver | <span>West Lachish</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0421\u0438\u043b\u044c\u0432\u0435\u0440", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0421\u0438\u043b\u044c\u0432\u0435\u0440 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "92FBD1C0A6F6F743CBD23C4001FFA5D0", "id": "960", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e2\u05d3\u05d9", "mixname_he": "\u05e2\u05d3\u05d9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0639\u062f\u064a", "mixname_ar": "\u0639\u062f\u064a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Adi", "mixname_en": "Adi | <span>HaAmakim</span>", "label_ru": "\u0410\u0434\u0438", "mixname_ru": "\u0410\u0434\u0438 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "9378CB017A5102993CF5D3D685BD0695", "id": "903", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e0\u05d9\u05e8 \u05d3\u05d5\u05d3", "mixname_he": "\u05e0\u05d9\u05e8 \u05d3\u05d5\u05d3 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0646\u064a\u0631 \u062f\u0627\u0641\u064a\u062f", "mixname_ar": "\u0646\u064a\u0631 \u062f\u0627\u0641\u064a\u062f | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Nir David", "mixname_en": "Nir David | <span>Beit She'an Valley</span>", "label_ru": "\u041d\u0438\u0440 \u0414\u0430\u0432\u0438\u0434", "mixname_ru": "\u041d\u0438\u0440 \u0414\u0430\u0432\u0438\u0434 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "938D9359654D6C71BD317FE705BEAD73", "id": "966", "areaid": 25, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e2\u05d5\u05de\u05e8", "mixname_he": "\u05e2\u05d5\u05de\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0639\u0648\u0645\u0631", "mixname_ar": "\u0639\u0648\u0645\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Omer", "mixname_en": "Omer | <span>Center Negev</span>", "label_ru": "\u041e\u043c\u0435\u0440", "mixname_ru": "\u041e\u043c\u0435\u0440 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "9394E108E211B6E1C764AA335FA1FDE8", "id": "115", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05d0\u05dc\u05d9\u05e4\u05d6 \u05d5\u05de\u05db\u05e8\u05d5\u05ea \u05ea\u05de\u05e0\u05e2", "mixname_he": "\u05d0\u05dc\u05d9\u05e4\u05d6 \u05d5\u05de\u05db\u05e8\u05d5\u05ea \u05ea\u05de\u05e0\u05e2 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0625\u064a\u0644\u064a\u0641\u0627\u0632\u0648\u062a\u0645\u0646\u0639", "mixname_ar": "\u0625\u064a\u0644\u064a\u0641\u0627\u0632\u0648\u062a\u0645\u0646\u0639 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Elipaz and Timna Mines", "mixname_en": "Elipaz and Timna Mines | <span>Arava</span>", "label_ru": "\u042d\u043b\u0438\u0444\u0430\u0437 \u0438 \u041a\u043e\u043f\u0438 \u0422\u0438\u043c\u043d\u044b", "mixname_ru": "\u042d\u043b\u0438\u0444\u0430\u0437 \u0438 \u041a\u043e\u043f\u0438 \u0422\u0438\u043c\u043d\u044b | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "93C741911A107D008CF35862098DB51C", "id": "1356", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05de\u05d2\u05d9\u05dc\u05d5\u05ea", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05de\u05d2\u05d9\u05dc\u05d5\u05ea | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0645\u0631\u0643\u0627\u0632 \u0627\u064a\u0632\u0648\u0631\u064a \u0645\u062c\u064a\u0644\u0648\u062a", "mixname_ar": "\u0645\u0631\u0643\u0627\u0632 \u0627\u064a\u0632\u0648\u0631\u064a \u0645\u062c\u064a\u0644\u0648\u062a | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Megilot Regional Cetner", "mixname_en": "Megilot Regional Cetner | <span>Dead Sea</span>", "label_ru": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0426\u0435\u043d\u0442\u0440 \u041c\u0435\u0433\u0438\u043b\u043e\u0442", "mixname_ru": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0426\u0435\u043d\u0442\u0440 \u041c\u0435\u0433\u0438\u043b\u043e\u0442 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "93D90D42E8ECC730853C3206F8B11C22", "id": "1048", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e4\u05d0\u05e8\u05e7 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e8\u05d0\u05dd", "mixname_he": "\u05e4\u05d0\u05e8\u05e7 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e8\u05d0\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0627\u0631\u0643 \u0635\u0646\u0627\u0639\u0629 \u0631\u0627\u0645", "mixname_ar": "\u0628\u0627\u0631\u0643 \u0635\u0646\u0627\u0639\u0629 \u0631\u0627\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Re'em Industrial Park", "mixname_en": "Re'em Industrial Park | <span>Lachish</span>", "label_ru": "\u0418\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u0430\u0440\u043a \u0420\u0430\u043c", "mixname_ru": "\u0418\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u0430\u0440\u043a \u0420\u0430\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "9412BB39B762E56E11035B57F34C5785", "id": "70", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e7\u05d9\u05e1\u05e8\u05d9\u05d4", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e7\u05d9\u05e1\u05e8\u05d9\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0642\u064a\u0633\u0627\u0631\u064a\u0627", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0642\u064a\u0633\u0627\u0631\u064a\u0627 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Caesarea Industrial Zone", "mixname_en": "Caesarea Industrial Zone | <span>Menashe</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041a\u0435\u0439\u0441\u0430\u0440\u0438\u044f", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041a\u0435\u0439\u0441\u0430\u0440\u0438\u044f | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "94652790FC7674C7EAE63486FD164DC3", "id": "779", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05d0\u05e4\u05e8\u05d9\u05dd", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05d0\u05e4\u05e8\u05d9\u05dd | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u0627\u0641\u0631\u0627\u064a\u0645", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u0627\u0641\u0631\u0627\u064a\u0645 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Ma'aleh Ephraim", "mixname_en": "Ma'aleh Ephraim | <span>Bika'a</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u042d\u0444\u0440\u0430\u0438\u043c", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u042d\u0444\u0440\u0430\u0438\u043c | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "94820C1D0F014B4779520CDFFFD9D096", "id": "633", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0434\u0435\u0440\u043e\u0442", "label_he": "\u05db\u05e4\u05e8 \u05de\u05e8\u05d3\u05db\u05d9", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05e8\u05d3\u05db\u05d9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0645\u0631\u062f\u062e\u0627\u064a", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0645\u0631\u062f\u062e\u0627\u064a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kfar Mordechai", "mixname_en": "Kfar Mordechai | <span>Lachish</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041c\u043e\u0440\u0434\u0435\u0445\u0430\u0439", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041c\u043e\u0440\u0434\u0435\u0445\u0430\u0439 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "949FA77C8DA2ACFC48267803DD81ED32", "id": "1262", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e9\u05e4\u05e8\u05e2\u05dd", "mixname_he": "\u05e9\u05e4\u05e8\u05e2\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0634\u0641\u0627\u0639\u0645\u0631\u0648", "mixname_ar": "\u0634\u0641\u0627\u0639\u0645\u0631\u0648 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Shfaram", "mixname_en": "Shfaram | <span>Center Galilee</span>", "label_ru": "\u0428\u0444\u0430\u0440\u0430\u043c", "mixname_ru": "\u0428\u0444\u0430\u0440\u0430\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "94C0C323D21B680B9876E7BBB4ED9027", "id": "1036", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e2\u05e8\u05d0\u05d1\u05d4", "mixname_he": "\u05e2\u05e8\u05d0\u05d1\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0639\u0631\u0627\u0628\u0647", "mixname_ar": "\u0639\u0631\u0627\u0628\u0647 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Arraba", "mixname_en": "Arraba | <span>Center Galilee</span>", "label_ru": "\u0410\u0440\u0430\u0431\u0430", "mixname_ru": "\u0410\u0440\u0430\u0431\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "94E1C15F7FC5D5810D86494F971E34BF", "id": "1243", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05e9\u05dc\u05d5\u05de\u05d9", "mixname_he": "\u05e9\u05dc\u05d5\u05de\u05d9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0634\u0644\u0648\u0645\u064a", "mixname_ar": "\u0634\u0644\u0648\u0645\u064a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Shlomi", "mixname_en": "Shlomi | <span>Confrontation Line</span>", "label_ru": "\u0428\u043b\u043e\u043c\u0438", "mixname_ru": "\u0428\u043b\u043e\u043c\u0438 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "95096C0E571E855A0E7E0585EB198795", "id": "680", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05dc\u05d5\u05d8\u05dd \u05d5\u05d7\u05de\u05d3\u05d5\u05df", "mixname_he": "\u05dc\u05d5\u05d8\u05dd \u05d5\u05d7\u05de\u05d3\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0644\u0648\u0637\u0645 \u0648\u062d\u0645\u062f\u0648\u0646", "mixname_ar": "\u0644\u0648\u0637\u0645 \u0648\u062d\u0645\u062f\u0648\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Lotem and Hamdon", "mixname_en": "Lotem and Hamdon | <span>Center Galilee</span>", "label_ru": "\u041b\u043e\u0442\u0435\u043c \u0438 \u0425\u0430\u043c\u0434\u043e\u043d", "mixname_ru": "\u041b\u043e\u0442\u0435\u043c \u0438 \u0425\u0430\u043c\u0434\u043e\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "950D3DA824068BCD1664DF51DBD4B286", "id": "619", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05db\u05e4\u05e8 \u05d9\u05d4\u05d5\u05e9\u05e2", "mixname_he": "\u05db\u05e4\u05e8 \u05d9\u05d4\u05d5\u05e9\u05e2 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0631 \u064a\u0647\u0648\u0634\u0639", "mixname_ar": "\u0643\u0641\u0631 \u064a\u0647\u0648\u0634\u0639 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Yehoshua", "mixname_en": "Kfar Yehoshua | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0418\u0435\u0448\u0443\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0418\u0435\u0448\u0443\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "956F74875D7FF5C9C416341F70BB8334", "id": "908", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e0\u05d9\u05e8 \u05e2\u05d5\u05d6", "mixname_he": "\u05e0\u05d9\u05e8 \u05e2\u05d5\u05d6 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0646\u064a\u0631 \u0639\u0648\u0632", "mixname_ar": "\u0646\u064a\u0631 \u0639\u0648\u0632 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Nir Oz", "mixname_en": "Nir Oz | <span>Gaza Envelope</span>", "label_ru": "\u041d\u0438\u0440 \u041e\u0437", "mixname_ru": "\u041d\u0438\u0440 \u041e\u0437 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "95AE5070F3CC181AF7DD9CA04DCE39B1", "id": "1256", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05e9\u05e2\u05e8 \u05d4\u05e2\u05de\u05e7\u05d9\u05dd", "mixname_he": "\u05e9\u05e2\u05e8 \u05d4\u05e2\u05de\u05e7\u05d9\u05dd | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0634\u0627\u0639\u0631 \u0647\u0639\u0627\u0645\u0643\u064a\u0645", "mixname_ar": "\u0634\u0627\u0639\u0631 \u0647\u0639\u0627\u0645\u0643\u064a\u0645 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Sha'ar HaAmakim", "mixname_en": "Sha'ar HaAmakim | <span>HaAmakim</span>", "label_ru": "\u0428\u0430\u0430\u0440 \u0445\u0430-\u0410\u043c\u0430\u043a\u0438\u043c", "mixname_ru": "\u0428\u0430\u0430\u0440 \u0445\u0430-\u0410\u043c\u0430\u043a\u0438\u043c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "95AF92D5FFAD5A8C7D053E4A740FA061", "id": "1105", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05e7\u05d5\u05de\u05de\u05d9\u05d5\u05ea", "mixname_he": "\u05e7\u05d5\u05de\u05de\u05d9\u05d5\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0648\u0645\u0645\u064a\u0648\u062a", "mixname_ar": "\u0643\u0648\u0645\u0645\u064a\u0648\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kommemiut", "mixname_en": "Kommemiut | <span>Lachish</span>", "label_ru": "\u041a\u043e\u043c\u0435\u043c\u0438\u044e\u0442", "mixname_ru": "\u041a\u043e\u043c\u0435\u043c\u0438\u044e\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "95D7DD28EB1FB1F17CCF858931744959", "id": "1385", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e0.\u05e2.\u05de", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e0.\u05e2.\u05de | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0646.\u0639.\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0646.\u0639.\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "NAM Industrial Zone", "mixname_en": "NAM Industrial Zone | <span>West Negev</span>", "label_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u041d\u0410\u041c", "mixname_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u041d\u0410\u041c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "95E7D39F604A3073D438D568D6C7C1FC", "id": "451", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d7\u05d9\u05d1\u05ea \u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05d7\u05d9\u05d1\u05ea \u05e6\u05d9\u05d5\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u064a\u0641\u0627\u062a \u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u062d\u064a\u0641\u0627\u062a \u062a\u0633\u064a\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Hibat Zion", "mixname_en": "Hibat Zion | <span>Sharon</span>", "label_ru": "\u0425\u0438\u0431\u0430\u0442 \u0426\u0438\u043e\u043d", "mixname_ru": "\u0425\u0438\u0431\u0430\u0442 \u0426\u0438\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "96418DF17D1E6CAD58FC3455A546ED56", "id": "24", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d0\u05d5\u05d3\u05dd", "mixname_he": "\u05d0\u05d5\u05d3\u05dd | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0627\u0648\u062f\u0645", "mixname_ar": "\u0627\u0648\u062f\u0645 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Odem", "mixname_en": "Odem | <span>North Golan</span>", "label_ru": "\u041e\u0434\u0435\u043c", "mixname_ru": "\u041e\u0434\u0435\u043c | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "9676C0810665DB36B8B38673C09DE4C8", "id": "825", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05de\u05e9\u05de\u05e8 \u05d3\u05d5\u05d3", "mixname_he": "\u05de\u05e9\u05de\u05e8 \u05d3\u05d5\u05d3 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0645\u0634\u0645\u0627\u0631 \u062f\u0627\u0641\u064a\u062f", "mixname_ar": "\u0645\u0634\u0645\u0627\u0631 \u062f\u0627\u0641\u064a\u062f | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Mishmar David", "mixname_en": "Mishmar David | <span>HaShfela</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0414\u0430\u0432\u0438\u0434", "mixname_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0414\u0430\u0432\u0438\u0434 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "96D7D01AA2BDFD04A667BD1F1FD737DB", "id": "407", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d4\u05e8\u05e8\u05d9\u05ea \u05d9\u05d7\u05d3", "mixname_he": "\u05d4\u05e8\u05e8\u05d9\u05ea \u05d9\u05d7\u05d3 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0647\u0631\u0631\u064a\u062a-\u064a\u0627\u062d\u062f", "mixname_ar": "\u0647\u0631\u0631\u064a\u062a-\u064a\u0627\u062d\u062f | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Hararit Yachad", "mixname_en": "Hararit Yachad | <span>Center Galilee</span>", "label_ru": "\u0425\u0430\u0440\u0430\u0440\u0438\u0442 \u042f\u0445\u0430\u0434", "mixname_ru": "\u0425\u0430\u0440\u0430\u0440\u0438\u0442 \u042f\u0445\u0430\u0434 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "9725CCCC7ED34ADD2726C7300BE72265", "id": "1174", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e8\u05de\u05ea \u05d4\u05db\u05d5\u05d1\u05e9", "mixname_he": "\u05e8\u05de\u05ea \u05d4\u05db\u05d5\u05d1\u05e9 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0631\u0645\u0627\u062a \u0647\u062e\u0648\u0628\u0634", "mixname_ar": "\u0631\u0645\u0627\u062a \u0647\u062e\u0648\u0628\u0634 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ramat HaKovesh", "mixname_en": "Ramat HaKovesh | <span>Sharon</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0445\u0430-\u041a\u043e\u0432\u0435\u0448", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0445\u0430-\u041a\u043e\u0432\u0435\u0448 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "973442375BAAF0BCDECD8334E285B362", "id": "418", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d6\u05de\u05e8", "mixname_he": "\u05d6\u05de\u05e8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0632\u064a\u0645\u0631", "mixname_ar": "\u0632\u064a\u0645\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Zemer", "mixname_en": "Zemer | <span>Sharon</span>", "label_ru": "\u0417\u0435\u043c\u0435\u0440", "mixname_ru": "\u0417\u0435\u043c\u0435\u0440 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "974F315DE1078A67581AB448BFBB2C28", "id": "324", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05d2\u05d9\u05dc\u05ea", "mixname_he": "\u05d2\u05d9\u05dc\u05ea | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062c\u064a\u0644\u0627\u062a", "mixname_ar": "\u062c\u064a\u0644\u0627\u062a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Gilat", "mixname_en": "Gilat | <span>West Negev</span>", "label_ru": "\u0413\u0438\u043b\u0430\u0442", "mixname_ru": "\u0413\u0438\u043b\u0430\u0442 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "97CE4FB6DB9CD7140DC8D9D4FF4EE3E4", "id": "785", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05de\u05db\u05de\u05e9", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05de\u05db\u05de\u05e9 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u0645\u062e\u0645\u0634", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u0645\u062e\u0645\u0634 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Ma'aleh Michmash", "mixname_en": "Ma'aleh Michmash | <span>Shomron</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u041c\u0438\u0445\u043c\u0430\u0448", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u041c\u0438\u0445\u043c\u0430\u0448 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "97E524E9BB3E95A68E1DE96710BA6B31", "id": "1223", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e9\u05d5\u05d0\u05d1\u05d4", "mixname_he": "\u05e9\u05d5\u05d0\u05d1\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0634\u0648\u0623\u0641\u0627", "mixname_ar": "\u0634\u0648\u0623\u0641\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Shoeva", "mixname_en": "Shoeva | <span>Shfelat Yehuda</span>", "label_ru": "\u0428\u043e\u0435\u0432\u0430", "mixname_ru": "\u0428\u043e\u0435\u0432\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "97FD468F34CA270CFBDACFC664E4F438", "id": "323", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d2\u05d9\u05d6\u05d5", "mixname_he": "\u05d2\u05d9\u05d6\u05d5 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062c\u064a\u0632\u0648", "mixname_ar": "\u062c\u064a\u0632\u0648 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Gizo", "mixname_en": "Gizo | <span>Shfelat Yehuda</span>", "label_ru": "\u0413\u0438\u0437\u043e", "mixname_ru": "\u0413\u0438\u0437\u043e | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "97FE8D528FD352F96B8B7DBBEC0182B9", "id": "1169", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e8\u05de\u05d5\u05ea \u05de\u05d0\u05d9\u05e8", "mixname_he": "\u05e8\u05de\u05d5\u05ea \u05de\u05d0\u05d9\u05e8 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0631\u0627\u0645\u0648\u062a \u0645\u0626\u064a\u0631", "mixname_ar": "\u0631\u0627\u0645\u0648\u062a \u0645\u0626\u064a\u0631 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ramot Meir", "mixname_en": "Ramot Meir | <span>HaShfela</span>", "label_ru": "\u0420\u0430\u043c\u043e\u0442 \u041c\u0435\u0438\u0440", "mixname_ru": "\u0420\u0430\u043c\u043e\u0442 \u041c\u0435\u0438\u0440 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "981A6B4D9F2F1CC1E90F5C35E965C162", "id": "1232", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e9\u05d6\u05d5\u05e8", "mixname_he": "\u05e9\u05d6\u05d5\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0634\u0627\u0632\u0648\u0631", "mixname_ar": "\u0634\u0627\u0632\u0648\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Shezor", "mixname_en": "Shezor | <span>Upper Galilee</span>", "label_ru": "\u0428\u0435\u0437\u043e\u0440", "mixname_ru": "\u0428\u0435\u0437\u043e\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "98429D016D349696FDB57C93FEF6ADE9", "id": "547", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d7\u05d1\u05e8", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d7\u05d1\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u064a\u0634\u0648\u0641\u064a \u062d\u064a\u0641\u0631", "mixname_ar": "\u064a\u0634\u0648\u0641\u064a \u062d\u064a\u0641\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Hever Settlements", "mixname_en": "Hever Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0425\u0435\u0432\u0435\u0440", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0425\u0435\u0432\u0435\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "988C00BC559069C280B82931F78A3DFA", "id": "113", "areaid": 17, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05d0\u05dc\u05d9\u05d0\u05d1", "mixname_he": "\u05d0\u05dc\u05d9\u05d0\u05d1 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0623\u0644\u064a\u0622\u0641", "mixname_ar": "\u0623\u0644\u064a\u0622\u0641 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Eliav", "mixname_en": "Eliav | <span>Yehuda</span>", "label_ru": "\u042d\u043b\u0438\u0430\u0432", "mixname_ru": "\u042d\u043b\u0438\u0430\u0432 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "988CBA85A8CF3282556B2A28C34C571D", "id": "369", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d3\u05d9\u05de\u05d5\u05e0\u05d4", "mixname_he": "\u05d3\u05d9\u05de\u05d5\u05e0\u05d4 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062f\u064a\u0645\u0648\u0646\u0627", "mixname_ar": "\u062f\u064a\u0645\u0648\u0646\u0627 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Dimona", "mixname_en": "Dimona | <span>South Negev</span>", "label_ru": "\u0414\u0438\u043c\u043e\u043d\u0430", "mixname_ru": "\u0414\u0438\u043c\u043e\u043d\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "98B0723FF48605EB3AB838C84C3B7628", "id": "595", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d3\u05e0\u05d9\u05d0\u05dc", "mixname_he": "\u05db\u05e4\u05e8 \u05d3\u05e0\u05d9\u05d0\u05dc | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062f\u0627\u0646\u064a\u0626\u0644", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062f\u0627\u0646\u064a\u0626\u0644 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Kfar Daniel", "mixname_en": "Kfar Daniel | <span>Yarkon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0414\u0430\u043d\u0438\u044d\u043b\u044c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0414\u0430\u043d\u0438\u044d\u043b\u044c | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "98CAC0C4454D8065B6D87BD606594690", "id": "1123", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d9\u05e2\u05e8\u05d9\u05dd", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d9\u05e2\u05e8\u05d9\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u064a\u0639\u0627\u0631\u064a\u0645", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u064a\u0639\u0627\u0631\u064a\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kiryat Yearim", "mixname_en": "Kiryat Yearim | <span>Shfelat Yehuda</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u042f\u0430\u0440\u0438\u043c", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u042f\u0430\u0440\u0438\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "98D9B6188DFF57759BD6164F3DF23F06", "id": "37", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d0\u05d5\u05e8\u05d8\u05dc", "mixname_he": "\u05d0\u05d5\u05e8\u05d8\u05dc | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0623\u0648\u0631\u0637\u0627\u0644", "mixname_ar": "\u0623\u0648\u0631\u0637\u0627\u0644 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Ortal", "mixname_en": "Ortal | <span>North Golan</span>", "label_ru": "\u041e\u0440\u0442\u0430\u043b\u044c", "mixname_ru": "\u041e\u0440\u0442\u0430\u043b\u044c | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "98F5E51863234CD4C6003FC5B191EBFD", "id": "859", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d3\u05e0\u05d9\u05d0\u05dc", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d3\u05e0\u05d9\u05d0\u05dc | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u062f\u0627\u0646\u064a\u0626\u064a\u0644", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u062f\u0627\u0646\u064a\u0626\u064a\u0644 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Neveh Daniel", "mixname_en": "Neveh Daniel | <span>Yehuda</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u0414\u0430\u043d\u0438\u044d\u043b\u044c", "mixname_ru": "\u041d\u0435\u0432\u0435 \u0414\u0430\u043d\u0438\u044d\u043b\u044c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "996C12820C5B9EFA2C6DA96EB5C3B7B1", "id": "231", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea\u05df \u05d0\u05d4\u05e8\u05df", "mixname_he": "\u05d1\u05d9\u05ea\u05df \u05d0\u05d4\u05e8\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0623\u0647\u0631\u0648\u0646", "mixname_ar": "\u0628\u064a\u062a \u0623\u0647\u0631\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Bitan Aharon", "mixname_en": "Bitan Aharon | <span>Sharon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0410\u0430\u0440\u043e\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0410\u0430\u0440\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "997D3662077902F87C62979CB26E1750", "id": "608", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05d6\u05d5\u05d4\u05e8\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d6\u05d5\u05d4\u05e8\u05d9\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0632\u0648\u0647\u0631\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0632\u0648\u0647\u0631\u064a\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kfar Zoharim", "mixname_en": "Kfar Zoharim | <span>Shfelat Yehuda</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0417\u043e\u0445\u0430\u0440\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0417\u043e\u0445\u0430\u0440\u0438\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "99EDE0136E5C94931E57292EDE9D9DC3", "id": "464", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0430\u0445\u0430\u043b\u044c \u0421\u043e\u0440\u0435\u043a", "label_he": "\u05d7\u05e4\u05e5 \u05d7\u05d9\u05d9\u05dd", "mixname_he": "\u05d7\u05e4\u05e5 \u05d7\u05d9\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062d\u0641\u064a\u062a\u0633 \u062d\u0627\u064a\u064a\u0645", "mixname_ar": "\u062d\u0641\u064a\u062a\u0633 \u062d\u0627\u064a\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Hafetz Haim", "mixname_en": "Hafetz Haim | <span>Lachish</span>", "label_ru": "\u0425\u0435\u0444\u0435\u0446 \u0425\u0430\u0438\u043c", "mixname_ru": "\u0425\u0435\u0444\u0435\u0446 \u0425\u0430\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "99F936A9E0809FBBDA89B677C0A97FEF", "id": "584", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d1\u05d9\u05d0\u05dc\u05d9\u05e7", "mixname_he": "\u05db\u05e4\u05e8 \u05d1\u05d9\u05d0\u05dc\u05d9\u05e7 | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0628\u064a\u0627\u0644\u064a\u0643", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0628\u064a\u0627\u0644\u064a\u0643 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Kfar Biyalik", "mixname_en": "Kfar Biyalik | <span>HaMifratz</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0411\u044f\u043b\u0438\u043a", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0411\u044f\u043b\u0438\u043a | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "9A020D2CE52D7F2A2BCB6A4A910DDD2C", "id": "359", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d3\u05d1\u05d5\u05e8\u05d9\u05d4", "mixname_he": "\u05d3\u05d1\u05d5\u05e8\u05d9\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062f\u0628\u0648\u0631\u064a\u0647", "mixname_ar": "\u062f\u0628\u0648\u0631\u064a\u0647 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Daburiyya", "mixname_en": "Daburiyya | <span>HaAmakim</span>", "label_ru": "\u0414\u0430\u0431\u0443\u0440\u0438\u044f", "mixname_ru": "\u0414\u0430\u0431\u0443\u0440\u0438\u044f | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "9A47578773E80260624B9754E234CFB2", "id": "1341", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "Gilboa Regional Council", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d5\u05de\u05df", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d5\u05de\u05df | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_en": "Merkaz Omen", "mixname_en": "Merkaz Omen | <span>HaAmakim</span>"}, {"value": "9AB3A36B046F253E1D1D219EF2E36D6B", "id": "990", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e2\u05d9\u05df \u05d4\u05de\u05e4\u05e8\u05e5", "mixname_he": "\u05e2\u05d9\u05df \u05d4\u05de\u05e4\u05e8\u05e5 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0647\u0645\u0641\u0631\u0627\u062a\u0633", "mixname_ar": "\u0639\u064a\u0646 \u0647\u0645\u0641\u0631\u0627\u062a\u0633 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Ein HaMifratz", "mixname_en": "Ein HaMifratz | <span>Upper Galilee</span>", "label_ru": "\u042d\u0439\u043d \u0445\u0430-\u041c\u0438\u0444\u0440\u0430\u0446", "mixname_ru": "\u042d\u0439\u043d \u0445\u0430-\u041c\u0438\u0444\u0440\u0430\u0446 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "9ABE721A3A3C85E9D203A2A1890C49A8", "id": "747", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05d9\u05ea\u05e8", "mixname_he": "\u05de\u05d9\u05ea\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u064a\u062a\u0627\u0631", "mixname_ar": "\u0645\u064a\u062a\u0627\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Meitar", "mixname_en": "Meitar | <span>Center Negev</span>", "label_ru": "\u041c\u0435\u0439\u0442\u0430\u0440", "mixname_ru": "\u041c\u0435\u0439\u0442\u0430\u0440 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "9B29D4FC494A6A2CB0F0AF2C603E1B7F", "id": "861", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d6\u05d9\u05d5", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d6\u05d9\u05d5 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0632\u064a\u0641", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0632\u064a\u0641 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Neveh Ziv", "mixname_en": "Neveh Ziv | <span>Confrontation Line</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u0417\u0438\u0432", "mixname_ru": "\u041d\u0435\u0432\u0435 \u0417\u0438\u0432 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "9BEDAD13626C97304576C42AE5DFD2F5", "id": "82", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d7\u05d9\u05d4", "mixname_he": "\u05d0\u05d7\u05d9\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u062d\u064a\u0647", "mixname_ar": "\u0623\u062d\u064a\u0647 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Achita", "mixname_en": "Achita | <span>Shomron</span>", "label_ru": "\u0410\u0445\u0438\u044f", "mixname_ru": "\u0410\u0445\u0438\u044f | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "9C06AEC9B0645611B9D0D75284E24991", "id": "620", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05d9\u05d5\u05e0\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05d9\u05d5\u05e0\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u064a\u0648\u0646\u0647", "mixname_ar": "\u0643\u0641\u0631 \u064a\u0648\u0646\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Yona", "mixname_en": "Kfar Yona | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0419\u043e\u043d\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0419\u043e\u043d\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "9C1D29F04BA781E664D6E24ECE7A607A", "id": "135", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05e4\u05d9\u05e7\u05d9\u05dd", "mixname_he": "\u05d0\u05e4\u05d9\u05e7\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0623\u0641\u064a\u0643\u064a\u0645", "mixname_ar": "\u0623\u0641\u064a\u0643\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Afikim", "mixname_en": "Afikim | <span>Lower Galilee</span>", "label_ru": "\u0410\u0444\u0438\u043a\u0438\u043c", "mixname_ru": "\u0410\u0444\u0438\u043a\u0438\u043c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "9C46925E04A60BA3174685F5AAA2E7D5", "id": "907", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e0\u05d9\u05e8 \u05de\u05e9\u05d4", "mixname_he": "\u05e0\u05d9\u05e8 \u05de\u05e9\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0646\u064a\u0631 \u0645\u0648\u0634\u064a\u0647", "mixname_ar": "\u0646\u064a\u0631 \u0645\u0648\u0634\u064a\u0647 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Nir Moshe", "mixname_en": "Nir Moshe | <span>West Negev</span>", "label_ru": "\u041d\u0438\u0440 \u041c\u043e\u0448\u0435", "mixname_ru": "\u041d\u0438\u0440 \u041c\u043e\u0448\u0435 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "9CC4C377FDCD680647E05769743CA101", "id": "1042", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e2\u05e8\u05e2\u05e8\u05d4", "mixname_he": "\u05e2\u05e8\u05e2\u05e8\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0639\u0631\u0639\u0631\u0629", "mixname_ar": "\u0639\u0631\u0639\u0631\u0629 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Ar'ara", "mixname_en": "Ar'ara | <span>Wadi Ara</span>", "label_ru": "\u0410\u0440\u0430\u0440\u0430", "mixname_ru": "\u0410\u0440\u0430\u0440\u0430 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "9CDDA9D4195E2AFCD7DE69BD4F1E3AAA", "id": "143", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05d0\u05e9\u05d1\u05d5\u05dc", "mixname_he": "\u05d0\u05e9\u05d1\u05d5\u05dc | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0623\u0634\u0628\u0648\u0644", "mixname_ar": "\u0623\u0634\u0628\u0648\u0644 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Eshbol", "mixname_en": "Eshbol | <span>West Negev</span>", "label_ru": "\u042d\u0448\u0431\u043e\u043b", "mixname_ru": "\u042d\u0448\u0431\u043e\u043b | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "9CE1DC5AD20C529C2B72BD8A28BF51AE", "id": "560", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05db\u05d5\u05db\u05d1 \u05de\u05d9\u05db\u05d0\u05dc", "mixname_he": "\u05db\u05d5\u05db\u05d1 \u05de\u05d9\u05db\u05d0\u05dc | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0648\u062e\u0627\u0641 \u0645\u064a\u062e\u0627\u0626\u064a\u0644", "mixname_ar": "\u0643\u0648\u062e\u0627\u0641 \u0645\u064a\u062e\u0627\u0626\u064a\u0644 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Kokhav Michael", "mixname_en": "Kokhav Michael | <span>West Lachish</span>", "label_ru": "\u041a\u043e\u0445\u0430\u0432 \u041c\u0438\u0445\u0430\u044d\u043b\u044c", "mixname_ru": "\u041a\u043e\u0445\u0430\u0432 \u041c\u0438\u0445\u0430\u044d\u043b\u044c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "9DB03A3D64BE7C115C5EF89098B5C5F9", "id": "792", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05de\u05e2\u05e9", "mixname_he": "\u05de\u05e2\u05e9 | <span>\u05d3\u05df</span>", "label_ar": "\u0645\u0639\u0634", "mixname_ar": "\u0645\u0639\u0634 | <span>\u062f\u0627\u0646</span>", "label_en": "Maas", "mixname_en": "Maas | <span>Dan</span>", "label_ru": "\u041c\u0430\u0430\u0448", "mixname_ru": "\u041c\u0430\u0430\u0448 | <span>\u0414\u0430\u043d</span>"}, {"value": "9DC356662F28F87E4EA05A38E502D5A1", "id": "1060", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05e4\u05e0\u05d9 \u05e7\u05d3\u05dd", "mixname_he": "\u05e4\u05e0\u05d9 \u05e7\u05d3\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u0646\u064a \u0643\u064a\u062f\u0645", "mixname_ar": "\u0628\u0646\u064a \u0643\u064a\u062f\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Pnei Kedem", "mixname_en": "Pnei Kedem | <span>Yehuda</span>", "label_ru": "\u041f\u043d\u0435\u0439 \u041a\u0435\u0434\u0435\u043c", "mixname_ru": "\u041f\u043d\u0435\u0439 \u041a\u0435\u0434\u0435\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "9DFCC06078F11EF3195DD1C87CC937A2", "id": "100", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05d0\u05dc \u05e2\u05e8\u05d9\u05d0\u05df", "mixname_he": "\u05d0\u05dc \u05e2\u05e8\u05d9\u05d0\u05df | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0627\u0644\u0639\u0631\u064a\u0627\u0646", "mixname_ar": "\u0627\u0644\u0639\u0631\u064a\u0627\u0646 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Al Arian", "mixname_en": "Al Arian | <span>Wadi Ara</span>", "label_ru": "\u0410\u043b\u044c \u0410\u0440\u0438\u0430\u043d", "mixname_ru": "\u0410\u043b\u044c \u0410\u0440\u0438\u0430\u043d | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "9E408F85AD41102FC5B9FAAE38AFCF4A", "id": "248", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05e0\u05d9\u05de\u05d9\u05e0\u05d4", "mixname_he": "\u05d1\u05e0\u05d9\u05de\u05d9\u05e0\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0628\u0646\u064a\u0627\u0645\u064a\u0646\u0627", "mixname_ar": "\u0628\u0646\u064a\u0627\u0645\u064a\u0646\u0627 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Binyamina", "mixname_en": "Binyamina | <span>Menashe</span>", "label_ru": "\u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d\u0430", "mixname_ru": "\u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d\u0430 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "9E5015576E352A4DE594377DBEB4786A", "id": "363", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d3\u05d2\u05e0\u05d9\u05d4 \u05d1", "mixname_he": "\u05d3\u05d2\u05e0\u05d9\u05d4 \u05d1 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u062f\u062c\u0627\u0646\u064a\u0627 \u0628\u2018", "mixname_ar": "\u062f\u062c\u0627\u0646\u064a\u0627 \u0628\u2018 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Degania Bet", "mixname_en": "Degania Bet | <span>Lower Galilee</span>", "label_ru": "\u0414\u0433\u0430\u043d\u0438\u044f \u0411\u0435\u0442", "mixname_ru": "\u0414\u0433\u0430\u043d\u0438\u044f \u0411\u0435\u0442 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "9E8078A41131310465025130D1F47C70", "id": "358", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d2\u05ea \u05e8\u05d9\u05de\u05d5\u05df", "mixname_he": "\u05d2\u05ea \u05e8\u05d9\u05de\u05d5\u05df | <span>\u05d3\u05df</span>", "label_ar": "\u062c\u062a \u0631\u064a\u0645\u0648\u0646", "mixname_ar": "\u062c\u062a \u0631\u064a\u0645\u0648\u0646 | <span>\u062f\u0627\u0646</span>", "label_en": "Gat Rimon", "mixname_en": "Gat Rimon | <span>Dan</span>", "label_ru": "\u0413\u0430\u0442 \u0420\u0438\u043c\u043e\u043d", "mixname_ru": "\u0413\u0430\u0442 \u0420\u0438\u043c\u043e\u043d | <span>\u0414\u0430\u043d</span>"}, {"value": "9E9D708219EEA2B268F35EF1ED86245A", "id": "1236", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05e9\u05d9\u05d8\u05d9\u05dd", "mixname_he": "\u05e9\u05d9\u05d8\u05d9\u05dd | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0634\u064a\u0637\u064a\u0645", "mixname_ar": "\u0634\u064a\u0637\u064a\u0645 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Shitim", "mixname_en": "Shitim | <span>Arava</span>", "label_ru": "\u0428\u0438\u0442\u0438\u043c", "mixname_ru": "\u0428\u0438\u0442\u0438\u043c | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "9ECF7F76E359CF7B705ACD4B94D24649", "id": "1292", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05ea\u05dc\u05de\u05d9 \u05d9\u05d5\u05e1\u05e3", "mixname_he": "\u05ea\u05dc\u05de\u05d9 \u05d9\u05d5\u05e1\u05e3 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062a\u0644\u0645\u064a \u064a\u0648\u0633\u0641", "mixname_ar": "\u062a\u0644\u0645\u064a \u064a\u0648\u0633\u0641 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Talmei Yossef", "mixname_en": "Talmei Yossef | <span>Gaza Envelope</span>", "label_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u0419\u043e\u0441\u0435\u0444", "mixname_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u0419\u043e\u0441\u0435\u0444 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "9F2CD7B3AFC681F09B2AF1EABF3DE364", "id": "593", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05db\u05e4\u05e8 \u05d2\u05dc\u05e2\u05d3\u05d9", "mixname_he": "\u05db\u05e4\u05e8 \u05d2\u05dc\u05e2\u05d3\u05d9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062c\u0644\u0639\u0627\u062f\u064a", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062c\u0644\u0639\u0627\u062f\u064a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Kfar Giladi", "mixname_en": "Kfar Giladi | <span>Confrontation Line</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0413\u0438\u043b\u0430\u0434\u0438", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0413\u0438\u043b\u0430\u0434\u0438 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "9F5D3BBC18EFCF11F4749E68273EE864", "id": "1259", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05e9\u05e4\u05d9\u05d9\u05dd", "mixname_he": "\u05e9\u05e4\u05d9\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0634\u0641\u064a\u064a\u0645", "mixname_ar": "\u0634\u0641\u064a\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Shefayim", "mixname_en": "Shefayim | <span>Sharon</span>", "label_ru": "\u0428\u0444\u0430\u0438\u043c", "mixname_ru": "\u0428\u0444\u0430\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "9F9D857E6B9B1572E11DC2F164D81558", "id": "1363", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05d9\u05e4\u05d5\u05e8\u05d9\u05ea", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05d9\u05e4\u05d5\u05e8\u05d9\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0646\u0635\u064a\u0628\u0648\u0631\u064a\u062a", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0646\u0635\u064a\u0628\u0648\u0631\u064a\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Industrial area Tziporit", "mixname_en": "Industrial area Tziporit | <span>HaAmakim</span>", "label_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u0426\u0438\u043f\u043e\u0440\u0438\u0442", "mixname_ru": "\u041f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u0430\u044f \u0437\u043e\u043d\u0430 \u0426\u0438\u043f\u043e\u0440\u0438\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "9FBB40A185AE882539A01A8F50CBD3BC", "id": "1336", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "Sdot Negev Regional Council", "label_he": "\u05db\u05e4\u05e8 \u05de\u05d9\u05de\u05d5\u05df \u05d5\u05ea\u05d5\u05e9\u05d9\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05d9\u05de\u05d5\u05df \u05d5\u05ea\u05d5\u05e9\u05d9\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_en": "Kfar Maimon and Tushia", "mixname_en": "Kfar Maimon and Tushia | <span>Gaza Envelope</span>"}, {"value": "9FC59AC98299CE25311F4D601B4DA9B0", "id": "415", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05d6\u05d9\u05ea\u05df", "mixname_he": "\u05d6\u05d9\u05ea\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0632\u064a\u062a\u0627\u0646", "mixname_ar": "\u0632\u064a\u062a\u0627\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Zeitan", "mixname_en": "Zeitan | <span>HaShfela</span>", "label_ru": "\u0417\u0435\u0439\u0442\u0430\u043d", "mixname_ru": "\u0417\u0435\u0439\u0442\u0430\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "9FD71221B4687AA8510549D26108FCFF", "id": "1000", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0440\u0435\u0434\u043d\u044f\u044f \u0410\u0440\u0430\u0432\u0430", "label_he": "\u05e2\u05d9\u05df \u05d9\u05d4\u05d1", "mixname_he": "\u05e2\u05d9\u05df \u05d9\u05d4\u05d1 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u064a\u0627\u0647\u0627\u0641", "mixname_ar": "\u0639\u064a\u0646 \u064a\u0627\u0647\u0627\u0641 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Ein Yahav", "mixname_en": "Ein Yahav | <span>Arava</span>", "label_ru": "\u042d\u0439\u043d \u042f\u0445\u0430\u0432", "mixname_ru": "\u042d\u0439\u043d \u042f\u0445\u0430\u0432 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "A004CBA79B8B2EB7512BB818ADB152EC", "id": "705", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05de\u05d2\u05d3\u05dc \u05e2\u05d5\u05d6", "mixname_he": "\u05de\u05d2\u05d3\u05dc \u05e2\u05d5\u05d6 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u062c\u062f\u0644 \u0639\u0648\u0632", "mixname_ar": "\u0645\u062c\u062f\u0644 \u0639\u0648\u0632 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Migdal Oz", "mixname_en": "Migdal Oz | <span>Yehuda</span>", "label_ru": "\u041c\u0438\u0433\u0434\u0430\u043b\u044c \u041e\u0437", "mixname_ru": "\u041c\u0438\u0433\u0434\u0430\u043b\u044c \u041e\u0437 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "A01BC6705E4037AC6ED19678606C091A", "id": "933", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05e9\u05d9\u05d9\u05e8\u05d4", "mixname_he": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05e9\u05d9\u05d9\u05e8\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0646\u062a\u064a\u0641 \u0647\u0634\u064a\u0631\u0627", "mixname_ar": "\u0646\u062a\u064a\u0641 \u0647\u0634\u064a\u0631\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Netiv HaShayara", "mixname_en": "Netiv HaShayara | <span>Upper Galilee</span>", "label_ru": "\u041d\u0435\u0442\u0438\u0432 \u0445\u0430-\u0428\u0430\u044f\u0440\u0430", "mixname_ru": "\u041d\u0435\u0442\u0438\u0432 \u0445\u0430-\u0428\u0430\u044f\u0440\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "A0246A98CD8A647EE0400F9DFA40B6DE", "id": "357", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05d2\u05ea", "mixname_he": "\u05d2\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u062a", "mixname_ar": "\u062c\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Gat", "mixname_en": "Gat | <span>Lachish</span>", "label_ru": "\u0413\u0430\u0442", "mixname_ru": "\u0413\u0430\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "A03332F601AE8D4293DFC2A8F95B61FF", "id": "774", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05de\u05e2\u05d5\u05e0\u05d4", "mixname_he": "\u05de\u05e2\u05d5\u05e0\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0639\u0648\u0646\u0627\u0647", "mixname_ar": "\u0645\u0639\u0648\u0646\u0627\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Maona", "mixname_en": "Maona | <span>Confrontation Line</span>", "label_ru": "\u041c\u0430\u043e\u043d\u0430", "mixname_ru": "\u041c\u0430\u043e\u043d\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "A06B69C00CEFC1813AEFA6A475216E23", "id": "236", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d1\u05df \u05e9\u05de\u05df", "mixname_he": "\u05d1\u05df \u05e9\u05de\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0628\u0646 \u0634\u064a\u0645\u0646", "mixname_ar": "\u0628\u0646 \u0634\u064a\u0645\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ben Shemen", "mixname_en": "Ben Shemen | <span>HaShfela</span>", "label_ru": "\u0411\u0435\u043d \u0428\u0435\u043c\u0435\u043d", "mixname_ru": "\u0411\u0435\u043d \u0428\u0435\u043c\u0435\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "A0B276668AB7580633FA531185AAAA6C", "id": "1006", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05e2\u05d9\u05df \u05e2\u05d9\u05e8\u05d5\u05df", "mixname_he": "\u05e2\u05d9\u05df \u05e2\u05d9\u05e8\u05d5\u05df | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0639\u064a\u0631\u0648\u0646", "mixname_ar": "\u0639\u064a\u0646 \u0639\u064a\u0631\u0648\u0646 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Ein Iron", "mixname_en": "Ein Iron | <span>Menashe</span>", "label_ru": "\u042d\u0439\u043d \u0418\u0440\u043e\u043d", "mixname_ru": "\u042d\u0439\u043d \u0418\u0440\u043e\u043d | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "A0ECC74AAE114A56F6A8A0AB84DAC223", "id": "1293", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05ea\u05dc\u05de\u05d9 \u05d9\u05d7\u05d9\u05d0\u05dc", "mixname_he": "\u05ea\u05dc\u05de\u05d9 \u05d9\u05d7\u05d9\u05d0\u05dc | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062a\u0644\u0645\u064a \u064a\u062d\u064a\u0626\u0644", "mixname_ar": "\u062a\u0644\u0645\u064a \u064a\u062d\u064a\u0626\u0644 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Talmei Yehiel", "mixname_en": "Talmei Yehiel | <span>Lachish</span>", "label_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u0419\u0435\u0445\u0438\u044d\u043b\u044c", "mixname_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u0419\u0435\u0445\u0438\u044d\u043b\u044c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "A1136D4FA4D286443E2FE016DC32277D", "id": "278", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2'\u05ea", "mixname_he": "\u05d2'\u05ea | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u062c\u062a", "mixname_ar": "\u062c\u062a | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Jatt", "mixname_en": "Jatt | <span>Wadi Ara</span>", "label_ru": "\u0414\u0436\u0430\u0442\u0442", "mixname_ru": "\u0414\u0436\u0430\u0442\u0442 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "A1A4BA34EF4657AE7780EB4C1750DC68", "id": "626", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05de\u05d5\u05e0\u05e9", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05d5\u05e0\u05e9 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0645\u0648\u0646\u0627\u0634", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0645\u0648\u0646\u0627\u0634 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Monash", "mixname_en": "Kfar Monash | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041c\u043e\u043d\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041c\u043e\u043d\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "A1C0B443593F6088C26D1E66004E1B54", "id": "1250", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e9\u05e0\u05d9\u05e8", "mixname_he": "\u05e9\u05e0\u05d9\u05e8 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0633\u0646\u064a\u0631", "mixname_ar": "\u0633\u0646\u064a\u0631 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Snir", "mixname_en": "Snir | <span>Confrontation Line</span>", "label_ru": "\u0421\u043d\u0438\u0440", "mixname_ru": "\u0421\u043d\u0438\u0440 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "A2156F47DF897DE05CE4F9D117455F50", "id": "193", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d1\u05d9\u05ea \u05d6\u05e8\u05e2", "mixname_he": "\u05d1\u05d9\u05ea \u05d6\u05e8\u05e2 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0632\u064a\u0631\u0639", "mixname_ar": "\u0628\u064a\u062a \u0632\u064a\u0631\u0639 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Beit Zera", "mixname_en": "Beit Zera | <span>Lower Galilee</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0417\u0435\u0440\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0417\u0435\u0440\u0430 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "A220B0630BBFA2F2AB7CFD21AAA982DE", "id": "771", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05de\u05e2\u05d5\u05d6 \u05d7\u05d9\u05d9\u05dd", "mixname_he": "\u05de\u05e2\u05d5\u05d6 \u05d7\u05d9\u05d9\u05dd | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0645\u0639\u0648\u0632 \u062d\u064a\u064a\u0645", "mixname_ar": "\u0645\u0639\u0648\u0632 \u062d\u064a\u064a\u0645 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Maoz Haim", "mixname_en": "Maoz Haim | <span>Beit She'an Valley</span>", "label_ru": "\u041c\u0430\u043e\u0437 \u0425\u0430\u0438\u043c", "mixname_ru": "\u041c\u0430\u043e\u0437 \u0425\u0430\u0438\u043c | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "A29749FAB1A81EEE2B7037E6783C18CB", "id": "428", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d7\u05d2'\u05d0\u05d2'\u05e8\u05d4", "mixname_he": "\u05d7\u05d2'\u05d0\u05d2'\u05e8\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062d\u062c\u0627\u062c\u0631\u0629", "mixname_ar": "\u062d\u062c\u0627\u062c\u0631\u0629 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Hajajre", "mixname_en": "Hajajre | <span>HaAmakim</span>", "label_ru": "\u0425\u0430\u0434\u0436\u0430\u0434\u0436\u0430\u0440\u0435", "mixname_ru": "\u0425\u0430\u0434\u0436\u0430\u0434\u0436\u0430\u0440\u0435 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "A2C193F6E6E87B606F36F66AF49A2AF3", "id": "854", "areaid": 26, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e0\u05d5\u05d5\u05d4", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Naveh", "mixname_en": "Naveh | <span>Gaza Envelope</span>", "label_ru": "\u041d\u0430\u0432\u0435", "mixname_ru": "\u041d\u0430\u0432\u0435 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "A2F8E0AD018213C24CBEA424EE571114", "id": "360", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05d3\u05d1\u05d9\u05e8", "mixname_he": "\u05d3\u05d1\u05d9\u05e8 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062f\u0628\u064a\u0631", "mixname_ar": "\u062f\u0628\u064a\u0631 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Dvir", "mixname_en": "Dvir | <span>Center Negev</span>", "label_ru": "\u0414\u0432\u0438\u0440", "mixname_ru": "\u0414\u0432\u0438\u0440 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "A3273AAA9D1970B0E59732F1E9B6B0B5", "id": "471", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05d7\u05e8\u05d5\u05e6\u05d9\u05dd", "mixname_he": "\u05d7\u05e8\u05d5\u05e6\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0631\u0648\u062a\u0633\u064a\u0645", "mixname_ar": "\u062d\u0631\u0648\u062a\u0633\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Harutzim", "mixname_en": "Harutzim | <span>Sharon</span>", "label_ru": "\u0425\u0430\u0440\u0443\u0446\u0438\u043c", "mixname_ru": "\u0425\u0430\u0440\u0443\u0446\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "A3A80DF61C5BEF911B01C3BED8026025", "id": "216", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e1\u05e4\u05e8 \u05d0\u05d5\u05e8\u05d8 \u05d1\u05e0\u05d9\u05de\u05d9\u05e0\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05e1\u05e4\u05e8 \u05d0\u05d5\u05e8\u05d8 \u05d1\u05e0\u05d9\u05de\u05d9\u05e0\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0645\u062f\u0631\u0633\u0629 \u0623\u0648\u0631\u0637 \u0628\u0646\u064a\u0627\u0645\u064a\u0646\u0627", "mixname_ar": "\u0645\u062f\u0631\u0633\u0629 \u0623\u0648\u0631\u0637 \u0628\u0646\u064a\u0627\u0645\u064a\u0646\u0627 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Ort Binyamina", "mixname_en": "Ort Binyamina | <span>Menashe</span>", "label_ru": "\u041e\u0440\u0442 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d\u0430", "mixname_ru": "\u041e\u0440\u0442 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d\u0430 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "A41C82D6D48684A994EFBF973999FA19", "id": "751", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05dc\u05d5\u05e0\u05d5\u05ea \u05d9\u05dd \u05d4\u05de\u05dc\u05d7 \u05de\u05e8\u05db\u05d6", "mixname_he": "\u05de\u05dc\u05d5\u05e0\u05d5\u05ea \u05d9\u05dd \u05d4\u05de\u05dc\u05d7 \u05de\u05e8\u05db\u05d6 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0641\u0646\u0627\u062f\u0642 \u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a", "mixname_ar": "\u0641\u0646\u0627\u062f\u0642 \u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Dead Sea Hotels - Center", "mixname_en": "Dead Sea Hotels - Center | <span>Dead Sea</span>", "label_ru": "\u041e\u0442\u0435\u043b\u0438 \u041c\u0435\u0440\u0442\u043e\u0433\u043e \u043c\u043e\u0440\u044f - \u0426\u0435\u043d\u0442\u0440\u0430", "mixname_ru": "\u041e\u0442\u0435\u043b\u0438 \u041c\u0435\u0440\u0442\u043e\u0433\u043e \u043c\u043e\u0440\u044f - \u0426\u0435\u043d\u0442\u0440\u0430 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "A44E4FB2867C13452146B30065325854", "id": "965", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05e2\u05d5\u05dc\u05e9", "mixname_he": "\u05e2\u05d5\u05dc\u05e9 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0648\u0644\u0634", "mixname_ar": "\u0639\u0648\u0644\u0634 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Olesh", "mixname_en": "Olesh | <span>Sharon</span>", "label_ru": "\u041e\u043b\u0435\u0448", "mixname_ru": "\u041e\u043b\u0435\u0448 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "A50106B991CDAB99521D1CCABD2CDC14", "id": "1164", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05e8\u05d9\u05e0\u05ea\u05d9\u05d4", "mixname_he": "\u05e8\u05d9\u05e0\u05ea\u05d9\u05d4 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0631\u064a\u0646\u062a\u064a\u0647", "mixname_ar": "\u0631\u064a\u0646\u062a\u064a\u0647 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Rinatya", "mixname_en": "Rinatya | <span>Yarkon</span>", "label_ru": "\u0420\u0438\u043d\u0430\u0442\u0438\u044f", "mixname_ru": "\u0420\u0438\u043d\u0430\u0442\u0438\u044f | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "A569E23DE50A9534C121C516205EFE3E", "id": "502", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0430\u0445\u0430\u043b\u044c \u0421\u043e\u0440\u0435\u043a", "label_he": "\u05d9\u05d3 \u05d1\u05e0\u05d9\u05de\u05d9\u05df", "mixname_he": "\u05d9\u05d3 \u05d1\u05e0\u05d9\u05de\u05d9\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u064a\u062f \u0628\u0646\u064a\u0627\u0645\u064a\u0646", "mixname_ar": "\u064a\u062f \u0628\u0646\u064a\u0627\u0645\u064a\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Yad Binyamin", "mixname_en": "Yad Binyamin | <span>Lachish</span>", "label_ru": "\u042f\u0434 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "mixname_ru": "\u042f\u0434 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "A5D9C3CDB9F4F15CB66CAB3CDAD875CB", "id": "1151", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e8\u05d5\u05d7\u05de\u05d4", "mixname_he": "\u05e8\u05d5\u05d7\u05de\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0631\u0648\u062d\u0645\u0627\u0647", "mixname_ar": "\u0631\u0648\u062d\u0645\u0627\u0647 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Rochama", "mixname_en": "Rochama | <span>West Negev</span>", "label_ru": "\u0420\u0443\u0445\u0430\u043c\u0430", "mixname_ru": "\u0420\u0443\u0445\u0430\u043c\u0430 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "A5DEF62BCA48E7B8617A05F45349724E", "id": "1162", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e8\u05d9\u05d9\u05e0\u05d4", "mixname_he": "\u05e8\u05d9\u05d9\u05e0\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0631\u064a\u0646\u0647", "mixname_ar": "\u0627\u0644\u0631\u064a\u0646\u0647 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Reineh", "mixname_en": "Reineh | <span>HaAmakim</span>", "label_ru": "\u0420\u0430\u0439\u043d\u0435", "mixname_ru": "\u0420\u0430\u0439\u043d\u0435 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "A5F422D0E0B7C802F4C48B44187991E1", "id": "22", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d0\u05d3\u05e8\u05ea", "mixname_he": "\u05d0\u05d3\u05e8\u05ea | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u062f\u0631\u062a", "mixname_ar": "\u0627\u062f\u0631\u062a | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Aderet", "mixname_en": "Aderet | <span>Shfelat Yehuda</span>", "label_ru": "\u0410\u0434\u0435\u0440\u0435\u0442", "mixname_ru": "\u0410\u0434\u0435\u0440\u0435\u0442 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "A5FCBD9F33A2075F8D18A1CF02FA9042", "id": "301", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d9\u05e2\u05e8\u05d9\u05dd", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d9\u05e2\u05e8\u05d9\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u064a\u0639\u0627\u0631\u064a\u0645", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u064a\u0639\u0627\u0631\u064a\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Givat Yearim", "mixname_en": "Givat Yearim | <span>Shfelat Yehuda</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u042f\u0430\u0440\u0438\u043c", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u042f\u0430\u0440\u0438\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "A61A9F60C457E3811FF128D496C47AB8", "id": "628", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0443\u0441\u0442\u0430\u043d \u0430\u043b\u044c-\u041c\u0430\u0440\u0434\u0436", "label_he": "\u05db\u05e4\u05e8 \u05de\u05e6\u05e8", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05e6\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0631 \u0645\u064a\u0633\u0631", "mixname_ar": "\u0643\u0641\u0631 \u0645\u064a\u0633\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Meissar", "mixname_en": "Kfar Meissar | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041c\u0435\u0439\u0441\u0430\u0440", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041c\u0435\u0439\u0441\u0430\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "A646301F9FAEAA0425009D686633AE1D", "id": "511", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d9\u05d5\u05d1\u05dc\u05d9\u05dd", "mixname_he": "\u05d9\u05d5\u05d1\u05dc\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u064a\u0648\u0641\u0627\u0644\u064a\u0645", "mixname_ar": "\u064a\u0648\u0641\u0627\u0644\u064a\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Yuvalim", "mixname_en": "Yuvalim | <span>Center Galilee</span>", "label_ru": "\u042e\u0432\u0430\u043b\u0438\u043c", "mixname_ru": "\u042e\u0432\u0430\u043b\u0438\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "A66B1B11CEE88CFA50E311DE91EA2E80", "id": "753", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05de\u05e0\u05d5\u05d7\u05d4", "mixname_he": "\u05de\u05e0\u05d5\u05d7\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u0646\u0648\u062d\u0627\u0647", "mixname_ar": "\u0645\u0646\u0648\u062d\u0627\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Menucha", "mixname_en": "Menucha | <span>Lachish</span>", "label_ru": "\u041c\u0435\u043d\u0443\u0445\u0430", "mixname_ru": "\u041c\u0435\u043d\u0443\u0445\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "A66FA0C3A0A38ADA1B57F99FA9C1E76B", "id": "905", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e0\u05d9\u05e8 \u05d9\u05e6\u05d7\u05e7", "mixname_he": "\u05e0\u05d9\u05e8 \u05d9\u05e6\u05d7\u05e7 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0646\u064a\u0631 \u064a\u062a\u0633\u062d\u0627\u0643", "mixname_ar": "\u0646\u064a\u0631 \u064a\u062a\u0633\u062d\u0627\u0643 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Nir Itzhak", "mixname_en": "Nir Itzhak | <span>Gaza Envelope</span>", "label_ru": "\u041d\u0438\u0440 \u0418\u0446\u0445\u0430\u043a", "mixname_ru": "\u041d\u0438\u0440 \u0418\u0446\u0445\u0430\u043a | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "A68CC7B5A3A2EDF966C52140FC5CEDB0", "id": "25", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05d9\u05e8\u05d7", "mixname_he": "\u05d1\u05d9\u05ea \u05d9\u05e8\u05d7 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0648\u0628\u064a\u062a \u064a\u0631\u064a\u062d", "mixname_ar": "\u0648\u0628\u064a\u062a \u064a\u0631\u064a\u062d | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Beit Yerach", "mixname_en": "Beit Yerach | <span>Lower Galilee</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0419\u0435\u0440\u0430\u0445", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0419\u0435\u0440\u0430\u0445 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "A69F86835B622F550354DC289259465E", "id": "390", "areaid": 15, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05d4\u05d7\u05d5\u05ea\u05e8\u05d9\u05dd", "mixname_he": "\u05d4\u05d7\u05d5\u05ea\u05e8\u05d9\u05dd | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0647\u062d\u0648\u062a\u0631\u064a\u0645", "mixname_ar": "\u0647\u062d\u0648\u062a\u0631\u064a\u0645 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "HaHotrim", "mixname_en": "HaHotrim | <span>Menashe</span>", "label_ru": "\u0445\u0430-\u0425\u043e\u0442\u0440\u0438\u043c", "mixname_ru": "\u0445\u0430-\u0425\u043e\u0442\u0440\u0438\u043c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "A6AEA8362FD60DBEB7644C787E6E699D", "id": "556", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c \u041a\u0430\u0441\u0443\u043c", "label_he": "\u05de\u05e8\u05e2\u05d9\u05ea", "mixname_he": "\u05de\u05e8\u05e2\u05d9\u05ea | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0631\u0639\u064a\u062a", "mixname_ar": "\u0645\u0631\u0639\u064a\u062a | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Mara'it", "mixname_en": "Mara'it | <span>South Negev</span>", "label_ru": "\u041c\u0430\u0440\u0430\u0438\u0442", "mixname_ru": "\u041c\u0430\u0440\u0430\u0438\u0442 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "A6AFBF115E4ABB94DB3D081DAEB1D0E8", "id": "189", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u043b\u043e\u0442 \u041c\u0435\u0440\u0442\u0432\u043e\u0433\u043e \u043c\u043e\u0440\u044f", "label_he": "\u05d1\u05d9\u05ea \u05d4\u05e2\u05e8\u05d1\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05d4\u05e2\u05e8\u05d1\u05d4 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0628\u064a\u062a \u0647\u0639\u0627\u0631\u0628\u0627", "mixname_ar": "\u0628\u064a\u062a \u0647\u0639\u0627\u0631\u0628\u0627 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Beit HaArava", "mixname_en": "Beit HaArava | <span>Dead Sea</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u0410\u0440\u0430\u0432\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u0410\u0440\u0430\u0432\u0430 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "A706A7E50ADEFDC9FE23798FD2C6A2D7", "id": "623", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d9\u05e2\u05d1\u05e5", "mixname_he": "\u05db\u05e4\u05e8 \u05d9\u05e2\u05d1\u05e5 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u064a\u0627\u0639\u0628\u064a\u0633", "mixname_ar": "\u0643\u0641\u0631 \u064a\u0627\u0639\u0628\u064a\u0633 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Yavetz", "mixname_en": "Kfar Yavetz | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u042f\u0432\u0435\u0446", "mixname_ru": "\u041a\u0444\u0430\u0440 \u042f\u0432\u0435\u0446 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "A738701B21EF9674CE987D86D1DBE5BC", "id": "373", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05d3\u05dc\u05d9\u05d4", "mixname_he": "\u05d3\u05dc\u05d9\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u062f\u0627\u0644\u064a\u0647", "mixname_ar": "\u062f\u0627\u0644\u064a\u0647 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Dalia", "mixname_en": "Dalia | <span>Wadi Ara</span>", "label_ru": "\u0414\u0430\u043b\u044c\u044f", "mixname_ru": "\u0414\u0430\u043b\u044c\u044f | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "A7664FB40AAD0E053C59943522231094", "id": "374", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d3\u05dc\u05d9\u05ea \u05d0\u05dc \u05db\u05e8\u05de\u05dc", "mixname_he": "\u05d3\u05dc\u05d9\u05ea \u05d0\u05dc \u05db\u05e8\u05de\u05dc | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u062f\u0627\u0644\u064a\u0629 \u0627\u0644\u0643\u0631\u0645\u0644", "mixname_ar": "\u062f\u0627\u0644\u064a\u0629 \u0627\u0644\u0643\u0631\u0645\u0644 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Daliyat al-Karmel", "mixname_en": "Daliyat al-Karmel | <span>HaCarmel</span>", "label_ru": "\u0414\u0430\u043b\u0438\u044f\u0442 \u044d\u043b\u044c \u041a\u0430\u0440\u043c\u0435\u043b\u044c", "mixname_ru": "\u0414\u0430\u043b\u0438\u044f\u0442 \u044d\u043b\u044c \u041a\u0430\u0440\u043c\u0435\u043b\u044c | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "A7D5368F659D2EC84FE890371984CFBA", "id": "543", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d9\u05e8\u05d7\u05d9\u05d1", "mixname_he": "\u05d9\u05e8\u05d7\u05d9\u05d1 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u064a\u0631\u062d\u064a\u0628", "mixname_ar": "\u064a\u0631\u062d\u064a\u0628 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Yafhiv", "mixname_en": "Yafhiv | <span>Sharon</span>", "label_ru": "\u042f\u0440\u0445\u0438\u0432", "mixname_ru": "\u042f\u0440\u0445\u0438\u0432 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "A7DD15052FD6211F83982148361145C9", "id": "1184", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e8\u05e2\u05d9\u05dd", "mixname_he": "\u05e8\u05e2\u05d9\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0631\u0639\u064a\u0645", "mixname_ar": "\u0631\u0639\u064a\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Reim", "mixname_en": "Reim | <span>Gaza Envelope</span>", "label_ru": "\u0420\u0435\u0438\u043c", "mixname_ru": "\u0420\u0435\u0438\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "A8AF385B3849089FA4708DA16C9249C5", "id": "86", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05d0\u05d7\u05d9\u05e2\u05d6\u05e8", "mixname_he": "\u05d0\u05d7\u05d9\u05e2\u05d6\u05e8 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0623\u062d\u064a\u0639\u0632\u0631", "mixname_ar": "\u0623\u062d\u064a\u0639\u0632\u0631 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Achiezer", "mixname_en": "Achiezer | <span>HaShfela</span>", "label_ru": "\u0410\u0445\u0438\u044d\u0437\u0435\u0440", "mixname_ru": "\u0410\u0445\u0438\u044d\u0437\u0435\u0440 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "A8C6E31D1072F85BEC249A5CFE22771C", "id": "102", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05d0\u05dc\u05d5\u05de\u05d4", "mixname_he": "\u05d0\u05dc\u05d5\u05de\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u0644\u0648\u0645\u0627", "mixname_ar": "\u0623\u0644\u0648\u0645\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Aluma", "mixname_en": "Aluma | <span>Lachish</span>", "label_ru": "\u0410\u043b\u0443\u043c\u0430", "mixname_ru": "\u0410\u043b\u0443\u043c\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "A908DBBCFAAB4C73E310925CFFD494C8", "id": "554", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05db\u05d1\u05e8\u05d9", "mixname_he": "\u05db\u05d1\u05e8\u05d9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0643\u0627\u0628\u0631\u064a", "mixname_ar": "\u0643\u0627\u0628\u0631\u064a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Cabri", "mixname_en": "Cabri | <span>Confrontation Line</span>", "label_ru": "\u041a\u0430\u0431\u0440\u0438", "mixname_ru": "\u041a\u0430\u0431\u0440\u0438 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "A94F209D9328C5541E077BF77295624C", "id": "203", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05d1\u05d9\u05ea \u05d9\u05d5\u05e1\u05e3", "mixname_he": "\u05d1\u05d9\u05ea \u05d9\u05d5\u05e1\u05e3 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0628\u064a\u062a \u064a\u0648\u0633\u0641", "mixname_ar": "\u0628\u064a\u062a \u064a\u0648\u0633\u0641 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Beit Yossef", "mixname_en": "Beit Yossef | <span>Beit She'an Valley</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0419\u043e\u0441\u0435\u0444", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0419\u043e\u0441\u0435\u0444 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "A97AB6F91E94F75048AC9C92C93F8D7D", "id": "77", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05ea\u05d9\u05de\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05ea\u05d9\u05de\u05d5\u05e8\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u064a\u0645\u0648\u0631\u064a\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u064a\u0645\u0648\u0631\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Timorimg Industrial Zone", "mixname_en": "Timorimg Industrial Zone | <span>Lachish</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0422\u0438\u043c\u043e\u0440\u0438\u043c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0422\u0438\u043c\u043e\u0440\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "A9BE60C5FBF5E53BCB644D525040CB79", "id": "458", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d7\u05de\u05e8\u05d4", "mixname_he": "\u05d7\u05de\u05e8\u05d4 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u062d\u0645\u0631\u0627", "mixname_ar": "\u062d\u0645\u0631\u0627 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Hamra", "mixname_en": "Hamra | <span>Bika'a</span>", "label_ru": "\u0425\u0430\u043c\u0440\u0430", "mixname_ru": "\u0425\u0430\u043c\u0440\u0430 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "A9C8CF145AAF6E577A6C44E4195F277F", "id": "795", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05de\u05e6\u05d5\u05d1\u05d4", "mixname_he": "\u05de\u05e6\u05d5\u05d1\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u062a\u0633\u0648\u0641\u0627", "mixname_ar": "\u0645\u062a\u0633\u0648\u0641\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Metzuba", "mixname_en": "Metzuba | <span>Confrontation Line</span>", "label_ru": "\u041c\u0435\u0446\u0443\u0431\u0430", "mixname_ru": "\u041c\u0435\u0446\u0443\u0431\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "A9F84A7D536C6538F2340C7CB3087F8B", "id": "823", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05e9\u05db\u05d9\u05d5\u05ea", "mixname_he": "\u05de\u05e9\u05db\u05d9\u05d5\u05ea | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0645\u0634\u062e\u064a\u0648\u062a", "mixname_ar": "\u0645\u0634\u062e\u064a\u0648\u062a | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Maskiot", "mixname_en": "Maskiot | <span>Bika'a</span>", "label_ru": "\u041c\u0430\u0441\u043a\u0438\u043e\u0442", "mixname_ru": "\u041c\u0430\u0441\u043a\u0438\u043e\u0442 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "AA20B01FB65041E0CFF2A2E573471FC7", "id": "926", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e0\u05e6\u05e8\u05ea", "mixname_he": "\u05e0\u05e6\u05e8\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0646\u0627\u0635\u0631\u0629", "mixname_ar": "\u0627\u0644\u0646\u0627\u0635\u0631\u0629 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Nazareth", "mixname_en": "Nazareth | <span>HaAmakim</span>", "label_ru": "\u041d\u0430\u0446\u0435\u0440\u0435\u0442", "mixname_ru": "\u041d\u0430\u0446\u0435\u0440\u0435\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "AA32DB2A86604DF5AE93138F10CA52DC", "id": "1186", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e8\u05e7\u05e4\u05ea", "mixname_he": "\u05e8\u05e7\u05e4\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0631\u0643\u064a\u0641\u062a", "mixname_ar": "\u0631\u0643\u064a\u0641\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Rakefet", "mixname_en": "Rakefet | <span>Center Galilee</span>", "label_ru": "\u0420\u0430\u043a\u0435\u0444\u0435\u0442", "mixname_ru": "\u0420\u0430\u043a\u0435\u0444\u0435\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "AA4FA1295DFA68FD89634877EE9B3574", "id": "1122", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d9\u05dd", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d9\u05dd | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u064a\u0627\u0645", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u064a\u0627\u0645 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Kiryat Yam", "mixname_en": "Kiryat Yam | <span>HaMifratz</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u042f\u043c", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u042f\u043c | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "AA75DD73C8E17EE00CA5BFEAAB9462FE", "id": "10", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d0\u05d1\u05d9\u05e2\u05d6\u05e8", "mixname_he": "\u05d0\u05d1\u05d9\u05e2\u05d6\u05e8 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0641\u064a\u0639\u0632\u064a\u0631", "mixname_ar": "\u0627\u0641\u064a\u0639\u0632\u064a\u0631 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Aviezer", "mixname_en": "Aviezer | <span>Shfelat Yehuda</span>", "label_ru": "\u0410\u0432\u0438\u044d\u0437\u0435\u0440", "mixname_ru": "\u0410\u0432\u0438\u044d\u0437\u0435\u0440 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "AAB9FF61D530DFEB9B7BE2E62A34FB6D", "id": "1343", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d7\u05e1\u05d9\u05d3\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d7\u05e1\u05d9\u05d3\u05d9\u05dd | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062d\u0633\u064a\u062f\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062d\u0633\u064a\u062f\u064a\u0645 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Kfar Hassidim", "mixname_en": "Kfar Hassidim | <span>HaMifratz</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0441\u0438\u0434\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0441\u0438\u0434\u0438\u043c | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "AAD2B7A2DE9D91167C977A33B49153F5", "id": "1252", "areaid": 2, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e9\u05e2\u05dc", "mixname_he": "\u05e9\u05e2\u05dc | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0634\u0627\u0639\u0627\u0644", "mixname_ar": "\u0634\u0627\u0639\u0627\u0644 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Sha'al", "mixname_en": "Sha'al | <span>North Golan</span>", "label_ru": "\u0428\u0430\u0430\u043b\u044c", "mixname_ru": "\u0428\u0430\u0430\u043b\u044c | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "AB1DF7312AC5AFD39664094D0CCB999A", "id": "120", "areaid": 5, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05dc\u05de\u05d2\u05d5\u05e8", "mixname_he": "\u05d0\u05dc\u05de\u05d2\u05d5\u05e8 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0627\u0644\u0645\u0627\u063a\u0648\u0631", "mixname_ar": "\u0627\u0644\u0645\u0627\u063a\u0648\u0631 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Almagor", "mixname_en": "Almagor | <span>South Golan</span>", "label_ru": "\u0410\u043b\u044c\u043c\u0430\u0433\u043e\u0440", "mixname_ru": "\u0410\u043b\u044c\u043c\u0430\u0433\u043e\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "AB3CEB950485C39571D374E4FB74760A", "id": "345", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0430\u0445\u0430\u043b\u044c \u0421\u043e\u0440\u0435\u043a", "label_he": "\u05d2\u05e0\u05d9 \u05d8\u05dc", "mixname_he": "\u05d2\u05e0\u05d9 \u05d8\u05dc | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u0627\u0646\u064a \u0637\u0627\u0644", "mixname_ar": "\u062c\u0627\u0646\u064a \u0637\u0627\u0644 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ganei Tal", "mixname_en": "Ganei Tal | <span>Lachish</span>", "label_ru": "\u0413\u0430\u043d\u0435\u0439 \u0422\u0430\u043b\u044c", "mixname_ru": "\u0413\u0430\u043d\u0435\u0439 \u0422\u0430\u043b\u044c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "AB58E81F6FF615CDE1E2EF913FF6734F", "id": "174", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d1\u05d9\u05e8\u05d9\u05d4", "mixname_he": "\u05d1\u05d9\u05e8\u05d9\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u0631\u064a\u0647", "mixname_ar": "\u0628\u064a\u0631\u064a\u0647 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Biriyeh", "mixname_en": "Biriyeh | <span>Upper Galilee</span>", "label_ru": "\u0411\u0438\u0440\u0438\u044f", "mixname_ru": "\u0411\u0438\u0440\u0438\u044f | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "AB9839E36A65E24AD25D24EAB1AB42A8", "id": "1234", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05e9\u05d7\u05e8\u05d5\u05ea", "mixname_he": "\u05e9\u05d7\u05e8\u05d5\u05ea | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u0634\u062d\u0631\u0648\u062a", "mixname_ar": "\u0634\u062d\u0631\u0648\u062a | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Shachrut", "mixname_en": "Shachrut | <span>Arava</span>", "label_ru": "\u0428\u0430\u0445\u0440\u0443\u0442", "mixname_ru": "\u0428\u0430\u0445\u0440\u0443\u0442 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "AB9C4C82AFDAF602C9089355CFBC415E", "id": "727", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05de\u05d5\u05e6\u05d0 \u05e2\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05de\u05d5\u05e6\u05d0 \u05e2\u05d9\u05dc\u05d9\u05ea | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0645\u0648\u062a\u0633\u0627 \u0639\u064a\u0644\u064a\u062a", "mixname_ar": "\u0645\u0648\u062a\u0633\u0627 \u0639\u064a\u0644\u064a\u062a | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Motza Illit", "mixname_en": "Motza Illit | <span>Jerusalem</span>", "label_ru": "\u041c\u043e\u0446\u0430 \u0418\u043b\u0438\u0442", "mixname_ru": "\u041c\u043e\u0446\u0430 \u0418\u043b\u0438\u0442 | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "ABCCCF5493A341D16156F8457477CA43", "id": "365", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d3\u05d5\u05dc\u05d1", "mixname_he": "\u05d3\u05d5\u05dc\u05d1 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062f\u0648\u0644\u064a\u0641", "mixname_ar": "\u062f\u0648\u0644\u064a\u0641 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Dolev", "mixname_en": "Dolev | <span>Shomron</span>", "label_ru": "\u0414\u043e\u043b\u0435\u0432", "mixname_ru": "\u0414\u043e\u043b\u0435\u0432 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "AC33E72F7363F30CA7274FE788F74C1E", "id": "617", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d8\u05e8\u05d5\u05de\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05d8\u05e8\u05d5\u05de\u05df | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u062a\u0631\u0648\u0645\u0646", "mixname_ar": "\u0643\u0641\u0631 \u062a\u0631\u0648\u0645\u0646 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Kfar Truman", "mixname_en": "Kfar Truman | <span>Yarkon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0422\u0440\u0443\u043c\u0430\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0422\u0440\u0443\u043c\u0430\u043d | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "AC341C0E318FCF8F2629864306DB134C", "id": "87", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05d0\u05d9\u05d1\u05d8\u05d9\u05df", "mixname_he": "\u05d0\u05d9\u05d1\u05d8\u05d9\u05df | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0627\u0628\u0637\u0646", "mixname_ar": "\u0627\u0628\u0637\u0646 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Ibtin", "mixname_en": "Ibtin | <span>HaMifratz</span>", "label_ru": "\u0418\u0431\u0442\u0438\u043d", "mixname_ru": "\u0418\u0431\u0442\u0438\u043d | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "AC8A484F7DAF72D5DBB79CB7163AD69D", "id": "158", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d1\u05d0\u05e8 \u05d2\u05e0\u05d9\u05dd", "mixname_he": "\u05d1\u05d0\u05e8 \u05d2\u05e0\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0626\u064a\u0631 \u062c\u0627\u0646\u064a\u0645", "mixname_ar": "\u0628\u0626\u064a\u0631 \u062c\u0627\u0646\u064a\u0645 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Be'er Ganim", "mixname_en": "Be'er Ganim | <span>West Lachish</span>", "label_ru": "\u0411\u0435\u044d\u0440 \u0413\u0430\u043d\u0438\u043c", "mixname_ru": "\u0411\u0435\u044d\u0440 \u0413\u0430\u043d\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "ACA0AB107A5FCE426EE2D804845BF467", "id": "549", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d9\u05e9\u05e2\u05d9", "mixname_he": "\u05d9\u05e9\u05e2\u05d9 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u064a\u0634\u0639\u064a", "mixname_ar": "\u064a\u0634\u0639\u064a | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Yish'i", "mixname_en": "Yish'i | <span>Shfelat Yehuda</span>", "label_ru": "\u0418\u0448\u0438", "mixname_ru": "\u0418\u0448\u0438 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "ACB699EA686E52EFB592A27C2DEC4726", "id": "1188", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e8\u05e9\u05e4\u05d9\u05dd", "mixname_he": "\u05e8\u05e9\u05e4\u05d9\u05dd | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0631\u0634\u0627\u0641\u064a\u0645", "mixname_ar": "\u0631\u0634\u0627\u0641\u064a\u0645 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Reshafim", "mixname_en": "Reshafim | <span>Beit She'an Valley</span>", "label_ru": "\u0420\u0435\u0448\u0430\u0444\u0438\u043c", "mixname_ru": "\u0420\u0435\u0448\u0430\u0444\u0438\u043c | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "ACCD500098B68DBCB37A34304093081C", "id": "28", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05d0\u05d5\u05dd \u05d0\u05dc \u05e7\u05d5\u05d8\u05d5\u05e3", "mixname_he": "\u05d0\u05d5\u05dd \u05d0\u05dc \u05e7\u05d5\u05d8\u05d5\u05e3 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0627\u0645 \u0627\u0644\u0642\u0637\u0641", "mixname_ar": "\u0627\u0645 \u0627\u0644\u0642\u0637\u0641 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Umm al-Qutuf", "mixname_en": "Umm al-Qutuf | <span>Wadi Ara</span>", "label_ru": "\u0423\u043c \u0430\u043b\u044c \u041a\u0443\u0442\u0443\u0444", "mixname_ru": "\u0423\u043c \u0430\u043b\u044c \u041a\u0443\u0442\u0443\u0444 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "ACDBAFF950C5023A73F8C8AF5B22921C", "id": "671", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05dc\u05d1\u05d9\u05d0", "mixname_he": "\u05dc\u05d1\u05d9\u05d0 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0644\u0641\u064a", "mixname_ar": "\u0644\u0641\u064a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Lavi", "mixname_en": "Lavi | <span>Lower Galilee</span>", "label_ru": "\u041b\u0430\u0432\u0438", "mixname_ru": "\u041b\u0430\u0432\u0438 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "AD0E0E8ECD1668A3E3860E1D2C629975", "id": "1210", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e9\u05d3\u05d4 \u05e0\u05d7\u05de\u05d9\u05d4", "mixname_he": "\u05e9\u05d3\u05d4 \u05e0\u05d7\u05de\u05d9\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0646\u0627\u062d\u0645\u064a\u0647", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0646\u0627\u062d\u0645\u064a\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Sdeh Nechemia", "mixname_en": "Sdeh Nechemia | <span>Confrontation Line</span>", "label_ru": "\u0421\u0434\u044d \u041d\u0435\u0445\u0435\u043c\u0438\u044f", "mixname_ru": "\u0421\u0434\u044d \u041d\u0435\u0445\u0435\u043c\u0438\u044f | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "AD4FB808F84BA23B102BBBDBF5B4133E", "id": "31", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d0\u05d5\u05e8 \u05d4\u05d2\u05e0\u05d5\u05d6", "mixname_he": "\u05d0\u05d5\u05e8 \u05d4\u05d2\u05e0\u05d5\u05d6 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0623\u0648\u0631 \u0647\u063a\u0646\u0648\u0632", "mixname_ar": "\u0623\u0648\u0631 \u0647\u063a\u0646\u0648\u0632 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Or HaGanuz", "mixname_en": "Or HaGanuz | <span>Upper Galilee</span>", "label_ru": "\u041e\u0440 \u0445\u0430-\u0413\u0430\u043d\u0443\u0437", "mixname_ru": "\u041e\u0440 \u0445\u0430-\u0413\u0430\u043d\u0443\u0437 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "AD8240018841B6346A219AE92D4000D4", "id": "271", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05d1\u05ea \u05e9\u05dc\u05de\u05d4", "mixname_he": "\u05d1\u05ea \u05e9\u05dc\u05de\u05d4 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0628\u0627\u062a \u0634\u0644\u0648\u0645\u0648", "mixname_ar": "\u0628\u0627\u062a \u0634\u0644\u0648\u0645\u0648 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Bat Shlomo", "mixname_en": "Bat Shlomo | <span>HaCarmel</span>", "label_ru": "\u0411\u0430\u0442 \u0428\u043b\u043e\u043c\u043e", "mixname_ru": "\u0411\u0430\u0442 \u0428\u043b\u043e\u043c\u043e | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "AD8AE136E2FFDA2EF2D8E54F25093D14", "id": "1125", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05de\u05dc\u05d0\u05db\u05d9", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05de\u05dc\u05d0\u05db\u05d9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0645\u0644\u0627\u062e\u064a", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0645\u0644\u0627\u062e\u064a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kiryat Malachi", "mixname_en": "Kiryat Malachi | <span>Lachish</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u041c\u0430\u043b\u0430\u0445\u0438", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u041c\u0430\u043b\u0430\u0445\u0438 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "ADD4D4925916E3BBC1FBA5539F9619F8", "id": "799", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05de\u05e6\u05e4\u05d4 \u05d0\u05d1\u05d9''\u05d1", "mixname_he": "\u05de\u05e6\u05e4\u05d4 \u05d0\u05d1\u05d9''\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0645\u062a\u0633\u0628\u064a \u0623\u0641\u064a\u0641", "mixname_ar": "\u0645\u062a\u0633\u0628\u064a \u0623\u0641\u064a\u0641 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Mitzpeh Aviv", "mixname_en": "Mitzpeh Aviv | <span>Center Galilee</span>", "label_ru": "\u041c\u0438\u0446\u043f\u0435 \u0410\u0432\u0438\u0432", "mixname_ru": "\u041c\u0438\u0446\u043f\u0435 \u0410\u0432\u0438\u0432 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "AE0AC7CA1CC7792BF955FE1B063A8263", "id": "126", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05dc\u05e7\u05e0\u05d4", "mixname_he": "\u05d0\u05dc\u05e7\u05e0\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0643\u0646\u0627", "mixname_ar": "\u0627\u0644\u0643\u0646\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Elkana", "mixname_en": "Elkana | <span>Sharon</span>", "label_ru": "\u042d\u043b\u044c\u043a\u0430\u043d\u0430", "mixname_ru": "\u042d\u043b\u044c\u043a\u0430\u043d\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "AE4873C2F408378342EDBB16A8600767", "id": "385", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d4\u05d5\u05d3 \u05d4\u05e9\u05e8\u05d5\u05df", "mixname_he": "\u05d4\u05d5\u05d3 \u05d4\u05e9\u05e8\u05d5\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0647\u0648\u062f \u0647\u0634\u0627\u0631\u0648\u0646", "mixname_ar": "\u0647\u0648\u062f \u0647\u0634\u0627\u0631\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Hod HaSharon", "mixname_en": "Hod HaSharon | <span>Sharon</span>", "label_ru": "\u0425\u043e\u0434 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "mixname_ru": "\u0425\u043e\u0434 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "AEB9F5A083D82643AEA64CD07170797A", "id": "927", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e0\u05d5\u05e3 \u05d4\u05d2\u05dc\u05d9\u05dc", "mixname_he": "\u05e0\u05d5\u05e3 \u05d4\u05d2\u05dc\u05d9\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0644\u0646\u0627\u0635\u0631\u0629 \u0627\u0644\u0639\u0644\u064a\u0627", "mixname_ar": "\u0627\u0644\u0646\u0627\u0635\u0631\u0629 \u0627\u0644\u0639\u0644\u064a\u0627 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Nazareth Illit", "mixname_en": "Nazareth Illit | <span>HaAmakim</span>", "label_ru": "\u041d\u0430\u0446\u0435\u0440\u0435\u0442 \u0418\u043b\u0438\u0442", "mixname_ru": "\u041d\u0430\u0446\u0435\u0440\u0435\u0442 \u0418\u043b\u0438\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "AEC5FD1D91087954659E1D06E0C77A86", "id": "429", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d7\u05d2\u05d5\u05e8", "mixname_he": "\u05d7\u05d2\u05d5\u05e8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0627\u062c\u0648\u0631", "mixname_ar": "\u062d\u0627\u062c\u0648\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Hagor", "mixname_en": "Hagor | <span>Sharon</span>", "label_ru": "\u0425\u0430\u0433\u043e\u0440", "mixname_ru": "\u0425\u0430\u0433\u043e\u0440 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "AED18727A376EAEACF306D851283883C", "id": "984", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e2\u05d9\u05df \u05d2\u05d1", "mixname_he": "\u05e2\u05d9\u05df \u05d2\u05d1 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0639\u064a\u0646 \u062c\u064a\u0641", "mixname_ar": "\u0639\u064a\u0646 \u062c\u064a\u0641 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Ein Gev", "mixname_en": "Ein Gev | <span>South Golan</span>", "label_ru": "\u042d\u0439\u043d \u0413\u0435\u0432", "mixname_ru": "\u042d\u0439\u043d \u0413\u0435\u0432 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "AED525DC3F575C8DD1739BB365399D87", "id": "777", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05de\u05e2\u05d9\u05dc\u05d9\u05d0", "mixname_he": "\u05de\u05e2\u05d9\u05dc\u05d9\u05d0 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0627", "mixname_ar": "\u0645\u0639\u0644\u064a\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Mi'ilya", "mixname_en": "Mi'ilya | <span>Confrontation Line</span>", "label_ru": "\u041c\u0438\u0438\u043b\u0438\u044f", "mixname_ru": "\u041c\u0438\u0438\u043b\u0438\u044f | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "AF03968847DDE999E86F2C64B0B7443C", "id": "6026", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05d0\u05e9\u05d5\u05df \u05dc\u05e6\u05d9\u05d5\u05df - \u05de\u05e2\u05e8\u05d1", "mixname_he": "\u05e8\u05d0\u05e9\u05d5\u05df \u05dc\u05e6\u05d9\u05d5\u05df - \u05de\u05e2\u05e8\u05d1 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0631\u064a\u0634\u0648\u0646 \u0644\u062a\u0633\u064a\u0648\u0646 - \u063a\u0631\u0628", "mixname_ar": "\u0631\u064a\u0634\u0648\u0646 \u0644\u062a\u0633\u064a\u0648\u0646 - \u063a\u0631\u0628 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Rishon LeZion - West", "mixname_en": "Rishon LeZion - West | <span>HaShfela</span>", "label_ru": "\u0420\u0438\u0448\u043e\u043d \u043b\u0435 \u0426\u0438\u043e\u043d - \u0437\u0430\u043f\u0430\u0434", "mixname_ru": "\u0420\u0438\u0448\u043e\u043d \u043b\u0435 \u0426\u0438\u043e\u043d - \u0437\u0430\u043f\u0430\u0434 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "AF2281CDBFA28454CA112189FB62DB3F", "id": "27", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d5\u05dd \u05d0\u05dc \u05e4\u05d7\u05dd", "mixname_he": "\u05d0\u05d5\u05dd \u05d0\u05dc \u05e4\u05d7\u05dd | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0627\u0645 \u0627\u0644\u0641\u062d\u0645", "mixname_ar": "\u0627\u0645 \u0627\u0644\u0641\u062d\u0645 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Umm al-Fahm", "mixname_en": "Umm al-Fahm | <span>Wadi Ara</span>", "label_ru": "\u0423\u043c \u0430\u043b\u044c \u0424\u0430\u0445\u043c", "mixname_ru": "\u0423\u043c \u0430\u043b\u044c \u0424\u0430\u0445\u043c | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "AF28AA3FB0B815E015F95E06E8BEECF4", "id": "495", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d8\u05e4\u05d7\u05d5\u05ea", "mixname_he": "\u05d8\u05e4\u05d7\u05d5\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u062a\u0641\u062d\u0648\u062a", "mixname_ar": "\u062a\u0641\u062d\u0648\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Tefahot", "mixname_en": "Tefahot | <span>Center Galilee</span>", "label_ru": "\u0422\u0444\u0430\u0445\u043e\u0442", "mixname_ru": "\u0422\u0444\u0430\u0445\u043e\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "AF4872CD003B6E4154EBF9C6D5D2D488", "id": "896", "areaid": 19, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05e0\u05d9\u05e6\u05df", "mixname_he": "\u05e0\u05d9\u05e6\u05df | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u064a\u062a\u0633\u0627\u0646", "mixname_ar": "\u0646\u064a\u062a\u0633\u0627\u0646 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Nitzan", "mixname_en": "Nitzan | <span>West Lachish</span>", "label_ru": "\u041d\u0438\u0446\u0430\u043d", "mixname_ru": "\u041d\u0438\u0446\u0430\u043d | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "AF8AE5094BBD8F1DF6BD6DFF5BB4A586", "id": "250", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d1\u05e2\u05e0\u05d4", "mixname_he": "\u05d1\u05e2\u05e0\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0628\u0639\u0646\u0629", "mixname_ar": "\u0627\u0644\u0628\u0639\u0646\u0629 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Bi'ina", "mixname_en": "Bi'ina | <span>Upper Galilee</span>", "label_ru": "\u0411\u0438\u0438\u043d\u0430", "mixname_ru": "\u0411\u0438\u0438\u043d\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "AFA7BF6D0E8ECE74FD8ADE544BBA9C85", "id": "302", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d9\u05e9\u05e2\u05d9\u05d4\u05d5", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d9\u05e9\u05e2\u05d9\u05d4\u05d5 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u064a\u0634\u0639\u064a\u0627\u0647\u0648", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u064a\u0634\u0639\u064a\u0627\u0647\u0648 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Givat Ishayahu", "mixname_en": "Givat Ishayahu | <span>Shfelat Yehuda</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0419\u0435\u0448\u0430\u044f\u0433\u0443", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0419\u0435\u0448\u0430\u044f\u0433\u0443 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "AFD5A4496186D83C6021B2D668B0FDAB", "id": "1063", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05e4\u05e1\u05d5\u05d8\u05d4", "mixname_he": "\u05e4\u05e1\u05d5\u05d8\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0641\u0633\u0648\u0637\u0629", "mixname_ar": "\u0641\u0633\u0648\u0637\u0629 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Fassuta", "mixname_en": "Fassuta | <span>Confrontation Line</span>", "label_ru": "\u0424\u0430\u0441\u0441\u0443\u0442\u0430", "mixname_ru": "\u0424\u0430\u0441\u0441\u0443\u0442\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "AFE27274244989885C5B7F0B089AF290", "id": "1142", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e8\u05d1\u05d1\u05d4", "mixname_he": "\u05e8\u05d1\u05d1\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0631\u064a\u0641\u0641\u0627", "mixname_ar": "\u0631\u064a\u0641\u0641\u0627 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Revava", "mixname_en": "Revava | <span>Shomron</span>", "label_ru": "\u0420\u0435\u0432\u0430\u0432\u0430", "mixname_ru": "\u0420\u0435\u0432\u0430\u0432\u0430 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "B070DA0663D1D5152CE0659E8BAA1A33", "id": "1025", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e2\u05de\u05d9\u05e2\u05d3", "mixname_he": "\u05e2\u05de\u05d9\u05e2\u05d3 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0639\u0645\u064a\u0639\u0627\u062f", "mixname_ar": "\u0639\u0645\u064a\u0639\u0627\u062f | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Amiad", "mixname_en": "Amiad | <span>Upper Galilee</span>", "label_ru": "\u0410\u043c\u0438\u0430\u0434", "mixname_ru": "\u0410\u043c\u0438\u0430\u0434 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "B09D22BB08112658E31336558D5C5067", "id": "1289", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05ea\u05dc\u05de\u05d9 \u05d0\u05dc\u05d9\u05d4\u05d5", "mixname_he": "\u05ea\u05dc\u05de\u05d9 \u05d0\u05dc\u05d9\u05d4\u05d5 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062a\u0644\u0645\u064a \u0625\u0644\u064a\u0627\u0647\u0648", "mixname_ar": "\u062a\u0644\u0645\u064a \u0625\u0644\u064a\u0627\u0647\u0648 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Talmei Eliyahu", "mixname_en": "Talmei Eliyahu | <span>Gaza Envelope</span>", "label_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u042d\u043b\u0438\u044f\u0433\u0443", "mixname_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u042d\u043b\u0438\u044f\u0433\u0443 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "B0A261F5CECE666C33D47AE2E7D284D4", "id": "922", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e0\u05e2\u05df", "mixname_he": "\u05e0\u05e2\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0646\u0627\u0639\u0646", "mixname_ar": "\u0646\u0627\u0639\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Na'an", "mixname_en": "Na'an | <span>HaShfela</span>", "label_ru": "\u041d\u0430\u0430\u043d", "mixname_ru": "\u041d\u0430\u0430\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "B0EB50E9B1F8F37919E8A1F34657F03B", "id": "736", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05de\u05d7\u05e0\u05d9\u05d9\u05dd", "mixname_he": "\u05de\u05d7\u05e0\u05d9\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0645\u062d\u0627\u0646\u064a\u064a\u0645", "mixname_ar": "\u0645\u062d\u0627\u0646\u064a\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Machanaim", "mixname_en": "Machanaim | <span>Upper Galilee</span>", "label_ru": "\u041c\u0430\u0445\u0430\u043d\u0430\u0438\u043c", "mixname_ru": "\u041c\u0430\u0445\u0430\u043d\u0430\u0438\u043c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "B13257F55F1104B43C9167DED914CB2A", "id": "423", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05d6\u05e8\u05d7\u05d9\u05d4", "mixname_he": "\u05d6\u05e8\u05d7\u05d9\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0632\u0631\u062d\u064a\u0647", "mixname_ar": "\u0632\u0631\u062d\u064a\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Zrahia", "mixname_en": "Zrahia | <span>Lachish</span>", "label_ru": "\u0417\u0440\u0430\u0445\u0438\u044f", "mixname_ru": "\u0417\u0440\u0430\u0445\u0438\u044f | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "B134B1C254C28E05F1685FA8550E0DF0", "id": "1091", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e6\u05e4\u05e8\u05d9\u05e8\u05d9\u05dd", "mixname_he": "\u05e6\u05e4\u05e8\u05d9\u05e8\u05d9\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0633\u0627\u0641\u0631\u064a\u0631\u064a\u0645", "mixname_ar": "\u062a\u0633\u0627\u0641\u0631\u064a\u0631\u064a\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tzafririm", "mixname_en": "Tzafririm | <span>Shfelat Yehuda</span>", "label_ru": "\u0426\u0430\u0444\u0440\u0438\u0440\u0438\u043c", "mixname_ru": "\u0426\u0430\u0444\u0440\u0438\u0440\u0438\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "B139F926277376C09A3137107ED9D13A", "id": "875", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05e0\u05d5\u05e4\u05da", "mixname_he": "\u05e0\u05d5\u05e4\u05da | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0646\u0648\u0641\u062e", "mixname_ar": "\u0646\u0648\u0641\u062e | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Nofech", "mixname_en": "Nofech | <span>Yarkon</span>", "label_ru": "\u041d\u043e\u0444\u0435\u0445", "mixname_ru": "\u041d\u043e\u0444\u0435\u0445 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "B15A46E8C3CF268C3341E62F2A305131", "id": "638", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05e1\u05d1\u05d0", "mixname_he": "\u05db\u05e4\u05e8 \u05e1\u05d1\u05d0 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0633\u0627\u0628\u0627", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0633\u0627\u0628\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Saba", "mixname_en": "Kfar Saba | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0421\u0430\u0431\u0430", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0421\u0430\u0431\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B18ACBE9C781E8B9A2F56EAFEF2EBF76", "id": "941", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05e1\u05d5\u05e1\u05d9\u05d0", "mixname_he": "\u05e1\u05d5\u05e1\u05d9\u05d0 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0633\u0648\u0633\u064a\u0627", "mixname_ar": "\u0633\u0648\u0633\u064a\u0627 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Susya", "mixname_en": "Susya | <span>Yehuda</span>", "label_ru": "\u0421\u0443\u0441\u0438\u044f", "mixname_ru": "\u0421\u0443\u0441\u0438\u044f | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "B1D6C0EBEF56EE2309649D57F9C60F78", "id": "1065", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e4\u05e6\u05d0\u05dc", "mixname_he": "\u05e4\u05e6\u05d0\u05dc | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0628\u062a\u0633\u0626\u064a\u0644", "mixname_ar": "\u0628\u062a\u0633\u0626\u064a\u0644 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Petza'el", "mixname_en": "Petza'el | <span>Bika'a</span>", "label_ru": "\u041f\u0435\u0446\u0430\u044d\u043b\u044c", "mixname_ru": "\u041f\u0435\u0446\u0430\u044d\u043b\u044c | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "B22F250219B24F9480468AD8AF8C5AD2", "id": "1124", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05de\u05d5\u05e6\u05e7\u05d9\u05df", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05de\u05d5\u05e6\u05e7\u05d9\u05df | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0645\u0648\u062a\u0633\u0643\u064a\u0646", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0645\u0648\u062a\u0633\u0643\u064a\u0646 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Kiryat Motzkin", "mixname_en": "Kiryat Motzkin | <span>HaMifratz</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u041c\u043e\u0446\u043a\u0438\u043d", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u041c\u043e\u0446\u043a\u0438\u043d | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "B23ED20B509C13A177563619867B619F", "id": "259", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05d1\u05e8\u05d5\u05e9", "mixname_he": "\u05d1\u05e8\u05d5\u05e9 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u0627\u0631\u0648\u0634", "mixname_ar": "\u0628\u0627\u0631\u0648\u0634 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Brosh", "mixname_en": "Brosh | <span>West Negev</span>", "label_ru": "\u0411\u0440\u043e\u0448", "mixname_ru": "\u0411\u0440\u043e\u0448 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "B258392E3C9D3995E656F13AB4EEE75A", "id": "1273", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05ea\u05d5\u05d1\u05dc", "mixname_he": "\u05ea\u05d5\u05d1\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062a\u0648\u0641\u0627\u0644", "mixname_ar": "\u062a\u0648\u0641\u0627\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Tuval", "mixname_en": "Tuval | <span>Upper Galilee</span>", "label_ru": "\u0422\u0443\u0432\u0430\u043b\u044c", "mixname_ru": "\u0422\u0443\u0432\u0430\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "B2EA53D62DEED079DA608293B00B05BA", "id": "103", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05dc\u05d5\u05de\u05d5\u05ea", "mixname_he": "\u05d0\u05dc\u05d5\u05de\u05d5\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0623\u0644\u0648\u0645\u0648\u062a", "mixname_ar": "\u0623\u0644\u0648\u0645\u0648\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Alumot", "mixname_en": "Alumot | <span>Lower Galilee</span>", "label_ru": "\u0410\u043b\u0443\u043c\u043e\u0442", "mixname_ru": "\u0410\u043b\u0443\u043c\u043e\u0442 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "B2ECD358A82247C863B26371E1377F7C", "id": "9", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d0\u05d1\u05d9\u05d7\u05d9\u05dc", "mixname_he": "\u05d0\u05d1\u05d9\u05d7\u05d9\u05dc | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0641\u064a\u062d\u0627\u064a\u0644", "mixname_ar": "\u0627\u0641\u064a\u062d\u0627\u064a\u0644 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Avihail", "mixname_en": "Avihail | <span>Sharon</span>", "label_ru": "\u0410\u0432\u0438\u0445\u0430\u0439\u043b\u044c", "mixname_ru": "\u0410\u0432\u0438\u0445\u0430\u0439\u043b\u044c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B30B2683AB4F235B394902E5994F66D8", "id": "1297", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05ea\u05e0\u05d5\u05d1\u05d5\u05ea", "mixname_he": "\u05ea\u05e0\u05d5\u05d1\u05d5\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0646\u0648\u0641\u0648\u062a", "mixname_ar": "\u062a\u0646\u0648\u0641\u0648\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tnuvot", "mixname_en": "Tnuvot | <span>Sharon</span>", "label_ru": "\u0422\u043d\u0443\u0432\u043e\u0442", "mixname_ru": "\u0422\u043d\u0443\u0432\u043e\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B312BAEEEDE1C550A8596F99DC4A7C59", "id": "334", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05d2\u05df \u05d4\u05e9\u05d5\u05de\u05e8\u05d5\u05df", "mixname_he": "\u05d2\u05df \u05d4\u05e9\u05d5\u05de\u05e8\u05d5\u05df | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062c\u0627\u0646 \u0647\u0634\u0648\u0645\u0631\u0648\u0646", "mixname_ar": "\u062c\u0627\u0646 \u0647\u0634\u0648\u0645\u0631\u0648\u0646 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Gan HaShomron", "mixname_en": "Gan HaShomron | <span>Menashe</span>", "label_ru": "\u0413\u0430\u043d \u0445\u0430-\u0428\u043e\u043c\u0440\u043e\u043d", "mixname_ru": "\u0413\u0430\u043d \u0445\u0430-\u0428\u043e\u043c\u0440\u043e\u043d | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "B317F5AD887BE66674084D892B324001", "id": "940", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0443\u0441\u0442\u0430\u043d \u0430\u043b\u044c-\u041c\u0430\u0440\u0434\u0436", "label_he": "\u05e1\u05d5\u05dc\u05dd", "mixname_he": "\u05e1\u05d5\u05dc\u05dd | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0633\u0648\u0644\u0645", "mixname_ar": "\u0633\u0648\u0644\u0645 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Sulam", "mixname_en": "Sulam | <span>HaAmakim</span>", "label_ru": "\u0421\u0443\u043b\u0430\u043c", "mixname_ru": "\u0421\u0443\u043b\u0430\u043c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B34BED1DDC574C7AFF3341F4BAB58C61", "id": "783", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05d7\u05d1\u05e8", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05d7\u05d1\u05e8 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0639\u0627\u0644\u064a\u0647 \u062d\u064a\u0641\u0631", "mixname_ar": "\u0645\u0639\u0627\u0644\u064a\u0647 \u062d\u064a\u0641\u0631 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ma'ale Hever", "mixname_en": "Ma'ale Hever | <span>Yehuda</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0425\u0435\u0432\u0435\u0440", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0425\u0435\u0432\u0435\u0440 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "B34BF777E8A20F2CA3CE3478C0FAE6F8", "id": "361", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d3\u05d1\u05e8\u05ea", "mixname_he": "\u05d3\u05d1\u05e8\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062f\u0648\u0628\u0631\u0627\u062a", "mixname_ar": "\u062f\u0648\u0628\u0631\u0627\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Dovrat", "mixname_en": "Dovrat | <span>HaAmakim</span>", "label_ru": "\u0414\u043e\u0432\u0440\u0430\u0442", "mixname_ru": "\u0414\u043e\u0432\u0440\u0430\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B35A9818369032993D8E7D28A850E38E", "id": "1285", "areaid": 5, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05ea\u05dc \u05e7\u05e6\u05d9\u05e8", "mixname_he": "\u05ea\u05dc \u05e7\u05e6\u05d9\u05e8 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u062a\u0644 \u0643\u062a\u0633\u064a\u0631", "mixname_ar": "\u062a\u0644 \u0643\u062a\u0633\u064a\u0631 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Tel Katzir", "mixname_en": "Tel Katzir | <span>South Golan</span>", "label_ru": "\u0422\u0435\u043b\u044c \u041a\u0430\u0446\u0438\u0440", "mixname_ru": "\u0422\u0435\u043b\u044c \u041a\u0430\u0446\u0438\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "B3B8A7F4EE4FC3D395CA73D9D55FFECA", "id": "895", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0443\u0441\u0442\u0430\u043d \u0430\u043b\u044c-\u041c\u0430\u0440\u0434\u0436", "label_he": "\u05e0\u05d9\u05df", "mixname_he": "\u05e0\u05d9\u05df | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0646\u064a\u0646", "mixname_ar": "\u0646\u064a\u0646 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Nin", "mixname_en": "Nin | <span>HaAmakim</span>", "label_ru": "\u041d\u0438\u043d", "mixname_ru": "\u041d\u0438\u043d | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B3C6BB64F9739F9E26767054741A1A9E", "id": "874", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05e0\u05d5\u05e4\u05d9\u05ea", "mixname_he": "\u05e0\u05d5\u05e4\u05d9\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0646\u0648\u0641\u064a\u062a", "mixname_ar": "\u0646\u0648\u0641\u064a\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Nofit", "mixname_en": "Nofit | <span>HaAmakim</span>", "label_ru": "\u041d\u043e\u0444\u0438\u0442", "mixname_ru": "\u041d\u043e\u0444\u0438\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B3CDEFD4C3162D63AFCBD2BE35EBEB8C", "id": "312", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d2\u05d1\u05ea", "mixname_he": "\u05d2\u05d1\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062c\u0641\u062a", "mixname_ar": "\u062c\u0641\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Gvat", "mixname_en": "Gvat | <span>HaAmakim</span>", "label_ru": "\u0413\u0432\u0430\u0442", "mixname_ru": "\u0413\u0432\u0430\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B3ED7B77D3391DC61DCFE5A7DEC4B3E6", "id": "809", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05de\u05e8\u05d7\u05d1 \u05e2\u05dd", "mixname_he": "\u05de\u05e8\u05d7\u05d1 \u05e2\u05dd | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0631\u062d\u0627\u0641 \u0639\u0627\u0645", "mixname_ar": "\u0645\u0631\u062d\u0627\u0641 \u0639\u0627\u0645 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Merhav Am", "mixname_en": "Merhav Am | <span>South Negev</span>", "label_ru": "\u041c\u0435\u0440\u0445\u0430\u0432 \u0410\u043c", "mixname_ru": "\u041c\u0435\u0440\u0445\u0430\u0432 \u0410\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "B40F96C977AE39B7C561A2AD45241079", "id": "81", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05d7\u05d5\u05d6\u05ea \u05d1\u05e8\u05e7", "mixname_he": "\u05d0\u05d7\u05d5\u05d6\u05ea \u05d1\u05e8\u05e7 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0623\u062d\u0648\u0632\u0627\u062a \u0628\u0631\u0627\u0643", "mixname_ar": "\u0623\u062d\u0648\u0632\u0627\u062a \u0628\u0631\u0627\u0643 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ahuzat Barak", "mixname_en": "Ahuzat Barak | <span>HaAmakim</span>", "label_ru": "\u0410\u0445\u0443\u0437\u0430\u0442 \u0411\u0430\u0440\u0430\u043a", "mixname_ru": "\u0410\u0445\u0443\u0437\u0430\u0442 \u0411\u0430\u0440\u0430\u043a | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B412D33709D091B52F7A3CD01F15A718", "id": "6004", "areaid": 25, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d0\u05e8 \u05e9\u05d1\u05e2 - \u05d3\u05e8\u05d5\u05dd", "mixname_he": "\u05d1\u05d0\u05e8 \u05e9\u05d1\u05e2 - \u05e6\u05e4\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u0626\u0631 \u0627\u0644\u0633\u0628\u0639 -\u062c\u0646\u0648\u0628", "mixname_ar": "\u0628\u0626\u0631 \u0627\u0644\u0633\u0628\u0639 -\u062c\u0646\u0648\u0628 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Beer Sheva - West", "mixname_en": "Beer Sheva - West | <span>Center Negev</span>", "label_ru": "\u0411\u0435\u044d\u0440 \u0448\u0435\u0432\u0430 - \u042e\u0436\u043d\u0430\u044f \u0447\u0430\u0441\u0442\u044c", "mixname_ru": "\u0411\u0435\u044d\u0440 \u0448\u0435\u0432\u0430 - \u042e\u0436\u043d\u0430\u044f \u0447\u0430\u0441\u0442\u044c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "B4513A44C627657EB401BB740D629C57", "id": "574", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05db\u05e0\u05e3", "mixname_he": "\u05db\u05e0\u05e3 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0643\u0646\u0627\u0641", "mixname_ar": "\u0643\u0646\u0627\u0641 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Kanaf", "mixname_en": "Kanaf | <span>South Golan</span>", "label_ru": "\u041a\u0430\u043d\u0430\u0444", "mixname_ru": "\u041a\u0430\u043d\u0430\u0444 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "B4851B93C1E5CD410EB3131BA103E91F", "id": "1279", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05ea\u05dc \u05d7\u05d9", "mixname_he": "\u05ea\u05dc \u05d7\u05d9 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062a\u0644 \u062d\u0627\u064a", "mixname_ar": "\u062a\u0644 \u062d\u0627\u064a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Tel Hai", "mixname_en": "Tel Hai | <span>Confrontation Line</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0425\u0430\u0439", "mixname_ru": "\u0422\u0435\u043b\u044c \u0425\u0430\u0439 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "B4B7EF335A13220737BADA0BDEF00C23", "id": "26", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d5\u05dd \u05d0\u05dc-\u05d2\u05e0\u05dd", "mixname_he": "\u05d0\u05d5\u05dd \u05d0\u05dc-\u05d2\u05e0\u05dd | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0627\u0645 \u0627\u0644\u063a\u0646\u0645", "mixname_ar": "\u0627\u0645 \u0627\u0644\u063a\u0646\u0645 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Umm al-Ghanam", "mixname_en": "Umm al-Ghanam | <span>HaAmakim</span>", "label_ru": "\u0423\u043c \u0430\u043b\u044c \u0413\u0430\u043d\u0430\u043c", "mixname_ru": "\u0423\u043c \u0430\u043b\u044c \u0413\u0430\u043d\u0430\u043c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B4BC3C75B1FE46A883163DCEAAB31023", "id": "1168", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e8\u05de\u05d5\u05ea \u05d4\u05e9\u05d1\u05d9\u05dd", "mixname_he": "\u05e8\u05de\u05d5\u05ea \u05d4\u05e9\u05d1\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0631\u0627\u0645\u0648\u062a \u0647\u0634\u0641\u064a\u0645", "mixname_ar": "\u0631\u0627\u0645\u0648\u062a \u0647\u0634\u0641\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ramot HaShavim", "mixname_en": "Ramot HaShavim | <span>Sharon</span>", "label_ru": "\u0420\u0430\u043c\u043e\u0442 \u0445\u0430-\u0428\u0430\u0432\u0438\u043c", "mixname_ru": "\u0420\u0430\u043c\u043e\u0442 \u0445\u0430-\u0428\u0430\u0432\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B5096E6F97429E149B363A941DDA8FEF", "id": "636", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05db\u05e4\u05e8 \u05e0\u05d8\u05e8", "mixname_he": "\u05db\u05e4\u05e8 \u05e0\u05d8\u05e8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u0646\u064a\u0637\u0631", "mixname_ar": "\u0643\u0641\u0631 \u0646\u064a\u0637\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Netter", "mixname_en": "Kfar Netter | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041d\u0435\u0442\u0442\u0435\u0440", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041d\u0435\u0442\u0442\u0435\u0440 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B50C7DC5DF979DC431EA495DD74B062B", "id": "596", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05d0\u05d5\u05e8\u05e0\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05d0\u05d5\u05e8\u05e0\u05d9\u05dd | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0647\u0623\u0648\u0631\u0646\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0647\u0623\u0648\u0631\u0646\u064a\u0645 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Kfar HaOranim", "mixname_en": "Kfar HaOranim | <span>Yarkon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u041e\u0440\u0430\u043d\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u041e\u0440\u0430\u043d\u0438\u043c | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "B525826F995D1F61964705BF466A13FB", "id": "1001", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05e2\u05d9\u05df \u05d9\u05e2\u05e7\u05d1", "mixname_he": "\u05e2\u05d9\u05df \u05d9\u05e2\u05e7\u05d1 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0639\u064a\u0646 \u064a\u0639\u0642\u0648\u0628", "mixname_ar": "\u0639\u064a\u0646 \u064a\u0639\u0642\u0648\u0628 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ein Yacov", "mixname_en": "Ein Yacov | <span>Confrontation Line</span>", "label_ru": "\u042d\u0439\u043d \u042f\u0430\u043a\u043e\u0432", "mixname_ru": "\u042d\u0439\u043d \u042f\u0430\u043a\u043e\u0432 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "B529654AC2089D34270239C49B89C349", "id": "185", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d1\u05d9\u05ea \u05d4\u05d2\u05d3\u05d9", "mixname_he": "\u05d1\u05d9\u05ea \u05d4\u05d2\u05d3\u05d9 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0648\u0628\u064a\u062a \u0647\u062c\u062f\u064a", "mixname_ar": "\u0648\u0628\u064a\u062a \u0647\u062c\u062f\u064a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Beit HaGdi", "mixname_en": "Beit HaGdi | <span>West Negev</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u0413\u0434\u0438", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0445\u0430-\u0413\u0434\u0438 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "B534052D1004B7CFF39399391FBAAAFA", "id": "440", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d7\u05d5\u05dc\u05d9\u05ea", "mixname_he": "\u05d7\u05d5\u05dc\u05d9\u05ea | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062d\u0648\u0644\u064a\u062a", "mixname_ar": "\u062d\u0648\u0644\u064a\u062a | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Holit", "mixname_en": "Holit | <span>Gaza Envelope</span>", "label_ru": "\u0425\u043e\u043b\u0438\u0442", "mixname_ru": "\u0425\u043e\u043b\u0438\u0442 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "B549C752A3AED2DC59B9856A1AC62F1B", "id": "226", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d1\u05d9\u05ea \u05e8\u05d9\u05de\u05d5\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05e8\u05d9\u05de\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0628\u064a\u062a \u0631\u064a\u0645\u0648\u0646", "mixname_ar": "\u0628\u064a\u062a \u0631\u064a\u0645\u0648\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Beit Rimon", "mixname_en": "Beit Rimon | <span>Center Galilee</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0420\u0438\u043c\u043e\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0420\u0438\u043c\u043e\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "B562FE0E182A8EDAFC0BF8D824332FCA", "id": "267", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d1\u05ea \u05d4\u05d3\u05e8", "mixname_he": "\u05d1\u05ea \u05d4\u05d3\u05e8 | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0627\u062a \u0647\u062f\u0627\u0631", "mixname_ar": "\u0628\u0627\u062a \u0647\u062f\u0627\u0631 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Bat Hadar", "mixname_en": "Bat Hadar | <span>West Lachish</span>", "label_ru": "\u0411\u0430\u0442 \u0425\u0430\u0434\u0430\u0440", "mixname_ru": "\u0411\u0430\u0442 \u0425\u0430\u0434\u0430\u0440 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "B5AE7960436BCD44B937B28FAEE50B0E", "id": "1034", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e2\u05e5 \u05d0\u05e4\u05e8\u05d9\u05dd", "mixname_he": "\u05e2\u05e5 \u05d0\u05e4\u05e8\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u062a\u0633 \u0627\u0641\u0631\u0627\u064a\u0645", "mixname_ar": "\u0639\u064a\u062a\u0633 \u0627\u0641\u0631\u0627\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Etz Ephraim", "mixname_en": "Etz Ephraim | <span>Sharon</span>", "label_ru": "\u042d\u0446 \u042d\u0444\u0440\u0430\u0438\u043c", "mixname_ru": "\u042d\u0446 \u042d\u0444\u0440\u0430\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B5E5B50106CA8C6BC80A0F0DC0DEB4FA", "id": "1323", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d9\u05e2\u05dc", "mixname_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d9\u05e2\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u0644\u062f\u0627\u0646 \u064a\u0627\u0639\u064a\u0644", "mixname_ar": "\u0628\u0644\u062f\u0627\u0646 \u064a\u0627\u0639\u064a\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Yael Settlements", "mixname_en": "Yael Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u042f\u044d\u043b\u044c", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u042f\u044d\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B60A3F1B27D84C3D9B6B79FAE03CA87A", "id": "675", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05dc\u05d4\u05d1\u05d5\u05ea \u05d7\u05d1\u05d9\u05d1\u05d4", "mixname_he": "\u05dc\u05d4\u05d1\u05d5\u05ea \u05d7\u05d1\u05d9\u05d1\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0644\u0647\u0627\u0641\u0648\u062a \u062d\u0628\u064a\u064a\u0629", "mixname_ar": "\u0644\u0647\u0627\u0641\u0648\u062a \u062d\u0628\u064a\u064a\u0629 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Lehavot Haviva", "mixname_en": "Lehavot Haviva | <span>Menashe</span>", "label_ru": "\u041b\u0435\u0445\u0430\u0432\u043e\u0442 \u0425\u0430\u0432\u0438\u0432\u0430", "mixname_ru": "\u041b\u0435\u0445\u0430\u0432\u043e\u0442 \u0425\u0430\u0432\u0438\u0432\u0430 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "B60C76A1B50EE67858CCAA061765F5F2", "id": "1347", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e2\u05de\u05d9\u05d7\u05d9", "mixname_he": "\u05e2\u05de\u05d9\u05d7\u05d9 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0645\u064a\u062d\u0627\u064a", "mixname_ar": "\u0639\u0645\u064a\u062d\u0627\u064a | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Amihai", "mixname_en": "Amihai | <span>Shomron</span>", "label_ru": "\u0410\u043c\u0438\u0445\u0430\u0439", "mixname_ru": "\u0410\u043c\u0438\u0445\u0430\u0439 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "B62B691141EADFD4DC3CC6A0DADC2425", "id": "171", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d1\u05d9\u05e6\u05e8\u05d5\u05df", "mixname_he": "\u05d1\u05d9\u05e6\u05e8\u05d5\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u064a\u062a\u0633\u0631\u0648\u0646", "mixname_ar": "\u0628\u064a\u062a\u0633\u0631\u0648\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Bitzaron", "mixname_en": "Bitzaron | <span>Lachish</span>", "label_ru": "\u0411\u0438\u0446\u0430\u0440\u043e\u043d", "mixname_ru": "\u0411\u0438\u0446\u0430\u0440\u043e\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "B64368B0244BA16128C0BD6C33F9BC5A", "id": "1327", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d7\u05d1\u05e8", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d7\u05d1\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u064a\u0634\u0648\u0641\u064a \u062d\u064a\u0641\u0631", "mixname_ar": "\u064a\u0634\u0648\u0641\u064a \u062d\u064a\u0641\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Hever Settlements", "mixname_en": "Hever Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0425\u0435\u0432\u0435\u0440", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u0425\u0435\u0432\u0435\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B656612D4315232D05814BD41EE7FB5C", "id": "138", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d0\u05e8\u05d1\u05dc", "mixname_he": "\u05d0\u05e8\u05d1\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0623\u0631\u0627\u0628\u0644", "mixname_ar": "\u0623\u0631\u0627\u0628\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Arbel", "mixname_en": "Arbel | <span>Lower Galilee</span>", "label_ru": "\u0410\u0440\u0431\u0435\u043b\u044c", "mixname_ru": "\u0410\u0440\u0431\u0435\u043b\u044c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "B6EABEDABFDD049B27CCE9A51B1B33B8", "id": "438", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d7\u05d5\u05dc\u05d3\u05d4", "mixname_he": "\u05d7\u05d5\u05dc\u05d3\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062d\u0648\u0644\u062f\u0627\u0647", "mixname_ar": "\u062d\u0648\u0644\u062f\u0627\u0647 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Hulda", "mixname_en": "Hulda | <span>HaShfela</span>", "label_ru": "\u0425\u0443\u043b\u044c\u0434\u0430", "mixname_ru": "\u0425\u0443\u043b\u044c\u0434\u0430 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "B6F269805600C78DD03EB4B951A410D9", "id": "860", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0422\u0430\u043c\u0430\u0440", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d6\u05d5\u05d4\u05e8", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d6\u05d5\u05d4\u05e8 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0632\u0648\u0647\u0631", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0632\u0648\u0647\u0631 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Neveh Zohar", "mixname_en": "Neveh Zohar | <span>Dead Sea</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u0417\u043e\u0445\u0430\u0440", "mixname_ru": "\u041d\u0435\u0432\u0435 \u0417\u043e\u0445\u0430\u0440 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "B740A2321118E41A09102BA6AB502EC1", "id": "846", "areaid": 20, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e0\u05d1\u05d9 \u05e1\u05de\u05d5\u05d0\u05dc", "mixname_he": "\u05e0\u05d1\u05d9 \u05e1\u05de\u05d5\u05d0\u05dc | <span>\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd</span>", "label_ar": "\u0646\u0641\u064a \u0633\u0645\u0648\u0626\u064a\u0644", "mixname_ar": "\u0646\u0641\u064a \u0633\u0645\u0648\u0626\u064a\u0644 | <span>\u0623\u0648\u0631\u0634\u0644\u064a\u0645\u0627\u0644\u0642\u062f\u0633</span>", "label_en": "Nebi Samuel", "mixname_en": "Nebi Samuel | <span>Jerusalem</span>", "label_ru": "\u041d\u0435\u0431\u0438 \u0421\u0430\u043c\u0443\u044d\u043b\u044c", "mixname_ru": "\u041d\u0435\u0431\u0438 \u0421\u0430\u043c\u0443\u044d\u043b\u044c | <span>\u0418\u0435\u0440\u0443\u0441\u0430\u043b\u0438\u043c</span>"}, {"value": "B77FE54559C9BDF4080BF406E37C4C83", "id": "347", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d2\u05e0\u05d9 \u05e2\u05dd", "mixname_he": "\u05d2\u05e0\u05d9 \u05e2\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0627\u0646\u064a \u0639\u0627\u0645", "mixname_ar": "\u062c\u0627\u0646\u064a \u0639\u0627\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ganei Am", "mixname_en": "Ganei Am | <span>Sharon</span>", "label_ru": "\u0413\u0430\u043d\u0435\u0439 \u0410\u043c", "mixname_ru": "\u0413\u0430\u043d\u0435\u0439 \u0410\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B78C5E751107FD05C994DC0E53E06D45", "id": "74", "areaid": 1, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e9\u05d7\u05d5\u05e8\u05ea", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e9\u05d7\u05d5\u05e8\u05ea | <span>\u05d0\u05d9\u05dc\u05ea</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0634\u062d\u0648\u0631\u0648\u062a", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0634\u062d\u0648\u0631\u0648\u062a | <span>\u0627\u064a\u0644\u0627\u062a</span>", "label_en": "Shchoret Industrial Zone", "mixname_en": "Shchoret Industrial Zone | <span>Eilat</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0428\u0445\u043e\u0440\u0435\u0442", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0428\u0445\u043e\u0440\u0435\u0442 | <span>\u042d\u0439\u043b\u0430\u0442</span>"}, {"value": "B7B5FBF37905963495F92C5E849C530A", "id": "717", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df - \u05d9\u05e9\u05e4\u05e8\u05d5 \u05e1\u05e0\u05d8\u05e8", "mixname_he": "\u05de\u05d5\u05d3\u05d9\u05e2\u05d9\u05df - \u05d9\u05e9\u05e4\u05e8\u05d5 \u05e1\u05e0\u05d8\u05e8 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0648\u062f\u064a\u0639\u064a\u0646- \u064a\u0634\u0641\u0631\u0648 \u0633\u0646\u062a\u0631", "mixname_ar": "\u0645\u0648\u062f\u064a\u0639\u064a\u0646- \u064a\u0634\u0641\u0631\u0648 \u0633\u0646\u062a\u0631 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Modi'in - Ishpro Center", "mixname_en": "Modi'in - Ishpro Center | <span>Yarkon</span>", "label_ru": "\u041c\u043e\u0434\u0438\u0438\u043d - \u0418\u0448\u043f\u0440\u043e \u0446\u0435\u043d\u0442\u0440", "mixname_ru": "\u041c\u043e\u0434\u0438\u0438\u043d - \u0418\u0448\u043f\u0440\u043e \u0446\u0435\u043d\u0442\u0440 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "B7C4DF2F864E2D747E949E3497C51161", "id": "864", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d9\u05de\u05d9\u05df", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d9\u05de\u05d9\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u064a\u0645\u064a\u0646", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u064a\u0645\u064a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Neveh Yamin", "mixname_en": "Neveh Yamin | <span>Sharon</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u042f\u043c\u0438\u043d", "mixname_ru": "\u041d\u0435\u0432\u0435 \u042f\u043c\u0438\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B7CE80123DC415A776005A70714764B2", "id": "1176", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05e8\u05de\u05ea \u05d4\u05e9\u05d5\u05e4\u05d8", "mixname_he": "\u05e8\u05de\u05ea \u05d4\u05e9\u05d5\u05e4\u05d8 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0631\u0645\u0627\u062a \u0647\u0634\u0648\u0641\u0637", "mixname_ar": "\u0631\u0645\u0627\u062a \u0647\u0634\u0648\u0641\u0637 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Ramat HaShofet", "mixname_en": "Ramat HaShofet | <span>Wadi Ara</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0445\u0430-\u0428\u043e\u0444\u0435\u0442", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0445\u0430-\u0428\u043e\u0444\u0435\u0442 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "B7D2D34B96D328A0A680EB2F9C7E5077", "id": "404", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0422\u0430\u043c\u0430\u0440", "label_he": "\u05d4\u05e8 \u05e2\u05de\u05e9\u05d0", "mixname_he": "\u05d4\u05e8 \u05e2\u05de\u05e9\u05d0 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0647\u0627\u0631 \u0639\u0645\u0634\u0627", "mixname_ar": "\u0647\u0627\u0631 \u0639\u0645\u0634\u0627 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Har Amsha", "mixname_en": "Har Amsha | <span>Yehuda</span>", "label_ru": "\u0425\u0430\u0440 \u0410\u043c\u0448\u0430", "mixname_ru": "\u0425\u0430\u0440 \u0410\u043c\u0448\u0430 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "B7F6E783E95591CD3C2B91BA231D9203", "id": "1159", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05d8\u05d5\u05e8\u05e0\u05d5 - \u05d2\u05d1\u05e2\u05ea \u05e9\u05de\u05e9", "mixname_he": "\u05e8\u05d8\u05d5\u05e8\u05e0\u05d5 - \u05d2\u05d1\u05e2\u05ea \u05e9\u05de\u05e9 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0631\u0637\u0648\u0631\u0646\u0648- \u062c\u0641\u0639\u0627\u062a \u0634\u064a\u0645\u0634", "mixname_ar": "\u0631\u0637\u0648\u0631\u0646\u0648- \u062c\u0641\u0639\u0627\u062a \u0634\u064a\u0645\u0634 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Retorno - Givat Shesh", "mixname_en": "Retorno - Givat Shesh | <span>Shfelat Yehuda</span>", "label_ru": "\u0420\u0435\u0442\u043e\u0440\u043d\u043e - \u0413\u0438\u0432\u0430\u0442 \u0428\u0435\u043c\u0435\u0448", "mixname_ru": "\u0420\u0435\u0442\u043e\u0440\u043d\u043e - \u0413\u0438\u0432\u0430\u0442 \u0428\u0435\u043c\u0435\u0448 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "B80B1D362FB31D3008E41F92FA4D2296", "id": "1245", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e9\u05dc\u05e4\u05d9\u05dd", "mixname_he": "\u05e9\u05dc\u05e4\u05d9\u05dd | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0634\u0644\u0641\u064a\u0645", "mixname_ar": "\u0634\u0644\u0641\u064a\u0645 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Shlafim", "mixname_en": "Shlafim | <span>Beit She'an Valley</span>", "label_ru": "\u0429\u043b\u0430\u0444\u0438\u043c", "mixname_ru": "\u0429\u043b\u0430\u0444\u0438\u043c | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "B80CB51F1311095E7A7BAA522251D886", "id": "1267", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e9\u05e8\u05d9\u05d3", "mixname_he": "\u05e9\u05e8\u05d9\u05d3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0633\u0631\u064a\u062f", "mixname_ar": "\u0633\u0631\u064a\u062f | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Sarid", "mixname_en": "Sarid | <span>HaAmakim</span>", "label_ru": "\u0421\u0430\u0440\u0438\u0434", "mixname_ru": "\u0421\u0430\u0440\u0438\u0434 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B823C58092C74B1FDF5730BD9DC0917B", "id": "1038", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e2\u05e8\u05d1 \u05d0\u05dc \u05e2\u05e8\u05d0\u05de\u05e9\u05d4", "mixname_he": "\u05e2\u05e8\u05d1 \u05d0\u05dc \u05e2\u05e8\u05d0\u05de\u05e9\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0639\u0631\u0628 \u0627\u0644\u0639\u0631\u0627\u0645\u0634\u0629", "mixname_ar": "\u0639\u0631\u0628 \u0627\u0644\u0639\u0631\u0627\u0645\u0634\u0629 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Arab al-Aramshe", "mixname_en": "Arab al-Aramshe | <span>Confrontation Line</span>", "label_ru": "\u0410\u0440\u0430\u0431 \u0410\u043b\u044c-\u0410\u0440\u0430\u043c\u0448\u0435", "mixname_ru": "\u0410\u0440\u0430\u0431 \u0410\u043b\u044c-\u0410\u0440\u0430\u043c\u0448\u0435 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "B834880628A9557A2EEC1E37BCA6351C", "id": "494", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05d8\u05e0\u05d0 \u05e2\u05d5\u05de\u05e8\u05d9\u05dd", "mixname_he": "\u05d8\u05e0\u05d0 \u05e2\u05d5\u05de\u05e8\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0627\u0646\u064a \u0639\u0648\u0645\u0631\u064a\u0645", "mixname_ar": "\u062a\u0627\u0646\u064a \u0639\u0648\u0645\u0631\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Teneh Omarim", "mixname_en": "Teneh Omarim | <span>Yehuda</span>", "label_ru": "\u0422\u0435\u043d\u0435 \u041e\u043c\u0430\u0440\u0438\u043c", "mixname_ru": "\u0422\u0435\u043d\u0435 \u041e\u043c\u0430\u0440\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "B83DE505B677B0BA2F9E1A312F49AEAC", "id": "585", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05d1\u05d9\u05dc''\u05d5", "mixname_he": "\u05db\u05e4\u05e8 \u05d1\u05d9\u05dc''\u05d5 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0628\u064a\u0644\u0648", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0628\u064a\u0644\u0648 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Kfar Bilu", "mixname_en": "Kfar Bilu | <span>HaShfela</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0411\u0438\u043b\u0443", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0411\u0438\u043b\u0443 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "B8490FEFC8EF4405BCC008C4179EBBD1", "id": "375", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d3\u05dc\u05ea\u05d5\u05df", "mixname_he": "\u05d3\u05dc\u05ea\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062f\u0644\u062a\u0648\u0646", "mixname_ar": "\u062f\u0644\u062a\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Dalton", "mixname_en": "Dalton | <span>Confrontation Line</span>", "label_ru": "\u0414\u0430\u043b\u044c\u0442\u043e\u043d", "mixname_ru": "\u0414\u0430\u043b\u044c\u0442\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "B8C321142CEEAD457254E604EFCB8978", "id": "877", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05e0\u05d5\u05e8\u05d3\u05d9\u05d4", "mixname_he": "\u05e0\u05d5\u05e8\u05d3\u05d9\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0648\u0631\u062f\u064a\u0647", "mixname_ar": "\u0646\u0648\u0631\u062f\u064a\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Nordia", "mixname_en": "Nordia | <span>Sharon</span>", "label_ru": "\u041d\u043e\u0440\u0434\u0438\u044f", "mixname_ru": "\u041d\u043e\u0440\u0434\u0438\u044f | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "B8DFF678BBF3C22972DD332E2844714D", "id": "295", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d5\u05d5\u05e9\u05d9\u05e0\u05d2\u05d8\u05d5\u05df", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d5\u05d5\u05e9\u05d9\u05e0\u05d2\u05d8\u05d5\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0648\u0627\u0634\u0646\u0637\u0648\u0646", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0648\u0627\u0634\u0646\u0637\u0648\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Givat Washington", "mixname_en": "Givat Washington | <span>Lachish</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "B917100123FD0069B65E0BE86E9D9025", "id": "744", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05de\u05d9\u05e8\u05d1", "mixname_he": "\u05de\u05d9\u05e8\u05d1 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0645\u064a\u0631\u0627\u0641", "mixname_ar": "\u0645\u064a\u0631\u0627\u0641 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Merav", "mixname_en": "Merav | <span>Beit She'an Valley</span>", "label_ru": "\u041c\u0435\u0440\u0430\u0432", "mixname_ru": "\u041c\u0435\u0440\u0430\u0432 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "B94B20E222DE4348226D5F39E29070AB", "id": "991", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e2\u05d9\u05df \u05d4\u05e0\u05e6\u05d9''\u05d1", "mixname_he": "\u05e2\u05d9\u05df \u05d4\u05e0\u05e6\u05d9''\u05d1 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0647\u0646\u062a\u0633\u064a\u0641", "mixname_ar": "\u0639\u064a\u0646 \u0647\u0646\u062a\u0633\u064a\u0641 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Ein HaNatziv", "mixname_en": "Ein HaNatziv | <span>Beit She'an Valley</span>", "label_ru": "\u042d\u0439\u043d \u0445\u0430-\u041d\u0430\u0446\u0438\u0432", "mixname_ru": "\u042d\u0439\u043d \u0445\u0430-\u041d\u0430\u0446\u0438\u0432 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "B968551768C9D08FD2E4A9A1E2CB02DA", "id": "1137", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05e8\u05d0\u05e1 \u05e2\u05dc\u05d9", "mixname_he": "\u05e8\u05d0\u05e1 \u05e2\u05dc\u05d9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0631\u0627\u0633 \u0639\u0644\u064a", "mixname_ar": "\u0631\u0627\u0633 \u0639\u0644\u064a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ras Ali", "mixname_en": "Ras Ali | <span>HaAmakim</span>", "label_ru": "\u0420\u0430\u0441 \u0410\u043b\u0438", "mixname_ru": "\u0420\u0430\u0441 \u0410\u043b\u0438 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "B97B6789B66D17797B8A5969FA424810", "id": "372", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05d3\u05d9\u05e9\u05d5\u05df", "mixname_he": "\u05d3\u05d9\u05e9\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062f\u064a\u0634\u0648\u0646", "mixname_ar": "\u062f\u064a\u0634\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Dishon", "mixname_en": "Dishon | <span>Confrontation Line</span>", "label_ru": "\u0414\u0438\u0448\u043e\u043d", "mixname_ru": "\u0414\u0438\u0448\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "B9DABB7667C5FC2FA8A26B77214E1E97", "id": "196", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05d7\u05d6\u05d5\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05d7\u05d6\u05d5\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u062d\u0632\u0648\u0646", "mixname_ar": "\u0628\u064a\u062a \u062d\u0632\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Beit Hazon", "mixname_en": "Beit Hazon | <span>Sharon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u0437\u043e\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u0437\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "BA23020F1B861297F8D862FDDF62B344", "id": "463", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d7\u05e1\u05e4\u05d9\u05df", "mixname_he": "\u05d7\u05e1\u05e4\u05d9\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u062d\u0627\u0633\u0641\u064a\u0646", "mixname_ar": "\u062d\u0627\u0633\u0641\u064a\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Haspin", "mixname_en": "Haspin | <span>South Golan</span>", "label_ru": "\u0425\u0430\u0441\u043f\u0438\u043d", "mixname_ru": "\u0425\u0430\u0441\u043f\u0438\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "BA23AE329A2968CD917E4270667DDBB0", "id": "1296", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05ea\u05de\u05e8\u05ea", "mixname_he": "\u05ea\u05de\u05e8\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062a\u0645\u0631\u0627\u062a", "mixname_ar": "\u062a\u0645\u0631\u0627\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Timrat", "mixname_en": "Timrat | <span>HaAmakim</span>", "label_ru": "\u0422\u0438\u043c\u0440\u0430\u0442", "mixname_ru": "\u0422\u0438\u043c\u0440\u0430\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "BA7EB405804877D4C0758DA18BB596DE", "id": "738", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05de\u05d8\u05d5\u05dc\u05d4", "mixname_he": "\u05de\u05d8\u05d5\u05dc\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u0644\u0645\u0637\u0644\u0629", "mixname_ar": "\u0627\u0644\u0645\u0637\u0644\u0629 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Metulla", "mixname_en": "Metulla | <span>Confrontation Line</span>", "label_ru": "\u041c\u0435\u0442\u0443\u043b\u0430", "mixname_ru": "\u041c\u0435\u0442\u0443\u043b\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "BAA791E209AE64DB548B192231A96D2A", "id": "448", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d7\u05d5\u05e8\u05e9\u05d9\u05dd", "mixname_he": "\u05d7\u05d5\u05e8\u05e9\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0648\u0631\u0634\u064a\u0645", "mixname_ar": "\u062d\u0648\u0631\u0634\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Horashim", "mixname_en": "Horashim | <span>Sharon</span>", "label_ru": "\u0425\u043e\u0440\u0430\u0448\u0438\u043c", "mixname_ru": "\u0425\u043e\u0440\u0430\u0448\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "BAAF1E2DDE5B74ADAB3DD58F47040663", "id": "475", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d7\u05e8\u05e9\u05d4", "mixname_he": "\u05d7\u05e8\u05e9\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0631\u0634\u0627", "mixname_ar": "\u062d\u0631\u0634\u0627 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Horasha", "mixname_en": "Horasha | <span>Shomron</span>", "label_ru": "\u0425\u043e\u0440\u0430\u0448\u0430", "mixname_ru": "\u0425\u043e\u0440\u0430\u0448\u0430 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "BAB5756673F22EC67C92C3B295C11FCB", "id": "488", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d8\u05dc \u05de\u05e0\u05e9\u05d4", "mixname_he": "\u05d8\u05dc \u05de\u05e0\u05e9\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0644 \u0645\u0646\u0627\u0634\u064a\u0647", "mixname_ar": "\u062a\u0644 \u0645\u0646\u0627\u0634\u064a\u0647 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Tal Menashe", "mixname_en": "Tal Menashe | <span>Shomron</span>", "label_ru": "\u0422\u0435\u043b\u044c \u041c\u0435\u043d\u0430\u0448\u0435", "mixname_ru": "\u0422\u0435\u043b\u044c \u041c\u0435\u043d\u0430\u0448\u0435 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "BABD4F908E0C343E63756C95B20D5CB7", "id": "1377", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05dc \u05e2\u05e8\u05d3", "mixname_he": "\u05ea\u05dc \u05e2\u05e8\u05d3 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u0644 \u0639\u0631\u0627\u062f", "mixname_ar": "\u062a\u0644 \u0639\u0631\u0627\u062f | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Tel Arad", "mixname_en": "Tel Arad | <span>South Negev</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0410\u0440\u0430\u0434", "mixname_ru": "\u0422\u0435\u043b\u044c \u0410\u0440\u0430\u0434 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "BB270A6430DD2FEAF2590EF5E0976878", "id": "589", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05db\u05e4\u05e8 \u05d1\u05e8\u05d5\u05da", "mixname_he": "\u05db\u05e4\u05e8 \u05d1\u05e8\u05d5\u05da | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0628\u0627\u0631\u0648\u062e", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0628\u0627\u0631\u0648\u062e | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Baruch", "mixname_en": "Kfar Baruch | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0411\u0430\u0440\u0443\u0445", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0411\u0430\u0440\u0443\u0445 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "BB6FFE64EF1EB20509E4E4D5CA4E3718", "id": "6017", "areaid": 15, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d7\u05d9\u05e4\u05d4 - \u05e0\u05d5\u05d5\u05d4 \u05e9\u05d0\u05e0\u05df \u05d5\u05e8\u05de\u05d5\u05ea \u05db\u05e8\u05de\u05dc", "mixname_he": "\u05d7\u05d9\u05e4\u05d4-\u05de\u05e4\u05e8\u05e5 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062d\u064a\u0641\u0627\u00a0\u0646\u064a\u0641\u064a\u0647 \u0634\u0639\u0646\u0627\u0646", "mixname_ar": "\u062d\u064a\u0641\u0627\u00a0\u0646\u064a\u0641\u064a\u0647 \u0634\u0639\u0646\u0627\u0646 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Haifa - West", "mixname_en": "Haifa - West | <span>Menashe</span>", "label_ru": "\u0425\u0430\u0439\u0444\u0430 - \u041d\u0435\u0432\u0435 \u0428\u0430\u0430\u043d\u0430\u043d \u0438 \u0420\u0430\u043c\u043e\u0442", "mixname_ru": "\u0425\u0430\u0439\u0444\u0430 - \u041d\u0435\u0432\u0435 \u0428\u0430\u0430\u043d\u0430\u043d \u0438 \u0420\u0430\u043c\u043e\u0442 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "BBBC63A8F3E5484B3379A161BBD1CDA0", "id": "1012", "areaid": 18, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0422\u0430\u043c\u0430\u0440", "label_he": "\u05e2\u05d9\u05df \u05ea\u05de\u05e8", "mixname_he": "\u05e2\u05d9\u05df \u05ea\u05de\u05e8 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0639\u064a\u0646 \u062a\u0645\u0627\u0631", "mixname_ar": "\u0639\u064a\u0646 \u062a\u0645\u0627\u0631 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Ein Tamar", "mixname_en": "Ein Tamar | <span>Dead Sea</span>", "label_ru": "\u042d\u0439\u043d \u0422\u0430\u043c\u0430\u0440", "mixname_ru": "\u042d\u0439\u043d \u0422\u0430\u043c\u0430\u0440 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "BC20BD160082531314B299BF749405A5", "id": "435", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "", "label_he": "\u05d7\u05d5\u05d5\u05ea \u05e2\u05e8\u05e0\u05d3\u05dc", "mixname_he": "\u05d7\u05d5\u05d5\u05ea \u05e2\u05e8\u05e0\u05d3\u05dc | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u062d\u0636\u064a\u0631\u0629 \u0639\u0631\u062f\u0627\u0644", "mixname_ar": "\u062d\u0636\u064a\u0631\u0629 \u0639\u0631\u062f\u0627\u0644 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Ardanel Ranch", "mixname_en": "Ardanel Ranch | <span>Arava</span>", "label_ru": "\u0425\u0430\u0432\u0430\u0442 \u0410\u0440\u043d\u0430\u0434\u0435\u043b\u044c", "mixname_ru": "\u0425\u0430\u0432\u0430\u0442 \u0410\u0440\u043d\u0430\u0434\u0435\u043b\u044c | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "BC685590659CE8AEC2BDB7B490B521BE", "id": "1226", "areaid": 17, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05e9\u05d5\u05de\u05e8\u05d9\u05d4", "mixname_he": "\u05e9\u05d5\u05de\u05e8\u05d9\u05d4 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0634\u0648\u0645\u0631\u064a\u0627\u0647", "mixname_ar": "\u0634\u0648\u0645\u0631\u064a\u0627\u0647 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Shomria", "mixname_en": "Shomria | <span>Yehuda</span>", "label_ru": "\u0428\u043e\u043c\u0440\u0438\u044f", "mixname_ru": "\u0428\u043e\u043c\u0440\u0438\u044f | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "BC796DEA3891CE597604CAC6D8FCA2C3", "id": "601", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05e0\u05e9\u05d9\u05d0", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05e0\u05e9\u05d9\u05d0 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0647\u0646\u0633\u064a", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0647\u0646\u0633\u064a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kfar HaNassi", "mixname_en": "Kfar HaNassi | <span>Upper Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u041d\u0430\u0441\u0438", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u041d\u0430\u0441\u0438 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "BCA42C0A3C2BAE42DD634A448174F36E", "id": "1205", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05e9\u05d3\u05d4 \u05d9\u05d5\u05d0\u05d1", "mixname_he": "\u05e9\u05d3\u05d4 \u05d9\u05d5\u05d0\u05d1 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u064a\u0648\u0627\u0641", "mixname_ar": "\u0633\u062f\u064a\u0647 \u064a\u0648\u0627\u0641 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Sdeh Yoav", "mixname_en": "Sdeh Yoav | <span>Lachish</span>", "label_ru": "\u0421\u0434\u044d \u0419\u043e\u0430\u0432", "mixname_ru": "\u0421\u0434\u044d \u0419\u043e\u0430\u0432 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "BCD076B133BE06D301E270A7079830A5", "id": "75", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e9\u05e2\u05e8 \u05d1\u05e0\u05d9\u05de\u05d9\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e9\u05e2\u05e8 \u05d1\u05e0\u05d9\u05de\u05d9\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0634\u0627\u0639\u0627\u0631 \u0628\u0646\u064a", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0634\u0627\u0639\u0627\u0631 \u0628\u0646\u064a | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Sha'ar Binyamin Industrial Zone", "mixname_en": "Sha'ar Binyamin Industrial Zone | <span>Shomron</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0428\u0430\u0430\u0440 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0428\u0430\u0430\u0440 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "BCD143A3535D6B4CE8DE0C11CAB5C492", "id": "524", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0430\u0445\u0430\u043b\u044c \u0421\u043e\u0440\u0435\u043a", "label_he": "\u05d9\u05e1\u05d5\u05d3\u05d5\u05ea", "mixname_he": "\u05d9\u05e1\u05d5\u05d3\u05d5\u05ea | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u064a\u0633\u0648\u062f\u0648\u062a", "mixname_ar": "\u064a\u0633\u0648\u062f\u0648\u062a | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Yesodot", "mixname_en": "Yesodot | <span>HaShfela</span>", "label_ru": "\u0415\u0441\u043e\u0434\u043e\u0442", "mixname_ru": "\u0415\u0441\u043e\u0434\u043e\u0442 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "BCE087804C84BCF7E657EC1D5B87186A", "id": "106", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d0\u05dc\u05d5\u05df \u05de\u05d5\u05e8\u05d4", "mixname_he": "\u05d0\u05dc\u05d5\u05df \u05de\u05d5\u05e8\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u0644\u0648\u0646 \u0645\u0648\u0631\u064a\u0647", "mixname_ar": "\u0623\u0644\u0648\u0646 \u0645\u0648\u0631\u064a\u0647 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Elon Moreh", "mixname_en": "Elon Moreh | <span>Shomron</span>", "label_ru": "\u0410\u043b\u043e\u043d \u0445\u0430-\u041c\u043e\u0440\u0435", "mixname_ru": "\u0410\u043b\u043e\u043d \u0445\u0430-\u041c\u043e\u0440\u0435 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "BCFA2A8D0529541DCCB7700DDE5AD425", "id": "648", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05db\u05e4\u05e8 \u05e8\u05d5\u05e4\u05d9\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05e8\u05d5\u05e4\u05d9\u05df | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0631\u0648\u0628\u064a\u0646", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0631\u0648\u0628\u064a\u0646 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Kfar Ruppin", "mixname_en": "Kfar Ruppin | <span>Beit She'an Valley</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0420\u0443\u043f\u0438\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0420\u0443\u043f\u0438\u043d | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "BD025EEF09876C6EB31C4EC474C73E5F", "id": "1093", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e6\u05e8\u05d5\u05e4\u05d4", "mixname_he": "\u05e6\u05e8\u05d5\u05e4\u05d4 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u062a\u0633\u0631\u0648\u0641\u0627", "mixname_ar": "\u062a\u0633\u0631\u0648\u0641\u0627 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Tzrufa", "mixname_en": "Tzrufa | <span>HaCarmel</span>", "label_ru": "\u0426\u0440\u0443\u0444\u0430", "mixname_ru": "\u0426\u0440\u0443\u0444\u0430 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "BD83C4E9264EDD589CC1D02EA54A8EA1", "id": "326", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d2\u05d9\u05e0\u05ea\u05d5\u05df", "mixname_he": "\u05d2\u05d9\u05e0\u05ea\u05d5\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u064a\u0646\u062a\u0648\u0646", "mixname_ar": "\u062c\u064a\u0646\u062a\u0648\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ginaton", "mixname_en": "Ginaton | <span>HaShfela</span>", "label_ru": "\u0413\u0438\u043d\u0430\u0442\u043e\u043d", "mixname_ru": "\u0413\u0438\u043d\u0430\u0442\u043e\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "BD8B7DB9BF3013ED64A60B683C4C50AE", "id": "1111", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u043b\u043e\u0442 \u041c\u0435\u0440\u0442\u0432\u043e\u0433\u043e \u043c\u043e\u0440\u044f", "label_he": "\u05e7\u05dc\u05d9\u05d4", "mixname_he": "\u05e7\u05dc\u05d9\u05d4 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0643\u0644\u064a\u0627\u0647", "mixname_ar": "\u0643\u0644\u064a\u0627\u0647 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Kalia", "mixname_en": "Kalia | <span>Dead Sea</span>", "label_ru": "\u041a\u0430\u043b\u0438\u044f", "mixname_ru": "\u041a\u0430\u043b\u0438\u044f | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "BDB95BD17CB024C2DA7C757BF4BE2A32", "id": "971", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05e2\u05d6\u05e8", "mixname_he": "\u05e2\u05d6\u05e8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0639\u0627\u0632\u0631", "mixname_ar": "\u0639\u0627\u0632\u0631 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ezer", "mixname_en": "Ezer | <span>Lachish</span>", "label_ru": "\u042d\u0437\u0435\u0440", "mixname_ru": "\u042d\u0437\u0435\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "BDD6D01D88F52BEA914FFCC00DC4F95D", "id": "1044", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e2\u05ea\u05dc\u05d9\u05ea", "mixname_he": "\u05e2\u05ea\u05dc\u05d9\u05ea | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0639\u062a\u0644\u064a\u062a", "mixname_ar": "\u0639\u062a\u0644\u064a\u062a | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Atlit", "mixname_en": "Atlit | <span>HaCarmel</span>", "label_ru": "\u0410\u0442\u043b\u0438\u0442", "mixname_ru": "\u0410\u0442\u043b\u0438\u0442 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "BE623FA5A62E2F43D863B0A19138CBA5", "id": "398", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d4\u05e8-\u05d7\u05dc\u05d5\u05e5", "mixname_he": "\u05d4\u05e8-\u05d7\u05dc\u05d5\u05e5 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0647\u0627\u0631- \u062d\u0644\u0648\u062a\u0633", "mixname_ar": "\u0647\u0627\u0631- \u062d\u0644\u0648\u062a\u0633 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Har Chalutz", "mixname_en": "Har Chalutz | <span>Upper Galilee</span>", "label_ru": "\u0425\u0430\u0440-\u0425\u0430\u043b\u0443\u0446", "mixname_ru": "\u0425\u0430\u0440-\u0425\u0430\u043b\u0443\u0446 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "BEA75111D41FD1A25A343C9C4B0C0F01", "id": "487", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d8\u05dc-\u05d0\u05dc", "mixname_he": "\u05d8\u05dc-\u05d0\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062a\u0627\u0644- \u0625\u064a\u0644", "mixname_ar": "\u062a\u0627\u0644- \u0625\u064a\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Tal-El", "mixname_en": "Tal-El | <span>Upper Galilee</span>", "label_ru": "\u0422\u0430\u043b\u044c-\u042d\u043b\u044c", "mixname_ru": "\u0422\u0430\u043b\u044c-\u042d\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "BEAA5499212CDB4771C5DC0966AECEF6", "id": "220", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d1\u05d9\u05ea \u05e2\u05d6\u05e8\u05d0", "mixname_he": "\u05d1\u05d9\u05ea \u05e2\u05d6\u05e8\u05d0 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u064a\u062a \u0639\u0632\u0631\u0627", "mixname_ar": "\u0628\u064a\u062a \u0639\u0632\u0631\u0627 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Beit Ezra", "mixname_en": "Beit Ezra | <span>Lachish</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u042d\u0437\u0440\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u042d\u0437\u0440\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "BECF1C6A4C055C01018E67939D62C737", "id": "567", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05db\u05d9\u05e1\u05e8\u05d0 \u05e1\u05de\u05d9\u05e2", "mixname_he": "\u05db\u05d9\u05e1\u05e8\u05d0 \u05e1\u05de\u05d9\u05e2 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0633\u0631\u0649 \u0633\u0645\u064a\u0639", "mixname_ar": "\u0643\u0633\u0631\u0649 \u0633\u0645\u064a\u0639 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kisra-Sumei", "mixname_en": "Kisra-Sumei | <span>Upper Galilee</span>", "label_ru": "\u041a\u0438\u0441\u0440\u0430-\u0421\u043c\u0435\u0430", "mixname_ru": "\u041a\u0438\u0441\u0440\u0430-\u0421\u043c\u0435\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "BF9F5B7AF78066838547028E8DCAA62A", "id": "122", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05dc\u05e2\u05d3", "mixname_he": "\u05d0\u05dc\u05e2\u05d3 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0627\u064a\u0644\u0639\u0627\u062f", "mixname_ar": "\u0627\u064a\u0644\u0639\u0627\u062f | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Elad", "mixname_en": "Elad | <span>Yarkon</span>", "label_ru": "\u042d\u043b\u044c\u0430\u0434", "mixname_ru": "\u042d\u043b\u044c\u0430\u0434 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "BFDDB072FBA585D2E129FED1A616FFC9", "id": "806", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e7\u05d5\u05d5\u05d4 \u05d9\u05e9\u05e8\u05d0\u05dc", "mixname_he": "\u05de\u05e7\u05d5\u05d5\u05d4 \u05d9\u05e9\u05e8\u05d0\u05dc | <span>\u05d3\u05df</span>", "label_ar": "\u0645\u0643\u0641\u064a\u0647 \u0627\u0633\u0631\u0627\u0626\u064a\u0644", "mixname_ar": "\u0645\u0643\u0641\u064a\u0647 \u0627\u0633\u0631\u0627\u0626\u064a\u0644 | <span>\u062f\u0627\u0646</span>", "label_en": "Mikveh Israel", "mixname_en": "Mikveh Israel | <span>Dan</span>", "label_ru": "\u041c\u0438\u043a\u0432\u0435 \u0418\u0441\u0440\u0430\u044d\u043b\u044c", "mixname_ru": "\u041c\u0438\u043a\u0432\u0435 \u0418\u0441\u0440\u0430\u044d\u043b\u044c | <span>\u0414\u0430\u043d</span>"}, {"value": "BFFF342B8071749F53999CD6DB87F956", "id": "706", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05de\u05d2\u05d3\u05dc \u05ea\u05e4\u05df", "mixname_he": "\u05de\u05d2\u05d3\u05dc \u05ea\u05e4\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0645\u062c\u062f\u0627\u0644 \u062a\u064a\u0641\u0646", "mixname_ar": "\u0645\u062c\u062f\u0627\u0644 \u062a\u064a\u0641\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Migdal Tefen", "mixname_en": "Migdal Tefen | <span>Upper Galilee</span>", "label_ru": "\u041c\u0438\u0433\u0434\u0430\u043b\u044c \u0422\u0435\u0444\u0435\u043d", "mixname_ru": "\u041c\u0438\u0433\u0434\u0430\u043b\u044c \u0422\u0435\u0444\u0435\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "C035D556957FFA1CFFCBE64FE6FA6391", "id": "652", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05e9\u05de\u05e8\u05d9\u05d4\u05d5", "mixname_he": "\u05db\u05e4\u05e8 \u05e9\u05de\u05e8\u05d9\u05d4\u05d5 | <span>\u05d3\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0634\u0645\u0631\u064a\u0627\u0647\u0648", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0634\u0645\u0631\u064a\u0627\u0647\u0648 | <span>\u062f\u0627\u0646</span>", "label_en": "Kfar Shmaryahu", "mixname_en": "Kfar Shmaryahu | <span>Dan</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0428\u043c\u0430\u0440\u0438\u044f\u0433\u0443", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0428\u043c\u0430\u0440\u0438\u044f\u0433\u0443 | <span>\u0414\u0430\u043d</span>"}, {"value": "C046775B6AEA5F0F8C29338B5C75DD7E", "id": "687", "areaid": 25, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05dc\u05e7\u05d9\u05d4", "mixname_he": "\u05dc\u05e7\u05d9\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0627\u0644\u0644\u0642\u064a\u0629", "mixname_ar": "\u0627\u0644\u0644\u0642\u064a\u0629 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Lakiya", "mixname_en": "Lakiya | <span>Center Negev</span>", "label_ru": "\u041b\u0430\u043a\u0438\u044f", "mixname_ru": "\u041b\u0430\u043a\u0438\u044f | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C0800788B0E0C1A1997996A7821AC9BD", "id": "1079", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0440\u0435\u0434\u043d\u044f\u044f \u0410\u0440\u0430\u0432\u0430", "label_he": "\u05e6\u05d5\u05e4\u05e8", "mixname_he": "\u05e6\u05d5\u05e4\u05e8 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u062a\u0633\u0648\u0641\u0631", "mixname_ar": "\u062a\u0633\u0648\u0641\u0631 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Tzofar", "mixname_en": "Tzofar | <span>Arava</span>", "label_ru": "\u0426\u043e\u0444\u0430\u0440", "mixname_ru": "\u0426\u043e\u0444\u0430\u0440 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "C0A8D99A0CD12B2CF64F5FE3414817BA", "id": "1345", "areaid": 25, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e0\u05d0\u05d5\u05ea \u05d7\u05d5\u05d1\u05d1", "mixname_he": "\u05e0\u05d0\u05d5\u05ea \u05d7\u05d5\u05d1\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0646\u064a\u0626\u0648\u062a \u062d\u0648\u0641\u0627\u0641", "mixname_ar": "\u0646\u064a\u0626\u0648\u062a \u062d\u0648\u0641\u0627\u0641 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Neot Hovav", "mixname_en": "Neot Hovav | <span>Center Negev</span>", "label_ru": "\u041d\u0430\u043e\u0442 \u0425\u043e\u0432\u0430\u0432", "mixname_ru": "\u041d\u0430\u043e\u0442 \u0425\u043e\u0432\u0430\u0432 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C0DBC76B58A02472CD2714D8D08FE270", "id": "109", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d0\u05dc\u05d5\u05e0\u05d9 \u05d4\u05d1\u05e9\u05df", "mixname_he": "\u05d0\u05dc\u05d5\u05e0\u05d9 \u05d4\u05d1\u05e9\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0623\u0644\u0648\u0646\u064a \u0647\u0628\u0634\u0627\u0646", "mixname_ar": "\u0623\u0644\u0648\u0646\u064a \u0647\u0628\u0634\u0627\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Alonei HaBashan", "mixname_en": "Alonei HaBashan | <span>South Golan</span>", "label_ru": "\u0410\u043b\u043e\u043d\u0435\u0439 \u0430-\u0411\u0430\u0448\u0430\u043d", "mixname_ru": "\u0410\u043b\u043e\u043d\u0435\u0439 \u0430-\u0411\u0430\u0448\u0430\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "C186518F06FA6A67EE03B881F979C65B", "id": "1035", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e2\u05e6\u05de\u05d5\u05df - \u05e9\u05d2\u05d1", "mixname_he": "\u05e2\u05e6\u05de\u05d5\u05df - \u05e9\u05d2\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0639\u062a\u0633\u0645\u0648\u0646 (\u0633\u064a\u062c\u0641)", "mixname_ar": "\u0639\u062a\u0633\u0645\u0648\u0646 (\u0633\u064a\u062c\u0641) | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Atzmon (Segev)", "mixname_en": "Atzmon (Segev) | <span>Center Galilee</span>", "label_ru": "\u0410\u0446\u043c\u043e\u043d (\u0421\u0435\u0433\u0435\u0432)", "mixname_ru": "\u0410\u0446\u043c\u043e\u043d (\u0421\u0435\u0433\u0435\u0432) | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "C1E7CCB5012E03B21A413E710827422F", "id": "663", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05db\u05e8\u05de\u05d9 \u05e6\u05d5\u05e8", "mixname_he": "\u05db\u05e8\u05de\u05d9 \u05e6\u05d5\u05e8 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0631\u0645\u064a \u062a\u0633\u0648\u0631", "mixname_ar": "\u0643\u0631\u0645\u064a \u062a\u0633\u0648\u0631 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Karmei Tzur", "mixname_en": "Karmei Tzur | <span>Yehuda</span>", "label_ru": "\u041a\u0430\u0440\u043c\u0435\u0439 \u0426\u0443\u0440", "mixname_ru": "\u041a\u0430\u0440\u043c\u0435\u0439 \u0426\u0443\u0440 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "C21EB35E563F4AA95BD80602450099FB", "id": "839", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05de\u05ea\u05ea\u05d9\u05d4\u05d5", "mixname_he": "\u05de\u05ea\u05ea\u05d9\u05d4\u05d5 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0645\u0627\u062a\u062d\u064a\u0627\u0647\u0648", "mixname_ar": "\u0645\u0627\u062a\u062d\u064a\u0627\u0647\u0648 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Matityahu", "mixname_en": "Matityahu | <span>Yarkon</span>", "label_ru": "\u041c\u0430\u0442\u0438\u0442\u044c\u044f\u0433\u0443", "mixname_ru": "\u041c\u0430\u0442\u0438\u0442\u044c\u044f\u0433\u0443 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "C2561C69E7484CC406FFB6F6B3694E97", "id": "108", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d0\u05dc\u05d5\u05e0\u05d9 \u05d0\u05d1\u05d0", "mixname_he": "\u05d0\u05dc\u05d5\u05e0\u05d9 \u05d0\u05d1\u05d0 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0623\u0644\u0648\u0646\u064a \u0623\u0628\u0627", "mixname_ar": "\u0623\u0644\u0648\u0646\u064a \u0623\u0628\u0627 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Alonei Abba", "mixname_en": "Alonei Abba | <span>HaAmakim</span>", "label_ru": "\u0410\u043b\u043e\u043d\u0435\u0439 \u0410\u0431\u0430", "mixname_ru": "\u0410\u043b\u043e\u043d\u0435\u0439 \u0410\u0431\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "C25EB881D9B3EA75CBFECC656C1C8D1A", "id": "1145", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e8\u05d1\u05d9\u05d3", "mixname_he": "\u05e8\u05d1\u05d9\u05d3 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0631\u0628\u064a\u062f", "mixname_ar": "\u0631\u0628\u064a\u062f | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Ravid", "mixname_en": "Ravid | <span>Lower Galilee</span>", "label_ru": "\u0420\u0430\u0432\u0438\u0434", "mixname_ru": "\u0420\u0430\u0432\u0438\u0434 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "C281A206EC7FD37B5B5E84AC504E0CE1", "id": "852", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e0\u05d5\u05d1", "mixname_he": "\u05e0\u05d5\u05d1 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0646\u0648\u0641", "mixname_ar": "\u0646\u0648\u0641 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Nov", "mixname_en": "Nov | <span>South Golan</span>", "label_ru": "\u041d\u043e\u0432", "mixname_ru": "\u041d\u043e\u0432 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "C290C8758E7ECD988B29B85B28616B88", "id": "1043", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0434\u0435\u0440\u043e\u0442", "label_he": "\u05e2\u05e9\u05e8\u05ea", "mixname_he": "\u05e2\u05e9\u05e8\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0639\u0634\u0631\u062a", "mixname_ar": "\u0639\u0634\u0631\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Asseret", "mixname_en": "Asseret | <span>Lachish</span>", "label_ru": "\u0410\u0441\u0435\u0440\u0435\u0442", "mixname_ru": "\u0410\u0441\u0435\u0440\u0435\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "C29A3C37652BFF383C3BC5A762B19F9B", "id": "17", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d0\u05d1\u05e0\u05d9 \u05d7\u05e4\u05e5", "mixname_he": "\u05d0\u05d1\u05e0\u05d9 \u05d7\u05e4\u05e5 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u0641\u0646\u064a \u062d\u064a\u0641\u062a\u0633", "mixname_ar": "\u0623\u0641\u0646\u064a \u062d\u064a\u0641\u062a\u0633 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Avnei Hefetz", "mixname_en": "Avnei Hefetz | <span>Shomron</span>", "label_ru": "\u0410\u0432\u043d\u0435\u0439 \u0425\u0435\u0444\u0435\u0446", "mixname_ru": "\u0410\u0432\u043d\u0435\u0439 \u0425\u0435\u0444\u0435\u0446 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "C29FDF157051A3A7E8A64B0DBBC9CDF8", "id": "16", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d0\u05d1\u05e0\u05d9 \u05d0\u05d9\u05ea\u05df", "mixname_he": "\u05d0\u05d1\u05e0\u05d9 \u05d0\u05d9\u05ea\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0623\u0641\u0646\u064a \u0627\u064a\u062a\u0627\u0646", "mixname_ar": "\u0623\u0641\u0646\u064a \u0627\u064a\u062a\u0627\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Avnei Eitan", "mixname_en": "Avnei Eitan | <span>South Golan</span>", "label_ru": "\u0410\u0432\u043d\u0435\u0439 \u042d\u0439\u0442\u0430\u043d", "mixname_ru": "\u0410\u0432\u043d\u0435\u0439 \u042d\u0439\u0442\u0430\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "C2CC715E6B0E2C52A4B859996E5B4602", "id": "258", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d1\u05e8\u05d5\u05e8 \u05d7\u05d9\u05dc", "mixname_he": "\u05d1\u05e8\u05d5\u05e8 \u05d7\u05d9\u05dc | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u0631\u0648\u0631 \u062d\u064a\u0627\u0644", "mixname_ar": "\u0628\u0631\u0648\u0631 \u062d\u064a\u0627\u0644 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Bror Hayil", "mixname_en": "Bror Hayil | <span>West Negev</span>", "label_ru": "\u0411\u0440\u043e\u0440 \u0425\u0430\u0439\u043b\u044c", "mixname_ru": "\u0411\u0440\u043e\u0440 \u0425\u0430\u0439\u043b\u044c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C2DB844C3CB2A8EFFDA4C2E8DA20F439", "id": "764", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05de\u05e1\u05dc\u05d5\u05dc", "mixname_he": "\u05de\u05e1\u05dc\u05d5\u05dc | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0633\u0644\u0648\u0644", "mixname_ar": "\u0645\u0633\u0644\u0648\u0644 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Maslul", "mixname_en": "Maslul | <span>West Negev</span>", "label_ru": "\u041c\u0430\u0441\u043b\u0443\u043b\u044c", "mixname_ru": "\u041c\u0430\u0441\u043b\u0443\u043b\u044c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C317DA8AAF66C2386AA05DC28A361010", "id": "342", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05d2\u05e0\u05d5\u05ea", "mixname_he": "\u05d2\u05e0\u05d5\u05ea | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u0627\u0646\u0648\u062a", "mixname_ar": "\u062c\u0627\u0646\u0648\u062a | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ganot", "mixname_en": "Ganot | <span>HaShfela</span>", "label_ru": "\u0413\u0430\u043d\u043e\u0442", "mixname_ru": "\u0413\u0430\u043d\u043e\u0442 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "C3366B0B6DE63F501CA0972C5B745E65", "id": "1055", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e4\u05d5\u05e8\u05d9\u05d9\u05d3\u05d9\u05e1", "mixname_he": "\u05e4\u05d5\u05e8\u05d9\u05d9\u05d3\u05d9\u05e1 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0627\u0644\u0641\u0631\u064a\u062f\u064a\u0633", "mixname_ar": "\u0627\u0644\u0641\u0631\u064a\u062f\u064a\u0633 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Fureidis", "mixname_en": "Fureidis | <span>HaCarmel</span>", "label_ru": "\u0424\u0443\u0440\u0430\u0434\u0438\u0441", "mixname_ru": "\u0424\u0443\u0440\u0430\u0434\u0438\u0441 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "C34E92C60E7B9A8ECCF2BA85E923F630", "id": "1161", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e8\u05d9\u05d7\u05df", "mixname_he": "\u05e8\u05d9\u05d7\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0631\u064a\u062d\u0627\u0646", "mixname_ar": "\u0631\u064a\u062d\u0627\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Reihan", "mixname_en": "Reihan | <span>Shomron</span>", "label_ru": "\u0420\u0435\u0439\u0445\u0430\u043d", "mixname_ru": "\u0420\u0435\u0439\u0445\u0430\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "C364942439F19376F149944723B4EC50", "id": "801", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05de\u05e6\u05e4\u05d4 \u05d9\u05e8\u05d9\u05d7\u05d5", "mixname_he": "\u05de\u05e6\u05e4\u05d4 \u05d9\u05e8\u05d9\u05d7\u05d5 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u062a\u0633\u0628\u064a \u064a\u0631\u064a\u062d\u0648", "mixname_ar": "\u0645\u062a\u0633\u0628\u064a \u064a\u0631\u064a\u062d\u0648 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Mitzpeh Yericho", "mixname_en": "Mitzpeh Yericho | <span>Yehuda</span>", "label_ru": "\u041c\u0438\u0446\u043f\u0435 \u0419\u0435\u0440\u0438\u0445\u043e", "mixname_ru": "\u041c\u0438\u0446\u043f\u0435 \u0419\u0435\u0440\u0438\u0445\u043e | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "C392E96FE1261FF9401D07E012EAD82D", "id": "1127", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05e2\u05e0\u05d1\u05d9\u05dd", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05e2\u05e0\u05d1\u05d9\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0639\u0646\u0627\u0628\u064a\u0645", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0639\u0646\u0627\u0628\u064a\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kiryat Anavim", "mixname_en": "Kiryat Anavim | <span>Shfelat Yehuda</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0410\u043d\u0430\u0432\u0438\u043c", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0410\u043d\u0430\u0432\u0438\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "C3A15CD0D992802439AE90A434C55F1A", "id": "101", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d0\u05dc \u05e8\u05d5\u05dd", "mixname_he": "\u05d0\u05dc \u05e8\u05d5\u05dd | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0631\u0648\u0645", "mixname_ar": "\u0627\u0644\u0631\u0648\u0645 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "El Rom", "mixname_en": "El Rom | <span>North Golan</span>", "label_ru": "\u042d\u043b\u044c \u0420\u043e\u043c", "mixname_ru": "\u042d\u043b\u044c \u0420\u043e\u043c | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "C3E5EBE2C08FB9813AFDF584E5399F0F", "id": "88", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d0\u05d9\u05d9\u05dc", "mixname_he": "\u05d0\u05d9\u05d9\u05dc | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u064a\u0627\u0644", "mixname_ar": "\u0623\u064a\u0627\u0644 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Eyal", "mixname_en": "Eyal | <span>Sharon</span>", "label_ru": "\u042d\u044f\u043b\u044c", "mixname_ru": "\u042d\u044f\u043b\u044c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "C48BBE7BE5058C0F0DF54F9806B66CA7", "id": "1291", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05ea\u05dc\u05de\u05d9 \u05d1\u05d9\u05dc''\u05d5", "mixname_he": "\u05ea\u05dc\u05de\u05d9 \u05d1\u05d9\u05dc''\u05d5 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062a\u0644\u0645\u064a \u0628\u064a\u0644\u0648", "mixname_ar": "\u062a\u0644\u0645\u064a \u0628\u064a\u0644\u0648 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Talmei Bilu", "mixname_en": "Talmei Bilu | <span>West Negev</span>", "label_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u0411\u0438\u043b\u0443", "mixname_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u0411\u0438\u043b\u0443 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C48FC6286C14FAD78AE9099F757C9A03", "id": "200", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05d7\u05e8\u05d5\u05ea", "mixname_he": "\u05d1\u05d9\u05ea \u05d7\u05e8\u05d5\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u062d\u064a\u0631\u0648\u062a", "mixname_ar": "\u0628\u064a\u062a \u062d\u064a\u0631\u0648\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Beit Herut", "mixname_en": "Beit Herut | <span>Sharon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u0435\u0440\u0443\u0442", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u0435\u0440\u0443\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "C4F3205FD6306BDFDA4FF03365DF2EFC", "id": "1053", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e4\u05d5\u05e8\u05d9\u05d4 \u05e0\u05d5\u05d5\u05d4 \u05e2\u05d5\u05d1\u05d3", "mixname_he": "\u05e4\u05d5\u05e8\u05d9\u05d4 \u05e0\u05d5\u05d5\u05d4 \u05e2\u05d5\u05d1\u05d3 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0628\u0648\u0631\u064a\u0627 \u0646\u0627\u0641\u064a\u0647 \u0639\u0648\u0641\u064a\u062f", "mixname_ar": "\u0628\u0648\u0631\u064a\u0627 \u0646\u0627\u0641\u064a\u0647 \u0639\u0648\u0641\u064a\u062f | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Poria - Neve Oved", "mixname_en": "Poria - Neve Oved | <span>Lower Galilee</span>", "label_ru": "\u041f\u043e\u0440\u0438\u044f \u041d\u0435\u0432\u0435 \u041e\u0432\u0435\u0434", "mixname_ru": "\u041f\u043e\u0440\u0438\u044f \u041d\u0435\u0432\u0435 \u041e\u0432\u0435\u0434 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "C509DA69B9D830D8AD3E9CB1F22F6FB1", "id": "720", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c \u041a\u0430\u0441\u0443\u043c", "label_he": "\u05e1\u05e2\u05d9\u05d9\u05d4-\u05de\u05d5\u05dc\u05d3\u05d4", "mixname_he": "\u05e1\u05e2\u05d9\u05d9\u05d4-\u05de\u05d5\u05dc\u05d3\u05d4 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0633\u0627\u0639\u064a\u0627 \u0645\u0648\u0644\u0627\u062f\u0627", "mixname_ar": "\u0633\u0627\u0639\u064a\u0627 \u0645\u0648\u0644\u0627\u062f\u0627 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Mulada - Sa'wa", "mixname_en": "Mulada - Sa'wa | <span>South Negev</span>", "label_ru": "\u0421\u0430\u0430\u0439\u044f-\u041c\u0443\u043b\u0430\u0434\u0430", "mixname_ru": "\u0421\u0430\u0430\u0439\u044f-\u041c\u0443\u043b\u0430\u0434\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C520CE3AC0024C70E09FC2DEF3F002C3", "id": "856", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d0\u05d8\u05d9''\u05d1", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d0\u05d8\u05d9''\u05d1 | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0623\u0637\u064a\u0628", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0623\u0637\u064a\u0628 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Neveh Ativ", "mixname_en": "Neveh Ativ | <span>North Golan</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u0410\u0442\u0438\u0432", "mixname_ru": "\u041d\u0435\u0432\u0435 \u0410\u0442\u0438\u0432 | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "C525047BD23AC563B12D9A06AA55A157", "id": "944", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e1\u05dc\u05de\u05d4", "mixname_he": "\u05e1\u05dc\u05de\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0633\u0644\u0627\u0645\u0647", "mixname_ar": "\u0633\u0644\u0627\u0645\u0647 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Salama", "mixname_en": "Salama | <span>Center Galilee</span>", "label_ru": "\u0421\u0430\u043b\u0430\u043c\u0430", "mixname_ru": "\u0421\u0430\u043b\u0430\u043c\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "C553B71C1E50A8BA3A1D9D724BC99BA0", "id": "1130", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d0\u05ea\u05d0", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d0\u05ea\u05d0 | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0627\u062a\u0627", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0627\u062a\u0627 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Kiryat Atta", "mixname_en": "Kiryat Atta | <span>HaMifratz</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0410\u0442\u0430", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0410\u0442\u0430 | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "C5641E5ABB2FCB66393B29131564175C", "id": "1045", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05e2\u05ea\u05e0\u05d9\u05d0\u05dc", "mixname_he": "\u05e2\u05ea\u05e0\u05d9\u05d0\u05dc | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0639\u062a\u0646\u064a\u0626\u0644", "mixname_ar": "\u0639\u062a\u0646\u064a\u0626\u0644 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Otniel", "mixname_en": "Otniel | <span>Yehuda</span>", "label_ru": "\u041e\u0442\u043d\u0438\u044d\u043b\u044c", "mixname_ru": "\u041e\u0442\u043d\u0438\u044d\u043b\u044c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "C56C85D2B1522B76ED613860A4BA3860", "id": "1023", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e2\u05de\u05d5\u05e7\u05d4", "mixname_he": "\u05e2\u05de\u05d5\u05e7\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0639\u0645\u0648\u0643\u0627\u0647", "mixname_ar": "\u0639\u0645\u0648\u0643\u0627\u0647 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Amuka", "mixname_en": "Amuka | <span>Upper Galilee</span>", "label_ru": "\u0410\u043c\u0443\u043a\u0430", "mixname_ru": "\u0410\u043c\u0443\u043a\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "C5CAFA57162BBB2295B21E2C867ED4F3", "id": "1263", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e9\u05e7\u05d3", "mixname_he": "\u05e9\u05e7\u05d3 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0634\u0627\u0643\u064a\u062f", "mixname_ar": "\u0634\u0627\u0643\u064a\u062f | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Shaked", "mixname_en": "Shaked | <span>Shomron</span>", "label_ru": "\u0428\u0430\u043a\u0435\u0434", "mixname_ru": "\u0428\u0430\u043a\u0435\u0434 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "C5F8EFD022BA981CDFC93C317497B7C5", "id": "643", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05db\u05e4\u05e8 \u05e2\u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05e2\u05e6\u05d9\u05d5\u05df | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0639\u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0639\u062a\u0633\u064a\u0648\u0646 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Kfar Etzion", "mixname_en": "Kfar Etzion | <span>Yehuda</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u042d\u0446\u0438\u043e\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u042d\u0446\u0438\u043e\u043d | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "C5FCAC641935386874DB3F3BD088854A", "id": "1247", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05e9\u05de\u05e2\u05d4", "mixname_he": "\u05e9\u05de\u05e2\u05d4 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0634\u0645\u0639\u0627", "mixname_ar": "\u0634\u0645\u0639\u0627 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Shim'a", "mixname_en": "Shim'a | <span>Yehuda</span>", "label_ru": "\u0428\u0438\u043c\u0430", "mixname_ru": "\u0428\u0438\u043c\u0430 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "C5FD35F7510C4E1D535EDD8DE05A7961", "id": "909", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e9\u05d3\u05e8\u05d5\u05ea, \u05d0\u05d9\u05d1\u05d9\u05dd, \u05e0\u05d9\u05e8 \u05e2\u05dd", "mixname_he": "\u05e9\u05d3\u05e8\u05d5\u05ea, \u05d0\u05d9\u05d1\u05d9\u05dd, \u05e0\u05d9\u05e8 \u05e2\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0633\u062f\u064a\u0631\u0648\u062a \u060c \u0625\u064a\u0641\u064a\u0645 \u060c \u0646\u064a\u0631 \u0639\u0627\u0645", "mixname_ar": "\u0633\u062f\u064a\u0631\u0648\u062a \u060c \u0625\u064a\u0641\u064a\u0645 \u060c \u0646\u064a\u0631 \u0639\u0627\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Sderot, Ivim, Nir Am", "mixname_en": "Sderot, Ivim, Nir Am | <span>Gaza Envelope</span>", "label_ru": "\u0421\u0434\u0435\u0440\u043e\u0442, \u0418\u0432\u0438\u043c, \u041d\u0438\u0440 \u0410\u043c", "mixname_ru": "\u0421\u0434\u0435\u0440\u043e\u0442, \u0418\u0432\u0438\u043c, \u041d\u0438\u0440 \u0410\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "C696F89072B95FD608998AB3DA42CC82", "id": "1269", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05e9\u05ea\u05d5\u05dc\u05d4", "mixname_he": "\u05e9\u05ea\u05d5\u05dc\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0634\u062a\u0648\u0644\u0627", "mixname_ar": "\u0634\u062a\u0648\u0644\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Shtula", "mixname_en": "Shtula | <span>Confrontation Line</span>", "label_ru": "\u0428\u0442\u0443\u043b\u0430", "mixname_ru": "\u0428\u0442\u0443\u043b\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "C69811DBF229A47E360D69CFC4EC8E96", "id": "1102", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0440\u0435\u043d\u0435\u0440", "label_he": "\u05e7\u05d3\u05e8\u05d5\u05df", "mixname_he": "\u05e7\u05d3\u05e8\u05d5\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u062f\u0631\u0648\u0646", "mixname_ar": "\u0643\u062f\u0631\u0648\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kidron", "mixname_en": "Kidron | <span>Lachish</span>", "label_ru": "\u041a\u0438\u0434\u0440\u043e\u043d", "mixname_ru": "\u041a\u0438\u0434\u0440\u043e\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "C6AF885312FE8D6DD78892B75B35DE1D", "id": "937", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e1\u05d1\u05d9\u05d5\u05df", "mixname_he": "\u05e1\u05d1\u05d9\u05d5\u05df | <span>\u05d3\u05df</span>", "label_ar": "\u0633\u0641\u064a\u0648\u0646", "mixname_ar": "\u0633\u0641\u064a\u0648\u0646 | <span>\u062f\u0627\u0646</span>", "label_en": "Savyon", "mixname_en": "Savyon | <span>Dan</span>", "label_ru": "\u0421\u0430\u0432\u044c\u043e\u043d", "mixname_ru": "\u0421\u0430\u0432\u044c\u043e\u043d | <span>\u0414\u0430\u043d</span>"}, {"value": "C7211E58DD9FD7AF4D3615F80B2D8568", "id": "498", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d9\u05d1\u05e0\u05d0\u05dc", "mixname_he": "\u05d9\u05d1\u05e0\u05d0\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u064a\u0641\u0646\u0627\u0644", "mixname_ar": "\u064a\u0641\u0646\u0627\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Yavne'el", "mixname_en": "Yavne'el | <span>Lower Galilee</span>", "label_ru": "\u042f\u0432\u043d\u0438\u044d\u043b\u044c", "mixname_ru": "\u042f\u0432\u043d\u0438\u044d\u043b\u044c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "C77815E750D94DA8ECA5006DF8A4A8DE", "id": "1039", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e2\u05e8\u05d3", "mixname_he": "\u05e2\u05e8\u05d3 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0639\u0631\u0627\u062f", "mixname_ar": "\u0639\u0631\u0627\u062f | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Arad", "mixname_en": "Arad | <span>South Negev</span>", "label_ru": "\u0410\u0440\u0430\u0434", "mixname_ru": "\u0410\u0440\u0430\u0434 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C791A5584544C35364B761E5C3181BCF", "id": "151", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d0\u05e9\u05dc\u05d9\u05dd", "mixname_he": "\u05d0\u05e9\u05dc\u05d9\u05dd | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0627\u0634\u0644\u064a\u0645", "mixname_ar": "\u0627\u0634\u0644\u064a\u0645 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Ashalim", "mixname_en": "Ashalim | <span>South Negev</span>", "label_ru": "\u0410\u0448\u0430\u043b\u0438\u043c", "mixname_ru": "\u0410\u0448\u0430\u043b\u0438\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C82297FB5B7A47067D1919886341186C", "id": "222", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05d1\u05d9\u05ea \u05e2\u05e8\u05d9\u05e3", "mixname_he": "\u05d1\u05d9\u05ea \u05e2\u05e8\u05d9\u05e3 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0639\u0631\u064a\u0641", "mixname_ar": "\u0628\u064a\u062a \u0639\u0631\u064a\u0641 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Beit Arif", "mixname_en": "Beit Arif | <span>Yarkon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0410\u0440\u0438\u0444", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0410\u0440\u0438\u0444 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "C850700FF6B9BC34D3CFD15E84D44B7E", "id": "1242", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e9\u05dc\u05d5\u05d7\u05d5\u05ea", "mixname_he": "\u05e9\u05dc\u05d5\u05d7\u05d5\u05ea | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0634\u0644\u0648\u062d\u0648\u062a", "mixname_ar": "\u0634\u0644\u0648\u062d\u0648\u062a | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Shluchot", "mixname_en": "Shluchot | <span>Beit She'an Valley</span>", "label_ru": "\u0428\u043b\u0443\u0445\u043e\u0442", "mixname_ru": "\u0428\u043b\u0443\u0445\u043e\u0442 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "C86928E657CCBD9D124CACE4A29ABCA8", "id": "168", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d5\u05e8\u05d2\u05ea\u05d4", "mixname_he": "\u05d1\u05d5\u05e8\u05d2\u05ea\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0648\u0631\u062c\u0627\u062a\u0627", "mixname_ar": "\u0628\u0648\u0631\u062c\u0627\u062a\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Burgata", "mixname_en": "Burgata | <span>Sharon</span>", "label_ru": "\u0411\u0443\u0440\u0433\u0430\u0442\u0430", "mixname_ru": "\u0411\u0443\u0440\u0433\u0430\u0442\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "C869E5CE9526F9455FEEAA7FEC3F38DE", "id": "1284", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05dc \u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05ea\u05dc \u05e6\u05d9\u05d5\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0644 \u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u062a\u0644 \u062a\u0633\u064a\u0648\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Tel Zion", "mixname_en": "Tel Zion | <span>Shomron</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0426\u0438\u043e\u043d", "mixname_ru": "\u0422\u0435\u043b\u044c \u0426\u0438\u043e\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "C875A357128FFBEC33E94BA80FD1F7B2", "id": "987", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e2\u05d9\u05df \u05d4\u05d1\u05e9\u05d5\u05e8", "mixname_he": "\u05e2\u05d9\u05df \u05d4\u05d1\u05e9\u05d5\u05e8 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0647\u0628\u0633\u0648\u0631", "mixname_ar": "\u0639\u064a\u0646 \u0647\u0628\u0633\u0648\u0631 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Ein HaBsor", "mixname_en": "Ein HaBsor | <span>Gaza Envelope</span>", "label_ru": "\u042d\u0439\u043d \u0445\u0430-\u0411\u0441\u043e\u0440", "mixname_ru": "\u042d\u0439\u043d \u0445\u0430-\u0411\u0441\u043e\u0440 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "C877059AB00C38698B05ED96A86498B5", "id": "1033", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e2\u05e4\u05e8\u05d4", "mixname_he": "\u05e2\u05e4\u05e8\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0648\u0641\u0631\u0627", "mixname_ar": "\u0639\u0648\u0641\u0631\u0627 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Ofra", "mixname_en": "Ofra | <span>Shomron</span>", "label_ru": "\u041e\u0444\u0440\u0430", "mixname_ru": "\u041e\u0444\u0440\u0430 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "C8920EABD1033A7679BA5E5691939E28", "id": "1172", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e8\u05de\u05dc\u05d4", "mixname_he": "\u05e8\u05de\u05dc\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0627\u0644\u0631\u0645\u0644\u0629-", "mixname_ar": "\u0627\u0644\u0631\u0645\u0644\u0629- | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ramla", "mixname_en": "Ramla | <span>HaShfela</span>", "label_ru": "\u0420\u0430\u043c\u043b\u0430", "mixname_ru": "\u0420\u0430\u043c\u043b\u0430 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "C8A6C2B69886219E6EFC74DBD60CDC90", "id": "63", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e2\u05d9\u05d3\u05df \u05d4\u05e0\u05d2\u05d1", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e2\u05d9\u05d3\u05df \u05d4\u05e0\u05d2\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0639\u064a\u062f\u0627\u0646 \u0627\u0644\u0646", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0639\u064a\u062f\u0627\u0646 \u0627\u0644\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Idan HaNegev Industrial Zone", "mixname_en": "Idan HaNegev Industrial Zone | <span>Center Negev</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0418\u0434\u0430\u043d \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0418\u0434\u0430\u043d \u0445\u0430-\u041d\u0435\u0433\u0435\u0432 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "C8E17CE7513CDF312D034B1E64C3EA74", "id": "1366", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d5\u05d5\u05ea \u05d2\u05dc\u05e2\u05d3", "mixname_he": "\u05d7\u05d5\u05d5\u05ea \u05d2\u05dc\u05e2\u05d3 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0627\u0641\u0627\u062a \u062c\u0644\u0639\u0627\u062f", "mixname_ar": "\u062d\u0627\u0641\u0627\u062a \u062c\u0644\u0639\u0627\u062f | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Khavat Gil'ad", "mixname_en": "Khavat Gil'ad | <span>Shomron</span>", "label_ru": "\u0425\u0430\u0432\u0430\u0442 \u0413\u0438\u043b\u0430\u0434", "mixname_ru": "\u0425\u0430\u0432\u0430\u0442 \u0413\u0438\u043b\u0430\u0434 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "C90963A5EADA186D703DD0F25DC365D6", "id": "953", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e1\u05e4\u05e1\u05d5\u05e4\u05d4 - \u05db\u05e4\u05e8 \u05d7\u05d5\u05e9\u05df", "mixname_he": "\u05e1\u05e4\u05e1\u05d5\u05e4\u05d4 - \u05db\u05e4\u05e8 \u05d7\u05d5\u05e9\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0635\u0641\u0635\u0648\u0641\u0629 - \u0643\u0641\u0627\u0631 \u062d\u0648\u0634\u0646", "mixname_ar": "\u0635\u0641\u0635\u0648\u0641\u0629 - \u0643\u0641\u0627\u0631 \u062d\u0648\u0634\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Safsufa (Kfar Hoshen)", "mixname_en": "Safsufa (Kfar Hoshen) | <span>Upper Galilee</span>", "label_ru": "\u0421\u0430\u0444\u0441\u0443\u0444\u0430 (\u043a\u0444\u0430\u0440 \u0425\u043e\u0448\u0435\u043d)", "mixname_ru": "\u0421\u0430\u0444\u0441\u0443\u0444\u0430 (\u043a\u0444\u0430\u0440 \u0425\u043e\u0448\u0435\u043d) | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "C911DD0FD757E74C1F6C4B971AD383AD", "id": "939", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e1\u05d5\u05d0\u05e2\u05d3 \u05d7\u05de\u05d9\u05e8\u05d4", "mixname_he": "\u05e1\u05d5\u05d0\u05e2\u05d3 \u05d7\u05de\u05d9\u05e8\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0633\u0648\u0627\u0639\u062f \u062d\u0645\u064a\u0631\u0629", "mixname_ar": "\u0633\u0648\u0627\u0639\u062f \u062d\u0645\u064a\u0631\u0629 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Sawad Humeria", "mixname_en": "Sawad Humeria | <span>HaAmakim</span>", "label_ru": "\u0421\u0430\u0443\u0430\u0434 \u0425\u0443\u043c\u0435\u0439\u0440\u0430", "mixname_ru": "\u0421\u0430\u0443\u0430\u0434 \u0425\u0443\u043c\u0435\u0439\u0440\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "C9845B0600CE5655E8DF090934077911", "id": "1351", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05ea\u05d7\u05e0\u05ea \u05e8\u05db\u05d1\u05ea \u05e8\u05d0\u05e9 \u05d4\u05e2\u05d9\u05df", "mixname_he": "\u05ea\u05d7\u05e0\u05ea \u05e8\u05db\u05d1\u05ea \u05e8\u05d0\u05e9 \u05d4\u05e2\u05d9\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u062d\u0637\u0629 \u0627\u0644\u0642\u0637\u0627\u0631 \u0631\u0648\u0634 \u0647\u0639\u0627\u064a\u0646", "mixname_ar": "\u0645\u062d\u0637\u0629 \u0627\u0644\u0642\u0637\u0627\u0631 \u0631\u0648\u0634 \u0647\u0639\u0627\u064a\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Rosh HaAyin train station", "mixname_en": "Rosh HaAyin train station | <span>Sharon</span>", "label_ru": "\u0416\u0414 \u0441\u0442\u0430\u043d\u0446\u0438\u044f \u0420\u043e\u0448 \u0410\u0439\u043d", "mixname_ru": "\u0416\u0414 \u0441\u0442\u0430\u043d\u0446\u0438\u044f \u0420\u043e\u0448 \u0410\u0439\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "CA38A6A6210DBFF6080338BD6722C05E", "id": "841", "areaid": 18, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0422\u0430\u043c\u0430\u0440", "label_he": "\u05e0\u05d0\u05d5\u05ea \u05d4\u05db\u05d9\u05db\u05e8", "mixname_he": "\u05e0\u05d0\u05d5\u05ea \u05d4\u05db\u05d9\u05db\u05e8 | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0646\u0624\u0648\u062a \u0647\u0643\u064a\u0643\u0627\u0631", "mixname_ar": "\u0646\u0624\u0648\u062a \u0647\u0643\u064a\u0643\u0627\u0631 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Neot HaKikar", "mixname_en": "Neot HaKikar | <span>Dead Sea</span>", "label_ru": "\u041d\u0435\u043e\u0442 \u0445\u0430-\u041a\u0438\u043a\u0430\u0440", "mixname_ru": "\u041d\u0435\u043e\u0442 \u0445\u0430-\u041a\u0438\u043a\u0430\u0440 | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "CA4761BC39838FA9F72B39E43552FBB8", "id": "117", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05d0\u05dc\u05d9\u05e7\u05d9\u05dd", "mixname_he": "\u05d0\u05dc\u05d9\u05e7\u05d9\u05dd | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0627\u0644\u064a\u0627\u0643\u064a\u0645", "mixname_ar": "\u0627\u0644\u064a\u0627\u0643\u064a\u0645 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Elyakim", "mixname_en": "Elyakim | <span>Wadi Ara</span>", "label_ru": "\u042d\u043b\u044c\u044f\u043a\u0438\u043c", "mixname_ru": "\u042d\u043b\u044c\u044f\u043a\u0438\u043c | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "CA76FB8192DDC4683A4DCF3DD4AE3577", "id": "426", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d7\u05d1\u05e6\u05dc\u05ea \u05d4\u05e9\u05e8\u05d5\u05df \u05d5\u05e6\u05d5\u05e7\u05d9 \u05d9\u05dd", "mixname_he": "\u05d7\u05d1\u05e6\u05dc\u05ea \u05d4\u05e9\u05e8\u05d5\u05df \u05d5\u05e6\u05d5\u05e7\u05d9 \u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0647\u0641\u0627\u062a\u0633\u064a\u0644\u064a\u062a \u0647\u0634\u0627\u0631\u0648\u0646", "mixname_ar": "\u0647\u0641\u0627\u062a\u0633\u064a\u0644\u064a\u062a \u0647\u0634\u0627\u0631\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Havatzelet HaSharon and Tzukei Yam", "mixname_en": "Havatzelet HaSharon and Tzukei Yam | <span>Sharon</span>", "label_ru": "\u0425\u0430\u0432\u0430\u0446\u0435\u043b\u0435\u0442 \u0430-\u0428\u0430\u0440\u043e\u043d \u0438 \u0426\u0443\u043a\u0435\u0439 \u042f", "mixname_ru": "\u0425\u0430\u0432\u0430\u0446\u0435\u043b\u0435\u0442 \u0430-\u0428\u0430\u0440\u043e\u043d \u0438 \u0426\u0443\u043a\u0435\u0439 \u042f | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "CA94D5B66DF06F8AD3740B06163B9C7F", "id": "468", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d7\u05e6\u05d5\u05e8 \u05d4\u05d2\u05dc\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05d7\u05e6\u05d5\u05e8 \u05d4\u05d2\u05dc\u05d9\u05dc\u05d9\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062d\u062a\u0633\u0648\u0631 \u0647\u062c\u0644\u064a\u0644\u064a\u062a", "mixname_ar": "\u062d\u062a\u0633\u0648\u0631 \u0647\u062c\u0644\u064a\u0644\u064a\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Hatzor HaGlilit", "mixname_en": "Hatzor HaGlilit | <span>Upper Galilee</span>", "label_ru": "\u0425\u0430\u0446\u043e\u0440 \u0445\u0430-\u0413\u043b\u0438\u043b\u0438\u0442", "mixname_ru": "\u0425\u0430\u0446\u043e\u0440 \u0445\u0430-\u0413\u043b\u0438\u043b\u0438\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "CAB617763C1D1B0F60274D389D524566", "id": "210", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05d1\u05d9\u05ea \u05e0\u05d9\u05e8", "mixname_he": "\u05d1\u05d9\u05ea \u05e0\u05d9\u05e8 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u0646\u064a\u0631", "mixname_ar": "\u0628\u064a\u062a \u0646\u064a\u0631 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beit Nir", "mixname_en": "Beit Nir | <span>Shfelat Yehuda</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u041d\u0438\u0440", "mixname_ru": "\u0411\u0435\u0439\u0442 \u041d\u0438\u0440 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "CACFC973E794078B771DE1F6F9BE1FF6", "id": "770", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05de\u05e2\u05d2\u05df \u05de\u05d9\u05db\u05d0\u05dc", "mixname_he": "\u05de\u05e2\u05d2\u05df \u05de\u05d9\u05db\u05d0\u05dc | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0645\u0639\u062c\u0627\u0646 \u0645\u064a\u062e\u0627\u0626\u064a\u0644", "mixname_ar": "\u0645\u0639\u062c\u0627\u0646 \u0645\u064a\u062e\u0627\u0626\u064a\u0644 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Ma'agan Michael", "mixname_en": "Ma'agan Michael | <span>Menashe</span>", "label_ru": "\u041c\u0430\u0430\u0433\u0430\u043d \u041c\u0438\u0445\u0430\u044d\u043b\u044c", "mixname_ru": "\u041c\u0430\u0430\u0433\u0430\u043d \u041c\u0438\u0445\u0430\u044d\u043b\u044c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "CB143013C0E42931F55062AADEF4CB01", "id": "380", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c \u041a\u0430\u0441\u0443\u043c", "label_he": "\u05d0\u05dc \u05e4\u05d5\u05e8\u05e2\u05d4", "mixname_he": "\u05d0\u05dc \u05e4\u05d5\u05e8\u05e2\u05d4 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0627\u0644\u0641\u0648\u0631\u0639\u0627", "mixname_ar": "\u0627\u0644\u0641\u0648\u0631\u0639\u0627 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "El Pura", "mixname_en": "El Pura | <span>South Negev</span>", "label_ru": "\u0410\u043b\u044c \u0424\u0443\u0440\u0430", "mixname_ru": "\u0410\u043b\u044c \u0424\u0443\u0440\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "CBD4251EE783ED83799DB7073CF1AECF", "id": "208", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d1\u05d9\u05ea \u05de\u05d0\u05d9\u05e8", "mixname_he": "\u05d1\u05d9\u05ea \u05de\u05d0\u05d9\u05e8 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u0645\u0626\u064a\u0631", "mixname_ar": "\u0628\u064a\u062a \u0645\u0626\u064a\u0631 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beit Meir", "mixname_en": "Beit Meir | <span>Shfelat Yehuda</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u041c\u0435\u0438\u0440", "mixname_ru": "\u0411\u0435\u0439\u0442 \u041c\u0435\u0438\u0440 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "CC043388998442B179F053FA7A4F47A4", "id": "994", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e2\u05d9\u05df \u05d4\u05e9\u05dc\u05d5\u05e9\u05d4", "mixname_he": "\u05e2\u05d9\u05df \u05d4\u05e9\u05dc\u05d5\u05e9\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0647\u0634\u0644\u0648\u0634\u0627", "mixname_ar": "\u0639\u064a\u0646 \u0647\u0634\u0644\u0648\u0634\u0627 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Ein HaShlosha", "mixname_en": "Ein HaShlosha | <span>Gaza Envelope</span>", "label_ru": "\u042d\u0439\u043d \u0445\u0430-\u0428\u043b\u043e\u0448\u0430", "mixname_ru": "\u042d\u0439\u043d \u0445\u0430-\u0428\u043b\u043e\u0448\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "CC1CEA6137190719749DF80B8B642A00", "id": "1057", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e4\u05d8\u05d9\u05e9", "mixname_he": "\u05e4\u05d8\u05d9\u05e9 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0641\u0637\u064a\u0634", "mixname_ar": "\u0641\u0637\u064a\u0634 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Patish", "mixname_en": "Patish | <span>West Negev</span>", "label_ru": "\u041f\u0430\u0442\u0438\u0448", "mixname_ru": "\u041f\u0430\u0442\u0438\u0448 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "CC4642AD25F18359F0E0EF3E14760977", "id": "576", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05db\u05e1\u05dc\u05d5\u05df", "mixname_he": "\u05db\u05e1\u05dc\u05d5\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0643\u0633\u0644\u0648\u0646", "mixname_ar": "\u0643\u0633\u0644\u0648\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ksalon", "mixname_en": "Ksalon | <span>Shfelat Yehuda</span>", "label_ru": "\u041a\u0441\u0430\u043b\u043e\u043d", "mixname_ru": "\u041a\u0441\u0430\u043b\u043e\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "CC5C4A4536C2020FCC4867CA89DE30FC", "id": "376", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d3\u05de\u05d9\u05d9\u05d3\u05d4", "mixname_he": "\u05d3\u05de\u05d9\u05d9\u05d3\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0636\u0645\u064a\u062f\u0647", "mixname_ar": "\u0636\u0645\u064a\u062f\u0647 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Dmeide", "mixname_en": "Dmeide | <span>Center Galilee</span>", "label_ru": "\u0414\u043c\u0435\u0439\u0434\u0435", "mixname_ru": "\u0414\u043c\u0435\u0439\u0434\u0435 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "CC8B89BA156F8C749E03A4472A829E99", "id": "508", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d9\u05d4\u05d5\u05d3-\u05de\u05d5\u05e0\u05d5\u05e1\u05d5\u05df", "mixname_he": "\u05d9\u05d4\u05d5\u05d3-\u05de\u05d5\u05e0\u05d5\u05e1\u05d5\u05df | <span>\u05d3\u05df</span>", "label_ar": "\u064a\u0647\u0648\u062f- \u0645\u0648\u0646\u0648\u0633\u0648\u0646", "mixname_ar": "\u064a\u0647\u0648\u062f- \u0645\u0648\u0646\u0648\u0633\u0648\u0646 | <span>\u062f\u0627\u0646</span>", "label_en": "Yehud-Monosson", "mixname_en": "Yehud-Monosson | <span>Dan</span>", "label_ru": "\u0419\u0435\u0445\u0443\u0434-\u041c\u043e\u043d\u043e\u0441\u0441\u043e\u043d", "mixname_ru": "\u0419\u0435\u0445\u0443\u0434-\u041c\u043e\u043d\u043e\u0441\u0441\u043e\u043d | <span>\u0414\u0430\u043d</span>"}, {"value": "CC9F5404935CE834CA90B945492DE6DE", "id": "603", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05e8\u05d0''\u05d4", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05e8\u05d0''\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0647\u0631\u0648\u0626\u064a", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0647\u0631\u0648\u0626\u064a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar HaRoeh", "mixname_en": "Kfar HaRoeh | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u0420\u043e\u044d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u0420\u043e\u044d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "CCA589D307BCF73F49A724FB5EAC532E", "id": "348", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2\u05e0\u05d9 \u05ea\u05e7\u05d5\u05d5\u05d4", "mixname_he": "\u05d2\u05e0\u05d9 \u05ea\u05e7\u05d5\u05d5\u05d4 | <span>\u05d3\u05df</span>", "label_ar": "\u062c\u0627\u0646\u064a \u062a\u0643\u0641\u0627", "mixname_ar": "\u062c\u0627\u0646\u064a \u062a\u0643\u0641\u0627 | <span>\u062f\u0627\u0646</span>", "label_en": "Ganei Tikva", "mixname_en": "Ganei Tikva | <span>Dan</span>", "label_ru": "\u0413\u0430\u043d\u0435\u0439 \u0422\u0438\u043a\u0432\u0430", "mixname_ru": "\u0413\u0430\u043d\u0435\u0439 \u0422\u0438\u043a\u0432\u0430 | <span>\u0414\u0430\u043d</span>"}, {"value": "CD4E7442B52A5C325D704C12DA05C2F0", "id": "1166", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05e8\u05dd \u05d0\u05d5\u05df", "mixname_he": "\u05e8\u05dd \u05d0\u05d5\u05df | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0631\u0627\u0645 \u0623\u0648\u0646", "mixname_ar": "\u0631\u0627\u0645 \u0623\u0648\u0646 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ram On", "mixname_en": "Ram On | <span>HaAmakim</span>", "label_ru": "\u0420\u0430\u043c \u041e\u043d", "mixname_ru": "\u0420\u0430\u043c \u041e\u043d | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "CD5B4F2971047D60E54F493EAB0C423C", "id": "333", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0434\u0435\u0440\u043e\u0442", "label_he": "\u05d2\u05df \u05d4\u05d3\u05e8\u05d5\u05dd", "mixname_he": "\u05d2\u05df \u05d4\u05d3\u05e8\u05d5\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062c\u0627\u0646 \u0647\u062f\u0631\u0648\u0645", "mixname_ar": "\u062c\u0627\u0646 \u0647\u062f\u0631\u0648\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Gan HaDarom", "mixname_en": "Gan HaDarom | <span>Lachish</span>", "label_ru": "\u0413\u0430\u043d \u0445\u0430-\u0414\u0430\u0440\u043e\u043c", "mixname_ru": "\u0413\u0430\u043d \u0445\u0430-\u0414\u0430\u0440\u043e\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "CD601F1E5FA6FCF6BDE9C42BA527C01F", "id": "232", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea\u05e8 \u05e2\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05d1\u05d9\u05ea\u05e8 \u05e2\u05d9\u05dc\u05d9\u05ea | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u064a\u062a\u0627\u0631 \u0639\u064a\u0644\u064a\u062a", "mixname_ar": "\u0628\u064a\u062a\u0627\u0631 \u0639\u064a\u0644\u064a\u062a | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beitar Illit", "mixname_en": "Beitar Illit | <span>Yehuda</span>", "label_ru": "\u0411\u0435\u0439\u0442\u0430\u0440 \u0418\u043b\u0438\u0442", "mixname_ru": "\u0411\u0435\u0439\u0442\u0430\u0440 \u0418\u043b\u0438\u0442 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "CDB955988BDEF39CB1B798AEAEB9CC0B", "id": "51", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d4\u05e8 \u05d8\u05d5\u05d1 - \u05e6\u05e8\u05e2\u05d4", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d4\u05e8 \u05d8\u05d5\u05d1 - \u05e6\u05e8\u05e2\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 - \u062a\u0633\u0627\u0631\u0639\u0627", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 - \u062a\u0633\u0627\u0631\u0639\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Har Tuv - Tzora Industrial Zone", "mixname_en": "Har Tuv - Tzora Industrial Zone | <span>Shfelat Yehuda</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0425\u0430\u0440 \u0422\u0443\u0432 - \u0426\u0440\u043e\u0430", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0425\u0430\u0440 \u0422\u0443\u0432 - \u0426\u0440\u043e\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "CDF0D173B108F65C603797410D702D18", "id": "604", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0419\u043e\u0430\u0432", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05e8\u05d9''\u05e3 \u05d5\u05e6\u05d5\u05de\u05ea \u05e8\u05d0\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05e8\u05d9''\u05e3 \u05d5\u05e6\u05d5\u05de\u05ea \u05e8\u05d0\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0642\u0631\u064a\u0629 \u0627\u0644\u0631\u064a\u0641 \u0648\u0645\u0641\u0631\u0642 \u0631\u0623\u0645", "mixname_ar": "\u0642\u0631\u064a\u0629 \u0627\u0644\u0631\u064a\u0641 \u0648\u0645\u0641\u0631\u0642 \u0631\u0623\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kfar HaRif and Re'em Junction", "mixname_en": "Kfar HaRif and Re'em Junction | <span>Lachish</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0410\u0420\u0418\u0424 \u0438 \u0426\u043e\u043c\u0435\u0442 \u0420\u0430\u0430\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0410\u0420\u0418\u0424 \u0438 \u0426\u043e\u043c\u0435\u0442 \u0420\u0430\u0430\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "CDF84068B048C557FE790653255DB8BA", "id": "389", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d4\u05d6\u05d5\u05e8\u05e2\u05d9\u05dd", "mixname_he": "\u05d4\u05d6\u05d5\u05e8\u05e2\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0647\u0632\u0648\u0631\u0639\u064a\u0645", "mixname_ar": "\u0647\u0632\u0648\u0631\u0639\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "HaZor'im", "mixname_en": "HaZor'im | <span>Lower Galilee</span>", "label_ru": "\u0445\u0430-\u0417\u043e\u0440\u0438\u043c", "mixname_ru": "\u0445\u0430-\u0417\u043e\u0440\u0438\u043c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "CE228BF83DB1ED27FA20E8AA64ED17EE", "id": "749", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05db\u05d5\u05e8\u05d4", "mixname_he": "\u05de\u05db\u05d5\u05e8\u05d4 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0645\u062e\u0648\u0631\u0627\u0647", "mixname_ar": "\u0645\u062e\u0648\u0631\u0627\u0647 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Mekhora", "mixname_en": "Mekhora | <span>Bika'a</span>", "label_ru": "\u041c\u0435\u0445\u043e\u0440\u0430", "mixname_ru": "\u041c\u0435\u0445\u043e\u0440\u0430 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "CE2E4DFC9A5BF35625821B5823B3BB9A", "id": "449", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d7\u05d6\u05d5\u05df", "mixname_he": "\u05d7\u05d6\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u062d\u0632\u0648\u0646", "mixname_ar": "\u062d\u0632\u0648\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Hazon", "mixname_en": "Hazon | <span>Center Galilee</span>", "label_ru": "\u0425\u0430\u0437\u043e\u043d", "mixname_ru": "\u0425\u0430\u0437\u043e\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "CE4BF659AFD658A29A9329E0F96112FB", "id": "1373", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d9\u05e8\u05df", "mixname_he": "\u05d7\u05d9\u05e8\u05df | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062d\u064a\u0631\u0627\u0646", "mixname_ar": "\u062d\u064a\u0631\u0627\u0646 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Hiran", "mixname_en": "Hiran | <span>South Negev</span>", "label_ru": "\u0425\u0438\u0440\u0430\u043d", "mixname_ru": "\u0425\u0438\u0440\u0430\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "CE650ABD9315A6EE2B4980316C7911FC", "id": "1141", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05e8\u05d0\u05e9 \u05e6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05e8\u05d0\u05e9 \u05e6\u05d5\u05e8\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0631\u0627\u0633 \u062a\u0633\u0648\u0631\u064a\u0645", "mixname_ar": "\u0631\u0627\u0633 \u062a\u0633\u0648\u0631\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Rosh Tzurim", "mixname_en": "Rosh Tzurim | <span>Yehuda</span>", "label_ru": "\u0420\u043e\u0448 \u0426\u0443\u0440\u0438\u043c", "mixname_ru": "\u0420\u043e\u0448 \u0426\u0443\u0440\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "CEA3DE5660C76CA89A9AA31C6CD8DE45", "id": "1201", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05e9\u05d3\u05d4 \u05d0\u05dc\u05d9\u05e2\u05d6\u05e8", "mixname_he": "\u05e9\u05d3\u05d4 \u05d0\u05dc\u05d9\u05e2\u05d6\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0627\u0644\u064a\u0639\u064a\u0632\u0631", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0627\u0644\u064a\u0639\u064a\u0632\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Sdeh Eliezer", "mixname_en": "Sdeh Eliezer | <span>Upper Galilee</span>", "label_ru": "\u0421\u0434\u044d \u042d\u043b\u0438\u044d\u0437\u0435\u0440", "mixname_ru": "\u0421\u0434\u044d \u042d\u043b\u0438\u044d\u0437\u0435\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "CEDF78515DC1E5DD528996E42D43172F", "id": "424", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d6\u05e8\u05e2\u05d9\u05ea", "mixname_he": "\u05d6\u05e8\u05e2\u05d9\u05ea | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0632\u0631\u0639\u064a\u062a", "mixname_ar": "\u0632\u0631\u0639\u064a\u062a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Zarit", "mixname_en": "Zarit | <span>Confrontation Line</span>", "label_ru": "\u0417\u0430\u0440\u0438\u0442", "mixname_ru": "\u0417\u0430\u0440\u0438\u0442 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "CF6FBDC6D30D03526AB5F14AC44ABCD1", "id": "1257", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05e9\u05e2\u05e8 \u05de\u05e0\u05e9\u05d4", "mixname_he": "\u05e9\u05e2\u05e8 \u05de\u05e0\u05e9\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0634\u0627\u0639\u0631 \u0645\u0646\u0634\u064a\u0647", "mixname_ar": "\u0634\u0627\u0639\u0631 \u0645\u0646\u0634\u064a\u0647 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Sha'ar Menashe", "mixname_en": "Sha'ar Menashe | <span>Menashe</span>", "label_ru": "\u0428\u0430\u0430\u0440 \u041c\u0435\u043d\u0430\u0448\u0435", "mixname_ru": "\u0428\u0430\u0430\u0440 \u041c\u0435\u043d\u0430\u0448\u0435 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "CFFB5E35C32C36E44D8156A96908D27B", "id": "686", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05dc\u05e4\u05d9\u05d3\u05d5\u05ea", "mixname_he": "\u05dc\u05e4\u05d9\u05d3\u05d5\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0644\u0641\u064a\u062f\u0648\u062a", "mixname_ar": "\u0644\u0641\u064a\u062f\u0648\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Lapidot", "mixname_en": "Lapidot | <span>Upper Galilee</span>", "label_ru": "\u041b\u0430\u043f\u0438\u0434\u043e\u0442", "mixname_ru": "\u041b\u0430\u043f\u0438\u0434\u043e\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "D00217C1D0510B2ECD9525F0DD3D17EE", "id": "244", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05e0\u05d9 \u05e2\u05d9''\u05e9", "mixname_he": "\u05d1\u05e0\u05d9 \u05e2\u05d9''\u05e9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0646\u064a \u0639\u0627\u064a\u0634", "mixname_ar": "\u0628\u0646\u064a \u0639\u0627\u064a\u0634 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Bnei Ayish", "mixname_en": "Bnei Ayish | <span>Lachish</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0410\u0438\u0448", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0410\u0438\u0448 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "D00619C2622B58235A11E8EBAF5D89E4", "id": "804", "areaid": 18, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u043b\u043e\u0442 \u041c\u0435\u0440\u0442\u0432\u043e\u0433\u043e \u043c\u043e\u0440\u044f", "label_he": "\u05de\u05e6\u05e4\u05d4 \u05e9\u05dc\u05dd", "mixname_he": "\u05de\u05e6\u05e4\u05d4 \u05e9\u05dc\u05dd | <span>\u05d9\u05dd \u05d4\u05de\u05dc\u05d7</span>", "label_ar": "\u0645\u062a\u0633\u0628\u064a \u0634\u0644\u0645", "mixname_ar": "\u0645\u062a\u0633\u0628\u064a \u0634\u0644\u0645 | <span>\u0627\u0644\u0628\u062d\u0631 \u0627\u0644\u0645\u064a\u062a</span>", "label_en": "Mitzpeh Shalem", "mixname_en": "Mitzpeh Shalem | <span>Dead Sea</span>", "label_ru": "\u041c\u0438\u0446\u043f\u0435 \u0428\u0430\u043b\u0435\u043c", "mixname_ru": "\u041c\u0438\u0446\u043f\u0435 \u0428\u0430\u043b\u0435\u043c | <span>\u041c\u0451\u0440\u0442\u0432\u043e\u0435 \u043c\u043e\u0440\u0435</span>"}, {"value": "D01C20047BFE954A456B146E23505C36", "id": "512", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d9\u05d5\u05d3\u05e4\u05ea", "mixname_he": "\u05d9\u05d5\u05d3\u05e4\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u064a\u0648\u062f\u0641\u062a", "mixname_ar": "\u064a\u0648\u062f\u0641\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Yodfat", "mixname_en": "Yodfat | <span>Center Galilee</span>", "label_ru": "\u0419\u043e\u0434\u0444\u0430\u0442", "mixname_ru": "\u0419\u043e\u0434\u0444\u0430\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "D069F1F20FDEC98329E2BC675A3102C6", "id": "227", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e9\u05d0\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05e9\u05d0\u05df | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0628\u064a\u0633\u0627\u0646", "mixname_ar": "\u0628\u064a\u0633\u0627\u0646 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Beit She'an", "mixname_en": "Beit She'an | <span>Beit She'an Valley</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "D078E6728FD6FD77E4B4986F5DD573A3", "id": "229", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d1\u05d9\u05ea \u05e9\u05e2\u05e8\u05d9\u05dd", "mixname_he": "\u05d1\u05d9\u05ea \u05e9\u05e2\u05e8\u05d9\u05dd | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u064a\u062a \u0634\u0639\u0627\u0631\u064a\u0645", "mixname_ar": "\u0628\u064a\u062a \u0634\u0639\u0627\u0631\u064a\u0645 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Beit Shea'rim", "mixname_en": "Beit Shea'rim | <span>HaAmakim</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u0440\u0438\u043c", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u0440\u0438\u043c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "D0E981F00BCE554CF7B055285E833CD0", "id": "119", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d0\u05dc\u05d9\u05e9\u05de\u05e2", "mixname_he": "\u05d0\u05dc\u05d9\u05e9\u05de\u05e2 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u0644\u064a\u0634\u0645\u0639", "mixname_ar": "\u0623\u0644\u064a\u0634\u0645\u0639 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Elishema", "mixname_en": "Elishema | <span>Sharon</span>", "label_ru": "\u042d\u043b\u0438\u0448\u0435\u043c\u0430", "mixname_ru": "\u042d\u043b\u0438\u0448\u0435\u043c\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "D0F07129061FA2CFEA113EBB29823ED8", "id": "704", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05de\u05d2\u05d3\u05dc \u05d4\u05e2\u05de\u05e7", "mixname_he": "\u05de\u05d2\u05d3\u05dc \u05d4\u05e2\u05de\u05e7 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0645\u062c\u062f\u0627\u0644 \u0647\u0639\u064a\u0645\u0642", "mixname_ar": "\u0645\u062c\u062f\u0627\u0644 \u0647\u0639\u064a\u0645\u0642 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Migdal HaEmek", "mixname_en": "Migdal HaEmek | <span>HaAmakim</span>", "label_ru": "\u041c\u0438\u0433\u0434\u0430\u043b\u044c \u0445\u0430-\u042d\u043c\u0435\u043a", "mixname_ru": "\u041c\u0438\u0433\u0434\u0430\u043b\u044c \u0445\u0430-\u042d\u043c\u0435\u043a | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "D11E76FF3CC0B27C4AB5DBDED49422E7", "id": "746", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0434\u0435\u0440\u043e\u0442", "label_he": "\u05de\u05d9\u05e9\u05e8", "mixname_he": "\u05de\u05d9\u05e9\u05e8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u064a\u0634\u0631", "mixname_ar": "\u0645\u064a\u0634\u0631 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Meishar", "mixname_en": "Meishar | <span>Lachish</span>", "label_ru": "\u041c\u0435\u0439\u0448\u0430\u0440", "mixname_ru": "\u041c\u0435\u0439\u0448\u0430\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "D174C29B90A7C084D2E8EEB0ABAFFC26", "id": "307", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05e9\u05de\u05d5\u05d0\u05dc", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05e9\u05de\u05d5\u05d0\u05dc | <span>\u05d3\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0634\u0645\u0648\u0626\u064a\u0644", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0634\u0645\u0648\u0626\u064a\u0644 | <span>\u062f\u0627\u0646</span>", "label_en": "Givat Shmuel", "mixname_en": "Givat Shmuel | <span>Dan</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0428\u043c\u0443\u044d\u043b\u044c", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0428\u043c\u0443\u044d\u043b\u044c | <span>\u0414\u0430\u043d</span>"}, {"value": "D18678907A722C9E0002E73DABD700DD", "id": "653", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05ea\u05d1\u05d5\u05e8", "mixname_he": "\u05db\u05e4\u05e8 \u05ea\u05d1\u05d5\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062a\u0627\u0628\u0648\u0631", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062a\u0627\u0628\u0648\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Tavor", "mixname_en": "Kfar Tavor | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0422\u0430\u0432\u043e\u0440", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0422\u0430\u0432\u043e\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "D18D5D331B0F19E156A01C4762D4EFDC", "id": "1212", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05e9\u05d3\u05d4 \u05e2\u05d5\u05d6\u05d9\u05d4\u05d5", "mixname_he": "\u05e9\u05d3\u05d4 \u05e2\u05d5\u05d6\u05d9\u05d4\u05d5 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u0639\u0648\u0632\u064a\u0627\u0647\u0648", "mixname_ar": "\u0633\u062f\u064a\u0647 \u0639\u0648\u0632\u064a\u0627\u0647\u0648 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Sdeh Uziahu", "mixname_en": "Sdeh Uziahu | <span>Lachish</span>", "label_ru": "\u0421\u0434\u044d \u0423\u0437\u0438\u044f\u0433\u0443", "mixname_ru": "\u0421\u0434\u044d \u0423\u0437\u0438\u044f\u0433\u0443 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "D204CAA64D7DDC65FADCDD3630417332", "id": "1311", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d6\u05de\u05e8\u05ea, \u05e9\u05d5\u05d1\u05d4", "mixname_he": "\u05d6\u05de\u05e8\u05ea, \u05e9\u05d5\u05d1\u05d4 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0632\u064a\u0645\u0631\u0627\u062a \u0648\u0634\u0648\u0641\u0627", "mixname_ar": "\u0632\u064a\u0645\u0631\u0627\u062a \u0648\u0634\u0648\u0641\u0627 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Zimrat and Shuva", "mixname_en": "Zimrat and Shuva | <span>Gaza Envelope</span>", "label_ru": "\u0417\u0438\u043c\u0440\u0430\u0442 \u0438 \u0428\u0443\u0432\u0430", "mixname_ru": "\u0417\u0438\u043c\u0440\u0430\u0442 \u0438 \u0428\u0443\u0432\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "D237E979815B43FB3ED627F631F4ACC4", "id": "96", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05d0\u05d9\u05ea\u05df", "mixname_he": "\u05d0\u05d9\u05ea\u05df | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u064a\u062a\u0627\u0646", "mixname_ar": "\u0627\u064a\u062a\u0627\u0646 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Eitan", "mixname_en": "Eitan | <span>Lachish</span>", "label_ru": "\u042d\u0439\u0442\u0430\u043d", "mixname_ru": "\u042d\u0439\u0442\u0430\u043d | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "D26661A6BBB00019A43075E58FF88B10", "id": "270", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05d1\u05ea \u05e2\u05d9\u05df", "mixname_he": "\u05d1\u05ea \u05e2\u05d9\u05df | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u0627\u062a \u0639\u0627\u064a\u0646", "mixname_ar": "\u0628\u0627\u062a \u0639\u0627\u064a\u0646 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Bat Ayin", "mixname_en": "Bat Ayin | <span>Yehuda</span>", "label_ru": "\u0411\u0430\u0442 \u0410\u0438\u043d", "mixname_ru": "\u0411\u0430\u0442 \u0410\u0438\u043d | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "D31C673C002642E5AFF253BD5ECCB95A", "id": "266", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05ea-\u05d9\u05dd", "mixname_he": "\u05d1\u05ea-\u05d9\u05dd | <span>\u05d3\u05df</span>", "label_ar": "\u0628\u0627\u062a \u064a\u0627\u0645", "mixname_ar": "\u0628\u0627\u062a \u064a\u0627\u0645 | <span>\u062f\u0627\u0646</span>", "label_en": "Bat Yam", "mixname_en": "Bat Yam | <span>Dan</span>", "label_ru": "\u0411\u0430\u0442-\u042f\u043c", "mixname_ru": "\u0411\u0430\u0442-\u042f\u043c | <span>\u0414\u0430\u043d</span>"}, {"value": "D32F1F7DD47AF01ACB6E96F72B289C33", "id": "757", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05de\u05e0\u05d7\u05ea \u05de\u05d7\u05e0\u05d9\u05d9\u05dd", "mixname_he": "\u05de\u05e0\u05d7\u05ea \u05de\u05d7\u05e0\u05d9\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0645\u0647\u0628\u0637 \u0645\u062d\u0627\u0646\u0627\u064a\u0645", "mixname_ar": "\u0645\u0647\u0628\u0637 \u0645\u062d\u0627\u0646\u0627\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Machanaim landing pad", "mixname_en": "Machanaim landing pad | <span>Upper Galilee</span>", "label_ru": "\u041c\u0430\u0445\u0430\u043d\u0430\u0438\u043c \u043f\u043e\u0441\u0430\u0434\u043e\u0447\u043d\u0430\u044f \u043f\u043b\u043e\u0449\u0430\u0434", "mixname_ru": "\u041c\u0430\u0445\u0430\u043d\u0430\u0438\u043c \u043f\u043e\u0441\u0430\u0434\u043e\u0447\u043d\u0430\u044f \u043f\u043b\u043e\u0449\u0430\u0434 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "D356D8B34789118D6798345ECDAB0117", "id": "1274", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05ea\u05d5\u05de\u05e8", "mixname_he": "\u05ea\u05d5\u05de\u05e8 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u062a\u0648\u0645\u0631", "mixname_ar": "\u062a\u0648\u0645\u0631 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Tomer", "mixname_en": "Tomer | <span>Bika'a</span>", "label_ru": "\u0422\u043e\u043c\u0435\u0440", "mixname_ru": "\u0422\u043e\u043c\u0435\u0440 | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "D37617243931E6EC2D5D826C8035FC6B", "id": "1021", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e2\u05dc\u05de\u05d4", "mixname_he": "\u05e2\u05dc\u05de\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0639\u0644\u0645\u0627\u0647", "mixname_ar": "\u0639\u0644\u0645\u0627\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Alma", "mixname_en": "Alma | <span>Confrontation Line</span>", "label_ru": "\u0410\u043b\u044c\u043c\u0430", "mixname_ru": "\u0410\u043b\u044c\u043c\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "D3AAC037D4343D7ECCAB15B50890D59D", "id": "202", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u0428\u0430\u0440\u043e\u043d", "label_he": "\u05d1\u05d9\u05ea \u05d9\u05d4\u05d5\u05e9\u05e2", "mixname_he": "\u05d1\u05d9\u05ea \u05d9\u05d4\u05d5\u05e9\u05e2 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u064a\u0647\u0648\u0634\u0627\u0639", "mixname_ar": "\u0628\u064a\u062a \u064a\u0647\u0648\u0634\u0627\u0639 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Beit Yehoshua", "mixname_en": "Beit Yehoshua | <span>Sharon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0418\u0435\u0448\u0443\u0430", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0418\u0435\u0448\u0443\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "D3E1A4378D80F98689E7E82A4FF38532", "id": "1310", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "Hof HaSharon Regional Council", "label_he": "\u05d4\u05e8\u05e6\u05dc\u05d9\u05d4 - \u05d2\u05dc\u05d9\u05dc \u05d9\u05dd \u05d5\u05de\u05e8\u05db\u05d6", "mixname_he": "\u05d4\u05e8\u05e6\u05dc\u05d9\u05d4 - \u05d2\u05dc\u05d9\u05dc \u05d9\u05dd \u05d5\u05de\u05e8\u05db\u05d6 | <span>\u05d3\u05df</span>", "label_ar": "\u0648\u062c\u0644\u064a\u0644 \u064a\u0627\u0645", "mixname_ar": "\u0648\u062c\u0644\u064a\u0644 \u064a\u0627\u0645 | <span>\u062f\u0627\u0646</span>", "label_en": "Herzeliya - Glil Yam and Center", "mixname_en": "Herzeliya - Glil Yam and Center | <span>Dan</span>"}, {"value": "D3F5D9EE4B55AC933B3E6D1114B4A2AC", "id": "1117", "areaid": 5, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e7\u05e6\u05e8\u05d9\u05df - \u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4", "mixname_he": "\u05e7\u05e6\u05e8\u05d9\u05df - \u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0643\u0627\u062a\u0633\u0631\u064a\u0646\u00a0\u0627\u0644\u0645\u0646\u0637\u0642\u0629\u00a0\u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629", "mixname_ar": "\u0643\u0627\u062a\u0633\u0631\u064a\u0646\u00a0\u0627\u0644\u0645\u0646\u0637\u0642\u0629\u00a0\u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Katzrin - Industrial Area", "mixname_en": "Katzrin - Industrial Area | <span>South Golan</span>", "label_ru": "\u041a\u0430\u0446\u0440\u0438\u043d - \u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430", "mixname_ru": "\u041a\u0430\u0446\u0440\u0438\u043d - \u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "D417A8B477ED542F29F09D4B9F16216F", "id": "364", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05d3\u05d5\u05d1''\u05d1", "mixname_he": "\u05d3\u05d5\u05d1''\u05d1 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062f\u0648\u0641\u064a\u0641", "mixname_ar": "\u062f\u0648\u0641\u064a\u0641 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Dovev", "mixname_en": "Dovev | <span>Confrontation Line</span>", "label_ru": "\u0414\u043e\u0432\u0435\u0432", "mixname_ru": "\u0414\u043e\u0432\u0435\u0432 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "D41C65366D44D519063E05EDF4F98FBA", "id": "743", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05de\u05d9\u05e6\u05e8", "mixname_he": "\u05de\u05d9\u05e6\u05e8 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0645\u064a\u062a\u0633\u0627\u0631", "mixname_ar": "\u0645\u064a\u062a\u0633\u0627\u0631 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Metzar", "mixname_en": "Metzar | <span>South Golan</span>", "label_ru": "\u041c\u0435\u0446\u0430\u0440", "mixname_ru": "\u041c\u0435\u0446\u0430\u0440 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "D46C17EF62E856288252BFC348F88376", "id": "1088", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e6\u05d9\u05e4\u05d5\u05e8\u05d9", "mixname_he": "\u05e6\u05d9\u05e4\u05d5\u05e8\u05d9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062a\u0633\u064a\u0628\u0648\u0631\u064a", "mixname_ar": "\u062a\u0633\u064a\u0628\u0648\u0631\u064a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Tzippori", "mixname_en": "Tzippori | <span>HaAmakim</span>", "label_ru": "\u0426\u0438\u043f\u043e\u0440\u0438", "mixname_ru": "\u0426\u0438\u043f\u043e\u0440\u0438 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "D472EF9A25825B63970A26E322C407C6", "id": "919", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e0\u05e2\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05e0\u05e2\u05d5\u05e8\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0639\u0648\u0631\u064a\u0645", "mixname_ar": "\u0646\u0639\u0648\u0631\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Neurim", "mixname_en": "Neurim | <span>Sharon</span>", "label_ru": "\u041d\u0435\u0443\u0440\u0438\u043c", "mixname_ru": "\u041d\u0435\u0443\u0440\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "D4DE98BE0AB3A6447FF0FB0544DE9FE9", "id": "461", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05d7\u05e0\u05d9\u05ea\u05d4", "mixname_he": "\u05d7\u05e0\u05d9\u05ea\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062d\u0646\u064a\u062a\u0627", "mixname_ar": "\u062d\u0646\u064a\u062a\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Hanita", "mixname_en": "Hanita | <span>Confrontation Line</span>", "label_ru": "\u0425\u0430\u043d\u0438\u0442\u0430", "mixname_ru": "\u0425\u0430\u043d\u0438\u0442\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "D5158EFC5346333F3624A66E416D0721", "id": "107", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05d0\u05dc\u05d5\u05df \u05e9\u05d1\u05d5\u05ea", "mixname_he": "\u05d0\u05dc\u05d5\u05df \u05e9\u05d1\u05d5\u05ea | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0623\u0644\u0648\u0646 \u0634\u0627\u0628\u0648\u062a", "mixname_ar": "\u0623\u0644\u0648\u0646 \u0634\u0627\u0628\u0648\u062a | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Alon Shvut", "mixname_en": "Alon Shvut | <span>Yehuda</span>", "label_ru": "\u0410\u043b\u043e\u043d \u0428\u0432\u0443\u0442", "mixname_ru": "\u0410\u043b\u043e\u043d \u0428\u0432\u0443\u0442 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "D5E579463AEAC8D983478E7EEDE5BB50", "id": "1156", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e8\u05d7\u05d5\u05d1", "mixname_he": "\u05e8\u05d7\u05d5\u05d1 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0631\u062d\u0648\u0641", "mixname_ar": "\u0631\u062d\u0648\u0641 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Rechov", "mixname_en": "Rechov | <span>Beit She'an Valley</span>", "label_ru": "\u0420\u0435\u0445\u043e\u0432", "mixname_ru": "\u0420\u0435\u0445\u043e\u0432 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "D5FE970E31BEB935BB340E0EBD2B42FB", "id": "427", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d1\u05e8\u05d5\u05df", "mixname_he": "\u05d7\u05d1\u05e8\u05d5\u05df | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0644\u062e\u0644\u064a\u0644", "mixname_ar": "\u0627\u0644\u062e\u0644\u064a\u0644 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Hebron", "mixname_en": "Hebron | <span>Yehuda</span>", "label_ru": "\u0425\u0435\u0432\u0440\u043e\u043d", "mixname_ru": "\u0425\u0435\u0432\u0440\u043e\u043d | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "D638C85BA74F27816CC4EE35AE42A6C2", "id": "1294", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05ea\u05dc\u05de\u05d9 \u05d9\u05e4\u05d4", "mixname_he": "\u05ea\u05dc\u05de\u05d9 \u05d9\u05e4\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u062a\u0644\u0645\u064a \u064a\u0627\u0641\u0647", "mixname_ar": "\u062a\u0644\u0645\u064a \u064a\u0627\u0641\u0647 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Talmei Yaffe", "mixname_en": "Talmei Yaffe | <span>West Lachish</span>", "label_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u042f\u0444\u0430", "mixname_ru": "\u0422\u0430\u043b\u044c\u043c\u0435\u0439 \u042f\u0444\u0430 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "D649B1A94D41F690C6BE852A911304F4", "id": "1029", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e2\u05de\u05e7\u05d4", "mixname_he": "\u05e2\u05de\u05e7\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0639\u0645\u0643\u0627\u0647", "mixname_ar": "\u0639\u0645\u0643\u0627\u0647 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Amka", "mixname_en": "Amka | <span>Upper Galilee</span>", "label_ru": "\u0410\u043c\u043a\u0430", "mixname_ru": "\u0410\u043c\u043a\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "D678EA840E0F277C900BDC195460B32B", "id": "712", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05de\u05d2\u05e8\u05d5\u05df", "mixname_he": "\u05de\u05d2\u05e8\u05d5\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u064a\u062c\u0631\u0648\u0646", "mixname_ar": "\u0645\u064a\u062c\u0631\u0648\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Migron", "mixname_en": "Migron | <span>Shomron</span>", "label_ru": "\u041c\u0438\u0433\u0440\u043e\u043d", "mixname_ru": "\u041c\u0438\u0433\u0440\u043e\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "D714541E72D6DA1211301B48EA64D91D", "id": "273", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d2'\u05d3\u05d9\u05d3\u05d4 \u05de\u05db\u05e8", "mixname_he": "\u05d2'\u05d3\u05d9\u05d3\u05d4 \u05de\u05db\u05e8 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062c\u062f\u064a\u062f\u0629 \u0627\u0644\u0645\u0643\u0631", "mixname_ar": "\u062c\u062f\u064a\u062f\u0629 \u0627\u0644\u0645\u0643\u0631 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Jadeidi-Makr", "mixname_en": "Jadeidi-Makr | <span>Upper Galilee</span>", "label_ru": "\u0414\u0436\u0434\u0435\u0439\u0434\u0430 \u041c\u0430\u043a\u0440", "mixname_ru": "\u0414\u0436\u0434\u0435\u0439\u0434\u0430 \u041c\u0430\u043a\u0440 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "D717548129E8739F3AC6B24C88CC002E", "id": "551", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05d9\u05ea\u05d3", "mixname_he": "\u05d9\u05ea\u05d3 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u064a\u0627\u062a\u062f", "mixname_ar": "\u064a\u0627\u062a\u062f | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Yated", "mixname_en": "Yated | <span>Gaza Envelope</span>", "label_ru": "\u042f\u0442\u0435\u0434", "mixname_ru": "\u042f\u0442\u0435\u0434 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "D73CF24DAC44B22E50017DA3773D89DF", "id": "1150", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e8\u05d5\u05d5\u05d9\u05d4", "mixname_he": "\u05e8\u05d5\u05d5\u05d9\u05d4 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0631\u0648\u064a\u0629", "mixname_ar": "\u0631\u0648\u064a\u0629 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Revaya", "mixname_en": "Revaya | <span>Beit She'an Valley</span>", "label_ru": "\u0420\u0435\u0432\u0430\u044f", "mixname_ru": "\u0420\u0435\u0432\u0430\u044f | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "D788C83EB5977CC5EE81D7E8799F11FB", "id": "1255", "areaid": 5, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e9\u05e2\u05e8 \u05d4\u05d2\u05d5\u05dc\u05df", "mixname_he": "\u05e9\u05e2\u05e8 \u05d4\u05d2\u05d5\u05dc\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0634\u0627\u0639\u0631 \u0647\u062c\u0648\u0644\u0627\u0646", "mixname_ar": "\u0634\u0627\u0639\u0631 \u0647\u062c\u0648\u0644\u0627\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Sha'ar HaGolan", "mixname_en": "Sha'ar HaGolan | <span>South Golan</span>", "label_ru": "\u0428\u0430\u0430\u0440 \u0445\u0430-\u0413\u043e\u043b\u0430\u043d", "mixname_ru": "\u0428\u0430\u0430\u0440 \u0445\u0430-\u0413\u043e\u043b\u0430\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "D78D1BE9F1BFEACCDB7024022D462090", "id": "1219", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e9\u05d3\u05de\u05d5\u05ea \u05d3\u05d1\u05d5\u05e8\u05d4", "mixname_he": "\u05e9\u05d3\u05de\u05d5\u05ea \u05d3\u05d1\u05d5\u05e8\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0634\u062f\u0645\u0648\u062a \u062f\u0641\u0648\u0631\u0627\u0647", "mixname_ar": "\u0634\u062f\u0645\u0648\u062a \u062f\u0641\u0648\u0631\u0627\u0647 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Shadmot Dvora", "mixname_en": "Shadmot Dvora | <span>HaAmakim</span>", "label_ru": "\u0428\u0430\u0434\u043c\u043e\u0442 \u0414\u0432\u043e\u0440\u0430", "mixname_ru": "\u0428\u0430\u0434\u043c\u043e\u0442 \u0414\u0432\u043e\u0440\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "D7F6171D53540731F098BCE20944648E", "id": "695", "areaid": 3, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05d1\u05d5\u05d0\u05d5\u05ea \u05d9\u05e8\u05d9\u05d7\u05d5", "mixname_he": "\u05de\u05d1\u05d5\u05d0\u05d5\u05ea \u05d9\u05e8\u05d9\u05d7\u05d5 | <span>\u05d1\u05e7\u05e2\u05d4</span>", "label_ar": "\u0645\u0641\u0648\u0624\u062a \u064a\u0631\u064a\u062d\u0648", "mixname_ar": "\u0645\u0641\u0648\u0624\u062a \u064a\u0631\u064a\u062d\u0648 | <span>\u0628\u064a\u0643\u0639\u0627</span>", "label_en": "Mevuot Yericho", "mixname_en": "Mevuot Yericho | <span>Bika'a</span>", "label_ru": "\u041c\u0435\u0432\u0443\u043e\u0442 \u0419\u0435\u0440\u0438\u0445\u043e", "mixname_ru": "\u041c\u0435\u0432\u0443\u043e\u0442 \u0419\u0435\u0440\u0438\u0445\u043e | <span>\u0411\u0438\u043a\u044a\u0430</span>"}, {"value": "D84BE500D3394EA207830D50DA4A5297", "id": "880", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e0\u05d7\u05dc \u05e2\u05d5\u05d6", "mixname_he": "\u05e0\u05d7\u05dc \u05e2\u05d5\u05d6 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0646\u0627\u062d\u0644 \u0639\u0648\u0632", "mixname_ar": "\u0646\u0627\u062d\u0644 \u0639\u0648\u0632 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Nachal Oz", "mixname_en": "Nachal Oz | <span>Gaza Envelope</span>", "label_ru": "\u041d\u0430\u0445\u0430\u043b\u044c \u041e\u0437", "mixname_ru": "\u041d\u0430\u0445\u0430\u043b\u044c \u041e\u0437 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "D851F9189D63447E70EC19C0D30E2F99", "id": "179", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05d0\u05e8\u05d9\u05d4", "mixname_he": "\u05d1\u05d9\u05ea \u05d0\u05e8\u05d9\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u0623\u0631\u064a\u0647", "mixname_ar": "\u0628\u064a\u062a \u0623\u0631\u064a\u0647 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Beit Arie", "mixname_en": "Beit Arie | <span>Shomron</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0410\u0440\u044c\u0435", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0410\u0440\u044c\u0435 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "D87CDCB95F0B873CF2B8817EFAE1D57E", "id": "1235", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e9\u05d9\u05d1\u05d5\u05dc\u05d9\u05dd", "mixname_he": "\u05e9\u05d9\u05d1\u05d5\u05dc\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0634\u064a\u0628\u0648\u0644\u064a\u0645", "mixname_ar": "\u0634\u064a\u0628\u0648\u0644\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Shibolim", "mixname_en": "Shibolim | <span>West Negev</span>", "label_ru": "\u0428\u0438\u0431\u043e\u043b\u0438\u043c", "mixname_ru": "\u0428\u0438\u0431\u043e\u043b\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "D888988389ED868E0024D301C163E989", "id": "1233", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e9\u05d7\u05e8", "mixname_he": "\u05e9\u05d7\u05e8 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0634\u0627\u062d\u0627\u0631", "mixname_ar": "\u0634\u0627\u062d\u0627\u0631 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Shachar", "mixname_en": "Shachar | <span>Lachish</span>", "label_ru": "\u0428\u0430\u0445\u0430\u0440", "mixname_ru": "\u0428\u0430\u0445\u0430\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "D8D1FD0AEC33487FC36889F2388D63BB", "id": "1213", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05e9\u05d3\u05d4 \u05e6\u05d1\u05d9", "mixname_he": "\u05e9\u05d3\u05d4 \u05e6\u05d1\u05d9 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u062a\u0633\u0641\u064a", "mixname_ar": "\u0633\u062f\u064a\u0647 \u062a\u0633\u0641\u064a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Sdeh Zvi", "mixname_en": "Sdeh Zvi | <span>West Negev</span>", "label_ru": "\u0421\u0434\u044d \u0426\u0432\u0438", "mixname_ru": "\u0421\u0434\u044d \u0426\u0432\u0438 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "D8DA0110EB1B62DA01798CACA064DBA1", "id": "1040", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05e2\u05e8\u05d5\u05d2\u05d5\u05ea", "mixname_he": "\u05e2\u05e8\u05d5\u05d2\u05d5\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0639\u0631\u0648\u062c\u0648\u062a", "mixname_ar": "\u0639\u0631\u0648\u062c\u0648\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Arugot", "mixname_en": "Arugot | <span>Lachish</span>", "label_ru": "\u0410\u0440\u0443\u0433\u043e\u0442", "mixname_ru": "\u0410\u0440\u0443\u0433\u043e\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "D9020BC3FAA2CDE4282FC961B9F7A5E6", "id": "969", "areaid": 22, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e2\u05d5\u05e6\u05dd", "mixname_he": "\u05e2\u05d5\u05e6\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0639\u0648\u062a\u0633\u0645", "mixname_ar": "\u0639\u0648\u062a\u0633\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Otzem", "mixname_en": "Otzem | <span>Lachish</span>", "label_ru": "\u041e\u0446\u0435\u043c", "mixname_ru": "\u041e\u0446\u0435\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "D906BB0AB81FB2C840F26051F0DF8601", "id": "367", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d3\u05d5\u05e8\u05d5\u05ea", "mixname_he": "\u05d3\u05d5\u05e8\u05d5\u05ea | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u062f\u0648\u0631\u0648\u062a", "mixname_ar": "\u062f\u0648\u0631\u0648\u062a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Dorot", "mixname_en": "Dorot | <span>West Negev</span>", "label_ru": "\u0414\u043e\u0440\u043e\u0442", "mixname_ru": "\u0414\u043e\u0440\u043e\u0442 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "D91AAD76CBB817E75E1CC37BCD28E030", "id": "900", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e0\u05d9\u05e8 \u05d0\u05dc\u05d9\u05d4\u05d5", "mixname_he": "\u05e0\u05d9\u05e8 \u05d0\u05dc\u05d9\u05d4\u05d5 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u064a\u0631 \u0627\u0644\u064a\u0627\u0647\u0648", "mixname_ar": "\u0646\u064a\u0631 \u0627\u0644\u064a\u0627\u0647\u0648 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Nir Eliyahu", "mixname_en": "Nir Eliyahu | <span>Sharon</span>", "label_ru": "\u041d\u0438\u0440 \u042d\u043b\u0438\u044f\u0433\u0443", "mixname_ru": "\u041d\u0438\u0440 \u042d\u043b\u0438\u044f\u0433\u0443 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "D9329C608BED3B33D45AA59840C7536F", "id": "612", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05d7\u05d9\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d7\u05d9\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u062d\u0627\u064a\u064a\u0645", "mixname_ar": "\u0643\u0641\u0631 \u062d\u0627\u064a\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kfar Haim", "mixname_en": "Kfar Haim | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "D943D826817D145BC2A697F223572A9C", "id": "793", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05de\u05e4\u05dc\u05e1\u05d9\u05dd", "mixname_he": "\u05de\u05e4\u05dc\u05e1\u05d9\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0645\u0641\u0644\u0633\u064a\u0645", "mixname_ar": "\u0645\u0641\u0644\u0633\u064a\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Mefalsim", "mixname_en": "Mefalsim | <span>Gaza Envelope</span>", "label_ru": "\u041c\u0435\u0444\u0430\u043b\u0441\u0438\u043c", "mixname_ru": "\u041c\u0435\u0444\u0430\u043b\u0441\u0438\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "D970BC402981ECE4C20E05AC8ECB097F", "id": "335", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05d2\u05df \u05d7\u05d9\u05d9\u05dd", "mixname_he": "\u05d2\u05df \u05d7\u05d9\u05d9\u05dd | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0627\u0646 \u062d\u0627\u064a\u0645", "mixname_ar": "\u062c\u0627\u0646 \u062d\u0627\u064a\u0645 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Gan Haim", "mixname_en": "Gan Haim | <span>Sharon</span>", "label_ru": "\u0413\u0430\u043d \u0425\u0430\u0438\u043c", "mixname_ru": "\u0413\u0430\u043d \u0425\u0430\u0438\u043c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "D9DC4E1901BDDC748B65685678EA1582", "id": "1306", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05ea\u05e8\u05d5\u05dd", "mixname_he": "\u05ea\u05e8\u05d5\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0631\u0648\u0645", "mixname_ar": "\u062a\u0631\u0648\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tarom", "mixname_en": "Tarom | <span>Shfelat Yehuda</span>", "label_ru": "\u0422\u0430\u0440\u043e\u043c", "mixname_ru": "\u0422\u0430\u0440\u043e\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "DA0033D91CA74E4DCE10895495C43372", "id": "319", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d2\u05d6\u05d9\u05ea", "mixname_he": "\u05d2\u05d6\u05d9\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062c\u0632\u064a\u062a", "mixname_ar": "\u062c\u0632\u064a\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Gazit", "mixname_en": "Gazit | <span>HaAmakim</span>", "label_ru": "\u0413\u0430\u0437\u0438\u0442", "mixname_ru": "\u0413\u0430\u0437\u0438\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "DA1FD18AB6E95FD8D287187097390E2A", "id": "1037", "areaid": 23, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05e2\u05e8\u05d1 \u05d0\u05dc-\u05e0\u05e2\u05d9\u05dd", "mixname_he": "\u05e2\u05e8\u05d1 \u05d0\u05dc-\u05e0\u05e2\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0639\u0631\u0628 \u0627\u0644\u0646\u0639\u064a\u0645", "mixname_ar": "\u0639\u0631\u0628 \u0627\u0644\u0646\u0639\u064a\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Arab al Na'im", "mixname_en": "Arab al Na'im | <span>Center Galilee</span>", "label_ru": "\u0410\u0440\u0430\u0431 \u044d\u043b\u044c-\u041d\u0430\u0438\u043c", "mixname_ru": "\u0410\u0440\u0430\u0431 \u044d\u043b\u044c-\u041d\u0430\u0438\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "DA3E3B21AF19732B8B81B034FC1B0758", "id": "851", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05e0\u05d4\u05e8\u05d9\u05d4", "mixname_he": "\u05e0\u05d4\u05e8\u05d9\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0646\u0647\u0627\u0631\u064a\u0627", "mixname_ar": "\u0646\u0647\u0627\u0631\u064a\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Nahariya", "mixname_en": "Nahariya | <span>Confrontation Line</span>", "label_ru": "\u041d\u0430\u0433\u0430\u0440\u0438\u044f", "mixname_ru": "\u041d\u0430\u0433\u0430\u0440\u0438\u044f | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "DA4132754E0C56C8069A6098B59B7E09", "id": "355", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05d2\u05e9\u05e8", "mixname_he": "\u05d2\u05e9\u05e8 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u062c\u064a\u0634\u064a\u0631", "mixname_ar": "\u062c\u064a\u0634\u064a\u0631 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Gesher", "mixname_en": "Gesher | <span>Beit She'an Valley</span>", "label_ru": "\u0413\u0435\u0448\u0435\u0440", "mixname_ru": "\u0413\u0435\u0448\u0435\u0440 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "DA457D92F9D4E9731470477BCA690850", "id": "814", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d9\u05de\u05d9 \u05e7\u05d9\u05e1\u05e8\u05d9\u05d4", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d9\u05de\u05d9 \u05e7\u05d9\u05e1\u05e8\u05d9\u05d4 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0645\u0631\u0643\u0632 \u0628\u062d\u0631\u064a \u0642\u064a\u0633\u0627\u0631\u064a\u0627", "mixname_ar": "\u0645\u0631\u0643\u0632 \u0628\u062d\u0631\u064a \u0642\u064a\u0633\u0627\u0631\u064a\u0627 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Caesarea Marine Center", "mixname_en": "Caesarea Marine Center | <span>Menashe</span>", "label_ru": "\u041c\u043e\u0440\u0441\u043a\u043e\u0439 \u0446\u0435\u043d\u0442\u0440 \u041a\u0435\u0439\u0441\u0430\u0440\u0438\u044f", "mixname_ru": "\u041c\u043e\u0440\u0441\u043a\u043e\u0439 \u0446\u0435\u043d\u0442\u0440 \u041a\u0435\u0439\u0441\u0430\u0440\u0438\u044f | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "DA481BFA896729F8BB099393D4692BC2", "id": "629", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05db\u05e4\u05e8 \u05de\u05dc''\u05dc", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05dc''\u05dc | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0631 \u0645\u0644\u0648\u0644", "mixname_ar": "\u0643\u0641\u0631 \u0645\u0644\u0648\u0644 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Kafr Misr", "mixname_en": "Kafr Misr | <span>Sharon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041c\u0430\u043b\u0430\u043b\u044c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041c\u0430\u043b\u0430\u043b\u044c | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "DB0B018FD7E6AC66F6E60EA09BBD810B", "id": "287", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05d2\u05d1\u05e2\u05d5\u05ea", "mixname_he": "\u05d2\u05d1\u05e2\u05d5\u05ea | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062c\u0641\u0627\u0639\u0648\u062a", "mixname_ar": "\u062c\u0641\u0627\u0639\u0648\u062a | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Gvaot", "mixname_en": "Gvaot | <span>Yehuda</span>", "label_ru": "\u0413\u0432\u0430\u043e\u0442", "mixname_ru": "\u0413\u0432\u0430\u043e\u0442 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "DB0F2C64E75E5C9C282602F999A8F506", "id": "417", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d6\u05db\u05e8\u05d9\u05d4", "mixname_he": "\u05d6\u05db\u05e8\u05d9\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0632\u0643\u0631\u064a\u0627", "mixname_ar": "\u0632\u0643\u0631\u064a\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Zekharia", "mixname_en": "Zekharia | <span>Shfelat Yehuda</span>", "label_ru": "\u0417\u0445\u0430\u0440\u0438\u044f", "mixname_ru": "\u0417\u0445\u0430\u0440\u0438\u044f | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "DB1698DE8E045EAB100C50438E7A7C69", "id": "412", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05d6\u05d1\u05d3\u05d9\u05d0\u05dc", "mixname_he": "\u05d6\u05d1\u05d3\u05d9\u05d0\u05dc | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0632\u0628\u062f\u0626\u064a\u0644", "mixname_ar": "\u0632\u0628\u062f\u0626\u064a\u0644 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Zavdiel", "mixname_en": "Zavdiel | <span>Lachish</span>", "label_ru": "\u0417\u0430\u0432\u0434\u0438\u044d\u043b\u044c", "mixname_ru": "\u0417\u0430\u0432\u0434\u0438\u044d\u043b\u044c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "DBA2186D23F1862BEB2A1C76F1685257", "id": "993", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05e2\u05d9\u05df \u05d4\u05e9\u05d5\u05e4\u05d8", "mixname_he": "\u05e2\u05d9\u05df \u05d4\u05e9\u05d5\u05e4\u05d8 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0639\u064a\u0646 \u0647\u0634\u0648\u0641\u0637", "mixname_ar": "\u0639\u064a\u0646 \u0647\u0634\u0648\u0641\u0637 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Ein HaShofet", "mixname_en": "Ein HaShofet | <span>Wadi Ara</span>", "label_ru": "\u042d\u0439\u043d \u0445\u0430-\u0428\u043e\u0444\u0435\u0442", "mixname_ru": "\u042d\u0439\u043d \u0445\u0430-\u0428\u043e\u0444\u0435\u0442 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "DBB8945ED47B3FF9E434933EC3EF74A9", "id": "758", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05de\u05e0\u05e8\u05d4", "mixname_he": "\u05de\u05e0\u05e8\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0646\u0627\u0631\u0647", "mixname_ar": "\u0645\u0646\u0627\u0631\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Manara", "mixname_en": "Manara | <span>Confrontation Line</span>", "label_ru": "\u041c\u0430\u043d\u0430\u0440\u0430", "mixname_ru": "\u041c\u0430\u043d\u0430\u0440\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "DBC8CE2DCD5E60F976B66FC12285FCD0", "id": "1248", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e9\u05de\u05e9\u05d9\u05ea", "mixname_he": "\u05e9\u05de\u05e9\u05d9\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0634\u0645\u0634\u064a\u062a", "mixname_ar": "\u0634\u0645\u0634\u064a\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Shimshit", "mixname_en": "Shimshit | <span>HaAmakim</span>", "label_ru": "\u0428\u0438\u043c\u0448\u0438\u0442", "mixname_ru": "\u0428\u0438\u043c\u0448\u0438\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "DC1A42D650DABC5E20DAAB691B6394AB", "id": "1002", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e2\u05d9\u05df \u05db\u05de\u05d5\u05e0\u05d9\u05dd", "mixname_he": "\u05e2\u05d9\u05df \u05db\u05de\u05d5\u05e0\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0643\u0645\u0648\u0646\u064a\u0645", "mixname_ar": "\u0639\u064a\u0646 \u0643\u0645\u0648\u0646\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Ein Kamonim", "mixname_en": "Ein Kamonim | <span>Upper Galilee</span>", "label_ru": "\u042d\u0439\u043d \u041a\u0430\u043c\u043e\u043d\u0438\u043c", "mixname_ru": "\u042d\u0439\u043d \u041a\u0430\u043c\u043e\u043d\u0438\u043c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "DC2004B6B89292B402EC48DC4E42CFB5", "id": "848", "areaid": 17, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05e0\u05d2\u05d5\u05d4\u05d5\u05ea", "mixname_he": "\u05e0\u05d2\u05d5\u05d4\u05d5\u05ea | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u062c\u0648\u0647\u0648\u062a", "mixname_ar": "\u0646\u062c\u0648\u0647\u0648\u062a | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Negohot", "mixname_en": "Negohot | <span>Yehuda</span>", "label_ru": "\u041d\u0435\u0433\u043e\u0445\u043e\u0442", "mixname_ru": "\u041d\u0435\u0433\u043e\u0445\u043e\u0442 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "DC2420DCD9342C3CFD562A5076594B45", "id": "234", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042f\u0432\u043d\u0435", "label_he": "\u05d1\u05df \u05d6\u05db\u05d0\u05d9", "mixname_he": "\u05d1\u05df \u05d6\u05db\u05d0\u05d9 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0646 \u0632\u0643\u0627\u064a", "mixname_ar": "\u0628\u0646 \u0632\u0643\u0627\u064a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ben Zakai", "mixname_en": "Ben Zakai | <span>Lachish</span>", "label_ru": "\u0411\u0435\u043d \u0417\u0430\u043a\u0430\u0439", "mixname_ru": "\u0411\u0435\u043d \u0417\u0430\u043a\u0430\u0439 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "DC2C137708584410079109C4A388B3FD", "id": "1216", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e9\u05d3\u05d9 \u05d7\u05de\u05d3", "mixname_he": "\u05e9\u05d3\u05d9 \u05d7\u05de\u05d3 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0633\u062f\u064a\u0647 \u062d\u064a\u0645\u062f", "mixname_ar": "\u0633\u062f\u064a\u0647 \u062d\u064a\u0645\u062f | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Sdei Hemed", "mixname_en": "Sdei Hemed | <span>Sharon</span>", "label_ru": "\u0421\u0434\u0435\u0439 \u0425\u0435\u043c\u0435\u0434", "mixname_ru": "\u0421\u0434\u0435\u0439 \u0425\u0435\u043c\u0435\u0434 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "DC2D603B359A98DBADEDB4211D885AAC", "id": "537", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d9\u05e7\u05d9\u05e8", "mixname_he": "\u05d9\u05e7\u05d9\u05e8 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u064a\u0643\u064a\u0631", "mixname_ar": "\u064a\u0643\u064a\u0631 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Yakir", "mixname_en": "Yakir | <span>Shomron</span>", "label_ru": "\u042f\u043a\u0438\u0440", "mixname_ru": "\u042f\u043a\u0438\u0440 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "DC5438E817DA7511F05C47520F9F6B92", "id": "1134", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e7\u05e9\u05ea", "mixname_he": "\u05e7\u05e9\u05ea | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0643\u064a\u0634\u062a", "mixname_ar": "\u0643\u064a\u0634\u062a | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Keshet", "mixname_en": "Keshet | <span>South Golan</span>", "label_ru": "\u041a\u0435\u0448\u0435\u0442", "mixname_ru": "\u041a\u0435\u0448\u0435\u0442 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "DCA291453B5CB4245D4D370C1C3BCB39", "id": "50", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d4\u05d3\u05e8\u05d5\u05de\u05d9 \u05d0\u05e9\u05e7\u05dc\u05d5\u05df", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d4\u05d3\u05e8\u05d5\u05de\u05d9 \u05d0\u05e9\u05e7\u05dc\u05d5\u05df | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Ashkelon Southern Industrial Zone", "mixname_en": "Ashkelon Southern Industrial Zone | <span>West Lachish</span>", "label_ru": "\u042e\u0436\u043d\u0430\u044f \u043f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0448\u043a\u0435\u043b\u043e\u043d\u0430", "mixname_ru": "\u042e\u0436\u043d\u0430\u044f \u043f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0410\u0448\u043a\u0435\u043b\u043e\u043d\u0430 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "DCCE424B45065485FCB0B6B4EDE004DA", "id": "1180", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e8\u05de\u05ea \u05de\u05d2\u05e9\u05d9\u05de\u05d9\u05dd", "mixname_he": "\u05e8\u05de\u05ea \u05de\u05d2\u05e9\u05d9\u05de\u05d9\u05dd | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0631\u0645\u0627\u062a \u0645\u062c\u0634\u064a\u0645\u064a\u0645", "mixname_ar": "\u0631\u0645\u0627\u062a \u0645\u062c\u0634\u064a\u0645\u064a\u0645 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Ramat Magshimim", "mixname_en": "Ramat Magshimim | <span>South Golan</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u041c\u0430\u0433\u0448\u0438\u043c\u0438\u043c", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u041c\u0430\u0433\u0448\u0438\u043c\u0438\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "DD418334D4E67376249FDF1ECB64D16F", "id": "352", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05d2\u05e4\u05df", "mixname_he": "\u05d2\u05e4\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062c\u0641\u0646", "mixname_ar": "\u062c\u0641\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Geffen", "mixname_en": "Geffen | <span>Shfelat Yehuda</span>", "label_ru": "\u0413\u0435\u0444\u0435\u043d", "mixname_ru": "\u0413\u0435\u0444\u0435\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "DD45D8754FD70ECAFB2C84CE712AF337", "id": "884", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05d7\u05dd", "mixname_he": "\u05e0\u05d7\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0648\u062d\u0645", "mixname_ar": "\u0646\u0648\u062d\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Naham", "mixname_en": "Naham | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0430\u0445\u0430\u043c", "mixname_ru": "\u041d\u0430\u0445\u0430\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "DD5CB9571EF90601E4AB9A28B0ECE4B4", "id": "123", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0443\u0448-\u042d\u0446\u0438\u043e\u043d", "label_he": "\u05d0\u05dc\u05e2\u05d6\u05e8", "mixname_he": "\u05d0\u05dc\u05e2\u05d6\u05e8 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0627\u0644\u0639\u064a\u0632\u0631", "mixname_ar": "\u0627\u0644\u0639\u064a\u0632\u0631 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Elazar", "mixname_en": "Elazar | <span>Yehuda</span>", "label_ru": "\u042d\u043b\u044c\u0430\u0437\u0430\u0440", "mixname_ru": "\u042d\u043b\u044c\u0430\u0437\u0430\u0440 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "DD70990BEAE162DB2FB08589ECD2481E", "id": "858", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e0\u05d5\u05d4 \u05d0\u05d9\u05ea\u05df", "mixname_he": "\u05e0\u05d5\u05d4 \u05d0\u05d9\u05ea\u05df | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0625\u064a\u062a\u0627\u0646", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0625\u064a\u062a\u0627\u0646 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Neveh Eitan", "mixname_en": "Neveh Eitan | <span>Beit She'an Valley</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u042d\u0439\u0442\u0430\u043d", "mixname_ru": "\u041d\u0435\u0432\u0435 \u042d\u0439\u0442\u0430\u043d | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "DD97AB446EAB61E640E5AD90A715BD98", "id": "204", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05d9\u05e0\u05d0\u05d9", "mixname_he": "\u05d1\u05d9\u05ea \u05d9\u05e0\u05d0\u05d9 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u064a\u0646\u0627\u064a", "mixname_ar": "\u0628\u064a\u062a \u064a\u0646\u0627\u064a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Beit Yannai", "mixname_en": "Beit Yannai | <span>Sharon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u042f\u043d\u043d\u0430\u0439", "mixname_ru": "\u0411\u0435\u0439\u0442 \u042f\u043d\u043d\u0430\u0439 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "DDA93D16113BE0E2DB32C004576CDA91", "id": "936", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e1\u05d0\u05e1\u05d0", "mixname_he": "\u05e1\u05d0\u05e1\u05d0 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0633\u0639\u0633\u0639", "mixname_ar": "\u0633\u0639\u0633\u0639 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Sassa", "mixname_en": "Sassa | <span>Confrontation Line</span>", "label_ru": "\u0421\u0430\u0441\u0430", "mixname_ru": "\u0421\u0430\u0441\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "DDB4AF8C1D5FB93DB05F90D91DC5521D", "id": "748", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05db\u05d5\u05df \u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8", "mixname_he": "\u05de\u05db\u05d5\u05df \u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0639\u0647\u062f \u0641\u064a\u0646\u062c\u064a\u062a", "mixname_ar": "\u0645\u0639\u0647\u062f \u0641\u064a\u0646\u062c\u064a\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Wingate Institute", "mixname_en": "Wingate Institute | <span>Sharon</span>", "label_ru": "\u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0412\u0438\u043d\u0433\u0435\u0439\u0442", "mixname_ru": "\u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0412\u0438\u043d\u0433\u0435\u0439\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "DDF990CB174151C0A05FF800C20B4357", "id": "1324", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d9\u05e2\u05dc", "mixname_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d9\u05e2\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u0644\u062f\u0627\u0646 \u064a\u0627\u0639\u064a\u0644", "mixname_ar": "\u0628\u0644\u062f\u0627\u0646 \u064a\u0627\u0639\u064a\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Yael Settlements", "mixname_en": "Yael Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u042f\u044d\u043b\u044c", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u042f\u044d\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "DDFABF967545B84D94ED89E028E9AD9F", "id": "891", "areaid": 17, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05e0\u05d8\u05e2", "mixname_he": "\u05e0\u05d8\u05e2 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u064a\u0637\u0639", "mixname_ar": "\u0646\u064a\u0637\u0639 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Neta", "mixname_en": "Neta | <span>Yehuda</span>", "label_ru": "\u041d\u0435\u0442\u0430", "mixname_ru": "\u041d\u0435\u0442\u0430 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "DDFEBCC9907993A2D6324B31D06450F8", "id": "590", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05db\u05e4\u05e8 \u05d2\u05d3\u05e2\u05d5\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05d2\u05d3\u05e2\u05d5\u05df | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062c\u062f\u0639\u0648\u0646", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062c\u062f\u0639\u0648\u0646 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Gidon", "mixname_en": "Kfar Gidon | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0413\u0438\u0434\u043e\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0413\u0438\u0434\u043e\u043d | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "DE273D47BDC183110E7663734577489C", "id": "529", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d9\u05e2\u05e8\u05d5\u05ea \u05d4\u05db\u05e8\u05de\u05dc", "mixname_he": "\u05d9\u05e2\u05e8\u05d5\u05ea \u05d4\u05db\u05e8\u05de\u05dc | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u063a\u0627\u0628\u0627\u062a \u0627\u0644\u0643\u0631\u0645\u0644", "mixname_ar": "\u063a\u0627\u0628\u0627\u062a \u0627\u0644\u0643\u0631\u0645\u0644 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Yearot HaCarmel", "mixname_en": "Yearot HaCarmel | <span>HaCarmel</span>", "label_ru": "\u042f\u0430\u0440\u043e\u0442 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "mixname_ru": "\u042f\u0430\u0440\u043e\u0442 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "DE32BFA6EDA62E91514BA84451DE6A33", "id": "526", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05d9\u05e2\u05d3", "mixname_he": "\u05d9\u05e2\u05d3 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u064a\u0627\u0639\u062f", "mixname_ar": "\u064a\u0627\u0639\u062f | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Ya'ad", "mixname_en": "Ya'ad | <span>Center Galilee</span>", "label_ru": "\u042f\u0430\u0434", "mixname_ru": "\u042f\u0430\u0434 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "DE6B0F7021AC08ECB12A1A400502B26F", "id": "729", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0441\u0433\u0430\u0432", "label_he": "\u05de\u05d5\u05e8\u05df", "mixname_he": "\u05de\u05d5\u05e8\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0645\u0648\u0631\u0627\u0646", "mixname_ar": "\u0645\u0648\u0631\u0627\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Moran", "mixname_en": "Moran | <span>Center Galilee</span>", "label_ru": "\u041c\u043e\u0440\u0430\u043d", "mixname_ru": "\u041c\u043e\u0440\u0430\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "DEC43494FD29975EF7A1C052F7751A69", "id": "263", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05d1\u05e8\u05e7\u05d0\u05d9", "mixname_he": "\u05d1\u05e8\u05e7\u05d0\u05d9 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0628\u0631\u0643\u0627\u064a", "mixname_ar": "\u0628\u0631\u0643\u0627\u064a | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Barkai", "mixname_en": "Barkai | <span>Menashe</span>", "label_ru": "\u0411\u0430\u0440\u043a\u0430\u0439", "mixname_ru": "\u0411\u0430\u0440\u043a\u0430\u0439 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "DED0EC810C9C2D5AFA5889FE18F06575", "id": "169", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d7\u05df", "mixname_he": "\u05d1\u05d7\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0644\u062f\u0629 \u0628\u0648\u062d\u0646", "mixname_ar": "\u0628\u0644\u062f\u0629 \u0628\u0648\u062d\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Bahan", "mixname_en": "Bahan | <span>Sharon</span>", "label_ru": "\u0411\u0430\u0445\u0430\u043d", "mixname_ru": "\u0411\u0430\u0445\u0430\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "DF10C1F5145E2D499D529ED31C7FC5F1", "id": "1052", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e4\u05d5\u05e8\u05d9\u05d4 \u05db\u05e4\u05e8 \u05e2\u05d1\u05d5\u05d3\u05d4", "mixname_he": "\u05e4\u05d5\u05e8\u05d9\u05d4 \u05db\u05e4\u05e8 \u05e2\u05d1\u05d5\u05d3\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0628\u0648\u0631\u064a\u0627 \u0643\u0641\u0627\u0631 \u0639\u0641\u0648\u062f\u0627\u0647", "mixname_ar": "\u0628\u0648\u0631\u064a\u0627 \u0643\u0641\u0627\u0631 \u0639\u0641\u0648\u062f\u0627\u0647 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Poria - Kfar Avoda", "mixname_en": "Poria - Kfar Avoda | <span>Lower Galilee</span>", "label_ru": "\u041f\u043e\u0440\u0438\u044f \u041a\u0444\u0430\u0440 \u0410\u0432\u043e\u0434\u0430", "mixname_ru": "\u041f\u043e\u0440\u0438\u044f \u041a\u0444\u0430\u0440 \u0410\u0432\u043e\u0434\u0430 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "DF518BC33CF32704C5D65559FC9BEDFA", "id": "1160", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05e8\u05d9\u05d7\u05d0\u05e0\u05d9\u05d9\u05d4", "mixname_he": "\u05e8\u05d9\u05d7\u05d0\u05e0\u05d9\u05d9\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0631\u064a\u062d\u0627\u0646\u064a\u0647", "mixname_ar": "\u0631\u064a\u062d\u0627\u0646\u064a\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Rehaniya", "mixname_en": "Rehaniya | <span>Confrontation Line</span>", "label_ru": "\u0420\u0435\u0445\u0430\u043d\u0438\u044f", "mixname_ru": "\u0420\u0435\u0445\u0430\u043d\u0438\u044f | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "DF99EB93B2C749D0B149BC6E617514C9", "id": "745", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05de\u05d9\u05e8\u05d5\u05df", "mixname_he": "\u05de\u05d9\u05e8\u05d5\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0645\u064a\u0631\u0648\u0646", "mixname_ar": "\u0645\u064a\u0631\u0648\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Meron", "mixname_en": "Meron | <span>Upper Galilee</span>", "label_ru": "\u041c\u0435\u0440\u043e\u043d", "mixname_ru": "\u041c\u0435\u0440\u043e\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "DFC0C698A54E2D452A14D1DEDBBCA9F0", "id": "6012", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d7\u05d3\u05e8\u05d4 - \u05de\u05e8\u05db\u05d6", "mixname_he": "\u05d7\u05d3\u05e8\u05d4 - \u05e0\u05d5\u05d5\u05d4 \u05d7\u05d9\u05d9\u05dd | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062e\u0636\u064a\u0631\u0629- \u0645\u0631\u0643\u0632", "mixname_ar": "\u062e\u0636\u064a\u0631\u0629- \u0645\u0631\u0643\u0632 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Hadera - West", "mixname_en": "Hadera - West | <span>Menashe</span>", "label_ru": "\u0425\u0430\u0434\u0435\u0440\u0430 - \u0446\u0435\u043d\u0442\u0440", "mixname_ru": "\u0425\u0430\u0434\u0435\u0440\u0430 - \u0446\u0435\u043d\u0442\u0440 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "DFCFFACA72B7D9E189AEE681AD3E242A", "id": "207", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d1\u05d9\u05ea \u05dc\u05d7\u05dd \u05d4\u05d2\u05dc\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05d1\u05d9\u05ea \u05dc\u05d7\u05dd \u05d4\u05d2\u05dc\u05d9\u05dc\u05d9\u05ea | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u064a\u062a \u0644\u064a\u062d\u0645 \u0647\u062c\u0644\u064a\u0644\u064a\u062a", "mixname_ar": "\u0628\u064a\u062a \u0644\u064a\u062d\u0645 \u0647\u062c\u0644\u064a\u0644\u064a\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Bethlehem of Galilee", "mixname_en": "Bethlehem of Galilee | <span>HaAmakim</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u041b\u0435\u0445\u0435\u043c \u0445\u0430-\u0413\u043b\u0438\u043b\u0438\u0442", "mixname_ru": "\u0411\u0435\u0439\u0442 \u041b\u0435\u0445\u0435\u043c \u0445\u0430-\u0413\u043b\u0438\u043b\u0438\u0442 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "DFFA2FD659DD86C0C962032E7A0DA324", "id": "1070", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e4\u05e8\u05d9 \u05d2\u05df", "mixname_he": "\u05e4\u05e8\u05d9 \u05d2\u05df | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0628\u0631\u064a \u062c\u0627\u0646", "mixname_ar": "\u0628\u0631\u064a \u062c\u0627\u0646 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Pri Gan", "mixname_en": "Pri Gan | <span>Gaza Envelope</span>", "label_ru": "\u041f\u0440\u0438 \u0413\u0430\u043d", "mixname_ru": "\u041f\u0440\u0438 \u0413\u0430\u043d | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "E00EFE0CFD370C81A6FB80C6ADE84DA8", "id": "1076", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05e6\u05d5\u05d7\u05e8, \u05d0\u05d5\u05d4\u05d3", "mixname_he": "\u05e6\u05d5\u05d7\u05e8, \u05d0\u05d5\u05d4\u05d3 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u062a\u0633\u0648\u062d\u0627\u0631 \u0648\u0627\u0648\u0647\u0627\u062f", "mixname_ar": "\u062a\u0633\u0648\u062d\u0627\u0631 \u0648\u0627\u0648\u0647\u0627\u062f | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Tzohar and Ohad", "mixname_en": "Tzohar and Ohad | <span>Gaza Envelope</span>", "label_ru": "\u0426\u043e\u0445\u0430\u0440 \u0438 \u041e\u0445\u0430\u0434", "mixname_ru": "\u0426\u043e\u0445\u0430\u0440 \u0438 \u041e\u0445\u0430\u0434 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "E02B006AAD5FA67971E1F65D89BACC66", "id": "1330", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "Gilboa Regional Council", "label_he": "\u05de\u05dc\u05d0\u05d4", "mixname_he": "\u05de\u05dc\u05d0\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_en": "Mle'a", "mixname_en": "Mle'a | <span>HaAmakim</span>"}, {"value": "E0585E86E49C7F807011894C6CAA5283", "id": "996", "areaid": 2, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05e2\u05d9\u05df \u05d6\u05d9\u05d5\u05d5\u05df", "mixname_he": "\u05e2\u05d9\u05df \u05d6\u05d9\u05d5\u05d5\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05e6\u05e4\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0632\u064a\u0641\u0627\u0646", "mixname_ar": "\u0639\u064a\u0646 \u0632\u064a\u0641\u0627\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u0634\u0645\u0627\u0644\u064a</span>", "label_en": "Ein Zivan", "mixname_en": "Ein Zivan | <span>North Golan</span>", "label_ru": "\u042d\u0439\u043d \u0417\u0438\u0432\u0430\u043d", "mixname_ru": "\u042d\u0439\u043d \u0417\u0438\u0432\u0430\u043d | <span>\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "E155BBEF222D9C59BB145993B70D5889", "id": "897", "areaid": 9, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e0\u05d9\u05e6\u05e0\u05d4", "mixname_he": "\u05e0\u05d9\u05e6\u05e0\u05d4 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0646\u064a\u062a\u0633\u0627\u0646\u0647", "mixname_ar": "\u0646\u064a\u062a\u0633\u0627\u0646\u0647 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Nitzana", "mixname_en": "Nitzana | <span>South Negev</span>", "label_ru": "\u041d\u0438\u0446\u0430\u043d\u0430", "mixname_ru": "\u041d\u0438\u0446\u0430\u043d\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "E19DB8AEB08DE5812C8935569FF80BCC", "id": "660", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05db\u05e8\u05dd \u05de\u05d4\u05e8''\u05dc", "mixname_he": "\u05db\u05e8\u05dd \u05de\u05d4\u05e8''\u05dc | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0643\u0631\u0645 \u0645\u0647\u0631\u0627\u0644", "mixname_ar": "\u0643\u0631\u0645 \u0645\u0647\u0631\u0627\u0644 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Kerem Maharal", "mixname_en": "Kerem Maharal | <span>HaCarmel</span>", "label_ru": "\u041a\u0435\u0440\u0435\u043c \u041c\u0430\u0445\u0430\u0440\u0430\u043b", "mixname_ru": "\u041a\u0435\u0440\u0435\u043c \u041c\u0430\u0445\u0430\u0440\u0430\u043b | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "E19DC09B2BA102685165B8DA8628FC7D", "id": "544", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d9\u05e8\u05db\u05d0", "mixname_he": "\u05d9\u05e8\u05db\u05d0 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u064a\u0631\u0643\u0627", "mixname_ar": "\u064a\u0631\u0643\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Yarka", "mixname_en": "Yarka | <span>Upper Galilee</span>", "label_ru": "\u042f\u0440\u043a\u0430", "mixname_ru": "\u042f\u0440\u043a\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "E1C83E11BDF1BE4D5578C4571FE2DE86", "id": "71", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e8\u05d2\u05d1\u05d9\u05dd", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e8\u05d2\u05d1\u05d9\u05dd | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0631\u062c\u0627\u0641\u064a\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0631\u062c\u0627\u0641\u064a\u0645 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Regavim Industrial Zone", "mixname_en": "Regavim Industrial Zone | <span>Menashe</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0420\u0435\u0433\u0430\u0432\u0438\u043c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0420\u0435\u0433\u0430\u0432\u0438\u043c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "E24E760C823BD7AE163D60807C590786", "id": "1365", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d3\u05d5\u05e8\u05d9\u05d9\u05dd", "mixname_he": "\u05d0\u05d3\u05d5\u05e8\u05d9\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0623\u062f\u0648\u0631\u0627\u064a\u0645", "mixname_ar": "\u0623\u062f\u0648\u0631\u0627\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Adorayim", "mixname_en": "Adorayim | <span>Yehuda</span>", "label_ru": "\u0410\u0434\u043e\u0440\u0430\u0438\u043c", "mixname_ru": "\u0410\u0434\u043e\u0440\u0430\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "E273AF0BA7747A798B83AAB48A904A49", "id": "678", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05dc\u05d5\u05d6\u05d9\u05ea", "mixname_he": "\u05dc\u05d5\u05d6\u05d9\u05ea | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0644\u0648\u0632\u064a\u062a", "mixname_ar": "\u0644\u0648\u0632\u064a\u062a | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Luzit", "mixname_en": "Luzit | <span>Shfelat Yehuda</span>", "label_ru": "\u041b\u0443\u0437\u0438\u0442", "mixname_ru": "\u041b\u0443\u0437\u0438\u0442 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "E293E7B018B1D7303294B2D78E873FD6", "id": "308", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05e9\u05e4\u05d9\u05e8\u05d0", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05e9\u05e4\u05d9\u05e8\u05d0 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0634\u0641\u064a\u0631\u0627", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0634\u0641\u064a\u0631\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Givat Shapira", "mixname_en": "Givat Shapira | <span>Sharon</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0428\u0430\u043f\u0438\u0440\u0430", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0428\u0430\u043f\u0438\u0440\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "E2A3FDF2138D67C621F12F2DBC44CA4D", "id": "928", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e0\u05e8\u05d9\u05d4", "mixname_he": "\u05e0\u05e8\u05d9\u05d4 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0631\u064a\u0627", "mixname_ar": "\u0646\u0631\u064a\u0627 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Neria", "mixname_en": "Neria | <span>Shomron</span>", "label_ru": "\u041d\u0435\u0440\u0438\u044f", "mixname_ru": "\u041d\u0435\u0440\u0438\u044f | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "E2EABC088363FC1EE95087CA30DC7802", "id": "1218", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0434\u0435\u0440\u043e\u0442", "label_he": "\u05e9\u05d3\u05de\u05d4", "mixname_he": "\u05e9\u05d3\u05de\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0634\u062f\u0645\u0627\u0647", "mixname_ar": "\u0634\u062f\u0645\u0627\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Shdema", "mixname_en": "Shdema | <span>Lachish</span>", "label_ru": "\u0428\u0434\u0435\u043c\u0430", "mixname_ru": "\u0428\u0434\u0435\u043c\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "E3098BADE7110EB50CDCEFC7D9292B34", "id": "834", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05de\u05ea\u05d7\u05dd \u05d1\u05e0\u05d9 \u05d3\u05e8\u05d5\u05dd", "mixname_he": "\u05de\u05ea\u05d7\u05dd \u05d1\u05e0\u05d9 \u05d3\u05e8\u05d5\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0645\u062c\u0645\u0639 \u0628\u0646\u064a \u062f\u0631\u0648\u0645", "mixname_ar": "\u0645\u062c\u0645\u0639 \u0628\u0646\u064a \u062f\u0631\u0648\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Bnei Darom Compound", "mixname_en": "Bnei Darom Compound | <span>Lachish</span>", "label_ru": "\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0411\u043d\u0435\u0439 \u0414\u0440\u043e\u0440", "mixname_ru": "\u0423\u0447\u0430\u0441\u0442\u043e\u043a \u0411\u043d\u0435\u0439 \u0414\u0440\u043e\u0440 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "E32BDF20DCE3EE34D3FAB76176623081", "id": "755", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05de\u05e0\u05d5\u05ea", "mixname_he": "\u05de\u05e0\u05d5\u05ea | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0627\u0646\u0648\u062a", "mixname_ar": "\u0645\u0627\u0646\u0648\u062a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Manot", "mixname_en": "Manot | <span>Confrontation Line</span>", "label_ru": "\u041c\u0430\u043d\u043e\u0442", "mixname_ru": "\u041c\u0430\u043d\u043e\u0442 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "E32C35D1EF0415575F9328BF833B5D43", "id": "668", "areaid": 25, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e8\u05de\u05d9\u05ea", "mixname_he": "\u05db\u05e8\u05de\u05d9\u05ea | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0643\u0631\u0645\u064a\u062a", "mixname_ar": "\u0643\u0631\u0645\u064a\u062a | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Carmit", "mixname_en": "Carmit | <span>Center Negev</span>", "label_ru": "\u041a\u0430\u0440\u043c\u0438\u0442", "mixname_ru": "\u041a\u0430\u0440\u043c\u0438\u0442 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "E335DB11E5026E4B8FD19FD68FC676DB", "id": "845", "areaid": 25, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05e0\u05d1\u05d8\u05d9\u05dd", "mixname_he": "\u05e0\u05d1\u05d8\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0646\u0641\u0627\u062a\u064a\u0645", "mixname_ar": "\u0646\u0641\u0627\u062a\u064a\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Nevatim", "mixname_en": "Nevatim | <span>Center Negev</span>", "label_ru": "\u041d\u0435\u0432\u0430\u0442\u0438\u043c", "mixname_ru": "\u041d\u0435\u0432\u0430\u0442\u0438\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "E389BBDDAB1E9A1F6C05B9E3A18001A2", "id": "213", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05de\u05d2\u05d9\u05d3\u05d5", "mixname_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05de\u05d2\u05d9\u05d3\u05d5 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0633\u062c\u0646 \u0645\u062c\u062f\u0648", "mixname_ar": "\u0633\u062c\u0646 \u0645\u062c\u062f\u0648 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Megiddo Prison", "mixname_en": "Megiddo Prison | <span>Wadi Ara</span>", "label_ru": "\u0422\u044e\u0440\u043c\u0430 \u041c\u0430\u0433\u0438\u0434\u043e", "mixname_ru": "\u0422\u044e\u0440\u043c\u0430 \u041c\u0430\u0433\u0438\u0434\u043e | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "E3920105EB8195AC6F84FF7718BA18DA", "id": "873", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e0\u05d5\u05e4\u05d9\u05dd", "mixname_he": "\u05e0\u05d5\u05e4\u05d9\u05dd | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0646\u0648\u0641\u064a\u0645", "mixname_ar": "\u0646\u0648\u0641\u064a\u0645 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Nofim", "mixname_en": "Nofim | <span>Shomron</span>", "label_ru": "\u041d\u043e\u0444\u0438\u043c", "mixname_ru": "\u041d\u043e\u0444\u0438\u043c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "E41326E88F0D9B59B49FC8D9AB396680", "id": "540", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d9\u05e8\u05d0\u05d5\u05df", "mixname_he": "\u05d9\u05e8\u05d0\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u064a\u0631\u0626\u0648\u0646", "mixname_ar": "\u064a\u0631\u0626\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Yir'on", "mixname_en": "Yir'on | <span>Confrontation Line</span>", "label_ru": "\u0418\u0440\u043e\u043d", "mixname_ru": "\u0418\u0440\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "E47C5442681FC2F226B1A58B65F29480", "id": "959", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e2\u05d2\u05d5\u05e8", "mixname_he": "\u05e2\u05d2\u05d5\u05e8 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0639\u0627\u062c\u0648\u0631", "mixname_ar": "\u0639\u0627\u062c\u0648\u0631 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Agur", "mixname_en": "Agur | <span>Shfelat Yehuda</span>", "label_ru": "\u0410\u0433\u0443\u0440", "mixname_ru": "\u0410\u0433\u0443\u0440 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "E4A5E7BB3CCE3BB495FEC32A1C6653C7", "id": "555", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05db\u05d3\u05d5\u05e8\u05d9", "mixname_he": "\u05db\u05d3\u05d5\u05e8\u05d9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0627\u062f\u0648\u0631\u064a", "mixname_ar": "\u0643\u0627\u062f\u0648\u0631\u064a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kadoorie", "mixname_en": "Kadoorie | <span>HaAmakim</span>", "label_ru": "\u041a\u0430\u0434\u0443\u0440\u0438", "mixname_ru": "\u041a\u0430\u0434\u0443\u0440\u0438 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "E57EFC08189D60BB5E86E3F2799C7FD1", "id": "566", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05db\u05d9\u05e1\u05d5\u05e4\u05d9\u05dd", "mixname_he": "\u05db\u05d9\u05e1\u05d5\u05e4\u05d9\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0643\u064a\u0633\u0648\u0641\u064a\u0645", "mixname_ar": "\u0643\u064a\u0633\u0648\u0641\u064a\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Kissufim", "mixname_en": "Kissufim | <span>Gaza Envelope</span>", "label_ru": "\u041a\u0438\u0441\u0443\u0444\u0438\u043c", "mixname_ru": "\u041a\u0438\u0441\u0443\u0444\u0438\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "E5F98D78FDE5AF0452B626DB5D18A35B", "id": "425", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05d7'\u05d5\u05d5\u05d0\u05dc\u05d3", "mixname_he": "\u05d7'\u05d5\u05d5\u05d0\u05dc\u05d3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062e\u0648\u0627\u0644\u062f", "mixname_ar": "\u062e\u0648\u0627\u0644\u062f | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Khawaled", "mixname_en": "Khawaled | <span>HaAmakim</span>", "label_ru": "\u0425\u0430\u0432\u0430\u043b\u0435\u0434", "mixname_ru": "\u0425\u0430\u0432\u0430\u043b\u0435\u0434 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "E6495AEBFDA7A8FBE3D230DC565271F5", "id": "872", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e0\u05d5\u05e4\u05d9 \u05e4\u05e8\u05ea", "mixname_he": "\u05e0\u05d5\u05e4\u05d9 \u05e4\u05e8\u05ea | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0648\u0641\u064a \u0641\u0631\u062a", "mixname_ar": "\u0646\u0648\u0641\u064a \u0641\u0631\u062a | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Nofei Prat", "mixname_en": "Nofei Prat | <span>Yehuda</span>", "label_ru": "\u041d\u043e\u0444\u0435\u0439 \u041f\u043e\u0440\u0430\u0442", "mixname_ru": "\u041d\u043e\u0444\u0435\u0439 \u041f\u043e\u0440\u0430\u0442 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "E6D730D6DA262BF00327B2CB8B5CC7F5", "id": "961", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e2\u05d3\u05d9 \u05e2\u05d3", "mixname_he": "\u05e2\u05d3\u05d9 \u05e2\u05d3 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u062f\u064a \u0639\u062f", "mixname_ar": "\u0639\u062f\u064a \u0639\u062f | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Adei Ad", "mixname_en": "Adei Ad | <span>Shomron</span>", "label_ru": "\u0410\u0434\u0435\u0439 \u0410\u0434", "mixname_ru": "\u0410\u0434\u0435\u0439 \u0410\u0434 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "E6FE3A7DE120EB30174E3242473AFA2B", "id": "573", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05db\u05e0\u05d5\u05ea", "mixname_he": "\u05db\u05e0\u05d5\u05ea | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0646\u0648\u062a", "mixname_ar": "\u0643\u0646\u0648\u062a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kannot", "mixname_en": "Kannot | <span>Lachish</span>", "label_ru": "\u041a\u0430\u043d\u043e\u0442", "mixname_ru": "\u041a\u0430\u043d\u043e\u0442 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "E7225669D493751B0EA0260E08EDA866", "id": "466", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0440\u0435\u0434\u043d\u044f\u044f \u0410\u0440\u0430\u0432\u0430", "label_he": "\u05d7\u05e6\u05d1\u05d4", "mixname_he": "\u05d7\u05e6\u05d1\u05d4 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u062d\u062a\u0633\u0641\u0647", "mixname_ar": "\u062d\u062a\u0633\u0641\u0647 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Hatzeva", "mixname_en": "Hatzeva | <span>Arava</span>", "label_ru": "\u0425\u0430\u0446\u0435\u0432\u0430", "mixname_ru": "\u0425\u0430\u0446\u0435\u0432\u0430 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "E726DBB8342115185D4A22F712D8B311", "id": "870", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e0\u05d5\u05e3 \u05d0\u05d9\u05d9\u05dc\u05d5\u05df", "mixname_he": "\u05e0\u05d5\u05e3 \u05d0\u05d9\u05d9\u05dc\u05d5\u05df | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0646\u0648\u0641 \u0623\u064a\u0627\u0644\u0648\u0646", "mixname_ar": "\u0646\u0648\u0641 \u0623\u064a\u0627\u0644\u0648\u0646 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Noff Ayalon", "mixname_en": "Noff Ayalon | <span>Yarkon</span>", "label_ru": "\u041d\u043e\u0444 \u0410\u044f\u043b\u043e\u043d", "mixname_ru": "\u041d\u043e\u0444 \u0410\u044f\u043b\u043e\u043d | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "E7571A9364C97676C469EBED8465FB2B", "id": "95", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d0\u05d9\u05ea\u05de\u05e8", "mixname_he": "\u05d0\u05d9\u05ea\u05de\u05e8 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0625\u064a\u062a\u0645\u0627\u0631", "mixname_ar": "\u0625\u064a\u062a\u0645\u0627\u0631 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Itamar", "mixname_en": "Itamar | <span>Shomron</span>", "label_ru": "\u0418\u0442\u0430\u043c\u0430\u0440", "mixname_ru": "\u0418\u0442\u0430\u043c\u0430\u0440 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "E77687FABB209D0E2093AB47BF0FD7D1", "id": "800", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05de\u05e6\u05e4\u05d4 \u05d0\u05d9\u05dc\u05df", "mixname_he": "\u05de\u05e6\u05e4\u05d4 \u05d0\u05d9\u05dc\u05df | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u062a\u0633\u0628\u064a\u0647 \u0625\u064a\u0644\u0627\u0646", "mixname_ar": "\u0645\u062a\u0633\u0628\u064a\u0647 \u0625\u064a\u0644\u0627\u0646 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Mitzpeh Ilan", "mixname_en": "Mitzpeh Ilan | <span>Wadi Ara</span>", "label_ru": "\u041c\u0438\u0446\u043f\u0435 \u0418\u043b\u0430\u043d", "mixname_ru": "\u041c\u0438\u0446\u043f\u0435 \u0418\u043b\u0430\u043d | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "E7B1FB6B54C43CB0CFDC40774DC460B1", "id": "817", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05de\u05e9\u05d0\u05d1\u05d9 \u05e9\u05d3\u05d4", "mixname_he": "\u05de\u05e9\u05d0\u05d1\u05d9 \u05e9\u05d3\u05d4 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0634\u0623\u0641\u064a \u0633\u0627\u062f\u064a\u0647", "mixname_ar": "\u0645\u0634\u0623\u0641\u064a \u0633\u0627\u062f\u064a\u0647 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Mashabei Sadeh", "mixname_en": "Mashabei Sadeh | <span>South Negev</span>", "label_ru": "\u041c\u0430\u0448\u0430\u0432\u0435\u0439 \u0421\u0430\u0434\u0435", "mixname_ru": "\u041c\u0430\u0448\u0430\u0432\u0435\u0439 \u0421\u0430\u0434\u0435 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "E7B33847F2C2984A24FE269DBCF64892", "id": "286", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05d2\u05d1\u05e2 \u05db\u05e8\u05de\u05dc", "mixname_he": "\u05d2\u05d1\u05e2 \u05db\u05e8\u05de\u05dc | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u062c\u064a\u0628\u0639 \u0643\u0631\u0645\u064a\u0644", "mixname_ar": "\u062c\u064a\u0628\u0639 \u0643\u0631\u0645\u064a\u0644 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Geva Carmel", "mixname_en": "Geva Carmel | <span>HaCarmel</span>", "label_ru": "\u0413\u0435\u0432\u0430 \u041a\u0430\u0440\u043c\u0435\u043b\u044c", "mixname_ru": "\u0413\u0435\u0432\u0430 \u041a\u0430\u0440\u043c\u0435\u043b\u044c | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "E7C90B66A29064B8982D033D05AD2A1D", "id": "124", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05dc\u05e4\u05d9 \u05de\u05e0\u05e9\u05d4", "mixname_he": "\u05d0\u05dc\u05e4\u05d9 \u05de\u05e0\u05e9\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0623\u0644\u0641\u064a \u0645\u0646\u0627\u0634\u064a\u0647", "mixname_ar": "\u0623\u0644\u0641\u064a \u0645\u0646\u0627\u0634\u064a\u0647 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Alfei Menashe", "mixname_en": "Alfei Menashe | <span>Sharon</span>", "label_ru": "\u0410\u043b\u0444\u0435\u0439 \u041c\u0435\u043d\u0430\u0448\u0435", "mixname_ru": "\u0410\u043b\u0444\u0435\u0439 \u041c\u0435\u043d\u0430\u0448\u0435 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "E839F9639937E0437AD941DB8BA7B2EC", "id": "828", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05e2\u05de\u05e7", "mixname_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05e2\u05de\u05e7 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u0639\u064a\u0645\u0643", "mixname_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u0639\u064a\u0645\u0643 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Mishmar HaEmek", "mixname_en": "Mishmar HaEmek | <span>Wadi Ara</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u042d\u043c\u0435\u043a", "mixname_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u042d\u043c\u0435\u043a | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "E90C7514FB485FE7E91F731443F1F12A", "id": "674", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05dc\u05d4\u05d1\u05d5\u05ea \u05d4\u05d1\u05e9\u05df", "mixname_he": "\u05dc\u05d4\u05d1\u05d5\u05ea \u05d4\u05d1\u05e9\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0644\u0647\u0641\u0648\u062a \u0647\u0628\u0627\u0634\u0627\u0646", "mixname_ar": "\u0644\u0647\u0641\u0648\u062a \u0647\u0628\u0627\u0634\u0627\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Lehavot HaBashan", "mixname_en": "Lehavot HaBashan | <span>Confrontation Line</span>", "label_ru": "\u041b\u0435\u0445\u0430\u0432\u043e\u0442 \u0445\u0430-\u0411\u0430\u0448\u0430\u043d", "mixname_ru": "\u041b\u0435\u0445\u0430\u0432\u043e\u0442 \u0445\u0430-\u0411\u0430\u0448\u0430\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "E9207294127DEE821DDE74B201B10980", "id": "696", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05de\u05d1\u05d5\u05e2\u05d9\u05dd", "mixname_he": "\u05de\u05d1\u05d5\u05e2\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0641\u0648\u0639\u064a\u0645", "mixname_ar": "\u0645\u0641\u0648\u0639\u064a\u0645 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Mabu'im", "mixname_en": "Mabu'im | <span>West Negev</span>", "label_ru": "\u041c\u0430\u0431\u0443\u0438\u043c", "mixname_ru": "\u041c\u0430\u0431\u0443\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "E942FEE3B31877416687D9E9F06FD523", "id": "1082", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0440\u043e\u043d, \u042e\u0433", "label_he": "\u05e6\u05d5\u05e8 \u05d9\u05e6\u05d7\u05e7", "mixname_he": "\u05e6\u05d5\u05e8 \u05d9\u05e6\u05d7\u05e7 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062a\u0633\u0648\u0631 \u064a\u062a\u0633\u062d\u0627\u0642", "mixname_ar": "\u062a\u0633\u0648\u0631 \u064a\u062a\u0633\u062d\u0627\u0642 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Tzur Itzhak", "mixname_en": "Tzur Itzhak | <span>Sharon</span>", "label_ru": "\u0426\u0443\u0440 \u0418\u0446\u0445\u0430\u043a", "mixname_ru": "\u0426\u0443\u0440 \u0418\u0446\u0445\u0430\u043a | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "E95E6FD3AC09619944DAC2AFA1062434", "id": "737", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05de\u05d7\u05e1\u05d9\u05d4", "mixname_he": "\u05de\u05d7\u05e1\u05d9\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u062d\u0633\u064a\u0647", "mixname_ar": "\u0645\u062d\u0633\u064a\u0647 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Mahsiya", "mixname_en": "Mahsiya | <span>Shfelat Yehuda</span>", "label_ru": "\u041c\u0430\u0445\u0441\u0438\u044f", "mixname_ru": "\u041c\u0430\u0445\u0441\u0438\u044f | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "E978C656774917A4FF71818CB51F9C50", "id": "249", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05e1\u05de\u05ea \u05d8\u05d1\u05e2\u05d5\u05df", "mixname_he": "\u05d1\u05e1\u05de\u05ea \u05d8\u05d1\u05e2\u05d5\u05df | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u0633\u0645\u0629 \u0637\u0628\u0639\u0648\u0646", "mixname_ar": "\u0628\u0633\u0645\u0629 \u0637\u0628\u0639\u0648\u0646 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Basmat Tab'un", "mixname_en": "Basmat Tab'un | <span>HaAmakim</span>", "label_ru": "\u0411\u0430\u0441\u043c\u0430\u0442 \u0422\u0438\u0432\u043e\u043d", "mixname_ru": "\u0411\u0430\u0441\u043c\u0430\u0442 \u0422\u0438\u0432\u043e\u043d | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "E9A37AE19AAF137534CDBF044EFC0D18", "id": "54", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d9\u05e7\u05e0\u05e2\u05dd \u05e2\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d9\u05e7\u05e0\u05e2\u05dd \u05e2\u05d9\u05dc\u05d9\u05ea | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u064a\u0648\u0643\u0646\u0639\u0627\u0645 \u0639", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u064a\u0648\u0643\u0646\u0639\u0627\u0645 \u0639 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Yokneam Illit Industrial Zone", "mixname_en": "Yokneam Illit Industrial Zone | <span>Wadi Ara</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0419\u043e\u043a\u043d\u0435\u0430\u043c \u0418\u043b\u0438\u0442", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0419\u043e\u043a\u043d\u0435\u0430\u043c \u0418\u043b\u0438\u0442 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "E9B73E677A12809413FD1B6065712B17", "id": "673", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u043d\u0435\u0439 \u0428\u0438\u043c\u043e\u043d", "label_he": "\u05dc\u05d4\u05d1", "mixname_he": "\u05dc\u05d4\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0644\u0627\u0647\u0641", "mixname_ar": "\u0644\u0627\u0647\u0641 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Lahav", "mixname_en": "Lahav | <span>Center Negev</span>", "label_ru": "\u041b\u0430\u0445\u0430\u0432", "mixname_ru": "\u041b\u0430\u0445\u0430\u0432 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "E9BE61EBC597E3977E6560FA0CB19CE5", "id": "1355", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05de\u05d1\u05d5\u05d0\u05d5\u05ea \u05d7\u05e8\u05de\u05d5\u05df", "mixname_he": "\u05de\u05e8\u05db\u05d6 \u05d0\u05d6\u05d5\u05e8\u05d9 \u05de\u05d1\u05d5\u05d0\u05d5\u05ea \u05d7\u05e8\u05de\u05d5\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0627\u0644\u0645\u062c\u0644\u0633 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u0645\u0628\u0648\u0624\u062a \u0647\u062d\u0631\u0645\u0648\u0646", "mixname_ar": "\u0627\u0644\u0645\u062c\u0644\u0633 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u0645\u0628\u0648\u0624\u062a \u0647\u062d\u0631\u0645\u0648\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Mevo'ot Hermon Regional Council", "mixname_en": "Mevo'ot Hermon Regional Council | <span>Confrontation Line</span>", "label_ru": "\u041c\u0435\u0442\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442 \u041c\u0430\u0432\u043e\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "mixname_ru": "\u041c\u0435\u0442\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442 \u041c\u0430\u0432\u043e\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "E9C0522AF4502A3D6045145E49650248", "id": "634", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05e0\u05d4\u05e8 \u05d4\u05d9\u05e8\u05d3\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05e0\u05d4\u05e8 \u05d4\u05d9\u05e8\u05d3\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0646\u0647\u0631 \u0627\u0644\u0623\u0631\u062f\u0646", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0646\u0647\u0631 \u0627\u0644\u0623\u0631\u062f\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Kfar Nehar HaYarden", "mixname_en": "Kfar Nehar HaYarden | <span>Lower Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041d\u0435\u0445\u0430\u0440 \u0445\u0430-\u042f\u0440\u0434\u0435\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041d\u0435\u0445\u0430\u0440 \u0445\u0430-\u042f\u0440\u0434\u0435\u043d | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "E9DCAFAA3719F8515D5E8B931B59FE8E", "id": "94", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05d0\u05d9\u05e8\u05d5\u05e1", "mixname_he": "\u05d0\u05d9\u05e8\u05d5\u05e1 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0627\u064a\u0631\u0648\u0633", "mixname_ar": "\u0627\u064a\u0631\u0648\u0633 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Irus", "mixname_en": "Irus | <span>HaShfela</span>", "label_ru": "\u0418\u0440\u0443\u0441", "mixname_ru": "\u0418\u0440\u0443\u0441 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "E9FB682F27C49BCFFB136E1171CA0C92", "id": "477", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d7\u05e9\u05de\u05d5\u05e0\u05d0\u05d9\u05dd", "mixname_he": "\u05d7\u05e9\u05de\u05d5\u05e0\u05d0\u05d9\u05dd | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u062d\u0634\u0645\u0648\u0646\u0626\u064a\u0645", "mixname_ar": "\u062d\u0634\u0645\u0648\u0646\u0626\u064a\u0645 | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Hashmonaim", "mixname_en": "Hashmonaim | <span>Yarkon</span>", "label_ru": "\u0425\u0430\u0448\u043c\u043e\u043d\u0430\u0438\u043c", "mixname_ru": "\u0425\u0430\u0448\u043c\u043e\u043d\u0430\u0438\u043c | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "EA94B20E0792EEFB4795163F2AA5BD86", "id": "702", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05de\u05d2\u05d3\u05d9\u05dd", "mixname_he": "\u05de\u05d2\u05d3\u05d9\u05dd | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0645\u062c\u0627\u062f\u064a\u0645", "mixname_ar": "\u0645\u062c\u0627\u062f\u064a\u0645 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Megadim", "mixname_en": "Megadim | <span>HaCarmel</span>", "label_ru": "\u041c\u0435\u0433\u0430\u0434\u0438\u043c", "mixname_ru": "\u041c\u0435\u0433\u0430\u0434\u0438\u043c | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "EAA12429853E7AD951D4234328FD5DDA", "id": "1149", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05e8\u05d5\u05d5\u05d7\u05d4", "mixname_he": "\u05e8\u05d5\u05d5\u05d7\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0627\u0644\u0631\u0648\u062d\u0629", "mixname_ar": "\u0627\u0644\u0631\u0648\u062d\u0629 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Revacha", "mixname_en": "Revacha | <span>Lachish</span>", "label_ru": "\u0420\u0435\u0445\u0430\u0432\u0430", "mixname_ru": "\u0420\u0435\u0445\u0430\u0432\u0430 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "EAB3E97A03F39DF50B865628E0305822", "id": "1059", "areaid": 22, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05e4\u05dc\u05de\u05d7\u05d9\u05dd", "mixname_he": "\u05e4\u05dc\u05de\u05d7\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0644\u0645\u062d\u064a\u0645", "mixname_ar": "\u0628\u0644\u0645\u062d\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Palmachim", "mixname_en": "Palmachim | <span>Lachish</span>", "label_ru": "\u041f\u0430\u043b\u044c\u043c\u0430\u0445\u0438\u043c", "mixname_ru": "\u041f\u0430\u043b\u044c\u043c\u0430\u0445\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "EACEFF2FDD9C5C2BA7BF8A3B4EA4C48C", "id": "1265", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e9\u05e8\u05d5\u05e0\u05d4", "mixname_he": "\u05e9\u05e8\u05d5\u05e0\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0633\u0627\u0631\u0648\u0646\u0627", "mixname_ar": "\u0633\u0627\u0631\u0648\u0646\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Sharona", "mixname_en": "Sharona | <span>Lower Galilee</span>", "label_ru": "\u0428\u0430\u0440\u043e\u043d\u0430", "mixname_ru": "\u0428\u0430\u0440\u043e\u043d\u0430 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "EAE41A837C247C951381A54F6CA5ADB3", "id": "665", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05db\u05e8\u05de\u05d9\u05d0\u05dc", "mixname_he": "\u05db\u05e8\u05de\u05d9\u05d0\u05dc | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0631\u0645\u0626\u064a\u0644", "mixname_ar": "\u0643\u0631\u0645\u0626\u064a\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Karmiel", "mixname_en": "Karmiel | <span>Upper Galilee</span>", "label_ru": "\u041a\u0430\u0440\u043c\u0438\u044d\u043b\u044c", "mixname_ru": "\u041a\u0430\u0440\u043c\u0438\u044d\u043b\u044c | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "EAE48555B34E96D5F265498AEFA69882", "id": "1194", "areaid": 6, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05e9\u05d1\u05d9 \u05e6\u05d9\u05d5\u05df", "mixname_he": "\u05e9\u05d1\u05d9 \u05e6\u05d9\u05d5\u05df | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0634\u0641\u064a \u062a\u0633\u064a\u0648\u0646", "mixname_ar": "\u0634\u0641\u064a \u062a\u0633\u064a\u0648\u0646 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Shavei Zion", "mixname_en": "Shavei Zion | <span>Upper Galilee</span>", "label_ru": "\u0428\u0430\u0432\u0435\u0439 \u0426\u0438\u043e\u043d", "mixname_ru": "\u0428\u0430\u0432\u0435\u0439 \u0426\u0438\u043e\u043d | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "EAEC283CA6239A7A933DF4EEBB4F3F9A", "id": "790", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05de\u05e2\u05dc\u05d5\u05ea \u05ea\u05e8\u05e9\u05d9\u05d7\u05d0", "mixname_he": "\u05de\u05e2\u05dc\u05d5\u05ea \u05ea\u05e8\u05e9\u05d9\u05d7\u05d0 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0639\u0644\u0648\u062a \u062a\u0631\u0634\u064a\u062d\u0627", "mixname_ar": "\u0645\u0639\u0644\u0648\u062a \u062a\u0631\u0634\u064a\u062d\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Ma'a lot Tarshicha", "mixname_en": "Ma'a lot Tarshicha | <span>Confrontation Line</span>", "label_ru": "\u041c\u0430\u0430\u043b\u043e\u0442 \u0422\u0430\u0440\u0448\u0438\u0445\u0430", "mixname_ru": "\u041c\u0430\u0430\u043b\u043e\u0442 \u0422\u0430\u0440\u0448\u0438\u0445\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "EB02796FCFCF87AC9B7BD8BCD89AE4D5", "id": "386", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05d4\u05d5\u05d3\u05d9\u05d4", "mixname_he": "\u05d4\u05d5\u05d3\u05d9\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0647\u0648\u062f\u064a\u0627", "mixname_ar": "\u0647\u0648\u062f\u064a\u0627 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Hodaya", "mixname_en": "Hodaya | <span>West Lachish</span>", "label_ru": "\u0425\u043e\u0434\u0430\u0439\u044f", "mixname_ru": "\u0425\u043e\u0434\u0430\u0439\u044f | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "EB38EF5956AE3807A4F9E384EC81E67B", "id": "434", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d7\u05d5\u05d5\u05ea \u05e2\u05d3\u05df", "mixname_he": "\u05d7\u05d5\u05d5\u05ea \u05e2\u05d3\u05df | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0645\u0632\u0631\u0639\u0629 \u0639\u064a\u062f\u0646", "mixname_ar": "\u0645\u0632\u0631\u0639\u0629 \u0639\u064a\u062f\u0646 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Havat Eden", "mixname_en": "Havat Eden | <span>Beit She'an Valley</span>", "label_ru": "\u0425\u0430\u0432\u0430\u0442 \u042d\u0434\u0435\u043d", "mixname_ru": "\u0425\u0430\u0432\u0430\u0442 \u042d\u0434\u0435\u043d | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "EB5B9A9579303AFF3D991970B78CC4DF", "id": "948", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05e1\u05e0\u05d3\u05dc\u05d4", "mixname_he": "\u05e1\u05e0\u05d3\u05dc\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0635\u0646\u062f\u0644\u0647", "mixname_ar": "\u0635\u0646\u062f\u0644\u0647 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Sandala", "mixname_en": "Sandala | <span>HaAmakim</span>", "label_ru": "\u0421\u0430\u043d\u0434\u0430\u043b\u0430", "mixname_ru": "\u0421\u0430\u043d\u0434\u0430\u043b\u0430 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "EB779633500D07178DEC84136F219337", "id": "238", "areaid": 17, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0430\u0445\u0438\u0448", "label_he": "\u05d1\u05e0\u05d9 \u05d3\u05e7\u05dc\u05d9\u05dd", "mixname_he": "\u05d1\u05e0\u05d9 \u05d3\u05e7\u05dc\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u0646\u064a \u062f\u0643\u0627\u0644\u064a\u0645", "mixname_ar": "\u0628\u0646\u064a \u062f\u0643\u0627\u0644\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Bnei Dkalim", "mixname_en": "Bnei Dkalim | <span>Yehuda</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0414\u043a\u0430\u043b\u0438\u043c", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0414\u043a\u0430\u043b\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "EBC50B597395A5CA0E8221EFA685C4BA", "id": "409", "areaid": 9, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d5\u05d0\u05d3\u05d9 \u05d0\u05dc \u05e0\u05e2\u05dd \u05d3\u05e8\u05d5\u05dd", "mixname_he": "\u05d5\u05d0\u05d3\u05d9 \u05d0\u05dc \u05e0\u05e2\u05dd \u05d3\u05e8\u05d5\u05dd | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0648\u0627\u062f\u064a \u0627\u0644\u0646\u0639\u0645", "mixname_ar": "\u0648\u0627\u062f\u064a \u0627\u0644\u0646\u0639\u0645 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Wadi al-Na'am", "mixname_en": "Wadi al-Na'am | <span>South Negev</span>", "label_ru": "\u0412\u0430\u0434\u0438 \u0430\u043b\u044c-\u041d\u0430\u0430\u043c", "mixname_ru": "\u0412\u0430\u0434\u0438 \u0430\u043b\u044c-\u041d\u0430\u0430\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "EBFD41B70534D047342336ADEF482634", "id": "4", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0435\u0432\u0435 \u041c\u0438\u0434\u0431\u0430\u0440", "label_he": "\u05d0\u05d1\u05d5 \u05e7\u05e8\u05d9\u05e0\u05d0\u05ea", "mixname_he": "\u05d0\u05d1\u05d5 \u05e7\u05e8\u05d9\u05e0\u05d0\u05ea | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0623\u0628\u0648 \u0643\u0631\u064a\u0646\u0627\u062a \u0648\u0636\u0648\u0627\u062d\u064a\u0647\u0627", "mixname_ar": "\u0623\u0628\u0648 \u0643\u0631\u064a\u0646\u0627\u062a \u0648\u0636\u0648\u0627\u062d\u064a\u0647\u0627 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Abu Qrenat", "mixname_en": "Abu Qrenat | <span>South Negev</span>", "label_ru": "\u0410\u0431\u0443 \u041a\u0440\u0435\u043d\u0430\u0442", "mixname_ru": "\u0410\u0431\u0443 \u041a\u0440\u0435\u043d\u0430\u0442 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "EC0471917E44FE87CCB18336D40B0347", "id": "212", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05d4\u05e9\u05e8\u05d5\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05d4\u05e9\u05e8\u05d5\u05df | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0633\u062c\u0646 \u0647\u0634\u0631\u0648\u0646", "mixname_ar": "\u0633\u062c\u0646 \u0647\u0634\u0631\u0648\u0646 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "HaSharon Prison", "mixname_en": "HaSharon Prison | <span>Sharon</span>", "label_ru": "\u0422\u044e\u0440\u043c\u0430 \u0430- \u0428\u0430\u0440\u043e\u043d", "mixname_ru": "\u0422\u044e\u0440\u043c\u0430 \u0430- \u0428\u0430\u0440\u043e\u043d | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "EC8A01660C6F5AC64A0460550AA275AC", "id": "1152", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c-\u0411\u0430\u0442\u0443\u0444", "label_he": "\u05e8\u05d5\u05de\u05d0\u05e0\u05d4", "mixname_he": "\u05e8\u05d5\u05de\u05d0\u05e0\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0631\u0645\u0627\u0646\u0647", "mixname_ar": "\u0631\u0645\u0627\u0646\u0647 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Rumana", "mixname_en": "Rumana | <span>Center Galilee</span>", "label_ru": "\u0420\u0443\u043c\u0430\u043d\u0430", "mixname_ru": "\u0420\u0443\u043c\u0430\u043d\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "EC92D45527006EC880C1FDD5EB5451DF", "id": "1315", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u0448\u043a\u043e\u043b\u044c", "label_he": "\u05de\u05d1\u05d8\u05d7\u05d9\u05dd, \u05e2\u05de\u05d9\u05e2\u05d5\u05d6, \u05d9\u05e9\u05e2", "mixname_he": "\u05de\u05d1\u05d8\u05d7\u05d9\u05dd, \u05e2\u05de\u05d9\u05e2\u05d5\u05d6, \u05d9\u05e9\u05e2 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0645\u0641\u062a\u0627\u062d\u064a\u0645\u060c \u0639\u0627\u0645\u064a\u0639\u0648\u0632\u060c \u064a\u064a\u0634\u0639", "mixname_ar": "\u0645\u0641\u062a\u0627\u062d\u064a\u0645\u060c \u0639\u0627\u0645\u064a\u0639\u0648\u0632\u060c \u064a\u064a\u0634\u0639 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Mivtachim Amioz Yesha", "mixname_en": "Mivtachim Amioz Yesha | <span>Gaza Envelope</span>", "label_ru": "\u041c\u0438\u0432\u0442\u0430\u0445\u0438\u043c \u0410\u043c\u0438\u043e\u0437 \u0419\u0435\u0448\u0430", "mixname_ru": "\u041c\u0438\u0432\u0442\u0430\u0445\u0438\u043c \u0410\u043c\u0438\u043e\u0437 \u0419\u0435\u0448\u0430 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "ECD77C1C0E926392241F379ED59D65CC", "id": "1313", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "Megido Regional Council", "label_he": "\u05d4\u05d6\u05d5\u05e8\u05e2 \u05d5\u05d9\u05e7\u05e0\u05e2\u05dd \u05d4\u05de\u05d5\u05e9\u05d1\u05d4", "mixname_he": "\u05d4\u05d6\u05d5\u05e8\u05e2 \u05d5\u05d9\u05e7\u05e0\u05e2\u05dd \u05d4\u05de\u05d5\u05e9\u05d1\u05d4 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_en": "HaZoreah", "mixname_en": "HaZoreah | <span>Wadi Ara</span>"}, {"value": "ECD80EEB693101B83BA08FA158217B5E", "id": "1179", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e8\u05de\u05ea \u05d9\u05e9\u05d9", "mixname_he": "\u05e8\u05de\u05ea \u05d9\u05e9\u05d9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0631\u0645\u0627\u062a \u064a\u0634\u0627\u064a", "mixname_ar": "\u0631\u0645\u0627\u062a \u064a\u0634\u0627\u064a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ramat Ishai", "mixname_en": "Ramat Ishai | <span>HaAmakim</span>", "label_ru": "\u0420\u0430\u043c\u0430\u0442 \u0418\u0448\u0430\u0439", "mixname_ru": "\u0420\u0430\u043c\u0430\u0442 \u0418\u0448\u0430\u0439 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "ECE5377A35ACCC2C2B8AF9407F086B62", "id": "857", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d0\u05d9\u05dc\u05df", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d0\u05d9\u05dc\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0625\u064a\u0644\u0627\u0646", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0625\u064a\u0644\u0627\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Neveh Ilan", "mixname_en": "Neveh Ilan | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u0418\u043b\u0430\u043d", "mixname_ru": "\u041d\u0435\u0432\u0435 \u0418\u043b\u0430\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "ECFEC57B200FEDA7F944043BDE550F83", "id": "45", "areaid": 5, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05e0\u05d9 \u05d9\u05d4\u05d5\u05d3\u05d4", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d1\u05e0\u05d9 \u05d9\u05d4\u05d5\u05d3\u05d4 | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0646\u064a \u064a\u0647\u0648\u062f\u0627", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0628\u0646\u064a \u064a\u0647\u0648\u062f\u0627 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Bnei Yehuda Industrial Zone", "mixname_en": "Bnei Yehuda Industrial Zone | <span>South Golan</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0411\u043d\u0435\u0439 \u0419\u0435\u0445\u0443\u0434\u0430", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0411\u043d\u0435\u0439 \u0419\u0435\u0445\u0443\u0434\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "ECFF36A0A757E2A448EB2B3501898573", "id": "1011", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05e2\u05d9\u05df \u05e9\u05e8\u05d9\u05d3", "mixname_he": "\u05e2\u05d9\u05df \u05e9\u05e8\u05d9\u05d3 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u064a\u0646 \u0633\u0631\u064a\u062f", "mixname_ar": "\u0639\u064a\u0646 \u0633\u0631\u064a\u062f | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ein Sarid", "mixname_en": "Ein Sarid | <span>Sharon</span>", "label_ru": "\u042d\u0439\u043d \u0421\u0430\u0440\u0438\u0434", "mixname_ru": "\u042d\u0439\u043d \u0421\u0430\u0440\u0438\u0434 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "ED21DA43C6D10D95FC742CFD10D27F7D", "id": "606", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05db\u05e4\u05e8 \u05d5\u05e8\u05d1\u05d5\u05e8\u05d2", "mixname_he": "\u05db\u05e4\u05e8 \u05d5\u05e8\u05d1\u05d5\u05e8\u05d2 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0648\u0631\u0628\u0648\u0631\u063a", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0648\u0631\u0628\u0648\u0631\u063a | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kfar Warburg", "mixname_en": "Kfar Warburg | <span>Lachish</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0412\u0430\u0440\u0431\u0443\u0440\u0433", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0412\u0430\u0440\u0431\u0443\u0440\u0433 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "ED535E5C233711D3E269BBA547E39CD7", "id": "1089", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e6\u05dc\u05e4\u05d5\u05df", "mixname_he": "\u05e6\u05dc\u05e4\u05d5\u05df | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u0633\u0644\u0641\u0648\u0646", "mixname_ar": "\u062a\u0633\u0644\u0641\u0648\u0646 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tzalfon", "mixname_en": "Tzalfon | <span>Shfelat Yehuda</span>", "label_ru": "\u0426\u0430\u043b\u044c\u0444\u043e\u043d", "mixname_ru": "\u0426\u0430\u043b\u044c\u0444\u043e\u043d | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "ED79FC4C469BE96BE7ABF25E49DC876A", "id": "924", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0430\u0445\u0430\u043b\u044c \u0421\u043e\u0440\u0435\u043a", "label_he": "\u05e0\u05e6\u05e8 \u05d7\u05d6\u05e0\u05d9", "mixname_he": "\u05e0\u05e6\u05e8 \u05d7\u05d6\u05e0\u05d9 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0646\u064a\u062a\u0633\u0631 \u062d\u0632\u0627\u0646\u064a", "mixname_ar": "\u0646\u064a\u062a\u0633\u0631 \u062d\u0632\u0627\u0646\u064a | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Netzer Hazani", "mixname_en": "Netzer Hazani | <span>HaShfela</span>", "label_ru": "\u041d\u0435\u0446\u0435\u0440 \u0425\u0430\u0437\u0430\u043d\u0438", "mixname_ru": "\u041d\u0435\u0446\u0435\u0440 \u0425\u0430\u0437\u0430\u043d\u0438 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "ED8B4494499B6CC6F6CE286757795475", "id": "901", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05e0\u05d9\u05e8 \u05d1\u05e0\u05d9\u05dd", "mixname_he": "\u05e0\u05d9\u05e8 \u05d1\u05e0\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u064a\u0631 \u0628\u0646\u064a\u0645", "mixname_ar": "\u0646\u064a\u0631 \u0628\u0646\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Nir Banim", "mixname_en": "Nir Banim | <span>Lachish</span>", "label_ru": "\u041d\u0438\u0440 \u0411\u0430\u043d\u0438\u043c", "mixname_ru": "\u041d\u0438\u0440 \u0411\u0430\u043d\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "ED8B68D0F177669FE145024CFE3A0BAE", "id": "1020", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e2\u05dc\u05d9 \u05d6\u05d4\u05d1", "mixname_he": "\u05e2\u05dc\u05d9 \u05d6\u05d4\u05d1 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0639\u0644\u064a \u0632\u0627\u0647\u0627\u0641", "mixname_ar": "\u0639\u0644\u064a \u0632\u0627\u0647\u0627\u0641 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Elei Zahav", "mixname_en": "Elei Zahav | <span>Shomron</span>", "label_ru": "\u0410\u043b\u0435\u0439 \u0417\u0430\u0445\u0430\u0432", "mixname_ru": "\u0410\u043b\u0435\u0439 \u0417\u0430\u0445\u0430\u0432 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "ED94F7286524B01D2472A7722328F57B", "id": "810", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05e8\u05d7\u05d1\u05d9\u05d4 \u05de\u05d5\u05e9\u05d1", "mixname_he": "\u05de\u05e8\u05d7\u05d1\u05d9\u05d4 \u05de\u05d5\u05e9\u05d1 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0645\u0631\u062d\u0627\u0641\u064a\u0627 \u0645\u0648\u0634\u0627\u0641", "mixname_ar": "\u0645\u0631\u062d\u0627\u0641\u064a\u0627 \u0645\u0648\u0634\u0627\u0641 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Merhavia Moshav", "mixname_en": "Merhavia Moshav | <span>HaAmakim</span>", "label_ru": "\u041c\u0435\u0440\u0445\u0430\u0432\u0438\u044f \u041c\u043e\u0448\u0430\u0432", "mixname_ru": "\u041c\u0435\u0440\u0445\u0430\u0432\u0438\u044f \u041c\u043e\u0448\u0430\u0432 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "EDE795ED26142856826EAF7E15C8CC25", "id": "899", "areaid": 19, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041f\u043b\u044f\u0436 \u0410\u0448\u043a\u0435\u043b\u043e\u043d", "label_he": "\u05e0\u05d9\u05e6\u05e0\u05d9\u05dd", "mixname_he": "\u05e0\u05d9\u05e6\u05e0\u05d9\u05dd | <span>\u05de\u05e2\u05e8\u05d1 \u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0646\u064a\u062a\u0633\u0627\u0646\u064a\u0645", "mixname_ar": "\u0646\u064a\u062a\u0633\u0627\u0646\u064a\u0645 | <span>\u063a\u0631\u0628 \u0644\u062e\u064a\u0634</span>", "label_en": "Nitzanim", "mixname_en": "Nitzanim | <span>West Lachish</span>", "label_ru": "\u041d\u0438\u0446\u0430\u0440\u0438\u043c", "mixname_ru": "\u041d\u0438\u0446\u0430\u0440\u0438\u043c | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "EE29C22B41C10D166C7CC56E768DC48C", "id": "470", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d7\u05e8\u05d1 \u05dc\u05d0\u05ea", "mixname_he": "\u05d7\u05e8\u05d1 \u05dc\u05d0\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u064a\u0631\u0641 \u0644\u0623\u062a", "mixname_ar": "\u062d\u064a\u0631\u0641 \u0644\u0623\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Herev Le'Et", "mixname_en": "Herev Le'Et | <span>Sharon</span>", "label_ru": "\u0425\u0435\u0440\u0435\u0432 \u041b\u0435\u0430\u0442", "mixname_ru": "\u0425\u0435\u0440\u0435\u0432 \u041b\u0435\u0430\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "EEEE19189FC050F089B81139D868166D", "id": "1054", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05e4\u05d5\u05e8\u05d9\u05d4 \u05e2\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05e4\u05d5\u05e8\u05d9\u05d4 \u05e2\u05d9\u05dc\u05d9\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0628\u0648\u0631\u064a\u0627 \u0639\u064a\u0644\u064a\u062a", "mixname_ar": "\u0628\u0648\u0631\u064a\u0627 \u0639\u064a\u0644\u064a\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Poria Illit", "mixname_en": "Poria Illit | <span>Lower Galilee</span>", "label_ru": "\u041f\u043e\u0440\u0438\u044f \u0418\u043b\u0438\u0442", "mixname_ru": "\u041f\u043e\u0440\u0438\u044f \u0418\u043b\u0438\u0442 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "EF0A56B97B5C780C627EA108261BEB04", "id": "500", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05d9\u05d2\u05d5\u05e8", "mixname_he": "\u05d9\u05d2\u05d5\u05e8 | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u064a\u0627\u062c\u0648\u0631", "mixname_ar": "\u064a\u0627\u062c\u0648\u0631 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Yagur", "mixname_en": "Yagur | <span>HaMifratz</span>", "label_ru": "\u042f\u0433\u0443\u0440", "mixname_ru": "\u042f\u0433\u0443\u0440 | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "EF5458DEBFC304AE8F6ADBEC6430C258", "id": "1278", "areaid": 24, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05ea\u05d9\u05e8\u05d5\u05e9", "mixname_he": "\u05ea\u05d9\u05e8\u05d5\u05e9 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u062a\u064a\u0631\u0648\u0634", "mixname_ar": "\u062a\u064a\u0631\u0648\u0634 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Tirosh", "mixname_en": "Tirosh | <span>Shfelat Yehuda</span>", "label_ru": "\u0422\u0438\u0440\u043e\u0448", "mixname_ru": "\u0422\u0438\u0440\u043e\u0448 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "EF6759139E4FA7B6FDA867E805A75C6F", "id": "616", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e4\u05e8 \u05d8\u05d1\u05d0\u05e9", "mixname_he": "\u05db\u05e4\u05e8 \u05d8\u05d1\u05d0\u05e9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0642\u0631\u064a\u0629 \u0637\u0628\u0627\u0634", "mixname_ar": "\u0642\u0631\u064a\u0629 \u0637\u0628\u0627\u0634 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kafr Tabbash", "mixname_en": "Kafr Tabbash | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0422\u0430\u0431\u0430\u0448", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0422\u0430\u0431\u0430\u0448 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "EFFE293A3B20B4672DA496166C9C58E8", "id": "750", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05de\u05db\u05de\u05d5\u05e8\u05ea", "mixname_he": "\u05de\u05db\u05de\u05d5\u05e8\u05ea | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u062e\u0645\u0648\u0631\u062a", "mixname_ar": "\u0645\u062e\u0645\u0648\u0631\u062a | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Mikhmoret", "mixname_en": "Mikhmoret | <span>Sharon</span>", "label_ru": "\u041c\u0438\u0445\u043c\u043e\u0440\u0435\u0442", "mixname_ru": "\u041c\u0438\u0445\u043c\u043e\u0440\u0435\u0442 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "F012E0BCBD7E72D124B9DC6E8BCBAA94", "id": "1007", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0444\u0438\u0440", "label_he": "\u05e2\u05d9\u05df \u05e6\u05d5\u05e8\u05d9\u05dd", "mixname_he": "\u05e2\u05d9\u05df \u05e6\u05d5\u05e8\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0639\u064a\u0646 \u062a\u0633\u0648\u0631\u064a\u0645", "mixname_ar": "\u0639\u064a\u0646 \u062a\u0633\u0648\u0631\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Ein Tzurim", "mixname_en": "Ein Tzurim | <span>Lachish</span>", "label_ru": "\u042d\u0439\u043d \u0426\u0443\u0440\u0438\u043c", "mixname_ru": "\u042d\u0439\u043d \u0426\u0443\u0440\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "F037344AABD8C88E81991B6A128F2933", "id": "1153", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0410\u043b\u044c-\u0411\u0430\u0442\u0443\u0444", "label_he": "\u05e8\u05d5\u05de\u05ea \u05d0\u05dc \u05d4\u05d9\u05d9\u05d1", "mixname_he": "\u05e8\u05d5\u05de\u05ea \u05d0\u05dc \u05d4\u05d9\u05d9\u05d1 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0631\u0648\u0645\u0627\u062a \u0627\u0644\u0647\u064a\u0628", "mixname_ar": "\u0631\u0648\u0645\u0627\u062a \u0627\u0644\u0647\u064a\u0628 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Rumat al-Heib", "mixname_en": "Rumat al-Heib | <span>Center Galilee</span>", "label_ru": "\u0420\u0443\u043c\u0430\u0442 \u044d\u043b\u044c-\u0425\u0435\u0439\u0431", "mixname_ru": "\u0420\u0443\u043c\u0430\u0442 \u044d\u043b\u044c-\u0425\u0435\u0439\u0431 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "F053BD893FE4CB58A9B048CEDBA840C3", "id": "1375", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05e8\u05d7\u05d1\u05e2\u05dd", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05e8\u05d7\u05d1\u05e2\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0639\u0627\u0644\u064a\u0647 \u0631\u062d\u0628\u0639\u0627\u0645", "mixname_ar": "\u0645\u0639\u0627\u0644\u064a\u0647 \u0631\u062d\u0628\u0639\u0627\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ma'ale Rehav'Am", "mixname_en": "Ma'ale Rehav'Am | <span>Yehuda</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0420\u0435\u0445\u0430\u0432\u0430\u043c", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0420\u0435\u0445\u0430\u0432\u0430\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "F055FACE2411D3DEB6ED9A24B2F85121", "id": "66", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05d1\u05d0\u05d9\u05dd", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05e6\u05d1\u05d0\u05d9\u05dd | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u0633\u0641\u0626\u064a\u0645", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062a\u0633\u0641\u0626\u064a\u0645 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Zvaim Industrial Zone", "mixname_en": "Zvaim Industrial Zone | <span>Beit She'an Valley</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0426\u0432\u0430\u0438\u043c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0426\u0432\u0430\u0438\u043c | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "F05C6EA0F03E9B707B70D1205F0EAEBA", "id": "285", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05d2\u05d1\u05e2 \u05d1\u05e0\u05d9\u05de\u05d9\u05df", "mixname_he": "\u05d2\u05d1\u05e2 \u05d1\u05e0\u05d9\u05de\u05d9\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u064a\u0641\u0639 \u0628\u0646\u064a\u0627\u0645\u064a\u0646", "mixname_ar": "\u062c\u064a\u0641\u0639 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Geva Binyamin", "mixname_en": "Geva Binyamin | <span>Shomron</span>", "label_ru": "\u0413\u0435\u0432\u0430 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "mixname_ru": "\u0413\u0435\u0432\u0430 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "F06F54607C83CBB4B01E075C68E4037E", "id": "127", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05d0\u05de\u05d5\u05e0\u05d9\u05dd", "mixname_he": "\u05d0\u05de\u05d5\u05e0\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0623\u0645\u0648\u0646\u064a\u0645", "mixname_ar": "\u0623\u0645\u0648\u0646\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Emunim", "mixname_en": "Emunim | <span>Lachish</span>", "label_ru": "\u042d\u043c\u0443\u043d\u0438\u043c", "mixname_ru": "\u042d\u043c\u0443\u043d\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "F08143F2FB1F4108FD57CA45922F90E4", "id": "988", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e2\u05d9\u05df \u05d4\u05d5\u05d3", "mixname_he": "\u05e2\u05d9\u05df \u05d4\u05d5\u05d3 | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0639\u064a\u0646 \u0647\u0648\u062f", "mixname_ar": "\u0639\u064a\u0646 \u0647\u0648\u062f | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Ein Hod", "mixname_en": "Ein Hod | <span>HaCarmel</span>", "label_ru": "\u042d\u0439\u043d \u041e\u0434", "mixname_ru": "\u042d\u0439\u043d \u041e\u0434 | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "F0822BC084709D1AB67CF26BA1D9FD13", "id": "492", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d8\u05de\u05e8\u05d4", "mixname_he": "\u05d8\u05de\u05e8\u05d4 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0637\u0645\u0631\u0647", "mixname_ar": "\u0637\u0645\u0631\u0647 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Tamra", "mixname_en": "Tamra | <span>Center Galilee</span>", "label_ru": "\u0422\u0430\u043c\u0440\u0430", "mixname_ru": "\u0422\u0430\u043c\u0440\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "F0904A4AEEDFE4B5DFEA0A35FBDB3144", "id": "33", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d5\u05e8 \u05d9\u05d4\u05d5\u05d3\u05d4", "mixname_he": "\u05d0\u05d5\u05e8 \u05d9\u05d4\u05d5\u05d3\u05d4 | <span>\u05d3\u05df</span>", "label_ar": "\u0623\u0648\u0631 \u064a\u0647\u0648\u062f\u0627", "mixname_ar": "\u0623\u0648\u0631 \u064a\u0647\u0648\u062f\u0627 | <span>\u062f\u0627\u0646</span>", "label_en": "Or Yehuda", "mixname_en": "Or Yehuda | <span>Dan</span>", "label_ru": "\u041e\u0440 \u0418\u0435\u0443\u0434\u0430", "mixname_ru": "\u041e\u0440 \u0418\u0435\u0443\u0434\u0430 | <span>\u0414\u0430\u043d</span>"}, {"value": "F0AA5F166A31C7A71BA9F620E136E030", "id": "281", "areaid": 12, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0430\u043d \u0420\u0430\u0432\u0435", "label_he": "\u05d2\u05d0\u05dc\u05d9\u05d4", "mixname_he": "\u05d2\u05d0\u05dc\u05d9\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u062c\u0627\u0644\u064a\u0629", "mixname_ar": "\u062c\u0627\u0644\u064a\u0629 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Ge'alya", "mixname_en": "Ge'alya | <span>HaShfela</span>", "label_ru": "\u0413\u0435\u0430\u043b\u0438\u044f", "mixname_ru": "\u0413\u0435\u0430\u043b\u0438\u044f | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "F0D7BF484B66A2370FBF7EFA48881BD1", "id": "582", "areaid": 22, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0411\u0435\u044d\u0440 \u0422\u0443\u0432\u0438\u044f", "label_he": "\u05db\u05e4\u05e8 \u05d0\u05d7\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d0\u05d7\u05d9\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0623\u062d\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0623\u062d\u064a\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Kfar Achim", "mixname_en": "Kfar Achim | <span>Lachish</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0410\u0445\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0410\u0445\u0438\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "F0FFACF9AA9040698DAAE43A18903FB5", "id": "141", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05e8\u05d9\u05d0\u05dc", "mixname_he": "\u05d0\u05e8\u05d9\u05d0\u05dc | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u0631\u0626\u064a\u064a\u0644", "mixname_ar": "\u0627\u0631\u0626\u064a\u064a\u0644 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Ariel", "mixname_en": "Ariel | <span>Shomron</span>", "label_ru": "\u0410\u0440\u0438\u044d\u043b\u044c", "mixname_ru": "\u0410\u0440\u0438\u044d\u043b\u044c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "F1421B60584E1AEFB19EEF5A26B1C264", "id": "381", "areaid": 5, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d4\u05d0\u05d5\u05df", "mixname_he": "\u05d4\u05d0\u05d5\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0647\u0627\u0648\u0646", "mixname_ar": "\u0647\u0627\u0648\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Ha'On", "mixname_en": "Ha'On | <span>South Golan</span>", "label_ru": "\u0425\u0430\u043e\u043d", "mixname_ru": "\u0425\u0430\u043e\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "F15194F4FC03B6ECC3C4C46349BDAF07", "id": "1133", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e7\u05e8\u05e0\u05d9 \u05e9\u05d5\u05de\u05e8\u05d5\u05df", "mixname_he": "\u05e7\u05e8\u05e0\u05d9 \u05e9\u05d5\u05de\u05e8\u05d5\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0643\u0631\u0646\u064a \u0634\u0648\u0645\u0631\u0648\u0646", "mixname_ar": "\u0643\u0631\u0646\u064a \u0634\u0648\u0645\u0631\u0648\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Karnei Shomron", "mixname_en": "Karnei Shomron | <span>Shomron</span>", "label_ru": "\u041a\u0430\u0440\u043d\u0435\u0439 \u0428\u043e\u043c\u0440\u043e\u043d", "mixname_ru": "\u041a\u0430\u0440\u043d\u0435\u0439 \u0428\u043e\u043c\u0440\u043e\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "F17AF36AD0361420D54DF22DCAF599B0", "id": "1280", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05ea\u05dc \u05d9\u05d5\u05e1\u05e3", "mixname_he": "\u05ea\u05dc \u05d9\u05d5\u05e1\u05e3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u062a\u0644 \u064a\u0648\u0633\u0641", "mixname_ar": "\u062a\u0644 \u064a\u0648\u0633\u0641 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Tel Yossef", "mixname_en": "Tel Yossef | <span>HaAmakim</span>", "label_ru": "\u0422\u0435\u043b\u044c \u0419\u043e\u0441\u0435\u0444", "mixname_ru": "\u0422\u0435\u043b\u044c \u0419\u043e\u0441\u0435\u0444 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "F196E1DEEBAD43C9B69B30EE87B0ED53", "id": "1317", "areaid": 16, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05de\u05e2\u05d2\u05dc\u05d9\u05dd, \u05d2\u05d1\u05e2\u05d5\u05dc\u05d9\u05dd, \u05de\u05dc\u05d9\u05dc\u05d5\u05ea", "mixname_he": "\u05de\u05e2\u05d2\u05dc\u05d9\u05dd, \u05d2\u05d1\u05e2\u05d5\u05dc\u05d9\u05dd, \u05de\u05dc\u05d9\u05dc\u05d5\u05ea | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0645\u0639\u062c\u0627\u0644\u064a\u0645\u060c, \u062c\u0641\u0639\u0648\u0644\u064a\u0645\u060c, \u0645\u0644\u064a\u0644\u0648\u062a", "mixname_ar": "\u0645\u0639\u062c\u0627\u0644\u064a\u0645\u060c, \u062c\u0641\u0639\u0648\u0644\u064a\u0645\u060c, \u0645\u0644\u064a\u0644\u0648\u062a | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Maagalim, Givolim, Melilot", "mixname_en": "Maagalim, Givolim, Melilot | <span>West Negev</span>", "label_ru": "\u041c\u0430\u0430\u0433\u0430\u043b\u0438\u043c, \u0413\u0438\u0432\u043e\u043b\u0438\u043c, \u041c\u0435\u043b\u0438\u0442\u043e\u0442", "mixname_ru": "\u041c\u0430\u0430\u0433\u0430\u043b\u0438\u043c, \u0413\u0438\u0432\u043e\u043b\u0438\u043c, \u041c\u0435\u043b\u0438\u0442\u043e\u0442 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "F1C63D5F7ED8C464E36456DD521EE71E", "id": "1047", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05e4\u05d0\u05e8\u05e7 \u05ea\u05e2\u05e9\u05d9\u05d5\u05ea \u05e4\u05dc\u05de\u05d7\u05d9\u05dd", "mixname_he": "\u05e4\u05d0\u05e8\u05e7 \u05ea\u05e2\u05e9\u05d9\u05d5\u05ea \u05e4\u05dc\u05de\u05d7\u05d9\u05dd | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0645\u062a\u0646\u0632\u0647 \u062a\u0639\u0633\u064a\u0648\u062a \u0628\u0644\u0645\u0627\u062d\u064a\u0645", "mixname_ar": "\u0645\u062a\u0646\u0632\u0647 \u062a\u0639\u0633\u064a\u0648\u062a \u0628\u0644\u0645\u0627\u062d\u064a\u0645 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Palmachin Industrial Park", "mixname_en": "Palmachin Industrial Park | <span>HaShfela</span>", "label_ru": "\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u0430\u0440\u043a \u041f\u0430\u043b\u044c\u043c\u0430", "mixname_ru": "\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u0430\u0440\u043a \u041f\u0430\u043b\u044c\u043c\u0430 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "F1D5C14AF50FBA35B3FA925804E1D862", "id": "1158", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e8\u05d7\u05dc\u05d9\u05dd", "mixname_he": "\u05e8\u05d7\u05dc\u05d9\u05dd | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0631\u062d\u0627\u0644\u064a\u0645", "mixname_ar": "\u0631\u062d\u0627\u0644\u064a\u0645 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Rechelim", "mixname_en": "Rechelim | <span>Shomron</span>", "label_ru": "\u0420\u0435\u0445\u0435\u043b\u0438\u043c", "mixname_ru": "\u0420\u0435\u0445\u0435\u043b\u0438\u043c | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "F21265DD09D600821FA1F99D5DF4A7E8", "id": "534", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d9\u05e6\u05d4\u05e8", "mixname_he": "\u05d9\u05e6\u05d4\u05e8 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u064a\u062a\u0633\u0647\u0627\u0631", "mixname_ar": "\u064a\u062a\u0633\u0647\u0627\u0631 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Itzhar", "mixname_en": "Itzhar | <span>Shomron</span>", "label_ru": "\u0418\u0446\u0445\u0430\u0440", "mixname_ru": "\u0418\u0446\u0445\u0430\u0440 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "F2137D948FBCC53DB20EB0F75FDAA04A", "id": "276", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d2'\u05e1\u05e8 \u05d0-\u05d6\u05e8\u05e7\u05d0", "mixname_he": "\u05d2'\u05e1\u05e8 \u05d0-\u05d6\u05e8\u05e7\u05d0 | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u062c\u0633\u0631 \u0627\u0644\u0632\u0631\u0642\u0627\u0621", "mixname_ar": "\u062c\u0633\u0631 \u0627\u0644\u0632\u0631\u0642\u0627\u0621 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Jisr az-Zarqa", "mixname_en": "Jisr az-Zarqa | <span>Menashe</span>", "label_ru": "\u0414\u0436\u0438\u0441\u0440 \u0430\u0437-\u0417\u0430\u0440\u043a\u0430", "mixname_ru": "\u0414\u0436\u0438\u0441\u0440 \u0430\u0437-\u0417\u0430\u0440\u043a\u0430 | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "F24184865C447098038DBD747E011B03", "id": "306", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0433\u0438\u0434\u0434\u043e", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05e2\u05d5\u05d6", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05e2\u05d5\u05d6 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0639\u0648\u0632", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0639\u0648\u0632 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Givat Oz", "mixname_en": "Givat Oz | <span>Wadi Ara</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u041e\u0437", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u041e\u0437 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "F2DD7E6AB6A90AF8AB7C8B1099E905D7", "id": "445", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d7\u05d5\u05e7\u05d5\u05e7", "mixname_he": "\u05d7\u05d5\u05e7\u05d5\u05e7 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u062d\u0648\u0643\u0648\u0643", "mixname_ar": "\u062d\u0648\u0643\u0648\u0643 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Hukok", "mixname_en": "Hukok | <span>Lower Galilee</span>", "label_ru": "\u0425\u0443\u043a\u043e\u043a", "mixname_ru": "\u0425\u0443\u043a\u043e\u043a | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "F3058EB34608CDC47C47E57EBCBA779B", "id": "240", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05d1\u05e0\u05d9 \u05d3\u05e8\u05d5\u05e8", "mixname_he": "\u05d1\u05e0\u05d9 \u05d3\u05e8\u05d5\u05e8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u0646\u064a \u062f\u0631\u0648\u0631", "mixname_ar": "\u0628\u0646\u064a \u062f\u0631\u0648\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Bnei Dror", "mixname_en": "Bnei Dror | <span>Sharon</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0414\u0440\u043e\u0440", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0414\u0440\u043e\u0440 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "F3EE8971922BB84441320AD42164A420", "id": "422", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d6\u05e8\u05d6\u05d9\u05e8", "mixname_he": "\u05d6\u05e8\u05d6\u05d9\u05e8 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0632\u0631\u0627\u0632\u064a\u0631", "mixname_ar": "\u0632\u0631\u0627\u0632\u064a\u0631 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Zarzir", "mixname_en": "Zarzir | <span>HaAmakim</span>", "label_ru": "\u0417\u0430\u0440\u0437\u0438\u0440", "mixname_ru": "\u0417\u0430\u0440\u0437\u0438\u0440 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "F3F3FD205015F3CFFF7D54D7416451B0", "id": "327", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d2\u05d9\u05ea\u05d4", "mixname_he": "\u05d2\u05d9\u05ea\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u062c\u064a\u062a\u0647", "mixname_ar": "\u062c\u064a\u062a\u0647 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Gita", "mixname_en": "Gita | <span>Upper Galilee</span>", "label_ru": "\u0413\u0438\u0442\u0430", "mixname_ru": "\u0413\u0438\u0442\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "F40BEF74F126A9CCA36AFE7FC74A6D58", "id": "93", "areaid": 1, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d9\u05dc\u05ea", "mixname_he": "\u05d0\u05d9\u05dc\u05ea | <span>\u05d0\u05d9\u05dc\u05ea</span>", "label_ar": "\u0623\u064a\u064a\u0644\u062a", "mixname_ar": "\u0623\u064a\u064a\u0644\u062a | <span>\u0627\u064a\u0644\u0627\u062a</span>", "label_en": "Eilat", "mixname_en": "Eilat | <span>Eilat</span>", "label_ru": "\u042d\u0439\u043b\u0430\u0442", "mixname_ru": "\u042d\u0439\u043b\u0430\u0442 | <span>\u042d\u0439\u043b\u0430\u0442</span>"}, {"value": "F45AB2C88228D6CBBDF5D1BFD8F14FFA", "id": "6008", "areaid": 8, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d4\u05e8\u05e6\u05dc\u05d9\u05d4 - \u05de\u05e8\u05db\u05d6 \u05d5\u05d2\u05dc\u05d9\u05dc \u05d9\u05dd", "mixname_he": "\u05d4\u05e8\u05e6\u05dc\u05d9\u05d4 - \u05de\u05e8\u05db\u05d6 \u05d5\u05d2\u05dc\u05d9\u05dc \u05d9\u05dd | <span>\u05d3\u05df</span>", "label_ar": "\u0647\u0631\u062a\u0633\u0644\u064a\u0627 - \u0627\u0644\u0645\u0631\u0643\u0632 \u0648\u062c\u0644\u064a\u0644 \u064a\u0627\u0645", "mixname_ar": "\u0647\u0631\u062a\u0633\u0644\u064a\u0627 - \u0627\u0644\u0645\u0631\u0643\u0632 \u0648\u062c\u0644\u064a\u0644 \u064a\u0627\u0645 | <span>\u062f\u0627\u0646</span>", "label_en": "Herzeliya - West", "mixname_en": "Herzeliya - West | <span>Dan</span>", "label_ru": "\u0413\u0435\u0440\u0446\u043b\u0438\u044f - \u0446\u0435\u043d\u0442\u0440 \u0438 \u0413\u043b\u0438\u043b\u044c \u042f\u043c", "mixname_ru": "\u0413\u0435\u0440\u0446\u043b\u0438\u044f - \u0446\u0435\u043d\u0442\u0440 \u0438 \u0413\u043b\u0438\u043b\u044c \u042f\u043c | <span>\u0414\u0430\u043d</span>"}, {"value": "F4E263AB8204A749DBD4BAF1B3440D96", "id": "824", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05de\u05e9\u05de\u05e8 \u05d0\u05d9\u05d9\u05dc\u05d5\u05df", "mixname_he": "\u05de\u05e9\u05de\u05e8 \u05d0\u05d9\u05d9\u05dc\u05d5\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0645\u0634\u0645\u0627\u0631 \u0623\u064a\u0644\u0648\u0646", "mixname_ar": "\u0645\u0634\u0645\u0627\u0631 \u0623\u064a\u0644\u0648\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Mishmar Ayalon", "mixname_en": "Mishmar Ayalon | <span>HaShfela</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0410\u044f\u043b\u043e\u043d", "mixname_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0410\u044f\u043b\u043e\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "F4F449072DBF4AC7A006F9B4364258EA", "id": "343", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041b\u0435\u0432 \u0425\u0430\u0448\u0430\u0440\u043e\u043d", "label_he": "\u05d2\u05e0\u05d5\u05ea \u05d4\u05d3\u05e8", "mixname_he": "\u05d2\u05e0\u05d5\u05ea \u05d4\u05d3\u05e8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u062c\u0627\u0646\u0648\u062a \u0647\u062f\u0631", "mixname_ar": "\u062c\u0627\u0646\u0648\u062a \u0647\u062f\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Ginot Hadar", "mixname_en": "Ginot Hadar | <span>Sharon</span>", "label_ru": "\u0413\u0438\u043d\u043e\u0442 \u0425\u0430\u0434\u0430\u0440", "mixname_ru": "\u0413\u0438\u043d\u043e\u0442 \u0425\u0430\u0434\u0430\u0440 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "F53EA9083272E342ADE0146DA1C25E59", "id": "1307", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e9\u05d3\u05e8\u05d5\u05ea, \u05d0\u05d9\u05d1\u05d9\u05dd, \u05e0\u05d9\u05e8 \u05e2\u05dd", "mixname_he": "\u05e9\u05d3\u05e8\u05d5\u05ea, \u05d0\u05d9\u05d1\u05d9\u05dd, \u05e0\u05d9\u05e8 \u05e2\u05dd | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0633\u062f\u064a\u0631\u0648\u062a \u060c \u0625\u064a\u0641\u064a\u0645 \u060c \u0646\u064a\u0631 \u0639\u0627\u0645", "mixname_ar": "\u0633\u062f\u064a\u0631\u0648\u062a \u060c \u0625\u064a\u0641\u064a\u0645 \u060c \u0646\u064a\u0631 \u0639\u0627\u0645 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Sderot, Ivim, Nir Am", "mixname_en": "Sderot, Ivim, Nir Am | <span>Gaza Envelope</span>", "label_ru": "\u0421\u0434\u0435\u0440\u043e\u0442, \u0418\u0432\u0438\u043c, \u041d\u0438\u0440 \u0410\u043c", "mixname_ru": "\u0421\u0434\u0435\u0440\u043e\u0442, \u0418\u0432\u0438\u043c, \u041d\u0438\u0440 \u0410\u043c | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "F55748F4CB13D5370F1EB844D01CA3DD", "id": "205", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0425\u0435\u0444\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05d9\u05e6\u05d7\u05e7 - \u05e9\u05e2\u05e8 \u05d7\u05e4\u05e8", "mixname_he": "\u05d1\u05d9\u05ea \u05d9\u05e6\u05d7\u05e7 - \u05e9\u05e2\u05e8 \u05d7\u05e4\u05e8 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0628\u064a\u062a \u064a\u062a\u0633\u062d\u0627\u0642- \u0634\u0627\u0639\u0627\u0631 \u062d\u064a\u0641\u0631", "mixname_ar": "\u0628\u064a\u062a \u064a\u062a\u0633\u062d\u0627\u0642- \u0634\u0627\u0639\u0627\u0631 \u062d\u064a\u0641\u0631 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Beit Yithak - Sha'ar Hefer", "mixname_en": "Beit Yithak - Sha'ar Hefer | <span>Sharon</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0418\u0446\u0445\u0430\u043a - \u0429\u0430\u0430\u0440 \u0425\u0435\u0444\u0435\u0440", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0418\u0446\u0445\u0430\u043a - \u0429\u0430\u0430\u0440 \u0425\u0435\u0444\u0435\u0440 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "F5DB9C7325641B1F5734D1EBBC5B272D", "id": "1322", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05e2\u05d1\u05d9\u05d4-\u05d8\u05d1\u05d0\u05e9-\u05d7\u05d2'\u05d0\u05d2'\u05e8\u05d4", "mixname_he": "\u05db\u05e2\u05d1\u05d9\u05d4-\u05d8\u05d1\u05d0\u05e9-\u05d7\u05d2'\u05d0\u05d2'\u05e8\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_en": "Ka'abiyye-Tabbash-Hajajre", "mixname_en": "Ka'abiyye-Tabbash-Hajajre | <span>HaAmakim</span>"}, {"value": "F5E03457DCAF05334643102D9CDA885E", "id": "478", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d8\u05d1\u05e8\u05d9\u05d4", "mixname_he": "\u05d8\u05d1\u05e8\u05d9\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0637\u0628\u0631\u064a\u0627", "mixname_ar": "\u0637\u0628\u0631\u064a\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Tiberias", "mixname_en": "Tiberias | <span>Lower Galilee</span>", "label_ru": "\u0422\u0432\u0435\u0440\u0438\u044f", "mixname_ru": "\u0422\u0432\u0435\u0440\u0438\u044f | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "F60472C111B798DE7FB99B73D233F1A0", "id": "219", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05d1\u05d9\u05ea \u05e2\u05d5\u05d6\u05d9\u05d0\u05dc", "mixname_he": "\u05d1\u05d9\u05ea \u05e2\u05d5\u05d6\u05d9\u05d0\u05dc | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u0639\u0648\u0632\u064a\u0626\u064a\u0644", "mixname_ar": "\u0628\u064a\u062a \u0639\u0648\u0632\u064a\u0626\u064a\u0644 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Beit Uziel", "mixname_en": "Beit Uziel | <span>HaShfela</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0423\u0437\u0438\u044d\u043b\u044c", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0423\u0437\u0438\u044d\u043b\u044c | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "F627E2A4472FC3B83869D8603B2EF61B", "id": "782", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05d4\u05d7\u05de\u05d9\u05e9\u05d4", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05d4\u05d7\u05de\u05d9\u05e9\u05d4 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u0647\u062d\u0645\u064a\u0634\u0627", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u0647\u062d\u0645\u064a\u0634\u0627 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ma'aleh HaHamisha", "mixname_en": "Ma'aleh HaHamisha | <span>Shfelat Yehuda</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0445\u0430-\u0425\u0430\u043c\u0438\u0448\u0430", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0445\u0430-\u0425\u0430\u043c\u0438\u0448\u0430 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "F692027DCAC0AB41D56959E897464E73", "id": "318", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d2\u05d5\u05e8\u05e0\u05d5\u05ea \u05d4\u05d2\u05dc\u05d9\u05dc", "mixname_he": "\u05d2\u05d5\u05e8\u05e0\u05d5\u05ea \u05d4\u05d2\u05dc\u05d9\u05dc | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062c\u0648\u0631\u0646\u0648\u062a \u0647\u062c\u0627\u0644\u064a\u0644", "mixname_ar": "\u062c\u0648\u0631\u0646\u0648\u062a \u0647\u062c\u0627\u0644\u064a\u0644 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Gornot HaGalil", "mixname_en": "Gornot HaGalil | <span>Confrontation Line</span>", "label_ru": "\u0413\u043e\u0440\u043d\u043e\u0442 \u0445\u0430-\u0413\u0430\u043b\u0438\u043b\u044c", "mixname_ru": "\u0413\u043e\u0440\u043d\u043e\u0442 \u0445\u0430-\u0413\u0430\u043b\u0438\u043b\u044c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "F6BA2FF381C47762CFB486B9F70FEFE1", "id": "194", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0440\u043e\u043d\u0441\u043a\u043e\u0435 \u043d\u0430\u0433\u043e\u0440\u044c\u0435", "label_he": "\u05d1\u05d9\u05ea \u05d7\u05d2\u05d9", "mixname_he": "\u05d1\u05d9\u05ea \u05d7\u05d2\u05d9 | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u062d\u0627\u062c\u0627\u064a", "mixname_ar": "\u0628\u064a\u062a \u062d\u0627\u062c\u0627\u064a | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beit Hagai", "mixname_en": "Beit Hagai | <span>Yehuda</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u0433\u0430\u0439", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0425\u0430\u0433\u0430\u0439 | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "F6BE825767CCB04EBAD527CEAFB34C41", "id": "732", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05d6\u05db\u05e8\u05ea \u05d1\u05ea\u05d9\u05d4", "mixname_he": "\u05de\u05d6\u05db\u05e8\u05ea \u05d1\u05ea\u05d9\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0645\u0632\u0643\u064a\u0631\u062a \u0628\u0627\u062a\u064a\u0627", "mixname_ar": "\u0645\u0632\u0643\u064a\u0631\u062a \u0628\u0627\u062a\u064a\u0627 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Mazkeret Batya", "mixname_en": "Mazkeret Batya | <span>HaShfela</span>", "label_ru": "\u041c\u0430\u0437\u043a\u0435\u0440\u0435\u0442 \u0411\u0430\u0442\u044c\u044f", "mixname_ru": "\u041c\u0430\u0437\u043a\u0435\u0440\u0435\u0442 \u0411\u0430\u0442\u044c\u044f | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "F6E3512DC2E3A9BB2DC55942867FD721", "id": "1340", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d9\u05e2\u05dc", "mixname_he": "\u05d9\u05e9\u05d5\u05d1\u05d9 \u05d9\u05e2\u05dc | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0628\u0644\u062f\u0627\u0646 \u064a\u0627\u0639\u064a\u0644", "mixname_ar": "\u0628\u0644\u062f\u0627\u0646 \u064a\u0627\u0639\u064a\u0644 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Yael Settlements", "mixname_en": "Yael Settlements | <span>HaAmakim</span>", "label_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u042f\u044d\u043b\u044c", "mixname_ru": "\u041f\u043e\u0441\u0435\u043b\u0435\u043d\u0438\u044f \u042f\u044d\u043b\u044c | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "F6EFB8B7CDBA71CC2C242CFC884E2643", "id": "32", "areaid": 26, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0428\u0430\u0430\u0440 \u0445\u0430-\u041d\u0435\u0433\u0435\u0432", "label_he": "\u05d0\u05d5\u05e8 \u05d4\u05e0\u05e8", "mixname_he": "\u05d0\u05d5\u05e8 \u05d4\u05e0\u05e8 | <span>\u05e2\u05d5\u05d8\u05e3 \u05e2\u05d6\u05d4</span>", "label_ar": "\u0623\u0648\u0631 \u0647\u0646\u064a\u0631", "mixname_ar": "\u0623\u0648\u0631 \u0647\u0646\u064a\u0631 | <span>\u063a\u0644\u0627\u0641 \u063a\u0632\u0629</span>", "label_en": "Or HaNer", "mixname_en": "Or HaNer | <span>Gaza Envelope</span>", "label_ru": "\u041e\u0440 \u0445\u0430-\u041d\u0435\u0440", "mixname_ru": "\u041e\u0440 \u0445\u0430-\u041d\u0435\u0440 | <span>\u041e\u043a\u0440\u0443\u0433 \u0413\u0430\u0437\u0430</span>"}, {"value": "F704FAD69ECCB9CE1ED362280695BED2", "id": "52", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d7\u05e6\u05d5\u05e8 \u05d4\u05d2\u05dc\u05d9\u05dc\u05d9\u05ea", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05d7\u05e6\u05d5\u05e8 \u05d4\u05d2\u05dc\u05d9\u05dc\u05d9\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062d\u062a\u0633\u0648\u0631 \u0647\u062c\u0644", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u062d\u062a\u0633\u0648\u0631 \u0647\u062c\u0644 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Hatzor HaGlilit Industrial Zone", "mixname_en": "Hatzor HaGlilit Industrial Zone | <span>Upper Galilee</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0425\u0430\u0446\u043e\u0440 \u0445\u0430-\u0413\u043b\u0438\u043b\u0438\u0442", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u0425\u0430\u0446\u043e\u0440 \u0445\u0430-\u0413\u043b\u0438\u043b\u0438\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "F7062EEAA2CA05A47CD1EF84917634CF", "id": "1214", "areaid": 15, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u043e\u0444 \u0445\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c", "label_he": "\u05e9\u05d3\u05d5\u05ea \u05d9\u05dd", "mixname_he": "\u05e9\u05d3\u05d5\u05ea \u05d9\u05dd | <span>\u05de\u05e0\u05e9\u05d4</span>", "label_ar": "\u0633\u062f\u0648\u062a \u064a\u0627\u0645", "mixname_ar": "\u0633\u062f\u0648\u062a \u064a\u0627\u0645 | <span>\u0645\u0646\u0627\u0634\u064a\u0647</span>", "label_en": "Sdot Yam", "mixname_en": "Sdot Yam | <span>Menashe</span>", "label_ru": "\u0421\u0434\u043e\u0442 \u042f\u043c", "mixname_ru": "\u0421\u0434\u043e\u0442 \u042f\u043c | <span>\u041c\u0435\u043d\u0430\u0448\u0435</span>"}, {"value": "F758D8EADFB4FEEEB29749B6F33EC75E", "id": "517", "areaid": 29, "color": "B", "migun_time": 180, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042d\u0439\u043b\u043e\u0442", "label_he": "\u05d9\u05d8\u05d1\u05ea\u05d4", "mixname_he": "\u05d9\u05d8\u05d1\u05ea\u05d4 | <span>\u05e2\u05e8\u05d1\u05d4</span>", "label_ar": "\u064a\u0648\u0637\u0641\u0627\u062a\u0627", "mixname_ar": "\u064a\u0648\u0637\u0641\u0627\u062a\u0627 | <span>\u0627\u0644\u0639\u0631\u0628\u0627\u0647</span>", "label_en": "Yotvata", "mixname_en": "Yotvata | <span>Arava</span>", "label_ru": "\u0419\u043e\u0442\u0432\u0430\u0442\u0430", "mixname_ru": "\u0419\u043e\u0442\u0432\u0430\u0442\u0430 | <span>\u0410\u0440\u0430\u0432\u0430</span>"}, {"value": "F75E4BF8EE432D3E850333C16BB81DE4", "id": "632", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05de\u05e1\u05e8\u05d9\u05e7", "mixname_he": "\u05db\u05e4\u05e8 \u05de\u05e1\u05e8\u05d9\u05e7 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0645\u0633\u0631\u064a\u0643", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0645\u0633\u0631\u064a\u0643 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Kfar Masaryk", "mixname_en": "Kfar Masaryk | <span>Upper Galilee</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041c\u0430\u0441\u0430\u0440\u0438\u043a", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041c\u0430\u0441\u0430\u0440\u0438\u043a | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "F7845A520766791A9D53E3F065203128", "id": "12", "areaid": 27, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d1\u05df \u05d9\u05d4\u05d5\u05d3\u05d4", "mixname_he": "\u05d0\u05d1\u05df \u05d9\u05d4\u05d5\u05d3\u05d4 | <span>\u05e9\u05e8\u05d5\u05df</span>", "label_ar": "\u0627\u064a\u0641\u064a\u0646 \u064a\u0647\u0648\u062f\u0627", "mixname_ar": "\u0627\u064a\u0641\u064a\u0646 \u064a\u0647\u0648\u062f\u0627 | <span>\u0634\u0627\u0631\u0648\u0646</span>", "label_en": "Even Yehuda", "mixname_en": "Even Yehuda | <span>Sharon</span>", "label_ru": "\u042d\u0432\u0435\u043d \u0418\u0435\u0443\u0434\u0430", "mixname_ru": "\u042d\u0432\u0435\u043d \u0418\u0435\u0443\u0434\u0430 | <span>\u0428\u0430\u0440\u043e\u043d</span>"}, {"value": "F79F6C97C13D93B713D5AF28E7298491", "id": "805", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u043d\u0430\u0448\u0435", "label_he": "\u05de\u05e6\u05e8", "mixname_he": "\u05de\u05e6\u05e8 | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0645\u064a\u062a\u0633\u0631", "mixname_ar": "\u0645\u064a\u062a\u0633\u0631 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Metzer", "mixname_en": "Metzer | <span>Wadi Ara</span>", "label_ru": "\u041c\u0435\u0446\u0435\u0440", "mixname_ru": "\u041c\u0435\u0446\u0435\u0440 | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "F7C503390C1423A581F988D7CE53FBD8", "id": "1195", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05e9\u05d1\u05d9 \u05e9\u05d5\u05de\u05e8\u05d5\u05df", "mixname_he": "\u05e9\u05d1\u05d9 \u05e9\u05d5\u05de\u05e8\u05d5\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0634\u064a\u0641\u064a \u0634\u0648\u0645\u0631\u0648\u0646", "mixname_ar": "\u0634\u064a\u0641\u064a \u0634\u0648\u0645\u0631\u0648\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Shavei Shomron", "mixname_en": "Shavei Shomron | <span>Shomron</span>", "label_ru": "\u0428\u0430\u0432\u0435\u0439 \u0428\u043e\u043c\u0440\u043e\u043d", "mixname_ru": "\u0428\u0430\u0432\u0435\u0439 \u0428\u043e\u043c\u0440\u043e\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "F7CF3B053FE9FF966F1ADFE990246FAA", "id": "183", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u042f\u0432\u043d\u0435", "label_he": "\u05d1\u05d9\u05ea \u05d2\u05de\u05dc\u05d9\u05d0\u05dc", "mixname_he": "\u05d1\u05d9\u05ea \u05d2\u05de\u05dc\u05d9\u05d0\u05dc | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u064a\u062a \u062c\u0645\u0644\u064a\u0626\u0644", "mixname_ar": "\u0628\u064a\u062a \u062c\u0645\u0644\u064a\u0626\u0644 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Beit Gamliel", "mixname_en": "Beit Gamliel | <span>Lachish</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0413\u0430\u043c\u043b\u0438\u044d\u043b\u044c", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0413\u0430\u043c\u043b\u0438\u044d\u043b\u044c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "F7F2101F1ECAA02D66BA230B5447F1CF", "id": "973", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05e2\u05d6\u05e8\u05d9\u05d4", "mixname_he": "\u05e2\u05d6\u05e8\u05d9\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0639\u0627\u0632\u0627\u0631\u064a\u0647", "mixname_ar": "\u0639\u0627\u0632\u0627\u0631\u064a\u0647 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Azaria", "mixname_en": "Azaria | <span>HaShfela</span>", "label_ru": "\u0410\u0437\u0430\u0440\u0438\u044f", "mixname_ru": "\u0410\u0437\u0430\u0440\u0438\u044f | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "F80631B33DFE7A3209F7518A5200EBF4", "id": "676", "areaid": 25, "color": "B", "migun_time": 45, "rashut": "", "label_he": "\u05dc\u05d4\u05d1\u05d9\u05dd", "mixname_he": "\u05dc\u05d4\u05d1\u05d9\u05dd | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0644\u0647\u0627\u0641\u064a\u0645", "mixname_ar": "\u0644\u0647\u0627\u0641\u064a\u0645 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Lehavim", "mixname_en": "Lehavim | <span>Center Negev</span>", "label_ru": "\u041b\u0435\u0445\u0430\u0432\u0438\u043c", "mixname_ru": "\u041b\u0435\u0445\u0430\u0432\u0438\u043c | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "F850656318047E62A57CA6C7DE5DE2AD", "id": "170", "areaid": 16, "color": "B", "migun_time": 45, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0438\u0440\u0445\u0430\u0432\u0438\u043c", "label_he": "\u05d1\u05d8\u05d7\u05d4", "mixname_he": "\u05d1\u05d8\u05d7\u05d4 | <span>\u05de\u05e2\u05e8\u05d1 \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0628\u0637\u062d\u0627", "mixname_ar": "\u0628\u0637\u062d\u0627 | <span>\u0627\u0644\u0646\u0642\u0628 \u0627\u0644\u063a\u0631\u0628\u064a</span>", "label_en": "Bitha", "mixname_en": "Bitha | <span>West Negev</span>", "label_ru": "\u0411\u0438\u0442\u0445\u0430", "mixname_ru": "\u0411\u0438\u0442\u0445\u0430 | <span>\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "F8A5DD1AEC0FF22985CB40D4CAAAA5DE", "id": "646", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05db\u05e4\u05e8 \u05e7\u05d9\u05e9", "mixname_he": "\u05db\u05e4\u05e8 \u05e7\u05d9\u05e9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0643\u064a\u0634", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0643\u064a\u0634 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar Kish", "mixname_en": "Kfar Kish | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u041a\u0438\u0448", "mixname_ru": "\u041a\u0444\u0430\u0440 \u041a\u0438\u0448 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "F8C633425AB24964FAA73E157AFD3EC7", "id": "57", "areaid": 13, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05de\u05d1\u05d5\u05d0 \u05db\u05e8\u05de\u05dc", "mixname_he": "\u05d0\u05d6\u05d5\u05e8 \u05ea\u05e2\u05e9\u05d9\u05d9\u05d4 \u05de\u05d1\u05d5\u05d0 \u05db\u05e8\u05de\u05dc | <span>\u05d5\u05d0\u05d3\u05d9 \u05e2\u05e8\u05d4</span>", "label_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u0627\u0641\u0648 \u0627\u0644\u0643\u0631", "mixname_ar": "\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 \u0645\u0627\u0641\u0648 \u0627\u0644\u0643\u0631 | <span>\u0648\u0627\u062f\u064a \u0639\u0627\u0631\u0629</span>", "label_en": "Mevo Carmel Industrial Zone", "mixname_en": "Mevo Carmel Industrial Zone | <span>Wadi Ara</span>", "label_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041c\u0435\u0432\u043e \u041a\u0430\u0440\u043c\u0435\u043b\u044c", "mixname_ru": "\u041f\u0440\u043e\u043c\u0437\u043e\u043d\u0430 \u041c\u0435\u0432\u043e \u041a\u0430\u0440\u043c\u0435\u043b\u044c | <span>\u0412\u0430\u0434\u0438 \u0410\u0440\u0430</span>"}, {"value": "F9061AC92AD9F970A80A2C724925E5B6", "id": "685", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05dc\u05e4\u05d9\u05d3", "mixname_he": "\u05dc\u05e4\u05d9\u05d3 | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0644\u0628\u064a\u062f", "mixname_ar": "\u0644\u0628\u064a\u062f | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Lapid", "mixname_en": "Lapid | <span>Yarkon</span>", "label_ru": "\u041b\u0430\u043f\u0438\u0434", "mixname_ru": "\u041b\u0430\u043f\u0438\u0434 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "F925EB8951828E9CDFF02E472F1A3A27", "id": "970", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0420\u0430\u043c\u0430\u0442 \u041d\u0435\u0433\u0435\u0432", "label_he": "\u05e2\u05d6\u05d5\u05d6", "mixname_he": "\u05e2\u05d6\u05d5\u05d6 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0639\u0632\u0648\u0632", "mixname_ar": "\u0639\u0632\u0648\u0632 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Azuz", "mixname_en": "Azuz | <span>South Negev</span>", "label_ru": "\u0410\u0437\u0443\u0437", "mixname_ru": "\u0410\u0437\u0443\u0437 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "F95A68FCA902F91C23CB9D27D1C443CE", "id": "610", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d7\u05d1''\u05d3", "mixname_he": "\u05db\u05e4\u05e8 \u05d7\u05d1''\u05d3 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062d\u0627\u0628\u0627\u062f", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062d\u0627\u0628\u0627\u062f | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Kfar Chabad", "mixname_en": "Kfar Chabad | <span>HaShfela</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0431\u0430\u0434", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0431\u0430\u0434 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "F9617668F8868E62D31772617D536B9B", "id": "614", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0417\u0432\u0443\u043b\u0443\u043d", "label_he": "\u05db\u05e4\u05e8 \u05d7\u05e1\u05d9\u05d3\u05d9\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d7\u05e1\u05d9\u05d3\u05d9\u05dd | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u062d\u0633\u064a\u062f\u064a\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u062d\u0633\u064a\u062f\u064a\u0645 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Kfar Hassidim", "mixname_en": "Kfar Hassidim | <span>HaMifratz</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0441\u0438\u0434\u0438\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0425\u0430\u0441\u0438\u0434\u0438\u043c | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "F99B5059FA2204EE8C6A4009E0195C5F", "id": "586", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05db\u05e4\u05e8 \u05d1\u05dc\u05d5\u05dd", "mixname_he": "\u05db\u05e4\u05e8 \u05d1\u05dc\u05d5\u05dd | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0628\u0644\u0648\u0645", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0628\u0644\u0648\u0645 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Kfar Blum", "mixname_en": "Kfar Blum | <span>Confrontation Line</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0411\u043b\u0443\u043c", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0411\u043b\u0443\u043c | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "F9F6209FCDF3837287BEC7861A320261", "id": "246", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0430\u0445\u0430\u043b\u044c \u0421\u043e\u0440\u0435\u043a", "label_he": "\u05d1\u05e0\u05d9 \u05e8\u05d0\u05dd", "mixname_he": "\u05d1\u05e0\u05d9 \u05e8\u05d0\u05dd | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u0628\u0646\u064a \u0631\u0627\u0645", "mixname_ar": "\u0628\u0646\u064a \u0631\u0627\u0645 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Bnei Re'em", "mixname_en": "Bnei Re'em | <span>Lachish</span>", "label_ru": "\u0411\u043d\u0435\u0439 \u0420\u0430\u043c", "mixname_ru": "\u0411\u043d\u0435\u0439 \u0420\u0430\u043c | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "FA207B9153F02EB2BD29D373D97A7FA0", "id": "499", "areaid": 22, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d9\u05d1\u05e0\u05d4", "mixname_he": "\u05d9\u05d1\u05e0\u05d4 | <span>\u05dc\u05db\u05d9\u05e9</span>", "label_ar": "\u064a\u0627\u0641\u0646\u064a\u0647", "mixname_ar": "\u064a\u0627\u0641\u0646\u064a\u0647 | <span>\u0644\u062e\u064a\u0634</span>", "label_en": "Yavne", "mixname_en": "Yavne | <span>Lachish</span>", "label_ru": "\u042f\u0432\u043d\u0435", "mixname_ru": "\u042f\u0432\u043d\u0435 | <span>\u041b\u0430\u0445\u0438\u0448</span>"}, {"value": "FA477224A25D2C3FC4BC14B2DB8A98E4", "id": "462", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d7\u05e0\u05ea\u05d5\u05df", "mixname_he": "\u05d7\u05e0\u05ea\u05d5\u05df | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u062d\u0627\u0646\u062a\u0648\u0646", "mixname_ar": "\u062d\u0627\u0646\u062a\u0648\u0646 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Hanaton", "mixname_en": "Hanaton | <span>Center Galilee</span>", "label_ru": "\u0425\u0430\u043d\u0430\u0442\u043e\u043d", "mixname_ru": "\u0425\u0430\u043d\u0430\u0442\u043e\u043d | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "FA55CB049AE061F107558242C81C50FC", "id": "691", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05de\u05d1\u05d5\u05d0 \u05d3\u05d5\u05ea\u05df", "mixname_he": "\u05de\u05d1\u05d5\u05d0 \u05d3\u05d5\u05ea\u05df | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u0645\u0627\u0641\u0648 \u062f\u0648\u062a\u0627\u0646", "mixname_ar": "\u0645\u0627\u0641\u0648 \u062f\u0648\u062a\u0627\u0646 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Mevo Dotan", "mixname_en": "Mevo Dotan | <span>Shomron</span>", "label_ru": "\u041c\u0435\u0432\u043e \u0414\u043e\u0442\u0430\u043d", "mixname_ru": "\u041c\u0435\u0432\u043e \u0414\u043e\u0442\u0430\u043d | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "FA575226A67C632D48E0E924A5DC013D", "id": "442", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d7\u05d5\u05e1\u05df", "mixname_he": "\u05d7\u05d5\u05e1\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u062d\u0648\u0633\u0646", "mixname_ar": "\u062d\u0648\u0633\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Hossen", "mixname_en": "Hossen | <span>Confrontation Line</span>", "label_ru": "\u0425\u043e\u0441\u0435\u043d", "mixname_ru": "\u0425\u043e\u0441\u0435\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "FA7F5B74A04B70FB8FD008821DA71FDD", "id": "679", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05dc\u05d5\u05d7\u05de\u05d9 \u05d4\u05d2\u05d8\u05d0\u05d5\u05ea", "mixname_he": "\u05dc\u05d5\u05d7\u05de\u05d9 \u05d4\u05d2\u05d8\u05d0\u05d5\u05ea | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0644\u0648\u062d\u0645\u064a \u0647\u062c\u064a\u062a\u0624\u0648\u062a", "mixname_ar": "\u0644\u0648\u062d\u0645\u064a \u0647\u062c\u064a\u062a\u0624\u0648\u062a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Lochamei HaGetaot", "mixname_en": "Lochamei HaGetaot | <span>Upper Galilee</span>", "label_ru": "\u041b\u043e\u0445\u0430\u043c\u0435\u0439 \u0445\u0430-\u0413\u0435\u0442\u0430\u043e\u0442", "mixname_ru": "\u041b\u043e\u0445\u0430\u043c\u0435\u0439 \u0445\u0430-\u0413\u0435\u0442\u0430\u043e\u0442 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "FA820E8A9651EBD33D784F26E97D68DD", "id": "597", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05db\u05e4\u05e8 \u05d4\u05d7\u05d5\u05e8\u05e9", "mixname_he": "\u05db\u05e4\u05e8 \u05d4\u05d7\u05d5\u05e8\u05e9 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0647\u062d\u0648\u0631\u0634", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0647\u062d\u0648\u0631\u0634 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kfar HaHoresh", "mixname_en": "Kfar HaHoresh | <span>HaAmakim</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u0425\u043e\u0440\u0435\u0448", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0445\u0430-\u0425\u043e\u0440\u0435\u0448 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "FAAED08E6FDABF36000A08315EB8383A", "id": "587", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0435\u0437\u0435\u0440", "label_he": "\u05db\u05e4\u05e8 \u05d1\u05df \u05e0\u05d5\u05df", "mixname_he": "\u05db\u05e4\u05e8 \u05d1\u05df \u05e0\u05d5\u05df | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0628\u0646 \u0646\u0648\u0646", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0628\u0646 \u0646\u0648\u0646 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Kfar Bin Nun", "mixname_en": "Kfar Bin Nun | <span>HaShfela</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0411\u0438\u043d \u041d\u0443\u043d", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0411\u0438\u043d \u041d\u0443\u043d | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "FAE9704843EFFAD48C536F679E377A53", "id": "1380", "areaid": 14, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05e7\u05d9\u05e9\u05d5\u05df", "mixname_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05e7\u05d9\u05e9\u05d5\u05df | <span>\u05d4\u05db\u05e8\u05de\u05dc</span>", "label_ar": "\u0633\u062c\u0646 \u0643\u064a\u0634\u0648\u0646", "mixname_ar": "\u0633\u062c\u0646 \u0643\u064a\u0634\u0648\u0646 | <span>\u0627\u0644\u0643\u0631\u0645\u0644</span>", "label_en": "Kishon Detention Center", "mixname_en": "Kishon Detention Center | <span>HaCarmel</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0421\u043e\u0445\u0430\u0440 \u041a\u0438\u0448\u043e\u043d", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0421\u043e\u0445\u0430\u0440 \u041a\u0438\u0448\u043e\u043d | <span>\u0425\u0430-\u041a\u0430\u0440\u043c\u0435\u043b\u044c</span>"}, {"value": "FAF4BE36C880D38B82772D4BE6ADAEE8", "id": "474", "areaid": 10, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0430\u043c\u0430\u0440\u0438\u044f", "label_he": "\u05d7\u05e8\u05de\u05e9", "mixname_he": "\u05d7\u05e8\u05de\u05e9 | <span>\u05e9\u05d5\u05de\u05e8\u05d5\u05df</span>", "label_ar": "\u062d\u0631\u0645\u064a\u0634", "mixname_ar": "\u062d\u0631\u0645\u064a\u0634 | <span>\u0627\u0644\u0633\u0627\u0645\u0631\u0629</span>", "label_en": "Hermesh", "mixname_en": "Hermesh | <span>Shomron</span>", "label_ru": "\u0425\u0435\u0440\u043c\u0435\u0448", "mixname_ru": "\u0425\u0435\u0440\u043c\u0435\u0448 | <span>\u0421\u0430\u043c\u0430\u0440\u0438\u044f</span>"}, {"value": "FB3CA3CD2C190B94C7EC6EF07FDA4A72", "id": "999", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05e2\u05d9\u05df \u05d7\u05e8\u05d5\u05d3", "mixname_he": "\u05e2\u05d9\u05df \u05d7\u05e8\u05d5\u05d3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0639\u064a\u0646 \u062d\u064a\u0631\u0648\u062a", "mixname_ar": "\u0639\u064a\u0646 \u062d\u064a\u0631\u0648\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ein Harod", "mixname_en": "Ein Harod | <span>HaAmakim</span>", "label_ru": "\u042d\u0439\u043d \u0425\u0430\u0440\u043e\u0434", "mixname_ru": "\u042d\u0439\u043d \u0425\u0430\u0440\u043e\u0434 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "FB61ED2CBC32A64951167FD69D873511", "id": "649", "areaid": 21, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0425\u0435\u0432\u0435\u043b\u044c \u041c\u043e\u0434\u0438\u0438\u043d", "label_he": "\u05db\u05e4\u05e8 \u05e8\u05d5\u05ea", "mixname_he": "\u05db\u05e4\u05e8 \u05e8\u05d5\u05ea | <span>\u05d9\u05e8\u05e7\u05d5\u05df</span>", "label_ar": "\u0643\u0641\u0627\u0631 \u0631\u0648\u062a", "mixname_ar": "\u0643\u0641\u0627\u0631 \u0631\u0648\u062a | <span>\u0627\u0644\u064a\u0631\u0643\u0648\u0646</span>", "label_en": "Kfar Rut", "mixname_en": "Kfar Rut | <span>Yarkon</span>", "label_ru": "\u041a\u0444\u0430\u0440 \u0420\u0443\u0442", "mixname_ru": "\u041a\u0444\u0430\u0440 \u0420\u0443\u0442 | <span>\u042f\u0440\u043a\u043e\u043d</span>"}, {"value": "FBE359677BC05A8D5FC3EA33CB4E1294", "id": "552", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05db\u05d0\u05d1\u05d5\u05dc", "mixname_he": "\u05db\u05d0\u05d1\u05d5\u05dc | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u0643\u0627\u0628\u0648\u0644", "mixname_ar": "\u0643\u0627\u0628\u0648\u0644 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Kabul", "mixname_en": "Kabul | <span>Center Galilee</span>", "label_ru": "\u041a\u0430\u0431\u0443\u043b", "mixname_ru": "\u041a\u0430\u0431\u0443\u043b | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "FBE8F3B0E213FEC709C0A205D231983F", "id": "769", "areaid": 5, "color": "B", "migun_time": 30, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05de\u05e2\u05d2\u05df", "mixname_he": "\u05de\u05e2\u05d2\u05df | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0645\u0639\u062c\u0627\u0646", "mixname_ar": "\u0645\u0639\u062c\u0627\u0646 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Ma'agan", "mixname_en": "Ma'agan | <span>South Golan</span>", "label_ru": "\u041c\u0430\u0430\u0433\u0430\u043d", "mixname_ru": "\u041c\u0430\u0430\u0433\u0430\u043d | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "FBEE5F095425DCEAA3EB0B13A47338C5", "id": "214", "areaid": 9, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05e0\u05e4\u05d7\u05d0", "mixname_he": "\u05d1\u05d9\u05ea \u05e1\u05d5\u05d4\u05e8 \u05e0\u05e4\u05d7\u05d0 | <span>\u05d3\u05e8\u05d5\u05dd \u05d4\u05e0\u05d2\u05d1</span>", "label_ar": "\u0633\u062c\u0646 \u0646\u0641\u062d\u0629", "mixname_ar": "\u0633\u062c\u0646 \u0646\u0641\u062d\u0629 | <span>\u062c\u0646\u0648\u0628 \u0627\u0644\u0646\u0642\u0628</span>", "label_en": "Nafha Prison", "mixname_en": "Nafha Prison | <span>South Negev</span>", "label_ru": "\u0422\u044e\u0440\u043c\u0430 \u041d\u0435\u0444\u0445\u0430", "mixname_ru": "\u0422\u044e\u0440\u043c\u0430 \u041d\u0435\u0444\u0445\u0430 | <span>\u042e\u0436\u043d\u044b\u0439 \u041d\u0435\u0433\u0435\u0432</span>"}, {"value": "FBF086E805B81B686CE887822EEC5FE8", "id": "1132", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05e9\u05de\u05d5\u05e0\u05d4", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05e9\u05de\u05d5\u05e0\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u0634\u0645\u0648\u0646\u0647", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u0634\u0645\u0648\u0646\u0647 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Kiryat Shmona", "mixname_en": "Kiryat Shmona | <span>Confrontation Line</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0428\u043c\u043e\u043d\u0430", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0428\u043c\u043e\u043d\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "FBFEF1094F0B26AFF362166C2D34CD01", "id": "855", "areaid": 4, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u042d\u043c\u0435\u043a \u0445\u0430-\u041c\u0430\u0430\u044f\u043d\u043e\u0442", "label_he": "\u05e0\u05d5\u05d5\u05d4 \u05d0\u05d5\u05e8", "mixname_he": "\u05e0\u05d5\u05d5\u05d4 \u05d0\u05d5\u05e8 | <span>\u05d1\u05e7\u05e2\u05ea \u05d1\u05d9\u05ea \u05e9\u05d0\u05df</span>", "label_ar": "\u0646\u0627\u0641\u064a\u0647 \u0623\u0648\u0631", "mixname_ar": "\u0646\u0627\u0641\u064a\u0647 \u0623\u0648\u0631 | <span>\u0628\u064a\u0643\u0639\u0627\u062a \u0628\u064a\u062a \u0634\u0627\u0646</span>", "label_en": "Neveh Or", "mixname_en": "Neveh Or | <span>Beit She'an Valley</span>", "label_ru": "\u041d\u0435\u0432\u0435 \u041e\u0440", "mixname_ru": "\u041d\u0435\u0432\u0435 \u041e\u0440 | <span>\u0411\u0438\u043a\u044a\u0430\u0442 \u0411\u0435\u0439\u0442 \u0428\u0435\u0430\u043d</span>"}, {"value": "FC1A6EEF8CD1EA0FF81CC281967CDCD7", "id": "221", "areaid": 11, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e2\u05dc\u05de\u05d9\u05df \u05ea\u05dc \u05e8\u05d2\u05d1", "mixname_he": "\u05d1\u05d9\u05ea \u05e2\u05dc\u05de\u05d9\u05df \u05ea\u05dc \u05e8\u05d2\u05d1 | <span>\u05d4\u05de\u05e4\u05e8\u05e5</span>", "label_ar": "\u0645\u0642\u0628\u0631\u0629 \u062a\u0644\u00a0\u0631\u064a\u062c\u064a\u0641", "mixname_ar": "\u0645\u0642\u0628\u0631\u0629 \u062a\u0644\u00a0\u0631\u064a\u062c\u064a\u0641 | <span>\u0647\u0645\u0641\u0631\u0627\u062a\u0633</span>", "label_en": "Tel Regev Cemetary", "mixname_en": "Tel Regev Cemetary | <span>HaMifratz</span>", "label_ru": "\u0411\u0435\u0442 \u0410\u043b\u044c\u043c\u0438\u043d \u0422\u0435\u043b\u044c \u0420\u0435\u0433\u0435\u0432", "mixname_ru": "\u0411\u0435\u0442 \u0410\u043b\u044c\u043c\u0438\u043d \u0422\u0435\u043b\u044c \u0420\u0435\u0433\u0435\u0432 | <span>\u0425\u0430-\u041c\u0438\u0444\u0440\u0430\u0446</span>"}, {"value": "FC5B1D507808CEAD71CFB549AF80FAFD", "id": "1333", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u0438\u043b\u044c\u0431\u043e\u0430", "label_he": "\u05e2\u05d9\u05df \u05d7\u05e8\u05d5\u05d3 \u05d0\u05d9\u05d7\u05d5\u05d3", "mixname_he": "\u05e2\u05d9\u05df \u05d7\u05e8\u05d5\u05d3 \u05d0\u05d9\u05d7\u05d5\u05d3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0639\u064a\u0646 \u062d\u064a\u0631\u0648\u062a", "mixname_ar": "\u0639\u064a\u0646 \u062d\u064a\u0631\u0648\u062a | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Ein Harod (Ihud)", "mixname_en": "Ein Harod (Ihud) | <span>HaAmakim</span>", "label_ru": "\u042d\u0439\u043d \u0425\u0430\u0440\u043e\u0434", "mixname_ru": "\u042d\u0439\u043d \u0425\u0430\u0440\u043e\u0434 | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "FC936FB19A09017CD0187F48E045BF70", "id": "916", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0418\u0435\u0433\u0443\u0434\u0430", "label_he": "\u05e0\u05e1 \u05d4\u05e8\u05d9\u05dd", "mixname_he": "\u05e0\u05e1 \u05d4\u05e8\u05d9\u05dd | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0646\u0633 \u0647\u0627\u0631\u064a\u0645", "mixname_ar": "\u0646\u0633 \u0647\u0627\u0631\u064a\u0645 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ness Harim", "mixname_en": "Ness Harim | <span>Shfelat Yehuda</span>", "label_ru": "\u041d\u0435\u0441 \u0425\u0430\u0440\u0438\u043c", "mixname_ru": "\u041d\u0435\u0441 \u0425\u0430\u0440\u0438\u043c | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "FCD89893A417A0353A11A2001C43B661", "id": "392", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0430\u043b\u0435 \u0419\u043e\u0441\u0435\u0444", "label_he": "\u05d4\u05d9\u05dc\u05d4", "mixname_he": "\u05d4\u05d9\u05dc\u05d4 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0647\u064a\u0644\u0627", "mixname_ar": "\u0647\u064a\u0644\u0627 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Hila", "mixname_en": "Hila | <span>Confrontation Line</span>", "label_ru": "\u0425\u0438\u043b\u0430", "mixname_ru": "\u0425\u0438\u043b\u0430 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "FD7190C3488BABA6D49A819CDE5FBC75", "id": "132", "areaid": 5, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0413\u043e\u043b\u0430\u043d\u044b", "label_he": "\u05d0\u05e0\u05d9\u05e2\u05dd", "mixname_he": "\u05d0\u05e0\u05d9\u05e2\u05dd | <span>\u05d2\u05d5\u05dc\u05df \u05d3\u05e8\u05d5\u05dd</span>", "label_ar": "\u0623\u0646\u064a\u0639\u0627\u0645", "mixname_ar": "\u0623\u0646\u064a\u0639\u0627\u0645 | <span>\u0627\u0644\u062c\u0648\u0644\u0627\u0646 \u0627\u0644\u062c\u0646\u0648\u0628\u064a</span>", "label_en": "Aniam", "mixname_en": "Aniam | <span>South Golan</span>", "label_ru": "\u0410\u043d\u0438\u0430\u043c", "mixname_ru": "\u0410\u043d\u0438\u0430\u043c | <span>\u042e\u0436\u043d\u044b\u0439 \u0413\u043e\u043b\u0430\u043d</span>"}, {"value": "FD9A07E916970518CAD067751E83CA22", "id": "228", "areaid": 24, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05d1\u05d9\u05ea \u05e9\u05de\u05e9", "mixname_he": "\u05d1\u05d9\u05ea \u05e9\u05de\u05e9 | <span>\u05e9\u05e4\u05dc\u05ea \u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0628\u064a\u062a \u0634\u064a\u0645\u0634", "mixname_ar": "\u0628\u064a\u062a \u0634\u064a\u0645\u0634 | <span>\u0634\u064a\u0641\u0644\u0627\u062a \u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Beit Shemesh", "mixname_en": "Beit Shemesh | <span>Shfelat Yehuda</span>", "label_ru": "\u0411\u0435\u0439\u0442 \u0428\u0435\u043c\u0435\u0448", "mixname_ru": "\u0411\u0435\u0439\u0442 \u0428\u0435\u043c\u0435\u0448 | <span>\u0428\u0444\u0435\u043b\u0430\u0442 \u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "FDA66799C783475EAF6C219E5F9BE2F9", "id": "807", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0432\u0443\u043e\u0442 \u0425\u0435\u0440\u043c\u043e\u043d", "label_he": "\u05de\u05e8\u05d2\u05dc\u05d9\u05d5\u05ea", "mixname_he": "\u05de\u05e8\u05d2\u05dc\u05d9\u05d5\u05ea | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0645\u0631\u062c\u0644\u064a\u0648\u062a", "mixname_ar": "\u0645\u0631\u062c\u0644\u064a\u0648\u062a | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Margaliot", "mixname_en": "Margaliot | <span>Confrontation Line</span>", "label_ru": "\u041c\u0430\u0440\u0433\u0430\u043b\u0438\u043e\u0442", "mixname_ru": "\u041c\u0430\u0440\u0433\u0430\u043b\u0438\u043e\u0442 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "FDB7B2CDF66F4A3449A679A8280B3E15", "id": "778", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "", "label_he": "\u05de\u05e2\u05dc\u05d4 \u05d0\u05d3\u05d5\u05de\u05d9\u05dd", "mixname_he": "\u05de\u05e2\u05dc\u05d4 \u05d0\u05d3\u05d5\u05de\u05d9\u05dd | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0645\u0639\u0644\u064a\u0647 \u0623\u062f\u0648\u0645\u064a\u0645", "mixname_ar": "\u0645\u0639\u0644\u064a\u0647 \u0623\u062f\u0648\u0645\u064a\u0645 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Ma'aleh Edomim", "mixname_en": "Ma'aleh Edomim | <span>Yehuda</span>", "label_ru": "\u041c\u0430\u0430\u043b\u0435 \u0410\u0434\u0443\u043c\u0438\u043c", "mixname_ru": "\u041c\u0430\u0430\u043b\u0435 \u0410\u0434\u0443\u043c\u0438\u043c | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "FE005CE6A464D3BD6780A640D511EA5E", "id": "1121", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d8\u05d1\u05e2\u05d5\u05df-\u05d1\u05d9\u05ea \u05d6\u05d9\u05d9\u05d3", "mixname_he": "\u05e7\u05e8\u05d9\u05d9\u05ea \u05d8\u05d1\u05e2\u05d5\u05df-\u05d1\u05d9\u05ea \u05d6\u05d9\u05d9\u05d3 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0643\u0631\u064a\u0627\u062a \u062a\u0628\u0639\u0648\u0646", "mixname_ar": "\u0643\u0631\u064a\u0627\u062a \u062a\u0628\u0639\u0648\u0646 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Kiryat Tivon", "mixname_en": "Kiryat Tivon | <span>HaAmakim</span>", "label_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0422\u0438\u0432\u043e\u043d", "mixname_ru": "\u041a\u0438\u0440\u044c\u044f\u0442 \u0422\u0438\u0432\u043e\u043d | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}, {"value": "FE034300911CFDB9F31840E731AEEF2A", "id": "829", "areaid": 12, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0421\u0434\u043e\u0442 \u0414\u0430\u043d", "label_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05e9\u05d1\u05e2\u05d4", "mixname_he": "\u05de\u05e9\u05de\u05e8 \u05d4\u05e9\u05d1\u05e2\u05d4 | <span>\u05d4\u05e9\u05e4\u05dc\u05d4</span>", "label_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u0634\u0628\u0641\u0639\u0627\u0647", "mixname_ar": "\u0645\u0634\u0645\u0627\u0631 \u0647\u0634\u0628\u0641\u0639\u0627\u0647 | <span>\u0647\u0634\u0641\u064a\u0644\u0627\u0647</span>", "label_en": "Mishmar HaShiva", "mixname_en": "Mishmar HaShiva | <span>HaShfela</span>", "label_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u0428\u0438\u0432\u0430", "mixname_ru": "\u041c\u0438\u0448\u043c\u0430\u0440 \u0445\u0430-\u0428\u0438\u0432\u0430 | <span>\u0425\u0430-\u0428\u0444\u0435\u043b\u0430</span>"}, {"value": "FE04132CDEC24F8A59FB742E5923ED24", "id": "683", "areaid": 30, "color": "B", "migun_time": 0, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0410\u0448\u0435\u0440", "label_he": "\u05dc\u05d9\u05de\u05df", "mixname_he": "\u05dc\u05d9\u05de\u05df | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0644\u064a\u0645\u0646", "mixname_ar": "\u0644\u064a\u0645\u0646 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Lehman", "mixname_en": "Lehman | <span>Confrontation Line</span>", "label_ru": "\u041b\u0435\u0445\u043c\u0430\u043d", "mixname_ru": "\u041b\u0435\u0445\u043c\u0430\u043d | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "FE5D04ECAE8BCC604AA270A368EA05A6", "id": "290", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05d2\u05d1\u05e2\u05ea \u05d0\u05d1\u05e0\u05d9", "mixname_he": "\u05d2\u05d1\u05e2\u05ea \u05d0\u05d1\u05e0\u05d9 | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u062c\u0641\u0639\u0627\u062a \u0623\u0641\u0646\u064a", "mixname_ar": "\u062c\u0641\u0639\u0627\u062a \u0623\u0641\u0646\u064a | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Giv'at Avni", "mixname_en": "Giv'at Avni | <span>Lower Galilee</span>", "label_ru": "\u0413\u0438\u0432\u0430\u0442 \u0410\u0432\u043d\u0438", "mixname_ru": "\u0413\u0438\u0432\u0430\u0442 \u0410\u0432\u043d\u0438 | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "FEA000F0216D50E7C958D4959757B844", "id": "1140", "areaid": 6, "color": "B", "migun_time": 30, "rashut": "", "label_he": "\u05e8\u05d0\u05e9 \u05e4\u05d9\u05e0\u05d4", "mixname_he": "\u05e8\u05d0\u05e9 \u05e4\u05d9\u05e0\u05d4 | <span>\u05d2\u05dc\u05d9\u05dc \u05e2\u05dc\u05d9\u05d5\u05df</span>", "label_ar": "\u0631\u0648\u0634 \u0628\u064a\u0646\u0627", "mixname_ar": "\u0631\u0648\u0634 \u0628\u064a\u0646\u0627 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0639\u0644\u0649</span>", "label_en": "Rosh Pinna", "mixname_en": "Rosh Pinna | <span>Upper Galilee</span>", "label_ru": "\u0420\u043e\u0448 \u041f\u0438\u043d\u0430", "mixname_ru": "\u0420\u043e\u0448 \u041f\u0438\u043d\u0430 | <span>\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "FEF536142B2C774A58E3E7E9713E5196", "id": "371", "areaid": 23, "color": "B", "migun_time": 60, "rashut": "", "label_he": "\u05d3\u05d9\u05e8 \u05d7\u05e0\u05d0", "mixname_he": "\u05d3\u05d9\u05e8 \u05d7\u05e0\u05d0 | <span>\u05de\u05e8\u05db\u05d6 \u05d4\u05d2\u05dc\u05d9\u05dc</span>", "label_ar": "\u062f\u064a\u0631 \u062d\u0646\u0627", "mixname_ar": "\u062f\u064a\u0631 \u062d\u0646\u0627 | <span>\u0645\u0631\u0643\u0632 \u0627\u0644\u062c\u0644\u064a\u0644</span>", "label_en": "Deir Hanna", "mixname_en": "Deir Hanna | <span>Center Galilee</span>", "label_ru": "\u0414\u0438\u0440 \u0425\u0430\u043d\u0430", "mixname_ru": "\u0414\u0438\u0440 \u0425\u0430\u043d\u0430 | <span>\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "FF56863EF413337445EA3C1FCB331CEE", "id": "1022", "areaid": 17, "color": "B", "migun_time": 90, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0430\u0442\u0435 \u0411\u0438\u043d\u044c\u044f\u043c\u0438\u043d", "label_he": "\u05e2\u05dc\u05de\u05d5\u05df", "mixname_he": "\u05e2\u05dc\u05de\u05d5\u05df | <span>\u05d9\u05d4\u05d5\u05d3\u05d4</span>", "label_ar": "\u0639\u0644\u0645\u0648\u0646", "mixname_ar": "\u0639\u0644\u0645\u0648\u0646 | <span>\u064a\u0647\u0648\u062f\u0627</span>", "label_en": "Almon", "mixname_en": "Almon | <span>Yehuda</span>", "label_ru": "\u0410\u043b\u044c\u043c\u043e\u043d", "mixname_ru": "\u0410\u043b\u044c\u043c\u043e\u043d | <span>\u0419\u0435\u0433\u0443\u0434\u0430</span>"}, {"value": "FFA7D9C42634036B23AD5D0FABEFCA84", "id": "1027", "areaid": 30, "color": "B", "migun_time": 15, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0412\u0435\u0440\u0445\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f", "label_he": "\u05e2\u05de\u05d9\u05e8", "mixname_he": "\u05e2\u05de\u05d9\u05e8 | <span>\u05e7\u05d5 \u05d4\u05e2\u05d9\u05de\u05d5\u05ea</span>", "label_ar": "\u0639\u0645\u064a\u0631", "mixname_ar": "\u0639\u0645\u064a\u0631 | <span>\u062e\u0637 \u0627\u0644\u0645\u0648\u0627\u062c\u0647\u0629</span>", "label_en": "Amir", "mixname_en": "Amir | <span>Confrontation Line</span>", "label_ru": "\u0410\u043c\u0438\u0440", "mixname_ru": "\u0410\u043c\u0438\u0440 | <span>\u041a\u0430\u0432 \u0425\u0430-\u0418\u043c\u0443\u0442</span>"}, {"value": "FFC27524E30D378AA2DA62FB9184A49A", "id": "672", "areaid": 7, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u041c\u0435\u0440\u043e\u043c \u0425\u0430\u0433\u0430\u043b\u0438\u043b\u044c", "label_he": "\u05dc\u05d1\u05e0\u05d9\u05dd", "mixname_he": "\u05dc\u05d1\u05e0\u05d9\u05dd | <span>\u05d2\u05dc\u05d9\u05dc \u05ea\u05d7\u05ea\u05d5\u05df</span>", "label_ar": "\u0644\u0628\u0646\u064a\u0645", "mixname_ar": "\u0644\u0628\u0646\u064a\u0645 | <span>\u0627\u0644\u062c\u0644\u064a\u0644 \u0627\u0644\u0623\u0633\u0641\u0644</span>", "label_en": "Livnim", "mixname_en": "Livnim | <span>Lower Galilee</span>", "label_ru": "\u041b\u0438\u0432\u043d\u0438\u043c", "mixname_ru": "\u041b\u0438\u0432\u043d\u0438\u043c | <span>\u041d\u0438\u0436\u043d\u044f\u044f \u0413\u0430\u043b\u0438\u043b\u0435\u044f</span>"}, {"value": "FFCAF54BAFAC885350EAFF72125652EB", "id": "388", "areaid": 34, "color": "B", "migun_time": 60, "rashut": "\u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442: \u0418\u0437\u0440\u0435\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0434\u043e\u043b\u0438\u043d\u0430", "label_he": "\u05d4\u05d5\u05e9\u05e2\u05d9\u05d4", "mixname_he": "\u05d4\u05d5\u05e9\u05e2\u05d9\u05d4 | <span>\u05d4\u05e2\u05de\u05e7\u05d9\u05dd</span>", "label_ar": "\u0647\u0648\u0634\u064a\u0639\u0627", "mixname_ar": "\u0647\u0648\u0634\u064a\u0639\u0627 | <span>\u0647\u0639\u0645\u0627\u0643\u064a\u0645</span>", "label_en": "Hoshaya", "mixname_en": "Hoshaya | <span>HaAmakim</span>", "label_ru": "\u0425\u043e\u0448\u0430\u0439\u044f", "mixname_ru": "\u0425\u043e\u0448\u0430\u0439\u044f | <span>\u0425\u0430-\u0410\u043c\u0430\u043a\u0438\u043c</span>"}] \ No newline at end of file