Spaces:
Sleeping
Sleeping
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="lib/bindings/utils.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | |
<center> | |
<h1></h1> | |
</center> | |
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" /> | |
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>--> | |
<link | |
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" | |
rel="stylesheet" | |
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" | |
crossorigin="anonymous" | |
/> | |
<script | |
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" | |
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" | |
crossorigin="anonymous" | |
></script> | |
<center> | |
<h1></h1> | |
</center> | |
<style type="text/css"> | |
#mynetwork { | |
width: 100%; | |
height: 750px; | |
background-color: #ffffff; | |
border: 1px solid lightgray; | |
position: relative; | |
float: left; | |
} | |
#loadingBar { | |
position:absolute; | |
top:0px; | |
left:0px; | |
width: 100%; | |
height: 750px; | |
background-color:rgba(200,200,200,0.8); | |
-webkit-transition: all 0.5s ease; | |
-moz-transition: all 0.5s ease; | |
-ms-transition: all 0.5s ease; | |
-o-transition: all 0.5s ease; | |
transition: all 0.5s ease; | |
opacity:1; | |
} | |
#bar { | |
position:absolute; | |
top:0px; | |
left:0px; | |
width:20px; | |
height:20px; | |
margin:auto auto auto auto; | |
border-radius:11px; | |
border:2px solid rgba(30,30,30,0.05); | |
background: rgb(0, 173, 246); /* Old browsers */ | |
box-shadow: 2px 0px 4px rgba(0,0,0,0.4); | |
} | |
#border { | |
position:absolute; | |
top:10px; | |
left:10px; | |
width:500px; | |
height:23px; | |
margin:auto auto auto auto; | |
box-shadow: 0px 0px 4px rgba(0,0,0,0.2); | |
border-radius:10px; | |
} | |
#text { | |
position:absolute; | |
top:8px; | |
left:530px; | |
width:30px; | |
height:50px; | |
margin:auto auto auto auto; | |
font-size:22px; | |
color: #000000; | |
} | |
div.outerBorder { | |
position:relative; | |
top:400px; | |
width:600px; | |
height:44px; | |
margin:auto auto auto auto; | |
border:8px solid rgba(0,0,0,0.1); | |
background: rgb(252,252,252); /* Old browsers */ | |
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */ | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */ | |
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */ | |
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */ | |
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */ | |
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */ | |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */ | |
border-radius:72px; | |
box-shadow: 0px 0px 10px rgba(0,0,0,0.2); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="card" style="width: 100%"> | |
<div id="mynetwork" class="card-body"></div> | |
</div> | |
<div id="loadingBar"> | |
<div class="outerBorder"> | |
<div id="text">0%</div> | |
<div id="border"> | |
<div id="bar"></div> | |
</div> | |
</div> | |
</div> | |
<script type="text/javascript"> | |
// initialize global variables. | |
var edges; | |
var nodes; | |
var allNodes; | |
var allEdges; | |
var nodeColors; | |
var originalNodes; | |
var network; | |
var container; | |
var options, data; | |
var filter = { | |
item : '', | |
property : '', | |
value : [] | |
}; | |
// This method is responsible for drawing the graph, returns the drawn network | |
function drawGraph() { | |
var container = document.getElementById('mynetwork'); | |
// parsing and collecting nodes and edges from the python | |
nodes = new vis.DataSet([{"color": "#ffb6c1", "font": {"color": "black"}, "id": "MINISTRY OF AGRICULTURE", "label": "MINISTRY OF AGRICULTURE", "shape": "dot", "size": 30, "title": "Type: ORGANIZATION\nLevel: 1\nID: e857f8b983da4e07b9e1f54afcc4d819"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EL AL", "label": "EL AL", "shape": "dot", "size": 30, "title": "Type: AIRLINE\nLevel: 2\nID: 4a70d3cac5fc4836a2adb3a5060bc54f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SERVICE DOG", "label": "SERVICE DOG", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 393da9a98a7e4d5fa295b3bedd9b91ac"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DANGEROUS DOG", "label": "DANGEROUS DOG", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: 3782c4f50bf840adb31eb0ae3750862b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PET", "label": "PET", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 855cfdfd66354c19bd6facc1a6bf2452"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CHECKED BAGGAGE", "label": "CHECKED BAGGAGE", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 333065f23b084057a7d8bc176aeab05e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "REGISTERED CARGO", "label": "REGISTERED CARGO", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: aa2a2ebec4514fca9424789ea173fdfa"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "9KG", "label": "9KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT\nLevel: 1\nID: 07b7f0a51832481aa00f207896dd4354"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "AUTHORIZATION", "label": "AUTHORIZATION", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 46278e8295f548c08ff155cdc3d8ebfa"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ANIMAL TESTS", "label": "ANIMAL TESTS", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: b81c3f5350414da7945dfba0f9a6eb78"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CHECK-IN COUNTER", "label": "CHECK-IN COUNTER", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 2\nID: 963eb96172bd4d748fb2a9bcb36e6506"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ARRIVALS HALL", "label": "ARRIVALS HALL", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 2\nID: 3017060bc58b40e1ad19e12476beca78"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARGO DIVISION", "label": "CARGO DIVISION", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: d17d3340bebe4c4183f580bf04c06582"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EL AL CARGO STORE", "label": "EL AL CARGO STORE", "shape": "dot", "size": 20, "title": "Type: AIRLINE\nLevel: 1\nID: f46e68314bd14809aa1d43f68765aa02"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARGO TERMINAL", "label": "CARGO TERMINAL", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: d11089b54ff3401e95c030959af30d24"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ISRAEL", "label": "ISRAEL", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: d5fc5e0655504783935200779c11aa2c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CABIN", "label": "CABIN", "shape": "dot", "size": 20, "title": "Type: CABIN SECTION\nLevel: 1\nID: fcef41cf1cf14af7b1a0df8e41125f09"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EXOTIC BIRDS", "label": "EXOTIC BIRDS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 4c2a068d43e549bc94d4332b571c0931"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "VETERINARY SERVICES", "label": "VETERINARY SERVICES", "shape": "dot", "size": 20, "title": "Type: ORGANIZATION\nLevel: 1\nID: 32a1ac55e98d42019d17c2e3f05feb06"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "TRANSPORTATION", "label": "TRANSPORTATION", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: e235e900cdf744a9a96f77f1e32a9927"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "AUTHORIZATION PROCESS", "label": "AUTHORIZATION PROCESS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 42dec0b957904ea392b2235c544664b3"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LUGGAGE COMPARTMENT", "label": "LUGGAGE COMPARTMENT", "shape": "dot", "size": 20, "title": "Type: CABIN SECTION\nLevel: 1\nID: 87acbc581df3427f819f3833ddaab0ae"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SENSITIVITY", "label": "SENSITIVITY", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 0\nID: 3db525e4d60f40f6b368cc75593ebe46"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "FLIGHT", "label": "FLIGHT", "shape": "dot", "size": 20, "title": "Type: TIME PERIOD\nLevel: 0\nID: 15f9ebdba36b43ffac638339409d2a71"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PETS", "label": "PETS", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: 9c22e0d96dbc4cfcaedde33aa57736ef"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "JOHANNESBURG", "label": "JOHANNESBURG", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 1\nID: d1173f3b8c7844afb9508bfc49bc2f4e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LONDON", "label": "LONDON", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 1\nID: 94c483cbba36435aa3990d51a9cd3c7b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "HONG KONG", "label": "HONG KONG", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 1\nID: 32b1f30d2bde43409b7e4d9f6b0a50fc"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "VETERINARIAN", "label": "VETERINARIAN", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 7b46e96fe5d249d29d6b82c4198af4a9"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "INTERNATIONAL CERTIFICATE OF GOOD HEALTH", "label": "INTERNATIONAL CERTIFICATE OF GOOD HEALTH", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: dd25620a07e14451b6ec2c43cf8af95a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BILL OF LADING", "label": "BILL OF LADING", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: 6996f25191914f2c84ee75fd7f56af83"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BUSINESS CABIN", "label": "BUSINESS CABIN", "shape": "dot", "size": 20, "title": "Type: CABIN SECTION\nLevel: 1\nID: 0afa3e98d11d40019360e61d8b7185dd"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "AIRCRAFT HOLD", "label": "AIRCRAFT HOLD", "shape": "dot", "size": 20, "title": "Type: CARGO\nLevel: 1\nID: 1f9ed255f747469587c1743bbeec462d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PASSENGER AIRCRAFT CABIN", "label": "PASSENGER AIRCRAFT CABIN", "shape": "dot", "size": 20, "title": "Type: CARGO\nLevel: 1\nID: a180596c95ee48d093fe5bd0694bd69c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CAGE", "label": "CAGE", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 38cbdcf8ac5d4f5cb0f9b2e88957e5c9"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "WEIGHT", "label": "WEIGHT", "shape": "dot", "size": 20, "title": "Type: DIMENSION\nLevel: 2\nID: 2e4f62ab90414543bc92f2fb6f6e9d2c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PERMIT", "label": "PERMIT", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: d7d907dcb89548fdb61764b4396d4cb3"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "VETERINARY SERVICES DEPARTMENT", "label": "VETERINARY SERVICES DEPARTMENT", "shape": "dot", "size": 20, "title": "Type: ORGANIZATION\nLevel: 1\nID: 2f957ec5f68b4d8b99e7b2490e398d33"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARGO", "label": "CARGO", "shape": "dot", "size": 20, "title": "Type: ROUTE TYPE\nLevel: 2\nID: 1da7a9fe81614722bbbb447e78f91719"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "APPROVAL", "label": "APPROVAL", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 7e37cc7b3b314a57b7876459b9022cd6"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "GUIDELINES", "label": "GUIDELINES", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 0\nID: 4eaf56ac2b5c49d9a09c4b8dfb26aa8a"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ANIMAL", "label": "ANIMAL", "shape": "dot", "size": 20, "title": "Type: \nLevel: 0\nID: 9de4634543ec43e2bc0e50c8f0bccbae"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CDC", "label": "CDC", "shape": "dot", "size": 20, "title": "Type: ORGANIZATION\nLevel: 1\nID: 739703c816fa4daab0c3e87ab78cb8e6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CERTIFICATE OF GOOD HEALTH", "label": "CERTIFICATE OF GOOD HEALTH", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 0b0970ab8d094fada6c38cf76b9bc493"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "TRANSPORT AUTHORIZATION", "label": "TRANSPORT AUTHORIZATION", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 2\nID: f576f533d5684834b2ad603dcedd69b3"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EXPORT LICENSE", "label": "EXPORT LICENSE", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: a0212eea87854734bb538bf89cf12c44"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MEASUREMENTS OF TRANSPORT CAGE", "label": "MEASUREMENTS OF TRANSPORT CAGE", "shape": "dot", "size": 20, "title": "Type: DIMENSION\nLevel: 2\nID: 6aec3fe9441a4b01840e53e026274909"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DOGS", "label": "DOGS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: f883732e9a0c44bfb39633137d3e1fde"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "HIGH-RISK COUNTRY", "label": "HIGH-RISK COUNTRY", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: 2f3b894b783d4163aa93c68062b28304"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "AIRPORT FACILITIES", "label": "AIRPORT FACILITIES", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: a03222ac85fe41dd81e46bb5dc12ad12"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DOCUMENTS AND AUTHORIZATIONS", "label": "DOCUMENTS AND AUTHORIZATIONS", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 6037944e0baf4dec9ce9b7828745ecef"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "TRANSPORTING ANIMALS", "label": "TRANSPORTING ANIMALS", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: 9febcf2eb01e4b8f839233bdd2ac1f69"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "US", "label": "US", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: 746e9806306645819798a6d54fee80d4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MINISTRY OF HEALTH", "label": "MINISTRY OF HEALTH", "shape": "dot", "size": 20, "title": "Type: ORGANIZATION\nLevel: 1\nID: d6bd22a905c946aea0ba3c3de44ad65e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BEN GURION AIRPORT", "label": "BEN GURION AIRPORT", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 1\nID: 2a7eea985cd441fb880dc8ae7fe334b7"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "RABIES ANTIBODY TEST", "label": "RABIES ANTIBODY TEST", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 50f6d1751e4e4554b22b3a5b7ed60640"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE", "label": "BAGGAGE", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: ec2777020cdb4f4cbb2500946e3b40a0"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ANIMAL WEIGHT", "label": "ANIMAL WEIGHT", "shape": "dot", "size": 20, "title": "Type: DIMENSION\nLevel: 0\nID: 17f26772f4eb4775b72d27ef73a56559"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "9 KG", "label": "9 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT\nLevel: 0\nID: 101e684cc91743ef8a036a858c69556a"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "100 KG", "label": "100 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT\nLevel: 0\nID: 0fb995a9f8154519a7c18bb9abb2ee14"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DOCUMENTS", "label": "DOCUMENTS", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 654d11f2f2d34c48aacdb94bcd680db1"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "FLIGHT PERMIT", "label": "FLIGHT PERMIT", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: 5d5dd2bb43ee4842a8e065e8d185ca8a"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "AMSTERDAM", "label": "AMSTERDAM", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 3e0db6accd9d4bd6acad47a8383fa429"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BOSTON", "label": "BOSTON", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 10d6fa6bd359477cbc6bcb755bb3f41a"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MUMBAI", "label": "MUMBAI", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 025b6e498dd54c2788e457eae887d763"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BRUSSELS", "label": "BRUSSELS", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: e0fa5c436eb3487f9dc35f7677427200"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "LARNACA", "label": "LARNACA", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 23d04d9acc404d9d8881c79d6a2e96b9"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "FRANKFURT", "label": "FRANKFURT", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 0a989c88fa3c4f2ebb378f922c093427"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MOSCOW", "label": "MOSCOW", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 58a5249b846f407aa63c7b46b3a77ee2"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MUNICH", "label": "MUNICH", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 88298646015f418a96d4a5532b5ec29c"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MADRID", "label": "MADRID", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 5e9edf9807634b15bc0fadecf2216d35"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BERLIN", "label": "BERLIN", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 046ad1e228e440e69fa88eab6104f06d"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "PRAGUE", "label": "PRAGUE", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 15251b0ccad340a7a1d3de3cfd67bf35"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "WARSAW", "label": "WARSAW", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 7c552f4bd6024b2ca2b104aa048eb872"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "TORONTO", "label": "TORONTO", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 7657da688aae4a7084e8c84055cb96ff"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "VIENNA", "label": "VIENNA", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: b836b42681874de7abaea49d6f2f41b3"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BUDAPEST", "label": "BUDAPEST", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: e888ee0e68fd458a8d96c579a3f0e76f"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "KYIV", "label": "KYIV", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: e2e0a8e5287f4f9b80dd2790561f43a3"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ROME", "label": "ROME", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 0\nID: 41ebf635539d4c0684d18eac659f34b2"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BANGKOK", "label": "BANGKOK", "shape": "dot", "size": 20, "title": "Type: \nLevel: 0\nID: 56de15292e9240d8bf4036cfc43e8604"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LABORATORY RESULTS FOR RABIES ANTIBODIES", "label": "LABORATORY RESULTS FOR RABIES ANTIBODIES", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 4e679df3789e4bd99d11bd0cade9aba5"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "COSTS OF TRANSPORTING ANIMALS", "label": "COSTS OF TRANSPORTING ANIMALS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 0\nID: 90b48f94dcef436a8d4c9572ac90bb85"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ANIMALS WEIGHING UP TO 9 KG", "label": "ANIMALS WEIGHING UP TO 9 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT CATEGORY\nLevel: 0\nID: 4c453f8b59474d59b9addac2b8d756ae"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ANIMALS WEIGHING BETWEEN 9 AND 50 KG", "label": "ANIMALS WEIGHING BETWEEN 9 AND 50 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT CATEGORY\nLevel: 0\nID: a121b3b7bb5e468bbbed844cfedb3ffa"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ANIMALS WEIGHING BETWEEN 50 AND 100 KG", "label": "ANIMALS WEIGHING BETWEEN 50 AND 100 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT CATEGORY\nLevel: 0\nID: 3a37ce81a5794b479fd010a9510fe72e"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ANIMALS WEIGHING MORE THAN 100 KG", "label": "ANIMALS WEIGHING MORE THAN 100 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT CATEGORY\nLevel: 0\nID: 0f38fbf2e0854658be331b4e764abdb4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "50 KG", "label": "50 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT\nLevel: 1\nID: 75e0500969e5483da17c24fe91ed2d75"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "VETERINARY CERTIFICATE", "label": "VETERINARY CERTIFICATE", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 717d69d3ac8743bdac0adee53e0c98cc"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "TRANSPORT CAGE GUIDELINES", "label": "TRANSPORT CAGE GUIDELINES", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 43ff71d6750a4f119133704d553f9bde"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PASSENGER CABIN", "label": "PASSENGER CABIN", "shape": "dot", "size": 20, "title": "Type: CABIN SECTION\nLevel: 1\nID: eb972ce207f7462db17ac0ad6cd9a315"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ALLOWANCE", "label": "ALLOWANCE", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: 046dabdea251492b855317846ab4d72c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CAT", "label": "CAT", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 46ea00c4008b4d8c9c513cbbd259b8ec"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EXOTIC BIRD", "label": "EXOTIC BIRD", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: c44adc8208b6433da862097de945fc6c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "I.D.F SOLDIER", "label": "I.D.F SOLDIER", "shape": "dot", "size": 20, "title": "Type: PASSENGER TYPE\nLevel: 1\nID: d1c9163cf8aa41a6aaddb87ab6a25f43"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SHELL SHOCK", "label": "SHELL SHOCK", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: a146690e4a6742829984355d8a67ecd0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARRYING CASE", "label": "CARRYING CASE", "shape": "dot", "size": 20, "title": "Type: MATERIAL TYPE\nLevel: 1\nID: 2c9d06a87fcf41f28074a383ad77e481"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLIGHT TICKET", "label": "FLIGHT TICKET", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 5924c54757114d0286c67740a30f6afe"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DOG", "label": "DOG", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: 615033f4464e4265b4e6080b480c192f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "HEATHROW AIRPORT", "label": "HEATHROW AIRPORT", "shape": "dot", "size": 20, "title": "Type: AIRPORT\nLevel: 1\nID: e0e4164af9bc439089a121fcfdfbc436"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "UNITED STATES", "label": "UNITED STATES", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: 397c9320c9704dc38d5aba663e4b1db0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ANIMAL AIR TRANSPORT COMPANIES", "label": "ANIMAL AIR TRANSPORT COMPANIES", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: 9eb9b20cbb2a44a8b2b92aa28cc3aca2"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LEASH", "label": "LEASH", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 6666ffb6caaf4a88ac8c1a402ac6def7"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "HARNESSES", "label": "HARNESSES", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: a8708ad9a2e74e5bb4379e2729c93417"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLIGHT DATE", "label": "FLIGHT DATE", "shape": "dot", "size": 20, "title": "Type: TIME PERIOD\nLevel: 1\nID: b9a6fd3c4d594da4a0ed16d450e2b8b0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ADDITIONAL CHARGES", "label": "ADDITIONAL CHARGES", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 1\nID: 376699004cfb409cb37f394f5b1ff81d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CHECK-IN COUNTERS", "label": "CHECK-IN COUNTERS", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: 7e5afa5b43364e7f9cbb3464a867b789"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SANITARY CONDITIONS", "label": "SANITARY CONDITIONS", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: 577267dc7b5640238df2bbbd00cedeb7"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PASSENGER", "label": "PASSENGER", "shape": "dot", "size": 20, "title": "Type: PASSENGER TYPE\nLevel: 1\nID: 7c2cdd1e631d4d9b90358413d2cfc1d2"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SAFETY AND SECURITY REGULATIONS", "label": "SAFETY AND SECURITY REGULATIONS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 2\nID: 982bb3a9b739459e9d9f46a951f55be8"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FORMS", "label": "FORMS", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 8f1e71bf04cf4e4a99941b43808c5b27"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DISTURBANCE", "label": "DISTURBANCE", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: cd333e711d9d475296f07ca311d0af51"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DIRECT THREAT", "label": "DIRECT THREAT", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: 486518d629074a0c9b1c16b29a6341a6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "HOLD", "label": "HOLD", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: 5f4c1aaa2f2a44b8b81dfda992bfffaf"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE SERVICE CENTER", "label": "BAGGAGE SERVICE CENTER", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: 3e9d2a347dc84cf29761196555d00fef"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE CLAIMS DEPARTMENT", "label": "BAGGAGE CLAIMS DEPARTMENT", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: cded8cfa27204b48840e884c11d7e38c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DELAYED BAGGAGE", "label": "DELAYED BAGGAGE", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 2\nID: c6f5f13a0aad46229966f18452cb5393"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CLAIM STATUS", "label": "CLAIM STATUS", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 1\nID: 89707daa18fe485198f0bf21a0276b06"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "COURIER SERVICE", "label": "COURIER SERVICE", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 9d73e9e176c24173a6c05681e8abf962"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CONTACT DETAILS", "label": "CONTACT DETAILS", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 2\nID: 0e848131a307478698536fc653e3f8d8"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LOST BAGGAGE REPORT NUMBER", "label": "LOST BAGGAGE REPORT NUMBER", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: affb353c7f874aabb3c0670f5744b74d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE REPORT", "label": "BAGGAGE REPORT", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 2\nID: 14a45f323591461089513e42917a501d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FORGOTTEN ITEM", "label": "FORGOTTEN ITEM", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 2\nID: 981cffc5ea3149868e080df4822212d4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE DELAY", "label": "BAGGAGE DELAY", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 2\nID: 3fe9805fc16f49ce950698daebeca3f0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE CLAIM", "label": "BAGGAGE CLAIM", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: a7377ecfb3434c4e8b6582f85b652141"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE HANDLING", "label": "BAGGAGE HANDLING", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: da82282d162449c7a574d7645f6bb60f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE REPORTING", "label": "BAGGAGE REPORTING", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: a1438ca8733c40148985a992997e698a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE DELIVERY", "label": "BAGGAGE DELIVERY", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 78b6f78f470d4e86a5e8629ffb11739b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE CLAIMS PROCESS", "label": "BAGGAGE CLAIMS PROCESS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 2\nID: 9d18cbb06a164b06b64949af49b136e4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DAMAGED BAGGAGE", "label": "DAMAGED BAGGAGE", "shape": "dot", "size": 20, "title": "Type: \nLevel: 2\nID: 4c60231a2c5d41039c8734f2b1239f50"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BATTERIES", "label": "BATTERIES", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: c42efdb2735f43e99a7268ccd2f926e2"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "LAPTOP", "label": "LAPTOP", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: e16d1c5acadc4f7f82d7a506abf447b3"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MEDICAL EQUIPMENT", "label": "MEDICAL EQUIPMENT", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: c2004c9aeea64121b8065deb3f3bc635"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "COMPRESSED GASES", "label": "COMPRESSED GASES", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 1fe81eb2fe6643e7bb82f8c7347a4eda"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "CORROSIVES", "label": "CORROSIVES", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 6428f79beeed4e439bfe50d29e3dcca4"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "EXPLOSIVES", "label": "EXPLOSIVES", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 6dd56741733a458db47bbeb06d082f91"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "FLAMMABLE LIQUIDS", "label": "FLAMMABLE LIQUIDS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 5ea8b1df1b394badba308529c0174f75"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "RADIOACTIVE MATERIALS", "label": "RADIOACTIVE MATERIALS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 9a270f3e5eb140f0b3a22548beb86399"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BRIEFCASES WITH ALARM DEVICES", "label": "BRIEFCASES WITH ALARM DEVICES", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: f08b378e25a447b6844483ee42f556a3"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "OXIDIZING MATERIALS", "label": "OXIDIZING MATERIALS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 21c4d204fc26483ab4195910b0fbf9f2"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "POISONS", "label": "POISONS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 923516709ed54e2cb52d97b79572db94"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "HIGH-STRENGTH MAGNETIC MATERIALS", "label": "HIGH-STRENGTH MAGNETIC MATERIALS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 9e189970ef2e45adb2bddf1caf40914f"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "OXYGEN", "label": "OXYGEN", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: a8b225e4f8fd42d58cbb98de176aa046"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "AQUALUNG CYLINDERS", "label": "AQUALUNG CYLINDERS", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: 0d833c5dd6cc4dcd8889bcaa32d9131f"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "COMPRESSED GAS CYLINDERS", "label": "COMPRESSED GAS CYLINDERS", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: dc2169354ebd438bbc57ecf5d0467cfb"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ACIDS", "label": "ACIDS", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: b13f80fd1dee48ca81f32e327df99229"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ALKALIS", "label": "ALKALIS", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: 07058e2afe464fe59876e8026a495c98"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "WET CELL BATTERIES", "label": "WET CELL BATTERIES", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: 8c72bc22c4344fa8acaddee89f93b797"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MATERIALS CONTAINING MERCURY", "label": "MATERIALS CONTAINING MERCURY", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: 9d741b52272547b7924fcb035d977745"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "LIGHT AMMUNITION", "label": "LIGHT AMMUNITION", "shape": "dot", "size": 20, "title": "Type: RESTRICTED ITEM\nLevel: 0\nID: fec17c7f71184b7f92d3bbceefc07d38"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "FLAMMABLE SOLIDS", "label": "FLAMMABLE SOLIDS", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 0\nID: 53ca97ee5d434ba5b1d39eabf127dac4"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BUTANE", "label": "BUTANE", "shape": "dot", "size": 20, "title": "Type: \nLevel: 0\nID: 10dcdaabc164403a87357ca82ae8616b"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "DANGEROUS GOOD", "label": "DANGEROUS GOOD", "shape": "dot", "size": 20, "title": "Type: \nLevel: 0\nID: 0a89f1e5d0a44d4ab6b000c7c17b92ed"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LIQUIDS IN CARRY-ON BAGS", "label": "LIQUIDS IN CARRY-ON BAGS", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: 37ee13aebb0243bd9e2e1d55e32d142e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "WHISKEY", "label": "WHISKEY", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: e13f0995ac5e4ebfa64d8b0f1a2a75b4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "GELS", "label": "GELS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 605ccaa5e3594eb880f7540964165f3b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "COSMETICS", "label": "COSMETICS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 148ef9dcebda457593a8a4da7a5d951a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BABY FOOD", "label": "BABY FOOD", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 84575da15fde42de9323e06fd8dc161e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PRESCRIPTION MEDICATIONS", "label": "PRESCRIPTION MEDICATIONS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: e944d8bb6b6b4f1a9a79d551f4135246"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CREAMS", "label": "CREAMS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 1a2e20d1b53e445a87852b6b32b08c82"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SECURITY CHECKPOINT", "label": "SECURITY CHECKPOINT", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: 868583de041e4008bf4f7cd82e0acedc"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARRY-ON BAGS", "label": "CARRY-ON BAGS", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 116e53bad2dd447ebfe16389da868d03"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "AEROSOLS", "label": "AEROSOLS", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: 48170cc6a83e4280bac72a50d60cdfea"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SPORTING EQUIPMENT", "label": "SPORTING EQUIPMENT", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 2\nID: e04f986f69c240a795deec636e41ae98"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ECONOMY CLASS", "label": "ECONOMY CLASS", "shape": "dot", "size": 20, "title": "Type: TRAVEL CLASS\nLevel: 2\nID: 9718fc21661143208e372ab9fc233734"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PREMIUM CLASS", "label": "PREMIUM CLASS", "shape": "dot", "size": 20, "title": "Type: TRAVEL CLASS\nLevel: 2\nID: e215ac91b8c543619ed0b176d9c10136"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BUSINESS CLASS", "label": "BUSINESS CLASS", "shape": "dot", "size": 20, "title": "Type: TRAVEL CLASS\nLevel: 2\nID: 208c02892f2043c1b2565dde25eea22e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DIMENSIONS", "label": "DIMENSIONS", "shape": "dot", "size": 20, "title": "Type: DIMENSION\nLevel: 1\nID: 415a8558dbd2437b9fedf4af277cb098"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EL AL CARGO DIVISION", "label": "EL AL CARGO DIVISION", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: 046f78fc6a6c46689188d4562b917b03"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CALL CENTER", "label": "CALL CENTER", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: 3e4345bd148649a1bc1682763d111ad9"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "OVERWEIGHT BAGGAGE", "label": "OVERWEIGHT BAGGAGE", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: cc800d3ebd3c456a9efdb0f35b1d0d91"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ADDITIONAL SPORTS EQUIPMENT", "label": "ADDITIONAL SPORTS EQUIPMENT", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 2\nID: 076abdfe5f8c4581acf951cfa53fbb09"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "32 KG", "label": "32 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT CATEGORY\nLevel: 2\nID: 8ec932757e8a4c96b35257b679d058e3"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "30 KG", "label": "30 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT CATEGORY\nLevel: 2\nID: 53d6640192ba431aaa9f400bf96834bd"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "277 CM", "label": "277 CM", "shape": "dot", "size": 20, "title": "Type: LINEAR DIMENSION\nLevel: 1\nID: b32060485b8c4216b1a85aafb4404fcb"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "190 CM", "label": "190 CM", "shape": "dot", "size": 20, "title": "Type: LINEAR DIMENSION\nLevel: 2\nID: d7ffd069952646cabad9f38dfd1d1e6c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LITE FARES", "label": "LITE FARES", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 2\nID: 808fd2ee59874d77b4716cb1e7915b2a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SNOWBOARDING EQUIPMENT", "label": "SNOWBOARDING EQUIPMENT", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: ffa1ac00b4fa4f32b33c45e6f4badc60"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "COMPLIMENTARY TRANSPORT", "label": "COMPLIMENTARY TRANSPORT", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 25074f5999ab4b218f905ad1b18e5c16"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CALL CENTER APPROVAL", "label": "CALL CENTER APPROVAL", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: b77ae937257340d3943cacb6707a9eb6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SKI EQUIPMENT", "label": "SKI EQUIPMENT", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: d5b734e5680e4bb489ee2a752e1abf04"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "70 USD", "label": "70 USD", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 1\nID: 95aff26e87ba4144a6c9f625e1187561"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "150 USD", "label": "150 USD", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 2\nID: a30f395b61594bad84ab27b5deccc35e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "US DOLLARS", "label": "US DOLLARS", "shape": "dot", "size": 20, "title": "Type: CURRENCY\nLevel: 1\nID: a6d4993c6b7541d8ac7f29a604244de1"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EXCESS BAGGAGE CHARGES", "label": "EXCESS BAGGAGE CHARGES", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 1\nID: c0a47d04b66b46e1b20d62dd28cd0c76"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "AIRLINE", "label": "AIRLINE", "shape": "dot", "size": 20, "title": "Type: AIRLINE\nLevel: 1\nID: 9060de5c9e764d348616c9d59d21c43a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LOCAL CURRENCY", "label": "LOCAL CURRENCY", "shape": "dot", "size": 20, "title": "Type: CURRENCY\nLevel: 1\nID: c228ba34632d47e1a62a4c4383cd77dc"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SNOWBOARD EQUIPMENT", "label": "SNOWBOARD EQUIPMENT", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 927cfa1116c5455bb93a819d63e4454a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BICYCLE", "label": "BICYCLE", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: e6b57454fbdb4d64b12b02218fe13b20"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LITE FARE TICKET", "label": "LITE FARE TICKET", "shape": "dot", "size": 20, "title": "Type: TRAVEL CLASS\nLevel: 1\nID: 248b4848969c4aada3a6fec33a095204"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EL AL CALL CENTER", "label": "EL AL CALL CENTER", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: 2c1b66e3f4314dc29b7bdcb5e7294cf3"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PERMITTED DIMENSIONS", "label": "PERMITTED DIMENSIONS", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: efe584d8a5854e15a0932739f642541f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PACKING REGULATIONS", "label": "PACKING REGULATIONS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 8489c726156c41f3937e71f5747a50d6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MOTORIZED BICYCLES", "label": "MOTORIZED BICYCLES", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: 953c762f1093468dadf0bc3ad9bd5512"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EXCEPTIONAL CASES", "label": "EXCEPTIONAL CASES", "shape": "dot", "size": 20, "title": "Type: EXEMPTION\nLevel: 1\nID: 754d6357b4fd46188ce3c1795e6a1d6b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EL AL AIRCRAFT", "label": "EL AL AIRCRAFT", "shape": "dot", "size": 20, "title": "Type: AIRCRAFT TYPE\nLevel: 1\nID: 00182448de084becbedf9b1c183f15b8"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DESTINATION COUNTRY", "label": "DESTINATION COUNTRY", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: d98e67030f8d48a4b4d2748a82748c57"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FRAGILE ITEM", "label": "FRAGILE ITEM", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: 7a0e9f9c78344afa95bda1b85d942985"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "VALUABLE ITEM", "label": "VALUABLE ITEM", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 2\nID: 130a5fd56e604f39b6e4e613d9df47a8"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SPECIAL TRAVEL INSURANCE", "label": "SPECIAL TRAVEL INSURANCE", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 1ab3cb7ff0e24526b83fbbef4dbd9773"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EQUIPMENT", "label": "EQUIPMENT", "shape": "dot", "size": 20, "title": "Type: \nLevel: 2\nID: f333d82425904264a88460a18d1916ad"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE CLAIM AREA", "label": "BAGGAGE CLAIM AREA", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: 0b8f5608ad6148d28a5a3585c36e58f0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DAMAGE REPORT", "label": "DAMAGE REPORT", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 8265339ac1c84278810129db33644448"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CLAIMS DEPARTMENT", "label": "CLAIMS DEPARTMENT", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: 30a89851b9a042e39db87bd97b81e94e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE TAG", "label": "BAGGAGE TAG", "shape": "dot", "size": 20, "title": "Type: LABEL TYPE\nLevel: 1\nID: 585c53e3fa7f43ef990f3cf82199b7de"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE ISSUES", "label": "BAGGAGE ISSUES", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 2\nID: 7ab1c5a618684a179cb722ac442accc1"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EL AL ISRAEL AIRLINES LTD.", "label": "EL AL ISRAEL AIRLINES LTD.", "shape": "dot", "size": 20, "title": "Type: AIRLINE\nLevel: 1\nID: 53fa596c396a40c5a827cde195952bb0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DIGITAL CONTACT FORM", "label": "DIGITAL CONTACT FORM", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: b1c422c16f2b4e37b647c7273ab3682f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MAKOR HAZIUD", "label": "MAKOR HAZIUD", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 147587f9703146b3877cbf313ffff23f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "WE SHOES", "label": "WE SHOES", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 73b316afc403458985867d878397ed9e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MEMSI TOURING", "label": "MEMSI TOURING", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 2f9f49f7fdf14b2a8ee3e02bdc30ce52"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ARTY RIMON", "label": "ARTY RIMON", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: f5da2af27fe94fe3925db3d815cfbeb0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SHIN TIK", "label": "SHIN TIK", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 010cba90de0042df853822ca8346fbcd"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "TREK MARKET", "label": "TREK MARKET", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 4b28e23b775747efa3612de6052d2315"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "KIRYAT ONO", "label": "KIRYAT ONO", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: cca42e1a524f48e08dcf57f4982983f6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "RAMAT GAN", "label": "RAMAT GAN", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: 147a0e05f68949ad818f40bf86f36731"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "GEVATAIM", "label": "GEVATAIM", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: 8adce05c2b1443358e9cd7752355eb3b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAT YAM", "label": "BAT YAM", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: c989bb3cf001426fa0f2444da83df4f8"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "HOLON", "label": "HOLON", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: 3c67ecaa47c94de5a69c59726e20f158"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PETACH TIKVA", "label": "PETACH TIKVA", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 1\nID: 7dcab3c87c62448ca6613c46147c5236"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ZIP CODE 7015001", "label": "ZIP CODE 7015001", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: 060d7ad76dd341a7ab3e614d640a13e1"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "TEL AVIV", "label": "TEL AVIV", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 0\nID: ab518b33c6ca4afa8285592c09ae803f"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ADDRESS", "label": "ADDRESS", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: 28883ea715e54e13b578952739ea0d3b"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SERVICE PICKUP AND DELIVERY", "label": "SERVICE PICKUP AND DELIVERY", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 0\nID: 5a6b590f24aa4dfe913bea415b0be817"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BAVLI NEIGHBORHOOD", "label": "BAVLI NEIGHBORHOOD", "shape": "dot", "size": 20, "title": "Type: GEO\nLevel: 0\nID: 9a1d0bec78ea48ea8ffc4ee0f01c8775"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "HAAILIYA STREET 24", "label": "HAAILIYA STREET 24", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: ddcba343cdde4a0081f3e47f4eaedabb"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BIALIK 3", "label": "BIALIK 3", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: 4538ef867d7646568413d563742de98b"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "STEINMAN 20", "label": "STEINMAN 20", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: f411071d30204bc9a41e4f045c3b68f5"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SOKOLOV 59", "label": "SOKOLOV 59", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: a755633d9cd34f6c8491c3e9ae174d94"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "IZTHAK RABIN 2", "label": "IZTHAK RABIN 2", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: 5d993569ce484c379f2fb936fc94522a"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SHLOMO HA-MELEKH 37", "label": "SHLOMO HA-MELEKH 37", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: 07bb36fa432648dba720c02a801b0860"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "HAMERETZ 6", "label": "HAMERETZ 6", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: 698b5f3c0a0945f5a59a9877f7a26b10"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SERVICE", "label": "SERVICE", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 0\nID: 853f60880e1643c6b906ca8157765714"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "WHATSAPP", "label": "WHATSAPP", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: 88246155e7f248278df6aaf1a4073ea2"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARGO TIKIM VE MIZVADOT", "label": "CARGO TIKIM VE MIZVADOT", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 8d7945c893ec4a7d897c5b91e4a46f5a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MOKA", "label": "MOKA", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: c40a5da6c213447b96d8f1847f79386e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "RIMON MIZVADOT VE TIKIM", "label": "RIMON MIZVADOT VE TIKIM", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 0f3cb7ab58e8471cae0a57faab5c2768"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "GALGAL YAZIV", "label": "GALGAL YAZIV", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 0\nID: a35025e3296e44668a33f10d5dd31f17"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "HAGALGAL", "label": "HAGALGAL", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 1f514bb41a644d49ae699558d157a092"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BUGABOO", "label": "BUGABOO", "shape": "dot", "size": 20, "title": "Type: MATERIAL TYPE\nLevel: 1\nID: 5a571e12b4cc4b2fa068de659665f112"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "DAMAGE TO WHEELCHAIRS", "label": "DAMAGE TO WHEELCHAIRS", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 0\nID: c87461e7b29c4958af7da1f4d5cef751"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "IMPORTANT TO KNOW", "label": "IMPORTANT TO KNOW", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 80724fb409064e6aaddb254108f0328c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DELAY IN RECEIVING BAGGAGE", "label": "DELAY IN RECEIVING BAGGAGE", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 78788c36315c4244b51a34935f68a822"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "RISHON LE ZION", "label": "RISHON LE ZION", "shape": "dot", "size": 20, "title": "Type: CITY\nLevel: 1\nID: 6e0ca91eaf414edfac79015f3eb67474"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "YEHUD", "label": "YEHUD", "shape": "dot", "size": 20, "title": "Type: CITY\nLevel: 1\nID: 4f671d40d6e340f09d119ee02fee8f1b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "REHOVOT", "label": "REHOVOT", "shape": "dot", "size": 20, "title": "Type: CITY\nLevel: 1\nID: ed88467cebc24fddb71deef53ba5678b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "NES ZIONA", "label": "NES ZIONA", "shape": "dot", "size": 20, "title": "Type: CITY\nLevel: 1\nID: 0cf685cdac0645e1b8fb1edc0ec58722"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SHOHAM", "label": "SHOHAM", "shape": "dot", "size": 20, "title": "Type: CITY\nLevel: 1\nID: c5008272ac2642ceb4c32da8dd66625a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "RAMLE", "label": "RAMLE", "shape": "dot", "size": 20, "title": "Type: CITY\nLevel: 1\nID: 00f583abcbca4da59b1b86e5c6d8cabc"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LOD", "label": "LOD", "shape": "dot", "size": 20, "title": "Type: CITY\nLevel: 1\nID: c31c720f25bd48eaaea3db8857de002f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SHLOMO HA-MELEKH", "label": "SHLOMO HA-MELEKH", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: 286402c5940e438d826584f6e4009b29"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EL AL ISRAEL AIRLINES", "label": "EL AL ISRAEL AIRLINES", "shape": "dot", "size": 20, "title": "Type: AIRLINE\nLevel: 1\nID: 0b9456f54f2b48a197223a220824bcd6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLIGHT TICKETS", "label": "FLIGHT TICKETS", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: bbe1db259ba240e899d2381398b896ca"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BOARDING PASSES", "label": "BOARDING PASSES", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 660ebebc076d48bca96e14ff9e9a9c69"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE TAGS", "label": "BAGGAGE TAGS", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 0390dc9fdf034e46b8e676b5ee951c22"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LOST OR DAMAGED BAGGAGE REPORT", "label": "LOST OR DAMAGED BAGGAGE REPORT", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: fec7ef750db946c98d7e91881096d60c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "RECEIPTS", "label": "RECEIPTS", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 16394665c5ed4a9ea005eb108b3487b5"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FRAGILE ITEMS", "label": "FRAGILE ITEMS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: 236bce1b74a84eda85509aacbed9c730"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PERISHABLE ITEMS", "label": "PERISHABLE ITEMS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: ca04092b765543a99ed4c0eec1dbb25d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "VALUABLE ITEMS", "label": "VALUABLE ITEMS", "shape": "dot", "size": 20, "title": "Type: VALUABLE ITEM\nLevel: 1\nID: a1f57cdee8c34d588f5b5a2d15f285f2"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "INTERNATIONAL CONVENTIONS", "label": "INTERNATIONAL CONVENTIONS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 89d05e21ab49470abefd6d8482adeaab"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CONTRACT OF CARRIAGE", "label": "CONTRACT OF CARRIAGE", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: ca1090ce71f442eca2ca24930d04ff32"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MISSING ITEMS", "label": "MISSING ITEMS", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 0\nID: ffeeaa25cc9a4ec3b33583191d22d3ec"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "CLAIM", "label": "CLAIM", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 0\nID: b47cc96c884443cabc89e60f0b5cb11f"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "21 DAYS", "label": "21 DAYS", "shape": "dot", "size": 20, "title": "Type: TIME PERIOD\nLevel: 0\nID: 65320606a46846a9a4b0b37fb4303235"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "7 DAYS", "label": "7 DAYS", "shape": "dot", "size": 20, "title": "Type: TIME PERIOD\nLevel: 0\nID: 855d45e72ea04b5d8a04f55fddc59db1"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "AFTER 21 DAYS", "label": "AFTER 21 DAYS", "shape": "dot", "size": 20, "title": "Type: TIME PERIOD\nLevel: 0\nID: 917c349a2ca044578d6de1677990d8d8"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "DAMAGE", "label": "DAMAGE", "shape": "dot", "size": 20, "title": "Type: \nLevel: 0\nID: cbb4a278ad9142aa9ea5bbec3d4358c5"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARRY-ON BAGGAGE", "label": "CARRY-ON BAGGAGE", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 2\nID: 4034b3d81c8344038574056b28597d6a"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PERSONAL BAGS", "label": "PERSONAL BAGS", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 2\nID: 6bab3139af2b4eac9ccc9c1c81e076e2"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SUN DOR", "label": "SUN DOR", "shape": "dot", "size": 20, "title": "Type: AIRLINE\nLevel: 2\nID: 5ec1c8b929024cb8bdbb7c9448fe9c1f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MATMID FREQUENT FLYER CLUB", "label": "MATMID FREQUENT FLYER CLUB", "shape": "dot", "size": 20, "title": "Type: MEMBERSHIP LEVEL\nLevel: 2\nID: 4f1e9e9a02584225bf48f7a8e43b68ee"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "TROLLEY", "label": "TROLLEY", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 2\nID: fd10c9a4d8c649e0b9c7287a0b3ea9f4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLIGHT TICKET TERMS", "label": "FLIGHT TICKET TERMS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 2\nID: 67d876a50b9c473ebaa829eda64c39c6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BOOKING MANAGEMENT", "label": "BOOKING MANAGEMENT", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 2\nID: 8c6337d857af46ab86aa6964000bf2e2"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "OVERHEAD COMPARTMENTS", "label": "OVERHEAD COMPARTMENTS", "shape": "dot", "size": 20, "title": "Type: CABIN SECTION\nLevel: 2\nID: 75c33e1752ae4719a4a14b5c81c45d84"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE CONVEYOR BELT", "label": "BAGGAGE CONVEYOR BELT", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 2\nID: 2c7f0b1d1d524146b5716ced25fe5c9e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "NORTH AMERICA", "label": "NORTH AMERICA", "shape": "dot", "size": 20, "title": "Type: REGION\nLevel: 2\nID: cd3abd34191144ddb8bbb90ed4d9fd3f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CHECKED LUGGAGE", "label": "CHECKED LUGGAGE", "shape": "dot", "size": 20, "title": "Type: \nLevel: 2\nID: 07f1fbb1cf1d4e4192b2eee1f851986b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGS", "label": "BAGS", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 1a8d07ba96774f8a81ed6a9b52aa7b97"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "16 KG", "label": "16 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT\nLevel: 1\nID: 85bbcafffa204a1cacce4228e9b13433"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "20 KG", "label": "20 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT\nLevel: 1\nID: feae84111f6041fc880c963d24f7c237"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MEDICATIONS", "label": "MEDICATIONS", "shape": "dot", "size": 20, "title": "Type: VALUABLE ITEM\nLevel: 1\nID: b3e20b17ccfe49728789bf7161e89809"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PASSPORTS", "label": "PASSPORTS", "shape": "dot", "size": 20, "title": "Type: VALUABLE ITEM\nLevel: 1\nID: 1b441e27d3a14671b2eb4b5367d49120"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "VALUABLES", "label": "VALUABLES", "shape": "dot", "size": 20, "title": "Type: VALUABLE ITEM\nLevel: 1\nID: 1f2afc57bdd24e96a0f35ffcf83ff752"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ELECTRONIC DEVICES", "label": "ELECTRONIC DEVICES", "shape": "dot", "size": 20, "title": "Type: VALUABLE ITEM\nLevel: 1\nID: 707a387621b24f4c98fa666c3b3e212b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CHECKED BAGS", "label": "CHECKED BAGS", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 30b2436dc2874dfb901031bedd88aab7"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PLANE\u0027S BELLY", "label": "PLANE\u0027S BELLY", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: 387e3593ac154e51a7d5c24ad3189e74"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "NO CHARGE", "label": "NO CHARGE", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 1\nID: 37ea1fd1ee42410ab4f02f0fe3e60dd4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "RECOMMENDATION", "label": "RECOMMENDATION", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 16738f6a72c941d1a0c2c3ccc2b163f6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MAXIMUM WEIGHT", "label": "MAXIMUM WEIGHT", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: 004c58c9c9b14771bc9008036080bbfa"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MAXIMUM DIMENSIONS", "label": "MAXIMUM DIMENSIONS", "shape": "dot", "size": 20, "title": "Type: DIMENSION\nLevel: 2\nID: 9373359df18449ed999bcc813890e7bd"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAG", "label": "BAG", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 23470eb593f4436aa6f503332c540efc"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PERSONAL BAG", "label": "PERSONAL BAG", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 44636abd445f4921969d5a2f446131b0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARRY-ON BAG", "label": "CARRY-ON BAG", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 74a31209afa64a08926c7d405ccb7545"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "56 CM", "label": "56 CM", "shape": "dot", "size": 20, "title": "Type: LINEAR DIMENSION\nLevel: 1\nID: 34c943943f034693af04ea01aa303bc5"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "45 CM", "label": "45 CM", "shape": "dot", "size": 20, "title": "Type: LINEAR DIMENSION\nLevel: 1\nID: ca21a82505604de19e88b93209e90c7b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "25 CM", "label": "25 CM", "shape": "dot", "size": 20, "title": "Type: LINEAR DIMENSION\nLevel: 1\nID: 6ad81dc812274588a36746dc13773bef"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "18X38X30 CM", "label": "18X38X30 CM", "shape": "dot", "size": 20, "title": "Type: LINEAR DIMENSION\nLevel: 1\nID: 642e6167a891426894adaabc5a10a94b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "115 CM", "label": "115 CM", "shape": "dot", "size": 20, "title": "Type: LINEAR DIMENSION\nLevel: 1\nID: 33e8be9f942e45fd916573f5a544efc0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DUTY-FREE ITEMS", "label": "DUTY-FREE ITEMS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 92fac67c161b454599068a5cc1d2b3c5"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "OVERSIZED ITEMS", "label": "OVERSIZED ITEMS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: b346337f4d2e470bba9a3076a3232fcb"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EMERGENCY EXIT ROW", "label": "EMERGENCY EXIT ROW", "shape": "dot", "size": 20, "title": "Type: CABIN SECTION\nLevel: 1\nID: f567987a2fdf4c95b9f36b22a45665a1"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SERVICE CENTER", "label": "SERVICE CENTER", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: 283de71cf8204ae7beb0da17c3f59a3e"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "CHECKED BAG", "label": "CHECKED BAG", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 0\nID: a818c2682a7e4323846cd72a5df57964"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "WEIGHT RESTRICTION", "label": "WEIGHT RESTRICTION", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 0\nID: a7d4ce2bb87348e4a2edfd798a9c39b9"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLIGHT DESTINATION", "label": "FLIGHT DESTINATION", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 2\nID: 4442d291a5cb4a7d88bb80912710f802"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "PRE-CHECKED CARRY-ON", "label": "PRE-CHECKED CARRY-ON", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 0\nID: 1ccab13dcd9a44bdb1f42a025bf47d60"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SECURITY CHECK", "label": "SECURITY CHECK", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 0\nID: c79adb79c02e49318b0b1dd8c8204b97"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "EXTRA SEAT", "label": "EXTRA SEAT", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 0\nID: 2a5ac54644164bfbbeac5255093a24c6"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "UNDER-SEAT STORAGE", "label": "UNDER-SEAT STORAGE", "shape": "dot", "size": 20, "title": "Type: CABIN SECTION\nLevel: 0\nID: 4c431a085afa48a5b3da4745585df4fd"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CHECK-IN PROCESS", "label": "CHECK-IN PROCESS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 2\nID: 0ebb550166fa401c87511faca39f1a38"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "AIRPLANE STORAGE", "label": "AIRPLANE STORAGE", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 0\nID: bf4ab2fe8fc845c0919e9ec16486efee"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BAG DIMENSIONS", "label": "BAG DIMENSIONS", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 0\nID: 0b9dd809342a48f28c827a11a3451053"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BAG WEIGHT", "label": "BAG WEIGHT", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 0\nID: 9fe2ec4441814f54b1b5657d0ba2d47e"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "CARGO HOLD", "label": "CARGO HOLD", "shape": "dot", "size": 20, "title": "Type: CABIN SECTION\nLevel: 0\nID: 3b02b96147df4df08e7d3469086c4085"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "FLIGHT CHECK-IN", "label": "FLIGHT CHECK-IN", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 0\nID: 973cda9e185d4b02bea26cce78349eb3"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BAGGAGE ENFORCEMENT", "label": "BAGGAGE ENFORCEMENT", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 0\nID: f7208ccf44484bbea68011151e9c0aad"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PASSENGERS", "label": "PASSENGERS", "shape": "dot", "size": 20, "title": "Type: PASSENGER TYPE\nLevel: 1\nID: efbda0860a6e4a39869f27f8469672fd"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SECURITY CHECK AREAS", "label": "SECURITY CHECK AREAS", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: 8f5dcc4867f34455aba477a7ff65b987"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "U.S", "label": "U.S", "shape": "dot", "size": 20, "title": "Type: COUNTRY\nLevel: 1\nID: 540e15502e344f84be4f4a1aed82ee9e"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "100 ML", "label": "100 ML", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 0\nID: 45124e27911544059e1c7a9ca980cbd2"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "3.4 OZ", "label": "3.4 OZ", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 0\nID: e0ca06a4c069497fa9127ef55fe7a042"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CLEAR RESEALABLE PLASTIC BAG", "label": "CLEAR RESEALABLE PLASTIC BAG", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 0cf2b59afaaf4020923f9dbe9331af13"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DOCTOR\u0027S NOTE", "label": "DOCTOR\u0027S NOTE", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 07f4b90fbb704b7a80d9ab410a5cfbc8"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "DUTY FREE", "label": "DUTY FREE", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 0\nID: 38be55d7230942089e4ac2f19589232d"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "CONNECTING FLIGHT", "label": "CONNECTING FLIGHT", "shape": "dot", "size": 20, "title": "Type: ROUTE TYPE\nLevel: 0\nID: 57884361bf3b4bdbbb867fd5bb04c201"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "PLASTIC BAG", "label": "PLASTIC BAG", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 0\nID: 7431bf2e46d749ae91bc632676f1df7e"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "PERMITTED AMOUNT", "label": "PERMITTED AMOUNT", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 0\nID: fee188309e8c46949390eacd4b339f87"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "OVERSIZED BAGGAGE", "label": "OVERSIZED BAGGAGE", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 158fe5d2475e424d9f91dba6072b8397"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SUNDOR", "label": "SUNDOR", "shape": "dot", "size": 20, "title": "Type: AIRLINE\nLevel: 1\nID: a842f5ec7f6a46c9bb7f7c3ce24505f4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LITE SERVICE", "label": "LITE SERVICE", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 4df23b27da59451dacdc1976853f0e95"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CLASSIC SERVICE", "label": "CLASSIC SERVICE", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 6c5a6fd0751d4606ae3d6d7f593f70e4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLEX SERVICE", "label": "FLEX SERVICE", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 270411fb102840b5a6196adb7bed1b9e"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE ALLOWANCE", "label": "BAGGAGE ALLOWANCE", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: 45fcde548d2d4a3dbf36db312a74f467"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MANAGE YOUR BOOKING", "label": "MANAGE YOUR BOOKING", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: 63e8d84f7b434be0bf671f58993511d5"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ADDITIONAL PIECES OF BAGGAGE", "label": "ADDITIONAL PIECES OF BAGGAGE", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: e8767b113e714b088f8decef30d17b53"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "$90", "label": "$90", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 1\nID: 631f65b2c452450e8a827ba804f5d22d"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "23 KG", "label": "23 KG", "shape": "dot", "size": 20, "title": "Type: WEIGHT\nLevel: 0\nID: ecd8a53127024bffb837d85dd3b4365c"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "THREE HOURS", "label": "THREE HOURS", "shape": "dot", "size": 20, "title": "Type: TIME PERIOD\nLevel: 1\nID: 68a3209fd01f4ea5a7f0323a2985eca7"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "EUROPE AND MIDDLE EAST", "label": "EUROPE AND MIDDLE EAST", "shape": "dot", "size": 20, "title": "Type: ROUTE TYPE\nLevel: 0\nID: 82d344d00c15442588f59c90aa253286"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "OVERSIZED AND OVERWEIGHT BAGGAGE", "label": "OVERSIZED AND OVERWEIGHT BAGGAGE", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: 9c99ca95d42142b7af733f2ae1d1c2d5"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BAGGAGE POLICY", "label": "BAGGAGE POLICY", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 9a0cd94f07394d7985f1a400ec5f39e1"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION", "label": "DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 1\nID: a249ef05165841599b85134e47dcc22d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PRE-ORDERING", "label": "PRE-ORDERING", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: 3f81b50edc8d435abb0456dcbb9a6aac"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BAGGAGE CHECK-IN PROCESS", "label": "BAGGAGE CHECK-IN PROCESS", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 0\nID: 76b64d62d87f4c01b4f975e8dfd37e52"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "STANDARD BAGGAGE", "label": "STANDARD BAGGAGE", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: a35afe0b5b5246d9b72f4406d502ee00"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BAGGAGE CHECK-IN", "label": "BAGGAGE CHECK-IN", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 0\nID: c2905a90f11b4605b8760dba024ed57a"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "CARRY-ON ALLOWANCE", "label": "CARRY-ON ALLOWANCE", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 0\nID: 0c181f588f064082bb2aa11284636ca3"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ADDITIONAL HANDLING FEE", "label": "ADDITIONAL HANDLING FEE", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 2\nID: 20fa31ae56c9426694252b8a7cf3fad8"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EXCESS BAGGAGE", "label": "EXCESS BAGGAGE", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: 2531af2036de481086d5f8991044aaf9"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CODE-SHARE FLIGHTS", "label": "CODE-SHARE FLIGHTS", "shape": "dot", "size": 20, "title": "Type: ROUTE TYPE\nLevel: 1\nID: 14c7a7d473ee407db2761782f5546352"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MANAGE MY BOOKING", "label": "MANAGE MY BOOKING", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 2\nID: f71114b5a39646f394be701f1f1d5a11"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLIGHT SEGMENT", "label": "FLIGHT SEGMENT", "shape": "dot", "size": 20, "title": "Type: TIME PERIOD\nLevel: 1\nID: b7fa2aaaed4c41f8ac1798074113697f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "$5", "label": "$5", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 2\nID: 38e376f9d09a4b1389b8ec365bc888eb"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "50% DISCOUNT", "label": "50% DISCOUNT", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 2\nID: 50a8108e383e4103be1706c6e7b5e9c3"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "TICKET TYPE", "label": "TICKET TYPE", "shape": "dot", "size": 20, "title": "Type: DIMENSION\nLevel: 1\nID: 17304fe1336e41838563c1672f0d712f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CHECKED BAGGAGE RULES", "label": "CHECKED BAGGAGE RULES", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 2\nID: 68a73d225dc54706a9d3dbf262ffcbeb"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FREE BAGGAGE ALLOWANCE", "label": "FREE BAGGAGE ALLOWANCE", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: ce40383a012446a6902d748714eb16ae"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ADDITIONAL PIECES OF CHECKED BAGGAGE", "label": "ADDITIONAL PIECES OF CHECKED BAGGAGE", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: 2b2f13d49ed041239bf2ea5248c7a1bd"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "INFANT\u0027S CHECKED BAGGAGE", "label": "INFANT\u0027S CHECKED BAGGAGE", "shape": "dot", "size": 20, "title": "Type: BAGGAGE TYPE\nLevel: 1\nID: e9a5bf1c7b364c24b3b112bb7b4697be"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LITE TICKETS", "label": "LITE TICKETS", "shape": "dot", "size": 20, "title": "Type: TRAVEL CLASS\nLevel: 1\nID: 20ee5446ddad474990f6f78ebb971a54"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MAXIMUM SIZE", "label": "MAXIMUM SIZE", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: f6b97fe9c1584088bc399b7948e99145"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EXCESS BAGGAGE RATES", "label": "EXCESS BAGGAGE RATES", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 1\nID: 0a1632b122094512b7e34949fdc0805d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "GOVERNMENT SERVICE TAX", "label": "GOVERNMENT SERVICE TAX", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 2\nID: 7005ffe399e148058f4289dda98697a0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CODESHARE FLIGHTS", "label": "CODESHARE FLIGHTS", "shape": "dot", "size": 20, "title": "Type: ROUTE TYPE\nLevel: 2\nID: 69cac09cf3994398a5b7ca53a72b2923"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "LINEAR DIMENSION", "label": "LINEAR DIMENSION", "shape": "dot", "size": 20, "title": "Type: LINEAR DIMENSION\nLevel: 0\nID: b27043576c0141d88c0c031f759e00d9"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MEASUREMENT UNIT", "label": "MEASUREMENT UNIT", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 0\nID: 438b0ab3d217475fac0221578285c175"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SIZE CATEGORY", "label": "SIZE CATEGORY", "shape": "dot", "size": 20, "title": "Type: SIZE CATEGORY\nLevel: 0\nID: a65d5bf7e2e442f6963026088d63a8ab"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "WEIGHT CATEGORY", "label": "WEIGHT CATEGORY", "shape": "dot", "size": 20, "title": "Type: WEIGHT CATEGORY\nLevel: 0\nID: 66db5b831aca4fa6bbbde9408bfc820f"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "WHEEL CONFIGURATION", "label": "WHEEL CONFIGURATION", "shape": "dot", "size": 20, "title": "Type: WHEEL CONFIGURATION\nLevel: 0\nID: e7fd98268f914b53a15c421f0f0b0c39"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SPECIAL ITEM", "label": "SPECIAL ITEM", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 0\nID: 6f8fd10a9f96485d9b339f76034819e5"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PROHIBITED ITEM", "label": "PROHIBITED ITEM", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: deea90f618a34d75ae636f67b0e0906e"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "RESTRICTED ITEM", "label": "RESTRICTED ITEM", "shape": "dot", "size": 20, "title": "Type: RESTRICTED ITEM\nLevel: 0\nID: ae8a67c0a5084275a606da63f7c289a7"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "REQUIRED DOCUMENT", "label": "REQUIRED DOCUMENT", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 0\nID: aaa80a26aa5843c19c54db3bd0fb29a1"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "LABEL TYPE", "label": "LABEL TYPE", "shape": "dot", "size": 20, "title": "Type: LABEL TYPE\nLevel: 0\nID: ae15652365194dbba55f347612dae586"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "TAG CATEGORY", "label": "TAG CATEGORY", "shape": "dot", "size": 20, "title": "Type: TAG CATEGORY\nLevel: 0\nID: a4f8a8ea04db434a8acc5eb3fed93fb9"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "SERVICE LOCATION", "label": "SERVICE LOCATION", "shape": "dot", "size": 20, "title": "Type: SERVICE LOCATION\nLevel: 0\nID: 0bed92a99d704b75adcb72df2ea946ec"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "TIME PERIOD", "label": "TIME PERIOD", "shape": "dot", "size": 20, "title": "Type: TIME PERIOD\nLevel: 0\nID: 8f6aab02097f463ea28d7dd6aa01e2ae"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "PASSENGER TYPE", "label": "PASSENGER TYPE", "shape": "dot", "size": 20, "title": "Type: PASSENGER TYPE\nLevel: 0\nID: 71c643debc48430eb83ec54959648c2f"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MEMBERSHIP LEVEL", "label": "MEMBERSHIP LEVEL", "shape": "dot", "size": 20, "title": "Type: MEMBERSHIP LEVEL\nLevel: 0\nID: e722355664a641fa8e6eca78e8111d33"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "GROUP CATEGORY", "label": "GROUP CATEGORY", "shape": "dot", "size": 20, "title": "Type: GROUP CATEGORY\nLevel: 0\nID: 9c082e447da541c39fdfc663c4c86884"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "ADDITIONAL SERVICES", "label": "ADDITIONAL SERVICES", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: 0b78d86a9a28421692d71f731035cfd4"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "CHANGE", "label": "CHANGE", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 0\nID: 00e980f9659e46a8811b8ff3c0d68789"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "REFUND", "label": "REFUND", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 0\nID: 4c32c90002264a968e084bb552edb3d4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FULL CHARGE", "label": "FULL CHARGE", "shape": "dot", "size": 20, "title": "Type: FEE STRUCTURE\nLevel: 1\nID: bc7af5b9a1eb4a7c94a38a8d5117d51b"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "CANCELLATION", "label": "CANCELLATION", "shape": "dot", "size": 20, "title": "Type: \nLevel: 0\nID: ecafc47b78d7400e929412ffeb4bfae1"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SPARE BATTERIES", "label": "SPARE BATTERIES", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: 4cabd89d215a4085a2a45a88db918586"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DRY CELL ALKALINE BATTERIES", "label": "DRY CELL ALKALINE BATTERIES", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: 7ad4bb0f649c405fae3d2dac6140b538"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LITHIUM-ION BATTERIES", "label": "LITHIUM-ION BATTERIES", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: 6c64dccc925d44ff91b736483bc2b88f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "PORTABLE CHARGERS", "label": "PORTABLE CHARGERS", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: 3bf40fdf7ddd4186bd02f875e553f227"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ITEMS CONTAINING MERCURY", "label": "ITEMS CONTAINING MERCURY", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 6bfc6678ee5a4befb5e9dbb3ecb94402"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "INFECTIOUS SUBSTANCES", "label": "INFECTIOUS SUBSTANCES", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 3b751002a7574a5285d9a81ca863f5ec"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MAGNETIC MATERIALS", "label": "MAGNETIC MATERIALS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 0\nID: 5908cbb8b616429b95fea6fc820c5e0f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LITHIUM METAL BATTERIES", "label": "LITHIUM METAL BATTERIES", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 1\nID: 7441206d67ad4aae9fc12f4b807b7bbe"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "NON-SPILLABLE WET BATTERIES", "label": "NON-SPILLABLE WET BATTERIES", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 1\nID: 3c0d551d41104bc089ee4b038b669a76"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "MOTORIZED WHEELCHAIRS", "label": "MOTORIZED WHEELCHAIRS", "shape": "dot", "size": 20, "title": "Type: EXEMPTION\nLevel: 0\nID: a061044f72fd4375ad0c96de79ab0530"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "CARRY-ON", "label": "CARRY-ON", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 1\nID: 50e4182d46df4f4e876c282e5558ec69"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "EXEMPTION", "label": "EXEMPTION", "shape": "dot", "size": 20, "title": "Type: \nLevel: 0\nID: 6825a41a4d1a4aa8b456742a1ece97a6"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "100 WATT-HOURS", "label": "100 WATT-HOURS", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 1\nID: ddbb9ec4b7074e03a1c897823648e8c7"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "160 WATT-HOURS", "label": "160 WATT-HOURS", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 1\nID: ae8556930254440eba3ecdade4168978"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "2 GRAMS", "label": "2 GRAMS", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 1\nID: 2562533ec98546c99cdd009875fec07b"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "12 VOLTS", "label": "12 VOLTS", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 1\nID: dc79a61f395141e39ecefadde27ce0b8"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "49 CFR", "label": "49 CFR", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: cd50dbb8efb64829871541a2a2fad53f"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "STRONG OUTER PACKAGING", "label": "STRONG OUTER PACKAGING", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: 4130231b61bf461099b6930c0b941cda"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "NON-CONDUCTIVE CAPS", "label": "NON-CONDUCTIVE CAPS", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: fb54772c19214e3ba6f13b7d34cb42fa"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLAMMABLE MATERIAL", "label": "FLAMMABLE MATERIAL", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: bf861eef45604cefb4a09d72e566f42d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "LITHIUM BATTERIES", "label": "LITHIUM BATTERIES", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: d58edf5f35e7451db59135b6f1b6a234"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "SPARE LITHIUM BATTERIES", "label": "SPARE LITHIUM BATTERIES", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: 5e0c933b06bd49adb0bf3ba999d3eed1"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "WATT-HOURS", "label": "WATT-HOURS", "shape": "dot", "size": 20, "title": "Type: MEASUREMENT UNIT\nLevel: 0\nID: cb3899f6547c4778bcf421115a2d98a0"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BATTERY-POWERED DEVICES", "label": "BATTERY-POWERED DEVICES", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 7dbc156be8544fbcbb368125bb587ddb"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "IATA REGULATIONS", "label": "IATA REGULATIONS", "shape": "dot", "size": 20, "title": "Type: POLICY\nLevel: 1\nID: c603ef12980947a1aa0feea576554a2f"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "100 WH", "label": "100 WH", "shape": "dot", "size": 20, "title": "Type: WEIGHT\nLevel: 0\nID: 91b55e0bf2cc4122bee3fc0627ae7029"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "15 ELECTRONIC DEVICES", "label": "15 ELECTRONIC DEVICES", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 0\nID: 93ea1e7b668a45e68bb96f079f42135a"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "20 SPARE BATTERIES", "label": "20 SPARE BATTERIES", "shape": "dot", "size": 20, "title": "Type: ALLOWANCE\nLevel: 0\nID: 1bcb74a1b4d74f6bb7e0f79100ddc6dc"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BATTERY CASE", "label": "BATTERY CASE", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 0\nID: 25348a88f1554027b07a840ceb768a6c"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ORIGINAL PACKAGING", "label": "ORIGINAL PACKAGING", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 0\nID: abaae17c905f432b8fc51ac3a0c84141"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "INSULATED", "label": "INSULATED", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 1\nID: cb18906c4dc547a195d2f49563d9f5b8"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ACCEPTABLE BATTERY TYPES", "label": "ACCEPTABLE BATTERY TYPES", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 0\nID: ed5f91cc71c44f63b0dc36ee3b737f85"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "BATTERY TERMINALS", "label": "BATTERY TERMINALS", "shape": "dot", "size": 20, "title": "Type: RESTRICTION\nLevel: 0\nID: 05c6dd802beb464499a1b7d2f0562db4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "BATTERY-POWERED MOBILITY AIDS", "label": "BATTERY-POWERED MOBILITY AIDS", "shape": "dot", "size": 20, "title": "Type: SPECIAL ITEM\nLevel: 1\nID: 7de19290e8d2406c957b1bd7cecd36eb"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLIGHT-APPROVED BATTERIES", "label": "FLIGHT-APPROVED BATTERIES", "shape": "dot", "size": 20, "title": "Type: RESTRICTED ITEM\nLevel: 1\nID: 207193e2ed8746db969c76e0f69a448d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "HAZARDOUS MATERIALS", "label": "HAZARDOUS MATERIALS", "shape": "dot", "size": 20, "title": "Type: PROHIBITED ITEM\nLevel: 1\nID: 251d2f3a12ca423783960de4d7a3ff81"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DECLARATION FORM", "label": "DECLARATION FORM", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 1\nID: 4d23c16b82a742688e9afc196b6ddda5"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "DRY ICE", "label": "DRY ICE", "shape": "dot", "size": 20, "title": "Type: DANGEROUS GOOD\nLevel: 1\nID: 18ff820194944bde84313ece2f62c35d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "FLIGHT AID", "label": "FLIGHT AID", "shape": "dot", "size": 20, "title": "Type: SERVICE TYPE\nLevel: 1\nID: bb21c12858f9403e9bb02f9019bac4f4"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "EMAIL NOTIFICATION", "label": "EMAIL NOTIFICATION", "shape": "dot", "size": 20, "title": "Type: REQUIRED DOCUMENT\nLevel: 2\nID: 2929000891064cf9a1683b7bfe1bf81d"}, {"color": "#ffb6c1", "font": {"color": "black"}, "id": "MOBILITY AID", "label": "MOBILITY AID", "shape": "dot", "size": 20, "title": "Type: \nLevel: 1\nID: 69293a20a9c54846b66e0dfcba861454"}]); | |
edges = new vis.DataSet([{"from": "MINISTRY OF AGRICULTURE", "title": "Weight: 14.0", "to": "EL AL", "width": 7.0}, {"from": "MINISTRY OF AGRICULTURE", "title": "Weight: 16.0", "to": "AUTHORIZATION", "width": 8.0}, {"from": "MINISTRY OF AGRICULTURE", "title": "Weight: 6.0", "to": "ANIMAL TESTS", "width": 3.0}, {"from": "MINISTRY OF AGRICULTURE", "title": "Weight: 8.0", "to": "ISRAEL", "width": 4.0}, {"from": "MINISTRY OF AGRICULTURE", "title": "Weight: 8.0", "to": "VETERINARY SERVICES", "width": 4.0}, {"from": "EL AL", "title": "Weight: 22.0", "to": "SERVICE DOG", "width": 11.0}, {"from": "EL AL", "title": "Weight: 15.0", "to": "DANGEROUS DOG", "width": 7.5}, {"from": "EL AL", "title": "Weight: 8.0", "to": "PET", "width": 4.0}, {"from": "EL AL", "title": "Weight: 20.0", "to": "CHECK-IN COUNTER", "width": 10.0}, {"from": "EL AL", "title": "Weight: 7.0", "to": "ARRIVALS HALL", "width": 3.5}, {"from": "EL AL", "title": "Weight: 36.0", "to": "CARGO DIVISION", "width": 18.0}, {"from": "EL AL", "title": "Weight: 20.0", "to": "CHECKED BAGGAGE", "width": 10.0}, {"from": "EL AL", "title": "Weight: 5.0", "to": "REGISTERED CARGO", "width": 2.5}, {"from": "EL AL", "title": "Weight: 5.0", "to": "CABIN", "width": 2.5}, {"from": "EL AL", "title": "Weight: 15.0", "to": "PETS", "width": 7.5}, {"from": "EL AL", "title": "Weight: 7.0", "to": "TRANSPORTATION", "width": 3.5}, {"from": "EL AL", "title": "Weight: 8.0", "to": "CDC", "width": 4.0}, {"from": "EL AL", "title": "Weight: 7.0", "to": "ANIMAL", "width": 3.5}, {"from": "EL AL", "title": "Weight: 1.0", "to": "BUSINESS CABIN", "width": 0.5}, {"from": "EL AL", "title": "Weight: 7.0", "to": "BEN GURION AIRPORT", "width": 3.5}, {"from": "EL AL", "title": "Weight: 1.0", "to": "ANIMAL AIR TRANSPORT COMPANIES", "width": 0.5}, {"from": "EL AL", "title": "Weight: 8.0", "to": "DOG", "width": 4.0}, {"from": "EL AL", "title": "Weight: 1.0", "to": "PASSENGER", "width": 0.5}, {"from": "EL AL", "title": "Weight: 9.0", "to": "SAFETY AND SECURITY REGULATIONS", "width": 4.5}, {"from": "EL AL", "title": "Weight: 18.0", "to": "BAGGAGE", "width": 9.0}, {"from": "EL AL", "title": "Weight: 8.0", "to": "FRAGILE ITEM", "width": 4.0}, {"from": "EL AL", "title": "Weight: 8.0", "to": "VALUABLE ITEM", "width": 4.0}, {"from": "EL AL", "title": "Weight: 6.0", "to": "EQUIPMENT", "width": 3.0}, {"from": "EL AL", "title": "Weight: 8.0", "to": "BAGGAGE ISSUES", "width": 4.0}, {"from": "EL AL", "title": "Weight: 14.0", "to": "CARRY-ON BAGGAGE", "width": 7.0}, {"from": "EL AL", "title": "Weight: 9.0", "to": "PERSONAL BAG", "width": 4.5}, {"from": "EL AL", "title": "Weight: 9.0", "to": "CARRY-ON BAG", "width": 4.5}, {"from": "EL AL", "title": "Weight: 8.0", "to": "CHECK-IN COUNTERS", "width": 4.0}, {"from": "EL AL", "title": "Weight: 1.0", "to": "FLIGHT DESTINATION", "width": 0.5}, {"from": "EL AL", "title": "Weight: 1.0", "to": "LIQUIDS IN CARRY-ON BAGS", "width": 0.5}, {"from": "EL AL", "title": "Weight: 7.0", "to": "SUNDOR", "width": 3.5}, {"from": "EL AL", "title": "Weight: 8.0", "to": "PREMIUM CLASS", "width": 4.0}, {"from": "EL AL", "title": "Weight: 8.0", "to": "BUSINESS CLASS", "width": 4.0}, {"from": "EL AL", "title": "Weight: 6.0", "to": "ADDITIONAL HANDLING FEE", "width": 3.0}, {"from": "EL AL", "title": "Weight: 7.0", "to": "MANAGE MY BOOKING", "width": 3.5}, {"from": "EL AL", "title": "Weight: 7.0", "to": "CHECK-IN PROCESS", "width": 3.5}, {"from": "EL AL", "title": "Weight: 6.0", "to": "$5", "width": 3.0}, {"from": "EL AL", "title": "Weight: 7.0", "to": "50% DISCOUNT", "width": 3.5}, {"from": "EL AL", "title": "Weight: 5.0", "to": "CHECKED BAGGAGE RULES", "width": 2.5}, {"from": "EL AL", "title": "Weight: 8.0", "to": "BAGGAGE ALLOWANCE", "width": 4.0}, {"from": "EL AL", "title": "Weight: 4.0", "to": "GOVERNMENT SERVICE TAX", "width": 2.0}, {"from": "EL AL", "title": "Weight: 5.0", "to": "CODESHARE FLIGHTS", "width": 2.5}, {"from": "EL AL", "title": "Weight: 1.0", "to": "BATTERY-POWERED DEVICES", "width": 0.5}, {"from": "EL AL", "title": "Weight: 8.0", "to": "BATTERY-POWERED MOBILITY AIDS", "width": 4.0}, {"from": "EL AL", "title": "Weight: 8.0", "to": "HAZARDOUS MATERIALS", "width": 4.0}, {"from": "EL AL", "title": "Weight: 7.0", "to": "MOBILITY AID", "width": 3.5}, {"from": "EL AL", "title": "Weight: 1.0", "to": "EMAIL NOTIFICATION", "width": 0.5}, {"from": "EL AL", "title": "Weight: 7.0", "to": "BAGGAGE POLICY", "width": 3.5}, {"from": "SERVICE DOG", "title": "Weight: 9.0", "to": "PASSENGER CABIN", "width": 4.5}, {"from": "SERVICE DOG", "title": "Weight: 17.0", "to": "VETERINARY CERTIFICATE", "width": 8.5}, {"from": "SERVICE DOG", "title": "Weight: 9.0", "to": "I.D.F SOLDIER", "width": 4.5}, {"from": "SERVICE DOG", "title": "Weight: 8.0", "to": "SHELL SHOCK", "width": 4.0}, {"from": "SERVICE DOG", "title": "Weight: 7.0", "to": "HEATHROW AIRPORT", "width": 3.5}, {"from": "SERVICE DOG", "title": "Weight: 8.0", "to": "UNITED STATES", "width": 4.0}, {"from": "SERVICE DOG", "title": "Weight: 6.0", "to": "ISRAEL", "width": 3.0}, {"from": "SERVICE DOG", "title": "Weight: 8.0", "to": "CAGE", "width": 4.0}, {"from": "SERVICE DOG", "title": "Weight: 9.0", "to": "LEASH", "width": 4.5}, {"from": "SERVICE DOG", "title": "Weight: 9.0", "to": "HARNESSES", "width": 4.5}, {"from": "SERVICE DOG", "title": "Weight: 7.0", "to": "FLIGHT DATE", "width": 3.5}, {"from": "SERVICE DOG", "title": "Weight: 6.0", "to": "ADDITIONAL CHARGES", "width": 3.0}, {"from": "SERVICE DOG", "title": "Weight: 8.0", "to": "CHECK-IN COUNTERS", "width": 4.0}, {"from": "SERVICE DOG", "title": "Weight: 7.0", "to": "DOCUMENTS", "width": 3.5}, {"from": "SERVICE DOG", "title": "Weight: 1.0", "to": "SANITARY CONDITIONS", "width": 0.5}, {"from": "DANGEROUS DOG", "title": "Weight: 6.0", "to": "LUGGAGE COMPARTMENT", "width": 3.0}, {"from": "PET", "title": "Weight: 6.0", "to": "CHECKED BAGGAGE", "width": 3.0}, {"from": "PET", "title": "Weight: 6.0", "to": "REGISTERED CARGO", "width": 3.0}, {"from": "PET", "title": "Weight: 1.0", "to": "9KG", "width": 0.5}, {"from": "PET", "title": "Weight: 8.0", "to": "ISRAEL", "width": 4.0}, {"from": "PET", "title": "Weight: 5.0", "to": "JOHANNESBURG", "width": 2.5}, {"from": "PET", "title": "Weight: 5.0", "to": "LONDON", "width": 2.5}, {"from": "PET", "title": "Weight: 1.0", "to": "HONG KONG", "width": 0.5}, {"from": "PET", "title": "Weight: 9.0", "to": "BILL OF LADING", "width": 4.5}, {"from": "PET", "title": "Weight: 8.0", "to": "INTERNATIONAL CERTIFICATE OF GOOD HEALTH", "width": 4.0}, {"from": "PET", "title": "Weight: 7.0", "to": "VETERINARIAN", "width": 3.5}, {"from": "PET", "title": "Weight: 6.0", "to": "BUSINESS CABIN", "width": 3.0}, {"from": "PET", "title": "Weight: 8.0", "to": "AIRCRAFT HOLD", "width": 4.0}, {"from": "PET", "title": "Weight: 8.0", "to": "PASSENGER AIRCRAFT CABIN", "width": 4.0}, {"from": "PET", "title": "Weight: 8.0", "to": "PASSENGER CABIN", "width": 4.0}, {"from": "PET", "title": "Weight: 6.0", "to": "ALLOWANCE", "width": 3.0}, {"from": "PET", "title": "Weight: 1.0", "to": "TRANSPORT CAGE GUIDELINES", "width": 0.5}, {"from": "PET", "title": "Weight: 7.0", "to": "CARRYING CASE", "width": 3.5}, {"from": "PET", "title": "Weight: 1.0", "to": "FLIGHT TICKET", "width": 0.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 1.0", "to": "ARRIVALS HALL", "width": 0.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 8.0", "to": "SPORTING EQUIPMENT", "width": 4.0}, {"from": "CHECKED BAGGAGE", "title": "Weight: 1.0", "to": "AIRLINE", "width": 0.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 9.0", "to": "EXCESS BAGGAGE CHARGES", "width": 4.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 8.0", "to": "SKI EQUIPMENT", "width": 4.0}, {"from": "CHECKED BAGGAGE", "title": "Weight: 8.0", "to": "SNOWBOARD EQUIPMENT", "width": 4.0}, {"from": "CHECKED BAGGAGE", "title": "Weight: 8.0", "to": "BICYCLE", "width": 4.0}, {"from": "CHECKED BAGGAGE", "title": "Weight: 9.0", "to": "PERMITTED DIMENSIONS", "width": 4.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 9.0", "to": "50 KG", "width": 4.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 9.0", "to": "277 CM", "width": 4.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 7.0", "to": "EL AL AIRCRAFT", "width": 3.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 8.0", "to": "BAGGAGE", "width": 4.0}, {"from": "CHECKED BAGGAGE", "title": "Weight: 7.0", "to": "PREMIUM CLASS", "width": 3.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 7.0", "to": "BUSINESS CLASS", "width": 3.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 7.0", "to": "EXCESS BAGGAGE", "width": 3.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 15.0", "to": "BAGGAGE ALLOWANCE", "width": 7.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 5.0", "to": "CODE-SHARE FLIGHTS", "width": 2.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 8.0", "to": "$90", "width": 4.0}, {"from": "CHECKED BAGGAGE", "title": "Weight: 1.0", "to": "ADDITIONAL PIECES OF CHECKED BAGGAGE", "width": 0.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 9.0", "to": "MAXIMUM SIZE", "width": 4.5}, {"from": "CHECKED BAGGAGE", "title": "Weight: 8.0", "to": "INFANT\u0027S CHECKED BAGGAGE", "width": 4.0}, {"from": "CHECKED BAGGAGE", "title": "Weight: 6.0", "to": "EL AL CARGO DIVISION", "width": 3.0}, {"from": "CHECKED BAGGAGE", "title": "Weight: 7.0", "to": "SUNDOR", "width": 3.5}, {"from": "REGISTERED CARGO", "title": "Weight: 6.0", "to": "ANIMAL", "width": 3.0}, {"from": "9KG", "title": "Weight: 4.0", "to": "CABIN", "width": 2.0}, {"from": "AUTHORIZATION", "title": "Weight: 1.0", "to": "ANIMAL TESTS", "width": 0.5}, {"from": "AUTHORIZATION", "title": "Weight: 9.0", "to": "VETERINARY SERVICES DEPARTMENT", "width": 4.5}, {"from": "CARGO DIVISION", "title": "Weight: 6.0", "to": "BILL OF LADING", "width": 3.0}, {"from": "CARGO DIVISION", "title": "Weight: 6.0", "to": "CERTIFICATE OF GOOD HEALTH", "width": 3.0}, {"from": "CARGO DIVISION", "title": "Weight: 6.0", "to": "TRANSPORT AUTHORIZATION", "width": 3.0}, {"from": "CARGO DIVISION", "title": "Weight: 6.0", "to": "EXPORT LICENSE", "width": 3.0}, {"from": "CARGO DIVISION", "title": "Weight: 6.0", "to": "MEASUREMENTS OF TRANSPORT CAGE", "width": 3.0}, {"from": "CARGO DIVISION", "title": "Weight: 1.0", "to": "TRANSPORTING ANIMALS", "width": 0.5}, {"from": "CARGO DIVISION", "title": "Weight: 6.0", "to": "BICYCLE", "width": 3.0}, {"from": "EL AL CARGO STORE", "title": "Weight: 1.0", "to": "EL AL CARGO STORE", "width": 0.5}, {"from": "EL AL CARGO STORE", "title": "Weight: 1.0", "to": "CARGO TERMINAL", "width": 0.5}, {"from": "EL AL CARGO STORE", "title": "Weight: 7.0", "to": "ISRAEL", "width": 3.5}, {"from": "ISRAEL", "title": "Weight: 1.0", "to": "CDC", "width": 0.5}, {"from": "ISRAEL", "title": "Weight: 16.0", "to": "MINISTRY OF HEALTH", "width": 8.0}, {"from": "ISRAEL", "title": "Weight: 5.0", "to": "HIGH-RISK COUNTRY", "width": 2.5}, {"from": "ISRAEL", "title": "Weight: 9.0", "to": "LIQUIDS IN CARRY-ON BAGS", "width": 4.5}, {"from": "ISRAEL", "title": "Weight: 5.0", "to": "CHECK-IN COUNTERS", "width": 2.5}, {"from": "EXOTIC BIRDS", "title": "Weight: 6.0", "to": "PETS", "width": 3.0}, {"from": "VETERINARY SERVICES", "title": "Weight: 8.0", "to": "AUTHORIZATION PROCESS", "width": 4.0}, {"from": "VETERINARY SERVICES", "title": "Weight: 9.0", "to": "BEN GURION AIRPORT", "width": 4.5}, {"from": "VETERINARY SERVICES", "title": "Weight: 8.0", "to": "DOCUMENTS", "width": 4.0}, {"from": "SENSITIVITY", "title": "Weight: 5.0", "to": "FLIGHT", "width": 2.5}, {"from": "PETS", "title": "Weight: 7.0", "to": "DOGS", "width": 3.5}, {"from": "PETS", "title": "Weight: 8.0", "to": "DOCUMENTS AND AUTHORIZATIONS", "width": 4.0}, {"from": "PETS", "title": "Weight: 8.0", "to": "CARGO", "width": 4.0}, {"from": "PETS", "title": "Weight: 8.0", "to": "BAGGAGE", "width": 4.0}, {"from": "INTERNATIONAL CERTIFICATE OF GOOD HEALTH", "title": "Weight: 9.0", "to": "VETERINARY SERVICES DEPARTMENT", "width": 4.5}, {"from": "BILL OF LADING", "title": "Weight: 6.0", "to": "VETERINARY SERVICES DEPARTMENT", "width": 3.0}, {"from": "BUSINESS CABIN", "title": "Weight: 6.0", "to": "APPROVAL", "width": 3.0}, {"from": "CAGE", "title": "Weight: 8.0", "to": "ANIMAL", "width": 4.0}, {"from": "WEIGHT", "title": "Weight: 9.0", "to": "ANIMAL", "width": 4.5}, {"from": "WEIGHT", "title": "Weight: 18.0", "to": "SPORTING EQUIPMENT", "width": 9.0}, {"from": "WEIGHT", "title": "Weight: 10.0", "to": "30 KG", "width": 5.0}, {"from": "WEIGHT", "title": "Weight: 10.0", "to": "32 KG", "width": 5.0}, {"from": "WEIGHT", "title": "Weight: 2.0", "to": "CARRY-ON BAGGAGE", "width": 1.0}, {"from": "WEIGHT", "title": "Weight: 9.0", "to": "OVERWEIGHT BAGGAGE", "width": 4.5}, {"from": "PERMIT", "title": "Weight: 8.0", "to": "ANIMAL", "width": 4.0}, {"from": "PERMIT", "title": "Weight: 9.0", "to": "VETERINARY SERVICES DEPARTMENT", "width": 4.5}, {"from": "VETERINARY SERVICES DEPARTMENT", "title": "Weight: 7.0", "to": "EXPORT LICENSE", "width": 3.5}, {"from": "VETERINARY SERVICES DEPARTMENT", "title": "Weight: 7.0", "to": "CERTIFICATE OF GOOD HEALTH", "width": 3.5}, {"from": "VETERINARY SERVICES DEPARTMENT", "title": "Weight: 7.0", "to": "LABORATORY RESULTS FOR RABIES ANTIBODIES", "width": 3.5}, {"from": "CARGO", "title": "Weight: 1.0", "to": "ANIMAL", "width": 0.5}, {"from": "CARGO", "title": "Weight: 1.0", "to": "BEN GURION AIRPORT", "width": 0.5}, {"from": "CARGO", "title": "Weight: 8.0", "to": "SPORTING EQUIPMENT", "width": 4.0}, {"from": "GUIDELINES", "title": "Weight: 7.0", "to": "ANIMAL", "width": 3.5}, {"from": "ANIMAL", "title": "Weight: 6.0", "to": "BAGGAGE", "width": 3.0}, {"from": "ANIMAL", "title": "Weight: 8.0", "to": "ANIMAL WEIGHT", "width": 4.0}, {"from": "ANIMAL", "title": "Weight: 7.0", "to": "9 KG", "width": 3.5}, {"from": "ANIMAL", "title": "Weight: 7.0", "to": "100 KG", "width": 3.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "BANGKOK", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "AMSTERDAM", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "BOSTON", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "MUMBAI", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "BRUSSELS", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "LARNACA", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "FRANKFURT", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "MOSCOW", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "MUNICH", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "MADRID", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "BERLIN", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "PRAGUE", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "WARSAW", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "TORONTO", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "VIENNA", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "BUDAPEST", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 5.0", "to": "KYIV", "width": 2.5}, {"from": "ANIMAL", "title": "Weight: 1.0", "to": "ROME", "width": 0.5}, {"from": "CDC", "title": "Weight: 8.0", "to": "UNITED STATES", "width": 4.0}, {"from": "CERTIFICATE OF GOOD HEALTH", "title": "Weight: 9.0", "to": "DOCUMENTS", "width": 4.5}, {"from": "DOGS", "title": "Weight: 7.0", "to": "US", "width": 3.5}, {"from": "DOGS", "title": "Weight: 6.0", "to": "AIRPORT FACILITIES", "width": 3.0}, {"from": "BEN GURION AIRPORT", "title": "Weight: 7.0", "to": "BAGGAGE", "width": 3.5}, {"from": "BEN GURION AIRPORT", "title": "Weight: 9.0", "to": "EL AL ISRAEL AIRLINES LTD.", "width": 4.5}, {"from": "RABIES ANTIBODY TEST", "title": "Weight: 9.0", "to": "DOCUMENTS", "width": 4.5}, {"from": "BAGGAGE", "title": "Weight: 16.0", "to": "BAGGAGE SERVICE CENTER", "width": 8.0}, {"from": "BAGGAGE", "title": "Weight: 8.0", "to": "COURIER SERVICE", "width": 4.0}, {"from": "BAGGAGE", "title": "Weight: 5.0", "to": "CONTACT DETAILS", "width": 2.5}, {"from": "BAGGAGE", "title": "Weight: 7.0", "to": "BAGGAGE CLAIM AREA", "width": 3.5}, {"from": "BAGGAGE", "title": "Weight: 8.0", "to": "DAMAGE REPORT", "width": 4.0}, {"from": "BAGGAGE", "title": "Weight: 7.0", "to": "LOST BAGGAGE REPORT NUMBER", "width": 3.5}, {"from": "BAGGAGE", "title": "Weight: 9.0", "to": "BAGGAGE TAG", "width": 4.5}, {"from": "BAGGAGE", "title": "Weight: 9.0", "to": "EL AL ISRAEL AIRLINES", "width": 4.5}, {"from": "BAGGAGE", "title": "Weight: 8.0", "to": "FLIGHT TICKETS", "width": 4.0}, {"from": "BAGGAGE", "title": "Weight: 8.0", "to": "BOARDING PASSES", "width": 4.0}, {"from": "BAGGAGE", "title": "Weight: 8.0", "to": "BAGGAGE TAGS", "width": 4.0}, {"from": "BAGGAGE", "title": "Weight: 8.0", "to": "LOST OR DAMAGED BAGGAGE REPORT", "width": 4.0}, {"from": "BAGGAGE", "title": "Weight: 8.0", "to": "RECEIPTS", "width": 4.0}, {"from": "BAGGAGE", "title": "Weight: 7.0", "to": "OVERSIZED AND OVERWEIGHT BAGGAGE", "width": 3.5}, {"from": "BAGGAGE", "title": "Weight: 9.0", "to": "BAGGAGE POLICY", "width": 4.5}, {"from": "BAGGAGE", "title": "Weight: 1.0", "to": "STANDARD BAGGAGE", "width": 0.5}, {"from": "DOCUMENTS", "title": "Weight: 1.0", "to": "PASSENGERS", "width": 0.5}, {"from": "COSTS OF TRANSPORTING ANIMALS", "title": "Weight: 8.0", "to": "ANIMALS WEIGHING UP TO 9 KG", "width": 4.0}, {"from": "COSTS OF TRANSPORTING ANIMALS", "title": "Weight: 8.0", "to": "ANIMALS WEIGHING BETWEEN 9 AND 50 KG", "width": 4.0}, {"from": "COSTS OF TRANSPORTING ANIMALS", "title": "Weight: 8.0", "to": "ANIMALS WEIGHING BETWEEN 50 AND 100 KG", "width": 4.0}, {"from": "COSTS OF TRANSPORTING ANIMALS", "title": "Weight: 1.0", "to": "ANIMALS WEIGHING MORE THAN 100 KG", "width": 0.5}, {"from": "PASSENGER CABIN", "title": "Weight: 8.0", "to": "DOG", "width": 4.0}, {"from": "PASSENGER CABIN", "title": "Weight: 8.0", "to": "CAT", "width": 4.0}, {"from": "PASSENGER CABIN", "title": "Weight: 8.0", "to": "EXOTIC BIRD", "width": 4.0}, {"from": "FLIGHT TICKET", "title": "Weight: 8.0", "to": "BAGGAGE ALLOWANCE", "width": 4.0}, {"from": "FLIGHT TICKET", "title": "Weight: 8.0", "to": "MANAGE YOUR BOOKING", "width": 4.0}, {"from": "DOG", "title": "Weight: 7.0", "to": "PASSENGER", "width": 3.5}, {"from": "DOG", "title": "Weight: 7.0", "to": "DISTURBANCE", "width": 3.5}, {"from": "DOG", "title": "Weight: 1.0", "to": "DIRECT THREAT", "width": 0.5}, {"from": "CHECK-IN COUNTERS", "title": "Weight: 9.0", "to": "PASSENGERS", "width": 4.5}, {"from": "CHECK-IN COUNTERS", "title": "Weight: 6.0", "to": "SECURITY CHECK AREAS", "width": 3.0}, {"from": "PASSENGER", "title": "Weight: 6.0", "to": "HOLD", "width": 3.0}, {"from": "PASSENGER", "title": "Weight: 8.0", "to": "FORMS", "width": 4.0}, {"from": "PASSENGER", "title": "Weight: 1.0", "to": "DESTINATION COUNTRY", "width": 0.5}, {"from": "PASSENGER", "title": "Weight: 7.0", "to": "AIRLINE", "width": 3.5}, {"from": "PASSENGER", "title": "Weight: 1.0", "to": "ADDITIONAL SERVICES", "width": 0.5}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 7.0", "to": "BAGGAGE CLAIMS DEPARTMENT", "width": 3.5}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 16.0", "to": "DELAYED BAGGAGE", "width": 8.0}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 6.0", "to": "CLAIM STATUS", "width": 3.0}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 16.0", "to": "DAMAGED BAGGAGE", "width": 8.0}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 14.0", "to": "FORGOTTEN ITEM", "width": 7.0}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 8.0", "to": "BAGGAGE DELAY", "width": 4.0}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 9.0", "to": "BAGGAGE CLAIM", "width": 4.5}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 8.0", "to": "BAGGAGE HANDLING", "width": 4.0}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 9.0", "to": "BAGGAGE REPORTING", "width": 4.5}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 1.0", "to": "BAGGAGE CLAIMS PROCESS", "width": 0.5}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 6.0", "to": "CLAIMS DEPARTMENT", "width": 3.0}, {"from": "BAGGAGE SERVICE CENTER", "title": "Weight: 7.0", "to": "CONTACT DETAILS", "width": 3.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 8.0", "to": "BAGGAGE TAG", "width": 4.0}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 9.0", "to": "EL AL ISRAEL AIRLINES LTD.", "width": 4.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 7.0", "to": "DIGITAL CONTACT FORM", "width": 3.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 4.0", "to": "MAKOR HAZIUD", "width": 2.0}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 4.0", "to": "WE SHOES", "width": 2.0}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 4.0", "to": "MEMSI TOURING", "width": 2.0}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 5.0", "to": "ARTY RIMON", "width": 2.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 4.0", "to": "SHIN TIK", "width": 2.0}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 4.0", "to": "TREK MARKET", "width": 2.0}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 3.0", "to": "KIRYAT ONO", "width": 1.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 3.0", "to": "RAMAT GAN", "width": 1.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 3.0", "to": "GEVATAIM", "width": 1.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 3.0", "to": "BAT YAM", "width": 1.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 3.0", "to": "HOLON", "width": 1.5}, {"from": "BAGGAGE CLAIMS DEPARTMENT", "title": "Weight: 1.0", "to": "PETACH TIKVA", "width": 0.5}, {"from": "DELAYED BAGGAGE", "title": "Weight: 1.0", "to": "BAGGAGE REPORT", "width": 0.5}, {"from": "CLAIM STATUS", "title": "Weight: 9.0", "to": "LOST BAGGAGE REPORT NUMBER", "width": 4.5}, {"from": "COURIER SERVICE", "title": "Weight: 8.0", "to": "BAGGAGE DELIVERY", "width": 4.0}, {"from": "BATTERIES", "title": "Weight: 16.0", "to": "LAPTOP", "width": 8.0}, {"from": "BATTERIES", "title": "Weight: 16.0", "to": "MEDICAL EQUIPMENT", "width": 8.0}, {"from": "BATTERIES", "title": "Weight: 7.0", "to": "WATT-HOURS", "width": 3.5}, {"from": "BATTERIES", "title": "Weight: 1.0", "to": "ACCEPTABLE BATTERY TYPES", "width": 0.5}, {"from": "COMPRESSED GASES", "title": "Weight: 14.0", "to": "FLAMMABLE LIQUIDS", "width": 7.0}, {"from": "COMPRESSED GASES", "title": "Weight: 8.0", "to": "BUTANE", "width": 4.0}, {"from": "COMPRESSED GASES", "title": "Weight: 8.0", "to": "OXYGEN", "width": 4.0}, {"from": "COMPRESSED GASES", "title": "Weight: 8.0", "to": "AQUALUNG CYLINDERS", "width": 4.0}, {"from": "COMPRESSED GASES", "title": "Weight: 8.0", "to": "COMPRESSED GAS CYLINDERS", "width": 4.0}, {"from": "CORROSIVES", "title": "Weight: 14.0", "to": "FLAMMABLE LIQUIDS", "width": 7.0}, {"from": "CORROSIVES", "title": "Weight: 16.0", "to": "ACIDS", "width": 8.0}, {"from": "CORROSIVES", "title": "Weight: 16.0", "to": "ALKALIS", "width": 8.0}, {"from": "CORROSIVES", "title": "Weight: 16.0", "to": "WET CELL BATTERIES", "width": 8.0}, {"from": "EXPLOSIVES", "title": "Weight: 14.0", "to": "FLAMMABLE LIQUIDS", "width": 7.0}, {"from": "EXPLOSIVES", "title": "Weight: 5.0", "to": "LIGHT AMMUNITION", "width": 2.5}, {"from": "FLAMMABLE LIQUIDS", "title": "Weight: 14.0", "to": "RADIOACTIVE MATERIALS", "width": 7.0}, {"from": "FLAMMABLE LIQUIDS", "title": "Weight: 6.0", "to": "BRIEFCASES WITH ALARM DEVICES", "width": 3.0}, {"from": "FLAMMABLE LIQUIDS", "title": "Weight: 13.0", "to": "OXIDIZING MATERIALS", "width": 6.5}, {"from": "FLAMMABLE LIQUIDS", "title": "Weight: 6.0", "to": "POISONS", "width": 3.0}, {"from": "FLAMMABLE LIQUIDS", "title": "Weight: 8.0", "to": "HIGH-STRENGTH MAGNETIC MATERIALS", "width": 4.0}, {"from": "FLAMMABLE LIQUIDS", "title": "Weight: 1.0", "to": "FLAMMABLE SOLIDS", "width": 0.5}, {"from": "POISONS", "title": "Weight: 1.0", "to": "INFECTIOUS SUBSTANCES", "width": 0.5}, {"from": "MATERIALS CONTAINING MERCURY", "title": "Weight: 8.0", "to": "DANGEROUS GOOD", "width": 4.0}, {"from": "DANGEROUS GOOD", "title": "Weight: 8.0", "to": "ITEMS CONTAINING MERCURY", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "WHISKEY", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "GELS", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "COSMETICS", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "BABY FOOD", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "PRESCRIPTION MEDICATIONS", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "AEROSOLS", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "CREAMS", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 9.0", "to": "CARRY-ON BAGS", "width": 4.5}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 1.0", "to": "SECURITY CHECKPOINT", "width": 0.5}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "U.S", "width": 4.0}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 9.0", "to": "CLEAR RESEALABLE PLASTIC BAG", "width": 4.5}, {"from": "LIQUIDS IN CARRY-ON BAGS", "title": "Weight: 8.0", "to": "DOCTOR\u0027S NOTE", "width": 4.0}, {"from": "CARRY-ON BAGS", "title": "Weight: 9.0", "to": "BAGS", "width": 4.5}, {"from": "CARRY-ON BAGS", "title": "Weight: 7.0", "to": "MEDICATIONS", "width": 3.5}, {"from": "CARRY-ON BAGS", "title": "Weight: 7.0", "to": "PASSPORTS", "width": 3.5}, {"from": "CARRY-ON BAGS", "title": "Weight: 7.0", "to": "VALUABLES", "width": 3.5}, {"from": "CARRY-ON BAGS", "title": "Weight: 1.0", "to": "ELECTRONIC DEVICES", "width": 0.5}, {"from": "CARRY-ON BAGS", "title": "Weight: 6.0", "to": "CHECKED BAGS", "width": 3.0}, {"from": "CARRY-ON BAGS", "title": "Weight: 1.0", "to": "RECOMMENDATION", "width": 0.5}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 16.0", "to": "ECONOMY CLASS", "width": 8.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 16.0", "to": "PREMIUM CLASS", "width": 8.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 16.0", "to": "BUSINESS CLASS", "width": 8.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 18.0", "to": "DIMENSIONS", "width": 9.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 14.0", "to": "EL AL CARGO DIVISION", "width": 7.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 12.0", "to": "ADDITIONAL SPORTS EQUIPMENT", "width": 6.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 8.0", "to": "190 CM", "width": 4.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 8.0", "to": "70 USD", "width": 4.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 8.0", "to": "150 USD", "width": 4.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 8.0", "to": "OVERWEIGHT BAGGAGE", "width": 4.0}, {"from": "SPORTING EQUIPMENT", "title": "Weight: 9.0", "to": "EXCESS BAGGAGE CHARGES", "width": 4.5}, {"from": "ECONOMY CLASS", "title": "Weight: 8.0", "to": "30 KG", "width": 4.0}, {"from": "ECONOMY CLASS", "title": "Weight: 7.0", "to": "LITE FARES", "width": 3.5}, {"from": "ECONOMY CLASS", "title": "Weight: 12.0", "to": "CARRY-ON BAGGAGE", "width": 6.0}, {"from": "ECONOMY CLASS", "title": "Weight: 6.0", "to": "LITE SERVICE", "width": 3.0}, {"from": "ECONOMY CLASS", "title": "Weight: 6.0", "to": "CLASSIC SERVICE", "width": 3.0}, {"from": "ECONOMY CLASS", "title": "Weight: 1.0", "to": "FLEX SERVICE", "width": 0.5}, {"from": "PREMIUM CLASS", "title": "Weight: 12.0", "to": "CARRY-ON BAGGAGE", "width": 6.0}, {"from": "BUSINESS CLASS", "title": "Weight: 8.0", "to": "32 KG", "width": 4.0}, {"from": "BUSINESS CLASS", "title": "Weight: 12.0", "to": "CARRY-ON BAGGAGE", "width": 6.0}, {"from": "DIMENSIONS", "title": "Weight: 10.0", "to": "277 CM", "width": 5.0}, {"from": "DIMENSIONS", "title": "Weight: 16.0", "to": "CARRY-ON BAGGAGE", "width": 8.0}, {"from": "DIMENSIONS", "title": "Weight: 9.0", "to": "OVERSIZED BAGGAGE", "width": 4.5}, {"from": "CALL CENTER", "title": "Weight: 6.0", "to": "OVERWEIGHT BAGGAGE", "width": 3.0}, {"from": "OVERWEIGHT BAGGAGE", "title": "Weight: 8.0", "to": "277 CM", "width": 4.0}, {"from": "OVERWEIGHT BAGGAGE", "title": "Weight: 6.0", "to": "CALL CENTER APPROVAL", "width": 3.0}, {"from": "OVERWEIGHT BAGGAGE", "title": "Weight: 6.0", "to": "OVERSIZED BAGGAGE", "width": 3.0}, {"from": "OVERWEIGHT BAGGAGE", "title": "Weight: 6.0", "to": "SUNDOR", "width": 3.0}, {"from": "OVERWEIGHT BAGGAGE", "title": "Weight: 1.0", "to": "DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION", "width": 0.5}, {"from": "SNOWBOARDING EQUIPMENT", "title": "Weight: 7.0", "to": "COMPLIMENTARY TRANSPORT", "width": 3.5}, {"from": "COMPLIMENTARY TRANSPORT", "title": "Weight: 7.0", "to": "SKI EQUIPMENT", "width": 3.5}, {"from": "SKI EQUIPMENT", "title": "Weight: 6.0", "to": "LITE FARE TICKET", "width": 3.0}, {"from": "70 USD", "title": "Weight: 9.0", "to": "US DOLLARS", "width": 4.5}, {"from": "150 USD", "title": "Weight: 1.0", "to": "US DOLLARS", "width": 0.5}, {"from": "US DOLLARS", "title": "Weight: 7.0", "to": "EXCESS BAGGAGE CHARGES", "width": 3.5}, {"from": "US DOLLARS", "title": "Weight: 5.0", "to": "EXCESS BAGGAGE RATES", "width": 2.5}, {"from": "EXCESS BAGGAGE CHARGES", "title": "Weight: 5.0", "to": "LOCAL CURRENCY", "width": 2.5}, {"from": "LOCAL CURRENCY", "title": "Weight: 1.0", "to": "EXCESS BAGGAGE RATES", "width": 0.5}, {"from": "BICYCLE", "title": "Weight: 6.0", "to": "EL AL CALL CENTER", "width": 3.0}, {"from": "BICYCLE", "title": "Weight: 1.0", "to": "PACKING REGULATIONS", "width": 0.5}, {"from": "BICYCLE", "title": "Weight: 10.0", "to": "MOTORIZED BICYCLES", "width": 5.0}, {"from": "BICYCLE", "title": "Weight: 6.0", "to": "EXCEPTIONAL CASES", "width": 3.0}, {"from": "DESTINATION COUNTRY", "title": "Weight: 1.0", "to": "EQUIPMENT", "width": 0.5}, {"from": "FRAGILE ITEM", "title": "Weight: 7.0", "to": "SPECIAL TRAVEL INSURANCE", "width": 3.5}, {"from": "VALUABLE ITEM", "title": "Weight: 1.0", "to": "SPECIAL TRAVEL INSURANCE", "width": 0.5}, {"from": "MAKOR HAZIUD", "title": "Weight: 4.0", "to": "ARTY RIMON", "width": 2.0}, {"from": "MAKOR HAZIUD", "title": "Weight: 8.0", "to": "NES ZIONA", "width": 4.0}, {"from": "ARTY RIMON", "title": "Weight: 5.0", "to": "CARGO TIKIM VE MIZVADOT", "width": 2.5}, {"from": "ARTY RIMON", "title": "Weight: 8.0", "to": "MOKA", "width": 4.0}, {"from": "ARTY RIMON", "title": "Weight: 5.0", "to": "RIMON MIZVADOT VE TIKIM", "width": 2.5}, {"from": "ARTY RIMON", "title": "Weight: 4.0", "to": "HAGALGAL", "width": 2.0}, {"from": "ARTY RIMON", "title": "Weight: 7.0", "to": "IMPORTANT TO KNOW", "width": 3.5}, {"from": "ARTY RIMON", "title": "Weight: 8.0", "to": "SHLOMO HA-MELEKH", "width": 4.0}, {"from": "ARTY RIMON", "title": "Weight: 8.0", "to": "REHOVOT", "width": 4.0}, {"from": "ARTY RIMON", "title": "Weight: 8.0", "to": "SHOHAM", "width": 4.0}, {"from": "ARTY RIMON", "title": "Weight: 8.0", "to": "RAMLE", "width": 4.0}, {"from": "ARTY RIMON", "title": "Weight: 1.0", "to": "LOD", "width": 0.5}, {"from": "MOKA", "title": "Weight: 8.0", "to": "YEHUD", "width": 4.0}, {"from": "RIMON MIZVADOT VE TIKIM", "title": "Weight: 8.0", "to": "RISHON LE ZION", "width": 4.0}, {"from": "GALGAL YAZIV", "title": "Weight: 6.0", "to": "DAMAGE TO WHEELCHAIRS", "width": 3.0}, {"from": "HAGALGAL", "title": "Weight: 5.0", "to": "BUGABOO", "width": 2.5}, {"from": "IMPORTANT TO KNOW", "title": "Weight: 1.0", "to": "DELAY IN RECEIVING BAGGAGE", "width": 0.5}, {"from": "EL AL ISRAEL AIRLINES", "title": "Weight: 7.0", "to": "FRAGILE ITEMS", "width": 3.5}, {"from": "EL AL ISRAEL AIRLINES", "title": "Weight: 7.0", "to": "PERISHABLE ITEMS", "width": 3.5}, {"from": "EL AL ISRAEL AIRLINES", "title": "Weight: 7.0", "to": "VALUABLE ITEMS", "width": 3.5}, {"from": "EL AL ISRAEL AIRLINES", "title": "Weight: 6.0", "to": "INTERNATIONAL CONVENTIONS", "width": 3.0}, {"from": "EL AL ISRAEL AIRLINES", "title": "Weight: 1.0", "to": "CONTRACT OF CARRIAGE", "width": 0.5}, {"from": "MISSING ITEMS", "title": "Weight: 8.0", "to": "CLAIM", "width": 4.0}, {"from": "CLAIM", "title": "Weight: 8.0", "to": "DAMAGE", "width": 4.0}, {"from": "CLAIM", "title": "Weight: 9.0", "to": "7 DAYS", "width": 4.5}, {"from": "CLAIM", "title": "Weight: 9.0", "to": "21 DAYS", "width": 4.5}, {"from": "CLAIM", "title": "Weight: 1.0", "to": "AFTER 21 DAYS", "width": 0.5}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 16.0", "to": "PERSONAL BAGS", "width": 8.0}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 14.0", "to": "SUN DOR", "width": 7.0}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 10.0", "to": "MATMID FREQUENT FLYER CLUB", "width": 5.0}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 13.0", "to": "CHECKED LUGGAGE", "width": 6.5}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 16.0", "to": "TROLLEY", "width": 8.0}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 13.0", "to": "FLIGHT TICKET TERMS", "width": 6.5}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 12.0", "to": "BOOKING MANAGEMENT", "width": 6.0}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 8.0", "to": "OVERHEAD COMPARTMENTS", "width": 4.0}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 6.0", "to": "NORTH AMERICA", "width": 3.0}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 8.0", "to": "MAXIMUM DIMENSIONS", "width": 4.0}, {"from": "CARRY-ON BAGGAGE", "title": "Weight: 1.0", "to": "MAXIMUM WEIGHT", "width": 0.5}, {"from": "BAGGAGE CONVEYOR BELT", "title": "Weight: 9.0", "to": "CHECKED LUGGAGE", "width": 4.5}, {"from": "BAGS", "title": "Weight: 8.0", "to": "16 KG", "width": 4.0}, {"from": "BAGS", "title": "Weight: 8.0", "to": "20 KG", "width": 4.0}, {"from": "16 KG", "title": "Weight: 8.0", "to": "MAXIMUM WEIGHT", "width": 4.0}, {"from": "16 KG", "title": "Weight: 7.0", "to": "CARRY-ON BAG", "width": 3.5}, {"from": "20 KG", "title": "Weight: 8.0", "to": "MAXIMUM WEIGHT", "width": 4.0}, {"from": "20 KG", "title": "Weight: 7.0", "to": "CARRY-ON BAG", "width": 3.5}, {"from": "ELECTRONIC DEVICES", "title": "Weight: 7.0", "to": "CARRY-ON", "width": 3.5}, {"from": "ELECTRONIC DEVICES", "title": "Weight: 1.0", "to": "FLAMMABLE MATERIAL", "width": 0.5}, {"from": "ELECTRONIC DEVICES", "title": "Weight: 8.0", "to": "SPARE LITHIUM BATTERIES", "width": 4.0}, {"from": "CHECKED BAGS", "title": "Weight: 9.0", "to": "PLANE\u0027S BELLY", "width": 4.5}, {"from": "CHECKED BAGS", "title": "Weight: 7.0", "to": "NO CHARGE", "width": 3.5}, {"from": "BAG", "title": "Weight: 8.0", "to": "CARRY-ON BAG", "width": 4.0}, {"from": "BAG", "title": "Weight: 8.0", "to": "PERSONAL BAG", "width": 4.0}, {"from": "BAG", "title": "Weight: 6.0", "to": "DUTY-FREE ITEMS", "width": 3.0}, {"from": "PERSONAL BAG", "title": "Weight: 7.0", "to": "18X38X30 CM", "width": 3.5}, {"from": "CARRY-ON BAG", "title": "Weight: 7.0", "to": "56 CM", "width": 3.5}, {"from": "CARRY-ON BAG", "title": "Weight: 7.0", "to": "45 CM", "width": 3.5}, {"from": "CARRY-ON BAG", "title": "Weight: 7.0", "to": "25 CM", "width": 3.5}, {"from": "CARRY-ON BAG", "title": "Weight: 7.0", "to": "115 CM", "width": 3.5}, {"from": "CARRY-ON BAG", "title": "Weight: 5.0", "to": "OVERSIZED ITEMS", "width": 2.5}, {"from": "CARRY-ON BAG", "title": "Weight: 6.0", "to": "EMERGENCY EXIT ROW", "width": 3.0}, {"from": "OVERSIZED ITEMS", "title": "Weight: 1.0", "to": "SERVICE CENTER", "width": 0.5}, {"from": "100 ML", "title": "Weight: 9.0", "to": "3.4 OZ", "width": 4.5}, {"from": "OVERSIZED BAGGAGE", "title": "Weight: 6.0", "to": "SUNDOR", "width": 3.0}, {"from": "OVERSIZED BAGGAGE", "title": "Weight: 7.0", "to": "DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION", "width": 3.5}, {"from": "SUNDOR", "title": "Weight: 7.0", "to": "BAGGAGE POLICY", "width": 3.5}, {"from": "LITE SERVICE", "title": "Weight: 8.0", "to": "BAGGAGE ALLOWANCE", "width": 4.0}, {"from": "CLASSIC SERVICE", "title": "Weight: 8.0", "to": "BAGGAGE ALLOWANCE", "width": 4.0}, {"from": "FLEX SERVICE", "title": "Weight: 8.0", "to": "BAGGAGE ALLOWANCE", "width": 4.0}, {"from": "BAGGAGE ALLOWANCE", "title": "Weight: 6.0", "to": "ADDITIONAL PIECES OF BAGGAGE", "width": 3.0}, {"from": "BAGGAGE ALLOWANCE", "title": "Weight: 1.0", "to": "FLIGHT SEGMENT", "width": 0.5}, {"from": "BAGGAGE ALLOWANCE", "title": "Weight: 8.0", "to": "TICKET TYPE", "width": 4.0}, {"from": "BAGGAGE ALLOWANCE", "title": "Weight: 6.0", "to": "LITE TICKETS", "width": 3.0}, {"from": "BAGGAGE ALLOWANCE", "title": "Weight: 7.0", "to": "EXCESS BAGGAGE RATES", "width": 3.5}, {"from": "BAGGAGE ALLOWANCE", "title": "Weight: 8.0", "to": "BAGGAGE POLICY", "width": 4.0}, {"from": "MANAGE YOUR BOOKING", "title": "Weight: 7.0", "to": "ADDITIONAL PIECES OF BAGGAGE", "width": 3.5}, {"from": "MANAGE YOUR BOOKING", "title": "Weight: 8.0", "to": "THREE HOURS", "width": 4.0}, {"from": "ADDITIONAL PIECES OF BAGGAGE", "title": "Weight: 8.0", "to": "PRE-ORDERING", "width": 4.0}, {"from": "OVERSIZED AND OVERWEIGHT BAGGAGE", "title": "Weight: 7.0", "to": "DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION", "width": 3.5}, {"from": "BAGGAGE POLICY", "title": "Weight: 8.0", "to": "STANDARD BAGGAGE", "width": 4.0}, {"from": "BAGGAGE CHECK-IN PROCESS", "title": "Weight: 8.0", "to": "BAGGAGE CHECK-IN", "width": 4.0}, {"from": "TICKET TYPE", "title": "Weight: 7.0", "to": "FREE BAGGAGE ALLOWANCE", "width": 3.5}, {"from": "PROHIBITED ITEM", "title": "Weight: 9.0", "to": "SPARE BATTERIES", "width": 4.5}, {"from": "PROHIBITED ITEM", "title": "Weight: 9.0", "to": "PORTABLE CHARGERS", "width": 4.5}, {"from": "ADDITIONAL SERVICES", "title": "Weight: 1.0", "to": "FULL CHARGE", "width": 0.5}, {"from": "CHANGE", "title": "Weight: 8.0", "to": "REFUND", "width": 4.0}, {"from": "REFUND", "title": "Weight: 8.0", "to": "CANCELLATION", "width": 4.0}, {"from": "SPARE BATTERIES", "title": "Weight: 6.0", "to": "LITHIUM-ION BATTERIES", "width": 3.0}, {"from": "SPARE BATTERIES", "title": "Weight: 8.0", "to": "NON-CONDUCTIVE CAPS", "width": 4.0}, {"from": "SPARE BATTERIES", "title": "Weight: 5.0", "to": "INSULATED", "width": 2.5}, {"from": "DRY CELL ALKALINE BATTERIES", "title": "Weight: 1.0", "to": "LITHIUM-ION BATTERIES", "width": 0.5}, {"from": "LITHIUM-ION BATTERIES", "title": "Weight: 8.0", "to": "CARRY-ON", "width": 4.0}, {"from": "LITHIUM-ION BATTERIES", "title": "Weight: 8.0", "to": "LITHIUM BATTERIES", "width": 4.0}, {"from": "LITHIUM-ION BATTERIES", "title": "Weight: 8.0", "to": "100 WATT-HOURS", "width": 4.0}, {"from": "LITHIUM-ION BATTERIES", "title": "Weight: 8.0", "to": "160 WATT-HOURS", "width": 4.0}, {"from": "LITHIUM-ION BATTERIES", "title": "Weight: 6.0", "to": "SPARE LITHIUM BATTERIES", "width": 3.0}, {"from": "PORTABLE CHARGERS", "title": "Weight: 8.0", "to": "SPARE LITHIUM BATTERIES", "width": 4.0}, {"from": "LITHIUM METAL BATTERIES", "title": "Weight: 8.0", "to": "CARRY-ON", "width": 4.0}, {"from": "LITHIUM METAL BATTERIES", "title": "Weight: 8.0", "to": "2 GRAMS", "width": 4.0}, {"from": "NON-SPILLABLE WET BATTERIES", "title": "Weight: 8.0", "to": "CARRY-ON", "width": 4.0}, {"from": "NON-SPILLABLE WET BATTERIES", "title": "Weight: 8.0", "to": "12 VOLTS", "width": 4.0}, {"from": "NON-SPILLABLE WET BATTERIES", "title": "Weight: 8.0", "to": "STRONG OUTER PACKAGING", "width": 4.0}, {"from": "MOTORIZED WHEELCHAIRS", "title": "Weight: 1.0", "to": "EXEMPTION", "width": 0.5}, {"from": "49 CFR", "title": "Weight: 9.0", "to": "LITHIUM BATTERIES", "width": 4.5}, {"from": "BATTERY-POWERED DEVICES", "title": "Weight: 5.0", "to": "IATA REGULATIONS", "width": 2.5}, {"from": "IATA REGULATIONS", "title": "Weight: 7.0", "to": "BATTERY-POWERED MOBILITY AIDS", "width": 3.5}, {"from": "100 WH", "title": "Weight: 7.0", "to": "20 SPARE BATTERIES", "width": 3.5}, {"from": "100 WH", "title": "Weight: 7.0", "to": "15 ELECTRONIC DEVICES", "width": 3.5}, {"from": "BATTERY CASE", "title": "Weight: 6.0", "to": "BATTERY TERMINALS", "width": 3.0}, {"from": "ORIGINAL PACKAGING", "title": "Weight: 6.0", "to": "BATTERY TERMINALS", "width": 3.0}, {"from": "BATTERY-POWERED MOBILITY AIDS", "title": "Weight: 1.0", "to": "FLIGHT-APPROVED BATTERIES", "width": 0.5}, {"from": "HAZARDOUS MATERIALS", "title": "Weight: 9.0", "to": "DECLARATION FORM", "width": 4.5}, {"from": "HAZARDOUS MATERIALS", "title": "Weight: 8.0", "to": "DRY ICE", "width": 4.0}, {"from": "FLIGHT AID", "title": "Weight: 6.0", "to": "MOBILITY AID", "width": 3.0}]); | |
nodeColors = {}; | |
allNodes = nodes.get({ returnType: "Object" }); | |
for (nodeId in allNodes) { | |
nodeColors[nodeId] = allNodes[nodeId].color; | |
} | |
allEdges = edges.get({ returnType: "Object" }); | |
// adding nodes and edges to the graph | |
data = {nodes: nodes, edges: edges}; | |
var options = {"physics": {"forceAtlas2Based": {"gravitationalConstant": -100, "centralGravity": 0.01, "springLength": 150, "springConstant": 0.08, "damping": 0.4, "avoidOverlap": 0.5}, "solver": "forceAtlas2Based", "stabilization": {"enabled": true, "iterations": 1000}}, "nodes": {"font": {"size": 12, "face": "arial"}, "shape": "dot"}, "edges": {"smooth": {"type": "continuous", "roundness": 0.5}, "color": {"inherit": false, "color": "#666666"}}, "interaction": {"hover": true, "navigationButtons": true, "keyboard": {"enabled": true}, "tooltipDelay": 200}}; | |
network = new vis.Network(container, data, options); | |
network.on("stabilizationProgress", function(params) { | |
document.getElementById('loadingBar').removeAttribute("style"); | |
var maxWidth = 496; | |
var minWidth = 20; | |
var widthFactor = params.iterations/params.total; | |
var width = Math.max(minWidth,maxWidth * widthFactor); | |
document.getElementById('bar').style.width = width + 'px'; | |
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%'; | |
}); | |
network.once("stabilizationIterationsDone", function() { | |
document.getElementById('text').innerHTML = '100%'; | |
document.getElementById('bar').style.width = '496px'; | |
document.getElementById('loadingBar').style.opacity = 0; | |
// really clean the dom element | |
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500); | |
}); | |
return network; | |
} | |
drawGraph(); | |
</script> | |
</body> | |
</html> |