cloud computing,

profileMadhukar Kunam
Starter_Code_For_AssignmentThree.zip

app.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ var parseString = require('xml2js').parseString; var vincenty = require('node-vincenty'); var fs = require('fs'); var argv = require('optimist').argv; var mqtt = require('mqtt'); var http = require('http'); var settings = require('./config/settings'); var appInfo = JSON.parse(process.env.VCAP_APPLICATION || "{}"); var appHost = appInfo.host || "localhost"; console.log(argv); var deviceIndex = (appInfo && appInfo.instance_index) ? appInfo.instance_index : 0; var deviceId = settings.iot_deviceSet[deviceIndex].deviceId; var token = settings.iot_deviceSet[deviceIndex].token; var iot_server = settings.iot_deviceOrg + ".messaging.internetofthings.ibmcloud.com"; var iot_port = 1883; var iot_username = "use-token-auth"; var iot_password = token; var iot_clientid = "d:" + settings.iot_deviceOrg + ":" + settings.iot_deviceType + ":" + deviceId console.log(iot_server, iot_clientid, iot_username, iot_password); //var client = mqtt.createClient(1883, iot_server, { clientId: iot_clientid, username: iot_username, password: iot_password }); var options1 = { port: 1883, host: iot_server, clientId: iot_clientid, username: iot_username, password: iot_password, protocolId: 'MQIsdp', protocolVersion: 3 }; var client = mqtt.connect(options1); console.log(JSON.stringify(process.env)); var VEHICLE_COUNT = (argv.count ? argv.count : (process.env.VEHICLE_COUNT || 1)); var TELEMETRY_RATE = (argv.rate ? argv.rate : (process.env.TELEMETRY_RATE || 2)); console.log("Simulating " + VEHICLE_COUNT + " vehicles"); // subscribe var propertyTopic = "iot-2/cmd/setProperty/fmt/json"; // publish var telemetryTopic = "iot-2/evt/telemetry/fmt/json"; ////////////////// // MAP // ////////////////// var num_nodes = 0; var num_edges = 0; var map = { nodes: {}, edges: {} }; function Map(abbr, name, filename) { this.abbr = abbr; this.name = name; this.nodeCount = 0; this.edgeCount = 0; this.nodes = {}; this.edges = {}; this.loadFromFile(filename); } Map.prototype.loadFromFile = function(filename) { fs.readFile(filename, (function(map) { return function(err, data) { if (err) throw err; parseString(data, function(err, result) { console.log("parseString"); if (err) throw err; map.createMapFromJSON(result); setTimeout(mapLoaded, 5000); }); } })(this)); } Map.prototype.createMapFromJSON = function(json) { console.log("createMapFromJSON"); for (var i in json.osm.node) { var n = json.osm.node[i]; this.nodes[n.$.id] = { id: n.$.id, lon: parseFloat(n.$.lon), lat: parseFloat(n.$.lat), edges: Array() } this.nodeCount++; if (this.nodeCount % 1000 == 0) { console.log("nodes: " + this.nodeCount); } } for (var i in json.osm.way) { var w = json.osm.way[i]; var wId = w.$.id; var tags = {}; for (var j in w.tag) { tags[w.tag[j].$.k] = w.tag[j].$.v; } var last_ref = null; for (var j in w.nd) { var ref = w.nd[j].$.ref; // node id if (last_ref) { //console.log(this.nodes[last_ref], this.nodes[ref]); var res = vincenty.distVincenty(this.nodes[last_ref].lat, this.nodes[last_ref].lon, this.nodes[ref].lat, this.nodes[ref].lon); //console.log(res); var meters = res.distance; var bearing = res.initialBearing; if (tags.oneway && tags.oneway == "yes") { var edge = { id: wId + "-" + last_ref + "_" + ref, type: tags.highway, a: last_ref, b: ref, heading: bearing, dist: meters }; this.edges[edge.id] = edge; this.nodes[last_ref].edges.push(edge); this.edgeCount++; } else { var edgeA = { id: wId + "-" + last_ref + "_" + ref, type: tags.highway, a: last_ref, b: ref, heading: bearing, dist: meters } this.edges[edgeA.id] = edgeA; this.nodes[last_ref].edges.push(edgeA); this.edgeCount++; var edgeB = { id: wId + "-" + ref + "_" + last_ref, type: tags.highway, a: ref, b: last_ref, heading: (bearing < 180 ? bearing + 180 : bearing - 180), dist: meters } this.edges[edgeB.id] = edgeB; this.nodes[ref].edges.push(edgeB); this.edgeCount++; } } last_ref = ref; } if (this.edgeCount % 1000 == 0) { console.log("edges: " + this.edgeCount); } } var del = 0; for (var i in this.nodes) { var n = this.nodes[i]; var count = 0; for (var j in n.edges) { if (this.nodes[n.edges[j].b]) { count++; } } if (count == 0) { delete this.nodes[i]; del++; this.nodeCount--; } } //console.log("deleted " + del + " nodes"); //this.publishData(); this.print(); } Map.prototype.print = function() { /* fs.writeFile("map_nodes.txt", JSON.stringify(this.nodes, null, 4), function(err) { if(err) { console.log(err); } else { console.log("nodes saved to map_nodes.txt"); } }); fs.writeFile("map_edges.txt", JSON.stringify(this.edges, null, 4), function(err) { if(err) { console.log(err); } else { console.log("edges saved to map_edges.txt"); } }); */ console.log("loaded map!"); console.log("num_edges = " + this.edgeCount); console.log("num_nodes = " + this.nodeCount); } Map.prototype.publishData = function() { //var topic = topicPrefix + "map/"+this.abbr; var payload = JSON.stringify({ name: this.name, abbr: this.abbr, nodeCount: this.nodeCount, edgeCount: this.edgeCount, nodes: this.nodes, edges: this.edges }); var b64 = new Buffer(payload).toString('base64'); //console.log("publish : " + topic + " : " + b64); console.log(b64); console.log("length = " + b64.length); //client.publish(topicPrefix + "map/"+ this.abbr, b64, { qos: 1, retain: true }); } var austin_map = new Map("austin", "Austin - Downtown", "maps/austin_downtown-clean.osm"); function Vehicle(id, suffix) { this.id = id; this.suffix = suffix; this.name = "Car " + id + suffix; this.map = austin_map; this.speed = null; this.state = "normal"; this.description = "I am a connected car."; this.type = "car"; this.customProps = { turnSignal: "OFF" }, this.geo = { lon: 0, lat: 0 } this.currentEdge = null; this.perc = 0; // % of edge travelled this.lastUpdateTime = null; this.setSpeed(30); this.frame = 0; } Vehicle.prototype.drive = function() { this.frame++; if (!this.currentEdge) { this.setStartingEdge(); } else { //console.log("update " + this.name); this.update(); } } Vehicle.prototype.update = function() { var delta = (new Date()).getTime() - this.lastUpdateTime; //console.log("delta = " + delta); // move car 'delta' milliseconds // speed (m/s) = speed (km/hr) * 3600 / 1000 // dist (m) = speed (m/s) * (delta / 1000) var dist_to_move = (this.speed * (1000 / 3600)) * (delta / 1000); //console.log("updating vehicle: distance remaining = " + dist_to_move); while (dist_to_move > 0) { var dist_remaining_on_edge = (1.0 - this.perc) * this.currentEdge.dist; if (dist_to_move > dist_remaining_on_edge) { // finished an edge! get a new edge and keep going //console.log("finished an edge! distance remaining = " + dist_to_move); dist_to_move -= dist_remaining_on_edge; this.setNextEdge(); } else { // didn't finish an edge, update perc this.perc += (dist_to_move / this.currentEdge.dist); dist_to_move = 0; //console.log("didn't finish, perc = " + this.perc); } } this.updatePosition(); this.lastUpdateTime = (new Date()).getTime(); } Vehicle.prototype.getPublishPayload = function() { return { id: this.id + this.suffix, name: this.name, lng: this.geo.lon.toString(), lat: this.geo.lat.toString(), heading: this.currentEdge.heading, speed: this.speed, state: this.state, description: this.description, type: this.type, customProps: this.customProps }; } Vehicle.prototype.setSpeed = function(val) { // speed = km/hr if (val >= 0 && val <= 120) { console.log("setting speed to " + val); this.speed = val; } } Vehicle.prototype.setTurnSignal = function(val) { if (val == "LEFT" || val == "NONE" || val == "RIGHT" || val == "OFF") { this.customProps.turnSignal = val; } } Vehicle.prototype.setStartingEdge = function() { var keys = []; for (var i in this.map.edges) { keys.push(i); } this.currentEdge = this.map.edges[keys[Math.floor(Math.random() * keys.length)]]; this.perc = 0; this.lastUpdateTime = (new Date()).getTime(); } Vehicle.prototype.updatePosition = function() { var a = this.map.nodes[this.currentEdge.a]; var b = this.map.nodes[this.currentEdge.b]; if (a && b) { this.geo.lon = a.lon + this.perc * (b.lon - a.lon); this.geo.lat = a.lat + this.perc * (b.lat - a.lat); } else { //console.log("ERROR", a, b); this.setStartingEdge(); } //console.log("updatePosition: " + this.geo.lon + ", " + this.geo.lat); } Vehicle.prototype.setNextEdge = function() { //console.log(" setNextEdge"); var n = this.map.nodes[this.currentEdge.b]; if (!n) { // no valid next edge //console.log("RESPAWNING"); this.setStartingEdge(); return; } var edge = null; var reverseCount = 0; var leftTurnEdge = null, leftTurnAngle = 0; var rightTurnEdge = null, rightTurnAngle = 0; var straightEdge = null, straightAngle = 180; var a1 = this.currentEdge.heading; for (var i in n.edges) { var a2 = n.edges[i].heading; var left_diff = (a1-a2+360)%360; var right_diff = (a2-a1+360)%360; if (left_diff > leftTurnAngle && left_diff < 160) { leftTurnEdge = n.edges[i]; leftTurnAngle = left_diff; } if (right_diff > rightTurnAngle && right_diff < 160) { rightTurnEdge = n.edges[i]; rightTurnAngle = right_diff; } var smallest = Math.min(left_diff, right_diff); if (smallest < straightAngle) { straightEdge = n.edges[i]; straightAngle = smallest; } console.log("possible edge: " + n.edges[i].id + " | heading: " + n.edges[i].heading + " | left_diff: " + left_diff + " | right_diff: " + right_diff); } console.log("-- LEFT edge: " + (leftTurnEdge ? leftTurnEdge.id : "(nil)") + " | angle: " + leftTurnAngle); console.log("-- RIGHT edge: " + (rightTurnEdge ? rightTurnEdge.id : "(nil)") + " | angle: " + rightTurnAngle); console.log("-- STRAIGHT edge: " + (straightEdge ? straightEdge.id : "(nil)") + " | angle: " + straightAngle); while (!edge) { try { if (this.customProps.turnSignal && this.customProps.turnSignal == "LEFT" && leftTurnEdge) { console.log("trying LEFT turn: " + leftTurnEdge.id); edge = leftTurnEdge; } else if (this.customProps.turnSignal && this.customProps.turnSignal == "RIGHT" && rightTurnEdge) { console.log("trying RIGHT turn: " + rightTurnEdge.id); edge = rightTurnEdge; } else if (this.customProps.turnSignal && this.customProps.turnSignal == "STRAIGHT" && straightEdge) { console.log("trying STRAIGHT: " + straightEdge.id); edge = straightEdge; } else { console.log("trying RANDOM turn"); var idx = Math.floor(Math.random() * n.edges.length); edge = n.edges[idx]; } // check to make sure we didn't reverse direction if there are multiple edges console.log("checking edge: " + this.currentEdge.a + " " + edge.b); if (this.currentEdge.a == edge.b) { if (n.edges.length == 1) { //console.log("End of the line! Respawning..."); this.setStartingEdge(); return; } else { //console.log("edge won't work, it's a reverse!"); reverseCount++; if (reverseCount > 10) { this.setStartingEdge(); return; } else { edge = null; } } } } catch (e) { console.log(e, "ERROR", n, this.currentEdge); this.setStartingEdge(); return; } } //console.log("new edge = ", edge); this.perc = 0; this.currentEdge = edge; } var vehicles = Array(); for (var i = 1; i <= VEHICLE_COUNT; i++) { var vid = deviceId; var suffix = ""; if (VEHICLE_COUNT > 1) { suffix = "-" + i; } vehicles.push(new Vehicle(vid, suffix)); } var bMapLoaded = false; function drive() { for (var i in vehicles) { vehicles[i].drive(); } } function subscribeToProperties() { client.subscribe(propertyTopic); console.log("subscribed to: " + propertyTopic); client.on('message', function(topic, message) { console.log("message recv: " + topic + " = " + message); try { //var id = topic.split("/")[3]; var data = JSON.parse(message); var id = data.id; if (!id) { id = deviceId; } console.log("setProperty(id="+id+"): " + data.property + " = " + data.value); var v = getVehicle(id); var prop = data.property; var val = data.value; if (v) { if (prop == "lng" || prop == "lat" || prop == "heading" || prop == "id") { return; } switch (prop) { case "speed": v.setSpeed(val); break; case "state": v.state = val; break; case "description": v.description = val; break; case "type": v.type = val; break; default: if (val == "") { if (v.customProps[prop]) { delete v.customProps[prop]; } } else { v.customProps[prop] = val; } } } } catch (e) { console.error(e); } }); } function publishVehicleData() { var payload = []; for (var i in vehicles) { payload.push(vehicles[i].getPublishPayload()); } //console.log("publishing data: " + telemetryTopic + " | " + JSON.stringify(payload)); if (payload.length == 1) { client.publish(telemetryTopic, JSON.stringify(payload[0])); } else { client.publish(telemetryTopic, JSON.stringify(payload)); } } function getVehicle(id) { for (var i in vehicles) { if ((vehicles[i].id + vehicles[i].suffix) == id) { return vehicles[i]; } } return null; } function mapLoaded() { subscribeToProperties(); setInterval(function() { drive(); publishVehicleData(); }, 1000 / TELEMETRY_RATE); } // setup middleware var express = require('express'), https = require('https'), path = require('path'); var app = express(); var bodyParser = require('body-parser'); var methodOverride = require('method-override') // all environments app.set('port', process.env.PORT || 3000); app.use(express.favicon()); app.use(express.logger('dev')); app.use(bodyParser.json()); app.use(methodOverride()); app.use(express.urlencoded()); app.use(app.router); app.use(express.static(path.join(__dirname, 'public'))); // development only if ('development' === app.get('env')) { app.use(express.errorHandler()); } var geo_props = null; //parse VCAP_SERVICES if running in Bluemix if (process.env.VCAP_SERVICES) { var env = JSON.parse(process.env.VCAP_SERVICES); console.log(env); //find the Streams Geo service if (env["Geospatial Analytics"]) { geo_props = env['Geospatial Analytics'][0]['credentials']; console.log(geo_props); } else { console.log('You must bind the Streams Geo service to this application'); } } if (geo_props) { // sample vehicle topic/payload: // {"id":"G-13","name":"Car G-13","lng":-122.41950721920685,"lat":37.76330689770606,"heading":177.06799545408498,"speed":30,"state":"normal","description":"I am a connected car.","type":"car","customProps":{"customProp":"customValue"}} var inputClientId = "a:"+settings.iot_deviceOrg + ":geoInput" + Math.floor(Math.random() * 1000); var notifyClientId = "a:"+settings.iot_deviceOrg + ":geoNotify" + Math.floor(Math.random() * 1000); var apis = [ { name: "start", path: geo_props.start_path, method: "PUT", json: { "mqtt_client_id_input" : inputClientId, "mqtt_client_id_notify" : notifyClientId, "mqtt_uid" : settings.iot_apiKey, "mqtt_pw" : settings.iot_apiToken, "mqtt_uri" : settings.iot_deviceOrg + ".messaging.internetofthings.ibmcloud.com:1883", "mqtt_input_topics" : settings.inputTopic, "mqtt_notify_topic" : settings.notifyTopic, "device_id_attr_name" : "id", "latitude_attr_name" : "lat", "longitude_attr_name" : "lng" } }, { name: "stop", path: geo_props.stop_path, method: "PUT", json: null }, { name: "addRegion", path: geo_props.add_region_path, method: "PUT", json: { // sample JSON for adding a region "regions" : [ { "region_type": "custom", "name": "custom_poly", "notifyOnExit": "true", "polygon": [ {"latitude": "30.27830", "longitude": "-97.74316"}, {"latitude": "30.27617", "longitude": "-97.73573"}, {"latitude": "30.26676", "longitude": "-97.73917"}, {"latitude": "30.26852", "longitude": "-97.74560"} // an edge is drawn between last and first points to close the poly ] } ] } }, { name: "removeRegion", path: geo_props.remove_region_path, method: "PUT", json: { // sample JSON for removing the sample region "region_type": "custom", "region_name": "custom_poly" } }, { name: "restart", path: geo_props.restart_path, method: "PUT", json: null }, { name: "status", path: geo_props.status_path, method: "GET", json: null }, ] // build routes for (var i in apis) { var route = "/GeospatialService_"+apis[i].name; console.log("Creating route: " + route); app.get(route, (function(api) { return function(request, response) { var route = "/GeospatialService_"+api.name; console.log("About to call " + route); // prepare options var options = { host: geo_props.geo_host, port: geo_props.geo_port, path: api.path, method: api.method, headers: { 'Authorization' : ('Basic ' + new Buffer(geo_props.userid + ':' + geo_props.password).toString('base64')) } }; // start by loading sample JSON var bodyJson = api.json; // if we pass in query parameters, overwrite the sample JSON with this information if (request.query && Object.keys(request.query).length > 0) { console.log("BODY: ", request.query); bodyJson = request.query; } else { console.log("NO BODY"); } if (bodyJson) { options.headers['Content-Type'] = 'application/json'; options.headers['Content-Length'] = Buffer.byteLength(JSON.stringify(bodyJson), 'utf8'); } console.log('Options prepared:', options); console.log('Do the GeospatialService_' + api.name + ' call'); // do the PUT call var reqPut = https.request(options, function(res) { // uncomment it for header details console.log("headers: ", res.headers); console.log("statusCode: ", res.statusCode); var responseData = ''; res.on('data', function(chunk) { responseData += chunk.toString(); }); res.on('end', function() { try { console.log(route + ' response:\n'); console.log(responseData); console.log("\n" + route + ' completed'); console.log("statusCode: ", res.statusCode); var result = JSON.parse(responseData); console.log("result:\n", result); if (res.statusCode != 200) { response.send(res.statusCode, "<h1>"+route+" failed with code: "+res.statusCode+"</h1>"); } else { if (route == "/GeospatialService_status") { response.send(res.statusCode, result); } else { response.send(res.statusCode, "<h1>"+route+" succeeded!</h1><pre>" + JSON.stringify(result, null, 4) + "</pre>"); } } } catch (e) { console.error(e); response.send(500, { error: "parse error: " + route }); } }); if (res.statusCode != 200) { runError = 1; } }); if (bodyJson) { // write the json data console.log('Writing json:\n', JSON.stringify(bodyJson, null, 4)); reqPut.write(JSON.stringify(bodyJson)); } reqPut.end(); reqPut.on('error', function(e) { console.error(e); }); } })(apis[i])); } } app.get("/credentials", function(request, response) { response.send(200, settings); }); http.createServer(app).listen(app.get('port'), function(){ console.log('Express server listening on port ' + app.get('port')); });

config/settings.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ var config = { iot_deviceType: "Vehicle", // replace with your deviceType iot_deviceOrg: "lzfew7", // replace with your IoT Foundation organization iot_deviceSet: [ // replace with your registered device(s) { deviceId: "Vehicle1", token: "qaz123WSX" }, { deviceId: "Vehicle2", token: "wsx123QAZ" }, { deviceId: "Vehicle3", token: "edc123WSX" } ], iot_apiKey: "a-lzfew7-rdy0ukhyjs", // replace with the key for a generated API token iot_apiToken: "2IJ3YkURaos!Hj&RH)", // replace with the generated API token // these topics will be used by Geospatial Analytics notifyTopic: "iot-2/type/api/id/geospatial/cmd/geoAlert/fmt/json", inputTopic: "iot-2/type/Vehicle/id/+/evt/telemetry/fmt/json", }; try { module.exports = config; } catch (e) { window.config = config; }

docs/add_overlay1.png

docs/config1.png

docs/geospatial1.png

docs/geospatial2.png

docs/geospatial3.png

docs/geospatial4.png

docs/iot1.png

docs/iot2.png

docs/iot3.png

docs/iot4.png

docs/iot5.png

docs/iot6.png

docs/iot7.png

docs/iot8.png

docs/map1.png

docs/messaging.png

docs/node_red0.png

docs/node_red1_1.png

docs/node_red1_2.png

docs/node_red1_3.png

docs/node_red2_1.png

docs/node_red2_2.png

docs/node_red2_3.png

docs/node_red2_4.png

docs/node_red3_1.png

docs/node_red3_2.png

docs/node_red4_1.png

docs/node_red4_2.png

docs/set_property1.png

docs/set_property2.png

docs/vehicle_count1.png

docs/vehicle_count2.png

LICENSE

Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS "Contribution" means: a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor: i) changes to the Program, and ii) additions to the Program; where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. "Contributor" means any person or entity that distributes the Program. "Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. "Program" means the Contributions distributed in accordance with this Agreement. "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. 2. GRANT OF RIGHTS a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. 3. REQUIREMENTS A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: a) it complies with the terms and conditions of this Agreement; and b) its license agreement: i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. When the Program is made available in source code form: a) it must be made available under this Agreement; and b) a copy of this Agreement must be included with each copy of the Program. Contributors may not remove or alter any copyright notices contained within the Program. Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. 4. COMMERCIAL DISTRIBUTION Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. 5. NO WARRANTY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. 6. DISCLAIMER OF LIABILITY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. GENERAL If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.

manifest.yml

applications: - host: Lab8TestT12018Assignment3 disk: 128M name: Lab8TestT12018Assignment3 command: node app.js path: . domain: mybluemix.net memory: 128M instances: 3

maps/austin_downtown-clean.osm

maps/san_francisco-clean.osm

maps/vegas-clean.osm

node_modules/body-parser/HISTORY.md

1.17.2 / 2017-05-17 =================== * deps: [email protected] - Fix `DEBUG_MAX_ARRAY_LENGTH` - deps: [email protected] * deps: type-is@~1.6.15 - deps: mime-types@~2.1.15 1.17.1 / 2017-03-06 =================== * deps: [email protected] - Fix regression parsing keys starting with `[` 1.17.0 / 2017-03-01 =================== * deps: http-errors@~1.6.1 - Make `message` property enumerable for `HttpError`s - deps: [email protected] * deps: [email protected] - Fix compacting nested arrays 1.16.1 / 2017-02-10 =================== * deps: [email protected] - Fix deprecation messages in WebStorm and other editors - Undeprecate `DEBUG_FD` set to `1` or `2` 1.16.0 / 2017-01-17 =================== * deps: [email protected] - Allow colors in workers - Deprecated `DEBUG_FD` environment variable - Fix error when running under React Native - Use same color for same namespace - deps: [email protected] * deps: http-errors@~1.5.1 - deps: [email protected] - deps: [email protected] - deps: statuses@'>= 1.3.1 < 2' * deps: [email protected] - Added encoding MS-31J - Added encoding MS-932 - Added encoding MS-936 - Added encoding MS-949 - Added encoding MS-950 - Fix GBK/GB18030 handling of Euro character * deps: [email protected] - Fix array parsing from skipping empty values * deps: raw-body@~2.2.0 - deps: [email protected] * deps: type-is@~1.6.14 - deps: mime-types@~2.1.13 1.15.2 / 2016-06-19 =================== * deps: [email protected] * deps: content-type@~1.0.2 - perf: enable strict mode * deps: http-errors@~1.5.0 - Use `setprototypeof` module to replace `__proto__` setting - deps: statuses@'>= 1.3.0 < 2' - perf: enable strict mode * deps: [email protected] * deps: raw-body@~2.1.7 - deps: [email protected] - perf: remove double-cleanup on happy path * deps: type-is@~1.6.13 - deps: mime-types@~2.1.11 1.15.1 / 2016-05-05 =================== * deps: [email protected] - Drop partial bytes on all parsed units - Fix parsing byte string that looks like hex * deps: raw-body@~2.1.6 - deps: [email protected] * deps: type-is@~1.6.12 - deps: mime-types@~2.1.10 1.15.0 / 2016-02-10 =================== * deps: http-errors@~1.4.0 - Add `HttpError` export, for `err instanceof createError.HttpError` - deps: [email protected] - deps: statuses@'>= 1.2.1 < 2' * deps: [email protected] * deps: type-is@~1.6.11 - deps: mime-types@~2.1.9 1.14.2 / 2015-12-16 =================== * deps: [email protected] * deps: [email protected] * deps: [email protected] * deps: raw-body@~2.1.5 - deps: [email protected] - deps: [email protected] * deps: type-is@~1.6.10 - deps: mime-types@~2.1.8 1.14.1 / 2015-09-27 =================== * Fix issue where invalid charset results in 400 when `verify` used * deps: [email protected] - Fix CESU-8 decoding in Node.js 4.x * deps: raw-body@~2.1.4 - Fix masking critical errors from `iconv-lite` - deps: [email protected] * deps: type-is@~1.6.9 - deps: mime-types@~2.1.7 1.14.0 / 2015-09-16 =================== * Fix JSON strict parse error to match syntax errors * Provide static `require` analysis in `urlencoded` parser * deps: depd@~1.1.0 - Support web browser loading * deps: [email protected] * deps: raw-body@~2.1.3 - Fix sync callback when attaching data listener causes sync read * deps: type-is@~1.6.8 - Fix type error when given invalid type to match against - deps: mime-types@~2.1.6 1.13.3 / 2015-07-31 =================== * deps: type-is@~1.6.6 - deps: mime-types@~2.1.4 1.13.2 / 2015-07-05 =================== * deps: [email protected] * deps: [email protected] - Fix dropping parameters like `hasOwnProperty` - Fix user-visible incompatibilities from 3.1.0 - Fix various parsing edge cases * deps: raw-body@~2.1.2 - Fix error stack traces to skip `makeError` - deps: [email protected] * deps: type-is@~1.6.4 - deps: mime-types@~2.1.2 - perf: enable strict mode - perf: remove argument reassignment 1.13.1 / 2015-06-16 =================== * deps: [email protected] - Downgraded from 3.1.0 because of user-visible incompatibilities 1.13.0 / 2015-06-14 =================== * Add `statusCode` property on `Error`s, in addition to `status` * Change `type` default to `application/json` for JSON parser * Change `type` default to `application/x-www-form-urlencoded` for urlencoded parser * Provide static `require` analysis * Use the `http-errors` module to generate errors * deps: [email protected] - Slight optimizations * deps: [email protected] - The encoding UTF-16 without BOM now defaults to UTF-16LE when detection fails - Leading BOM is now removed when decoding * deps: on-finished@~2.3.0 - Add defined behavior for HTTP `CONNECT` requests - Add defined behavior for HTTP `Upgrade` requests - deps: [email protected] * deps: [email protected] - Fix dropping parameters like `hasOwnProperty` - Fix various parsing edge cases - Parsed object now has `null` prototype * deps: raw-body@~2.1.1 - Use `unpipe` module for unpiping requests - deps: [email protected] * deps: type-is@~1.6.3 - deps: mime-types@~2.1.1 - perf: reduce try block size - perf: remove bitwise operations * perf: enable strict mode * perf: remove argument reassignment * perf: remove delete call 1.12.4 / 2015-05-10 =================== * deps: debug@~2.2.0 * deps: [email protected] - Fix allowing parameters like `constructor` * deps: on-finished@~2.2.1 * deps: raw-body@~2.0.1 - Fix a false-positive when unpiping in Node.js 0.8 - deps: [email protected] * deps: type-is@~1.6.2 - deps: mime-types@~2.0.11 1.12.3 / 2015-04-15 =================== * Slight efficiency improvement when not debugging * deps: depd@~1.0.1 * deps: [email protected] - Add encoding alias UNICODE-1-1-UTF-7 * deps: [email protected] - Fix hanging callback if request aborts during read - deps: [email protected] 1.12.2 / 2015-03-16 =================== * deps: [email protected] - Fix error when parameter `hasOwnProperty` is present 1.12.1 / 2015-03-15 =================== * deps: debug@~2.1.3 - Fix high intensity foreground color for bold - deps: [email protected] * deps: type-is@~1.6.1 - deps: mime-types@~2.0.10 1.12.0 / 2015-02-13 =================== * add `debug` messages * accept a function for the `type` option * use `content-type` to parse `Content-Type` headers * deps: [email protected] - Gracefully support enumerables on `Object.prototype` * deps: [email protected] - deps: [email protected] * deps: type-is@~1.6.0 - fix argument reassignment - fix false-positives in `hasBody` `Transfer-Encoding` check - support wildcard for both type and subtype (`*/*`) - deps: mime-types@~2.0.9 1.11.0 / 2015-01-30 =================== * make internal `extended: true` depth limit infinity * deps: type-is@~1.5.6 - deps: mime-types@~2.0.8 1.10.2 / 2015-01-20 =================== * deps: [email protected] - Fix rare aliases of single-byte encodings * deps: [email protected] - deps: [email protected] 1.10.1 / 2015-01-01 =================== * deps: on-finished@~2.2.0 * deps: type-is@~1.5.5 - deps: mime-types@~2.0.7 1.10.0 / 2014-12-02 =================== * make internal `extended: true` array limit dynamic 1.9.3 / 2014-11-21 ================== * deps: [email protected] - Fix Windows-31J and X-SJIS encoding support * deps: [email protected] - Fix `arrayLimit` behavior * deps: [email protected] - deps: [email protected] * deps: type-is@~1.5.3 - deps: mime-types@~2.0.3 1.9.2 / 2014-10-27 ================== * deps: [email protected] - Fix parsing of mixed objects and values 1.9.1 / 2014-10-22 ================== * deps: on-finished@~2.1.1 - Fix handling of pipelined requests * deps: [email protected] - Fix parsing of mixed implicit and explicit arrays * deps: type-is@~1.5.2 - deps: mime-types@~2.0.2 1.9.0 / 2014-09-24 ================== * include the charset in "unsupported charset" error message * include the encoding in "unsupported content encoding" error message * deps: depd@~1.0.0 1.8.4 / 2014-09-23 ================== * fix content encoding to be case-insensitive 1.8.3 / 2014-09-19 ================== * deps: [email protected] - Fix issue with object keys starting with numbers truncated 1.8.2 / 2014-09-15 ================== * deps: [email protected] 1.8.1 / 2014-09-07 ================== * deps: [email protected] * deps: type-is@~1.5.1 1.8.0 / 2014-09-05 ================== * make empty-body-handling consistent between chunked requests - empty `json` produces `{}` - empty `raw` produces `new Buffer(0)` - empty `text` produces `''` - empty `urlencoded` produces `{}` * deps: [email protected] - Fix issue where first empty value in array is discarded * deps: type-is@~1.5.0 - fix `hasbody` to be true for `content-length: 0` 1.7.0 / 2014-09-01 ================== * add `parameterLimit` option to `urlencoded` parser * change `urlencoded` extended array limit to 100 * respond with 413 when over `parameterLimit` in `urlencoded` 1.6.7 / 2014-08-29 ================== * deps: [email protected] - Remove unnecessary cloning 1.6.6 / 2014-08-27 ================== * deps: [email protected] - Array parsing fix - Performance improvements 1.6.5 / 2014-08-16 ================== * deps: [email protected] 1.6.4 / 2014-08-14 ================== * deps: [email protected] 1.6.3 / 2014-08-10 ================== * deps: [email protected] 1.6.2 / 2014-08-07 ================== * deps: [email protected] - Fix parsing array of objects 1.6.1 / 2014-08-06 ================== * deps: [email protected] - Accept urlencoded square brackets - Accept empty values in implicit array notation 1.6.0 / 2014-08-05 ================== * deps: [email protected] - Complete rewrite - Limits array length to 20 - Limits object depth to 5 - Limits parameters to 1,000 1.5.2 / 2014-07-27 ================== * deps: [email protected] - Work-around v8 generating empty stack traces 1.5.1 / 2014-07-26 ================== * deps: [email protected] - Fix exception when global `Error.stackTraceLimit` is too low 1.5.0 / 2014-07-20 ================== * deps: [email protected] - Add `TRACE_DEPRECATION` environment variable - Remove non-standard grey color from color output - Support `--no-deprecation` argument - Support `--trace-deprecation` argument * deps: [email protected] - Added encoding UTF-7 * deps: [email protected] - deps: [email protected] - Added encoding UTF-7 - Fix `Cannot switch to old mode now` error on Node.js 0.10+ * deps: type-is@~1.3.2 1.4.3 / 2014-06-19 ================== * deps: [email protected] - fix global variable leak 1.4.2 / 2014-06-19 ================== * deps: [email protected] - improve type parsing 1.4.1 / 2014-06-19 ================== * fix urlencoded extended deprecation message 1.4.0 / 2014-06-19 ================== * add `text` parser * add `raw` parser * check accepted charset in content-type (accepts utf-8) * check accepted encoding in content-encoding (accepts identity) * deprecate `bodyParser()` middleware; use `.json()` and `.urlencoded()` as needed * deprecate `urlencoded()` without provided `extended` option * lazy-load urlencoded parsers * parsers split into files for reduced mem usage * support gzip and deflate bodies - set `inflate: false` to turn off * deps: [email protected] - Support all encodings from `iconv-lite` 1.3.1 / 2014-06-11 ================== * deps: [email protected] - Switch dependency from mime to [email protected] 1.3.0 / 2014-05-31 ================== * add `extended` option to urlencoded parser 1.2.2 / 2014-05-27 ================== * deps: [email protected] - assert stream encoding on node.js 0.8 - assert stream encoding on node.js < 0.10.6 - deps: bytes@1 1.2.1 / 2014-05-26 ================== * invoke `next(err)` after request fully read - prevents hung responses and socket hang ups 1.2.0 / 2014-05-11 ================== * add `verify` option * deps: [email protected] - support suffix matching 1.1.2 / 2014-05-11 ================== * improve json parser speed 1.1.1 / 2014-05-11 ================== * fix repeated limit parsing with every request 1.1.0 / 2014-05-10 ================== * add `type` option * deps: pin for safety and consistency 1.0.2 / 2014-04-14 ================== * use `type-is` module 1.0.1 / 2014-03-20 ================== * lower default limits to 100kb

node_modules/body-parser/index.js

/*! * body-parser * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var deprecate = require('depd')('body-parser') /** * Cache of loaded parsers. * @private */ var parsers = Object.create(null) /** * @typedef Parsers * @type {function} * @property {function} json * @property {function} raw * @property {function} text * @property {function} urlencoded */ /** * Module exports. * @type {Parsers} */ exports = module.exports = deprecate.function(bodyParser, 'bodyParser: use individual json/urlencoded middlewares') /** * JSON parser. * @public */ Object.defineProperty(exports, 'json', { configurable: true, enumerable: true, get: createParserGetter('json') }) /** * Raw parser. * @public */ Object.defineProperty(exports, 'raw', { configurable: true, enumerable: true, get: createParserGetter('raw') }) /** * Text parser. * @public */ Object.defineProperty(exports, 'text', { configurable: true, enumerable: true, get: createParserGetter('text') }) /** * URL-encoded parser. * @public */ Object.defineProperty(exports, 'urlencoded', { configurable: true, enumerable: true, get: createParserGetter('urlencoded') }) /** * Create a middleware to parse json and urlencoded bodies. * * @param {object} [options] * @return {function} * @deprecated * @public */ function bodyParser (options) { var opts = {} // exclude type option if (options) { for (var prop in options) { if (prop !== 'type') { opts[prop] = options[prop] } } } var _urlencoded = exports.urlencoded(opts) var _json = exports.json(opts) return function bodyParser (req, res, next) { _json(req, res, function (err) { if (err) return next(err) _urlencoded(req, res, next) }) } } /** * Create a getter for loading a parser. * @private */ function createParserGetter (name) { return function get () { return loadParser(name) } } /** * Load a parser module. * @private */ function loadParser (parserName) { var parser = parsers[parserName] if (parser !== undefined) { return parser } // this uses a switch for static require analysis switch (parserName) { case 'json': parser = require('./lib/types/json') break case 'raw': parser = require('./lib/types/raw') break case 'text': parser = require('./lib/types/text') break case 'urlencoded': parser = require('./lib/types/urlencoded') break } // store to prevent invoking require() return (parsers[parserName] = parser) }

node_modules/body-parser/lib/read.js

/*! * body-parser * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var createError = require('http-errors') var getBody = require('raw-body') var iconv = require('iconv-lite') var onFinished = require('on-finished') var zlib = require('zlib') /** * Module exports. */ module.exports = read /** * Read a request into a buffer and parse. * * @param {object} req * @param {object} res * @param {function} next * @param {function} parse * @param {function} debug * @param {object} options * @private */ function read (req, res, next, parse, debug, options) { var length var opts = options var stream // flag as parsed req._body = true // read options var encoding = opts.encoding !== null ? opts.encoding : null var verify = opts.verify try { // get the content stream stream = contentstream(req, debug, opts.inflate) length = stream.length stream.length = undefined } catch (err) { return next(err) } // set raw-body options opts.length = length opts.encoding = verify ? null : encoding // assert charset is supported if (opts.encoding === null && encoding !== null && !iconv.encodingExists(encoding)) { return next(createError(415, 'unsupported charset "' + encoding.toUpperCase() + '"', { charset: encoding.toLowerCase() })) } // read body debug('read body') getBody(stream, opts, function (err, body) { if (err) { // default to 400 setErrorStatus(err, 400) // echo back charset if (err.type === 'encoding.unsupported') { err = createError(415, 'unsupported charset "' + encoding.toUpperCase() + '"', { charset: encoding.toLowerCase() }) } // read off entire request stream.resume() onFinished(req, function onfinished () { next(err) }) return } // verify if (verify) { try { debug('verify body') verify(req, res, body, encoding) } catch (err) { // default to 403 setErrorStatus(err, 403) next(err) return } } // parse var str try { debug('parse body') str = typeof body !== 'string' && encoding !== null ? iconv.decode(body, encoding) : body req.body = parse(str) } catch (err) { // istanbul ignore next err.body = str === undefined ? body : str // default to 400 setErrorStatus(err, 400) next(err) return } next() }) } /** * Get the content stream of the request. * * @param {object} req * @param {function} debug * @param {boolean} [inflate=true] * @return {object} * @api private */ function contentstream (req, debug, inflate) { var encoding = (req.headers['content-encoding'] || 'identity').toLowerCase() var length = req.headers['content-length'] var stream debug('content-encoding "%s"', encoding) if (inflate === false && encoding !== 'identity') { throw createError(415, 'content encoding unsupported') } switch (encoding) { case 'deflate': stream = zlib.createInflate() debug('inflate body') req.pipe(stream) break case 'gzip': stream = zlib.createGunzip() debug('gunzip body') req.pipe(stream) break case 'identity': stream = req stream.length = length break default: throw createError(415, 'unsupported content encoding "' + encoding + '"', { encoding: encoding }) } return stream } /** * Set a status on an error object, if ones does not exist * @private */ function setErrorStatus (error, status) { if (!error.status && !error.statusCode) { error.status = status error.statusCode = status } }

node_modules/body-parser/lib/types/json.js

/*! * body-parser * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var bytes = require('bytes') var contentType = require('content-type') var createError = require('http-errors') var debug = require('debug')('body-parser:json') var read = require('../read') var typeis = require('type-is') /** * Module exports. */ module.exports = json /** * RegExp to match the first non-space in a string. * * Allowed whitespace is defined in RFC 7159: * * ws = *( * %x20 / ; Space * %x09 / ; Horizontal tab * %x0A / ; Line feed or New line * %x0D ) ; Carriage return */ var FIRST_CHAR_REGEXP = /^[\x20\x09\x0a\x0d]*(.)/ // eslint-disable-line no-control-regex /** * Create a middleware to parse JSON bodies. * * @param {object} [options] * @return {function} * @public */ function json (options) { var opts = options || {} var limit = typeof opts.limit !== 'number' ? bytes.parse(opts.limit || '100kb') : opts.limit var inflate = opts.inflate !== false var reviver = opts.reviver var strict = opts.strict !== false var type = opts.type || 'application/json' var verify = opts.verify || false if (verify !== false && typeof verify !== 'function') { throw new TypeError('option verify must be function') } // create the appropriate type checking function var shouldParse = typeof type !== 'function' ? typeChecker(type) : type function parse (body) { if (body.length === 0) { // special-case empty json body, as it's a common client-side mistake // TODO: maybe make this configurable or part of "strict" option return {} } if (strict) { var first = firstchar(body) if (first !== '{' && first !== '[') { debug('strict violation') throw new SyntaxError('Unexpected token ' + first) } } debug('parse json') return JSON.parse(body, reviver) } return function jsonParser (req, res, next) { if (req._body) { debug('body already parsed') next() return } req.body = req.body || {} // skip requests without bodies if (!typeis.hasBody(req)) { debug('skip empty body') next() return } debug('content-type %j', req.headers['content-type']) // determine if request should be parsed if (!shouldParse(req)) { debug('skip parsing') next() return } // assert charset per RFC 7159 sec 8.1 var charset = getCharset(req) || 'utf-8' if (charset.substr(0, 4) !== 'utf-') { debug('invalid charset') next(createError(415, 'unsupported charset "' + charset.toUpperCase() + '"', { charset: charset })) return } // read read(req, res, next, parse, debug, { encoding: charset, inflate: inflate, limit: limit, verify: verify }) } } /** * Get the first non-whitespace character in a string. * * @param {string} str * @return {function} * @private */ function firstchar (str) { return FIRST_CHAR_REGEXP.exec(str)[1] } /** * Get the charset of a request. * * @param {object} req * @api private */ function getCharset (req) { try { return contentType.parse(req).parameters.charset.toLowerCase() } catch (e) { return undefined } } /** * Get the simple type checker. * * @param {string} type * @return {function} */ function typeChecker (type) { return function checkType (req) { return Boolean(typeis(req, type)) } }

node_modules/body-parser/lib/types/raw.js

/*! * body-parser * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. */ var bytes = require('bytes') var debug = require('debug')('body-parser:raw') var read = require('../read') var typeis = require('type-is') /** * Module exports. */ module.exports = raw /** * Create a middleware to parse raw bodies. * * @param {object} [options] * @return {function} * @api public */ function raw (options) { var opts = options || {} var inflate = opts.inflate !== false var limit = typeof opts.limit !== 'number' ? bytes.parse(opts.limit || '100kb') : opts.limit var type = opts.type || 'application/octet-stream' var verify = opts.verify || false if (verify !== false && typeof verify !== 'function') { throw new TypeError('option verify must be function') } // create the appropriate type checking function var shouldParse = typeof type !== 'function' ? typeChecker(type) : type function parse (buf) { return buf } return function rawParser (req, res, next) { if (req._body) { debug('body already parsed') next() return } req.body = req.body || {} // skip requests without bodies if (!typeis.hasBody(req)) { debug('skip empty body') next() return } debug('content-type %j', req.headers['content-type']) // determine if request should be parsed if (!shouldParse(req)) { debug('skip parsing') next() return } // read read(req, res, next, parse, debug, { encoding: null, inflate: inflate, limit: limit, verify: verify }) } } /** * Get the simple type checker. * * @param {string} type * @return {function} */ function typeChecker (type) { return function checkType (req) { return Boolean(typeis(req, type)) } }

node_modules/body-parser/lib/types/text.js

/*! * body-parser * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. */ var bytes = require('bytes') var contentType = require('content-type') var debug = require('debug')('body-parser:text') var read = require('../read') var typeis = require('type-is') /** * Module exports. */ module.exports = text /** * Create a middleware to parse text bodies. * * @param {object} [options] * @return {function} * @api public */ function text (options) { var opts = options || {} var defaultCharset = opts.defaultCharset || 'utf-8' var inflate = opts.inflate !== false var limit = typeof opts.limit !== 'number' ? bytes.parse(opts.limit || '100kb') : opts.limit var type = opts.type || 'text/plain' var verify = opts.verify || false if (verify !== false && typeof verify !== 'function') { throw new TypeError('option verify must be function') } // create the appropriate type checking function var shouldParse = typeof type !== 'function' ? typeChecker(type) : type function parse (buf) { return buf } return function textParser (req, res, next) { if (req._body) { debug('body already parsed') next() return } req.body = req.body || {} // skip requests without bodies if (!typeis.hasBody(req)) { debug('skip empty body') next() return } debug('content-type %j', req.headers['content-type']) // determine if request should be parsed if (!shouldParse(req)) { debug('skip parsing') next() return } // get charset var charset = getCharset(req) || defaultCharset // read read(req, res, next, parse, debug, { encoding: charset, inflate: inflate, limit: limit, verify: verify }) } } /** * Get the charset of a request. * * @param {object} req * @api private */ function getCharset (req) { try { return contentType.parse(req).parameters.charset.toLowerCase() } catch (e) { return undefined } } /** * Get the simple type checker. * * @param {string} type * @return {function} */ function typeChecker (type) { return function checkType (req) { return Boolean(typeis(req, type)) } }

node_modules/body-parser/lib/types/urlencoded.js

/*! * body-parser * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var bytes = require('bytes') var contentType = require('content-type') var createError = require('http-errors') var debug = require('debug')('body-parser:urlencoded') var deprecate = require('depd')('body-parser') var read = require('../read') var typeis = require('type-is') /** * Module exports. */ module.exports = urlencoded /** * Cache of parser modules. */ var parsers = Object.create(null) /** * Create a middleware to parse urlencoded bodies. * * @param {object} [options] * @return {function} * @public */ function urlencoded (options) { var opts = options || {} // notice because option default will flip in next major if (opts.extended === undefined) { deprecate('undefined extended: provide extended option') } var extended = opts.extended !== false var inflate = opts.inflate !== false var limit = typeof opts.limit !== 'number' ? bytes.parse(opts.limit || '100kb') : opts.limit var type = opts.type || 'application/x-www-form-urlencoded' var verify = opts.verify || false if (verify !== false && typeof verify !== 'function') { throw new TypeError('option verify must be function') } // create the appropriate query parser var queryparse = extended ? extendedparser(opts) : simpleparser(opts) // create the appropriate type checking function var shouldParse = typeof type !== 'function' ? typeChecker(type) : type function parse (body) { return body.length ? queryparse(body) : {} } return function urlencodedParser (req, res, next) { if (req._body) { debug('body already parsed') next() return } req.body = req.body || {} // skip requests without bodies if (!typeis.hasBody(req)) { debug('skip empty body') next() return } debug('content-type %j', req.headers['content-type']) // determine if request should be parsed if (!shouldParse(req)) { debug('skip parsing') next() return } // assert charset var charset = getCharset(req) || 'utf-8' if (charset !== 'utf-8') { debug('invalid charset') next(createError(415, 'unsupported charset "' + charset.toUpperCase() + '"', { charset: charset })) return } // read read(req, res, next, parse, debug, { debug: debug, encoding: charset, inflate: inflate, limit: limit, verify: verify }) } } /** * Get the extended query parser. * * @param {object} options */ function extendedparser (options) { var parameterLimit = options.parameterLimit !== undefined ? options.parameterLimit : 1000 var parse = parser('qs') if (isNaN(parameterLimit) || parameterLimit < 1) { throw new TypeError('option parameterLimit must be a positive number') } if (isFinite(parameterLimit)) { parameterLimit = parameterLimit | 0 } return function queryparse (body) { var paramCount = parameterCount(body, parameterLimit) if (paramCount === undefined) { debug('too many parameters') throw createError(413, 'too many parameters') } var arrayLimit = Math.max(100, paramCount) debug('parse extended urlencoding') return parse(body, { allowPrototypes: true, arrayLimit: arrayLimit, depth: Infinity, parameterLimit: parameterLimit }) } } /** * Get the charset of a request. * * @param {object} req * @api private */ function getCharset (req) { try { return contentType.parse(req).parameters.charset.toLowerCase() } catch (e) { return undefined } } /** * Count the number of parameters, stopping once limit reached * * @param {string} body * @param {number} limit * @api private */ function parameterCount (body, limit) { var count = 0 var index = 0 while ((index = body.indexOf('&', index)) !== -1) { count++ index++ if (count === limit) { return undefined } } return count } /** * Get parser for module name dynamically. * * @param {string} name * @return {function} * @api private */ function parser (name) { var mod = parsers[name] if (mod !== undefined) { return mod.parse } // this uses a switch for static require analysis switch (name) { case 'qs': mod = require('qs') break case 'querystring': mod = require('querystring') break } // store to prevent invoking require() parsers[name] = mod return mod.parse } /** * Get the simple query parser. * * @param {object} options */ function simpleparser (options) { var parameterLimit = options.parameterLimit !== undefined ? options.parameterLimit : 1000 var parse = parser('querystring') if (isNaN(parameterLimit) || parameterLimit < 1) { throw new TypeError('option parameterLimit must be a positive number') } if (isFinite(parameterLimit)) { parameterLimit = parameterLimit | 0 } return function queryparse (body) { var paramCount = parameterCount(body, parameterLimit) if (paramCount === undefined) { debug('too many parameters') throw createError(413, 'too many parameters') } debug('parse urlencoding') return parse(body, undefined, undefined, {maxKeys: parameterLimit}) } } /** * Get the simple type checker. * * @param {string} type * @return {function} */ function typeChecker (type) { return function checkType (req) { return Boolean(typeis(req, type)) } }

node_modules/body-parser/LICENSE

(The MIT License) Copyright (c) 2014 Jonathan Ong <[email protected]> Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/body-parser/package.json

{ "_args": [ [ { "raw": "body-parser", "scope": null, "escapedName": "body-parser", "name": "body-parser", "rawSpec": "", "spec": "latest", "type": "tag" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8" ] ], "_from": "body-parser@latest", "_id": "[email protected]", "_inCache": true, "_location": "/body-parser", "_nodeVersion": "6.10.3", "_npmOperationalInternal": { "host": "packages-18-east.internal.npmjs.com", "tmp": "tmp/body-parser-1.17.2.tgz_1495083464528_0.912320519099012" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "3.10.10", "_phantomChildren": {}, "_requested": { "raw": "body-parser", "scope": null, "escapedName": "body-parser", "name": "body-parser", "rawSpec": "", "spec": "latest", "type": "tag" }, "_requiredBy": [ "#USER", "/" ], "_resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz", "_shasum": "f8892abc8f9e627d42aedafbca66bf5ab99104ee", "_shrinkwrap": null, "_spec": "body-parser", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8", "bugs": { "url": "https://github.com/expressjs/body-parser/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" } ], "dependencies": { "bytes": "2.4.0", "content-type": "~1.0.2", "debug": "2.6.7", "depd": "~1.1.0", "http-errors": "~1.6.1", "iconv-lite": "0.4.15", "on-finished": "~2.3.0", "qs": "6.4.0", "raw-body": "~2.2.0", "type-is": "~1.6.15" }, "description": "Node.js body parsing middleware", "devDependencies": { "eslint": "3.19.0", "eslint-config-standard": "10.2.1", "eslint-plugin-import": "2.2.0", "eslint-plugin-markdown": "1.0.0-beta.6", "eslint-plugin-node": "4.2.2", "eslint-plugin-promise": "3.5.0", "eslint-plugin-standard": "3.0.1", "istanbul": "0.4.5", "methods": "1.1.2", "mocha": "2.5.3", "safe-buffer": "5.0.1", "supertest": "1.1.0" }, "directories": {}, "dist": { "shasum": "f8892abc8f9e627d42aedafbca66bf5ab99104ee", "tarball": "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz" }, "engines": { "node": ">= 0.8" }, "files": [ "lib/", "LICENSE", "HISTORY.md", "index.js" ], "gitHead": "77b74312edb46b2e8d8df0c8436aaba396a721e9", "homepage": "https://github.com/expressjs/body-parser#readme", "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" } ], "name": "body-parser", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/expressjs/body-parser.git" }, "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/" }, "version": "1.17.2" }

node_modules/body-parser/README.md

# body-parser [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] [![Gratipay][gratipay-image]][gratipay-url] Node.js body parsing middleware. Parse incoming request bodies in a middleware before your handlers, available under the `req.body` property. [Learn about the anatomy of an HTTP transaction in Node.js](https://nodejs.org/en/docs/guides/anatomy-of-an-http-transaction/). _This does not handle multipart bodies_, due to their complex and typically large nature. For multipart bodies, you may be interested in the following modules: * [busboy](https://www.npmjs.org/package/busboy#readme) and [connect-busboy](https://www.npmjs.org/package/connect-busboy#readme) * [multiparty](https://www.npmjs.org/package/multiparty#readme) and [connect-multiparty](https://www.npmjs.org/package/connect-multiparty#readme) * [formidable](https://www.npmjs.org/package/formidable#readme) * [multer](https://www.npmjs.org/package/multer#readme) This module provides the following parsers: * [JSON body parser](#bodyparserjsonoptions) * [Raw body parser](#bodyparserrawoptions) * [Text body parser](#bodyparsertextoptions) * [URL-encoded form body parser](#bodyparserurlencodedoptions) Other body parsers you might be interested in: - [body](https://www.npmjs.org/package/body#readme) - [co-body](https://www.npmjs.org/package/co-body#readme) ## Installation ```sh $ npm install body-parser ``` ## API <!-- eslint-disable no-unused-vars --> ```js var bodyParser = require('body-parser') ``` The `bodyParser` object exposes various factories to create middlewares. All middlewares will populate the `req.body` property with the parsed body when the `Content-Type` request header matches the `type` option, or an empty object (`{}`) if there was no body to parse, the `Content-Type` was not matched, or an error occurred. The various errors returned by this module are described in the [errors section](#errors). ### bodyParser.json(options) Returns middleware that only parses `json` and only looks at requests where the `Content-Type` header matches the `type` option. This parser accepts any Unicode encoding of the body and supports automatic inflation of `gzip` and `deflate` encodings. A new `body` object containing the parsed data is populated on the `request` object after the middleware (i.e. `req.body`). #### Options The `json` function takes an option `options` object that may contain any of the following keys: ##### inflate When set to `true`, then deflated (compressed) bodies will be inflated; when `false`, deflated bodies are rejected. Defaults to `true`. ##### limit Controls the maximum request body size. If this is a number, then the value specifies the number of bytes; if it is a string, the value is passed to the [bytes](https://www.npmjs.com/package/bytes) library for parsing. Defaults to `'100kb'`. ##### reviver The `reviver` option is passed directly to `JSON.parse` as the second argument. You can find more information on this argument [in the MDN documentation about JSON.parse](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#Example.3A_Using_the_reviver_parameter). ##### strict When set to `true`, will only accept arrays and objects; when `false` will accept anything `JSON.parse` accepts. Defaults to `true`. ##### type The `type` option is used to determine what media type the middleware will parse. This option can be a function or a string. If a string, `type` option is passed directly to the [type-is](https://www.npmjs.org/package/type-is#readme) library and this can be an extension name (like `json`), a mime type (like `application/json`), or a mime type with a wildcard (like `*/*` or `*/json`). If a function, the `type` option is called as `fn(req)` and the request is parsed if it returns a truthy value. Defaults to `application/json`. ##### verify The `verify` option, if supplied, is called as `verify(req, res, buf, encoding)`, where `buf` is a `Buffer` of the raw request body and `encoding` is the encoding of the request. The parsing can be aborted by throwing an error. ### bodyParser.raw(options) Returns middleware that parses all bodies as a `Buffer` and only looks at requests where the `Content-Type` header matches the `type` option. This parser supports automatic inflation of `gzip` and `deflate` encodings. A new `body` object containing the parsed data is populated on the `request` object after the middleware (i.e. `req.body`). This will be a `Buffer` object of the body. #### Options The `raw` function takes an option `options` object that may contain any of the following keys: ##### inflate When set to `true`, then deflated (compressed) bodies will be inflated; when `false`, deflated bodies are rejected. Defaults to `true`. ##### limit Controls the maximum request body size. If this is a number, then the value specifies the number of bytes; if it is a string, the value is passed to the [bytes](https://www.npmjs.com/package/bytes) library for parsing. Defaults to `'100kb'`. ##### type The `type` option is used to determine what media type the middleware will parse. This option can be a function or a string. If a string, `type` option is passed directly to the [type-is](https://www.npmjs.org/package/type-is#readme) library and this can be an extension name (like `bin`), a mime type (like `application/octet-stream`), or a mime type with a wildcard (like `*/*` or `application/*`). If a function, the `type` option is called as `fn(req)` and the request is parsed if it returns a truthy value. Defaults to `application/octet-stream`. ##### verify The `verify` option, if supplied, is called as `verify(req, res, buf, encoding)`, where `buf` is a `Buffer` of the raw request body and `encoding` is the encoding of the request. The parsing can be aborted by throwing an error. ### bodyParser.text(options) Returns middleware that parses all bodies as a string and only looks at requests where the `Content-Type` header matches the `type` option. This parser supports automatic inflation of `gzip` and `deflate` encodings. A new `body` string containing the parsed data is populated on the `request` object after the middleware (i.e. `req.body`). This will be a string of the body. #### Options The `text` function takes an option `options` object that may contain any of the following keys: ##### defaultCharset Specify the default character set for the text content if the charset is not specified in the `Content-Type` header of the request. Defaults to `utf-8`. ##### inflate When set to `true`, then deflated (compressed) bodies will be inflated; when `false`, deflated bodies are rejected. Defaults to `true`. ##### limit Controls the maximum request body size. If this is a number, then the value specifies the number of bytes; if it is a string, the value is passed to the [bytes](https://www.npmjs.com/package/bytes) library for parsing. Defaults to `'100kb'`. ##### type The `type` option is used to determine what media type the middleware will parse. This option can be a function or a string. If a string, `type` option is passed directly to the [type-is](https://www.npmjs.org/package/type-is#readme) library and this can be an extension name (like `txt`), a mime type (like `text/plain`), or a mime type with a wildcard (like `*/*` or `text/*`). If a function, the `type` option is called as `fn(req)` and the request is parsed if it returns a truthy value. Defaults to `text/plain`. ##### verify The `verify` option, if supplied, is called as `verify(req, res, buf, encoding)`, where `buf` is a `Buffer` of the raw request body and `encoding` is the encoding of the request. The parsing can be aborted by throwing an error. ### bodyParser.urlencoded(options) Returns middleware that only parses `urlencoded` bodies and only looks at requests where the `Content-Type` header matches the `type` option. This parser accepts only UTF-8 encoding of the body and supports automatic inflation of `gzip` and `deflate` encodings. A new `body` object containing the parsed data is populated on the `request` object after the middleware (i.e. `req.body`). This object will contain key-value pairs, where the value can be a string or array (when `extended` is `false`), or any type (when `extended` is `true`). #### Options The `urlencoded` function takes an option `options` object that may contain any of the following keys: ##### extended The `extended` option allows to choose between parsing the URL-encoded data with the `querystring` library (when `false`) or the `qs` library (when `true`). The "extended" syntax allows for rich objects and arrays to be encoded into the URL-encoded format, allowing for a JSON-like experience with URL-encoded. For more information, please [see the qs library](https://www.npmjs.org/package/qs#readme). Defaults to `true`, but using the default has been deprecated. Please research into the difference between `qs` and `querystring` and choose the appropriate setting. ##### inflate When set to `true`, then deflated (compressed) bodies will be inflated; when `false`, deflated bodies are rejected. Defaults to `true`. ##### limit Controls the maximum request body size. If this is a number, then the value specifies the number of bytes; if it is a string, the value is passed to the [bytes](https://www.npmjs.com/package/bytes) library for parsing. Defaults to `'100kb'`. ##### parameterLimit The `parameterLimit` option controls the maximum number of parameters that are allowed in the URL-encoded data. If a request contains more parameters than this value, a 413 will be returned to the client. Defaults to `1000`. ##### type The `type` option is used to determine what media type the middleware will parse. This option can be a function or a string. If a string, `type` option is passed directly to the [type-is](https://www.npmjs.org/package/type-is#readme) library and this can be an extension name (like `urlencoded`), a mime type (like `application/x-www-form-urlencoded`), or a mime type with a wildcard (like `*/x-www-form-urlencoded`). If a function, the `type` option is called as `fn(req)` and the request is parsed if it returns a truthy value. Defaults to `application/x-www-form-urlencoded`. ##### verify The `verify` option, if supplied, is called as `verify(req, res, buf, encoding)`, where `buf` is a `Buffer` of the raw request body and `encoding` is the encoding of the request. The parsing can be aborted by throwing an error. ## Errors The middlewares provided by this module create errors depending on the error condition during parsing. The errors will typically have a `status` property that contains the suggested HTTP response code and a `body` property containing the read body, if available. The following are the common errors emitted, though any error can come through for various reasons. ### content encoding unsupported This error will occur when the request had a `Content-Encoding` header that contained an encoding but the "inflation" option was set to `false`. The `status` property is set to `415`. ### request aborted This error will occur when the request is aborted by the client before reading the body has finished. The `received` property will be set to the number of bytes received before the request was aborted and the `expected` property is set to the number of expected bytes. The `status` property is set to `400`. ### request entity too large This error will occur when the request body's size is larger than the "limit" option. The `limit` property will be set to the byte limit and the `length` property will be set to the request body's length. The `status` property is set to `413`. ### request size did not match content length This error will occur when the request's length did not match the length from the `Content-Length` header. This typically occurs when the request is malformed, typically when the `Content-Length` header was calculated based on characters instead of bytes. The `status` property is set to `400`. ### stream encoding should not be set This error will occur when something called the `req.setEncoding` method prior to this middleware. This module operates directly on bytes only and you cannot call `req.setEncoding` when using this module. The `status` property is set to `500`. ### unsupported charset "BOGUS" This error will occur when the request had a charset parameter in the `Content-Type` header, but the `iconv-lite` module does not support it OR the parser does not support it. The charset is contained in the message as well as in the `charset` property. The `status` property is set to `415`. ### unsupported content encoding "bogus" This error will occur when the request had a `Content-Encoding` header that contained an unsupported encoding. The encoding is contained in the message as well as in the `encoding` property. The `status` property is set to `415`. ## Examples ### Express/Connect top-level generic This example demonstrates adding a generic JSON and URL-encoded parser as a top-level middleware, which will parse the bodies of all incoming requests. This is the simplest setup. ```js var express = require('express') var bodyParser = require('body-parser') var app = express() // parse application/x-www-form-urlencoded app.use(bodyParser.urlencoded({ extended: false })) // parse application/json app.use(bodyParser.json()) app.use(function (req, res) { res.setHeader('Content-Type', 'text/plain') res.write('you posted:\n') res.end(JSON.stringify(req.body, null, 2)) }) ``` ### Express route-specific This example demonstrates adding body parsers specifically to the routes that need them. In general, this is the most recommended way to use body-parser with Express. ```js var express = require('express') var bodyParser = require('body-parser') var app = express() // create application/json parser var jsonParser = bodyParser.json() // create application/x-www-form-urlencoded parser var urlencodedParser = bodyParser.urlencoded({ extended: false }) // POST /login gets urlencoded bodies app.post('/login', urlencodedParser, function (req, res) { if (!req.body) return res.sendStatus(400) res.send('welcome, ' + req.body.username) }) // POST /api/users gets JSON bodies app.post('/api/users', jsonParser, function (req, res) { if (!req.body) return res.sendStatus(400) // create user in req.body }) ``` ### Change accepted type for parsers All the parsers accept a `type` option which allows you to change the `Content-Type` that the middleware will parse. ```js var express = require('express') var bodyParser = require('body-parser') var app = express() // parse various different custom JSON types as JSON app.use(bodyParser.json({ type: 'application/*+json' })) // parse some custom thing into a Buffer app.use(bodyParser.raw({ type: 'application/vnd.custom-type' })) // parse an HTML body into a string app.use(bodyParser.text({ type: 'text/html' })) ``` ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/body-parser.svg [npm-url]: https://npmjs.org/package/body-parser [travis-image]: https://img.shields.io/travis/expressjs/body-parser/master.svg [travis-url]: https://travis-ci.org/expressjs/body-parser [coveralls-image]: https://img.shields.io/coveralls/expressjs/body-parser/master.svg [coveralls-url]: https://coveralls.io/r/expressjs/body-parser?branch=master [downloads-image]: https://img.shields.io/npm/dm/body-parser.svg [downloads-url]: https://npmjs.org/package/body-parser [gratipay-image]: https://img.shields.io/gratipay/dougwilson.svg [gratipay-url]: https://www.gratipay.com/dougwilson/

node_modules/bytes/History.md

2.4.0 / 2016-06-01 ================== * Add option "unitSeparator" 2.3.0 / 2016-02-15 ================== * Drop partial bytes on all parsed units * Fix non-finite numbers to `.format` to return `null` * Fix parsing byte string that looks like hex * perf: hoist regular expressions 2.2.0 / 2015-11-13 ================== * add option "decimalPlaces" * add option "fixedDecimals" 2.1.0 / 2015-05-21 ================== * add `.format` export * add `.parse` export 2.0.2 / 2015-05-20 ================== * remove map recreation * remove unnecessary object construction 2.0.1 / 2015-05-07 ================== * fix browserify require * remove node.extend dependency 2.0.0 / 2015-04-12 ================== * add option "case" * add option "thousandsSeparator" * return "null" on invalid parse input * support proper round-trip: bytes(bytes(num)) === num * units no longer case sensitive when parsing 1.0.0 / 2014-05-05 ================== * add negative support. fixes #6 0.3.0 / 2014-03-19 ================== * added terabyte support 0.2.1 / 2013-04-01 ================== * add .component 0.2.0 / 2012-10-28 ================== * bytes(200).should.eql('200b') 0.1.0 / 2012-07-04 ================== * add bytes to string conversion [yields]

node_modules/bytes/index.js

/*! * bytes * Copyright(c) 2012-2014 TJ Holowaychuk * Copyright(c) 2015 Jed Watson * MIT Licensed */ 'use strict'; /** * Module exports. * @public */ module.exports = bytes; module.exports.format = format; module.exports.parse = parse; /** * Module variables. * @private */ var formatThousandsRegExp = /\B(?=(\d{3})+(?!\d))/g; var formatDecimalsRegExp = /(?:\.0*|(\.[^0]+)0+)$/; var map = { b: 1, kb: 1 << 10, mb: 1 << 20, gb: 1 << 30, tb: ((1 << 30) * 1024) }; // TODO: use is-finite module? var numberIsFinite = Number.isFinite || function (v) { return typeof v === 'number' && isFinite(v); }; var parseRegExp = /^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb)$/i; /** * Convert the given value in bytes into a string or parse to string to an integer in bytes. * * @param {string|number} value * @param {{ * case: [string], * decimalPlaces: [number] * fixedDecimals: [boolean] * thousandsSeparator: [string] * unitSeparator: [string] * }} [options] bytes options. * * @returns {string|number|null} */ function bytes(value, options) { if (typeof value === 'string') { return parse(value); } if (typeof value === 'number') { return format(value, options); } return null; } /** * Format the given value in bytes into a string. * * If the value is negative, it is kept as such. If it is a float, * it is rounded. * * @param {number} value * @param {object} [options] * @param {number} [options.decimalPlaces=2] * @param {number} [options.fixedDecimals=false] * @param {string} [options.thousandsSeparator=] * @param {string} [options.unitSeparator=] * * @returns {string|null} * @public */ function format(value, options) { if (!numberIsFinite(value)) { return null; } var mag = Math.abs(value); var thousandsSeparator = (options && options.thousandsSeparator) || ''; var unitSeparator = (options && options.unitSeparator) || ''; var decimalPlaces = (options && options.decimalPlaces !== undefined) ? options.decimalPlaces : 2; var fixedDecimals = Boolean(options && options.fixedDecimals); var unit = 'B'; if (mag >= map.tb) { unit = 'TB'; } else if (mag >= map.gb) { unit = 'GB'; } else if (mag >= map.mb) { unit = 'MB'; } else if (mag >= map.kb) { unit = 'kB'; } var val = value / map[unit.toLowerCase()]; var str = val.toFixed(decimalPlaces); if (!fixedDecimals) { str = str.replace(formatDecimalsRegExp, '$1'); } if (thousandsSeparator) { str = str.replace(formatThousandsRegExp, thousandsSeparator); } return str + unitSeparator + unit; } /** * Parse the string value into an integer in bytes. * * If no unit is given, it is assumed the value is in bytes. * * @param {number|string} val * * @returns {number|null} * @public */ function parse(val) { if (typeof val === 'number' && !isNaN(val)) { return val; } if (typeof val !== 'string') { return null; } // Test if the string passed is valid var results = parseRegExp.exec(val); var floatValue; var unit = 'b'; if (!results) { // Nothing could be extracted from the given string floatValue = parseInt(val, 10); unit = 'b' } else { // Retrieve the value and the unit floatValue = parseFloat(results[1]); unit = results[4].toLowerCase(); } return Math.floor(map[unit] * floatValue); }

node_modules/bytes/LICENSE

(The MIT License) Copyright (c) 2012-2014 TJ Holowaychuk <[email protected]> Copyright (c) 2015 Jed Watson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/bytes/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "bytes", "name": "bytes", "rawSpec": "2.4.0", "spec": "2.4.0", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/bytes", "_npmOperationalInternal": { "host": "packages-16-east.internal.npmjs.com", "tmp": "tmp/bytes-2.4.0.tgz_1464812473023_0.6271433881483972" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "1.4.28", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "bytes", "name": "bytes", "rawSpec": "2.4.0", "spec": "2.4.0", "type": "version" }, "_requiredBy": [ "/body-parser", "/raw-body" ], "_resolved": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz", "_shasum": "7d97196f9d5baf7f6935e25985549edd2a6c2339", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "author": { "name": "TJ Holowaychuk", "email": "[email protected]", "url": "http://tjholowaychuk.com" }, "bugs": { "url": "https://github.com/visionmedia/bytes.js/issues" }, "component": { "scripts": { "bytes/index.js": "index.js" } }, "contributors": [ { "name": "Jed Watson", "email": "[email protected]" }, { "name": "Théo FIDRY", "email": "[email protected]" } ], "dependencies": {}, "description": "Utility to parse a string bytes to bytes and vice-versa", "devDependencies": { "mocha": "1.21.5" }, "directories": {}, "dist": { "shasum": "7d97196f9d5baf7f6935e25985549edd2a6c2339", "tarball": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz" }, "files": [ "History.md", "LICENSE", "Readme.md", "index.js" ], "gitHead": "2a598442bdfa796df8d01a96cc54495cda550e70", "homepage": "https://github.com/visionmedia/bytes.js", "keywords": [ "byte", "bytes", "utility", "parse", "parser", "convert", "converter" ], "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" }, { "name": "tjholowaychuk", "email": "[email protected]" } ], "name": "bytes", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/visionmedia/bytes.js.git" }, "scripts": { "test": "mocha --check-leaks --reporter spec" }, "version": "2.4.0" }

node_modules/bytes/Readme.md

# Bytes utility [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Build Status][travis-image]][travis-url] Utility to parse a string bytes (ex: `1TB`) to bytes (`1099511627776`) and vice-versa. ## Usage ```js var bytes = require('bytes'); ``` #### bytes.format(number value, [options]): string|null Format the given value in bytes into a string. If the value is negative, it is kept as such. If it is a float, it is rounded. **Arguments** | Name | Type | Description | |---------|--------|--------------------| | value | `number` | Value in bytes | | options | `Object` | Conversion options | **Options** | Property | Type | Description | |-------------------|--------|-----------------------------------------------------------------------------------------| | decimalPlaces | `number`&#124;`null` | Maximum number of decimal places to include in output. Default value to `2`. | | fixedDecimals | `boolean`&#124;`null` | Whether to always display the maximum number of decimal places. Default value to `false` | | thousandsSeparator | `string`&#124;`null` | Example of values: `' '`, `','` and `.`... Default value to `' '`. | | unitSeparator | `string`&#124;`null` | Separator to use between number and unit. Default value to `''`. | **Returns** | Name | Type | Description | |---------|-------------|-------------------------| | results | `string`&#124;`null` | Return null upon error. String value otherwise. | **Example** ```js bytes(1024); // output: '1kB' bytes(1000); // output: '1000B' bytes(1000, {thousandsSeparator: ' '}); // output: '1 000B' bytes(1024 * 1.7, {decimalPlaces: 0}); // output: '2kB' bytes(1024, {unitSeparator: ' '}); // output: '1 kB' ``` #### bytes.parse(string value): number|null Parse the string value into an integer in bytes. If no unit is given, it is assumed the value is in bytes. Supported units and abbreviations are as follows and are case-insensitive: * "b" for bytes * "kb" for kilobytes * "mb" for megabytes * "gb" for gigabytes * "tb" for terabytes The units are in powers of two, not ten. This means 1kb = 1024b according to this parser. **Arguments** | Name | Type | Description | |---------------|--------|--------------------| | value | `string` | String to parse. | **Returns** | Name | Type | Description | |---------|-------------|-------------------------| | results | `number`&#124;`null` | Return null upon error. Value in bytes otherwise. | **Example** ```js bytes('1kB'); // output: 1024 bytes('1024'); // output: 1024 ``` ## Installation ```bash npm install bytes --save component install visionmedia/bytes.js ``` ## License [![npm](https://img.shields.io/npm/l/express.svg)](https://github.com/visionmedia/bytes.js/blob/master/LICENSE) [downloads-image]: https://img.shields.io/npm/dm/bytes.svg [downloads-url]: https://npmjs.org/package/bytes [npm-image]: https://img.shields.io/npm/v/bytes.svg [npm-url]: https://npmjs.org/package/bytes [travis-image]: https://img.shields.io/travis/visionmedia/bytes.js/master.svg [travis-url]: https://travis-ci.org/visionmedia/bytes.js

node_modules/content-type/HISTORY.md

1.0.2 / 2016-05-09 ================== * perf: enable strict mode 1.0.1 / 2015-02-13 ================== * Improve missing `Content-Type` header error message 1.0.0 / 2015-02-01 ================== * Initial implementation, derived from `[email protected]`

node_modules/content-type/index.js

/*! * content-type * Copyright(c) 2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * RegExp to match *( ";" parameter ) in RFC 7231 sec 3.1.1.1 * * parameter = token "=" ( token / quoted-string ) * token = 1*tchar * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" * / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" * / DIGIT / ALPHA * ; any VCHAR, except delimiters * quoted-string = DQUOTE *( qdtext / quoted-pair ) DQUOTE * qdtext = HTAB / SP / %x21 / %x23-5B / %x5D-7E / obs-text * obs-text = %x80-FF * quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text ) */ var paramRegExp = /; *([!#$%&'\*\+\-\.\^_`\|~0-9A-Za-z]+) *= *("(?:[\u000b\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u000b\u0020-\u00ff])*"|[!#$%&'\*\+\-\.\^_`\|~0-9A-Za-z]+) */g var textRegExp = /^[\u000b\u0020-\u007e\u0080-\u00ff]+$/ var tokenRegExp = /^[!#$%&'\*\+\-\.\^_`\|~0-9A-Za-z]+$/ /** * RegExp to match quoted-pair in RFC 7230 sec 3.2.6 * * quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text ) * obs-text = %x80-FF */ var qescRegExp = /\\([\u000b\u0020-\u00ff])/g /** * RegExp to match chars that must be quoted-pair in RFC 7230 sec 3.2.6 */ var quoteRegExp = /([\\"])/g /** * RegExp to match type in RFC 6838 * * media-type = type "/" subtype * type = token * subtype = token */ var typeRegExp = /^[!#$%&'\*\+\-\.\^_`\|~0-9A-Za-z]+\/[!#$%&'\*\+\-\.\^_`\|~0-9A-Za-z]+$/ /** * Module exports. * @public */ exports.format = format exports.parse = parse /** * Format object to media type. * * @param {object} obj * @return {string} * @public */ function format(obj) { if (!obj || typeof obj !== 'object') { throw new TypeError('argument obj is required') } var parameters = obj.parameters var type = obj.type if (!type || !typeRegExp.test(type)) { throw new TypeError('invalid type') } var string = type // append parameters if (parameters && typeof parameters === 'object') { var param var params = Object.keys(parameters).sort() for (var i = 0; i < params.length; i++) { param = params[i] if (!tokenRegExp.test(param)) { throw new TypeError('invalid parameter name') } string += '; ' + param + '=' + qstring(parameters[param]) } } return string } /** * Parse media type to object. * * @param {string|object} string * @return {Object} * @public */ function parse(string) { if (!string) { throw new TypeError('argument string is required') } if (typeof string === 'object') { // support req/res-like objects as argument string = getcontenttype(string) if (typeof string !== 'string') { throw new TypeError('content-type header is missing from object'); } } if (typeof string !== 'string') { throw new TypeError('argument string is required to be a string') } var index = string.indexOf(';') var type = index !== -1 ? string.substr(0, index).trim() : string.trim() if (!typeRegExp.test(type)) { throw new TypeError('invalid media type') } var key var match var obj = new ContentType(type.toLowerCase()) var value paramRegExp.lastIndex = index while (match = paramRegExp.exec(string)) { if (match.index !== index) { throw new TypeError('invalid parameter format') } index += match[0].length key = match[1].toLowerCase() value = match[2] if (value[0] === '"') { // remove quotes and escapes value = value .substr(1, value.length - 2) .replace(qescRegExp, '$1') } obj.parameters[key] = value } if (index !== -1 && index !== string.length) { throw new TypeError('invalid parameter format') } return obj } /** * Get content-type from req/res objects. * * @param {object} * @return {Object} * @private */ function getcontenttype(obj) { if (typeof obj.getHeader === 'function') { // res-like return obj.getHeader('content-type') } if (typeof obj.headers === 'object') { // req-like return obj.headers && obj.headers['content-type'] } } /** * Quote a string if necessary. * * @param {string} val * @return {string} * @private */ function qstring(val) { var str = String(val) // no need to quote tokens if (tokenRegExp.test(str)) { return str } if (str.length > 0 && !textRegExp.test(str)) { throw new TypeError('invalid parameter value') } return '"' + str.replace(quoteRegExp, '\\$1') + '"' } /** * Class to represent a content type. * @private */ function ContentType(type) { this.parameters = Object.create(null) this.type = type }

node_modules/content-type/LICENSE

(The MIT License) Copyright (c) 2015 Douglas Christopher Wilson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/content-type/package.json

{ "_args": [ [ { "raw": "content-type@~1.0.2", "scope": null, "escapedName": "content-type", "name": "content-type", "rawSpec": "~1.0.2", "spec": ">=1.0.2 <1.1.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "content-type@>=1.0.2 <1.1.0", "_id": "[email protected]", "_inCache": true, "_location": "/content-type", "_nodeVersion": "4.4.3", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/content-type-1.0.2.tgz_1462852785748_0.5491233412176371" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "2.15.1", "_phantomChildren": {}, "_requested": { "raw": "content-type@~1.0.2", "scope": null, "escapedName": "content-type", "name": "content-type", "rawSpec": "~1.0.2", "spec": ">=1.0.2 <1.1.0", "type": "range" }, "_requiredBy": [ "/body-parser" ], "_resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz", "_shasum": "b7d113aee7a8dd27bd21133c4dc2529df1721eed", "_shrinkwrap": null, "_spec": "content-type@~1.0.2", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "author": { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, "bugs": { "url": "https://github.com/jshttp/content-type/issues" }, "dependencies": {}, "description": "Create and parse HTTP Content-Type header", "devDependencies": { "istanbul": "0.4.3", "mocha": "~1.21.5" }, "directories": {}, "dist": { "shasum": "b7d113aee7a8dd27bd21133c4dc2529df1721eed", "tarball": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], "gitHead": "8118763adfbbac80cf1254191889330aec8b8be7", "homepage": "https://github.com/jshttp/content-type#readme", "keywords": [ "content-type", "http", "req", "res", "rfc7231" ], "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" } ], "name": "content-type", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/content-type.git" }, "scripts": { "test": "mocha --reporter spec --check-leaks --bail test/", "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" }, "version": "1.0.2" }

node_modules/content-type/README.md

# content-type [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Create and parse HTTP Content-Type header according to RFC 7231 ## Installation ```sh $ npm install content-type ``` ## API ```js var contentType = require('content-type') ``` ### contentType.parse(string) ```js var obj = contentType.parse('image/svg+xml; charset=utf-8') ``` Parse a content type string. This will return an object with the following properties (examples are shown for the string `'image/svg+xml; charset=utf-8'`): - `type`: The media type (the type and subtype, always lower case). Example: `'image/svg+xml'` - `parameters`: An object of the parameters in the media type (name of parameter always lower case). Example: `{charset: 'utf-8'}` Throws a `TypeError` if the string is missing or invalid. ### contentType.parse(req) ```js var obj = contentType.parse(req) ``` Parse the `content-type` header from the given `req`. Short-cut for `contentType.parse(req.headers['content-type'])`. Throws a `TypeError` if the `Content-Type` header is missing or invalid. ### contentType.parse(res) ```js var obj = contentType.parse(res) ``` Parse the `content-type` header set on the given `res`. Short-cut for `contentType.parse(res.getHeader('content-type'))`. Throws a `TypeError` if the `Content-Type` header is missing or invalid. ### contentType.format(obj) ```js var str = contentType.format({type: 'image/svg+xml'}) ``` Format an object into a content type string. This will return a string of the content type for the given object with the following properties (examples are shown that produce the string `'image/svg+xml; charset=utf-8'`): - `type`: The media type (will be lower-cased). Example: `'image/svg+xml'` - `parameters`: An object of the parameters in the media type (name of the parameter will be lower-cased). Example: `{charset: 'utf-8'}` Throws a `TypeError` if the object contains an invalid type or parameter names. ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/content-type.svg [npm-url]: https://npmjs.org/package/content-type [node-version-image]: https://img.shields.io/node/v/content-type.svg [node-version-url]: http://nodejs.org/download/ [travis-image]: https://img.shields.io/travis/jshttp/content-type/master.svg [travis-url]: https://travis-ci.org/jshttp/content-type [coveralls-image]: https://img.shields.io/coveralls/jshttp/content-type/master.svg [coveralls-url]: https://coveralls.io/r/jshttp/content-type [downloads-image]: https://img.shields.io/npm/dm/content-type.svg [downloads-url]: https://npmjs.org/package/content-type

node_modules/debug/.coveralls.yml

repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve

node_modules/debug/.eslintrc

{ "env": { "browser": true, "node": true }, "rules": { "no-console": 0, "no-empty": [1, { "allowEmptyCatch": true }] }, "extends": "eslint:recommended" }

node_modules/debug/.npmignore

support test examples example *.sock dist yarn.lock coverage bower.json

node_modules/debug/.travis.yml

language: node_js node_js: - "6" - "5" - "4" install: - make node_modules script: - make lint - make test - make coveralls

node_modules/debug/CHANGELOG.md

2.6.7 / 2017-05-16 ================== * Fix: Update ms to 2.0.0 to fix regular expression denial of service vulnerability (#458, @hubdotcom) * Fix: Inline extend function in node implementation (#452, @dougwilson) * Docs: Fix typo (#455, @msasad) 2.6.5 / 2017-04-27 ================== * Fix: null reference check on window.documentElement.style.WebkitAppearance (#447, @thebigredgeek) * Misc: clean up browser reference checks (#447, @thebigredgeek) * Misc: add npm-debug.log to .gitignore (@thebigredgeek) 2.6.4 / 2017-04-20 ================== * Fix: bug that would occure if process.env.DEBUG is a non-string value. (#444, @LucianBuzzo) * Chore: ignore bower.json in npm installations. (#437, @joaovieira) * Misc: update "ms" to v0.7.3 (@tootallnate) 2.6.3 / 2017-03-13 ================== * Fix: Electron reference to `process.env.DEBUG` (#431, @paulcbetts) * Docs: Changelog fix (@thebigredgeek) 2.6.2 / 2017-03-10 ================== * Fix: DEBUG_MAX_ARRAY_LENGTH (#420, @slavaGanzin) * Docs: Add backers and sponsors from Open Collective (#422, @piamancini) * Docs: Add Slackin invite badge (@tootallnate) 2.6.1 / 2017-02-10 ================== * Fix: Module's `export default` syntax fix for IE8 `Expected identifier` error * Fix: Whitelist DEBUG_FD for values 1 and 2 only (#415, @pi0) * Fix: IE8 "Expected identifier" error (#414, @vgoma) * Fix: Namespaces would not disable once enabled (#409, @musikov) 2.6.0 / 2016-12-28 ================== * Fix: added better null pointer checks for browser useColors (@thebigredgeek) * Improvement: removed explicit `window.debug` export (#404, @tootallnate) * Improvement: deprecated `DEBUG_FD` environment variable (#405, @tootallnate) 2.5.2 / 2016-12-25 ================== * Fix: reference error on window within webworkers (#393, @KlausTrainer) * Docs: fixed README typo (#391, @lurch) * Docs: added notice about v3 api discussion (@thebigredgeek) 2.5.1 / 2016-12-20 ================== * Fix: babel-core compatibility 2.5.0 / 2016-12-20 ================== * Fix: wrong reference in bower file (@thebigredgeek) * Fix: webworker compatibility (@thebigredgeek) * Fix: output formatting issue (#388, @kribblo) * Fix: babel-loader compatibility (#383, @escwald) * Misc: removed built asset from repo and publications (@thebigredgeek) * Misc: moved source files to /src (#378, @yamikuronue) * Test: added karma integration and replaced babel with browserify for browser tests (#378, @yamikuronue) * Test: coveralls integration (#378, @yamikuronue) * Docs: simplified language in the opening paragraph (#373, @yamikuronue) 2.4.5 / 2016-12-17 ================== * Fix: `navigator` undefined in Rhino (#376, @jochenberger) * Fix: custom log function (#379, @hsiliev) * Improvement: bit of cleanup + linting fixes (@thebigredgeek) * Improvement: rm non-maintainted `dist/` dir (#375, @freewil) * Docs: simplified language in the opening paragraph. (#373, @yamikuronue) 2.4.4 / 2016-12-14 ================== * Fix: work around debug being loaded in preload scripts for electron (#368, @paulcbetts) 2.4.3 / 2016-12-14 ================== * Fix: navigation.userAgent error for react native (#364, @escwald) 2.4.2 / 2016-12-14 ================== * Fix: browser colors (#367, @tootallnate) * Misc: travis ci integration (@thebigredgeek) * Misc: added linting and testing boilerplate with sanity check (@thebigredgeek) 2.4.1 / 2016-12-13 ================== * Fix: typo that broke the package (#356) 2.4.0 / 2016-12-13 ================== * Fix: bower.json references unbuilt src entry point (#342, @justmatt) * Fix: revert "handle regex special characters" (@tootallnate) * Feature: configurable util.inspect()`options for NodeJS (#327, @tootallnate) * Feature: %O`(big O) pretty-prints objects (#322, @tootallnate) * Improvement: allow colors in workers (#335, @botverse) * Improvement: use same color for same namespace. (#338, @lchenay) 2.3.3 / 2016-11-09 ================== * Fix: Catch `JSON.stringify()` errors (#195, Jovan Alleyne) * Fix: Returning `localStorage` saved values (#331, Levi Thomason) * Improvement: Don't create an empty object when no `process` (Nathan Rajlich) 2.3.2 / 2016-11-09 ================== * Fix: be super-safe in index.js as well (@TooTallNate) * Fix: should check whether process exists (Tom Newby) 2.3.1 / 2016-11-09 ================== * Fix: Added electron compatibility (#324, @paulcbetts) * Improvement: Added performance optimizations (@tootallnate) * Readme: Corrected PowerShell environment variable example (#252, @gimre) * Misc: Removed yarn lock file from source control (#321, @fengmk2) 2.3.0 / 2016-11-07 ================== * Fix: Consistent placement of ms diff at end of output (#215, @gorangajic) * Fix: Escaping of regex special characters in namespace strings (#250, @zacronos) * Fix: Fixed bug causing crash on react-native (#282, @vkarpov15) * Feature: Enabled ES6+ compatible import via default export (#212 @bucaran) * Feature: Added %O formatter to reflect Chrome's console.log capability (#279, @oncletom) * Package: Update "ms" to 0.7.2 (#315, @DevSide) * Package: removed superfluous version property from bower.json (#207 @kkirsche) * Readme: fix USE_COLORS to DEBUG_COLORS * Readme: Doc fixes for format string sugar (#269, @mlucool) * Readme: Updated docs for DEBUG_FD and DEBUG_COLORS environment variables (#232, @mattlyons0) * Readme: doc fixes for PowerShell (#271 #243, @exoticknight @unreadable) * Readme: better docs for browser support (#224, @matthewmueller) * Tooling: Added yarn integration for development (#317, @thebigredgeek) * Misc: Renamed History.md to CHANGELOG.md (@thebigredgeek) * Misc: Added license file (#226 #274, @CantemoInternal @sdaitzman) * Misc: Updated contributors (@thebigredgeek) 2.2.0 / 2015-05-09 ================== * package: update "ms" to v0.7.1 (#202, @dougwilson) * README: add logging to file example (#193, @DanielOchoa) * README: fixed a typo (#191, @amir-s) * browser: expose `storage` (#190, @stephenmathieson) * Makefile: add a `distclean` target (#189, @stephenmathieson) 2.1.3 / 2015-03-13 ================== * Updated stdout/stderr example (#186) * Updated example/stdout.js to match debug current behaviour * Renamed example/stderr.js to stdout.js * Update Readme.md (#184) * replace high intensity foreground color for bold (#182, #183) 2.1.2 / 2015-03-01 ================== * dist: recompile * update "ms" to v0.7.0 * package: update "browserify" to v9.0.3 * component: fix "ms.js" repo location * changed bower package name * updated documentation about using debug in a browser * fix: security error on safari (#167, #168, @yields) 2.1.1 / 2014-12-29 ================== * browser: use `typeof` to check for `console` existence * browser: check for `console.log` truthiness (fix IE 8/9) * browser: add support for Chrome apps * Readme: added Windows usage remarks * Add `bower.json` to properly support bower install 2.1.0 / 2014-10-15 ================== * node: implement `DEBUG_FD` env variable support * package: update "browserify" to v6.1.0 * package: add "license" field to package.json (#135, @panuhorsmalahti) 2.0.0 / 2014-09-01 ================== * package: update "browserify" to v5.11.0 * node: use stderr rather than stdout for logging (#29, @stephenmathieson) 1.0.4 / 2014-07-15 ================== * dist: recompile * example: remove `console.info()` log usage * example: add "Content-Type" UTF-8 header to browser example * browser: place %c marker after the space character * browser: reset the "content" color via `color: inherit` * browser: add colors support for Firefox >= v31 * debug: prefer an instance `log()` function over the global one (#119) * Readme: update documentation about styled console logs for FF v31 (#116, @wryk) 1.0.3 / 2014-07-09 ================== * Add support for multiple wildcards in namespaces (#122, @seegno) * browser: fix lint 1.0.2 / 2014-06-10 ================== * browser: update color palette (#113, @gscottolson) * common: make console logging function configurable (#108, @timoxley) * node: fix %o colors on old node <= 0.8.x * Makefile: find node path using shell/which (#109, @timoxley) 1.0.1 / 2014-06-06 ================== * browser: use `removeItem()` to clear localStorage * browser, node: don't set DEBUG if namespaces is undefined (#107, @leedm777) * package: add "contributors" section * node: fix comment typo * README: list authors 1.0.0 / 2014-06-04 ================== * make ms diff be global, not be scope * debug: ignore empty strings in enable() * node: make DEBUG_COLORS able to disable coloring * *: export the `colors` array * npmignore: don't publish the `dist` dir * Makefile: refactor to use browserify * package: add "browserify" as a dev dependency * Readme: add Web Inspector Colors section * node: reset terminal color for the debug content * node: map "%o" to `util.inspect()` * browser: map "%j" to `JSON.stringify()` * debug: add custom "formatters" * debug: use "ms" module for humanizing the diff * Readme: add "bash" syntax highlighting * browser: add Firebug color support * browser: add colors for WebKit browsers * node: apply log to `console` * rewrite: abstract common logic for Node & browsers * add .jshintrc file 0.8.1 / 2014-04-14 ================== * package: re-add the "component" section 0.8.0 / 2014-03-30 ================== * add `enable()` method for nodejs. Closes #27 * change from stderr to stdout * remove unnecessary index.js file 0.7.4 / 2013-11-13 ================== * remove "browserify" key from package.json (fixes something in browserify) 0.7.3 / 2013-10-30 ================== * fix: catch localStorage security error when cookies are blocked (Chrome) * add debug(err) support. Closes #46 * add .browser prop to package.json. Closes #42 0.7.2 / 2013-02-06 ================== * fix package.json * fix: Mobile Safari (private mode) is broken with debug * fix: Use unicode to send escape character to shell instead of octal to work with strict mode javascript 0.7.1 / 2013-02-05 ================== * add repository URL to package.json * add DEBUG_COLORED to force colored output * add browserify support * fix component. Closes #24 0.7.0 / 2012-05-04 ================== * Added .component to package.json * Added debug.component.js build 0.6.0 / 2012-03-16 ================== * Added support for "-" prefix in DEBUG [Vinay Pulim] * Added `.enabled` flag to the node version [TooTallNate] 0.5.0 / 2012-02-02 ================== * Added: humanize diffs. Closes #8 * Added `debug.disable()` to the CS variant * Removed padding. Closes #10 * Fixed: persist client-side variant again. Closes #9 0.4.0 / 2012-02-01 ================== * Added browser variant support for older browsers [TooTallNate] * Added `debug.enable('project:*')` to browser variant [TooTallNate] * Added padding to diff (moved it to the right) 0.3.0 / 2012-01-26 ================== * Added millisecond diff when isatty, otherwise UTC string 0.2.0 / 2012-01-22 ================== * Added wildcard support 0.1.0 / 2011-12-02 ================== * Added: remove colors unless stderr isatty [TooTallNate] 0.0.1 / 2010-01-03 ================== * Initial release

node_modules/debug/component.json

{ "name": "debug", "repo": "visionmedia/debug", "description": "small debugging utility", "version": "2.6.7", "keywords": [ "debug", "log", "debugger" ], "main": "src/browser.js", "scripts": [ "src/browser.js", "src/debug.js" ], "dependencies": { "rauchg/ms.js": "0.7.1" } }

node_modules/debug/karma.conf.js

// Karma configuration // Generated on Fri Dec 16 2016 13:09:51 GMT+0000 (UTC) module.exports = function(config) { config.set({ // base path that will be used to resolve all patterns (eg. files, exclude) basePath: '', // frameworks to use // available frameworks: https://npmjs.org/browse/keyword/karma-adapter frameworks: ['mocha', 'chai', 'sinon'], // list of files / patterns to load in the browser files: [ 'dist/debug.js', 'test/*spec.js' ], // list of files to exclude exclude: [ 'src/node.js' ], // preprocess matching files before serving them to the browser // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { }, // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter reporters: ['progress'], // web server port port: 9876, // enable / disable colors in the output (reporters and logs) colors: true, // level of logging // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_INFO, // enable / disable watching file and executing tests whenever any file changes autoWatch: true, // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher browsers: ['PhantomJS'], // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits singleRun: false, // Concurrency level // how many browser should be started simultaneous concurrency: Infinity }) }

node_modules/debug/LICENSE

(The MIT License) Copyright (c) 2014 TJ Holowaychuk <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/debug/Makefile

# get Makefile directory name: http://stackoverflow.com/a/5982798/376773 THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd) # BIN directory BIN := $(THIS_DIR)/node_modules/.bin # Path PATH := node_modules/.bin:$(PATH) SHELL := /bin/bash # applications NODE ?= $(shell which node) YARN ?= $(shell which yarn) PKG ?= $(if $(YARN),$(YARN),$(NODE) $(shell which npm)) BROWSERIFY ?= $(NODE) $(BIN)/browserify .FORCE: install: node_modules node_modules: package.json @NODE_ENV= $(PKG) install @touch node_modules lint: .FORCE eslint browser.js debug.js index.js node.js test-node: .FORCE istanbul cover node_modules/mocha/bin/_mocha -- test/**.js test-browser: .FORCE mkdir -p dist @$(BROWSERIFY) \ --standalone debug \ . > dist/debug.js karma start --single-run rimraf dist test: .FORCE concurrently \ "make test-node" \ "make test-browser" coveralls: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js .PHONY: all install clean distclean

node_modules/debug/node.js

module.exports = require('./src/node');

node_modules/debug/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "debug", "name": "debug", "rawSpec": "2.6.7", "spec": "2.6.7", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/debug", "_nodeVersion": "6.9.5", "_npmOperationalInternal": { "host": "packages-18-east.internal.npmjs.com", "tmp": "tmp/debug-2.6.7.tgz_1494995629479_0.5576471360400319" }, "_npmUser": { "name": "thebigredgeek", "email": "[email protected]" }, "_npmVersion": "3.10.10", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "debug", "name": "debug", "rawSpec": "2.6.7", "spec": "2.6.7", "type": "version" }, "_requiredBy": [ "/body-parser" ], "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz", "_shasum": "92bad1f6d05bbb6bba22cca88bcd0ec894c2861e", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "author": { "name": "TJ Holowaychuk", "email": "[email protected]" }, "browser": "./src/browser.js", "bugs": { "url": "https://github.com/visionmedia/debug/issues" }, "component": { "scripts": { "debug/index.js": "browser.js", "debug/debug.js": "debug.js" } }, "contributors": [ { "name": "Nathan Rajlich", "email": "[email protected]", "url": "http://n8.io" }, { "name": "Andrew Rhyne", "email": "[email protected]" } ], "dependencies": { "ms": "2.0.0" }, "description": "small debugging utility", "devDependencies": { "browserify": "9.0.3", "chai": "^3.5.0", "concurrently": "^3.1.0", "coveralls": "^2.11.15", "eslint": "^3.12.1", "istanbul": "^0.4.5", "karma": "^1.3.0", "karma-chai": "^0.1.0", "karma-mocha": "^1.3.0", "karma-phantomjs-launcher": "^1.0.2", "karma-sinon": "^1.0.5", "mocha": "^3.2.0", "mocha-lcov-reporter": "^1.2.0", "rimraf": "^2.5.4", "sinon": "^1.17.6", "sinon-chai": "^2.8.0" }, "directories": {}, "dist": { "shasum": "92bad1f6d05bbb6bba22cca88bcd0ec894c2861e", "tarball": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz" }, "gitHead": "6bb07f7e1bafa33631d8f36a779f17eb8abf5fea", "homepage": "https://github.com/visionmedia/debug#readme", "keywords": [ "debug", "log", "debugger" ], "license": "MIT", "main": "./src/index.js", "maintainers": [ { "name": "thebigredgeek", "email": "[email protected]" } ], "name": "debug", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git://github.com/visionmedia/debug.git" }, "scripts": {}, "version": "2.6.7" }

node_modules/debug/README.md

# debug [![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://visionmedia-community-slackin.now.sh/badge.svg)](https://visionmedia-community-slackin.now.sh/) [![OpenCollective](https://opencollective.com/debug/backers/badge.svg)](#backers) [![OpenCollective](https://opencollective.com/debug/sponsors/badge.svg)](#sponsors) A tiny node.js debugging utility modelled after node core's debugging technique. **Discussion around the V3 API is under way [here](https://github.com/visionmedia/debug/issues/370)** ## Installation ```bash $ npm install debug ``` ## Usage `debug` exposes a function; simply pass this function the name of your module, and it will return a decorated version of `console.error` for you to pass debug statements to. This will allow you to toggle the debug output for different parts of your module as well as the module as a whole. Example _app.js_: ```js var debug = require('debug')('http') , http = require('http') , name = 'My App'; // fake app debug('booting %s', name); http.createServer(function(req, res){ debug(req.method + ' ' + req.url); res.end('hello\n'); }).listen(3000, function(){ debug('listening'); }); // fake worker of some kind require('./worker'); ``` Example _worker.js_: ```js var debug = require('debug')('worker'); setInterval(function(){ debug('doing some work'); }, 1000); ``` The __DEBUG__ environment variable is then used to enable these based on space or comma-delimited names. Here are some examples: ![debug http and worker](http://f.cl.ly/items/18471z1H402O24072r1J/Screenshot.png) ![debug worker](http://f.cl.ly/items/1X413v1a3M0d3C2c1E0i/Screenshot.png) #### Windows note On Windows the environment variable is set using the `set` command. ```cmd set DEBUG=*,-not_this ``` Note that PowerShell uses different syntax to set environment variables. ```cmd $env:DEBUG = "*,-not_this" ``` Then, run the program to be debugged as usual. ## Millisecond diff When actively developing an application it can be useful to see when the time spent between one `debug()` call and the next. Suppose for example you invoke `debug()` before requesting a resource, and after as well, the "+NNNms" will show you how much time was spent between calls. ![](http://f.cl.ly/items/2i3h1d3t121M2Z1A3Q0N/Screenshot.png) When stdout is not a TTY, `Date#toUTCString()` is used, making it more useful for logging the debug information as shown below: ![](http://f.cl.ly/items/112H3i0e0o0P0a2Q2r11/Screenshot.png) ## Conventions If you're using this in one or more of your libraries, you _should_ use the name of your library so that developers may toggle debugging as desired without guessing names. If you have more than one debuggers you _should_ prefix them with your library name and use ":" to separate features. For example "bodyParser" from Connect would then be "connect:bodyParser". ## Wildcards The `*` character may be used as a wildcard. Suppose for example your library has debuggers named "connect:bodyParser", "connect:compress", "connect:session", instead of listing all three with `DEBUG=connect:bodyParser,connect:compress,connect:session`, you may simply do `DEBUG=connect:*`, or to run everything using this module simply use `DEBUG=*`. You can also exclude specific debuggers by prefixing them with a "-" character. For example, `DEBUG=*,-connect:*` would include all debuggers except those starting with "connect:". ## Environment Variables When running through Node.js, you can set a few environment variables that will change the behavior of the debug logging: | Name | Purpose | |-----------|-------------------------------------------------| | `DEBUG` | Enables/disables specific debugging namespaces. | | `DEBUG_COLORS`| Whether or not to use colors in the debug output. | | `DEBUG_DEPTH` | Object inspection depth. | | `DEBUG_SHOW_HIDDEN` | Shows hidden properties on inspected objects. | __Note:__ The environment variables beginning with `DEBUG_` end up being converted into an Options object that gets used with `%o`/`%O` formatters. See the Node.js documentation for [`util.inspect()`](https://nodejs.org/api/util.html#util_util_inspect_object_options) for the complete list. ## Formatters Debug uses [printf-style](https://wikipedia.org/wiki/Printf_format_string) formatting. Below are the officially supported formatters: | Formatter | Representation | |-----------|----------------| | `%O` | Pretty-print an Object on multiple lines. | | `%o` | Pretty-print an Object all on a single line. | | `%s` | String. | | `%d` | Number (both integer and float). | | `%j` | JSON. Replaced with the string '[Circular]' if the argument contains circular references. | | `%%` | Single percent sign ('%'). This does not consume an argument. | ### Custom formatters You can add custom formatters by extending the `debug.formatters` object. For example, if you wanted to add support for rendering a Buffer as hex with `%h`, you could do something like: ```js const createDebug = require('debug') createDebug.formatters.h = (v) => { return v.toString('hex') } // …elsewhere const debug = createDebug('foo') debug('this is hex: %h', new Buffer('hello world')) // foo this is hex: 68656c6c6f20776f726c6421 +0ms ``` ## Browser support You can build a browser-ready script using [browserify](https://github.com/substack/node-browserify), or just use the [browserify-as-a-service](https://wzrd.in/) [build](https://wzrd.in/standalone/debug@latest), if you don't want to build it yourself. Debug's enable state is currently persisted by `localStorage`. Consider the situation shown below where you have `worker:a` and `worker:b`, and wish to debug both. You can enable this using `localStorage.debug`: ```js localStorage.debug = 'worker:*' ``` And then refresh the page. ```js a = debug('worker:a'); b = debug('worker:b'); setInterval(function(){ a('doing some work'); }, 1000); setInterval(function(){ b('doing some work'); }, 1200); ``` #### Web Inspector Colors Colors are also enabled on "Web Inspectors" that understand the `%c` formatting option. These are WebKit web inspectors, Firefox ([since version 31](https://hacks.mozilla.org/2014/05/editable-box-model-multiple-selection-sublime-text-keys-much-more-firefox-developer-tools-episode-31/)) and the Firebug plugin for Firefox (any version). Colored output looks something like: ![](https://cloud.githubusercontent.com/assets/71256/3139768/b98c5fd8-e8ef-11e3-862a-f7253b6f47c6.png) ## Output streams By default `debug` will log to stderr, however this can be configured per-namespace by overriding the `log` method: Example _stdout.js_: ```js var debug = require('debug'); var error = debug('app:error'); // by default stderr is used error('goes to stderr!'); var log = debug('app:log'); // set this namespace to log via console.log log.log = console.log.bind(console); // don't forget to bind to console! log('goes to stdout'); error('still goes to stderr!'); // set all output to go via console.info // overrides all per-namespace log settings debug.log = console.info.bind(console); error('now goes to stdout via console.info'); log('still goes to stdout, but via console.info now'); ``` ## Authors - TJ Holowaychuk - Nathan Rajlich - Andrew Rhyne ## Backers Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/debug#backer)] <a href="https://opencollective.com/debug/backer/0/website" target="_blank"><img src="https://opencollective.com/debug/backer/0/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/1/website" target="_blank"><img src="https://opencollective.com/debug/backer/1/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/2/website" target="_blank"><img src="https://opencollective.com/debug/backer/2/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/3/website" target="_blank"><img src="https://opencollective.com/debug/backer/3/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/4/website" target="_blank"><img src="https://opencollective.com/debug/backer/4/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/5/website" target="_blank"><img src="https://opencollective.com/debug/backer/5/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/6/website" target="_blank"><img src="https://opencollective.com/debug/backer/6/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/7/website" target="_blank"><img src="https://opencollective.com/debug/backer/7/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/8/website" target="_blank"><img src="https://opencollective.com/debug/backer/8/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/9/website" target="_blank"><img src="https://opencollective.com/debug/backer/9/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/10/website" target="_blank"><img src="https://opencollective.com/debug/backer/10/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/11/website" target="_blank"><img src="https://opencollective.com/debug/backer/11/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/12/website" target="_blank"><img src="https://opencollective.com/debug/backer/12/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/13/website" target="_blank"><img src="https://opencollective.com/debug/backer/13/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/14/website" target="_blank"><img src="https://opencollective.com/debug/backer/14/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/15/website" target="_blank"><img src="https://opencollective.com/debug/backer/15/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/16/website" target="_blank"><img src="https://opencollective.com/debug/backer/16/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/17/website" target="_blank"><img src="https://opencollective.com/debug/backer/17/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/18/website" target="_blank"><img src="https://opencollective.com/debug/backer/18/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/19/website" target="_blank"><img src="https://opencollective.com/debug/backer/19/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/20/website" target="_blank"><img src="https://opencollective.com/debug/backer/20/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/21/website" target="_blank"><img src="https://opencollective.com/debug/backer/21/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/22/website" target="_blank"><img src="https://opencollective.com/debug/backer/22/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/23/website" target="_blank"><img src="https://opencollective.com/debug/backer/23/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/24/website" target="_blank"><img src="https://opencollective.com/debug/backer/24/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/25/website" target="_blank"><img src="https://opencollective.com/debug/backer/25/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/26/website" target="_blank"><img src="https://opencollective.com/debug/backer/26/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/27/website" target="_blank"><img src="https://opencollective.com/debug/backer/27/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/28/website" target="_blank"><img src="https://opencollective.com/debug/backer/28/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/29/website" target="_blank"><img src="https://opencollective.com/debug/backer/29/avatar.svg"></a> ## Sponsors Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/debug#sponsor)] <a href="https://opencollective.com/debug/sponsor/0/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/0/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/1/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/1/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/2/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/2/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/3/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/3/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/4/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/4/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/5/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/5/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/6/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/6/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/7/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/7/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/8/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/8/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/9/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/9/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/10/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/10/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/11/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/11/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/12/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/12/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/13/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/13/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/14/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/14/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/15/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/15/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/16/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/16/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/17/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/17/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/18/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/18/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/19/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/19/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/20/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/20/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/21/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/21/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/22/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/22/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/23/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/23/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/24/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/24/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/25/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/25/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/26/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/26/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/27/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/27/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/28/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/28/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/29/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/29/avatar.svg"></a> ## License (The MIT License) Copyright (c) 2014-2016 TJ Holowaychuk &lt;[email protected]&gt; Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/debug/src/browser.js

/** * This is the web browser implementation of `debug()`. * * Expose `debug()` as the module. */ exports = module.exports = require('./debug'); exports.log = log; exports.formatArgs = formatArgs; exports.save = save; exports.load = load; exports.useColors = useColors; exports.storage = 'undefined' != typeof chrome && 'undefined' != typeof chrome.storage ? chrome.storage.local : localstorage(); /** * Colors. */ exports.colors = [ 'lightseagreen', 'forestgreen', 'goldenrod', 'dodgerblue', 'darkorchid', 'crimson' ]; /** * Currently only WebKit-based Web Inspectors, Firefox >= v31, * and the Firebug extension (any Firefox version) are known * to support "%c" CSS customizations. * * TODO: add a `localStorage` variable to explicitly enable/disable colors */ function useColors() { // NB: In an Electron preload script, document will be defined but not fully // initialized. Since we know we're in Chrome, we'll just detect this case // explicitly if (window && window.process && window.process.type === 'renderer') { return true; } // is webkit? http://stackoverflow.com/a/16459606/376773 // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632 return (document && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) || // is firebug? http://stackoverflow.com/a/398120/376773 (window && window.console && (window.console.firebug || (window.console.exception && window.console.table))) || // is firefox >= v31? // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages (navigator && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31) || // double check webkit in userAgent just in case we are in a worker (navigator && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)); } /** * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. */ exports.formatters.j = function(v) { try { return JSON.stringify(v); } catch (err) { return '[UnexpectedJSONParseError]: ' + err.message; } }; /** * Colorize log arguments if enabled. * * @api public */ function formatArgs(args) { var useColors = this.useColors; args[0] = (useColors ? '%c' : '') + this.namespace + (useColors ? ' %c' : ' ') + args[0] + (useColors ? '%c ' : ' ') + '+' + exports.humanize(this.diff); if (!useColors) return; var c = 'color: ' + this.color; args.splice(1, 0, c, 'color: inherit') // the final "%c" is somewhat tricky, because there could be other // arguments passed either before or after the %c, so we need to // figure out the correct index to insert the CSS into var index = 0; var lastC = 0; args[0].replace(/%[a-zA-Z%]/g, function(match) { if ('%%' === match) return; index++; if ('%c' === match) { // we only are interested in the *last* %c // (the user may have provided their own) lastC = index; } }); args.splice(lastC, 0, c); } /** * Invokes `console.log()` when available. * No-op when `console.log` is not a "function". * * @api public */ function log() { // this hackery is required for IE8/9, where // the `console.log` function doesn't have 'apply' return 'object' === typeof console && console.log && Function.prototype.apply.call(console.log, console, arguments); } /** * Save `namespaces`. * * @param {String} namespaces * @api private */ function save(namespaces) { try { if (null == namespaces) { exports.storage.removeItem('debug'); } else { exports.storage.debug = namespaces; } } catch(e) {} } /** * Load `namespaces`. * * @return {String} returns the previously persisted debug modes * @api private */ function load() { var r; try { r = exports.storage.debug; } catch(e) {} // If debug isn't set in LS, and we're in Electron, try to load $DEBUG if (!r && typeof process !== 'undefined' && 'env' in process) { r = process.env.DEBUG; } return r; } /** * Enable namespaces listed in `localStorage.debug` initially. */ exports.enable(load()); /** * Localstorage attempts to return the localstorage. * * This is necessary because safari throws * when a user disables cookies/localstorage * and you attempt to access it. * * @return {LocalStorage} * @api private */ function localstorage() { try { return window.localStorage; } catch (e) {} }

node_modules/debug/src/debug.js

/** * This is the common logic for both the Node.js and web browser * implementations of `debug()`. * * Expose `debug()` as the module. */ exports = module.exports = createDebug.debug = createDebug['default'] = createDebug; exports.coerce = coerce; exports.disable = disable; exports.enable = enable; exports.enabled = enabled; exports.humanize = require('ms'); /** * The currently active debug mode names, and names to skip. */ exports.names = []; exports.skips = []; /** * Map of special "%n" handling functions, for the debug "format" argument. * * Valid key names are a single, lower or upper-case letter, i.e. "n" and "N". */ exports.formatters = {}; /** * Previous log timestamp. */ var prevTime; /** * Select a color. * @param {String} namespace * @return {Number} * @api private */ function selectColor(namespace) { var hash = 0, i; for (i in namespace) { hash = ((hash << 5) - hash) + namespace.charCodeAt(i); hash |= 0; // Convert to 32bit integer } return exports.colors[Math.abs(hash) % exports.colors.length]; } /** * Create a debugger with the given `namespace`. * * @param {String} namespace * @return {Function} * @api public */ function createDebug(namespace) { function debug() { // disabled? if (!debug.enabled) return; var self = debug; // set `diff` timestamp var curr = +new Date(); var ms = curr - (prevTime || curr); self.diff = ms; self.prev = prevTime; self.curr = curr; prevTime = curr; // turn the `arguments` into a proper Array var args = new Array(arguments.length); for (var i = 0; i < args.length; i++) { args[i] = arguments[i]; } args[0] = exports.coerce(args[0]); if ('string' !== typeof args[0]) { // anything else let's inspect with %O args.unshift('%O'); } // apply any `formatters` transformations var index = 0; args[0] = args[0].replace(/%([a-zA-Z%])/g, function(match, format) { // if we encounter an escaped % then don't increase the array index if (match === '%%') return match; index++; var formatter = exports.formatters[format]; if ('function' === typeof formatter) { var val = args[index]; match = formatter.call(self, val); // now we need to remove `args[index]` since it's inlined in the `format` args.splice(index, 1); index--; } return match; }); // apply env-specific formatting (colors, etc.) exports.formatArgs.call(self, args); var logFn = debug.log || exports.log || console.log.bind(console); logFn.apply(self, args); } debug.namespace = namespace; debug.enabled = exports.enabled(namespace); debug.useColors = exports.useColors(); debug.color = selectColor(namespace); // env-specific initialization logic for debug instances if ('function' === typeof exports.init) { exports.init(debug); } return debug; } /** * Enables a debug mode by namespaces. This can include modes * separated by a colon and wildcards. * * @param {String} namespaces * @api public */ function enable(namespaces) { exports.save(namespaces); exports.names = []; exports.skips = []; var split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/); var len = split.length; for (var i = 0; i < len; i++) { if (!split[i]) continue; // ignore empty strings namespaces = split[i].replace(/\*/g, '.*?'); if (namespaces[0] === '-') { exports.skips.push(new RegExp('^' + namespaces.substr(1) + '$')); } else { exports.names.push(new RegExp('^' + namespaces + '$')); } } } /** * Disable debug output. * * @api public */ function disable() { exports.enable(''); } /** * Returns true if the given mode name is enabled, false otherwise. * * @param {String} name * @return {Boolean} * @api public */ function enabled(name) { var i, len; for (i = 0, len = exports.skips.length; i < len; i++) { if (exports.skips[i].test(name)) { return false; } } for (i = 0, len = exports.names.length; i < len; i++) { if (exports.names[i].test(name)) { return true; } } return false; } /** * Coerce `val`. * * @param {Mixed} val * @return {Mixed} * @api private */ function coerce(val) { if (val instanceof Error) return val.stack || val.message; return val; }

node_modules/debug/src/index.js

/** * Detect Electron renderer process, which is node, but we should * treat as a browser. */ if (typeof process !== 'undefined' && process.type === 'renderer') { module.exports = require('./browser.js'); } else { module.exports = require('./node.js'); }

node_modules/debug/src/node.js

/** * Module dependencies. */ var tty = require('tty'); var util = require('util'); /** * This is the Node.js implementation of `debug()`. * * Expose `debug()` as the module. */ exports = module.exports = require('./debug'); exports.init = init; exports.log = log; exports.formatArgs = formatArgs; exports.save = save; exports.load = load; exports.useColors = useColors; /** * Colors. */ exports.colors = [6, 2, 3, 4, 5, 1]; /** * Build up the default `inspectOpts` object from the environment variables. * * $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js */ exports.inspectOpts = Object.keys(process.env).filter(function (key) { return /^debug_/i.test(key); }).reduce(function (obj, key) { // camel-case var prop = key .substring(6) .toLowerCase() .replace(/_([a-z])/g, function (_, k) { return k.toUpperCase() }); // coerce string value into JS value var val = process.env[key]; if (/^(yes|on|true|enabled)$/i.test(val)) val = true; else if (/^(no|off|false|disabled)$/i.test(val)) val = false; else if (val === 'null') val = null; else val = Number(val); obj[prop] = val; return obj; }, {}); /** * The file descriptor to write the `debug()` calls to. * Set the `DEBUG_FD` env variable to override with another value. i.e.: * * $ DEBUG_FD=3 node script.js 3>debug.log */ var fd = parseInt(process.env.DEBUG_FD, 10) || 2; if (1 !== fd && 2 !== fd) { util.deprecate(function(){}, 'except for stderr(2) and stdout(1), any other usage of DEBUG_FD is deprecated. Override debug.log if you want to use a different log function (https://git.io/debug_fd)')() } var stream = 1 === fd ? process.stdout : 2 === fd ? process.stderr : createWritableStdioStream(fd); /** * Is stdout a TTY? Colored output is enabled when `true`. */ function useColors() { return 'colors' in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(fd); } /** * Map %o to `util.inspect()`, all on a single line. */ exports.formatters.o = function(v) { this.inspectOpts.colors = this.useColors; return util.inspect(v, this.inspectOpts) .replace(/\s*\n\s*/g, ' '); }; /** * Map %o to `util.inspect()`, allowing multiple lines if needed. */ exports.formatters.O = function(v) { this.inspectOpts.colors = this.useColors; return util.inspect(v, this.inspectOpts); }; /** * Adds ANSI color escape codes if enabled. * * @api public */ function formatArgs(args) { var name = this.namespace; var useColors = this.useColors; if (useColors) { var c = this.color; var prefix = ' \u001b[3' + c + ';1m' + name + ' ' + '\u001b[0m'; args[0] = prefix + args[0].split('\n').join('\n' + prefix); args.push('\u001b[3' + c + 'm+' + exports.humanize(this.diff) + '\u001b[0m'); } else { args[0] = new Date().toUTCString() + ' ' + name + ' ' + args[0]; } } /** * Invokes `util.format()` with the specified arguments and writes to `stream`. */ function log() { return stream.write(util.format.apply(util, arguments) + '\n'); } /** * Save `namespaces`. * * @param {String} namespaces * @api private */ function save(namespaces) { if (null == namespaces) { // If you set a process.env field to null or undefined, it gets cast to the // string 'null' or 'undefined'. Just delete instead. delete process.env.DEBUG; } else { process.env.DEBUG = namespaces; } } /** * Load `namespaces`. * * @return {String} returns the previously persisted debug modes * @api private */ function load() { return process.env.DEBUG; } /** * Copied from `node/src/node.js`. * * XXX: It's lame that node doesn't expose this API out-of-the-box. It also * relies on the undocumented `tty_wrap.guessHandleType()` which is also lame. */ function createWritableStdioStream (fd) { var stream; var tty_wrap = process.binding('tty_wrap'); // Note stream._type is used for test-module-load-list.js switch (tty_wrap.guessHandleType(fd)) { case 'TTY': stream = new tty.WriteStream(fd); stream._type = 'tty'; // Hack to have stream not keep the event loop alive. // See https://github.com/joyent/node/issues/1726 if (stream._handle && stream._handle.unref) { stream._handle.unref(); } break; case 'FILE': var fs = require('fs'); stream = new fs.SyncWriteStream(fd, { autoClose: false }); stream._type = 'fs'; break; case 'PIPE': case 'TCP': var net = require('net'); stream = new net.Socket({ fd: fd, readable: false, writable: true }); // FIXME Should probably have an option in net.Socket to create a // stream from an existing fd which is writable only. But for now // we'll just add this hack and set the `readable` member to false. // Test: ./node test/fixtures/echo.js < /etc/passwd stream.readable = false; stream.read = null; stream._type = 'pipe'; // FIXME Hack to have stream not keep the event loop alive. // See https://github.com/joyent/node/issues/1726 if (stream._handle && stream._handle.unref) { stream._handle.unref(); } break; default: // Probably an error on in uv_guess_handle() throw new Error('Implement me. Unknown stream file type!'); } // For supporting legacy API we put the FD here. stream.fd = fd; stream._isStdio = true; return stream; } /** * Init logic for `debug` instances. * * Create a new `inspectOpts` object in case `useColors` is set * differently for a particular `debug` instance. */ function init (debug) { debug.inspectOpts = {}; var keys = Object.keys(exports.inspectOpts); for (var i = 0; i < keys.length; i++) { debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]]; } } /** * Enable namespaces listed in `process.env.DEBUG` initially. */ exports.enable(load());

node_modules/depd/History.md

1.1.1 / 2017-07-27 ================== * Remove unnecessary `Buffer` loading * Support Node.js 0.6 to 8.x 1.1.0 / 2015-09-14 ================== * Enable strict mode in more places * Support io.js 3.x * Support io.js 2.x * Support web browser loading - Requires bundler like Browserify or webpack 1.0.1 / 2015-04-07 ================== * Fix `TypeError`s when under `'use strict'` code * Fix useless type name on auto-generated messages * Support io.js 1.x * Support Node.js 0.12 1.0.0 / 2014-09-17 ================== * No changes 0.4.5 / 2014-09-09 ================== * Improve call speed to functions using the function wrapper * Support Node.js 0.6 0.4.4 / 2014-07-27 ================== * Work-around v8 generating empty stack traces 0.4.3 / 2014-07-26 ================== * Fix exception when global `Error.stackTraceLimit` is too low 0.4.2 / 2014-07-19 ================== * Correct call site for wrapped functions and properties 0.4.1 / 2014-07-19 ================== * Improve automatic message generation for function properties 0.4.0 / 2014-07-19 ================== * Add `TRACE_DEPRECATION` environment variable * Remove non-standard grey color from color output * Support `--no-deprecation` argument * Support `--trace-deprecation` argument * Support `deprecate.property(fn, prop, message)` 0.3.0 / 2014-06-16 ================== * Add `NO_DEPRECATION` environment variable 0.2.0 / 2014-06-15 ================== * Add `deprecate.property(obj, prop, message)` * Remove `supports-color` dependency for node.js 0.8 0.1.0 / 2014-06-15 ================== * Add `deprecate.function(fn, message)` * Add `process.on('deprecation', fn)` emitter * Automatically generate message when omitted from `deprecate()` 0.0.1 / 2014-06-15 ================== * Fix warning for dynamic calls at singe call site 0.0.0 / 2014-06-15 ================== * Initial implementation

node_modules/depd/index.js

/*! * depd * Copyright(c) 2014-2017 Douglas Christopher Wilson * MIT Licensed */ /** * Module dependencies. */ var callSiteToString = require('./lib/compat').callSiteToString var eventListenerCount = require('./lib/compat').eventListenerCount var relative = require('path').relative /** * Module exports. */ module.exports = depd /** * Get the path to base files on. */ var basePath = process.cwd() /** * Determine if namespace is contained in the string. */ function containsNamespace (str, namespace) { var val = str.split(/[ ,]+/) namespace = String(namespace).toLowerCase() for (var i = 0; i < val.length; i++) { if (!(str = val[i])) continue // namespace contained if (str === '*' || str.toLowerCase() === namespace) { return true } } return false } /** * Convert a data descriptor to accessor descriptor. */ function convertDataDescriptorToAccessor (obj, prop, message) { var descriptor = Object.getOwnPropertyDescriptor(obj, prop) var value = descriptor.value descriptor.get = function getter () { return value } if (descriptor.writable) { descriptor.set = function setter (val) { return (value = val) } } delete descriptor.value delete descriptor.writable Object.defineProperty(obj, prop, descriptor) return descriptor } /** * Create arguments string to keep arity. */ function createArgumentsString (arity) { var str = '' for (var i = 0; i < arity; i++) { str += ', arg' + i } return str.substr(2) } /** * Create stack string from stack. */ function createStackString (stack) { var str = this.name + ': ' + this.namespace if (this.message) { str += ' deprecated ' + this.message } for (var i = 0; i < stack.length; i++) { str += '\n at ' + callSiteToString(stack[i]) } return str } /** * Create deprecate for namespace in caller. */ function depd (namespace) { if (!namespace) { throw new TypeError('argument namespace is required') } var stack = getStack() var site = callSiteLocation(stack[1]) var file = site[0] function deprecate (message) { // call to self as log log.call(deprecate, message) } deprecate._file = file deprecate._ignored = isignored(namespace) deprecate._namespace = namespace deprecate._traced = istraced(namespace) deprecate._warned = Object.create(null) deprecate.function = wrapfunction deprecate.property = wrapproperty return deprecate } /** * Determine if namespace is ignored. */ function isignored (namespace) { /* istanbul ignore next: tested in a child processs */ if (process.noDeprecation) { // --no-deprecation support return true } var str = process.env.NO_DEPRECATION || '' // namespace ignored return containsNamespace(str, namespace) } /** * Determine if namespace is traced. */ function istraced (namespace) { /* istanbul ignore next: tested in a child processs */ if (process.traceDeprecation) { // --trace-deprecation support return true } var str = process.env.TRACE_DEPRECATION || '' // namespace traced return containsNamespace(str, namespace) } /** * Display deprecation message. */ function log (message, site) { var haslisteners = eventListenerCount(process, 'deprecation') !== 0 // abort early if no destination if (!haslisteners && this._ignored) { return } var caller var callFile var callSite var i = 0 var seen = false var stack = getStack() var file = this._file if (site) { // provided site callSite = callSiteLocation(stack[1]) callSite.name = site.name file = callSite[0] } else { // get call site i = 2 site = callSiteLocation(stack[i]) callSite = site } // get caller of deprecated thing in relation to file for (; i < stack.length; i++) { caller = callSiteLocation(stack[i]) callFile = caller[0] if (callFile === file) { seen = true } else if (callFile === this._file) { file = this._file } else if (seen) { break } } var key = caller ? site.join(':') + '__' + caller.join(':') : undefined if (key !== undefined && key in this._warned) { // already warned return } this._warned[key] = true // generate automatic message from call site if (!message) { message = callSite === site || !callSite.name ? defaultMessage(site) : defaultMessage(callSite) } // emit deprecation if listeners exist if (haslisteners) { var err = DeprecationError(this._namespace, message, stack.slice(i)) process.emit('deprecation', err) return } // format and write message var format = process.stderr.isTTY ? formatColor : formatPlain var msg = format.call(this, message, caller, stack.slice(i)) process.stderr.write(msg + '\n', 'utf8') } /** * Get call site location as array. */ function callSiteLocation (callSite) { var file = callSite.getFileName() || '<anonymous>' var line = callSite.getLineNumber() var colm = callSite.getColumnNumber() if (callSite.isEval()) { file = callSite.getEvalOrigin() + ', ' + file } var site = [file, line, colm] site.callSite = callSite site.name = callSite.getFunctionName() return site } /** * Generate a default message from the site. */ function defaultMessage (site) { var callSite = site.callSite var funcName = site.name // make useful anonymous name if (!funcName) { funcName = '<anonymous@' + formatLocation(site) + '>' } var context = callSite.getThis() var typeName = context && callSite.getTypeName() // ignore useless type name if (typeName === 'Object') { typeName = undefined } // make useful type name if (typeName === 'Function') { typeName = context.name || typeName } return typeName && callSite.getMethodName() ? typeName + '.' + funcName : funcName } /** * Format deprecation message without color. */ function formatPlain (msg, caller, stack) { var timestamp = new Date().toUTCString() var formatted = timestamp + ' ' + this._namespace + ' deprecated ' + msg // add stack trace if (this._traced) { for (var i = 0; i < stack.length; i++) { formatted += '\n at ' + callSiteToString(stack[i]) } return formatted } if (caller) { formatted += ' at ' + formatLocation(caller) } return formatted } /** * Format deprecation message with color. */ function formatColor (msg, caller, stack) { var formatted = '\x1b[36;1m' + this._namespace + '\x1b[22;39m' + // bold cyan ' \x1b[33;1mdeprecated\x1b[22;39m' + // bold yellow ' \x1b[0m' + msg + '\x1b[39m' // reset // add stack trace if (this._traced) { for (var i = 0; i < stack.length; i++) { formatted += '\n \x1b[36mat ' + callSiteToString(stack[i]) + '\x1b[39m' // cyan } return formatted } if (caller) { formatted += ' \x1b[36m' + formatLocation(caller) + '\x1b[39m' // cyan } return formatted } /** * Format call site location. */ function formatLocation (callSite) { return relative(basePath, callSite[0]) + ':' + callSite[1] + ':' + callSite[2] } /** * Get the stack as array of call sites. */ function getStack () { var limit = Error.stackTraceLimit var obj = {} var prep = Error.prepareStackTrace Error.prepareStackTrace = prepareObjectStackTrace Error.stackTraceLimit = Math.max(10, limit) // capture the stack Error.captureStackTrace(obj) // slice this function off the top var stack = obj.stack.slice(1) Error.prepareStackTrace = prep Error.stackTraceLimit = limit return stack } /** * Capture call site stack from v8. */ function prepareObjectStackTrace (obj, stack) { return stack } /** * Return a wrapped function in a deprecation message. */ function wrapfunction (fn, message) { if (typeof fn !== 'function') { throw new TypeError('argument fn must be a function') } var args = createArgumentsString(fn.length) var deprecate = this // eslint-disable-line no-unused-vars var stack = getStack() var site = callSiteLocation(stack[1]) site.name = fn.name // eslint-disable-next-line no-eval var deprecatedfn = eval('(function (' + args + ') {\n' + '"use strict"\n' + 'log.call(deprecate, message, site)\n' + 'return fn.apply(this, arguments)\n' + '})') return deprecatedfn } /** * Wrap property in a deprecation message. */ function wrapproperty (obj, prop, message) { if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) { throw new TypeError('argument obj must be object') } var descriptor = Object.getOwnPropertyDescriptor(obj, prop) if (!descriptor) { throw new TypeError('must call property on owner object') } if (!descriptor.configurable) { throw new TypeError('property must be configurable') } var deprecate = this var stack = getStack() var site = callSiteLocation(stack[1]) // set site name site.name = prop // convert data descriptor if ('value' in descriptor) { descriptor = convertDataDescriptorToAccessor(obj, prop, message) } var get = descriptor.get var set = descriptor.set // wrap getter if (typeof get === 'function') { descriptor.get = function getter () { log.call(deprecate, message, site) return get.apply(this, arguments) } } // wrap setter if (typeof set === 'function') { descriptor.set = function setter () { log.call(deprecate, message, site) return set.apply(this, arguments) } } Object.defineProperty(obj, prop, descriptor) } /** * Create DeprecationError for deprecation */ function DeprecationError (namespace, message, stack) { var error = new Error() var stackString Object.defineProperty(error, 'constructor', { value: DeprecationError }) Object.defineProperty(error, 'message', { configurable: true, enumerable: false, value: message, writable: true }) Object.defineProperty(error, 'name', { enumerable: false, configurable: true, value: 'DeprecationError', writable: true }) Object.defineProperty(error, 'namespace', { configurable: true, enumerable: false, value: namespace, writable: true }) Object.defineProperty(error, 'stack', { configurable: true, enumerable: false, get: function () { if (stackString !== undefined) { return stackString } // prepare stack trace return (stackString = createStackString.call(this, stack)) }, set: function setter (val) { stackString = val } }) return error }

node_modules/depd/lib/browser/index.js

/*! * depd * Copyright(c) 2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module exports. * @public */ module.exports = depd /** * Create deprecate for namespace in caller. */ function depd (namespace) { if (!namespace) { throw new TypeError('argument namespace is required') } function deprecate (message) { // no-op in browser } deprecate._file = undefined deprecate._ignored = true deprecate._namespace = namespace deprecate._traced = false deprecate._warned = Object.create(null) deprecate.function = wrapfunction deprecate.property = wrapproperty return deprecate } /** * Return a wrapped function in a deprecation message. * * This is a no-op version of the wrapper, which does nothing but call * validation. */ function wrapfunction (fn, message) { if (typeof fn !== 'function') { throw new TypeError('argument fn must be a function') } return fn } /** * Wrap property in a deprecation message. * * This is a no-op version of the wrapper, which does nothing but call * validation. */ function wrapproperty (obj, prop, message) { if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) { throw new TypeError('argument obj must be object') } var descriptor = Object.getOwnPropertyDescriptor(obj, prop) if (!descriptor) { throw new TypeError('must call property on owner object') } if (!descriptor.configurable) { throw new TypeError('property must be configurable') } }

node_modules/depd/lib/compat/callsite-tostring.js

/*! * depd * Copyright(c) 2014 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module exports. */ module.exports = callSiteToString /** * Format a CallSite file location to a string. */ function callSiteFileLocation (callSite) { var fileName var fileLocation = '' if (callSite.isNative()) { fileLocation = 'native' } else if (callSite.isEval()) { fileName = callSite.getScriptNameOrSourceURL() if (!fileName) { fileLocation = callSite.getEvalOrigin() } } else { fileName = callSite.getFileName() } if (fileName) { fileLocation += fileName var lineNumber = callSite.getLineNumber() if (lineNumber != null) { fileLocation += ':' + lineNumber var columnNumber = callSite.getColumnNumber() if (columnNumber) { fileLocation += ':' + columnNumber } } } return fileLocation || 'unknown source' } /** * Format a CallSite to a string. */ function callSiteToString (callSite) { var addSuffix = true var fileLocation = callSiteFileLocation(callSite) var functionName = callSite.getFunctionName() var isConstructor = callSite.isConstructor() var isMethodCall = !(callSite.isToplevel() || isConstructor) var line = '' if (isMethodCall) { var methodName = callSite.getMethodName() var typeName = getConstructorName(callSite) if (functionName) { if (typeName && functionName.indexOf(typeName) !== 0) { line += typeName + '.' } line += functionName if (methodName && functionName.lastIndexOf('.' + methodName) !== functionName.length - methodName.length - 1) { line += ' [as ' + methodName + ']' } } else { line += typeName + '.' + (methodName || '<anonymous>') } } else if (isConstructor) { line += 'new ' + (functionName || '<anonymous>') } else if (functionName) { line += functionName } else { addSuffix = false line += fileLocation } if (addSuffix) { line += ' (' + fileLocation + ')' } return line } /** * Get constructor name of reviver. */ function getConstructorName (obj) { var receiver = obj.receiver return (receiver.constructor && receiver.constructor.name) || null }

node_modules/depd/lib/compat/event-listener-count.js

/*! * depd * Copyright(c) 2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module exports. * @public */ module.exports = eventListenerCount /** * Get the count of listeners on an event emitter of a specific type. */ function eventListenerCount (emitter, type) { return emitter.listeners(type).length }

node_modules/depd/lib/compat/index.js

/*! * depd * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var EventEmitter = require('events').EventEmitter /** * Module exports. * @public */ lazyProperty(module.exports, 'callSiteToString', function callSiteToString () { var limit = Error.stackTraceLimit var obj = {} var prep = Error.prepareStackTrace function prepareObjectStackTrace (obj, stack) { return stack } Error.prepareStackTrace = prepareObjectStackTrace Error.stackTraceLimit = 2 // capture the stack Error.captureStackTrace(obj) // slice the stack var stack = obj.stack.slice() Error.prepareStackTrace = prep Error.stackTraceLimit = limit return stack[0].toString ? toString : require('./callsite-tostring') }) lazyProperty(module.exports, 'eventListenerCount', function eventListenerCount () { return EventEmitter.listenerCount || require('./event-listener-count') }) /** * Define a lazy property. */ function lazyProperty (obj, prop, getter) { function get () { var val = getter() Object.defineProperty(obj, prop, { configurable: true, enumerable: true, value: val }) return val } Object.defineProperty(obj, prop, { configurable: true, enumerable: true, get: get }) } /** * Call toString() on the obj */ function toString (obj) { return obj.toString() }

node_modules/depd/LICENSE

(The MIT License) Copyright (c) 2014-2017 Douglas Christopher Wilson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/depd/package.json

{ "_args": [ [ { "raw": "depd@~1.1.0", "scope": null, "escapedName": "depd", "name": "depd", "rawSpec": "~1.1.0", "spec": ">=1.1.0 <1.2.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "depd@>=1.1.0 <1.2.0", "_id": "[email protected]", "_inCache": true, "_location": "/depd", "_nodeVersion": "6.11.1", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/depd-1.1.1.tgz_1501197028677_0.8715836545452476" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "3.10.10", "_phantomChildren": {}, "_requested": { "raw": "depd@~1.1.0", "scope": null, "escapedName": "depd", "name": "depd", "rawSpec": "~1.1.0", "spec": ">=1.1.0 <1.2.0", "type": "range" }, "_requiredBy": [ "/body-parser", "/http-errors" ], "_resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", "_shasum": "5783b4e1c459f06fa5ca27f991f3d06e7a310359", "_shrinkwrap": null, "_spec": "depd@~1.1.0", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "author": { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, "browser": "lib/browser/index.js", "bugs": { "url": "https://github.com/dougwilson/nodejs-depd/issues" }, "dependencies": {}, "description": "Deprecate all the things", "devDependencies": { "beautify-benchmark": "0.2.4", "benchmark": "2.1.4", "eslint": "3.19.0", "eslint-config-standard": "7.1.0", "eslint-plugin-markdown": "1.0.0-beta.7", "eslint-plugin-promise": "3.5.0", "eslint-plugin-standard": "2.3.1", "istanbul": "0.4.5", "mocha": "~1.21.5" }, "directories": {}, "dist": { "shasum": "5783b4e1c459f06fa5ca27f991f3d06e7a310359", "tarball": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "lib/", "History.md", "LICENSE", "index.js", "Readme.md" ], "gitHead": "15c5604aaab7befd413506e86670168d7481043a", "homepage": "https://github.com/dougwilson/nodejs-depd#readme", "keywords": [ "deprecate", "deprecated" ], "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" } ], "name": "depd", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/dougwilson/nodejs-depd.git" }, "scripts": { "bench": "node benchmark/index.js", "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --reporter spec --bail test/", "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --no-exit test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/" }, "version": "1.1.1" }

node_modules/depd/Readme.md

# depd [![NPM Version][npm-version-image]][npm-url] [![NPM Downloads][npm-downloads-image]][npm-url] [![Node.js Version][node-image]][node-url] [![Linux Build][travis-image]][travis-url] [![Windows Build][appveyor-image]][appveyor-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Gratipay][gratipay-image]][gratipay-url] Deprecate all the things > With great modules comes great responsibility; mark things deprecated! ## Install This module is installed directly using `npm`: ```sh $ npm install depd ``` This module can also be bundled with systems like [Browserify](http://browserify.org/) or [webpack](https://webpack.github.io/), though by default this module will alter it's API to no longer display or track deprecations. ## API <!-- eslint-disable no-unused-vars --> ```js var deprecate = require('depd')('my-module') ``` This library allows you to display deprecation messages to your users. This library goes above and beyond with deprecation warnings by introspection of the call stack (but only the bits that it is interested in). Instead of just warning on the first invocation of a deprecated function and never again, this module will warn on the first invocation of a deprecated function per unique call site, making it ideal to alert users of all deprecated uses across the code base, rather than just whatever happens to execute first. The deprecation warnings from this module also include the file and line information for the call into the module that the deprecated function was in. **NOTE** this library has a similar interface to the `debug` module, and this module uses the calling file to get the boundary for the call stacks, so you should always create a new `deprecate` object in each file and not within some central file. ### depd(namespace) Create a new deprecate function that uses the given namespace name in the messages and will display the call site prior to the stack entering the file this function was called from. It is highly suggested you use the name of your module as the namespace. ### deprecate(message) Call this function from deprecated code to display a deprecation message. This message will appear once per unique caller site. Caller site is the first call site in the stack in a different file from the caller of this function. If the message is omitted, a message is generated for you based on the site of the `deprecate()` call and will display the name of the function called, similar to the name displayed in a stack trace. ### deprecate.function(fn, message) Call this function to wrap a given function in a deprecation message on any call to the function. An optional message can be supplied to provide a custom message. ### deprecate.property(obj, prop, message) Call this function to wrap a given property on object in a deprecation message on any accessing or setting of the property. An optional message can be supplied to provide a custom message. The method must be called on the object where the property belongs (not inherited from the prototype). If the property is a data descriptor, it will be converted to an accessor descriptor in order to display the deprecation message. ### process.on('deprecation', fn) This module will allow easy capturing of deprecation errors by emitting the errors as the type "deprecation" on the global `process`. If there are no listeners for this type, the errors are written to STDERR as normal, but if there are any listeners, nothing will be written to STDERR and instead only emitted. From there, you can write the errors in a different format or to a logging source. The error represents the deprecation and is emitted only once with the same rules as writing to STDERR. The error has the following properties: - `message` - This is the message given by the library - `name` - This is always `'DeprecationError'` - `namespace` - This is the namespace the deprecation came from - `stack` - This is the stack of the call to the deprecated thing Example `error.stack` output: ``` DeprecationError: my-cool-module deprecated oldfunction at Object.<anonymous> ([eval]-wrapper:6:22) at Module._compile (module.js:456:26) at evalScript (node.js:532:25) at startup (node.js:80:7) at node.js:902:3 ``` ### process.env.NO_DEPRECATION As a user of modules that are deprecated, the environment variable `NO_DEPRECATION` is provided as a quick solution to silencing deprecation warnings from being output. The format of this is similar to that of `DEBUG`: ```sh $ NO_DEPRECATION=my-module,othermod node app.js ``` This will suppress deprecations from being output for "my-module" and "othermod". The value is a list of comma-separated namespaces. To suppress every warning across all namespaces, use the value `*` for a namespace. Providing the argument `--no-deprecation` to the `node` executable will suppress all deprecations (only available in Node.js 0.8 or higher). **NOTE** This will not suppress the deperecations given to any "deprecation" event listeners, just the output to STDERR. ### process.env.TRACE_DEPRECATION As a user of modules that are deprecated, the environment variable `TRACE_DEPRECATION` is provided as a solution to getting more detailed location information in deprecation warnings by including the entire stack trace. The format of this is the same as `NO_DEPRECATION`: ```sh $ TRACE_DEPRECATION=my-module,othermod node app.js ``` This will include stack traces for deprecations being output for "my-module" and "othermod". The value is a list of comma-separated namespaces. To trace every warning across all namespaces, use the value `*` for a namespace. Providing the argument `--trace-deprecation` to the `node` executable will trace all deprecations (only available in Node.js 0.8 or higher). **NOTE** This will not trace the deperecations silenced by `NO_DEPRECATION`. ## Display ![message](files/message.png) When a user calls a function in your library that you mark deprecated, they will see the following written to STDERR (in the given colors, similar colors and layout to the `debug` module): ``` bright cyan bright yellow | | reset cyan | | | | ▼ ▼ ▼ ▼ my-cool-module deprecated oldfunction [eval]-wrapper:6:22 ▲ ▲ ▲ ▲ | | | | namespace | | location of mycoolmod.oldfunction() call | deprecation message the word "deprecated" ``` If the user redirects their STDERR to a file or somewhere that does not support colors, they see (similar layout to the `debug` module): ``` Sun, 15 Jun 2014 05:21:37 GMT my-cool-module deprecated oldfunction at [eval]-wrapper:6:22 ▲ ▲ ▲ ▲ ▲ | | | | | timestamp of message namespace | | location of mycoolmod.oldfunction() call | deprecation message the word "deprecated" ``` ## Examples ### Deprecating all calls to a function This will display a deprecated message about "oldfunction" being deprecated from "my-module" on STDERR. ```js var deprecate = require('depd')('my-cool-module') // message automatically derived from function name // Object.oldfunction exports.oldfunction = deprecate.function(function oldfunction () { // all calls to function are deprecated }) // specific message exports.oldfunction = deprecate.function(function () { // all calls to function are deprecated }, 'oldfunction') ``` ### Conditionally deprecating a function call This will display a deprecated message about "weirdfunction" being deprecated from "my-module" on STDERR when called with less than 2 arguments. ```js var deprecate = require('depd')('my-cool-module') exports.weirdfunction = function () { if (arguments.length < 2) { // calls with 0 or 1 args are deprecated deprecate('weirdfunction args < 2') } } ``` When calling `deprecate` as a function, the warning is counted per call site within your own module, so you can display different deprecations depending on different situations and the users will still get all the warnings: ```js var deprecate = require('depd')('my-cool-module') exports.weirdfunction = function () { if (arguments.length < 2) { // calls with 0 or 1 args are deprecated deprecate('weirdfunction args < 2') } else if (typeof arguments[0] !== 'string') { // calls with non-string first argument are deprecated deprecate('weirdfunction non-string first arg') } } ``` ### Deprecating property access This will display a deprecated message about "oldprop" being deprecated from "my-module" on STDERR when accessed. A deprecation will be displayed when setting the value and when getting the value. ```js var deprecate = require('depd')('my-cool-module') exports.oldprop = 'something' // message automatically derives from property name deprecate.property(exports, 'oldprop') // explicit message deprecate.property(exports, 'oldprop', 'oldprop >= 0.10') ``` ## License [MIT](LICENSE) [npm-version-image]: https://img.shields.io/npm/v/depd.svg [npm-downloads-image]: https://img.shields.io/npm/dm/depd.svg [npm-url]: https://npmjs.org/package/depd [travis-image]: https://img.shields.io/travis/dougwilson/nodejs-depd/master.svg?label=linux [travis-url]: https://travis-ci.org/dougwilson/nodejs-depd [appveyor-image]: https://img.shields.io/appveyor/ci/dougwilson/nodejs-depd/master.svg?label=windows [appveyor-url]: https://ci.appveyor.com/project/dougwilson/nodejs-depd [coveralls-image]: https://img.shields.io/coveralls/dougwilson/nodejs-depd/master.svg [coveralls-url]: https://coveralls.io/r/dougwilson/nodejs-depd?branch=master [node-image]: https://img.shields.io/node/v/depd.svg [node-url]: https://nodejs.org/en/download/ [gratipay-image]: https://img.shields.io/gratipay/dougwilson.svg [gratipay-url]: https://www.gratipay.com/dougwilson/

node_modules/ee-first/index.js

/*! * ee-first * Copyright(c) 2014 Jonathan Ong * MIT Licensed */ 'use strict' /** * Module exports. * @public */ module.exports = first /** * Get the first event in a set of event emitters and event pairs. * * @param {array} stuff * @param {function} done * @public */ function first(stuff, done) { if (!Array.isArray(stuff)) throw new TypeError('arg must be an array of [ee, events...] arrays') var cleanups = [] for (var i = 0; i < stuff.length; i++) { var arr = stuff[i] if (!Array.isArray(arr) || arr.length < 2) throw new TypeError('each array member must be [ee, events...]') var ee = arr[0] for (var j = 1; j < arr.length; j++) { var event = arr[j] var fn = listener(event, callback) // listen to the event ee.on(event, fn) // push this listener to the list of cleanups cleanups.push({ ee: ee, event: event, fn: fn, }) } } function callback() { cleanup() done.apply(null, arguments) } function cleanup() { var x for (var i = 0; i < cleanups.length; i++) { x = cleanups[i] x.ee.removeListener(x.event, x.fn) } } function thunk(fn) { done = fn } thunk.cancel = cleanup return thunk } /** * Create the event listener. * @private */ function listener(event, done) { return function onevent(arg1) { var args = new Array(arguments.length) var ee = this var err = event === 'error' ? arg1 : null // copy args to prevent arguments escaping scope for (var i = 0; i < args.length; i++) { args[i] = arguments[i] } done(err, ee, event, args) } }

node_modules/ee-first/LICENSE

The MIT License (MIT) Copyright (c) 2014 Jonathan Ong [email protected] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/ee-first/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "ee-first", "name": "ee-first", "rawSpec": "1.1.1", "spec": "1.1.1", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\on-finished" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/ee-first", "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "1.4.28", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "ee-first", "name": "ee-first", "rawSpec": "1.1.1", "spec": "1.1.1", "type": "version" }, "_requiredBy": [ "/on-finished" ], "_resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "_shasum": "590c61156b0ae2f4f0255732a158b266bc56b21d", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\on-finished", "author": { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" }, "bugs": { "url": "https://github.com/jonathanong/ee-first/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" } ], "dependencies": {}, "description": "return the first event in a set of ee/event pairs", "devDependencies": { "istanbul": "0.3.9", "mocha": "2.2.5" }, "directories": {}, "dist": { "shasum": "590c61156b0ae2f4f0255732a158b266bc56b21d", "tarball": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" }, "files": [ "index.js", "LICENSE" ], "gitHead": "512e0ce4cc3643f603708f965a97b61b1a9c0441", "homepage": "https://github.com/jonathanong/ee-first", "license": "MIT", "maintainers": [ { "name": "jongleberry", "email": "[email protected]" }, { "name": "dougwilson", "email": "[email protected]" } ], "name": "ee-first", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jonathanong/ee-first.git" }, "scripts": { "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" }, "version": "1.1.1" }

node_modules/ee-first/README.md

# EE First [![NPM version][npm-image]][npm-url] [![Build status][travis-image]][travis-url] [![Test coverage][coveralls-image]][coveralls-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![Gittip][gittip-image]][gittip-url] Get the first event in a set of event emitters and event pairs, then clean up after itself. ## Install ```sh $ npm install ee-first ``` ## API ```js var first = require('ee-first') ``` ### first(arr, listener) Invoke `listener` on the first event from the list specified in `arr`. `arr` is an array of arrays, with each array in the format `[ee, ...event]`. `listener` will be called only once, the first time any of the given events are emitted. If `error` is one of the listened events, then if that fires first, the `listener` will be given the `err` argument. The `listener` is invoked as `listener(err, ee, event, args)`, where `err` is the first argument emitted from an `error` event, if applicable; `ee` is the event emitter that fired; `event` is the string event name that fired; and `args` is an array of the arguments that were emitted on the event. ```js var ee1 = new EventEmitter() var ee2 = new EventEmitter() first([ [ee1, 'close', 'end', 'error'], [ee2, 'error'] ], function (err, ee, event, args) { // listener invoked }) ``` #### .cancel() The group of listeners can be cancelled before being invoked and have all the event listeners removed from the underlying event emitters. ```js var thunk = first([ [ee1, 'close', 'end', 'error'], [ee2, 'error'] ], function (err, ee, event, args) { // listener invoked }) // cancel and clean up thunk.cancel() ``` [npm-image]: https://img.shields.io/npm/v/ee-first.svg?style=flat-square [npm-url]: https://npmjs.org/package/ee-first [github-tag]: http://img.shields.io/github/tag/jonathanong/ee-first.svg?style=flat-square [github-url]: https://github.com/jonathanong/ee-first/tags [travis-image]: https://img.shields.io/travis/jonathanong/ee-first.svg?style=flat-square [travis-url]: https://travis-ci.org/jonathanong/ee-first [coveralls-image]: https://img.shields.io/coveralls/jonathanong/ee-first.svg?style=flat-square [coveralls-url]: https://coveralls.io/r/jonathanong/ee-first?branch=master [license-image]: http://img.shields.io/npm/l/ee-first.svg?style=flat-square [license-url]: LICENSE.md [downloads-image]: http://img.shields.io/npm/dm/ee-first.svg?style=flat-square [downloads-url]: https://npmjs.org/package/ee-first [gittip-image]: https://img.shields.io/gittip/jonathanong.svg?style=flat-square [gittip-url]: https://www.gittip.com/jonathanong/

node_modules/http-errors/HISTORY.md

2017-08-04 / 1.6.2 ================== * deps: [email protected] - Remove unnecessary `Buffer` loading 2017-02-20 / 1.6.1 ================== * deps: [email protected] - Fix shim for old browsers 2017-02-14 / 1.6.0 ================== * Accept custom 4xx and 5xx status codes in factory * Add deprecation message to `"I'mateapot"` export * Deprecate passing status code as anything except first argument in factory * Deprecate using non-error status codes * Make `message` property enumerable for `HttpError`s 2016-11-16 / 1.5.1 ================== * deps: [email protected] - Fix issue loading in browser * deps: [email protected] * deps: statuses@'>= 1.3.1 < 2' 2016-05-18 / 1.5.0 ================== * Support new code `421 Misdirected Request` * Use `setprototypeof` module to replace `__proto__` setting * deps: statuses@'>= 1.3.0 < 2' - Add `421 Misdirected Request` - perf: enable strict mode * perf: enable strict mode 2016-01-28 / 1.4.0 ================== * Add `HttpError` export, for `err instanceof createError.HttpError` * deps: [email protected] * deps: statuses@'>= 1.2.1 < 2' - Fix message for status 451 - Remove incorrect nginx status code 2015-02-02 / 1.3.1 ================== * Fix regression where status can be overwritten in `createError` `props` 2015-02-01 / 1.3.0 ================== * Construct errors using defined constructors from `createError` * Fix error names that are not identifiers - `createError["I'mateapot"]` is now `createError.ImATeapot` * Set a meaningful `name` property on constructed errors 2014-12-09 / 1.2.8 ================== * Fix stack trace from exported function * Remove `arguments.callee` usage 2014-10-14 / 1.2.7 ================== * Remove duplicate line 2014-10-02 / 1.2.6 ================== * Fix `expose` to be `true` for `ClientError` constructor 2014-09-28 / 1.2.5 ================== * deps: statuses@1 2014-09-21 / 1.2.4 ================== * Fix dependency version to work with old `npm`s 2014-09-21 / 1.2.3 ================== * deps: statuses@~1.1.0 2014-09-21 / 1.2.2 ================== * Fix publish error 2014-09-21 / 1.2.1 ================== * Support Node.js 0.6 * Use `inherits` instead of `util` 2014-09-09 / 1.2.0 ================== * Fix the way inheriting functions * Support `expose` being provided in properties argument 2014-09-08 / 1.1.0 ================== * Default status to 500 * Support provided `error` to extend 2014-09-08 / 1.0.1 ================== * Fix accepting string message 2014-09-08 / 1.0.0 ================== * Initial release

node_modules/http-errors/index.js

/*! * http-errors * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2016 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var deprecate = require('depd')('http-errors') var setPrototypeOf = require('setprototypeof') var statuses = require('statuses') var inherits = require('inherits') /** * Module exports. * @public */ module.exports = createError module.exports.HttpError = createHttpErrorConstructor() // Populate exports for all constructors populateConstructorExports(module.exports, statuses.codes, module.exports.HttpError) /** * Get the code class of a status code. * @private */ function codeClass (status) { return Number(String(status).charAt(0) + '00') } /** * Create a new HTTP Error. * * @returns {Error} * @public */ function createError () { // so much arity going on ~_~ var err var msg var status = 500 var props = {} for (var i = 0; i < arguments.length; i++) { var arg = arguments[i] if (arg instanceof Error) { err = arg status = err.status || err.statusCode || status continue } switch (typeof arg) { case 'string': msg = arg break case 'number': status = arg if (i !== 0) { deprecate('non-first-argument status code; replace with createError(' + arg + ', ...)') } break case 'object': props = arg break } } if (typeof status === 'number' && (status < 400 || status >= 600)) { deprecate('non-error status code; use only 4xx or 5xx status codes') } if (typeof status !== 'number' || (!statuses[status] && (status < 400 || status >= 600))) { status = 500 } // constructor var HttpError = createError[status] || createError[codeClass(status)] if (!err) { // create error err = HttpError ? new HttpError(msg) : new Error(msg || statuses[status]) Error.captureStackTrace(err, createError) } if (!HttpError || !(err instanceof HttpError) || err.status !== status) { // add properties to generic error err.expose = status < 500 err.status = err.statusCode = status } for (var key in props) { if (key !== 'status' && key !== 'statusCode') { err[key] = props[key] } } return err } /** * Create HTTP error abstract base class. * @private */ function createHttpErrorConstructor () { function HttpError () { throw new TypeError('cannot construct abstract class') } inherits(HttpError, Error) return HttpError } /** * Create a constructor for a client error. * @private */ function createClientErrorConstructor (HttpError, name, code) { var className = name.match(/Error$/) ? name : name + 'Error' function ClientError (message) { // create the error object var msg = message != null ? message : statuses[code] var err = new Error(msg) // capture a stack trace to the construction point Error.captureStackTrace(err, ClientError) // adjust the [[Prototype]] setPrototypeOf(err, ClientError.prototype) // redefine the error message Object.defineProperty(err, 'message', { enumerable: true, configurable: true, value: msg, writable: true }) // redefine the error name Object.defineProperty(err, 'name', { enumerable: false, configurable: true, value: className, writable: true }) return err } inherits(ClientError, HttpError) ClientError.prototype.status = code ClientError.prototype.statusCode = code ClientError.prototype.expose = true return ClientError } /** * Create a constructor for a server error. * @private */ function createServerErrorConstructor (HttpError, name, code) { var className = name.match(/Error$/) ? name : name + 'Error' function ServerError (message) { // create the error object var msg = message != null ? message : statuses[code] var err = new Error(msg) // capture a stack trace to the construction point Error.captureStackTrace(err, ServerError) // adjust the [[Prototype]] setPrototypeOf(err, ServerError.prototype) // redefine the error message Object.defineProperty(err, 'message', { enumerable: true, configurable: true, value: msg, writable: true }) // redefine the error name Object.defineProperty(err, 'name', { enumerable: false, configurable: true, value: className, writable: true }) return err } inherits(ServerError, HttpError) ServerError.prototype.status = code ServerError.prototype.statusCode = code ServerError.prototype.expose = false return ServerError } /** * Populate the exports object with constructors for every error class. * @private */ function populateConstructorExports (exports, codes, HttpError) { codes.forEach(function forEachCode (code) { var CodeError var name = toIdentifier(statuses[code]) switch (codeClass(code)) { case 400: CodeError = createClientErrorConstructor(HttpError, name, code) break case 500: CodeError = createServerErrorConstructor(HttpError, name, code) break } if (CodeError) { // export the constructor exports[code] = CodeError exports[name] = CodeError } }) // backwards-compatibility exports["I'mateapot"] = deprecate.function(exports.ImATeapot, '"I\'mateapot"; use "ImATeapot" instead') } /** * Convert a string of words to a JavaScript identifier. * @private */ function toIdentifier (str) { return str.split(' ').map(function (token) { return token.slice(0, 1).toUpperCase() + token.slice(1) }).join('').replace(/[^ _0-9a-z]/gi, '') }

node_modules/http-errors/LICENSE

The MIT License (MIT) Copyright (c) 2014 Jonathan Ong [email protected] Copyright (c) 2016 Douglas Christopher Wilson [email protected] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/http-errors/package.json

{ "_args": [ [ { "raw": "http-errors@~1.6.1", "scope": null, "escapedName": "http-errors", "name": "http-errors", "rawSpec": "~1.6.1", "spec": ">=1.6.1 <1.7.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "http-errors@>=1.6.1 <1.7.0", "_id": "[email protected]", "_inCache": true, "_location": "/http-errors", "_nodeVersion": "6.11.1", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/http-errors-1.6.2.tgz_1501906124983_0.24086778541095555" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "3.10.10", "_phantomChildren": {}, "_requested": { "raw": "http-errors@~1.6.1", "scope": null, "escapedName": "http-errors", "name": "http-errors", "rawSpec": "~1.6.1", "spec": ">=1.6.1 <1.7.0", "type": "range" }, "_requiredBy": [ "/body-parser" ], "_resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", "_shasum": "0a002cc85707192a7e7946ceedc11155f60ec736", "_shrinkwrap": null, "_spec": "http-errors@~1.6.1", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "author": { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" }, "bugs": { "url": "https://github.com/jshttp/http-errors/issues" }, "contributors": [ { "name": "Alan Plum", "email": "[email protected]" }, { "name": "Douglas Christopher Wilson", "email": "[email protected]" } ], "dependencies": { "depd": "1.1.1", "inherits": "2.0.3", "setprototypeof": "1.0.3", "statuses": ">= 1.3.1 < 2" }, "description": "Create HTTP error objects", "devDependencies": { "eslint": "3.19.0", "eslint-config-standard": "10.2.1", "eslint-plugin-import": "2.7.0", "eslint-plugin-markdown": "1.0.0-beta.6", "eslint-plugin-node": "5.1.1", "eslint-plugin-promise": "3.5.0", "eslint-plugin-standard": "3.0.1", "istanbul": "0.4.5", "mocha": "1.21.5" }, "directories": {}, "dist": { "shasum": "0a002cc85707192a7e7946ceedc11155f60ec736", "tarball": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "index.js", "HISTORY.md", "LICENSE", "README.md" ], "gitHead": "7e534cb45fc06e8c3ad782cde89a7462851b27d1", "homepage": "https://github.com/jshttp/http-errors#readme", "keywords": [ "http", "error" ], "license": "MIT", "maintainers": [ { "name": "jongleberry", "email": "[email protected]" }, { "name": "dougwilson", "email": "[email protected]" }, { "name": "egeste", "email": "[email protected]" } ], "name": "http-errors", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/http-errors.git" }, "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --reporter spec --bail", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot" }, "version": "1.6.2" }

node_modules/http-errors/README.md

# http-errors [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Create HTTP errors for Express, Koa, Connect, etc. with ease. ## Install This is a [Node.js](https://nodejs.org/en/) module available through the [npm registry](https://www.npmjs.com/). Installation is done using the [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): ```bash $ npm install http-errors ``` ## Example ```js var createError = require('http-errors') var express = require('express') var app = express() app.use(function (req, res, next) { if (!req.user) return next(createError(401, 'Please login to view this page.')) next() }) ``` ## API This is the current API, currently extracted from Koa and subject to change. All errors inherit from JavaScript `Error` and the exported `createError.HttpError`. ### Error Properties - `expose` - can be used to signal if `message` should be sent to the client, defaulting to `false` when `status` >= 500 - `headers` - can be an object of header names to values to be sent to the client, defaulting to `undefined`. When defined, the key names should all be lower-cased - `message` - the traditional error message, which should be kept short and all single line - `status` - the status code of the error, mirroring `statusCode` for general compatibility - `statusCode` - the status code of the error, defaulting to `500` ### createError([status], [message], [properties]) <!-- eslint-disable no-undef, no-unused-vars --> ```js var err = createError(404, 'This video does not exist!') ``` - `status: 500` - the status code as a number - `message` - the message of the error, defaulting to node's text for that status code. - `properties` - custom properties to attach to the object ### new createError\[code || name\](\[msg]\)) <!-- eslint-disable no-undef, no-unused-vars --> ```js var err = new createError.NotFound() ``` - `code` - the status code as a number - `name` - the name of the error as a "bumpy case", i.e. `NotFound` or `InternalServerError`. #### List of all constructors |Status Code|Constructor Name | |-----------|-----------------------------| |400 |BadRequest | |401 |Unauthorized | |402 |PaymentRequired | |403 |Forbidden | |404 |NotFound | |405 |MethodNotAllowed | |406 |NotAcceptable | |407 |ProxyAuthenticationRequired | |408 |RequestTimeout | |409 |Conflict | |410 |Gone | |411 |LengthRequired | |412 |PreconditionFailed | |413 |PayloadTooLarge | |414 |URITooLong | |415 |UnsupportedMediaType | |416 |RangeNotSatisfiable | |417 |ExpectationFailed | |418 |ImATeapot | |421 |MisdirectedRequest | |422 |UnprocessableEntity | |423 |Locked | |424 |FailedDependency | |425 |UnorderedCollection | |426 |UpgradeRequired | |428 |PreconditionRequired | |429 |TooManyRequests | |431 |RequestHeaderFieldsTooLarge | |451 |UnavailableForLegalReasons | |500 |InternalServerError | |501 |NotImplemented | |502 |BadGateway | |503 |ServiceUnavailable | |504 |GatewayTimeout | |505 |HTTPVersionNotSupported | |506 |VariantAlsoNegotiates | |507 |InsufficientStorage | |508 |LoopDetected | |509 |BandwidthLimitExceeded | |510 |NotExtended | |511 |NetworkAuthenticationRequired| ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/http-errors.svg [npm-url]: https://npmjs.org/package/http-errors [node-version-image]: https://img.shields.io/node/v/http-errors.svg [node-version-url]: https://nodejs.org/en/download/ [travis-image]: https://img.shields.io/travis/jshttp/http-errors.svg [travis-url]: https://travis-ci.org/jshttp/http-errors [coveralls-image]: https://img.shields.io/coveralls/jshttp/http-errors.svg [coveralls-url]: https://coveralls.io/r/jshttp/http-errors [downloads-image]: https://img.shields.io/npm/dm/http-errors.svg [downloads-url]: https://npmjs.org/package/http-errors

node_modules/iconv-lite/.npmignore

*~ *sublime-* generation test wiki coverage

node_modules/iconv-lite/.travis.yml

sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "iojs" - "4" - "6" - "node" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8

node_modules/iconv-lite/Changelog.md

# 0.4.15 / 2016-11-21 * Fixed typescript type definition (#137) # 0.4.14 / 2016-11-20 * Preparation for v1.0 * Added Node v6 and latest Node versions to Travis CI test rig * Deprecated Node v0.8 support * Typescript typings (@larssn) * Fix encoding of Euro character in GB 18030 (inspired by @lygstate) * Add ms prefix to dbcs windows encodings (@rokoroku) # 0.4.13 / 2015-10-01 * Fix silly mistake in deprecation notice. # 0.4.12 / 2015-09-26 * Node v4 support: * Added CESU-8 decoding (#106) * Added deprecation notice for `extendNodeEncodings` * Added Travis tests for Node v4 and io.js latest (#105 by @Mithgol) # 0.4.11 / 2015-07-03 * Added CESU-8 encoding. # 0.4.10 / 2015-05-26 * Changed UTF-16 endianness heuristic to take into account any ASCII chars, not just spaces. This should minimize the importance of "default" endianness. # 0.4.9 / 2015-05-24 * Streamlined BOM handling: strip BOM by default, add BOM when encoding if addBOM: true. Added docs to Readme. * UTF16 now uses UTF16-LE by default. * Fixed minor issue with big5 encoding. * Added io.js testing on Travis; updated node-iconv version to test against. Now we just skip testing SBCS encodings that node-iconv doesn't support. * (internal refactoring) Updated codec interface to use classes. * Use strict mode in all files. # 0.4.8 / 2015-04-14 * added alias UNICODE-1-1-UTF-7 for UTF-7 encoding (#94) # 0.4.7 / 2015-02-05 * stop official support of Node.js v0.8. Should still work, but no guarantees. reason: Packages needed for testing are hard to get on Travis CI. * work in environment where Object.prototype is monkey patched with enumerable props (#89). # 0.4.6 / 2015-01-12 * fix rare aliases of single-byte encodings (thanks @mscdex) * double the timeout for dbcs tests to make them less flaky on travis # 0.4.5 / 2014-11-20 * fix windows-31j and x-sjis encoding support (@nleush) * minor fix: undefined variable reference when internal error happens # 0.4.4 / 2014-07-16 * added encodings UTF-7 (RFC2152) and UTF-7-IMAP (RFC3501 Section 5.1.3) * fixed streaming base64 encoding # 0.4.3 / 2014-06-14 * added encodings UTF-16BE and UTF-16 with BOM # 0.4.2 / 2014-06-12 * don't throw exception if `extendNodeEncodings()` is called more than once # 0.4.1 / 2014-06-11 * codepage 808 added # 0.4.0 / 2014-06-10 * code is rewritten from scratch * all widespread encodings are supported * streaming interface added * browserify compatibility added * (optional) extend core primitive encodings to make usage even simpler * moved from vows to mocha as the testing framework

node_modules/iconv-lite/encodings/dbcs-codec.js

"use strict" // Multibyte codec. In this scheme, a character is represented by 1 or more bytes. // Our codec supports UTF-16 surrogates, extensions for GB18030 and unicode sequences. // To save memory and loading time, we read table files only when requested. exports._dbcs = DBCSCodec; var UNASSIGNED = -1, GB18030_CODE = -2, SEQ_START = -10, NODE_START = -1000, UNASSIGNED_NODE = new Array(0x100), DEF_CHAR = -1; for (var i = 0; i < 0x100; i++) UNASSIGNED_NODE[i] = UNASSIGNED; // Class DBCSCodec reads and initializes mapping tables. function DBCSCodec(codecOptions, iconv) { this.encodingName = codecOptions.encodingName; if (!codecOptions) throw new Error("DBCS codec is called without the data.") if (!codecOptions.table) throw new Error("Encoding '" + this.encodingName + "' has no data."); // Load tables. var mappingTable = codecOptions.table(); // Decode tables: MBCS -> Unicode. // decodeTables is a trie, encoded as an array of arrays of integers. Internal arrays are trie nodes and all have len = 256. // Trie root is decodeTables[0]. // Values: >= 0 -> unicode character code. can be > 0xFFFF // == UNASSIGNED -> unknown/unassigned sequence. // == GB18030_CODE -> this is the end of a GB18030 4-byte sequence. // <= NODE_START -> index of the next node in our trie to process next byte. // <= SEQ_START -> index of the start of a character code sequence, in decodeTableSeq. this.decodeTables = []; this.decodeTables[0] = UNASSIGNED_NODE.slice(0); // Create root node. // Sometimes a MBCS char corresponds to a sequence of unicode chars. We store them as arrays of integers here. this.decodeTableSeq = []; // Actual mapping tables consist of chunks. Use them to fill up decode tables. for (var i = 0; i < mappingTable.length; i++) this._addDecodeChunk(mappingTable[i]); this.defaultCharUnicode = iconv.defaultCharUnicode; // Encode tables: Unicode -> DBCS. // `encodeTable` is array mapping from unicode char to encoded char. All its values are integers for performance. // Because it can be sparse, it is represented as array of buckets by 256 chars each. Bucket can be null. // Values: >= 0 -> it is a normal char. Write the value (if <=256 then 1 byte, if <=65536 then 2 bytes, etc.). // == UNASSIGNED -> no conversion found. Output a default char. // <= SEQ_START -> it's an index in encodeTableSeq, see below. The character starts a sequence. this.encodeTable = []; // `encodeTableSeq` is used when a sequence of unicode characters is encoded as a single code. We use a tree of // objects where keys correspond to characters in sequence and leafs are the encoded dbcs values. A special DEF_CHAR key // means end of sequence (needed when one sequence is a strict subsequence of another). // Objects are kept separately from encodeTable to increase performance. this.encodeTableSeq = []; // Some chars can be decoded, but need not be encoded. var skipEncodeChars = {}; if (codecOptions.encodeSkipVals) for (var i = 0; i < codecOptions.encodeSkipVals.length; i++) { var val = codecOptions.encodeSkipVals[i]; if (typeof val === 'number') skipEncodeChars[val] = true; else for (var j = val.from; j <= val.to; j++) skipEncodeChars[j] = true; } // Use decode trie to recursively fill out encode tables. this._fillEncodeTable(0, 0, skipEncodeChars); // Add more encoding pairs when needed. if (codecOptions.encodeAdd) { for (var uChar in codecOptions.encodeAdd) if (Object.prototype.hasOwnProperty.call(codecOptions.encodeAdd, uChar)) this._setEncodeChar(uChar.charCodeAt(0), codecOptions.encodeAdd[uChar]); } this.defCharSB = this.encodeTable[0][iconv.defaultCharSingleByte.charCodeAt(0)]; if (this.defCharSB === UNASSIGNED) this.defCharSB = this.encodeTable[0]['?']; if (this.defCharSB === UNASSIGNED) this.defCharSB = "?".charCodeAt(0); // Load & create GB18030 tables when needed. if (typeof codecOptions.gb18030 === 'function') { this.gb18030 = codecOptions.gb18030(); // Load GB18030 ranges. // Add GB18030 decode tables. var thirdByteNodeIdx = this.decodeTables.length; var thirdByteNode = this.decodeTables[thirdByteNodeIdx] = UNASSIGNED_NODE.slice(0); var fourthByteNodeIdx = this.decodeTables.length; var fourthByteNode = this.decodeTables[fourthByteNodeIdx] = UNASSIGNED_NODE.slice(0); for (var i = 0x81; i <= 0xFE; i++) { var secondByteNodeIdx = NODE_START - this.decodeTables[0][i]; var secondByteNode = this.decodeTables[secondByteNodeIdx]; for (var j = 0x30; j <= 0x39; j++) secondByteNode[j] = NODE_START - thirdByteNodeIdx; } for (var i = 0x81; i <= 0xFE; i++) thirdByteNode[i] = NODE_START - fourthByteNodeIdx; for (var i = 0x30; i <= 0x39; i++) fourthByteNode[i] = GB18030_CODE } } DBCSCodec.prototype.encoder = DBCSEncoder; DBCSCodec.prototype.decoder = DBCSDecoder; // Decoder helpers DBCSCodec.prototype._getDecodeTrieNode = function(addr) { var bytes = []; for (; addr > 0; addr >>= 8) bytes.push(addr & 0xFF); if (bytes.length == 0) bytes.push(0); var node = this.decodeTables[0]; for (var i = bytes.length-1; i > 0; i--) { // Traverse nodes deeper into the trie. var val = node[bytes[i]]; if (val == UNASSIGNED) { // Create new node. node[bytes[i]] = NODE_START - this.decodeTables.length; this.decodeTables.push(node = UNASSIGNED_NODE.slice(0)); } else if (val <= NODE_START) { // Existing node. node = this.decodeTables[NODE_START - val]; } else throw new Error("Overwrite byte in " + this.encodingName + ", addr: " + addr.toString(16)); } return node; } DBCSCodec.prototype._addDecodeChunk = function(chunk) { // First element of chunk is the hex mbcs code where we start. var curAddr = parseInt(chunk[0], 16); // Choose the decoding node where we'll write our chars. var writeTable = this._getDecodeTrieNode(curAddr); curAddr = curAddr & 0xFF; // Write all other elements of the chunk to the table. for (var k = 1; k < chunk.length; k++) { var part = chunk[k]; if (typeof part === "string") { // String, write as-is. for (var l = 0; l < part.length;) { var code = part.charCodeAt(l++); if (0xD800 <= code && code < 0xDC00) { // Decode surrogate var codeTrail = part.charCodeAt(l++); if (0xDC00 <= codeTrail && codeTrail < 0xE000) writeTable[curAddr++] = 0x10000 + (code - 0xD800) * 0x400 + (codeTrail - 0xDC00); else throw new Error("Incorrect surrogate pair in " + this.encodingName + " at chunk " + chunk[0]); } else if (0x0FF0 < code && code <= 0x0FFF) { // Character sequence (our own encoding used) var len = 0xFFF - code + 2; var seq = []; for (var m = 0; m < len; m++) seq.push(part.charCodeAt(l++)); // Simple variation: don't support surrogates or subsequences in seq. writeTable[curAddr++] = SEQ_START - this.decodeTableSeq.length; this.decodeTableSeq.push(seq); } else writeTable[curAddr++] = code; // Basic char } } else if (typeof part === "number") { // Integer, meaning increasing sequence starting with prev character. var charCode = writeTable[curAddr - 1] + 1; for (var l = 0; l < part; l++) writeTable[curAddr++] = charCode++; } else throw new Error("Incorrect type '" + typeof part + "' given in " + this.encodingName + " at chunk " + chunk[0]); } if (curAddr > 0xFF) throw new Error("Incorrect chunk in " + this.encodingName + " at addr " + chunk[0] + ": too long" + curAddr); } // Encoder helpers DBCSCodec.prototype._getEncodeBucket = function(uCode) { var high = uCode >> 8; // This could be > 0xFF because of astral characters. if (this.encodeTable[high] === undefined) this.encodeTable[high] = UNASSIGNED_NODE.slice(0); // Create bucket on demand. return this.encodeTable[high]; } DBCSCodec.prototype._setEncodeChar = function(uCode, dbcsCode) { var bucket = this._getEncodeBucket(uCode); var low = uCode & 0xFF; if (bucket[low] <= SEQ_START) this.encodeTableSeq[SEQ_START-bucket[low]][DEF_CHAR] = dbcsCode; // There's already a sequence, set a single-char subsequence of it. else if (bucket[low] == UNASSIGNED) bucket[low] = dbcsCode; } DBCSCodec.prototype._setEncodeSequence = function(seq, dbcsCode) { // Get the root of character tree according to first character of the sequence. var uCode = seq[0]; var bucket = this._getEncodeBucket(uCode); var low = uCode & 0xFF; var node; if (bucket[low] <= SEQ_START) { // There's already a sequence with - use it. node = this.encodeTableSeq[SEQ_START-bucket[low]]; } else { // There was no sequence object - allocate a new one. node = {}; if (bucket[low] !== UNASSIGNED) node[DEF_CHAR] = bucket[low]; // If a char was set before - make it a single-char subsequence. bucket[low] = SEQ_START - this.encodeTableSeq.length; this.encodeTableSeq.push(node); } // Traverse the character tree, allocating new nodes as needed. for (var j = 1; j < seq.length-1; j++) { var oldVal = node[uCode]; if (typeof oldVal === 'object') node = oldVal; else { node = node[uCode] = {} if (oldVal !== undefined) node[DEF_CHAR] = oldVal } } // Set the leaf to given dbcsCode. uCode = seq[seq.length-1]; node[uCode] = dbcsCode; } DBCSCodec.prototype._fillEncodeTable = function(nodeIdx, prefix, skipEncodeChars) { var node = this.decodeTables[nodeIdx]; for (var i = 0; i < 0x100; i++) { var uCode = node[i]; var mbCode = prefix + i; if (skipEncodeChars[mbCode]) continue; if (uCode >= 0) this._setEncodeChar(uCode, mbCode); else if (uCode <= NODE_START) this._fillEncodeTable(NODE_START - uCode, mbCode << 8, skipEncodeChars); else if (uCode <= SEQ_START) this._setEncodeSequence(this.decodeTableSeq[SEQ_START - uCode], mbCode); } } // == Encoder ================================================================== function DBCSEncoder(options, codec) { // Encoder state this.leadSurrogate = -1; this.seqObj = undefined; // Static data this.encodeTable = codec.encodeTable; this.encodeTableSeq = codec.encodeTableSeq; this.defaultCharSingleByte = codec.defCharSB; this.gb18030 = codec.gb18030; } DBCSEncoder.prototype.write = function(str) { var newBuf = new Buffer(str.length * (this.gb18030 ? 4 : 3)), leadSurrogate = this.leadSurrogate, seqObj = this.seqObj, nextChar = -1, i = 0, j = 0; while (true) { // 0. Get next character. if (nextChar === -1) { if (i == str.length) break; var uCode = str.charCodeAt(i++); } else { var uCode = nextChar; nextChar = -1; } // 1. Handle surrogates. if (0xD800 <= uCode && uCode < 0xE000) { // Char is one of surrogates. if (uCode < 0xDC00) { // We've got lead surrogate. if (leadSurrogate === -1) { leadSurrogate = uCode; continue; } else { leadSurrogate = uCode; // Double lead surrogate found. uCode = UNASSIGNED; } } else { // We've got trail surrogate. if (leadSurrogate !== -1) { uCode = 0x10000 + (leadSurrogate - 0xD800) * 0x400 + (uCode - 0xDC00); leadSurrogate = -1; } else { // Incomplete surrogate pair - only trail surrogate found. uCode = UNASSIGNED; } } } else if (leadSurrogate !== -1) { // Incomplete surrogate pair - only lead surrogate found. nextChar = uCode; uCode = UNASSIGNED; // Write an error, then current char. leadSurrogate = -1; } // 2. Convert uCode character. var dbcsCode = UNASSIGNED; if (seqObj !== undefined && uCode != UNASSIGNED) { // We are in the middle of the sequence var resCode = seqObj[uCode]; if (typeof resCode === 'object') { // Sequence continues. seqObj = resCode; continue; } else if (typeof resCode == 'number') { // Sequence finished. Write it. dbcsCode = resCode; } else if (resCode == undefined) { // Current character is not part of the sequence. // Try default character for this sequence resCode = seqObj[DEF_CHAR]; if (resCode !== undefined) { dbcsCode = resCode; // Found. Write it. nextChar = uCode; // Current character will be written too in the next iteration. } else { // TODO: What if we have no default? (resCode == undefined) // Then, we should write first char of the sequence as-is and try the rest recursively. // Didn't do it for now because no encoding has this situation yet. // Currently, just skip the sequence and write current char. } } seqObj = undefined; } else if (uCode >= 0) { // Regular character var subtable = this.encodeTable[uCode >> 8]; if (subtable !== undefined) dbcsCode = subtable[uCode & 0xFF]; if (dbcsCode <= SEQ_START) { // Sequence start seqObj = this.encodeTableSeq[SEQ_START-dbcsCode]; continue; } if (dbcsCode == UNASSIGNED && this.gb18030) { // Use GB18030 algorithm to find character(s) to write. var idx = findIdx(this.gb18030.uChars, uCode); if (idx != -1) { var dbcsCode = this.gb18030.gbChars[idx] + (uCode - this.gb18030.uChars[idx]); newBuf[j++] = 0x81 + Math.floor(dbcsCode / 12600); dbcsCode = dbcsCode % 12600; newBuf[j++] = 0x30 + Math.floor(dbcsCode / 1260); dbcsCode = dbcsCode % 1260; newBuf[j++] = 0x81 + Math.floor(dbcsCode / 10); dbcsCode = dbcsCode % 10; newBuf[j++] = 0x30 + dbcsCode; continue; } } } // 3. Write dbcsCode character. if (dbcsCode === UNASSIGNED) dbcsCode = this.defaultCharSingleByte; if (dbcsCode < 0x100) { newBuf[j++] = dbcsCode; } else if (dbcsCode < 0x10000) { newBuf[j++] = dbcsCode >> 8; // high byte newBuf[j++] = dbcsCode & 0xFF; // low byte } else { newBuf[j++] = dbcsCode >> 16; newBuf[j++] = (dbcsCode >> 8) & 0xFF; newBuf[j++] = dbcsCode & 0xFF; } } this.seqObj = seqObj; this.leadSurrogate = leadSurrogate; return newBuf.slice(0, j); } DBCSEncoder.prototype.end = function() { if (this.leadSurrogate === -1 && this.seqObj === undefined) return; // All clean. Most often case. var newBuf = new Buffer(10), j = 0; if (this.seqObj) { // We're in the sequence. var dbcsCode = this.seqObj[DEF_CHAR]; if (dbcsCode !== undefined) { // Write beginning of the sequence. if (dbcsCode < 0x100) { newBuf[j++] = dbcsCode; } else { newBuf[j++] = dbcsCode >> 8; // high byte newBuf[j++] = dbcsCode & 0xFF; // low byte } } else { // See todo above. } this.seqObj = undefined; } if (this.leadSurrogate !== -1) { // Incomplete surrogate pair - only lead surrogate found. newBuf[j++] = this.defaultCharSingleByte; this.leadSurrogate = -1; } return newBuf.slice(0, j); } // Export for testing DBCSEncoder.prototype.findIdx = findIdx; // == Decoder ================================================================== function DBCSDecoder(options, codec) { // Decoder state this.nodeIdx = 0; this.prevBuf = new Buffer(0); // Static data this.decodeTables = codec.decodeTables; this.decodeTableSeq = codec.decodeTableSeq; this.defaultCharUnicode = codec.defaultCharUnicode; this.gb18030 = codec.gb18030; } DBCSDecoder.prototype.write = function(buf) { var newBuf = new Buffer(buf.length*2), nodeIdx = this.nodeIdx, prevBuf = this.prevBuf, prevBufOffset = this.prevBuf.length, seqStart = -this.prevBuf.length, // idx of the start of current parsed sequence. uCode; if (prevBufOffset > 0) // Make prev buf overlap a little to make it easier to slice later. prevBuf = Buffer.concat([prevBuf, buf.slice(0, 10)]); for (var i = 0, j = 0; i < buf.length; i++) { var curByte = (i >= 0) ? buf[i] : prevBuf[i + prevBufOffset]; // Lookup in current trie node. var uCode = this.decodeTables[nodeIdx][curByte]; if (uCode >= 0) { // Normal character, just use it. } else if (uCode === UNASSIGNED) { // Unknown char. // TODO: Callback with seq. //var curSeq = (seqStart >= 0) ? buf.slice(seqStart, i+1) : prevBuf.slice(seqStart + prevBufOffset, i+1 + prevBufOffset); i = seqStart; // Try to parse again, after skipping first byte of the sequence ('i' will be incremented by 'for' cycle). uCode = this.defaultCharUnicode.charCodeAt(0); } else if (uCode === GB18030_CODE) { var curSeq = (seqStart >= 0) ? buf.slice(seqStart, i+1) : prevBuf.slice(seqStart + prevBufOffset, i+1 + prevBufOffset); var ptr = (curSeq[0]-0x81)*12600 + (curSeq[1]-0x30)*1260 + (curSeq[2]-0x81)*10 + (curSeq[3]-0x30); var idx = findIdx(this.gb18030.gbChars, ptr); uCode = this.gb18030.uChars[idx] + ptr - this.gb18030.gbChars[idx]; } else if (uCode <= NODE_START) { // Go to next trie node. nodeIdx = NODE_START - uCode; continue; } else if (uCode <= SEQ_START) { // Output a sequence of chars. var seq = this.decodeTableSeq[SEQ_START - uCode]; for (var k = 0; k < seq.length - 1; k++) { uCode = seq[k]; newBuf[j++] = uCode & 0xFF; newBuf[j++] = uCode >> 8; } uCode = seq[seq.length-1]; } else throw new Error("iconv-lite internal error: invalid decoding table value " + uCode + " at " + nodeIdx + "/" + curByte); // Write the character to buffer, handling higher planes using surrogate pair. if (uCode > 0xFFFF) { uCode -= 0x10000; var uCodeLead = 0xD800 + Math.floor(uCode / 0x400); newBuf[j++] = uCodeLead & 0xFF; newBuf[j++] = uCodeLead >> 8; uCode = 0xDC00 + uCode % 0x400; } newBuf[j++] = uCode & 0xFF; newBuf[j++] = uCode >> 8; // Reset trie node. nodeIdx = 0; seqStart = i+1; } this.nodeIdx = nodeIdx; this.prevBuf = (seqStart >= 0) ? buf.slice(seqStart) : prevBuf.slice(seqStart + prevBufOffset); return newBuf.slice(0, j).toString('ucs2'); } DBCSDecoder.prototype.end = function() { var ret = ''; // Try to parse all remaining chars. while (this.prevBuf.length > 0) { // Skip 1 character in the buffer. ret += this.defaultCharUnicode; var buf = this.prevBuf.slice(1); // Parse remaining as usual. this.prevBuf = new Buffer(0); this.nodeIdx = 0; if (buf.length > 0) ret += this.write(buf); } this.nodeIdx = 0; return ret; } // Binary search for GB18030. Returns largest i such that table[i] <= val. function findIdx(table, val) { if (table[0] > val) return -1; var l = 0, r = table.length; while (l < r-1) { // always table[l] <= val < table[r] var mid = l + Math.floor((r-l+1)/2); if (table[mid] <= val) l = mid; else r = mid; } return l; }

node_modules/iconv-lite/encodings/dbcs-data.js

"use strict" // Description of supported double byte encodings and aliases. // Tables are not require()-d until they are needed to speed up library load. // require()-s are direct to support Browserify. module.exports = { // == Japanese/ShiftJIS ==================================================== // All japanese encodings are based on JIS X set of standards: // JIS X 0201 - Single-byte encoding of ASCII + ¥ + Kana chars at 0xA1-0xDF. // JIS X 0208 - Main set of 6879 characters, placed in 94x94 plane, to be encoded by 2 bytes. // Has several variations in 1978, 1983, 1990 and 1997. // JIS X 0212 - Supplementary plane of 6067 chars in 94x94 plane. 1990. Effectively dead. // JIS X 0213 - Extension and modern replacement of 0208 and 0212. Total chars: 11233. // 2 planes, first is superset of 0208, second - revised 0212. // Introduced in 2000, revised 2004. Some characters are in Unicode Plane 2 (0x2xxxx) // Byte encodings are: // * Shift_JIS: Compatible with 0201, uses not defined chars in top half as lead bytes for double-byte // encoding of 0208. Lead byte ranges: 0x81-0x9F, 0xE0-0xEF; Trail byte ranges: 0x40-0x7E, 0x80-0x9E, 0x9F-0xFC. // Windows CP932 is a superset of Shift_JIS. Some companies added more chars, notably KDDI. // * EUC-JP: Up to 3 bytes per character. Used mostly on *nixes. // 0x00-0x7F - lower part of 0201 // 0x8E, 0xA1-0xDF - upper part of 0201 // (0xA1-0xFE)x2 - 0208 plane (94x94). // 0x8F, (0xA1-0xFE)x2 - 0212 plane (94x94). // * JIS X 208: 7-bit, direct encoding of 0208. Byte ranges: 0x21-0x7E (94 values). Uncommon. // Used as-is in ISO2022 family. // * ISO2022-JP: Stateful encoding, with escape sequences to switch between ASCII, // 0201-1976 Roman, 0208-1978, 0208-1983. // * ISO2022-JP-1: Adds esc seq for 0212-1990. // * ISO2022-JP-2: Adds esc seq for GB2313-1980, KSX1001-1992, ISO8859-1, ISO8859-7. // * ISO2022-JP-3: Adds esc seq for 0201-1976 Kana set, 0213-2000 Planes 1, 2. // * ISO2022-JP-2004: Adds 0213-2004 Plane 1. // // After JIS X 0213 appeared, Shift_JIS-2004, EUC-JISX0213 and ISO2022-JP-2004 followed, with just changing the planes. // // Overall, it seems that it's a mess :( http://www8.plala.or.jp/tkubota1/unicode-symbols-map2.html 'shiftjis': { type: '_dbcs', table: function() { return require('./tables/shiftjis.json') }, encodeAdd: {'\u00a5': 0x5C, '\u203E': 0x7E}, encodeSkipVals: [{from: 0xED40, to: 0xF940}], }, 'csshiftjis': 'shiftjis', 'mskanji': 'shiftjis', 'sjis': 'shiftjis', 'windows31j': 'shiftjis', 'ms31j': 'shiftjis', 'xsjis': 'shiftjis', 'windows932': 'shiftjis', 'ms932': 'shiftjis', '932': 'shiftjis', 'cp932': 'shiftjis', 'eucjp': { type: '_dbcs', table: function() { return require('./tables/eucjp.json') }, encodeAdd: {'\u00a5': 0x5C, '\u203E': 0x7E}, }, // TODO: KDDI extension to Shift_JIS // TODO: IBM CCSID 942 = CP932, but F0-F9 custom chars and other char changes. // TODO: IBM CCSID 943 = Shift_JIS = CP932 with original Shift_JIS lower 128 chars. // == Chinese/GBK ========================================================== // http://en.wikipedia.org/wiki/GBK // We mostly implement W3C recommendation: https://www.w3.org/TR/encoding/#gbk-encoder // Oldest GB2312 (1981, ~7600 chars) is a subset of CP936 'gb2312': 'cp936', 'gb231280': 'cp936', 'gb23121980': 'cp936', 'csgb2312': 'cp936', 'csiso58gb231280': 'cp936', 'euccn': 'cp936', // Microsoft's CP936 is a subset and approximation of GBK. 'windows936': 'cp936', 'ms936': 'cp936', '936': 'cp936', 'cp936': { type: '_dbcs', table: function() { return require('./tables/cp936.json') }, }, // GBK (~22000 chars) is an extension of CP936 that added user-mapped chars and some other. 'gbk': { type: '_dbcs', table: function() { return require('./tables/cp936.json').concat(require('./tables/gbk-added.json')) }, }, 'xgbk': 'gbk', 'isoir58': 'gbk', // GB18030 is an algorithmic extension of GBK. // Main source: https://www.w3.org/TR/encoding/#gbk-encoder // http://icu-project.org/docs/papers/gb18030.html // http://source.icu-project.org/repos/icu/data/trunk/charset/data/xml/gb-18030-2000.xml // http://www.khngai.com/chinese/charmap/tblgbk.php?page=0 'gb18030': { type: '_dbcs', table: function() { return require('./tables/cp936.json').concat(require('./tables/gbk-added.json')) }, gb18030: function() { return require('./tables/gb18030-ranges.json') }, encodeSkipVals: [0x80], encodeAdd: {'€': 0xA2E3}, }, 'chinese': 'gb18030', // == Korean =============================================================== // EUC-KR, KS_C_5601 and KS X 1001 are exactly the same. 'windows949': 'cp949', 'ms949': 'cp949', '949': 'cp949', 'cp949': { type: '_dbcs', table: function() { return require('./tables/cp949.json') }, }, 'cseuckr': 'cp949', 'csksc56011987': 'cp949', 'euckr': 'cp949', 'isoir149': 'cp949', 'korean': 'cp949', 'ksc56011987': 'cp949', 'ksc56011989': 'cp949', 'ksc5601': 'cp949', // == Big5/Taiwan/Hong Kong ================================================ // There are lots of tables for Big5 and cp950. Please see the following links for history: // http://moztw.org/docs/big5/ http://www.haible.de/bruno/charsets/conversion-tables/Big5.html // Variations, in roughly number of defined chars: // * Windows CP 950: Microsoft variant of Big5. Canonical: http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP950.TXT // * Windows CP 951: Microsoft variant of Big5-HKSCS-2001. Seems to be never public. http://me.abelcheung.org/articles/research/what-is-cp951/ // * Big5-2003 (Taiwan standard) almost superset of cp950. // * Unicode-at-on (UAO) / Mozilla 1.8. Falling out of use on the Web. Not supported by other browsers. // * Big5-HKSCS (-2001, -2004, -2008). Hong Kong standard. // many unicode code points moved from PUA to Supplementary plane (U+2XXXX) over the years. // Plus, it has 4 combining sequences. // Seems that Mozilla refused to support it for 10 yrs. https://bugzilla.mozilla.org/show_bug.cgi?id=162431 https://bugzilla.mozilla.org/show_bug.cgi?id=310299 // because big5-hkscs is the only encoding to include astral characters in non-algorithmic way. // Implementations are not consistent within browsers; sometimes labeled as just big5. // MS Internet Explorer switches from big5 to big5-hkscs when a patch applied. // Great discussion & recap of what's going on https://bugzilla.mozilla.org/show_bug.cgi?id=912470#c31 // In the encoder, it might make sense to support encoding old PUA mappings to Big5 bytes seq-s. // Official spec: http://www.ogcio.gov.hk/en/business/tech_promotion/ccli/terms/doc/2003cmp_2008.txt // http://www.ogcio.gov.hk/tc/business/tech_promotion/ccli/terms/doc/hkscs-2008-big5-iso.txt // // Current understanding of how to deal with Big5(-HKSCS) is in the Encoding Standard, http://encoding.spec.whatwg.org/#big5-encoder // Unicode mapping (http://www.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/OTHER/BIG5.TXT) is said to be wrong. 'windows950': 'cp950', 'ms950': 'cp950', '950': 'cp950', 'cp950': { type: '_dbcs', table: function() { return require('./tables/cp950.json') }, }, // Big5 has many variations and is an extension of cp950. We use Encoding Standard's as a consensus. 'big5': 'big5hkscs', 'big5hkscs': { type: '_dbcs', table: function() { return require('./tables/cp950.json').concat(require('./tables/big5-added.json')) }, encodeSkipVals: [0xa2cc], }, 'cnbig5': 'big5hkscs', 'csbig5': 'big5hkscs', 'xxbig5': 'big5hkscs', };

node_modules/iconv-lite/encodings/index.js

"use strict" // Update this array if you add/rename/remove files in this directory. // We support Browserify by skipping automatic module discovery and requiring modules directly. var modules = [ require("./internal"), require("./utf16"), require("./utf7"), require("./sbcs-codec"), require("./sbcs-data"), require("./sbcs-data-generated"), require("./dbcs-codec"), require("./dbcs-data"), ]; // Put all encoding/alias/codec definitions to single object and export it. for (var i = 0; i < modules.length; i++) { var module = modules[i]; for (var enc in module) if (Object.prototype.hasOwnProperty.call(module, enc)) exports[enc] = module[enc]; }

node_modules/iconv-lite/encodings/internal.js

"use strict" // Export Node.js internal encodings. module.exports = { // Encodings utf8: { type: "_internal", bomAware: true}, cesu8: { type: "_internal", bomAware: true}, unicode11utf8: "utf8", ucs2: { type: "_internal", bomAware: true}, utf16le: "ucs2", binary: { type: "_internal" }, base64: { type: "_internal" }, hex: { type: "_internal" }, // Codec. _internal: InternalCodec, }; //------------------------------------------------------------------------------ function InternalCodec(codecOptions, iconv) { this.enc = codecOptions.encodingName; this.bomAware = codecOptions.bomAware; if (this.enc === "base64") this.encoder = InternalEncoderBase64; else if (this.enc === "cesu8") { this.enc = "utf8"; // Use utf8 for decoding. this.encoder = InternalEncoderCesu8; // Add decoder for versions of Node not supporting CESU-8 if (new Buffer("eda080", 'hex').toString().length == 3) { this.decoder = InternalDecoderCesu8; this.defaultCharUnicode = iconv.defaultCharUnicode; } } } InternalCodec.prototype.encoder = InternalEncoder; InternalCodec.prototype.decoder = InternalDecoder; //------------------------------------------------------------------------------ // We use node.js internal decoder. Its signature is the same as ours. var StringDecoder = require('string_decoder').StringDecoder; if (!StringDecoder.prototype.end) // Node v0.8 doesn't have this method. StringDecoder.prototype.end = function() {}; function InternalDecoder(options, codec) { StringDecoder.call(this, codec.enc); } InternalDecoder.prototype = StringDecoder.prototype; //------------------------------------------------------------------------------ // Encoder is mostly trivial function InternalEncoder(options, codec) { this.enc = codec.enc; } InternalEncoder.prototype.write = function(str) { return new Buffer(str, this.enc); } InternalEncoder.prototype.end = function() { } //------------------------------------------------------------------------------ // Except base64 encoder, which must keep its state. function InternalEncoderBase64(options, codec) { this.prevStr = ''; } InternalEncoderBase64.prototype.write = function(str) { str = this.prevStr + str; var completeQuads = str.length - (str.length % 4); this.prevStr = str.slice(completeQuads); str = str.slice(0, completeQuads); return new Buffer(str, "base64"); } InternalEncoderBase64.prototype.end = function() { return new Buffer(this.prevStr, "base64"); } //------------------------------------------------------------------------------ // CESU-8 encoder is also special. function InternalEncoderCesu8(options, codec) { } InternalEncoderCesu8.prototype.write = function(str) { var buf = new Buffer(str.length * 3), bufIdx = 0; for (var i = 0; i < str.length; i++) { var charCode = str.charCodeAt(i); // Naive implementation, but it works because CESU-8 is especially easy // to convert from UTF-16 (which all JS strings are encoded in). if (charCode < 0x80) buf[bufIdx++] = charCode; else if (charCode < 0x800) { buf[bufIdx++] = 0xC0 + (charCode >>> 6); buf[bufIdx++] = 0x80 + (charCode & 0x3f); } else { // charCode will always be < 0x10000 in javascript. buf[bufIdx++] = 0xE0 + (charCode >>> 12); buf[bufIdx++] = 0x80 + ((charCode >>> 6) & 0x3f); buf[bufIdx++] = 0x80 + (charCode & 0x3f); } } return buf.slice(0, bufIdx); } InternalEncoderCesu8.prototype.end = function() { } //------------------------------------------------------------------------------ // CESU-8 decoder is not implemented in Node v4.0+ function InternalDecoderCesu8(options, codec) { this.acc = 0; this.contBytes = 0; this.accBytes = 0; this.defaultCharUnicode = codec.defaultCharUnicode; } InternalDecoderCesu8.prototype.write = function(buf) { var acc = this.acc, contBytes = this.contBytes, accBytes = this.accBytes, res = ''; for (var i = 0; i < buf.length; i++) { var curByte = buf[i]; if ((curByte & 0xC0) !== 0x80) { // Leading byte if (contBytes > 0) { // Previous code is invalid res += this.defaultCharUnicode; contBytes = 0; } if (curByte < 0x80) { // Single-byte code res += String.fromCharCode(curByte); } else if (curByte < 0xE0) { // Two-byte code acc = curByte & 0x1F; contBytes = 1; accBytes = 1; } else if (curByte < 0xF0) { // Three-byte code acc = curByte & 0x0F; contBytes = 2; accBytes = 1; } else { // Four or more are not supported for CESU-8. res += this.defaultCharUnicode; } } else { // Continuation byte if (contBytes > 0) { // We're waiting for it. acc = (acc << 6) | (curByte & 0x3f); contBytes--; accBytes++; if (contBytes === 0) { // Check for overlong encoding, but support Modified UTF-8 (encoding NULL as C0 80) if (accBytes === 2 && acc < 0x80 && acc > 0) res += this.defaultCharUnicode; else if (accBytes === 3 && acc < 0x800) res += this.defaultCharUnicode; else // Actually add character. res += String.fromCharCode(acc); } } else { // Unexpected continuation byte res += this.defaultCharUnicode; } } } this.acc = acc; this.contBytes = contBytes; this.accBytes = accBytes; return res; } InternalDecoderCesu8.prototype.end = function() { var res = 0; if (this.contBytes > 0) res += this.defaultCharUnicode; return res; }

node_modules/iconv-lite/encodings/sbcs-codec.js

"use strict" // Single-byte codec. Needs a 'chars' string parameter that contains 256 or 128 chars that // correspond to encoded bytes (if 128 - then lower half is ASCII). exports._sbcs = SBCSCodec; function SBCSCodec(codecOptions, iconv) { if (!codecOptions) throw new Error("SBCS codec is called without the data.") // Prepare char buffer for decoding. if (!codecOptions.chars || (codecOptions.chars.length !== 128 && codecOptions.chars.length !== 256)) throw new Error("Encoding '"+codecOptions.type+"' has incorrect 'chars' (must be of len 128 or 256)"); if (codecOptions.chars.length === 128) { var asciiString = ""; for (var i = 0; i < 128; i++) asciiString += String.fromCharCode(i); codecOptions.chars = asciiString + codecOptions.chars; } this.decodeBuf = new Buffer(codecOptions.chars, 'ucs2'); // Encoding buffer. var encodeBuf = new Buffer(65536); encodeBuf.fill(iconv.defaultCharSingleByte.charCodeAt(0)); for (var i = 0; i < codecOptions.chars.length; i++) encodeBuf[codecOptions.chars.charCodeAt(i)] = i; this.encodeBuf = encodeBuf; } SBCSCodec.prototype.encoder = SBCSEncoder; SBCSCodec.prototype.decoder = SBCSDecoder; function SBCSEncoder(options, codec) { this.encodeBuf = codec.encodeBuf; } SBCSEncoder.prototype.write = function(str) { var buf = new Buffer(str.length); for (var i = 0; i < str.length; i++) buf[i] = this.encodeBuf[str.charCodeAt(i)]; return buf; } SBCSEncoder.prototype.end = function() { } function SBCSDecoder(options, codec) { this.decodeBuf = codec.decodeBuf; } SBCSDecoder.prototype.write = function(buf) { // Strings are immutable in JS -> we use ucs2 buffer to speed up computations. var decodeBuf = this.decodeBuf; var newBuf = new Buffer(buf.length*2); var idx1 = 0, idx2 = 0; for (var i = 0; i < buf.length; i++) { idx1 = buf[i]*2; idx2 = i*2; newBuf[idx2] = decodeBuf[idx1]; newBuf[idx2+1] = decodeBuf[idx1+1]; } return newBuf.toString('ucs2'); } SBCSDecoder.prototype.end = function() { }

node_modules/iconv-lite/encodings/sbcs-data-generated.js

"use strict" // Generated data for sbcs codec. Don't edit manually. Regenerate using generation/gen-sbcs.js script. module.exports = { "437": "cp437", "737": "cp737", "775": "cp775", "850": "cp850", "852": "cp852", "855": "cp855", "856": "cp856", "857": "cp857", "858": "cp858", "860": "cp860", "861": "cp861", "862": "cp862", "863": "cp863", "864": "cp864", "865": "cp865", "866": "cp866", "869": "cp869", "874": "windows874", "922": "cp922", "1046": "cp1046", "1124": "cp1124", "1125": "cp1125", "1129": "cp1129", "1133": "cp1133", "1161": "cp1161", "1162": "cp1162", "1163": "cp1163", "1250": "windows1250", "1251": "windows1251", "1252": "windows1252", "1253": "windows1253", "1254": "windows1254", "1255": "windows1255", "1256": "windows1256", "1257": "windows1257", "1258": "windows1258", "28591": "iso88591", "28592": "iso88592", "28593": "iso88593", "28594": "iso88594", "28595": "iso88595", "28596": "iso88596", "28597": "iso88597", "28598": "iso88598", "28599": "iso88599", "28600": "iso885910", "28601": "iso885911", "28603": "iso885913", "28604": "iso885914", "28605": "iso885915", "28606": "iso885916", "windows874": { "type": "_sbcs", "chars": "€����…�����������‘’“”•–—�������� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" }, "win874": "windows874", "cp874": "windows874", "windows1250": { "type": "_sbcs", "chars": "€�‚�„…†‡�‰Š‹ŚŤŽŹ�‘’“”•–—�™š›śťžź ˇ˘Ł¤Ą¦§¨©Ş«¬­®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙" }, "win1250": "windows1250", "cp1250": "windows1250", "windows1251": { "type": "_sbcs", "chars": "ЂЃ‚ѓ„…†‡€‰Љ‹ЊЌЋЏђ‘’“”•–—�™љ›њќћџ ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя" }, "win1251": "windows1251", "cp1251": "windows1251", "windows1252": { "type": "_sbcs", "chars": "€�‚ƒ„…†‡ˆ‰Š‹Œ�Ž��‘’“”•–—˜™š›œ�žŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ" }, "win1252": "windows1252", "cp1252": "windows1252", "windows1253": { "type": "_sbcs", "chars": "€�‚ƒ„…†‡�‰�‹�����‘’“”•–—�™�›���� ΅Ά£¤¥¦§¨©�«¬­®―°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�" }, "win1253": "windows1253", "cp1253": "windows1253", "windows1254": { "type": "_sbcs", "chars": "€�‚ƒ„…†‡ˆ‰Š‹Œ����‘’“”•–—˜™š›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ" }, "win1254": "windows1254", "cp1254": "windows1254", "windows1255": { "type": "_sbcs", "chars": "€�‚ƒ„…†‡ˆ‰�‹�����‘’“”•–—˜™�›���� ¡¢£₪¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹ�ֻּֽ־ֿ׀ׁׂ׃װױײ׳״�������אבגדהוזחטיךכלםמןנסעףפץצקרשת��‎‏�" }, "win1255": "windows1255", "cp1255": "windows1255", "windows1256": { "type": "_sbcs", "chars": "€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“”•–—ک™ڑ›œ‌‍ں ،¢£¤¥¦§¨©ھ«¬­®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûü‎‏ے" }, "win1256": "windows1256", "cp1256": "windows1256", "windows1257": { "type": "_sbcs", "chars": "€�‚�„…†‡�‰�‹�¨ˇ¸�‘’“”•–—�™�›�¯˛� �¢£¤�¦§Ø©Ŗ«¬­®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙" }, "win1257": "windows1257", "cp1257": "windows1257", "windows1258": { "type": "_sbcs", "chars": "€�‚ƒ„…†‡ˆ‰�‹Œ����‘’“”•–—˜™�›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ" }, "win1258": "windows1258", "cp1258": "windows1258", "iso88591": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ" }, "cp28591": "iso88591", "iso88592": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ą˘Ł¤ĽŚ§¨ŠŞŤŹ­ŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙" }, "cp28592": "iso88592", "iso88593": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ħ˘£¤�Ĥ§¨İŞĞĴ­�ݰħ²³´µĥ·¸ışğĵ½�żÀÁÂ�ÄĊĈÇÈÉÊËÌÍÎÏ�ÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâ�äċĉçèéêëìíîï�ñòóôġö÷ĝùúûüŭŝ˙" }, "cp28593": "iso88593", "iso88594": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĸŖ¤Ĩϧ¨ŠĒĢŦ­Ž¯°ą˛ŗ´ĩšēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖרŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙" }, "cp28594": "iso88594", "iso88595": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂЃЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђѓєѕіїјљњћќ§ўџ" }, "cp28595": "iso88595", "iso88596": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ���¤�������،­�������������؛���؟�ءآأؤإئابةتثجحخدذرزسشصضطظعغ�����ـفقكلمنهوىيًٌٍَُِّْ�������������" }, "cp28596": "iso88596", "iso88597": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ‘’£€₯¦§¨©ͺ«¬­�―°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�" }, "cp28597": "iso88597", "iso88598": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ �¢£¤¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾��������������������������������‗אבגדהוזחטיךכלםמןנסעףפץצקרשת��‎‏�" }, "cp28598": "iso88598", "iso88599": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ" }, "cp28599": "iso88599", "iso885910": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĒĢĪĨͧĻĐŠŦŽ­ŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸ" }, "cp28600": "iso885910", "iso885911": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" }, "cp28601": "iso885911", "iso885913": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ”¢£¤„¦§Ø©Ŗ«¬­®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž’" }, "cp28603": "iso885913", "iso885914": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ḃḃ£ĊċḊ§Ẁ©ẂḋỲ­®ŸḞḟĠġṀṁ¶ṖẁṗẃṠỳẄẅṡÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖṪØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöṫøùúûüýŷÿ" }, "cp28604": "iso885914", "iso885915": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥Š§š©ª«¬­®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ" }, "cp28605": "iso885915", "iso885916": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄąŁ€„Чš©Ș«Ź­źŻ°±ČłŽ”¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿ" }, "cp28606": "iso885916", "cp437": { "type": "_sbcs", "chars": "ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " }, "ibm437": "cp437", "csibm437": "cp437", "cp737": { "type": "_sbcs", "chars": "ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ωάέήϊίόύϋώΆΈΉΊΌΎΏ±≥≤ΪΫ÷≈°∙·√ⁿ²■ " }, "ibm737": "cp737", "csibm737": "cp737", "cp775": { "type": "_sbcs", "chars": "ĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź”¦©®¬½¼Ł«»░▒▓│┤ĄČĘĖ╣║╗╝ĮŠ┐└┴┬├─┼ŲŪ╚╔╩╦╠═╬Žąčęėįšųūž┘┌█▄▌▐▀ÓßŌŃõÕµńĶķĻļņĒŅ’­±“¾¶§÷„°∙·¹³²■ " }, "ibm775": "cp775", "csibm775": "cp775", "cp850": { "type": "_sbcs", "chars": "ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈıÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ " }, "ibm850": "cp850", "csibm850": "cp850", "cp852": { "type": "_sbcs", "chars": "ÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÁÂĚŞ╣║╗╝Żż┐└┴┬├─┼Ăă╚╔╩╦╠═╬¤đĐĎËďŇÍÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÝţ´­˝˛ˇ˘§÷¸°¨˙űŘř■ " }, "ibm852": "cp852", "csibm852": "cp852", "cp855": { "type": "_sbcs", "chars": "ђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗╝йЙ┐└┴┬├─┼кК╚╔╩╦╠═╬¤лЛмМнНоОп┘┌█▄Пя▀ЯрРсСтТуУжЖвВьЬ№­ыЫзЗшШэЭщЩчЧ§■ " }, "ibm855": "cp855", "csibm855": "cp855", "cp856": { "type": "_sbcs", "chars": "אבגדהוזחטיךכלםמןנסעףפץצקרשת�£�×����������®¬½¼�«»░▒▓│┤���©╣║╗╝¢¥┐└┴┬├─┼��╚╔╩╦╠═╬¤���������┘┌█▄¦�▀������µ�������¯´­±‗¾¶§÷¸°¨·¹³²■ " }, "ibm856": "cp856", "csibm856": "cp856", "cp857": { "type": "_sbcs", "chars": "ÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞ𿮬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ºªÊËÈ�ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµ�×ÚÛÙìÿ¯´­±�¾¶§÷¸°¨·¹³²■ " }, "ibm857": "cp857", "csibm857": "cp857", "cp858": { "type": "_sbcs", "chars": "ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈ€ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ " }, "ibm858": "cp858", "csibm858": "cp858", "cp860": { "type": "_sbcs", "chars": "ÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáíóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " }, "ibm860": "cp860", "csibm860": "cp860", "cp861": { "type": "_sbcs", "chars": "ÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£Ø₧ƒáíóúÁÍÓÚ¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " }, "ibm861": "cp861", "csibm861": "cp861", "cp862": { "type": "_sbcs", "chars": "אבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " }, "ibm862": "cp862", "csibm862": "cp862", "cp863": { "type": "_sbcs", "chars": "ÇüéâÂà¶çêëèïî‗À§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯Î⌐¬½¼¾«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " }, "ibm863": "cp863", "csibm863": "cp863", "cp864": { "type": "_sbcs", "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$٪&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~°·∙√▒─│┼┤┬├┴┐┌└┘β∞φ±½¼≈«»ﻷﻸ��ﻻﻼ� ­ﺂ£¤ﺄ��ﺎﺏﺕﺙ،ﺝﺡﺥ٠١٢٣٤٥٦٧٨٩ﻑ؛ﺱﺵﺹ؟¢ﺀﺁﺃﺅﻊﺋﺍﺑﺓﺗﺛﺟﺣﺧﺩﺫﺭﺯﺳﺷﺻﺿﻁﻅﻋﻏ¦¬÷×ﻉـﻓﻗﻛﻟﻣﻧﻫﻭﻯﻳﺽﻌﻎﻍﻡﹽّﻥﻩﻬﻰﻲﻐﻕﻵﻶﻝﻙﻱ■�" }, "ibm864": "cp864", "csibm864": "cp864", "cp865": { "type": "_sbcs", "chars": "ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáíóúñѪº¿⌐¬½¼¡«¤░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " }, "ibm865": "cp865", "csibm865": "cp865", "cp866": { "type": "_sbcs", "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№¤■ " }, "ibm866": "cp866", "csibm866": "cp866", "cp869": { "type": "_sbcs", "chars": "������Ά�·¬¦‘’Έ―ΉΊΪΌ��ΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄­±υφχ§ψ΅°¨ωϋΰώ■ " }, "ibm869": "cp869", "csibm869": "cp869", "cp922": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®‾°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŠÑÒÓÔÕÖרÙÚÛÜÝŽßàáâãäåæçèéêëìíîïšñòóôõö÷øùúûüýžÿ" }, "ibm922": "cp922", "csibm922": "cp922", "cp1046": { "type": "_sbcs", "chars": "ﺈ×÷ﹱˆ■│─┐┌└┘ﹹﹻﹽﹿﹷﺊﻰﻳﻲﻎﻏﻐﻶﻸﻺﻼ ¤ﺋﺑﺗﺛﺟﺣ،­ﺧﺳ٠١٢٣٤٥٦٧٨٩ﺷ؛ﺻﺿﻊ؟ﻋءآأؤإئابةتثجحخدذرزسشصضطﻇعغﻌﺂﺄﺎﻓـفقكلمنهوىيًٌٍَُِّْﻗﻛﻟﻵﻷﻹﻻﻣﻧﻬﻩ�" }, "ibm1046": "cp1046", "csibm1046": "cp1046", "cp1124": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂҐЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђґєѕіїјљњћќ§ўџ" }, "ibm1124": "cp1124", "csibm1124": "cp1124", "cp1125": { "type": "_sbcs", "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёҐґЄєІіЇї·√№¤■ " }, "ibm1125": "cp1125", "csibm1125": "cp1125", "cp1129": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ" }, "ibm1129": "cp1129", "csibm1129": "cp1129", "cp1133": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ກຂຄງຈສຊຍດຕຖທນບປຜຝພຟມຢຣລວຫອຮ���ຯະາຳິີຶືຸູຼັົຽ���ເແໂໃໄ່້໊໋໌ໍໆ�ໜໝ₭����������������໐໑໒໓໔໕໖໗໘໙��¢¬¦�" }, "ibm1133": "cp1133", "csibm1133": "cp1133", "cp1161": { "type": "_sbcs", "chars": "��������������������������������่กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู้๊๋€฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛¢¬¦ " }, "ibm1161": "cp1161", "csibm1161": "cp1161", "cp1162": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" }, "ibm1162": "cp1162", "csibm1162": "cp1162", "cp1163": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ" }, "ibm1163": "cp1163", "csibm1163": "cp1163", "maccroatian": { "type": "_sbcs", "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”‘’÷◊�©⁄¤‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ" }, "maccyrillic": { "type": "_sbcs", "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤" }, "macgreek": { "type": "_sbcs", "chars": "Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦­ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡ≈Τ«»… ΥΧΆΈœ–―“”‘’÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ�" }, "maciceland": { "type": "_sbcs", "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤ÐðÞþý·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" }, "macroman": { "type": "_sbcs", "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" }, "macromania": { "type": "_sbcs", "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑∏π∫ªºΩăş¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›Ţţ‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" }, "macthai": { "type": "_sbcs", "chars": "«»…“”�•‘’� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู​–—฿เแโใไๅๆ็่้๊๋์ํ™๏๐๑๒๓๔๕๖๗๘๙®©����" }, "macturkish": { "type": "_sbcs", "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸĞğİıŞş‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙ�ˆ˜¯˘˙˚¸˝˛ˇ" }, "macukraine": { "type": "_sbcs", "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤" }, "koi8r": { "type": "_sbcs", "chars": "─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ё╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡Ё╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ" }, "koi8u": { "type": "_sbcs", "chars": "─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ" }, "koi8ru": { "type": "_sbcs", "chars": "─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґў╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪ҐЎ©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ" }, "koi8t": { "type": "_sbcs", "chars": "қғ‚Ғ„…†‡�‰ҳ‹ҲҷҶ�Қ‘’“”•–—�™�›�����ӯӮё¤ӣ¦§���«¬­®�°±²Ё�Ӣ¶·�№�»���©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ" }, "armscii8": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ �և։)(»«—.՝,-֊…՜՛՞ԱաԲբԳգԴդԵեԶզԷէԸըԹթԺժԻիԼլԽխԾծԿկՀհՁձՂղՃճՄմՅյՆնՇշՈոՉչՊպՋջՌռՍսՎվՏտՐրՑցՒւՓփՔքՕօՖֆ՚�" }, "rk1048": { "type": "_sbcs", "chars": "ЂЃ‚ѓ„…†‡€‰Љ‹ЊҚҺЏђ‘’“”•–—�™љ›њқһџ ҰұӘ¤Ө¦§Ё©Ғ«¬­®Ү°±Ііөµ¶·ё№ғ»әҢңүАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя" }, "tcvn": { "type": "_sbcs", "chars": "\u0000ÚỤ\u0003ỪỬỮ\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010ỨỰỲỶỸÝỴ\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ÀẢÃÁẠẶẬÈẺẼÉẸỆÌỈĨÍỊÒỎÕÓỌỘỜỞỠỚỢÙỦŨ ĂÂÊÔƠƯĐăâêôơưđẶ̀̀̉̃́àảãáạẲằẳẵắẴẮẦẨẪẤỀặầẩẫấậèỂẻẽéẹềểễếệìỉỄẾỒĩíịòỔỏõóọồổỗốộờởỡớợùỖủũúụừửữứựỳỷỹýỵỐ" }, "georgianacademy": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶçèéêëìíîïðñòóôõö÷øùúûüýþÿ" }, "georgianps": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზჱთიკლმნჲოპჟრსტჳუფქღყშჩცძწჭხჴჯჰჵæçèéêëìíîïðñòóôõö÷øùúûüýþÿ" }, "pt154": { "type": "_sbcs", "chars": "ҖҒӮғ„…ҶҮҲүҠӢҢҚҺҸҗ‘’“”•–—ҳҷҡӣңқһҹ ЎўЈӨҘҰ§Ё©Ә«¬ӯ®Ҝ°ұІіҙө¶·ё№ә»јҪҫҝАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя" }, "viscii": { "type": "_sbcs", "chars": "\u0000\u0001Ẳ\u0003\u0004ẴẪ\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013Ỷ\u0015\u0016\u0017\u0018Ỹ\u001a\u001b\u001c\u001dỴ\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆỐỒỔỖỘỢỚỜỞỊỎỌỈỦŨỤỲÕắằặấầẩậẽẹếềểễệốồổỗỠƠộờởịỰỨỪỬơớƯÀÁÂÃẢĂẳẵÈÉÊẺÌÍĨỳĐứÒÓÔạỷừửÙÚỹỵÝỡưàáâãảăữẫèéêẻìíĩỉđựòóôõỏọụùúũủýợỮ" }, "iso646cn": { "type": "_sbcs", "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������" }, "iso646jp": { "type": "_sbcs", "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[¥]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������" }, "hproman8": { "type": "_sbcs", "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ÀÂÈÊËÎÏ´ˋˆ¨˜ÙÛ₤¯Ýý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúàèòùäëöüÅîØÆåíøæÄìÖÜÉïßÔÁÃãÐðÍÌÓÒÕõŠšÚŸÿÞþ·µ¶¾—¼½ªº«■»±�" }, "macintosh": { "type": "_sbcs", "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" }, "ascii": { "type": "_sbcs", "chars": "��������������������������������������������������������������������������������������������������������������������������������" }, "tis620": { "type": "_sbcs", "chars": "���������������������������������กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" } }

node_modules/iconv-lite/encodings/sbcs-data.js

"use strict" // Manually added data to be used by sbcs codec in addition to generated one. module.exports = { // Not supported by iconv, not sure why. "10029": "maccenteuro", "maccenteuro": { "type": "_sbcs", "chars": "ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ" }, "808": "cp808", "ibm808": "cp808", "cp808": { "type": "_sbcs", "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№€■ " }, // Aliases of generated encodings. "ascii8bit": "ascii", "usascii": "ascii", "ansix34": "ascii", "ansix341968": "ascii", "ansix341986": "ascii", "csascii": "ascii", "cp367": "ascii", "ibm367": "ascii", "isoir6": "ascii", "iso646us": "ascii", "iso646irv": "ascii", "us": "ascii", "latin1": "iso88591", "latin2": "iso88592", "latin3": "iso88593", "latin4": "iso88594", "latin5": "iso88599", "latin6": "iso885910", "latin7": "iso885913", "latin8": "iso885914", "latin9": "iso885915", "latin10": "iso885916", "csisolatin1": "iso88591", "csisolatin2": "iso88592", "csisolatin3": "iso88593", "csisolatin4": "iso88594", "csisolatincyrillic": "iso88595", "csisolatinarabic": "iso88596", "csisolatingreek" : "iso88597", "csisolatinhebrew": "iso88598", "csisolatin5": "iso88599", "csisolatin6": "iso885910", "l1": "iso88591", "l2": "iso88592", "l3": "iso88593", "l4": "iso88594", "l5": "iso88599", "l6": "iso885910", "l7": "iso885913", "l8": "iso885914", "l9": "iso885915", "l10": "iso885916", "isoir14": "iso646jp", "isoir57": "iso646cn", "isoir100": "iso88591", "isoir101": "iso88592", "isoir109": "iso88593", "isoir110": "iso88594", "isoir144": "iso88595", "isoir127": "iso88596", "isoir126": "iso88597", "isoir138": "iso88598", "isoir148": "iso88599", "isoir157": "iso885910", "isoir166": "tis620", "isoir179": "iso885913", "isoir199": "iso885914", "isoir203": "iso885915", "isoir226": "iso885916", "cp819": "iso88591", "ibm819": "iso88591", "cyrillic": "iso88595", "arabic": "iso88596", "arabic8": "iso88596", "ecma114": "iso88596", "asmo708": "iso88596", "greek" : "iso88597", "greek8" : "iso88597", "ecma118" : "iso88597", "elot928" : "iso88597", "hebrew": "iso88598", "hebrew8": "iso88598", "turkish": "iso88599", "turkish8": "iso88599", "thai": "iso885911", "thai8": "iso885911", "celtic": "iso885914", "celtic8": "iso885914", "isoceltic": "iso885914", "tis6200": "tis620", "tis62025291": "tis620", "tis62025330": "tis620", "10000": "macroman", "10006": "macgreek", "10007": "maccyrillic", "10079": "maciceland", "10081": "macturkish", "cspc8codepage437": "cp437", "cspc775baltic": "cp775", "cspc850multilingual": "cp850", "cspcp852": "cp852", "cspc862latinhebrew": "cp862", "cpgr": "cp869", "msee": "cp1250", "mscyrl": "cp1251", "msansi": "cp1252", "msgreek": "cp1253", "msturk": "cp1254", "mshebr": "cp1255", "msarab": "cp1256", "winbaltrim": "cp1257", "cp20866": "koi8r", "20866": "koi8r", "ibm878": "koi8r", "cskoi8r": "koi8r", "cp21866": "koi8u", "21866": "koi8u", "ibm1168": "koi8u", "strk10482002": "rk1048", "tcvn5712": "tcvn", "tcvn57121": "tcvn", "gb198880": "iso646cn", "cn": "iso646cn", "csiso14jisc6220ro": "iso646jp", "jisc62201969ro": "iso646jp", "jp": "iso646jp", "cshproman8": "hproman8", "r8": "hproman8", "roman8": "hproman8", "xroman8": "hproman8", "ibm1051": "hproman8", "mac": "macintosh", "csmacintosh": "macintosh", };

node_modules/iconv-lite/encodings/tables/big5-added.json

[ ["8740","䏰䰲䘃䖦䕸𧉧䵷䖳𧲱䳢𧳅㮕䜶䝄䱇䱀𤊿𣘗𧍒𦺋𧃒䱗𪍑䝏䗚䲅𧱬䴇䪤䚡𦬣爥𥩔𡩣𣸆𣽡晍囻"], ["8767","綕夝𨮹㷴霴𧯯寛𡵞媤㘥𩺰嫑宷峼杮薓𩥅瑡璝㡵𡵓𣚞𦀡㻬"], ["87a1","𥣞㫵竼龗𤅡𨤍𣇪𠪊𣉞䌊蒄龖鐯䤰蘓墖靊鈘秐稲晠権袝瑌篅枂稬剏遆㓦珄𥶹瓆鿇垳䤯呌䄱𣚎堘穲𧭥讏䚮𦺈䆁𥶙箮𢒼鿈𢓁𢓉𢓌鿉蔄𣖻䂴鿊䓡𪷿拁灮鿋"], ["8840","㇀",4,"𠄌㇅𠃑𠃍㇆㇇𠃋𡿨㇈𠃊㇉㇊㇋㇌𠄎㇍㇎ĀÁǍÀĒÉĚÈŌÓǑÒ࿿Ê̄Ế࿿Ê̌ỀÊāáǎàɑēéěèīíǐìōóǒòūúǔùǖǘǚ"], ["88a1","ǜü࿿ê̄ế࿿ê̌ềêɡ⏚⏛"], ["8940","𪎩𡅅"], ["8943","攊"], ["8946","丽滝鵎釟"], ["894c","𧜵撑会伨侨兖兴农凤务动医华发变团声处备夲头学实実岚庆总斉柾栄桥济炼电纤纬纺织经统缆缷艺苏药视设询车轧轮"], ["89a1","琑糼緍楆竉刧"], ["89ab","醌碸酞肼"], ["89b0","贋胶𠧧"], ["89b5","肟黇䳍鷉鸌䰾𩷶𧀎鸊𪄳㗁"], ["89c1","溚舾甙"], ["89c5","䤑马骏龙禇𨑬𡷊𠗐𢫦两亁亀亇亿仫伷㑌侽㹈倃傈㑽㒓㒥円夅凛凼刅争剹劐匧㗇厩㕑厰㕓参吣㕭㕲㚁咓咣咴咹哐哯唘唣唨㖘唿㖥㖿嗗㗅"], ["8a40","𧶄唥"], ["8a43","𠱂𠴕𥄫喐𢳆㧬𠍁蹆𤶸𩓥䁓𨂾睺𢰸㨴䟕𨅝𦧲𤷪擝𠵼𠾴𠳕𡃴撍蹾𠺖𠰋𠽤𢲩𨉖𤓓"], ["8a64","𠵆𩩍𨃩䟴𤺧𢳂骲㩧𩗴㿭㔆𥋇𩟔𧣈𢵄鵮頕"], ["8a76","䏙𦂥撴哣𢵌𢯊𡁷㧻𡁯"], ["8aa1","𦛚𦜖𧦠擪𥁒𠱃蹨𢆡𨭌𠜱"], ["8aac","䠋𠆩㿺塳𢶍"], ["8ab2","𤗈𠓼𦂗𠽌𠶖啹䂻䎺"], ["8abb","䪴𢩦𡂝膪飵𠶜捹㧾𢝵跀嚡摼㹃"], ["8ac9","𪘁𠸉𢫏𢳉"], ["8ace","𡃈𣧂㦒㨆𨊛㕸𥹉𢃇噒𠼱𢲲𩜠㒼氽𤸻"], ["8adf","𧕴𢺋𢈈𪙛𨳍𠹺𠰴𦠜羓𡃏𢠃𢤹㗻𥇣𠺌𠾍𠺪㾓𠼰𠵇𡅏𠹌"], ["8af6","𠺫𠮩𠵈𡃀𡄽㿹𢚖搲𠾭"], ["8b40","𣏴𧘹𢯎𠵾𠵿𢱑𢱕㨘𠺘𡃇𠼮𪘲𦭐𨳒𨶙𨳊閪哌苄喹"], ["8b55","𩻃鰦骶𧝞𢷮煀腭胬尜𦕲脴㞗卟𨂽醶𠻺𠸏𠹷𠻻㗝𤷫㘉𠳖嚯𢞵𡃉𠸐𠹸𡁸𡅈𨈇𡑕𠹹𤹐𢶤婔𡀝𡀞𡃵𡃶垜𠸑"], ["8ba1","𧚔𨋍𠾵𠹻𥅾㜃𠾶𡆀𥋘𪊽𤧚𡠺𤅷𨉼墙剨㘚𥜽箲孨䠀䬬鼧䧧鰟鮍𥭴𣄽嗻㗲嚉丨夂𡯁屮靑𠂆乛亻㔾尣彑忄㣺扌攵歺氵氺灬爫丬犭𤣩罒礻糹罓𦉪㓁"], ["8bde","𦍋耂肀𦘒𦥑卝衤见𧢲讠贝钅镸长门𨸏韦页风飞饣𩠐鱼鸟黄歯龜丷𠂇阝户钢"], ["8c40","倻淾𩱳龦㷉袏𤅎灷峵䬠𥇍㕙𥴰愢𨨲辧釶熑朙玺𣊁𪄇㲋𡦀䬐磤琂冮𨜏䀉橣𪊺䈣蘏𠩯稪𩥇𨫪靕灍匤𢁾鏴盙𨧣龧矝亣俰傼丯众龨吴綋墒壐𡶶庒庙忂𢜒斋"], ["8ca1","𣏹椙橃𣱣泿"], ["8ca7","爀𤔅玌㻛𤨓嬕璹讃𥲤𥚕窓篬糃繬苸薗龩袐龪躹龫迏蕟駠鈡龬𨶹𡐿䁱䊢娚"], ["8cc9","顨杫䉶圽"], ["8cce","藖𤥻芿𧄍䲁𦵴嵻𦬕𦾾龭龮宖龯曧繛湗秊㶈䓃𣉖𢞖䎚䔶"], ["8ce6","峕𣬚諹屸㴒𣕑嵸龲煗䕘𤃬𡸣䱷㥸㑊𠆤𦱁諌侴𠈹妿腬顖𩣺弻"], ["8d40","𠮟"], ["8d42","𢇁𨥭䄂䚻𩁹㼇龳𪆵䃸㟖䛷𦱆䅼𨚲𧏿䕭㣔𥒚䕡䔛䶉䱻䵶䗪㿈𤬏㙡䓞䒽䇭崾嵈嵖㷼㠏嶤嶹㠠㠸幂庽弥徃㤈㤔㤿㥍惗愽峥㦉憷憹懏㦸戬抐拥挘㧸嚱"], ["8da1","㨃揢揻搇摚㩋擀崕嘡龟㪗斆㪽旿晓㫲暒㬢朖㭂枤栀㭘桊梄㭲㭱㭻椉楃牜楤榟榅㮼槖㯝橥橴橱檂㯬檙㯲檫檵櫔櫶殁毁毪汵沪㳋洂洆洦涁㳯涤涱渕渘温溆𨧀溻滢滚齿滨滩漤漴㵆𣽁澁澾㵪㵵熷岙㶊瀬㶑灐灔灯灿炉𠌥䏁㗱𠻘"], ["8e40","𣻗垾𦻓焾𥟠㙎榢𨯩孴穉𥣡𩓙穥穽𥦬窻窰竂竃燑𦒍䇊竚竝竪䇯咲𥰁笋筕笩𥌎𥳾箢筯莜𥮴𦱿篐萡箒箸𥴠㶭𥱥蒒篺簆簵𥳁籄粃𤢂粦晽𤕸糉糇糦籴糳糵糎"], ["8ea1","繧䔝𦹄絝𦻖璍綉綫焵綳緒𤁗𦀩緤㴓緵𡟹緥𨍭縝𦄡𦅚繮纒䌫鑬縧罀罁罇礶𦋐駡羗𦍑羣𡙡𠁨䕜𣝦䔃𨌺翺𦒉者耈耝耨耯𪂇𦳃耻耼聡𢜔䦉𦘦𣷣𦛨朥肧𨩈脇脚墰𢛶汿𦒘𤾸擧𡒊舘𡡞橓𤩥𤪕䑺舩𠬍𦩒𣵾俹𡓽蓢荢𦬊𤦧𣔰𡝳𣷸芪椛芳䇛"], ["8f40","蕋苐茚𠸖𡞴㛁𣅽𣕚艻苢茘𣺋𦶣𦬅𦮗𣗎㶿茝嗬莅䔋𦶥莬菁菓㑾𦻔橗蕚㒖𦹂𢻯葘𥯤葱㷓䓤檧葊𣲵祘蒨𦮖𦹷𦹃蓞萏莑䒠蒓蓤𥲑䉀𥳀䕃蔴嫲𦺙䔧蕳䔖枿蘖"], ["8fa1","𨘥𨘻藁𧂈蘂𡖂𧃍䕫䕪蘨㙈𡢢号𧎚虾蝱𪃸蟮𢰧螱蟚蠏噡虬桖䘏衅衆𧗠𣶹𧗤衞袜䙛袴袵揁装睷𧜏覇覊覦覩覧覼𨨥觧𧤤𧪽誜瞓釾誐𧩙竩𧬺𣾏䜓𧬸煼謌謟𥐰𥕥謿譌譍誩𤩺讐讛誯𡛟䘕衏貛𧵔𧶏貫㜥𧵓賖𧶘𧶽贒贃𡤐賛灜贑𤳉㻐起"], ["9040","趩𨀂𡀔𤦊㭼𨆼𧄌竧躭躶軃鋔輙輭𨍥𨐒辥錃𪊟𠩐辳䤪𨧞𨔽𣶻廸𣉢迹𪀔𨚼𨔁𢌥㦀𦻗逷𨔼𧪾遡𨕬𨘋邨𨜓郄𨛦邮都酧㫰醩釄粬𨤳𡺉鈎沟鉁鉢𥖹銹𨫆𣲛𨬌𥗛"], ["90a1","𠴱錬鍫𨫡𨯫炏嫃𨫢𨫥䥥鉄𨯬𨰹𨯿鍳鑛躼閅閦鐦閠濶䊹𢙺𨛘𡉼𣸮䧟氜陻隖䅬隣𦻕懚隶磵𨫠隽双䦡𦲸𠉴𦐐𩂯𩃥𤫑𡤕𣌊霱虂霶䨏䔽䖅𤫩灵孁霛靜𩇕靗孊𩇫靟鐥僐𣂷𣂼鞉鞟鞱鞾韀韒韠𥑬韮琜𩐳響韵𩐝𧥺䫑頴頳顋顦㬎𧅵㵑𠘰𤅜"], ["9140","𥜆飊颷飈飇䫿𦴧𡛓喰飡飦飬鍸餹𤨩䭲𩡗𩤅駵騌騻騐驘𥜥㛄𩂱𩯕髠髢𩬅髴䰎鬔鬭𨘀倴鬴𦦨㣃𣁽魐魀𩴾婅𡡣鮎𤉋鰂鯿鰌𩹨鷔𩾷𪆒𪆫𪃡𪄣𪇟鵾鶃𪄴鸎梈"], ["91a1","鷄𢅛𪆓𪈠𡤻𪈳鴹𪂹𪊴麐麕麞麢䴴麪麯𤍤黁㭠㧥㴝伲㞾𨰫鼂鼈䮖鐤𦶢鼗鼖鼹嚟嚊齅馸𩂋韲葿齢齩竜龎爖䮾𤥵𤦻煷𤧸𤍈𤩑玞𨯚𡣺禟𨥾𨸶鍩鏳𨩄鋬鎁鏋𨥬𤒹爗㻫睲穃烐𤑳𤏸煾𡟯炣𡢾𣖙㻇𡢅𥐯𡟸㜢𡛻𡠹㛡𡝴𡣑𥽋㜣𡛀坛𤨥𡏾𡊨"], ["9240","𡏆𡒶蔃𣚦蔃葕𤦔𧅥𣸱𥕜𣻻𧁒䓴𣛮𩦝𦼦柹㜳㰕㷧塬𡤢栐䁗𣜿𤃡𤂋𤄏𦰡哋嚞𦚱嚒𠿟𠮨𠸍鏆𨬓鎜仸儫㠙𤐶亼𠑥𠍿佋侊𥙑婨𠆫𠏋㦙𠌊𠐔㐵伩𠋀𨺳𠉵諚𠈌亘"], ["92a1","働儍侢伃𤨎𣺊佂倮偬傁俌俥偘僼兙兛兝兞湶𣖕𣸹𣺿浲𡢄𣺉冨凃𠗠䓝𠒣𠒒𠒑赺𨪜𠜎剙劤𠡳勡鍮䙺熌𤎌𠰠𤦬𡃤槑𠸝瑹㻞璙琔瑖玘䮎𤪼𤂍叐㖄爏𤃉喴𠍅响𠯆圝鉝雴鍦埝垍坿㘾壋媙𨩆𡛺𡝯𡜐娬妸銏婾嫏娒𥥆𡧳𡡡𤊕㛵洅瑃娡𥺃"], ["9340","媁𨯗𠐓鏠璌𡌃焅䥲鐈𨧻鎽㞠尞岞幞幈𡦖𡥼𣫮廍孏𡤃𡤄㜁𡢠㛝𡛾㛓脪𨩇𡶺𣑲𨦨弌弎𡤧𡞫婫𡜻孄蘔𧗽衠恾𢡠𢘫忛㺸𢖯𢖾𩂈𦽳懀𠀾𠁆𢘛憙憘恵𢲛𢴇𤛔𩅍"], ["93a1","摱𤙥𢭪㨩𢬢𣑐𩣪𢹸挷𪑛撶挱揑𤧣𢵧护𢲡搻敫楲㯴𣂎𣊭𤦉𣊫唍𣋠𡣙𩐿曎𣊉𣆳㫠䆐𥖄𨬢𥖏𡛼𥕛𥐥磮𣄃𡠪𣈴㑤𣈏𣆂𤋉暎𦴤晫䮓昰𧡰𡷫晣𣋒𣋡昞𥡲㣑𣠺𣞼㮙𣞢𣏾瓐㮖枏𤘪梶栞㯄檾㡣𣟕𤒇樳橒櫉欅𡤒攑梘橌㯗橺歗𣿀𣲚鎠鋲𨯪𨫋"], ["9440","銉𨀞𨧜鑧涥漋𤧬浧𣽿㶏渄𤀼娽渊塇洤硂焻𤌚𤉶烱牐犇犔𤞏𤜥兹𤪤𠗫瑺𣻸𣙟𤩊𤤗𥿡㼆㺱𤫟𨰣𣼵悧㻳瓌琼鎇琷䒟𦷪䕑疃㽣𤳙𤴆㽘畕癳𪗆㬙瑨𨫌𤦫𤦎㫻"], ["94a1","㷍𤩎㻿𤧅𤣳釺圲鍂𨫣𡡤僟𥈡𥇧睸𣈲眎眏睻𤚗𣞁㩞𤣰琸璛㺿𤪺𤫇䃈𤪖𦆮錇𥖁砞碍碈磒珐祙𧝁𥛣䄎禛蒖禥樭𣻺稺秴䅮𡛦䄲鈵秱𠵌𤦌𠊙𣶺𡝮㖗啫㕰㚪𠇔𠰍竢婙𢛵𥪯𥪜娍𠉛磰娪𥯆竾䇹籝籭䈑𥮳𥺼𥺦糍𤧹𡞰粎籼粮檲緜縇緓罎𦉡"], ["9540","𦅜𧭈綗𥺂䉪𦭵𠤖柖𠁎𣗏埄𦐒𦏸𤥢翝笧𠠬𥫩𥵃笌𥸎駦虅驣樜𣐿㧢𤧷𦖭騟𦖠蒀𧄧𦳑䓪脷䐂胆脉腂𦞴飃𦩂艢艥𦩑葓𦶧蘐𧈛媆䅿𡡀嬫𡢡嫤𡣘蚠蜨𣶏蠭𧐢娂"], ["95a1","衮佅袇袿裦襥襍𥚃襔𧞅𧞄𨯵𨯙𨮜𨧹㺭蒣䛵䛏㟲訽訜𩑈彍鈫𤊄旔焩烄𡡅鵭貟賩𧷜妚矃姰䍮㛔踪躧𤰉輰轊䋴汘澻𢌡䢛潹溋𡟚鯩㚵𤤯邻邗啱䤆醻鐄𨩋䁢𨫼鐧𨰝𨰻蓥訫閙閧閗閖𨴴瑅㻂𤣿𤩂𤏪㻧𣈥随𨻧𨹦𨹥㻌𤧭𤩸𣿮琒瑫㻼靁𩂰"], ["9640","桇䨝𩂓𥟟靝鍨𨦉𨰦𨬯𦎾銺嬑譩䤼珹𤈛鞛靱餸𠼦巁𨯅𤪲頟𩓚鋶𩗗釥䓀𨭐𤩧𨭤飜𨩅㼀鈪䤥萔餻饍𧬆㷽馛䭯馪驜𨭥𥣈檏騡嫾騯𩣱䮐𩥈馼䮽䮗鍽塲𡌂堢𤦸"], ["96a1","𡓨硄𢜟𣶸棅㵽鑘㤧慐𢞁𢥫愇鱏鱓鱻鰵鰐魿鯏𩸭鮟𪇵𪃾鴡䲮𤄄鸘䲰鴌𪆴𪃭𪃳𩤯鶥蒽𦸒𦿟𦮂藼䔳𦶤𦺄𦷰萠藮𦸀𣟗𦁤秢𣖜𣙀䤭𤧞㵢鏛銾鍈𠊿碹鉷鑍俤㑀遤𥕝砽硔碶硋𡝗𣇉𤥁㚚佲濚濙瀞瀞吔𤆵垻壳垊鴖埗焴㒯𤆬燫𦱀𤾗嬨𡞵𨩉"], ["9740","愌嫎娋䊼𤒈㜬䭻𨧼鎻鎸𡣖𠼝葲𦳀𡐓𤋺𢰦𤏁妔𣶷𦝁綨𦅛𦂤𤦹𤦋𨧺鋥珢㻩璴𨭣𡢟㻡𤪳櫘珳珻㻖𤨾𤪔𡟙𤩦𠎧𡐤𤧥瑈𤤖炥𤥶銄珦鍟𠓾錱𨫎𨨖鎆𨯧𥗕䤵𨪂煫"], ["97a1","𤥃𠳿嚤𠘚𠯫𠲸唂秄𡟺緾𡛂𤩐𡡒䔮鐁㜊𨫀𤦭妰𡢿𡢃𧒄媡㛢𣵛㚰鉟婹𨪁𡡢鍴㳍𠪴䪖㦊僴㵩㵌𡎜煵䋻𨈘渏𩃤䓫浗𧹏灧沯㳖𣿭𣸭渂漌㵯𠏵畑㚼㓈䚀㻚䡱姄鉮䤾轁𨰜𦯀堒埈㛖𡑒烾𤍢𤩱𢿣𡊰𢎽梹楧𡎘𣓥𧯴𣛟𨪃𣟖𣏺𤲟樚𣚭𦲷萾䓟䓎"], ["9840","𦴦𦵑𦲂𦿞漗𧄉茽𡜺菭𦲀𧁓𡟛妉媂𡞳婡婱𡤅𤇼㜭姯𡜼㛇熎鎐暚𤊥婮娫𤊓樫𣻹𧜶𤑛𤋊焝𤉙𨧡侰𦴨峂𤓎𧹍𤎽樌𤉖𡌄炦焳𤏩㶥泟勇𤩏繥姫崯㷳彜𤩝𡟟綤萦"], ["98a1","咅𣫺𣌀𠈔坾𠣕𠘙㿥𡾞𪊶瀃𩅛嵰玏糓𨩙𩐠俈翧狍猐𧫴猸猹𥛶獁獈㺩𧬘遬燵𤣲珡臶㻊県㻑沢国琙琞琟㻢㻰㻴㻺瓓㼎㽓畂畭畲疍㽼痈痜㿀癍㿗癴㿜発𤽜熈嘣覀塩䀝睃䀹条䁅㗛瞘䁪䁯属瞾矋売砘点砜䂨砹硇硑硦葈𥔵礳栃礲䄃"], ["9940","䄉禑禙辻稆込䅧窑䆲窼艹䇄竏竛䇏両筢筬筻簒簛䉠䉺类粜䊌粸䊔糭输烀𠳏総緔緐緽羮羴犟䎗耠耥笹耮耱联㷌垴炠肷胩䏭脌猪脎脒畠脔䐁㬹腖腙腚"], ["99a1","䐓堺腼膄䐥膓䐭膥埯臁臤艔䒏芦艶苊苘苿䒰荗险榊萅烵葤惣蒈䔄蒾蓡蓸蔐蔸蕒䔻蕯蕰藠䕷虲蚒蚲蛯际螋䘆䘗袮裿褤襇覑𧥧訩訸誔誴豑賔賲贜䞘塟跃䟭仮踺嗘坔蹱嗵躰䠷軎転軤軭軲辷迁迊迌逳駄䢭飠鈓䤞鈨鉘鉫銱銮銿"], ["9a40","鋣鋫鋳鋴鋽鍃鎄鎭䥅䥑麿鐗匁鐝鐭鐾䥪鑔鑹锭関䦧间阳䧥枠䨤靀䨵鞲韂噔䫤惨颹䬙飱塄餎餙冴餜餷饂饝饢䭰駅䮝騼鬏窃魩鮁鯝鯱鯴䱭鰠㝯𡯂鵉鰺"], ["9aa1","黾噐鶓鶽鷀鷼银辶鹻麬麱麽黆铜黢黱黸竈齄𠂔𠊷𠎠椚铃妬𠓗塀铁㞹𠗕𠘕𠙶𡚺块煳𠫂𠫍𠮿呪吆𠯋咞𠯻𠰻𠱓𠱥𠱼惧𠲍噺𠲵𠳝𠳭𠵯𠶲𠷈楕鰯螥𠸄𠸎𠻗𠾐𠼭𠹳尠𠾼帋𡁜𡁏𡁶朞𡁻𡂈𡂖㙇𡂿𡃓𡄯𡄻卤蒭𡋣𡍵𡌶讁𡕷𡘙𡟃𡟇乸炻𡠭𡥪"], ["9b40","𡨭𡩅𡰪𡱰𡲬𡻈拃𡻕𡼕熘桕𢁅槩㛈𢉼𢏗𢏺𢜪𢡱𢥏苽𢥧𢦓𢫕覥𢫨辠𢬎鞸𢬿顇骽𢱌"], ["9b62","𢲈𢲷𥯨𢴈𢴒𢶷𢶕𢹂𢽴𢿌𣀳𣁦𣌟𣏞徱晈暿𧩹𣕧𣗳爁𤦺矗𣘚𣜖纇𠍆墵朎"], ["9ba1","椘𣪧𧙗𥿢𣸑𣺹𧗾𢂚䣐䪸𤄙𨪚𤋮𤌍𤀻𤌴𤎖𤩅𠗊凒𠘑妟𡺨㮾𣳿𤐄𤓖垈𤙴㦛𤜯𨗨𩧉㝢𢇃譞𨭎駖𤠒𤣻𤨕爉𤫀𠱸奥𤺥𤾆𠝹軚𥀬劏圿煱𥊙𥐙𣽊𤪧喼𥑆𥑮𦭒釔㑳𥔿𧘲𥕞䜘𥕢𥕦𥟇𤤿𥡝偦㓻𣏌惞𥤃䝼𨥈𥪮𥮉𥰆𡶐垡煑澶𦄂𧰒遖𦆲𤾚譢𦐂𦑊"], ["9c40","嵛𦯷輶𦒄𡤜諪𤧶𦒈𣿯𦔒䯀𦖿𦚵𢜛鑥𥟡憕娧晉侻嚹𤔡𦛼乪𤤴陖涏𦲽㘘襷𦞙𦡮𦐑𦡞營𦣇筂𩃀𠨑𦤦鄄𦤹穅鷰𦧺騦𦨭㙟𦑩𠀡禃𦨴𦭛崬𣔙菏𦮝䛐𦲤画补𦶮墶"], ["9ca1","㜜𢖍𧁋𧇍㱔𧊀𧊅銁𢅺𧊋錰𧋦𤧐氹钟𧑐𠻸蠧裵𢤦𨑳𡞱溸𤨪𡠠㦤㚹尐秣䔿暶𩲭𩢤襃𧟌𧡘囖䃟𡘊㦡𣜯𨃨𡏅熭荦𧧝𩆨婧䲷𧂯𨦫𧧽𧨊𧬋𧵦𤅺筃祾𨀉澵𪋟樃𨌘厢𦸇鎿栶靝𨅯𨀣𦦵𡏭𣈯𨁈嶅𨰰𨂃圕頣𨥉嶫𤦈斾槕叒𤪥𣾁㰑朶𨂐𨃴𨄮𡾡𨅏"], ["9d40","𨆉𨆯𨈚𨌆𨌯𨎊㗊𨑨𨚪䣺揦𨥖砈鉕𨦸䏲𨧧䏟𨧨𨭆𨯔姸𨰉輋𨿅𩃬筑𩄐𩄼㷷𩅞𤫊运犏嚋𩓧𩗩𩖰𩖸𩜲𩣑𩥉𩥪𩧃𩨨𩬎𩵚𩶛纟𩻸𩼣䲤镇𪊓熢𪋿䶑递𪗋䶜𠲜达嗁"], ["9da1","辺𢒰边𤪓䔉繿潖檱仪㓤𨬬𧢝㜺躀𡟵𨀤𨭬𨮙𧨾𦚯㷫𧙕𣲷𥘵𥥖亚𥺁𦉘嚿𠹭踎孭𣺈𤲞揞拐𡟶𡡻攰嘭𥱊吚𥌑㷆𩶘䱽嘢嘞罉𥻘奵𣵀蝰东𠿪𠵉𣚺脗鵞贘瘻鱅癎瞹鍅吲腈苷嘥脲萘肽嗪祢噃吖𠺝㗎嘅嗱曱𨋢㘭甴嗰喺咗啲𠱁𠲖廐𥅈𠹶𢱢"], ["9e40","𠺢麫絚嗞𡁵抝靭咔賍燶酶揼掹揾啩𢭃鱲𢺳冚㓟𠶧冧呍唞唓癦踭𦢊疱肶蠄螆裇膶萜𡃁䓬猄𤜆宐茋𦢓噻𢛴𧴯𤆣𧵳𦻐𧊶酰𡇙鈈𣳼𪚩𠺬𠻹牦𡲢䝎𤿂𧿹𠿫䃺"], ["9ea1","鱝攟𢶠䣳𤟠𩵼𠿬𠸊恢𧖣𠿭"], ["9ead","𦁈𡆇熣纎鵐业丄㕷嬍沲卧㚬㧜卽㚥𤘘墚𤭮舭呋垪𥪕𠥹"], ["9ec5","㩒𢑥獴𩺬䴉鯭𣳾𩼰䱛𤾩𩖞𩿞葜𣶶𧊲𦞳𣜠挮紥𣻷𣸬㨪逈勌㹴㙺䗩𠒎癀嫰𠺶硺𧼮墧䂿噼鮋嵴癔𪐴麅䳡痹㟻愙𣃚𤏲"], ["9ef5","噝𡊩垧𤥣𩸆刴𧂮㖭汊鵼"], ["9f40","籖鬹埞𡝬屓擓𩓐𦌵𧅤蚭𠴨𦴢𤫢𠵱"], ["9f4f","凾𡼏嶎霃𡷑麁遌笟鬂峑箣扨挵髿篏鬪籾鬮籂粆鰕篼鬉鼗鰛𤤾齚啳寃俽麘俲剠㸆勑坧偖妷帒韈鶫轜呩鞴饀鞺匬愰"], ["9fa1","椬叚鰊鴂䰻陁榀傦畆𡝭駚剳"], ["9fae","酙隁酜"], ["9fb2","酑𨺗捿𦴣櫊嘑醎畺抅𠏼獏籰𥰡𣳽"], ["9fc1","𤤙盖鮝个𠳔莾衂"], ["9fc9","届槀僭坺刟巵从氱𠇲伹咜哚劚趂㗾弌㗳"], ["9fdb","歒酼龥鮗頮颴骺麨麄煺笔"], ["9fe7","毺蠘罸"], ["9feb","嘠𪙊蹷齓"], ["9ff0","跔蹏鸜踁抂𨍽踨蹵竓𤩷稾磘泪詧瘇"], ["a040","𨩚鼦泎蟖痃𪊲硓咢贌狢獱謭猂瓱賫𤪻蘯徺袠䒷"], ["a055","𡠻𦸅"], ["a058","詾𢔛"], ["a05b","惽癧髗鵄鍮鮏蟵"], ["a063","蠏賷猬霡鮰㗖犲䰇籑饊𦅙慙䰄麖慽"], ["a073","坟慯抦戹拎㩜懢厪𣏵捤栂㗒"], ["a0a1","嵗𨯂迚𨸹"], ["a0a6","僙𡵆礆匲阸𠼻䁥"], ["a0ae","矾"], ["a0b0","糂𥼚糚稭聦聣絍甅瓲覔舚朌聢𧒆聛瓰脃眤覉𦟌畓𦻑螩蟎臈螌詉貭譃眫瓸蓚㘵榲趦"], ["a0d4","覩瑨涹蟁𤀑瓧㷛煶悤憜㳑煢恷"], ["a0e2","罱𨬭牐惩䭾删㰘𣳇𥻗𧙖𥔱𡥄𡋾𩤃𦷜𧂭峁𦆭𨨏𣙷𠃮𦡆𤼎䕢嬟𦍌齐麦𦉫"], ["a3c0","␀",31,"␡"], ["c6a1","①",9,"⑴",9,"ⅰ",9,"丶丿亅亠冂冖冫勹匸卩厶夊宀巛⼳广廴彐彡攴无疒癶辵隶¨ˆヽヾゝゞ〃仝々〆〇ー[]✽ぁ",23], ["c740","す",58,"ァアィイ"], ["c7a1","ゥ",81,"А",5,"ЁЖ",4], ["c840","Л",26,"ёж",25,"⇧↸↹㇏𠃌乚𠂊刂䒑"], ["c8a1","龰冈龱𧘇"], ["c8cd","¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌⺍⺕⺜⺝⺥⺧⺪⺬⺮⺶⺼⺾⻆⻊⻌⻍⻏⻖⻗⻞⻣"], ["c8f5","ʃɐɛɔɵœøŋʊɪ"], ["f9fe","■"], ["fa40","𠕇鋛𠗟𣿅蕌䊵珯况㙉𤥂𨧤鍄𡧛苮𣳈砼杄拟𤤳𨦪𠊠𦮳𡌅侫𢓭倈𦴩𧪄𣘀𤪱𢔓倩𠍾徤𠎀𠍇滛𠐟偽儁㑺儎顬㝃萖𤦤𠒇兠𣎴兪𠯿𢃼𠋥𢔰𠖎𣈳𡦃宂蝽𠖳𣲙冲冸"], ["faa1","鴴凉减凑㳜凓𤪦决凢卂凭菍椾𣜭彻刋刦刼劵剗劔効勅簕蕂勠蘍𦬓包𨫞啉滙𣾀𠥔𣿬匳卄𠯢泋𡜦栛珕恊㺪㣌𡛨燝䒢卭却𨚫卾卿𡖖𡘓矦厓𨪛厠厫厮玧𥝲㽙玜叁叅汉义埾叙㪫𠮏叠𣿫𢶣叶𠱷吓灹唫晗浛呭𦭓𠵴啝咏咤䞦𡜍𠻝㶴𠵍"], ["fb40","𨦼𢚘啇䳭启琗喆喩嘅𡣗𤀺䕒𤐵暳𡂴嘷曍𣊊暤暭噍噏磱囱鞇叾圀囯园𨭦㘣𡉏坆𤆥汮炋坂㚱𦱾埦𡐖堃𡑔𤍣堦𤯵塜墪㕡壠壜𡈼壻寿坃𪅐𤉸鏓㖡够梦㛃湙"], ["fba1","𡘾娤啓𡚒蔅姉𠵎𦲁𦴪𡟜姙𡟻𡞲𦶦浱𡠨𡛕姹𦹅媫婣㛦𤦩婷㜈媖瑥嫓𦾡𢕔㶅𡤑㜲𡚸広勐孶斈孼𧨎䀄䡝𠈄寕慠𡨴𥧌𠖥寳宝䴐尅𡭄尓珎尔𡲥𦬨屉䣝岅峩峯嶋𡷹𡸷崐崘嵆𡺤岺巗苼㠭𤤁𢁉𢅳芇㠶㯂帮檊幵幺𤒼𠳓厦亷廐厨𡝱帉廴𨒂"], ["fc40","廹廻㢠廼栾鐛弍𠇁弢㫞䢮𡌺强𦢈𢏐彘𢑱彣鞽𦹮彲鍀𨨶徧嶶㵟𥉐𡽪𧃸𢙨釖𠊞𨨩怱暅𡡷㥣㷇㘹垐𢞴祱㹀悞悤悳𤦂𤦏𧩓璤僡媠慤萤慂慈𦻒憁凴𠙖憇宪𣾷"], ["fca1","𢡟懓𨮝𩥝懐㤲𢦀𢣁怣慜攞掋𠄘担𡝰拕𢸍捬𤧟㨗搸揸𡎎𡟼撐澊𢸶頔𤂌𥜝擡擥鑻㩦携㩗敍漖𤨨𤨣斅敭敟𣁾斵𤥀䬷旑䃘𡠩无旣忟𣐀昘𣇷𣇸晄𣆤𣆥晋𠹵晧𥇦晳晴𡸽𣈱𨗴𣇈𥌓矅𢣷馤朂𤎜𤨡㬫槺𣟂杞杧杢𤇍𩃭柗䓩栢湐鈼栁𣏦𦶠桝"], ["fd40","𣑯槡樋𨫟楳棃𣗍椁椀㴲㨁𣘼㮀枬楡𨩊䋼椶榘㮡𠏉荣傐槹𣙙𢄪橅𣜃檝㯳枱櫈𩆜㰍欝𠤣惞欵歴𢟍溵𣫛𠎵𡥘㝀吡𣭚毡𣻼毜氷𢒋𤣱𦭑汚舦汹𣶼䓅𣶽𤆤𤤌𤤀"], ["fda1","𣳉㛥㳫𠴲鮃𣇹𢒑羏样𦴥𦶡𦷫涖浜湼漄𤥿𤂅𦹲蔳𦽴凇沜渝萮𨬡港𣸯瑓𣾂秌湏媑𣁋濸㜍澝𣸰滺𡒗𤀽䕕鏰潄潜㵎潴𩅰㴻澟𤅄濓𤂑𤅕𤀹𣿰𣾴𤄿凟𤅖𤅗𤅀𦇝灋灾炧炁烌烕烖烟䄄㷨熴熖𤉷焫煅媈煊煮岜𤍥煏鍢𤋁焬𤑚𤨧𤨢熺𨯨炽爎"], ["fe40","鑂爕夑鑃爤鍁𥘅爮牀𤥴梽牕牗㹕𣁄栍漽犂猪猫𤠣𨠫䣭𨠄猨献珏玪𠰺𦨮珉瑉𤇢𡛧𤨤昣㛅𤦷𤦍𤧻珷琕椃𤨦琹𠗃㻗瑜𢢭瑠𨺲瑇珤瑶莹瑬㜰瑴鏱樬璂䥓𤪌"], ["fea1","𤅟𤩹𨮏孆𨰃𡢞瓈𡦈甎瓩甞𨻙𡩋寗𨺬鎅畍畊畧畮𤾂㼄𤴓疎瑝疞疴瘂瘬癑癏癯癶𦏵皐臯㟸𦤑𦤎皡皥皷盌𦾟葢𥂝𥅽𡸜眞眦着撯𥈠睘𣊬瞯𨥤𨥨𡛁矴砉𡍶𤨒棊碯磇磓隥礮𥗠磗礴碱𧘌辸袄𨬫𦂃𢘜禆褀椂禀𥡗禝𧬹礼禩渪𧄦㺨秆𩄍秔"] ]

node_modules/iconv-lite/encodings/tables/cp936.json

[ ["0","\u0000",127,"€"], ["8140","丂丄丅丆丏丒丗丟丠両丣並丩丮丯丱丳丵丷丼乀乁乂乄乆乊乑乕乗乚乛乢乣乤乥乧乨乪",5,"乲乴",9,"乿",6,"亇亊"], ["8180","亐亖亗亙亜亝亞亣亪亯亰亱亴亶亷亸亹亼亽亾仈仌仏仐仒仚仛仜仠仢仦仧仩仭仮仯仱仴仸仹仺仼仾伀伂",6,"伋伌伒",4,"伜伝伡伣伨伩伬伭伮伱伳伵伷伹伻伾",4,"佄佅佇",5,"佒佔佖佡佢佦佨佪佫佭佮佱佲併佷佸佹佺佽侀侁侂侅來侇侊侌侎侐侒侓侕侖侘侙侚侜侞侟価侢"], ["8240","侤侫侭侰",4,"侶",8,"俀俁係俆俇俈俉俋俌俍俒",4,"俙俛俠俢俤俥俧俫俬俰俲俴俵俶俷俹俻俼俽俿",11], ["8280","個倎倐們倓倕倖倗倛倝倞倠倢倣値倧倫倯",10,"倻倽倿偀偁偂偄偅偆偉偊偋偍偐",4,"偖偗偘偙偛偝",7,"偦",5,"偭",8,"偸偹偺偼偽傁傂傃傄傆傇傉傊傋傌傎",20,"傤傦傪傫傭",4,"傳",6,"傼"], ["8340","傽",17,"僐",5,"僗僘僙僛",10,"僨僩僪僫僯僰僱僲僴僶",4,"僼",9,"儈"], ["8380","儉儊儌",5,"儓",13,"儢",28,"兂兇兊兌兎兏児兒兓兗兘兙兛兝",4,"兣兤兦內兩兪兯兲兺兾兿冃冄円冇冊冋冎冏冐冑冓冔冘冚冝冞冟冡冣冦",4,"冭冮冴冸冹冺冾冿凁凂凃凅凈凊凍凎凐凒",5], ["8440","凘凙凚凜凞凟凢凣凥",5,"凬凮凱凲凴凷凾刄刅刉刋刌刏刐刓刔刕刜刞刟刡刢刣別刦刧刪刬刯刱刲刴刵刼刾剄",5,"剋剎剏剒剓剕剗剘"], ["8480","剙剚剛剝剟剠剢剣剤剦剨剫剬剭剮剰剱剳",9,"剾劀劃",4,"劉",6,"劑劒劔",6,"劜劤劥劦劧劮劯劰労",9,"勀勁勂勄勅勆勈勊勌勍勎勏勑勓勔動勗務",5,"勠勡勢勣勥",10,"勱",7,"勻勼勽匁匂匃匄匇匉匊匋匌匎"], ["8540","匑匒匓匔匘匛匜匞匟匢匤匥匧匨匩匫匬匭匯",9,"匼匽區卂卄卆卋卌卍卐協単卙卛卝卥卨卪卬卭卲卶卹卻卼卽卾厀厁厃厇厈厊厎厏"], ["8580","厐",4,"厖厗厙厛厜厞厠厡厤厧厪厫厬厭厯",6,"厷厸厹厺厼厽厾叀參",4,"収叏叐叒叓叕叚叜叝叞叡叢叧叴叺叾叿吀吂吅吇吋吔吘吙吚吜吢吤吥吪吰吳吶吷吺吽吿呁呂呄呅呇呉呌呍呎呏呑呚呝",4,"呣呥呧呩",7,"呴呹呺呾呿咁咃咅咇咈咉咊咍咑咓咗咘咜咞咟咠咡"], ["8640","咢咥咮咰咲咵咶咷咹咺咼咾哃哅哊哋哖哘哛哠",4,"哫哬哯哰哱哴",5,"哻哾唀唂唃唄唅唈唊",4,"唒唓唕",5,"唜唝唞唟唡唥唦"], ["8680","唨唩唫唭唲唴唵唶唸唹唺唻唽啀啂啅啇啈啋",4,"啑啒啓啔啗",4,"啝啞啟啠啢啣啨啩啫啯",5,"啹啺啽啿喅喆喌喍喎喐喒喓喕喖喗喚喛喞喠",6,"喨",8,"喲喴営喸喺喼喿",4,"嗆嗇嗈嗊嗋嗎嗏嗐嗕嗗",4,"嗞嗠嗢嗧嗩嗭嗮嗰嗱嗴嗶嗸",4,"嗿嘂嘃嘄嘅"], ["8740","嘆嘇嘊嘋嘍嘐",7,"嘙嘚嘜嘝嘠嘡嘢嘥嘦嘨嘩嘪嘫嘮嘯嘰嘳嘵嘷嘸嘺嘼嘽嘾噀",11,"噏",4,"噕噖噚噛噝",4], ["8780","噣噥噦噧噭噮噯噰噲噳噴噵噷噸噹噺噽",7,"嚇",6,"嚐嚑嚒嚔",14,"嚤",10,"嚰",6,"嚸嚹嚺嚻嚽",12,"囋",8,"囕囖囘囙囜団囥",5,"囬囮囯囲図囶囷囸囻囼圀圁圂圅圇國",6], ["8840","園",9,"圝圞圠圡圢圤圥圦圧圫圱圲圴",4,"圼圽圿坁坃坄坅坆坈坉坋坒",4,"坘坙坢坣坥坧坬坮坰坱坲坴坵坸坹坺坽坾坿垀"], ["8880","垁垇垈垉垊垍",4,"垔",6,"垜垝垞垟垥垨垪垬垯垰垱垳垵垶垷垹",8,"埄",6,"埌埍埐埑埓埖埗埛埜埞埡埢埣埥",7,"埮埰埱埲埳埵埶執埻埼埾埿堁堃堄堅堈堉堊堌堎堏堐堒堓堔堖堗堘堚堛堜堝堟堢堣堥",4,"堫",4,"報堲堳場堶",7], ["8940","堾",5,"塅",6,"塎塏塐塒塓塕塖塗塙",4,"塟",5,"塦",4,"塭",16,"塿墂墄墆墇墈墊墋墌"], ["8980","墍",4,"墔",4,"墛墜墝墠",7,"墪",17,"墽墾墿壀壂壃壄壆",10,"壒壓壔壖",13,"壥",5,"壭壯壱売壴壵壷壸壺",7,"夃夅夆夈",4,"夎夐夑夒夓夗夘夛夝夞夠夡夢夣夦夨夬夰夲夳夵夶夻"], ["8a40","夽夾夿奀奃奅奆奊奌奍奐奒奓奙奛",4,"奡奣奤奦",12,"奵奷奺奻奼奾奿妀妅妉妋妌妎妏妐妑妔妕妘妚妛妜妝妟妠妡妢妦"], ["8a80","妧妬妭妰妱妳",5,"妺妼妽妿",6,"姇姈姉姌姍姎姏姕姖姙姛姞",4,"姤姦姧姩姪姫姭",11,"姺姼姽姾娀娂娊娋娍娎娏娐娒娔娕娖娗娙娚娛娝娞娡娢娤娦娧娨娪",6,"娳娵娷",4,"娽娾娿婁",4,"婇婈婋",9,"婖婗婘婙婛",5], ["8b40","婡婣婤婥婦婨婩婫",8,"婸婹婻婼婽婾媀",17,"媓",6,"媜",13,"媫媬"], ["8b80","媭",4,"媴媶媷媹",4,"媿嫀嫃",5,"嫊嫋嫍",4,"嫓嫕嫗嫙嫚嫛嫝嫞嫟嫢嫤嫥嫧嫨嫪嫬",4,"嫲",22,"嬊",11,"嬘",25,"嬳嬵嬶嬸",7,"孁",6], ["8c40","孈",7,"孒孖孞孠孡孧孨孫孭孮孯孲孴孶孷學孹孻孼孾孿宂宆宊宍宎宐宑宒宔宖実宧宨宩宬宭宮宯宱宲宷宺宻宼寀寁寃寈寉寊寋寍寎寏"], ["8c80","寑寔",8,"寠寢寣實寧審",4,"寯寱",6,"寽対尀専尃尅將專尋尌對導尐尒尓尗尙尛尞尟尠尡尣尦尨尩尪尫尭尮尯尰尲尳尵尶尷屃屄屆屇屌屍屒屓屔屖屗屘屚屛屜屝屟屢層屧",6,"屰屲",6,"屻屼屽屾岀岃",4,"岉岊岋岎岏岒岓岕岝",4,"岤",4], ["8d40","岪岮岯岰岲岴岶岹岺岻岼岾峀峂峃峅",5,"峌",5,"峓",5,"峚",6,"峢峣峧峩峫峬峮峯峱",9,"峼",4], ["8d80","崁崄崅崈",5,"崏",4,"崕崗崘崙崚崜崝崟",4,"崥崨崪崫崬崯",4,"崵",7,"崿",7,"嵈嵉嵍",10,"嵙嵚嵜嵞",10,"嵪嵭嵮嵰嵱嵲嵳嵵",12,"嶃",21,"嶚嶛嶜嶞嶟嶠"], ["8e40","嶡",21,"嶸",12,"巆",6,"巎",12,"巜巟巠巣巤巪巬巭"], ["8e80","巰巵巶巸",4,"巿帀帄帇帉帊帋帍帎帒帓帗帞",7,"帨",4,"帯帰帲",4,"帹帺帾帿幀幁幃幆",5,"幍",6,"幖",4,"幜幝幟幠幣",14,"幵幷幹幾庁庂広庅庈庉庌庍庎庒庘庛庝庡庢庣庤庨",4,"庮",4,"庴庺庻庼庽庿",6], ["8f40","廆廇廈廋",5,"廔廕廗廘廙廚廜",11,"廩廫",8,"廵廸廹廻廼廽弅弆弇弉弌弍弎弐弒弔弖弙弚弜弝弞弡弢弣弤"], ["8f80","弨弫弬弮弰弲",6,"弻弽弾弿彁",14,"彑彔彙彚彛彜彞彟彠彣彥彧彨彫彮彯彲彴彵彶彸彺彽彾彿徃徆徍徎徏徑従徔徖徚徛徝從徟徠徢",5,"復徫徬徯",5,"徶徸徹徺徻徾",4,"忇忈忊忋忎忓忔忕忚忛応忞忟忢忣忥忦忨忩忬忯忰忲忳忴忶忷忹忺忼怇"], ["9040","怈怉怋怌怐怑怓怗怘怚怞怟怢怣怤怬怭怮怰",4,"怶",4,"怽怾恀恄",6,"恌恎恏恑恓恔恖恗恘恛恜恞恟恠恡恥恦恮恱恲恴恵恷恾悀"], ["9080","悁悂悅悆悇悈悊悋悎悏悐悑悓悕悗悘悙悜悞悡悢悤悥悧悩悪悮悰悳悵悶悷悹悺悽",7,"惇惈惉惌",4,"惒惓惔惖惗惙惛惞惡",4,"惪惱惲惵惷惸惻",4,"愂愃愄愅愇愊愋愌愐",4,"愖愗愘愙愛愜愝愞愡愢愥愨愩愪愬",18,"慀",6], ["9140","慇慉態慍慏慐慒慓慔慖",6,"慞慟慠慡慣慤慥慦慩",6,"慱慲慳慴慶慸",18,"憌憍憏",4,"憕"], ["9180","憖",6,"憞",8,"憪憫憭",9,"憸",5,"憿懀懁懃",4,"應懌",4,"懓懕",16,"懧",13,"懶",8,"戀",5,"戇戉戓戔戙戜戝戞戠戣戦戧戨戩戫戭戯戰戱戲戵戶戸",4,"扂扄扅扆扊"], ["9240","扏扐払扖扗扙扚扜",6,"扤扥扨扱扲扴扵扷扸扺扻扽抁抂抃抅抆抇抈抋",5,"抔抙抜抝択抣抦抧抩抪抭抮抯抰抲抳抴抶抷抸抺抾拀拁"], ["9280","拃拋拏拑拕拝拞拠拡拤拪拫拰拲拵拸拹拺拻挀挃挄挅挆挊挋挌挍挏挐挒挓挔挕挗挘挙挜挦挧挩挬挭挮挰挱挳",5,"挻挼挾挿捀捁捄捇捈捊捑捒捓捔捖",7,"捠捤捥捦捨捪捫捬捯捰捲捳捴捵捸捹捼捽捾捿掁掃掄掅掆掋掍掑掓掔掕掗掙",6,"採掤掦掫掯掱掲掵掶掹掻掽掿揀"], ["9340","揁揂揃揅揇揈揊揋揌揑揓揔揕揗",6,"揟揢揤",4,"揫揬揮揯揰揱揳揵揷揹揺揻揼揾搃搄搆",4,"損搎搑搒搕",5,"搝搟搢搣搤"], ["9380","搥搧搨搩搫搮",5,"搵",4,"搻搼搾摀摂摃摉摋",6,"摓摕摖摗摙",4,"摟",7,"摨摪摫摬摮",9,"摻",6,"撃撆撈",8,"撓撔撗撘撚撛撜撝撟",4,"撥撦撧撨撪撫撯撱撲撳撴撶撹撻撽撾撿擁擃擄擆",6,"擏擑擓擔擕擖擙據"], ["9440","擛擜擝擟擠擡擣擥擧",24,"攁",7,"攊",7,"攓",4,"攙",8], ["9480","攢攣攤攦",4,"攬攭攰攱攲攳攷攺攼攽敀",4,"敆敇敊敋敍敎敐敒敓敔敗敘敚敜敟敠敡敤敥敧敨敩敪敭敮敯敱敳敵敶數",14,"斈斉斊斍斎斏斒斔斕斖斘斚斝斞斠斢斣斦斨斪斬斮斱",7,"斺斻斾斿旀旂旇旈旉旊旍旐旑旓旔旕旘",7,"旡旣旤旪旫"], ["9540","旲旳旴旵旸旹旻",4,"昁昄昅昇昈昉昋昍昐昑昒昖昗昘昚昛昜昞昡昢昣昤昦昩昪昫昬昮昰昲昳昷",4,"昽昿晀時晄",6,"晍晎晐晑晘"], ["9580","晙晛晜晝晞晠晢晣晥晧晩",4,"晱晲晳晵晸晹晻晼晽晿暀暁暃暅暆暈暉暊暋暍暎暏暐暒暓暔暕暘",4,"暞",8,"暩",4,"暯",4,"暵暶暷暸暺暻暼暽暿",25,"曚曞",7,"曧曨曪",5,"曱曵曶書曺曻曽朁朂會"], ["9640","朄朅朆朇朌朎朏朑朒朓朖朘朙朚朜朞朠",5,"朧朩朮朰朲朳朶朷朸朹朻朼朾朿杁杄杅杇杊杋杍杒杔杕杗",4,"杝杢杣杤杦杧杫杬杮東杴杶"], ["9680","杸杹杺杻杽枀枂枃枅枆枈枊枌枍枎枏枑枒枓枔枖枙枛枟枠枡枤枦枩枬枮枱枲枴枹",7,"柂柅",9,"柕柖柗柛柟柡柣柤柦柧柨柪柫柭柮柲柵",7,"柾栁栂栃栄栆栍栐栒栔栕栘",4,"栞栟栠栢",6,"栫",6,"栴栵栶栺栻栿桇桋桍桏桒桖",5], ["9740","桜桝桞桟桪桬",7,"桵桸",8,"梂梄梇",7,"梐梑梒梔梕梖梘",9,"梣梤梥梩梪梫梬梮梱梲梴梶梷梸"], ["9780","梹",6,"棁棃",5,"棊棌棎棏棐棑棓棔棖棗棙棛",4,"棡棢棤",9,"棯棲棳棴棶棷棸棻棽棾棿椀椂椃椄椆",4,"椌椏椑椓",11,"椡椢椣椥",7,"椮椯椱椲椳椵椶椷椸椺椻椼椾楀楁楃",16,"楕楖楘楙楛楜楟"], ["9840","楡楢楤楥楧楨楩楪楬業楯楰楲",4,"楺楻楽楾楿榁榃榅榊榋榌榎",5,"榖榗榙榚榝",9,"榩榪榬榮榯榰榲榳榵榶榸榹榺榼榽"], ["9880","榾榿槀槂",7,"構槍槏槑槒槓槕",5,"槜槝槞槡",11,"槮槯槰槱槳",9,"槾樀",9,"樋",11,"標",5,"樠樢",5,"権樫樬樭樮樰樲樳樴樶",6,"樿",4,"橅橆橈",7,"橑",6,"橚"], ["9940","橜",4,"橢橣橤橦",10,"橲",6,"橺橻橽橾橿檁檂檃檅",8,"檏檒",4,"檘",7,"檡",5], ["9980","檧檨檪檭",114,"欥欦欨",6], ["9a40","欯欰欱欳欴欵欶欸欻欼欽欿歀歁歂歄歅歈歊歋歍",11,"歚",7,"歨歩歫",13,"歺歽歾歿殀殅殈"], ["9a80","殌殎殏殐殑殔殕殗殘殙殜",4,"殢",7,"殫",7,"殶殸",6,"毀毃毄毆",4,"毌毎毐毑毘毚毜",4,"毢",7,"毬毭毮毰毱毲毴毶毷毸毺毻毼毾",6,"氈",4,"氎氒気氜氝氞氠氣氥氫氬氭氱氳氶氷氹氺氻氼氾氿汃汄汅汈汋",4,"汑汒汓汖汘"], ["9b40","汙汚汢汣汥汦汧汫",4,"汱汳汵汷汸決汻汼汿沀沄沇沊沋沍沎沑沒沕沖沗沘沚沜沝沞沠沢沨沬沯沰沴沵沶沷沺泀況泂泃泆泇泈泋泍泎泏泑泒泘"], ["9b80","泙泚泜泝泟泤泦泧泩泬泭泲泴泹泿洀洂洃洅洆洈洉洊洍洏洐洑洓洔洕洖洘洜洝洟",5,"洦洨洩洬洭洯洰洴洶洷洸洺洿浀浂浄浉浌浐浕浖浗浘浛浝浟浡浢浤浥浧浨浫浬浭浰浱浲浳浵浶浹浺浻浽",4,"涃涄涆涇涊涋涍涏涐涒涖",4,"涜涢涥涬涭涰涱涳涴涶涷涹",5,"淁淂淃淈淉淊"], ["9c40","淍淎淏淐淒淓淔淕淗淚淛淜淟淢淣淥淧淨淩淪淭淯淰淲淴淵淶淸淺淽",7,"渆渇済渉渋渏渒渓渕渘渙減渜渞渟渢渦渧渨渪測渮渰渱渳渵"], ["9c80","渶渷渹渻",7,"湅",7,"湏湐湑湒湕湗湙湚湜湝湞湠",10,"湬湭湯",14,"満溁溂溄溇溈溊",4,"溑",6,"溙溚溛溝溞溠溡溣溤溦溨溩溫溬溭溮溰溳溵溸溹溼溾溿滀滃滄滅滆滈滉滊滌滍滎滐滒滖滘滙滛滜滝滣滧滪",5], ["9d40","滰滱滲滳滵滶滷滸滺",7,"漃漄漅漇漈漊",4,"漐漑漒漖",9,"漡漢漣漥漦漧漨漬漮漰漲漴漵漷",6,"漿潀潁潂"], ["9d80","潃潄潅潈潉潊潌潎",9,"潙潚潛潝潟潠潡潣潤潥潧",5,"潯潰潱潳潵潶潷潹潻潽",6,"澅澆澇澊澋澏",12,"澝澞澟澠澢",4,"澨",10,"澴澵澷澸澺",5,"濁濃",5,"濊",6,"濓",10,"濟濢濣濤濥"], ["9e40","濦",7,"濰",32,"瀒",7,"瀜",6,"瀤",6], ["9e80","瀫",9,"瀶瀷瀸瀺",17,"灍灎灐",13,"灟",11,"灮灱灲灳灴灷灹灺灻災炁炂炃炄炆炇炈炋炌炍炏炐炑炓炗炘炚炛炞",12,"炰炲炴炵炶為炾炿烄烅烆烇烉烋",12,"烚"], ["9f40","烜烝烞烠烡烢烣烥烪烮烰",6,"烸烺烻烼烾",10,"焋",4,"焑焒焔焗焛",10,"焧",7,"焲焳焴"], ["9f80","焵焷",13,"煆煇煈煉煋煍煏",12,"煝煟",4,"煥煩",4,"煯煰煱煴煵煶煷煹煻煼煾",5,"熅",4,"熋熌熍熎熐熑熒熓熕熖熗熚",4,"熡",6,"熩熪熫熭",5,"熴熶熷熸熺",8,"燄",9,"燏",4], ["a040","燖",9,"燡燢燣燤燦燨",5,"燯",9,"燺",11,"爇",19], ["a080","爛爜爞",9,"爩爫爭爮爯爲爳爴爺爼爾牀",6,"牉牊牋牎牏牐牑牓牔牕牗牘牚牜牞牠牣牤牥牨牪牫牬牭牰牱牳牴牶牷牸牻牼牽犂犃犅",4,"犌犎犐犑犓",11,"犠",11,"犮犱犲犳犵犺",6,"狅狆狇狉狊狋狌狏狑狓狔狕狖狘狚狛"], ["a1a1"," 、。·ˉˇ¨〃々—~‖…‘’“”〔〕〈",7,"〖〗【】±×÷∶∧∨∑∏∪∩∈∷√⊥∥∠⌒⊙∫∮≡≌≈∽∝≠≮≯≤≥∞∵∴♂♀°′″℃$¤¢£‰§№☆★○●◎◇◆□■△▲※→←↑↓〓"], ["a2a1","ⅰ",9], ["a2b1","⒈",19,"⑴",19,"①",9], ["a2e5","㈠",9], ["a2f1","Ⅰ",11], ["a3a1","!"#¥%",88," ̄"], ["a4a1","ぁ",82], ["a5a1","ァ",85], ["a6a1","Α",16,"Σ",6], ["a6c1","α",16,"σ",6], ["a6e0","︵︶︹︺︿﹀︽︾﹁﹂﹃﹄"], ["a6ee","︻︼︷︸︱"], ["a6f4","︳︴"], ["a7a1","А",5,"ЁЖ",25], ["a7d1","а",5,"ёж",25], ["a840","ˊˋ˙–―‥‵℅℉↖↗↘↙∕∟∣≒≦≧⊿═",35,"▁",6], ["a880","█",7,"▓▔▕▼▽◢◣◤◥☉⊕〒〝〞"], ["a8a1","āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜüêɑ"], ["a8bd","ńň"], ["a8c0","ɡ"], ["a8c5","ㄅ",36], ["a940","〡",8,"㊣㎎㎏㎜㎝㎞㎡㏄㏎㏑㏒㏕︰¬¦"], ["a959","℡㈱"], ["a95c","‐"], ["a960","ー゛゜ヽヾ〆ゝゞ﹉",9,"﹔﹕﹖﹗﹙",8], ["a980","﹢",4,"﹨﹩﹪﹫"], ["a996","〇"], ["a9a4","─",75], ["aa40","狜狝狟狢",5,"狪狫狵狶狹狽狾狿猀猂猄",5,"猋猌猍猏猐猑猒猔猘猙猚猟猠猣猤猦猧猨猭猯猰猲猳猵猶猺猻猼猽獀",8], ["aa80","獉獊獋獌獎獏獑獓獔獕獖獘",7,"獡",10,"獮獰獱"], ["ab40","獲",11,"獿",4,"玅玆玈玊玌玍玏玐玒玓玔玕玗玘玙玚玜玝玞玠玡玣",5,"玪玬玭玱玴玵玶玸玹玼玽玾玿珁珃",4], ["ab80","珋珌珎珒",6,"珚珛珜珝珟珡珢珣珤珦珨珪珫珬珮珯珰珱珳",4], ["ac40","珸",10,"琄琇琈琋琌琍琎琑",8,"琜",5,"琣琤琧琩琫琭琯琱琲琷",4,"琽琾琿瑀瑂",11], ["ac80","瑎",6,"瑖瑘瑝瑠",12,"瑮瑯瑱",4,"瑸瑹瑺"], ["ad40","瑻瑼瑽瑿璂璄璅璆璈璉璊璌璍璏璑",10,"璝璟",7,"璪",15,"璻",12], ["ad80","瓈",9,"瓓",8,"瓝瓟瓡瓥瓧",6,"瓰瓱瓲"], ["ae40","瓳瓵瓸",6,"甀甁甂甃甅",7,"甎甐甒甔甕甖甗甛甝甞甠",4,"甦甧甪甮甴甶甹甼甽甿畁畂畃畄畆畇畉畊畍畐畑畒畓畕畖畗畘"], ["ae80","畝",7,"畧畨畩畫",6,"畳畵當畷畺",4,"疀疁疂疄疅疇"], ["af40","疈疉疊疌疍疎疐疓疕疘疛疜疞疢疦",4,"疭疶疷疺疻疿痀痁痆痋痌痎痏痐痑痓痗痙痚痜痝痟痠痡痥痩痬痭痮痯痲痳痵痶痷痸痺痻痽痾瘂瘄瘆瘇"], ["af80","瘈瘉瘋瘍瘎瘏瘑瘒瘓瘔瘖瘚瘜瘝瘞瘡瘣瘧瘨瘬瘮瘯瘱瘲瘶瘷瘹瘺瘻瘽癁療癄"], ["b040","癅",6,"癎",5,"癕癗",4,"癝癟癠癡癢癤",6,"癬癭癮癰",7,"癹発發癿皀皁皃皅皉皊皌皍皏皐皒皔皕皗皘皚皛"], ["b080","皜",7,"皥",8,"皯皰皳皵",9,"盀盁盃啊阿埃挨哎唉哀皑癌蔼矮艾碍爱隘鞍氨安俺按暗岸胺案肮昂盎凹敖熬翱袄傲奥懊澳芭捌扒叭吧笆八疤巴拔跋靶把耙坝霸罢爸白柏百摆佰败拜稗斑班搬扳般颁板版扮拌伴瓣半办绊邦帮梆榜膀绑棒磅蚌镑傍谤苞胞包褒剥"], ["b140","盄盇盉盋盌盓盕盙盚盜盝盞盠",4,"盦",7,"盰盳盵盶盷盺盻盽盿眀眂眃眅眆眊県眎",10,"眛眜眝眞眡眣眤眥眧眪眫"], ["b180","眬眮眰",4,"眹眻眽眾眿睂睄睅睆睈",7,"睒",7,"睜薄雹保堡饱宝抱报暴豹鲍爆杯碑悲卑北辈背贝钡倍狈备惫焙被奔苯本笨崩绷甭泵蹦迸逼鼻比鄙笔彼碧蓖蔽毕毙毖币庇痹闭敝弊必辟壁臂避陛鞭边编贬扁便变卞辨辩辫遍标彪膘表鳖憋别瘪彬斌濒滨宾摈兵冰柄丙秉饼炳"], ["b240","睝睞睟睠睤睧睩睪睭",11,"睺睻睼瞁瞂瞃瞆",5,"瞏瞐瞓",11,"瞡瞣瞤瞦瞨瞫瞭瞮瞯瞱瞲瞴瞶",4], ["b280","瞼瞾矀",12,"矎",8,"矘矙矚矝",4,"矤病并玻菠播拨钵波博勃搏铂箔伯帛舶脖膊渤泊驳捕卜哺补埠不布步簿部怖擦猜裁材才财睬踩采彩菜蔡餐参蚕残惭惨灿苍舱仓沧藏操糙槽曹草厕策侧册测层蹭插叉茬茶查碴搽察岔差诧拆柴豺搀掺蝉馋谗缠铲产阐颤昌猖"], ["b340","矦矨矪矯矰矱矲矴矵矷矹矺矻矼砃",5,"砊砋砎砏砐砓砕砙砛砞砠砡砢砤砨砪砫砮砯砱砲砳砵砶砽砿硁硂硃硄硆硈硉硊硋硍硏硑硓硔硘硙硚"], ["b380","硛硜硞",11,"硯",7,"硸硹硺硻硽",6,"场尝常长偿肠厂敞畅唱倡超抄钞朝嘲潮巢吵炒车扯撤掣彻澈郴臣辰尘晨忱沉陈趁衬撑称城橙成呈乘程惩澄诚承逞骋秤吃痴持匙池迟弛驰耻齿侈尺赤翅斥炽充冲虫崇宠抽酬畴踌稠愁筹仇绸瞅丑臭初出橱厨躇锄雏滁除楚"], ["b440","碄碅碆碈碊碋碏碐碒碔碕碖碙碝碞碠碢碤碦碨",7,"碵碶碷碸確碻碼碽碿磀磂磃磄磆磇磈磌磍磎磏磑磒磓磖磗磘磚",9], ["b480","磤磥磦磧磩磪磫磭",4,"磳磵磶磸磹磻",5,"礂礃礄礆",6,"础储矗搐触处揣川穿椽传船喘串疮窗幢床闯创吹炊捶锤垂春椿醇唇淳纯蠢戳绰疵茨磁雌辞慈瓷词此刺赐次聪葱囱匆从丛凑粗醋簇促蹿篡窜摧崔催脆瘁粹淬翠村存寸磋撮搓措挫错搭达答瘩打大呆歹傣戴带殆代贷袋待逮"], ["b540","礍",5,"礔",9,"礟",4,"礥",14,"礵",4,"礽礿祂祃祄祅祇祊",8,"祔祕祘祙祡祣"], ["b580","祤祦祩祪祫祬祮祰",6,"祹祻",4,"禂禃禆禇禈禉禋禌禍禎禐禑禒怠耽担丹单郸掸胆旦氮但惮淡诞弹蛋当挡党荡档刀捣蹈倒岛祷导到稻悼道盗德得的蹬灯登等瞪凳邓堤低滴迪敌笛狄涤翟嫡抵底地蒂第帝弟递缔颠掂滇碘点典靛垫电佃甸店惦奠淀殿碉叼雕凋刁掉吊钓调跌爹碟蝶迭谍叠"], ["b640","禓",6,"禛",11,"禨",10,"禴",4,"禼禿秂秄秅秇秈秊秌秎秏秐秓秔秖秗秙",5,"秠秡秢秥秨秪"], ["b680","秬秮秱",6,"秹秺秼秾秿稁稄稅稇稈稉稊稌稏",4,"稕稖稘稙稛稜丁盯叮钉顶鼎锭定订丢东冬董懂动栋侗恫冻洞兜抖斗陡豆逗痘都督毒犊独读堵睹赌杜镀肚度渡妒端短锻段断缎堆兑队对墩吨蹲敦顿囤钝盾遁掇哆多夺垛躲朵跺舵剁惰堕蛾峨鹅俄额讹娥恶厄扼遏鄂饿恩而儿耳尔饵洱二"], ["b740","稝稟稡稢稤",14,"稴稵稶稸稺稾穀",5,"穇",9,"穒",4,"穘",16], ["b780","穩",6,"穱穲穳穵穻穼穽穾窂窅窇窉窊窋窌窎窏窐窓窔窙窚窛窞窡窢贰发罚筏伐乏阀法珐藩帆番翻樊矾钒繁凡烦反返范贩犯饭泛坊芳方肪房防妨仿访纺放菲非啡飞肥匪诽吠肺废沸费芬酚吩氛分纷坟焚汾粉奋份忿愤粪丰封枫蜂峰锋风疯烽逢冯缝讽奉凤佛否夫敷肤孵扶拂辐幅氟符伏俘服"], ["b840","窣窤窧窩窪窫窮",4,"窴",10,"竀",10,"竌",9,"竗竘竚竛竜竝竡竢竤竧",5,"竮竰竱竲竳"], ["b880","竴",4,"竻竼竾笀笁笂笅笇笉笌笍笎笐笒笓笖笗笘笚笜笝笟笡笢笣笧笩笭浮涪福袱弗甫抚辅俯釜斧脯腑府腐赴副覆赋复傅付阜父腹负富讣附妇缚咐噶嘎该改概钙盖溉干甘杆柑竿肝赶感秆敢赣冈刚钢缸肛纲岗港杠篙皋高膏羔糕搞镐稿告哥歌搁戈鸽胳疙割革葛格蛤阁隔铬个各给根跟耕更庚羹"], ["b940","笯笰笲笴笵笶笷笹笻笽笿",5,"筆筈筊筍筎筓筕筗筙筜筞筟筡筣",10,"筯筰筳筴筶筸筺筼筽筿箁箂箃箄箆",6,"箎箏"], ["b980","箑箒箓箖箘箙箚箛箞箟箠箣箤箥箮箯箰箲箳箵箶箷箹",7,"篂篃範埂耿梗工攻功恭龚供躬公宫弓巩汞拱贡共钩勾沟苟狗垢构购够辜菇咕箍估沽孤姑鼓古蛊骨谷股故顾固雇刮瓜剐寡挂褂乖拐怪棺关官冠观管馆罐惯灌贯光广逛瑰规圭硅归龟闺轨鬼诡癸桂柜跪贵刽辊滚棍锅郭国果裹过哈"], ["ba40","篅篈築篊篋篍篎篏篐篒篔",4,"篛篜篞篟篠篢篣篤篧篨篩篫篬篭篯篰篲",4,"篸篹篺篻篽篿",7,"簈簉簊簍簎簐",5,"簗簘簙"], ["ba80","簚",4,"簠",5,"簨簩簫",12,"簹",5,"籂骸孩海氦亥害骇酣憨邯韩含涵寒函喊罕翰撼捍旱憾悍焊汗汉夯杭航壕嚎豪毫郝好耗号浩呵喝荷菏核禾和何合盒貉阂河涸赫褐鹤贺嘿黑痕很狠恨哼亨横衡恒轰哄烘虹鸿洪宏弘红喉侯猴吼厚候后呼乎忽瑚壶葫胡蝴狐糊湖"], ["bb40","籃",9,"籎",36,"籵",5,"籾",9], ["bb80","粈粊",6,"粓粔粖粙粚粛粠粡粣粦粧粨粩粫粬粭粯粰粴",4,"粺粻弧虎唬护互沪户花哗华猾滑画划化话槐徊怀淮坏欢环桓还缓换患唤痪豢焕涣宦幻荒慌黄磺蝗簧皇凰惶煌晃幌恍谎灰挥辉徽恢蛔回毁悔慧卉惠晦贿秽会烩汇讳诲绘荤昏婚魂浑混豁活伙火获或惑霍货祸击圾基机畸稽积箕"], ["bc40","粿糀糂糃糄糆糉糋糎",6,"糘糚糛糝糞糡",6,"糩",5,"糰",7,"糹糺糼",13,"紋",5], ["bc80","紑",14,"紡紣紤紥紦紨紩紪紬紭紮細",6,"肌饥迹激讥鸡姬绩缉吉极棘辑籍集及急疾汲即嫉级挤几脊己蓟技冀季伎祭剂悸济寄寂计记既忌际妓继纪嘉枷夹佳家加荚颊贾甲钾假稼价架驾嫁歼监坚尖笺间煎兼肩艰奸缄茧检柬碱硷拣捡简俭剪减荐槛鉴践贱见键箭件"], ["bd40","紷",54,"絯",7], ["bd80","絸",32,"健舰剑饯渐溅涧建僵姜将浆江疆蒋桨奖讲匠酱降蕉椒礁焦胶交郊浇骄娇嚼搅铰矫侥脚狡角饺缴绞剿教酵轿较叫窖揭接皆秸街阶截劫节桔杰捷睫竭洁结解姐戒藉芥界借介疥诫届巾筋斤金今津襟紧锦仅谨进靳晋禁近烬浸"], ["be40","継",12,"綧",6,"綯",42], ["be80","線",32,"尽劲荆兢茎睛晶鲸京惊精粳经井警景颈静境敬镜径痉靖竟竞净炯窘揪究纠玖韭久灸九酒厩救旧臼舅咎就疚鞠拘狙疽居驹菊局咀矩举沮聚拒据巨具距踞锯俱句惧炬剧捐鹃娟倦眷卷绢撅攫抉掘倔爵觉决诀绝均菌钧军君峻"], ["bf40","緻",62], ["bf80","縺縼",4,"繂",4,"繈",21,"俊竣浚郡骏喀咖卡咯开揩楷凯慨刊堪勘坎砍看康慷糠扛抗亢炕考拷烤靠坷苛柯棵磕颗科壳咳可渴克刻客课肯啃垦恳坑吭空恐孔控抠口扣寇枯哭窟苦酷库裤夸垮挎跨胯块筷侩快宽款匡筐狂框矿眶旷况亏盔岿窥葵奎魁傀"], ["c040","繞",35,"纃",23,"纜纝纞"], ["c080","纮纴纻纼绖绤绬绹缊缐缞缷缹缻",6,"罃罆",9,"罒罓馈愧溃坤昆捆困括扩廓阔垃拉喇蜡腊辣啦莱来赖蓝婪栏拦篮阑兰澜谰揽览懒缆烂滥琅榔狼廊郎朗浪捞劳牢老佬姥酪烙涝勒乐雷镭蕾磊累儡垒擂肋类泪棱楞冷厘梨犁黎篱狸离漓理李里鲤礼莉荔吏栗丽厉励砾历利傈例俐"], ["c140","罖罙罛罜罝罞罠罣",4,"罫罬罭罯罰罳罵罶罷罸罺罻罼罽罿羀羂",7,"羋羍羏",4,"羕",4,"羛羜羠羢羣羥羦羨",6,"羱"], ["c180","羳",4,"羺羻羾翀翂翃翄翆翇翈翉翋翍翏",4,"翖翗翙",5,"翢翣痢立粒沥隶力璃哩俩联莲连镰廉怜涟帘敛脸链恋炼练粮凉梁粱良两辆量晾亮谅撩聊僚疗燎寥辽潦了撂镣廖料列裂烈劣猎琳林磷霖临邻鳞淋凛赁吝拎玲菱零龄铃伶羚凌灵陵岭领另令溜琉榴硫馏留刘瘤流柳六龙聋咙笼窿"], ["c240","翤翧翨翪翫翬翭翯翲翴",6,"翽翾翿耂耇耈耉耊耎耏耑耓耚耛耝耞耟耡耣耤耫",5,"耲耴耹耺耼耾聀聁聄聅聇聈聉聎聏聐聑聓聕聖聗"], ["c280","聙聛",13,"聫",5,"聲",11,"隆垄拢陇楼娄搂篓漏陋芦卢颅庐炉掳卤虏鲁麓碌露路赂鹿潞禄录陆戮驴吕铝侣旅履屡缕虑氯律率滤绿峦挛孪滦卵乱掠略抡轮伦仑沦纶论萝螺罗逻锣箩骡裸落洛骆络妈麻玛码蚂马骂嘛吗埋买麦卖迈脉瞒馒蛮满蔓曼慢漫"], ["c340","聾肁肂肅肈肊肍",5,"肔肕肗肙肞肣肦肧肨肬肰肳肵肶肸肹肻胅胇",4,"胏",6,"胘胟胠胢胣胦胮胵胷胹胻胾胿脀脁脃脄脅脇脈脋"], ["c380","脌脕脗脙脛脜脝脟",12,"脭脮脰脳脴脵脷脹",4,"脿谩芒茫盲氓忙莽猫茅锚毛矛铆卯茂冒帽貌贸么玫枚梅酶霉煤没眉媒镁每美昧寐妹媚门闷们萌蒙檬盟锰猛梦孟眯醚靡糜迷谜弥米秘觅泌蜜密幂棉眠绵冕免勉娩缅面苗描瞄藐秒渺庙妙蔑灭民抿皿敏悯闽明螟鸣铭名命谬摸"], ["c440","腀",5,"腇腉腍腎腏腒腖腗腘腛",4,"腡腢腣腤腦腨腪腫腬腯腲腳腵腶腷腸膁膃",4,"膉膋膌膍膎膐膒",5,"膙膚膞",4,"膤膥"], ["c480","膧膩膫",7,"膴",5,"膼膽膾膿臄臅臇臈臉臋臍",6,"摹蘑模膜磨摩魔抹末莫墨默沫漠寞陌谋牟某拇牡亩姆母墓暮幕募慕木目睦牧穆拿哪呐钠那娜纳氖乃奶耐奈南男难囊挠脑恼闹淖呢馁内嫩能妮霓倪泥尼拟你匿腻逆溺蔫拈年碾撵捻念娘酿鸟尿捏聂孽啮镊镍涅您柠狞凝宁"], ["c540","臔",14,"臤臥臦臨臩臫臮",4,"臵",5,"臽臿舃與",4,"舎舏舑舓舕",5,"舝舠舤舥舦舧舩舮舲舺舼舽舿"], ["c580","艀艁艂艃艅艆艈艊艌艍艎艐",7,"艙艛艜艝艞艠",7,"艩拧泞牛扭钮纽脓浓农弄奴努怒女暖虐疟挪懦糯诺哦欧鸥殴藕呕偶沤啪趴爬帕怕琶拍排牌徘湃派攀潘盘磐盼畔判叛乓庞旁耪胖抛咆刨炮袍跑泡呸胚培裴赔陪配佩沛喷盆砰抨烹澎彭蓬棚硼篷膨朋鹏捧碰坯砒霹批披劈琵毗"], ["c640","艪艫艬艭艱艵艶艷艸艻艼芀芁芃芅芆芇芉芌芐芓芔芕芖芚芛芞芠芢芣芧芲芵芶芺芻芼芿苀苂苃苅苆苉苐苖苙苚苝苢苧苨苩苪苬苭苮苰苲苳苵苶苸"], ["c680","苺苼",4,"茊茋茍茐茒茓茖茘茙茝",9,"茩茪茮茰茲茷茻茽啤脾疲皮匹痞僻屁譬篇偏片骗飘漂瓢票撇瞥拼频贫品聘乒坪苹萍平凭瓶评屏坡泼颇婆破魄迫粕剖扑铺仆莆葡菩蒲埔朴圃普浦谱曝瀑期欺栖戚妻七凄漆柒沏其棋奇歧畦崎脐齐旗祈祁骑起岂乞企启契砌器气迄弃汽泣讫掐"], ["c740","茾茿荁荂荄荅荈荊",4,"荓荕",4,"荝荢荰",6,"荹荺荾",6,"莇莈莊莋莌莍莏莐莑莔莕莖莗莙莚莝莟莡",6,"莬莭莮"], ["c780","莯莵莻莾莿菂菃菄菆菈菉菋菍菎菐菑菒菓菕菗菙菚菛菞菢菣菤菦菧菨菫菬菭恰洽牵扦钎铅千迁签仟谦乾黔钱钳前潜遣浅谴堑嵌欠歉枪呛腔羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘峭俏窍切茄且怯窃钦侵亲秦琴勤芹擒禽寝沁青轻氢倾卿清擎晴氰情顷请庆琼穷秋丘邱球求囚酋泅趋区蛆曲躯屈驱渠"], ["c840","菮華菳",4,"菺菻菼菾菿萀萂萅萇萈萉萊萐萒",5,"萙萚萛萞",5,"萩",7,"萲",5,"萹萺萻萾",7,"葇葈葉"], ["c880","葊",6,"葒",4,"葘葝葞葟葠葢葤",4,"葪葮葯葰葲葴葷葹葻葼取娶龋趣去圈颧权醛泉全痊拳犬券劝缺炔瘸却鹊榷确雀裙群然燃冉染瓤壤攘嚷让饶扰绕惹热壬仁人忍韧任认刃妊纫扔仍日戎茸蓉荣融熔溶容绒冗揉柔肉茹蠕儒孺如辱乳汝入褥软阮蕊瑞锐闰润若弱撒洒萨腮鳃塞赛三叁"], ["c940","葽",4,"蒃蒄蒅蒆蒊蒍蒏",7,"蒘蒚蒛蒝蒞蒟蒠蒢",12,"蒰蒱蒳蒵蒶蒷蒻蒼蒾蓀蓂蓃蓅蓆蓇蓈蓋蓌蓎蓏蓒蓔蓕蓗"], ["c980","蓘",4,"蓞蓡蓢蓤蓧",4,"蓭蓮蓯蓱",10,"蓽蓾蔀蔁蔂伞散桑嗓丧搔骚扫嫂瑟色涩森僧莎砂杀刹沙纱傻啥煞筛晒珊苫杉山删煽衫闪陕擅赡膳善汕扇缮墒伤商赏晌上尚裳梢捎稍烧芍勺韶少哨邵绍奢赊蛇舌舍赦摄射慑涉社设砷申呻伸身深娠绅神沈审婶甚肾慎渗声生甥牲升绳"], ["ca40","蔃",8,"蔍蔎蔏蔐蔒蔔蔕蔖蔘蔙蔛蔜蔝蔞蔠蔢",8,"蔭",9,"蔾",4,"蕄蕅蕆蕇蕋",10], ["ca80","蕗蕘蕚蕛蕜蕝蕟",4,"蕥蕦蕧蕩",8,"蕳蕵蕶蕷蕸蕼蕽蕿薀薁省盛剩胜圣师失狮施湿诗尸虱十石拾时什食蚀实识史矢使屎驶始式示士世柿事拭誓逝势是嗜噬适仕侍释饰氏市恃室视试收手首守寿授售受瘦兽蔬枢梳殊抒输叔舒淑疏书赎孰熟薯暑曙署蜀黍鼠属术述树束戍竖墅庶数漱"], ["cb40","薂薃薆薈",6,"薐",10,"薝",6,"薥薦薧薩薫薬薭薱",5,"薸薺",6,"藂",6,"藊",4,"藑藒"], ["cb80","藔藖",5,"藝",6,"藥藦藧藨藪",14,"恕刷耍摔衰甩帅栓拴霜双爽谁水睡税吮瞬顺舜说硕朔烁斯撕嘶思私司丝死肆寺嗣四伺似饲巳松耸怂颂送宋讼诵搜艘擞嗽苏酥俗素速粟僳塑溯宿诉肃酸蒜算虽隋随绥髓碎岁穗遂隧祟孙损笋蓑梭唆缩琐索锁所塌他它她塔"], ["cc40","藹藺藼藽藾蘀",4,"蘆",10,"蘒蘓蘔蘕蘗",15,"蘨蘪",13,"蘹蘺蘻蘽蘾蘿虀"], ["cc80","虁",11,"虒虓處",4,"虛虜虝號虠虡虣",7,"獭挞蹋踏胎苔抬台泰酞太态汰坍摊贪瘫滩坛檀痰潭谭谈坦毯袒碳探叹炭汤塘搪堂棠膛唐糖倘躺淌趟烫掏涛滔绦萄桃逃淘陶讨套特藤腾疼誊梯剔踢锑提题蹄啼体替嚏惕涕剃屉天添填田甜恬舔腆挑条迢眺跳贴铁帖厅听烃"], ["cd40","虭虯虰虲",6,"蚃",6,"蚎",4,"蚔蚖",5,"蚞",4,"蚥蚦蚫蚭蚮蚲蚳蚷蚸蚹蚻",4,"蛁蛂蛃蛅蛈蛌蛍蛒蛓蛕蛖蛗蛚蛜"], ["cd80","蛝蛠蛡蛢蛣蛥蛦蛧蛨蛪蛫蛬蛯蛵蛶蛷蛺蛻蛼蛽蛿蜁蜄蜅蜆蜋蜌蜎蜏蜐蜑蜔蜖汀廷停亭庭挺艇通桐酮瞳同铜彤童桶捅筒统痛偷投头透凸秃突图徒途涂屠土吐兔湍团推颓腿蜕褪退吞屯臀拖托脱鸵陀驮驼椭妥拓唾挖哇蛙洼娃瓦袜歪外豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄威"], ["ce40","蜙蜛蜝蜟蜠蜤蜦蜧蜨蜪蜫蜬蜭蜯蜰蜲蜳蜵蜶蜸蜹蜺蜼蜽蝀",6,"蝊蝋蝍蝏蝐蝑蝒蝔蝕蝖蝘蝚",5,"蝡蝢蝦",7,"蝯蝱蝲蝳蝵"], ["ce80","蝷蝸蝹蝺蝿螀螁螄螆螇螉螊螌螎",4,"螔螕螖螘",6,"螠",4,"巍微危韦违桅围唯惟为潍维苇萎委伟伪尾纬未蔚味畏胃喂魏位渭谓尉慰卫瘟温蚊文闻纹吻稳紊问嗡翁瓮挝蜗涡窝我斡卧握沃巫呜钨乌污诬屋无芜梧吾吴毋武五捂午舞伍侮坞戊雾晤物勿务悟误昔熙析西硒矽晰嘻吸锡牺"], ["cf40","螥螦螧螩螪螮螰螱螲螴螶螷螸螹螻螼螾螿蟁",4,"蟇蟈蟉蟌",4,"蟔",6,"蟜蟝蟞蟟蟡蟢蟣蟤蟦蟧蟨蟩蟫蟬蟭蟯",9], ["cf80","蟺蟻蟼蟽蟿蠀蠁蠂蠄",5,"蠋",7,"蠔蠗蠘蠙蠚蠜",4,"蠣稀息希悉膝夕惜熄烯溪汐犀檄袭席习媳喜铣洗系隙戏细瞎虾匣霞辖暇峡侠狭下厦夏吓掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷限线相厢镶香箱襄湘乡翔祥详想响享项巷橡像向象萧硝霄削哮嚣销消宵淆晓"], ["d040","蠤",13,"蠳",5,"蠺蠻蠽蠾蠿衁衂衃衆",5,"衎",5,"衕衖衘衚",6,"衦衧衪衭衯衱衳衴衵衶衸衹衺"], ["d080","衻衼袀袃袆袇袉袊袌袎袏袐袑袓袔袕袗",4,"袝",4,"袣袥",5,"小孝校肖啸笑效楔些歇蝎鞋协挟携邪斜胁谐写械卸蟹懈泄泻谢屑薪芯锌欣辛新忻心信衅星腥猩惺兴刑型形邢行醒幸杏性姓兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须徐许蓄酗叙旭序畜恤絮婿绪续轩喧宣悬旋玄"], ["d140","袬袮袯袰袲",4,"袸袹袺袻袽袾袿裀裃裄裇裈裊裋裌裍裏裐裑裓裖裗裚",4,"裠裡裦裧裩",6,"裲裵裶裷裺裻製裿褀褁褃",5], ["d180","褉褋",4,"褑褔",4,"褜",4,"褢褣褤褦褧褨褩褬褭褮褯褱褲褳褵褷选癣眩绚靴薛学穴雪血勋熏循旬询寻驯巡殉汛训讯逊迅压押鸦鸭呀丫芽牙蚜崖衙涯雅哑亚讶焉咽阉烟淹盐严研蜒岩延言颜阎炎沿奄掩眼衍演艳堰燕厌砚雁唁彦焰宴谚验殃央鸯秧杨扬佯疡羊洋阳氧仰痒养样漾邀腰妖瑶"], ["d240","褸",8,"襂襃襅",24,"襠",5,"襧",19,"襼"], ["d280","襽襾覀覂覄覅覇",26,"摇尧遥窑谣姚咬舀药要耀椰噎耶爷野冶也页掖业叶曳腋夜液一壹医揖铱依伊衣颐夷遗移仪胰疑沂宜姨彝椅蚁倚已乙矣以艺抑易邑屹亿役臆逸肄疫亦裔意毅忆义益溢诣议谊译异翼翌绎茵荫因殷音阴姻吟银淫寅饮尹引隐"], ["d340","覢",30,"觃觍觓觔觕觗觘觙觛觝觟觠觡觢觤觧觨觩觪觬觭觮觰觱觲觴",6], ["d380","觻",4,"訁",5,"計",21,"印英樱婴鹰应缨莹萤营荧蝇迎赢盈影颖硬映哟拥佣臃痈庸雍踊蛹咏泳涌永恿勇用幽优悠忧尤由邮铀犹油游酉有友右佑釉诱又幼迂淤于盂榆虞愚舆余俞逾鱼愉渝渔隅予娱雨与屿禹宇语羽玉域芋郁吁遇喻峪御愈欲狱育誉"], ["d440","訞",31,"訿",8,"詉",21], ["d480","詟",25,"詺",6,"浴寓裕预豫驭鸳渊冤元垣袁原援辕园员圆猿源缘远苑愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨允运蕴酝晕韵孕匝砸杂栽哉灾宰载再在咱攒暂赞赃脏葬遭糟凿藻枣早澡蚤躁噪造皂灶燥责择则泽贼怎增憎曾赠扎喳渣札轧"], ["d540","誁",7,"誋",7,"誔",46], ["d580","諃",32,"铡闸眨栅榨咋乍炸诈摘斋宅窄债寨瞻毡詹粘沾盏斩辗崭展蘸栈占战站湛绽樟章彰漳张掌涨杖丈帐账仗胀瘴障招昭找沼赵照罩兆肇召遮折哲蛰辙者锗蔗这浙珍斟真甄砧臻贞针侦枕疹诊震振镇阵蒸挣睁征狰争怔整拯正政"], ["d640","諤",34,"謈",27], ["d680","謤謥謧",30,"帧症郑证芝枝支吱蜘知肢脂汁之织职直植殖执值侄址指止趾只旨纸志挚掷至致置帜峙制智秩稚质炙痔滞治窒中盅忠钟衷终种肿重仲众舟周州洲诌粥轴肘帚咒皱宙昼骤珠株蛛朱猪诸诛逐竹烛煮拄瞩嘱主著柱助蛀贮铸筑"], ["d740","譆",31,"譧",4,"譭",25], ["d780","讇",24,"讬讱讻诇诐诪谉谞住注祝驻抓爪拽专砖转撰赚篆桩庄装妆撞壮状椎锥追赘坠缀谆准捉拙卓桌琢茁酌啄着灼浊兹咨资姿滋淄孜紫仔籽滓子自渍字鬃棕踪宗综总纵邹走奏揍租足卒族祖诅阻组钻纂嘴醉最罪尊遵昨左佐柞做作坐座"], ["d840","谸",8,"豂豃豄豅豈豊豋豍",7,"豖豗豘豙豛",5,"豣",6,"豬",6,"豴豵豶豷豻",6,"貃貄貆貇"], ["d880","貈貋貍",6,"貕貖貗貙",20,"亍丌兀丐廿卅丕亘丞鬲孬噩丨禺丿匕乇夭爻卮氐囟胤馗毓睾鼗丶亟鼐乜乩亓芈孛啬嘏仄厍厝厣厥厮靥赝匚叵匦匮匾赜卦卣刂刈刎刭刳刿剀剌剞剡剜蒯剽劂劁劐劓冂罔亻仃仉仂仨仡仫仞伛仳伢佤仵伥伧伉伫佞佧攸佚佝"], ["d940","貮",62], ["d980","賭",32,"佟佗伲伽佶佴侑侉侃侏佾佻侪佼侬侔俦俨俪俅俚俣俜俑俟俸倩偌俳倬倏倮倭俾倜倌倥倨偾偃偕偈偎偬偻傥傧傩傺僖儆僭僬僦僮儇儋仝氽佘佥俎龠汆籴兮巽黉馘冁夔勹匍訇匐凫夙兕亠兖亳衮袤亵脔裒禀嬴蠃羸冫冱冽冼"], ["da40","贎",14,"贠赑赒赗赟赥赨赩赪赬赮赯赱赲赸",8,"趂趃趆趇趈趉趌",4,"趒趓趕",9,"趠趡"], ["da80","趢趤",12,"趲趶趷趹趻趽跀跁跂跅跇跈跉跊跍跐跒跓跔凇冖冢冥讠讦讧讪讴讵讷诂诃诋诏诎诒诓诔诖诘诙诜诟诠诤诨诩诮诰诳诶诹诼诿谀谂谄谇谌谏谑谒谔谕谖谙谛谘谝谟谠谡谥谧谪谫谮谯谲谳谵谶卩卺阝阢阡阱阪阽阼陂陉陔陟陧陬陲陴隈隍隗隰邗邛邝邙邬邡邴邳邶邺"], ["db40","跕跘跙跜跠跡跢跥跦跧跩跭跮跰跱跲跴跶跼跾",6,"踆踇踈踋踍踎踐踑踒踓踕",7,"踠踡踤",4,"踫踭踰踲踳踴踶踷踸踻踼踾"], ["db80","踿蹃蹅蹆蹌",4,"蹓",5,"蹚",11,"蹧蹨蹪蹫蹮蹱邸邰郏郅邾郐郄郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆刍奂劢劬劭劾哿勐勖勰叟燮矍廴凵凼鬯厶弁畚巯坌垩垡塾墼壅壑圩圬圪圳圹圮圯坜圻坂坩垅坫垆坼坻坨坭坶坳垭垤垌垲埏垧垴垓垠埕埘埚埙埒垸埴埯埸埤埝"], ["dc40","蹳蹵蹷",4,"蹽蹾躀躂躃躄躆躈",6,"躑躒躓躕",6,"躝躟",11,"躭躮躰躱躳",6,"躻",7], ["dc80","軃",10,"軏",21,"堋堍埽埭堀堞堙塄堠塥塬墁墉墚墀馨鼙懿艹艽艿芏芊芨芄芎芑芗芙芫芸芾芰苈苊苣芘芷芮苋苌苁芩芴芡芪芟苄苎芤苡茉苷苤茏茇苜苴苒苘茌苻苓茑茚茆茔茕苠苕茜荑荛荜茈莒茼茴茱莛荞茯荏荇荃荟荀茗荠茭茺茳荦荥"], ["dd40","軥",62], ["dd80","輤",32,"荨茛荩荬荪荭荮莰荸莳莴莠莪莓莜莅荼莶莩荽莸荻莘莞莨莺莼菁萁菥菘堇萘萋菝菽菖萜萸萑萆菔菟萏萃菸菹菪菅菀萦菰菡葜葑葚葙葳蒇蒈葺蒉葸萼葆葩葶蒌蒎萱葭蓁蓍蓐蓦蒽蓓蓊蒿蒺蓠蒡蒹蒴蒗蓥蓣蔌甍蔸蓰蔹蔟蔺"], ["de40","轅",32,"轪辀辌辒辝辠辡辢辤辥辦辧辪辬辭辮辯農辳辴辵辷辸辺辻込辿迀迃迆"], ["de80","迉",4,"迏迒迖迗迚迠迡迣迧迬迯迱迲迴迵迶迺迻迼迾迿逇逈逌逎逓逕逘蕖蔻蓿蓼蕙蕈蕨蕤蕞蕺瞢蕃蕲蕻薤薨薇薏蕹薮薜薅薹薷薰藓藁藜藿蘧蘅蘩蘖蘼廾弈夼奁耷奕奚奘匏尢尥尬尴扌扪抟抻拊拚拗拮挢拶挹捋捃掭揶捱捺掎掴捭掬掊捩掮掼揲揸揠揿揄揞揎摒揆掾摅摁搋搛搠搌搦搡摞撄摭撖"], ["df40","這逜連逤逥逧",5,"逰",4,"逷逹逺逽逿遀遃遅遆遈",4,"過達違遖遙遚遜",5,"遤遦遧適遪遫遬遯",4,"遶",6,"遾邁"], ["df80","還邅邆邇邉邊邌",4,"邒邔邖邘邚邜邞邟邠邤邥邧邨邩邫邭邲邷邼邽邿郀摺撷撸撙撺擀擐擗擤擢攉攥攮弋忒甙弑卟叱叽叩叨叻吒吖吆呋呒呓呔呖呃吡呗呙吣吲咂咔呷呱呤咚咛咄呶呦咝哐咭哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤哝哏哞唛哧唠哽唔哳唢唣唏唑唧唪啧喏喵啉啭啁啕唿啐唼"], ["e040","郂郃郆郈郉郋郌郍郒郔郕郖郘郙郚郞郟郠郣郤郥郩郪郬郮郰郱郲郳郵郶郷郹郺郻郼郿鄀鄁鄃鄅",19,"鄚鄛鄜"], ["e080","鄝鄟鄠鄡鄤",10,"鄰鄲",6,"鄺",8,"酄唷啖啵啶啷唳唰啜喋嗒喃喱喹喈喁喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦嗝嗄嗯嗥嗲嗳嗌嗍嗨嗵嗤辔嘞嘈嘌嘁嘤嘣嗾嘀嘧嘭噘嘹噗嘬噍噢噙噜噌噔嚆噤噱噫噻噼嚅嚓嚯囔囗囝囡囵囫囹囿圄圊圉圜帏帙帔帑帱帻帼"], ["e140","酅酇酈酑酓酔酕酖酘酙酛酜酟酠酦酧酨酫酭酳酺酻酼醀",4,"醆醈醊醎醏醓",6,"醜",5,"醤",5,"醫醬醰醱醲醳醶醷醸醹醻"], ["e180","醼",10,"釈釋釐釒",9,"針",8,"帷幄幔幛幞幡岌屺岍岐岖岈岘岙岑岚岜岵岢岽岬岫岱岣峁岷峄峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯嵝嵫嵋嵊嵩嵴嶂嶙嶝豳嶷巅彳彷徂徇徉後徕徙徜徨徭徵徼衢彡犭犰犴犷犸狃狁狎狍狒狨狯狩狲狴狷猁狳猃狺"], ["e240","釦",62], ["e280","鈥",32,"狻猗猓猡猊猞猝猕猢猹猥猬猸猱獐獍獗獠獬獯獾舛夥飧夤夂饣饧",5,"饴饷饽馀馄馇馊馍馐馑馓馔馕庀庑庋庖庥庠庹庵庾庳赓廒廑廛廨廪膺忄忉忖忏怃忮怄忡忤忾怅怆忪忭忸怙怵怦怛怏怍怩怫怊怿怡恸恹恻恺恂"], ["e340","鉆",45,"鉵",16], ["e380","銆",7,"銏",24,"恪恽悖悚悭悝悃悒悌悛惬悻悱惝惘惆惚悴愠愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵忝隳闩闫闱闳闵闶闼闾阃阄阆阈阊阋阌阍阏阒阕阖阗阙阚丬爿戕氵汔汜汊沣沅沐沔沌汨汩汴汶沆沩泐泔沭泷泸泱泗沲泠泖泺泫泮沱泓泯泾"], ["e440","銨",5,"銯",24,"鋉",31], ["e480","鋩",32,"洹洧洌浃浈洇洄洙洎洫浍洮洵洚浏浒浔洳涑浯涞涠浞涓涔浜浠浼浣渚淇淅淞渎涿淠渑淦淝淙渖涫渌涮渫湮湎湫溲湟溆湓湔渲渥湄滟溱溘滠漭滢溥溧溽溻溷滗溴滏溏滂溟潢潆潇漤漕滹漯漶潋潴漪漉漩澉澍澌潸潲潼潺濑"], ["e540","錊",51,"錿",10], ["e580","鍊",31,"鍫濉澧澹澶濂濡濮濞濠濯瀚瀣瀛瀹瀵灏灞宀宄宕宓宥宸甯骞搴寤寮褰寰蹇謇辶迓迕迥迮迤迩迦迳迨逅逄逋逦逑逍逖逡逵逶逭逯遄遑遒遐遨遘遢遛暹遴遽邂邈邃邋彐彗彖彘尻咫屐屙孱屣屦羼弪弩弭艴弼鬻屮妁妃妍妩妪妣"], ["e640","鍬",34,"鎐",27], ["e680","鎬",29,"鏋鏌鏍妗姊妫妞妤姒妲妯姗妾娅娆姝娈姣姘姹娌娉娲娴娑娣娓婀婧婊婕娼婢婵胬媪媛婷婺媾嫫媲嫒嫔媸嫠嫣嫱嫖嫦嫘嫜嬉嬗嬖嬲嬷孀尕尜孚孥孳孑孓孢驵驷驸驺驿驽骀骁骅骈骊骐骒骓骖骘骛骜骝骟骠骢骣骥骧纟纡纣纥纨纩"], ["e740","鏎",7,"鏗",54], ["e780","鐎",32,"纭纰纾绀绁绂绉绋绌绐绔绗绛绠绡绨绫绮绯绱绲缍绶绺绻绾缁缂缃缇缈缋缌缏缑缒缗缙缜缛缟缡",6,"缪缫缬缭缯",4,"缵幺畿巛甾邕玎玑玮玢玟珏珂珑玷玳珀珉珈珥珙顼琊珩珧珞玺珲琏琪瑛琦琥琨琰琮琬"], ["e840","鐯",14,"鐿",43,"鑬鑭鑮鑯"], ["e880","鑰",20,"钑钖钘铇铏铓铔铚铦铻锜锠琛琚瑁瑜瑗瑕瑙瑷瑭瑾璜璎璀璁璇璋璞璨璩璐璧瓒璺韪韫韬杌杓杞杈杩枥枇杪杳枘枧杵枨枞枭枋杷杼柰栉柘栊柩枰栌柙枵柚枳柝栀柃枸柢栎柁柽栲栳桠桡桎桢桄桤梃栝桕桦桁桧桀栾桊桉栩梵梏桴桷梓桫棂楮棼椟椠棹"], ["e940","锧锳锽镃镈镋镕镚镠镮镴镵長",7,"門",42], ["e980","閫",32,"椤棰椋椁楗棣椐楱椹楠楂楝榄楫榀榘楸椴槌榇榈槎榉楦楣楹榛榧榻榫榭槔榱槁槊槟榕槠榍槿樯槭樗樘橥槲橄樾檠橐橛樵檎橹樽樨橘橼檑檐檩檗檫猷獒殁殂殇殄殒殓殍殚殛殡殪轫轭轱轲轳轵轶轸轷轹轺轼轾辁辂辄辇辋"], ["ea40","闌",27,"闬闿阇阓阘阛阞阠阣",6,"阫阬阭阯阰阷阸阹阺阾陁陃陊陎陏陑陒陓陖陗"], ["ea80","陘陙陚陜陝陞陠陣陥陦陫陭",4,"陳陸",12,"隇隉隊辍辎辏辘辚軎戋戗戛戟戢戡戥戤戬臧瓯瓴瓿甏甑甓攴旮旯旰昊昙杲昃昕昀炅曷昝昴昱昶昵耆晟晔晁晏晖晡晗晷暄暌暧暝暾曛曜曦曩贲贳贶贻贽赀赅赆赈赉赇赍赕赙觇觊觋觌觎觏觐觑牮犟牝牦牯牾牿犄犋犍犏犒挈挲掰"], ["eb40","隌階隑隒隓隕隖隚際隝",9,"隨",7,"隱隲隴隵隷隸隺隻隿雂雃雈雊雋雐雑雓雔雖",9,"雡",6,"雫"], ["eb80","雬雭雮雰雱雲雴雵雸雺電雼雽雿霂霃霅霊霋霌霐霑霒霔霕霗",4,"霝霟霠搿擘耄毪毳毽毵毹氅氇氆氍氕氘氙氚氡氩氤氪氲攵敕敫牍牒牖爰虢刖肟肜肓肼朊肽肱肫肭肴肷胧胨胩胪胛胂胄胙胍胗朐胝胫胱胴胭脍脎胲胼朕脒豚脶脞脬脘脲腈腌腓腴腙腚腱腠腩腼腽腭腧塍媵膈膂膑滕膣膪臌朦臊膻"], ["ec40","霡",8,"霫霬霮霯霱霳",4,"霺霻霼霽霿",18,"靔靕靗靘靚靜靝靟靣靤靦靧靨靪",7], ["ec80","靲靵靷",4,"靽",7,"鞆",4,"鞌鞎鞏鞐鞓鞕鞖鞗鞙",4,"臁膦欤欷欹歃歆歙飑飒飓飕飙飚殳彀毂觳斐齑斓於旆旄旃旌旎旒旖炀炜炖炝炻烀炷炫炱烨烊焐焓焖焯焱煳煜煨煅煲煊煸煺熘熳熵熨熠燠燔燧燹爝爨灬焘煦熹戾戽扃扈扉礻祀祆祉祛祜祓祚祢祗祠祯祧祺禅禊禚禧禳忑忐"], ["ed40","鞞鞟鞡鞢鞤",6,"鞬鞮鞰鞱鞳鞵",46], ["ed80","韤韥韨韮",4,"韴韷",23,"怼恝恚恧恁恙恣悫愆愍慝憩憝懋懑戆肀聿沓泶淼矶矸砀砉砗砘砑斫砭砜砝砹砺砻砟砼砥砬砣砩硎硭硖硗砦硐硇硌硪碛碓碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄眍盹眇眈眚眢眙眭眦眵眸睐睑睇睃睚睨"], ["ee40","頏",62], ["ee80","顎",32,"睢睥睿瞍睽瞀瞌瞑瞟瞠瞰瞵瞽町畀畎畋畈畛畲畹疃罘罡罟詈罨罴罱罹羁罾盍盥蠲钅钆钇钋钊钌钍钏钐钔钗钕钚钛钜钣钤钫钪钭钬钯钰钲钴钶",4,"钼钽钿铄铈",6,"铐铑铒铕铖铗铙铘铛铞铟铠铢铤铥铧铨铪"], ["ef40","顯",5,"颋颎颒颕颙颣風",37,"飏飐飔飖飗飛飜飝飠",4], ["ef80","飥飦飩",30,"铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊锍锎锏锒",4,"锘锛锝锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎镏镒镓镔镖镗镘镙镛镞镟镝镡镢镤",8,"镯镱镲镳锺矧矬雉秕秭秣秫稆嵇稃稂稞稔"], ["f040","餈",4,"餎餏餑",28,"餯",26], ["f080","饊",9,"饖",12,"饤饦饳饸饹饻饾馂馃馉稹稷穑黏馥穰皈皎皓皙皤瓞瓠甬鸠鸢鸨",4,"鸲鸱鸶鸸鸷鸹鸺鸾鹁鹂鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦",6,"鹱鹭鹳疒疔疖疠疝疬疣疳疴疸痄疱疰痃痂痖痍痣痨痦痤痫痧瘃痱痼痿瘐瘀瘅瘌瘗瘊瘥瘘瘕瘙"], ["f140","馌馎馚",10,"馦馧馩",47], ["f180","駙",32,"瘛瘼瘢瘠癀瘭瘰瘿瘵癃瘾瘳癍癞癔癜癖癫癯翊竦穸穹窀窆窈窕窦窠窬窨窭窳衤衩衲衽衿袂袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶襁襦襻疋胥皲皴矜耒耔耖耜耠耢耥耦耧耩耨耱耋耵聃聆聍聒聩聱覃顸颀颃"], ["f240","駺",62], ["f280","騹",32,"颉颌颍颏颔颚颛颞颟颡颢颥颦虍虔虬虮虿虺虼虻蚨蚍蚋蚬蚝蚧蚣蚪蚓蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉蛏蚴蛩蛱蛲蛭蛳蛐蜓蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊蜍蜉蜣蜻蜞蜥蜮蜚蜾蝈蜴蜱蜩蜷蜿螂蜢蝽蝾蝻蝠蝰蝌蝮螋蝓蝣蝼蝤蝙蝥螓螯螨蟒"], ["f340","驚",17,"驲骃骉骍骎骔骕骙骦骩",6,"骲骳骴骵骹骻骽骾骿髃髄髆",4,"髍髎髏髐髒體髕髖髗髙髚髛髜"], ["f380","髝髞髠髢髣髤髥髧髨髩髪髬髮髰",8,"髺髼",6,"鬄鬅鬆蟆螈螅螭螗螃螫蟥螬螵螳蟋蟓螽蟑蟀蟊蟛蟪蟠蟮蠖蠓蟾蠊蠛蠡蠹蠼缶罂罄罅舐竺竽笈笃笄笕笊笫笏筇笸笪笙笮笱笠笥笤笳笾笞筘筚筅筵筌筝筠筮筻筢筲筱箐箦箧箸箬箝箨箅箪箜箢箫箴篑篁篌篝篚篥篦篪簌篾篼簏簖簋"], ["f440","鬇鬉",5,"鬐鬑鬒鬔",10,"鬠鬡鬢鬤",10,"鬰鬱鬳",7,"鬽鬾鬿魀魆魊魋魌魎魐魒魓魕",5], ["f480","魛",32,"簟簪簦簸籁籀臾舁舂舄臬衄舡舢舣舭舯舨舫舸舻舳舴舾艄艉艋艏艚艟艨衾袅袈裘裟襞羝羟羧羯羰羲籼敉粑粝粜粞粢粲粼粽糁糇糌糍糈糅糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧赭豇豉酊酐酎酏酤"], ["f540","魼",62], ["f580","鮻",32,"酢酡酰酩酯酽酾酲酴酹醌醅醐醍醑醢醣醪醭醮醯醵醴醺豕鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎跏跛跆跬跷跸跣跹跻跤踉跽踔踝踟踬踮踣踯踺蹀踹踵踽踱蹉蹁蹂蹑蹒蹊蹰蹶蹼蹯蹴躅躏躔躐躜躞豸貂貊貅貘貔斛觖觞觚觜"], ["f640","鯜",62], ["f680","鰛",32,"觥觫觯訾謦靓雩雳雯霆霁霈霏霎霪霭霰霾龀龃龅",5,"龌黾鼋鼍隹隼隽雎雒瞿雠銎銮鋈錾鍪鏊鎏鐾鑫鱿鲂鲅鲆鲇鲈稣鲋鲎鲐鲑鲒鲔鲕鲚鲛鲞",5,"鲥",4,"鲫鲭鲮鲰",7,"鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋"], ["f740","鰼",62], ["f780","鱻鱽鱾鲀鲃鲄鲉鲊鲌鲏鲓鲖鲗鲘鲙鲝鲪鲬鲯鲹鲾",4,"鳈鳉鳑鳒鳚鳛鳠鳡鳌",4,"鳓鳔鳕鳗鳘鳙鳜鳝鳟鳢靼鞅鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼髁髀髅髂髋髌髑魅魃魇魉魈魍魑飨餍餮饕饔髟髡髦髯髫髻髭髹鬈鬏鬓鬟鬣麽麾縻麂麇麈麋麒鏖麝麟黛黜黝黠黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄"], ["f840","鳣",62], ["f880","鴢",32], ["f940","鵃",62], ["f980","鶂",32], ["fa40","鶣",62], ["fa80","鷢",32], ["fb40","鸃",27,"鸤鸧鸮鸰鸴鸻鸼鹀鹍鹐鹒鹓鹔鹖鹙鹝鹟鹠鹡鹢鹥鹮鹯鹲鹴",9,"麀"], ["fb80","麁麃麄麅麆麉麊麌",5,"麔",8,"麞麠",5,"麧麨麩麪"], ["fc40","麫",8,"麵麶麷麹麺麼麿",4,"黅黆黇黈黊黋黌黐黒黓黕黖黗黙黚點黡黣黤黦黨黫黬黭黮黰",8,"黺黽黿",6], ["fc80","鼆",4,"鼌鼏鼑鼒鼔鼕鼖鼘鼚",5,"鼡鼣",8,"鼭鼮鼰鼱"], ["fd40","鼲",4,"鼸鼺鼼鼿",4,"齅",10,"齒",38], ["fd80","齹",5,"龁龂龍",11,"龜龝龞龡",4,"郎凉秊裏隣"], ["fe40","兀嗀﨎﨏﨑﨓﨔礼﨟蘒﨡﨣﨤﨧﨨﨩"] ]

node_modules/iconv-lite/encodings/tables/cp949.json

[ ["0","\u0000",127], ["8141","갂갃갅갆갋",4,"갘갞갟갡갢갣갥",6,"갮갲갳갴"], ["8161","갵갶갷갺갻갽갾갿걁",9,"걌걎",5,"걕"], ["8181","걖걗걙걚걛걝",18,"걲걳걵걶걹걻",4,"겂겇겈겍겎겏겑겒겓겕",6,"겞겢",5,"겫겭겮겱",6,"겺겾겿곀곂곃곅곆곇곉곊곋곍",7,"곖곘",7,"곢곣곥곦곩곫곭곮곲곴곷",4,"곾곿괁괂괃괅괇",4,"괎괐괒괓"], ["8241","괔괕괖괗괙괚괛괝괞괟괡",7,"괪괫괮",5], ["8261","괶괷괹괺괻괽",6,"굆굈굊",5,"굑굒굓굕굖굗"], ["8281","굙",7,"굢굤",7,"굮굯굱굲굷굸굹굺굾궀궃",4,"궊궋궍궎궏궑",10,"궞",5,"궥",17,"궸",7,"귂귃귅귆귇귉",6,"귒귔",7,"귝귞귟귡귢귣귥",18], ["8341","귺귻귽귾긂",5,"긊긌긎",5,"긕",7], ["8361","긝",18,"긲긳긵긶긹긻긼"], ["8381","긽긾긿깂깄깇깈깉깋깏깑깒깓깕깗",4,"깞깢깣깤깦깧깪깫깭깮깯깱",6,"깺깾",5,"꺆",5,"꺍",46,"꺿껁껂껃껅",6,"껎껒",5,"껚껛껝",8], ["8441","껦껧껩껪껬껮",5,"껵껶껷껹껺껻껽",8], ["8461","꼆꼉꼊꼋꼌꼎꼏꼑",18], ["8481","꼤",7,"꼮꼯꼱꼳꼵",6,"꼾꽀꽄꽅꽆꽇꽊",5,"꽑",10,"꽞",5,"꽦",18,"꽺",5,"꾁꾂꾃꾅꾆꾇꾉",6,"꾒꾓꾔꾖",5,"꾝",26,"꾺꾻꾽꾾"], ["8541","꾿꿁",5,"꿊꿌꿏",4,"꿕",6,"꿝",4], ["8561","꿢",5,"꿪",5,"꿲꿳꿵꿶꿷꿹",6,"뀂뀃"], ["8581","뀅",6,"뀍뀎뀏뀑뀒뀓뀕",6,"뀞",9,"뀩",26,"끆끇끉끋끍끏끐끑끒끖끘끚끛끜끞",29,"끾끿낁낂낃낅",6,"낎낐낒",5,"낛낝낞낣낤"], ["8641","낥낦낧낪낰낲낶낷낹낺낻낽",6,"냆냊",5,"냒"], ["8661","냓냕냖냗냙",6,"냡냢냣냤냦",10], ["8681","냱",22,"넊넍넎넏넑넔넕넖넗넚넞",4,"넦넧넩넪넫넭",6,"넶넺",5,"녂녃녅녆녇녉",6,"녒녓녖녗녙녚녛녝녞녟녡",22,"녺녻녽녾녿놁놃",4,"놊놌놎놏놐놑놕놖놗놙놚놛놝"], ["8741","놞",9,"놩",15], ["8761","놹",18,"뇍뇎뇏뇑뇒뇓뇕"], ["8781","뇖",5,"뇞뇠",7,"뇪뇫뇭뇮뇯뇱",7,"뇺뇼뇾",5,"눆눇눉눊눍",6,"눖눘눚",5,"눡",18,"눵",6,"눽",26,"뉙뉚뉛뉝뉞뉟뉡",6,"뉪",4], ["8841","뉯",4,"뉶",5,"뉽",6,"늆늇늈늊",4], ["8861","늏늒늓늕늖늗늛",4,"늢늤늧늨늩늫늭늮늯늱늲늳늵늶늷"], ["8881","늸",15,"닊닋닍닎닏닑닓",4,"닚닜닞닟닠닡닣닧닩닪닰닱닲닶닼닽닾댂댃댅댆댇댉",6,"댒댖",5,"댝",54,"덗덙덚덝덠덡덢덣"], ["8941","덦덨덪덬덭덯덲덳덵덶덷덹",6,"뎂뎆",5,"뎍"], ["8961","뎎뎏뎑뎒뎓뎕",10,"뎢",5,"뎩뎪뎫뎭"], ["8981","뎮",21,"돆돇돉돊돍돏돑돒돓돖돘돚돜돞돟돡돢돣돥돦돧돩",18,"돽",18,"됑",6,"됙됚됛됝됞됟됡",6,"됪됬",7,"됵",15], ["8a41","둅",10,"둒둓둕둖둗둙",6,"둢둤둦"], ["8a61","둧",4,"둭",18,"뒁뒂"], ["8a81","뒃",4,"뒉",19,"뒞",5,"뒥뒦뒧뒩뒪뒫뒭",7,"뒶뒸뒺",5,"듁듂듃듅듆듇듉",6,"듑듒듓듔듖",5,"듞듟듡듢듥듧",4,"듮듰듲",5,"듹",26,"딖딗딙딚딝"], ["8b41","딞",5,"딦딫",4,"딲딳딵딶딷딹",6,"땂땆"], ["8b61","땇땈땉땊땎땏땑땒땓땕",6,"땞땢",8], ["8b81","땫",52,"떢떣떥떦떧떩떬떭떮떯떲떶",4,"떾떿뗁뗂뗃뗅",6,"뗎뗒",5,"뗙",18,"뗭",18], ["8c41","똀",15,"똒똓똕똖똗똙",4], ["8c61","똞",6,"똦",5,"똭",6,"똵",5], ["8c81","똻",12,"뙉",26,"뙥뙦뙧뙩",50,"뚞뚟뚡뚢뚣뚥",5,"뚭뚮뚯뚰뚲",16], ["8d41","뛃",16,"뛕",8], ["8d61","뛞",17,"뛱뛲뛳뛵뛶뛷뛹뛺"], ["8d81","뛻",4,"뜂뜃뜄뜆",33,"뜪뜫뜭뜮뜱",6,"뜺뜼",7,"띅띆띇띉띊띋띍",6,"띖",9,"띡띢띣띥띦띧띩",6,"띲띴띶",5,"띾띿랁랂랃랅",6,"랎랓랔랕랚랛랝랞"], ["8e41","랟랡",6,"랪랮",5,"랶랷랹",8], ["8e61","럂",4,"럈럊",19], ["8e81","럞",13,"럮럯럱럲럳럵",6,"럾렂",4,"렊렋렍렎렏렑",6,"렚렜렞",5,"렦렧렩렪렫렭",6,"렶렺",5,"롁롂롃롅",11,"롒롔",7,"롞롟롡롢롣롥",6,"롮롰롲",5,"롹롺롻롽",7], ["8f41","뢅",7,"뢎",17], ["8f61","뢠",7,"뢩",6,"뢱뢲뢳뢵뢶뢷뢹",4], ["8f81","뢾뢿룂룄룆",5,"룍룎룏룑룒룓룕",7,"룞룠룢",5,"룪룫룭룮룯룱",6,"룺룼룾",5,"뤅",18,"뤙",6,"뤡",26,"뤾뤿륁륂륃륅",6,"륍륎륐륒",5], ["9041","륚륛륝륞륟륡",6,"륪륬륮",5,"륶륷륹륺륻륽"], ["9061","륾",5,"릆릈릋릌릏",15], ["9081","릟",12,"릮릯릱릲릳릵",6,"릾맀맂",5,"맊맋맍맓",4,"맚맜맟맠맢맦맧맩맪맫맭",6,"맶맻",4,"먂",5,"먉",11,"먖",33,"먺먻먽먾먿멁멃멄멅멆"], ["9141","멇멊멌멏멐멑멒멖멗멙멚멛멝",6,"멦멪",5], ["9161","멲멳멵멶멷멹",9,"몆몈몉몊몋몍",5], ["9181","몓",20,"몪몭몮몯몱몳",4,"몺몼몾",5,"뫅뫆뫇뫉",14,"뫚",33,"뫽뫾뫿묁묂묃묅",7,"묎묐묒",5,"묙묚묛묝묞묟묡",6], ["9241","묨묪묬",7,"묷묹묺묿",4,"뭆뭈뭊뭋뭌뭎뭑뭒"], ["9261","뭓뭕뭖뭗뭙",7,"뭢뭤",7,"뭭",4], ["9281","뭲",21,"뮉뮊뮋뮍뮎뮏뮑",18,"뮥뮦뮧뮩뮪뮫뮭",6,"뮵뮶뮸",7,"믁믂믃믅믆믇믉",6,"믑믒믔",35,"믺믻믽믾밁"], ["9341","밃",4,"밊밎밐밒밓밙밚밠밡밢밣밦밨밪밫밬밮밯밲밳밵"], ["9361","밶밷밹",6,"뱂뱆뱇뱈뱊뱋뱎뱏뱑",8], ["9381","뱚뱛뱜뱞",37,"벆벇벉벊벍벏",4,"벖벘벛",4,"벢벣벥벦벩",6,"벲벶",5,"벾벿볁볂볃볅",7,"볎볒볓볔볖볗볙볚볛볝",22,"볷볹볺볻볽"], ["9441","볾",5,"봆봈봊",5,"봑봒봓봕",8], ["9461","봞",5,"봥",6,"봭",12], ["9481","봺",5,"뵁",6,"뵊뵋뵍뵎뵏뵑",6,"뵚",9,"뵥뵦뵧뵩",22,"붂붃붅붆붋",4,"붒붔붖붗붘붛붝",6,"붥",10,"붱",6,"붹",24], ["9541","뷒뷓뷖뷗뷙뷚뷛뷝",11,"뷪",5,"뷱"], ["9561","뷲뷳뷵뷶뷷뷹",6,"븁븂븄븆",5,"븎븏븑븒븓"], ["9581","븕",6,"븞븠",35,"빆빇빉빊빋빍빏",4,"빖빘빜빝빞빟빢빣빥빦빧빩빫",4,"빲빶",4,"빾빿뺁뺂뺃뺅",6,"뺎뺒",5,"뺚",13,"뺩",14], ["9641","뺸",23,"뻒뻓"], ["9661","뻕뻖뻙",6,"뻡뻢뻦",5,"뻭",8], ["9681","뻶",10,"뼂",5,"뼊",13,"뼚뼞",33,"뽂뽃뽅뽆뽇뽉",6,"뽒뽓뽔뽖",44], ["9741","뾃",16,"뾕",8], ["9761","뾞",17,"뾱",7], ["9781","뾹",11,"뿆",5,"뿎뿏뿑뿒뿓뿕",6,"뿝뿞뿠뿢",89,"쀽쀾쀿"], ["9841","쁀",16,"쁒",5,"쁙쁚쁛"], ["9861","쁝쁞쁟쁡",6,"쁪",15], ["9881","쁺",21,"삒삓삕삖삗삙",6,"삢삤삦",5,"삮삱삲삷",4,"삾샂샃샄샆샇샊샋샍샎샏샑",6,"샚샞",5,"샦샧샩샪샫샭",6,"샶샸샺",5,"섁섂섃섅섆섇섉",6,"섑섒섓섔섖",5,"섡섢섥섨섩섪섫섮"], ["9941","섲섳섴섵섷섺섻섽섾섿셁",6,"셊셎",5,"셖셗"], ["9961","셙셚셛셝",6,"셦셪",5,"셱셲셳셵셶셷셹셺셻"], ["9981","셼",8,"솆",5,"솏솑솒솓솕솗",4,"솞솠솢솣솤솦솧솪솫솭솮솯솱",11,"솾",5,"쇅쇆쇇쇉쇊쇋쇍",6,"쇕쇖쇙",6,"쇡쇢쇣쇥쇦쇧쇩",6,"쇲쇴",7,"쇾쇿숁숂숃숅",6,"숎숐숒",5,"숚숛숝숞숡숢숣"], ["9a41","숤숥숦숧숪숬숮숰숳숵",16], ["9a61","쉆쉇쉉",6,"쉒쉓쉕쉖쉗쉙",6,"쉡쉢쉣쉤쉦"], ["9a81","쉧",4,"쉮쉯쉱쉲쉳쉵",6,"쉾슀슂",5,"슊",5,"슑",6,"슙슚슜슞",5,"슦슧슩슪슫슮",5,"슶슸슺",33,"싞싟싡싢싥",5,"싮싰싲싳싴싵싷싺싽싾싿쌁",6,"쌊쌋쌎쌏"], ["9b41","쌐쌑쌒쌖쌗쌙쌚쌛쌝",6,"쌦쌧쌪",8], ["9b61","쌳",17,"썆",7], ["9b81","썎",25,"썪썫썭썮썯썱썳",4,"썺썻썾",5,"쎅쎆쎇쎉쎊쎋쎍",50,"쏁",22,"쏚"], ["9c41","쏛쏝쏞쏡쏣",4,"쏪쏫쏬쏮",5,"쏶쏷쏹",5], ["9c61","쏿",8,"쐉",6,"쐑",9], ["9c81","쐛",8,"쐥",6,"쐭쐮쐯쐱쐲쐳쐵",6,"쐾",9,"쑉",26,"쑦쑧쑩쑪쑫쑭",6,"쑶쑷쑸쑺",5,"쒁",18,"쒕",6,"쒝",12], ["9d41","쒪",13,"쒹쒺쒻쒽",8], ["9d61","쓆",25], ["9d81","쓠",8,"쓪",5,"쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂",9,"씍씎씏씑씒씓씕",6,"씝",10,"씪씫씭씮씯씱",6,"씺씼씾",5,"앆앇앋앏앐앑앒앖앚앛앜앟앢앣앥앦앧앩",6,"앲앶",5,"앾앿얁얂얃얅얆얈얉얊얋얎얐얒얓얔"], ["9e41","얖얙얚얛얝얞얟얡",7,"얪",9,"얶"], ["9e61","얷얺얿",4,"엋엍엏엒엓엕엖엗엙",6,"엢엤엦엧"], ["9e81","엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋옍옎옏옑",6,"옚옝",6,"옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉",6,"왒왖",5,"왞왟왡",10,"왭왮왰왲",5,"왺왻왽왾왿욁",6,"욊욌욎",5,"욖욗욙욚욛욝",6,"욦"], ["9f41","욨욪",5,"욲욳욵욶욷욻",4,"웂웄웆",5,"웎"], ["9f61","웏웑웒웓웕",6,"웞웟웢",5,"웪웫웭웮웯웱웲"], ["9f81","웳",4,"웺웻웼웾",5,"윆윇윉윊윋윍",6,"윖윘윚",5,"윢윣윥윦윧윩",6,"윲윴윶윸윹윺윻윾윿읁읂읃읅",4,"읋읎읐읙읚읛읝읞읟읡",6,"읩읪읬",7,"읶읷읹읺읻읿잀잁잂잆잋잌잍잏잒잓잕잙잛",4,"잢잧",4,"잮잯잱잲잳잵잶잷"], ["a041","잸잹잺잻잾쟂",5,"쟊쟋쟍쟏쟑",6,"쟙쟚쟛쟜"], ["a061","쟞",5,"쟥쟦쟧쟩쟪쟫쟭",13], ["a081","쟻",4,"젂젃젅젆젇젉젋",4,"젒젔젗",4,"젞젟젡젢젣젥",6,"젮젰젲",5,"젹젺젻젽젾젿졁",6,"졊졋졎",5,"졕",26,"졲졳졵졶졷졹졻",4,"좂좄좈좉좊좎",5,"좕",7,"좞좠좢좣좤"], ["a141","좥좦좧좩",18,"좾좿죀죁"], ["a161","죂죃죅죆죇죉죊죋죍",6,"죖죘죚",5,"죢죣죥"], ["a181","죦",14,"죶",5,"죾죿줁줂줃줇",4,"줎 、。·‥…¨〃­―∥\∼‘’“”〔〕〈",9,"±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆□■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬"], ["a241","줐줒",5,"줙",18], ["a261","줭",6,"줵",18], ["a281","쥈",7,"쥒쥓쥕쥖쥗쥙",6,"쥢쥤",7,"쥭쥮쥯⇒⇔∀∃´~ˇ˘˝˚˙¸˛¡¿ː∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜№㏇™㏂㏘℡€®"], ["a341","쥱쥲쥳쥵",6,"쥽",10,"즊즋즍즎즏"], ["a361","즑",6,"즚즜즞",16], ["a381","즯",16,"짂짃짅짆짉짋",4,"짒짔짗짘짛!",58,"₩]",32," ̄"], ["a441","짞짟짡짣짥짦짨짩짪짫짮짲",5,"짺짻짽짾짿쨁쨂쨃쨄"], ["a461","쨅쨆쨇쨊쨎",5,"쨕쨖쨗쨙",12], ["a481","쨦쨧쨨쨪",28,"ㄱ",93], ["a541","쩇",4,"쩎쩏쩑쩒쩓쩕",6,"쩞쩢",5,"쩩쩪"], ["a561","쩫",17,"쩾",5,"쪅쪆"], ["a581","쪇",16,"쪙",14,"ⅰ",9], ["a5b0","Ⅰ",9], ["a5c1","Α",16,"Σ",6], ["a5e1","α",16,"σ",6], ["a641","쪨",19,"쪾쪿쫁쫂쫃쫅"], ["a661","쫆",5,"쫎쫐쫒쫔쫕쫖쫗쫚",5,"쫡",6], ["a681","쫨쫩쫪쫫쫭",6,"쫵",18,"쬉쬊─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂┒┑┚┙┖┕┎┍┞┟┡┢┦┧┩┪┭┮┱┲┵┶┹┺┽┾╀╁╃",7], ["a741","쬋",4,"쬑쬒쬓쬕쬖쬗쬙",6,"쬢",7], ["a761","쬪",22,"쭂쭃쭄"], ["a781","쭅쭆쭇쭊쭋쭍쭎쭏쭑",6,"쭚쭛쭜쭞",5,"쭥",7,"㎕㎖㎗ℓ㎘㏄㎣㎤㎥㎦㎙",9,"㏊㎍㎎㎏㏏㎈㎉㏈㎧㎨㎰",9,"㎀",4,"㎺",5,"㎐",4,"Ω㏀㏁㎊㎋㎌㏖㏅㎭㎮㎯㏛㎩㎪㎫㎬㏝㏐㏓㏃㏉㏜㏆"], ["a841","쭭",10,"쭺",14], ["a861","쮉",18,"쮝",6], ["a881","쮤",19,"쮹",11,"ÆÐªĦ"], ["a8a6","IJ"], ["a8a8","ĿŁØŒºÞŦŊ"], ["a8b1","㉠",27,"ⓐ",25,"①",14,"½⅓⅔¼¾⅛⅜⅝⅞"], ["a941","쯅",14,"쯕",10], ["a961","쯠쯡쯢쯣쯥쯦쯨쯪",18], ["a981","쯽",14,"찎찏찑찒찓찕",6,"찞찟찠찣찤æđðħıijĸŀłøœßþŧŋʼn㈀",27,"⒜",25,"⑴",14,"¹²³⁴ⁿ₁₂₃₄"], ["aa41","찥찦찪찫찭찯찱",6,"찺찿",4,"챆챇챉챊챋챍챎"], ["aa61","챏",4,"챖챚",5,"챡챢챣챥챧챩",6,"챱챲"], ["aa81","챳챴챶",29,"ぁ",82], ["ab41","첔첕첖첗첚첛첝첞첟첡",6,"첪첮",5,"첶첷첹"], ["ab61","첺첻첽",6,"쳆쳈쳊",5,"쳑쳒쳓쳕",5], ["ab81","쳛",8,"쳥",6,"쳭쳮쳯쳱",12,"ァ",85], ["ac41","쳾쳿촀촂",5,"촊촋촍촎촏촑",6,"촚촜촞촟촠"], ["ac61","촡촢촣촥촦촧촩촪촫촭",11,"촺",4], ["ac81","촿",28,"쵝쵞쵟А",5,"ЁЖ",25], ["acd1","а",5,"ёж",25], ["ad41","쵡쵢쵣쵥",6,"쵮쵰쵲",5,"쵹",7], ["ad61","춁",6,"춉",10,"춖춗춙춚춛춝춞춟"], ["ad81","춠춡춢춣춦춨춪",5,"춱",18,"췅"], ["ae41","췆",5,"췍췎췏췑",16], ["ae61","췢",5,"췩췪췫췭췮췯췱",6,"췺췼췾",4], ["ae81","츃츅츆츇츉츊츋츍",6,"츕츖츗츘츚",5,"츢츣츥츦츧츩츪츫"], ["af41","츬츭츮츯츲츴츶",19], ["af61","칊",13,"칚칛칝칞칢",5,"칪칬"], ["af81","칮",5,"칶칷칹칺칻칽",6,"캆캈캊",5,"캒캓캕캖캗캙"], ["b041","캚",5,"캢캦",5,"캮",12], ["b061","캻",5,"컂",19], ["b081","컖",13,"컦컧컩컪컭",6,"컶컺",5,"가각간갇갈갉갊감",7,"같",4,"갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆"], ["b141","켂켃켅켆켇켉",6,"켒켔켖",5,"켝켞켟켡켢켣"], ["b161","켥",6,"켮켲",5,"켹",11], ["b181","콅",14,"콖콗콙콚콛콝",6,"콦콨콪콫콬괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸"], ["b241","콭콮콯콲콳콵콶콷콹",6,"쾁쾂쾃쾄쾆",5,"쾍"], ["b261","쾎",18,"쾢",5,"쾩"], ["b281","쾪",5,"쾱",18,"쿅",6,"깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙"], ["b341","쿌",19,"쿢쿣쿥쿦쿧쿩"], ["b361","쿪",5,"쿲쿴쿶",5,"쿽쿾쿿퀁퀂퀃퀅",5], ["b381","퀋",5,"퀒",5,"퀙",19,"끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫",4,"낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝"], ["b441","퀮",5,"퀶퀷퀹퀺퀻퀽",6,"큆큈큊",5], ["b461","큑큒큓큕큖큗큙",6,"큡",10,"큮큯"], ["b481","큱큲큳큵",6,"큾큿킀킂",18,"뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫",4,"닳담답닷",4,"닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥"], ["b541","킕",14,"킦킧킩킪킫킭",5], ["b561","킳킶킸킺",5,"탂탃탅탆탇탊",5,"탒탖",4], ["b581","탛탞탟탡탢탣탥",6,"탮탲",5,"탹",11,"덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸"], ["b641","턅",7,"턎",17], ["b661","턠",15,"턲턳턵턶턷턹턻턼턽턾"], ["b681","턿텂텆",5,"텎텏텑텒텓텕",6,"텞텠텢",5,"텩텪텫텭땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗"], ["b741","텮",13,"텽",6,"톅톆톇톉톊"], ["b761","톋",20,"톢톣톥톦톧"], ["b781","톩",6,"톲톴톶톷톸톹톻톽톾톿퇁",14,"래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩"], ["b841","퇐",7,"퇙",17], ["b861","퇫",8,"퇵퇶퇷퇹",13], ["b881","툈툊",5,"툑",24,"륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많",4,"맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼"], ["b941","툪툫툮툯툱툲툳툵",6,"툾퉀퉂",5,"퉉퉊퉋퉌"], ["b961","퉍",14,"퉝",6,"퉥퉦퉧퉨"], ["b981","퉩",22,"튂튃튅튆튇튉튊튋튌묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바",4,"받",4,"밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗"], ["ba41","튍튎튏튒튓튔튖",5,"튝튞튟튡튢튣튥",6,"튭"], ["ba61","튮튯튰튲",5,"튺튻튽튾틁틃",4,"틊틌",5], ["ba81","틒틓틕틖틗틙틚틛틝",6,"틦",9,"틲틳틵틶틷틹틺벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤"], ["bb41","틻",4,"팂팄팆",5,"팏팑팒팓팕팗",4,"팞팢팣"], ["bb61","팤팦팧팪팫팭팮팯팱",6,"팺팾",5,"퍆퍇퍈퍉"], ["bb81","퍊",31,"빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤"], ["bc41","퍪",17,"퍾퍿펁펂펃펅펆펇"], ["bc61","펈펉펊펋펎펒",5,"펚펛펝펞펟펡",6,"펪펬펮"], ["bc81","펯",4,"펵펶펷펹펺펻펽",6,"폆폇폊",5,"폑",5,"샥샨샬샴샵샷샹섀섄섈섐섕서",4,"섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭"], ["bd41","폗폙",7,"폢폤",7,"폮폯폱폲폳폵폶폷"], ["bd61","폸폹폺폻폾퐀퐂",5,"퐉",13], ["bd81","퐗",5,"퐞",25,"숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰"], ["be41","퐸",7,"푁푂푃푅",14], ["be61","푔",7,"푝푞푟푡푢푣푥",7,"푮푰푱푲"], ["be81","푳",4,"푺푻푽푾풁풃",4,"풊풌풎",5,"풕",8,"쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄",6,"엌엎"], ["bf41","풞",10,"풪",14], ["bf61","풹",18,"퓍퓎퓏퓑퓒퓓퓕"], ["bf81","퓖",5,"퓝퓞퓠",7,"퓩퓪퓫퓭퓮퓯퓱",6,"퓹퓺퓼에엑엔엘엠엡엣엥여역엮연열엶엷염",5,"옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨"], ["c041","퓾",5,"픅픆픇픉픊픋픍",6,"픖픘",5], ["c061","픞",25], ["c081","픸픹픺픻픾픿핁핂핃핅",6,"핎핐핒",5,"핚핛핝핞핟핡핢핣웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응",7,"읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊"], ["c141","핤핦핧핪핬핮",5,"핶핷핹핺핻핽",6,"햆햊햋"], ["c161","햌햍햎햏햑",19,"햦햧"], ["c181","햨",31,"점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓"], ["c241","헊헋헍헎헏헑헓",4,"헚헜헞",5,"헦헧헩헪헫헭헮"], ["c261","헯",4,"헶헸헺",5,"혂혃혅혆혇혉",6,"혒"], ["c281","혖",5,"혝혞혟혡혢혣혥",7,"혮",9,"혺혻징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻"], ["c341","혽혾혿홁홂홃홄홆홇홊홌홎홏홐홒홓홖홗홙홚홛홝",4], ["c361","홢",4,"홨홪",5,"홲홳홵",11], ["c381","횁횂횄횆",5,"횎횏횑횒횓횕",7,"횞횠횢",5,"횩횪찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층"], ["c441","횫횭횮횯횱",7,"횺횼",7,"훆훇훉훊훋"], ["c461","훍훎훏훐훒훓훕훖훘훚",5,"훡훢훣훥훦훧훩",4], ["c481","훮훯훱훲훳훴훶",5,"훾훿휁휂휃휅",11,"휒휓휔치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼"], ["c541","휕휖휗휚휛휝휞휟휡",6,"휪휬휮",5,"휶휷휹"], ["c561","휺휻휽",6,"흅흆흈흊",5,"흒흓흕흚",4], ["c581","흟흢흤흦흧흨흪흫흭흮흯흱흲흳흵",6,"흾흿힀힂",5,"힊힋큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜"], ["c641","힍힎힏힑",6,"힚힜힞",5], ["c6a1","퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁"], ["c7a1","퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠"], ["c8a1","혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝"], ["caa1","伽佳假價加可呵哥嘉嫁家暇架枷柯歌珂痂稼苛茄街袈訶賈跏軻迦駕刻却各恪慤殼珏脚覺角閣侃刊墾奸姦干幹懇揀杆柬桿澗癎看磵稈竿簡肝艮艱諫間乫喝曷渴碣竭葛褐蝎鞨勘坎堪嵌感憾戡敢柑橄減甘疳監瞰紺邯鑑鑒龕"], ["cba1","匣岬甲胛鉀閘剛堈姜岡崗康强彊慷江畺疆糠絳綱羌腔舡薑襁講鋼降鱇介价個凱塏愷愾慨改槪漑疥皆盖箇芥蓋豈鎧開喀客坑更粳羹醵倨去居巨拒据據擧渠炬祛距踞車遽鉅鋸乾件健巾建愆楗腱虔蹇鍵騫乞傑杰桀儉劍劒檢"], ["cca1","瞼鈐黔劫怯迲偈憩揭擊格檄激膈覡隔堅牽犬甄絹繭肩見譴遣鵑抉決潔結缺訣兼慊箝謙鉗鎌京俓倞傾儆勁勍卿坰境庚徑慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖警輕逕鏡頃頸驚鯨係啓堺契季屆悸戒桂械"], ["cda1","棨溪界癸磎稽系繫繼計誡谿階鷄古叩告呱固姑孤尻庫拷攷故敲暠枯槁沽痼皐睾稿羔考股膏苦苽菰藁蠱袴誥賈辜錮雇顧高鼓哭斛曲梏穀谷鵠困坤崑昆梱棍滾琨袞鯤汨滑骨供公共功孔工恐恭拱控攻珙空蚣貢鞏串寡戈果瓜"], ["cea1","科菓誇課跨過鍋顆廓槨藿郭串冠官寬慣棺款灌琯瓘管罐菅觀貫關館刮恝括适侊光匡壙廣曠洸炚狂珖筐胱鑛卦掛罫乖傀塊壞怪愧拐槐魁宏紘肱轟交僑咬喬嬌嶠巧攪敎校橋狡皎矯絞翹膠蕎蛟較轎郊餃驕鮫丘久九仇俱具勾"], ["cfa1","區口句咎嘔坵垢寇嶇廐懼拘救枸柩構歐毆毬求溝灸狗玖球瞿矩究絿耉臼舅舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局菊鞠鞫麴君窘群裙軍郡堀屈掘窟宮弓穹窮芎躬倦券勸卷圈拳捲權淃眷厥獗蕨蹶闕机櫃潰詭軌饋句晷歸貴"], ["d0a1","鬼龜叫圭奎揆槻珪硅窺竅糾葵規赳逵閨勻均畇筠菌鈞龜橘克剋劇戟棘極隙僅劤勤懃斤根槿瑾筋芹菫覲謹近饉契今妗擒昑檎琴禁禽芩衾衿襟金錦伋及急扱汲級給亘兢矜肯企伎其冀嗜器圻基埼夔奇妓寄岐崎己幾忌技旗旣"], ["d1a1","朞期杞棋棄機欺氣汽沂淇玘琦琪璂璣畸畿碁磯祁祇祈祺箕紀綺羈耆耭肌記譏豈起錡錤飢饑騎騏驥麒緊佶吉拮桔金喫儺喇奈娜懦懶拏拿癩",5,"那樂",4,"諾酪駱亂卵暖欄煖爛蘭難鸞捏捺南嵐枏楠湳濫男藍襤拉"], ["d2a1","納臘蠟衲囊娘廊",4,"乃來內奈柰耐冷女年撚秊念恬拈捻寧寗努勞奴弩怒擄櫓爐瑙盧",5,"駑魯",10,"濃籠聾膿農惱牢磊腦賂雷尿壘",7,"嫩訥杻紐勒",5,"能菱陵尼泥匿溺多茶"], ["d3a1","丹亶但單團壇彖斷旦檀段湍短端簞緞蛋袒鄲鍛撻澾獺疸達啖坍憺擔曇淡湛潭澹痰聃膽蕁覃談譚錟沓畓答踏遝唐堂塘幢戇撞棠當糖螳黨代垈坮大對岱帶待戴擡玳臺袋貸隊黛宅德悳倒刀到圖堵塗導屠島嶋度徒悼挑掉搗桃"], ["d4a1","棹櫂淘渡滔濤燾盜睹禱稻萄覩賭跳蹈逃途道都鍍陶韜毒瀆牘犢獨督禿篤纛讀墩惇敦旽暾沌焞燉豚頓乭突仝冬凍動同憧東桐棟洞潼疼瞳童胴董銅兜斗杜枓痘竇荳讀豆逗頭屯臀芚遁遯鈍得嶝橙燈登等藤謄鄧騰喇懶拏癩羅"], ["d5a1","蘿螺裸邏樂洛烙珞絡落諾酪駱丹亂卵欄欒瀾爛蘭鸞剌辣嵐擥攬欖濫籃纜藍襤覽拉臘蠟廊朗浪狼琅瑯螂郞來崍徠萊冷掠略亮倆兩凉梁樑粮粱糧良諒輛量侶儷勵呂廬慮戾旅櫚濾礪藜蠣閭驢驪麗黎力曆歷瀝礫轢靂憐戀攣漣"], ["d6a1","煉璉練聯蓮輦連鍊冽列劣洌烈裂廉斂殮濂簾獵令伶囹寧岺嶺怜玲笭羚翎聆逞鈴零靈領齡例澧禮醴隷勞怒撈擄櫓潞瀘爐盧老蘆虜路輅露魯鷺鹵碌祿綠菉錄鹿麓論壟弄朧瀧瓏籠聾儡瀨牢磊賂賚賴雷了僚寮廖料燎療瞭聊蓼"], ["d7a1","遼鬧龍壘婁屢樓淚漏瘻累縷蔞褸鏤陋劉旒柳榴流溜瀏琉瑠留瘤硫謬類六戮陸侖倫崙淪綸輪律慄栗率隆勒肋凜凌楞稜綾菱陵俚利厘吏唎履悧李梨浬犁狸理璃異痢籬罹羸莉裏裡里釐離鯉吝潾燐璘藺躪隣鱗麟林淋琳臨霖砬"], ["d8a1","立笠粒摩瑪痲碼磨馬魔麻寞幕漠膜莫邈万卍娩巒彎慢挽晩曼滿漫灣瞞萬蔓蠻輓饅鰻唜抹末沫茉襪靺亡妄忘忙望網罔芒茫莽輞邙埋妹媒寐昧枚梅每煤罵買賣邁魅脈貊陌驀麥孟氓猛盲盟萌冪覓免冕勉棉沔眄眠綿緬面麵滅"], ["d9a1","蔑冥名命明暝椧溟皿瞑茗蓂螟酩銘鳴袂侮冒募姆帽慕摸摹暮某模母毛牟牡瑁眸矛耗芼茅謀謨貌木沐牧目睦穆鶩歿沒夢朦蒙卯墓妙廟描昴杳渺猫竗苗錨務巫憮懋戊拇撫无楙武毋無珷畝繆舞茂蕪誣貿霧鵡墨默們刎吻問文"], ["daa1","汶紊紋聞蚊門雯勿沕物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷靡黴岷悶愍憫敏旻旼民泯玟珉緡閔密蜜謐剝博拍搏撲朴樸泊珀璞箔粕縛膊舶薄迫雹駁伴半反叛拌搬攀斑槃泮潘班畔瘢盤盼磐磻礬絆般蟠返頒飯勃拔撥渤潑"], ["dba1","發跋醱鉢髮魃倣傍坊妨尨幇彷房放方旁昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防龐倍俳北培徘拜排杯湃焙盃背胚裴裵褙賠輩配陪伯佰帛柏栢白百魄幡樊煩燔番磻繁蕃藩飜伐筏罰閥凡帆梵氾汎泛犯範范法琺僻劈壁擘檗璧癖"], ["dca1","碧蘗闢霹便卞弁變辨辯邊別瞥鱉鼈丙倂兵屛幷昞昺柄棅炳甁病秉竝輧餠騈保堡報寶普步洑湺潽珤甫菩補褓譜輔伏僕匐卜宓復服福腹茯蔔複覆輹輻馥鰒本乶俸奉封峯峰捧棒烽熢琫縫蓬蜂逢鋒鳳不付俯傅剖副否咐埠夫婦"], ["dda1","孚孵富府復扶敷斧浮溥父符簿缶腐腑膚艀芙莩訃負賦賻赴趺部釜阜附駙鳧北分吩噴墳奔奮忿憤扮昐汾焚盆粉糞紛芬賁雰不佛弗彿拂崩朋棚硼繃鵬丕備匕匪卑妃婢庇悲憊扉批斐枇榧比毖毗毘沸泌琵痺砒碑秕秘粃緋翡肥"], ["dea1","脾臂菲蜚裨誹譬費鄙非飛鼻嚬嬪彬斌檳殯浜濱瀕牝玭貧賓頻憑氷聘騁乍事些仕伺似使俟僿史司唆嗣四士奢娑寫寺射巳師徙思捨斜斯柶査梭死沙泗渣瀉獅砂社祀祠私篩紗絲肆舍莎蓑蛇裟詐詞謝賜赦辭邪飼駟麝削數朔索"], ["dfa1","傘刪山散汕珊産疝算蒜酸霰乷撒殺煞薩三參杉森渗芟蔘衫揷澁鈒颯上傷像償商喪嘗孀尙峠常床庠廂想桑橡湘爽牀狀相祥箱翔裳觴詳象賞霜塞璽賽嗇塞穡索色牲生甥省笙墅壻嶼序庶徐恕抒捿敍暑曙書栖棲犀瑞筮絮緖署"], ["e0a1","胥舒薯西誓逝鋤黍鼠夕奭席惜昔晳析汐淅潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽琁瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣選銑鐥饍鮮卨屑楔泄洩渫舌薛褻設說雪齧剡暹殲纖蟾贍閃陝攝涉燮葉城姓宬性惺成星晟猩珹盛省筬"], ["e1a1","聖聲腥誠醒世勢歲洗稅笹細說貰召嘯塑宵小少巢所掃搔昭梳沼消溯瀟炤燒甦疏疎瘙笑篠簫素紹蔬蕭蘇訴逍遡邵銷韶騷俗屬束涑粟續謖贖速孫巽損蓀遜飡率宋悚松淞訟誦送頌刷殺灑碎鎖衰釗修受嗽囚垂壽嫂守岫峀帥愁"], ["e2a1","戍手授搜收數樹殊水洙漱燧狩獸琇璲瘦睡秀穗竪粹綏綬繡羞脩茱蒐蓚藪袖誰讐輸遂邃酬銖銹隋隧隨雖需須首髓鬚叔塾夙孰宿淑潚熟琡璹肅菽巡徇循恂旬栒楯橓殉洵淳珣盾瞬筍純脣舜荀蓴蕣詢諄醇錞順馴戌術述鉥崇崧"], ["e3a1","嵩瑟膝蝨濕拾習褶襲丞乘僧勝升承昇繩蠅陞侍匙嘶始媤尸屎屍市弑恃施是時枾柴猜矢示翅蒔蓍視試詩諡豕豺埴寔式息拭植殖湜熄篒蝕識軾食飾伸侁信呻娠宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心沁"], ["e4a1","沈深瀋甚芯諶什十拾雙氏亞俄兒啞娥峨我牙芽莪蛾衙訝阿雅餓鴉鵝堊岳嶽幄惡愕握樂渥鄂鍔顎鰐齷安岸按晏案眼雁鞍顔鮟斡謁軋閼唵岩巖庵暗癌菴闇壓押狎鴨仰央怏昻殃秧鴦厓哀埃崖愛曖涯碍艾隘靄厄扼掖液縊腋額"], ["e5a1","櫻罌鶯鸚也倻冶夜惹揶椰爺耶若野弱掠略約若葯蒻藥躍亮佯兩凉壤孃恙揚攘敭暘梁楊樣洋瀁煬痒瘍禳穰糧羊良襄諒讓釀陽量養圄御於漁瘀禦語馭魚齬億憶抑檍臆偃堰彦焉言諺孼蘖俺儼嚴奄掩淹嶪業円予余勵呂女如廬"], ["e6a1","旅歟汝濾璵礖礪與艅茹輿轝閭餘驪麗黎亦力域役易曆歷疫繹譯轢逆驛嚥堧姸娟宴年延憐戀捐挻撚椽沇沿涎涓淵演漣烟然煙煉燃燕璉硏硯秊筵緣練縯聯衍軟輦蓮連鉛鍊鳶列劣咽悅涅烈熱裂說閱厭廉念捻染殮炎焰琰艶苒"], ["e7a1","簾閻髥鹽曄獵燁葉令囹塋寧嶺嶸影怜映暎楹榮永泳渶潁濚瀛瀯煐營獰玲瑛瑩瓔盈穎纓羚聆英詠迎鈴鍈零霙靈領乂倪例刈叡曳汭濊猊睿穢芮藝蘂禮裔詣譽豫醴銳隸霓預五伍俉傲午吾吳嗚塢墺奧娛寤悟惡懊敖旿晤梧汚澳"], ["e8a1","烏熬獒筽蜈誤鰲鼇屋沃獄玉鈺溫瑥瘟穩縕蘊兀壅擁瓮甕癰翁邕雍饔渦瓦窩窪臥蛙蝸訛婉完宛梡椀浣玩琓琬碗緩翫脘腕莞豌阮頑曰往旺枉汪王倭娃歪矮外嵬巍猥畏了僚僥凹堯夭妖姚寥寮尿嶢拗搖撓擾料曜樂橈燎燿瑤療"], ["e9a1","窈窯繇繞耀腰蓼蟯要謠遙遼邀饒慾欲浴縟褥辱俑傭冗勇埇墉容庸慂榕涌湧溶熔瑢用甬聳茸蓉踊鎔鏞龍于佑偶優又友右宇寓尤愚憂旴牛玗瑀盂祐禑禹紆羽芋藕虞迂遇郵釪隅雨雩勖彧旭昱栯煜稶郁頊云暈橒殞澐熉耘芸蕓"], ["eaa1","運隕雲韻蔚鬱亐熊雄元原員圓園垣媛嫄寃怨愿援沅洹湲源爰猿瑗苑袁轅遠阮院願鴛月越鉞位偉僞危圍委威尉慰暐渭爲瑋緯胃萎葦蔿蝟衛褘謂違韋魏乳侑儒兪劉唯喩孺宥幼幽庾悠惟愈愉揄攸有杻柔柚柳楡楢油洧流游溜"], ["eba1","濡猶猷琉瑜由留癒硫紐維臾萸裕誘諛諭踰蹂遊逾遺酉釉鍮類六堉戮毓肉育陸倫允奫尹崙淪潤玧胤贇輪鈗閏律慄栗率聿戎瀜絨融隆垠恩慇殷誾銀隱乙吟淫蔭陰音飮揖泣邑凝應膺鷹依倚儀宜意懿擬椅毅疑矣義艤薏蟻衣誼"], ["eca1","議醫二以伊利吏夷姨履已弛彛怡易李梨泥爾珥理異痍痢移罹而耳肄苡荑裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人仁刃印吝咽因姻寅引忍湮燐璘絪茵藺蚓認隣靭靷鱗麟一佚佾壹日溢逸鎰馹任壬妊姙恁林淋稔臨荏賃入卄"], ["eda1","立笠粒仍剩孕芿仔刺咨姉姿子字孜恣慈滋炙煮玆瓷疵磁紫者自茨蔗藉諮資雌作勺嚼斫昨灼炸爵綽芍酌雀鵲孱棧殘潺盞岑暫潛箴簪蠶雜丈仗匠場墻壯奬將帳庄張掌暲杖樟檣欌漿牆狀獐璋章粧腸臟臧莊葬蔣薔藏裝贓醬長"], ["eea1","障再哉在宰才材栽梓渽滓災縡裁財載齋齎爭箏諍錚佇低儲咀姐底抵杵楮樗沮渚狙猪疽箸紵苧菹著藷詛貯躇這邸雎齟勣吊嫡寂摘敵滴狄炙的積笛籍績翟荻謫賊赤跡蹟迪迹適鏑佃佺傳全典前剪塡塼奠專展廛悛戰栓殿氈澱"], ["efa1","煎琠田甸畑癲筌箋箭篆纏詮輾轉鈿銓錢鐫電顚顫餞切截折浙癤竊節絶占岾店漸点粘霑鮎點接摺蝶丁井亭停偵呈姃定幀庭廷征情挺政整旌晶晸柾楨檉正汀淀淨渟湞瀞炡玎珽町睛碇禎程穽精綎艇訂諪貞鄭酊釘鉦鋌錠霆靖"], ["f0a1","靜頂鼎制劑啼堤帝弟悌提梯濟祭第臍薺製諸蹄醍除際霽題齊俎兆凋助嘲弔彫措操早晁曺曹朝條棗槽漕潮照燥爪璪眺祖祚租稠窕粗糟組繰肇藻蚤詔調趙躁造遭釣阻雕鳥族簇足鏃存尊卒拙猝倧宗從悰慫棕淙琮種終綜縱腫"], ["f1a1","踪踵鍾鐘佐坐左座挫罪主住侏做姝胄呪周嗾奏宙州廚晝朱柱株注洲湊澍炷珠疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄駐竹粥俊儁准埈寯峻晙樽浚準濬焌畯竣蠢逡遵雋駿茁中仲衆重卽櫛楫汁葺增憎曾拯烝甑症繒蒸證贈之只"], ["f2a1","咫地址志持指摯支旨智枝枳止池沚漬知砥祉祗紙肢脂至芝芷蜘誌識贄趾遲直稙稷織職唇嗔塵振搢晉晋桭榛殄津溱珍瑨璡畛疹盡眞瞋秦縉縝臻蔯袗診賑軫辰進鎭陣陳震侄叱姪嫉帙桎瓆疾秩窒膣蛭質跌迭斟朕什執潗緝輯"], ["f3a1","鏶集徵懲澄且侘借叉嗟嵯差次此磋箚茶蹉車遮捉搾着窄錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽餐饌刹察擦札紮僭參塹慘慙懺斬站讒讖倉倡創唱娼廠彰愴敞昌昶暢槍滄漲猖瘡窓脹艙菖蒼債埰寀寨彩採砦綵菜蔡采釵冊柵策"], ["f4a1","責凄妻悽處倜刺剔尺慽戚拓擲斥滌瘠脊蹠陟隻仟千喘天川擅泉淺玔穿舛薦賤踐遷釧闡阡韆凸哲喆徹撤澈綴輟轍鐵僉尖沾添甛瞻簽籤詹諂堞妾帖捷牒疊睫諜貼輒廳晴淸聽菁請靑鯖切剃替涕滯締諦逮遞體初剿哨憔抄招梢"], ["f5a1","椒楚樵炒焦硝礁礎秒稍肖艸苕草蕉貂超酢醋醮促囑燭矗蜀觸寸忖村邨叢塚寵悤憁摠總聰蔥銃撮催崔最墜抽推椎楸樞湫皺秋芻萩諏趨追鄒酋醜錐錘鎚雛騶鰍丑畜祝竺筑築縮蓄蹙蹴軸逐春椿瑃出朮黜充忠沖蟲衝衷悴膵萃"], ["f6a1","贅取吹嘴娶就炊翠聚脆臭趣醉驟鷲側仄厠惻測層侈値嗤峙幟恥梔治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅飭親七柒漆侵寢枕沈浸琛砧針鍼蟄秤稱快他咤唾墮妥惰打拖朶楕舵陀馱駝倬卓啄坼度托拓擢晫柝濁濯琢琸託"], ["f7a1","鐸呑嘆坦彈憚歎灘炭綻誕奪脫探眈耽貪塔搭榻宕帑湯糖蕩兌台太怠態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎吐土討慟桶洞痛筒統通堆槌腿褪退頹偸套妬投透鬪慝特闖坡婆巴把播擺杷波派爬琶破罷芭跛頗判坂板版瓣販辦鈑"], ["f8a1","阪八叭捌佩唄悖敗沛浿牌狽稗覇貝彭澎烹膨愎便偏扁片篇編翩遍鞭騙貶坪平枰萍評吠嬖幣廢弊斃肺蔽閉陛佈包匍匏咆哺圃布怖抛抱捕暴泡浦疱砲胞脯苞葡蒲袍褒逋鋪飽鮑幅暴曝瀑爆輻俵剽彪慓杓標漂瓢票表豹飇飄驃"], ["f9a1","品稟楓諷豊風馮彼披疲皮被避陂匹弼必泌珌畢疋筆苾馝乏逼下何厦夏廈昰河瑕荷蝦賀遐霞鰕壑學虐謔鶴寒恨悍旱汗漢澣瀚罕翰閑閒限韓割轄函含咸啣喊檻涵緘艦銜陷鹹合哈盒蛤閤闔陜亢伉姮嫦巷恒抗杭桁沆港缸肛航"], ["faa1","行降項亥偕咳垓奚孩害懈楷海瀣蟹解該諧邂駭骸劾核倖幸杏荇行享向嚮珦鄕響餉饗香噓墟虛許憲櫶獻軒歇險驗奕爀赫革俔峴弦懸晛泫炫玄玹現眩睍絃絢縣舷衒見賢鉉顯孑穴血頁嫌俠協夾峽挾浹狹脅脇莢鋏頰亨兄刑型"], ["fba1","形泂滎瀅灐炯熒珩瑩荊螢衡逈邢鎣馨兮彗惠慧暳蕙蹊醯鞋乎互呼壕壺好岵弧戶扈昊晧毫浩淏湖滸澔濠濩灝狐琥瑚瓠皓祜糊縞胡芦葫蒿虎號蝴護豪鎬頀顥惑或酷婚昏混渾琿魂忽惚笏哄弘汞泓洪烘紅虹訌鴻化和嬅樺火畵"], ["fca1","禍禾花華話譁貨靴廓擴攫確碻穫丸喚奐宦幻患換歡晥桓渙煥環紈還驩鰥活滑猾豁闊凰幌徨恍惶愰慌晃晄榥況湟滉潢煌璜皇篁簧荒蝗遑隍黃匯回廻徊恢悔懷晦會檜淮澮灰獪繪膾茴蛔誨賄劃獲宖橫鐄哮嚆孝效斅曉梟涍淆"], ["fda1","爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰"] ]

node_modules/iconv-lite/encodings/tables/cp950.json

[ ["0","\u0000",127], ["a140"," ,、。.‧;:?!︰…‥﹐﹑﹒·﹔﹕﹖﹗|–︱—︳╴︴﹏()︵︶{}︷︸〔〕︹︺【】︻︼《》︽︾〈〉︿﹀「」﹁﹂『』﹃﹄﹙﹚"], ["a1a1","﹛﹜﹝﹞‘’“”〝〞‵′#&*※§〃○●△▲◎☆★◇◆□■▽▼㊣℅¯ ̄_ˍ﹉﹊﹍﹎﹋﹌﹟﹠﹡+-×÷±√<>=≦≧≠∞≒≡﹢",4,"~∩∪⊥∠∟⊿㏒㏑∫∮∵∴♀♂⊕⊙↑↓←→↖↗↙↘∥∣/"], ["a240","\∕﹨$¥〒¢£%@℃℉﹩﹪﹫㏕㎜㎝㎞㏎㎡㎎㎏㏄°兙兛兞兝兡兣嗧瓩糎▁",7,"▏▎▍▌▋▊▉┼┴┬┤├▔─│▕┌┐└┘╭"], ["a2a1","╮╰╯═╞╪╡◢◣◥◤╱╲╳0",9,"Ⅰ",9,"〡",8,"十卄卅A",25,"a",21], ["a340","wxyzΑ",16,"Σ",6,"α",16,"σ",6,"ㄅ",10], ["a3a1","ㄐ",25,"˙ˉˊˇˋ"], ["a3e1","€"], ["a440","一乙丁七乃九了二人儿入八几刀刁力匕十卜又三下丈上丫丸凡久么也乞于亡兀刃勺千叉口土士夕大女子孑孓寸小尢尸山川工己已巳巾干廾弋弓才"], ["a4a1","丑丐不中丰丹之尹予云井互五亢仁什仃仆仇仍今介仄元允內六兮公冗凶分切刈勻勾勿化匹午升卅卞厄友及反壬天夫太夭孔少尤尺屯巴幻廿弔引心戈戶手扎支文斗斤方日曰月木欠止歹毋比毛氏水火爪父爻片牙牛犬王丙"], ["a540","世丕且丘主乍乏乎以付仔仕他仗代令仙仞充兄冉冊冬凹出凸刊加功包匆北匝仟半卉卡占卯卮去可古右召叮叩叨叼司叵叫另只史叱台句叭叻四囚外"], ["a5a1","央失奴奶孕它尼巨巧左市布平幼弁弘弗必戊打扔扒扑斥旦朮本未末札正母民氐永汁汀氾犯玄玉瓜瓦甘生用甩田由甲申疋白皮皿目矛矢石示禾穴立丞丟乒乓乩亙交亦亥仿伉伙伊伕伍伐休伏仲件任仰仳份企伋光兇兆先全"], ["a640","共再冰列刑划刎刖劣匈匡匠印危吉吏同吊吐吁吋各向名合吃后吆吒因回囝圳地在圭圬圯圩夙多夷夸妄奸妃好她如妁字存宇守宅安寺尖屹州帆并年"], ["a6a1","式弛忙忖戎戌戍成扣扛托收早旨旬旭曲曳有朽朴朱朵次此死氖汝汗汙江池汐汕污汛汍汎灰牟牝百竹米糸缶羊羽老考而耒耳聿肉肋肌臣自至臼舌舛舟艮色艾虫血行衣西阡串亨位住佇佗佞伴佛何估佐佑伽伺伸佃佔似但佣"], ["a740","作你伯低伶余佝佈佚兌克免兵冶冷別判利刪刨劫助努劬匣即卵吝吭吞吾否呎吧呆呃吳呈呂君吩告吹吻吸吮吵吶吠吼呀吱含吟听囪困囤囫坊坑址坍"], ["a7a1","均坎圾坐坏圻壯夾妝妒妨妞妣妙妖妍妤妓妊妥孝孜孚孛完宋宏尬局屁尿尾岐岑岔岌巫希序庇床廷弄弟彤形彷役忘忌志忍忱快忸忪戒我抄抗抖技扶抉扭把扼找批扳抒扯折扮投抓抑抆改攻攸旱更束李杏材村杜杖杞杉杆杠"], ["a840","杓杗步每求汞沙沁沈沉沅沛汪決沐汰沌汨沖沒汽沃汲汾汴沆汶沍沔沘沂灶灼災灸牢牡牠狄狂玖甬甫男甸皂盯矣私秀禿究系罕肖肓肝肘肛肚育良芒"], ["a8a1","芋芍見角言谷豆豕貝赤走足身車辛辰迂迆迅迄巡邑邢邪邦那酉釆里防阮阱阪阬並乖乳事些亞享京佯依侍佳使佬供例來侃佰併侈佩佻侖佾侏侑佺兔兒兕兩具其典冽函刻券刷刺到刮制剁劾劻卒協卓卑卦卷卸卹取叔受味呵"], ["a940","咖呸咕咀呻呷咄咒咆呼咐呱呶和咚呢周咋命咎固垃坷坪坩坡坦坤坼夜奉奇奈奄奔妾妻委妹妮姑姆姐姍始姓姊妯妳姒姅孟孤季宗定官宜宙宛尚屈居"], ["a9a1","屆岷岡岸岩岫岱岳帘帚帖帕帛帑幸庚店府底庖延弦弧弩往征彿彼忝忠忽念忿怏怔怯怵怖怪怕怡性怩怫怛或戕房戾所承拉拌拄抿拂抹拒招披拓拔拋拈抨抽押拐拙拇拍抵拚抱拘拖拗拆抬拎放斧於旺昔易昌昆昂明昀昏昕昊"], ["aa40","昇服朋杭枋枕東果杳杷枇枝林杯杰板枉松析杵枚枓杼杪杲欣武歧歿氓氛泣注泳沱泌泥河沽沾沼波沫法泓沸泄油況沮泗泅泱沿治泡泛泊沬泯泜泖泠"], ["aaa1","炕炎炒炊炙爬爭爸版牧物狀狎狙狗狐玩玨玟玫玥甽疝疙疚的盂盲直知矽社祀祁秉秈空穹竺糾罔羌羋者肺肥肢肱股肫肩肴肪肯臥臾舍芳芝芙芭芽芟芹花芬芥芯芸芣芰芾芷虎虱初表軋迎返近邵邸邱邶采金長門阜陀阿阻附"], ["ab40","陂隹雨青非亟亭亮信侵侯便俠俑俏保促侶俘俟俊俗侮俐俄係俚俎俞侷兗冒冑冠剎剃削前剌剋則勇勉勃勁匍南卻厚叛咬哀咨哎哉咸咦咳哇哂咽咪品"], ["aba1","哄哈咯咫咱咻咩咧咿囿垂型垠垣垢城垮垓奕契奏奎奐姜姘姿姣姨娃姥姪姚姦威姻孩宣宦室客宥封屎屏屍屋峙峒巷帝帥帟幽庠度建弈弭彥很待徊律徇後徉怒思怠急怎怨恍恰恨恢恆恃恬恫恪恤扁拜挖按拼拭持拮拽指拱拷"], ["ac40","拯括拾拴挑挂政故斫施既春昭映昧是星昨昱昤曷柿染柱柔某柬架枯柵柩柯柄柑枴柚查枸柏柞柳枰柙柢柝柒歪殃殆段毒毗氟泉洋洲洪流津洌洱洞洗"], ["aca1","活洽派洶洛泵洹洧洸洩洮洵洎洫炫為炳炬炯炭炸炮炤爰牲牯牴狩狠狡玷珊玻玲珍珀玳甚甭畏界畎畋疫疤疥疢疣癸皆皇皈盈盆盃盅省盹相眉看盾盼眇矜砂研砌砍祆祉祈祇禹禺科秒秋穿突竿竽籽紂紅紀紉紇約紆缸美羿耄"], ["ad40","耐耍耑耶胖胥胚胃胄背胡胛胎胞胤胝致舢苧范茅苣苛苦茄若茂茉苒苗英茁苜苔苑苞苓苟苯茆虐虹虻虺衍衫要觔計訂訃貞負赴赳趴軍軌述迦迢迪迥"], ["ada1","迭迫迤迨郊郎郁郃酋酊重閂限陋陌降面革韋韭音頁風飛食首香乘亳倌倍倣俯倦倥俸倩倖倆值借倚倒們俺倀倔倨俱倡個候倘俳修倭倪俾倫倉兼冤冥冢凍凌准凋剖剜剔剛剝匪卿原厝叟哨唐唁唷哼哥哲唆哺唔哩哭員唉哮哪"], ["ae40","哦唧唇哽唏圃圄埂埔埋埃堉夏套奘奚娑娘娜娟娛娓姬娠娣娩娥娌娉孫屘宰害家宴宮宵容宸射屑展屐峭峽峻峪峨峰島崁峴差席師庫庭座弱徒徑徐恙"], ["aea1","恣恥恐恕恭恩息悄悟悚悍悔悌悅悖扇拳挈拿捎挾振捕捂捆捏捉挺捐挽挪挫挨捍捌效敉料旁旅時晉晏晃晒晌晅晁書朔朕朗校核案框桓根桂桔栩梳栗桌桑栽柴桐桀格桃株桅栓栘桁殊殉殷氣氧氨氦氤泰浪涕消涇浦浸海浙涓"], ["af40","浬涉浮浚浴浩涌涊浹涅浥涔烊烘烤烙烈烏爹特狼狹狽狸狷玆班琉珮珠珪珞畔畝畜畚留疾病症疲疳疽疼疹痂疸皋皰益盍盎眩真眠眨矩砰砧砸砝破砷"], ["afa1","砥砭砠砟砲祕祐祠祟祖神祝祗祚秤秣秧租秦秩秘窄窈站笆笑粉紡紗紋紊素索純紐紕級紜納紙紛缺罟羔翅翁耆耘耕耙耗耽耿胱脂胰脅胭胴脆胸胳脈能脊胼胯臭臬舀舐航舫舨般芻茫荒荔荊茸荐草茵茴荏茲茹茶茗荀茱茨荃"], ["b040","虔蚊蚪蚓蚤蚩蚌蚣蚜衰衷袁袂衽衹記訐討訌訕訊託訓訖訏訑豈豺豹財貢起躬軒軔軏辱送逆迷退迺迴逃追逅迸邕郡郝郢酒配酌釘針釗釜釙閃院陣陡"], ["b0a1","陛陝除陘陞隻飢馬骨高鬥鬲鬼乾偺偽停假偃偌做偉健偶偎偕偵側偷偏倏偯偭兜冕凰剪副勒務勘動匐匏匙匿區匾參曼商啪啦啄啞啡啃啊唱啖問啕唯啤唸售啜唬啣唳啁啗圈國圉域堅堊堆埠埤基堂堵執培夠奢娶婁婉婦婪婀"], ["b140","娼婢婚婆婊孰寇寅寄寂宿密尉專將屠屜屝崇崆崎崛崖崢崑崩崔崙崤崧崗巢常帶帳帷康庸庶庵庾張強彗彬彩彫得徙從徘御徠徜恿患悉悠您惋悴惦悽"], ["b1a1","情悻悵惜悼惘惕惆惟悸惚惇戚戛扈掠控捲掖探接捷捧掘措捱掩掉掃掛捫推掄授掙採掬排掏掀捻捩捨捺敝敖救教敗啟敏敘敕敔斜斛斬族旋旌旎晝晚晤晨晦晞曹勗望梁梯梢梓梵桿桶梱梧梗械梃棄梭梆梅梔條梨梟梡梂欲殺"], ["b240","毫毬氫涎涼淳淙液淡淌淤添淺清淇淋涯淑涮淞淹涸混淵淅淒渚涵淚淫淘淪深淮淨淆淄涪淬涿淦烹焉焊烽烯爽牽犁猜猛猖猓猙率琅琊球理現琍瓠瓶"], ["b2a1","瓷甜產略畦畢異疏痔痕疵痊痍皎盔盒盛眷眾眼眶眸眺硫硃硎祥票祭移窒窕笠笨笛第符笙笞笮粒粗粕絆絃統紮紹紼絀細紳組累終紲紱缽羞羚翌翎習耜聊聆脯脖脣脫脩脰脤舂舵舷舶船莎莞莘荸莢莖莽莫莒莊莓莉莠荷荻荼"], ["b340","莆莧處彪蛇蛀蚶蛄蚵蛆蛋蚱蚯蛉術袞袈被袒袖袍袋覓規訪訝訣訥許設訟訛訢豉豚販責貫貨貪貧赧赦趾趺軛軟這逍通逗連速逝逐逕逞造透逢逖逛途"], ["b3a1","部郭都酗野釵釦釣釧釭釩閉陪陵陳陸陰陴陶陷陬雀雪雩章竟頂頃魚鳥鹵鹿麥麻傢傍傅備傑傀傖傘傚最凱割剴創剩勞勝勛博厥啻喀喧啼喊喝喘喂喜喪喔喇喋喃喳單喟唾喲喚喻喬喱啾喉喫喙圍堯堪場堤堰報堡堝堠壹壺奠"], ["b440","婷媚婿媒媛媧孳孱寒富寓寐尊尋就嵌嵐崴嵇巽幅帽幀幃幾廊廁廂廄弼彭復循徨惑惡悲悶惠愜愣惺愕惰惻惴慨惱愎惶愉愀愒戟扉掣掌描揀揩揉揆揍"], ["b4a1","插揣提握揖揭揮捶援揪換摒揚揹敞敦敢散斑斐斯普晰晴晶景暑智晾晷曾替期朝棺棕棠棘棗椅棟棵森棧棹棒棲棣棋棍植椒椎棉棚楮棻款欺欽殘殖殼毯氮氯氬港游湔渡渲湧湊渠渥渣減湛湘渤湖湮渭渦湯渴湍渺測湃渝渾滋"], ["b540","溉渙湎湣湄湲湩湟焙焚焦焰無然煮焜牌犄犀猶猥猴猩琺琪琳琢琥琵琶琴琯琛琦琨甥甦畫番痢痛痣痙痘痞痠登發皖皓皴盜睏短硝硬硯稍稈程稅稀窘"], ["b5a1","窗窖童竣等策筆筐筒答筍筋筏筑粟粥絞結絨絕紫絮絲絡給絢絰絳善翔翕耋聒肅腕腔腋腑腎脹腆脾腌腓腴舒舜菩萃菸萍菠菅萋菁華菱菴著萊菰萌菌菽菲菊萸萎萄菜萇菔菟虛蛟蛙蛭蛔蛛蛤蛐蛞街裁裂袱覃視註詠評詞証詁"], ["b640","詔詛詐詆訴診訶詖象貂貯貼貳貽賁費賀貴買貶貿貸越超趁跎距跋跚跑跌跛跆軻軸軼辜逮逵週逸進逶鄂郵鄉郾酣酥量鈔鈕鈣鈉鈞鈍鈐鈇鈑閔閏開閑"], ["b6a1","間閒閎隊階隋陽隅隆隍陲隄雁雅雄集雇雯雲韌項順須飧飪飯飩飲飭馮馭黃黍黑亂傭債傲傳僅傾催傷傻傯僇剿剷剽募勦勤勢勣匯嗟嗨嗓嗦嗎嗜嗇嗑嗣嗤嗯嗚嗡嗅嗆嗥嗉園圓塞塑塘塗塚塔填塌塭塊塢塒塋奧嫁嫉嫌媾媽媼"], ["b740","媳嫂媲嵩嵯幌幹廉廈弒彙徬微愚意慈感想愛惹愁愈慎慌慄慍愾愴愧愍愆愷戡戢搓搾搞搪搭搽搬搏搜搔損搶搖搗搆敬斟新暗暉暇暈暖暄暘暍會榔業"], ["b7a1","楚楷楠楔極椰概楊楨楫楞楓楹榆楝楣楛歇歲毀殿毓毽溢溯滓溶滂源溝滇滅溥溘溼溺溫滑準溜滄滔溪溧溴煎煙煩煤煉照煜煬煦煌煥煞煆煨煖爺牒猷獅猿猾瑯瑚瑕瑟瑞瑁琿瑙瑛瑜當畸瘀痰瘁痲痱痺痿痴痳盞盟睛睫睦睞督"], ["b840","睹睪睬睜睥睨睢矮碎碰碗碘碌碉硼碑碓硿祺祿禁萬禽稜稚稠稔稟稞窟窠筷節筠筮筧粱粳粵經絹綑綁綏絛置罩罪署義羨群聖聘肆肄腱腰腸腥腮腳腫"], ["b8a1","腹腺腦舅艇蒂葷落萱葵葦葫葉葬葛萼萵葡董葩葭葆虞虜號蛹蜓蜈蜇蜀蛾蛻蜂蜃蜆蜊衙裟裔裙補裘裝裡裊裕裒覜解詫該詳試詩詰誇詼詣誠話誅詭詢詮詬詹詻訾詨豢貊貉賊資賈賄貲賃賂賅跡跟跨路跳跺跪跤跦躲較載軾輊"], ["b940","辟農運遊道遂達逼違遐遇遏過遍遑逾遁鄒鄗酬酪酩釉鈷鉗鈸鈽鉀鈾鉛鉋鉤鉑鈴鉉鉍鉅鈹鈿鉚閘隘隔隕雍雋雉雊雷電雹零靖靴靶預頑頓頊頒頌飼飴"], ["b9a1","飽飾馳馱馴髡鳩麂鼎鼓鼠僧僮僥僖僭僚僕像僑僱僎僩兢凳劃劂匱厭嗾嘀嘛嘗嗽嘔嘆嘉嘍嘎嗷嘖嘟嘈嘐嗶團圖塵塾境墓墊塹墅塽壽夥夢夤奪奩嫡嫦嫩嫗嫖嫘嫣孵寞寧寡寥實寨寢寤察對屢嶄嶇幛幣幕幗幔廓廖弊彆彰徹慇"], ["ba40","愿態慷慢慣慟慚慘慵截撇摘摔撤摸摟摺摑摧搴摭摻敲斡旗旖暢暨暝榜榨榕槁榮槓構榛榷榻榫榴槐槍榭槌榦槃榣歉歌氳漳演滾漓滴漩漾漠漬漏漂漢"], ["baa1","滿滯漆漱漸漲漣漕漫漯澈漪滬漁滲滌滷熔熙煽熊熄熒爾犒犖獄獐瑤瑣瑪瑰瑭甄疑瘧瘍瘋瘉瘓盡監瞄睽睿睡磁碟碧碳碩碣禎福禍種稱窪窩竭端管箕箋筵算箝箔箏箸箇箄粹粽精綻綰綜綽綾綠緊綴網綱綺綢綿綵綸維緒緇綬"], ["bb40","罰翠翡翟聞聚肇腐膀膏膈膊腿膂臧臺與舔舞艋蓉蒿蓆蓄蒙蒞蒲蒜蓋蒸蓀蓓蒐蒼蓑蓊蜿蜜蜻蜢蜥蜴蜘蝕蜷蜩裳褂裴裹裸製裨褚裯誦誌語誣認誡誓誤"], ["bba1","說誥誨誘誑誚誧豪貍貌賓賑賒赫趙趕跼輔輒輕輓辣遠遘遜遣遙遞遢遝遛鄙鄘鄞酵酸酷酴鉸銀銅銘銖鉻銓銜銨鉼銑閡閨閩閣閥閤隙障際雌雒需靼鞅韶頗領颯颱餃餅餌餉駁骯骰髦魁魂鳴鳶鳳麼鼻齊億儀僻僵價儂儈儉儅凜"], ["bc40","劇劈劉劍劊勰厲嘮嘻嘹嘲嘿嘴嘩噓噎噗噴嘶嘯嘰墀墟增墳墜墮墩墦奭嬉嫻嬋嫵嬌嬈寮寬審寫層履嶝嶔幢幟幡廢廚廟廝廣廠彈影德徵慶慧慮慝慕憂"], ["bca1","慼慰慫慾憧憐憫憎憬憚憤憔憮戮摩摯摹撞撲撈撐撰撥撓撕撩撒撮播撫撚撬撙撢撳敵敷數暮暫暴暱樣樟槨樁樞標槽模樓樊槳樂樅槭樑歐歎殤毅毆漿潼澄潑潦潔澆潭潛潸潮澎潺潰潤澗潘滕潯潠潟熟熬熱熨牖犛獎獗瑩璋璃"], ["bd40","瑾璀畿瘠瘩瘟瘤瘦瘡瘢皚皺盤瞎瞇瞌瞑瞋磋磅確磊碾磕碼磐稿稼穀稽稷稻窯窮箭箱範箴篆篇篁箠篌糊締練緯緻緘緬緝編緣線緞緩綞緙緲緹罵罷羯"], ["bda1","翩耦膛膜膝膠膚膘蔗蔽蔚蓮蔬蔭蔓蔑蔣蔡蔔蓬蔥蓿蔆螂蝴蝶蝠蝦蝸蝨蝙蝗蝌蝓衛衝褐複褒褓褕褊誼諒談諄誕請諸課諉諂調誰論諍誶誹諛豌豎豬賠賞賦賤賬賭賢賣賜質賡赭趟趣踫踐踝踢踏踩踟踡踞躺輝輛輟輩輦輪輜輞"], ["be40","輥適遮遨遭遷鄰鄭鄧鄱醇醉醋醃鋅銻銷鋪銬鋤鋁銳銼鋒鋇鋰銲閭閱霄霆震霉靠鞍鞋鞏頡頫頜颳養餓餒餘駝駐駟駛駑駕駒駙骷髮髯鬧魅魄魷魯鴆鴉"], ["bea1","鴃麩麾黎墨齒儒儘儔儐儕冀冪凝劑劓勳噙噫噹噩噤噸噪器噥噱噯噬噢噶壁墾壇壅奮嬝嬴學寰導彊憲憑憩憊懍憶憾懊懈戰擅擁擋撻撼據擄擇擂操撿擒擔撾整曆曉暹曄曇暸樽樸樺橙橫橘樹橄橢橡橋橇樵機橈歙歷氅濂澱澡"], ["bf40","濃澤濁澧澳激澹澶澦澠澴熾燉燐燒燈燕熹燎燙燜燃燄獨璜璣璘璟璞瓢甌甍瘴瘸瘺盧盥瞠瞞瞟瞥磨磚磬磧禦積穎穆穌穋窺篙簑築篤篛篡篩篦糕糖縊"], ["bfa1","縑縈縛縣縞縝縉縐罹羲翰翱翮耨膳膩膨臻興艘艙蕊蕙蕈蕨蕩蕃蕉蕭蕪蕞螃螟螞螢融衡褪褲褥褫褡親覦諦諺諫諱謀諜諧諮諾謁謂諷諭諳諶諼豫豭貓賴蹄踱踴蹂踹踵輻輯輸輳辨辦遵遴選遲遼遺鄴醒錠錶鋸錳錯錢鋼錫錄錚"], ["c040","錐錦錡錕錮錙閻隧隨險雕霎霑霖霍霓霏靛靜靦鞘頰頸頻頷頭頹頤餐館餞餛餡餚駭駢駱骸骼髻髭鬨鮑鴕鴣鴦鴨鴒鴛默黔龍龜優償儡儲勵嚎嚀嚐嚅嚇"], ["c0a1","嚏壕壓壑壎嬰嬪嬤孺尷屨嶼嶺嶽嶸幫彌徽應懂懇懦懋戲戴擎擊擘擠擰擦擬擱擢擭斂斃曙曖檀檔檄檢檜櫛檣橾檗檐檠歜殮毚氈濘濱濟濠濛濤濫濯澀濬濡濩濕濮濰燧營燮燦燥燭燬燴燠爵牆獰獲璩環璦璨癆療癌盪瞳瞪瞰瞬"], ["c140","瞧瞭矯磷磺磴磯礁禧禪穗窿簇簍篾篷簌篠糠糜糞糢糟糙糝縮績繆縷縲繃縫總縱繅繁縴縹繈縵縿縯罄翳翼聱聲聰聯聳臆臃膺臂臀膿膽臉膾臨舉艱薪"], ["c1a1","薄蕾薜薑薔薯薛薇薨薊虧蟀蟑螳蟒蟆螫螻螺蟈蟋褻褶襄褸褽覬謎謗謙講謊謠謝謄謐豁谿豳賺賽購賸賻趨蹉蹋蹈蹊轄輾轂轅輿避遽還邁邂邀鄹醣醞醜鍍鎂錨鍵鍊鍥鍋錘鍾鍬鍛鍰鍚鍔闊闋闌闈闆隱隸雖霜霞鞠韓顆颶餵騁"], ["c240","駿鮮鮫鮪鮭鴻鴿麋黏點黜黝黛鼾齋叢嚕嚮壙壘嬸彝懣戳擴擲擾攆擺擻擷斷曜朦檳檬櫃檻檸櫂檮檯歟歸殯瀉瀋濾瀆濺瀑瀏燻燼燾燸獷獵璧璿甕癖癘"], ["c2a1","癒瞽瞿瞻瞼礎禮穡穢穠竄竅簫簧簪簞簣簡糧織繕繞繚繡繒繙罈翹翻職聶臍臏舊藏薩藍藐藉薰薺薹薦蟯蟬蟲蟠覆覲觴謨謹謬謫豐贅蹙蹣蹦蹤蹟蹕軀轉轍邇邃邈醫醬釐鎔鎊鎖鎢鎳鎮鎬鎰鎘鎚鎗闔闖闐闕離雜雙雛雞霤鞣鞦"], ["c340","鞭韹額顏題顎顓颺餾餿餽餮馥騎髁鬃鬆魏魎魍鯊鯉鯽鯈鯀鵑鵝鵠黠鼕鼬儳嚥壞壟壢寵龐廬懲懷懶懵攀攏曠曝櫥櫝櫚櫓瀛瀟瀨瀚瀝瀕瀘爆爍牘犢獸"], ["c3a1","獺璽瓊瓣疇疆癟癡矇礙禱穫穩簾簿簸簽簷籀繫繭繹繩繪羅繳羶羹羸臘藩藝藪藕藤藥藷蟻蠅蠍蟹蟾襠襟襖襞譁譜識證譚譎譏譆譙贈贊蹼蹲躇蹶蹬蹺蹴轔轎辭邊邋醱醮鏡鏑鏟鏃鏈鏜鏝鏖鏢鏍鏘鏤鏗鏨關隴難霪霧靡韜韻類"], ["c440","願顛颼饅饉騖騙鬍鯨鯧鯖鯛鶉鵡鵲鵪鵬麒麗麓麴勸嚨嚷嚶嚴嚼壤孀孃孽寶巉懸懺攘攔攙曦朧櫬瀾瀰瀲爐獻瓏癢癥礦礪礬礫竇競籌籃籍糯糰辮繽繼"], ["c4a1","纂罌耀臚艦藻藹蘑藺蘆蘋蘇蘊蠔蠕襤覺觸議譬警譯譟譫贏贍躉躁躅躂醴釋鐘鐃鏽闡霰飄饒饑馨騫騰騷騵鰓鰍鹹麵黨鼯齟齣齡儷儸囁囀囂夔屬巍懼懾攝攜斕曩櫻欄櫺殲灌爛犧瓖瓔癩矓籐纏續羼蘗蘭蘚蠣蠢蠡蠟襪襬覽譴"], ["c540","護譽贓躊躍躋轟辯醺鐮鐳鐵鐺鐸鐲鐫闢霸霹露響顧顥饗驅驃驀騾髏魔魑鰭鰥鶯鶴鷂鶸麝黯鼙齜齦齧儼儻囈囊囉孿巔巒彎懿攤權歡灑灘玀瓤疊癮癬"], ["c5a1","禳籠籟聾聽臟襲襯觼讀贖贗躑躓轡酈鑄鑑鑒霽霾韃韁顫饕驕驍髒鬚鱉鰱鰾鰻鷓鷗鼴齬齪龔囌巖戀攣攫攪曬欐瓚竊籤籣籥纓纖纔臢蘸蘿蠱變邐邏鑣鑠鑤靨顯饜驚驛驗髓體髑鱔鱗鱖鷥麟黴囑壩攬灞癱癲矗罐羈蠶蠹衢讓讒"], ["c640","讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲"], ["c940","乂乜凵匚厂万丌乇亍囗兀屮彳丏冇与丮亓仂仉仈冘勼卬厹圠夃夬尐巿旡殳毌气爿丱丼仨仜仩仡仝仚刌匜卌圢圣夗夯宁宄尒尻屴屳帄庀庂忉戉扐氕"], ["c9a1","氶汃氿氻犮犰玊禸肊阞伎优伬仵伔仱伀价伈伝伂伅伢伓伄仴伒冱刓刉刐劦匢匟卍厊吇囡囟圮圪圴夼妀奼妅奻奾奷奿孖尕尥屼屺屻屾巟幵庄异弚彴忕忔忏扜扞扤扡扦扢扙扠扚扥旯旮朾朹朸朻机朿朼朳氘汆汒汜汏汊汔汋"], ["ca40","汌灱牞犴犵玎甪癿穵网艸艼芀艽艿虍襾邙邗邘邛邔阢阤阠阣佖伻佢佉体佤伾佧佒佟佁佘伭伳伿佡冏冹刜刞刡劭劮匉卣卲厎厏吰吷吪呔呅吙吜吥吘"], ["caa1","吽呏呁吨吤呇囮囧囥坁坅坌坉坋坒夆奀妦妘妠妗妎妢妐妏妧妡宎宒尨尪岍岏岈岋岉岒岊岆岓岕巠帊帎庋庉庌庈庍弅弝彸彶忒忑忐忭忨忮忳忡忤忣忺忯忷忻怀忴戺抃抌抎抏抔抇扱扻扺扰抁抈扷扽扲扴攷旰旴旳旲旵杅杇"], ["cb40","杙杕杌杈杝杍杚杋毐氙氚汸汧汫沄沋沏汱汯汩沚汭沇沕沜汦汳汥汻沎灴灺牣犿犽狃狆狁犺狅玕玗玓玔玒町甹疔疕皁礽耴肕肙肐肒肜芐芏芅芎芑芓"], ["cba1","芊芃芄豸迉辿邟邡邥邞邧邠阰阨阯阭丳侘佼侅佽侀侇佶佴侉侄佷佌侗佪侚佹侁佸侐侜侔侞侒侂侕佫佮冞冼冾刵刲刳剆刱劼匊匋匼厒厔咇呿咁咑咂咈呫呺呾呥呬呴呦咍呯呡呠咘呣呧呤囷囹坯坲坭坫坱坰坶垀坵坻坳坴坢"], ["cc40","坨坽夌奅妵妺姏姎妲姌姁妶妼姃姖妱妽姀姈妴姇孢孥宓宕屄屇岮岤岠岵岯岨岬岟岣岭岢岪岧岝岥岶岰岦帗帔帙弨弢弣弤彔徂彾彽忞忥怭怦怙怲怋"], ["cca1","怴怊怗怳怚怞怬怢怍怐怮怓怑怌怉怜戔戽抭抴拑抾抪抶拊抮抳抯抻抩抰抸攽斨斻昉旼昄昒昈旻昃昋昍昅旽昑昐曶朊枅杬枎枒杶杻枘枆构杴枍枌杺枟枑枙枃杽极杸杹枔欥殀歾毞氝沓泬泫泮泙沶泔沭泧沷泐泂沺泃泆泭泲"], ["cd40","泒泝沴沊沝沀泞泀洰泍泇沰泹泏泩泑炔炘炅炓炆炄炑炖炂炚炃牪狖狋狘狉狜狒狔狚狌狑玤玡玭玦玢玠玬玝瓝瓨甿畀甾疌疘皯盳盱盰盵矸矼矹矻矺"], ["cda1","矷祂礿秅穸穻竻籵糽耵肏肮肣肸肵肭舠芠苀芫芚芘芛芵芧芮芼芞芺芴芨芡芩苂芤苃芶芢虰虯虭虮豖迒迋迓迍迖迕迗邲邴邯邳邰阹阽阼阺陃俍俅俓侲俉俋俁俔俜俙侻侳俛俇俖侺俀侹俬剄剉勀勂匽卼厗厖厙厘咺咡咭咥哏"], ["ce40","哃茍咷咮哖咶哅哆咠呰咼咢咾呲哞咰垵垞垟垤垌垗垝垛垔垘垏垙垥垚垕壴复奓姡姞姮娀姱姝姺姽姼姶姤姲姷姛姩姳姵姠姾姴姭宨屌峐峘峌峗峋峛"], ["cea1","峞峚峉峇峊峖峓峔峏峈峆峎峟峸巹帡帢帣帠帤庰庤庢庛庣庥弇弮彖徆怷怹恔恲恞恅恓恇恉恛恌恀恂恟怤恄恘恦恮扂扃拏挍挋拵挎挃拫拹挏挌拸拶挀挓挔拺挕拻拰敁敃斪斿昶昡昲昵昜昦昢昳昫昺昝昴昹昮朏朐柁柲柈枺"], ["cf40","柜枻柸柘柀枷柅柫柤柟枵柍枳柷柶柮柣柂枹柎柧柰枲柼柆柭柌枮柦柛柺柉柊柃柪柋欨殂殄殶毖毘毠氠氡洨洴洭洟洼洿洒洊泚洳洄洙洺洚洑洀洝浂"], ["cfa1","洁洘洷洃洏浀洇洠洬洈洢洉洐炷炟炾炱炰炡炴炵炩牁牉牊牬牰牳牮狊狤狨狫狟狪狦狣玅珌珂珈珅玹玶玵玴珫玿珇玾珃珆玸珋瓬瓮甮畇畈疧疪癹盄眈眃眄眅眊盷盻盺矧矨砆砑砒砅砐砏砎砉砃砓祊祌祋祅祄秕种秏秖秎窀"], ["d040","穾竑笀笁籺籸籹籿粀粁紃紈紁罘羑羍羾耇耎耏耔耷胘胇胠胑胈胂胐胅胣胙胜胊胕胉胏胗胦胍臿舡芔苙苾苹茇苨茀苕茺苫苖苴苬苡苲苵茌苻苶苰苪"], ["d0a1","苤苠苺苳苭虷虴虼虳衁衎衧衪衩觓訄訇赲迣迡迮迠郱邽邿郕郅邾郇郋郈釔釓陔陏陑陓陊陎倞倅倇倓倢倰倛俵俴倳倷倬俶俷倗倜倠倧倵倯倱倎党冔冓凊凄凅凈凎剡剚剒剞剟剕剢勍匎厞唦哢唗唒哧哳哤唚哿唄唈哫唑唅哱"], ["d140","唊哻哷哸哠唎唃唋圁圂埌堲埕埒垺埆垽垼垸垶垿埇埐垹埁夎奊娙娖娭娮娕娏娗娊娞娳孬宧宭宬尃屖屔峬峿峮峱峷崀峹帩帨庨庮庪庬弳弰彧恝恚恧"], ["d1a1","恁悢悈悀悒悁悝悃悕悛悗悇悜悎戙扆拲挐捖挬捄捅挶捃揤挹捋捊挼挩捁挴捘捔捙挭捇挳捚捑挸捗捀捈敊敆旆旃旄旂晊晟晇晑朒朓栟栚桉栲栳栻桋桏栖栱栜栵栫栭栯桎桄栴栝栒栔栦栨栮桍栺栥栠欬欯欭欱欴歭肂殈毦毤"], ["d240","毨毣毢毧氥浺浣浤浶洍浡涒浘浢浭浯涑涍淯浿涆浞浧浠涗浰浼浟涂涘洯浨涋浾涀涄洖涃浻浽浵涐烜烓烑烝烋缹烢烗烒烞烠烔烍烅烆烇烚烎烡牂牸"], ["d2a1","牷牶猀狺狴狾狶狳狻猁珓珙珥珖玼珧珣珩珜珒珛珔珝珚珗珘珨瓞瓟瓴瓵甡畛畟疰痁疻痄痀疿疶疺皊盉眝眛眐眓眒眣眑眕眙眚眢眧砣砬砢砵砯砨砮砫砡砩砳砪砱祔祛祏祜祓祒祑秫秬秠秮秭秪秜秞秝窆窉窅窋窌窊窇竘笐"], ["d340","笄笓笅笏笈笊笎笉笒粄粑粊粌粈粍粅紞紝紑紎紘紖紓紟紒紏紌罜罡罞罠罝罛羖羒翃翂翀耖耾耹胺胲胹胵脁胻脀舁舯舥茳茭荄茙荑茥荖茿荁茦茜茢"], ["d3a1","荂荎茛茪茈茼荍茖茤茠茷茯茩荇荅荌荓茞茬荋茧荈虓虒蚢蚨蚖蚍蚑蚞蚇蚗蚆蚋蚚蚅蚥蚙蚡蚧蚕蚘蚎蚝蚐蚔衃衄衭衵衶衲袀衱衿衯袃衾衴衼訒豇豗豻貤貣赶赸趵趷趶軑軓迾迵适迿迻逄迼迶郖郠郙郚郣郟郥郘郛郗郜郤酐"], ["d440","酎酏釕釢釚陜陟隼飣髟鬯乿偰偪偡偞偠偓偋偝偲偈偍偁偛偊偢倕偅偟偩偫偣偤偆偀偮偳偗偑凐剫剭剬剮勖勓匭厜啵啶唼啍啐唴唪啑啢唶唵唰啒啅"], ["d4a1","唌唲啥啎唹啈唭唻啀啋圊圇埻堔埢埶埜埴堀埭埽堈埸堋埳埏堇埮埣埲埥埬埡堎埼堐埧堁堌埱埩埰堍堄奜婠婘婕婧婞娸娵婭婐婟婥婬婓婤婗婃婝婒婄婛婈媎娾婍娹婌婰婩婇婑婖婂婜孲孮寁寀屙崞崋崝崚崠崌崨崍崦崥崏"], ["d540","崰崒崣崟崮帾帴庱庴庹庲庳弶弸徛徖徟悊悐悆悾悰悺惓惔惏惤惙惝惈悱惛悷惊悿惃惍惀挲捥掊掂捽掽掞掭掝掗掫掎捯掇掐据掯捵掜捭掮捼掤挻掟"], ["d5a1","捸掅掁掑掍捰敓旍晥晡晛晙晜晢朘桹梇梐梜桭桮梮梫楖桯梣梬梩桵桴梲梏桷梒桼桫桲梪梀桱桾梛梖梋梠梉梤桸桻梑梌梊桽欶欳欷欸殑殏殍殎殌氪淀涫涴涳湴涬淩淢涷淶淔渀淈淠淟淖涾淥淜淝淛淴淊涽淭淰涺淕淂淏淉"], ["d640","淐淲淓淽淗淍淣涻烺焍烷焗烴焌烰焄烳焐烼烿焆焓焀烸烶焋焂焎牾牻牼牿猝猗猇猑猘猊猈狿猏猞玈珶珸珵琄琁珽琇琀珺珼珿琌琋珴琈畤畣痎痒痏"], ["d6a1","痋痌痑痐皏皉盓眹眯眭眱眲眴眳眽眥眻眵硈硒硉硍硊硌砦硅硐祤祧祩祪祣祫祡离秺秸秶秷窏窔窐笵筇笴笥笰笢笤笳笘笪笝笱笫笭笯笲笸笚笣粔粘粖粣紵紽紸紶紺絅紬紩絁絇紾紿絊紻紨罣羕羜羝羛翊翋翍翐翑翇翏翉耟"], ["d740","耞耛聇聃聈脘脥脙脛脭脟脬脞脡脕脧脝脢舑舸舳舺舴舲艴莐莣莨莍荺荳莤荴莏莁莕莙荵莔莩荽莃莌莝莛莪莋荾莥莯莈莗莰荿莦莇莮荶莚虙虖蚿蚷"], ["d7a1","蛂蛁蛅蚺蚰蛈蚹蚳蚸蛌蚴蚻蚼蛃蚽蚾衒袉袕袨袢袪袚袑袡袟袘袧袙袛袗袤袬袌袓袎覂觖觙觕訰訧訬訞谹谻豜豝豽貥赽赻赹趼跂趹趿跁軘軞軝軜軗軠軡逤逋逑逜逌逡郯郪郰郴郲郳郔郫郬郩酖酘酚酓酕釬釴釱釳釸釤釹釪"], ["d840","釫釷釨釮镺閆閈陼陭陫陱陯隿靪頄飥馗傛傕傔傞傋傣傃傌傎傝偨傜傒傂傇兟凔匒匑厤厧喑喨喥喭啷噅喢喓喈喏喵喁喣喒喤啽喌喦啿喕喡喎圌堩堷"], ["d8a1","堙堞堧堣堨埵塈堥堜堛堳堿堶堮堹堸堭堬堻奡媯媔媟婺媢媞婸媦婼媥媬媕媮娷媄媊媗媃媋媩婻婽媌媜媏媓媝寪寍寋寔寑寊寎尌尰崷嵃嵫嵁嵋崿崵嵑嵎嵕崳崺嵒崽崱嵙嵂崹嵉崸崼崲崶嵀嵅幄幁彘徦徥徫惉悹惌惢惎惄愔"], ["d940","惲愊愖愅惵愓惸惼惾惁愃愘愝愐惿愄愋扊掔掱掰揎揥揨揯揃撝揳揊揠揶揕揲揵摡揟掾揝揜揄揘揓揂揇揌揋揈揰揗揙攲敧敪敤敜敨敥斌斝斞斮旐旒"], ["d9a1","晼晬晻暀晱晹晪晲朁椌棓椄棜椪棬棪棱椏棖棷棫棤棶椓椐棳棡椇棌椈楰梴椑棯棆椔棸棐棽棼棨椋椊椗棎棈棝棞棦棴棑椆棔棩椕椥棇欹欻欿欼殔殗殙殕殽毰毲毳氰淼湆湇渟湉溈渼渽湅湢渫渿湁湝湳渜渳湋湀湑渻渃渮湞"], ["da40","湨湜湡渱渨湠湱湫渹渢渰湓湥渧湸湤湷湕湹湒湦渵渶湚焠焞焯烻焮焱焣焥焢焲焟焨焺焛牋牚犈犉犆犅犋猒猋猰猢猱猳猧猲猭猦猣猵猌琮琬琰琫琖"], ["daa1","琚琡琭琱琤琣琝琩琠琲瓻甯畯畬痧痚痡痦痝痟痤痗皕皒盚睆睇睄睍睅睊睎睋睌矞矬硠硤硥硜硭硱硪确硰硩硨硞硢祴祳祲祰稂稊稃稌稄窙竦竤筊笻筄筈筌筎筀筘筅粢粞粨粡絘絯絣絓絖絧絪絏絭絜絫絒絔絩絑絟絎缾缿罥"], ["db40","罦羢羠羡翗聑聏聐胾胔腃腊腒腏腇脽腍脺臦臮臷臸臹舄舼舽舿艵茻菏菹萣菀菨萒菧菤菼菶萐菆菈菫菣莿萁菝菥菘菿菡菋菎菖菵菉萉萏菞萑萆菂菳"], ["dba1","菕菺菇菑菪萓菃菬菮菄菻菗菢萛菛菾蛘蛢蛦蛓蛣蛚蛪蛝蛫蛜蛬蛩蛗蛨蛑衈衖衕袺裗袹袸裀袾袶袼袷袽袲褁裉覕覘覗觝觚觛詎詍訹詙詀詗詘詄詅詒詈詑詊詌詏豟貁貀貺貾貰貹貵趄趀趉跘跓跍跇跖跜跏跕跙跈跗跅軯軷軺"], ["dc40","軹軦軮軥軵軧軨軶軫軱軬軴軩逭逴逯鄆鄬鄄郿郼鄈郹郻鄁鄀鄇鄅鄃酡酤酟酢酠鈁鈊鈥鈃鈚鈦鈏鈌鈀鈒釿釽鈆鈄鈧鈂鈜鈤鈙鈗鈅鈖镻閍閌閐隇陾隈"], ["dca1","隉隃隀雂雈雃雱雰靬靰靮頇颩飫鳦黹亃亄亶傽傿僆傮僄僊傴僈僂傰僁傺傱僋僉傶傸凗剺剸剻剼嗃嗛嗌嗐嗋嗊嗝嗀嗔嗄嗩喿嗒喍嗏嗕嗢嗖嗈嗲嗍嗙嗂圔塓塨塤塏塍塉塯塕塎塝塙塥塛堽塣塱壼嫇嫄嫋媺媸媱媵媰媿嫈媻嫆"], ["dd40","媷嫀嫊媴媶嫍媹媐寖寘寙尟尳嵱嵣嵊嵥嵲嵬嵞嵨嵧嵢巰幏幎幊幍幋廅廌廆廋廇彀徯徭惷慉慊愫慅愶愲愮慆愯慏愩慀戠酨戣戥戤揅揱揫搐搒搉搠搤"], ["dda1","搳摃搟搕搘搹搷搢搣搌搦搰搨摁搵搯搊搚摀搥搧搋揧搛搮搡搎敯斒旓暆暌暕暐暋暊暙暔晸朠楦楟椸楎楢楱椿楅楪椹楂楗楙楺楈楉椵楬椳椽楥棰楸椴楩楀楯楄楶楘楁楴楌椻楋椷楜楏楑椲楒椯楻椼歆歅歃歂歈歁殛嗀毻毼"], ["de40","毹毷毸溛滖滈溏滀溟溓溔溠溱溹滆滒溽滁溞滉溷溰滍溦滏溲溾滃滜滘溙溒溎溍溤溡溿溳滐滊溗溮溣煇煔煒煣煠煁煝煢煲煸煪煡煂煘煃煋煰煟煐煓"], ["dea1","煄煍煚牏犍犌犑犐犎猼獂猻猺獀獊獉瑄瑊瑋瑒瑑瑗瑀瑏瑐瑎瑂瑆瑍瑔瓡瓿瓾瓽甝畹畷榃痯瘏瘃痷痾痼痹痸瘐痻痶痭痵痽皙皵盝睕睟睠睒睖睚睩睧睔睙睭矠碇碚碔碏碄碕碅碆碡碃硹碙碀碖硻祼禂祽祹稑稘稙稒稗稕稢稓"], ["df40","稛稐窣窢窞竫筦筤筭筴筩筲筥筳筱筰筡筸筶筣粲粴粯綈綆綀綍絿綅絺綎絻綃絼綌綔綄絽綒罭罫罧罨罬羦羥羧翛翜耡腤腠腷腜腩腛腢腲朡腞腶腧腯"], ["dfa1","腄腡舝艉艄艀艂艅蓱萿葖葶葹蒏蒍葥葑葀蒆葧萰葍葽葚葙葴葳葝蔇葞萷萺萴葺葃葸萲葅萩菙葋萯葂萭葟葰萹葎葌葒葯蓅蒎萻葇萶萳葨葾葄萫葠葔葮葐蜋蜄蛷蜌蛺蛖蛵蝍蛸蜎蜉蜁蛶蜍蜅裖裋裍裎裞裛裚裌裐覅覛觟觥觤"], ["e040","觡觠觢觜触詶誆詿詡訿詷誂誄詵誃誁詴詺谼豋豊豥豤豦貆貄貅賌赨赩趑趌趎趏趍趓趔趐趒跰跠跬跱跮跐跩跣跢跧跲跫跴輆軿輁輀輅輇輈輂輋遒逿"], ["e0a1","遄遉逽鄐鄍鄏鄑鄖鄔鄋鄎酮酯鉈鉒鈰鈺鉦鈳鉥鉞銃鈮鉊鉆鉭鉬鉏鉠鉧鉯鈶鉡鉰鈱鉔鉣鉐鉲鉎鉓鉌鉖鈲閟閜閞閛隒隓隑隗雎雺雽雸雵靳靷靸靲頏頍頎颬飶飹馯馲馰馵骭骫魛鳪鳭鳧麀黽僦僔僗僨僳僛僪僝僤僓僬僰僯僣僠"], ["e140","凘劀劁勩勫匰厬嘧嘕嘌嘒嗼嘏嘜嘁嘓嘂嗺嘝嘄嗿嗹墉塼墐墘墆墁塿塴墋塺墇墑墎塶墂墈塻墔墏壾奫嫜嫮嫥嫕嫪嫚嫭嫫嫳嫢嫠嫛嫬嫞嫝嫙嫨嫟孷寠"], ["e1a1","寣屣嶂嶀嵽嶆嵺嶁嵷嶊嶉嶈嵾嵼嶍嵹嵿幘幙幓廘廑廗廎廜廕廙廒廔彄彃彯徶愬愨慁慞慱慳慒慓慲慬憀慴慔慺慛慥愻慪慡慖戩戧戫搫摍摛摝摴摶摲摳摽摵摦撦摎撂摞摜摋摓摠摐摿搿摬摫摙摥摷敳斠暡暠暟朅朄朢榱榶槉"], ["e240","榠槎榖榰榬榼榑榙榎榧榍榩榾榯榿槄榽榤槔榹槊榚槏榳榓榪榡榞槙榗榐槂榵榥槆歊歍歋殞殟殠毃毄毾滎滵滱漃漥滸漷滻漮漉潎漙漚漧漘漻漒滭漊"], ["e2a1","漶潳滹滮漭潀漰漼漵滫漇漎潃漅滽滶漹漜滼漺漟漍漞漈漡熇熐熉熀熅熂熏煻熆熁熗牄牓犗犕犓獃獍獑獌瑢瑳瑱瑵瑲瑧瑮甀甂甃畽疐瘖瘈瘌瘕瘑瘊瘔皸瞁睼瞅瞂睮瞀睯睾瞃碲碪碴碭碨硾碫碞碥碠碬碢碤禘禊禋禖禕禔禓"], ["e340","禗禈禒禐稫穊稰稯稨稦窨窫窬竮箈箜箊箑箐箖箍箌箛箎箅箘劄箙箤箂粻粿粼粺綧綷緂綣綪緁緀緅綝緎緄緆緋緌綯綹綖綼綟綦綮綩綡緉罳翢翣翥翞"], ["e3a1","耤聝聜膉膆膃膇膍膌膋舕蒗蒤蒡蒟蒺蓎蓂蒬蒮蒫蒹蒴蓁蓍蒪蒚蒱蓐蒝蒧蒻蒢蒔蓇蓌蒛蒩蒯蒨蓖蒘蒶蓏蒠蓗蓔蓒蓛蒰蒑虡蜳蜣蜨蝫蝀蜮蜞蜡蜙蜛蝃蜬蝁蜾蝆蜠蜲蜪蜭蜼蜒蜺蜱蜵蝂蜦蜧蜸蜤蜚蜰蜑裷裧裱裲裺裾裮裼裶裻"], ["e440","裰裬裫覝覡覟覞觩觫觨誫誙誋誒誏誖谽豨豩賕賏賗趖踉踂跿踍跽踊踃踇踆踅跾踀踄輐輑輎輍鄣鄜鄠鄢鄟鄝鄚鄤鄡鄛酺酲酹酳銥銤鉶銛鉺銠銔銪銍"], ["e4a1","銦銚銫鉹銗鉿銣鋮銎銂銕銢鉽銈銡銊銆銌銙銧鉾銇銩銝銋鈭隞隡雿靘靽靺靾鞃鞀鞂靻鞄鞁靿韎韍頖颭颮餂餀餇馝馜駃馹馻馺駂馽駇骱髣髧鬾鬿魠魡魟鳱鳲鳵麧僿儃儰僸儆儇僶僾儋儌僽儊劋劌勱勯噈噂噌嘵噁噊噉噆噘"], ["e540","噚噀嘳嘽嘬嘾嘸嘪嘺圚墫墝墱墠墣墯墬墥墡壿嫿嫴嫽嫷嫶嬃嫸嬂嫹嬁嬇嬅嬏屧嶙嶗嶟嶒嶢嶓嶕嶠嶜嶡嶚嶞幩幝幠幜緳廛廞廡彉徲憋憃慹憱憰憢憉"], ["e5a1","憛憓憯憭憟憒憪憡憍慦憳戭摮摰撖撠撅撗撜撏撋撊撌撣撟摨撱撘敶敺敹敻斲斳暵暰暩暲暷暪暯樀樆樗槥槸樕槱槤樠槿槬槢樛樝槾樧槲槮樔槷槧橀樈槦槻樍槼槫樉樄樘樥樏槶樦樇槴樖歑殥殣殢殦氁氀毿氂潁漦潾澇濆澒"], ["e640","澍澉澌潢潏澅潚澖潶潬澂潕潲潒潐潗澔澓潝漀潡潫潽潧澐潓澋潩潿澕潣潷潪潻熲熯熛熰熠熚熩熵熝熥熞熤熡熪熜熧熳犘犚獘獒獞獟獠獝獛獡獚獙"], ["e6a1","獢璇璉璊璆璁瑽璅璈瑼瑹甈甇畾瘥瘞瘙瘝瘜瘣瘚瘨瘛皜皝皞皛瞍瞏瞉瞈磍碻磏磌磑磎磔磈磃磄磉禚禡禠禜禢禛歶稹窲窴窳箷篋箾箬篎箯箹篊箵糅糈糌糋緷緛緪緧緗緡縃緺緦緶緱緰緮緟罶羬羰羭翭翫翪翬翦翨聤聧膣膟"], ["e740","膞膕膢膙膗舖艏艓艒艐艎艑蔤蔻蔏蔀蔩蔎蔉蔍蔟蔊蔧蔜蓻蔫蓺蔈蔌蓴蔪蓲蔕蓷蓫蓳蓼蔒蓪蓩蔖蓾蔨蔝蔮蔂蓽蔞蓶蔱蔦蓧蓨蓰蓯蓹蔘蔠蔰蔋蔙蔯虢"], ["e7a1","蝖蝣蝤蝷蟡蝳蝘蝔蝛蝒蝡蝚蝑蝞蝭蝪蝐蝎蝟蝝蝯蝬蝺蝮蝜蝥蝏蝻蝵蝢蝧蝩衚褅褌褔褋褗褘褙褆褖褑褎褉覢覤覣觭觰觬諏諆誸諓諑諔諕誻諗誾諀諅諘諃誺誽諙谾豍貏賥賟賙賨賚賝賧趠趜趡趛踠踣踥踤踮踕踛踖踑踙踦踧"], ["e840","踔踒踘踓踜踗踚輬輤輘輚輠輣輖輗遳遰遯遧遫鄯鄫鄩鄪鄲鄦鄮醅醆醊醁醂醄醀鋐鋃鋄鋀鋙銶鋏鋱鋟鋘鋩鋗鋝鋌鋯鋂鋨鋊鋈鋎鋦鋍鋕鋉鋠鋞鋧鋑鋓"], ["e8a1","銵鋡鋆銴镼閬閫閮閰隤隢雓霅霈霂靚鞊鞎鞈韐韏頞頝頦頩頨頠頛頧颲餈飺餑餔餖餗餕駜駍駏駓駔駎駉駖駘駋駗駌骳髬髫髳髲髱魆魃魧魴魱魦魶魵魰魨魤魬鳼鳺鳽鳿鳷鴇鴀鳹鳻鴈鴅鴄麃黓鼏鼐儜儓儗儚儑凞匴叡噰噠噮"], ["e940","噳噦噣噭噲噞噷圜圛壈墽壉墿墺壂墼壆嬗嬙嬛嬡嬔嬓嬐嬖嬨嬚嬠嬞寯嶬嶱嶩嶧嶵嶰嶮嶪嶨嶲嶭嶯嶴幧幨幦幯廩廧廦廨廥彋徼憝憨憖懅憴懆懁懌憺"], ["e9a1","憿憸憌擗擖擐擏擉撽撉擃擛擳擙攳敿敼斢曈暾曀曊曋曏暽暻暺曌朣樴橦橉橧樲橨樾橝橭橶橛橑樨橚樻樿橁橪橤橐橏橔橯橩橠樼橞橖橕橍橎橆歕歔歖殧殪殫毈毇氄氃氆澭濋澣濇澼濎濈潞濄澽澞濊澨瀄澥澮澺澬澪濏澿澸"], ["ea40","澢濉澫濍澯澲澰燅燂熿熸燖燀燁燋燔燊燇燏熽燘熼燆燚燛犝犞獩獦獧獬獥獫獪瑿璚璠璔璒璕璡甋疀瘯瘭瘱瘽瘳瘼瘵瘲瘰皻盦瞚瞝瞡瞜瞛瞢瞣瞕瞙"], ["eaa1","瞗磝磩磥磪磞磣磛磡磢磭磟磠禤穄穈穇窶窸窵窱窷篞篣篧篝篕篥篚篨篹篔篪篢篜篫篘篟糒糔糗糐糑縒縡縗縌縟縠縓縎縜縕縚縢縋縏縖縍縔縥縤罃罻罼罺羱翯耪耩聬膱膦膮膹膵膫膰膬膴膲膷膧臲艕艖艗蕖蕅蕫蕍蕓蕡蕘"], ["eb40","蕀蕆蕤蕁蕢蕄蕑蕇蕣蔾蕛蕱蕎蕮蕵蕕蕧蕠薌蕦蕝蕔蕥蕬虣虥虤螛螏螗螓螒螈螁螖螘蝹螇螣螅螐螑螝螄螔螜螚螉褞褦褰褭褮褧褱褢褩褣褯褬褟觱諠"], ["eba1","諢諲諴諵諝謔諤諟諰諈諞諡諨諿諯諻貑貒貐賵賮賱賰賳赬赮趥趧踳踾踸蹀蹅踶踼踽蹁踰踿躽輶輮輵輲輹輷輴遶遹遻邆郺鄳鄵鄶醓醐醑醍醏錧錞錈錟錆錏鍺錸錼錛錣錒錁鍆錭錎錍鋋錝鋺錥錓鋹鋷錴錂錤鋿錩錹錵錪錔錌"], ["ec40","錋鋾錉錀鋻錖閼闍閾閹閺閶閿閵閽隩雔霋霒霐鞙鞗鞔韰韸頵頯頲餤餟餧餩馞駮駬駥駤駰駣駪駩駧骹骿骴骻髶髺髹髷鬳鮀鮅鮇魼魾魻鮂鮓鮒鮐魺鮕"], ["eca1","魽鮈鴥鴗鴠鴞鴔鴩鴝鴘鴢鴐鴙鴟麈麆麇麮麭黕黖黺鼒鼽儦儥儢儤儠儩勴嚓嚌嚍嚆嚄嚃噾嚂噿嚁壖壔壏壒嬭嬥嬲嬣嬬嬧嬦嬯嬮孻寱寲嶷幬幪徾徻懃憵憼懧懠懥懤懨懞擯擩擣擫擤擨斁斀斶旚曒檍檖檁檥檉檟檛檡檞檇檓檎"], ["ed40","檕檃檨檤檑橿檦檚檅檌檒歛殭氉濌澩濴濔濣濜濭濧濦濞濲濝濢濨燡燱燨燲燤燰燢獳獮獯璗璲璫璐璪璭璱璥璯甐甑甒甏疄癃癈癉癇皤盩瞵瞫瞲瞷瞶"], ["eda1","瞴瞱瞨矰磳磽礂磻磼磲礅磹磾礄禫禨穜穛穖穘穔穚窾竀竁簅簏篲簀篿篻簎篴簋篳簂簉簃簁篸篽簆篰篱簐簊糨縭縼繂縳顈縸縪繉繀繇縩繌縰縻縶繄縺罅罿罾罽翴翲耬膻臄臌臊臅臇膼臩艛艚艜薃薀薏薧薕薠薋薣蕻薤薚薞"], ["ee40","蕷蕼薉薡蕺蕸蕗薎薖薆薍薙薝薁薢薂薈薅蕹蕶薘薐薟虨螾螪螭蟅螰螬螹螵螼螮蟉蟃蟂蟌螷螯蟄蟊螴螶螿螸螽蟞螲褵褳褼褾襁襒褷襂覭覯覮觲觳謞"], ["eea1","謘謖謑謅謋謢謏謒謕謇謍謈謆謜謓謚豏豰豲豱豯貕貔賹赯蹎蹍蹓蹐蹌蹇轃轀邅遾鄸醚醢醛醙醟醡醝醠鎡鎃鎯鍤鍖鍇鍼鍘鍜鍶鍉鍐鍑鍠鍭鎏鍌鍪鍹鍗鍕鍒鍏鍱鍷鍻鍡鍞鍣鍧鎀鍎鍙闇闀闉闃闅閷隮隰隬霠霟霘霝霙鞚鞡鞜"], ["ef40","鞞鞝韕韔韱顁顄顊顉顅顃餥餫餬餪餳餲餯餭餱餰馘馣馡騂駺駴駷駹駸駶駻駽駾駼騃骾髾髽鬁髼魈鮚鮨鮞鮛鮦鮡鮥鮤鮆鮢鮠鮯鴳鵁鵧鴶鴮鴯鴱鴸鴰"], ["efa1","鵅鵂鵃鴾鴷鵀鴽翵鴭麊麉麍麰黈黚黻黿鼤鼣鼢齔龠儱儭儮嚘嚜嚗嚚嚝嚙奰嬼屩屪巀幭幮懘懟懭懮懱懪懰懫懖懩擿攄擽擸攁攃擼斔旛曚曛曘櫅檹檽櫡櫆檺檶檷櫇檴檭歞毉氋瀇瀌瀍瀁瀅瀔瀎濿瀀濻瀦濼濷瀊爁燿燹爃燽獶"], ["f040","璸瓀璵瓁璾璶璻瓂甔甓癜癤癙癐癓癗癚皦皽盬矂瞺磿礌礓礔礉礐礒礑禭禬穟簜簩簙簠簟簭簝簦簨簢簥簰繜繐繖繣繘繢繟繑繠繗繓羵羳翷翸聵臑臒"], ["f0a1","臐艟艞薴藆藀藃藂薳薵薽藇藄薿藋藎藈藅薱薶藒蘤薸薷薾虩蟧蟦蟢蟛蟫蟪蟥蟟蟳蟤蟔蟜蟓蟭蟘蟣螤蟗蟙蠁蟴蟨蟝襓襋襏襌襆襐襑襉謪謧謣謳謰謵譇謯謼謾謱謥謷謦謶謮謤謻謽謺豂豵貙貘貗賾贄贂贀蹜蹢蹠蹗蹖蹞蹥蹧"], ["f140","蹛蹚蹡蹝蹩蹔轆轇轈轋鄨鄺鄻鄾醨醥醧醯醪鎵鎌鎒鎷鎛鎝鎉鎧鎎鎪鎞鎦鎕鎈鎙鎟鎍鎱鎑鎲鎤鎨鎴鎣鎥闒闓闑隳雗雚巂雟雘雝霣霢霥鞬鞮鞨鞫鞤鞪"], ["f1a1","鞢鞥韗韙韖韘韺顐顑顒颸饁餼餺騏騋騉騍騄騑騊騅騇騆髀髜鬈鬄鬅鬩鬵魊魌魋鯇鯆鯃鮿鯁鮵鮸鯓鮶鯄鮹鮽鵜鵓鵏鵊鵛鵋鵙鵖鵌鵗鵒鵔鵟鵘鵚麎麌黟鼁鼀鼖鼥鼫鼪鼩鼨齌齕儴儵劖勷厴嚫嚭嚦嚧嚪嚬壚壝壛夒嬽嬾嬿巃幰"], ["f240","徿懻攇攐攍攉攌攎斄旞旝曞櫧櫠櫌櫑櫙櫋櫟櫜櫐櫫櫏櫍櫞歠殰氌瀙瀧瀠瀖瀫瀡瀢瀣瀩瀗瀤瀜瀪爌爊爇爂爅犥犦犤犣犡瓋瓅璷瓃甖癠矉矊矄矱礝礛"], ["f2a1","礡礜礗礞禰穧穨簳簼簹簬簻糬糪繶繵繸繰繷繯繺繲繴繨罋罊羃羆羷翽翾聸臗臕艤艡艣藫藱藭藙藡藨藚藗藬藲藸藘藟藣藜藑藰藦藯藞藢蠀蟺蠃蟶蟷蠉蠌蠋蠆蟼蠈蟿蠊蠂襢襚襛襗襡襜襘襝襙覈覷覶觶譐譈譊譀譓譖譔譋譕"], ["f340","譑譂譒譗豃豷豶貚贆贇贉趬趪趭趫蹭蹸蹳蹪蹯蹻軂轒轑轏轐轓辴酀鄿醰醭鏞鏇鏏鏂鏚鏐鏹鏬鏌鏙鎩鏦鏊鏔鏮鏣鏕鏄鏎鏀鏒鏧镽闚闛雡霩霫霬霨霦"], ["f3a1","鞳鞷鞶韝韞韟顜顙顝顗颿颽颻颾饈饇饃馦馧騚騕騥騝騤騛騢騠騧騣騞騜騔髂鬋鬊鬎鬌鬷鯪鯫鯠鯞鯤鯦鯢鯰鯔鯗鯬鯜鯙鯥鯕鯡鯚鵷鶁鶊鶄鶈鵱鶀鵸鶆鶋鶌鵽鵫鵴鵵鵰鵩鶅鵳鵻鶂鵯鵹鵿鶇鵨麔麑黀黼鼭齀齁齍齖齗齘匷嚲"], ["f440","嚵嚳壣孅巆巇廮廯忀忁懹攗攖攕攓旟曨曣曤櫳櫰櫪櫨櫹櫱櫮櫯瀼瀵瀯瀷瀴瀱灂瀸瀿瀺瀹灀瀻瀳灁爓爔犨獽獼璺皫皪皾盭矌矎矏矍矲礥礣礧礨礤礩"], ["f4a1","禲穮穬穭竷籉籈籊籇籅糮繻繾纁纀羺翿聹臛臙舋艨艩蘢藿蘁藾蘛蘀藶蘄蘉蘅蘌藽蠙蠐蠑蠗蠓蠖襣襦覹觷譠譪譝譨譣譥譧譭趮躆躈躄轙轖轗轕轘轚邍酃酁醷醵醲醳鐋鐓鏻鐠鐏鐔鏾鐕鐐鐨鐙鐍鏵鐀鏷鐇鐎鐖鐒鏺鐉鏸鐊鏿"], ["f540","鏼鐌鏶鐑鐆闞闠闟霮霯鞹鞻韽韾顠顢顣顟飁飂饐饎饙饌饋饓騲騴騱騬騪騶騩騮騸騭髇髊髆鬐鬒鬑鰋鰈鯷鰅鰒鯸鱀鰇鰎鰆鰗鰔鰉鶟鶙鶤鶝鶒鶘鶐鶛"], ["f5a1","鶠鶔鶜鶪鶗鶡鶚鶢鶨鶞鶣鶿鶩鶖鶦鶧麙麛麚黥黤黧黦鼰鼮齛齠齞齝齙龑儺儹劘劗囃嚽嚾孈孇巋巏廱懽攛欂櫼欃櫸欀灃灄灊灈灉灅灆爝爚爙獾甗癪矐礭礱礯籔籓糲纊纇纈纋纆纍罍羻耰臝蘘蘪蘦蘟蘣蘜蘙蘧蘮蘡蘠蘩蘞蘥"], ["f640","蠩蠝蠛蠠蠤蠜蠫衊襭襩襮襫觺譹譸譅譺譻贐贔趯躎躌轞轛轝酆酄酅醹鐿鐻鐶鐩鐽鐼鐰鐹鐪鐷鐬鑀鐱闥闤闣霵霺鞿韡顤飉飆飀饘饖騹騽驆驄驂驁騺"], ["f6a1","騿髍鬕鬗鬘鬖鬺魒鰫鰝鰜鰬鰣鰨鰩鰤鰡鶷鶶鶼鷁鷇鷊鷏鶾鷅鷃鶻鶵鷎鶹鶺鶬鷈鶱鶭鷌鶳鷍鶲鹺麜黫黮黭鼛鼘鼚鼱齎齥齤龒亹囆囅囋奱孋孌巕巑廲攡攠攦攢欋欈欉氍灕灖灗灒爞爟犩獿瓘瓕瓙瓗癭皭礵禴穰穱籗籜籙籛籚"], ["f740","糴糱纑罏羇臞艫蘴蘵蘳蘬蘲蘶蠬蠨蠦蠪蠥襱覿覾觻譾讄讂讆讅譿贕躕躔躚躒躐躖躗轠轢酇鑌鑐鑊鑋鑏鑇鑅鑈鑉鑆霿韣顪顩飋饔饛驎驓驔驌驏驈驊"], ["f7a1","驉驒驐髐鬙鬫鬻魖魕鱆鱈鰿鱄鰹鰳鱁鰼鰷鰴鰲鰽鰶鷛鷒鷞鷚鷋鷐鷜鷑鷟鷩鷙鷘鷖鷵鷕鷝麶黰鼵鼳鼲齂齫龕龢儽劙壨壧奲孍巘蠯彏戁戃戄攩攥斖曫欑欒欏毊灛灚爢玂玁玃癰矔籧籦纕艬蘺虀蘹蘼蘱蘻蘾蠰蠲蠮蠳襶襴襳觾"], ["f840","讌讎讋讈豅贙躘轤轣醼鑢鑕鑝鑗鑞韄韅頀驖驙鬞鬟鬠鱒鱘鱐鱊鱍鱋鱕鱙鱌鱎鷻鷷鷯鷣鷫鷸鷤鷶鷡鷮鷦鷲鷰鷢鷬鷴鷳鷨鷭黂黐黲黳鼆鼜鼸鼷鼶齃齏"], ["f8a1","齱齰齮齯囓囍孎屭攭曭曮欓灟灡灝灠爣瓛瓥矕礸禷禶籪纗羉艭虃蠸蠷蠵衋讔讕躞躟躠躝醾醽釂鑫鑨鑩雥靆靃靇韇韥驞髕魙鱣鱧鱦鱢鱞鱠鸂鷾鸇鸃鸆鸅鸀鸁鸉鷿鷽鸄麠鼞齆齴齵齶囔攮斸欘欙欗欚灢爦犪矘矙礹籩籫糶纚"], ["f940","纘纛纙臠臡虆虇虈襹襺襼襻觿讘讙躥躤躣鑮鑭鑯鑱鑳靉顲饟鱨鱮鱭鸋鸍鸐鸏鸒鸑麡黵鼉齇齸齻齺齹圞灦籯蠼趲躦釃鑴鑸鑶鑵驠鱴鱳鱱鱵鸔鸓黶鼊"], ["f9a1","龤灨灥糷虪蠾蠽蠿讞貜躩軉靋顳顴飌饡馫驤驦驧鬤鸕鸗齈戇欞爧虌躨钂钀钁驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺鸝灩灪麤齾齉龘碁銹裏墻恒粧嫺╔╦╗╠╬╣╚╩╝╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║═╭╮╰╯▓"] ]

node_modules/iconv-lite/encodings/tables/eucjp.json

[ ["0","\u0000",127], ["8ea1","。",62], ["a1a1"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇"], ["a2a1","◆□■△▲▽▼※〒→←↑↓〓"], ["a2ba","∈∋⊆⊇⊂⊃∪∩"], ["a2ca","∧∨¬⇒⇔∀∃"], ["a2dc","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"], ["a2f2","ʼn♯♭♪†‡¶"], ["a2fe","◯"], ["a3b0","0",9], ["a3c1","A",25], ["a3e1","a",25], ["a4a1","ぁ",82], ["a5a1","ァ",85], ["a6a1","Α",16,"Σ",6], ["a6c1","α",16,"σ",6], ["a7a1","А",5,"ЁЖ",25], ["a7d1","а",5,"ёж",25], ["a8a1","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"], ["ada1","①",19,"Ⅰ",9], ["adc0","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"], ["addf","㍻〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"], ["b0a1","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"], ["b1a1","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応"], ["b2a1","押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"], ["b3a1","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱"], ["b4a1","粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"], ["b5a1","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京"], ["b6a1","供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"], ["b7a1","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲"], ["b8a1","検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"], ["b9a1","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込"], ["baa1","此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"], ["bba1","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時"], ["bca1","次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"], ["bda1","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償"], ["bea1","勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"], ["bfa1","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾"], ["c0a1","澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"], ["c1a1","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎"], ["c2a1","臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"], ["c3a1","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵"], ["c4a1","帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"], ["c5a1","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到"], ["c6a1","董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"], ["c7a1","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦"], ["c8a1","函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"], ["c9a1","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服"], ["caa1","福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"], ["cba1","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満"], ["cca1","漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"], ["cda1","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃"], ["cea1","痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"], ["cfa1","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"], ["d0a1","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"], ["d1a1","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨"], ["d2a1","辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"], ["d3a1","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉"], ["d4a1","圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"], ["d5a1","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓"], ["d6a1","屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"], ["d7a1","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚"], ["d8a1","悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"], ["d9a1","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼"], ["daa1","據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"], ["dba1","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍"], ["dca1","棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"], ["dda1","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾"], ["dea1","沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"], ["dfa1","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼"], ["e0a1","燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"], ["e1a1","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰"], ["e2a1","癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"], ["e3a1","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐"], ["e4a1","筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"], ["e5a1","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺"], ["e6a1","罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"], ["e7a1","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙"], ["e8a1","茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"], ["e9a1","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙"], ["eaa1","蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"], ["eba1","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫"], ["eca1","譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"], ["eda1","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸"], ["eea1","遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"], ["efa1","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞"], ["f0a1","陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"], ["f1a1","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷"], ["f2a1","髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"], ["f3a1","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠"], ["f4a1","堯槇遙瑤凜熙"], ["f9a1","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德"], ["faa1","忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"], ["fba1","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚"], ["fca1","釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"], ["fcf1","ⅰ",9,"¬¦'""], ["8fa2af","˘ˇ¸˙˝¯˛˚~΄΅"], ["8fa2c2","¡¦¿"], ["8fa2eb","ºª©®™¤№"], ["8fa6e1","ΆΈΉΊΪ"], ["8fa6e7","Ό"], ["8fa6e9","ΎΫ"], ["8fa6ec","Ώ"], ["8fa6f1","άέήίϊΐόςύϋΰώ"], ["8fa7c2","Ђ",10,"ЎЏ"], ["8fa7f2","ђ",10,"ўџ"], ["8fa9a1","ÆĐ"], ["8fa9a4","Ħ"], ["8fa9a6","IJ"], ["8fa9a8","ŁĿ"], ["8fa9ab","ŊØŒ"], ["8fa9af","ŦÞ"], ["8fa9c1","æđðħıijĸłŀʼnŋøœßŧþ"], ["8faaa1","ÁÀÄÂĂǍĀĄÅÃĆĈČÇĊĎÉÈËÊĚĖĒĘ"], ["8faaba","ĜĞĢĠĤÍÌÏÎǏİĪĮĨĴĶĹĽĻŃŇŅÑÓÒÖÔǑŐŌÕŔŘŖŚŜŠŞŤŢÚÙÜÛŬǓŰŪŲŮŨǗǛǙǕŴÝŸŶŹŽŻ"], ["8faba1","áàäâăǎāąåãćĉčçċďéèëêěėēęǵĝğ"], ["8fabbd","ġĥíìïîǐ"], ["8fabc5","īįĩĵķĺľļńňņñóòöôǒőōõŕřŗśŝšşťţúùüûŭǔűūųůũǘǜǚǖŵýÿŷźžż"], ["8fb0a1","丂丄丅丌丒丟丣两丨丫丮丯丰丵乀乁乄乇乑乚乜乣乨乩乴乵乹乿亍亖亗亝亯亹仃仐仚仛仠仡仢仨仯仱仳仵份仾仿伀伂伃伈伋伌伒伕伖众伙伮伱你伳伵伷伹伻伾佀佂佈佉佋佌佒佔佖佘佟佣佪佬佮佱佷佸佹佺佽佾侁侂侄"], ["8fb1a1","侅侉侊侌侎侐侒侓侔侗侙侚侞侟侲侷侹侻侼侽侾俀俁俅俆俈俉俋俌俍俏俒俜俠俢俰俲俼俽俿倀倁倄倇倊倌倎倐倓倗倘倛倜倝倞倢倧倮倰倲倳倵偀偁偂偅偆偊偌偎偑偒偓偗偙偟偠偢偣偦偧偪偭偰偱倻傁傃傄傆傊傎傏傐"], ["8fb2a1","傒傓傔傖傛傜傞",4,"傪傯傰傹傺傽僀僃僄僇僌僎僐僓僔僘僜僝僟僢僤僦僨僩僯僱僶僺僾儃儆儇儈儋儌儍儎僲儐儗儙儛儜儝儞儣儧儨儬儭儯儱儳儴儵儸儹兂兊兏兓兕兗兘兟兤兦兾冃冄冋冎冘冝冡冣冭冸冺冼冾冿凂"], ["8fb3a1","凈减凑凒凓凕凘凞凢凥凮凲凳凴凷刁刂刅划刓刕刖刘刢刨刱刲刵刼剅剉剕剗剘剚剜剟剠剡剦剮剷剸剹劀劂劅劊劌劓劕劖劗劘劚劜劤劥劦劧劯劰劶劷劸劺劻劽勀勄勆勈勌勏勑勔勖勛勜勡勥勨勩勪勬勰勱勴勶勷匀匃匊匋"], ["8fb4a1","匌匑匓匘匛匜匞匟匥匧匨匩匫匬匭匰匲匵匼匽匾卂卌卋卙卛卡卣卥卬卭卲卹卾厃厇厈厎厓厔厙厝厡厤厪厫厯厲厴厵厷厸厺厽叀叅叏叒叓叕叚叝叞叠另叧叵吂吓吚吡吧吨吪启吱吴吵呃呄呇呍呏呞呢呤呦呧呩呫呭呮呴呿"], ["8fb5a1","咁咃咅咈咉咍咑咕咖咜咟咡咦咧咩咪咭咮咱咷咹咺咻咿哆哊响哎哠哪哬哯哶哼哾哿唀唁唅唈唉唌唍唎唕唪唫唲唵唶唻唼唽啁啇啉啊啍啐啑啘啚啛啞啠啡啤啦啿喁喂喆喈喎喏喑喒喓喔喗喣喤喭喲喿嗁嗃嗆嗉嗋嗌嗎嗑嗒"], ["8fb6a1","嗓嗗嗘嗛嗞嗢嗩嗶嗿嘅嘈嘊嘍",5,"嘙嘬嘰嘳嘵嘷嘹嘻嘼嘽嘿噀噁噃噄噆噉噋噍噏噔噞噠噡噢噣噦噩噭噯噱噲噵嚄嚅嚈嚋嚌嚕嚙嚚嚝嚞嚟嚦嚧嚨嚩嚫嚬嚭嚱嚳嚷嚾囅囉囊囋囏囐囌囍囙囜囝囟囡囤",4,"囱囫园"], ["8fb7a1","囶囷圁圂圇圊圌圑圕圚圛圝圠圢圣圤圥圩圪圬圮圯圳圴圽圾圿坅坆坌坍坒坢坥坧坨坫坭",4,"坳坴坵坷坹坺坻坼坾垁垃垌垔垗垙垚垜垝垞垟垡垕垧垨垩垬垸垽埇埈埌埏埕埝埞埤埦埧埩埭埰埵埶埸埽埾埿堃堄堈堉埡"], ["8fb8a1","堌堍堛堞堟堠堦堧堭堲堹堿塉塌塍塏塐塕塟塡塤塧塨塸塼塿墀墁墇墈墉墊墌墍墏墐墔墖墝墠墡墢墦墩墱墲壄墼壂壈壍壎壐壒壔壖壚壝壡壢壩壳夅夆夋夌夒夓夔虁夝夡夣夤夨夯夰夳夵夶夿奃奆奒奓奙奛奝奞奟奡奣奫奭"], ["8fb9a1","奯奲奵奶她奻奼妋妌妎妒妕妗妟妤妧妭妮妯妰妳妷妺妼姁姃姄姈姊姍姒姝姞姟姣姤姧姮姯姱姲姴姷娀娄娌娍娎娒娓娞娣娤娧娨娪娭娰婄婅婇婈婌婐婕婞婣婥婧婭婷婺婻婾媋媐媓媖媙媜媞媟媠媢媧媬媱媲媳媵媸媺媻媿"], ["8fbaa1","嫄嫆嫈嫏嫚嫜嫠嫥嫪嫮嫵嫶嫽嬀嬁嬈嬗嬴嬙嬛嬝嬡嬥嬭嬸孁孋孌孒孖孞孨孮孯孼孽孾孿宁宄宆宊宎宐宑宓宔宖宨宩宬宭宯宱宲宷宺宼寀寁寍寏寖",4,"寠寯寱寴寽尌尗尞尟尣尦尩尫尬尮尰尲尵尶屙屚屜屢屣屧屨屩"], ["8fbba1","屭屰屴屵屺屻屼屽岇岈岊岏岒岝岟岠岢岣岦岪岲岴岵岺峉峋峒峝峗峮峱峲峴崁崆崍崒崫崣崤崦崧崱崴崹崽崿嵂嵃嵆嵈嵕嵑嵙嵊嵟嵠嵡嵢嵤嵪嵭嵰嵹嵺嵾嵿嶁嶃嶈嶊嶒嶓嶔嶕嶙嶛嶟嶠嶧嶫嶰嶴嶸嶹巃巇巋巐巎巘巙巠巤"], ["8fbca1","巩巸巹帀帇帍帒帔帕帘帟帠帮帨帲帵帾幋幐幉幑幖幘幛幜幞幨幪",4,"幰庀庋庎庢庤庥庨庪庬庱庳庽庾庿廆廌廋廎廑廒廔廕廜廞廥廫异弆弇弈弎弙弜弝弡弢弣弤弨弫弬弮弰弴弶弻弽弿彀彄彅彇彍彐彔彘彛彠彣彤彧"], ["8fbda1","彯彲彴彵彸彺彽彾徉徍徏徖徜徝徢徧徫徤徬徯徰徱徸忄忇忈忉忋忐",4,"忞忡忢忨忩忪忬忭忮忯忲忳忶忺忼怇怊怍怓怔怗怘怚怟怤怭怳怵恀恇恈恉恌恑恔恖恗恝恡恧恱恾恿悂悆悈悊悎悑悓悕悘悝悞悢悤悥您悰悱悷"], ["8fbea1","悻悾惂惄惈惉惊惋惎惏惔惕惙惛惝惞惢惥惲惵惸惼惽愂愇愊愌愐",4,"愖愗愙愜愞愢愪愫愰愱愵愶愷愹慁慅慆慉慞慠慬慲慸慻慼慿憀憁憃憄憋憍憒憓憗憘憜憝憟憠憥憨憪憭憸憹憼懀懁懂懎懏懕懜懝懞懟懡懢懧懩懥"], ["8fbfa1","懬懭懯戁戃戄戇戓戕戜戠戢戣戧戩戫戹戽扂扃扄扆扌扐扑扒扔扖扚扜扤扭扯扳扺扽抍抎抏抐抦抨抳抶抷抺抾抿拄拎拕拖拚拪拲拴拼拽挃挄挊挋挍挐挓挖挘挩挪挭挵挶挹挼捁捂捃捄捆捊捋捎捒捓捔捘捛捥捦捬捭捱捴捵"], ["8fc0a1","捸捼捽捿掂掄掇掊掐掔掕掙掚掞掤掦掭掮掯掽揁揅揈揎揑揓揔揕揜揠揥揪揬揲揳揵揸揹搉搊搐搒搔搘搞搠搢搤搥搩搪搯搰搵搽搿摋摏摑摒摓摔摚摛摜摝摟摠摡摣摭摳摴摻摽撅撇撏撐撑撘撙撛撝撟撡撣撦撨撬撳撽撾撿"], ["8fc1a1","擄擉擊擋擌擎擐擑擕擗擤擥擩擪擭擰擵擷擻擿攁攄攈攉攊攏攓攔攖攙攛攞攟攢攦攩攮攱攺攼攽敃敇敉敐敒敔敟敠敧敫敺敽斁斅斊斒斕斘斝斠斣斦斮斲斳斴斿旂旈旉旎旐旔旖旘旟旰旲旴旵旹旾旿昀昄昈昉昍昑昒昕昖昝"], ["8fc2a1","昞昡昢昣昤昦昩昪昫昬昮昰昱昳昹昷晀晅晆晊晌晑晎晗晘晙晛晜晠晡曻晪晫晬晾晳晵晿晷晸晹晻暀晼暋暌暍暐暒暙暚暛暜暟暠暤暭暱暲暵暻暿曀曂曃曈曌曎曏曔曛曟曨曫曬曮曺朅朇朎朓朙朜朠朢朳朾杅杇杈杌杔杕杝"], ["8fc3a1","杦杬杮杴杶杻极构枎枏枑枓枖枘枙枛枰枱枲枵枻枼枽柹柀柂柃柅柈柉柒柗柙柜柡柦柰柲柶柷桒栔栙栝栟栨栧栬栭栯栰栱栳栻栿桄桅桊桌桕桗桘桛桫桮",4,"桵桹桺桻桼梂梄梆梈梖梘梚梜梡梣梥梩梪梮梲梻棅棈棌棏"], ["8fc4a1","棐棑棓棖棙棜棝棥棨棪棫棬棭棰棱棵棶棻棼棽椆椉椊椐椑椓椖椗椱椳椵椸椻楂楅楉楎楗楛楣楤楥楦楨楩楬楰楱楲楺楻楿榀榍榒榖榘榡榥榦榨榫榭榯榷榸榺榼槅槈槑槖槗槢槥槮槯槱槳槵槾樀樁樃樏樑樕樚樝樠樤樨樰樲"], ["8fc5a1","樴樷樻樾樿橅橆橉橊橎橐橑橒橕橖橛橤橧橪橱橳橾檁檃檆檇檉檋檑檛檝檞檟檥檫檯檰檱檴檽檾檿櫆櫉櫈櫌櫐櫔櫕櫖櫜櫝櫤櫧櫬櫰櫱櫲櫼櫽欂欃欆欇欉欏欐欑欗欛欞欤欨欫欬欯欵欶欻欿歆歊歍歒歖歘歝歠歧歫歮歰歵歽"], ["8fc6a1","歾殂殅殗殛殟殠殢殣殨殩殬殭殮殰殸殹殽殾毃毄毉毌毖毚毡毣毦毧毮毱毷毹毿氂氄氅氉氍氎氐氒氙氟氦氧氨氬氮氳氵氶氺氻氿汊汋汍汏汒汔汙汛汜汫汭汯汴汶汸汹汻沅沆沇沉沔沕沗沘沜沟沰沲沴泂泆泍泏泐泑泒泔泖"], ["8fc7a1","泚泜泠泧泩泫泬泮泲泴洄洇洊洎洏洑洓洚洦洧洨汧洮洯洱洹洼洿浗浞浟浡浥浧浯浰浼涂涇涑涒涔涖涗涘涪涬涴涷涹涽涿淄淈淊淎淏淖淛淝淟淠淢淥淩淯淰淴淶淼渀渄渞渢渧渲渶渹渻渼湄湅湈湉湋湏湑湒湓湔湗湜湝湞"], ["8fc8a1","湢湣湨湳湻湽溍溓溙溠溧溭溮溱溳溻溿滀滁滃滇滈滊滍滎滏滫滭滮滹滻滽漄漈漊漌漍漖漘漚漛漦漩漪漯漰漳漶漻漼漭潏潑潒潓潗潙潚潝潞潡潢潨潬潽潾澃澇澈澋澌澍澐澒澓澔澖澚澟澠澥澦澧澨澮澯澰澵澶澼濅濇濈濊"], ["8fc9a1","濚濞濨濩濰濵濹濼濽瀀瀅瀆瀇瀍瀗瀠瀣瀯瀴瀷瀹瀼灃灄灈灉灊灋灔灕灝灞灎灤灥灬灮灵灶灾炁炅炆炔",4,"炛炤炫炰炱炴炷烊烑烓烔烕烖烘烜烤烺焃",4,"焋焌焏焞焠焫焭焯焰焱焸煁煅煆煇煊煋煐煒煗煚煜煞煠"], ["8fcaa1","煨煹熀熅熇熌熒熚熛熠熢熯熰熲熳熺熿燀燁燄燋燌燓燖燙燚燜燸燾爀爇爈爉爓爗爚爝爟爤爫爯爴爸爹牁牂牃牅牎牏牐牓牕牖牚牜牞牠牣牨牫牮牯牱牷牸牻牼牿犄犉犍犎犓犛犨犭犮犱犴犾狁狇狉狌狕狖狘狟狥狳狴狺狻"], ["8fcba1","狾猂猄猅猇猋猍猒猓猘猙猞猢猤猧猨猬猱猲猵猺猻猽獃獍獐獒獖獘獝獞獟獠獦獧獩獫獬獮獯獱獷獹獼玀玁玃玅玆玎玐玓玕玗玘玜玞玟玠玢玥玦玪玫玭玵玷玹玼玽玿珅珆珉珋珌珏珒珓珖珙珝珡珣珦珧珩珴珵珷珹珺珻珽"], ["8fcca1","珿琀琁琄琇琊琑琚琛琤琦琨",9,"琹瑀瑃瑄瑆瑇瑋瑍瑑瑒瑗瑝瑢瑦瑧瑨瑫瑭瑮瑱瑲璀璁璅璆璇璉璏璐璑璒璘璙璚璜璟璠璡璣璦璨璩璪璫璮璯璱璲璵璹璻璿瓈瓉瓌瓐瓓瓘瓚瓛瓞瓟瓤瓨瓪瓫瓯瓴瓺瓻瓼瓿甆"], ["8fcda1","甒甖甗甠甡甤甧甩甪甯甶甹甽甾甿畀畃畇畈畎畐畒畗畞畟畡畯畱畹",5,"疁疅疐疒疓疕疙疜疢疤疴疺疿痀痁痄痆痌痎痏痗痜痟痠痡痤痧痬痮痯痱痹瘀瘂瘃瘄瘇瘈瘊瘌瘏瘒瘓瘕瘖瘙瘛瘜瘝瘞瘣瘥瘦瘩瘭瘲瘳瘵瘸瘹"], ["8fcea1","瘺瘼癊癀癁癃癄癅癉癋癕癙癟癤癥癭癮癯癱癴皁皅皌皍皕皛皜皝皟皠皢",6,"皪皭皽盁盅盉盋盌盎盔盙盠盦盨盬盰盱盶盹盼眀眆眊眎眒眔眕眗眙眚眜眢眨眭眮眯眴眵眶眹眽眾睂睅睆睊睍睎睏睒睖睗睜睞睟睠睢"], ["8fcfa1","睤睧睪睬睰睲睳睴睺睽瞀瞄瞌瞍瞔瞕瞖瞚瞟瞢瞧瞪瞮瞯瞱瞵瞾矃矉矑矒矕矙矞矟矠矤矦矪矬矰矱矴矸矻砅砆砉砍砎砑砝砡砢砣砭砮砰砵砷硃硄硇硈硌硎硒硜硞硠硡硣硤硨硪确硺硾碊碏碔碘碡碝碞碟碤碨碬碭碰碱碲碳"], ["8fd0a1","碻碽碿磇磈磉磌磎磒磓磕磖磤磛磟磠磡磦磪磲磳礀磶磷磺磻磿礆礌礐礚礜礞礟礠礥礧礩礭礱礴礵礻礽礿祄祅祆祊祋祏祑祔祘祛祜祧祩祫祲祹祻祼祾禋禌禑禓禔禕禖禘禛禜禡禨禩禫禯禱禴禸离秂秄秇秈秊秏秔秖秚秝秞"], ["8fd1a1","秠秢秥秪秫秭秱秸秼稂稃稇稉稊稌稑稕稛稞稡稧稫稭稯稰稴稵稸稹稺穄穅穇穈穌穕穖穙穜穝穟穠穥穧穪穭穵穸穾窀窂窅窆窊窋窐窑窔窞窠窣窬窳窵窹窻窼竆竉竌竎竑竛竨竩竫竬竱竴竻竽竾笇笔笟笣笧笩笪笫笭笮笯笰"], ["8fd2a1","笱笴笽笿筀筁筇筎筕筠筤筦筩筪筭筯筲筳筷箄箉箎箐箑箖箛箞箠箥箬箯箰箲箵箶箺箻箼箽篂篅篈篊篔篖篗篙篚篛篨篪篲篴篵篸篹篺篼篾簁簂簃簄簆簉簋簌簎簏簙簛簠簥簦簨簬簱簳簴簶簹簺籆籊籕籑籒籓籙",5], ["8fd3a1","籡籣籧籩籭籮籰籲籹籼籽粆粇粏粔粞粠粦粰粶粷粺粻粼粿糄糇糈糉糍糏糓糔糕糗糙糚糝糦糩糫糵紃紇紈紉紏紑紒紓紖紝紞紣紦紪紭紱紼紽紾絀絁絇絈絍絑絓絗絙絚絜絝絥絧絪絰絸絺絻絿綁綂綃綅綆綈綋綌綍綑綖綗綝"], ["8fd4a1","綞綦綧綪綳綶綷綹緂",4,"緌緍緎緗緙縀緢緥緦緪緫緭緱緵緶緹緺縈縐縑縕縗縜縝縠縧縨縬縭縯縳縶縿繄繅繇繎繐繒繘繟繡繢繥繫繮繯繳繸繾纁纆纇纊纍纑纕纘纚纝纞缼缻缽缾缿罃罄罇罏罒罓罛罜罝罡罣罤罥罦罭"], ["8fd5a1","罱罽罾罿羀羋羍羏羐羑羖羗羜羡羢羦羪羭羴羼羿翀翃翈翎翏翛翟翣翥翨翬翮翯翲翺翽翾翿耇耈耊耍耎耏耑耓耔耖耝耞耟耠耤耦耬耮耰耴耵耷耹耺耼耾聀聄聠聤聦聭聱聵肁肈肎肜肞肦肧肫肸肹胈胍胏胒胔胕胗胘胠胭胮"], ["8fd6a1","胰胲胳胶胹胺胾脃脋脖脗脘脜脞脠脤脧脬脰脵脺脼腅腇腊腌腒腗腠腡腧腨腩腭腯腷膁膐膄膅膆膋膎膖膘膛膞膢膮膲膴膻臋臃臅臊臎臏臕臗臛臝臞臡臤臫臬臰臱臲臵臶臸臹臽臿舀舃舏舓舔舙舚舝舡舢舨舲舴舺艃艄艅艆"], ["8fd7a1","艋艎艏艑艖艜艠艣艧艭艴艻艽艿芀芁芃芄芇芉芊芎芑芔芖芘芚芛芠芡芣芤芧芨芩芪芮芰芲芴芷芺芼芾芿苆苐苕苚苠苢苤苨苪苭苯苶苷苽苾茀茁茇茈茊茋荔茛茝茞茟茡茢茬茭茮茰茳茷茺茼茽荂荃荄荇荍荎荑荕荖荗荰荸"], ["8fd8a1","荽荿莀莂莄莆莍莒莔莕莘莙莛莜莝莦莧莩莬莾莿菀菇菉菏菐菑菔菝荓菨菪菶菸菹菼萁萆萊萏萑萕萙莭萯萹葅葇葈葊葍葏葑葒葖葘葙葚葜葠葤葥葧葪葰葳葴葶葸葼葽蒁蒅蒒蒓蒕蒞蒦蒨蒩蒪蒯蒱蒴蒺蒽蒾蓀蓂蓇蓈蓌蓏蓓"], ["8fd9a1","蓜蓧蓪蓯蓰蓱蓲蓷蔲蓺蓻蓽蔂蔃蔇蔌蔎蔐蔜蔞蔢蔣蔤蔥蔧蔪蔫蔯蔳蔴蔶蔿蕆蕏",4,"蕖蕙蕜",6,"蕤蕫蕯蕹蕺蕻蕽蕿薁薅薆薉薋薌薏薓薘薝薟薠薢薥薧薴薶薷薸薼薽薾薿藂藇藊藋藎薭藘藚藟藠藦藨藭藳藶藼"], ["8fdaa1","藿蘀蘄蘅蘍蘎蘐蘑蘒蘘蘙蘛蘞蘡蘧蘩蘶蘸蘺蘼蘽虀虂虆虒虓虖虗虘虙虝虠",4,"虩虬虯虵虶虷虺蚍蚑蚖蚘蚚蚜蚡蚦蚧蚨蚭蚱蚳蚴蚵蚷蚸蚹蚿蛀蛁蛃蛅蛑蛒蛕蛗蛚蛜蛠蛣蛥蛧蚈蛺蛼蛽蜄蜅蜇蜋蜎蜏蜐蜓蜔蜙蜞蜟蜡蜣"], ["8fdba1","蜨蜮蜯蜱蜲蜹蜺蜼蜽蜾蝀蝃蝅蝍蝘蝝蝡蝤蝥蝯蝱蝲蝻螃",6,"螋螌螐螓螕螗螘螙螞螠螣螧螬螭螮螱螵螾螿蟁蟈蟉蟊蟎蟕蟖蟙蟚蟜蟟蟢蟣蟤蟪蟫蟭蟱蟳蟸蟺蟿蠁蠃蠆蠉蠊蠋蠐蠙蠒蠓蠔蠘蠚蠛蠜蠞蠟蠨蠭蠮蠰蠲蠵"], ["8fdca1","蠺蠼衁衃衅衈衉衊衋衎衑衕衖衘衚衜衟衠衤衩衱衹衻袀袘袚袛袜袟袠袨袪袺袽袾裀裊",4,"裑裒裓裛裞裧裯裰裱裵裷褁褆褍褎褏褕褖褘褙褚褜褠褦褧褨褰褱褲褵褹褺褾襀襂襅襆襉襏襒襗襚襛襜襡襢襣襫襮襰襳襵襺"], ["8fdda1","襻襼襽覉覍覐覔覕覛覜覟覠覥覰覴覵覶覷覼觔",4,"觥觩觫觭觱觳觶觹觽觿訄訅訇訏訑訒訔訕訞訠訢訤訦訫訬訯訵訷訽訾詀詃詅詇詉詍詎詓詖詗詘詜詝詡詥詧詵詶詷詹詺詻詾詿誀誃誆誋誏誐誒誖誗誙誟誧誩誮誯誳"], ["8fdea1","誶誷誻誾諃諆諈諉諊諑諓諔諕諗諝諟諬諰諴諵諶諼諿謅謆謋謑謜謞謟謊謭謰謷謼譂",4,"譈譒譓譔譙譍譞譣譭譶譸譹譼譾讁讄讅讋讍讏讔讕讜讞讟谸谹谽谾豅豇豉豋豏豑豓豔豗豘豛豝豙豣豤豦豨豩豭豳豵豶豻豾貆"], ["8fdfa1","貇貋貐貒貓貙貛貜貤貹貺賅賆賉賋賏賖賕賙賝賡賨賬賯賰賲賵賷賸賾賿贁贃贉贒贗贛赥赩赬赮赿趂趄趈趍趐趑趕趞趟趠趦趫趬趯趲趵趷趹趻跀跅跆跇跈跊跎跑跔跕跗跙跤跥跧跬跰趼跱跲跴跽踁踄踅踆踋踑踔踖踠踡踢"], ["8fe0a1","踣踦踧踱踳踶踷踸踹踽蹀蹁蹋蹍蹎蹏蹔蹛蹜蹝蹞蹡蹢蹩蹬蹭蹯蹰蹱蹹蹺蹻躂躃躉躐躒躕躚躛躝躞躢躧躩躭躮躳躵躺躻軀軁軃軄軇軏軑軔軜軨軮軰軱軷軹軺軭輀輂輇輈輏輐輖輗輘輞輠輡輣輥輧輨輬輭輮輴輵輶輷輺轀轁"], ["8fe1a1","轃轇轏轑",4,"轘轝轞轥辝辠辡辤辥辦辵辶辸达迀迁迆迊迋迍运迒迓迕迠迣迤迨迮迱迵迶迻迾适逄逈逌逘逛逨逩逯逪逬逭逳逴逷逿遃遄遌遛遝遢遦遧遬遰遴遹邅邈邋邌邎邐邕邗邘邙邛邠邡邢邥邰邲邳邴邶邽郌邾郃"], ["8fe2a1","郄郅郇郈郕郗郘郙郜郝郟郥郒郶郫郯郰郴郾郿鄀鄄鄅鄆鄈鄍鄐鄔鄖鄗鄘鄚鄜鄞鄠鄥鄢鄣鄧鄩鄮鄯鄱鄴鄶鄷鄹鄺鄼鄽酃酇酈酏酓酗酙酚酛酡酤酧酭酴酹酺酻醁醃醅醆醊醎醑醓醔醕醘醞醡醦醨醬醭醮醰醱醲醳醶醻醼醽醿"], ["8fe3a1","釂釃釅釓釔釗釙釚釞釤釥釩釪釬",5,"釷釹釻釽鈀鈁鈄鈅鈆鈇鈉鈊鈌鈐鈒鈓鈖鈘鈜鈝鈣鈤鈥鈦鈨鈮鈯鈰鈳鈵鈶鈸鈹鈺鈼鈾鉀鉂鉃鉆鉇鉊鉍鉎鉏鉑鉘鉙鉜鉝鉠鉡鉥鉧鉨鉩鉮鉯鉰鉵",4,"鉻鉼鉽鉿銈銉銊銍銎銒銗"], ["8fe4a1","銙銟銠銤銥銧銨銫銯銲銶銸銺銻銼銽銿",4,"鋅鋆鋇鋈鋋鋌鋍鋎鋐鋓鋕鋗鋘鋙鋜鋝鋟鋠鋡鋣鋥鋧鋨鋬鋮鋰鋹鋻鋿錀錂錈錍錑錔錕錜錝錞錟錡錤錥錧錩錪錳錴錶錷鍇鍈鍉鍐鍑鍒鍕鍗鍘鍚鍞鍤鍥鍧鍩鍪鍭鍯鍰鍱鍳鍴鍶"], ["8fe5a1","鍺鍽鍿鎀鎁鎂鎈鎊鎋鎍鎏鎒鎕鎘鎛鎞鎡鎣鎤鎦鎨鎫鎴鎵鎶鎺鎩鏁鏄鏅鏆鏇鏉",4,"鏓鏙鏜鏞鏟鏢鏦鏧鏹鏷鏸鏺鏻鏽鐁鐂鐄鐈鐉鐍鐎鐏鐕鐖鐗鐟鐮鐯鐱鐲鐳鐴鐻鐿鐽鑃鑅鑈鑊鑌鑕鑙鑜鑟鑡鑣鑨鑫鑭鑮鑯鑱鑲钄钃镸镹"], ["8fe6a1","镾閄閈閌閍閎閝閞閟閡閦閩閫閬閴閶閺閽閿闆闈闉闋闐闑闒闓闙闚闝闞闟闠闤闦阝阞阢阤阥阦阬阱阳阷阸阹阺阼阽陁陒陔陖陗陘陡陮陴陻陼陾陿隁隂隃隄隉隑隖隚隝隟隤隥隦隩隮隯隳隺雊雒嶲雘雚雝雞雟雩雯雱雺霂"], ["8fe7a1","霃霅霉霚霛霝霡霢霣霨霱霳靁靃靊靎靏靕靗靘靚靛靣靧靪靮靳靶靷靸靻靽靿鞀鞉鞕鞖鞗鞙鞚鞞鞟鞢鞬鞮鞱鞲鞵鞶鞸鞹鞺鞼鞾鞿韁韄韅韇韉韊韌韍韎韐韑韔韗韘韙韝韞韠韛韡韤韯韱韴韷韸韺頇頊頙頍頎頔頖頜頞頠頣頦"], ["8fe8a1","頫頮頯頰頲頳頵頥頾顄顇顊顑顒顓顖顗顙顚顢顣顥顦顪顬颫颭颮颰颴颷颸颺颻颿飂飅飈飌飡飣飥飦飧飪飳飶餂餇餈餑餕餖餗餚餛餜餟餢餦餧餫餱",4,"餹餺餻餼饀饁饆饇饈饍饎饔饘饙饛饜饞饟饠馛馝馟馦馰馱馲馵"], ["8fe9a1","馹馺馽馿駃駉駓駔駙駚駜駞駧駪駫駬駰駴駵駹駽駾騂騃騄騋騌騐騑騖騞騠騢騣騤騧騭騮騳騵騶騸驇驁驄驊驋驌驎驑驔驖驝骪骬骮骯骲骴骵骶骹骻骾骿髁髃髆髈髎髐髒髕髖髗髛髜髠髤髥髧髩髬髲髳髵髹髺髽髿",4], ["8feaa1","鬄鬅鬈鬉鬋鬌鬍鬎鬐鬒鬖鬙鬛鬜鬠鬦鬫鬭鬳鬴鬵鬷鬹鬺鬽魈魋魌魕魖魗魛魞魡魣魥魦魨魪",4,"魳魵魷魸魹魿鮀鮄鮅鮆鮇鮉鮊鮋鮍鮏鮐鮔鮚鮝鮞鮦鮧鮩鮬鮰鮱鮲鮷鮸鮻鮼鮾鮿鯁鯇鯈鯎鯐鯗鯘鯝鯟鯥鯧鯪鯫鯯鯳鯷鯸"], ["8feba1","鯹鯺鯽鯿鰀鰂鰋鰏鰑鰖鰘鰙鰚鰜鰞鰢鰣鰦",4,"鰱鰵鰶鰷鰽鱁鱃鱄鱅鱉鱊鱎鱏鱐鱓鱔鱖鱘鱛鱝鱞鱟鱣鱩鱪鱜鱫鱨鱮鱰鱲鱵鱷鱻鳦鳲鳷鳹鴋鴂鴑鴗鴘鴜鴝鴞鴯鴰鴲鴳鴴鴺鴼鵅鴽鵂鵃鵇鵊鵓鵔鵟鵣鵢鵥鵩鵪鵫鵰鵶鵷鵻"], ["8feca1","鵼鵾鶃鶄鶆鶊鶍鶎鶒鶓鶕鶖鶗鶘鶡鶪鶬鶮鶱鶵鶹鶼鶿鷃鷇鷉鷊鷔鷕鷖鷗鷚鷞鷟鷠鷥鷧鷩鷫鷮鷰鷳鷴鷾鸊鸂鸇鸎鸐鸑鸒鸕鸖鸙鸜鸝鹺鹻鹼麀麂麃麄麅麇麎麏麖麘麛麞麤麨麬麮麯麰麳麴麵黆黈黋黕黟黤黧黬黭黮黰黱黲黵"], ["8feda1","黸黿鼂鼃鼉鼏鼐鼑鼒鼔鼖鼗鼙鼚鼛鼟鼢鼦鼪鼫鼯鼱鼲鼴鼷鼹鼺鼼鼽鼿齁齃",4,"齓齕齖齗齘齚齝齞齨齩齭",4,"齳齵齺齽龏龐龑龒龔龖龗龞龡龢龣龥"] ]

node_modules/iconv-lite/encodings/tables/gb18030-ranges.json

{"uChars":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],"gbChars":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]}

node_modules/iconv-lite/encodings/tables/gbk-added.json

[ ["a140","",62], ["a180","",32], ["a240","",62], ["a280","",32], ["a2ab","",5], ["a2e3","€"], ["a2ef",""], ["a2fd",""], ["a340","",62], ["a380","",31," "], ["a440","",62], ["a480","",32], ["a4f4","",10], ["a540","",62], ["a580","",32], ["a5f7","",7], ["a640","",62], ["a680","",32], ["a6b9","",7], ["a6d9","",6], ["a6ec",""], ["a6f3",""], ["a6f6","",8], ["a740","",62], ["a780","",32], ["a7c2","",14], ["a7f2","",12], ["a896","",10], ["a8bc",""], ["a8bf","ǹ"], ["a8c1",""], ["a8ea","",20], ["a958",""], ["a95b",""], ["a95d",""], ["a989","〾⿰",11], ["a997","",12], ["a9f0","",14], ["aaa1","",93], ["aba1","",93], ["aca1","",93], ["ada1","",93], ["aea1","",93], ["afa1","",93], ["d7fa","",4], ["f8a1","",93], ["f9a1","",93], ["faa1","",93], ["fba1","",93], ["fca1","",93], ["fda1","",93], ["fe50","⺁⺄㑳㑇⺈⺋㖞㘚㘎⺌⺗㥮㤘㧏㧟㩳㧐㭎㱮㳠⺧⺪䁖䅟⺮䌷⺳⺶⺷䎱䎬⺻䏝䓖䙡䙌"], ["fe80","䜣䜩䝼䞍⻊䥇䥺䥽䦂䦃䦅䦆䦟䦛䦷䦶䲣䲟䲠䲡䱷䲢䴓",6,"䶮",93] ]

node_modules/iconv-lite/encodings/tables/shiftjis.json

[ ["0","\u0000",128], ["a1","。",62], ["8140"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×"], ["8180","÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓"], ["81b8","∈∋⊆⊇⊂⊃∪∩"], ["81c8","∧∨¬⇒⇔∀∃"], ["81da","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"], ["81f0","ʼn♯♭♪†‡¶"], ["81fc","◯"], ["824f","0",9], ["8260","A",25], ["8281","a",25], ["829f","ぁ",82], ["8340","ァ",62], ["8380","ム",22], ["839f","Α",16,"Σ",6], ["83bf","α",16,"σ",6], ["8440","А",5,"ЁЖ",25], ["8470","а",5,"ёж",7], ["8480","о",17], ["849f","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"], ["8740","①",19,"Ⅰ",9], ["875f","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"], ["877e","㍻"], ["8780","〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"], ["889f","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"], ["8940","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円"], ["8980","園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"], ["8a40","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫"], ["8a80","橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"], ["8b40","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救"], ["8b80","朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"], ["8c40","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨"], ["8c80","劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"], ["8d40","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降"], ["8d80","項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"], ["8e40","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止"], ["8e80","死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"], ["8f40","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳"], ["8f80","準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"], ["9040","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨"], ["9080","逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"], ["9140","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻"], ["9180","操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"], ["9240","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄"], ["9280","逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"], ["9340","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬"], ["9380","凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"], ["9440","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅"], ["9480","楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"], ["9540","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷"], ["9580","斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"], ["9640","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆"], ["9680","摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"], ["9740","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲"], ["9780","沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"], ["9840","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"], ["989f","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"], ["9940","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭"], ["9980","凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"], ["9a40","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸"], ["9a80","噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"], ["9b40","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀"], ["9b80","它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"], ["9c40","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠"], ["9c80","怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"], ["9d40","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫"], ["9d80","捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"], ["9e40","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎"], ["9e80","梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"], ["9f40","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯"], ["9f80","麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"], ["e040","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝"], ["e080","烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"], ["e140","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿"], ["e180","痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"], ["e240","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰"], ["e280","窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"], ["e340","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷"], ["e380","縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"], ["e440","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤"], ["e480","艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"], ["e540","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬"], ["e580","蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"], ["e640","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧"], ["e680","諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"], ["e740","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜"], ["e780","轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"], ["e840","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙"], ["e880","閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"], ["e940","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃"], ["e980","騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"], ["ea40","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯"], ["ea80","黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙"], ["ed40","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏"], ["ed80","塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"], ["ee40","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙"], ["ee80","蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"], ["eeef","ⅰ",9,"¬¦'""], ["f040","",62], ["f080","",124], ["f140","",62], ["f180","",124], ["f240","",62], ["f280","",124], ["f340","",62], ["f380","",124], ["f440","",62], ["f480","",124], ["f540","",62], ["f580","",124], ["f640","",62], ["f680","",124], ["f740","",62], ["f780","",124], ["f840","",62], ["f880","",124], ["f940",""], ["fa40","ⅰ",9,"Ⅰ",9,"¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊"], ["fa80","兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯"], ["fb40","涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神"], ["fb80","祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙"], ["fc40","髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"] ]

node_modules/iconv-lite/encodings/utf16.js

"use strict" // Note: UTF16-LE (or UCS2) codec is Node.js native. See encodings/internal.js // == UTF16-BE codec. ========================================================== exports.utf16be = Utf16BECodec; function Utf16BECodec() { } Utf16BECodec.prototype.encoder = Utf16BEEncoder; Utf16BECodec.prototype.decoder = Utf16BEDecoder; Utf16BECodec.prototype.bomAware = true; // -- Encoding function Utf16BEEncoder() { } Utf16BEEncoder.prototype.write = function(str) { var buf = new Buffer(str, 'ucs2'); for (var i = 0; i < buf.length; i += 2) { var tmp = buf[i]; buf[i] = buf[i+1]; buf[i+1] = tmp; } return buf; } Utf16BEEncoder.prototype.end = function() { } // -- Decoding function Utf16BEDecoder() { this.overflowByte = -1; } Utf16BEDecoder.prototype.write = function(buf) { if (buf.length == 0) return ''; var buf2 = new Buffer(buf.length + 1), i = 0, j = 0; if (this.overflowByte !== -1) { buf2[0] = buf[0]; buf2[1] = this.overflowByte; i = 1; j = 2; } for (; i < buf.length-1; i += 2, j+= 2) { buf2[j] = buf[i+1]; buf2[j+1] = buf[i]; } this.overflowByte = (i == buf.length-1) ? buf[buf.length-1] : -1; return buf2.slice(0, j).toString('ucs2'); } Utf16BEDecoder.prototype.end = function() { } // == UTF-16 codec ============================================================= // Decoder chooses automatically from UTF-16LE and UTF-16BE using BOM and space-based heuristic. // Defaults to UTF-16LE, as it's prevalent and default in Node. // http://en.wikipedia.org/wiki/UTF-16 and http://encoding.spec.whatwg.org/#utf-16le // Decoder default can be changed: iconv.decode(buf, 'utf16', {defaultEncoding: 'utf-16be'}); // Encoder uses UTF-16LE and prepends BOM (which can be overridden with addBOM: false). exports.utf16 = Utf16Codec; function Utf16Codec(codecOptions, iconv) { this.iconv = iconv; } Utf16Codec.prototype.encoder = Utf16Encoder; Utf16Codec.prototype.decoder = Utf16Decoder; // -- Encoding (pass-through) function Utf16Encoder(options, codec) { options = options || {}; if (options.addBOM === undefined) options.addBOM = true; this.encoder = codec.iconv.getEncoder('utf-16le', options); } Utf16Encoder.prototype.write = function(str) { return this.encoder.write(str); } Utf16Encoder.prototype.end = function() { return this.encoder.end(); } // -- Decoding function Utf16Decoder(options, codec) { this.decoder = null; this.initialBytes = []; this.initialBytesLen = 0; this.options = options || {}; this.iconv = codec.iconv; } Utf16Decoder.prototype.write = function(buf) { if (!this.decoder) { // Codec is not chosen yet. Accumulate initial bytes. this.initialBytes.push(buf); this.initialBytesLen += buf.length; if (this.initialBytesLen < 16) // We need more bytes to use space heuristic (see below) return ''; // We have enough bytes -> detect endianness. var buf = Buffer.concat(this.initialBytes), encoding = detectEncoding(buf, this.options.defaultEncoding); this.decoder = this.iconv.getDecoder(encoding, this.options); this.initialBytes.length = this.initialBytesLen = 0; } return this.decoder.write(buf); } Utf16Decoder.prototype.end = function() { if (!this.decoder) { var buf = Buffer.concat(this.initialBytes), encoding = detectEncoding(buf, this.options.defaultEncoding); this.decoder = this.iconv.getDecoder(encoding, this.options); var res = this.decoder.write(buf), trail = this.decoder.end(); return trail ? (res + trail) : res; } return this.decoder.end(); } function detectEncoding(buf, defaultEncoding) { var enc = defaultEncoding || 'utf-16le'; if (buf.length >= 2) { // Check BOM. if (buf[0] == 0xFE && buf[1] == 0xFF) // UTF-16BE BOM enc = 'utf-16be'; else if (buf[0] == 0xFF && buf[1] == 0xFE) // UTF-16LE BOM enc = 'utf-16le'; else { // No BOM found. Try to deduce encoding from initial content. // Most of the time, the content has ASCII chars (U+00**), but the opposite (U+**00) is uncommon. // So, we count ASCII as if it was LE or BE, and decide from that. var asciiCharsLE = 0, asciiCharsBE = 0, // Counts of chars in both positions _len = Math.min(buf.length - (buf.length % 2), 64); // Len is always even. for (var i = 0; i < _len; i += 2) { if (buf[i] === 0 && buf[i+1] !== 0) asciiCharsBE++; if (buf[i] !== 0 && buf[i+1] === 0) asciiCharsLE++; } if (asciiCharsBE > asciiCharsLE) enc = 'utf-16be'; else if (asciiCharsBE < asciiCharsLE) enc = 'utf-16le'; } } return enc; }

node_modules/iconv-lite/encodings/utf7.js

"use strict" // UTF-7 codec, according to https://tools.ietf.org/html/rfc2152 // See also below a UTF-7-IMAP codec, according to http://tools.ietf.org/html/rfc3501#section-5.1.3 exports.utf7 = Utf7Codec; exports.unicode11utf7 = 'utf7'; // Alias UNICODE-1-1-UTF-7 function Utf7Codec(codecOptions, iconv) { this.iconv = iconv; }; Utf7Codec.prototype.encoder = Utf7Encoder; Utf7Codec.prototype.decoder = Utf7Decoder; Utf7Codec.prototype.bomAware = true; // -- Encoding var nonDirectChars = /[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g; function Utf7Encoder(options, codec) { this.iconv = codec.iconv; } Utf7Encoder.prototype.write = function(str) { // Naive implementation. // Non-direct chars are encoded as "+<base64>-"; single "+" char is encoded as "+-". return new Buffer(str.replace(nonDirectChars, function(chunk) { return "+" + (chunk === '+' ? '' : this.iconv.encode(chunk, 'utf16-be').toString('base64').replace(/=+$/, '')) + "-"; }.bind(this))); } Utf7Encoder.prototype.end = function() { } // -- Decoding function Utf7Decoder(options, codec) { this.iconv = codec.iconv; this.inBase64 = false; this.base64Accum = ''; } var base64Regex = /[A-Za-z0-9\/+]/; var base64Chars = []; for (var i = 0; i < 256; i++) base64Chars[i] = base64Regex.test(String.fromCharCode(i)); var plusChar = '+'.charCodeAt(0), minusChar = '-'.charCodeAt(0), andChar = '&'.charCodeAt(0); Utf7Decoder.prototype.write = function(buf) { var res = "", lastI = 0, inBase64 = this.inBase64, base64Accum = this.base64Accum; // The decoder is more involved as we must handle chunks in stream. for (var i = 0; i < buf.length; i++) { if (!inBase64) { // We're in direct mode. // Write direct chars until '+' if (buf[i] == plusChar) { res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars. lastI = i+1; inBase64 = true; } } else { // We decode base64. if (!base64Chars[buf[i]]) { // Base64 ended. if (i == lastI && buf[i] == minusChar) {// "+-" -> "+" res += "+"; } else { var b64str = base64Accum + buf.slice(lastI, i).toString(); res += this.iconv.decode(new Buffer(b64str, 'base64'), "utf16-be"); } if (buf[i] != minusChar) // Minus is absorbed after base64. i--; lastI = i+1; inBase64 = false; base64Accum = ''; } } } if (!inBase64) { res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars. } else { var b64str = base64Accum + buf.slice(lastI).toString(); var canBeDecoded = b64str.length - (b64str.length % 8); // Minimal chunk: 2 quads -> 2x3 bytes -> 3 chars. base64Accum = b64str.slice(canBeDecoded); // The rest will be decoded in future. b64str = b64str.slice(0, canBeDecoded); res += this.iconv.decode(new Buffer(b64str, 'base64'), "utf16-be"); } this.inBase64 = inBase64; this.base64Accum = base64Accum; return res; } Utf7Decoder.prototype.end = function() { var res = ""; if (this.inBase64 && this.base64Accum.length > 0) res = this.iconv.decode(new Buffer(this.base64Accum, 'base64'), "utf16-be"); this.inBase64 = false; this.base64Accum = ''; return res; } // UTF-7-IMAP codec. // RFC3501 Sec. 5.1.3 Modified UTF-7 (http://tools.ietf.org/html/rfc3501#section-5.1.3) // Differences: // * Base64 part is started by "&" instead of "+" // * Direct characters are 0x20-0x7E, except "&" (0x26) // * In Base64, "," is used instead of "/" // * Base64 must not be used to represent direct characters. // * No implicit shift back from Base64 (should always end with '-') // * String must end in non-shifted position. // * "-&" while in base64 is not allowed. exports.utf7imap = Utf7IMAPCodec; function Utf7IMAPCodec(codecOptions, iconv) { this.iconv = iconv; }; Utf7IMAPCodec.prototype.encoder = Utf7IMAPEncoder; Utf7IMAPCodec.prototype.decoder = Utf7IMAPDecoder; Utf7IMAPCodec.prototype.bomAware = true; // -- Encoding function Utf7IMAPEncoder(options, codec) { this.iconv = codec.iconv; this.inBase64 = false; this.base64Accum = new Buffer(6); this.base64AccumIdx = 0; } Utf7IMAPEncoder.prototype.write = function(str) { var inBase64 = this.inBase64, base64Accum = this.base64Accum, base64AccumIdx = this.base64AccumIdx, buf = new Buffer(str.length*5 + 10), bufIdx = 0; for (var i = 0; i < str.length; i++) { var uChar = str.charCodeAt(i); if (0x20 <= uChar && uChar <= 0x7E) { // Direct character or '&'. if (inBase64) { if (base64AccumIdx > 0) { bufIdx += buf.write(base64Accum.slice(0, base64AccumIdx).toString('base64').replace(/\//g, ',').replace(/=+$/, ''), bufIdx); base64AccumIdx = 0; } buf[bufIdx++] = minusChar; // Write '-', then go to direct mode. inBase64 = false; } if (!inBase64) { buf[bufIdx++] = uChar; // Write direct character if (uChar === andChar) // Ampersand -> '&-' buf[bufIdx++] = minusChar; } } else { // Non-direct character if (!inBase64) { buf[bufIdx++] = andChar; // Write '&', then go to base64 mode. inBase64 = true; } if (inBase64) { base64Accum[base64AccumIdx++] = uChar >> 8; base64Accum[base64AccumIdx++] = uChar & 0xFF; if (base64AccumIdx == base64Accum.length) { bufIdx += buf.write(base64Accum.toString('base64').replace(/\//g, ','), bufIdx); base64AccumIdx = 0; } } } } this.inBase64 = inBase64; this.base64AccumIdx = base64AccumIdx; return buf.slice(0, bufIdx); } Utf7IMAPEncoder.prototype.end = function() { var buf = new Buffer(10), bufIdx = 0; if (this.inBase64) { if (this.base64AccumIdx > 0) { bufIdx += buf.write(this.base64Accum.slice(0, this.base64AccumIdx).toString('base64').replace(/\//g, ',').replace(/=+$/, ''), bufIdx); this.base64AccumIdx = 0; } buf[bufIdx++] = minusChar; // Write '-', then go to direct mode. this.inBase64 = false; } return buf.slice(0, bufIdx); } // -- Decoding function Utf7IMAPDecoder(options, codec) { this.iconv = codec.iconv; this.inBase64 = false; this.base64Accum = ''; } var base64IMAPChars = base64Chars.slice(); base64IMAPChars[','.charCodeAt(0)] = true; Utf7IMAPDecoder.prototype.write = function(buf) { var res = "", lastI = 0, inBase64 = this.inBase64, base64Accum = this.base64Accum; // The decoder is more involved as we must handle chunks in stream. // It is forgiving, closer to standard UTF-7 (for example, '-' is optional at the end). for (var i = 0; i < buf.length; i++) { if (!inBase64) { // We're in direct mode. // Write direct chars until '&' if (buf[i] == andChar) { res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars. lastI = i+1; inBase64 = true; } } else { // We decode base64. if (!base64IMAPChars[buf[i]]) { // Base64 ended. if (i == lastI && buf[i] == minusChar) { // "&-" -> "&" res += "&"; } else { var b64str = base64Accum + buf.slice(lastI, i).toString().replace(/,/g, '/'); res += this.iconv.decode(new Buffer(b64str, 'base64'), "utf16-be"); } if (buf[i] != minusChar) // Minus may be absorbed after base64. i--; lastI = i+1; inBase64 = false; base64Accum = ''; } } } if (!inBase64) { res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars. } else { var b64str = base64Accum + buf.slice(lastI).toString().replace(/,/g, '/'); var canBeDecoded = b64str.length - (b64str.length % 8); // Minimal chunk: 2 quads -> 2x3 bytes -> 3 chars. base64Accum = b64str.slice(canBeDecoded); // The rest will be decoded in future. b64str = b64str.slice(0, canBeDecoded); res += this.iconv.decode(new Buffer(b64str, 'base64'), "utf16-be"); } this.inBase64 = inBase64; this.base64Accum = base64Accum; return res; } Utf7IMAPDecoder.prototype.end = function() { var res = ""; if (this.inBase64 && this.base64Accum.length > 0) res = this.iconv.decode(new Buffer(this.base64Accum, 'base64'), "utf16-be"); this.inBase64 = false; this.base64Accum = ''; return res; }

node_modules/iconv-lite/lib/bom-handling.js

"use strict" var BOMChar = '\uFEFF'; exports.PrependBOM = PrependBOMWrapper function PrependBOMWrapper(encoder, options) { this.encoder = encoder; this.addBOM = true; } PrependBOMWrapper.prototype.write = function(str) { if (this.addBOM) { str = BOMChar + str; this.addBOM = false; } return this.encoder.write(str); } PrependBOMWrapper.prototype.end = function() { return this.encoder.end(); } //------------------------------------------------------------------------------ exports.StripBOM = StripBOMWrapper; function StripBOMWrapper(decoder, options) { this.decoder = decoder; this.pass = false; this.options = options || {}; } StripBOMWrapper.prototype.write = function(buf) { var res = this.decoder.write(buf); if (this.pass || !res) return res; if (res[0] === BOMChar) { res = res.slice(1); if (typeof this.options.stripBOM === 'function') this.options.stripBOM(); } this.pass = true; return res; } StripBOMWrapper.prototype.end = function() { return this.decoder.end(); }

node_modules/iconv-lite/lib/extend-node.js

"use strict" // == Extend Node primitives to use iconv-lite ================================= module.exports = function (iconv) { var original = undefined; // Place to keep original methods. // Node authors rewrote Buffer internals to make it compatible with // Uint8Array and we cannot patch key functions since then. iconv.supportsNodeEncodingsExtension = !(new Buffer(0) instanceof Uint8Array); iconv.extendNodeEncodings = function extendNodeEncodings() { if (original) return; original = {}; if (!iconv.supportsNodeEncodingsExtension) { console.error("ACTION NEEDED: require('iconv-lite').extendNodeEncodings() is not supported in your version of Node"); console.error("See more info at https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility"); return; } var nodeNativeEncodings = { 'hex': true, 'utf8': true, 'utf-8': true, 'ascii': true, 'binary': true, 'base64': true, 'ucs2': true, 'ucs-2': true, 'utf16le': true, 'utf-16le': true, }; Buffer.isNativeEncoding = function(enc) { return enc && nodeNativeEncodings[enc.toLowerCase()]; } // -- SlowBuffer ----------------------------------------------------------- var SlowBuffer = require('buffer').SlowBuffer; original.SlowBufferToString = SlowBuffer.prototype.toString; SlowBuffer.prototype.toString = function(encoding, start, end) { encoding = String(encoding || 'utf8').toLowerCase(); // Use native conversion when possible if (Buffer.isNativeEncoding(encoding)) return original.SlowBufferToString.call(this, encoding, start, end); // Otherwise, use our decoding method. if (typeof start == 'undefined') start = 0; if (typeof end == 'undefined') end = this.length; return iconv.decode(this.slice(start, end), encoding); } original.SlowBufferWrite = SlowBuffer.prototype.write; SlowBuffer.prototype.write = function(string, offset, length, encoding) { // Support both (string, offset, length, encoding) // and the legacy (string, encoding, offset, length) if (isFinite(offset)) { if (!isFinite(length)) { encoding = length; length = undefined; } } else { // legacy var swap = encoding; encoding = offset; offset = length; length = swap; } offset = +offset || 0; var remaining = this.length - offset; if (!length) { length = remaining; } else { length = +length; if (length > remaining) { length = remaining; } } encoding = String(encoding || 'utf8').toLowerCase(); // Use native conversion when possible if (Buffer.isNativeEncoding(encoding)) return original.SlowBufferWrite.call(this, string, offset, length, encoding); if (string.length > 0 && (length < 0 || offset < 0)) throw new RangeError('attempt to write beyond buffer bounds'); // Otherwise, use our encoding method. var buf = iconv.encode(string, encoding); if (buf.length < length) length = buf.length; buf.copy(this, offset, 0, length); return length; } // -- Buffer --------------------------------------------------------------- original.BufferIsEncoding = Buffer.isEncoding; Buffer.isEncoding = function(encoding) { return Buffer.isNativeEncoding(encoding) || iconv.encodingExists(encoding); } original.BufferByteLength = Buffer.byteLength; Buffer.byteLength = SlowBuffer.byteLength = function(str, encoding) { encoding = String(encoding || 'utf8').toLowerCase(); // Use native conversion when possible if (Buffer.isNativeEncoding(encoding)) return original.BufferByteLength.call(this, str, encoding); // Slow, I know, but we don't have a better way yet. return iconv.encode(str, encoding).length; } original.BufferToString = Buffer.prototype.toString; Buffer.prototype.toString = function(encoding, start, end) { encoding = String(encoding || 'utf8').toLowerCase(); // Use native conversion when possible if (Buffer.isNativeEncoding(encoding)) return original.BufferToString.call(this, encoding, start, end); // Otherwise, use our decoding method. if (typeof start == 'undefined') start = 0; if (typeof end == 'undefined') end = this.length; return iconv.decode(this.slice(start, end), encoding); } original.BufferWrite = Buffer.prototype.write; Buffer.prototype.write = function(string, offset, length, encoding) { var _offset = offset, _length = length, _encoding = encoding; // Support both (string, offset, length, encoding) // and the legacy (string, encoding, offset, length) if (isFinite(offset)) { if (!isFinite(length)) { encoding = length; length = undefined; } } else { // legacy var swap = encoding; encoding = offset; offset = length; length = swap; } encoding = String(encoding || 'utf8').toLowerCase(); // Use native conversion when possible if (Buffer.isNativeEncoding(encoding)) return original.BufferWrite.call(this, string, _offset, _length, _encoding); offset = +offset || 0; var remaining = this.length - offset; if (!length) { length = remaining; } else { length = +length; if (length > remaining) { length = remaining; } } if (string.length > 0 && (length < 0 || offset < 0)) throw new RangeError('attempt to write beyond buffer bounds'); // Otherwise, use our encoding method. var buf = iconv.encode(string, encoding); if (buf.length < length) length = buf.length; buf.copy(this, offset, 0, length); return length; // TODO: Set _charsWritten. } // -- Readable ------------------------------------------------------------- if (iconv.supportsStreams) { var Readable = require('stream').Readable; original.ReadableSetEncoding = Readable.prototype.setEncoding; Readable.prototype.setEncoding = function setEncoding(enc, options) { // Use our own decoder, it has the same interface. // We cannot use original function as it doesn't handle BOM-s. this._readableState.decoder = iconv.getDecoder(enc, options); this._readableState.encoding = enc; } Readable.prototype.collect = iconv._collect; } } // Remove iconv-lite Node primitive extensions. iconv.undoExtendNodeEncodings = function undoExtendNodeEncodings() { if (!iconv.supportsNodeEncodingsExtension) return; if (!original) throw new Error("require('iconv-lite').undoExtendNodeEncodings(): Nothing to undo; extendNodeEncodings() is not called.") delete Buffer.isNativeEncoding; var SlowBuffer = require('buffer').SlowBuffer; SlowBuffer.prototype.toString = original.SlowBufferToString; SlowBuffer.prototype.write = original.SlowBufferWrite; Buffer.isEncoding = original.BufferIsEncoding; Buffer.byteLength = original.BufferByteLength; Buffer.prototype.toString = original.BufferToString; Buffer.prototype.write = original.BufferWrite; if (iconv.supportsStreams) { var Readable = require('stream').Readable; Readable.prototype.setEncoding = original.ReadableSetEncoding; delete Readable.prototype.collect; } original = undefined; } }

node_modules/iconv-lite/lib/index.d.ts

// Type definitions for iconv-lite // Project: https://github.com/ashtuchkin/iconv-lite // Definitions by: Martin Poelstra <https://github.com/poelstra> // Definitions: https://github.com/borisyankov/DefinitelyTyped import stream = require("stream"); export interface Options { stripBOM: boolean; addBOM: boolean; defaultEncoding: string; } export function decode(buffer: Buffer, encoding: string, options?: Options): string; export function encode(source: string, encoding: string, options?: Options): Buffer; export function encodingExists(encoding: string): boolean; export class DecodeStream extends stream.Transform { collect(cb: (err: Error, decoded: string) => any): DecodeStream; } export class EncodeStream extends stream.Transform { collect(cb: (err: Error, decoded: Buffer) => any): EncodeStream; } export function decodeStream(encoding: string, options?: Options): DecodeStream; export function encodeStream(encoding: string, options?: Options): EncodeStream; // NOTE: These are deprecated. export function extendNodeEncodings(): void; export function undoExtendNodeEncodings(): void;

node_modules/iconv-lite/lib/index.js

"use strict" var bomHandling = require('./bom-handling'), iconv = module.exports; // All codecs and aliases are kept here, keyed by encoding name/alias. // They are lazy loaded in `iconv.getCodec` from `encodings/index.js`. iconv.encodings = null; // Characters emitted in case of error. iconv.defaultCharUnicode = '�'; iconv.defaultCharSingleByte = '?'; // Public API. iconv.encode = function encode(str, encoding, options) { str = "" + (str || ""); // Ensure string. var encoder = iconv.getEncoder(encoding, options); var res = encoder.write(str); var trail = encoder.end(); return (trail && trail.length > 0) ? Buffer.concat([res, trail]) : res; } iconv.decode = function decode(buf, encoding, options) { if (typeof buf === 'string') { if (!iconv.skipDecodeWarning) { console.error('Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding'); iconv.skipDecodeWarning = true; } buf = new Buffer("" + (buf || ""), "binary"); // Ensure buffer. } var decoder = iconv.getDecoder(encoding, options); var res = decoder.write(buf); var trail = decoder.end(); return trail ? (res + trail) : res; } iconv.encodingExists = function encodingExists(enc) { try { iconv.getCodec(enc); return true; } catch (e) { return false; } } // Legacy aliases to convert functions iconv.toEncoding = iconv.encode; iconv.fromEncoding = iconv.decode; // Search for a codec in iconv.encodings. Cache codec data in iconv._codecDataCache. iconv._codecDataCache = {}; iconv.getCodec = function getCodec(encoding) { if (!iconv.encodings) iconv.encodings = require("../encodings"); // Lazy load all encoding definitions. // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. var enc = (''+encoding).toLowerCase().replace(/[^0-9a-z]|:\d{4}$/g, ""); // Traverse iconv.encodings to find actual codec. var codecOptions = {}; while (true) { var codec = iconv._codecDataCache[enc]; if (codec) return codec; var codecDef = iconv.encodings[enc]; switch (typeof codecDef) { case "string": // Direct alias to other encoding. enc = codecDef; break; case "object": // Alias with options. Can be layered. for (var key in codecDef) codecOptions[key] = codecDef[key]; if (!codecOptions.encodingName) codecOptions.encodingName = enc; enc = codecDef.type; break; case "function": // Codec itself. if (!codecOptions.encodingName) codecOptions.encodingName = enc; // The codec function must load all tables and return object with .encoder and .decoder methods. // It'll be called only once (for each different options object). codec = new codecDef(codecOptions, iconv); iconv._codecDataCache[codecOptions.encodingName] = codec; // Save it to be reused later. return codec; default: throw new Error("Encoding not recognized: '" + encoding + "' (searched as: '"+enc+"')"); } } } iconv.getEncoder = function getEncoder(encoding, options) { var codec = iconv.getCodec(encoding), encoder = new codec.encoder(options, codec); if (codec.bomAware && options && options.addBOM) encoder = new bomHandling.PrependBOM(encoder, options); return encoder; } iconv.getDecoder = function getDecoder(encoding, options) { var codec = iconv.getCodec(encoding), decoder = new codec.decoder(options, codec); if (codec.bomAware && !(options && options.stripBOM === false)) decoder = new bomHandling.StripBOM(decoder, options); return decoder; } // Load extensions in Node. All of them are omitted in Browserify build via 'browser' field in package.json. var nodeVer = typeof process !== 'undefined' && process.versions && process.versions.node; if (nodeVer) { // Load streaming support in Node v0.10+ var nodeVerArr = nodeVer.split(".").map(Number); if (nodeVerArr[0] > 0 || nodeVerArr[1] >= 10) { require("./streams")(iconv); } // Load Node primitive extensions. require("./extend-node")(iconv); }

node_modules/iconv-lite/lib/streams.js

"use strict" var Transform = require("stream").Transform; // == Exports ================================================================== module.exports = function(iconv) { // Additional Public API. iconv.encodeStream = function encodeStream(encoding, options) { return new IconvLiteEncoderStream(iconv.getEncoder(encoding, options), options); } iconv.decodeStream = function decodeStream(encoding, options) { return new IconvLiteDecoderStream(iconv.getDecoder(encoding, options), options); } iconv.supportsStreams = true; // Not published yet. iconv.IconvLiteEncoderStream = IconvLiteEncoderStream; iconv.IconvLiteDecoderStream = IconvLiteDecoderStream; iconv._collect = IconvLiteDecoderStream.prototype.collect; }; // == Encoder stream ======================================================= function IconvLiteEncoderStream(conv, options) { this.conv = conv; options = options || {}; options.decodeStrings = false; // We accept only strings, so we don't need to decode them. Transform.call(this, options); } IconvLiteEncoderStream.prototype = Object.create(Transform.prototype, { constructor: { value: IconvLiteEncoderStream } }); IconvLiteEncoderStream.prototype._transform = function(chunk, encoding, done) { if (typeof chunk != 'string') return done(new Error("Iconv encoding stream needs strings as its input.")); try { var res = this.conv.write(chunk); if (res && res.length) this.push(res); done(); } catch (e) { done(e); } } IconvLiteEncoderStream.prototype._flush = function(done) { try { var res = this.conv.end(); if (res && res.length) this.push(res); done(); } catch (e) { done(e); } } IconvLiteEncoderStream.prototype.collect = function(cb) { var chunks = []; this.on('error', cb); this.on('data', function(chunk) { chunks.push(chunk); }); this.on('end', function() { cb(null, Buffer.concat(chunks)); }); return this; } // == Decoder stream ======================================================= function IconvLiteDecoderStream(conv, options) { this.conv = conv; options = options || {}; options.encoding = this.encoding = 'utf8'; // We output strings. Transform.call(this, options); } IconvLiteDecoderStream.prototype = Object.create(Transform.prototype, { constructor: { value: IconvLiteDecoderStream } }); IconvLiteDecoderStream.prototype._transform = function(chunk, encoding, done) { if (!Buffer.isBuffer(chunk)) return done(new Error("Iconv decoding stream needs buffers as its input.")); try { var res = this.conv.write(chunk); if (res && res.length) this.push(res, this.encoding); done(); } catch (e) { done(e); } } IconvLiteDecoderStream.prototype._flush = function(done) { try { var res = this.conv.end(); if (res && res.length) this.push(res, this.encoding); done(); } catch (e) { done(e); } } IconvLiteDecoderStream.prototype.collect = function(cb) { var res = ''; this.on('error', cb); this.on('data', function(chunk) { res += chunk; }); this.on('end', function() { cb(null, res); }); return this; }

node_modules/iconv-lite/LICENSE

Copyright (c) 2011 Alexander Shtuchkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/iconv-lite/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "iconv-lite", "name": "iconv-lite", "rawSpec": "0.4.15", "spec": "0.4.15", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/iconv-lite", "_nodeVersion": "7.0.0", "_npmOperationalInternal": { "host": "packages-18-east.internal.npmjs.com", "tmp": "tmp/iconv-lite-0.4.15.tgz_1479754977280_0.752664492232725" }, "_npmUser": { "name": "ashtuchkin", "email": "[email protected]" }, "_npmVersion": "2.15.9", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "iconv-lite", "name": "iconv-lite", "rawSpec": "0.4.15", "spec": "0.4.15", "type": "version" }, "_requiredBy": [ "/body-parser", "/raw-body" ], "_resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz", "_shasum": "fe265a218ac6a57cfe854927e9d04c19825eddeb", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "author": { "name": "Alexander Shtuchkin", "email": "[email protected]" }, "browser": { "./extend-node": false, "./streams": false }, "bugs": { "url": "https://github.com/ashtuchkin/iconv-lite/issues" }, "contributors": [ { "name": "Jinwu Zhan", "url": "https://github.com/jenkinv" }, { "name": "Adamansky Anton", "url": "https://github.com/adamansky" }, { "name": "George Stagas", "url": "https://github.com/stagas" }, { "name": "Mike D Pilsbury", "url": "https://github.com/pekim" }, { "name": "Niggler", "url": "https://github.com/Niggler" }, { "name": "wychi", "url": "https://github.com/wychi" }, { "name": "David Kuo", "url": "https://github.com/david50407" }, { "name": "ChangZhuo Chen", "url": "https://github.com/czchen" }, { "name": "Lee Treveil", "url": "https://github.com/leetreveil" }, { "name": "Brian White", "url": "https://github.com/mscdex" }, { "name": "Mithgol", "url": "https://github.com/Mithgol" }, { "name": "Nazar Leush", "url": "https://github.com/nleush" } ], "dependencies": {}, "description": "Convert character encodings in pure javascript.", "devDependencies": { "async": "*", "errto": "*", "iconv": "*", "istanbul": "*", "mocha": "*", "request": "*", "unorm": "*" }, "directories": {}, "dist": { "shasum": "fe265a218ac6a57cfe854927e9d04c19825eddeb", "tarball": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz" }, "engines": { "node": ">=0.10.0" }, "gitHead": "c3bcedcd6a5025c25e39ed1782347acaed1d290f", "homepage": "https://github.com/ashtuchkin/iconv-lite", "keywords": [ "iconv", "convert", "charset", "icu" ], "license": "MIT", "main": "./lib/index.js", "maintainers": [ { "name": "ashtuchkin", "email": "[email protected]" } ], "name": "iconv-lite", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git://github.com/ashtuchkin/iconv-lite.git" }, "scripts": { "coverage": "istanbul cover _mocha -- --grep .", "coverage-open": "open coverage/lcov-report/index.html", "test": "mocha --reporter spec --grep ." }, "typings": "./lib/index.d.ts", "version": "0.4.15" }

node_modules/iconv-lite/README.md

## Pure JS character encoding conversion [![Build Status](https://travis-ci.org/ashtuchkin/iconv-lite.svg?branch=master)](https://travis-ci.org/ashtuchkin/iconv-lite) * Doesn't need native code compilation. Works on Windows and in sandboxed environments like [Cloud9](http://c9.io). * Used in popular projects like [Express.js (body_parser)](https://github.com/expressjs/body-parser), [Grunt](http://gruntjs.com/), [Nodemailer](http://www.nodemailer.com/), [Yeoman](http://yeoman.io/) and others. * Faster than [node-iconv](https://github.com/bnoordhuis/node-iconv) (see below for performance comparison). * Intuitive encode/decode API * Streaming support for Node v0.10+ * [Deprecated] Can extend Node.js primitives (buffers, streams) to support all iconv-lite encodings. * In-browser usage via [Browserify](https://github.com/substack/node-browserify) (~180k gzip compressed with Buffer shim included). * Typescript [type definition file](https://github.com/ashtuchkin/iconv-lite/blob/master/lib/index.d.ts) included. * License: MIT. [![NPM Stats](https://nodei.co/npm/iconv-lite.png?downloads=true&downloadRank=true)](https://npmjs.org/packages/iconv-lite/) ## Usage ### Basic API ```javascript var iconv = require('iconv-lite'); // Convert from an encoded buffer to js string. str = iconv.decode(new Buffer([0x68, 0x65, 0x6c, 0x6c, 0x6f]), 'win1251'); // Convert from js string to an encoded buffer. buf = iconv.encode("Sample input string", 'win1251'); // Check if encoding is supported iconv.encodingExists("us-ascii") ``` ### Streaming API (Node v0.10+) ```javascript // Decode stream (from binary stream to js strings) http.createServer(function(req, res) { var converterStream = iconv.decodeStream('win1251'); req.pipe(converterStream); converterStream.on('data', function(str) { console.log(str); // Do something with decoded strings, chunk-by-chunk. }); }); // Convert encoding streaming example fs.createReadStream('file-in-win1251.txt') .pipe(iconv.decodeStream('win1251')) .pipe(iconv.encodeStream('ucs2')) .pipe(fs.createWriteStream('file-in-ucs2.txt')); // Sugar: all encode/decode streams have .collect(cb) method to accumulate data. http.createServer(function(req, res) { req.pipe(iconv.decodeStream('win1251')).collect(function(err, body) { assert(typeof body == 'string'); console.log(body); // full request body string }); }); ``` ### [Deprecated] Extend Node.js own encodings > NOTE: This doesn't work on latest Node versions. See [details](https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility). ```javascript // After this call all Node basic primitives will understand iconv-lite encodings. iconv.extendNodeEncodings(); // Examples: buf = new Buffer(str, 'win1251'); buf.write(str, 'gbk'); str = buf.toString('latin1'); assert(Buffer.isEncoding('iso-8859-15')); Buffer.byteLength(str, 'us-ascii'); http.createServer(function(req, res) { req.setEncoding('big5'); req.collect(function(err, body) { console.log(body); }); }); fs.createReadStream("file.txt", "shift_jis"); // External modules are also supported (if they use Node primitives, which they probably do). request = require('request'); request({ url: "http://github.com/", encoding: "cp932" }); // To remove extensions iconv.undoExtendNodeEncodings(); ``` ## Supported encodings * All node.js native encodings: utf8, ucs2 / utf16-le, ascii, binary, base64, hex. * Additional unicode encodings: utf16, utf16-be, utf-7, utf-7-imap. * All widespread singlebyte encodings: Windows 125x family, ISO-8859 family, IBM/DOS codepages, Macintosh family, KOI8 family, all others supported by iconv library. Aliases like 'latin1', 'us-ascii' also supported. * All widespread multibyte encodings: CP932, CP936, CP949, CP950, GB2313, GBK, GB18030, Big5, Shift_JIS, EUC-JP. See [all supported encodings on wiki](https://github.com/ashtuchkin/iconv-lite/wiki/Supported-Encodings). Most singlebyte encodings are generated automatically from [node-iconv](https://github.com/bnoordhuis/node-iconv). Thank you Ben Noordhuis and libiconv authors! Multibyte encodings are generated from [Unicode.org mappings](http://www.unicode.org/Public/MAPPINGS/) and [WHATWG Encoding Standard mappings](http://encoding.spec.whatwg.org/). Thank you, respective authors! ## Encoding/decoding speed Comparison with node-iconv module (1000x256kb, on MacBook Pro, Core i5/2.6 GHz, Node v0.12.0). Note: your results may vary, so please always check on your hardware. operation [email protected] [email protected] ---------------------------------------------------------- encode('win1251') ~96 Mb/s ~320 Mb/s decode('win1251') ~95 Mb/s ~246 Mb/s ## BOM handling * Decoding: BOM is stripped by default, unless overridden by passing `stripBOM: false` in options (f.ex. `iconv.decode(buf, enc, {stripBOM: false})`). A callback might also be given as a `stripBOM` parameter - it'll be called if BOM character was actually found. * If you want to detect UTF-8 BOM when decoding other encodings, use [node-autodetect-decoder-stream](https://github.com/danielgindi/node-autodetect-decoder-stream) module. * Encoding: No BOM added, unless overridden by `addBOM: true` option. ## UTF-16 Encodings This library supports UTF-16LE, UTF-16BE and UTF-16 encodings. First two are straightforward, but UTF-16 is trying to be smart about endianness in the following ways: * Decoding: uses BOM and 'spaces heuristic' to determine input endianness. Default is UTF-16LE, but can be overridden with `defaultEncoding: 'utf-16be'` option. Strips BOM unless `stripBOM: false`. * Encoding: uses UTF-16LE and writes BOM by default. Use `addBOM: false` to override. ## Other notes When decoding, be sure to supply a Buffer to decode() method, otherwise [bad things usually happen](https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding). Untranslatable characters are set to � or ?. No transliteration is currently supported. Node versions 0.10.31 and 0.11.13 are buggy, don't use them (see #65, #77). ## Testing ```bash $ git clone [email protected]:ashtuchkin/iconv-lite.git $ cd iconv-lite $ npm install $ npm test $ # To view performance: $ node test/performance.js $ # To view test coverage: $ npm run coverage $ open coverage/lcov-report/index.html ``` ## Adoption [![NPM](https://nodei.co/npm-dl/iconv-lite.png)](https://nodei.co/npm/iconv-lite/) [![Codeship Status for ashtuchkin/iconv-lite](https://www.codeship.com/projects/81670840-fa72-0131-4520-4a01a6c01acc/status)](https://www.codeship.com/projects/29053)

node_modules/inherits/inherits.js

try { var util = require('util'); if (typeof util.inherits !== 'function') throw ''; module.exports = util.inherits; } catch (e) { module.exports = require('./inherits_browser.js'); }

node_modules/inherits/inherits_browser.js

if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true } }); }; } else { // old school shim for old browsers module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor var TempCtor = function () {} TempCtor.prototype = superCtor.prototype ctor.prototype = new TempCtor() ctor.prototype.constructor = ctor } }

node_modules/inherits/LICENSE

The ISC License Copyright (c) Isaac Z. Schlueter Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

node_modules/inherits/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "inherits", "name": "inherits", "rawSpec": "2.0.3", "spec": "2.0.3", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\http-errors" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/inherits", "_nodeVersion": "6.5.0", "_npmOperationalInternal": { "host": "packages-16-east.internal.npmjs.com", "tmp": "tmp/inherits-2.0.3.tgz_1473295776489_0.08142363070510328" }, "_npmUser": { "name": "isaacs", "email": "[email protected]" }, "_npmVersion": "3.10.7", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "inherits", "name": "inherits", "rawSpec": "2.0.3", "spec": "2.0.3", "type": "version" }, "_requiredBy": [ "/http-errors" ], "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "_shasum": "633c2c83e3da42a502f52466022480f4208261de", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\http-errors", "browser": "./inherits_browser.js", "bugs": { "url": "https://github.com/isaacs/inherits/issues" }, "dependencies": {}, "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", "devDependencies": { "tap": "^7.1.0" }, "directories": {}, "dist": { "shasum": "633c2c83e3da42a502f52466022480f4208261de", "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" }, "files": [ "inherits.js", "inherits_browser.js" ], "gitHead": "e05d0fb27c61a3ec687214f0476386b765364d5f", "homepage": "https://github.com/isaacs/inherits#readme", "keywords": [ "inheritance", "class", "klass", "oop", "object-oriented", "inherits", "browser", "browserify" ], "license": "ISC", "main": "./inherits.js", "maintainers": [ { "name": "isaacs", "email": "[email protected]" } ], "name": "inherits", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git://github.com/isaacs/inherits.git" }, "scripts": { "test": "node test" }, "version": "2.0.3" }

node_modules/inherits/README.md

Browser-friendly inheritance fully compatible with standard node.js [inherits](http://nodejs.org/api/util.html#util_util_inherits_constructor_superconstructor). This package exports standard `inherits` from node.js `util` module in node environment, but also provides alternative browser-friendly implementation through [browser field](https://gist.github.com/shtylman/4339901). Alternative implementation is a literal copy of standard one located in standalone module to avoid requiring of `util`. It also has a shim for old browsers with no `Object.create` support. While keeping you sure you are using standard `inherits` implementation in node.js environment, it allows bundlers such as [browserify](https://github.com/substack/node-browserify) to not include full `util` package to your client code if all you need is just `inherits` function. It worth, because browser shim for `util` package is large and `inherits` is often the single function you need from it. It's recommended to use this package instead of `require('util').inherits` for any code that has chances to be used not only in node.js but in browser too. ## usage ```js var inherits = require('inherits'); // then use exactly as the standard one ``` ## note on version ~1.0 Version ~1.0 had completely different motivation and is not compatible neither with 2.0 nor with standard node.js `inherits`. If you are using version ~1.0 and planning to switch to ~2.0, be careful: * new version uses `super_` instead of `super` for referencing superclass * new version overwrites current prototype while old one preserves any existing fields on it

node_modules/media-typer/HISTORY.md

0.3.0 / 2014-09-07 ================== * Support Node.js 0.6 * Throw error when parameter format invalid on parse 0.2.0 / 2014-06-18 ================== * Add `typer.format()` to format media types 0.1.0 / 2014-06-17 ================== * Accept `req` as argument to `parse` * Accept `res` as argument to `parse` * Parse media type with extra LWS between type and first parameter 0.0.0 / 2014-06-13 ================== * Initial implementation

node_modules/media-typer/index.js

/*! * media-typer * Copyright(c) 2014 Douglas Christopher Wilson * MIT Licensed */ /** * RegExp to match *( ";" parameter ) in RFC 2616 sec 3.7 * * parameter = token "=" ( token | quoted-string ) * token = 1*<any CHAR except CTLs or separators> * separators = "(" | ")" | "<" | ">" | "@" * | "," | ";" | ":" | "\" | <"> * | "/" | "[" | "]" | "?" | "=" * | "{" | "}" | SP | HT * quoted-string = ( <"> *(qdtext | quoted-pair ) <"> ) * qdtext = <any TEXT except <">> * quoted-pair = "\" CHAR * CHAR = <any US-ASCII character (octets 0 - 127)> * TEXT = <any OCTET except CTLs, but including LWS> * LWS = [CRLF] 1*( SP | HT ) * CRLF = CR LF * CR = <US-ASCII CR, carriage return (13)> * LF = <US-ASCII LF, linefeed (10)> * SP = <US-ASCII SP, space (32)> * SHT = <US-ASCII HT, horizontal-tab (9)> * CTL = <any US-ASCII control character (octets 0 - 31) and DEL (127)> * OCTET = <any 8-bit sequence of data> */ var paramRegExp = /; *([!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+) *= *("(?:[ !\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u0020-\u007e])*"|[!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+) */g; var textRegExp = /^[\u0020-\u007e\u0080-\u00ff]+$/ var tokenRegExp = /^[!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+$/ /** * RegExp to match quoted-pair in RFC 2616 * * quoted-pair = "\" CHAR * CHAR = <any US-ASCII character (octets 0 - 127)> */ var qescRegExp = /\\([\u0000-\u007f])/g; /** * RegExp to match chars that must be quoted-pair in RFC 2616 */ var quoteRegExp = /([\\"])/g; /** * RegExp to match type in RFC 6838 * * type-name = restricted-name * subtype-name = restricted-name * restricted-name = restricted-name-first *126restricted-name-chars * restricted-name-first = ALPHA / DIGIT * restricted-name-chars = ALPHA / DIGIT / "!" / "#" / * "$" / "&" / "-" / "^" / "_" * restricted-name-chars =/ "." ; Characters before first dot always * ; specify a facet name * restricted-name-chars =/ "+" ; Characters after last plus always * ; specify a structured syntax suffix * ALPHA = %x41-5A / %x61-7A ; A-Z / a-z * DIGIT = %x30-39 ; 0-9 */ var subtypeNameRegExp = /^[A-Za-z0-9][A-Za-z0-9!#$&^_.-]{0,126}$/ var typeNameRegExp = /^[A-Za-z0-9][A-Za-z0-9!#$&^_-]{0,126}$/ var typeRegExp = /^ *([A-Za-z0-9][A-Za-z0-9!#$&^_-]{0,126})\/([A-Za-z0-9][A-Za-z0-9!#$&^_.+-]{0,126}) *$/; /** * Module exports. */ exports.format = format exports.parse = parse /** * Format object to media type. * * @param {object} obj * @return {string} * @api public */ function format(obj) { if (!obj || typeof obj !== 'object') { throw new TypeError('argument obj is required') } var parameters = obj.parameters var subtype = obj.subtype var suffix = obj.suffix var type = obj.type if (!type || !typeNameRegExp.test(type)) { throw new TypeError('invalid type') } if (!subtype || !subtypeNameRegExp.test(subtype)) { throw new TypeError('invalid subtype') } // format as type/subtype var string = type + '/' + subtype // append +suffix if (suffix) { if (!typeNameRegExp.test(suffix)) { throw new TypeError('invalid suffix') } string += '+' + suffix } // append parameters if (parameters && typeof parameters === 'object') { var param var params = Object.keys(parameters).sort() for (var i = 0; i < params.length; i++) { param = params[i] if (!tokenRegExp.test(param)) { throw new TypeError('invalid parameter name') } string += '; ' + param + '=' + qstring(parameters[param]) } } return string } /** * Parse media type to object. * * @param {string|object} string * @return {Object} * @api public */ function parse(string) { if (!string) { throw new TypeError('argument string is required') } // support req/res-like objects as argument if (typeof string === 'object') { string = getcontenttype(string) } if (typeof string !== 'string') { throw new TypeError('argument string is required to be a string') } var index = string.indexOf(';') var type = index !== -1 ? string.substr(0, index) : string var key var match var obj = splitType(type) var params = {} var value paramRegExp.lastIndex = index while (match = paramRegExp.exec(string)) { if (match.index !== index) { throw new TypeError('invalid parameter format') } index += match[0].length key = match[1].toLowerCase() value = match[2] if (value[0] === '"') { // remove quotes and escapes value = value .substr(1, value.length - 2) .replace(qescRegExp, '$1') } params[key] = value } if (index !== -1 && index !== string.length) { throw new TypeError('invalid parameter format') } obj.parameters = params return obj } /** * Get content-type from req/res objects. * * @param {object} * @return {Object} * @api private */ function getcontenttype(obj) { if (typeof obj.getHeader === 'function') { // res-like return obj.getHeader('content-type') } if (typeof obj.headers === 'object') { // req-like return obj.headers && obj.headers['content-type'] } } /** * Quote a string if necessary. * * @param {string} val * @return {string} * @api private */ function qstring(val) { var str = String(val) // no need to quote tokens if (tokenRegExp.test(str)) { return str } if (str.length > 0 && !textRegExp.test(str)) { throw new TypeError('invalid parameter value') } return '"' + str.replace(quoteRegExp, '\\$1') + '"' } /** * Simply "type/subtype+siffx" into parts. * * @param {string} string * @return {Object} * @api private */ function splitType(string) { var match = typeRegExp.exec(string.toLowerCase()) if (!match) { throw new TypeError('invalid media type') } var type = match[1] var subtype = match[2] var suffix // suffix after last + var index = subtype.lastIndexOf('+') if (index !== -1) { suffix = subtype.substr(index + 1) subtype = subtype.substr(0, index) } var obj = { type: type, subtype: subtype, suffix: suffix } return obj }

node_modules/media-typer/LICENSE

(The MIT License) Copyright (c) 2014 Douglas Christopher Wilson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/media-typer/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "media-typer", "name": "media-typer", "rawSpec": "0.3.0", "spec": "0.3.0", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\type-is" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/media-typer", "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "1.4.21", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "media-typer", "name": "media-typer", "rawSpec": "0.3.0", "spec": "0.3.0", "type": "version" }, "_requiredBy": [ "/type-is" ], "_resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "_shasum": "8710d7af0aa626f8fffa1ce00168545263255748", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\type-is", "author": { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, "bugs": { "url": "https://github.com/jshttp/media-typer/issues" }, "dependencies": {}, "description": "Simple RFC 6838 media type parser and formatter", "devDependencies": { "istanbul": "0.3.2", "mocha": "~1.21.4", "should": "~4.0.4" }, "directories": {}, "dist": { "shasum": "8710d7af0aa626f8fffa1ce00168545263255748", "tarball": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "LICENSE", "HISTORY.md", "index.js" ], "gitHead": "d49d41ffd0bb5a0655fa44a59df2ec0bfc835b16", "homepage": "https://github.com/jshttp/media-typer", "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" } ], "name": "media-typer", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/media-typer.git" }, "scripts": { "test": "mocha --reporter spec --check-leaks --bail test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" }, "version": "0.3.0" }

node_modules/media-typer/README.md

# media-typer [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Simple RFC 6838 media type parser ## Installation ```sh $ npm install media-typer ``` ## API ```js var typer = require('media-typer') ``` ### typer.parse(string) ```js var obj = typer.parse('image/svg+xml; charset=utf-8') ``` Parse a media type string. This will return an object with the following properties (examples are shown for the string `'image/svg+xml; charset=utf-8'`): - `type`: The type of the media type (always lower case). Example: `'image'` - `subtype`: The subtype of the media type (always lower case). Example: `'svg'` - `suffix`: The suffix of the media type (always lower case). Example: `'xml'` - `parameters`: An object of the parameters in the media type (name of parameter always lower case). Example: `{charset: 'utf-8'}` ### typer.parse(req) ```js var obj = typer.parse(req) ``` Parse the `content-type` header from the given `req`. Short-cut for `typer.parse(req.headers['content-type'])`. ### typer.parse(res) ```js var obj = typer.parse(res) ``` Parse the `content-type` header set on the given `res`. Short-cut for `typer.parse(res.getHeader('content-type'))`. ### typer.format(obj) ```js var obj = typer.format({type: 'image', subtype: 'svg', suffix: 'xml'}) ``` Format an object into a media type string. This will return a string of the mime type for the given object. For the properties of the object, see the documentation for `typer.parse(string)`. ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/media-typer.svg?style=flat [npm-url]: https://npmjs.org/package/media-typer [node-version-image]: https://img.shields.io/badge/node.js-%3E%3D_0.6-brightgreen.svg?style=flat [node-version-url]: http://nodejs.org/download/ [travis-image]: https://img.shields.io/travis/jshttp/media-typer.svg?style=flat [travis-url]: https://travis-ci.org/jshttp/media-typer [coveralls-image]: https://img.shields.io/coveralls/jshttp/media-typer.svg?style=flat [coveralls-url]: https://coveralls.io/r/jshttp/media-typer [downloads-image]: https://img.shields.io/npm/dm/media-typer.svg?style=flat [downloads-url]: https://npmjs.org/package/media-typer

node_modules/method-override/HISTORY.md

2.3.9 / 2017-05-19 ================== * deps: [email protected] - deps: [email protected] * deps: vary@~1.1.1 - perf: hoist regular expression 2.3.8 / 2017-03-24 ================== * deps: [email protected] - Allow colors in workers - Deprecated `DEBUG_FD` environment variable - Fix: `DEBUG_MAX_ARRAY_LENGTH` - Use same color for same namespace 2.3.7 / 2016-11-19 ================== * deps: [email protected] - Fix error when running under React Native - deps: [email protected] * perf: remove argument reassignment 2.3.6 / 2016-05-20 ================== * deps: methods@~1.1.2 - perf: enable strict mode * deps: parseurl@~1.3.1 - perf: enable strict mode * deps: vary@~1.1.0 2.3.5 / 2015-07-31 ================== * perf: enable strict mode 2.3.4 / 2015-07-14 ================== * deps: vary@~1.0.1 2.3.3 / 2015-05-12 ================== * deps: debug@~2.2.0 - deps: [email protected] 2.3.2 / 2015-03-14 ================== * deps: debug@~2.1.3 - Fix high intensity foreground color for bold - deps: [email protected] 2.3.1 / 2014-12-30 ================== * deps: debug@~2.1.1 * deps: methods@~1.1.1 2.3.0 / 2014-10-16 ================== * deps: debug@~2.1.0 - Implement `DEBUG_FD` env variable support 2.2.0 / 2014-09-02 ================== * deps: debug@~2.0.0 2.1.3 / 2014-08-10 ================== * deps: parseurl@~1.3.0 * deps: vary@~1.0.0 2.1.2 / 2014-07-22 ================== * deps: [email protected] * deps: parseurl@~1.2.0 - Cache URLs based on original value - Remove no-longer-needed URL mis-parse work-around - Simplify the "fast-path" `RegExp` 2.1.1 / 2014-07-11 ================== * deps: [email protected] - Add support for multiple wildcards in namespaces 2.1.0 / 2014-07-08 ================== * add simple debug output * deps: [email protected] - add `CONNECT` * deps: parseurl@~1.1.3 - faster parsing of href-only URLs 2.0.2 / 2014-06-05 ================== * use vary module for better `Vary` behavior 2.0.1 / 2014-06-02 ================== * deps: [email protected] 2.0.0 / 2014-06-01 ================== * Default behavior only checks `X-HTTP-Method-Override` header * New interface, less magic - Can specify what header to look for override in, if wanted - Can specify custom function to get method from request * Only `POST` requests are examined by default * Remove `req.body` support for more standard query param support - Use custom `getter` function if `req.body` support is needed * Set `Vary` header when using built-in header checking 1.0.2 / 2014-05-22 ================== * Handle `req.body` key referencing array or object * Handle multiple HTTP headers 1.0.1 / 2014-05-17 ================== * deps: pin dependency versions 1.0.0 / 2014-03-03 ================== * Genesis from `connect`

node_modules/method-override/index.js

/*! * method-override * Copyright(c) 2010 Sencha Inc. * Copyright(c) 2011 TJ Holowaychuk * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2014 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. */ var debug = require('debug')('method-override') var methods = require('methods') var parseurl = require('parseurl') var querystring = require('querystring') var vary = require('vary') /** * Method Override: * * Provides faux HTTP method support. * * Pass an optional `getter` to use when checking for * a method override. * * A string is converted to a getter that will look for * the method in `req.body[getter]` and a function will be * called with `req` and expects the method to be returned. * If the string starts with `X-` then it will look in * `req.headers[getter]` instead. * * The original method is available via `req.originalMethod`. * * @param {string|function} [getter=X-HTTP-Method-Override] * @param {object} [options] * @return {function} * @api public */ module.exports = function methodOverride (getter, options) { var opts = options || {} // get the getter fn var get = typeof getter === 'function' ? getter : createGetter(getter || 'X-HTTP-Method-Override') // get allowed request methods to examine var methods = opts.methods === undefined ? ['POST'] : opts.methods return function methodOverride (req, res, next) { var method var val req.originalMethod = req.originalMethod || req.method // validate request is an allowed method if (methods && methods.indexOf(req.originalMethod) === -1) { return next() } val = get(req, res) method = Array.isArray(val) ? val[0] : val // replace if (method !== undefined && supports(method)) { req.method = method.toUpperCase() debug('override %s as %s', req.originalMethod, req.method) } next() } } /** * Create a getter for the given string. */ function createGetter (str) { if (str.substr(0, 2).toUpperCase() === 'X-') { // header getter return createHeaderGetter(str) } return createQueryGetter(str) } /** * Create a getter for the given query key name. */ function createQueryGetter (key) { return function (req, res) { var url = parseurl(req) var query = querystring.parse(url.query || '') return query[key] } } /** * Create a getter for the given header name. */ function createHeaderGetter (str) { var header = str.toLowerCase() return function (req, res) { // set appropriate Vary header vary(res, str) // multiple headers get joined with comma by node.js core return (req.headers[header] || '').split(/ *, */) } } /** * Check if node supports `method`. */ function supports (method) { return method && typeof method === 'string' && methods.indexOf(method.toLowerCase()) !== -1 }

node_modules/method-override/LICENSE

(The MIT License) Copyright (c) 2014 Jonathan Ong <[email protected]> Copyright (c) 2014 Douglas Christopher Wilson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/method-override/node_modules/debug/.coveralls.yml

repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve

node_modules/method-override/node_modules/debug/.eslintrc

{ "env": { "browser": true, "node": true }, "rules": { "no-console": 0, "no-empty": [1, { "allowEmptyCatch": true }] }, "extends": "eslint:recommended" }

node_modules/method-override/node_modules/debug/.npmignore

support test examples example *.sock dist yarn.lock coverage bower.json

node_modules/method-override/node_modules/debug/.travis.yml

language: node_js node_js: - "6" - "5" - "4" install: - make node_modules script: - make lint - make test - make coveralls

node_modules/method-override/node_modules/debug/CHANGELOG.md

2.6.8 / 2017-05-18 ================== * Fix: Check for undefined on browser globals (#462, @marbemac) 2.6.7 / 2017-05-16 ================== * Fix: Update ms to 2.0.0 to fix regular expression denial of service vulnerability (#458, @hubdotcom) * Fix: Inline extend function in node implementation (#452, @dougwilson) * Docs: Fix typo (#455, @msasad) 2.6.5 / 2017-04-27 ================== * Fix: null reference check on window.documentElement.style.WebkitAppearance (#447, @thebigredgeek) * Misc: clean up browser reference checks (#447, @thebigredgeek) * Misc: add npm-debug.log to .gitignore (@thebigredgeek) 2.6.4 / 2017-04-20 ================== * Fix: bug that would occure if process.env.DEBUG is a non-string value. (#444, @LucianBuzzo) * Chore: ignore bower.json in npm installations. (#437, @joaovieira) * Misc: update "ms" to v0.7.3 (@tootallnate) 2.6.3 / 2017-03-13 ================== * Fix: Electron reference to `process.env.DEBUG` (#431, @paulcbetts) * Docs: Changelog fix (@thebigredgeek) 2.6.2 / 2017-03-10 ================== * Fix: DEBUG_MAX_ARRAY_LENGTH (#420, @slavaGanzin) * Docs: Add backers and sponsors from Open Collective (#422, @piamancini) * Docs: Add Slackin invite badge (@tootallnate) 2.6.1 / 2017-02-10 ================== * Fix: Module's `export default` syntax fix for IE8 `Expected identifier` error * Fix: Whitelist DEBUG_FD for values 1 and 2 only (#415, @pi0) * Fix: IE8 "Expected identifier" error (#414, @vgoma) * Fix: Namespaces would not disable once enabled (#409, @musikov) 2.6.0 / 2016-12-28 ================== * Fix: added better null pointer checks for browser useColors (@thebigredgeek) * Improvement: removed explicit `window.debug` export (#404, @tootallnate) * Improvement: deprecated `DEBUG_FD` environment variable (#405, @tootallnate) 2.5.2 / 2016-12-25 ================== * Fix: reference error on window within webworkers (#393, @KlausTrainer) * Docs: fixed README typo (#391, @lurch) * Docs: added notice about v3 api discussion (@thebigredgeek) 2.5.1 / 2016-12-20 ================== * Fix: babel-core compatibility 2.5.0 / 2016-12-20 ================== * Fix: wrong reference in bower file (@thebigredgeek) * Fix: webworker compatibility (@thebigredgeek) * Fix: output formatting issue (#388, @kribblo) * Fix: babel-loader compatibility (#383, @escwald) * Misc: removed built asset from repo and publications (@thebigredgeek) * Misc: moved source files to /src (#378, @yamikuronue) * Test: added karma integration and replaced babel with browserify for browser tests (#378, @yamikuronue) * Test: coveralls integration (#378, @yamikuronue) * Docs: simplified language in the opening paragraph (#373, @yamikuronue) 2.4.5 / 2016-12-17 ================== * Fix: `navigator` undefined in Rhino (#376, @jochenberger) * Fix: custom log function (#379, @hsiliev) * Improvement: bit of cleanup + linting fixes (@thebigredgeek) * Improvement: rm non-maintainted `dist/` dir (#375, @freewil) * Docs: simplified language in the opening paragraph. (#373, @yamikuronue) 2.4.4 / 2016-12-14 ================== * Fix: work around debug being loaded in preload scripts for electron (#368, @paulcbetts) 2.4.3 / 2016-12-14 ================== * Fix: navigation.userAgent error for react native (#364, @escwald) 2.4.2 / 2016-12-14 ================== * Fix: browser colors (#367, @tootallnate) * Misc: travis ci integration (@thebigredgeek) * Misc: added linting and testing boilerplate with sanity check (@thebigredgeek) 2.4.1 / 2016-12-13 ================== * Fix: typo that broke the package (#356) 2.4.0 / 2016-12-13 ================== * Fix: bower.json references unbuilt src entry point (#342, @justmatt) * Fix: revert "handle regex special characters" (@tootallnate) * Feature: configurable util.inspect()`options for NodeJS (#327, @tootallnate) * Feature: %O`(big O) pretty-prints objects (#322, @tootallnate) * Improvement: allow colors in workers (#335, @botverse) * Improvement: use same color for same namespace. (#338, @lchenay) 2.3.3 / 2016-11-09 ================== * Fix: Catch `JSON.stringify()` errors (#195, Jovan Alleyne) * Fix: Returning `localStorage` saved values (#331, Levi Thomason) * Improvement: Don't create an empty object when no `process` (Nathan Rajlich) 2.3.2 / 2016-11-09 ================== * Fix: be super-safe in index.js as well (@TooTallNate) * Fix: should check whether process exists (Tom Newby) 2.3.1 / 2016-11-09 ================== * Fix: Added electron compatibility (#324, @paulcbetts) * Improvement: Added performance optimizations (@tootallnate) * Readme: Corrected PowerShell environment variable example (#252, @gimre) * Misc: Removed yarn lock file from source control (#321, @fengmk2) 2.3.0 / 2016-11-07 ================== * Fix: Consistent placement of ms diff at end of output (#215, @gorangajic) * Fix: Escaping of regex special characters in namespace strings (#250, @zacronos) * Fix: Fixed bug causing crash on react-native (#282, @vkarpov15) * Feature: Enabled ES6+ compatible import via default export (#212 @bucaran) * Feature: Added %O formatter to reflect Chrome's console.log capability (#279, @oncletom) * Package: Update "ms" to 0.7.2 (#315, @DevSide) * Package: removed superfluous version property from bower.json (#207 @kkirsche) * Readme: fix USE_COLORS to DEBUG_COLORS * Readme: Doc fixes for format string sugar (#269, @mlucool) * Readme: Updated docs for DEBUG_FD and DEBUG_COLORS environment variables (#232, @mattlyons0) * Readme: doc fixes for PowerShell (#271 #243, @exoticknight @unreadable) * Readme: better docs for browser support (#224, @matthewmueller) * Tooling: Added yarn integration for development (#317, @thebigredgeek) * Misc: Renamed History.md to CHANGELOG.md (@thebigredgeek) * Misc: Added license file (#226 #274, @CantemoInternal @sdaitzman) * Misc: Updated contributors (@thebigredgeek) 2.2.0 / 2015-05-09 ================== * package: update "ms" to v0.7.1 (#202, @dougwilson) * README: add logging to file example (#193, @DanielOchoa) * README: fixed a typo (#191, @amir-s) * browser: expose `storage` (#190, @stephenmathieson) * Makefile: add a `distclean` target (#189, @stephenmathieson) 2.1.3 / 2015-03-13 ================== * Updated stdout/stderr example (#186) * Updated example/stdout.js to match debug current behaviour * Renamed example/stderr.js to stdout.js * Update Readme.md (#184) * replace high intensity foreground color for bold (#182, #183) 2.1.2 / 2015-03-01 ================== * dist: recompile * update "ms" to v0.7.0 * package: update "browserify" to v9.0.3 * component: fix "ms.js" repo location * changed bower package name * updated documentation about using debug in a browser * fix: security error on safari (#167, #168, @yields) 2.1.1 / 2014-12-29 ================== * browser: use `typeof` to check for `console` existence * browser: check for `console.log` truthiness (fix IE 8/9) * browser: add support for Chrome apps * Readme: added Windows usage remarks * Add `bower.json` to properly support bower install 2.1.0 / 2014-10-15 ================== * node: implement `DEBUG_FD` env variable support * package: update "browserify" to v6.1.0 * package: add "license" field to package.json (#135, @panuhorsmalahti) 2.0.0 / 2014-09-01 ================== * package: update "browserify" to v5.11.0 * node: use stderr rather than stdout for logging (#29, @stephenmathieson) 1.0.4 / 2014-07-15 ================== * dist: recompile * example: remove `console.info()` log usage * example: add "Content-Type" UTF-8 header to browser example * browser: place %c marker after the space character * browser: reset the "content" color via `color: inherit` * browser: add colors support for Firefox >= v31 * debug: prefer an instance `log()` function over the global one (#119) * Readme: update documentation about styled console logs for FF v31 (#116, @wryk) 1.0.3 / 2014-07-09 ================== * Add support for multiple wildcards in namespaces (#122, @seegno) * browser: fix lint 1.0.2 / 2014-06-10 ================== * browser: update color palette (#113, @gscottolson) * common: make console logging function configurable (#108, @timoxley) * node: fix %o colors on old node <= 0.8.x * Makefile: find node path using shell/which (#109, @timoxley) 1.0.1 / 2014-06-06 ================== * browser: use `removeItem()` to clear localStorage * browser, node: don't set DEBUG if namespaces is undefined (#107, @leedm777) * package: add "contributors" section * node: fix comment typo * README: list authors 1.0.0 / 2014-06-04 ================== * make ms diff be global, not be scope * debug: ignore empty strings in enable() * node: make DEBUG_COLORS able to disable coloring * *: export the `colors` array * npmignore: don't publish the `dist` dir * Makefile: refactor to use browserify * package: add "browserify" as a dev dependency * Readme: add Web Inspector Colors section * node: reset terminal color for the debug content * node: map "%o" to `util.inspect()` * browser: map "%j" to `JSON.stringify()` * debug: add custom "formatters" * debug: use "ms" module for humanizing the diff * Readme: add "bash" syntax highlighting * browser: add Firebug color support * browser: add colors for WebKit browsers * node: apply log to `console` * rewrite: abstract common logic for Node & browsers * add .jshintrc file 0.8.1 / 2014-04-14 ================== * package: re-add the "component" section 0.8.0 / 2014-03-30 ================== * add `enable()` method for nodejs. Closes #27 * change from stderr to stdout * remove unnecessary index.js file 0.7.4 / 2013-11-13 ================== * remove "browserify" key from package.json (fixes something in browserify) 0.7.3 / 2013-10-30 ================== * fix: catch localStorage security error when cookies are blocked (Chrome) * add debug(err) support. Closes #46 * add .browser prop to package.json. Closes #42 0.7.2 / 2013-02-06 ================== * fix package.json * fix: Mobile Safari (private mode) is broken with debug * fix: Use unicode to send escape character to shell instead of octal to work with strict mode javascript 0.7.1 / 2013-02-05 ================== * add repository URL to package.json * add DEBUG_COLORED to force colored output * add browserify support * fix component. Closes #24 0.7.0 / 2012-05-04 ================== * Added .component to package.json * Added debug.component.js build 0.6.0 / 2012-03-16 ================== * Added support for "-" prefix in DEBUG [Vinay Pulim] * Added `.enabled` flag to the node version [TooTallNate] 0.5.0 / 2012-02-02 ================== * Added: humanize diffs. Closes #8 * Added `debug.disable()` to the CS variant * Removed padding. Closes #10 * Fixed: persist client-side variant again. Closes #9 0.4.0 / 2012-02-01 ================== * Added browser variant support for older browsers [TooTallNate] * Added `debug.enable('project:*')` to browser variant [TooTallNate] * Added padding to diff (moved it to the right) 0.3.0 / 2012-01-26 ================== * Added millisecond diff when isatty, otherwise UTC string 0.2.0 / 2012-01-22 ================== * Added wildcard support 0.1.0 / 2011-12-02 ================== * Added: remove colors unless stderr isatty [TooTallNate] 0.0.1 / 2010-01-03 ================== * Initial release

node_modules/method-override/node_modules/debug/component.json

{ "name": "debug", "repo": "visionmedia/debug", "description": "small debugging utility", "version": "2.6.8", "keywords": [ "debug", "log", "debugger" ], "main": "src/browser.js", "scripts": [ "src/browser.js", "src/debug.js" ], "dependencies": { "rauchg/ms.js": "0.7.1" } }

node_modules/method-override/node_modules/debug/karma.conf.js

// Karma configuration // Generated on Fri Dec 16 2016 13:09:51 GMT+0000 (UTC) module.exports = function(config) { config.set({ // base path that will be used to resolve all patterns (eg. files, exclude) basePath: '', // frameworks to use // available frameworks: https://npmjs.org/browse/keyword/karma-adapter frameworks: ['mocha', 'chai', 'sinon'], // list of files / patterns to load in the browser files: [ 'dist/debug.js', 'test/*spec.js' ], // list of files to exclude exclude: [ 'src/node.js' ], // preprocess matching files before serving them to the browser // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { }, // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter reporters: ['progress'], // web server port port: 9876, // enable / disable colors in the output (reporters and logs) colors: true, // level of logging // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_INFO, // enable / disable watching file and executing tests whenever any file changes autoWatch: true, // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher browsers: ['PhantomJS'], // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits singleRun: false, // Concurrency level // how many browser should be started simultaneous concurrency: Infinity }) }

node_modules/method-override/node_modules/debug/LICENSE

(The MIT License) Copyright (c) 2014 TJ Holowaychuk <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/method-override/node_modules/debug/Makefile

# get Makefile directory name: http://stackoverflow.com/a/5982798/376773 THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd) # BIN directory BIN := $(THIS_DIR)/node_modules/.bin # Path PATH := node_modules/.bin:$(PATH) SHELL := /bin/bash # applications NODE ?= $(shell which node) YARN ?= $(shell which yarn) PKG ?= $(if $(YARN),$(YARN),$(NODE) $(shell which npm)) BROWSERIFY ?= $(NODE) $(BIN)/browserify .FORCE: install: node_modules node_modules: package.json @NODE_ENV= $(PKG) install @touch node_modules lint: .FORCE eslint browser.js debug.js index.js node.js test-node: .FORCE istanbul cover node_modules/mocha/bin/_mocha -- test/**.js test-browser: .FORCE mkdir -p dist @$(BROWSERIFY) \ --standalone debug \ . > dist/debug.js karma start --single-run rimraf dist test: .FORCE concurrently \ "make test-node" \ "make test-browser" coveralls: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js .PHONY: all install clean distclean

node_modules/method-override/node_modules/debug/node.js

module.exports = require('./src/node');

node_modules/method-override/node_modules/debug/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "debug", "name": "debug", "rawSpec": "2.6.8", "spec": "2.6.8", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\method-override" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/method-override/debug", "_nodeVersion": "7.10.0", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/debug-2.6.8.tgz_1495138020906_0.5965513256378472" }, "_npmUser": { "name": "tootallnate", "email": "[email protected]" }, "_npmVersion": "4.2.0", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "debug", "name": "debug", "rawSpec": "2.6.8", "spec": "2.6.8", "type": "version" }, "_requiredBy": [ "/method-override" ], "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", "_shasum": "e731531ca2ede27d188222427da17821d68ff4fc", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\method-override", "author": { "name": "TJ Holowaychuk", "email": "[email protected]" }, "browser": "./src/browser.js", "bugs": { "url": "https://github.com/visionmedia/debug/issues" }, "component": { "scripts": { "debug/index.js": "browser.js", "debug/debug.js": "debug.js" } }, "contributors": [ { "name": "Nathan Rajlich", "email": "[email protected]", "url": "http://n8.io" }, { "name": "Andrew Rhyne", "email": "[email protected]" } ], "dependencies": { "ms": "2.0.0" }, "description": "small debugging utility", "devDependencies": { "browserify": "9.0.3", "chai": "^3.5.0", "concurrently": "^3.1.0", "coveralls": "^2.11.15", "eslint": "^3.12.1", "istanbul": "^0.4.5", "karma": "^1.3.0", "karma-chai": "^0.1.0", "karma-mocha": "^1.3.0", "karma-phantomjs-launcher": "^1.0.2", "karma-sinon": "^1.0.5", "mocha": "^3.2.0", "mocha-lcov-reporter": "^1.2.0", "rimraf": "^2.5.4", "sinon": "^1.17.6", "sinon-chai": "^2.8.0" }, "directories": {}, "dist": { "shasum": "e731531ca2ede27d188222427da17821d68ff4fc", "tarball": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz" }, "gitHead": "52e1f21284322f167839e5d3a60f635c8b2dc842", "homepage": "https://github.com/visionmedia/debug#readme", "keywords": [ "debug", "log", "debugger" ], "license": "MIT", "main": "./src/index.js", "maintainers": [ { "name": "thebigredgeek", "email": "[email protected]" } ], "name": "debug", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git://github.com/visionmedia/debug.git" }, "scripts": {}, "version": "2.6.8" }

node_modules/method-override/node_modules/debug/README.md

# debug [![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://visionmedia-community-slackin.now.sh/badge.svg)](https://visionmedia-community-slackin.now.sh/) [![OpenCollective](https://opencollective.com/debug/backers/badge.svg)](#backers) [![OpenCollective](https://opencollective.com/debug/sponsors/badge.svg)](#sponsors) A tiny node.js debugging utility modelled after node core's debugging technique. **Discussion around the V3 API is under way [here](https://github.com/visionmedia/debug/issues/370)** ## Installation ```bash $ npm install debug ``` ## Usage `debug` exposes a function; simply pass this function the name of your module, and it will return a decorated version of `console.error` for you to pass debug statements to. This will allow you to toggle the debug output for different parts of your module as well as the module as a whole. Example _app.js_: ```js var debug = require('debug')('http') , http = require('http') , name = 'My App'; // fake app debug('booting %s', name); http.createServer(function(req, res){ debug(req.method + ' ' + req.url); res.end('hello\n'); }).listen(3000, function(){ debug('listening'); }); // fake worker of some kind require('./worker'); ``` Example _worker.js_: ```js var debug = require('debug')('worker'); setInterval(function(){ debug('doing some work'); }, 1000); ``` The __DEBUG__ environment variable is then used to enable these based on space or comma-delimited names. Here are some examples: ![debug http and worker](http://f.cl.ly/items/18471z1H402O24072r1J/Screenshot.png) ![debug worker](http://f.cl.ly/items/1X413v1a3M0d3C2c1E0i/Screenshot.png) #### Windows note On Windows the environment variable is set using the `set` command. ```cmd set DEBUG=*,-not_this ``` Note that PowerShell uses different syntax to set environment variables. ```cmd $env:DEBUG = "*,-not_this" ``` Then, run the program to be debugged as usual. ## Millisecond diff When actively developing an application it can be useful to see when the time spent between one `debug()` call and the next. Suppose for example you invoke `debug()` before requesting a resource, and after as well, the "+NNNms" will show you how much time was spent between calls. ![](http://f.cl.ly/items/2i3h1d3t121M2Z1A3Q0N/Screenshot.png) When stdout is not a TTY, `Date#toUTCString()` is used, making it more useful for logging the debug information as shown below: ![](http://f.cl.ly/items/112H3i0e0o0P0a2Q2r11/Screenshot.png) ## Conventions If you're using this in one or more of your libraries, you _should_ use the name of your library so that developers may toggle debugging as desired without guessing names. If you have more than one debuggers you _should_ prefix them with your library name and use ":" to separate features. For example "bodyParser" from Connect would then be "connect:bodyParser". ## Wildcards The `*` character may be used as a wildcard. Suppose for example your library has debuggers named "connect:bodyParser", "connect:compress", "connect:session", instead of listing all three with `DEBUG=connect:bodyParser,connect:compress,connect:session`, you may simply do `DEBUG=connect:*`, or to run everything using this module simply use `DEBUG=*`. You can also exclude specific debuggers by prefixing them with a "-" character. For example, `DEBUG=*,-connect:*` would include all debuggers except those starting with "connect:". ## Environment Variables When running through Node.js, you can set a few environment variables that will change the behavior of the debug logging: | Name | Purpose | |-----------|-------------------------------------------------| | `DEBUG` | Enables/disables specific debugging namespaces. | | `DEBUG_COLORS`| Whether or not to use colors in the debug output. | | `DEBUG_DEPTH` | Object inspection depth. | | `DEBUG_SHOW_HIDDEN` | Shows hidden properties on inspected objects. | __Note:__ The environment variables beginning with `DEBUG_` end up being converted into an Options object that gets used with `%o`/`%O` formatters. See the Node.js documentation for [`util.inspect()`](https://nodejs.org/api/util.html#util_util_inspect_object_options) for the complete list. ## Formatters Debug uses [printf-style](https://wikipedia.org/wiki/Printf_format_string) formatting. Below are the officially supported formatters: | Formatter | Representation | |-----------|----------------| | `%O` | Pretty-print an Object on multiple lines. | | `%o` | Pretty-print an Object all on a single line. | | `%s` | String. | | `%d` | Number (both integer and float). | | `%j` | JSON. Replaced with the string '[Circular]' if the argument contains circular references. | | `%%` | Single percent sign ('%'). This does not consume an argument. | ### Custom formatters You can add custom formatters by extending the `debug.formatters` object. For example, if you wanted to add support for rendering a Buffer as hex with `%h`, you could do something like: ```js const createDebug = require('debug') createDebug.formatters.h = (v) => { return v.toString('hex') } // …elsewhere const debug = createDebug('foo') debug('this is hex: %h', new Buffer('hello world')) // foo this is hex: 68656c6c6f20776f726c6421 +0ms ``` ## Browser support You can build a browser-ready script using [browserify](https://github.com/substack/node-browserify), or just use the [browserify-as-a-service](https://wzrd.in/) [build](https://wzrd.in/standalone/debug@latest), if you don't want to build it yourself. Debug's enable state is currently persisted by `localStorage`. Consider the situation shown below where you have `worker:a` and `worker:b`, and wish to debug both. You can enable this using `localStorage.debug`: ```js localStorage.debug = 'worker:*' ``` And then refresh the page. ```js a = debug('worker:a'); b = debug('worker:b'); setInterval(function(){ a('doing some work'); }, 1000); setInterval(function(){ b('doing some work'); }, 1200); ``` #### Web Inspector Colors Colors are also enabled on "Web Inspectors" that understand the `%c` formatting option. These are WebKit web inspectors, Firefox ([since version 31](https://hacks.mozilla.org/2014/05/editable-box-model-multiple-selection-sublime-text-keys-much-more-firefox-developer-tools-episode-31/)) and the Firebug plugin for Firefox (any version). Colored output looks something like: ![](https://cloud.githubusercontent.com/assets/71256/3139768/b98c5fd8-e8ef-11e3-862a-f7253b6f47c6.png) ## Output streams By default `debug` will log to stderr, however this can be configured per-namespace by overriding the `log` method: Example _stdout.js_: ```js var debug = require('debug'); var error = debug('app:error'); // by default stderr is used error('goes to stderr!'); var log = debug('app:log'); // set this namespace to log via console.log log.log = console.log.bind(console); // don't forget to bind to console! log('goes to stdout'); error('still goes to stderr!'); // set all output to go via console.info // overrides all per-namespace log settings debug.log = console.info.bind(console); error('now goes to stdout via console.info'); log('still goes to stdout, but via console.info now'); ``` ## Authors - TJ Holowaychuk - Nathan Rajlich - Andrew Rhyne ## Backers Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/debug#backer)] <a href="https://opencollective.com/debug/backer/0/website" target="_blank"><img src="https://opencollective.com/debug/backer/0/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/1/website" target="_blank"><img src="https://opencollective.com/debug/backer/1/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/2/website" target="_blank"><img src="https://opencollective.com/debug/backer/2/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/3/website" target="_blank"><img src="https://opencollective.com/debug/backer/3/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/4/website" target="_blank"><img src="https://opencollective.com/debug/backer/4/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/5/website" target="_blank"><img src="https://opencollective.com/debug/backer/5/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/6/website" target="_blank"><img src="https://opencollective.com/debug/backer/6/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/7/website" target="_blank"><img src="https://opencollective.com/debug/backer/7/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/8/website" target="_blank"><img src="https://opencollective.com/debug/backer/8/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/9/website" target="_blank"><img src="https://opencollective.com/debug/backer/9/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/10/website" target="_blank"><img src="https://opencollective.com/debug/backer/10/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/11/website" target="_blank"><img src="https://opencollective.com/debug/backer/11/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/12/website" target="_blank"><img src="https://opencollective.com/debug/backer/12/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/13/website" target="_blank"><img src="https://opencollective.com/debug/backer/13/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/14/website" target="_blank"><img src="https://opencollective.com/debug/backer/14/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/15/website" target="_blank"><img src="https://opencollective.com/debug/backer/15/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/16/website" target="_blank"><img src="https://opencollective.com/debug/backer/16/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/17/website" target="_blank"><img src="https://opencollective.com/debug/backer/17/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/18/website" target="_blank"><img src="https://opencollective.com/debug/backer/18/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/19/website" target="_blank"><img src="https://opencollective.com/debug/backer/19/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/20/website" target="_blank"><img src="https://opencollective.com/debug/backer/20/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/21/website" target="_blank"><img src="https://opencollective.com/debug/backer/21/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/22/website" target="_blank"><img src="https://opencollective.com/debug/backer/22/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/23/website" target="_blank"><img src="https://opencollective.com/debug/backer/23/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/24/website" target="_blank"><img src="https://opencollective.com/debug/backer/24/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/25/website" target="_blank"><img src="https://opencollective.com/debug/backer/25/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/26/website" target="_blank"><img src="https://opencollective.com/debug/backer/26/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/27/website" target="_blank"><img src="https://opencollective.com/debug/backer/27/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/28/website" target="_blank"><img src="https://opencollective.com/debug/backer/28/avatar.svg"></a> <a href="https://opencollective.com/debug/backer/29/website" target="_blank"><img src="https://opencollective.com/debug/backer/29/avatar.svg"></a> ## Sponsors Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/debug#sponsor)] <a href="https://opencollective.com/debug/sponsor/0/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/0/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/1/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/1/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/2/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/2/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/3/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/3/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/4/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/4/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/5/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/5/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/6/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/6/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/7/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/7/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/8/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/8/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/9/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/9/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/10/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/10/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/11/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/11/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/12/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/12/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/13/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/13/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/14/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/14/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/15/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/15/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/16/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/16/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/17/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/17/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/18/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/18/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/19/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/19/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/20/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/20/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/21/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/21/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/22/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/22/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/23/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/23/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/24/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/24/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/25/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/25/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/26/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/26/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/27/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/27/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/28/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/28/avatar.svg"></a> <a href="https://opencollective.com/debug/sponsor/29/website" target="_blank"><img src="https://opencollective.com/debug/sponsor/29/avatar.svg"></a> ## License (The MIT License) Copyright (c) 2014-2016 TJ Holowaychuk &lt;[email protected]&gt; Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/method-override/node_modules/debug/src/browser.js

/** * This is the web browser implementation of `debug()`. * * Expose `debug()` as the module. */ exports = module.exports = require('./debug'); exports.log = log; exports.formatArgs = formatArgs; exports.save = save; exports.load = load; exports.useColors = useColors; exports.storage = 'undefined' != typeof chrome && 'undefined' != typeof chrome.storage ? chrome.storage.local : localstorage(); /** * Colors. */ exports.colors = [ 'lightseagreen', 'forestgreen', 'goldenrod', 'dodgerblue', 'darkorchid', 'crimson' ]; /** * Currently only WebKit-based Web Inspectors, Firefox >= v31, * and the Firebug extension (any Firefox version) are known * to support "%c" CSS customizations. * * TODO: add a `localStorage` variable to explicitly enable/disable colors */ function useColors() { // NB: In an Electron preload script, document will be defined but not fully // initialized. Since we know we're in Chrome, we'll just detect this case // explicitly if (typeof window !== 'undefined' && window.process && window.process.type === 'renderer') { return true; } // is webkit? http://stackoverflow.com/a/16459606/376773 // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632 return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) || // is firebug? http://stackoverflow.com/a/398120/376773 (typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) || // is firefox >= v31? // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31) || // double check webkit in userAgent just in case we are in a worker (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)); } /** * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. */ exports.formatters.j = function(v) { try { return JSON.stringify(v); } catch (err) { return '[UnexpectedJSONParseError]: ' + err.message; } }; /** * Colorize log arguments if enabled. * * @api public */ function formatArgs(args) { var useColors = this.useColors; args[0] = (useColors ? '%c' : '') + this.namespace + (useColors ? ' %c' : ' ') + args[0] + (useColors ? '%c ' : ' ') + '+' + exports.humanize(this.diff); if (!useColors) return; var c = 'color: ' + this.color; args.splice(1, 0, c, 'color: inherit') // the final "%c" is somewhat tricky, because there could be other // arguments passed either before or after the %c, so we need to // figure out the correct index to insert the CSS into var index = 0; var lastC = 0; args[0].replace(/%[a-zA-Z%]/g, function(match) { if ('%%' === match) return; index++; if ('%c' === match) { // we only are interested in the *last* %c // (the user may have provided their own) lastC = index; } }); args.splice(lastC, 0, c); } /** * Invokes `console.log()` when available. * No-op when `console.log` is not a "function". * * @api public */ function log() { // this hackery is required for IE8/9, where // the `console.log` function doesn't have 'apply' return 'object' === typeof console && console.log && Function.prototype.apply.call(console.log, console, arguments); } /** * Save `namespaces`. * * @param {String} namespaces * @api private */ function save(namespaces) { try { if (null == namespaces) { exports.storage.removeItem('debug'); } else { exports.storage.debug = namespaces; } } catch(e) {} } /** * Load `namespaces`. * * @return {String} returns the previously persisted debug modes * @api private */ function load() { var r; try { r = exports.storage.debug; } catch(e) {} // If debug isn't set in LS, and we're in Electron, try to load $DEBUG if (!r && typeof process !== 'undefined' && 'env' in process) { r = process.env.DEBUG; } return r; } /** * Enable namespaces listed in `localStorage.debug` initially. */ exports.enable(load()); /** * Localstorage attempts to return the localstorage. * * This is necessary because safari throws * when a user disables cookies/localstorage * and you attempt to access it. * * @return {LocalStorage} * @api private */ function localstorage() { try { return window.localStorage; } catch (e) {} }

node_modules/method-override/node_modules/debug/src/debug.js

/** * This is the common logic for both the Node.js and web browser * implementations of `debug()`. * * Expose `debug()` as the module. */ exports = module.exports = createDebug.debug = createDebug['default'] = createDebug; exports.coerce = coerce; exports.disable = disable; exports.enable = enable; exports.enabled = enabled; exports.humanize = require('ms'); /** * The currently active debug mode names, and names to skip. */ exports.names = []; exports.skips = []; /** * Map of special "%n" handling functions, for the debug "format" argument. * * Valid key names are a single, lower or upper-case letter, i.e. "n" and "N". */ exports.formatters = {}; /** * Previous log timestamp. */ var prevTime; /** * Select a color. * @param {String} namespace * @return {Number} * @api private */ function selectColor(namespace) { var hash = 0, i; for (i in namespace) { hash = ((hash << 5) - hash) + namespace.charCodeAt(i); hash |= 0; // Convert to 32bit integer } return exports.colors[Math.abs(hash) % exports.colors.length]; } /** * Create a debugger with the given `namespace`. * * @param {String} namespace * @return {Function} * @api public */ function createDebug(namespace) { function debug() { // disabled? if (!debug.enabled) return; var self = debug; // set `diff` timestamp var curr = +new Date(); var ms = curr - (prevTime || curr); self.diff = ms; self.prev = prevTime; self.curr = curr; prevTime = curr; // turn the `arguments` into a proper Array var args = new Array(arguments.length); for (var i = 0; i < args.length; i++) { args[i] = arguments[i]; } args[0] = exports.coerce(args[0]); if ('string' !== typeof args[0]) { // anything else let's inspect with %O args.unshift('%O'); } // apply any `formatters` transformations var index = 0; args[0] = args[0].replace(/%([a-zA-Z%])/g, function(match, format) { // if we encounter an escaped % then don't increase the array index if (match === '%%') return match; index++; var formatter = exports.formatters[format]; if ('function' === typeof formatter) { var val = args[index]; match = formatter.call(self, val); // now we need to remove `args[index]` since it's inlined in the `format` args.splice(index, 1); index--; } return match; }); // apply env-specific formatting (colors, etc.) exports.formatArgs.call(self, args); var logFn = debug.log || exports.log || console.log.bind(console); logFn.apply(self, args); } debug.namespace = namespace; debug.enabled = exports.enabled(namespace); debug.useColors = exports.useColors(); debug.color = selectColor(namespace); // env-specific initialization logic for debug instances if ('function' === typeof exports.init) { exports.init(debug); } return debug; } /** * Enables a debug mode by namespaces. This can include modes * separated by a colon and wildcards. * * @param {String} namespaces * @api public */ function enable(namespaces) { exports.save(namespaces); exports.names = []; exports.skips = []; var split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/); var len = split.length; for (var i = 0; i < len; i++) { if (!split[i]) continue; // ignore empty strings namespaces = split[i].replace(/\*/g, '.*?'); if (namespaces[0] === '-') { exports.skips.push(new RegExp('^' + namespaces.substr(1) + '$')); } else { exports.names.push(new RegExp('^' + namespaces + '$')); } } } /** * Disable debug output. * * @api public */ function disable() { exports.enable(''); } /** * Returns true if the given mode name is enabled, false otherwise. * * @param {String} name * @return {Boolean} * @api public */ function enabled(name) { var i, len; for (i = 0, len = exports.skips.length; i < len; i++) { if (exports.skips[i].test(name)) { return false; } } for (i = 0, len = exports.names.length; i < len; i++) { if (exports.names[i].test(name)) { return true; } } return false; } /** * Coerce `val`. * * @param {Mixed} val * @return {Mixed} * @api private */ function coerce(val) { if (val instanceof Error) return val.stack || val.message; return val; }

node_modules/method-override/node_modules/debug/src/index.js

/** * Detect Electron renderer process, which is node, but we should * treat as a browser. */ if (typeof process !== 'undefined' && process.type === 'renderer') { module.exports = require('./browser.js'); } else { module.exports = require('./node.js'); }

node_modules/method-override/node_modules/debug/src/node.js

/** * Module dependencies. */ var tty = require('tty'); var util = require('util'); /** * This is the Node.js implementation of `debug()`. * * Expose `debug()` as the module. */ exports = module.exports = require('./debug'); exports.init = init; exports.log = log; exports.formatArgs = formatArgs; exports.save = save; exports.load = load; exports.useColors = useColors; /** * Colors. */ exports.colors = [6, 2, 3, 4, 5, 1]; /** * Build up the default `inspectOpts` object from the environment variables. * * $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js */ exports.inspectOpts = Object.keys(process.env).filter(function (key) { return /^debug_/i.test(key); }).reduce(function (obj, key) { // camel-case var prop = key .substring(6) .toLowerCase() .replace(/_([a-z])/g, function (_, k) { return k.toUpperCase() }); // coerce string value into JS value var val = process.env[key]; if (/^(yes|on|true|enabled)$/i.test(val)) val = true; else if (/^(no|off|false|disabled)$/i.test(val)) val = false; else if (val === 'null') val = null; else val = Number(val); obj[prop] = val; return obj; }, {}); /** * The file descriptor to write the `debug()` calls to. * Set the `DEBUG_FD` env variable to override with another value. i.e.: * * $ DEBUG_FD=3 node script.js 3>debug.log */ var fd = parseInt(process.env.DEBUG_FD, 10) || 2; if (1 !== fd && 2 !== fd) { util.deprecate(function(){}, 'except for stderr(2) and stdout(1), any other usage of DEBUG_FD is deprecated. Override debug.log if you want to use a different log function (https://git.io/debug_fd)')() } var stream = 1 === fd ? process.stdout : 2 === fd ? process.stderr : createWritableStdioStream(fd); /** * Is stdout a TTY? Colored output is enabled when `true`. */ function useColors() { return 'colors' in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(fd); } /** * Map %o to `util.inspect()`, all on a single line. */ exports.formatters.o = function(v) { this.inspectOpts.colors = this.useColors; return util.inspect(v, this.inspectOpts) .replace(/\s*\n\s*/g, ' '); }; /** * Map %o to `util.inspect()`, allowing multiple lines if needed. */ exports.formatters.O = function(v) { this.inspectOpts.colors = this.useColors; return util.inspect(v, this.inspectOpts); }; /** * Adds ANSI color escape codes if enabled. * * @api public */ function formatArgs(args) { var name = this.namespace; var useColors = this.useColors; if (useColors) { var c = this.color; var prefix = ' \u001b[3' + c + ';1m' + name + ' ' + '\u001b[0m'; args[0] = prefix + args[0].split('\n').join('\n' + prefix); args.push('\u001b[3' + c + 'm+' + exports.humanize(this.diff) + '\u001b[0m'); } else { args[0] = new Date().toUTCString() + ' ' + name + ' ' + args[0]; } } /** * Invokes `util.format()` with the specified arguments and writes to `stream`. */ function log() { return stream.write(util.format.apply(util, arguments) + '\n'); } /** * Save `namespaces`. * * @param {String} namespaces * @api private */ function save(namespaces) { if (null == namespaces) { // If you set a process.env field to null or undefined, it gets cast to the // string 'null' or 'undefined'. Just delete instead. delete process.env.DEBUG; } else { process.env.DEBUG = namespaces; } } /** * Load `namespaces`. * * @return {String} returns the previously persisted debug modes * @api private */ function load() { return process.env.DEBUG; } /** * Copied from `node/src/node.js`. * * XXX: It's lame that node doesn't expose this API out-of-the-box. It also * relies on the undocumented `tty_wrap.guessHandleType()` which is also lame. */ function createWritableStdioStream (fd) { var stream; var tty_wrap = process.binding('tty_wrap'); // Note stream._type is used for test-module-load-list.js switch (tty_wrap.guessHandleType(fd)) { case 'TTY': stream = new tty.WriteStream(fd); stream._type = 'tty'; // Hack to have stream not keep the event loop alive. // See https://github.com/joyent/node/issues/1726 if (stream._handle && stream._handle.unref) { stream._handle.unref(); } break; case 'FILE': var fs = require('fs'); stream = new fs.SyncWriteStream(fd, { autoClose: false }); stream._type = 'fs'; break; case 'PIPE': case 'TCP': var net = require('net'); stream = new net.Socket({ fd: fd, readable: false, writable: true }); // FIXME Should probably have an option in net.Socket to create a // stream from an existing fd which is writable only. But for now // we'll just add this hack and set the `readable` member to false. // Test: ./node test/fixtures/echo.js < /etc/passwd stream.readable = false; stream.read = null; stream._type = 'pipe'; // FIXME Hack to have stream not keep the event loop alive. // See https://github.com/joyent/node/issues/1726 if (stream._handle && stream._handle.unref) { stream._handle.unref(); } break; default: // Probably an error on in uv_guess_handle() throw new Error('Implement me. Unknown stream file type!'); } // For supporting legacy API we put the FD here. stream.fd = fd; stream._isStdio = true; return stream; } /** * Init logic for `debug` instances. * * Create a new `inspectOpts` object in case `useColors` is set * differently for a particular `debug` instance. */ function init (debug) { debug.inspectOpts = {}; var keys = Object.keys(exports.inspectOpts); for (var i = 0; i < keys.length; i++) { debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]]; } } /** * Enable namespaces listed in `process.env.DEBUG` initially. */ exports.enable(load());

node_modules/method-override/package.json

{ "_args": [ [ { "raw": "method-override", "scope": null, "escapedName": "method-override", "name": "method-override", "rawSpec": "", "spec": "latest", "type": "tag" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8" ] ], "_from": "method-override@latest", "_id": "[email protected]", "_inCache": true, "_location": "/method-override", "_nodeVersion": "6.10.3", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/method-override-2.3.9.tgz_1495252756424_0.4638487577904016" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "3.10.10", "_phantomChildren": { "ms": "2.0.0" }, "_requested": { "raw": "method-override", "scope": null, "escapedName": "method-override", "name": "method-override", "rawSpec": "", "spec": "latest", "type": "tag" }, "_requiredBy": [ "#USER", "/" ], "_resolved": "https://registry.npmjs.org/method-override/-/method-override-2.3.9.tgz", "_shasum": "bd151f2ce34cf01a76ca400ab95c012b102d8f71", "_shrinkwrap": null, "_spec": "method-override", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8", "bugs": { "url": "https://github.com/expressjs/method-override/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" } ], "dependencies": { "debug": "2.6.8", "methods": "~1.1.2", "parseurl": "~1.3.1", "vary": "~1.1.1" }, "description": "Override HTTP verbs", "devDependencies": { "eslint": "3.19.0", "eslint-config-standard": "10.2.1", "eslint-plugin-import": "2.2.0", "eslint-plugin-markdown": "1.0.0-beta.6", "eslint-plugin-node": "4.2.2", "eslint-plugin-promise": "3.5.0", "eslint-plugin-standard": "3.0.1", "istanbul": "0.4.5", "mocha": "2.5.3", "supertest": "1.1.0" }, "directories": {}, "dist": { "shasum": "bd151f2ce34cf01a76ca400ab95c012b102d8f71", "tarball": "https://registry.npmjs.org/method-override/-/method-override-2.3.9.tgz" }, "engines": { "node": ">= 0.8.0" }, "files": [ "LICENSE", "HISTORY.md", "index.js" ], "gitHead": "a3b1bf25bcf8d129f559585b79b0a7f0bed58dc7", "homepage": "https://github.com/expressjs/method-override#readme", "license": "MIT", "maintainers": [ { "name": "defunctzombie", "email": "[email protected]" }, { "name": "dougwilson", "email": "[email protected]" }, { "name": "fishrock123", "email": "[email protected]" }, { "name": "jongleberry", "email": "[email protected]" }, { "name": "mscdex", "email": "[email protected]" }, { "name": "tjholowaychuk", "email": "[email protected]" } ], "name": "method-override", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/expressjs/method-override.git" }, "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --check-leaks --reporter spec --bail test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/" }, "version": "2.3.9" }

node_modules/method-override/README.md

# method-override [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] [![Gratipay][gratipay-image]][gratipay-url] Lets you use HTTP verbs such as PUT or DELETE in places where the client doesn't support it. ## Install This is a [Node.js](https://nodejs.org/en/) module available through the [npm registry](https://www.npmjs.com/). Installation is done using the [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): ```sh $ npm install method-override ``` ## API **NOTE** It is very important that this module is used **before** any module that needs to know the method of the request (for example, it _must_ be used prior to the `csurf` module). ### methodOverride(getter, options) Create a new middleware function to override the `req.method` property with a new value. This value will be pulled from the provided `getter`. - `getter` - The getter to use to look up the overridden request method for the request. (default: `X-HTTP-Method-Override`) - `options.methods` - The allowed methods the original request must be in to check for a method override value. (default: `['POST']`) If the found method is supported by node.js core, then `req.method` will be set to this value, as if it has originally been that value. The previous `req.method` value will be stored in `req.originalMethod`. #### getter This is the method of getting the override value from the request. If a function is provided, the `req` is passed as the first argument, the `res` as the second argument and the method is expected to be returned. If a string is provided, the string is used to look up the method with the following rules: - If the string starts with `X-`, then it is treated as the name of a header and that header is used for the method override. If the request contains the same header multiple times, the first occurrence is used. - All other strings are treated as a key in the URL query string. #### options.methods This allows the specification of what methods(s) the request *MUST* be in in order to check for the method override value. This defaults to only `POST` methods, which is the only method the override should arrive in. More methods may be specified here, but it may introduce security issues and cause weird behavior when requests travel through caches. This value is an array of methods in upper-case. `null` can be specified to allow all methods. ## Examples ### override using a header To use a header to override the method, specify the header name as a string argument to the `methodOverride` function. To then make the call, send a `POST` request to a URL with the overridden method as the value of that header. This method of using a header would typically be used in conjunction with `XMLHttpRequest` on implementations that do not support the method you are trying to use. ```js var express = require('express') var methodOverride = require('method-override') var app = express() // override with the X-HTTP-Method-Override header in the request app.use(methodOverride('X-HTTP-Method-Override')) ``` Example call with header override using `XMLHttpRequest`: <!-- eslint-env browser --> ```js var xhr = new XMLHttpRequest() xhr.onload = onload xhr.open('post', '/resource', true) xhr.setRequestHeader('X-HTTP-Method-Override', 'DELETE') xhr.send() function onload () { alert('got response: ' + this.responseText) } ``` ### override using a query value To use a query string value to override the method, specify the query string key as a string argument to the `methodOverride` function. To then make the call, send a `POST` request to a URL with the overridden method as the value of that query string key. This method of using a query value would typically be used in conjunction with plain HTML `<form>` elements when trying to support legacy browsers but still use newer methods. ```js var express = require('express') var methodOverride = require('method-override') var app = express() // override with POST having ?_method=DELETE app.use(methodOverride('_method')) ``` Example call with query override using HTML `<form>`: ```html <form method="POST" action="/resource?_method=DELETE"> <button type="submit">Delete resource</button> </form> ``` ### multiple format support ```js var express = require('express') var methodOverride = require('method-override') var app = express() // override with different headers; last one takes precedence app.use(methodOverride('X-HTTP-Method')) // Microsoft app.use(methodOverride('X-HTTP-Method-Override')) // Google/GData app.use(methodOverride('X-Method-Override')) // IBM ``` ### custom logic You can implement any kind of custom logic with a function for the `getter`. The following implements the logic for looking in `req.body` that was in `method-override@1`: ```js var bodyParser = require('body-parser') var express = require('express') var methodOverride = require('method-override') var app = express() // NOTE: when using req.body, you must fully parse the request body // before you call methodOverride() in your middleware stack, // otherwise req.body will not be populated. app.use(bodyParser.urlencoded()) app.use(methodOverride(function (req, res) { if (req.body && typeof req.body === 'object' && '_method' in req.body) { // look in urlencoded POST bodies and delete it var method = req.body._method delete req.body._method return method } })) ``` Example call with query override using HTML `<form>`: ```html <!-- enctype must be set to the type you will parse before methodOverride() --> <form method="POST" action="/resource" enctype="application/x-www-form-urlencoded"> <input type="hidden" name="_method" value="DELETE"> <button type="submit">Delete resource</button> </form> ``` ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/method-override.svg [npm-url]: https://npmjs.org/package/method-override [travis-image]: https://img.shields.io/travis/expressjs/method-override/master.svg [travis-url]: https://travis-ci.org/expressjs/method-override [coveralls-image]: https://img.shields.io/coveralls/expressjs/method-override/master.svg [coveralls-url]: https://coveralls.io/r/expressjs/method-override?branch=master [downloads-image]: https://img.shields.io/npm/dm/method-override.svg [downloads-url]: https://npmjs.org/package/method-override [gratipay-image]: https://img.shields.io/gratipay/dougwilson.svg [gratipay-url]: https://www.gratipay.com/dougwilson/

node_modules/methods/HISTORY.md

1.1.2 / 2016-01-17 ================== * perf: enable strict mode 1.1.1 / 2014-12-30 ================== * Improve `browserify` support 1.1.0 / 2014-07-05 ================== * Add `CONNECT` method 1.0.1 / 2014-06-02 ================== * Fix module to work with harmony transform 1.0.0 / 2014-05-08 ================== * Add `PURGE` method 0.1.0 / 2013-10-28 ================== * Add `http.METHODS` support

node_modules/methods/index.js

/*! * methods * Copyright(c) 2013-2014 TJ Holowaychuk * Copyright(c) 2015-2016 Douglas Christopher Wilson * MIT Licensed */ 'use strict'; /** * Module dependencies. * @private */ var http = require('http'); /** * Module exports. * @public */ module.exports = getCurrentNodeMethods() || getBasicNodeMethods(); /** * Get the current Node.js methods. * @private */ function getCurrentNodeMethods() { return http.METHODS && http.METHODS.map(function lowerCaseMethod(method) { return method.toLowerCase(); }); } /** * Get the "basic" Node.js methods, a snapshot from Node.js 0.10. * @private */ function getBasicNodeMethods() { return [ 'get', 'post', 'put', 'head', 'delete', 'options', 'trace', 'copy', 'lock', 'mkcol', 'move', 'purge', 'propfind', 'proppatch', 'unlock', 'report', 'mkactivity', 'checkout', 'merge', 'm-search', 'notify', 'subscribe', 'unsubscribe', 'patch', 'search', 'connect' ]; }

node_modules/methods/LICENSE

(The MIT License) Copyright (c) 2013-2014 TJ Holowaychuk <[email protected]> Copyright (c) 2015-2016 Douglas Christopher Wilson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/methods/package.json

{ "_args": [ [ { "raw": "methods@~1.1.2", "scope": null, "escapedName": "methods", "name": "methods", "rawSpec": "~1.1.2", "spec": ">=1.1.2 <1.2.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\method-override" ] ], "_from": "methods@>=1.1.2 <1.2.0", "_id": "[email protected]", "_inCache": true, "_location": "/methods", "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "1.4.28", "_phantomChildren": {}, "_requested": { "raw": "methods@~1.1.2", "scope": null, "escapedName": "methods", "name": "methods", "rawSpec": "~1.1.2", "spec": ">=1.1.2 <1.2.0", "type": "range" }, "_requiredBy": [ "/method-override" ], "_resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "_shasum": "5529a4d67654134edcc5266656835b0f851afcee", "_shrinkwrap": null, "_spec": "methods@~1.1.2", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\method-override", "browser": { "http": false }, "bugs": { "url": "https://github.com/jshttp/methods/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" }, { "name": "TJ Holowaychuk", "email": "[email protected]", "url": "http://tjholowaychuk.com" } ], "dependencies": {}, "description": "HTTP methods that node supports", "devDependencies": { "istanbul": "0.4.1", "mocha": "1.21.5" }, "directories": {}, "dist": { "shasum": "5529a4d67654134edcc5266656835b0f851afcee", "tarball": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "index.js", "HISTORY.md", "LICENSE" ], "gitHead": "25d257d913f1b94bd2d73581521ff72c81469140", "homepage": "https://github.com/jshttp/methods", "keywords": [ "http", "methods" ], "license": "MIT", "maintainers": [ { "name": "tjholowaychuk", "email": "[email protected]" }, { "name": "jonathanong", "email": "[email protected]" }, { "name": "jongleberry", "email": "[email protected]" }, { "name": "dougwilson", "email": "[email protected]" } ], "name": "methods", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/methods.git" }, "scripts": { "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" }, "version": "1.1.2" }

node_modules/methods/README.md

# Methods [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] HTTP verbs that Node.js core's HTTP parser supports. This module provides an export that is just like `http.METHODS` from Node.js core, with the following differences: * All method names are lower-cased. * Contains a fallback list of methods for Node.js versions that do not have a `http.METHODS` export (0.10 and lower). * Provides the fallback list when using tools like `browserify` without pulling in the `http` shim module. ## Install ```bash $ npm install methods ``` ## API ```js var methods = require('methods') ``` ### methods This is an array of lower-cased method names that Node.js supports. If Node.js provides the `http.METHODS` export, then this is the same array lower-cased, otherwise it is a snapshot of the verbs from Node.js 0.10. ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/methods.svg?style=flat [npm-url]: https://npmjs.org/package/methods [node-version-image]: https://img.shields.io/node/v/methods.svg?style=flat [node-version-url]: https://nodejs.org/en/download/ [travis-image]: https://img.shields.io/travis/jshttp/methods.svg?style=flat [travis-url]: https://travis-ci.org/jshttp/methods [coveralls-image]: https://img.shields.io/coveralls/jshttp/methods.svg?style=flat [coveralls-url]: https://coveralls.io/r/jshttp/methods?branch=master [downloads-image]: https://img.shields.io/npm/dm/methods.svg?style=flat [downloads-url]: https://npmjs.org/package/methods

node_modules/mime-db/db.json

{ "application/1d-interleaved-parityfec": { "source": "iana" }, "application/3gpdash-qoe-report+xml": { "source": "iana" }, "application/3gpp-ims+xml": { "source": "iana" }, "application/a2l": { "source": "iana" }, "application/activemessage": { "source": "iana" }, "application/alto-costmap+json": { "source": "iana", "compressible": true }, "application/alto-costmapfilter+json": { "source": "iana", "compressible": true }, "application/alto-directory+json": { "source": "iana", "compressible": true }, "application/alto-endpointcost+json": { "source": "iana", "compressible": true }, "application/alto-endpointcostparams+json": { "source": "iana", "compressible": true }, "application/alto-endpointprop+json": { "source": "iana", "compressible": true }, "application/alto-endpointpropparams+json": { "source": "iana", "compressible": true }, "application/alto-error+json": { "source": "iana", "compressible": true }, "application/alto-networkmap+json": { "source": "iana", "compressible": true }, "application/alto-networkmapfilter+json": { "source": "iana", "compressible": true }, "application/aml": { "source": "iana" }, "application/andrew-inset": { "source": "iana", "extensions": ["ez"] }, "application/applefile": { "source": "iana" }, "application/applixware": { "source": "apache", "extensions": ["aw"] }, "application/atf": { "source": "iana" }, "application/atfx": { "source": "iana" }, "application/atom+xml": { "source": "iana", "compressible": true, "extensions": ["atom"] }, "application/atomcat+xml": { "source": "iana", "extensions": ["atomcat"] }, "application/atomdeleted+xml": { "source": "iana" }, "application/atomicmail": { "source": "iana" }, "application/atomsvc+xml": { "source": "iana", "extensions": ["atomsvc"] }, "application/atxml": { "source": "iana" }, "application/auth-policy+xml": { "source": "iana" }, "application/bacnet-xdd+zip": { "source": "iana" }, "application/batch-smtp": { "source": "iana" }, "application/bdoc": { "compressible": false, "extensions": ["bdoc"] }, "application/beep+xml": { "source": "iana" }, "application/calendar+json": { "source": "iana", "compressible": true }, "application/calendar+xml": { "source": "iana" }, "application/call-completion": { "source": "iana" }, "application/cals-1840": { "source": "iana" }, "application/cbor": { "source": "iana" }, "application/cccex": { "source": "iana" }, "application/ccmp+xml": { "source": "iana" }, "application/ccxml+xml": { "source": "iana", "extensions": ["ccxml"] }, "application/cdfx+xml": { "source": "iana" }, "application/cdmi-capability": { "source": "iana", "extensions": ["cdmia"] }, "application/cdmi-container": { "source": "iana", "extensions": ["cdmic"] }, "application/cdmi-domain": { "source": "iana", "extensions": ["cdmid"] }, "application/cdmi-object": { "source": "iana", "extensions": ["cdmio"] }, "application/cdmi-queue": { "source": "iana", "extensions": ["cdmiq"] }, "application/cdni": { "source": "iana" }, "application/cea": { "source": "iana" }, "application/cea-2018+xml": { "source": "iana" }, "application/cellml+xml": { "source": "iana" }, "application/cfw": { "source": "iana" }, "application/clue_info+xml": { "source": "iana" }, "application/cms": { "source": "iana" }, "application/cnrp+xml": { "source": "iana" }, "application/coap-group+json": { "source": "iana", "compressible": true }, "application/coap-payload": { "source": "iana" }, "application/commonground": { "source": "iana" }, "application/conference-info+xml": { "source": "iana" }, "application/cose": { "source": "iana" }, "application/cose-key": { "source": "iana" }, "application/cose-key-set": { "source": "iana" }, "application/cpl+xml": { "source": "iana" }, "application/csrattrs": { "source": "iana" }, "application/csta+xml": { "source": "iana" }, "application/cstadata+xml": { "source": "iana" }, "application/csvm+json": { "source": "iana", "compressible": true }, "application/cu-seeme": { "source": "apache", "extensions": ["cu"] }, "application/cybercash": { "source": "iana" }, "application/dart": { "compressible": true }, "application/dash+xml": { "source": "iana", "extensions": ["mpd"] }, "application/dashdelta": { "source": "iana" }, "application/davmount+xml": { "source": "iana", "extensions": ["davmount"] }, "application/dca-rft": { "source": "iana" }, "application/dcd": { "source": "iana" }, "application/dec-dx": { "source": "iana" }, "application/dialog-info+xml": { "source": "iana" }, "application/dicom": { "source": "iana" }, "application/dicom+json": { "source": "iana", "compressible": true }, "application/dicom+xml": { "source": "iana" }, "application/dii": { "source": "iana" }, "application/dit": { "source": "iana" }, "application/dns": { "source": "iana" }, "application/docbook+xml": { "source": "apache", "extensions": ["dbk"] }, "application/dskpp+xml": { "source": "iana" }, "application/dssc+der": { "source": "iana", "extensions": ["dssc"] }, "application/dssc+xml": { "source": "iana", "extensions": ["xdssc"] }, "application/dvcs": { "source": "iana" }, "application/ecmascript": { "source": "iana", "compressible": true, "extensions": ["ecma"] }, "application/edi-consent": { "source": "iana" }, "application/edi-x12": { "source": "iana", "compressible": false }, "application/edifact": { "source": "iana", "compressible": false }, "application/efi": { "source": "iana" }, "application/emergencycalldata.comment+xml": { "source": "iana" }, "application/emergencycalldata.control+xml": { "source": "iana" }, "application/emergencycalldata.deviceinfo+xml": { "source": "iana" }, "application/emergencycalldata.ecall.msd": { "source": "iana" }, "application/emergencycalldata.providerinfo+xml": { "source": "iana" }, "application/emergencycalldata.serviceinfo+xml": { "source": "iana" }, "application/emergencycalldata.subscriberinfo+xml": { "source": "iana" }, "application/emergencycalldata.veds+xml": { "source": "iana" }, "application/emma+xml": { "source": "iana", "extensions": ["emma"] }, "application/emotionml+xml": { "source": "iana" }, "application/encaprtp": { "source": "iana" }, "application/epp+xml": { "source": "iana" }, "application/epub+zip": { "source": "iana", "extensions": ["epub"] }, "application/eshop": { "source": "iana" }, "application/exi": { "source": "iana", "extensions": ["exi"] }, "application/fastinfoset": { "source": "iana" }, "application/fastsoap": { "source": "iana" }, "application/fdt+xml": { "source": "iana" }, "application/fido.trusted-apps+json": { "compressible": true }, "application/fits": { "source": "iana" }, "application/font-sfnt": { "source": "iana" }, "application/font-tdpfr": { "source": "iana", "extensions": ["pfr"] }, "application/font-woff": { "source": "iana", "compressible": false, "extensions": ["woff"] }, "application/font-woff2": { "compressible": false, "extensions": ["woff2"] }, "application/framework-attributes+xml": { "source": "iana" }, "application/geo+json": { "source": "iana", "compressible": true, "extensions": ["geojson"] }, "application/geo+json-seq": { "source": "iana" }, "application/gml+xml": { "source": "iana", "extensions": ["gml"] }, "application/gpx+xml": { "source": "apache", "extensions": ["gpx"] }, "application/gxf": { "source": "apache", "extensions": ["gxf"] }, "application/gzip": { "source": "iana", "compressible": false, "extensions": ["gz"] }, "application/h224": { "source": "iana" }, "application/held+xml": { "source": "iana" }, "application/http": { "source": "iana" }, "application/hyperstudio": { "source": "iana", "extensions": ["stk"] }, "application/ibe-key-request+xml": { "source": "iana" }, "application/ibe-pkg-reply+xml": { "source": "iana" }, "application/ibe-pp-data": { "source": "iana" }, "application/iges": { "source": "iana" }, "application/im-iscomposing+xml": { "source": "iana" }, "application/index": { "source": "iana" }, "application/index.cmd": { "source": "iana" }, "application/index.obj": { "source": "iana" }, "application/index.response": { "source": "iana" }, "application/index.vnd": { "source": "iana" }, "application/inkml+xml": { "source": "iana", "extensions": ["ink","inkml"] }, "application/iotp": { "source": "iana" }, "application/ipfix": { "source": "iana", "extensions": ["ipfix"] }, "application/ipp": { "source": "iana" }, "application/isup": { "source": "iana" }, "application/its+xml": { "source": "iana" }, "application/java-archive": { "source": "apache", "compressible": false, "extensions": ["jar","war","ear"] }, "application/java-serialized-object": { "source": "apache", "compressible": false, "extensions": ["ser"] }, "application/java-vm": { "source": "apache", "compressible": false, "extensions": ["class"] }, "application/javascript": { "source": "iana", "charset": "UTF-8", "compressible": true, "extensions": ["js"] }, "application/jf2feed+json": { "source": "iana", "compressible": true }, "application/jose": { "source": "iana" }, "application/jose+json": { "source": "iana", "compressible": true }, "application/jrd+json": { "source": "iana", "compressible": true }, "application/json": { "source": "iana", "charset": "UTF-8", "compressible": true, "extensions": ["json","map"] }, "application/json-patch+json": { "source": "iana", "compressible": true }, "application/json-seq": { "source": "iana" }, "application/json5": { "extensions": ["json5"] }, "application/jsonml+json": { "source": "apache", "compressible": true, "extensions": ["jsonml"] }, "application/jwk+json": { "source": "iana", "compressible": true }, "application/jwk-set+json": { "source": "iana", "compressible": true }, "application/jwt": { "source": "iana" }, "application/kpml-request+xml": { "source": "iana" }, "application/kpml-response+xml": { "source": "iana" }, "application/ld+json": { "source": "iana", "compressible": true, "extensions": ["jsonld"] }, "application/lgr+xml": { "source": "iana" }, "application/link-format": { "source": "iana" }, "application/load-control+xml": { "source": "iana" }, "application/lost+xml": { "source": "iana", "extensions": ["lostxml"] }, "application/lostsync+xml": { "source": "iana" }, "application/lxf": { "source": "iana" }, "application/mac-binhex40": { "source": "iana", "extensions": ["hqx"] }, "application/mac-compactpro": { "source": "apache", "extensions": ["cpt"] }, "application/macwriteii": { "source": "iana" }, "application/mads+xml": { "source": "iana", "extensions": ["mads"] }, "application/manifest+json": { "charset": "UTF-8", "compressible": true, "extensions": ["webmanifest"] }, "application/marc": { "source": "iana", "extensions": ["mrc"] }, "application/marcxml+xml": { "source": "iana", "extensions": ["mrcx"] }, "application/mathematica": { "source": "iana", "extensions": ["ma","nb","mb"] }, "application/mathml+xml": { "source": "iana", "extensions": ["mathml"] }, "application/mathml-content+xml": { "source": "iana" }, "application/mathml-presentation+xml": { "source": "iana" }, "application/mbms-associated-procedure-description+xml": { "source": "iana" }, "application/mbms-deregister+xml": { "source": "iana" }, "application/mbms-envelope+xml": { "source": "iana" }, "application/mbms-msk+xml": { "source": "iana" }, "application/mbms-msk-response+xml": { "source": "iana" }, "application/mbms-protection-description+xml": { "source": "iana" }, "application/mbms-reception-report+xml": { "source": "iana" }, "application/mbms-register+xml": { "source": "iana" }, "application/mbms-register-response+xml": { "source": "iana" }, "application/mbms-schedule+xml": { "source": "iana" }, "application/mbms-user-service-description+xml": { "source": "iana" }, "application/mbox": { "source": "iana", "extensions": ["mbox"] }, "application/media-policy-dataset+xml": { "source": "iana" }, "application/media_control+xml": { "source": "iana" }, "application/mediaservercontrol+xml": { "source": "iana", "extensions": ["mscml"] }, "application/merge-patch+json": { "source": "iana", "compressible": true }, "application/metalink+xml": { "source": "apache", "extensions": ["metalink"] }, "application/metalink4+xml": { "source": "iana", "extensions": ["meta4"] }, "application/mets+xml": { "source": "iana", "extensions": ["mets"] }, "application/mf4": { "source": "iana" }, "application/mikey": { "source": "iana" }, "application/mods+xml": { "source": "iana", "extensions": ["mods"] }, "application/moss-keys": { "source": "iana" }, "application/moss-signature": { "source": "iana" }, "application/mosskey-data": { "source": "iana" }, "application/mosskey-request": { "source": "iana" }, "application/mp21": { "source": "iana", "extensions": ["m21","mp21"] }, "application/mp4": { "source": "iana", "extensions": ["mp4s","m4p"] }, "application/mpeg4-generic": { "source": "iana" }, "application/mpeg4-iod": { "source": "iana" }, "application/mpeg4-iod-xmt": { "source": "iana" }, "application/mrb-consumer+xml": { "source": "iana" }, "application/mrb-publish+xml": { "source": "iana" }, "application/msc-ivr+xml": { "source": "iana" }, "application/msc-mixer+xml": { "source": "iana" }, "application/msword": { "source": "iana", "compressible": false, "extensions": ["doc","dot"] }, "application/mud+json": { "source": "iana", "compressible": true }, "application/mxf": { "source": "iana", "extensions": ["mxf"] }, "application/n-quads": { "source": "iana" }, "application/n-triples": { "source": "iana" }, "application/nasdata": { "source": "iana" }, "application/news-checkgroups": { "source": "iana" }, "application/news-groupinfo": { "source": "iana" }, "application/news-transmission": { "source": "iana" }, "application/nlsml+xml": { "source": "iana" }, "application/nss": { "source": "iana" }, "application/ocsp-request": { "source": "iana" }, "application/ocsp-response": { "source": "iana" }, "application/octet-stream": { "source": "iana", "compressible": false, "extensions": ["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"] }, "application/oda": { "source": "iana", "extensions": ["oda"] }, "application/odx": { "source": "iana" }, "application/oebps-package+xml": { "source": "iana", "extensions": ["opf"] }, "application/ogg": { "source": "iana", "compressible": false, "extensions": ["ogx"] }, "application/omdoc+xml": { "source": "apache", "extensions": ["omdoc"] }, "application/onenote": { "source": "apache", "extensions": ["onetoc","onetoc2","onetmp","onepkg"] }, "application/oxps": { "source": "iana", "extensions": ["oxps"] }, "application/p2p-overlay+xml": { "source": "iana" }, "application/parityfec": { "source": "iana" }, "application/passport": { "source": "iana" }, "application/patch-ops-error+xml": { "source": "iana", "extensions": ["xer"] }, "application/pdf": { "source": "iana", "compressible": false, "extensions": ["pdf"] }, "application/pdx": { "source": "iana" }, "application/pgp-encrypted": { "source": "iana", "compressible": false, "extensions": ["pgp"] }, "application/pgp-keys": { "source": "iana" }, "application/pgp-signature": { "source": "iana", "extensions": ["asc","sig"] }, "application/pics-rules": { "source": "apache", "extensions": ["prf"] }, "application/pidf+xml": { "source": "iana" }, "application/pidf-diff+xml": { "source": "iana" }, "application/pkcs10": { "source": "iana", "extensions": ["p10"] }, "application/pkcs12": { "source": "iana" }, "application/pkcs7-mime": { "source": "iana", "extensions": ["p7m","p7c"] }, "application/pkcs7-signature": { "source": "iana", "extensions": ["p7s"] }, "application/pkcs8": { "source": "iana", "extensions": ["p8"] }, "application/pkix-attr-cert": { "source": "iana", "extensions": ["ac"] }, "application/pkix-cert": { "source": "iana", "extensions": ["cer"] }, "application/pkix-crl": { "source": "iana", "extensions": ["crl"] }, "application/pkix-pkipath": { "source": "iana", "extensions": ["pkipath"] }, "application/pkixcmp": { "source": "iana", "extensions": ["pki"] }, "application/pls+xml": { "source": "iana", "extensions": ["pls"] }, "application/poc-settings+xml": { "source": "iana" }, "application/postscript": { "source": "iana", "compressible": true, "extensions": ["ai","eps","ps"] }, "application/ppsp-tracker+json": { "source": "iana", "compressible": true }, "application/problem+json": { "source": "iana", "compressible": true }, "application/problem+xml": { "source": "iana" }, "application/provenance+xml": { "source": "iana" }, "application/prs.alvestrand.titrax-sheet": { "source": "iana" }, "application/prs.cww": { "source": "iana", "extensions": ["cww"] }, "application/prs.hpub+zip": { "source": "iana" }, "application/prs.nprend": { "source": "iana" }, "application/prs.plucker": { "source": "iana" }, "application/prs.rdf-xml-crypt": { "source": "iana" }, "application/prs.xsf+xml": { "source": "iana" }, "application/pskc+xml": { "source": "iana", "extensions": ["pskcxml"] }, "application/qsig": { "source": "iana" }, "application/raptorfec": { "source": "iana" }, "application/rdap+json": { "source": "iana", "compressible": true }, "application/rdf+xml": { "source": "iana", "compressible": true, "extensions": ["rdf"] }, "application/reginfo+xml": { "source": "iana", "extensions": ["rif"] }, "application/relax-ng-compact-syntax": { "source": "iana", "extensions": ["rnc"] }, "application/remote-printing": { "source": "iana" }, "application/reputon+json": { "source": "iana", "compressible": true }, "application/resource-lists+xml": { "source": "iana", "extensions": ["rl"] }, "application/resource-lists-diff+xml": { "source": "iana", "extensions": ["rld"] }, "application/rfc+xml": { "source": "iana" }, "application/riscos": { "source": "iana" }, "application/rlmi+xml": { "source": "iana" }, "application/rls-services+xml": { "source": "iana", "extensions": ["rs"] }, "application/rpki-ghostbusters": { "source": "iana", "extensions": ["gbr"] }, "application/rpki-manifest": { "source": "iana", "extensions": ["mft"] }, "application/rpki-publication": { "source": "iana" }, "application/rpki-roa": { "source": "iana", "extensions": ["roa"] }, "application/rpki-updown": { "source": "iana" }, "application/rsd+xml": { "source": "apache", "extensions": ["rsd"] }, "application/rss+xml": { "source": "apache", "compressible": true, "extensions": ["rss"] }, "application/rtf": { "source": "iana", "compressible": true, "extensions": ["rtf"] }, "application/rtploopback": { "source": "iana" }, "application/rtx": { "source": "iana" }, "application/samlassertion+xml": { "source": "iana" }, "application/samlmetadata+xml": { "source": "iana" }, "application/sbml+xml": { "source": "iana", "extensions": ["sbml"] }, "application/scaip+xml": { "source": "iana" }, "application/scim+json": { "source": "iana", "compressible": true }, "application/scvp-cv-request": { "source": "iana", "extensions": ["scq"] }, "application/scvp-cv-response": { "source": "iana", "extensions": ["scs"] }, "application/scvp-vp-request": { "source": "iana", "extensions": ["spq"] }, "application/scvp-vp-response": { "source": "iana", "extensions": ["spp"] }, "application/sdp": { "source": "iana", "extensions": ["sdp"] }, "application/sep+xml": { "source": "iana" }, "application/sep-exi": { "source": "iana" }, "application/session-info": { "source": "iana" }, "application/set-payment": { "source": "iana" }, "application/set-payment-initiation": { "source": "iana", "extensions": ["setpay"] }, "application/set-registration": { "source": "iana" }, "application/set-registration-initiation": { "source": "iana", "extensions": ["setreg"] }, "application/sgml": { "source": "iana" }, "application/sgml-open-catalog": { "source": "iana" }, "application/shf+xml": { "source": "iana", "extensions": ["shf"] }, "application/sieve": { "source": "iana" }, "application/simple-filter+xml": { "source": "iana" }, "application/simple-message-summary": { "source": "iana" }, "application/simplesymbolcontainer": { "source": "iana" }, "application/slate": { "source": "iana" }, "application/smil": { "source": "iana" }, "application/smil+xml": { "source": "iana", "extensions": ["smi","smil"] }, "application/smpte336m": { "source": "iana" }, "application/soap+fastinfoset": { "source": "iana" }, "application/soap+xml": { "source": "iana", "compressible": true }, "application/sparql-query": { "source": "iana", "extensions": ["rq"] }, "application/sparql-results+xml": { "source": "iana", "extensions": ["srx"] }, "application/spirits-event+xml": { "source": "iana" }, "application/sql": { "source": "iana" }, "application/srgs": { "source": "iana", "extensions": ["gram"] }, "application/srgs+xml": { "source": "iana", "extensions": ["grxml"] }, "application/sru+xml": { "source": "iana", "extensions": ["sru"] }, "application/ssdl+xml": { "source": "apache", "extensions": ["ssdl"] }, "application/ssml+xml": { "source": "iana", "extensions": ["ssml"] }, "application/tamp-apex-update": { "source": "iana" }, "application/tamp-apex-update-confirm": { "source": "iana" }, "application/tamp-community-update": { "source": "iana" }, "application/tamp-community-update-confirm": { "source": "iana" }, "application/tamp-error": { "source": "iana" }, "application/tamp-sequence-adjust": { "source": "iana" }, "application/tamp-sequence-adjust-confirm": { "source": "iana" }, "application/tamp-status-query": { "source": "iana" }, "application/tamp-status-response": { "source": "iana" }, "application/tamp-update": { "source": "iana" }, "application/tamp-update-confirm": { "source": "iana" }, "application/tar": { "compressible": true }, "application/tei+xml": { "source": "iana", "extensions": ["tei","teicorpus"] }, "application/thraud+xml": { "source": "iana", "extensions": ["tfi"] }, "application/timestamp-query": { "source": "iana" }, "application/timestamp-reply": { "source": "iana" }, "application/timestamped-data": { "source": "iana", "extensions": ["tsd"] }, "application/trig": { "source": "iana" }, "application/ttml+xml": { "source": "iana" }, "application/tve-trigger": { "source": "iana" }, "application/ulpfec": { "source": "iana" }, "application/urc-grpsheet+xml": { "source": "iana" }, "application/urc-ressheet+xml": { "source": "iana" }, "application/urc-targetdesc+xml": { "source": "iana" }, "application/urc-uisocketdesc+xml": { "source": "iana" }, "application/vcard+json": { "source": "iana", "compressible": true }, "application/vcard+xml": { "source": "iana" }, "application/vemmi": { "source": "iana" }, "application/vividence.scriptfile": { "source": "apache" }, "application/vnd.1000minds.decision-model+xml": { "source": "iana" }, "application/vnd.3gpp-prose+xml": { "source": "iana" }, "application/vnd.3gpp-prose-pc3ch+xml": { "source": "iana" }, "application/vnd.3gpp.access-transfer-events+xml": { "source": "iana" }, "application/vnd.3gpp.bsf+xml": { "source": "iana" }, "application/vnd.3gpp.mid-call+xml": { "source": "iana" }, "application/vnd.3gpp.pic-bw-large": { "source": "iana", "extensions": ["plb"] }, "application/vnd.3gpp.pic-bw-small": { "source": "iana", "extensions": ["psb"] }, "application/vnd.3gpp.pic-bw-var": { "source": "iana", "extensions": ["pvb"] }, "application/vnd.3gpp.sms": { "source": "iana" }, "application/vnd.3gpp.sms+xml": { "source": "iana" }, "application/vnd.3gpp.srvcc-ext+xml": { "source": "iana" }, "application/vnd.3gpp.srvcc-info+xml": { "source": "iana" }, "application/vnd.3gpp.state-and-event-info+xml": { "source": "iana" }, "application/vnd.3gpp.ussd+xml": { "source": "iana" }, "application/vnd.3gpp2.bcmcsinfo+xml": { "source": "iana" }, "application/vnd.3gpp2.sms": { "source": "iana" }, "application/vnd.3gpp2.tcap": { "source": "iana", "extensions": ["tcap"] }, "application/vnd.3lightssoftware.imagescal": { "source": "iana" }, "application/vnd.3m.post-it-notes": { "source": "iana", "extensions": ["pwn"] }, "application/vnd.accpac.simply.aso": { "source": "iana", "extensions": ["aso"] }, "application/vnd.accpac.simply.imp": { "source": "iana", "extensions": ["imp"] }, "application/vnd.acucobol": { "source": "iana", "extensions": ["acu"] }, "application/vnd.acucorp": { "source": "iana", "extensions": ["atc","acutc"] }, "application/vnd.adobe.air-application-installer-package+zip": { "source": "apache", "extensions": ["air"] }, "application/vnd.adobe.flash.movie": { "source": "iana" }, "application/vnd.adobe.formscentral.fcdt": { "source": "iana", "extensions": ["fcdt"] }, "application/vnd.adobe.fxp": { "source": "iana", "extensions": ["fxp","fxpl"] }, "application/vnd.adobe.partial-upload": { "source": "iana" }, "application/vnd.adobe.xdp+xml": { "source": "iana", "extensions": ["xdp"] }, "application/vnd.adobe.xfdf": { "source": "iana", "extensions": ["xfdf"] }, "application/vnd.aether.imp": { "source": "iana" }, "application/vnd.ah-barcode": { "source": "iana" }, "application/vnd.ahead.space": { "source": "iana", "extensions": ["ahead"] }, "application/vnd.airzip.filesecure.azf": { "source": "iana", "extensions": ["azf"] }, "application/vnd.airzip.filesecure.azs": { "source": "iana", "extensions": ["azs"] }, "application/vnd.amazon.ebook": { "source": "apache", "extensions": ["azw"] }, "application/vnd.amazon.mobi8-ebook": { "source": "iana" }, "application/vnd.americandynamics.acc": { "source": "iana", "extensions": ["acc"] }, "application/vnd.amiga.ami": { "source": "iana", "extensions": ["ami"] }, "application/vnd.amundsen.maze+xml": { "source": "iana" }, "application/vnd.android.package-archive": { "source": "apache", "compressible": false, "extensions": ["apk"] }, "application/vnd.anki": { "source": "iana" }, "application/vnd.anser-web-certificate-issue-initiation": { "source": "iana", "extensions": ["cii"] }, "application/vnd.anser-web-funds-transfer-initiation": { "source": "apache", "extensions": ["fti"] }, "application/vnd.antix.game-component": { "source": "iana", "extensions": ["atx"] }, "application/vnd.apache.thrift.binary": { "source": "iana" }, "application/vnd.apache.thrift.compact": { "source": "iana" }, "application/vnd.apache.thrift.json": { "source": "iana" }, "application/vnd.api+json": { "source": "iana", "compressible": true }, "application/vnd.apothekende.reservation+json": { "source": "iana", "compressible": true }, "application/vnd.apple.installer+xml": { "source": "iana", "extensions": ["mpkg"] }, "application/vnd.apple.mpegurl": { "source": "iana", "extensions": ["m3u8"] }, "application/vnd.apple.pkpass": { "compressible": false, "extensions": ["pkpass"] }, "application/vnd.arastra.swi": { "source": "iana" }, "application/vnd.aristanetworks.swi": { "source": "iana", "extensions": ["swi"] }, "application/vnd.artsquare": { "source": "iana" }, "application/vnd.astraea-software.iota": { "source": "iana", "extensions": ["iota"] }, "application/vnd.audiograph": { "source": "iana", "extensions": ["aep"] }, "application/vnd.autopackage": { "source": "iana" }, "application/vnd.avistar+xml": { "source": "iana" }, "application/vnd.balsamiq.bmml+xml": { "source": "iana" }, "application/vnd.balsamiq.bmpr": { "source": "iana" }, "application/vnd.bekitzur-stech+json": { "source": "iana", "compressible": true }, "application/vnd.bint.med-content": { "source": "iana" }, "application/vnd.biopax.rdf+xml": { "source": "iana" }, "application/vnd.blink-idb-value-wrapper": { "source": "iana" }, "application/vnd.blueice.multipass": { "source": "iana", "extensions": ["mpm"] }, "application/vnd.bluetooth.ep.oob": { "source": "iana" }, "application/vnd.bluetooth.le.oob": { "source": "iana" }, "application/vnd.bmi": { "source": "iana", "extensions": ["bmi"] }, "application/vnd.businessobjects": { "source": "iana", "extensions": ["rep"] }, "application/vnd.cab-jscript": { "source": "iana" }, "application/vnd.canon-cpdl": { "source": "iana" }, "application/vnd.canon-lips": { "source": "iana" }, "application/vnd.capasystems-pg+json": { "source": "iana", "compressible": true }, "application/vnd.cendio.thinlinc.clientconf": { "source": "iana" }, "application/vnd.century-systems.tcp_stream": { "source": "iana" }, "application/vnd.chemdraw+xml": { "source": "iana", "extensions": ["cdxml"] }, "application/vnd.chess-pgn": { "source": "iana" }, "application/vnd.chipnuts.karaoke-mmd": { "source": "iana", "extensions": ["mmd"] }, "application/vnd.cinderella": { "source": "iana", "extensions": ["cdy"] }, "application/vnd.cirpack.isdn-ext": { "source": "iana" }, "application/vnd.citationstyles.style+xml": { "source": "iana" }, "application/vnd.claymore": { "source": "iana", "extensions": ["cla"] }, "application/vnd.cloanto.rp9": { "source": "iana", "extensions": ["rp9"] }, "application/vnd.clonk.c4group": { "source": "iana", "extensions": ["c4g","c4d","c4f","c4p","c4u"] }, "application/vnd.cluetrust.cartomobile-config": { "source": "iana", "extensions": ["c11amc"] }, "application/vnd.cluetrust.cartomobile-config-pkg": { "source": "iana", "extensions": ["c11amz"] }, "application/vnd.coffeescript": { "source": "iana" }, "application/vnd.collection+json": { "source": "iana", "compressible": true }, "application/vnd.collection.doc+json": { "source": "iana", "compressible": true }, "application/vnd.collection.next+json": { "source": "iana", "compressible": true }, "application/vnd.comicbook+zip": { "source": "iana" }, "application/vnd.commerce-battelle": { "source": "iana" }, "application/vnd.commonspace": { "source": "iana", "extensions": ["csp"] }, "application/vnd.contact.cmsg": { "source": "iana", "extensions": ["cdbcmsg"] }, "application/vnd.coreos.ignition+json": { "source": "iana", "compressible": true }, "application/vnd.cosmocaller": { "source": "iana", "extensions": ["cmc"] }, "application/vnd.crick.clicker": { "source": "iana", "extensions": ["clkx"] }, "application/vnd.crick.clicker.keyboard": { "source": "iana", "extensions": ["clkk"] }, "application/vnd.crick.clicker.palette": { "source": "iana", "extensions": ["clkp"] }, "application/vnd.crick.clicker.template": { "source": "iana", "extensions": ["clkt"] }, "application/vnd.crick.clicker.wordbank": { "source": "iana", "extensions": ["clkw"] }, "application/vnd.criticaltools.wbs+xml": { "source": "iana", "extensions": ["wbs"] }, "application/vnd.ctc-posml": { "source": "iana", "extensions": ["pml"] }, "application/vnd.ctct.ws+xml": { "source": "iana" }, "application/vnd.cups-pdf": { "source": "iana" }, "application/vnd.cups-postscript": { "source": "iana" }, "application/vnd.cups-ppd": { "source": "iana", "extensions": ["ppd"] }, "application/vnd.cups-raster": { "source": "iana" }, "application/vnd.cups-raw": { "source": "iana" }, "application/vnd.curl": { "source": "iana" }, "application/vnd.curl.car": { "source": "apache", "extensions": ["car"] }, "application/vnd.curl.pcurl": { "source": "apache", "extensions": ["pcurl"] }, "application/vnd.cyan.dean.root+xml": { "source": "iana" }, "application/vnd.cybank": { "source": "iana" }, "application/vnd.d2l.coursepackage1p0+zip": { "source": "iana" }, "application/vnd.dart": { "source": "iana", "compressible": true, "extensions": ["dart"] }, "application/vnd.data-vision.rdz": { "source": "iana", "extensions": ["rdz"] }, "application/vnd.datapackage+json": { "source": "iana", "compressible": true }, "application/vnd.dataresource+json": { "source": "iana", "compressible": true }, "application/vnd.debian.binary-package": { "source": "iana" }, "application/vnd.dece.data": { "source": "iana", "extensions": ["uvf","uvvf","uvd","uvvd"] }, "application/vnd.dece.ttml+xml": { "source": "iana", "extensions": ["uvt","uvvt"] }, "application/vnd.dece.unspecified": { "source": "iana", "extensions": ["uvx","uvvx"] }, "application/vnd.dece.zip": { "source": "iana", "extensions": ["uvz","uvvz"] }, "application/vnd.denovo.fcselayout-link": { "source": "iana", "extensions": ["fe_launch"] }, "application/vnd.desmume-movie": { "source": "iana" }, "application/vnd.desmume.movie": { "source": "apache" }, "application/vnd.dir-bi.plate-dl-nosuffix": { "source": "iana" }, "application/vnd.dm.delegation+xml": { "source": "iana" }, "application/vnd.dna": { "source": "iana", "extensions": ["dna"] }, "application/vnd.document+json": { "source": "iana", "compressible": true }, "application/vnd.dolby.mlp": { "source": "apache", "extensions": ["mlp"] }, "application/vnd.dolby.mobile.1": { "source": "iana" }, "application/vnd.dolby.mobile.2": { "source": "iana" }, "application/vnd.doremir.scorecloud-binary-document": { "source": "iana" }, "application/vnd.dpgraph": { "source": "iana", "extensions": ["dpg"] }, "application/vnd.dreamfactory": { "source": "iana", "extensions": ["dfac"] }, "application/vnd.drive+json": { "source": "iana", "compressible": true }, "application/vnd.ds-keypoint": { "source": "apache", "extensions": ["kpxx"] }, "application/vnd.dtg.local": { "source": "iana" }, "application/vnd.dtg.local.flash": { "source": "iana" }, "application/vnd.dtg.local.html": { "source": "iana" }, "application/vnd.dvb.ait": { "source": "iana", "extensions": ["ait"] }, "application/vnd.dvb.dvbj": { "source": "iana" }, "application/vnd.dvb.esgcontainer": { "source": "iana" }, "application/vnd.dvb.ipdcdftnotifaccess": { "source": "iana" }, "application/vnd.dvb.ipdcesgaccess": { "source": "iana" }, "application/vnd.dvb.ipdcesgaccess2": { "source": "iana" }, "application/vnd.dvb.ipdcesgpdd": { "source": "iana" }, "application/vnd.dvb.ipdcroaming": { "source": "iana" }, "application/vnd.dvb.iptv.alfec-base": { "source": "iana" }, "application/vnd.dvb.iptv.alfec-enhancement": { "source": "iana" }, "application/vnd.dvb.notif-aggregate-root+xml": { "source": "iana" }, "application/vnd.dvb.notif-container+xml": { "source": "iana" }, "application/vnd.dvb.notif-generic+xml": { "source": "iana" }, "application/vnd.dvb.notif-ia-msglist+xml": { "source": "iana" }, "application/vnd.dvb.notif-ia-registration-request+xml": { "source": "iana" }, "application/vnd.dvb.notif-ia-registration-response+xml": { "source": "iana" }, "application/vnd.dvb.notif-init+xml": { "source": "iana" }, "application/vnd.dvb.pfr": { "source": "iana" }, "application/vnd.dvb.service": { "source": "iana", "extensions": ["svc"] }, "application/vnd.dxr": { "source": "iana" }, "application/vnd.dynageo": { "source": "iana", "extensions": ["geo"] }, "application/vnd.dzr": { "source": "iana" }, "application/vnd.easykaraoke.cdgdownload": { "source": "iana" }, "application/vnd.ecdis-update": { "source": "iana" }, "application/vnd.ecowin.chart": { "source": "iana", "extensions": ["mag"] }, "application/vnd.ecowin.filerequest": { "source": "iana" }, "application/vnd.ecowin.fileupdate": { "source": "iana" }, "application/vnd.ecowin.series": { "source": "iana" }, "application/vnd.ecowin.seriesrequest": { "source": "iana" }, "application/vnd.ecowin.seriesupdate": { "source": "iana" }, "application/vnd.efi.img": { "source": "iana" }, "application/vnd.efi.iso": { "source": "iana" }, "application/vnd.emclient.accessrequest+xml": { "source": "iana" }, "application/vnd.enliven": { "source": "iana", "extensions": ["nml"] }, "application/vnd.enphase.envoy": { "source": "iana" }, "application/vnd.eprints.data+xml": { "source": "iana" }, "application/vnd.epson.esf": { "source": "iana", "extensions": ["esf"] }, "application/vnd.epson.msf": { "source": "iana", "extensions": ["msf"] }, "application/vnd.epson.quickanime": { "source": "iana", "extensions": ["qam"] }, "application/vnd.epson.salt": { "source": "iana", "extensions": ["slt"] }, "application/vnd.epson.ssf": { "source": "iana", "extensions": ["ssf"] }, "application/vnd.ericsson.quickcall": { "source": "iana" }, "application/vnd.espass-espass+zip": { "source": "iana" }, "application/vnd.eszigno3+xml": { "source": "iana", "extensions": ["es3","et3"] }, "application/vnd.etsi.aoc+xml": { "source": "iana" }, "application/vnd.etsi.asic-e+zip": { "source": "iana" }, "application/vnd.etsi.asic-s+zip": { "source": "iana" }, "application/vnd.etsi.cug+xml": { "source": "iana" }, "application/vnd.etsi.iptvcommand+xml": { "source": "iana" }, "application/vnd.etsi.iptvdiscovery+xml": { "source": "iana" }, "application/vnd.etsi.iptvprofile+xml": { "source": "iana" }, "application/vnd.etsi.iptvsad-bc+xml": { "source": "iana" }, "application/vnd.etsi.iptvsad-cod+xml": { "source": "iana" }, "application/vnd.etsi.iptvsad-npvr+xml": { "source": "iana" }, "application/vnd.etsi.iptvservice+xml": { "source": "iana" }, "application/vnd.etsi.iptvsync+xml": { "source": "iana" }, "application/vnd.etsi.iptvueprofile+xml": { "source": "iana" }, "application/vnd.etsi.mcid+xml": { "source": "iana" }, "application/vnd.etsi.mheg5": { "source": "iana" }, "application/vnd.etsi.overload-control-policy-dataset+xml": { "source": "iana" }, "application/vnd.etsi.pstn+xml": { "source": "iana" }, "application/vnd.etsi.sci+xml": { "source": "iana" }, "application/vnd.etsi.simservs+xml": { "source": "iana" }, "application/vnd.etsi.timestamp-token": { "source": "iana" }, "application/vnd.etsi.tsl+xml": { "source": "iana" }, "application/vnd.etsi.tsl.der": { "source": "iana" }, "application/vnd.eudora.data": { "source": "iana" }, "application/vnd.evolv.ecig.theme": { "source": "iana" }, "application/vnd.ezpix-album": { "source": "iana", "extensions": ["ez2"] }, "application/vnd.ezpix-package": { "source": "iana", "extensions": ["ez3"] }, "application/vnd.f-secure.mobile": { "source": "iana" }, "application/vnd.fastcopy-disk-image": { "source": "iana" }, "application/vnd.fdf": { "source": "iana", "extensions": ["fdf"] }, "application/vnd.fdsn.mseed": { "source": "iana", "extensions": ["mseed"] }, "application/vnd.fdsn.seed": { "source": "iana", "extensions": ["seed","dataless"] }, "application/vnd.ffsns": { "source": "iana" }, "application/vnd.filmit.zfc": { "source": "iana" }, "application/vnd.fints": { "source": "iana" }, "application/vnd.firemonkeys.cloudcell": { "source": "iana" }, "application/vnd.flographit": { "source": "iana", "extensions": ["gph"] }, "application/vnd.fluxtime.clip": { "source": "iana", "extensions": ["ftc"] }, "application/vnd.font-fontforge-sfd": { "source": "iana" }, "application/vnd.framemaker": { "source": "iana", "extensions": ["fm","frame","maker","book"] }, "application/vnd.frogans.fnc": { "source": "iana", "extensions": ["fnc"] }, "application/vnd.frogans.ltf": { "source": "iana", "extensions": ["ltf"] }, "application/vnd.fsc.weblaunch": { "source": "iana", "extensions": ["fsc"] }, "application/vnd.fujitsu.oasys": { "source": "iana", "extensions": ["oas"] }, "application/vnd.fujitsu.oasys2": { "source": "iana", "extensions": ["oa2"] }, "application/vnd.fujitsu.oasys3": { "source": "iana", "extensions": ["oa3"] }, "application/vnd.fujitsu.oasysgp": { "source": "iana", "extensions": ["fg5"] }, "application/vnd.fujitsu.oasysprs": { "source": "iana", "extensions": ["bh2"] }, "application/vnd.fujixerox.art-ex": { "source": "iana" }, "application/vnd.fujixerox.art4": { "source": "iana" }, "application/vnd.fujixerox.ddd": { "source": "iana", "extensions": ["ddd"] }, "application/vnd.fujixerox.docuworks": { "source": "iana", "extensions": ["xdw"] }, "application/vnd.fujixerox.docuworks.binder": { "source": "iana", "extensions": ["xbd"] }, "application/vnd.fujixerox.docuworks.container": { "source": "iana" }, "application/vnd.fujixerox.hbpl": { "source": "iana" }, "application/vnd.fut-misnet": { "source": "iana" }, "application/vnd.fuzzysheet": { "source": "iana", "extensions": ["fzs"] }, "application/vnd.genomatix.tuxedo": { "source": "iana", "extensions": ["txd"] }, "application/vnd.geo+json": { "source": "iana", "compressible": true }, "application/vnd.geocube+xml": { "source": "iana" }, "application/vnd.geogebra.file": { "source": "iana", "extensions": ["ggb"] }, "application/vnd.geogebra.tool": { "source": "iana", "extensions": ["ggt"] }, "application/vnd.geometry-explorer": { "source": "iana", "extensions": ["gex","gre"] }, "application/vnd.geonext": { "source": "iana", "extensions": ["gxt"] }, "application/vnd.geoplan": { "source": "iana", "extensions": ["g2w"] }, "application/vnd.geospace": { "source": "iana", "extensions": ["g3w"] }, "application/vnd.gerber": { "source": "iana" }, "application/vnd.globalplatform.card-content-mgt": { "source": "iana" }, "application/vnd.globalplatform.card-content-mgt-response": { "source": "iana" }, "application/vnd.gmx": { "source": "iana", "extensions": ["gmx"] }, "application/vnd.google-apps.document": { "compressible": false, "extensions": ["gdoc"] }, "application/vnd.google-apps.presentation": { "compressible": false, "extensions": ["gslides"] }, "application/vnd.google-apps.spreadsheet": { "compressible": false, "extensions": ["gsheet"] }, "application/vnd.google-earth.kml+xml": { "source": "iana", "compressible": true, "extensions": ["kml"] }, "application/vnd.google-earth.kmz": { "source": "iana", "compressible": false, "extensions": ["kmz"] }, "application/vnd.gov.sk.e-form+xml": { "source": "iana" }, "application/vnd.gov.sk.e-form+zip": { "source": "iana" }, "application/vnd.gov.sk.xmldatacontainer+xml": { "source": "iana" }, "application/vnd.grafeq": { "source": "iana", "extensions": ["gqf","gqs"] }, "application/vnd.gridmp": { "source": "iana" }, "application/vnd.groove-account": { "source": "iana", "extensions": ["gac"] }, "application/vnd.groove-help": { "source": "iana", "extensions": ["ghf"] }, "application/vnd.groove-identity-message": { "source": "iana", "extensions": ["gim"] }, "application/vnd.groove-injector": { "source": "iana", "extensions": ["grv"] }, "application/vnd.groove-tool-message": { "source": "iana", "extensions": ["gtm"] }, "application/vnd.groove-tool-template": { "source": "iana", "extensions": ["tpl"] }, "application/vnd.groove-vcard": { "source": "iana", "extensions": ["vcg"] }, "application/vnd.hal+json": { "source": "iana", "compressible": true }, "application/vnd.hal+xml": { "source": "iana", "extensions": ["hal"] }, "application/vnd.handheld-entertainment+xml": { "source": "iana", "extensions": ["zmm"] }, "application/vnd.hbci": { "source": "iana", "extensions": ["hbci"] }, "application/vnd.hc+json": { "source": "iana", "compressible": true }, "application/vnd.hcl-bireports": { "source": "iana" }, "application/vnd.hdt": { "source": "iana" }, "application/vnd.heroku+json": { "source": "iana", "compressible": true }, "application/vnd.hhe.lesson-player": { "source": "iana", "extensions": ["les"] }, "application/vnd.hp-hpgl": { "source": "iana", "extensions": ["hpgl"] }, "application/vnd.hp-hpid": { "source": "iana", "extensions": ["hpid"] }, "application/vnd.hp-hps": { "source": "iana", "extensions": ["hps"] }, "application/vnd.hp-jlyt": { "source": "iana", "extensions": ["jlt"] }, "application/vnd.hp-pcl": { "source": "iana", "extensions": ["pcl"] }, "application/vnd.hp-pclxl": { "source": "iana", "extensions": ["pclxl"] }, "application/vnd.httphone": { "source": "iana" }, "application/vnd.hydrostatix.sof-data": { "source": "iana", "extensions": ["sfd-hdstx"] }, "application/vnd.hyper-item+json": { "source": "iana", "compressible": true }, "application/vnd.hyperdrive+json": { "source": "iana", "compressible": true }, "application/vnd.hzn-3d-crossword": { "source": "iana" }, "application/vnd.ibm.afplinedata": { "source": "iana" }, "application/vnd.ibm.electronic-media": { "source": "iana" }, "application/vnd.ibm.minipay": { "source": "iana", "extensions": ["mpy"] }, "application/vnd.ibm.modcap": { "source": "iana", "extensions": ["afp","listafp","list3820"] }, "application/vnd.ibm.rights-management": { "source": "iana", "extensions": ["irm"] }, "application/vnd.ibm.secure-container": { "source": "iana", "extensions": ["sc"] }, "application/vnd.iccprofile": { "source": "iana", "extensions": ["icc","icm"] }, "application/vnd.ieee.1905": { "source": "iana" }, "application/vnd.igloader": { "source": "iana", "extensions": ["igl"] }, "application/vnd.imagemeter.folder+zip": { "source": "iana" }, "application/vnd.imagemeter.image+zip": { "source": "iana" }, "application/vnd.immervision-ivp": { "source": "iana", "extensions": ["ivp"] }, "application/vnd.immervision-ivu": { "source": "iana", "extensions": ["ivu"] }, "application/vnd.ims.imsccv1p1": { "source": "iana" }, "application/vnd.ims.imsccv1p2": { "source": "iana" }, "application/vnd.ims.imsccv1p3": { "source": "iana" }, "application/vnd.ims.lis.v2.result+json": { "source": "iana", "compressible": true }, "application/vnd.ims.lti.v2.toolconsumerprofile+json": { "source": "iana", "compressible": true }, "application/vnd.ims.lti.v2.toolproxy+json": { "source": "iana", "compressible": true }, "application/vnd.ims.lti.v2.toolproxy.id+json": { "source": "iana", "compressible": true }, "application/vnd.ims.lti.v2.toolsettings+json": { "source": "iana", "compressible": true }, "application/vnd.ims.lti.v2.toolsettings.simple+json": { "source": "iana", "compressible": true }, "application/vnd.informedcontrol.rms+xml": { "source": "iana" }, "application/vnd.informix-visionary": { "source": "iana" }, "application/vnd.infotech.project": { "source": "iana" }, "application/vnd.infotech.project+xml": { "source": "iana" }, "application/vnd.innopath.wamp.notification": { "source": "iana" }, "application/vnd.insors.igm": { "source": "iana", "extensions": ["igm"] }, "application/vnd.intercon.formnet": { "source": "iana", "extensions": ["xpw","xpx"] }, "application/vnd.intergeo": { "source": "iana", "extensions": ["i2g"] }, "application/vnd.intertrust.digibox": { "source": "iana" }, "application/vnd.intertrust.nncp": { "source": "iana" }, "application/vnd.intu.qbo": { "source": "iana", "extensions": ["qbo"] }, "application/vnd.intu.qfx": { "source": "iana", "extensions": ["qfx"] }, "application/vnd.iptc.g2.catalogitem+xml": { "source": "iana" }, "application/vnd.iptc.g2.conceptitem+xml": { "source": "iana" }, "application/vnd.iptc.g2.knowledgeitem+xml": { "source": "iana" }, "application/vnd.iptc.g2.newsitem+xml": { "source": "iana" }, "application/vnd.iptc.g2.newsmessage+xml": { "source": "iana" }, "application/vnd.iptc.g2.packageitem+xml": { "source": "iana" }, "application/vnd.iptc.g2.planningitem+xml": { "source": "iana" }, "application/vnd.ipunplugged.rcprofile": { "source": "iana", "extensions": ["rcprofile"] }, "application/vnd.irepository.package+xml": { "source": "iana", "extensions": ["irp"] }, "application/vnd.is-xpr": { "source": "iana", "extensions": ["xpr"] }, "application/vnd.isac.fcs": { "source": "iana", "extensions": ["fcs"] }, "application/vnd.jam": { "source": "iana", "extensions": ["jam"] }, "application/vnd.japannet-directory-service": { "source": "iana" }, "application/vnd.japannet-jpnstore-wakeup": { "source": "iana" }, "application/vnd.japannet-payment-wakeup": { "source": "iana" }, "application/vnd.japannet-registration": { "source": "iana" }, "application/vnd.japannet-registration-wakeup": { "source": "iana" }, "application/vnd.japannet-setstore-wakeup": { "source": "iana" }, "application/vnd.japannet-verification": { "source": "iana" }, "application/vnd.japannet-verification-wakeup": { "source": "iana" }, "application/vnd.jcp.javame.midlet-rms": { "source": "iana", "extensions": ["rms"] }, "application/vnd.jisp": { "source": "iana", "extensions": ["jisp"] }, "application/vnd.joost.joda-archive": { "source": "iana", "extensions": ["joda"] }, "application/vnd.jsk.isdn-ngn": { "source": "iana" }, "application/vnd.kahootz": { "source": "iana", "extensions": ["ktz","ktr"] }, "application/vnd.kde.karbon": { "source": "iana", "extensions": ["karbon"] }, "application/vnd.kde.kchart": { "source": "iana", "extensions": ["chrt"] }, "application/vnd.kde.kformula": { "source": "iana", "extensions": ["kfo"] }, "application/vnd.kde.kivio": { "source": "iana", "extensions": ["flw"] }, "application/vnd.kde.kontour": { "source": "iana", "extensions": ["kon"] }, "application/vnd.kde.kpresenter": { "source": "iana", "extensions": ["kpr","kpt"] }, "application/vnd.kde.kspread": { "source": "iana", "extensions": ["ksp"] }, "application/vnd.kde.kword": { "source": "iana", "extensions": ["kwd","kwt"] }, "application/vnd.kenameaapp": { "source": "iana", "extensions": ["htke"] }, "application/vnd.kidspiration": { "source": "iana", "extensions": ["kia"] }, "application/vnd.kinar": { "source": "iana", "extensions": ["kne","knp"] }, "application/vnd.koan": { "source": "iana", "extensions": ["skp","skd","skt","skm"] }, "application/vnd.kodak-descriptor": { "source": "iana", "extensions": ["sse"] }, "application/vnd.las.las+json": { "source": "iana", "compressible": true }, "application/vnd.las.las+xml": { "source": "iana", "extensions": ["lasxml"] }, "application/vnd.liberty-request+xml": { "source": "iana" }, "application/vnd.llamagraphics.life-balance.desktop": { "source": "iana", "extensions": ["lbd"] }, "application/vnd.llamagraphics.life-balance.exchange+xml": { "source": "iana", "extensions": ["lbe"] }, "application/vnd.lotus-1-2-3": { "source": "iana", "extensions": ["123"] }, "application/vnd.lotus-approach": { "source": "iana", "extensions": ["apr"] }, "application/vnd.lotus-freelance": { "source": "iana", "extensions": ["pre"] }, "application/vnd.lotus-notes": { "source": "iana", "extensions": ["nsf"] }, "application/vnd.lotus-organizer": { "source": "iana", "extensions": ["org"] }, "application/vnd.lotus-screencam": { "source": "iana", "extensions": ["scm"] }, "application/vnd.lotus-wordpro": { "source": "iana", "extensions": ["lwp"] }, "application/vnd.macports.portpkg": { "source": "iana", "extensions": ["portpkg"] }, "application/vnd.mapbox-vector-tile": { "source": "iana" }, "application/vnd.marlin.drm.actiontoken+xml": { "source": "iana" }, "application/vnd.marlin.drm.conftoken+xml": { "source": "iana" }, "application/vnd.marlin.drm.license+xml": { "source": "iana" }, "application/vnd.marlin.drm.mdcf": { "source": "iana" }, "application/vnd.mason+json": { "source": "iana", "compressible": true }, "application/vnd.maxmind.maxmind-db": { "source": "iana" }, "application/vnd.mcd": { "source": "iana", "extensions": ["mcd"] }, "application/vnd.medcalcdata": { "source": "iana", "extensions": ["mc1"] }, "application/vnd.mediastation.cdkey": { "source": "iana", "extensions": ["cdkey"] }, "application/vnd.meridian-slingshot": { "source": "iana" }, "application/vnd.mfer": { "source": "iana", "extensions": ["mwf"] }, "application/vnd.mfmp": { "source": "iana", "extensions": ["mfm"] }, "application/vnd.micro+json": { "source": "iana", "compressible": true }, "application/vnd.micrografx.flo": { "source": "iana", "extensions": ["flo"] }, "application/vnd.micrografx.igx": { "source": "iana", "extensions": ["igx"] }, "application/vnd.microsoft.portable-executable": { "source": "iana" }, "application/vnd.microsoft.windows.thumbnail-cache": { "source": "iana" }, "application/vnd.miele+json": { "source": "iana", "compressible": true }, "application/vnd.mif": { "source": "iana", "extensions": ["mif"] }, "application/vnd.minisoft-hp3000-save": { "source": "iana" }, "application/vnd.mitsubishi.misty-guard.trustweb": { "source": "iana" }, "application/vnd.mobius.daf": { "source": "iana", "extensions": ["daf"] }, "application/vnd.mobius.dis": { "source": "iana", "extensions": ["dis"] }, "application/vnd.mobius.mbk": { "source": "iana", "extensions": ["mbk"] }, "application/vnd.mobius.mqy": { "source": "iana", "extensions": ["mqy"] }, "application/vnd.mobius.msl": { "source": "iana", "extensions": ["msl"] }, "application/vnd.mobius.plc": { "source": "iana", "extensions": ["plc"] }, "application/vnd.mobius.txf": { "source": "iana", "extensions": ["txf"] }, "application/vnd.mophun.application": { "source": "iana", "extensions": ["mpn"] }, "application/vnd.mophun.certificate": { "source": "iana", "extensions": ["mpc"] }, "application/vnd.motorola.flexsuite": { "source": "iana" }, "application/vnd.motorola.flexsuite.adsi": { "source": "iana" }, "application/vnd.motorola.flexsuite.fis": { "source": "iana" }, "application/vnd.motorola.flexsuite.gotap": { "source": "iana" }, "application/vnd.motorola.flexsuite.kmr": { "source": "iana" }, "application/vnd.motorola.flexsuite.ttc": { "source": "iana" }, "application/vnd.motorola.flexsuite.wem": { "source": "iana" }, "application/vnd.motorola.iprm": { "source": "iana" }, "application/vnd.mozilla.xul+xml": { "source": "iana", "compressible": true, "extensions": ["xul"] }, "application/vnd.ms-3mfdocument": { "source": "iana" }, "application/vnd.ms-artgalry": { "source": "iana", "extensions": ["cil"] }, "application/vnd.ms-asf": { "source": "iana" }, "application/vnd.ms-cab-compressed": { "source": "iana", "extensions": ["cab"] }, "application/vnd.ms-color.iccprofile": { "source": "apache" }, "application/vnd.ms-excel": { "source": "iana", "compressible": false, "extensions": ["xls","xlm","xla","xlc","xlt","xlw"] }, "application/vnd.ms-excel.addin.macroenabled.12": { "source": "iana", "extensions": ["xlam"] }, "application/vnd.ms-excel.sheet.binary.macroenabled.12": { "source": "iana", "extensions": ["xlsb"] }, "application/vnd.ms-excel.sheet.macroenabled.12": { "source": "iana", "extensions": ["xlsm"] }, "application/vnd.ms-excel.template.macroenabled.12": { "source": "iana", "extensions": ["xltm"] }, "application/vnd.ms-fontobject": { "source": "iana", "compressible": true, "extensions": ["eot"] }, "application/vnd.ms-htmlhelp": { "source": "iana", "extensions": ["chm"] }, "application/vnd.ms-ims": { "source": "iana", "extensions": ["ims"] }, "application/vnd.ms-lrm": { "source": "iana", "extensions": ["lrm"] }, "application/vnd.ms-office.activex+xml": { "source": "iana" }, "application/vnd.ms-officetheme": { "source": "iana", "extensions": ["thmx"] }, "application/vnd.ms-opentype": { "source": "apache", "compressible": true }, "application/vnd.ms-package.obfuscated-opentype": { "source": "apache" }, "application/vnd.ms-pki.seccat": { "source": "apache", "extensions": ["cat"] }, "application/vnd.ms-pki.stl": { "source": "apache", "extensions": ["stl"] }, "application/vnd.ms-playready.initiator+xml": { "source": "iana" }, "application/vnd.ms-powerpoint": { "source": "iana", "compressible": false, "extensions": ["ppt","pps","pot"] }, "application/vnd.ms-powerpoint.addin.macroenabled.12": { "source": "iana", "extensions": ["ppam"] }, "application/vnd.ms-powerpoint.presentation.macroenabled.12": { "source": "iana", "extensions": ["pptm"] }, "application/vnd.ms-powerpoint.slide.macroenabled.12": { "source": "iana", "extensions": ["sldm"] }, "application/vnd.ms-powerpoint.slideshow.macroenabled.12": { "source": "iana", "extensions": ["ppsm"] }, "application/vnd.ms-powerpoint.template.macroenabled.12": { "source": "iana", "extensions": ["potm"] }, "application/vnd.ms-printdevicecapabilities+xml": { "source": "iana" }, "application/vnd.ms-printing.printticket+xml": { "source": "apache" }, "application/vnd.ms-printschematicket+xml": { "source": "iana" }, "application/vnd.ms-project": { "source": "iana", "extensions": ["mpp","mpt"] }, "application/vnd.ms-tnef": { "source": "iana" }, "application/vnd.ms-windows.devicepairing": { "source": "iana" }, "application/vnd.ms-windows.nwprinting.oob": { "source": "iana" }, "application/vnd.ms-windows.printerpairing": { "source": "iana" }, "application/vnd.ms-windows.wsd.oob": { "source": "iana" }, "application/vnd.ms-wmdrm.lic-chlg-req": { "source": "iana" }, "application/vnd.ms-wmdrm.lic-resp": { "source": "iana" }, "application/vnd.ms-wmdrm.meter-chlg-req": { "source": "iana" }, "application/vnd.ms-wmdrm.meter-resp": { "source": "iana" }, "application/vnd.ms-word.document.macroenabled.12": { "source": "iana", "extensions": ["docm"] }, "application/vnd.ms-word.template.macroenabled.12": { "source": "iana", "extensions": ["dotm"] }, "application/vnd.ms-works": { "source": "iana", "extensions": ["wps","wks","wcm","wdb"] }, "application/vnd.ms-wpl": { "source": "iana", "extensions": ["wpl"] }, "application/vnd.ms-xpsdocument": { "source": "iana", "compressible": false, "extensions": ["xps"] }, "application/vnd.msa-disk-image": { "source": "iana" }, "application/vnd.mseq": { "source": "iana", "extensions": ["mseq"] }, "application/vnd.msign": { "source": "iana" }, "application/vnd.multiad.creator": { "source": "iana" }, "application/vnd.multiad.creator.cif": { "source": "iana" }, "application/vnd.music-niff": { "source": "iana" }, "application/vnd.musician": { "source": "iana", "extensions": ["mus"] }, "application/vnd.muvee.style": { "source": "iana", "extensions": ["msty"] }, "application/vnd.mynfc": { "source": "iana", "extensions": ["taglet"] }, "application/vnd.ncd.control": { "source": "iana" }, "application/vnd.ncd.reference": { "source": "iana" }, "application/vnd.nearst.inv+json": { "source": "iana", "compressible": true }, "application/vnd.nervana": { "source": "iana" }, "application/vnd.netfpx": { "source": "iana" }, "application/vnd.neurolanguage.nlu": { "source": "iana", "extensions": ["nlu"] }, "application/vnd.nintendo.nitro.rom": { "source": "iana" }, "application/vnd.nintendo.snes.rom": { "source": "iana" }, "application/vnd.nitf": { "source": "iana", "extensions": ["ntf","nitf"] }, "application/vnd.noblenet-directory": { "source": "iana", "extensions": ["nnd"] }, "application/vnd.noblenet-sealer": { "source": "iana", "extensions": ["nns"] }, "application/vnd.noblenet-web": { "source": "iana", "extensions": ["nnw"] }, "application/vnd.nokia.catalogs": { "source": "iana" }, "application/vnd.nokia.conml+wbxml": { "source": "iana" }, "application/vnd.nokia.conml+xml": { "source": "iana" }, "application/vnd.nokia.iptv.config+xml": { "source": "iana" }, "application/vnd.nokia.isds-radio-presets": { "source": "iana" }, "application/vnd.nokia.landmark+wbxml": { "source": "iana" }, "application/vnd.nokia.landmark+xml": { "source": "iana" }, "application/vnd.nokia.landmarkcollection+xml": { "source": "iana" }, "application/vnd.nokia.n-gage.ac+xml": { "source": "iana" }, "application/vnd.nokia.n-gage.data": { "source": "iana", "extensions": ["ngdat"] }, "application/vnd.nokia.n-gage.symbian.install": { "source": "iana", "extensions": ["n-gage"] }, "application/vnd.nokia.ncd": { "source": "iana" }, "application/vnd.nokia.pcd+wbxml": { "source": "iana" }, "application/vnd.nokia.pcd+xml": { "source": "iana" }, "application/vnd.nokia.radio-preset": { "source": "iana", "extensions": ["rpst"] }, "application/vnd.nokia.radio-presets": { "source": "iana", "extensions": ["rpss"] }, "application/vnd.novadigm.edm": { "source": "iana", "extensions": ["edm"] }, "application/vnd.novadigm.edx": { "source": "iana", "extensions": ["edx"] }, "application/vnd.novadigm.ext": { "source": "iana", "extensions": ["ext"] }, "application/vnd.ntt-local.content-share": { "source": "iana" }, "application/vnd.ntt-local.file-transfer": { "source": "iana" }, "application/vnd.ntt-local.ogw_remote-access": { "source": "iana" }, "application/vnd.ntt-local.sip-ta_remote": { "source": "iana" }, "application/vnd.ntt-local.sip-ta_tcp_stream": { "source": "iana" }, "application/vnd.oasis.opendocument.chart": { "source": "iana", "extensions": ["odc"] }, "application/vnd.oasis.opendocument.chart-template": { "source": "iana", "extensions": ["otc"] }, "application/vnd.oasis.opendocument.database": { "source": "iana", "extensions": ["odb"] }, "application/vnd.oasis.opendocument.formula": { "source": "iana", "extensions": ["odf"] }, "application/vnd.oasis.opendocument.formula-template": { "source": "iana", "extensions": ["odft"] }, "application/vnd.oasis.opendocument.graphics": { "source": "iana", "compressible": false, "extensions": ["odg"] }, "application/vnd.oasis.opendocument.graphics-template": { "source": "iana", "extensions": ["otg"] }, "application/vnd.oasis.opendocument.image": { "source": "iana", "extensions": ["odi"] }, "application/vnd.oasis.opendocument.image-template": { "source": "iana", "extensions": ["oti"] }, "application/vnd.oasis.opendocument.presentation": { "source": "iana", "compressible": false, "extensions": ["odp"] }, "application/vnd.oasis.opendocument.presentation-template": { "source": "iana", "extensions": ["otp"] }, "application/vnd.oasis.opendocument.spreadsheet": { "source": "iana", "compressible": false, "extensions": ["ods"] }, "application/vnd.oasis.opendocument.spreadsheet-template": { "source": "iana", "extensions": ["ots"] }, "application/vnd.oasis.opendocument.text": { "source": "iana", "compressible": false, "extensions": ["odt"] }, "application/vnd.oasis.opendocument.text-master": { "source": "iana", "extensions": ["odm"] }, "application/vnd.oasis.opendocument.text-template": { "source": "iana", "extensions": ["ott"] }, "application/vnd.oasis.opendocument.text-web": { "source": "iana", "extensions": ["oth"] }, "application/vnd.obn": { "source": "iana" }, "application/vnd.ocf+cbor": { "source": "iana" }, "application/vnd.oftn.l10n+json": { "source": "iana", "compressible": true }, "application/vnd.oipf.contentaccessdownload+xml": { "source": "iana" }, "application/vnd.oipf.contentaccessstreaming+xml": { "source": "iana" }, "application/vnd.oipf.cspg-hexbinary": { "source": "iana" }, "application/vnd.oipf.dae.svg+xml": { "source": "iana" }, "application/vnd.oipf.dae.xhtml+xml": { "source": "iana" }, "application/vnd.oipf.mippvcontrolmessage+xml": { "source": "iana" }, "application/vnd.oipf.pae.gem": { "source": "iana" }, "application/vnd.oipf.spdiscovery+xml": { "source": "iana" }, "application/vnd.oipf.spdlist+xml": { "source": "iana" }, "application/vnd.oipf.ueprofile+xml": { "source": "iana" }, "application/vnd.oipf.userprofile+xml": { "source": "iana" }, "application/vnd.olpc-sugar": { "source": "iana", "extensions": ["xo"] }, "application/vnd.oma-scws-config": { "source": "iana" }, "application/vnd.oma-scws-http-request": { "source": "iana" }, "application/vnd.oma-scws-http-response": { "source": "iana" }, "application/vnd.oma.bcast.associated-procedure-parameter+xml": { "source": "iana" }, "application/vnd.oma.bcast.drm-trigger+xml": { "source": "iana" }, "application/vnd.oma.bcast.imd+xml": { "source": "iana" }, "application/vnd.oma.bcast.ltkm": { "source": "iana" }, "application/vnd.oma.bcast.notification+xml": { "source": "iana" }, "application/vnd.oma.bcast.provisioningtrigger": { "source": "iana" }, "application/vnd.oma.bcast.sgboot": { "source": "iana" }, "application/vnd.oma.bcast.sgdd+xml": { "source": "iana" }, "application/vnd.oma.bcast.sgdu": { "source": "iana" }, "application/vnd.oma.bcast.simple-symbol-container": { "source": "iana" }, "application/vnd.oma.bcast.smartcard-trigger+xml": { "source": "iana" }, "application/vnd.oma.bcast.sprov+xml": { "source": "iana" }, "application/vnd.oma.bcast.stkm": { "source": "iana" }, "application/vnd.oma.cab-address-book+xml": { "source": "iana" }, "application/vnd.oma.cab-feature-handler+xml": { "source": "iana" }, "application/vnd.oma.cab-pcc+xml": { "source": "iana" }, "application/vnd.oma.cab-subs-invite+xml": { "source": "iana" }, "application/vnd.oma.cab-user-prefs+xml": { "source": "iana" }, "application/vnd.oma.dcd": { "source": "iana" }, "application/vnd.oma.dcdc": { "source": "iana" }, "application/vnd.oma.dd2+xml": { "source": "iana", "extensions": ["dd2"] }, "application/vnd.oma.drm.risd+xml": { "source": "iana" }, "application/vnd.oma.group-usage-list+xml": { "source": "iana" }, "application/vnd.oma.lwm2m+json": { "source": "iana", "compressible": true }, "application/vnd.oma.lwm2m+tlv": { "source": "iana" }, "application/vnd.oma.pal+xml": { "source": "iana" }, "application/vnd.oma.poc.detailed-progress-report+xml": { "source": "iana" }, "application/vnd.oma.poc.final-report+xml": { "source": "iana" }, "application/vnd.oma.poc.groups+xml": { "source": "iana" }, "application/vnd.oma.poc.invocation-descriptor+xml": { "source": "iana" }, "application/vnd.oma.poc.optimized-progress-report+xml": { "source": "iana" }, "application/vnd.oma.push": { "source": "iana" }, "application/vnd.oma.scidm.messages+xml": { "source": "iana" }, "application/vnd.oma.xcap-directory+xml": { "source": "iana" }, "application/vnd.omads-email+xml": { "source": "iana" }, "application/vnd.omads-file+xml": { "source": "iana" }, "application/vnd.omads-folder+xml": { "source": "iana" }, "application/vnd.omaloc-supl-init": { "source": "iana" }, "application/vnd.onepager": { "source": "iana" }, "application/vnd.onepagertamp": { "source": "iana" }, "application/vnd.onepagertamx": { "source": "iana" }, "application/vnd.onepagertat": { "source": "iana" }, "application/vnd.onepagertatp": { "source": "iana" }, "application/vnd.onepagertatx": { "source": "iana" }, "application/vnd.openblox.game+xml": { "source": "iana" }, "application/vnd.openblox.game-binary": { "source": "iana" }, "application/vnd.openeye.oeb": { "source": "iana" }, "application/vnd.openofficeorg.extension": { "source": "apache", "extensions": ["oxt"] }, "application/vnd.openstreetmap.data+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.custom-properties+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.customxmlproperties+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.drawing+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.drawingml.chart+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.extended-properties+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml-template": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.comments+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.presentation": { "source": "iana", "compressible": false, "extensions": ["pptx"] }, "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.presprops+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.slide": { "source": "iana", "extensions": ["sldx"] }, "application/vnd.openxmlformats-officedocument.presentationml.slide+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.slideshow": { "source": "iana", "extensions": ["ppsx"] }, "application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.tags+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.template": { "source": "apache", "extensions": ["potx"] }, "application/vnd.openxmlformats-officedocument.presentationml.template.main+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml-template": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": { "source": "iana", "compressible": false, "extensions": ["xlsx"] }, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.template": { "source": "apache", "extensions": ["xltx"] }, "application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.theme+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.themeoverride+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.vmldrawing": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml-template": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.document": { "source": "iana", "compressible": false, "extensions": ["docx"] }, "application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.template": { "source": "apache", "extensions": ["dotx"] }, "application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml": { "source": "iana" }, "application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml": { "source": "iana" }, "application/vnd.openxmlformats-package.core-properties+xml": { "source": "iana" }, "application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml": { "source": "iana" }, "application/vnd.openxmlformats-package.relationships+xml": { "source": "iana" }, "application/vnd.oracle.resource+json": { "source": "iana", "compressible": true }, "application/vnd.orange.indata": { "source": "iana" }, "application/vnd.osa.netdeploy": { "source": "iana" }, "application/vnd.osgeo.mapguide.package": { "source": "iana", "extensions": ["mgp"] }, "application/vnd.osgi.bundle": { "source": "iana" }, "application/vnd.osgi.dp": { "source": "iana", "extensions": ["dp"] }, "application/vnd.osgi.subsystem": { "source": "iana", "extensions": ["esa"] }, "application/vnd.otps.ct-kip+xml": { "source": "iana" }, "application/vnd.oxli.countgraph": { "source": "iana" }, "application/vnd.pagerduty+json": { "source": "iana", "compressible": true }, "application/vnd.palm": { "source": "iana", "extensions": ["pdb","pqa","oprc"] }, "application/vnd.panoply": { "source": "iana" }, "application/vnd.paos+xml": { "source": "iana" }, "application/vnd.paos.xml": { "source": "apache" }, "application/vnd.pawaafile": { "source": "iana", "extensions": ["paw"] }, "application/vnd.pcos": { "source": "iana" }, "application/vnd.pg.format": { "source": "iana", "extensions": ["str"] }, "application/vnd.pg.osasli": { "source": "iana", "extensions": ["ei6"] }, "application/vnd.piaccess.application-licence": { "source": "iana" }, "application/vnd.picsel": { "source": "iana", "extensions": ["efif"] }, "application/vnd.pmi.widget": { "source": "iana", "extensions": ["wg"] }, "application/vnd.poc.group-advertisement+xml": { "source": "iana" }, "application/vnd.pocketlearn": { "source": "iana", "extensions": ["plf"] }, "application/vnd.powerbuilder6": { "source": "iana", "extensions": ["pbd"] }, "application/vnd.powerbuilder6-s": { "source": "iana" }, "application/vnd.powerbuilder7": { "source": "iana" }, "application/vnd.powerbuilder7-s": { "source": "iana" }, "application/vnd.powerbuilder75": { "source": "iana" }, "application/vnd.powerbuilder75-s": { "source": "iana" }, "application/vnd.preminet": { "source": "iana" }, "application/vnd.previewsystems.box": { "source": "iana", "extensions": ["box"] }, "application/vnd.proteus.magazine": { "source": "iana", "extensions": ["mgz"] }, "application/vnd.publishare-delta-tree": { "source": "iana", "extensions": ["qps"] }, "application/vnd.pvi.ptid1": { "source": "iana", "extensions": ["ptid"] }, "application/vnd.pwg-multiplexed": { "source": "iana" }, "application/vnd.pwg-xhtml-print+xml": { "source": "iana" }, "application/vnd.qualcomm.brew-app-res": { "source": "iana" }, "application/vnd.quarantainenet": { "source": "iana" }, "application/vnd.quark.quarkxpress": { "source": "iana", "extensions": ["qxd","qxt","qwd","qwt","qxl","qxb"] }, "application/vnd.quobject-quoxdocument": { "source": "iana" }, "application/vnd.radisys.moml+xml": { "source": "iana" }, "application/vnd.radisys.msml+xml": { "source": "iana" }, "application/vnd.radisys.msml-audit+xml": { "source": "iana" }, "application/vnd.radisys.msml-audit-conf+xml": { "source": "iana" }, "application/vnd.radisys.msml-audit-conn+xml": { "source": "iana" }, "application/vnd.radisys.msml-audit-dialog+xml": { "source": "iana" }, "application/vnd.radisys.msml-audit-stream+xml": { "source": "iana" }, "application/vnd.radisys.msml-conf+xml": { "source": "iana" }, "application/vnd.radisys.msml-dialog+xml": { "source": "iana" }, "application/vnd.radisys.msml-dialog-base+xml": { "source": "iana" }, "application/vnd.radisys.msml-dialog-fax-detect+xml": { "source": "iana" }, "application/vnd.radisys.msml-dialog-fax-sendrecv+xml": { "source": "iana" }, "application/vnd.radisys.msml-dialog-group+xml": { "source": "iana" }, "application/vnd.radisys.msml-dialog-speech+xml": { "source": "iana" }, "application/vnd.radisys.msml-dialog-transform+xml": { "source": "iana" }, "application/vnd.rainstor.data": { "source": "iana" }, "application/vnd.rapid": { "source": "iana" }, "application/vnd.rar": { "source": "iana" }, "application/vnd.realvnc.bed": { "source": "iana", "extensions": ["bed"] }, "application/vnd.recordare.musicxml": { "source": "iana", "extensions": ["mxl"] }, "application/vnd.recordare.musicxml+xml": { "source": "iana", "extensions": ["musicxml"] }, "application/vnd.renlearn.rlprint": { "source": "iana" }, "application/vnd.rig.cryptonote": { "source": "iana", "extensions": ["cryptonote"] }, "application/vnd.rim.cod": { "source": "apache", "extensions": ["cod"] }, "application/vnd.rn-realmedia": { "source": "apache", "extensions": ["rm"] }, "application/vnd.rn-realmedia-vbr": { "source": "apache", "extensions": ["rmvb"] }, "application/vnd.route66.link66+xml": { "source": "iana", "extensions": ["link66"] }, "application/vnd.rs-274x": { "source": "iana" }, "application/vnd.ruckus.download": { "source": "iana" }, "application/vnd.s3sms": { "source": "iana" }, "application/vnd.sailingtracker.track": { "source": "iana", "extensions": ["st"] }, "application/vnd.sbm.cid": { "source": "iana" }, "application/vnd.sbm.mid2": { "source": "iana" }, "application/vnd.scribus": { "source": "iana" }, "application/vnd.sealed.3df": { "source": "iana" }, "application/vnd.sealed.csf": { "source": "iana" }, "application/vnd.sealed.doc": { "source": "iana" }, "application/vnd.sealed.eml": { "source": "iana" }, "application/vnd.sealed.mht": { "source": "iana" }, "application/vnd.sealed.net": { "source": "iana" }, "application/vnd.sealed.ppt": { "source": "iana" }, "application/vnd.sealed.tiff": { "source": "iana" }, "application/vnd.sealed.xls": { "source": "iana" }, "application/vnd.sealedmedia.softseal.html": { "source": "iana" }, "application/vnd.sealedmedia.softseal.pdf": { "source": "iana" }, "application/vnd.seemail": { "source": "iana", "extensions": ["see"] }, "application/vnd.sema": { "source": "iana", "extensions": ["sema"] }, "application/vnd.semd": { "source": "iana", "extensions": ["semd"] }, "application/vnd.semf": { "source": "iana", "extensions": ["semf"] }, "application/vnd.shana.informed.formdata": { "source": "iana", "extensions": ["ifm"] }, "application/vnd.shana.informed.formtemplate": { "source": "iana", "extensions": ["itp"] }, "application/vnd.shana.informed.interchange": { "source": "iana", "extensions": ["iif"] }, "application/vnd.shana.informed.package": { "source": "iana", "extensions": ["ipk"] }, "application/vnd.sigrok.session": { "source": "iana" }, "application/vnd.simtech-mindmapper": { "source": "iana", "extensions": ["twd","twds"] }, "application/vnd.siren+json": { "source": "iana", "compressible": true }, "application/vnd.smaf": { "source": "iana", "extensions": ["mmf"] }, "application/vnd.smart.notebook": { "source": "iana" }, "application/vnd.smart.teacher": { "source": "iana", "extensions": ["teacher"] }, "application/vnd.software602.filler.form+xml": { "source": "iana" }, "application/vnd.software602.filler.form-xml-zip": { "source": "iana" }, "application/vnd.solent.sdkm+xml": { "source": "iana", "extensions": ["sdkm","sdkd"] }, "application/vnd.spotfire.dxp": { "source": "iana", "extensions": ["dxp"] }, "application/vnd.spotfire.sfs": { "source": "iana", "extensions": ["sfs"] }, "application/vnd.sss-cod": { "source": "iana" }, "application/vnd.sss-dtf": { "source": "iana" }, "application/vnd.sss-ntf": { "source": "iana" }, "application/vnd.stardivision.calc": { "source": "apache", "extensions": ["sdc"] }, "application/vnd.stardivision.draw": { "source": "apache", "extensions": ["sda"] }, "application/vnd.stardivision.impress": { "source": "apache", "extensions": ["sdd"] }, "application/vnd.stardivision.math": { "source": "apache", "extensions": ["smf"] }, "application/vnd.stardivision.writer": { "source": "apache", "extensions": ["sdw","vor"] }, "application/vnd.stardivision.writer-global": { "source": "apache", "extensions": ["sgl"] }, "application/vnd.stepmania.package": { "source": "iana", "extensions": ["smzip"] }, "application/vnd.stepmania.stepchart": { "source": "iana", "extensions": ["sm"] }, "application/vnd.street-stream": { "source": "iana" }, "application/vnd.sun.wadl+xml": { "source": "iana", "compressible": true, "extensions": ["wadl"] }, "application/vnd.sun.xml.calc": { "source": "apache", "extensions": ["sxc"] }, "application/vnd.sun.xml.calc.template": { "source": "apache", "extensions": ["stc"] }, "application/vnd.sun.xml.draw": { "source": "apache", "extensions": ["sxd"] }, "application/vnd.sun.xml.draw.template": { "source": "apache", "extensions": ["std"] }, "application/vnd.sun.xml.impress": { "source": "apache", "extensions": ["sxi"] }, "application/vnd.sun.xml.impress.template": { "source": "apache", "extensions": ["sti"] }, "application/vnd.sun.xml.math": { "source": "apache", "extensions": ["sxm"] }, "application/vnd.sun.xml.writer": { "source": "apache", "extensions": ["sxw"] }, "application/vnd.sun.xml.writer.global": { "source": "apache", "extensions": ["sxg"] }, "application/vnd.sun.xml.writer.template": { "source": "apache", "extensions": ["stw"] }, "application/vnd.sus-calendar": { "source": "iana", "extensions": ["sus","susp"] }, "application/vnd.svd": { "source": "iana", "extensions": ["svd"] }, "application/vnd.swiftview-ics": { "source": "iana" }, "application/vnd.symbian.install": { "source": "apache", "extensions": ["sis","sisx"] }, "application/vnd.syncml+xml": { "source": "iana", "extensions": ["xsm"] }, "application/vnd.syncml.dm+wbxml": { "source": "iana", "extensions": ["bdm"] }, "application/vnd.syncml.dm+xml": { "source": "iana", "extensions": ["xdm"] }, "application/vnd.syncml.dm.notification": { "source": "iana" }, "application/vnd.syncml.dmddf+wbxml": { "source": "iana" }, "application/vnd.syncml.dmddf+xml": { "source": "iana" }, "application/vnd.syncml.dmtnds+wbxml": { "source": "iana" }, "application/vnd.syncml.dmtnds+xml": { "source": "iana" }, "application/vnd.syncml.ds.notification": { "source": "iana" }, "application/vnd.tableschema+json": { "source": "iana", "compressible": true }, "application/vnd.tao.intent-module-archive": { "source": "iana", "extensions": ["tao"] }, "application/vnd.tcpdump.pcap": { "source": "iana", "extensions": ["pcap","cap","dmp"] }, "application/vnd.tmd.mediaflex.api+xml": { "source": "iana" }, "application/vnd.tml": { "source": "iana" }, "application/vnd.tmobile-livetv": { "source": "iana", "extensions": ["tmo"] }, "application/vnd.tri.onesource": { "source": "iana" }, "application/vnd.trid.tpt": { "source": "iana", "extensions": ["tpt"] }, "application/vnd.triscape.mxs": { "source": "iana", "extensions": ["mxs"] }, "application/vnd.trueapp": { "source": "iana", "extensions": ["tra"] }, "application/vnd.truedoc": { "source": "iana" }, "application/vnd.ubisoft.webplayer": { "source": "iana" }, "application/vnd.ufdl": { "source": "iana", "extensions": ["ufd","ufdl"] }, "application/vnd.uiq.theme": { "source": "iana", "extensions": ["utz"] }, "application/vnd.umajin": { "source": "iana", "extensions": ["umj"] }, "application/vnd.unity": { "source": "iana", "extensions": ["unityweb"] }, "application/vnd.uoml+xml": { "source": "iana", "extensions": ["uoml"] }, "application/vnd.uplanet.alert": { "source": "iana" }, "application/vnd.uplanet.alert-wbxml": { "source": "iana" }, "application/vnd.uplanet.bearer-choice": { "source": "iana" }, "application/vnd.uplanet.bearer-choice-wbxml": { "source": "iana" }, "application/vnd.uplanet.cacheop": { "source": "iana" }, "application/vnd.uplanet.cacheop-wbxml": { "source": "iana" }, "application/vnd.uplanet.channel": { "source": "iana" }, "application/vnd.uplanet.channel-wbxml": { "source": "iana" }, "application/vnd.uplanet.list": { "source": "iana" }, "application/vnd.uplanet.list-wbxml": { "source": "iana" }, "application/vnd.uplanet.listcmd": { "source": "iana" }, "application/vnd.uplanet.listcmd-wbxml": { "source": "iana" }, "application/vnd.uplanet.signal": { "source": "iana" }, "application/vnd.uri-map": { "source": "iana" }, "application/vnd.valve.source.material": { "source": "iana" }, "application/vnd.vcx": { "source": "iana", "extensions": ["vcx"] }, "application/vnd.vd-study": { "source": "iana" }, "application/vnd.vectorworks": { "source": "iana" }, "application/vnd.vel+json": { "source": "iana", "compressible": true }, "application/vnd.verimatrix.vcas": { "source": "iana" }, "application/vnd.vidsoft.vidconference": { "source": "iana" }, "application/vnd.visio": { "source": "iana", "extensions": ["vsd","vst","vss","vsw"] }, "application/vnd.visionary": { "source": "iana", "extensions": ["vis"] }, "application/vnd.vividence.scriptfile": { "source": "iana" }, "application/vnd.vsf": { "source": "iana", "extensions": ["vsf"] }, "application/vnd.wap.sic": { "source": "iana" }, "application/vnd.wap.slc": { "source": "iana" }, "application/vnd.wap.wbxml": { "source": "iana", "extensions": ["wbxml"] }, "application/vnd.wap.wmlc": { "source": "iana", "extensions": ["wmlc"] }, "application/vnd.wap.wmlscriptc": { "source": "iana", "extensions": ["wmlsc"] }, "application/vnd.webturbo": { "source": "iana", "extensions": ["wtb"] }, "application/vnd.wfa.p2p": { "source": "iana" }, "application/vnd.wfa.wsc": { "source": "iana" }, "application/vnd.windows.devicepairing": { "source": "iana" }, "application/vnd.wmc": { "source": "iana" }, "application/vnd.wmf.bootstrap": { "source": "iana" }, "application/vnd.wolfram.mathematica": { "source": "iana" }, "application/vnd.wolfram.mathematica.package": { "source": "iana" }, "application/vnd.wolfram.player": { "source": "iana", "extensions": ["nbp"] }, "application/vnd.wordperfect": { "source": "iana", "extensions": ["wpd"] }, "application/vnd.wqd": { "source": "iana", "extensions": ["wqd"] }, "application/vnd.wrq-hp3000-labelled": { "source": "iana" }, "application/vnd.wt.stf": { "source": "iana", "extensions": ["stf"] }, "application/vnd.wv.csp+wbxml": { "source": "iana" }, "application/vnd.wv.csp+xml": { "source": "iana" }, "application/vnd.wv.ssp+xml": { "source": "iana" }, "application/vnd.xacml+json": { "source": "iana", "compressible": true }, "application/vnd.xara": { "source": "iana", "extensions": ["xar"] }, "application/vnd.xfdl": { "source": "iana", "extensions": ["xfdl"] }, "application/vnd.xfdl.webform": { "source": "iana" }, "application/vnd.xmi+xml": { "source": "iana" }, "application/vnd.xmpie.cpkg": { "source": "iana" }, "application/vnd.xmpie.dpkg": { "source": "iana" }, "application/vnd.xmpie.plan": { "source": "iana" }, "application/vnd.xmpie.ppkg": { "source": "iana" }, "application/vnd.xmpie.xlim": { "source": "iana" }, "application/vnd.yamaha.hv-dic": { "source": "iana", "extensions": ["hvd"] }, "application/vnd.yamaha.hv-script": { "source": "iana", "extensions": ["hvs"] }, "application/vnd.yamaha.hv-voice": { "source": "iana", "extensions": ["hvp"] }, "application/vnd.yamaha.openscoreformat": { "source": "iana", "extensions": ["osf"] }, "application/vnd.yamaha.openscoreformat.osfpvg+xml": { "source": "iana", "extensions": ["osfpvg"] }, "application/vnd.yamaha.remote-setup": { "source": "iana" }, "application/vnd.yamaha.smaf-audio": { "source": "iana", "extensions": ["saf"] }, "application/vnd.yamaha.smaf-phrase": { "source": "iana", "extensions": ["spf"] }, "application/vnd.yamaha.through-ngn": { "source": "iana" }, "application/vnd.yamaha.tunnel-udpencap": { "source": "iana" }, "application/vnd.yaoweme": { "source": "iana" }, "application/vnd.yellowriver-custom-menu": { "source": "iana", "extensions": ["cmp"] }, "application/vnd.zul": { "source": "iana", "extensions": ["zir","zirz"] }, "application/vnd.zzazz.deck+xml": { "source": "iana", "extensions": ["zaz"] }, "application/voicexml+xml": { "source": "iana", "extensions": ["vxml"] }, "application/vq-rtcpxr": { "source": "iana" }, "application/watcherinfo+xml": { "source": "iana" }, "application/whoispp-query": { "source": "iana" }, "application/whoispp-response": { "source": "iana" }, "application/widget": { "source": "iana", "extensions": ["wgt"] }, "application/winhlp": { "source": "apache", "extensions": ["hlp"] }, "application/wita": { "source": "iana" }, "application/wordperfect5.1": { "source": "iana" }, "application/wsdl+xml": { "source": "iana", "extensions": ["wsdl"] }, "application/wspolicy+xml": { "source": "iana", "extensions": ["wspolicy"] }, "application/x-7z-compressed": { "source": "apache", "compressible": false, "extensions": ["7z"] }, "application/x-abiword": { "source": "apache", "extensions": ["abw"] }, "application/x-ace-compressed": { "source": "apache", "extensions": ["ace"] }, "application/x-amf": { "source": "apache" }, "application/x-apple-diskimage": { "source": "apache", "extensions": ["dmg"] }, "application/x-authorware-bin": { "source": "apache", "extensions": ["aab","x32","u32","vox"] }, "application/x-authorware-map": { "source": "apache", "extensions": ["aam"] }, "application/x-authorware-seg": { "source": "apache", "extensions": ["aas"] }, "application/x-bcpio": { "source": "apache", "extensions": ["bcpio"] }, "application/x-bdoc": { "compressible": false, "extensions": ["bdoc"] }, "application/x-bittorrent": { "source": "apache", "extensions": ["torrent"] }, "application/x-blorb": { "source": "apache", "extensions": ["blb","blorb"] }, "application/x-bzip": { "source": "apache", "compressible": false, "extensions": ["bz"] }, "application/x-bzip2": { "source": "apache", "compressible": false, "extensions": ["bz2","boz"] }, "application/x-cbr": { "source": "apache", "extensions": ["cbr","cba","cbt","cbz","cb7"] }, "application/x-cdlink": { "source": "apache", "extensions": ["vcd"] }, "application/x-cfs-compressed": { "source": "apache", "extensions": ["cfs"] }, "application/x-chat": { "source": "apache", "extensions": ["chat"] }, "application/x-chess-pgn": { "source": "apache", "extensions": ["pgn"] }, "application/x-chrome-extension": { "extensions": ["crx"] }, "application/x-cocoa": { "source": "nginx", "extensions": ["cco"] }, "application/x-compress": { "source": "apache" }, "application/x-conference": { "source": "apache", "extensions": ["nsc"] }, "application/x-cpio": { "source": "apache", "extensions": ["cpio"] }, "application/x-csh": { "source": "apache", "extensions": ["csh"] }, "application/x-deb": { "compressible": false }, "application/x-debian-package": { "source": "apache", "extensions": ["deb","udeb"] }, "application/x-dgc-compressed": { "source": "apache", "extensions": ["dgc"] }, "application/x-director": { "source": "apache", "extensions": ["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"] }, "application/x-doom": { "source": "apache", "extensions": ["wad"] }, "application/x-dtbncx+xml": { "source": "apache", "extensions": ["ncx"] }, "application/x-dtbook+xml": { "source": "apache", "extensions": ["dtb"] }, "application/x-dtbresource+xml": { "source": "apache", "extensions": ["res"] }, "application/x-dvi": { "source": "apache", "compressible": false, "extensions": ["dvi"] }, "application/x-envoy": { "source": "apache", "extensions": ["evy"] }, "application/x-eva": { "source": "apache", "extensions": ["eva"] }, "application/x-font-bdf": { "source": "apache", "extensions": ["bdf"] }, "application/x-font-dos": { "source": "apache" }, "application/x-font-framemaker": { "source": "apache" }, "application/x-font-ghostscript": { "source": "apache", "extensions": ["gsf"] }, "application/x-font-libgrx": { "source": "apache" }, "application/x-font-linux-psf": { "source": "apache", "extensions": ["psf"] }, "application/x-font-otf": { "source": "apache", "compressible": true, "extensions": ["otf"] }, "application/x-font-pcf": { "source": "apache", "extensions": ["pcf"] }, "application/x-font-snf": { "source": "apache", "extensions": ["snf"] }, "application/x-font-speedo": { "source": "apache" }, "application/x-font-sunos-news": { "source": "apache" }, "application/x-font-ttf": { "source": "apache", "compressible": true, "extensions": ["ttf","ttc"] }, "application/x-font-type1": { "source": "apache", "extensions": ["pfa","pfb","pfm","afm"] }, "application/x-font-vfont": { "source": "apache" }, "application/x-freearc": { "source": "apache", "extensions": ["arc"] }, "application/x-futuresplash": { "source": "apache", "extensions": ["spl"] }, "application/x-gca-compressed": { "source": "apache", "extensions": ["gca"] }, "application/x-glulx": { "source": "apache", "extensions": ["ulx"] }, "application/x-gnumeric": { "source": "apache", "extensions": ["gnumeric"] }, "application/x-gramps-xml": { "source": "apache", "extensions": ["gramps"] }, "application/x-gtar": { "source": "apache", "extensions": ["gtar"] }, "application/x-gzip": { "source": "apache" }, "application/x-hdf": { "source": "apache", "extensions": ["hdf"] }, "application/x-httpd-php": { "compressible": true, "extensions": ["php"] }, "application/x-install-instructions": { "source": "apache", "extensions": ["install"] }, "application/x-iso9660-image": { "source": "apache", "extensions": ["iso"] }, "application/x-java-archive-diff": { "source": "nginx", "extensions": ["jardiff"] }, "application/x-java-jnlp-file": { "source": "apache", "compressible": false, "extensions": ["jnlp"] }, "application/x-javascript": { "compressible": true }, "application/x-latex": { "source": "apache", "compressible": false, "extensions": ["latex"] }, "application/x-lua-bytecode": { "extensions": ["luac"] }, "application/x-lzh-compressed": { "source": "apache", "extensions": ["lzh","lha"] }, "application/x-makeself": { "source": "nginx", "extensions": ["run"] }, "application/x-mie": { "source": "apache", "extensions": ["mie"] }, "application/x-mobipocket-ebook": { "source": "apache", "extensions": ["prc","mobi"] }, "application/x-mpegurl": { "compressible": false }, "application/x-ms-application": { "source": "apache", "extensions": ["application"] }, "application/x-ms-shortcut": { "source": "apache", "extensions": ["lnk"] }, "application/x-ms-wmd": { "source": "apache", "extensions": ["wmd"] }, "application/x-ms-wmz": { "source": "apache", "extensions": ["wmz"] }, "application/x-ms-xbap": { "source": "apache", "extensions": ["xbap"] }, "application/x-msaccess": { "source": "apache", "extensions": ["mdb"] }, "application/x-msbinder": { "source": "apache", "extensions": ["obd"] }, "application/x-mscardfile": { "source": "apache", "extensions": ["crd"] }, "application/x-msclip": { "source": "apache", "extensions": ["clp"] }, "application/x-msdos-program": { "extensions": ["exe"] }, "application/x-msdownload": { "source": "apache", "extensions": ["exe","dll","com","bat","msi"] }, "application/x-msmediaview": { "source": "apache", "extensions": ["mvb","m13","m14"] }, "application/x-msmetafile": { "source": "apache", "extensions": ["wmf","wmz","emf","emz"] }, "application/x-msmoney": { "source": "apache", "extensions": ["mny"] }, "application/x-mspublisher": { "source": "apache", "extensions": ["pub"] }, "application/x-msschedule": { "source": "apache", "extensions": ["scd"] }, "application/x-msterminal": { "source": "apache", "extensions": ["trm"] }, "application/x-mswrite": { "source": "apache", "extensions": ["wri"] }, "application/x-netcdf": { "source": "apache", "extensions": ["nc","cdf"] }, "application/x-ns-proxy-autoconfig": { "compressible": true, "extensions": ["pac"] }, "application/x-nzb": { "source": "apache", "extensions": ["nzb"] }, "application/x-perl": { "source": "nginx", "extensions": ["pl","pm"] }, "application/x-pilot": { "source": "nginx", "extensions": ["prc","pdb"] }, "application/x-pkcs12": { "source": "apache", "compressible": false, "extensions": ["p12","pfx"] }, "application/x-pkcs7-certificates": { "source": "apache", "extensions": ["p7b","spc"] }, "application/x-pkcs7-certreqresp": { "source": "apache", "extensions": ["p7r"] }, "application/x-rar-compressed": { "source": "apache", "compressible": false, "extensions": ["rar"] }, "application/x-redhat-package-manager": { "source": "nginx", "extensions": ["rpm"] }, "application/x-research-info-systems": { "source": "apache", "extensions": ["ris"] }, "application/x-sea": { "source": "nginx", "extensions": ["sea"] }, "application/x-sh": { "source": "apache", "compressible": true, "extensions": ["sh"] }, "application/x-shar": { "source": "apache", "extensions": ["shar"] }, "application/x-shockwave-flash": { "source": "apache", "compressible": false, "extensions": ["swf"] }, "application/x-silverlight-app": { "source": "apache", "extensions": ["xap"] }, "application/x-sql": { "source": "apache", "extensions": ["sql"] }, "application/x-stuffit": { "source": "apache", "compressible": false, "extensions": ["sit"] }, "application/x-stuffitx": { "source": "apache", "extensions": ["sitx"] }, "application/x-subrip": { "source": "apache", "extensions": ["srt"] }, "application/x-sv4cpio": { "source": "apache", "extensions": ["sv4cpio"] }, "application/x-sv4crc": { "source": "apache", "extensions": ["sv4crc"] }, "application/x-t3vm-image": { "source": "apache", "extensions": ["t3"] }, "application/x-tads": { "source": "apache", "extensions": ["gam"] }, "application/x-tar": { "source": "apache", "compressible": true, "extensions": ["tar"] }, "application/x-tcl": { "source": "apache", "extensions": ["tcl","tk"] }, "application/x-tex": { "source": "apache", "extensions": ["tex"] }, "application/x-tex-tfm": { "source": "apache", "extensions": ["tfm"] }, "application/x-texinfo": { "source": "apache", "extensions": ["texinfo","texi"] }, "application/x-tgif": { "source": "apache", "extensions": ["obj"] }, "application/x-ustar": { "source": "apache", "extensions": ["ustar"] }, "application/x-wais-source": { "source": "apache", "extensions": ["src"] }, "application/x-web-app-manifest+json": { "compressible": true, "extensions": ["webapp"] }, "application/x-www-form-urlencoded": { "source": "iana", "compressible": true }, "application/x-x509-ca-cert": { "source": "apache", "extensions": ["der","crt","pem"] }, "application/x-xfig": { "source": "apache", "extensions": ["fig"] }, "application/x-xliff+xml": { "source": "apache", "extensions": ["xlf"] }, "application/x-xpinstall": { "source": "apache", "compressible": false, "extensions": ["xpi"] }, "application/x-xz": { "source": "apache", "extensions": ["xz"] }, "application/x-zmachine": { "source": "apache", "extensions": ["z1","z2","z3","z4","z5","z6","z7","z8"] }, "application/x400-bp": { "source": "iana" }, "application/xacml+xml": { "source": "iana" }, "application/xaml+xml": { "source": "apache", "extensions": ["xaml"] }, "application/xcap-att+xml": { "source": "iana" }, "application/xcap-caps+xml": { "source": "iana" }, "application/xcap-diff+xml": { "source": "iana", "extensions": ["xdf"] }, "application/xcap-el+xml": { "source": "iana" }, "application/xcap-error+xml": { "source": "iana" }, "application/xcap-ns+xml": { "source": "iana" }, "application/xcon-conference-info+xml": { "source": "iana" }, "application/xcon-conference-info-diff+xml": { "source": "iana" }, "application/xenc+xml": { "source": "iana", "extensions": ["xenc"] }, "application/xhtml+xml": { "source": "iana", "compressible": true, "extensions": ["xhtml","xht"] }, "application/xhtml-voice+xml": { "source": "apache" }, "application/xml": { "source": "iana", "compressible": true, "extensions": ["xml","xsl","xsd","rng"] }, "application/xml-dtd": { "source": "iana", "compressible": true, "extensions": ["dtd"] }, "application/xml-external-parsed-entity": { "source": "iana" }, "application/xml-patch+xml": { "source": "iana" }, "application/xmpp+xml": { "source": "iana" }, "application/xop+xml": { "source": "iana", "compressible": true, "extensions": ["xop"] }, "application/xproc+xml": { "source": "apache", "extensions": ["xpl"] }, "application/xslt+xml": { "source": "iana", "extensions": ["xslt"] }, "application/xspf+xml": { "source": "apache", "extensions": ["xspf"] }, "application/xv+xml": { "source": "iana", "extensions": ["mxml","xhvml","xvml","xvm"] }, "application/yang": { "source": "iana", "extensions": ["yang"] }, "application/yang-data+json": { "source": "iana", "compressible": true }, "application/yang-data+xml": { "source": "iana" }, "application/yang-patch+json": { "source": "iana", "compressible": true }, "application/yang-patch+xml": { "source": "iana" }, "application/yin+xml": { "source": "iana", "extensions": ["yin"] }, "application/zip": { "source": "iana", "compressible": false, "extensions": ["zip"] }, "application/zlib": { "source": "iana" }, "audio/1d-interleaved-parityfec": { "source": "iana" }, "audio/32kadpcm": { "source": "iana" }, "audio/3gpp": { "source": "iana", "compressible": false, "extensions": ["3gpp"] }, "audio/3gpp2": { "source": "iana" }, "audio/ac3": { "source": "iana" }, "audio/adpcm": { "source": "apache", "extensions": ["adp"] }, "audio/amr": { "source": "iana" }, "audio/amr-wb": { "source": "iana" }, "audio/amr-wb+": { "source": "iana" }, "audio/aptx": { "source": "iana" }, "audio/asc": { "source": "iana" }, "audio/atrac-advanced-lossless": { "source": "iana" }, "audio/atrac-x": { "source": "iana" }, "audio/atrac3": { "source": "iana" }, "audio/basic": { "source": "iana", "compressible": false, "extensions": ["au","snd"] }, "audio/bv16": { "source": "iana" }, "audio/bv32": { "source": "iana" }, "audio/clearmode": { "source": "iana" }, "audio/cn": { "source": "iana" }, "audio/dat12": { "source": "iana" }, "audio/dls": { "source": "iana" }, "audio/dsr-es201108": { "source": "iana" }, "audio/dsr-es202050": { "source": "iana" }, "audio/dsr-es202211": { "source": "iana" }, "audio/dsr-es202212": { "source": "iana" }, "audio/dv": { "source": "iana" }, "audio/dvi4": { "source": "iana" }, "audio/eac3": { "source": "iana" }, "audio/encaprtp": { "source": "iana" }, "audio/evrc": { "source": "iana" }, "audio/evrc-qcp": { "source": "iana" }, "audio/evrc0": { "source": "iana" }, "audio/evrc1": { "source": "iana" }, "audio/evrcb": { "source": "iana" }, "audio/evrcb0": { "source": "iana" }, "audio/evrcb1": { "source": "iana" }, "audio/evrcnw": { "source": "iana" }, "audio/evrcnw0": { "source": "iana" }, "audio/evrcnw1": { "source": "iana" }, "audio/evrcwb": { "source": "iana" }, "audio/evrcwb0": { "source": "iana" }, "audio/evrcwb1": { "source": "iana" }, "audio/evs": { "source": "iana" }, "audio/fwdred": { "source": "iana" }, "audio/g711-0": { "source": "iana" }, "audio/g719": { "source": "iana" }, "audio/g722": { "source": "iana" }, "audio/g7221": { "source": "iana" }, "audio/g723": { "source": "iana" }, "audio/g726-16": { "source": "iana" }, "audio/g726-24": { "source": "iana" }, "audio/g726-32": { "source": "iana" }, "audio/g726-40": { "source": "iana" }, "audio/g728": { "source": "iana" }, "audio/g729": { "source": "iana" }, "audio/g7291": { "source": "iana" }, "audio/g729d": { "source": "iana" }, "audio/g729e": { "source": "iana" }, "audio/gsm": { "source": "iana" }, "audio/gsm-efr": { "source": "iana" }, "audio/gsm-hr-08": { "source": "iana" }, "audio/ilbc": { "source": "iana" }, "audio/ip-mr_v2.5": { "source": "iana" }, "audio/isac": { "source": "apache" }, "audio/l16": { "source": "iana" }, "audio/l20": { "source": "iana" }, "audio/l24": { "source": "iana", "compressible": false }, "audio/l8": { "source": "iana" }, "audio/lpc": { "source": "iana" }, "audio/melp": { "source": "iana" }, "audio/melp1200": { "source": "iana" }, "audio/melp2400": { "source": "iana" }, "audio/melp600": { "source": "iana" }, "audio/midi": { "source": "apache", "extensions": ["mid","midi","kar","rmi"] }, "audio/mobile-xmf": { "source": "iana" }, "audio/mp3": { "compressible": false, "extensions": ["mp3"] }, "audio/mp4": { "source": "iana", "compressible": false, "extensions": ["m4a","mp4a"] }, "audio/mp4a-latm": { "source": "iana" }, "audio/mpa": { "source": "iana" }, "audio/mpa-robust": { "source": "iana" }, "audio/mpeg": { "source": "iana", "compressible": false, "extensions": ["mpga","mp2","mp2a","mp3","m2a","m3a"] }, "audio/mpeg4-generic": { "source": "iana" }, "audio/musepack": { "source": "apache" }, "audio/ogg": { "source": "iana", "compressible": false, "extensions": ["oga","ogg","spx"] }, "audio/opus": { "source": "iana" }, "audio/parityfec": { "source": "iana" }, "audio/pcma": { "source": "iana" }, "audio/pcma-wb": { "source": "iana" }, "audio/pcmu": { "source": "iana" }, "audio/pcmu-wb": { "source": "iana" }, "audio/prs.sid": { "source": "iana" }, "audio/qcelp": { "source": "iana" }, "audio/raptorfec": { "source": "iana" }, "audio/red": { "source": "iana" }, "audio/rtp-enc-aescm128": { "source": "iana" }, "audio/rtp-midi": { "source": "iana" }, "audio/rtploopback": { "source": "iana" }, "audio/rtx": { "source": "iana" }, "audio/s3m": { "source": "apache", "extensions": ["s3m"] }, "audio/silk": { "source": "apache", "extensions": ["sil"] }, "audio/smv": { "source": "iana" }, "audio/smv-qcp": { "source": "iana" }, "audio/smv0": { "source": "iana" }, "audio/sp-midi": { "source": "iana" }, "audio/speex": { "source": "iana" }, "audio/t140c": { "source": "iana" }, "audio/t38": { "source": "iana" }, "audio/telephone-event": { "source": "iana" }, "audio/tone": { "source": "iana" }, "audio/uemclip": { "source": "iana" }, "audio/ulpfec": { "source": "iana" }, "audio/vdvi": { "source": "iana" }, "audio/vmr-wb": { "source": "iana" }, "audio/vnd.3gpp.iufp": { "source": "iana" }, "audio/vnd.4sb": { "source": "iana" }, "audio/vnd.audiokoz": { "source": "iana" }, "audio/vnd.celp": { "source": "iana" }, "audio/vnd.cisco.nse": { "source": "iana" }, "audio/vnd.cmles.radio-events": { "source": "iana" }, "audio/vnd.cns.anp1": { "source": "iana" }, "audio/vnd.cns.inf1": { "source": "iana" }, "audio/vnd.dece.audio": { "source": "iana", "extensions": ["uva","uvva"] }, "audio/vnd.digital-winds": { "source": "iana", "extensions": ["eol"] }, "audio/vnd.dlna.adts": { "source": "iana" }, "audio/vnd.dolby.heaac.1": { "source": "iana" }, "audio/vnd.dolby.heaac.2": { "source": "iana" }, "audio/vnd.dolby.mlp": { "source": "iana" }, "audio/vnd.dolby.mps": { "source": "iana" }, "audio/vnd.dolby.pl2": { "source": "iana" }, "audio/vnd.dolby.pl2x": { "source": "iana" }, "audio/vnd.dolby.pl2z": { "source": "iana" }, "audio/vnd.dolby.pulse.1": { "source": "iana" }, "audio/vnd.dra": { "source": "iana", "extensions": ["dra"] }, "audio/vnd.dts": { "source": "iana", "extensions": ["dts"] }, "audio/vnd.dts.hd": { "source": "iana", "extensions": ["dtshd"] }, "audio/vnd.dvb.file": { "source": "iana" }, "audio/vnd.everad.plj": { "source": "iana" }, "audio/vnd.hns.audio": { "source": "iana" }, "audio/vnd.lucent.voice": { "source": "iana", "extensions": ["lvp"] }, "audio/vnd.ms-playready.media.pya": { "source": "iana", "extensions": ["pya"] }, "audio/vnd.nokia.mobile-xmf": { "source": "iana" }, "audio/vnd.nortel.vbk": { "source": "iana" }, "audio/vnd.nuera.ecelp4800": { "source": "iana", "extensions": ["ecelp4800"] }, "audio/vnd.nuera.ecelp7470": { "source": "iana", "extensions": ["ecelp7470"] }, "audio/vnd.nuera.ecelp9600": { "source": "iana", "extensions": ["ecelp9600"] }, "audio/vnd.octel.sbc": { "source": "iana" }, "audio/vnd.qcelp": { "source": "iana" }, "audio/vnd.rhetorex.32kadpcm": { "source": "iana" }, "audio/vnd.rip": { "source": "iana", "extensions": ["rip"] }, "audio/vnd.rn-realaudio": { "compressible": false }, "audio/vnd.sealedmedia.softseal.mpeg": { "source": "iana" }, "audio/vnd.vmx.cvsd": { "source": "iana" }, "audio/vnd.wave": { "compressible": false }, "audio/vorbis": { "source": "iana", "compressible": false }, "audio/vorbis-config": { "source": "iana" }, "audio/wav": { "compressible": false, "extensions": ["wav"] }, "audio/wave": { "compressible": false, "extensions": ["wav"] }, "audio/webm": { "source": "apache", "compressible": false, "extensions": ["weba"] }, "audio/x-aac": { "source": "apache", "compressible": false, "extensions": ["aac"] }, "audio/x-aiff": { "source": "apache", "extensions": ["aif","aiff","aifc"] }, "audio/x-caf": { "source": "apache", "compressible": false, "extensions": ["caf"] }, "audio/x-flac": { "source": "apache", "extensions": ["flac"] }, "audio/x-m4a": { "source": "nginx", "extensions": ["m4a"] }, "audio/x-matroska": { "source": "apache", "extensions": ["mka"] }, "audio/x-mpegurl": { "source": "apache", "extensions": ["m3u"] }, "audio/x-ms-wax": { "source": "apache", "extensions": ["wax"] }, "audio/x-ms-wma": { "source": "apache", "extensions": ["wma"] }, "audio/x-pn-realaudio": { "source": "apache", "extensions": ["ram","ra"] }, "audio/x-pn-realaudio-plugin": { "source": "apache", "extensions": ["rmp"] }, "audio/x-realaudio": { "source": "nginx", "extensions": ["ra"] }, "audio/x-tta": { "source": "apache" }, "audio/x-wav": { "source": "apache", "extensions": ["wav"] }, "audio/xm": { "source": "apache", "extensions": ["xm"] }, "chemical/x-cdx": { "source": "apache", "extensions": ["cdx"] }, "chemical/x-cif": { "source": "apache", "extensions": ["cif"] }, "chemical/x-cmdf": { "source": "apache", "extensions": ["cmdf"] }, "chemical/x-cml": { "source": "apache", "extensions": ["cml"] }, "chemical/x-csml": { "source": "apache", "extensions": ["csml"] }, "chemical/x-pdb": { "source": "apache" }, "chemical/x-xyz": { "source": "apache", "extensions": ["xyz"] }, "font/opentype": { "compressible": true, "extensions": ["otf"] }, "image/apng": { "compressible": false, "extensions": ["apng"] }, "image/bmp": { "source": "iana", "compressible": true, "extensions": ["bmp"] }, "image/cgm": { "source": "iana", "extensions": ["cgm"] }, "image/dicom-rle": { "source": "iana" }, "image/emf": { "source": "iana" }, "image/fits": { "source": "iana" }, "image/g3fax": { "source": "iana", "extensions": ["g3"] }, "image/gif": { "source": "iana", "compressible": false, "extensions": ["gif"] }, "image/ief": { "source": "iana", "extensions": ["ief"] }, "image/jls": { "source": "iana" }, "image/jp2": { "source": "iana" }, "image/jpeg": { "source": "iana", "compressible": false, "extensions": ["jpeg","jpg","jpe"] }, "image/jpm": { "source": "iana" }, "image/jpx": { "source": "iana" }, "image/ktx": { "source": "iana", "extensions": ["ktx"] }, "image/naplps": { "source": "iana" }, "image/pjpeg": { "compressible": false }, "image/png": { "source": "iana", "compressible": false, "extensions": ["png"] }, "image/prs.btif": { "source": "iana", "extensions": ["btif"] }, "image/prs.pti": { "source": "iana" }, "image/pwg-raster": { "source": "iana" }, "image/sgi": { "source": "apache", "extensions": ["sgi"] }, "image/svg+xml": { "source": "iana", "compressible": true, "extensions": ["svg","svgz"] }, "image/t38": { "source": "iana" }, "image/tiff": { "source": "iana", "compressible": false, "extensions": ["tiff","tif"] }, "image/tiff-fx": { "source": "iana" }, "image/vnd.adobe.photoshop": { "source": "iana", "compressible": true, "extensions": ["psd"] }, "image/vnd.airzip.accelerator.azv": { "source": "iana" }, "image/vnd.cns.inf2": { "source": "iana" }, "image/vnd.dece.graphic": { "source": "iana", "extensions": ["uvi","uvvi","uvg","uvvg"] }, "image/vnd.djvu": { "source": "iana", "extensions": ["djvu","djv"] }, "image/vnd.dvb.subtitle": { "source": "iana", "extensions": ["sub"] }, "image/vnd.dwg": { "source": "iana", "extensions": ["dwg"] }, "image/vnd.dxf": { "source": "iana", "extensions": ["dxf"] }, "image/vnd.fastbidsheet": { "source": "iana", "extensions": ["fbs"] }, "image/vnd.fpx": { "source": "iana", "extensions": ["fpx"] }, "image/vnd.fst": { "source": "iana", "extensions": ["fst"] }, "image/vnd.fujixerox.edmics-mmr": { "source": "iana", "extensions": ["mmr"] }, "image/vnd.fujixerox.edmics-rlc": { "source": "iana", "extensions": ["rlc"] }, "image/vnd.globalgraphics.pgb": { "source": "iana" }, "image/vnd.microsoft.icon": { "source": "iana" }, "image/vnd.mix": { "source": "iana" }, "image/vnd.mozilla.apng": { "source": "iana" }, "image/vnd.ms-modi": { "source": "iana", "extensions": ["mdi"] }, "image/vnd.ms-photo": { "source": "apache", "extensions": ["wdp"] }, "image/vnd.net-fpx": { "source": "iana", "extensions": ["npx"] }, "image/vnd.radiance": { "source": "iana" }, "image/vnd.sealed.png": { "source": "iana" }, "image/vnd.sealedmedia.softseal.gif": { "source": "iana" }, "image/vnd.sealedmedia.softseal.jpg": { "source": "iana" }, "image/vnd.svf": { "source": "iana" }, "image/vnd.tencent.tap": { "source": "iana" }, "image/vnd.valve.source.texture": { "source": "iana" }, "image/vnd.wap.wbmp": { "source": "iana", "extensions": ["wbmp"] }, "image/vnd.xiff": { "source": "iana", "extensions": ["xif"] }, "image/vnd.zbrush.pcx": { "source": "iana" }, "image/webp": { "source": "apache", "extensions": ["webp"] }, "image/wmf": { "source": "iana" }, "image/x-3ds": { "source": "apache", "extensions": ["3ds"] }, "image/x-cmu-raster": { "source": "apache", "extensions": ["ras"] }, "image/x-cmx": { "source": "apache", "extensions": ["cmx"] }, "image/x-freehand": { "source": "apache", "extensions": ["fh","fhc","fh4","fh5","fh7"] }, "image/x-icon": { "source": "apache", "compressible": true, "extensions": ["ico"] }, "image/x-jng": { "source": "nginx", "extensions": ["jng"] }, "image/x-mrsid-image": { "source": "apache", "extensions": ["sid"] }, "image/x-ms-bmp": { "source": "nginx", "compressible": true, "extensions": ["bmp"] }, "image/x-pcx": { "source": "apache", "extensions": ["pcx"] }, "image/x-pict": { "source": "apache", "extensions": ["pic","pct"] }, "image/x-portable-anymap": { "source": "apache", "extensions": ["pnm"] }, "image/x-portable-bitmap": { "source": "apache", "extensions": ["pbm"] }, "image/x-portable-graymap": { "source": "apache", "extensions": ["pgm"] }, "image/x-portable-pixmap": { "source": "apache", "extensions": ["ppm"] }, "image/x-rgb": { "source": "apache", "extensions": ["rgb"] }, "image/x-tga": { "source": "apache", "extensions": ["tga"] }, "image/x-xbitmap": { "source": "apache", "extensions": ["xbm"] }, "image/x-xcf": { "compressible": false }, "image/x-xpixmap": { "source": "apache", "extensions": ["xpm"] }, "image/x-xwindowdump": { "source": "apache", "extensions": ["xwd"] }, "message/cpim": { "source": "iana" }, "message/delivery-status": { "source": "iana" }, "message/disposition-notification": { "source": "iana" }, "message/external-body": { "source": "iana" }, "message/feedback-report": { "source": "iana" }, "message/global": { "source": "iana" }, "message/global-delivery-status": { "source": "iana" }, "message/global-disposition-notification": { "source": "iana" }, "message/global-headers": { "source": "iana" }, "message/http": { "source": "iana", "compressible": false }, "message/imdn+xml": { "source": "iana", "compressible": true }, "message/news": { "source": "iana" }, "message/partial": { "source": "iana", "compressible": false }, "message/rfc822": { "source": "iana", "compressible": true, "extensions": ["eml","mime"] }, "message/s-http": { "source": "iana" }, "message/sip": { "source": "iana" }, "message/sipfrag": { "source": "iana" }, "message/tracking-status": { "source": "iana" }, "message/vnd.si.simp": { "source": "iana" }, "message/vnd.wfa.wsc": { "source": "iana" }, "model/3mf": { "source": "iana" }, "model/gltf+json": { "source": "iana", "compressible": true }, "model/iges": { "source": "iana", "compressible": false, "extensions": ["igs","iges"] }, "model/mesh": { "source": "iana", "compressible": false, "extensions": ["msh","mesh","silo"] }, "model/vnd.collada+xml": { "source": "iana", "extensions": ["dae"] }, "model/vnd.dwf": { "source": "iana", "extensions": ["dwf"] }, "model/vnd.flatland.3dml": { "source": "iana" }, "model/vnd.gdl": { "source": "iana", "extensions": ["gdl"] }, "model/vnd.gs-gdl": { "source": "apache" }, "model/vnd.gs.gdl": { "source": "iana" }, "model/vnd.gtw": { "source": "iana", "extensions": ["gtw"] }, "model/vnd.moml+xml": { "source": "iana" }, "model/vnd.mts": { "source": "iana", "extensions": ["mts"] }, "model/vnd.opengex": { "source": "iana" }, "model/vnd.parasolid.transmit.binary": { "source": "iana" }, "model/vnd.parasolid.transmit.text": { "source": "iana" }, "model/vnd.rosette.annotated-data-model": { "source": "iana" }, "model/vnd.valve.source.compiled-map": { "source": "iana" }, "model/vnd.vtu": { "source": "iana", "extensions": ["vtu"] }, "model/vrml": { "source": "iana", "compressible": false, "extensions": ["wrl","vrml"] }, "model/x3d+binary": { "source": "apache", "compressible": false, "extensions": ["x3db","x3dbz"] }, "model/x3d+fastinfoset": { "source": "iana" }, "model/x3d+vrml": { "source": "apache", "compressible": false, "extensions": ["x3dv","x3dvz"] }, "model/x3d+xml": { "source": "iana", "compressible": true, "extensions": ["x3d","x3dz"] }, "model/x3d-vrml": { "source": "iana" }, "multipart/alternative": { "source": "iana", "compressible": false }, "multipart/appledouble": { "source": "iana" }, "multipart/byteranges": { "source": "iana" }, "multipart/digest": { "source": "iana" }, "multipart/encrypted": { "source": "iana", "compressible": false }, "multipart/form-data": { "source": "iana", "compressible": false }, "multipart/header-set": { "source": "iana" }, "multipart/mixed": { "source": "iana", "compressible": false }, "multipart/parallel": { "source": "iana" }, "multipart/related": { "source": "iana", "compressible": false }, "multipart/report": { "source": "iana" }, "multipart/signed": { "source": "iana", "compressible": false }, "multipart/vnd.bint.med-plus": { "source": "iana" }, "multipart/voice-message": { "source": "iana" }, "multipart/x-mixed-replace": { "source": "iana" }, "text/1d-interleaved-parityfec": { "source": "iana" }, "text/cache-manifest": { "source": "iana", "compressible": true, "extensions": ["appcache","manifest"] }, "text/calendar": { "source": "iana", "extensions": ["ics","ifb"] }, "text/calender": { "compressible": true }, "text/cmd": { "compressible": true }, "text/coffeescript": { "extensions": ["coffee","litcoffee"] }, "text/css": { "source": "iana", "charset": "UTF-8", "compressible": true, "extensions": ["css"] }, "text/csv": { "source": "iana", "compressible": true, "extensions": ["csv"] }, "text/csv-schema": { "source": "iana" }, "text/directory": { "source": "iana" }, "text/dns": { "source": "iana" }, "text/ecmascript": { "source": "iana" }, "text/encaprtp": { "source": "iana" }, "text/enriched": { "source": "iana" }, "text/fwdred": { "source": "iana" }, "text/grammar-ref-list": { "source": "iana" }, "text/hjson": { "extensions": ["hjson"] }, "text/html": { "source": "iana", "compressible": true, "extensions": ["html","htm","shtml"] }, "text/jade": { "extensions": ["jade"] }, "text/javascript": { "source": "iana", "compressible": true }, "text/jcr-cnd": { "source": "iana" }, "text/jsx": { "compressible": true, "extensions": ["jsx"] }, "text/less": { "extensions": ["less"] }, "text/markdown": { "source": "iana", "compressible": true, "extensions": ["markdown","md"] }, "text/mathml": { "source": "nginx", "extensions": ["mml"] }, "text/mizar": { "source": "iana" }, "text/n3": { "source": "iana", "compressible": true, "extensions": ["n3"] }, "text/parameters": { "source": "iana" }, "text/parityfec": { "source": "iana" }, "text/plain": { "source": "iana", "compressible": true, "extensions": ["txt","text","conf","def","list","log","in","ini"] }, "text/provenance-notation": { "source": "iana" }, "text/prs.fallenstein.rst": { "source": "iana" }, "text/prs.lines.tag": { "source": "iana", "extensions": ["dsc"] }, "text/prs.prop.logic": { "source": "iana" }, "text/raptorfec": { "source": "iana" }, "text/red": { "source": "iana" }, "text/rfc822-headers": { "source": "iana" }, "text/richtext": { "source": "iana", "compressible": true, "extensions": ["rtx"] }, "text/rtf": { "source": "iana", "compressible": true, "extensions": ["rtf"] }, "text/rtp-enc-aescm128": { "source": "iana" }, "text/rtploopback": { "source": "iana" }, "text/rtx": { "source": "iana" }, "text/sgml": { "source": "iana", "extensions": ["sgml","sgm"] }, "text/slim": { "extensions": ["slim","slm"] }, "text/strings": { "source": "iana" }, "text/stylus": { "extensions": ["stylus","styl"] }, "text/t140": { "source": "iana" }, "text/tab-separated-values": { "source": "iana", "compressible": true, "extensions": ["tsv"] }, "text/troff": { "source": "iana", "extensions": ["t","tr","roff","man","me","ms"] }, "text/turtle": { "source": "iana", "extensions": ["ttl"] }, "text/ulpfec": { "source": "iana" }, "text/uri-list": { "source": "iana", "compressible": true, "extensions": ["uri","uris","urls"] }, "text/vcard": { "source": "iana", "compressible": true, "extensions": ["vcard"] }, "text/vnd.a": { "source": "iana" }, "text/vnd.abc": { "source": "iana" }, "text/vnd.ascii-art": { "source": "iana" }, "text/vnd.curl": { "source": "iana", "extensions": ["curl"] }, "text/vnd.curl.dcurl": { "source": "apache", "extensions": ["dcurl"] }, "text/vnd.curl.mcurl": { "source": "apache", "extensions": ["mcurl"] }, "text/vnd.curl.scurl": { "source": "apache", "extensions": ["scurl"] }, "text/vnd.debian.copyright": { "source": "iana" }, "text/vnd.dmclientscript": { "source": "iana" }, "text/vnd.dvb.subtitle": { "source": "iana", "extensions": ["sub"] }, "text/vnd.esmertec.theme-descriptor": { "source": "iana" }, "text/vnd.fly": { "source": "iana", "extensions": ["fly"] }, "text/vnd.fmi.flexstor": { "source": "iana", "extensions": ["flx"] }, "text/vnd.graphviz": { "source": "iana", "extensions": ["gv"] }, "text/vnd.in3d.3dml": { "source": "iana", "extensions": ["3dml"] }, "text/vnd.in3d.spot": { "source": "iana", "extensions": ["spot"] }, "text/vnd.iptc.newsml": { "source": "iana" }, "text/vnd.iptc.nitf": { "source": "iana" }, "text/vnd.latex-z": { "source": "iana" }, "text/vnd.motorola.reflex": { "source": "iana" }, "text/vnd.ms-mediapackage": { "source": "iana" }, "text/vnd.net2phone.commcenter.command": { "source": "iana" }, "text/vnd.radisys.msml-basic-layout": { "source": "iana" }, "text/vnd.si.uricatalogue": { "source": "iana" }, "text/vnd.sun.j2me.app-descriptor": { "source": "iana", "extensions": ["jad"] }, "text/vnd.trolltech.linguist": { "source": "iana" }, "text/vnd.wap.si": { "source": "iana" }, "text/vnd.wap.sl": { "source": "iana" }, "text/vnd.wap.wml": { "source": "iana", "extensions": ["wml"] }, "text/vnd.wap.wmlscript": { "source": "iana", "extensions": ["wmls"] }, "text/vtt": { "charset": "UTF-8", "compressible": true, "extensions": ["vtt"] }, "text/x-asm": { "source": "apache", "extensions": ["s","asm"] }, "text/x-c": { "source": "apache", "extensions": ["c","cc","cxx","cpp","h","hh","dic"] }, "text/x-component": { "source": "nginx", "extensions": ["htc"] }, "text/x-fortran": { "source": "apache", "extensions": ["f","for","f77","f90"] }, "text/x-gwt-rpc": { "compressible": true }, "text/x-handlebars-template": { "extensions": ["hbs"] }, "text/x-java-source": { "source": "apache", "extensions": ["java"] }, "text/x-jquery-tmpl": { "compressible": true }, "text/x-lua": { "extensions": ["lua"] }, "text/x-markdown": { "compressible": true, "extensions": ["mkd"] }, "text/x-nfo": { "source": "apache", "extensions": ["nfo"] }, "text/x-opml": { "source": "apache", "extensions": ["opml"] }, "text/x-pascal": { "source": "apache", "extensions": ["p","pas"] }, "text/x-processing": { "compressible": true, "extensions": ["pde"] }, "text/x-sass": { "extensions": ["sass"] }, "text/x-scss": { "extensions": ["scss"] }, "text/x-setext": { "source": "apache", "extensions": ["etx"] }, "text/x-sfv": { "source": "apache", "extensions": ["sfv"] }, "text/x-suse-ymp": { "compressible": true, "extensions": ["ymp"] }, "text/x-uuencode": { "source": "apache", "extensions": ["uu"] }, "text/x-vcalendar": { "source": "apache", "extensions": ["vcs"] }, "text/x-vcard": { "source": "apache", "extensions": ["vcf"] }, "text/xml": { "source": "iana", "compressible": true, "extensions": ["xml"] }, "text/xml-external-parsed-entity": { "source": "iana" }, "text/yaml": { "extensions": ["yaml","yml"] }, "video/1d-interleaved-parityfec": { "source": "apache" }, "video/3gpp": { "source": "apache", "extensions": ["3gp","3gpp"] }, "video/3gpp-tt": { "source": "apache" }, "video/3gpp2": { "source": "apache", "extensions": ["3g2"] }, "video/bmpeg": { "source": "apache" }, "video/bt656": { "source": "apache" }, "video/celb": { "source": "apache" }, "video/dv": { "source": "apache" }, "video/encaprtp": { "source": "apache" }, "video/h261": { "source": "apache", "extensions": ["h261"] }, "video/h263": { "source": "apache", "extensions": ["h263"] }, "video/h263-1998": { "source": "apache" }, "video/h263-2000": { "source": "apache" }, "video/h264": { "source": "apache", "extensions": ["h264"] }, "video/h264-rcdo": { "source": "apache" }, "video/h264-svc": { "source": "apache" }, "video/h265": { "source": "apache" }, "video/iso.segment": { "source": "apache" }, "video/jpeg": { "source": "apache", "extensions": ["jpgv"] }, "video/jpeg2000": { "source": "apache" }, "video/jpm": { "source": "apache", "extensions": ["jpm","jpgm"] }, "video/mj2": { "source": "apache", "extensions": ["mj2","mjp2"] }, "video/mp1s": { "source": "apache" }, "video/mp2p": { "source": "apache" }, "video/mp2t": { "source": "apache", "extensions": ["ts"] }, "video/mp4": { "source": "apache", "compressible": false, "extensions": ["mp4","mp4v","mpg4"] }, "video/mp4v-es": { "source": "apache" }, "video/mpeg": { "source": "apache", "compressible": false, "extensions": ["mpeg","mpg","mpe","m1v","m2v"] }, "video/mpeg4-generic": { "source": "apache" }, "video/mpv": { "source": "apache" }, "video/nv": { "source": "apache" }, "video/ogg": { "source": "apache", "compressible": false, "extensions": ["ogv"] }, "video/parityfec": { "source": "apache" }, "video/pointer": { "source": "apache" }, "video/quicktime": { "source": "apache", "compressible": false, "extensions": ["qt","mov"] }, "video/raptorfec": { "source": "apache" }, "video/raw": { "source": "apache" }, "video/rtp-enc-aescm128": { "source": "apache" }, "video/rtploopback": { "source": "apache" }, "video/rtx": { "source": "apache" }, "video/smpte292m": { "source": "apache" }, "video/ulpfec": { "source": "apache" }, "video/vc1": { "source": "apache" }, "video/vnd.cctv": { "source": "apache" }, "video/vnd.dece.hd": { "source": "apache", "extensions": ["uvh","uvvh"] }, "video/vnd.dece.mobile": { "source": "apache", "extensions": ["uvm","uvvm"] }, "video/vnd.dece.mp4": { "source": "apache" }, "video/vnd.dece.pd": { "source": "apache", "extensions": ["uvp","uvvp"] }, "video/vnd.dece.sd": { "source": "apache", "extensions": ["uvs","uvvs"] }, "video/vnd.dece.video": { "source": "apache", "extensions": ["uvv","uvvv"] }, "video/vnd.directv.mpeg": { "source": "apache" }, "video/vnd.directv.mpeg-tts": { "source": "apache" }, "video/vnd.dlna.mpeg-tts": { "source": "apache" }, "video/vnd.dvb.file": { "source": "apache", "extensions": ["dvb"] }, "video/vnd.fvt": { "source": "apache", "extensions": ["fvt"] }, "video/vnd.hns.video": { "source": "apache" }, "video/vnd.iptvforum.1dparityfec-1010": { "source": "apache" }, "video/vnd.iptvforum.1dparityfec-2005": { "source": "apache" }, "video/vnd.iptvforum.2dparityfec-1010": { "source": "apache" }, "video/vnd.iptvforum.2dparityfec-2005": { "source": "apache" }, "video/vnd.iptvforum.ttsavc": { "source": "apache" }, "video/vnd.iptvforum.ttsmpeg2": { "source": "apache" }, "video/vnd.motorola.video": { "source": "apache" }, "video/vnd.motorola.videop": { "source": "apache" }, "video/vnd.mpegurl": { "source": "apache", "extensions": ["mxu","m4u"] }, "video/vnd.ms-playready.media.pyv": { "source": "apache", "extensions": ["pyv"] }, "video/vnd.nokia.interleaved-multimedia": { "source": "apache" }, "video/vnd.nokia.videovoip": { "source": "apache" }, "video/vnd.objectvideo": { "source": "apache" }, "video/vnd.radgamettools.bink": { "source": "apache" }, "video/vnd.radgamettools.smacker": { "source": "apache" }, "video/vnd.sealed.mpeg1": { "source": "apache" }, "video/vnd.sealed.mpeg4": { "source": "apache" }, "video/vnd.sealed.swf": { "source": "apache" }, "video/vnd.sealedmedia.softseal.mov": { "source": "apache" }, "video/vnd.uvvu.mp4": { "source": "apache", "extensions": ["uvu","uvvu"] }, "video/vnd.vivo": { "source": "apache", "extensions": ["viv"] }, "video/vp8": { "source": "apache" }, "video/webm": { "source": "apache", "compressible": false, "extensions": ["webm"] }, "video/x-f4v": { "source": "apache", "extensions": ["f4v"] }, "video/x-fli": { "source": "apache", "extensions": ["fli"] }, "video/x-flv": { "source": "apache", "compressible": false, "extensions": ["flv"] }, "video/x-m4v": { "source": "apache", "extensions": ["m4v"] }, "video/x-matroska": { "source": "apache", "compressible": false, "extensions": ["mkv","mk3d","mks"] }, "video/x-mng": { "source": "apache", "extensions": ["mng"] }, "video/x-ms-asf": { "source": "apache", "extensions": ["asf","asx"] }, "video/x-ms-vob": { "source": "apache", "extensions": ["vob"] }, "video/x-ms-wm": { "source": "apache", "extensions": ["wm"] }, "video/x-ms-wmv": { "source": "apache", "compressible": false, "extensions": ["wmv"] }, "video/x-ms-wmx": { "source": "apache", "extensions": ["wmx"] }, "video/x-ms-wvx": { "source": "apache", "extensions": ["wvx"] }, "video/x-msvideo": { "source": "apache", "extensions": ["avi"] }, "video/x-sgi-movie": { "source": "apache", "extensions": ["movie"] }, "video/x-smv": { "source": "apache", "extensions": ["smv"] }, "x-conference/x-cooltalk": { "source": "apache", "extensions": ["ice"] }, "x-shader/x-fragment": { "compressible": true }, "x-shader/x-vertex": { "compressible": true } }

node_modules/mime-db/HISTORY.md

1.29.0 / 2017-07-10 =================== * Add `application/fido.trusted-apps+json` * Add extension `.wadl` to `application/vnd.sun.wadl+xml` * Add new upstream MIME types * Add `UTF-8` as default charset for `text/css` 1.28.0 / 2017-05-14 =================== * Add new upstream MIME types * Add extension `.gz` to `application/gzip` * Update extensions `.md` and `.markdown` to be `text/markdown` 1.27.0 / 2017-03-16 =================== * Add new upstream MIME types * Add `image/apng` with extension `.apng` 1.26.0 / 2017-01-14 =================== * Add new upstream MIME types * Add extension `.geojson` to `application/geo+json` 1.25.0 / 2016-11-11 =================== * Add new upstream MIME types 1.24.0 / 2016-09-18 =================== * Add `audio/mp3` * Add new upstream MIME types 1.23.0 / 2016-05-01 =================== * Add new upstream MIME types * Add extension `.3gpp` to `audio/3gpp` 1.22.0 / 2016-02-15 =================== * Add `text/slim` * Add extension `.rng` to `application/xml` * Add new upstream MIME types * Fix extension of `application/dash+xml` to be `.mpd` * Update primary extension to `.m4a` for `audio/mp4` 1.21.0 / 2016-01-06 =================== * Add Google document types * Add new upstream MIME types 1.20.0 / 2015-11-10 =================== * Add `text/x-suse-ymp` * Add new upstream MIME types 1.19.0 / 2015-09-17 =================== * Add `application/vnd.apple.pkpass` * Add new upstream MIME types 1.18.0 / 2015-09-03 =================== * Add new upstream MIME types 1.17.0 / 2015-08-13 =================== * Add `application/x-msdos-program` * Add `audio/g711-0` * Add `image/vnd.mozilla.apng` * Add extension `.exe` to `application/x-msdos-program` 1.16.0 / 2015-07-29 =================== * Add `application/vnd.uri-map` 1.15.0 / 2015-07-13 =================== * Add `application/x-httpd-php` 1.14.0 / 2015-06-25 =================== * Add `application/scim+json` * Add `application/vnd.3gpp.ussd+xml` * Add `application/vnd.biopax.rdf+xml` * Add `text/x-processing` 1.13.0 / 2015-06-07 =================== * Add nginx as a source * Add `application/x-cocoa` * Add `application/x-java-archive-diff` * Add `application/x-makeself` * Add `application/x-perl` * Add `application/x-pilot` * Add `application/x-redhat-package-manager` * Add `application/x-sea` * Add `audio/x-m4a` * Add `audio/x-realaudio` * Add `image/x-jng` * Add `text/mathml` 1.12.0 / 2015-06-05 =================== * Add `application/bdoc` * Add `application/vnd.hyperdrive+json` * Add `application/x-bdoc` * Add extension `.rtf` to `text/rtf` 1.11.0 / 2015-05-31 =================== * Add `audio/wav` * Add `audio/wave` * Add extension `.litcoffee` to `text/coffeescript` * Add extension `.sfd-hdstx` to `application/vnd.hydrostatix.sof-data` * Add extension `.n-gage` to `application/vnd.nokia.n-gage.symbian.install` 1.10.0 / 2015-05-19 =================== * Add `application/vnd.balsamiq.bmpr` * Add `application/vnd.microsoft.portable-executable` * Add `application/x-ns-proxy-autoconfig` 1.9.1 / 2015-04-19 ================== * Remove `.json` extension from `application/manifest+json` - This is causing bugs downstream 1.9.0 / 2015-04-19 ================== * Add `application/manifest+json` * Add `application/vnd.micro+json` * Add `image/vnd.zbrush.pcx` * Add `image/x-ms-bmp` 1.8.0 / 2015-03-13 ================== * Add `application/vnd.citationstyles.style+xml` * Add `application/vnd.fastcopy-disk-image` * Add `application/vnd.gov.sk.xmldatacontainer+xml` * Add extension `.jsonld` to `application/ld+json` 1.7.0 / 2015-02-08 ================== * Add `application/vnd.gerber` * Add `application/vnd.msa-disk-image` 1.6.1 / 2015-02-05 ================== * Community extensions ownership transferred from `node-mime` 1.6.0 / 2015-01-29 ================== * Add `application/jose` * Add `application/jose+json` * Add `application/json-seq` * Add `application/jwk+json` * Add `application/jwk-set+json` * Add `application/jwt` * Add `application/rdap+json` * Add `application/vnd.gov.sk.e-form+xml` * Add `application/vnd.ims.imsccv1p3` 1.5.0 / 2014-12-30 ================== * Add `application/vnd.oracle.resource+json` * Fix various invalid MIME type entries - `application/mbox+xml` - `application/oscp-response` - `application/vwg-multiplexed` - `audio/g721` 1.4.0 / 2014-12-21 ================== * Add `application/vnd.ims.imsccv1p2` * Fix various invalid MIME type entries - `application/vnd-acucobol` - `application/vnd-curl` - `application/vnd-dart` - `application/vnd-dxr` - `application/vnd-fdf` - `application/vnd-mif` - `application/vnd-sema` - `application/vnd-wap-wmlc` - `application/vnd.adobe.flash-movie` - `application/vnd.dece-zip` - `application/vnd.dvb_service` - `application/vnd.micrografx-igx` - `application/vnd.sealed-doc` - `application/vnd.sealed-eml` - `application/vnd.sealed-mht` - `application/vnd.sealed-ppt` - `application/vnd.sealed-tiff` - `application/vnd.sealed-xls` - `application/vnd.sealedmedia.softseal-html` - `application/vnd.sealedmedia.softseal-pdf` - `application/vnd.wap-slc` - `application/vnd.wap-wbxml` - `audio/vnd.sealedmedia.softseal-mpeg` - `image/vnd-djvu` - `image/vnd-svf` - `image/vnd-wap-wbmp` - `image/vnd.sealed-png` - `image/vnd.sealedmedia.softseal-gif` - `image/vnd.sealedmedia.softseal-jpg` - `model/vnd-dwf` - `model/vnd.parasolid.transmit-binary` - `model/vnd.parasolid.transmit-text` - `text/vnd-a` - `text/vnd-curl` - `text/vnd.wap-wml` * Remove example template MIME types - `application/example` - `audio/example` - `image/example` - `message/example` - `model/example` - `multipart/example` - `text/example` - `video/example` 1.3.1 / 2014-12-16 ================== * Fix missing extensions - `application/json5` - `text/hjson` 1.3.0 / 2014-12-07 ================== * Add `application/a2l` * Add `application/aml` * Add `application/atfx` * Add `application/atxml` * Add `application/cdfx+xml` * Add `application/dii` * Add `application/json5` * Add `application/lxf` * Add `application/mf4` * Add `application/vnd.apache.thrift.compact` * Add `application/vnd.apache.thrift.json` * Add `application/vnd.coffeescript` * Add `application/vnd.enphase.envoy` * Add `application/vnd.ims.imsccv1p1` * Add `text/csv-schema` * Add `text/hjson` * Add `text/markdown` * Add `text/yaml` 1.2.0 / 2014-11-09 ================== * Add `application/cea` * Add `application/dit` * Add `application/vnd.gov.sk.e-form+zip` * Add `application/vnd.tmd.mediaflex.api+xml` * Type `application/epub+zip` is now IANA-registered 1.1.2 / 2014-10-23 ================== * Rebuild database for `application/x-www-form-urlencoded` change 1.1.1 / 2014-10-20 ================== * Mark `application/x-www-form-urlencoded` as compressible. 1.1.0 / 2014-09-28 ================== * Add `application/font-woff2` 1.0.3 / 2014-09-25 ================== * Fix engine requirement in package 1.0.2 / 2014-09-25 ================== * Add `application/coap-group+json` * Add `application/dcd` * Add `application/vnd.apache.thrift.binary` * Add `image/vnd.tencent.tap` * Mark all JSON-derived types as compressible * Update `text/vtt` data 1.0.1 / 2014-08-30 ================== * Fix extension ordering 1.0.0 / 2014-08-30 ================== * Add `application/atf` * Add `application/merge-patch+json` * Add `multipart/x-mixed-replace` * Add `source: 'apache'` metadata * Add `source: 'iana'` metadata * Remove badly-assumed charset data

node_modules/mime-db/index.js

/*! * mime-db * Copyright(c) 2014 Jonathan Ong * MIT Licensed */ /** * Module exports. */ module.exports = require('./db.json')

node_modules/mime-db/LICENSE

The MIT License (MIT) Copyright (c) 2014 Jonathan Ong [email protected] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/mime-db/package.json

{ "_args": [ [ { "raw": "mime-db@~1.29.0", "scope": null, "escapedName": "mime-db", "name": "mime-db", "rawSpec": "~1.29.0", "spec": ">=1.29.0 <1.30.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\mime-types" ] ], "_from": "mime-db@>=1.29.0 <1.30.0", "_id": "[email protected]", "_inCache": true, "_location": "/mime-db", "_nodeVersion": "6.10.3", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/mime-db-1.29.0.tgz_1499739590002_0.7720734812319279" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "3.10.10", "_phantomChildren": {}, "_requested": { "raw": "mime-db@~1.29.0", "scope": null, "escapedName": "mime-db", "name": "mime-db", "rawSpec": "~1.29.0", "spec": ">=1.29.0 <1.30.0", "type": "range" }, "_requiredBy": [ "/mime-types" ], "_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz", "_shasum": "48d26d235589651704ac5916ca06001914266878", "_shrinkwrap": null, "_spec": "mime-db@~1.29.0", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\mime-types", "bugs": { "url": "https://github.com/jshttp/mime-db/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" }, { "name": "Robert Kieffer", "email": "[email protected]", "url": "http://github.com/broofa" } ], "dependencies": {}, "description": "Media Type Database", "devDependencies": { "bluebird": "3.5.0", "co": "4.6.0", "cogent": "1.0.1", "csv-parse": "1.2.0", "eslint": "3.19.0", "eslint-config-standard": "10.2.1", "eslint-plugin-import": "2.2.0", "eslint-plugin-node": "4.2.2", "eslint-plugin-promise": "3.5.0", "eslint-plugin-standard": "3.0.1", "gnode": "0.1.2", "mocha": "1.21.5", "nyc": "11.0.3", "raw-body": "2.2.0", "stream-to-array": "2.3.0" }, "directories": {}, "dist": { "shasum": "48d26d235589651704ac5916ca06001914266878", "tarball": "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "HISTORY.md", "LICENSE", "README.md", "db.json", "index.js" ], "gitHead": "ee8f2459964025c3969a49b8f80c34b182d35e2f", "homepage": "https://github.com/jshttp/mime-db#readme", "keywords": [ "mime", "db", "type", "types", "database", "charset", "charsets" ], "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" }, { "name": "jongleberry", "email": "[email protected]" } ], "name": "mime-db", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/mime-db.git" }, "scripts": { "build": "node scripts/build", "fetch": "gnode scripts/fetch-apache && gnode scripts/fetch-iana && gnode scripts/fetch-nginx", "lint": "eslint .", "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "nyc --reporter=html --reporter=text npm test", "test-travis": "nyc --reporter=text npm test", "update": "npm run fetch && npm run build" }, "version": "1.29.0" }

node_modules/mime-db/README.md

# mime-db [![NPM Version][npm-version-image]][npm-url] [![NPM Downloads][npm-downloads-image]][npm-url] [![Node.js Version][node-image]][node-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] This is a database of all mime types. It consists of a single, public JSON file and does not include any logic, allowing it to remain as un-opinionated as possible with an API. It aggregates data from the following sources: - http://www.iana.org/assignments/media-types/media-types.xhtml - http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types - http://hg.nginx.org/nginx/raw-file/default/conf/mime.types ## Installation ```bash npm install mime-db ``` ### Database Download If you're crazy enough to use this in the browser, you can just grab the JSON file using [RawGit](https://rawgit.com/). It is recommended to replace `master` with [a release tag](https://github.com/jshttp/mime-db/tags) as the JSON format may change in the future. ``` https://cdn.rawgit.com/jshttp/mime-db/master/db.json ``` ## Usage ```js var db = require('mime-db'); // grab data on .js files var data = db['application/javascript']; ``` ## Data Structure The JSON file is a map lookup for lowercased mime types. Each mime type has the following properties: - `.source` - where the mime type is defined. If not set, it's probably a custom media type. - `apache` - [Apache common media types](http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types) - `iana` - [IANA-defined media types](http://www.iana.org/assignments/media-types/media-types.xhtml) - `nginx` - [nginx media types](http://hg.nginx.org/nginx/raw-file/default/conf/mime.types) - `.extensions[]` - known extensions associated with this mime type. - `.compressible` - whether a file of this type can be gzipped. - `.charset` - the default charset associated with this type, if any. If unknown, every property could be `undefined`. ## Contributing To edit the database, only make PRs against `src/custom.json` or `src/custom-suffix.json`. The `src/custom.json` file is a JSON object with the MIME type as the keys and the values being an object with the following keys: - `compressible` - leave out if you don't know, otherwise `true`/`false` for if the data represented by the time is typically compressible. - `extensions` - include an array of file extensions that are associated with the type. - `notes` - human-readable notes about the type, typically what the type is. - `sources` - include an array of URLs of where the MIME type and the associated extensions are sourced from. This needs to be a [primary source](https://en.wikipedia.org/wiki/Primary_source); links to type aggregating sites and Wikipedia are _not acceptible_. To update the build, run `npm run build`. ## Adding Custom Media Types The best way to get new media types included in this library is to register them with the IANA. The community registration procedure is outlined in [RFC 6838 section 5](http://tools.ietf.org/html/rfc6838#section-5). Types registered with the IANA are automatically pulled into this library. [npm-version-image]: https://img.shields.io/npm/v/mime-db.svg [npm-downloads-image]: https://img.shields.io/npm/dm/mime-db.svg [npm-url]: https://npmjs.org/package/mime-db [travis-image]: https://img.shields.io/travis/jshttp/mime-db/master.svg [travis-url]: https://travis-ci.org/jshttp/mime-db [coveralls-image]: https://img.shields.io/coveralls/jshttp/mime-db/master.svg [coveralls-url]: https://coveralls.io/r/jshttp/mime-db?branch=master [node-image]: https://img.shields.io/node/v/mime-db.svg [node-url]: http://nodejs.org/download/

node_modules/mime-types/HISTORY.md

2.1.16 / 2017-07-24 =================== * deps: mime-db@~1.29.0 - Add `application/fido.trusted-apps+json` - Add extension `.wadl` to `application/vnd.sun.wadl+xml` - Add extension `.gz` to `application/gzip` - Add new upstream MIME types - Update extensions `.md` and `.markdown` to be `text/markdown` 2.1.15 / 2017-03-23 =================== * deps: mime-db@~1.27.0 - Add new mime types - Add `image/apng` 2.1.14 / 2017-01-14 =================== * deps: mime-db@~1.26.0 - Add new mime types 2.1.13 / 2016-11-18 =================== * deps: mime-db@~1.25.0 - Add new mime types 2.1.12 / 2016-09-18 =================== * deps: mime-db@~1.24.0 - Add new mime types - Add `audio/mp3` 2.1.11 / 2016-05-01 =================== * deps: mime-db@~1.23.0 - Add new mime types 2.1.10 / 2016-02-15 =================== * deps: mime-db@~1.22.0 - Add new mime types - Fix extension of `application/dash+xml` - Update primary extension for `audio/mp4` 2.1.9 / 2016-01-06 ================== * deps: mime-db@~1.21.0 - Add new mime types 2.1.8 / 2015-11-30 ================== * deps: mime-db@~1.20.0 - Add new mime types 2.1.7 / 2015-09-20 ================== * deps: mime-db@~1.19.0 - Add new mime types 2.1.6 / 2015-09-03 ================== * deps: mime-db@~1.18.0 - Add new mime types 2.1.5 / 2015-08-20 ================== * deps: mime-db@~1.17.0 - Add new mime types 2.1.4 / 2015-07-30 ================== * deps: mime-db@~1.16.0 - Add new mime types 2.1.3 / 2015-07-13 ================== * deps: mime-db@~1.15.0 - Add new mime types 2.1.2 / 2015-06-25 ================== * deps: mime-db@~1.14.0 - Add new mime types 2.1.1 / 2015-06-08 ================== * perf: fix deopt during mapping 2.1.0 / 2015-06-07 ================== * Fix incorrectly treating extension-less file name as extension - i.e. `'path/to/json'` will no longer return `application/json` * Fix `.charset(type)` to accept parameters * Fix `.charset(type)` to match case-insensitive * Improve generation of extension to MIME mapping * Refactor internals for readability and no argument reassignment * Prefer `application/*` MIME types from the same source * Prefer any type over `application/octet-stream` * deps: mime-db@~1.13.0 - Add nginx as a source - Add new mime types 2.0.14 / 2015-06-06 =================== * deps: mime-db@~1.12.0 - Add new mime types 2.0.13 / 2015-05-31 =================== * deps: mime-db@~1.11.0 - Add new mime types 2.0.12 / 2015-05-19 =================== * deps: mime-db@~1.10.0 - Add new mime types 2.0.11 / 2015-05-05 =================== * deps: mime-db@~1.9.1 - Add new mime types 2.0.10 / 2015-03-13 =================== * deps: mime-db@~1.8.0 - Add new mime types 2.0.9 / 2015-02-09 ================== * deps: mime-db@~1.7.0 - Add new mime types - Community extensions ownership transferred from `node-mime` 2.0.8 / 2015-01-29 ================== * deps: mime-db@~1.6.0 - Add new mime types 2.0.7 / 2014-12-30 ================== * deps: mime-db@~1.5.0 - Add new mime types - Fix various invalid MIME type entries 2.0.6 / 2014-12-30 ================== * deps: mime-db@~1.4.0 - Add new mime types - Fix various invalid MIME type entries - Remove example template MIME types 2.0.5 / 2014-12-29 ================== * deps: mime-db@~1.3.1 - Fix missing extensions 2.0.4 / 2014-12-10 ================== * deps: mime-db@~1.3.0 - Add new mime types 2.0.3 / 2014-11-09 ================== * deps: mime-db@~1.2.0 - Add new mime types 2.0.2 / 2014-09-28 ================== * deps: mime-db@~1.1.0 - Add new mime types - Add additional compressible - Update charsets 2.0.1 / 2014-09-07 ================== * Support Node.js 0.6 2.0.0 / 2014-09-02 ================== * Use `mime-db` * Remove `.define()` 1.0.2 / 2014-08-04 ================== * Set charset=utf-8 for `text/javascript` 1.0.1 / 2014-06-24 ================== * Add `text/jsx` type 1.0.0 / 2014-05-12 ================== * Return `false` for unknown types * Set charset=utf-8 for `application/json` 0.1.0 / 2014-05-02 ================== * Initial release

node_modules/mime-types/index.js

/*! * mime-types * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var db = require('mime-db') var extname = require('path').extname /** * Module variables. * @private */ var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/ var TEXT_TYPE_REGEXP = /^text\//i /** * Module exports. * @public */ exports.charset = charset exports.charsets = { lookup: charset } exports.contentType = contentType exports.extension = extension exports.extensions = Object.create(null) exports.lookup = lookup exports.types = Object.create(null) // Populate the extensions/types maps populateMaps(exports.extensions, exports.types) /** * Get the default charset for a MIME type. * * @param {string} type * @return {boolean|string} */ function charset (type) { if (!type || typeof type !== 'string') { return false } // TODO: use media-typer var match = EXTRACT_TYPE_REGEXP.exec(type) var mime = match && db[match[1].toLowerCase()] if (mime && mime.charset) { return mime.charset } // default text/* to utf-8 if (match && TEXT_TYPE_REGEXP.test(match[1])) { return 'UTF-8' } return false } /** * Create a full Content-Type header given a MIME type or extension. * * @param {string} str * @return {boolean|string} */ function contentType (str) { // TODO: should this even be in this module? if (!str || typeof str !== 'string') { return false } var mime = str.indexOf('/') === -1 ? exports.lookup(str) : str if (!mime) { return false } // TODO: use content-type or other module if (mime.indexOf('charset') === -1) { var charset = exports.charset(mime) if (charset) mime += '; charset=' + charset.toLowerCase() } return mime } /** * Get the default extension for a MIME type. * * @param {string} type * @return {boolean|string} */ function extension (type) { if (!type || typeof type !== 'string') { return false } // TODO: use media-typer var match = EXTRACT_TYPE_REGEXP.exec(type) // get extensions var exts = match && exports.extensions[match[1].toLowerCase()] if (!exts || !exts.length) { return false } return exts[0] } /** * Lookup the MIME type for a file path/extension. * * @param {string} path * @return {boolean|string} */ function lookup (path) { if (!path || typeof path !== 'string') { return false } // get the extension ("ext" or ".ext" or full path) var extension = extname('x.' + path) .toLowerCase() .substr(1) if (!extension) { return false } return exports.types[extension] || false } /** * Populate the extensions and types maps. * @private */ function populateMaps (extensions, types) { // source preference (least -> most) var preference = ['nginx', 'apache', undefined, 'iana'] Object.keys(db).forEach(function forEachMimeType (type) { var mime = db[type] var exts = mime.extensions if (!exts || !exts.length) { return } // mime -> extensions extensions[type] = exts // extension -> mime for (var i = 0; i < exts.length; i++) { var extension = exts[i] if (types[extension]) { var from = preference.indexOf(db[types[extension]].source) var to = preference.indexOf(mime.source) if (types[extension] !== 'application/octet-stream' && (from > to || (from === to && types[extension].substr(0, 12) === 'application/'))) { // skip the remapping continue } } // set the extension -> mime types[extension] = type } }) }

node_modules/mime-types/LICENSE

(The MIT License) Copyright (c) 2014 Jonathan Ong <[email protected]> Copyright (c) 2015 Douglas Christopher Wilson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/mime-types/package.json

{ "_args": [ [ { "raw": "mime-types@~2.1.15", "scope": null, "escapedName": "mime-types", "name": "mime-types", "rawSpec": "~2.1.15", "spec": ">=2.1.15 <2.2.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\type-is" ] ], "_from": "mime-types@>=2.1.15 <2.2.0", "_id": "[email protected]", "_inCache": true, "_location": "/mime-types", "_nodeVersion": "6.11.1", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/mime-types-2.1.16.tgz_1500950558329_0.4321689426433295" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "3.10.10", "_phantomChildren": {}, "_requested": { "raw": "mime-types@~2.1.15", "scope": null, "escapedName": "mime-types", "name": "mime-types", "rawSpec": "~2.1.15", "spec": ">=2.1.15 <2.2.0", "type": "range" }, "_requiredBy": [ "/type-is" ], "_resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz", "_shasum": "2b858a52e5ecd516db897ac2be87487830698e23", "_shrinkwrap": null, "_spec": "mime-types@~2.1.15", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\type-is", "bugs": { "url": "https://github.com/jshttp/mime-types/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Jeremiah Senkpiel", "email": "[email protected]", "url": "https://searchbeam.jit.su" }, { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" } ], "dependencies": { "mime-db": "~1.29.0" }, "description": "The ultimate javascript content-type utility.", "devDependencies": { "eslint": "3.19.0", "eslint-config-standard": "10.2.1", "eslint-plugin-import": "2.7.0", "eslint-plugin-node": "5.1.1", "eslint-plugin-promise": "3.5.0", "eslint-plugin-standard": "3.0.1", "istanbul": "0.4.5", "mocha": "1.21.5" }, "directories": {}, "dist": { "shasum": "2b858a52e5ecd516db897ac2be87487830698e23", "tarball": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "HISTORY.md", "LICENSE", "index.js" ], "gitHead": "a776f883a8bb1d50588224c46caefa6fc313f790", "homepage": "https://github.com/jshttp/mime-types#readme", "keywords": [ "mime", "types" ], "license": "MIT", "maintainers": [ { "name": "fishrock123", "email": "[email protected]" }, { "name": "dougwilson", "email": "[email protected]" }, { "name": "jongleberry", "email": "[email protected]" } ], "name": "mime-types", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/mime-types.git" }, "scripts": { "lint": "eslint .", "test": "mocha --reporter spec test/test.js", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js" }, "version": "2.1.16" }

node_modules/mime-types/README.md

# mime-types [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] The ultimate javascript content-type utility. Similar to [the `mime` module](https://www.npmjs.com/package/mime), except: - __No fallbacks.__ Instead of naively returning the first available type, `mime-types` simply returns `false`, so do `var type = mime.lookup('unrecognized') || 'application/octet-stream'`. - No `new Mime()` business, so you could do `var lookup = require('mime-types').lookup`. - No `.define()` functionality - Bug fixes for `.lookup(path)` Otherwise, the API is compatible. ## Install This is a [Node.js](https://nodejs.org/en/) module available through the [npm registry](https://www.npmjs.com/). Installation is done using the [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): ```sh $ npm install mime-types ``` ## Adding Types All mime types are based on [mime-db](https://www.npmjs.com/package/mime-db), so open a PR there if you'd like to add mime types. ## API ```js var mime = require('mime-types') ``` All functions return `false` if input is invalid or not found. ### mime.lookup(path) Lookup the content-type associated with a file. ```js mime.lookup('json') // 'application/json' mime.lookup('.md') // 'text/markdown' mime.lookup('file.html') // 'text/html' mime.lookup('folder/file.js') // 'application/javascript' mime.lookup('folder/.htaccess') // false mime.lookup('cats') // false ``` ### mime.contentType(type) Create a full content-type header given a content-type or extension. ```js mime.contentType('markdown') // 'text/x-markdown; charset=utf-8' mime.contentType('file.json') // 'application/json; charset=utf-8' // from a full path mime.contentType(path.extname('/path/to/file.json')) // 'application/json; charset=utf-8' ``` ### mime.extension(type) Get the default extension for a content-type. ```js mime.extension('application/octet-stream') // 'bin' ``` ### mime.charset(type) Lookup the implied default charset of a content-type. ```js mime.charset('text/markdown') // 'UTF-8' ``` ### var type = mime.types[extension] A map of content-types by extension. ### [extensions...] = mime.extensions[type] A map of extensions by content-type. ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/mime-types.svg [npm-url]: https://npmjs.org/package/mime-types [node-version-image]: https://img.shields.io/node/v/mime-types.svg [node-version-url]: https://nodejs.org/en/download/ [travis-image]: https://img.shields.io/travis/jshttp/mime-types/master.svg [travis-url]: https://travis-ci.org/jshttp/mime-types [coveralls-image]: https://img.shields.io/coveralls/jshttp/mime-types/master.svg [coveralls-url]: https://coveralls.io/r/jshttp/mime-types [downloads-image]: https://img.shields.io/npm/dm/mime-types.svg [downloads-url]: https://npmjs.org/package/mime-types

node_modules/ms/index.js

/** * Helpers. */ var s = 1000; var m = s * 60; var h = m * 60; var d = h * 24; var y = d * 365.25; /** * Parse or format the given `val`. * * Options: * * - `long` verbose formatting [false] * * @param {String|Number} val * @param {Object} [options] * @throws {Error} throw an error if val is not a non-empty string or a number * @return {String|Number} * @api public */ module.exports = function(val, options) { options = options || {}; var type = typeof val; if (type === 'string' && val.length > 0) { return parse(val); } else if (type === 'number' && isNaN(val) === false) { return options.long ? fmtLong(val) : fmtShort(val); } throw new Error( 'val is not a non-empty string or a valid number. val=' + JSON.stringify(val) ); }; /** * Parse the given `str` and return milliseconds. * * @param {String} str * @return {Number} * @api private */ function parse(str) { str = String(str); if (str.length > 100) { return; } var match = /^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec( str ); if (!match) { return; } var n = parseFloat(match[1]); var type = (match[2] || 'ms').toLowerCase(); switch (type) { case 'years': case 'year': case 'yrs': case 'yr': case 'y': return n * y; case 'days': case 'day': case 'd': return n * d; case 'hours': case 'hour': case 'hrs': case 'hr': case 'h': return n * h; case 'minutes': case 'minute': case 'mins': case 'min': case 'm': return n * m; case 'seconds': case 'second': case 'secs': case 'sec': case 's': return n * s; case 'milliseconds': case 'millisecond': case 'msecs': case 'msec': case 'ms': return n; default: return undefined; } } /** * Short format for `ms`. * * @param {Number} ms * @return {String} * @api private */ function fmtShort(ms) { if (ms >= d) { return Math.round(ms / d) + 'd'; } if (ms >= h) { return Math.round(ms / h) + 'h'; } if (ms >= m) { return Math.round(ms / m) + 'm'; } if (ms >= s) { return Math.round(ms / s) + 's'; } return ms + 'ms'; } /** * Long format for `ms`. * * @param {Number} ms * @return {String} * @api private */ function fmtLong(ms) { return plural(ms, d, 'day') || plural(ms, h, 'hour') || plural(ms, m, 'minute') || plural(ms, s, 'second') || ms + ' ms'; } /** * Pluralization helper. */ function plural(ms, n, name) { if (ms < n) { return; } if (ms < n * 1.5) { return Math.floor(ms / n) + ' ' + name; } return Math.ceil(ms / n) + ' ' + name + 's'; }

node_modules/ms/license.md

The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/ms/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "ms", "name": "ms", "rawSpec": "2.0.0", "spec": "2.0.0", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\debug" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/ms", "_nodeVersion": "7.8.0", "_npmOperationalInternal": { "host": "packages-18-east.internal.npmjs.com", "tmp": "tmp/ms-2.0.0.tgz_1494937565215_0.34005374647676945" }, "_npmUser": { "name": "leo", "email": "[email protected]" }, "_npmVersion": "4.2.0", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "ms", "name": "ms", "rawSpec": "2.0.0", "spec": "2.0.0", "type": "version" }, "_requiredBy": [ "/debug" ], "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "_shasum": "5608aeadfc00be6c2901df5f9861788de0d597c8", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\debug", "bugs": { "url": "https://github.com/zeit/ms/issues" }, "dependencies": {}, "description": "Tiny milisecond conversion utility", "devDependencies": { "eslint": "3.19.0", "expect.js": "0.3.1", "husky": "0.13.3", "lint-staged": "3.4.1", "mocha": "3.4.1" }, "directories": {}, "dist": { "shasum": "5608aeadfc00be6c2901df5f9861788de0d597c8", "tarball": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" }, "eslintConfig": { "extends": "eslint:recommended", "env": { "node": true, "es6": true } }, "files": [ "index.js" ], "gitHead": "9b88d1568a52ec9bb67ecc8d2aa224fa38fd41f4", "homepage": "https://github.com/zeit/ms#readme", "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", "prettier --single-quote --write", "git add" ] }, "main": "./index", "maintainers": [ { "name": "leo", "email": "[email protected]" }, { "name": "rauchg", "email": "[email protected]" } ], "name": "ms", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/zeit/ms.git" }, "scripts": { "lint": "eslint lib/* bin/*", "precommit": "lint-staged", "test": "mocha tests.js" }, "version": "2.0.0" }

node_modules/ms/readme.md

# ms [![Build Status](https://travis-ci.org/zeit/ms.svg?branch=master)](https://travis-ci.org/zeit/ms) [![Slack Channel](http://zeit-slackin.now.sh/badge.svg)](https://zeit.chat/) Use this package to easily convert various time formats to milliseconds. ## Examples ```js ms('2 days') // 172800000 ms('1d') // 86400000 ms('10h') // 36000000 ms('2.5 hrs') // 9000000 ms('2h') // 7200000 ms('1m') // 60000 ms('5s') // 5000 ms('1y') // 31557600000 ms('100') // 100 ``` ### Convert from milliseconds ```js ms(60000) // "1m" ms(2 * 60000) // "2m" ms(ms('10 hours')) // "10h" ``` ### Time format written-out ```js ms(60000, { long: true }) // "1 minute" ms(2 * 60000, { long: true }) // "2 minutes" ms(ms('10 hours'), { long: true }) // "10 hours" ``` ## Features - Works both in [node](https://nodejs.org) and in the browser. - If a number is supplied to `ms`, a string with a unit is returned. - If a string that contains the number is supplied, it returns it as a number (e.g.: it returns `100` for `'100'`). - If you pass a string with a number and a valid unit, the number of equivalent ms is returned. ## Caught a bug? 1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device 2. Link the package to the global module directory: `npm link` 3. Within the module you want to test your local development instance of ms, just link it to the dependencies: `npm link ms`. Instead of the default one from npm, node will now use your clone of ms! As always, you can run the tests using: `npm test`

node_modules/on-finished/HISTORY.md

2.3.0 / 2015-05-26 ================== * Add defined behavior for HTTP `CONNECT` requests * Add defined behavior for HTTP `Upgrade` requests * deps: [email protected] 2.2.1 / 2015-04-22 ================== * Fix `isFinished(req)` when data buffered 2.2.0 / 2014-12-22 ================== * Add message object to callback arguments 2.1.1 / 2014-10-22 ================== * Fix handling of pipelined requests 2.1.0 / 2014-08-16 ================== * Check if `socket` is detached * Return `undefined` for `isFinished` if state unknown 2.0.0 / 2014-08-16 ================== * Add `isFinished` function * Move to `jshttp` organization * Remove support for plain socket argument * Rename to `on-finished` * Support both `req` and `res` as arguments * deps: [email protected] 1.2.2 / 2014-06-10 ================== * Reduce listeners added to emitters - avoids "event emitter leak" warnings when used multiple times on same request 1.2.1 / 2014-06-08 ================== * Fix returned value when already finished 1.2.0 / 2014-06-05 ================== * Call callback when called on already-finished socket 1.1.4 / 2014-05-27 ================== * Support node.js 0.8 1.1.3 / 2014-04-30 ================== * Make sure errors passed as instanceof `Error` 1.1.2 / 2014-04-18 ================== * Default the `socket` to passed-in object 1.1.1 / 2014-01-16 ================== * Rename module to `finished` 1.1.0 / 2013-12-25 ================== * Call callback when called on already-errored socket 1.0.1 / 2013-12-20 ================== * Actually pass the error to the callback 1.0.0 / 2013-12-20 ================== * Initial release

node_modules/on-finished/index.js

/*! * on-finished * Copyright(c) 2013 Jonathan Ong * Copyright(c) 2014 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module exports. * @public */ module.exports = onFinished module.exports.isFinished = isFinished /** * Module dependencies. * @private */ var first = require('ee-first') /** * Variables. * @private */ /* istanbul ignore next */ var defer = typeof setImmediate === 'function' ? setImmediate : function(fn){ process.nextTick(fn.bind.apply(fn, arguments)) } /** * Invoke callback when the response has finished, useful for * cleaning up resources afterwards. * * @param {object} msg * @param {function} listener * @return {object} * @public */ function onFinished(msg, listener) { if (isFinished(msg) !== false) { defer(listener, null, msg) return msg } // attach the listener to the message attachListener(msg, listener) return msg } /** * Determine if message is already finished. * * @param {object} msg * @return {boolean} * @public */ function isFinished(msg) { var socket = msg.socket if (typeof msg.finished === 'boolean') { // OutgoingMessage return Boolean(msg.finished || (socket && !socket.writable)) } if (typeof msg.complete === 'boolean') { // IncomingMessage return Boolean(msg.upgrade || !socket || !socket.readable || (msg.complete && !msg.readable)) } // don't know return undefined } /** * Attach a finished listener to the message. * * @param {object} msg * @param {function} callback * @private */ function attachFinishedListener(msg, callback) { var eeMsg var eeSocket var finished = false function onFinish(error) { eeMsg.cancel() eeSocket.cancel() finished = true callback(error) } // finished on first message event eeMsg = eeSocket = first([[msg, 'end', 'finish']], onFinish) function onSocket(socket) { // remove listener msg.removeListener('socket', onSocket) if (finished) return if (eeMsg !== eeSocket) return // finished on first socket event eeSocket = first([[socket, 'error', 'close']], onFinish) } if (msg.socket) { // socket already assigned onSocket(msg.socket) return } // wait for socket to be assigned msg.on('socket', onSocket) if (msg.socket === undefined) { // node.js 0.8 patch patchAssignSocket(msg, onSocket) } } /** * Attach the listener to the message. * * @param {object} msg * @return {function} * @private */ function attachListener(msg, listener) { var attached = msg.__onFinished // create a private single listener with queue if (!attached || !attached.queue) { attached = msg.__onFinished = createListener(msg) attachFinishedListener(msg, attached) } attached.queue.push(listener) } /** * Create listener on message. * * @param {object} msg * @return {function} * @private */ function createListener(msg) { function listener(err) { if (msg.__onFinished === listener) msg.__onFinished = null if (!listener.queue) return var queue = listener.queue listener.queue = null for (var i = 0; i < queue.length; i++) { queue[i](err, msg) } } listener.queue = [] return listener } /** * Patch ServerResponse.prototype.assignSocket for node.js 0.8. * * @param {ServerResponse} res * @param {function} callback * @private */ function patchAssignSocket(res, callback) { var assignSocket = res.assignSocket if (typeof assignSocket !== 'function') return // res.on('socket', callback) is broken in 0.8 res.assignSocket = function _assignSocket(socket) { assignSocket.call(this, socket) callback(socket) } }

node_modules/on-finished/LICENSE

(The MIT License) Copyright (c) 2013 Jonathan Ong <[email protected]> Copyright (c) 2014 Douglas Christopher Wilson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/on-finished/package.json

{ "_args": [ [ { "raw": "on-finished@~2.3.0", "scope": null, "escapedName": "on-finished", "name": "on-finished", "rawSpec": "~2.3.0", "spec": ">=2.3.0 <2.4.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "on-finished@>=2.3.0 <2.4.0", "_id": "[email protected]", "_inCache": true, "_location": "/on-finished", "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "1.4.28", "_phantomChildren": {}, "_requested": { "raw": "on-finished@~2.3.0", "scope": null, "escapedName": "on-finished", "name": "on-finished", "rawSpec": "~2.3.0", "spec": ">=2.3.0 <2.4.0", "type": "range" }, "_requiredBy": [ "/body-parser" ], "_resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "_shasum": "20f1336481b083cd75337992a16971aa2d906947", "_shrinkwrap": null, "_spec": "on-finished@~2.3.0", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "bugs": { "url": "https://github.com/jshttp/on-finished/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" } ], "dependencies": { "ee-first": "1.1.1" }, "description": "Execute a callback when a request closes, finishes, or errors", "devDependencies": { "istanbul": "0.3.9", "mocha": "2.2.5" }, "directories": {}, "dist": { "shasum": "20f1336481b083cd75337992a16971aa2d906947", "tarball": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" }, "engines": { "node": ">= 0.8" }, "files": [ "HISTORY.md", "LICENSE", "index.js" ], "gitHead": "34babcb58126a416fcf5205768204f2e12699dda", "homepage": "https://github.com/jshttp/on-finished", "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" }, { "name": "jongleberry", "email": "[email protected]" } ], "name": "on-finished", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/on-finished.git" }, "scripts": { "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" }, "version": "2.3.0" }

node_modules/on-finished/README.md

# on-finished [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Execute a callback when a HTTP request closes, finishes, or errors. ## Install ```sh $ npm install on-finished ``` ## API ```js var onFinished = require('on-finished') ``` ### onFinished(res, listener) Attach a listener to listen for the response to finish. The listener will be invoked only once when the response finished. If the response finished to an error, the first argument will contain the error. If the response has already finished, the listener will be invoked. Listening to the end of a response would be used to close things associated with the response, like open files. Listener is invoked as `listener(err, res)`. ```js onFinished(res, function (err, res) { // clean up open fds, etc. // err contains the error is request error'd }) ``` ### onFinished(req, listener) Attach a listener to listen for the request to finish. The listener will be invoked only once when the request finished. If the request finished to an error, the first argument will contain the error. If the request has already finished, the listener will be invoked. Listening to the end of a request would be used to know when to continue after reading the data. Listener is invoked as `listener(err, req)`. ```js var data = '' req.setEncoding('utf8') res.on('data', function (str) { data += str }) onFinished(req, function (err, req) { // data is read unless there is err }) ``` ### onFinished.isFinished(res) Determine if `res` is already finished. This would be useful to check and not even start certain operations if the response has already finished. ### onFinished.isFinished(req) Determine if `req` is already finished. This would be useful to check and not even start certain operations if the request has already finished. ## Special Node.js requests ### HTTP CONNECT method The meaning of the `CONNECT` method from RFC 7231, section 4.3.6: > The CONNECT method requests that the recipient establish a tunnel to > the destination origin server identified by the request-target and, > if successful, thereafter restrict its behavior to blind forwarding > of packets, in both directions, until the tunnel is closed. Tunnels > are commonly used to create an end-to-end virtual connection, through > one or more proxies, which can then be secured using TLS (Transport > Layer Security, [RFC5246]). In Node.js, these request objects come from the `'connect'` event on the HTTP server. When this module is used on a HTTP `CONNECT` request, the request is considered "finished" immediately, **due to limitations in the Node.js interface**. This means if the `CONNECT` request contains a request entity, the request will be considered "finished" even before it has been read. There is no such thing as a response object to a `CONNECT` request in Node.js, so there is no support for for one. ### HTTP Upgrade request The meaning of the `Upgrade` header from RFC 7230, section 6.1: > The "Upgrade" header field is intended to provide a simple mechanism > for transitioning from HTTP/1.1 to some other protocol on the same > connection. In Node.js, these request objects come from the `'upgrade'` event on the HTTP server. When this module is used on a HTTP request with an `Upgrade` header, the request is considered "finished" immediately, **due to limitations in the Node.js interface**. This means if the `Upgrade` request contains a request entity, the request will be considered "finished" even before it has been read. There is no such thing as a response object to a `Upgrade` request in Node.js, so there is no support for for one. ## Example The following code ensures that file descriptors are always closed once the response finishes. ```js var destroy = require('destroy') var http = require('http') var onFinished = require('on-finished') http.createServer(function onRequest(req, res) { var stream = fs.createReadStream('package.json') stream.pipe(res) onFinished(res, function (err) { destroy(stream) }) }) ``` ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/on-finished.svg [npm-url]: https://npmjs.org/package/on-finished [node-version-image]: https://img.shields.io/node/v/on-finished.svg [node-version-url]: http://nodejs.org/download/ [travis-image]: https://img.shields.io/travis/jshttp/on-finished/master.svg [travis-url]: https://travis-ci.org/jshttp/on-finished [coveralls-image]: https://img.shields.io/coveralls/jshttp/on-finished/master.svg [coveralls-url]: https://coveralls.io/r/jshttp/on-finished?branch=master [downloads-image]: https://img.shields.io/npm/dm/on-finished.svg [downloads-url]: https://npmjs.org/package/on-finished

node_modules/parseurl/HISTORY.md

1.3.1 / 2016-01-17 ================== * perf: enable strict mode 1.3.0 / 2014-08-09 ================== * Add `parseurl.original` for parsing `req.originalUrl` with fallback * Return `undefined` if `req.url` is `undefined` 1.2.0 / 2014-07-21 ================== * Cache URLs based on original value * Remove no-longer-needed URL mis-parse work-around * Simplify the "fast-path" `RegExp` 1.1.3 / 2014-07-08 ================== * Fix typo 1.1.2 / 2014-07-08 ================== * Seriously fix Node.js 0.8 compatibility 1.1.1 / 2014-07-08 ================== * Fix Node.js 0.8 compatibility 1.1.0 / 2014-07-08 ================== * Incorporate URL href-only parse fast-path 1.0.1 / 2014-03-08 ================== * Add missing `require` 1.0.0 / 2014-03-08 ================== * Genesis from `connect`

node_modules/parseurl/index.js

/*! * parseurl * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2014 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. */ var url = require('url') var parse = url.parse var Url = url.Url /** * Pattern for a simple path case. * See: https://github.com/joyent/node/pull/7878 */ var simplePathRegExp = /^(\/\/?(?!\/)[^\?#\s]*)(\?[^#\s]*)?$/ /** * Exports. */ module.exports = parseurl module.exports.original = originalurl /** * Parse the `req` url with memoization. * * @param {ServerRequest} req * @return {Object} * @api public */ function parseurl(req) { var url = req.url if (url === undefined) { // URL is undefined return undefined } var parsed = req._parsedUrl if (fresh(url, parsed)) { // Return cached URL parse return parsed } // Parse the URL parsed = fastparse(url) parsed._raw = url return req._parsedUrl = parsed }; /** * Parse the `req` original url with fallback and memoization. * * @param {ServerRequest} req * @return {Object} * @api public */ function originalurl(req) { var url = req.originalUrl if (typeof url !== 'string') { // Fallback return parseurl(req) } var parsed = req._parsedOriginalUrl if (fresh(url, parsed)) { // Return cached URL parse return parsed } // Parse the URL parsed = fastparse(url) parsed._raw = url return req._parsedOriginalUrl = parsed }; /** * Parse the `str` url with fast-path short-cut. * * @param {string} str * @return {Object} * @api private */ function fastparse(str) { // Try fast path regexp // See: https://github.com/joyent/node/pull/7878 var simplePath = typeof str === 'string' && simplePathRegExp.exec(str) // Construct simple URL if (simplePath) { var pathname = simplePath[1] var search = simplePath[2] || null var url = Url !== undefined ? new Url() : {} url.path = str url.href = str url.pathname = pathname url.search = search url.query = search && search.substr(1) return url } return parse(str) } /** * Determine if parsed is still fresh for url. * * @param {string} url * @param {object} parsedUrl * @return {boolean} * @api private */ function fresh(url, parsedUrl) { return typeof parsedUrl === 'object' && parsedUrl !== null && (Url === undefined || parsedUrl instanceof Url) && parsedUrl._raw === url }

node_modules/parseurl/LICENSE

node_modules/parseurl/package.json

{ "_args": [ [ { "raw": "parseurl@~1.3.1", "scope": null, "escapedName": "parseurl", "name": "parseurl", "rawSpec": "~1.3.1", "spec": ">=1.3.1 <1.4.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\method-override" ] ], "_from": "parseurl@>=1.3.1 <1.4.0", "_id": "[email protected]", "_inCache": true, "_location": "/parseurl", "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "1.4.28", "_phantomChildren": {}, "_requested": { "raw": "parseurl@~1.3.1", "scope": null, "escapedName": "parseurl", "name": "parseurl", "rawSpec": "~1.3.1", "spec": ">=1.3.1 <1.4.0", "type": "range" }, "_requiredBy": [ "/method-override" ], "_resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz", "_shasum": "c8ab8c9223ba34888aa64a297b28853bec18da56", "_shrinkwrap": null, "_spec": "parseurl@~1.3.1", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\method-override", "author": { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" }, "bugs": { "url": "https://github.com/pillarjs/parseurl/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" } ], "dependencies": {}, "description": "parse a url with memoization", "devDependencies": { "beautify-benchmark": "0.2.4", "benchmark": "2.0.0", "fast-url-parser": "1.1.3", "istanbul": "0.4.2", "mocha": "~1.21.5" }, "directories": {}, "dist": { "shasum": "c8ab8c9223ba34888aa64a297b28853bec18da56", "tarball": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz" }, "engines": { "node": ">= 0.8" }, "files": [ "LICENSE", "HISTORY.md", "README.md", "index.js" ], "gitHead": "6d22d376d75b927ab2b5347ce3a1d6735133dd43", "homepage": "https://github.com/pillarjs/parseurl", "license": "MIT", "maintainers": [ { "name": "jongleberry", "email": "[email protected]" }, { "name": "dougwilson", "email": "[email protected]" }, { "name": "tjholowaychuk", "email": "[email protected]" }, { "name": "mscdex", "email": "[email protected]" }, { "name": "fishrock123", "email": "[email protected]" }, { "name": "defunctzombie", "email": "[email protected]" } ], "name": "parseurl", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/pillarjs/parseurl.git" }, "scripts": { "bench": "node benchmark/index.js", "test": "mocha --check-leaks --bail --reporter spec test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/" }, "version": "1.3.1" }

node_modules/parseurl/README.md

# parseurl [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Parse a URL with memoization. ## Install ```bash $ npm install parseurl ``` ## API ```js var parseurl = require('parseurl') ``` ### parseurl(req) Parse the URL of the given request object (looks at the `req.url` property) and return the result. The result is the same as `url.parse` in Node.js core. Calling this function multiple times on the same `req` where `req.url` does not change will return a cached parsed object, rather than parsing again. ### parseurl.original(req) Parse the original URL of the given request object and return the result. This works by trying to parse `req.originalUrl` if it is a string, otherwise parses `req.url`. The result is the same as `url.parse` in Node.js core. Calling this function multiple times on the same `req` where `req.originalUrl` does not change will return a cached parsed object, rather than parsing again. ## Benchmark ```bash $ npm run-script bench > [email protected] bench nodejs-parseurl > node benchmark/index.js > node benchmark/fullurl.js Parsing URL "http://localhost:8888/foo/bar?user=tj&pet=fluffy" 1 test completed. 2 tests completed. 3 tests completed. fasturl x 1,290,780 ops/sec ±0.46% (195 runs sampled) nativeurl x 56,401 ops/sec ±0.22% (196 runs sampled) parseurl x 55,231 ops/sec ±0.22% (194 runs sampled) > node benchmark/pathquery.js Parsing URL "/foo/bar?user=tj&pet=fluffy" 1 test completed. 2 tests completed. 3 tests completed. fasturl x 1,986,668 ops/sec ±0.27% (190 runs sampled) nativeurl x 98,740 ops/sec ±0.21% (195 runs sampled) parseurl x 2,628,171 ops/sec ±0.36% (195 runs sampled) > node benchmark/samerequest.js Parsing URL "/foo/bar?user=tj&pet=fluffy" on same request object 1 test completed. 2 tests completed. 3 tests completed. fasturl x 2,184,468 ops/sec ±0.40% (194 runs sampled) nativeurl x 99,437 ops/sec ±0.71% (194 runs sampled) parseurl x 10,498,005 ops/sec ±0.61% (186 runs sampled) > node benchmark/simplepath.js Parsing URL "/foo/bar" 1 test completed. 2 tests completed. 3 tests completed. fasturl x 4,535,825 ops/sec ±0.27% (191 runs sampled) nativeurl x 98,769 ops/sec ±0.54% (191 runs sampled) parseurl x 4,164,865 ops/sec ±0.34% (192 runs sampled) > node benchmark/slash.js Parsing URL "/" 1 test completed. 2 tests completed. 3 tests completed. fasturl x 4,908,405 ops/sec ±0.42% (191 runs sampled) nativeurl x 100,945 ops/sec ±0.59% (188 runs sampled) parseurl x 4,333,208 ops/sec ±0.27% (194 runs sampled) ``` ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/parseurl.svg [npm-url]: https://npmjs.org/package/parseurl [node-version-image]: https://img.shields.io/node/v/parseurl.svg [node-version-url]: http://nodejs.org/download/ [travis-image]: https://img.shields.io/travis/pillarjs/parseurl/master.svg [travis-url]: https://travis-ci.org/pillarjs/parseurl [coveralls-image]: https://img.shields.io/coveralls/pillarjs/parseurl/master.svg [coveralls-url]: https://coveralls.io/r/pillarjs/parseurl?branch=master [downloads-image]: https://img.shields.io/npm/dm/parseurl.svg [downloads-url]: https://npmjs.org/package/parseurl

node_modules/qs/.eslintignore

dist

node_modules/qs/.eslintrc

{ "root": true, "extends": "@ljharb", "rules": { "complexity": [2, 26], "consistent-return": 1, "id-length": [2, { "min": 1, "max": 25, "properties": "never" }], "indent": [2, 4], "max-params": [2, 12], "max-statements": [2, 43], "no-continue": 1, "no-magic-numbers": 0, "no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"], "operator-linebreak": [2, "after"], } }

node_modules/qs/.jscs.json

{ "es3": true, "additionalRules": [], "requireSemicolons": true, "disallowMultipleSpaces": true, "disallowIdentifierNames": [], "requireCurlyBraces": { "allExcept": [], "keywords": ["if", "else", "for", "while", "do", "try", "catch"] }, "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"], "disallowSpaceAfterKeywords": [], "disallowSpaceBeforeComma": true, "disallowSpaceAfterComma": false, "disallowSpaceBeforeSemicolon": true, "disallowNodeTypes": [ "DebuggerStatement", "ForInStatement", "LabeledStatement", "SwitchCase", "SwitchStatement", "WithStatement" ], "requireObjectKeysOnNewLine": { "allExcept": ["sameLine"] }, "requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true }, "requireSpacesInNamedFunctionExpression": { "beforeOpeningCurlyBrace": true }, "disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true }, "requireSpacesInFunctionDeclaration": { "beforeOpeningCurlyBrace": true }, "disallowSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true }, "requireSpaceBetweenArguments": true, "disallowSpacesInsideParentheses": true, "disallowSpacesInsideArrayBrackets": true, "disallowQuotedKeysInObjects": { "allExcept": ["reserved"] }, "disallowSpaceAfterObjectKeys": true, "requireCommaBeforeLineBreak": true, "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"], "requireSpaceAfterPrefixUnaryOperators": [], "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"], "requireSpaceBeforePostfixUnaryOperators": [], "disallowSpaceBeforeBinaryOperators": [], "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="], "requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="], "disallowSpaceAfterBinaryOperators": [], "disallowImplicitTypeConversion": ["binary", "string"], "disallowKeywords": ["with", "eval"], "requireKeywordsOnNewLine": [], "disallowKeywordsOnNewLine": ["else"], "requireLineFeedAtFileEnd": true, "disallowTrailingWhitespace": true, "disallowTrailingComma": true, "excludeFiles": ["node_modules/**", "vendor/**"], "disallowMultipleLineStrings": true, "requireDotNotation": { "allExcept": ["keywords"] }, "requireParenthesesAroundIIFE": true, "validateLineBreaks": "LF", "validateQuoteMarks": { "escape": true, "mark": "'" }, "disallowOperatorBeforeLineBreak": [], "requireSpaceBeforeKeywords": [ "do", "for", "if", "else", "switch", "case", "try", "catch", "finally", "while", "with", "return" ], "validateAlignedFunctionParameters": { "lineBreakAfterOpeningBraces": true, "lineBreakBeforeClosingBraces": true }, "requirePaddingNewLinesBeforeExport": true, "validateNewlineAfterArrayElements": { "maximum": 1 }, "requirePaddingNewLinesAfterUseStrict": true, "disallowArrowFunctions": true, "disallowMultiLineTernary": true, "validateOrderInObjectKeys": "asc-insensitive", "disallowIdenticalDestructuringNames": true, "disallowNestedTernaries": { "maxLevel": 1 }, "requireSpaceAfterComma": { "allExcept": ["trailing"] }, "requireAlignedMultilineParams": false, "requireSpacesInGenerator": { "afterStar": true }, "disallowSpacesInGenerator": { "beforeStar": true }, "disallowVar": false, "requireArrayDestructuring": false, "requireEnhancedObjectLiterals": false, "requireObjectDestructuring": false, "requireEarlyReturn": false, "requireCapitalizedConstructorsNew": { "allExcept": ["Function", "String", "Object", "Symbol", "Number", "Date", "RegExp", "Error", "Boolean", "Array"] }, "requireImportAlphabetized": false, "requireSpaceBeforeObjectValues": true, "requireSpaceBeforeDestructuredValues": true, "disallowSpacesInsideTemplateStringPlaceholders": true, "disallowArrayDestructuringReturn": false, "requireNewlineBeforeSingleStatementsInIf": false, "disallowUnusedVariables": true, "requireSpacesInsideImportedObjectBraces": true, "requireUseStrict": true }

node_modules/qs/CHANGELOG.md

## **6.4.0** - [New] `qs.stringify`: add `encodeValuesOnly` option - [Fix] follow `allowPrototypes` option during merge (#201, #201) - [Fix] support keys starting with brackets (#202, #200) - [Fix] chmod a-x - [Dev Deps] update `eslint` - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds - [eslint] reduce warnings ## **6.3.1** - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties (thanks, @snyk!) - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `iconv-lite`, `qs-iconv`, `tape` - [Tests] on all node minors; improve test matrix - [Docs] document stringify option `allowDots` (#195) - [Docs] add empty object and array values example (#195) - [Docs] Fix minor inconsistency/typo (#192) - [Docs] document stringify option `sort` (#191) - [Refactor] `stringify`: throw faster with an invalid encoder - [Refactor] remove unnecessary escapes (#184) - Remove contributing.md, since `qs` is no longer part of `hapi` (#183) ## **6.3.0** - [New] Add support for RFC 1738 (#174, #173) - [New] `stringify`: Add `serializeDate` option to customize Date serialization (#159) - [Fix] ensure `utils.merge` handles merging two arrays - [Refactor] only constructors should be capitalized - [Refactor] capitalized var names are for constructors only - [Refactor] avoid using a sparse array - [Robustness] `formats`: cache `String#replace` - [Dev Deps] update `browserify`, `eslint`, `@ljharb/eslint-config`; add `safe-publish-latest` - [Tests] up to `node` `v6.8`, `v4.6`; improve test matrix - [Tests] flesh out arrayLimit/arrayFormat tests (#107) - [Tests] skip Object.create tests when null objects are not available - [Tests] Turn on eslint for test files (#175) ## **6.2.2** - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties ## **6.2.1** - [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values - [Refactor] Be explicit and use `Object.prototype.hasOwnProperty.call` - [Tests] remove `parallelshell` since it does not reliably report failures - [Tests] up to `node` `v6.3`, `v5.12` - [Dev Deps] update `tape`, `eslint`, `@ljharb/eslint-config`, `qs-iconv` ## [**6.2.0**](https://github.com/ljharb/qs/issues?milestone=36&state=closed) - [New] pass Buffers to the encoder/decoder directly (#161) - [New] add "encoder" and "decoder" options, for custom param encoding/decoding (#160) - [Fix] fix compacting of nested sparse arrays (#150) ## **6.1.1** - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties ## [**6.1.0**](https://github.com/ljharb/qs/issues?milestone=35&state=closed) - [New] allowDots option for `stringify` (#151) - [Fix] "sort" option should work at a depth of 3 or more (#151) - [Fix] Restore `dist` directory; will be removed in v7 (#148) ## **6.0.3** - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties - [Fix] Restore `dist` directory; will be removed in v7 (#148) ## [**6.0.2**](https://github.com/ljharb/qs/issues?milestone=33&state=closed) - Revert ES6 requirement and restore support for node down to v0.8. ## [**6.0.1**](https://github.com/ljharb/qs/issues?milestone=32&state=closed) - [**#127**](https://github.com/ljharb/qs/pull/127) Fix engines definition in package.json ## [**6.0.0**](https://github.com/ljharb/qs/issues?milestone=31&state=closed) - [**#124**](https://github.com/ljharb/qs/issues/124) Use ES6 and drop support for node < v4 ## **5.2.1** - [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values ## [**5.2.0**](https://github.com/ljharb/qs/issues?milestone=30&state=closed) - [**#64**](https://github.com/ljharb/qs/issues/64) Add option to sort object keys in the query string ## [**5.1.0**](https://github.com/ljharb/qs/issues?milestone=29&state=closed) - [**#117**](https://github.com/ljharb/qs/issues/117) make URI encoding stringified results optional - [**#106**](https://github.com/ljharb/qs/issues/106) Add flag `skipNulls` to optionally skip null values in stringify ## [**5.0.0**](https://github.com/ljharb/qs/issues?milestone=28&state=closed) - [**#114**](https://github.com/ljharb/qs/issues/114) default allowDots to false - [**#100**](https://github.com/ljharb/qs/issues/100) include dist to npm ## [**4.0.0**](https://github.com/ljharb/qs/issues?milestone=26&state=closed) - [**#98**](https://github.com/ljharb/qs/issues/98) make returning plain objects and allowing prototype overwriting properties optional ## [**3.1.0**](https://github.com/ljharb/qs/issues?milestone=24&state=closed) - [**#89**](https://github.com/ljharb/qs/issues/89) Add option to disable "Transform dot notation to bracket notation" ## [**3.0.0**](https://github.com/ljharb/qs/issues?milestone=23&state=closed) - [**#80**](https://github.com/ljharb/qs/issues/80) qs.parse silently drops properties - [**#77**](https://github.com/ljharb/qs/issues/77) Perf boost - [**#60**](https://github.com/ljharb/qs/issues/60) Add explicit option to disable array parsing - [**#74**](https://github.com/ljharb/qs/issues/74) Bad parse when turning array into object - [**#81**](https://github.com/ljharb/qs/issues/81) Add a `filter` option - [**#68**](https://github.com/ljharb/qs/issues/68) Fixed issue with recursion and passing strings into objects. - [**#66**](https://github.com/ljharb/qs/issues/66) Add mixed array and object dot notation support Closes: #47 - [**#76**](https://github.com/ljharb/qs/issues/76) RFC 3986 - [**#85**](https://github.com/ljharb/qs/issues/85) No equal sign - [**#84**](https://github.com/ljharb/qs/issues/84) update license attribute ## [**2.4.1**](https://github.com/ljharb/qs/issues?milestone=20&state=closed) - [**#73**](https://github.com/ljharb/qs/issues/73) Property 'hasOwnProperty' of object #<Object> is not a function ## [**2.4.0**](https://github.com/ljharb/qs/issues?milestone=19&state=closed) - [**#70**](https://github.com/ljharb/qs/issues/70) Add arrayFormat option ## [**2.3.3**](https://github.com/ljharb/qs/issues?milestone=18&state=closed) - [**#59**](https://github.com/ljharb/qs/issues/59) make sure array indexes are >= 0, closes #57 - [**#58**](https://github.com/ljharb/qs/issues/58) make qs usable for browser loader ## [**2.3.2**](https://github.com/ljharb/qs/issues?milestone=17&state=closed) - [**#55**](https://github.com/ljharb/qs/issues/55) allow merging a string into an object ## [**2.3.1**](https://github.com/ljharb/qs/issues?milestone=16&state=closed) - [**#52**](https://github.com/ljharb/qs/issues/52) Return "undefined" and "false" instead of throwing "TypeError". ## [**2.3.0**](https://github.com/ljharb/qs/issues?milestone=15&state=closed) - [**#50**](https://github.com/ljharb/qs/issues/50) add option to omit array indices, closes #46 ## [**2.2.5**](https://github.com/ljharb/qs/issues?milestone=14&state=closed) - [**#39**](https://github.com/ljharb/qs/issues/39) Is there an alternative to Buffer.isBuffer? - [**#49**](https://github.com/ljharb/qs/issues/49) refactor utils.merge, fixes #45 - [**#41**](https://github.com/ljharb/qs/issues/41) avoid browserifying Buffer, for #39 ## [**2.2.4**](https://github.com/ljharb/qs/issues?milestone=13&state=closed) - [**#38**](https://github.com/ljharb/qs/issues/38) how to handle object keys beginning with a number ## [**2.2.3**](https://github.com/ljharb/qs/issues?milestone=12&state=closed) - [**#37**](https://github.com/ljharb/qs/issues/37) parser discards first empty value in array - [**#36**](https://github.com/ljharb/qs/issues/36) Update to lab 4.x ## [**2.2.2**](https://github.com/ljharb/qs/issues?milestone=11&state=closed) - [**#33**](https://github.com/ljharb/qs/issues/33) Error when plain object in a value - [**#34**](https://github.com/ljharb/qs/issues/34) use Object.prototype.hasOwnProperty.call instead of obj.hasOwnProperty - [**#24**](https://github.com/ljharb/qs/issues/24) Changelog? Semver? ## [**2.2.1**](https://github.com/ljharb/qs/issues?milestone=10&state=closed) - [**#32**](https://github.com/ljharb/qs/issues/32) account for circular references properly, closes #31 - [**#31**](https://github.com/ljharb/qs/issues/31) qs.parse stackoverflow on circular objects ## [**2.2.0**](https://github.com/ljharb/qs/issues?milestone=9&state=closed) - [**#26**](https://github.com/ljharb/qs/issues/26) Don't use Buffer global if it's not present - [**#30**](https://github.com/ljharb/qs/issues/30) Bug when merging non-object values into arrays - [**#29**](https://github.com/ljharb/qs/issues/29) Don't call Utils.clone at the top of Utils.merge - [**#23**](https://github.com/ljharb/qs/issues/23) Ability to not limit parameters? ## [**2.1.0**](https://github.com/ljharb/qs/issues?milestone=8&state=closed) - [**#22**](https://github.com/ljharb/qs/issues/22) Enable using a RegExp as delimiter ## [**2.0.0**](https://github.com/ljharb/qs/issues?milestone=7&state=closed) - [**#18**](https://github.com/ljharb/qs/issues/18) Why is there arrayLimit? - [**#20**](https://github.com/ljharb/qs/issues/20) Configurable parametersLimit - [**#21**](https://github.com/ljharb/qs/issues/21) make all limits optional, for #18, for #20 ## [**1.2.2**](https://github.com/ljharb/qs/issues?milestone=6&state=closed) - [**#19**](https://github.com/ljharb/qs/issues/19) Don't overwrite null values ## [**1.2.1**](https://github.com/ljharb/qs/issues?milestone=5&state=closed) - [**#16**](https://github.com/ljharb/qs/issues/16) ignore non-string delimiters - [**#15**](https://github.com/ljharb/qs/issues/15) Close code block ## [**1.2.0**](https://github.com/ljharb/qs/issues?milestone=4&state=closed) - [**#12**](https://github.com/ljharb/qs/issues/12) Add optional delim argument - [**#13**](https://github.com/ljharb/qs/issues/13) fix #11: flattened keys in array are now correctly parsed ## [**1.1.0**](https://github.com/ljharb/qs/issues?milestone=3&state=closed) - [**#7**](https://github.com/ljharb/qs/issues/7) Empty values of a POST array disappear after being submitted - [**#9**](https://github.com/ljharb/qs/issues/9) Should not omit equals signs (=) when value is null - [**#6**](https://github.com/ljharb/qs/issues/6) Minor grammar fix in README ## [**1.0.2**](https://github.com/ljharb/qs/issues?milestone=2&state=closed) - [**#5**](https://github.com/ljharb/qs/issues/5) array holes incorrectly copied into object on large index

node_modules/qs/dist/qs.js

(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.Qs = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ 'use strict'; var replace = String.prototype.replace; var percentTwenties = /%20/g; module.exports = { 'default': 'RFC3986', formatters: { RFC1738: function (value) { return replace.call(value, percentTwenties, '+'); }, RFC3986: function (value) { return value; } }, RFC1738: 'RFC1738', RFC3986: 'RFC3986' }; },{}],2:[function(require,module,exports){ 'use strict'; var stringify = require('./stringify'); var parse = require('./parse'); var formats = require('./formats'); module.exports = { formats: formats, parse: parse, stringify: stringify }; },{"./formats":1,"./parse":3,"./stringify":4}],3:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); var has = Object.prototype.hasOwnProperty; var defaults = { allowDots: false, allowPrototypes: false, arrayLimit: 20, decoder: utils.decode, delimiter: '&', depth: 5, parameterLimit: 1000, plainObjects: false, strictNullHandling: false }; var parseValues = function parseQueryStringValues(str, options) { var obj = {}; var parts = str.split(options.delimiter, options.parameterLimit === Infinity ? undefined : options.parameterLimit); for (var i = 0; i < parts.length; ++i) { var part = parts[i]; var pos = part.indexOf(']=') === -1 ? part.indexOf('=') : part.indexOf(']=') + 1; var key, val; if (pos === -1) { key = options.decoder(part); val = options.strictNullHandling ? null : ''; } else { key = options.decoder(part.slice(0, pos)); val = options.decoder(part.slice(pos + 1)); } if (has.call(obj, key)) { obj[key] = [].concat(obj[key]).concat(val); } else { obj[key] = val; } } return obj; }; var parseObject = function parseObjectRecursive(chain, val, options) { if (!chain.length) { return val; } var root = chain.shift(); var obj; if (root === '[]') { obj = []; obj = obj.concat(parseObject(chain, val, options)); } else { obj = options.plainObjects ? Object.create(null) : {}; var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root; var index = parseInt(cleanRoot, 10); if ( !isNaN(index) && root !== cleanRoot && String(index) === cleanRoot && index >= 0 && (options.parseArrays && index <= options.arrayLimit) ) { obj = []; obj[index] = parseObject(chain, val, options); } else { obj[cleanRoot] = parseObject(chain, val, options); } } return obj; }; var parseKeys = function parseQueryStringKeys(givenKey, val, options) { if (!givenKey) { return; } // Transform dot notation to bracket notation var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey; // The regex chunks var brackets = /(\[[^[\]]*])/; var child = /(\[[^[\]]*])/g; // Get the parent var segment = brackets.exec(key); var parent = segment ? key.slice(0, segment.index) : key; // Stash the parent if it exists var keys = []; if (parent) { // If we aren't using plain objects, optionally prefix keys // that would overwrite object prototype properties if (!options.plainObjects && has.call(Object.prototype, parent)) { if (!options.allowPrototypes) { return; } } keys.push(parent); } // Loop through children appending to the array until we hit depth var i = 0; while ((segment = child.exec(key)) !== null && i < options.depth) { i += 1; if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) { if (!options.allowPrototypes) { return; } } keys.push(segment[1]); } // If there's a remainder, just add whatever is left if (segment) { keys.push('[' + key.slice(segment.index) + ']'); } return parseObject(keys, val, options); }; module.exports = function (str, opts) { var options = opts || {}; if (options.decoder !== null && options.decoder !== undefined && typeof options.decoder !== 'function') { throw new TypeError('Decoder has to be a function.'); } options.delimiter = typeof options.delimiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter; options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth; options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayLimit; options.parseArrays = options.parseArrays !== false; options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder; options.allowDots = typeof options.allowDots === 'boolean' ? options.allowDots : defaults.allowDots; options.plainObjects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects; options.allowPrototypes = typeof options.allowPrototypes === 'boolean' ? options.allowPrototypes : defaults.allowPrototypes; options.parameterLimit = typeof options.parameterLimit === 'number' ? options.parameterLimit : defaults.parameterLimit; options.strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling; if (str === '' || str === null || typeof str === 'undefined') { return options.plainObjects ? Object.create(null) : {}; } var tempObj = typeof str === 'string' ? parseValues(str, options) : str; var obj = options.plainObjects ? Object.create(null) : {}; // Iterate over the keys and setup the new object var keys = Object.keys(tempObj); for (var i = 0; i < keys.length; ++i) { var key = keys[i]; var newObj = parseKeys(key, tempObj[key], options); obj = utils.merge(obj, newObj, options); } return utils.compact(obj); }; },{"./utils":5}],4:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); var formats = require('./formats'); var arrayPrefixGenerators = { brackets: function brackets(prefix) { // eslint-disable-line func-name-matching return prefix + '[]'; }, indices: function indices(prefix, key) { // eslint-disable-line func-name-matching return prefix + '[' + key + ']'; }, repeat: function repeat(prefix) { // eslint-disable-line func-name-matching return prefix; } }; var toISO = Date.prototype.toISOString; var defaults = { delimiter: '&', encode: true, encoder: utils.encode, encodeValuesOnly: false, serializeDate: function serializeDate(date) { // eslint-disable-line func-name-matching return toISO.call(date); }, skipNulls: false, strictNullHandling: false }; var stringify = function stringify( // eslint-disable-line func-name-matching object, prefix, generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly ) { var obj = object; if (typeof filter === 'function') { obj = filter(prefix, obj); } else if (obj instanceof Date) { obj = serializeDate(obj); } else if (obj === null) { if (strictNullHandling) { return encoder && !encodeValuesOnly ? encoder(prefix) : prefix; } obj = ''; } if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean' || utils.isBuffer(obj)) { if (encoder) { var keyValue = encodeValuesOnly ? prefix : encoder(prefix); return [formatter(keyValue) + '=' + formatter(encoder(obj))]; } return [formatter(prefix) + '=' + formatter(String(obj))]; } var values = []; if (typeof obj === 'undefined') { return values; } var objKeys; if (Array.isArray(filter)) { objKeys = filter; } else { var keys = Object.keys(obj); objKeys = sort ? keys.sort(sort) : keys; } for (var i = 0; i < objKeys.length; ++i) { var key = objKeys[i]; if (skipNulls && obj[key] === null) { continue; } if (Array.isArray(obj)) { values = values.concat(stringify( obj[key], generateArrayPrefix(prefix, key), generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } else { values = values.concat(stringify( obj[key], prefix + (allowDots ? '.' + key : '[' + key + ']'), generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } } return values; }; module.exports = function (object, opts) { var obj = object; var options = opts || {}; if (options.encoder !== null && options.encoder !== undefined && typeof options.encoder !== 'function') { throw new TypeError('Encoder has to be a function.'); } var delimiter = typeof options.delimiter === 'undefined' ? defaults.delimiter : options.delimiter; var strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling; var skipNulls = typeof options.skipNulls === 'boolean' ? options.skipNulls : defaults.skipNulls; var encode = typeof options.encode === 'boolean' ? options.encode : defaults.encode; var encoder = typeof options.encoder === 'function' ? options.encoder : defaults.encoder; var sort = typeof options.sort === 'function' ? options.sort : null; var allowDots = typeof options.allowDots === 'undefined' ? false : options.allowDots; var serializeDate = typeof options.serializeDate === 'function' ? options.serializeDate : defaults.serializeDate; var encodeValuesOnly = typeof options.encodeValuesOnly === 'boolean' ? options.encodeValuesOnly : defaults.encodeValuesOnly; if (typeof options.format === 'undefined') { options.format = formats.default; } else if (!Object.prototype.hasOwnProperty.call(formats.formatters, options.format)) { throw new TypeError('Unknown format option provided.'); } var formatter = formats.formatters[options.format]; var objKeys; var filter; if (typeof options.filter === 'function') { filter = options.filter; obj = filter('', obj); } else if (Array.isArray(options.filter)) { filter = options.filter; objKeys = filter; } var keys = []; if (typeof obj !== 'object' || obj === null) { return ''; } var arrayFormat; if (options.arrayFormat in arrayPrefixGenerators) { arrayFormat = options.arrayFormat; } else if ('indices' in options) { arrayFormat = options.indices ? 'indices' : 'repeat'; } else { arrayFormat = 'indices'; } var generateArrayPrefix = arrayPrefixGenerators[arrayFormat]; if (!objKeys) { objKeys = Object.keys(obj); } if (sort) { objKeys.sort(sort); } for (var i = 0; i < objKeys.length; ++i) { var key = objKeys[i]; if (skipNulls && obj[key] === null) { continue; } keys = keys.concat(stringify( obj[key], key, generateArrayPrefix, strictNullHandling, skipNulls, encode ? encoder : null, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } return keys.join(delimiter); }; },{"./formats":1,"./utils":5}],5:[function(require,module,exports){ 'use strict'; var has = Object.prototype.hasOwnProperty; var hexTable = (function () { var array = []; for (var i = 0; i < 256; ++i) { array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); } return array; }()); exports.arrayToObject = function (source, options) { var obj = options && options.plainObjects ? Object.create(null) : {}; for (var i = 0; i < source.length; ++i) { if (typeof source[i] !== 'undefined') { obj[i] = source[i]; } } return obj; }; exports.merge = function (target, source, options) { if (!source) { return target; } if (typeof source !== 'object') { if (Array.isArray(target)) { target.push(source); } else if (typeof target === 'object') { if (options.plainObjects || options.allowPrototypes || !has.call(Object.prototype, source)) { target[source] = true; } } else { return [target, source]; } return target; } if (typeof target !== 'object') { return [target].concat(source); } var mergeTarget = target; if (Array.isArray(target) && !Array.isArray(source)) { mergeTarget = exports.arrayToObject(target, options); } if (Array.isArray(target) && Array.isArray(source)) { source.forEach(function (item, i) { if (has.call(target, i)) { if (target[i] && typeof target[i] === 'object') { target[i] = exports.merge(target[i], item, options); } else { target.push(item); } } else { target[i] = item; } }); return target; } return Object.keys(source).reduce(function (acc, key) { var value = source[key]; if (Object.prototype.hasOwnProperty.call(acc, key)) { acc[key] = exports.merge(acc[key], value, options); } else { acc[key] = value; } return acc; }, mergeTarget); }; exports.decode = function (str) { try { return decodeURIComponent(str.replace(/\+/g, ' ')); } catch (e) { return str; } }; exports.encode = function (str) { // This code was originally written by Brian White (mscdex) for the io.js core querystring library. // It has been adapted here for stricter adherence to RFC 3986 if (str.length === 0) { return str; } var string = typeof str === 'string' ? str : String(str); var out = ''; for (var i = 0; i < string.length; ++i) { var c = string.charCodeAt(i); if ( c === 0x2D || // - c === 0x2E || // . c === 0x5F || // _ c === 0x7E || // ~ (c >= 0x30 && c <= 0x39) || // 0-9 (c >= 0x41 && c <= 0x5A) || // a-z (c >= 0x61 && c <= 0x7A) // A-Z ) { out += string.charAt(i); continue; } if (c < 0x80) { out = out + hexTable[c]; continue; } if (c < 0x800) { out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]); continue; } if (c < 0xD800 || c >= 0xE000) { out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]); continue; } i += 1; c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF)); out += hexTable[0xF0 | (c >> 18)] + hexTable[0x80 | ((c >> 12) & 0x3F)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]; // eslint-disable-line max-len } return out; }; exports.compact = function (obj, references) { if (typeof obj !== 'object' || obj === null) { return obj; } var refs = references || []; var lookup = refs.indexOf(obj); if (lookup !== -1) { return refs[lookup]; } refs.push(obj); if (Array.isArray(obj)) { var compacted = []; for (var i = 0; i < obj.length; ++i) { if (obj[i] && typeof obj[i] === 'object') { compacted.push(exports.compact(obj[i], refs)); } else if (typeof obj[i] !== 'undefined') { compacted.push(obj[i]); } } return compacted; } var keys = Object.keys(obj); keys.forEach(function (key) { obj[key] = exports.compact(obj[key], refs); }); return obj; }; exports.isRegExp = function (obj) { return Object.prototype.toString.call(obj) === '[object RegExp]'; }; exports.isBuffer = function (obj) { if (obj === null || typeof obj === 'undefined') { return false; } return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); }; },{}]},{},[2])(2) });

node_modules/qs/lib/formats.js

'use strict'; var replace = String.prototype.replace; var percentTwenties = /%20/g; module.exports = { 'default': 'RFC3986', formatters: { RFC1738: function (value) { return replace.call(value, percentTwenties, '+'); }, RFC3986: function (value) { return value; } }, RFC1738: 'RFC1738', RFC3986: 'RFC3986' };

node_modules/qs/lib/index.js

'use strict'; var stringify = require('./stringify'); var parse = require('./parse'); var formats = require('./formats'); module.exports = { formats: formats, parse: parse, stringify: stringify };

node_modules/qs/lib/parse.js

'use strict'; var utils = require('./utils'); var has = Object.prototype.hasOwnProperty; var defaults = { allowDots: false, allowPrototypes: false, arrayLimit: 20, decoder: utils.decode, delimiter: '&', depth: 5, parameterLimit: 1000, plainObjects: false, strictNullHandling: false }; var parseValues = function parseQueryStringValues(str, options) { var obj = {}; var parts = str.split(options.delimiter, options.parameterLimit === Infinity ? undefined : options.parameterLimit); for (var i = 0; i < parts.length; ++i) { var part = parts[i]; var pos = part.indexOf(']=') === -1 ? part.indexOf('=') : part.indexOf(']=') + 1; var key, val; if (pos === -1) { key = options.decoder(part); val = options.strictNullHandling ? null : ''; } else { key = options.decoder(part.slice(0, pos)); val = options.decoder(part.slice(pos + 1)); } if (has.call(obj, key)) { obj[key] = [].concat(obj[key]).concat(val); } else { obj[key] = val; } } return obj; }; var parseObject = function parseObjectRecursive(chain, val, options) { if (!chain.length) { return val; } var root = chain.shift(); var obj; if (root === '[]') { obj = []; obj = obj.concat(parseObject(chain, val, options)); } else { obj = options.plainObjects ? Object.create(null) : {}; var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root; var index = parseInt(cleanRoot, 10); if ( !isNaN(index) && root !== cleanRoot && String(index) === cleanRoot && index >= 0 && (options.parseArrays && index <= options.arrayLimit) ) { obj = []; obj[index] = parseObject(chain, val, options); } else { obj[cleanRoot] = parseObject(chain, val, options); } } return obj; }; var parseKeys = function parseQueryStringKeys(givenKey, val, options) { if (!givenKey) { return; } // Transform dot notation to bracket notation var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey; // The regex chunks var brackets = /(\[[^[\]]*])/; var child = /(\[[^[\]]*])/g; // Get the parent var segment = brackets.exec(key); var parent = segment ? key.slice(0, segment.index) : key; // Stash the parent if it exists var keys = []; if (parent) { // If we aren't using plain objects, optionally prefix keys // that would overwrite object prototype properties if (!options.plainObjects && has.call(Object.prototype, parent)) { if (!options.allowPrototypes) { return; } } keys.push(parent); } // Loop through children appending to the array until we hit depth var i = 0; while ((segment = child.exec(key)) !== null && i < options.depth) { i += 1; if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) { if (!options.allowPrototypes) { return; } } keys.push(segment[1]); } // If there's a remainder, just add whatever is left if (segment) { keys.push('[' + key.slice(segment.index) + ']'); } return parseObject(keys, val, options); }; module.exports = function (str, opts) { var options = opts || {}; if (options.decoder !== null && options.decoder !== undefined && typeof options.decoder !== 'function') { throw new TypeError('Decoder has to be a function.'); } options.delimiter = typeof options.delimiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter; options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth; options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayLimit; options.parseArrays = options.parseArrays !== false; options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder; options.allowDots = typeof options.allowDots === 'boolean' ? options.allowDots : defaults.allowDots; options.plainObjects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects; options.allowPrototypes = typeof options.allowPrototypes === 'boolean' ? options.allowPrototypes : defaults.allowPrototypes; options.parameterLimit = typeof options.parameterLimit === 'number' ? options.parameterLimit : defaults.parameterLimit; options.strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling; if (str === '' || str === null || typeof str === 'undefined') { return options.plainObjects ? Object.create(null) : {}; } var tempObj = typeof str === 'string' ? parseValues(str, options) : str; var obj = options.plainObjects ? Object.create(null) : {}; // Iterate over the keys and setup the new object var keys = Object.keys(tempObj); for (var i = 0; i < keys.length; ++i) { var key = keys[i]; var newObj = parseKeys(key, tempObj[key], options); obj = utils.merge(obj, newObj, options); } return utils.compact(obj); };

node_modules/qs/lib/stringify.js

'use strict'; var utils = require('./utils'); var formats = require('./formats'); var arrayPrefixGenerators = { brackets: function brackets(prefix) { // eslint-disable-line func-name-matching return prefix + '[]'; }, indices: function indices(prefix, key) { // eslint-disable-line func-name-matching return prefix + '[' + key + ']'; }, repeat: function repeat(prefix) { // eslint-disable-line func-name-matching return prefix; } }; var toISO = Date.prototype.toISOString; var defaults = { delimiter: '&', encode: true, encoder: utils.encode, encodeValuesOnly: false, serializeDate: function serializeDate(date) { // eslint-disable-line func-name-matching return toISO.call(date); }, skipNulls: false, strictNullHandling: false }; var stringify = function stringify( // eslint-disable-line func-name-matching object, prefix, generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly ) { var obj = object; if (typeof filter === 'function') { obj = filter(prefix, obj); } else if (obj instanceof Date) { obj = serializeDate(obj); } else if (obj === null) { if (strictNullHandling) { return encoder && !encodeValuesOnly ? encoder(prefix) : prefix; } obj = ''; } if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean' || utils.isBuffer(obj)) { if (encoder) { var keyValue = encodeValuesOnly ? prefix : encoder(prefix); return [formatter(keyValue) + '=' + formatter(encoder(obj))]; } return [formatter(prefix) + '=' + formatter(String(obj))]; } var values = []; if (typeof obj === 'undefined') { return values; } var objKeys; if (Array.isArray(filter)) { objKeys = filter; } else { var keys = Object.keys(obj); objKeys = sort ? keys.sort(sort) : keys; } for (var i = 0; i < objKeys.length; ++i) { var key = objKeys[i]; if (skipNulls && obj[key] === null) { continue; } if (Array.isArray(obj)) { values = values.concat(stringify( obj[key], generateArrayPrefix(prefix, key), generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } else { values = values.concat(stringify( obj[key], prefix + (allowDots ? '.' + key : '[' + key + ']'), generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } } return values; }; module.exports = function (object, opts) { var obj = object; var options = opts || {}; if (options.encoder !== null && options.encoder !== undefined && typeof options.encoder !== 'function') { throw new TypeError('Encoder has to be a function.'); } var delimiter = typeof options.delimiter === 'undefined' ? defaults.delimiter : options.delimiter; var strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling; var skipNulls = typeof options.skipNulls === 'boolean' ? options.skipNulls : defaults.skipNulls; var encode = typeof options.encode === 'boolean' ? options.encode : defaults.encode; var encoder = typeof options.encoder === 'function' ? options.encoder : defaults.encoder; var sort = typeof options.sort === 'function' ? options.sort : null; var allowDots = typeof options.allowDots === 'undefined' ? false : options.allowDots; var serializeDate = typeof options.serializeDate === 'function' ? options.serializeDate : defaults.serializeDate; var encodeValuesOnly = typeof options.encodeValuesOnly === 'boolean' ? options.encodeValuesOnly : defaults.encodeValuesOnly; if (typeof options.format === 'undefined') { options.format = formats.default; } else if (!Object.prototype.hasOwnProperty.call(formats.formatters, options.format)) { throw new TypeError('Unknown format option provided.'); } var formatter = formats.formatters[options.format]; var objKeys; var filter; if (typeof options.filter === 'function') { filter = options.filter; obj = filter('', obj); } else if (Array.isArray(options.filter)) { filter = options.filter; objKeys = filter; } var keys = []; if (typeof obj !== 'object' || obj === null) { return ''; } var arrayFormat; if (options.arrayFormat in arrayPrefixGenerators) { arrayFormat = options.arrayFormat; } else if ('indices' in options) { arrayFormat = options.indices ? 'indices' : 'repeat'; } else { arrayFormat = 'indices'; } var generateArrayPrefix = arrayPrefixGenerators[arrayFormat]; if (!objKeys) { objKeys = Object.keys(obj); } if (sort) { objKeys.sort(sort); } for (var i = 0; i < objKeys.length; ++i) { var key = objKeys[i]; if (skipNulls && obj[key] === null) { continue; } keys = keys.concat(stringify( obj[key], key, generateArrayPrefix, strictNullHandling, skipNulls, encode ? encoder : null, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } return keys.join(delimiter); };

node_modules/qs/lib/utils.js

'use strict'; var has = Object.prototype.hasOwnProperty; var hexTable = (function () { var array = []; for (var i = 0; i < 256; ++i) { array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); } return array; }()); exports.arrayToObject = function (source, options) { var obj = options && options.plainObjects ? Object.create(null) : {}; for (var i = 0; i < source.length; ++i) { if (typeof source[i] !== 'undefined') { obj[i] = source[i]; } } return obj; }; exports.merge = function (target, source, options) { if (!source) { return target; } if (typeof source !== 'object') { if (Array.isArray(target)) { target.push(source); } else if (typeof target === 'object') { if (options.plainObjects || options.allowPrototypes || !has.call(Object.prototype, source)) { target[source] = true; } } else { return [target, source]; } return target; } if (typeof target !== 'object') { return [target].concat(source); } var mergeTarget = target; if (Array.isArray(target) && !Array.isArray(source)) { mergeTarget = exports.arrayToObject(target, options); } if (Array.isArray(target) && Array.isArray(source)) { source.forEach(function (item, i) { if (has.call(target, i)) { if (target[i] && typeof target[i] === 'object') { target[i] = exports.merge(target[i], item, options); } else { target.push(item); } } else { target[i] = item; } }); return target; } return Object.keys(source).reduce(function (acc, key) { var value = source[key]; if (Object.prototype.hasOwnProperty.call(acc, key)) { acc[key] = exports.merge(acc[key], value, options); } else { acc[key] = value; } return acc; }, mergeTarget); }; exports.decode = function (str) { try { return decodeURIComponent(str.replace(/\+/g, ' ')); } catch (e) { return str; } }; exports.encode = function (str) { // This code was originally written by Brian White (mscdex) for the io.js core querystring library. // It has been adapted here for stricter adherence to RFC 3986 if (str.length === 0) { return str; } var string = typeof str === 'string' ? str : String(str); var out = ''; for (var i = 0; i < string.length; ++i) { var c = string.charCodeAt(i); if ( c === 0x2D || // - c === 0x2E || // . c === 0x5F || // _ c === 0x7E || // ~ (c >= 0x30 && c <= 0x39) || // 0-9 (c >= 0x41 && c <= 0x5A) || // a-z (c >= 0x61 && c <= 0x7A) // A-Z ) { out += string.charAt(i); continue; } if (c < 0x80) { out = out + hexTable[c]; continue; } if (c < 0x800) { out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]); continue; } if (c < 0xD800 || c >= 0xE000) { out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]); continue; } i += 1; c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF)); out += hexTable[0xF0 | (c >> 18)] + hexTable[0x80 | ((c >> 12) & 0x3F)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]; // eslint-disable-line max-len } return out; }; exports.compact = function (obj, references) { if (typeof obj !== 'object' || obj === null) { return obj; } var refs = references || []; var lookup = refs.indexOf(obj); if (lookup !== -1) { return refs[lookup]; } refs.push(obj); if (Array.isArray(obj)) { var compacted = []; for (var i = 0; i < obj.length; ++i) { if (obj[i] && typeof obj[i] === 'object') { compacted.push(exports.compact(obj[i], refs)); } else if (typeof obj[i] !== 'undefined') { compacted.push(obj[i]); } } return compacted; } var keys = Object.keys(obj); keys.forEach(function (key) { obj[key] = exports.compact(obj[key], refs); }); return obj; }; exports.isRegExp = function (obj) { return Object.prototype.toString.call(obj) === '[object RegExp]'; }; exports.isBuffer = function (obj) { if (obj === null || typeof obj === 'undefined') { return false; } return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); };

node_modules/qs/LICENSE

Copyright (c) 2014 Nathan LaFreniere and other contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * * The complete list of contributors can be found at: https://github.com/hapijs/qs/graphs/contributors

node_modules/qs/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "qs", "name": "qs", "rawSpec": "6.4.0", "spec": "6.4.0", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/qs", "_nodeVersion": "7.7.1", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/qs-6.4.0.tgz_1488783808282_0.7979955193586648" }, "_npmUser": { "name": "ljharb", "email": "[email protected]" }, "_npmVersion": "4.1.2", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "qs", "name": "qs", "rawSpec": "6.4.0", "spec": "6.4.0", "type": "version" }, "_requiredBy": [ "/body-parser" ], "_resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", "_shasum": "13e26d28ad6b0ffaa91312cd3bf708ed351e7233", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "bugs": { "url": "https://github.com/ljharb/qs/issues" }, "contributors": [ { "name": "Jordan Harband", "email": "[email protected]", "url": "http://ljharb.codes" } ], "dependencies": {}, "description": "A querystring parser that supports nesting and arrays, with a depth limit", "devDependencies": { "@ljharb/eslint-config": "^11.0.0", "browserify": "^14.1.0", "covert": "^1.1.0", "eslint": "^3.17.0", "evalmd": "^0.0.17", "iconv-lite": "^0.4.15", "mkdirp": "^0.5.1", "parallelshell": "^2.0.0", "qs-iconv": "^1.0.4", "safe-publish-latest": "^1.1.1", "tape": "^4.6.3" }, "directories": {}, "dist": { "shasum": "13e26d28ad6b0ffaa91312cd3bf708ed351e7233", "tarball": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz" }, "engines": { "node": ">=0.6" }, "gitHead": "c7f87b8d2eedd377f6ace065655201f51bee6334", "homepage": "https://github.com/ljharb/qs", "keywords": [ "querystring", "qs" ], "license": "BSD-3-Clause", "main": "lib/index.js", "maintainers": [ { "name": "hueniverse", "email": "[email protected]" }, { "name": "ljharb", "email": "[email protected]" }, { "name": "nlf", "email": "[email protected]" } ], "name": "qs", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/ljharb/qs.git" }, "scripts": { "coverage": "covert test", "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js", "lint": "eslint lib/*.js test/*.js", "prepublish": "safe-publish-latest && npm run dist", "pretest": "npm run --silent readme && npm run --silent lint", "readme": "evalmd README.md", "test": "npm run --silent coverage", "tests-only": "node test" }, "version": "6.4.0" }

node_modules/qs/README.md

# qs A querystring parsing and stringifying library with some added security. [![Build Status](https://api.travis-ci.org/ljharb/qs.svg)](http://travis-ci.org/ljharb/qs) Lead Maintainer: [Jordan Harband](https://github.com/ljharb) The **qs** module was originally created and maintained by [TJ Holowaychuk](https://github.com/visionmedia/node-querystring). ## Usage ```javascript var qs = require('qs'); var assert = require('assert'); var obj = qs.parse('a=c'); assert.deepEqual(obj, { a: 'c' }); var str = qs.stringify(obj); assert.equal(str, 'a=c'); ``` ### Parsing Objects [](#preventEval) ```javascript qs.parse(string, [options]); ``` **qs** allows you to create nested objects within your query strings, by surrounding the name of sub-keys with square brackets `[]`. For example, the string `'foo[bar]=baz'` converts to: ```javascript assert.deepEqual(qs.parse('foo[bar]=baz'), { foo: { bar: 'baz' } }); ``` When using the `plainObjects` option the parsed value is returned as a null object, created via `Object.create(null)` and as such you should be aware that prototype methods will not exist on it and a user may set those names to whatever value they like: ```javascript var nullObject = qs.parse('a[hasOwnProperty]=b', { plainObjects: true }); assert.deepEqual(nullObject, { a: { hasOwnProperty: 'b' } }); ``` By default parameters that would overwrite properties on the object prototype are ignored, if you wish to keep the data from those fields either use `plainObjects` as mentioned above, or set `allowPrototypes` to `true` which will allow user input to overwrite those properties. *WARNING* It is generally a bad idea to enable this option as it can cause problems when attempting to use the properties that have been overwritten. Always be careful with this option. ```javascript var protoObject = qs.parse('a[hasOwnProperty]=b', { allowPrototypes: true }); assert.deepEqual(protoObject, { a: { hasOwnProperty: 'b' } }); ``` URI encoded strings work too: ```javascript assert.deepEqual(qs.parse('a%5Bb%5D=c'), { a: { b: 'c' } }); ``` You can also nest your objects, like `'foo[bar][baz]=foobarbaz'`: ```javascript assert.deepEqual(qs.parse('foo[bar][baz]=foobarbaz'), { foo: { bar: { baz: 'foobarbaz' } } }); ``` By default, when nesting objects **qs** will only parse up to 5 children deep. This means if you attempt to parse a string like `'a[b][c][d][e][f][g][h][i]=j'` your resulting object will be: ```javascript var expected = { a: { b: { c: { d: { e: { f: { '[g][h][i]': 'j' } } } } } } }; var string = 'a[b][c][d][e][f][g][h][i]=j'; assert.deepEqual(qs.parse(string), expected); ``` This depth can be overridden by passing a `depth` option to `qs.parse(string, [options])`: ```javascript var deep = qs.parse('a[b][c][d][e][f][g][h][i]=j', { depth: 1 }); assert.deepEqual(deep, { a: { b: { '[c][d][e][f][g][h][i]': 'j' } } }); ``` The depth limit helps mitigate abuse when **qs** is used to parse user input, and it is recommended to keep it a reasonably small number. For similar reasons, by default **qs** will only parse up to 1000 parameters. This can be overridden by passing a `parameterLimit` option: ```javascript var limited = qs.parse('a=b&c=d', { parameterLimit: 1 }); assert.deepEqual(limited, { a: 'b' }); ``` An optional delimiter can also be passed: ```javascript var delimited = qs.parse('a=b;c=d', { delimiter: ';' }); assert.deepEqual(delimited, { a: 'b', c: 'd' }); ``` Delimiters can be a regular expression too: ```javascript var regexed = qs.parse('a=b;c=d,e=f', { delimiter: /[;,]/ }); assert.deepEqual(regexed, { a: 'b', c: 'd', e: 'f' }); ``` Option `allowDots` can be used to enable dot notation: ```javascript var withDots = qs.parse('a.b=c', { allowDots: true }); assert.deepEqual(withDots, { a: { b: 'c' } }); ``` ### Parsing Arrays **qs** can also parse arrays using a similar `[]` notation: ```javascript var withArray = qs.parse('a[]=b&a[]=c'); assert.deepEqual(withArray, { a: ['b', 'c'] }); ``` You may specify an index as well: ```javascript var withIndexes = qs.parse('a[1]=c&a[0]=b'); assert.deepEqual(withIndexes, { a: ['b', 'c'] }); ``` Note that the only difference between an index in an array and a key in an object is that the value between the brackets must be a number to create an array. When creating arrays with specific indices, **qs** will compact a sparse array to only the existing values preserving their order: ```javascript var noSparse = qs.parse('a[1]=b&a[15]=c'); assert.deepEqual(noSparse, { a: ['b', 'c'] }); ``` Note that an empty string is also a value, and will be preserved: ```javascript var withEmptyString = qs.parse('a[]=&a[]=b'); assert.deepEqual(withEmptyString, { a: ['', 'b'] }); var withIndexedEmptyString = qs.parse('a[0]=b&a[1]=&a[2]=c'); assert.deepEqual(withIndexedEmptyString, { a: ['b', '', 'c'] }); ``` **qs** will also limit specifying indices in an array to a maximum index of `20`. Any array members with an index of greater than `20` will instead be converted to an object with the index as the key: ```javascript var withMaxIndex = qs.parse('a[100]=b'); assert.deepEqual(withMaxIndex, { a: { '100': 'b' } }); ``` This limit can be overridden by passing an `arrayLimit` option: ```javascript var withArrayLimit = qs.parse('a[1]=b', { arrayLimit: 0 }); assert.deepEqual(withArrayLimit, { a: { '1': 'b' } }); ``` To disable array parsing entirely, set `parseArrays` to `false`. ```javascript var noParsingArrays = qs.parse('a[]=b', { parseArrays: false }); assert.deepEqual(noParsingArrays, { a: { '0': 'b' } }); ``` If you mix notations, **qs** will merge the two items into an object: ```javascript var mixedNotation = qs.parse('a[0]=b&a[b]=c'); assert.deepEqual(mixedNotation, { a: { '0': 'b', b: 'c' } }); ``` You can also create arrays of objects: ```javascript var arraysOfObjects = qs.parse('a[][b]=c'); assert.deepEqual(arraysOfObjects, { a: [{ b: 'c' }] }); ``` ### Stringifying [](#preventEval) ```javascript qs.stringify(object, [options]); ``` When stringifying, **qs** by default URI encodes output. Objects are stringified as you would expect: ```javascript assert.equal(qs.stringify({ a: 'b' }), 'a=b'); assert.equal(qs.stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c'); ``` This encoding can be disabled by setting the `encode` option to `false`: ```javascript var unencoded = qs.stringify({ a: { b: 'c' } }, { encode: false }); assert.equal(unencoded, 'a[b]=c'); ``` Encoding can be disabled for keys by setting the `encodeValuesOnly` option to `true`: ```javascript var encodedValues = qs.stringify( { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, { encodeValuesOnly: true } ) assert.equal(encodedValues,'a=b&c[0]=d&c[1]=e%3Df&f[0][0]=g&f[1][0]=h'); ``` This encoding can also be replaced by a custom encoding method set as `encoder` option: ```javascript var encoded = qs.stringify({ a: { b: 'c' } }, { encoder: function (str) { // Passed in values `a`, `b`, `c` return // Return encoded string }}) ``` _(Note: the `encoder` option does not apply if `encode` is `false`)_ Analogue to the `encoder` there is a `decoder` option for `parse` to override decoding of properties and values: ```javascript var decoded = qs.parse('x=z', { decoder: function (str) { // Passed in values `x`, `z` return // Return decoded string }}) ``` Examples beyond this point will be shown as though the output is not URI encoded for clarity. Please note that the return values in these cases *will* be URI encoded during real usage. When arrays are stringified, by default they are given explicit indices: ```javascript qs.stringify({ a: ['b', 'c', 'd'] }); // 'a[0]=b&a[1]=c&a[2]=d' ``` You may override this by setting the `indices` option to `false`: ```javascript qs.stringify({ a: ['b', 'c', 'd'] }, { indices: false }); // 'a=b&a=c&a=d' ``` You may use the `arrayFormat` option to specify the format of the output array: ```javascript qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }) // 'a[0]=b&a[1]=c' qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }) // 'a[]=b&a[]=c' qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }) // 'a=b&a=c' ``` When objects are stringified, by default they use bracket notation: ```javascript qs.stringify({ a: { b: { c: 'd', e: 'f' } } }); // 'a[b][c]=d&a[b][e]=f' ``` You may override this to use dot notation by setting the `allowDots` option to `true`: ```javascript qs.stringify({ a: { b: { c: 'd', e: 'f' } } }, { allowDots: true }); // 'a.b.c=d&a.b.e=f' ``` Empty strings and null values will omit the value, but the equals sign (=) remains in place: ```javascript assert.equal(qs.stringify({ a: '' }), 'a='); ``` Key with no values (such as an empty object or array) will return nothing: ```javascript assert.equal(qs.stringify({ a: [] }), ''); assert.equal(qs.stringify({ a: {} }), ''); assert.equal(qs.stringify({ a: [{}] }), ''); assert.equal(qs.stringify({ a: { b: []} }), ''); assert.equal(qs.stringify({ a: { b: {}} }), ''); ``` Properties that are set to `undefined` will be omitted entirely: ```javascript assert.equal(qs.stringify({ a: null, b: undefined }), 'a='); ``` The delimiter may be overridden with stringify as well: ```javascript assert.equal(qs.stringify({ a: 'b', c: 'd' }, { delimiter: ';' }), 'a=b;c=d'); ``` If you only want to override the serialization of `Date` objects, you can provide a `serializeDate` option: ```javascript var date = new Date(7); assert.equal(qs.stringify({ a: date }), 'a=1970-01-01T00:00:00.007Z'.replace(/:/g, '%3A')); assert.equal( qs.stringify({ a: date }, { serializeDate: function (d) { return d.getTime(); } }), 'a=7' ); ``` You may use the `sort` option to affect the order of parameter keys: ```javascript function alphabeticalSort(a, b) { return a.localeCompare(b); } assert.equal(qs.stringify({ a: 'c', z: 'y', b : 'f' }, { sort: alphabeticalSort }), 'a=c&b=f&z=y'); ``` Finally, you can use the `filter` option to restrict which keys will be included in the stringified output. If you pass a function, it will be called for each key to obtain the replacement value. Otherwise, if you pass an array, it will be used to select properties and array indices for stringification: ```javascript function filterFunc(prefix, value) { if (prefix == 'b') { // Return an `undefined` value to omit a property. return; } if (prefix == 'e[f]') { return value.getTime(); } if (prefix == 'e[g][0]') { return value * 2; } return value; } qs.stringify({ a: 'b', c: 'd', e: { f: new Date(123), g: [2] } }, { filter: filterFunc }); // 'a=b&c=d&e[f]=123&e[g][0]=4' qs.stringify({ a: 'b', c: 'd', e: 'f' }, { filter: ['a', 'e'] }); // 'a=b&e=f' qs.stringify({ a: ['b', 'c', 'd'], e: 'f' }, { filter: ['a', 0, 2] }); // 'a[0]=b&a[2]=d' ``` ### Handling of `null` values By default, `null` values are treated like empty strings: ```javascript var withNull = qs.stringify({ a: null, b: '' }); assert.equal(withNull, 'a=&b='); ``` Parsing does not distinguish between parameters with and without equal signs. Both are converted to empty strings. ```javascript var equalsInsensitive = qs.parse('a&b='); assert.deepEqual(equalsInsensitive, { a: '', b: '' }); ``` To distinguish between `null` values and empty strings use the `strictNullHandling` flag. In the result string the `null` values have no `=` sign: ```javascript var strictNull = qs.stringify({ a: null, b: '' }, { strictNullHandling: true }); assert.equal(strictNull, 'a&b='); ``` To parse values without `=` back to `null` use the `strictNullHandling` flag: ```javascript var parsedStrictNull = qs.parse('a&b=', { strictNullHandling: true }); assert.deepEqual(parsedStrictNull, { a: null, b: '' }); ``` To completely skip rendering keys with `null` values, use the `skipNulls` flag: ```javascript var nullsSkipped = qs.stringify({ a: 'b', c: null}, { skipNulls: true }); assert.equal(nullsSkipped, 'a=b'); ``` ### Dealing with special character sets By default the encoding and decoding of characters is done in `utf-8`. If you wish to encode querystrings to a different character set (i.e. [Shift JIS](https://en.wikipedia.org/wiki/Shift_JIS)) you can use the [`qs-iconv`](https://github.com/martinheidegger/qs-iconv) library: ```javascript var encoder = require('qs-iconv/encoder')('shift_jis'); var shiftJISEncoded = qs.stringify({ a: 'こんにちは!' }, { encoder: encoder }); assert.equal(shiftJISEncoded, 'a=%82%B1%82%F1%82%C9%82%BF%82%CD%81I'); ``` This also works for decoding of query strings: ```javascript var decoder = require('qs-iconv/decoder')('shift_jis'); var obj = qs.parse('a=%82%B1%82%F1%82%C9%82%BF%82%CD%81I', { decoder: decoder }); assert.deepEqual(obj, { a: 'こんにちは!' }); ``` ### RFC 3986 and RFC 1738 space encoding RFC3986 used as default option and encodes ' ' to *%20* which is backward compatible. In the same time, output can be stringified as per RFC1738 with ' ' equal to '+'. ``` assert.equal(qs.stringify({ a: 'b c' }), 'a=b%20c'); assert.equal(qs.stringify({ a: 'b c' }, { format : 'RFC3986' }), 'a=b%20c'); assert.equal(qs.stringify({ a: 'b c' }, { format : 'RFC1738' }), 'a=b+c'); ```

node_modules/qs/test/.eslintrc

{ "rules": { "consistent-return": 2, "max-lines": 0, "max-nested-callbacks": [2, 3], "max-statements": 0, "no-extend-native": 0, "no-magic-numbers": 0, "sort-keys": 0 } }

node_modules/qs/test/index.js

'use strict'; require('./parse'); require('./stringify'); require('./utils');

node_modules/qs/test/parse.js

'use strict'; var test = require('tape'); var qs = require('../'); var iconv = require('iconv-lite'); test('parse()', function (t) { t.test('parses a simple string', function (st) { st.deepEqual(qs.parse('0=foo'), { 0: 'foo' }); st.deepEqual(qs.parse('foo=c++'), { foo: 'c ' }); st.deepEqual(qs.parse('a[>=]=23'), { a: { '>=': '23' } }); st.deepEqual(qs.parse('a[<=>]==23'), { a: { '<=>': '=23' } }); st.deepEqual(qs.parse('a[==]=23'), { a: { '==': '23' } }); st.deepEqual(qs.parse('foo', { strictNullHandling: true }), { foo: null }); st.deepEqual(qs.parse('foo'), { foo: '' }); st.deepEqual(qs.parse('foo='), { foo: '' }); st.deepEqual(qs.parse('foo=bar'), { foo: 'bar' }); st.deepEqual(qs.parse(' foo = bar = baz '), { ' foo ': ' bar = baz ' }); st.deepEqual(qs.parse('foo=bar=baz'), { foo: 'bar=baz' }); st.deepEqual(qs.parse('foo=bar&bar=baz'), { foo: 'bar', bar: 'baz' }); st.deepEqual(qs.parse('foo2=bar2&baz2='), { foo2: 'bar2', baz2: '' }); st.deepEqual(qs.parse('foo=bar&baz', { strictNullHandling: true }), { foo: 'bar', baz: null }); st.deepEqual(qs.parse('foo=bar&baz'), { foo: 'bar', baz: '' }); st.deepEqual(qs.parse('cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World'), { cht: 'p3', chd: 't:60,40', chs: '250x100', chl: 'Hello|World' }); st.end(); }); t.test('allows enabling dot notation', function (st) { st.deepEqual(qs.parse('a.b=c'), { 'a.b': 'c' }); st.deepEqual(qs.parse('a.b=c', { allowDots: true }), { a: { b: 'c' } }); st.end(); }); t.deepEqual(qs.parse('a[b]=c'), { a: { b: 'c' } }, 'parses a single nested string'); t.deepEqual(qs.parse('a[b][c]=d'), { a: { b: { c: 'd' } } }, 'parses a double nested string'); t.deepEqual( qs.parse('a[b][c][d][e][f][g][h]=i'), { a: { b: { c: { d: { e: { f: { '[g][h]': 'i' } } } } } } }, 'defaults to a depth of 5' ); t.test('only parses one level when depth = 1', function (st) { st.deepEqual(qs.parse('a[b][c]=d', { depth: 1 }), { a: { b: { '[c]': 'd' } } }); st.deepEqual(qs.parse('a[b][c][d]=e', { depth: 1 }), { a: { b: { '[c][d]': 'e' } } }); st.end(); }); t.deepEqual(qs.parse('a=b&a=c'), { a: ['b', 'c'] }, 'parses a simple array'); t.test('parses an explicit array', function (st) { st.deepEqual(qs.parse('a[]=b'), { a: ['b'] }); st.deepEqual(qs.parse('a[]=b&a[]=c'), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a[]=b&a[]=c&a[]=d'), { a: ['b', 'c', 'd'] }); st.end(); }); t.test('parses a mix of simple and explicit arrays', function (st) { st.deepEqual(qs.parse('a=b&a[]=c'), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a[]=b&a=c'), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a[0]=b&a=c'), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a=b&a[0]=c'), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a[1]=b&a=c', { arrayLimit: 20 }), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a[]=b&a=c', { arrayLimit: 0 }), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a[]=b&a=c'), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a=b&a[1]=c', { arrayLimit: 20 }), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a=b&a[]=c', { arrayLimit: 0 }), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a=b&a[]=c'), { a: ['b', 'c'] }); st.end(); }); t.test('parses a nested array', function (st) { st.deepEqual(qs.parse('a[b][]=c&a[b][]=d'), { a: { b: ['c', 'd'] } }); st.deepEqual(qs.parse('a[>=]=25'), { a: { '>=': '25' } }); st.end(); }); t.test('allows to specify array indices', function (st) { st.deepEqual(qs.parse('a[1]=c&a[0]=b&a[2]=d'), { a: ['b', 'c', 'd'] }); st.deepEqual(qs.parse('a[1]=c&a[0]=b'), { a: ['b', 'c'] }); st.deepEqual(qs.parse('a[1]=c', { arrayLimit: 20 }), { a: ['c'] }); st.deepEqual(qs.parse('a[1]=c', { arrayLimit: 0 }), { a: { 1: 'c' } }); st.deepEqual(qs.parse('a[1]=c'), { a: ['c'] }); st.end(); }); t.test('limits specific array indices to arrayLimit', function (st) { st.deepEqual(qs.parse('a[20]=a', { arrayLimit: 20 }), { a: ['a'] }); st.deepEqual(qs.parse('a[21]=a', { arrayLimit: 20 }), { a: { 21: 'a' } }); st.end(); }); t.deepEqual(qs.parse('a[12b]=c'), { a: { '12b': 'c' } }, 'supports keys that begin with a number'); t.test('supports encoded = signs', function (st) { st.deepEqual(qs.parse('he%3Dllo=th%3Dere'), { 'he=llo': 'th=ere' }); st.end(); }); t.test('is ok with url encoded strings', function (st) { st.deepEqual(qs.parse('a[b%20c]=d'), { a: { 'b c': 'd' } }); st.deepEqual(qs.parse('a[b]=c%20d'), { a: { b: 'c d' } }); st.end(); }); t.test('allows brackets in the value', function (st) { st.deepEqual(qs.parse('pets=["tobi"]'), { pets: '["tobi"]' }); st.deepEqual(qs.parse('operators=[">=", "<="]'), { operators: '[">=", "<="]' }); st.end(); }); t.test('allows empty values', function (st) { st.deepEqual(qs.parse(''), {}); st.deepEqual(qs.parse(null), {}); st.deepEqual(qs.parse(undefined), {}); st.end(); }); t.test('transforms arrays to objects', function (st) { st.deepEqual(qs.parse('foo[0]=bar&foo[bad]=baz'), { foo: { 0: 'bar', bad: 'baz' } }); st.deepEqual(qs.parse('foo[bad]=baz&foo[0]=bar'), { foo: { bad: 'baz', 0: 'bar' } }); st.deepEqual(qs.parse('foo[bad]=baz&foo[]=bar'), { foo: { bad: 'baz', 0: 'bar' } }); st.deepEqual(qs.parse('foo[]=bar&foo[bad]=baz'), { foo: { 0: 'bar', bad: 'baz' } }); st.deepEqual(qs.parse('foo[bad]=baz&foo[]=bar&foo[]=foo'), { foo: { bad: 'baz', 0: 'bar', 1: 'foo' } }); st.deepEqual(qs.parse('foo[0][a]=a&foo[0][b]=b&foo[1][a]=aa&foo[1][b]=bb'), { foo: [{ a: 'a', b: 'b' }, { a: 'aa', b: 'bb' }] }); st.deepEqual(qs.parse('a[]=b&a[t]=u&a[hasOwnProperty]=c', { allowPrototypes: false }), { a: { 0: 'b', t: 'u' } }); st.deepEqual(qs.parse('a[]=b&a[t]=u&a[hasOwnProperty]=c', { allowPrototypes: true }), { a: { 0: 'b', t: 'u', hasOwnProperty: 'c' } }); st.deepEqual(qs.parse('a[]=b&a[hasOwnProperty]=c&a[x]=y', { allowPrototypes: false }), { a: { 0: 'b', x: 'y' } }); st.deepEqual(qs.parse('a[]=b&a[hasOwnProperty]=c&a[x]=y', { allowPrototypes: true }), { a: { 0: 'b', hasOwnProperty: 'c', x: 'y' } }); st.end(); }); t.test('transforms arrays to objects (dot notation)', function (st) { st.deepEqual(qs.parse('foo[0].baz=bar&fool.bad=baz', { allowDots: true }), { foo: [{ baz: 'bar' }], fool: { bad: 'baz' } }); st.deepEqual(qs.parse('foo[0].baz=bar&fool.bad.boo=baz', { allowDots: true }), { foo: [{ baz: 'bar' }], fool: { bad: { boo: 'baz' } } }); st.deepEqual(qs.parse('foo[0][0].baz=bar&fool.bad=baz', { allowDots: true }), { foo: [[{ baz: 'bar' }]], fool: { bad: 'baz' } }); st.deepEqual(qs.parse('foo[0].baz[0]=15&foo[0].bar=2', { allowDots: true }), { foo: [{ baz: ['15'], bar: '2' }] }); st.deepEqual(qs.parse('foo[0].baz[0]=15&foo[0].baz[1]=16&foo[0].bar=2', { allowDots: true }), { foo: [{ baz: ['15', '16'], bar: '2' }] }); st.deepEqual(qs.parse('foo.bad=baz&foo[0]=bar', { allowDots: true }), { foo: { bad: 'baz', 0: 'bar' } }); st.deepEqual(qs.parse('foo.bad=baz&foo[]=bar', { allowDots: true }), { foo: { bad: 'baz', 0: 'bar' } }); st.deepEqual(qs.parse('foo[]=bar&foo.bad=baz', { allowDots: true }), { foo: { 0: 'bar', bad: 'baz' } }); st.deepEqual(qs.parse('foo.bad=baz&foo[]=bar&foo[]=foo', { allowDots: true }), { foo: { bad: 'baz', 0: 'bar', 1: 'foo' } }); st.deepEqual(qs.parse('foo[0].a=a&foo[0].b=b&foo[1].a=aa&foo[1].b=bb', { allowDots: true }), { foo: [{ a: 'a', b: 'b' }, { a: 'aa', b: 'bb' }] }); st.end(); }); t.test('correctly prunes undefined values when converting an array to an object', function (st) { st.deepEqual(qs.parse('a[2]=b&a[99999999]=c'), { a: { 2: 'b', 99999999: 'c' } }); st.end(); }); t.test('supports malformed uri characters', function (st) { st.deepEqual(qs.parse('{%:%}', { strictNullHandling: true }), { '{%:%}': null }); st.deepEqual(qs.parse('{%:%}='), { '{%:%}': '' }); st.deepEqual(qs.parse('foo=%:%}'), { foo: '%:%}' }); st.end(); }); t.test('doesn\'t produce empty keys', function (st) { st.deepEqual(qs.parse('_r=1&'), { _r: '1' }); st.end(); }); t.test('cannot access Object prototype', function (st) { qs.parse('constructor[prototype][bad]=bad'); qs.parse('bad[constructor][prototype][bad]=bad'); st.equal(typeof Object.prototype.bad, 'undefined'); st.end(); }); t.test('parses arrays of objects', function (st) { st.deepEqual(qs.parse('a[][b]=c'), { a: [{ b: 'c' }] }); st.deepEqual(qs.parse('a[0][b]=c'), { a: [{ b: 'c' }] }); st.end(); }); t.test('allows for empty strings in arrays', function (st) { st.deepEqual(qs.parse('a[]=b&a[]=&a[]=c'), { a: ['b', '', 'c'] }); st.deepEqual( qs.parse('a[0]=b&a[1]&a[2]=c&a[19]=', { strictNullHandling: true, arrayLimit: 20 }), { a: ['b', null, 'c', ''] }, 'with arrayLimit 20 + array indices: null then empty string works' ); st.deepEqual( qs.parse('a[]=b&a[]&a[]=c&a[]=', { strictNullHandling: true, arrayLimit: 0 }), { a: ['b', null, 'c', ''] }, 'with arrayLimit 0 + array brackets: null then empty string works' ); st.deepEqual( qs.parse('a[0]=b&a[1]=&a[2]=c&a[19]', { strictNullHandling: true, arrayLimit: 20 }), { a: ['b', '', 'c', null] }, 'with arrayLimit 20 + array indices: empty string then null works' ); st.deepEqual( qs.parse('a[]=b&a[]=&a[]=c&a[]', { strictNullHandling: true, arrayLimit: 0 }), { a: ['b', '', 'c', null] }, 'with arrayLimit 0 + array brackets: empty string then null works' ); st.deepEqual( qs.parse('a[]=&a[]=b&a[]=c'), { a: ['', 'b', 'c'] }, 'array brackets: empty strings work' ); st.end(); }); t.test('compacts sparse arrays', function (st) { st.deepEqual(qs.parse('a[10]=1&a[2]=2', { arrayLimit: 20 }), { a: ['2', '1'] }); st.deepEqual(qs.parse('a[1][b][2][c]=1', { arrayLimit: 20 }), { a: [{ b: [{ c: '1' }] }] }); st.deepEqual(qs.parse('a[1][2][3][c]=1', { arrayLimit: 20 }), { a: [[[{ c: '1' }]]] }); st.deepEqual(qs.parse('a[1][2][3][c][1]=1', { arrayLimit: 20 }), { a: [[[{ c: ['1'] }]]] }); st.end(); }); t.test('parses semi-parsed strings', function (st) { st.deepEqual(qs.parse({ 'a[b]': 'c' }), { a: { b: 'c' } }); st.deepEqual(qs.parse({ 'a[b]': 'c', 'a[d]': 'e' }), { a: { b: 'c', d: 'e' } }); st.end(); }); t.test('parses buffers correctly', function (st) { var b = new Buffer('test'); st.deepEqual(qs.parse({ a: b }), { a: b }); st.end(); }); t.test('continues parsing when no parent is found', function (st) { st.deepEqual(qs.parse('[]=&a=b'), { 0: '', a: 'b' }); st.deepEqual(qs.parse('[]&a=b', { strictNullHandling: true }), { 0: null, a: 'b' }); st.deepEqual(qs.parse('[foo]=bar'), { foo: 'bar' }); st.end(); }); t.test('does not error when parsing a very long array', function (st) { var str = 'a[]=a'; while (Buffer.byteLength(str) < 128 * 1024) { str = str + '&' + str; } st.doesNotThrow(function () { qs.parse(str); }); st.end(); }); t.test('should not throw when a native prototype has an enumerable property', { parallel: false }, function (st) { Object.prototype.crash = ''; Array.prototype.crash = ''; st.doesNotThrow(qs.parse.bind(null, 'a=b')); st.deepEqual(qs.parse('a=b'), { a: 'b' }); st.doesNotThrow(qs.parse.bind(null, 'a[][b]=c')); st.deepEqual(qs.parse('a[][b]=c'), { a: [{ b: 'c' }] }); delete Object.prototype.crash; delete Array.prototype.crash; st.end(); }); t.test('parses a string with an alternative string delimiter', function (st) { st.deepEqual(qs.parse('a=b;c=d', { delimiter: ';' }), { a: 'b', c: 'd' }); st.end(); }); t.test('parses a string with an alternative RegExp delimiter', function (st) { st.deepEqual(qs.parse('a=b; c=d', { delimiter: /[;,] */ }), { a: 'b', c: 'd' }); st.end(); }); t.test('does not use non-splittable objects as delimiters', function (st) { st.deepEqual(qs.parse('a=b&c=d', { delimiter: true }), { a: 'b', c: 'd' }); st.end(); }); t.test('allows overriding parameter limit', function (st) { st.deepEqual(qs.parse('a=b&c=d', { parameterLimit: 1 }), { a: 'b' }); st.end(); }); t.test('allows setting the parameter limit to Infinity', function (st) { st.deepEqual(qs.parse('a=b&c=d', { parameterLimit: Infinity }), { a: 'b', c: 'd' }); st.end(); }); t.test('allows overriding array limit', function (st) { st.deepEqual(qs.parse('a[0]=b', { arrayLimit: -1 }), { a: { 0: 'b' } }); st.deepEqual(qs.parse('a[-1]=b', { arrayLimit: -1 }), { a: { '-1': 'b' } }); st.deepEqual(qs.parse('a[0]=b&a[1]=c', { arrayLimit: 0 }), { a: { 0: 'b', 1: 'c' } }); st.end(); }); t.test('allows disabling array parsing', function (st) { st.deepEqual(qs.parse('a[0]=b&a[1]=c', { parseArrays: false }), { a: { 0: 'b', 1: 'c' } }); st.end(); }); t.test('parses an object', function (st) { var input = { 'user[name]': { 'pop[bob]': 3 }, 'user[email]': null }; var expected = { user: { name: { 'pop[bob]': 3 }, email: null } }; var result = qs.parse(input); st.deepEqual(result, expected); st.end(); }); t.test('parses an object in dot notation', function (st) { var input = { 'user.name': { 'pop[bob]': 3 }, 'user.email.': null }; var expected = { user: { name: { 'pop[bob]': 3 }, email: null } }; var result = qs.parse(input, { allowDots: true }); st.deepEqual(result, expected); st.end(); }); t.test('parses an object and not child values', function (st) { var input = { 'user[name]': { 'pop[bob]': { test: 3 } }, 'user[email]': null }; var expected = { user: { name: { 'pop[bob]': { test: 3 } }, email: null } }; var result = qs.parse(input); st.deepEqual(result, expected); st.end(); }); t.test('does not blow up when Buffer global is missing', function (st) { var tempBuffer = global.Buffer; delete global.Buffer; var result = qs.parse('a=b&c=d'); global.Buffer = tempBuffer; st.deepEqual(result, { a: 'b', c: 'd' }); st.end(); }); t.test('does not crash when parsing circular references', function (st) { var a = {}; a.b = a; var parsed; st.doesNotThrow(function () { parsed = qs.parse({ 'foo[bar]': 'baz', 'foo[baz]': a }); }); st.equal('foo' in parsed, true, 'parsed has "foo" property'); st.equal('bar' in parsed.foo, true); st.equal('baz' in parsed.foo, true); st.equal(parsed.foo.bar, 'baz'); st.deepEqual(parsed.foo.baz, a); st.end(); }); t.test('parses null objects correctly', { skip: !Object.create }, function (st) { var a = Object.create(null); a.b = 'c'; st.deepEqual(qs.parse(a), { b: 'c' }); var result = qs.parse({ a: a }); st.equal('a' in result, true, 'result has "a" property'); st.deepEqual(result.a, a); st.end(); }); t.test('parses dates correctly', function (st) { var now = new Date(); st.deepEqual(qs.parse({ a: now }), { a: now }); st.end(); }); t.test('parses regular expressions correctly', function (st) { var re = /^test$/; st.deepEqual(qs.parse({ a: re }), { a: re }); st.end(); }); t.test('does not allow overwriting prototype properties', function (st) { st.deepEqual(qs.parse('a[hasOwnProperty]=b', { allowPrototypes: false }), {}); st.deepEqual(qs.parse('hasOwnProperty=b', { allowPrototypes: false }), {}); st.deepEqual( qs.parse('toString', { allowPrototypes: false }), {}, 'bare "toString" results in {}' ); st.end(); }); t.test('can allow overwriting prototype properties', function (st) { st.deepEqual(qs.parse('a[hasOwnProperty]=b', { allowPrototypes: true }), { a: { hasOwnProperty: 'b' } }); st.deepEqual(qs.parse('hasOwnProperty=b', { allowPrototypes: true }), { hasOwnProperty: 'b' }); st.deepEqual( qs.parse('toString', { allowPrototypes: true }), { toString: '' }, 'bare "toString" results in { toString: "" }' ); st.end(); }); t.test('params starting with a closing bracket', function (st) { st.deepEqual(qs.parse(']=toString'), { ']': 'toString' }); st.deepEqual(qs.parse(']]=toString'), { ']]': 'toString' }); st.deepEqual(qs.parse(']hello]=toString'), { ']hello]': 'toString' }); st.end(); }); t.test('params starting with a starting bracket', function (st) { st.deepEqual(qs.parse('[=toString'), { '[': 'toString' }); st.deepEqual(qs.parse('[[=toString'), { '[[': 'toString' }); st.deepEqual(qs.parse('[hello[=toString'), { '[hello[': 'toString' }); st.end(); }); t.test('add keys to objects', function (st) { st.deepEqual( qs.parse('a[b]=c&a=d'), { a: { b: 'c', d: true } }, 'can add keys to objects' ); st.deepEqual( qs.parse('a[b]=c&a=toString'), { a: { b: 'c' } }, 'can not overwrite prototype' ); st.deepEqual( qs.parse('a[b]=c&a=toString', { allowPrototypes: true }), { a: { b: 'c', toString: true } }, 'can overwrite prototype with allowPrototypes true' ); st.deepEqual( qs.parse('a[b]=c&a=toString', { plainObjects: true }), { a: { b: 'c', toString: true } }, 'can overwrite prototype with plainObjects true' ); st.end(); }); t.test('can return null objects', { skip: !Object.create }, function (st) { var expected = Object.create(null); expected.a = Object.create(null); expected.a.b = 'c'; expected.a.hasOwnProperty = 'd'; st.deepEqual(qs.parse('a[b]=c&a[hasOwnProperty]=d', { plainObjects: true }), expected); st.deepEqual(qs.parse(null, { plainObjects: true }), Object.create(null)); var expectedArray = Object.create(null); expectedArray.a = Object.create(null); expectedArray.a[0] = 'b'; expectedArray.a.c = 'd'; st.deepEqual(qs.parse('a[]=b&a[c]=d', { plainObjects: true }), expectedArray); st.end(); }); t.test('can parse with custom encoding', function (st) { st.deepEqual(qs.parse('%8c%a7=%91%e5%8d%e3%95%7b', { decoder: function (str) { var reg = /%([0-9A-F]{2})/ig; var result = []; var parts = reg.exec(str); while (parts) { result.push(parseInt(parts[1], 16)); parts = reg.exec(str); } return iconv.decode(new Buffer(result), 'shift_jis').toString(); } }), { 県: '大阪府' }); st.end(); }); t.test('throws error with wrong decoder', function (st) { st.throws(function () { qs.parse({}, { decoder: 'string' }); }, new TypeError('Decoder has to be a function.')); st.end(); }); });

node_modules/qs/test/stringify.js

'use strict'; var test = require('tape'); var qs = require('../'); var iconv = require('iconv-lite'); test('stringify()', function (t) { t.test('stringifies a querystring object', function (st) { st.equal(qs.stringify({ a: 'b' }), 'a=b'); st.equal(qs.stringify({ a: 1 }), 'a=1'); st.equal(qs.stringify({ a: 1, b: 2 }), 'a=1&b=2'); st.equal(qs.stringify({ a: 'A_Z' }), 'a=A_Z'); st.equal(qs.stringify({ a: 'Рѓг' }), 'a=%E2%82%AC'); st.equal(qs.stringify({ a: 'Ьђђ' }), 'a=%EE%80%80'); st.equal(qs.stringify({ a: 'Ољ' }), 'a=%D7%90'); st.equal(qs.stringify({ a: '­љљи' }), 'a=%F0%90%90%B7'); st.end(); }); t.test('stringifies a nested object', function (st) { st.equal(qs.stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c'); st.equal(qs.stringify({ a: { b: { c: { d: 'e' } } } }), 'a%5Bb%5D%5Bc%5D%5Bd%5D=e'); st.end(); }); t.test('stringifies a nested object with dots notation', function (st) { st.equal(qs.stringify({ a: { b: 'c' } }, { allowDots: true }), 'a.b=c'); st.equal(qs.stringify({ a: { b: { c: { d: 'e' } } } }, { allowDots: true }), 'a.b.c.d=e'); st.end(); }); t.test('stringifies an array value', function (st) { st.equal( qs.stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'indices' }), 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d', 'indices => indices' ); st.equal( qs.stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'brackets' }), 'a%5B%5D=b&a%5B%5D=c&a%5B%5D=d', 'brackets => brackets' ); st.equal( qs.stringify({ a: ['b', 'c', 'd'] }), 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d', 'default => indices' ); st.end(); }); t.test('omits nulls when asked', function (st) { st.equal(qs.stringify({ a: 'b', c: null }, { skipNulls: true }), 'a=b'); st.end(); }); t.test('omits nested nulls when asked', function (st) { st.equal(qs.stringify({ a: { b: 'c', d: null } }, { skipNulls: true }), 'a%5Bb%5D=c'); st.end(); }); t.test('omits array indices when asked', function (st) { st.equal(qs.stringify({ a: ['b', 'c', 'd'] }, { indices: false }), 'a=b&a=c&a=d'); st.end(); }); t.test('stringifies a nested array value', function (st) { st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { arrayFormat: 'indices' }), 'a%5Bb%5D%5B0%5D=c&a%5Bb%5D%5B1%5D=d'); st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { arrayFormat: 'brackets' }), 'a%5Bb%5D%5B%5D=c&a%5Bb%5D%5B%5D=d'); st.equal(qs.stringify({ a: { b: ['c', 'd'] } }), 'a%5Bb%5D%5B0%5D=c&a%5Bb%5D%5B1%5D=d'); st.end(); }); t.test('stringifies a nested array value with dots notation', function (st) { st.equal( qs.stringify( { a: { b: ['c', 'd'] } }, { allowDots: true, encode: false, arrayFormat: 'indices' } ), 'a.b[0]=c&a.b[1]=d', 'indices: stringifies with dots + indices' ); st.equal( qs.stringify( { a: { b: ['c', 'd'] } }, { allowDots: true, encode: false, arrayFormat: 'brackets' } ), 'a.b[]=c&a.b[]=d', 'brackets: stringifies with dots + brackets' ); st.equal( qs.stringify( { a: { b: ['c', 'd'] } }, { allowDots: true, encode: false } ), 'a.b[0]=c&a.b[1]=d', 'default: stringifies with dots + indices' ); st.end(); }); t.test('stringifies an object inside an array', function (st) { st.equal( qs.stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'indices' }), 'a%5B0%5D%5Bb%5D=c', 'indices => brackets' ); st.equal( qs.stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'brackets' }), 'a%5B%5D%5Bb%5D=c', 'brackets => brackets' ); st.equal( qs.stringify({ a: [{ b: 'c' }] }), 'a%5B0%5D%5Bb%5D=c', 'default => indices' ); st.equal( qs.stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'indices' }), 'a%5B0%5D%5Bb%5D%5Bc%5D%5B0%5D=1', 'indices => indices' ); st.equal( qs.stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'brackets' }), 'a%5B%5D%5Bb%5D%5Bc%5D%5B%5D=1', 'brackets => brackets' ); st.equal( qs.stringify({ a: [{ b: { c: [1] } }] }), 'a%5B0%5D%5Bb%5D%5Bc%5D%5B0%5D=1', 'default => indices' ); st.end(); }); t.test('stringifies an array with mixed objects and primitives', function (st) { st.equal( qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encode: false, arrayFormat: 'indices' }), 'a[0][b]=1&a[1]=2&a[2]=3', 'indices => indices' ); st.equal( qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encode: false, arrayFormat: 'brackets' }), 'a[][b]=1&a[]=2&a[]=3', 'brackets => brackets' ); st.equal( qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encode: false }), 'a[0][b]=1&a[1]=2&a[2]=3', 'default => indices' ); st.end(); }); t.test('stringifies an object inside an array with dots notation', function (st) { st.equal( qs.stringify( { a: [{ b: 'c' }] }, { allowDots: true, encode: false, arrayFormat: 'indices' } ), 'a[0].b=c', 'indices => indices' ); st.equal( qs.stringify( { a: [{ b: 'c' }] }, { allowDots: true, encode: false, arrayFormat: 'brackets' } ), 'a[].b=c', 'brackets => brackets' ); st.equal( qs.stringify( { a: [{ b: 'c' }] }, { allowDots: true, encode: false } ), 'a[0].b=c', 'default => indices' ); st.equal( qs.stringify( { a: [{ b: { c: [1] } }] }, { allowDots: true, encode: false, arrayFormat: 'indices' } ), 'a[0].b.c[0]=1', 'indices => indices' ); st.equal( qs.stringify( { a: [{ b: { c: [1] } }] }, { allowDots: true, encode: false, arrayFormat: 'brackets' } ), 'a[].b.c[]=1', 'brackets => brackets' ); st.equal( qs.stringify( { a: [{ b: { c: [1] } }] }, { allowDots: true, encode: false } ), 'a[0].b.c[0]=1', 'default => indices' ); st.end(); }); t.test('does not omit object keys when indices = false', function (st) { st.equal(qs.stringify({ a: [{ b: 'c' }] }, { indices: false }), 'a%5Bb%5D=c'); st.end(); }); t.test('uses indices notation for arrays when indices=true', function (st) { st.equal(qs.stringify({ a: ['b', 'c'] }, { indices: true }), 'a%5B0%5D=b&a%5B1%5D=c'); st.end(); }); t.test('uses indices notation for arrays when no arrayFormat is specified', function (st) { st.equal(qs.stringify({ a: ['b', 'c'] }), 'a%5B0%5D=b&a%5B1%5D=c'); st.end(); }); t.test('uses indices notation for arrays when no arrayFormat=indices', function (st) { st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }), 'a%5B0%5D=b&a%5B1%5D=c'); st.end(); }); t.test('uses repeat notation for arrays when no arrayFormat=repeat', function (st) { st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }), 'a=b&a=c'); st.end(); }); t.test('uses brackets notation for arrays when no arrayFormat=brackets', function (st) { st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }), 'a%5B%5D=b&a%5B%5D=c'); st.end(); }); t.test('stringifies a complicated object', function (st) { st.equal(qs.stringify({ a: { b: 'c', d: 'e' } }), 'a%5Bb%5D=c&a%5Bd%5D=e'); st.end(); }); t.test('stringifies an empty value', function (st) { st.equal(qs.stringify({ a: '' }), 'a='); st.equal(qs.stringify({ a: null }, { strictNullHandling: true }), 'a'); st.equal(qs.stringify({ a: '', b: '' }), 'a=&b='); st.equal(qs.stringify({ a: null, b: '' }, { strictNullHandling: true }), 'a&b='); st.equal(qs.stringify({ a: { b: '' } }), 'a%5Bb%5D='); st.equal(qs.stringify({ a: { b: null } }, { strictNullHandling: true }), 'a%5Bb%5D'); st.equal(qs.stringify({ a: { b: null } }, { strictNullHandling: false }), 'a%5Bb%5D='); st.end(); }); t.test('stringifies a null object', { skip: !Object.create }, function (st) { var obj = Object.create(null); obj.a = 'b'; st.equal(qs.stringify(obj), 'a=b'); st.end(); }); t.test('returns an empty string for invalid input', function (st) { st.equal(qs.stringify(undefined), ''); st.equal(qs.stringify(false), ''); st.equal(qs.stringify(null), ''); st.equal(qs.stringify(''), ''); st.end(); }); t.test('stringifies an object with a null object as a child', { skip: !Object.create }, function (st) { var obj = { a: Object.create(null) }; obj.a.b = 'c'; st.equal(qs.stringify(obj), 'a%5Bb%5D=c'); st.end(); }); t.test('drops keys with a value of undefined', function (st) { st.equal(qs.stringify({ a: undefined }), ''); st.equal(qs.stringify({ a: { b: undefined, c: null } }, { strictNullHandling: true }), 'a%5Bc%5D'); st.equal(qs.stringify({ a: { b: undefined, c: null } }, { strictNullHandling: false }), 'a%5Bc%5D='); st.equal(qs.stringify({ a: { b: undefined, c: '' } }), 'a%5Bc%5D='); st.end(); }); t.test('url encodes values', function (st) { st.equal(qs.stringify({ a: 'b c' }), 'a=b%20c'); st.end(); }); t.test('stringifies a date', function (st) { var now = new Date(); var str = 'a=' + encodeURIComponent(now.toISOString()); st.equal(qs.stringify({ a: now }), str); st.end(); }); t.test('stringifies the weird object from qs', function (st) { st.equal(qs.stringify({ 'my weird field': '~q1!2"\'w$5&7/z8)?' }), 'my%20weird%20field=~q1%212%22%27w%245%267%2Fz8%29%3F'); st.end(); }); t.test('skips properties that are part of the object prototype', function (st) { Object.prototype.crash = 'test'; st.equal(qs.stringify({ a: 'b' }), 'a=b'); st.equal(qs.stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c'); delete Object.prototype.crash; st.end(); }); t.test('stringifies boolean values', function (st) { st.equal(qs.stringify({ a: true }), 'a=true'); st.equal(qs.stringify({ a: { b: true } }), 'a%5Bb%5D=true'); st.equal(qs.stringify({ b: false }), 'b=false'); st.equal(qs.stringify({ b: { c: false } }), 'b%5Bc%5D=false'); st.end(); }); t.test('stringifies buffer values', function (st) { st.equal(qs.stringify({ a: new Buffer('test') }), 'a=test'); st.equal(qs.stringify({ a: { b: new Buffer('test') } }), 'a%5Bb%5D=test'); st.end(); }); t.test('stringifies an object using an alternative delimiter', function (st) { st.equal(qs.stringify({ a: 'b', c: 'd' }, { delimiter: ';' }), 'a=b;c=d'); st.end(); }); t.test('doesn\'t blow up when Buffer global is missing', function (st) { var tempBuffer = global.Buffer; delete global.Buffer; var result = qs.stringify({ a: 'b', c: 'd' }); global.Buffer = tempBuffer; st.equal(result, 'a=b&c=d'); st.end(); }); t.test('selects properties when filter=array', function (st) { st.equal(qs.stringify({ a: 'b' }, { filter: ['a'] }), 'a=b'); st.equal(qs.stringify({ a: 1 }, { filter: [] }), ''); st.equal( qs.stringify( { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, { filter: ['a', 'b', 0, 2], arrayFormat: 'indices' } ), 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3', 'indices => indices' ); st.equal( qs.stringify( { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, { filter: ['a', 'b', 0, 2], arrayFormat: 'brackets' } ), 'a%5Bb%5D%5B%5D=1&a%5Bb%5D%5B%5D=3', 'brackets => brackets' ); st.equal( qs.stringify( { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, { filter: ['a', 'b', 0, 2] } ), 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3', 'default => indices' ); st.end(); }); t.test('supports custom representations when filter=function', function (st) { var calls = 0; var obj = { a: 'b', c: 'd', e: { f: new Date(1257894000000) } }; var filterFunc = function (prefix, value) { calls += 1; if (calls === 1) { st.equal(prefix, '', 'prefix is empty'); st.equal(value, obj); } else if (prefix === 'c') { return void 0; } else if (value instanceof Date) { st.equal(prefix, 'e[f]'); return value.getTime(); } return value; }; st.equal(qs.stringify(obj, { filter: filterFunc }), 'a=b&e%5Bf%5D=1257894000000'); st.equal(calls, 5); st.end(); }); t.test('can disable uri encoding', function (st) { st.equal(qs.stringify({ a: 'b' }, { encode: false }), 'a=b'); st.equal(qs.stringify({ a: { b: 'c' } }, { encode: false }), 'a[b]=c'); st.equal(qs.stringify({ a: 'b', c: null }, { strictNullHandling: true, encode: false }), 'a=b&c'); st.end(); }); t.test('can sort the keys', function (st) { var sort = function (a, b) { return a.localeCompare(b); }; st.equal(qs.stringify({ a: 'c', z: 'y', b: 'f' }, { sort: sort }), 'a=c&b=f&z=y'); st.equal(qs.stringify({ a: 'c', z: { j: 'a', i: 'b' }, b: 'f' }, { sort: sort }), 'a=c&b=f&z%5Bi%5D=b&z%5Bj%5D=a'); st.end(); }); t.test('can sort the keys at depth 3 or more too', function (st) { var sort = function (a, b) { return a.localeCompare(b); }; st.equal( qs.stringify( { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' }, { sort: sort, encode: false } ), 'a=a&b=b&z[zi][zia]=zia&z[zi][zib]=zib&z[zj][zja]=zja&z[zj][zjb]=zjb' ); st.equal( qs.stringify( { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' }, { sort: null, encode: false } ), 'a=a&z[zj][zjb]=zjb&z[zj][zja]=zja&z[zi][zib]=zib&z[zi][zia]=zia&b=b' ); st.end(); }); t.test('can stringify with custom encoding', function (st) { st.equal(qs.stringify({ уюї: 'тцДжўфт║ю', '': '' }, { encoder: function (str) { if (str.length === 0) { return ''; } var buf = iconv.encode(str, 'shiftjis'); var result = []; for (var i = 0; i < buf.length; ++i) { result.push(buf.readUInt8(i).toString(16)); } return '%' + result.join('%'); } }), '%8c%a7=%91%e5%8d%e3%95%7b&='); st.end(); }); t.test('throws error with wrong encoder', function (st) { st.throws(function () { qs.stringify({}, { encoder: 'string' }); }, new TypeError('Encoder has to be a function.')); st.end(); }); t.test('can use custom encoder for a buffer object', { skip: typeof Buffer === 'undefined' }, function (st) { st.equal(qs.stringify({ a: new Buffer([1]) }, { encoder: function (buffer) { if (typeof buffer === 'string') { return buffer; } return String.fromCharCode(buffer.readUInt8(0) + 97); } }), 'a=b'); st.end(); }); t.test('serializeDate option', function (st) { var date = new Date(); st.equal( qs.stringify({ a: date }), 'a=' + date.toISOString().replace(/:/g, '%3A'), 'default is toISOString' ); var mutatedDate = new Date(); mutatedDate.toISOString = function () { throw new SyntaxError(); }; st.throws(function () { mutatedDate.toISOString(); }, SyntaxError); st.equal( qs.stringify({ a: mutatedDate }), 'a=' + Date.prototype.toISOString.call(mutatedDate).replace(/:/g, '%3A'), 'toISOString works even when method is not locally present' ); var specificDate = new Date(6); st.equal( qs.stringify( { a: specificDate }, { serializeDate: function (d) { return d.getTime() * 7; } } ), 'a=42', 'custom serializeDate function called' ); st.end(); }); t.test('RFC 1738 spaces serialization', function (st) { st.equal(qs.stringify({ a: 'b c' }, { format: qs.formats.RFC1738 }), 'a=b+c'); st.equal(qs.stringify({ 'a b': 'c d' }, { format: qs.formats.RFC1738 }), 'a+b=c+d'); st.end(); }); t.test('RFC 3986 spaces serialization', function (st) { st.equal(qs.stringify({ a: 'b c' }, { format: qs.formats.RFC3986 }), 'a=b%20c'); st.equal(qs.stringify({ 'a b': 'c d' }, { format: qs.formats.RFC3986 }), 'a%20b=c%20d'); st.end(); }); t.test('Backward compatibility to RFC 3986', function (st) { st.equal(qs.stringify({ a: 'b c' }), 'a=b%20c'); st.end(); }); t.test('Edge cases and unknown formats', function (st) { ['UFO1234', false, 1234, null, {}, []].forEach( function (format) { st.throws( function () { qs.stringify({ a: 'b c' }, { format: format }); }, new TypeError('Unknown format option provided.') ); } ); st.end(); }); t.test('encodeValuesOnly', function (st) { st.equal( qs.stringify( { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, { encodeValuesOnly: true } ), 'a=b&c[0]=d&c[1]=e%3Df&f[0][0]=g&f[1][0]=h' ); st.equal( qs.stringify( { a: 'b', c: ['d', 'e'], f: [['g'], ['h']] } ), 'a=b&c%5B0%5D=d&c%5B1%5D=e&f%5B0%5D%5B0%5D=g&f%5B1%5D%5B0%5D=h' ); st.end(); }); t.test('encodeValuesOnly - strictNullHandling', function (st) { st.equal( qs.stringify( { a: { b: null } }, { encodeValuesOnly: true, strictNullHandling: true } ), 'a[b]' ); st.end(); }); });

node_modules/qs/test/utils.js

'use strict'; var test = require('tape'); var utils = require('../lib/utils'); test('merge()', function (t) { t.deepEqual(utils.merge({ a: 'b' }, { a: 'c' }), { a: ['b', 'c'] }, 'merges two objects with the same key'); var oneMerged = utils.merge({ foo: 'bar' }, { foo: { first: '123' } }); t.deepEqual(oneMerged, { foo: ['bar', { first: '123' }] }, 'merges a standalone and an object into an array'); var twoMerged = utils.merge({ foo: ['bar', { first: '123' }] }, { foo: { second: '456' } }); t.deepEqual(twoMerged, { foo: { 0: 'bar', 1: { first: '123' }, second: '456' } }, 'merges a standalone and two objects into an array'); var sandwiched = utils.merge({ foo: ['bar', { first: '123', second: '456' }] }, { foo: 'baz' }); t.deepEqual(sandwiched, { foo: ['bar', { first: '123', second: '456' }, 'baz'] }, 'merges an object sandwiched by two standalones into an array'); var nestedArrays = utils.merge({ foo: ['baz'] }, { foo: ['bar', 'xyzzy'] }); t.deepEqual(nestedArrays, { foo: ['baz', 'bar', 'xyzzy'] }); t.end(); });

node_modules/raw-body/HISTORY.md

2.2.0 / 2017-01-02 ================== * deps: [email protected] - Added encoding MS-31J - Added encoding MS-932 - Added encoding MS-936 - Added encoding MS-949 - Added encoding MS-950 - Fix GBK/GB18030 handling of Euro character 2.1.7 / 2016-06-19 ================== * deps: [email protected] * perf: remove double-cleanup on happy path 2.1.6 / 2016-03-07 ================== * deps: [email protected] - Drop partial bytes on all parsed units - Fix parsing byte string that looks like hex 2.1.5 / 2015-11-30 ================== * deps: [email protected] * deps: [email protected] 2.1.4 / 2015-09-27 ================== * Fix masking critical errors from `iconv-lite` * deps: [email protected] - Fix CESU-8 decoding in Node.js 4.x 2.1.3 / 2015-09-12 ================== * Fix sync callback when attaching data listener causes sync read - Node.js 0.10 compatibility issue 2.1.2 / 2015-07-05 ================== * Fix error stack traces to skip `makeError` * deps: [email protected] - Add encoding CESU-8 2.1.1 / 2015-06-14 ================== * Use `unpipe` module for unpiping requests 2.1.0 / 2015-05-28 ================== * deps: [email protected] - Improved UTF-16 endianness detection - Leading BOM is now removed when decoding - The encoding UTF-16 without BOM now defaults to UTF-16LE when detection fails 2.0.2 / 2015-05-21 ================== * deps: [email protected] - Slight optimizations 2.0.1 / 2015-05-10 ================== * Fix a false-positive when unpiping in Node.js 0.8 2.0.0 / 2015-05-08 ================== * Return a promise without callback instead of thunk * deps: [email protected] - units no longer case sensitive when parsing 1.3.4 / 2015-04-15 ================== * Fix hanging callback if request aborts during read * deps: [email protected] - Add encoding alias UNICODE-1-1-UTF-7 1.3.3 / 2015-02-08 ================== * deps: [email protected] - Gracefully support enumerables on `Object.prototype` 1.3.2 / 2015-01-20 ================== * deps: [email protected] - Fix rare aliases of single-byte encodings 1.3.1 / 2014-11-21 ================== * deps: [email protected] - Fix Windows-31J and X-SJIS encoding support 1.3.0 / 2014-07-20 ================== * Fully unpipe the stream on error - Fixes `Cannot switch to old mode now` error on Node.js 0.10+ 1.2.3 / 2014-07-20 ================== * deps: [email protected] - Added encoding UTF-7 1.2.2 / 2014-06-19 ================== * Send invalid encoding error to callback 1.2.1 / 2014-06-15 ================== * deps: [email protected] - Added encodings UTF-16BE and UTF-16 with BOM 1.2.0 / 2014-06-13 ================== * Passing string as `options` interpreted as encoding * Support all encodings from `iconv-lite` 1.1.7 / 2014-06-12 ================== * use `string_decoder` module from npm 1.1.6 / 2014-05-27 ================== * check encoding for old streams1 * support node.js < 0.10.6 1.1.5 / 2014-05-14 ================== * bump bytes 1.1.4 / 2014-04-19 ================== * allow true as an option * bump bytes 1.1.3 / 2014-03-02 ================== * fix case when length=null 1.1.2 / 2013-12-01 ================== * be less strict on state.encoding check 1.1.1 / 2013-11-27 ================== * add engines 1.1.0 / 2013-11-27 ================== * add err.statusCode and err.type * allow for encoding option to be true * pause the stream instead of dumping on error * throw if the stream's encoding is set 1.0.1 / 2013-11-19 ================== * dont support streams1, throw if dev set encoding 1.0.0 / 2013-11-17 ================== * rename `expected` option to `length` 0.2.0 / 2013-11-15 ================== * republish 0.1.1 / 2013-11-15 ================== * use bytes 0.1.0 / 2013-11-11 ================== * generator support 0.0.3 / 2013-10-10 ================== * update repo 0.0.2 / 2013-09-14 ================== * dump stream on bad headers * listen to events after defining received and buffers 0.0.1 / 2013-09-14 ================== * Initial release

node_modules/raw-body/index.js

/*! * raw-body * Copyright(c) 2013-2014 Jonathan Ong * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var bytes = require('bytes') var iconv = require('iconv-lite') var unpipe = require('unpipe') /** * Module exports. * @public */ module.exports = getRawBody /** * Module variables. * @private */ var iconvEncodingMessageRegExp = /^Encoding not recognized: / /** * Get the decoder for a given encoding. * * @param {string} encoding * @private */ function getDecoder (encoding) { if (!encoding) return null try { return iconv.getDecoder(encoding) } catch (e) { // error getting decoder if (!iconvEncodingMessageRegExp.test(e.message)) throw e // the encoding was not found throw createError(415, 'specified encoding unsupported', 'encoding.unsupported', { encoding: encoding }) } } /** * Get the raw body of a stream (typically HTTP). * * @param {object} stream * @param {object|string|function} [options] * @param {function} [callback] * @public */ function getRawBody (stream, options, callback) { var done = callback var opts = options || {} if (options === true || typeof options === 'string') { // short cut for encoding opts = { encoding: options } } if (typeof options === 'function') { done = options opts = {} } // validate callback is a function, if provided if (done !== undefined && typeof done !== 'function') { throw new TypeError('argument callback must be a function') } // require the callback without promises if (!done && !global.Promise) { throw new TypeError('argument callback is required') } // get encoding var encoding = opts.encoding !== true ? opts.encoding : 'utf-8' // convert the limit to an integer var limit = bytes.parse(opts.limit) // convert the expected length to an integer var length = opts.length != null && !isNaN(opts.length) ? parseInt(opts.length, 10) : null if (done) { // classic callback style return readStream(stream, encoding, length, limit, done) } return new Promise(function executor (resolve, reject) { readStream(stream, encoding, length, limit, function onRead (err, buf) { if (err) return reject(err) resolve(buf) }) }) } /** * Halt a stream. * * @param {Object} stream * @private */ function halt (stream) { // unpipe everything from the stream unpipe(stream) // pause stream if (typeof stream.pause === 'function') { stream.pause() } } /** * Make a serializable error object. * * To create serializable errors you must re-set message so * that it is enumerable and you must re configure the type * property so that is writable and enumerable. * * @param {number} status * @param {string} message * @param {string} type * @param {object} props * @private */ function createError (status, message, type, props) { var error = new Error() // capture stack trace Error.captureStackTrace(error, createError) // set free-form properties for (var prop in props) { error[prop] = props[prop] } // set message error.message = message // set status error.status = status error.statusCode = status // set type Object.defineProperty(error, 'type', { value: type, enumerable: true, writable: true, configurable: true }) return error } /** * Read the data from the stream. * * @param {object} stream * @param {string} encoding * @param {number} length * @param {number} limit * @param {function} callback * @public */ function readStream (stream, encoding, length, limit, callback) { var complete = false var sync = true // check the length and limit options. // note: we intentionally leave the stream paused, // so users should handle the stream themselves. if (limit !== null && length !== null && length > limit) { return done(createError(413, 'request entity too large', 'entity.too.large', { expected: length, length: length, limit: limit })) } // streams1: assert request encoding is buffer. // streams2+: assert the stream encoding is buffer. // stream._decoder: streams1 // state.encoding: streams2 // state.decoder: streams2, specifically < 0.10.6 var state = stream._readableState if (stream._decoder || (state && (state.encoding || state.decoder))) { // developer error return done(createError(500, 'stream encoding should not be set', 'stream.encoding.set')) } var received = 0 var decoder try { decoder = getDecoder(encoding) } catch (err) { return done(err) } var buffer = decoder ? '' : [] // attach listeners stream.on('aborted', onAborted) stream.on('close', cleanup) stream.on('data', onData) stream.on('end', onEnd) stream.on('error', onEnd) // mark sync section complete sync = false function done () { var args = new Array(arguments.length) // copy arguments for (var i = 0; i < args.length; i++) { args[i] = arguments[i] } // mark complete complete = true if (sync) { process.nextTick(invokeCallback) } else { invokeCallback() } function invokeCallback () { cleanup() if (args[0]) { // halt the stream on error halt(stream) } callback.apply(null, args) } } function onAborted () { if (complete) return done(createError(400, 'request aborted', 'request.aborted', { code: 'ECONNABORTED', expected: length, length: length, received: received })) } function onData (chunk) { if (complete) return received += chunk.length decoder ? buffer += decoder.write(chunk) : buffer.push(chunk) if (limit !== null && received > limit) { done(createError(413, 'request entity too large', 'entity.too.large', { limit: limit, received: received })) } } function onEnd (err) { if (complete) return if (err) return done(err) if (length !== null && received !== length) { done(createError(400, 'request size did not match content length', 'request.size.invalid', { expected: length, length: length, received: received })) } else { var string = decoder ? buffer + (decoder.end() || '') : Buffer.concat(buffer) done(null, string) } } function cleanup () { buffer = null stream.removeListener('aborted', onAborted) stream.removeListener('data', onData) stream.removeListener('end', onEnd) stream.removeListener('error', onEnd) stream.removeListener('close', cleanup) } }

node_modules/raw-body/LICENSE

The MIT License (MIT) Copyright (c) 2013-2014 Jonathan Ong <[email protected]> Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/raw-body/package.json

{ "_args": [ [ { "raw": "raw-body@~2.2.0", "scope": null, "escapedName": "raw-body", "name": "raw-body", "rawSpec": "~2.2.0", "spec": ">=2.2.0 <2.3.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "raw-body@>=2.2.0 <2.3.0", "_id": "[email protected]", "_inCache": true, "_location": "/raw-body", "_nodeVersion": "4.6.1", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/raw-body-2.2.0.tgz_1483409502596_0.06903165532276034" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "2.15.9", "_phantomChildren": {}, "_requested": { "raw": "raw-body@~2.2.0", "scope": null, "escapedName": "raw-body", "name": "raw-body", "rawSpec": "~2.2.0", "spec": ">=2.2.0 <2.3.0", "type": "range" }, "_requiredBy": [ "/body-parser" ], "_resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz", "_shasum": "994976cf6a5096a41162840492f0bdc5d6e7fb96", "_shrinkwrap": null, "_spec": "raw-body@~2.2.0", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "author": { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" }, "bugs": { "url": "https://github.com/stream-utils/raw-body/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Raynos", "email": "[email protected]" } ], "dependencies": { "bytes": "2.4.0", "iconv-lite": "0.4.15", "unpipe": "1.0.0" }, "description": "Get and validate the raw body of a readable stream.", "devDependencies": { "bluebird": "3.4.7", "eslint": "3.12.2", "eslint-config-standard": "6.2.1", "eslint-plugin-markdown": "1.0.0-beta.3", "eslint-plugin-promise": "3.4.0", "eslint-plugin-standard": "2.0.1", "istanbul": "0.4.5", "mocha": "2.5.3", "readable-stream": "2.1.2", "through2": "2.0.1" }, "directories": {}, "dist": { "shasum": "994976cf6a5096a41162840492f0bdc5d6e7fb96", "tarball": "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz" }, "engines": { "node": ">= 0.8" }, "files": [ "HISTORY.md", "LICENSE", "README.md", "index.js" ], "gitHead": "02fac48ae40b8452629bcd310d19dbea543f7c3c", "homepage": "https://github.com/stream-utils/raw-body#readme", "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" }, { "name": "jongleberry", "email": "[email protected]" } ], "name": "raw-body", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/stream-utils/raw-body.git" }, "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --trace-deprecation --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --trace-deprecation --reporter spec --check-leaks test/" }, "version": "2.2.0" }

node_modules/raw-body/README.md

# raw-body [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build status][travis-image]][travis-url] [![Test coverage][coveralls-image]][coveralls-url] Gets the entire buffer of a stream either as a `Buffer` or a string. Validates the stream's length against an expected length and maximum limit. Ideal for parsing request bodies. ## API <!-- eslint-disable no-unused-vars --> ```js var getRawBody = require('raw-body') ``` ### getRawBody(stream, [options], [callback]) **Returns a promise if no callback specified and global `Promise` exists.** Options: - `length` - The length of the stream. If the contents of the stream do not add up to this length, an `400` error code is returned. - `limit` - The byte limit of the body. This is the number of bytes or any string format supported by [bytes](https://www.npmjs.com/package/bytes), for example `1000`, `'500kb'` or `'3mb'`. If the body ends up being larger than this limit, a `413` error code is returned. - `encoding` - The encoding to use to decode the body into a string. By default, a `Buffer` instance will be returned when no encoding is specified. Most likely, you want `utf-8`, so setting `encoding` to `true` will decode as `utf-8`. You can use any type of encoding supported by [iconv-lite](https://www.npmjs.org/package/iconv-lite#readme). You can also pass a string in place of options to just specify the encoding. `callback(err, res)`: - `err` - the following attributes will be defined if applicable: - `limit` - the limit in bytes - `length` and `expected` - the expected length of the stream - `received` - the received bytes - `encoding` - the invalid encoding - `status` and `statusCode` - the corresponding status code for the error - `type` - either `entity.too.large`, `request.aborted`, `request.size.invalid`, `stream.encoding.set`, or `encoding.unsupported` - `res` - the result, either as a `String` if an encoding was set or a `Buffer` otherwise. If an error occurs, the stream will be paused, everything unpiped, and you are responsible for correctly disposing the stream. For HTTP requests, no handling is required if you send a response. For streams that use file descriptors, you should `stream.destroy()` or `stream.close()` to prevent leaks. ## Examples ### Simple Express example ```js var contentType = require('content-type') var express = require('express') var getRawBody = require('raw-body') var app = express() app.use(function (req, res, next) { getRawBody(req, { length: req.headers['content-length'], limit: '1mb', encoding: contentType.parse(req).parameters.charset }, function (err, string) { if (err) return next(err) req.text = string next() }) }) // now access req.text ``` ### Simple Koa example ```js var contentType = require('content-type') var getRawBody = require('raw-body') var koa = require('koa') var app = koa() app.use(function * (next) { this.text = yield getRawBody(this.req, { length: this.req.headers['content-length'], limit: '1mb', encoding: contentType.parse(this.req).parameters.charset }) yield next }) // now access this.text ``` ### Using as a promise To use this library as a promise, simply omit the `callback` and a promise is returned, provided that a global `Promise` is defined. ```js var getRawBody = require('raw-body') var http = require('http') var server = http.createServer(function (req, res) { getRawBody(req) .then(function (buf) { res.statusCode = 200 res.end(buf.length + ' bytes submitted') }) .catch(function (err) { res.statusCode = 500 res.end(err.message) }) }) server.listen(3000) ``` ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/raw-body.svg [npm-url]: https://npmjs.org/package/raw-body [node-version-image]: https://img.shields.io/node/v/raw-body.svg [node-version-url]: https://nodejs.org/en/download/ [travis-image]: https://img.shields.io/travis/stream-utils/raw-body/master.svg [travis-url]: https://travis-ci.org/stream-utils/raw-body [coveralls-image]: https://img.shields.io/coveralls/stream-utils/raw-body/master.svg [coveralls-url]: https://coveralls.io/r/stream-utils/raw-body?branch=master [downloads-image]: https://img.shields.io/npm/dm/raw-body.svg [downloads-url]: https://npmjs.org/package/raw-body

node_modules/setprototypeof/index.js

module.exports = Object.setPrototypeOf || ({__proto__:[]} instanceof Array ? setProtoOf : mixinProperties); function setProtoOf(obj, proto) { obj.__proto__ = proto; return obj; } function mixinProperties(obj, proto) { for (var prop in proto) { if (!obj.hasOwnProperty(prop)) { obj[prop] = proto[prop]; } } return obj; }

node_modules/setprototypeof/LICENSE

Copyright (c) 2015, Wes Todd Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

node_modules/setprototypeof/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "setprototypeof", "name": "setprototypeof", "rawSpec": "1.0.3", "spec": "1.0.3", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\http-errors" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/setprototypeof", "_nodeVersion": "7.4.0", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/setprototypeof-1.0.3.tgz_1487607661334_0.977291816379875" }, "_npmUser": { "name": "wesleytodd", "email": "[email protected]" }, "_npmVersion": "4.0.5", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "setprototypeof", "name": "setprototypeof", "rawSpec": "1.0.3", "spec": "1.0.3", "type": "version" }, "_requiredBy": [ "/http-errors" ], "_resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", "_shasum": "66567e37043eeb4f04d91bd658c0cbefb55b8e04", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\http-errors", "author": { "name": "Wes Todd" }, "bugs": { "url": "https://github.com/wesleytodd/setprototypeof/issues" }, "dependencies": {}, "description": "A small polyfill for Object.setprototypeof", "devDependencies": {}, "directories": {}, "dist": { "shasum": "66567e37043eeb4f04d91bd658c0cbefb55b8e04", "tarball": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz" }, "gitHead": "a8a71aab8118651b9b0ea97ecfc28521ec82b008", "homepage": "https://github.com/wesleytodd/setprototypeof", "keywords": [ "polyfill", "object", "setprototypeof" ], "license": "ISC", "main": "index.js", "maintainers": [ { "name": "wesleytodd", "email": "[email protected]" } ], "name": "setprototypeof", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/wesleytodd/setprototypeof.git" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "version": "1.0.3" }

node_modules/setprototypeof/README.md

# Polyfill for `Object.setPrototypeOf` A simple cross platform implementation to set the prototype of an instianted object. Supports all modern browsers and at least back to IE8. ## Usage: ``` $ npm install --save setprototypeof ``` ```javascript var setPrototypeOf = require('setprototypeof'); var obj = {}; setPrototypeOf(obj, { foo: function() { return 'bar'; } }); obj.foo(); // bar ```

node_modules/statuses/codes.json

{ "100": "Continue", "101": "Switching Protocols", "102": "Processing", "200": "OK", "201": "Created", "202": "Accepted", "203": "Non-Authoritative Information", "204": "No Content", "205": "Reset Content", "206": "Partial Content", "207": "Multi-Status", "208": "Already Reported", "226": "IM Used", "300": "Multiple Choices", "301": "Moved Permanently", "302": "Found", "303": "See Other", "304": "Not Modified", "305": "Use Proxy", "306": "(Unused)", "307": "Temporary Redirect", "308": "Permanent Redirect", "400": "Bad Request", "401": "Unauthorized", "402": "Payment Required", "403": "Forbidden", "404": "Not Found", "405": "Method Not Allowed", "406": "Not Acceptable", "407": "Proxy Authentication Required", "408": "Request Timeout", "409": "Conflict", "410": "Gone", "411": "Length Required", "412": "Precondition Failed", "413": "Payload Too Large", "414": "URI Too Long", "415": "Unsupported Media Type", "416": "Range Not Satisfiable", "417": "Expectation Failed", "418": "I'm a teapot", "421": "Misdirected Request", "422": "Unprocessable Entity", "423": "Locked", "424": "Failed Dependency", "425": "Unordered Collection", "426": "Upgrade Required", "428": "Precondition Required", "429": "Too Many Requests", "431": "Request Header Fields Too Large", "451": "Unavailable For Legal Reasons", "500": "Internal Server Error", "501": "Not Implemented", "502": "Bad Gateway", "503": "Service Unavailable", "504": "Gateway Timeout", "505": "HTTP Version Not Supported", "506": "Variant Also Negotiates", "507": "Insufficient Storage", "508": "Loop Detected", "509": "Bandwidth Limit Exceeded", "510": "Not Extended", "511": "Network Authentication Required" }

node_modules/statuses/HISTORY.md

1.3.1 / 2016-11-11 ================== * Fix return type in JSDoc 1.3.0 / 2016-05-17 ================== * Add `421 Misdirected Request` * perf: enable strict mode 1.2.1 / 2015-02-01 ================== * Fix message for status 451 - `451 Unavailable For Legal Reasons` 1.2.0 / 2014-09-28 ================== * Add `208 Already Repored` * Add `226 IM Used` * Add `306 (Unused)` * Add `415 Unable For Legal Reasons` * Add `508 Loop Detected` 1.1.1 / 2014-09-24 ================== * Add missing 308 to `codes.json` 1.1.0 / 2014-09-21 ================== * Add `codes.json` for universal support 1.0.4 / 2014-08-20 ================== * Package cleanup 1.0.3 / 2014-06-08 ================== * Add 308 to `.redirect` category 1.0.2 / 2014-03-13 ================== * Add `.retry` category 1.0.1 / 2014-03-12 ================== * Initial release

node_modules/statuses/index.js

/*! * statuses * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2016 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var codes = require('./codes.json') /** * Module exports. * @public */ module.exports = status // array of status codes status.codes = populateStatusesMap(status, codes) // status codes for redirects status.redirect = { 300: true, 301: true, 302: true, 303: true, 305: true, 307: true, 308: true } // status codes for empty bodies status.empty = { 204: true, 205: true, 304: true } // status codes for when you should retry the request status.retry = { 502: true, 503: true, 504: true } /** * Populate the statuses map for given codes. * @private */ function populateStatusesMap (statuses, codes) { var arr = [] Object.keys(codes).forEach(function forEachCode (code) { var message = codes[code] var status = Number(code) // Populate properties statuses[status] = message statuses[message] = status statuses[message.toLowerCase()] = status // Add to array arr.push(status) }) return arr } /** * Get the status code. * * Given a number, this will throw if it is not a known status * code, otherwise the code will be returned. Given a string, * the string will be parsed for a number and return the code * if valid, otherwise will lookup the code assuming this is * the status message. * * @param {string|number} code * @returns {number} * @public */ function status (code) { if (typeof code === 'number') { if (!status[code]) throw new Error('invalid status code: ' + code) return code } if (typeof code !== 'string') { throw new TypeError('code must be a number or string') } // '403' var n = parseInt(code, 10) if (!isNaN(n)) { if (!status[n]) throw new Error('invalid status code: ' + n) return n } n = status[code.toLowerCase()] if (!n) throw new Error('invalid status message: "' + code + '"') return n }

node_modules/statuses/LICENSE

The MIT License (MIT) Copyright (c) 2014 Jonathan Ong [email protected] Copyright (c) 2016 Douglas Christopher Wilson [email protected] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/statuses/package.json

{ "_args": [ [ { "raw": "statuses@>= 1.3.1 < 2", "scope": null, "escapedName": "statuses", "name": "statuses", "rawSpec": ">= 1.3.1 < 2", "spec": ">=1.3.1 <2.0.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\http-errors" ] ], "_from": "statuses@>=1.3.1 <2.0.0", "_id": "[email protected]", "_inCache": true, "_location": "/statuses", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/statuses-1.3.1.tgz_1478923281491_0.5574048184789717" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "1.4.28", "_phantomChildren": {}, "_requested": { "raw": "statuses@>= 1.3.1 < 2", "scope": null, "escapedName": "statuses", "name": "statuses", "rawSpec": ">= 1.3.1 < 2", "spec": ">=1.3.1 <2.0.0", "type": "range" }, "_requiredBy": [ "/http-errors" ], "_resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", "_shasum": "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e", "_shrinkwrap": null, "_spec": "statuses@>= 1.3.1 < 2", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\http-errors", "bugs": { "url": "https://github.com/jshttp/statuses/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" } ], "dependencies": {}, "description": "HTTP status utility", "devDependencies": { "csv-parse": "1.1.7", "eslint": "3.10.0", "eslint-config-standard": "6.2.1", "eslint-plugin-promise": "3.3.2", "eslint-plugin-standard": "2.0.1", "istanbul": "0.4.5", "mocha": "1.21.5", "stream-to-array": "2.3.0" }, "directories": {}, "dist": { "shasum": "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e", "tarball": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "HISTORY.md", "index.js", "codes.json", "LICENSE" ], "gitHead": "28a619be77f5b4741e6578a5764c5b06ec6d4aea", "homepage": "https://github.com/jshttp/statuses", "keywords": [ "http", "status", "code" ], "license": "MIT", "maintainers": [ { "name": "defunctzombie", "email": "[email protected]" }, { "name": "dougwilson", "email": "[email protected]" }, { "name": "fishrock123", "email": "[email protected]" }, { "name": "jongleberry", "email": "[email protected]" }, { "name": "mscdex", "email": "[email protected]" }, { "name": "tjholowaychuk", "email": "[email protected]" } ], "name": "statuses", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/statuses.git" }, "scripts": { "build": "node scripts/build.js", "fetch": "node scripts/fetch.js", "lint": "eslint .", "test": "mocha --reporter spec --check-leaks --bail test/", "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "update": "npm run fetch && npm run build" }, "version": "1.3.1" }

node_modules/statuses/README.md

# Statuses [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] HTTP status utility for node. ## API ```js var status = require('statuses') ``` ### var code = status(Integer || String) If `Integer` or `String` is a valid HTTP code or status message, then the appropriate `code` will be returned. Otherwise, an error will be thrown. ```js status(403) // => 403 status('403') // => 403 status('forbidden') // => 403 status('Forbidden') // => 403 status(306) // throws, as it's not supported by node.js ``` ### status.codes Returns an array of all the status codes as `Integer`s. ### var msg = status[code] Map of `code` to `status message`. `undefined` for invalid `code`s. ```js status[404] // => 'Not Found' ``` ### var code = status[msg] Map of `status message` to `code`. `msg` can either be title-cased or lower-cased. `undefined` for invalid `status message`s. ```js status['not found'] // => 404 status['Not Found'] // => 404 ``` ### status.redirect[code] Returns `true` if a status code is a valid redirect status. ```js status.redirect[200] // => undefined status.redirect[301] // => true ``` ### status.empty[code] Returns `true` if a status code expects an empty body. ```js status.empty[200] // => undefined status.empty[204] // => true status.empty[304] // => true ``` ### status.retry[code] Returns `true` if you should retry the rest. ```js status.retry[501] // => undefined status.retry[503] // => true ``` ## Adding Status Codes The status codes are primarily sourced from http://www.iana.org/assignments/http-status-codes/http-status-codes-1.csv. Additionally, custom codes are added from http://en.wikipedia.org/wiki/List_of_HTTP_status_codes. These are added manually in the `lib/*.json` files. If you would like to add a status code, add it to the appropriate JSON file. To rebuild `codes.json`, run the following: ```bash # update src/iana.json npm run fetch # build codes.json npm run build ``` [npm-image]: https://img.shields.io/npm/v/statuses.svg [npm-url]: https://npmjs.org/package/statuses [node-version-image]: https://img.shields.io/badge/node.js-%3E%3D_0.6-brightgreen.svg [node-version-url]: https://nodejs.org/en/download [travis-image]: https://img.shields.io/travis/jshttp/statuses.svg [travis-url]: https://travis-ci.org/jshttp/statuses [coveralls-image]: https://img.shields.io/coveralls/jshttp/statuses.svg [coveralls-url]: https://coveralls.io/r/jshttp/statuses?branch=master [downloads-image]: https://img.shields.io/npm/dm/statuses.svg [downloads-url]: https://npmjs.org/package/statuses

node_modules/type-is/HISTORY.md

1.6.15 / 2017-03-31 =================== * deps: mime-types@~2.1.15 - Add new mime types 1.6.14 / 2016-11-18 =================== * deps: mime-types@~2.1.13 - Add new mime types 1.6.13 / 2016-05-18 =================== * deps: mime-types@~2.1.11 - Add new mime types 1.6.12 / 2016-02-28 =================== * deps: mime-types@~2.1.10 - Add new mime types - Fix extension of `application/dash+xml` - Update primary extension for `audio/mp4` 1.6.11 / 2016-01-29 =================== * deps: mime-types@~2.1.9 - Add new mime types 1.6.10 / 2015-12-01 =================== * deps: mime-types@~2.1.8 - Add new mime types 1.6.9 / 2015-09-27 ================== * deps: mime-types@~2.1.7 - Add new mime types 1.6.8 / 2015-09-04 ================== * deps: mime-types@~2.1.6 - Add new mime types 1.6.7 / 2015-08-20 ================== * Fix type error when given invalid type to match against * deps: mime-types@~2.1.5 - Add new mime types 1.6.6 / 2015-07-31 ================== * deps: mime-types@~2.1.4 - Add new mime types 1.6.5 / 2015-07-16 ================== * deps: mime-types@~2.1.3 - Add new mime types 1.6.4 / 2015-07-01 ================== * deps: mime-types@~2.1.2 - Add new mime types * perf: enable strict mode * perf: remove argument reassignment 1.6.3 / 2015-06-08 ================== * deps: mime-types@~2.1.1 - Add new mime types * perf: reduce try block size * perf: remove bitwise operations 1.6.2 / 2015-05-10 ================== * deps: mime-types@~2.0.11 - Add new mime types 1.6.1 / 2015-03-13 ================== * deps: mime-types@~2.0.10 - Add new mime types 1.6.0 / 2015-02-12 ================== * fix false-positives in `hasBody` `Transfer-Encoding` check * support wildcard for both type and subtype (`*/*`) 1.5.7 / 2015-02-09 ================== * fix argument reassignment * deps: mime-types@~2.0.9 - Add new mime types 1.5.6 / 2015-01-29 ================== * deps: mime-types@~2.0.8 - Add new mime types 1.5.5 / 2014-12-30 ================== * deps: mime-types@~2.0.7 - Add new mime types - Fix missing extensions - Fix various invalid MIME type entries - Remove example template MIME types - deps: mime-db@~1.5.0 1.5.4 / 2014-12-10 ================== * deps: mime-types@~2.0.4 - Add new mime types - deps: mime-db@~1.3.0 1.5.3 / 2014-11-09 ================== * deps: mime-types@~2.0.3 - Add new mime types - deps: mime-db@~1.2.0 1.5.2 / 2014-09-28 ================== * deps: mime-types@~2.0.2 - Add new mime types - deps: mime-db@~1.1.0 1.5.1 / 2014-09-07 ================== * Support Node.js 0.6 * deps: [email protected] * deps: mime-types@~2.0.1 - Support Node.js 0.6 1.5.0 / 2014-09-05 ================== * fix `hasbody` to be true for `content-length: 0` 1.4.0 / 2014-09-02 ================== * update mime-types 1.3.2 / 2014-06-24 ================== * use `~` range on mime-types 1.3.1 / 2014-06-19 ================== * fix global variable leak 1.3.0 / 2014-06-19 ================== * improve type parsing - invalid media type never matches - media type not case-sensitive - extra LWS does not affect results 1.2.2 / 2014-06-19 ================== * fix behavior on unknown type argument 1.2.1 / 2014-06-03 ================== * switch dependency from `mime` to `[email protected]` 1.2.0 / 2014-05-11 ================== * support suffix matching: - `+json` matches `application/vnd+json` - `*/vnd+json` matches `application/vnd+json` - `application/*+json` matches `application/vnd+json` 1.1.0 / 2014-04-12 ================== * add non-array values support * expose internal utilities: - `.is()` - `.hasBody()` - `.normalize()` - `.match()` 1.0.1 / 2014-03-30 ================== * add `multipart` as a shorthand

node_modules/type-is/index.js

/*! * type-is * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2014-2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var typer = require('media-typer') var mime = require('mime-types') /** * Module exports. * @public */ module.exports = typeofrequest module.exports.is = typeis module.exports.hasBody = hasbody module.exports.normalize = normalize module.exports.match = mimeMatch /** * Compare a `value` content-type with `types`. * Each `type` can be an extension like `html`, * a special shortcut like `multipart` or `urlencoded`, * or a mime type. * * If no types match, `false` is returned. * Otherwise, the first `type` that matches is returned. * * @param {String} value * @param {Array} types * @public */ function typeis (value, types_) { var i var types = types_ // remove parameters and normalize var val = tryNormalizeType(value) // no type or invalid if (!val) { return false } // support flattened arguments if (types && !Array.isArray(types)) { types = new Array(arguments.length - 1) for (i = 0; i < types.length; i++) { types[i] = arguments[i + 1] } } // no types, return the content type if (!types || !types.length) { return val } var type for (i = 0; i < types.length; i++) { if (mimeMatch(normalize(type = types[i]), val)) { return type[0] === '+' || type.indexOf('*') !== -1 ? val : type } } // no matches return false } /** * Check if a request has a request body. * A request with a body __must__ either have `transfer-encoding` * or `content-length` headers set. * http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.3 * * @param {Object} request * @return {Boolean} * @public */ function hasbody (req) { return req.headers['transfer-encoding'] !== undefined || !isNaN(req.headers['content-length']) } /** * Check if the incoming request contains the "Content-Type" * header field, and it contains any of the give mime `type`s. * If there is no request body, `null` is returned. * If there is no content type, `false` is returned. * Otherwise, it returns the first `type` that matches. * * Examples: * * // With Content-Type: text/html; charset=utf-8 * this.is('html'); // => 'html' * this.is('text/html'); // => 'text/html' * this.is('text/*', 'application/json'); // => 'text/html' * * // When Content-Type is application/json * this.is('json', 'urlencoded'); // => 'json' * this.is('application/json'); // => 'application/json' * this.is('html', 'application/*'); // => 'application/json' * * this.is('html'); // => false * * @param {String|Array} types... * @return {String|false|null} * @public */ function typeofrequest (req, types_) { var types = types_ // no body if (!hasbody(req)) { return null } // support flattened arguments if (arguments.length > 2) { types = new Array(arguments.length - 1) for (var i = 0; i < types.length; i++) { types[i] = arguments[i + 1] } } // request content type var value = req.headers['content-type'] return typeis(value, types) } /** * Normalize a mime type. * If it's a shorthand, expand it to a valid mime type. * * In general, you probably want: * * var type = is(req, ['urlencoded', 'json', 'multipart']); * * Then use the appropriate body parsers. * These three are the most common request body types * and are thus ensured to work. * * @param {String} type * @private */ function normalize (type) { if (typeof type !== 'string') { // invalid type return false } switch (type) { case 'urlencoded': return 'application/x-www-form-urlencoded' case 'multipart': return 'multipart/*' } if (type[0] === '+') { // "+json" -> "*/*+json" expando return '*/*' + type } return type.indexOf('/') === -1 ? mime.lookup(type) : type } /** * Check if `expected` mime type * matches `actual` mime type with * wildcard and +suffix support. * * @param {String} expected * @param {String} actual * @return {Boolean} * @private */ function mimeMatch (expected, actual) { // invalid type if (expected === false) { return false } // split types var actualParts = actual.split('/') var expectedParts = expected.split('/') // invalid format if (actualParts.length !== 2 || expectedParts.length !== 2) { return false } // validate type if (expectedParts[0] !== '*' && expectedParts[0] !== actualParts[0]) { return false } // validate suffix wildcard if (expectedParts[1].substr(0, 2) === '*+') { return expectedParts[1].length <= actualParts[1].length + 1 && expectedParts[1].substr(1) === actualParts[1].substr(1 - expectedParts[1].length) } // validate subtype if (expectedParts[1] !== '*' && expectedParts[1] !== actualParts[1]) { return false } return true } /** * Normalize a type and remove parameters. * * @param {string} value * @return {string} * @private */ function normalizeType (value) { // parse the type var type = typer.parse(value) // remove the parameters type.parameters = undefined // reformat it return typer.format(type) } /** * Try to normalize a type and remove parameters. * * @param {string} value * @return {string} * @private */ function tryNormalizeType (value) { try { return normalizeType(value) } catch (err) { return null } }

node_modules/type-is/LICENSE

(The MIT License) Copyright (c) 2014 Jonathan Ong <[email protected]> Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/type-is/package.json

{ "_args": [ [ { "raw": "type-is@~1.6.15", "scope": null, "escapedName": "type-is", "name": "type-is", "rawSpec": "~1.6.15", "spec": ">=1.6.15 <1.7.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser" ] ], "_from": "type-is@>=1.6.15 <1.7.0", "_id": "[email protected]", "_inCache": true, "_location": "/type-is", "_nodeVersion": "4.7.3", "_npmOperationalInternal": { "host": "packages-18-east.internal.npmjs.com", "tmp": "tmp/type-is-1.6.15.tgz_1491016789014_0.6958203655667603" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "2.15.11", "_phantomChildren": {}, "_requested": { "raw": "type-is@~1.6.15", "scope": null, "escapedName": "type-is", "name": "type-is", "rawSpec": "~1.6.15", "spec": ">=1.6.15 <1.7.0", "type": "range" }, "_requiredBy": [ "/body-parser" ], "_resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", "_shasum": "cab10fb4909e441c82842eafe1ad646c81804410", "_shrinkwrap": null, "_spec": "type-is@~1.6.15", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\body-parser", "bugs": { "url": "https://github.com/jshttp/type-is/issues" }, "contributors": [ { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, { "name": "Jonathan Ong", "email": "[email protected]", "url": "http://jongleberry.com" } ], "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.15" }, "description": "Infer the content-type of a request.", "devDependencies": { "eslint": "3.19.0", "eslint-config-standard": "7.1.0", "eslint-plugin-markdown": "1.0.0-beta.4", "eslint-plugin-promise": "3.5.0", "eslint-plugin-standard": "2.1.1", "istanbul": "0.4.5", "mocha": "1.21.5" }, "directories": {}, "dist": { "shasum": "cab10fb4909e441c82842eafe1ad646c81804410", "tarball": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz" }, "engines": { "node": ">= 0.6" }, "files": [ "LICENSE", "HISTORY.md", "index.js" ], "gitHead": "9e88be851cc628364ad8842433dce32437ea4e73", "homepage": "https://github.com/jshttp/type-is#readme", "keywords": [ "content", "type", "checking" ], "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" }, { "name": "jongleberry", "email": "[email protected]" } ], "name": "type-is", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/type-is.git" }, "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --reporter spec --check-leaks --bail test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" }, "version": "1.6.15" }

node_modules/type-is/README.md

# type-is [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Infer the content-type of a request. ### Install This is a [Node.js](https://nodejs.org/en/) module available through the [npm registry](https://www.npmjs.com/). Installation is done using the [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): ```sh $ npm install type-is ``` ## API ```js var http = require('http') var typeis = require('type-is') http.createServer(function (req, res) { var istext = typeis(req, ['text/*']) res.end('you ' + (istext ? 'sent' : 'did not send') + ' me text') }) ``` ### type = typeis(request, types) `request` is the node HTTP request. `types` is an array of types. <!-- eslint-disable no-undef --> ```js // req.headers.content-type = 'application/json' typeis(req, ['json']) // 'json' typeis(req, ['html', 'json']) // 'json' typeis(req, ['application/*']) // 'application/json' typeis(req, ['application/json']) // 'application/json' typeis(req, ['html']) // false ``` ### typeis.hasBody(request) Returns a Boolean if the given `request` has a body, regardless of the `Content-Type` header. Having a body has no relation to how large the body is (it may be 0 bytes). This is similar to how file existence works. If a body does exist, then this indicates that there is data to read from the Node.js request stream. <!-- eslint-disable no-undef --> ```js if (typeis.hasBody(req)) { // read the body, since there is one req.on('data', function (chunk) { // ... }) } ``` ### type = typeis.is(mediaType, types) `mediaType` is the [media type](https://tools.ietf.org/html/rfc6838) string. `types` is an array of types. <!-- eslint-disable no-undef --> ```js var mediaType = 'application/json' typeis.is(mediaType, ['json']) // 'json' typeis.is(mediaType, ['html', 'json']) // 'json' typeis.is(mediaType, ['application/*']) // 'application/json' typeis.is(mediaType, ['application/json']) // 'application/json' typeis.is(mediaType, ['html']) // false ``` ### Each type can be: - An extension name such as `json`. This name will be returned if matched. - A mime type such as `application/json`. - A mime type with a wildcard such as `*/*` or `*/json` or `application/*`. The full mime type will be returned if matched. - A suffix such as `+json`. This can be combined with a wildcard such as `*/vnd+json` or `application/*+json`. The full mime type will be returned if matched. `false` will be returned if no type matches or the content type is invalid. `null` will be returned if the request does not have a body. ## Examples ### Example body parser ```js var express = require('express') var typeis = require('type-is') var app = express() app.use(function bodyParser (req, res, next) { if (!typeis.hasBody(req)) { return next() } switch (typeis(req, ['urlencoded', 'json', 'multipart'])) { case 'urlencoded': // parse urlencoded body throw new Error('implement urlencoded body parsing') case 'json': // parse json body throw new Error('implement json body parsing') case 'multipart': // parse multipart body throw new Error('implement multipart body parsing') default: // 415 error code res.statusCode = 415 res.end() break } }) ``` ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/type-is.svg [npm-url]: https://npmjs.org/package/type-is [node-version-image]: https://img.shields.io/node/v/type-is.svg [node-version-url]: https://nodejs.org/en/download/ [travis-image]: https://img.shields.io/travis/jshttp/type-is/master.svg [travis-url]: https://travis-ci.org/jshttp/type-is [coveralls-image]: https://img.shields.io/coveralls/jshttp/type-is/master.svg [coveralls-url]: https://coveralls.io/r/jshttp/type-is?branch=master [downloads-image]: https://img.shields.io/npm/dm/type-is.svg [downloads-url]: https://npmjs.org/package/type-is

node_modules/unpipe/HISTORY.md

1.0.0 / 2015-06-14 ================== * Initial release

node_modules/unpipe/index.js

/*! * unpipe * Copyright(c) 2015 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module exports. * @public */ module.exports = unpipe /** * Determine if there are Node.js pipe-like data listeners. * @private */ function hasPipeDataListeners(stream) { var listeners = stream.listeners('data') for (var i = 0; i < listeners.length; i++) { if (listeners[i].name === 'ondata') { return true } } return false } /** * Unpipe a stream from all destinations. * * @param {object} stream * @public */ function unpipe(stream) { if (!stream) { throw new TypeError('argument stream is required') } if (typeof stream.unpipe === 'function') { // new-style stream.unpipe() return } // Node.js 0.8 hack if (!hasPipeDataListeners(stream)) { return } var listener var listeners = stream.listeners('close') for (var i = 0; i < listeners.length; i++) { listener = listeners[i] if (listener.name !== 'cleanup' && listener.name !== 'onclose') { continue } // invoke the listener listener.call(stream) } }

node_modules/unpipe/LICENSE

(The MIT License) Copyright (c) 2015 Douglas Christopher Wilson <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/unpipe/package.json

{ "_args": [ [ { "raw": "[email protected]", "scope": null, "escapedName": "unpipe", "name": "unpipe", "rawSpec": "1.0.0", "spec": "1.0.0", "type": "version" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\raw-body" ] ], "_from": "[email protected]", "_id": "[email protected]", "_inCache": true, "_location": "/unpipe", "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "1.4.28", "_phantomChildren": {}, "_requested": { "raw": "[email protected]", "scope": null, "escapedName": "unpipe", "name": "unpipe", "rawSpec": "1.0.0", "spec": "1.0.0", "type": "version" }, "_requiredBy": [ "/raw-body" ], "_resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "_shasum": "b2bf4ee8514aae6165b4817829d21b2ef49904ec", "_shrinkwrap": null, "_spec": "[email protected]", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\raw-body", "author": { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, "bugs": { "url": "https://github.com/stream-utils/unpipe/issues" }, "dependencies": {}, "description": "Unpipe a stream from all destinations", "devDependencies": { "istanbul": "0.3.15", "mocha": "2.2.5", "readable-stream": "1.1.13" }, "directories": {}, "dist": { "shasum": "b2bf4ee8514aae6165b4817829d21b2ef49904ec", "tarball": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" }, "engines": { "node": ">= 0.8" }, "files": [ "HISTORY.md", "LICENSE", "README.md", "index.js" ], "gitHead": "d2df901c06487430e78dca62b6edb8bb2fc5e99d", "homepage": "https://github.com/stream-utils/unpipe", "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" } ], "name": "unpipe", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/stream-utils/unpipe.git" }, "scripts": { "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" }, "version": "1.0.0" }

node_modules/unpipe/README.md

# unpipe [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-image]][node-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Unpipe a stream from all destinations. ## Installation ```sh $ npm install unpipe ``` ## API ```js var unpipe = require('unpipe') ``` ### unpipe(stream) Unpipes all destinations from a given stream. With stream 2+, this is equivalent to `stream.unpipe()`. When used with streams 1 style streams (typically Node.js 0.8 and below), this module attempts to undo the actions done in `stream.pipe(dest)`. ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/unpipe.svg [npm-url]: https://npmjs.org/package/unpipe [node-image]: https://img.shields.io/node/v/unpipe.svg [node-url]: http://nodejs.org/download/ [travis-image]: https://img.shields.io/travis/stream-utils/unpipe.svg [travis-url]: https://travis-ci.org/stream-utils/unpipe [coveralls-image]: https://img.shields.io/coveralls/stream-utils/unpipe.svg [coveralls-url]: https://coveralls.io/r/stream-utils/unpipe?branch=master [downloads-image]: https://img.shields.io/npm/dm/unpipe.svg [downloads-url]: https://npmjs.org/package/unpipe

node_modules/vary/HISTORY.md

1.1.1 / 2017-03-20 ================== * perf: hoist regular expression 1.1.0 / 2015-09-29 ================== * Only accept valid field names in the `field` argument - Ensures the resulting string is a valid HTTP header value 1.0.1 / 2015-07-08 ================== * Fix setting empty header from empty `field` * perf: enable strict mode * perf: remove argument reassignments 1.0.0 / 2014-08-10 ================== * Accept valid `Vary` header string as `field` * Add `vary.append` for low-level string manipulation * Move to `jshttp` orgainzation 0.1.0 / 2014-06-05 ================== * Support array of fields to set 0.0.0 / 2014-06-04 ================== * Initial release

node_modules/vary/index.js

/*! * vary * Copyright(c) 2014-2017 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module exports. */ module.exports = vary module.exports.append = append /** * Regular expression to split on commas, trimming spaces * @private */ var ARRAY_SPLIT_REGEXP = / *, */ /** * RegExp to match field-name in RFC 7230 sec 3.2 * * field-name = token * token = 1*tchar * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" * / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" * / DIGIT / ALPHA * ; any VCHAR, except delimiters */ var FIELD_NAME_REGEXP = /^[!#$%&'*+\-.^_`|~0-9A-Za-z]+$/ /** * Append a field to a vary header. * * @param {String} header * @param {String|Array} field * @return {String} * @public */ function append (header, field) { if (typeof header !== 'string') { throw new TypeError('header argument is required') } if (!field) { throw new TypeError('field argument is required') } // get fields array var fields = !Array.isArray(field) ? parse(String(field)) : field // assert on invalid field names for (var j = 0; j < fields.length; j++) { if (!FIELD_NAME_REGEXP.test(fields[j])) { throw new TypeError('field argument contains an invalid header name') } } // existing, unspecified vary if (header === '*') { return header } // enumerate current values var val = header var vals = parse(header.toLowerCase()) // unspecified vary if (fields.indexOf('*') !== -1 || vals.indexOf('*') !== -1) { return '*' } for (var i = 0; i < fields.length; i++) { var fld = fields[i].toLowerCase() // append value (case-preserving) if (vals.indexOf(fld) === -1) { vals.push(fld) val = val ? val + ', ' + fields[i] : fields[i] } } return val } /** * Parse a vary header into an array. * * @param {String} header * @return {Array} * @private */ function parse (header) { return header.trim().split(ARRAY_SPLIT_REGEXP) } /** * Mark that a request is varied on a header field. * * @param {Object} res * @param {String|Array} field * @public */ function vary (res, field) { if (!res || !res.getHeader || !res.setHeader) { // quack quack throw new TypeError('res argument is required') } // get existing header var val = res.getHeader('Vary') || '' var header = Array.isArray(val) ? val.join(', ') : String(val) // set new header if ((val = append(header, field))) { res.setHeader('Vary', val) } }

node_modules/vary/LICENSE

(The MIT License) Copyright (c) 2014-2017 Douglas Christopher Wilson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node_modules/vary/package.json

{ "_args": [ [ { "raw": "vary@~1.1.1", "scope": null, "escapedName": "vary", "name": "vary", "rawSpec": "~1.1.1", "spec": ">=1.1.1 <1.2.0", "type": "range" }, "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\method-override" ] ], "_from": "vary@>=1.1.1 <1.2.0", "_id": "[email protected]", "_inCache": true, "_location": "/vary", "_nodeVersion": "4.7.3", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/vary-1.1.1.tgz_1490045547529_0.9355870047584176" }, "_npmUser": { "name": "dougwilson", "email": "[email protected]" }, "_npmVersion": "2.15.11", "_phantomChildren": {}, "_requested": { "raw": "vary@~1.1.1", "scope": null, "escapedName": "vary", "name": "vary", "rawSpec": "~1.1.1", "spec": ">=1.1.1 <1.2.0", "type": "range" }, "_requiredBy": [ "/method-override" ], "_resolved": "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz", "_shasum": "67535ebb694c1d52257457984665323f587e8d37", "_shrinkwrap": null, "_spec": "vary@~1.1.1", "_where": "C:\\Users\\rayb\\Desktop\\CQU courses\\T2-2017\\COIT20260\\Labs\\Lab 8\\Lab8\\node_modules\\method-override", "author": { "name": "Douglas Christopher Wilson", "email": "[email protected]" }, "bugs": { "url": "https://github.com/jshttp/vary/issues" }, "dependencies": {}, "description": "Manipulate the HTTP Vary header", "devDependencies": { "eslint": "3.18.0", "eslint-config-standard": "7.1.0", "eslint-plugin-markdown": "1.0.0-beta.4", "eslint-plugin-promise": "3.5.0", "eslint-plugin-standard": "2.1.1", "istanbul": "0.4.5", "mocha": "2.5.3", "supertest": "1.1.0" }, "directories": {}, "dist": { "shasum": "67535ebb694c1d52257457984665323f587e8d37", "tarball": "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz" }, "engines": { "node": ">= 0.8" }, "files": [ "HISTORY.md", "LICENSE", "README.md", "index.js" ], "gitHead": "ca7edac6b919a45bf9e2c5cb6ba31c1790e9f046", "homepage": "https://github.com/jshttp/vary#readme", "keywords": [ "http", "res", "vary" ], "license": "MIT", "maintainers": [ { "name": "dougwilson", "email": "[email protected]" } ], "name": "vary", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/jshttp/vary.git" }, "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --reporter spec --bail --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" }, "version": "1.1.1" }

node_modules/vary/README.md

# vary [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Node.js Version][node-version-image]][node-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Manipulate the HTTP Vary header ## Installation This is a [Node.js](https://nodejs.org/en/) module available through the [npm registry](https://www.npmjs.com/). Installation is done using the [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): ```sh $ npm install vary ``` ## API <!-- eslint-disable no-unused-vars --> ```js var vary = require('vary') ``` ### vary(res, field) Adds the given header `field` to the `Vary` response header of `res`. This can be a string of a single field, a string of a valid `Vary` header, or an array of multiple fields. This will append the header if not already listed, otherwise leaves it listed in the current location. <!-- eslint-disable no-undef --> ```js // Append "Origin" to the Vary header of the response vary(res, 'Origin') ``` ### vary.append(header, field) Adds the given header `field` to the `Vary` response header string `header`. This can be a string of a single field, a string of a valid `Vary` header, or an array of multiple fields. This will append the header if not already listed, otherwise leaves it listed in the current location. The new header string is returned. <!-- eslint-disable no-undef --> ```js // Get header string appending "Origin" to "Accept, User-Agent" vary.append('Accept, User-Agent', 'Origin') ``` ## Examples ### Updating the Vary header when content is based on it ```js var http = require('http') var vary = require('vary') http.createServer(function onRequest (req, res) { // about to user-agent sniff vary(res, 'User-Agent') var ua = req.headers['user-agent'] || '' var isMobile = /mobi|android|touch|mini/i.test(ua) // serve site, depending on isMobile res.setHeader('Content-Type', 'text/html') res.end('You are (probably) ' + (isMobile ? '' : 'not ') + 'a mobile user') }) ``` ## Testing ```sh $ npm test ``` ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/vary.svg [npm-url]: https://npmjs.org/package/vary [node-version-image]: https://img.shields.io/node/v/vary.svg [node-version-url]: https://nodejs.org/en/download [travis-image]: https://img.shields.io/travis/jshttp/vary/master.svg [travis-url]: https://travis-ci.org/jshttp/vary [coveralls-image]: https://img.shields.io/coveralls/jshttp/vary/master.svg [coveralls-url]: https://coveralls.io/r/jshttp/vary [downloads-image]: https://img.shields.io/npm/dm/vary.svg [downloads-url]: https://npmjs.org/package/vary

notices.txt

Connected-Vehicle-Starter-Kit THE FOLLOWING SECTIONS IDENTIFY VARIOUS COMPONENT PACKAGES CONTAINED IN THE PROGRAM IDENTIFIED ABOVE, AND SPECIFY CERTAIN NOTICES AND OTHER INFORMATION REGARDING THOSE COMPONENTS THAT IS REQUIRED TO BE PROVIDED. USE OF THESE PROGRAM COMPONENTS REMAINS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THE COMPONENT'S LICENSE INFORMATION DOCUMENT. OpenLayers V2.12 jQuery V1.10.2 Bootstrap V3.1.1 bootstrap-lightbox V0.6.1 Eclipse Paho MQTT Javascript V1.0 ===================================================================================== PACKAGE: OpenLayers V2.12 LICENSE AND NOTICES: Copyright 2005-2012 OpenLayers Contributors. All rights reserved. See authors.txt for full list. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY OPENLAYERS CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of OpenLayers Contributors. ===================================================================================== PACKAGE: jQuery V1.10.2 LICENSE AND NOTICES: Copyright 2013 jQuery Foundation and other contributors, http://jqueryui.com/ This software consists of voluntary contributions made by many individuals (AUTHORS.txt, http://jqueryui.com/about) For exact contribution history, see the revision history and logs, available at http://jquery-ui.googlecode.com/svn/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ===================================================================================== PACKAGE: Bootstrap V3.1.1 LICENSE AND NOTICES: The MIT License (MIT) Copyright (c) 2011-2014 Twitter, Inc Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ===================================================================================== PACKAGE: bootstrap-lightbox V0.6.1 LICENSE AND NOTICES: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: You must give any other recipients of the Work or Derivative Works a copy of this License; and You must cause any modified files to carry prominent notices stating that You changed the files; and You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS ===================================================================================== PACKAGE: Eclipse Paho MQTT Javascript V1.0 LICENSE AND NOTICES: Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT’S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS "Contribution" means: a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor: i)changes to the Program, and ii)additions to the Program; where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor’s behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. "Contributor" means any person or entity that distributes the Program. "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. "Program" means the Contributions distributed in accordance with this Agreement. "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. 2. GRANT OF RIGHTS a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient’s responsibility to acquire that license before distributing the Program. d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. 3. REQUIREMENTS A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: a) it complies with the terms and conditions of this Agreement; and b) its license agreement: i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. When the Program is made available in source code form: a) it must be made available under this Agreement; and b) a copy of this Agreement must be included with each copy of the Program. Contributors may not remove or alter any copyright notices contained within the Program. Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. 4. COMMERCIAL DISTRIBUTION Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor’s responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. 5. NO WARRANTY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. 6. DISCLAIMER OF LIABILITY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. GENERAL If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient’s patent(s), then such Recipient’s rights granted under Section 2(b) shall terminate as of the date such litigation is filed. All Recipient’s rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient’s rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient’s obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. ===================================================================================== End of Notices

package.json

{ "name": "iot-connected-vehicle-starter-kit", "version": "1.0.0", "description": "", "scripts": { "start": "node app.js" }, "dependencies": { "body-parser": "^1.17.2", "express": ">=3.4.7 <4", "method-override": "^2.3.9", "mqtt": "1.0.5", "node-vincenty": "0.0.6", "optimist": "0.6.1", "xml2js": "0.4.4" }, "engines": { "node": "0.10.x" }, "repository": {} }

public/css/bootstrap.min.css

/*! * Bootstrap v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{width:auto\9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover{color:#005580;text-decoration:underline}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%}.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%}.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%}.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%}.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%}.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%}.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%}.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%}.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%}.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%}.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%}.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%}.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%}.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%}.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%}.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%}.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%}.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%}.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%}.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%}.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%}.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%}.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%}.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%}.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%}.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%}.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%}.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%}.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%}.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%}.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%}.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%}.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%}.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%}.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%}[class*="span"].hide,.row-fluid [class*="span"].hide{display:none}[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right}.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;line-height:0;content:""}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;line-height:0;content:""}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:bold}em{font-style:italic}cite{font-style:normal}.muted{color:#999}a.muted:hover{color:#808080}.text-warning{color:#c09853}a.text-warning:hover{color:#a47e3c}.text-error{color:#b94a48}a.text-error:hover{color:#953b39}.text-info{color:#3a87ad}a.text-info:hover{color:#2d6987}.text-success{color:#468847}a.text-success:hover{color:#356635}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{line-height:40px}h1{font-size:38.5px}h2{font-size:31.5px}h3{font-size:24.5px}h4{font-size:17.5px}h5{font-size:14px}h6{font-size:11.9px}h1 small{font-size:24.5px}h2 small{font-size:17.5px}h3 small{font-size:14px}h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee}ul,ol{padding:0;margin:0 0 10px 25px}ul ul,ul ol,ol ol,ol ul{margin-bottom:0}li{line-height:20px}ul.unstyled,ol.unstyled{margin-left:0;list-style:none}ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:bold}dd{margin-left:10px}.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;line-height:0;content:""}.dl-horizontal:after{clear:both}.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px}blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px 4px;color:#d14;white-space:nowrap;background-color:#f7f7f9;border:1px solid #e1e1e8}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}form{margin:0 0 20px}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999}label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px}input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}label{display:block;margin-bottom:5px}select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555;vertical-align:middle;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}input,textarea,.uneditable-input{width:206px}textarea{height:auto}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;*margin-top:0;line-height:normal}input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto}select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px}select{width:220px;background-color:#fff;border:1px solid #ccc}select[multiple],select[size]{height:auto}select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.uneditable-input,.uneditable-textarea{color:#999;cursor:not-allowed;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025)}.uneditable-input{overflow:hidden;white-space:nowrap}.uneditable-textarea{width:auto;height:auto}input:-moz-placeholder,textarea:-moz-placeholder{color:#999}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.radio,.checkbox{min-height:20px;padding-left:20px}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px}.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0}.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:926px}input.span11,textarea.span11,.uneditable-input.span11{width:846px}input.span10,textarea.span10,.uneditable-input.span10{width:766px}input.span9,textarea.span9,.uneditable-input.span9{width:686px}input.span8,textarea.span8,.uneditable-input.span8{width:606px}input.span7,textarea.span7,.uneditable-input.span7{width:526px}input.span6,textarea.span6,.uneditable-input.span6{width:446px}input.span5,textarea.span5,.uneditable-input.span5{width:366px}input.span4,textarea.span4,.uneditable-input.span4{width:286px}input.span3,textarea.span3,.uneditable-input.span3{width:206px}input.span2,textarea.span2,.uneditable-input.span2{width:126px}input.span1,textarea.span1,.uneditable-input.span1{width:46px}.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;line-height:0;content:""}.controls-row:after{clear:both}.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left}.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent}.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853}.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853}.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48}.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48}.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847}.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847}.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad}.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad}.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3}.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;line-height:0;content:""}.form-actions:after{clear:both}.help-block,.help-inline{color:#595959}.help-block{display:block;margin-bottom:10px}.help-inline{display:inline-block;*display:inline;padding-left:5px;vertical-align:middle;*zoom:1}.input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2}.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc}.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend .btn{margin-right:-1px}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px}.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .btn-group:first-child{margin-left:0}input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;margin-bottom:0;vertical-align:middle;*zoom:1}.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none}.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block}.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0}.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:10px}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;line-height:0;content:""}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px}.form-horizontal .help-block{margin-bottom:0}.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px}.form-horizontal .form-actions{padding-left:180px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table th{font-weight:bold}.table thead th{vertical-align:bottom}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed th,.table-condensed td{padding:4px 5px}.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd}.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0}.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-moz-border-radius-bottomleft:0}.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomright:0}.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5}table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0}.table td.span1,.table th.span1{float:none;width:44px;margin-left:0}.table td.span2,.table th.span2{float:none;width:124px;margin-left:0}.table td.span3,.table th.span3{float:none;width:204px;margin-left:0}.table td.span4,.table th.span4{float:none;width:284px;margin-left:0}.table td.span5,.table th.span5{float:none;width:364px;margin-left:0}.table td.span6,.table th.span6{float:none;width:444px;margin-left:0}.table td.span7,.table th.span7{float:none;width:524px;margin-left:0}.table td.span8,.table th.span8{float:none;width:604px;margin-left:0}.table td.span9,.table th.span9{float:none;width:684px;margin-left:0}.table td.span10,.table th.span10{float:none;width:764px;margin-left:0}.table td.span11,.table th.span11{float:none;width:844px;margin-left:0}.table td.span12,.table th.span12{float:none;width:924px;margin-left:0}.table tbody tr.success td{background-color:#dff0d8}.table tbody tr.error td{background-color:#f2dede}.table tbody tr.warning td{background-color:#fcf8e3}.table tbody tr.info td{background-color:#d9edf7}.table-hover tbody tr.success:hover td{background-color:#d0e9c6}.table-hover tbody tr.error:hover td{background-color:#ebcccc}.table-hover tbody tr.warning:hover td{background-color:#faf2cc}.table-hover tbody tr.info:hover td{background-color:#c4e3f3}[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;margin-top:1px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{width:16px;background-position:-216px -120px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{background-position:-384px -120px}.icon-folder-open{width:16px;background-position:-408px -120px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropup,.dropdown{position:relative}.dropdown-toggle{*margin-bottom:-3px}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.dropdown .caret{margin-top:8px;margin-left:2px}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;outline:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999}.dropdown-menu .disabled>a:hover{text-decoration:none;cursor:default;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open{*z-index:1000}.open>.dropdown-menu{display:block}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#ccc;border-style:solid;border-width:5px 0 5px 5px;content:" "}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown .dropdown-menu .nav-header{padding-right:20px;padding-left:20px}.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.btn{display:inline-block;*display:inline;padding:4px 12px;margin-bottom:0;*margin-left:.3em;font-size:14px;line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #bbb;*border:0;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9}.btn:active,.btn.active{background-color:#ccc \9}.btn:first-child{*margin-left:0}.btn:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px}.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0}.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px}.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)}.btn{border-color:#c5c5c5;border-color:rgba(0,0,0,0.15) rgba(0,0,0,0.15) rgba(0,0,0,0.25)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;*background-color:#04c;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.btn-primary:active,.btn-primary.active{background-color:#039 \9}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;*background-color:#f89406;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505}.btn-warning:active,.btn-warning.active{background-color:#c67605 \9}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;*background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a}.btn-danger:active,.btn-danger.active{background-color:#942a25 \9}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;*background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249}.btn-success:active,.btn-success.active{background-color:#408140 \9}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;*background-color:#2f96b4;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0}.btn-info:active,.btn-info.active{background-color:#24748c \9}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;*background-color:#222;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515}.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9}button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{color:#08c;cursor:pointer;border-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover{color:#333;text-decoration:none}.btn-group{position:relative;display:inline-block;*display:inline;*margin-left:.3em;font-size:0;white-space:nowrap;vertical-align:middle;*zoom:1}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{margin-top:10px;margin-bottom:10px;font-size:0}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px}.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn+.btn{margin-left:-1px}.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px}.btn-group>.btn-mini{font-size:10.5px}.btn-group>.btn-small{font-size:11.9px}.btn-group>.btn-large{font-size:17.5px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{*padding-top:5px;padding-right:8px;*padding-bottom:5px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn-group>.btn-mini+.dropdown-toggle{*padding-top:2px;padding-right:5px;*padding-bottom:2px;padding-left:5px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{*padding-top:7px;padding-right:12px;*padding-bottom:7px;padding-left:12px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn .caret{margin-top:8px;margin-left:0}.btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px}.btn-large .caret{border-top-width:5px;border-right-width:5px;border-left-width:5px}.dropup .btn-large .caret{border-bottom-width:5px}.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff}.btn-group-vertical{display:inline-block;*display:inline;*zoom:1}.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical>.btn+.btn{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.alert,.alert h4{color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success h4{color:#468847}.alert-danger,.alert-error{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-danger h4,.alert-error h4{color:#b94a48}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info h4{color:#3a87ad}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-bottom:20px;margin-left:0;list-style:none}.nav>li>a{display:block}.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li>a>img{max-width:none}.nav>.pull-right{float:right}.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0}.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.nav-list>li>a{padding:3px 15px}.nav-list>.active>a,.nav-list>.active>a:hover{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c}.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px}.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;line-height:0;content:""}.nav-tabs:after,.nav-pills:after{clear:both}.nav-tabs>li,.nav-pills>li{float:left}.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:hover{color:#fff;background-color:#08c}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-moz-border-radius-bottomleft:4px}.nav-tabs.nav-stacked>li>a:hover{z-index:2;border-color:#ddd}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.nav .dropdown-toggle .caret{margin-top:6px;border-top-color:#08c;border-bottom-color:#08c}.nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580}.nav-tabs .dropdown-toggle .caret{margin-top:8px}.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.nav>.dropdown.active>a:hover{cursor:pointer}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#fff;background-color:#999;border-color:#999}.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:hover{border-color:#999}.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;line-height:0;content:""}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover{border-top-color:#ddd;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:hover{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:hover{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff}.nav>.disabled>a{color:#999}.nav>.disabled>a:hover{text-decoration:none;cursor:default;background-color:transparent}.navbar{*position:relative;*z-index:2;margin-bottom:20px;overflow:visible}.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);*zoom:1;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065)}.navbar-inner:before,.navbar-inner:after{display:table;line-height:0;content:""}.navbar-inner:after{clear:both}.navbar .container{width:auto}.nav-collapse.collapse{height:auto;overflow:visible}.navbar .brand{display:block;float:left;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover{text-decoration:none}.navbar-text{margin-bottom:0;line-height:40px;color:#777}.navbar-link{color:#777}.navbar-link:hover{color:#333}.navbar .divider-vertical{height:40px;margin:0 9px;border-right:1px solid #fff;border-left:1px solid #f2f2f2}.navbar .btn,.navbar .btn-group{margin-top:5px}.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0}.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;line-height:0;content:""}.navbar-form:after{clear:both}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0}.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}.navbar-search .search-query{padding:4px 14px;margin-bottom:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px}.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1)}.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)}.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .nav.pull-right{float:right;margin-right:0}.navbar .nav>li{float:left}.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff}.navbar .nav .dropdown-toggle .caret{margin-top:8px}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{color:#333;text-decoration:none;background-color:transparent}.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)}.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-right:5px;margin-left:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;*background-color:#e5e5e5;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9}.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .nav>li>.dropdown-menu:before{position:absolute;top:-7px;left:9px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.navbar .nav>li>.dropdown-menu:after{position:absolute;top:-6px;left:10px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.navbar-fixed-bottom .nav>li>.dropdown-menu:before{top:auto;bottom:-7px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2)}.navbar-fixed-bottom .nav>li>.dropdown-menu:after{top:auto;bottom:-6px;border-top:6px solid #fff;border-bottom:0}.navbar .nav li.dropdown>a:hover .caret{border-top-color:#555;border-bottom-color:#555}.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#555;background-color:#e5e5e5}.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777}.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{right:12px;left:auto}.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{right:13px;left:auto}.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top,#222,#111);background-image:-webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));background-image:-webkit-linear-gradient(top,#222,#111);background-image:-o-linear-gradient(top,#222,#111);background-image:linear-gradient(to bottom,#222,#111);background-repeat:repeat-x;border-color:#252525;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff111111',GradientType=0)}.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#fff}.navbar-inverse .brand{color:#999}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .divider-vertical{border-right-color:#222;border-left-color:#111}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background-color:#111}.navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;outline:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15)}.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;*background-color:#040404;background-image:-moz-linear-gradient(top,#151515,#040404);background-image:-webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));background-image:-webkit-linear-gradient(top,#151515,#040404);background-image:-o-linear-gradient(top,#151515,#040404);background-image:linear-gradient(to bottom,#151515,#040404);background-repeat:repeat-x;border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515',endColorstr='#ff040404',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000}.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9}.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;text-shadow:0 1px 0 #fff;*zoom:1}.breadcrumb>li>.divider{padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{margin:20px 0}.pagination ul{display:inline-block;*display:inline;margin-bottom:0;margin-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.pagination ul>li{display:inline}.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0}.pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5}.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default}.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999;cursor:default;background-color:transparent}.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px}.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px}.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px}.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px}.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px}.pager{margin:20px 0;text-align:center;list-style:none;*zoom:1}.pager:before,.pager:after{display:table;line-height:0;content:""}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager li>a:hover{text-decoration:none;background-color:#f5f5f5}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999;cursor:default;background-color:#fff}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;outline:0;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{top:-25%;-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out}.modal.fade.in{top:10%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-header h3{margin:0;line-height:30px}.modal-body{position:relative;max-height:400px;padding:15px;overflow-y:auto}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;*zoom:1;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer:before,.modal-footer:after{display:table;line-height:0;content:""}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.tooltip{position:absolute;z-index:1030;display:block;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{margin-top:-3px}.tooltip.right{margin-left:3px}.tooltip.bottom{margin-top:3px}.tooltip.left{margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0}.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;line-height:0;content:""}.thumbnails:after{clear:both}.row-fluid .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a.thumbnail:hover{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)}.thumbnail>img{display:block;max-width:100%;margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#555}.media,.media-body{overflow:hidden;*overflow:visible;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media .pull-left{margin-right:10px}.media .pull-right{margin-left:10px}.media-list{margin-left:0;list-style:none}.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);white-space:nowrap;vertical-align:baseline;background-color:#999}.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding-right:9px;padding-left:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}.label:empty,.badge:empty{display:none}a.label:hover,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.label-important,.badge-important{background-color:#b94a48}.label-important[href],.badge-important[href]{background-color:#953b39}.label-warning,.badge-warning{background-color:#f89406}.label-warning[href],.badge-warning[href]{background-color:#c67605}.label-success,.badge-success{background-color:#468847}.label-success[href],.badge-success[href]{background-color:#356635}.label-info,.badge-info{background-color:#3a87ad}.label-info[href],.badge-info[href]{background-color:#2d6987}.label-inverse,.badge-inverse{background-color:#333}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}.btn .label,.btn .badge{position:relative;top:-1px}.btn-mini .label,.btn-mini .badge{top:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#fff9f9f9',GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress .bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf',endColorstr='#ff0480be',GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15)}.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(to bottom,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffc43c35',GradientType=0)}.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(to bottom,#62c462,#57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff57a957',GradientType=0)}.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(to bottom,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff339bb9',GradientType=0)}.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0)}.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.accordion{margin-bottom:20px}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:20px;line-height:1}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img{display:block;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{right:15px;left:auto}.carousel-control:hover{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-caption{position:absolute;right:0;bottom:0;left:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)}.carousel-caption h4,.carousel-caption p{line-height:20px;color:#fff}.carousel-caption h4{margin:0 0 5px}.carousel-caption p{margin-bottom:0}.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;color:inherit}.hero-unit li{line-height:30px}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}

public/css/style.css

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ body { font-family: Arial, Tahoma, Verdana, sans-serif; color: #222; background-color: #eee; margin: 0px; height: 100%; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } h2, h3 { margin-top: 0px; } .olImageLoadError { //display: none !important; } div[class="tooltip-inner"] { max-width: 350px; } .demoContentContainer { overflow: hidden; } .demoMainContainer { float: left; width: 65%; margin-right: 20px; min-height: 500px; } #instructionContainer { position: absolute; left: 210px; bottom: 5px; z-index: 3; display: none; width: 250px; border: 2px solid #ddd; border-radius: 5px; margin-top: 20px; padding: 10px 10px; background-color: rgba(255, 255, 255, 0.6); } .small { padding: 0 5px 0 5px; font-size: 0.9em; } .nopadding { margin: 0 5px 0 0; } #idContainer { z-index: 3; visibility: hidden; background: rgba(0,0,0,0.75); border-radius: 5px; padding: 5px; color: white; position: absolute; right: 5px; bottom: 5px; } #driver_idContainer { z-index: 3; visibility: hidden; background: rgba(0,0,0,0.75); border-radius: 5px; padding: 5px; color: white; } #framerateContainer { z-index: 3; visibility: hidden; background: rgba(0,0,0,0.75); border-radius: 5px; padding: 5px; color: white; position: absolute; right: 5px; bottom: 40px; } #toolbarContainer { position: absolute; top: 0px; right: 0px; z-index: 3; max-width: 530px; visibility: hidden; background: rgba(0,0,0,0.75); border-radius: 0 0 5px 5px; margin-bottom: 20px; padding: 3px 20px 0 20px; } #poiContainer { position: absolute; bottom: 80px; z-index: 3; width: 509px; visibility: hidden; background: rgba(0,0,0,0.8); border-radius: 5px 5px 5px 5px; padding: 20px; } .poiIcon { width: 30px; height: 30px; padding: 10px; } .gradientContainer { line-height: 30px; vertical-align: middle; padding: 0 0 8px 0; } .gradientBox { width: 300px; background: -moz-linear-gradient(left, #0000ff 0%, #00ff00 33%, #ffff00 66%, #ff0000 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, right top, color-stop(0%,#0000ff), color-stop(33%,#00ff00), color-stop(66%,#ffff00), color-stop(100%,#ff0000)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(left, #0000ff 0%,#00ff00 33%,#ffff00 66%,#ff0000 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(left, #0000ff 0%,#00ff00 33%,#ffff00 66%,#ff0000 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(left, #0000ff 0%,#00ff00 33%,#ffff00 66%,#ff0000 100%); /* IE10+ */ background: linear-gradient(to right, #0000ff 0%,#00ff00 33%,#ffff00 66%,#ff0000 100%); /* W3C */ } #topContainer { position: absolute; top: 0px; right: 0px; z-index: 3; visibility: hidden; /*min-width: 600px;*/ background: rgba(0,0,0,0.75); border-radius: 0 0 5px 5px; margin-bottom: 20px; padding: 8px 8px; } #bottomContainer { position: absolute; bottom: 5px; z-index: 3; visibility: hidden; text-align: center; min-width: 100px; background: rgba(0,0,0,0.75); border-radius: 5px; padding: 5px; } .statHeading { color: white; } .statSuffix { padding-left: 3px; color: white; } #statsContainer { width: 100%; font-size: 18px; color: white; display: none; } #statusContainer { position: absolute; left: 5px; bottom: 20px; z-index: 2; visibility: hidden; background: rgba(0,0,0,0.75); border-radius: 5px; padding: 20px 20px 20px 20px; } #leftStatusContainer { background: rgba(255,255,255,0.9); border-radius: 5px; padding: 10px; margin-right: 10px; color: black; width: 260px; float: left; height: 150px; } #rightStatusContainer { background: rgba(255,255,255,0.9); border-radius: 5px; padding: 10px; color: black; width: 260px; float: right; height: 150px; overflow: auto; } #status_streetview { border: 1px solid gray; border-radius: 5px; margin-top: 5px; } #rightPop { position: absolute; left: -4200px; top: 200px; z-index: 2; width: 5px; height: 5px; } #leftPop { position: absolute; left: -4200px; top: 200px; z-index: 2; width: 5px; height: 5px; } .label { font-weight: bold; } .value { float: right; } .statValue { color: rgb(20,230,255); } .carMessage { border: 2px solid #ddd; padding: 5px; } .carMessageDescription { border-left: 1px solid #aaa; padding: 0 5px 0 5px; margin: 2px 5px 2px 5px; } .carMessageTime { padding-top: 2px; font-style: italic; } .carMessageActions { padding: 0 0 0 0; } .alert.noClose { padding-right: 10px; } .chart { z-index: 2; margin-top: 5px; margin-bottom: 10px; width: 180px; height: 15px; display: block; } #canvas { position: absolute; left: 0px; z-index: 1; } .btn.active, .btn:active { background-color: rgb(190,190,190) !important; } #openLayersMap { position: absolute; font-size: 60%; width: 800px; height: 600px; z-index: 0; } img { max-width: none; /* needed for compatibility with bootstrap css */ } a.disabled-link, a.disabled-link:visited, a.disabled-link:active, a.disabled-link:hover { color: #aaa !important; } .popover.left .popover-title { text-align: center; font-size: 1.2em; } .popover { left: -3000px; opacity: 0.9; box-shadow: rgba(0,0,0,0.7) 0px 0px 20px 10px; } .popover.right { overflow: auto; } hr { margin: 8px 0; }

public/img/architecture.png

public/img/glyphicons-halflings-white.png

public/img/glyphicons-halflings.png

public/img/redcar.png

public/index.html

[No canvas support] − + Help Tester Toggle Map ID: 0 fps 0car(s)    

public/js/Demo.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ var Utils = { _fromProjection: new OpenLayers.Projection("EPSG:4326"), _toProjection: new OpenLayers.Projection("EPSG:900913"), toOL: function(xy) { var result = xy; return result.transform(this._fromProjection, this._toProjection); }, toLL: function(xy) { var result = xy; return result.transform(this._toProjection, this._fromProjection); }, getCurrentTime: function() { var d = new Date(); var ms = d.getMilliseconds(); mstr = ms; if (ms < 100 && ms >= 10) { mstr = "0" + ms; } else if (ms < 10) { mstr = "00" + ms; } return d.getSeconds() + ":" + mstr; }, randomString: function(length) { var text = ""; var allowed = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; for (var i = 0; i < length; i++) { text += allowed.charAt(Math.floor(Math.random() * allowed.length)); } return text; }, randomUppercaseString: function(length) { var text = ""; var allowed = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; for (var i = 0; i < length; i++) { text += allowed.charAt(Math.floor(Math.random() * allowed.length)); } return text; }, publish: function(topic, message, retained) { var msgObj = new Messaging.Message(message); msgObj.destinationName = topic; if (retained) { msgObj.retained = true; } demo.mqttclient.client.send(msgObj); }, geoToXY: function(lon, lat) { if (!lat) { var geo = lon; lat = geo.lat; lon = geo.lon; } var xy = { x: (parseFloat(lon) - demo.ui.getMinLon()) / (demo.ui.getMaxLon() - demo.ui.getMinLon()) * win.width, y: win.height - ((parseFloat(lat) - demo.ui.getMinLat()) / (demo.ui.getMaxLat() - demo.ui.getMinLat()) * win.height), }; return xy; }, getXYDist: function(pt1, pt2) { var dist = Math.sqrt(Math.pow(pt2.x - pt1.x, 2) + Math.pow(pt2.y - pt1.y, 2)); return dist; }, getGeoDist: function(geo1, geo2) { var dist = Math.sqrt(Math.pow(geo2.lon - geo1.lon, 2) + Math.pow(geo2.lat - geo1.lat, 2)); return dist; }, xyToGeo: function(x, y) { if (!y) { y = x.y; x = x.x; } var geo = { lon: demo.ui.getMinLon() + (x / win.width * demo.ui.getLonWidth()), lat: demo.ui.getMinLat() + ((win.height - y) / win.height * demo.ui.getLatHeight()), }; return geo; }, vectorToRadians: function(vector, precision) { if (precision == null) { precision = 3; } var rad = (Math.atan(vector.y / vector.x)).toFixed(precision); return parseFloat(rad); }, radiansToDegrees: function(rad, precision) { if (precision == null) { precision = 1; } return (360 * (rad / (2*Math.PI))).toFixed(precision); }, Colors: { RED: "rgba(176, 128, 128, 0.9)", DARKRED: "rgba(176, 0, 0, 0.9)", WHITE: "rgba(255, 255, 255, 0.9)", BROWN: "rgba(65, 13, 0, 0.9)", YELLOW: "rgba(216, 189, 48, 0.9)", BRIGHTYELLOW: "rgba(240, 230, 80, 0.9)", BLUE: "rgba(42, 81, 124, 0.9)", Poly: { RED : "rgba(200, 0, 0, 0.3)", SOLIDRED : "rgba(200, 0, 0, 1.0)", DARKRED : "rgba(120, 0, 0, 0.5)", BRIGHTRED : "rgba(255, 0, 0, 0.9)", PINK : "rgba(255, 160, 160, 0.3)", YELLOW : "rgba(220, 220, 0, 0.2)", SOLIDYELLOW : "rgba(220, 220, 0, 1.0)", DARKYELLOW : "rgba(200, 200, 0, 0.3)", GREEN : "rgba(0, 120, 0, 0.3)", BRIGHTGREEN : "rgba(0, 255, 0, 0.9)", BLUE : "rgba(0, 0, 180, 0.25)", BROWN : "rgba(139, 69, 19, 0.4)", DARKBROWN : "rgba(139, 69, 19, 0.8)", WHITE : "rgba(255, 255, 255, 0.7)" } }, } /****************************** * * * Demo * * * ******************************/ function Demo() { this.ui = new UI(this); this.id = Utils.randomUppercaseString(3); this.mqttclient = new MQTTClient(this.id); this.mapObjects = {}; } Demo.prototype.init = function() { this.ui.updateViewport(); this.ui.init(); // add map objects to the demo this.addMapObject("MapGraphs", new MapGraphSet()); var carSet = new MapObjectSet(); carSet.init(); this.addMapObject("Cars", carSet); this.addMapObject("Fence", new FenceSet()); } Demo.prototype.getCar = function(id) { return (this.mapObjects.Cars.objects[id] || null); } Demo.prototype.getFence = function(id) { return demo.mapObjects["Fence"].objects[id]; } Demo.prototype.getFences = function() { return demo.mapObjects["Fence"].objects; } Demo.prototype.getNextFenceID = function() { for (var i = 1; i <= 25; i++) { var alreadyTaken = false; for (var j in demo.mapObjects["Fence"].objects) { if (demo.mapObjects["Fence"].objects[j].id == i) { alreadyTaken = true; } } if (!alreadyTaken) { return i; } } // this is an error return -1; } Demo.prototype.createFence = function() { this.mapObjects["Fence"].createFence(); } Demo.prototype.clearFence = function(id) { this.mapObjects["Fence"].deleteFence(id); } Demo.prototype.saveFence = function(id) { this.mapObjects["Fence"].saveFence(id); } Demo.prototype.addMapObject = function(name, objectType) { this.mapObjects[name] = objectType; this.mapObjects[name].type = name; } Demo.prototype.connect = function() { this.mqttclient.connect(); } Demo.prototype.updateObjects = function() { for (var i in this.mapObjects) { this.mapObjects[i].update(); } } Demo.prototype.drawMapObjects = function() { for (var i in this.mapObjects) { this.mapObjects[i].draw(); } } Demo.prototype.drawMapObjectOverlays = function() { for (var i in this.mapObjects) { this.mapObjects[i].drawOverlays(); } } Demo.prototype.drawBackgroundMapPolygons = function() { for (var i in this.mapPolygons) { if (this.mapPolygons[i].isBackground()) { this.mapPolygons[i].draw(); } } var fences = this.getFences(); for (var i in fences) { if (fences[i].polygon) { fences[i].polygon.draw(); } } } Demo.prototype.draw = function() { this.ui.trackSelected(); this.ui.context.clearRect(0, 0, demo.ui.canvas.width, demo.ui.canvas.height); this.drawBackgroundMapPolygons(); this.drawMapObjects(); this.drawMapObjectOverlays(); if (this.ui.selectedObj) { this.ui.selectedObj.draw(); } if (this.ui.selectedObj) { this.ui.selectedObj.drawOverlay(); } }

public/js/main.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ function Place(name, options) { this.name = name; if (options && options.center) { this.center = { lon: options.center.lon, lat: options.center.lat } if (options.min) { this.min = { lon: options.min.lon, lat: options.min.lat } } if (options.min) { this.max = { lon: options.max.lon, lat: options.max.lat } } } else { this.defaultZoom = { lon: 50, lat: 50 } } if (options && options.defaultZoom) { this.defaultZoom = options.defaultZoom; } else { this.defaultZoom = 15; } } Place.prototype.getName = function() { return this.name; } Place.prototype.getCenter = function() { return this.center; } var Places = { AUSTIN: new Place("Austin", { center: { lon: -97.74024, lat: 30.27455 }, defaultZoom: 15 }), SANFRANCISCO: new Place("San Francisco", { center: { lon: -122.41581, lat: 37.77356 }, defaultZoom: 15 }), VEGAS: new Place("Las Vegas", { center: { lon: -115.17295, lat: 36.11460 }, defaultZoom: 15 }) } var defaults = { locale: "en", mapType: "osm", mapLocation: Places.AUSTIN, } var Images = { car: new Image() } function getImage(filename) { for (var i in Images) { var path = Images[i].src.split("/"); if (path[path.length - 1] == filename) { return Images[i]; } } } Images.car.src = "img/redcar.png"; function getUrlVars() { var vars = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) { vars[key] = value; }); return vars; } var win = { x: null, y: null, center: { lon: null, lat: null }, width: null, height: null }; function centerContainers() { var offset = ((canvas.offsetWidth - document.getElementById("toolbarContainer").offsetWidth) / 2); $("#toolbarContainer").css("right", offset + "px"); offset = ((canvas.offsetWidth - 610) / 2); $("#statusContainer").css("left", offset + "px"); offset = ((canvas.offsetWidth - $(".bottomContainer")[0].offsetWidth) / 2); $(".bottomContainer").css("right", offset + "px"); offset = (70 + canvas.offsetWidth / 2); $("#leftBottomContainer").css("right", offset + "px"); } function setStrings() { $("#carText").html("car"); $("#carsText").html("cars"); $("#viewersText").html("viewers"); $("#framerateText").html("framerate"); } function init() { console.log("init()"); setStrings(); ctxFont = "24px Arial"; setTimeout(function() { resize(); }, 1000); $(".disabled-link").click(function(event) { event.preventDefault(); }); resizeMap(); centerContainers(); demo = new Demo(); demo.init(); win.width = demo.ui.canvas.width; win.height = demo.ui.canvas.height; $("#leftPop").popover("show"); $("#rightPop").popover("show"); setInterval(function() { var count = 0; var toDelete = []; var now = (new Date()).getTime(); for (var i in demo.mapObjects["Cars"].objects) { var c = demo.mapObjects["Cars"].objects[i]; if (c.isCountable()) { count++; } if (now - c.lastUpdate > 5000) { toDelete.push(i); } } for (var i in toDelete) { console.log("deleting " + toDelete[i]); delete demo.mapObjects["Cars"].objects[toDelete[i]]; } $("#statConnectionCount").html(count); $("#statFramerate").html((frame_count - last_frame_count)); last_frame_count = frame_count; }, 1000); setTimeout(function() { $("#toolbarContainer").hide(); $("#toolbarContainer").css("visibility", "visible"); $("#toolbarContainer").fadeIn(); $("#bottomContainer").hide(); $("#bottomContainer").css("visibility", "visible"); $("#bottomContainer").fadeIn(); $("#framerateContainer").hide(); $("#framerateContainer").css("visibility", "visible"); $("#framerateContainer").fadeIn(); $("#browserId").html(demo.id); $("#idContainer").hide(); $("#idContainer").css("visibility", "visible"); $("#idContainer").fadeIn(); demo.connect(); doFrame(); }, 2000); } var last_frame_count = 0; var frame_count = 0; function draw() { demo.draw() var count = 0; for (var i in demo.mapObjects) { for (var j in demo.mapObjects[i].objects) { count++; } } $("#statObjectCount").html(count); frame_count++; }; function doFrame() { update(); draw(); setTimeout(doFrame, 20); } function update() { demo.updateObjects(); }; //window.addEventListener("orientationchange", function() { resize(); }); function resize() { console.log("RESIZE"); demo.ui.canvas.width = window.innerWidth; demo.ui.canvas.height = window.innerHeight; demo.ui.context.canvas.width = demo.ui.canvas.width; demo.ui.context.canvas.height = demo.ui.canvas.height; win.width = demo.ui.canvas.width; win.height = demo.ui.canvas.height; win.center = Utils.xyToGeo(win.width / 2, win.height / 2); centerContainers(); resizeMap(); demo.ui.updateViewport(); } function resizeMap() { var mapnode = document.getElementById("openLayersMap"); mapnode.style.width = window.innerWidth + "px"; mapnode.style.height = window.innerHeight + "px"; }

public/js/Map/EventPolygon.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ /***************************************************************************** * * EventPolygonSet * * A set of EventPolygons. Those that inherit this object should implement * the "sub" method, an onMessage callback that is used to populate/update * EventPolygon objects in the set. * ****************************************************************************/ function EventPolygonSet() { this.dangerPoly = new EventPolygon("danger") this.warningPoly = new EventPolygon("warning") this.innerSelectPoly = new EventPolygon("innerSelect") this.outerSelectPoly = new EventPolygon("outerSelect") // childen must implement this.sub = new Subscription(topicPrefix + "event/polyOutput", (function(ctx) { return function(msg) { if (msg.destinationName != (topicPrefix + "event/polyOutput")) { return; } var m = msg.payloadString; if (m.length == 0) { return; } ctx.dangerPoly = new EventPolygon("danger"); ctx.warningPoly = new EventPolygon("warning"); ctx.innerSelectPoly = null; ctx.outerSelectPoly = null; demo.setState(Utils.EventStates.EVENT_CREATED); if (demo.isPresenter()) { PresenterActions.drawEventSelectPoly(); } var dangerPoly = []; var warningPoly = []; var dangerPolyStr = m.split("&")[0]; var warningPolyStr = m.split("&")[1]; var pt = ""; pt = dangerPolyStr.split("|"); for (var i in pt) { dangerPoly.push({ lon: pt[i].split(",")[0], lat: pt[i].split(",")[1] }); } pt = warningPolyStr.split("|"); for (var i in pt) { warningPoly.push({ lon: pt[i].split(",")[0] , lat: pt[i].split(",")[1] }); } ctx.warningPoly.setPoints(warningPoly); ctx.dangerPoly.setPoints(dangerPoly); } })(this)); } EventPolygonSet.prototype = new MapPolygonSet(); EventPolygonSet.prototype.reset = function() { this.dangerPoly = null; this.warningPoly = null; this.innerSelectPoly = null; this.outerSelectPoly = null; } EventPolygonSet.prototype.draw = function() { if (this.outerSelectPoly) { this.outerSelectPoly.draw(); } if (this.innerSelectPoly) { this.innerSelectPoly.draw(); } if (this.warningPoly) { this.warningPoly.draw(); } if (this.dangerPoly) { this.dangerPoly.draw(); } } EventPolygonSet.prototype.startCreateEvent = function() { if (demo.getState() == Utils.EventStates.EVENT_SELECTION) { // we're in selection mode, cancel selection demo.cancelCreateEvent(); toolbarButtonClicked($("#toolbarButton_select")[0], true); } else { demo.setState(Utils.EventStates.EVENT_SELECTION); this.initInputPolys(); } } EventPolygonSet.prototype.cancelCreateEvent = function() { this.innerSelectPoly = null; this.outerSelectPoly = null; } EventPolygonSet.prototype.initInputPolys = function() { var centerPos = { x: win.width / 2, y: win.height / 2 }; this.innerSelectPoly = new EventPolygon("innerSelect") var points = []; if (demo.location.name == "Manhattan") { points = [ Utils.xyToGeo(centerPos.x - 15, centerPos.y - 52, true), Utils.xyToGeo(centerPos.x + 52, centerPos.y - 15, true), Utils.xyToGeo(centerPos.x + 15, centerPos.y + 52, true), Utils.xyToGeo(centerPos.x - 52, centerPos.y + 15, true) ]; } else { //var num = 35; var num = 90; points = [ Utils.xyToGeo(centerPos.x - num, centerPos.y - num, true), Utils.xyToGeo(centerPos.x + num, centerPos.y - num, true), Utils.xyToGeo(centerPos.x + num, centerPos.y + num, true), Utils.xyToGeo(centerPos.x - num, centerPos.y + num, true) ]; } this.innerSelectPoly.setPoints(points); this.outerSelectPoly = new EventPolygon("outerSelect") if (demo.location.name == "Manhattan") { points = [ Utils.xyToGeo(centerPos.x - 45, centerPos.y - 156, true), Utils.xyToGeo(centerPos.x + 156, centerPos.y - 45, true), Utils.xyToGeo(centerPos.x + 45, centerPos.y + 156, true), Utils.xyToGeo(centerPos.x - 156, centerPos.y + 45, true) ]; } else { //var num = 115; var num = 160; points = [ Utils.xyToGeo(centerPos.x - num, centerPos.y - num, true), Utils.xyToGeo(centerPos.x + num, centerPos.y - num, true), Utils.xyToGeo(centerPos.x + num, centerPos.y + num, true), Utils.xyToGeo(centerPos.x - num, centerPos.y + num, true) ]; } this.outerSelectPoly.setPoints(points); } // return true if the inner is completely inside of the outer EventPolygonSet.prototype.validatePolys = function() { for (var i = 1; i < this.outerSelectPoly.points.length; i++) { var start = this.outerSelectPoly.points[i]; var end = this.outerSelectPoly.points[i-1]; for (var j = 0; j < this.innerSelectPoly.points.length; j++) { var pt = this.innerSelectPoly.points[j]; if (!Utils.isLeft(Utils.geoToXY(start), Utils.geoToXY(end), Utils.geoToXY(pt))) { return false; } } } return true; } EventPolygonSet.prototype.getPolygonString = function() { var polyStr = ""; var sep = ""; for (var i = 0; i < this.innerSelectPoly.points.length; i++) { polyStr += sep + this.innerSelectPoly.points[i].lon + "," + this.innerSelectPoly.points[i].lat; sep = "|"; } polyStr += "&"; var sep = ""; for (var i = 0; i < this.outerSelectPoly.points.length; i++) { polyStr += sep + this.outerSelectPoly.points[i].lon + "," + this.outerSelectPoly.points[i].lat; sep = "|"; } return polyStr; } /***************************************************************************** * * EventPolygon * * Base class for all objects that will be displayed on the map. * ****************************************************************************/ function EventPolygon(type) { MapPolygon.call(this, Utils.randomString(20)); this.type = "EventPolygon"; this.numPoints = 4; this.points = []; this.finished = true; this.filled = true; if (type == "danger") { this.color = Utils.Colors.DARKRED; } else if (type == "warning") { this.color = Utils.Colors.YELLOW; } else if (type == "innerSelect") { this.color = Utils.Colors.Poly.DARKRED; this.editable = true; this.drawPoints = true; } else if (type == "outerSelect") { this.color = Utils.Colors.Poly.DARKYELLOW; this.editable = true; this.drawPoints = true; } for (var i = 0; i < this.numPoints; i++) { this.points.push({ lon: null, lat: null }); } } EventPolygon.prototype = new MapPolygon(); EventPolygon.prototype.constructor = MapPolygon; EventPolygon.prototype.movePoint = function(index, dx, dy) { var oldPos = Utils.geoToXY(this.points[index].lon, this.points[index].lat, true); oldPos.x += dx; oldPos.y += dy; var newGeo = Utils.xyToGeo(oldPos.x, oldPos.y, true); this.points[index].lon = newGeo.lon; this.points[index].lat = newGeo.lat; } EventPolygon.prototype.move = function(dx, dy) { for (var i in this.points) { this.movePoint(i, dx, dy); } } EventPolygon.prototype.moveEdge = function(startIndex, endIndex, dx, dy) { this.movePoint(startIndex, dx, dy); this.movePoint(endIndex, dx, dy); }

public/js/Map/Fence.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ /******************************************************************* * * FenceSet * *******************************************************************/ function FenceSet() { // inherit from parent MapObjectSet.call(this); this.noDeleteOnReset = true; // overwrite subscription method this.sub = null; setTimeout((function(ctx) { return function() { ctx.loadFences(); } })(this), 2000); setInterval((function(ctx) { return function() { ctx.loadFences(); } })(this), 10000); } FenceSet.prototype = new MapObjectSet(); FenceSet.prototype.constructor = MapObjectSet; FenceSet.prototype.createFence = function() { var fence_id = Utils.randomUppercaseString(4); this.objects[fence_id] = new Fence(fence_id); this.objects[fence_id].inEdit = true; var points = []; var center = { lon: demo.ui._viewport.lon.center, lat: demo.ui._viewport.lat.center }; var radius = Math.min(demo.ui._viewport.lon.max - demo.ui._viewport.lon.min, demo.ui._viewport.lat.max - demo.ui._viewport.lat.min) / 6; console.log(radius); points.push({ lon: center.lon, lat: center.lat + radius }); points.push({ lon: center.lon + radius, lat: center.lat + radius }); points.push({ lon: center.lon + radius, lat: center.lat }); points.push({ lon: center.lon + radius, lat: center.lat - radius }); points.push({ lon: center.lon, lat: center.lat - radius }); points.push({ lon: center.lon - radius, lat: center.lat - radius }); points.push({ lon: center.lon - radius, lat: center.lat }); points.push({ lon: center.lon - radius, lat: center.lat + radius }); this.objects[fence_id].geo = center; this.objects[fence_id].polygon = new FencePolygon(); this.objects[fence_id].polygon.points = points; this.objects[fence_id].polygon.numPoints = points.length; this.objects[fence_id].type = "type"; this.objects[fence_id].message = "test"; } FenceSet.prototype.loadFences = function() { var url = "/GeospatialService_status"; $.get(url, (function(ctx) { return function(data) { ctx.processFences(data); } })(this)); } FenceSet.prototype.processFences = function(data) { console.log("FenceSet::processFences", data); for (var i in this.objects) { if (!this.objects[i].inEdit) { delete this.objects[i]; } } for (var i in data.custom_regions) { var fence = data.custom_regions[i]; var fence_id = fence.id; this.objects[fence_id] = new Fence(fence_id); var notifyOnExit = fence.notifyOnExit; var points = []; var avgLon = 0; var avgLat = 0; for (var j in fence.polygon) { var p = fence.polygon[j]; points.push({ lon: p.longitude, lat: p.latitude }); avgLon += p.longitude; avgLat += p.latitude; } this.objects[fence_id].geo.lon = avgLon / points.length; this.objects[fence_id].geo.lat = avgLat / points.length; this.objects[fence_id].polygon = new FencePolygon(); this.objects[fence_id].polygon.points = points; this.objects[fence_id].polygon.numPoints = points.length; this.objects[fence_id].type = "type"; this.objects[fence_id].message = "test"; } } FenceSet.prototype.saveFence = function(id) { console.log("saveFence("+id+")"); var body = { "regions" : [ { "region_type": "custom", "name": this.objects[id].name, "notifyOnExit": "true", "polygon": this.objects[id].polygon.getPointsJSON() } ] } console.log(body); $.get("/GeospatialService_addRegion", body, function(data) { console.log("addRegion callback", data); }); } FenceSet.prototype.deleteFence = function(id) { console.log("deleteFence("+id+")"); if (this.objects[id].inEdit) { delete this.objects[id]; } else { var body = { "region_type": "custom", "region_name": this.objects[id].name } console.log(body); var url = "/GeospatialService_removeRegion"; $.get(url, body, (function(ctx, fence_id) { return function(data) { //delete ctx.objects[fence_id]; } })(this, id)); } } FenceSet.prototype.draw = function() { for (var i in this.objects) { this.objects[i].draw(); } } FenceSet.prototype.switchSet = function(ids) { // switch set of cars to keep track of, delete the rest this.idSet = ids; console.log("new idSet = " + ids); var toDelete = []; demo.ui.deselect(); for (var i in this.objects) { if (i != 99999 && this.idSet.indexOf(i) == -1) { toDelete.push(i); } } for (var i in toDelete) { console.log("deleting " + toDelete[i]); delete this.objects[toDelete[i]]; } } /***************************************************************************** * * Fence * ****************************************************************************/ function Fence(id) { MapObject.call(this, id); this.type = "Fence"; this.name = id; this.inEdit = false; } Fence.prototype = new MapObject(); Fence.prototype.constructor = MapObject; Fence.prototype.drawPopover = function() { // update position $(".popover.left").css("left", this.pos.x - $(".popover.left").width() - this.getUnscaledRadius() - 40); $(".popover.right").css("left", this.pos.x + this.getUnscaledRadius() + 35); if (this.isSelected) { $(".popover.left").css("top", win.height / 2 - ($(".popover.left").height() / 2) - 2); $(".popover.right").css("top", win.height / 2 - ($(".popover.right").height() / 2) - 2); } else { $(".popover.left").css("top", this.pos.y - $(".popover.left").height()); $(".popover.right").css("top", this.pos.y - $(".popover.right").height()); } $(".popover").css("zIndex", "99"); if (this.loadPopoverData) { // load content var data = this.getPopoverData(); $(".popover.left").find(".popover-title").html(data.left.title); $(".popover.left").find(".popover-content").html(data.left.content); $(".popover.right").css("max-height", $(".popover.left").height()); $(".popover.right").find(".popover-title").html(data.right.title); $(".popover.right").find(".popover-content").html(data.right.content); this.loadPopoverData = false; } else { // update existing content this.updatePopoverData(); } } Fence.prototype.getPopoverData = function() { var data = { left: { title: "", content: "" }, right: { title: "", content: "" } }; data.left.title = this.name; if (this.inEdit) { var createButton = '<button class="btn btn-success btn-small" style="width: 100%" onclick="demo.ui.deselect(); demo.saveFence(\''+this.id+'\')">Create</button>'; data.left.content += createButton; } var deleteButton = '<button class="btn btn-info btn-small" style="width: 100%" onclick="demo.ui.deselect(); demo.clearFence(\''+this.id+'\')">Delete</button>'; data.left.content += deleteButton; return data; } Fence.prototype.updatePopoverData = function() { } Fence.prototype.init = function() { } Fence.prototype.reset = function() { } Fence.prototype.getRadius = function() { return 15; } Fence.prototype.getUnscaledRadius = function() { return 15; } Fence.prototype.draw = function() { if (!this.geo.lon || !this.geo.lat) { return; } if (this.deleted) { return; } // if outside of canvas bounds, don't draw if (this.pos.x < -5 || this.pos.x > demo.ui.canvas.width + 5 || this.pos.y < -5 || this.pos.y > demo.ui.canvas.height + 5) { return 0; } if (this.inEdit) { this.polygon.drawPoints = true; this.polygon.draw(); //with points } var context = demo.ui.context; if (this.isSelected) { context.save(); context.beginPath(); context.fillStyle = "rgba(255,255,255,0.8)"; context.arc(this.pos.x, this.pos.y, this.getRadius() + 5, 0, Math.PI*2, true); context.closePath(); context.stroke(); context.fill(); } context.save(); context.beginPath(); context.fillStyle = "rgba(0,0,0,0.8)"; context.arc(this.pos.x, this.pos.y, this.getRadius() / 2, 0, Math.PI*2, true); context.closePath(); context.stroke(); context.fill(); if (this.isSelected) { this.drawPopover(); } }

public/js/Map/FencePolygon.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ /***************************************************************************** * * FencePolygon * ****************************************************************************/ function FencePolygon() { MapPolygon.call(this, Utils.randomString(20)); this.type = "FencePolygon"; this.numPoints = null; this.points = null; this.finished = true; this.filled = true; this.color = "rgba(0,0,255,0.3)"; this.pointRadius = 5; } FencePolygon.prototype = new MapPolygon(); FencePolygon.prototype.constructor = MapPolygon; FencePolygon.prototype.movePoint = function(index, dx, dy) { var oldPos = Utils.geoToXY(this.points[index].lon, this.points[index].lat, true); oldPos.x += dx; oldPos.y += dy; var newGeo = Utils.xyToGeo(oldPos.x, oldPos.y, true); this.points[index].lon = newGeo.lon; this.points[index].lat = newGeo.lat; } FencePolygon.prototype.move = function(dx, dy) { for (var i in this.points) { this.movePoint(i, dx, dy); } } FencePolygon.prototype.moveEdge = function(startIndex, endIndex, dx, dy) { this.movePoint(startIndex, dx, dy); this.movePoint(endIndex, dx, dy); } FencePolygon.prototype.getPointsString = function() { var fence_polygon = ""; var sep = ""; for (var i in this.points) { fence_polygon += sep + this.points[i].lon + "," + this.points[i].lat; sep = ":"; } return fence_polygon; } FencePolygon.prototype.getPointsJSON = function() { var points = []; for (var i in this.points) { points.push({ latitude: this.points[i].lat, longitude: this.points[i].lon }); } return points; } function getDefaultFencePolygon(center, numPoints) { var centerXY = Utils.geoToXY(center); var radius = Math.min(win.width, win.height) / 6; var points = []; for (var i = 0; i < numPoints; i++) { var angle = i * 2 * Math.PI / numPoints; var delta = { x: radius * Math.cos(angle), y: radius * Math.sin(angle) }; points.push(Utils.xyToGeo({ x: centerXY.x + delta.x, y: centerXY.y + delta.y })); } return points; }

public/js/Map/MapGraph.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ /***************************************************************************** * * MapGraphSet * ****************************************************************************/ function MapGraphSet() { this.objects = {}; this.visible = true; this.sub = null; var austinMap = "eyJuYW1lIjoiQXVzdGluIC0gRG93bnRvd24iLCJhYmJyIjoiYXVzdGluIiwibm9kZUNvdW50Ijo2OTUsImVkZ2VDb3VudCI6MTI2Mywibm9kZXMiOnsiMTUyMzY5Mjg2Ijp7ImlkIjoiMTUyMzY5Mjg2IiwibG9uIjotOTcuNzMxMzcsImxhdCI6MzAuMjc2MTYsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA2OS0xNTIzNjkyODZfMTQyMTEzNDczMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzY5Mjg2IiwiYiI6IjE0MjExMzQ3MzMiLCJoZWFkaW5nIjotMTY1LjIzODg5ODA3MzMxNTgsImRpc3QiOjY0LjE5OX1dfSwiMTUyMzc0NzYwIjp7ImlkIjoiMTUyMzc0NzYwIiwibG9uIjotOTcuNzMxOTgsImxhdCI6MzAuMjc0MTIsImVkZ2VzIjpbeyJpZCI6IjEzMTI4MTYzNC0xNTIzNzQ3NjBfMTA3Nzg0MDE5NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzc0NzYwIiwiYiI6IjEwNzc4NDAxOTciLCJoZWFkaW5nIjotMTYzLjA2MTg0NDc0MTU0MTMsImRpc3QiOjY2LjA1NH1dfSwiMTUyMzc0ODE2Ijp7ImlkIjoiMTUyMzc0ODE2IiwibG9uIjotOTcuNzMxNTksImxhdCI6MzAuMjc1MDEsImVkZ2VzIjpbeyJpZCI6IjE2NDI4NDc4NS0xNTIzNzQ4MTZfMTUyMzc0ODE5IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM3NDgxNiIsImIiOiIxNTIzNzQ4MTkiLCJoZWFkaW5nIjoxNTIuNDkwNjYyNTMyOTA4NDYsImRpc3QiOjYuMjQ5fV19LCIxNTIzNzQ4MTkiOnsiaWQiOiIxNTIzNzQ4MTkiLCJsb24iOi05Ny43MzE1NiwibGF0IjozMC4yNzQ5NiwiZWRnZXMiOlt7ImlkIjoiMTY0Mjg0Nzg1LTE1MjM3NDgxOV8xNTIzNzQ4MjEiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzc0ODE5IiwiYiI6IjE1MjM3NDgyMSIsImhlYWRpbmciOjExNC43NDI3MDk1Mzc5MzM0NCwiZGlzdCI6NS4yOTd9XX0sIjE1MjM3NjM5OCI6eyJpZCI6IjE1MjM3NjM5OCIsImxvbiI6LTk3LjczNTUyLCJsYXQiOjMwLjI2NDYsImVkZ2VzIjpbeyJpZCI6IjE1Mzc0NTc3LTE1MjM3NjM5OF8xNTIzNzY0MDEiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzc2Mzk4IiwiYiI6IjE1MjM3NjQwMSIsImhlYWRpbmciOi0xNzcuODM4NjA0NjQ5Mzg5NjgsImRpc3QiOjI1LjUxNX0seyJpZCI6IjE3Njg3NTE3NS0xNTIzNzYzOThfMTUyNDQ3MzczIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzNzYzOTgiLCJiIjoiMTUyNDQ3MzczIiwiaGVhZGluZyI6LTE2Mi43NzU1NDMzMTA2NjM4LCJkaXN0Ijo2NC45OTV9XX0sIjE1MjM3NjQwMSI6eyJpZCI6IjE1MjM3NjQwMSIsImxvbiI6LTk3LjczNTUzLCJsYXQiOjMwLjI2NDM3LCJlZGdlcyI6W3siaWQiOiIxNTM3NDU3Ny0xNTIzNzY0MDFfMTUyMzc2NDA0IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM3NjQwMSIsImIiOiIxNTIzNzY0MDQiLCJoZWFkaW5nIjoxNjYuMDcwODUzNzE4MjYwODUsImRpc3QiOjcuOTk1fV19LCIxNTIzNzY0MDQiOnsiaWQiOiIxNTIzNzY0MDQiLCJsb24iOi05Ny43MzU1MSwibGF0IjozMC4yNjQzLCJlZGdlcyI6W3siaWQiOiIxNTM3NDU3Ny0xNTIzNzY0MDRfMTUyMzc2NDA3IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM3NjQwNCIsImIiOiIxNTIzNzY0MDciLCJoZWFkaW5nIjoxNTQuMjU0MjMyNTkwNjU4NDYsImRpc3QiOjExLjA3N31dfSwiMTUyMzc2NDA3Ijp7ImlkIjoiMTUyMzc2NDA3IiwibG9uIjotOTcuNzM1NDYsImxhdCI6MzAuMjY0MjEsImVkZ2VzIjpbeyJpZCI6IjE1Mzc0NTc3LTE1MjM3NjQwN18xNTIzNzY0MTAiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzc2NDA3IiwiYiI6IjE1MjM3NjQxMCIsImhlYWRpbmciOjEzOS4wNDAyNzMzNTIzMTcwMywiZGlzdCI6NS44NzJ9XX0sIjE1MjM3NjQxMCI6eyJpZCI6IjE1MjM3NjQxMCIsImxvbiI6LTk3LjczNTQyLCJsYXQiOjMwLjI2NDE3LCJlZGdlcyI6W3siaWQiOiIxNTM3NDU3Ny0xNTIzNzY0MTBfMTUyMzc2NDE1IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM3NjQxMCIsImIiOiIxNTIzNzY0MTUiLCJoZWFkaW5nIjoxMjIuMTQzNzkxNzU2NzI0LCJkaXN0IjoxMi41MDJ9XX0sIjE1MjM3NjQxNSI6eyJpZCI6IjE1MjM3NjQxNSIsImxvbiI6LTk3LjczNTMxLCJsYXQiOjMwLjI2NDExLCJlZGdlcyI6W3siaWQiOiIxNTM3NDU3Ny0xNTIzNzY0MTVfMTUyMzc2NDE4IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM3NjQxNSIsImIiOiIxNTIzNzY0MTgiLCJoZWFkaW5nIjoxMDYuMDY2NDA4OTI4MzIwNTQsImRpc3QiOjguMDExfV19LCIxNTIzNzg3NTciOnsiaWQiOiIxNTIzNzg3NTciLCJsb24iOi05Ny43MzY1MiwibGF0IjozMC4yNjE4OSwiZWRnZXMiOlt7ImlkIjoiMTc2ODc1MTU5LTE1MjM3ODc1N18xNTI0MTQ3NzkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjM3ODc1NyIsImIiOiIxNTI0MTQ3NzkiLCJoZWFkaW5nIjotMTYyLjA1MjMyMTExMjg3NDUyLCJkaXN0Ijo3OC4wNzN9XX0sIjE1MjM4MDgxNyI6eyJpZCI6IjE1MjM4MDgxNyIsImxvbiI6LTk3LjczNTM1LCJsYXQiOjMwLjI2MzgzLCJlZGdlcyI6W3siaWQiOiIxNTM3NTIwMy0xNTIzODA4MTdfMTUyMzgwODI0IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM4MDgxNyIsImIiOiIxNTIzODA4MjQiLCJoZWFkaW5nIjotODEuODA1NzAyODEzMzU2NjMsImRpc3QiOjE1LjU1Nn1dfSwiMTUyMzgwODI0Ijp7ImlkIjoiMTUyMzgwODI0IiwibG9uIjotOTcuNzM1NTEsImxhdCI6MzAuMjYzODUsImVkZ2VzIjpbeyJpZCI6IjE1Mzc1MjAzLTE1MjM4MDgyNF8xNTIzODA4MjUiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzgwODI0IiwiYiI6IjE1MjM4MDgyNSIsImhlYWRpbmciOi05Ny4yOTQxNjgyMjczNjQ2MiwiZGlzdCI6OC43MzF9XX0sIjE1MjM4MDgyNSI6eyJpZCI6IjE1MjM4MDgyNSIsImxvbiI6LTk3LjczNTYsImxhdCI6MzAuMjYzODQsImVkZ2VzIjpbeyJpZCI6IjE1Mzc1MjAzLTE1MjM4MDgyNV8xNTIzODA4MjciLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzgwODI1IiwiYiI6IjE1MjM4MDgyNyIsImhlYWRpbmciOi05OS4zNDU0NTM0NjQzODU4NCwiZGlzdCI6Ni44Mjd9XX0sIjE1MjM4MDgyNyI6eyJpZCI6IjE1MjM4MDgyNyIsImxvbiI6LTk3LjczNTY3LCJsYXQiOjMwLjI2MzgzLCJlZGdlcyI6W3siaWQiOiIxNTM3NTIwMy0xNTIzODA4MjdfMTUyMzgwODMwIiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM4MDgyNyIsImIiOiIxNTIzODA4MzAiLCJoZWFkaW5nIjotMTI3LjUyNDIxNjgxMTcxNDg1LCJkaXN0Ijo3LjI4fV19LCIxNTIzODA4MzAiOnsiaWQiOiIxNTIzODA4MzAiLCJsb24iOi05Ny43MzU3MywibGF0IjozMC4yNjM3OSwiZWRnZXMiOlt7ImlkIjoiMTUzNzUyMDMtMTUyMzgwODMwXzE1MjM4MDgzMiIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNTIzODA4MzAiLCJiIjoiMTUyMzgwODMyIiwiaGVhZGluZyI6LTE0My4zNDg5MzUyNzY2NzU0LCJkaXN0Ijo5LjY3Mn1dfSwiMTUyMzgwODMyIjp7ImlkIjoiMTUyMzgwODMyIiwibG9uIjotOTcuNzM1NzksImxhdCI6MzAuMjYzNzIsImVkZ2VzIjpbeyJpZCI6IjE1Mzc1MjAzLTE1MjM4MDgzMl8xNTIzODA4MzQiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzgwODMyIiwiYiI6IjE1MjM4MDgzNCIsImhlYWRpbmciOi0xNDIuNzgxNDc4MTMzNjIzNCwiZGlzdCI6MTEuMTM3fV19LCIxNTIzODA4MzQiOnsiaWQiOiIxNTIzODA4MzQiLCJsb24iOi05Ny43MzU4NiwibGF0IjozMC4yNjM2NCwiZWRnZXMiOlt7ImlkIjoiMTc2ODc1MTc1LTE1MjM4MDgzNF8xNTI0OTY5MDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjM4MDgzNCIsImIiOiIxNTI0OTY5MDAiLCJoZWFkaW5nIjotMTYxLjQ3Njk4NjgzNjgzMTcsImRpc3QiOjY2LjY0MX1dfSwiMTUyMzgxMjU3Ijp7ImlkIjoiMTUyMzgxMjU3IiwibG9uIjotOTcuNzM1LCJsYXQiOjMwLjI2NTg4LCJlZGdlcyI6W3siaWQiOiIzMTE2NTk2OC0xNTIzODEyNTdfNDQzMTg3MTU5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzODEyNTciLCJiIjoiNDQzMTg3MTU5IiwiaGVhZGluZyI6LTczLjkzMzE1MDY3NDU3ODQ2LCJkaXN0Ijo1Mi4wNzJ9LHsiaWQiOiIxNDM5NDgxNzgtMTUyMzgxMjU3XzE3NTkzMjg3NDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjM4MTI1NyIsImIiOiIxNzU5MzI4NzQyIiwiaGVhZGluZyI6LTE1OS41OTM5NjQyNDYyNzI3OCwiZGlzdCI6OC4yOH1dfSwiMTUyMzgzMjM2Ijp7ImlkIjoiMTUyMzgzMjM2IiwibG9uIjotOTcuNzMyNTYsImxhdCI6MzAuMjcyNDcsImVkZ2VzIjpbeyJpZCI6IjEzMTI4MTYzNC0xNTIzODMyMzZfMTYzMTQ5NjU2MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzgzMjM2IiwiYiI6IjE2MzE0OTY1NjAiLCJoZWFkaW5nIjotMTYyLjY0NzM2NjgzMTYwODksImRpc3QiOjI5LjAzNn1dfSwiMTUyMzkzNDcwIjp7ImlkIjoiMTUyMzkzNDcwIiwibG9uIjotOTcuNzQ5OCwibGF0IjozMC4yNjU4NywiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDcwXzQ0MzEyOTQxMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0NzAiLCJiIjoiNDQzMTI5NDExIiwiaGVhZGluZyI6MTcuMDg4OTI0OTE3MTU1MjkzLCJkaXN0Ijo1NS42Njl9XX0sIjE1MjM5MzQ3NSI6eyJpZCI6IjE1MjM5MzQ3NSIsImxvbiI6LTk3Ljc0OTQ2LCJsYXQiOjMwLjI2NjgxLCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNTIzOTM0NzVfNDQzMTI5NDExIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ3NSIsImIiOiI0NDMxMjk0MTEiLCJoZWFkaW5nIjoxOTcuNzg1OTA0ODA0Nzg5MDMsImRpc3QiOjUzLjU1NH0seyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ3NV8xNTIzOTM0NzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDc1IiwiYiI6IjE1MjM5MzQ3OSIsImhlYWRpbmciOjE1LjQ4NDIyMTczNzIyNTc0NywiZGlzdCI6MTA4LjEzfSx7ImlkIjoiMzAxNDg2NzAtMTUyMzkzNDc1XzE1MjUwMDcyMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0NzUiLCJiIjoiMTUyNTAwNzIyIiwiaGVhZGluZyI6MTA3LjM4OTQ1NDY1MTM3Mjc3LCJkaXN0IjoxMDMuODYxfSx7ImlkIjoiMjA0OTY0NzY3LTE1MjM5MzQ3NV8xNTI1MDA3MjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDc1IiwiYiI6IjE1MjUwMDcyMiIsImhlYWRpbmciOjEwNy4zODk0NTQ2NTEzNzI3NywiZGlzdCI6MTAzLjg2MX0seyJpZCI6IjIwNDk2NDc2Ny0xNTIzOTM0NzVfMzMyMjI5MzU1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ3NSIsImIiOiIzMzIyMjkzNTUiLCJoZWFkaW5nIjotNzEuNDcxOTI3OTcyNDE5NjYsImRpc3QiOjU1LjgxOH1dfSwiMTUyMzkzNDc5Ijp7ImlkIjoiMTUyMzkzNDc5IiwibG9uIjotOTcuNzQ5MTYsImxhdCI6MzAuMjY3NzUsImVkZ2VzIjpbeyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ3OV8xNTIzOTM0NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDc5IiwiYiI6IjE1MjM5MzQ3NSIsImhlYWRpbmciOjE5NS40ODQyMjE3MzcyMjU3NCwiZGlzdCI6MTA4LjEzfSx7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDc5XzQ0MzEyOTQxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0NzkiLCJiIjoiNDQzMTI5NDEyIiwiaGVhZGluZyI6MTcuNjg1NTczOTE1ODQ3NywiZGlzdCI6NTcuMDE1fSx7ImlkIjoiMTUzODI3NjktMTUyMzkzNDc5XzE1MjQ1MTU0NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0NzkiLCJiIjoiMTUyNDUxNTQ3IiwiaGVhZGluZyI6MTA4LjE0MTQyMDcyNzI3NjI0LCJkaXN0IjoxMTAuMzczfSx7ImlkIjoiMTUzODI3NjktMTUyMzkzNDc5XzE1MjQ1MTU1MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0NzkiLCJiIjoiMTUyNDUxNTUwIiwiaGVhZGluZyI6LTY3LjQ3NDE0ODI2Nzk0NDgxLCJkaXN0IjoxMDQuMTc0fV19LCIxNTIzOTM0ODEiOnsiaWQiOiIxNTIzOTM0ODEiLCJsb24iOi05Ny43NDg4LCJsYXQiOjMwLjI2ODY5LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODFfNDQzMTI5NDEyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4MSIsImIiOiI0NDMxMjk0MTIiLCJoZWFkaW5nIjoxOTkuMTQ3MjYxNjMyMDYwODMsImRpc3QiOjUyLjgwN30seyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ4MV80NDMxODIzMzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDgxIiwiYiI6IjQ0MzE4MjMzOSIsImhlYWRpbmciOjIwLjc5NDQ1NzA3MDY4NDMwNiwiZGlzdCI6NTYuOTE5fV19LCIxNTIzOTM0ODIiOnsiaWQiOiIxNTIzOTM0ODIiLCJsb24iOi05Ny43NDg0MiwibGF0IjozMC4yNjk2MiwiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDgyXzQ0MzE4MjMzOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODIiLCJiIjoiNDQzMTgyMzM5IiwiaGVhZGluZyI6MTk4LjE1NDk3OTEzMzM1MDYyLCJkaXN0Ijo1Mi40OTl9LHsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODJfNDQzMTgyMzQwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4MiIsImIiOiI0NDMxODIzNDAiLCJoZWFkaW5nIjoxOC42MDE3NjM1NTk4ODUzODQsImRpc3QiOjU3LjMxNH1dfSwiMTUyMzkzNDgzIjp7ImlkIjoiMTUyMzkzNDgzIiwibG9uIjotOTcuNzQ4MDYsImxhdCI6MzAuMjcwNTcsImVkZ2VzIjpbeyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ4M180NDMxODIzNDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDgzIiwiYiI6IjQ0MzE4MjM0MCIsImhlYWRpbmciOjE5Ny43ODUyNjAxNjIyNzk3LCJkaXN0Ijo1My41NTR9LHsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODNfNDQzMTgyMzQxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4MyIsImIiOiI0NDMxODIzNDEiLCJoZWFkaW5nIjoxNy40Mjk5MTQyNTk1MzE3OSwiZGlzdCI6NTQuNjF9LHsiaWQiOiIyNzQwMTI1My0xNTIzOTM0ODNfMTYyNjU0NzAyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODMiLCJiIjoiMTYyNjU0NzAyNiIsImhlYWRpbmciOjEwOS44MDAyNjg1MTA3NjI0NiwiZGlzdCI6NjUuNDUzfSx7ImlkIjoiMzExNjU5NjItMTUyMzkzNDgzXzE1MjUxMjg0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODMiLCJiIjoiMTUyNTEyODQ2IiwiaGVhZGluZyI6LTcxLjg1ODAzMzMyNjIyMzk1LCJkaXN0IjoxMTAuMzd9XX0sIjE1MjM5MzQ4NSI6eyJpZCI6IjE1MjM5MzQ4NSIsImxvbiI6LTk3Ljc0Nzc0LCJsYXQiOjMwLjI3MTQ4LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODVfNDQzMTgyMzQxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NSIsImIiOiI0NDMxODIzNDEiLCJoZWFkaW5nIjoxOTYuNDgzNzQ2OTEwMjYwOTIsImRpc3QiOjUwLjg2OH0seyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ4NV80NDMxODIzNDIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDg1IiwiYiI6IjQ0MzE4MjM0MiIsImhlYWRpbmciOjE3Ljc4NTAyNTI1NzcwMjQ1LCJkaXN0Ijo1My41NTR9LHsiaWQiOiI0MTI4NzYyOC0xNTIzOTM0ODVfMTUyMzk4MjI3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NSIsImIiOiIxNTIzOTgyMjciLCJoZWFkaW5nIjoxMDguMjk4OTAyNzg2OTU0NDQsImRpc3QiOjEwOS40NTV9LHsiaWQiOiI0MTI4NzYyOC0xNTIzOTM0ODVfMTUyMzk4MjMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NSIsImIiOiIxNTIzOTgyMzAiLCJoZWFkaW5nIjotNzAuODIxOTk2MTA2MTY0ODksImRpc3QiOjEwNy45ODl9XX0sIjE1MjM5MzQ4NyI6eyJpZCI6IjE1MjM5MzQ4NyIsImxvbiI6LTk3Ljc0NzM5LCJsYXQiOjMwLjI3MjQ0LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODdfNDQzMTgyMzQyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NyIsImIiOiI0NDMxODIzNDIiLCJoZWFkaW5nIjoxOTcuMzUyNTkxMTI3Mjc4NDYsImRpc3QiOjU4LjA3Mn0seyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ4N180NDMxODIzNDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDg3IiwiYiI6IjQ0MzE4MjM0MyIsImhlYWRpbmciOjE4LjE1NDQwODM4NjMzODcsImRpc3QiOjUyLjQ5OX0seyJpZCI6IjQxMjg3NjI5LTE1MjM5MzQ4N18yMDkwNzUzMzA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NyIsImIiOiIyMDkwNzUzMzA3IiwiaGVhZGluZyI6MTA3Ljc0NjIxMjAzMTI2MjEzLCJkaXN0IjozNi4zN30seyJpZCI6IjQxMjg3NjI5LTE1MjM5MzQ4N18xNTI2MzY4NzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDg3IiwiYiI6IjE1MjYzNjg3NyIsImhlYWRpbmciOi03Mi4yNTM1NzIyNjA1MDA5LCJkaXN0IjoxMDkuMTExfV19LCIxNTIzOTM0ODkiOnsiaWQiOiIxNTIzOTM0ODkiLCJsb24iOi05Ny43NDcwNCwibGF0IjozMC4yNzMzOCwiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDg5XzQ0MzE4MjM0MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODkiLCJiIjoiNDQzMTgyMzQzIiwiaGVhZGluZyI6MTk3LjY4NDY5NjkyNDA4ODQ4LCJkaXN0Ijo1Ny4wMTR9LHsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODlfMTUyMzkzNDkyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4OSIsImIiOiIxNTIzOTM0OTIiLCJoZWFkaW5nIjoxNy4yOTMxNjA5OTM5NDMxNjgsImRpc3QiOjEwNi44MTd9LHsiaWQiOiI0MTkyMDA4OS0xNTIzOTM0ODlfMTUyNDgwMjE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4OSIsImIiOiIxNTI0ODAyMTYiLCJoZWFkaW5nIjotNzMuMzY5MDQzNzA0MTk1MzYsImRpc3QiOjEwOC40NTV9LHsiaWQiOiI0MTkyMDA5MS0xNTIzOTM0ODlfMTUyNDgwMjE0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4OSIsImIiOiIxNTI0ODAyMTQiLCJoZWFkaW5nIjoxMDguNDU4MTcxMjk1ODQ0NjQsImRpc3QiOjEwOC41NH1dfSwiMTUyMzkzNDkyIjp7ImlkIjoiMTUyMzkzNDkyIiwibG9uIjotOTcuNzQ2NzEsImxhdCI6MzAuMjc0MywiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDkyXzE1MjM5MzQ4OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0OTIiLCJiIjoiMTUyMzkzNDg5IiwiaGVhZGluZyI6MTk3LjI5MzE2MDk5Mzk0MzE2LCJkaXN0IjoxMDYuODE3fSx7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDkyXzQ0MzIxNDYzNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0OTIiLCJiIjoiNDQzMjE0NjM2IiwiaGVhZGluZyI6MTguNTIwOTA4MzI4Njg0MTIyLCJkaXN0Ijo2Ni42NH0seyJpZCI6IjIwNDg2OTUzMC0xNTIzOTM0OTJfMTUyNTgzMzk4IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjM5MzQ5MiIsImIiOiIxNTI1ODMzOTgiLCJoZWFkaW5nIjoxMDcuMjk2MDM5MzkzNDMzMSwiZGlzdCI6MTExLjg2Mn0seyJpZCI6IjIwNDg2OTUzMC0xNTIzOTM0OTJfMjEyNTQ2ODY2NCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTIzOTM0OTIiLCJiIjoiMjEyNTQ2ODY2NCIsImhlYWRpbmciOi03Mi42NzAwNzQzMTA0MzQxMywiZGlzdCI6OTYuNzYzfV19LCIxNTIzOTM0OTYiOnsiaWQiOiIxNTIzOTM0OTYiLCJsb24iOi05Ny43NDYyNiwibGF0IjozMC4yNzU1LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNTIzOTM0OTZfMTYyNjU1OTM0NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0OTYiLCJiIjoiMTYyNjU1OTM0NyIsImhlYWRpbmciOjE5OS4xNDYwMjEwMDU3MTYwNSwiZGlzdCI6MTEuNzM1fSx7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDk2XzQ0MzIxNDYzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0OTYiLCJiIjoiNDQzMjE0NjM3IiwiaGVhZGluZyI6MTguODI4MzA0OTUxMTkzMDkzLCJkaXN0Ijo2NS41OX0seyJpZCI6IjIwNDk4OTc3NS0xNTIzOTM0OTZfMTUyNjM2ODgyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzOTM0OTYiLCJiIjoiMTUyNjM2ODgyIiwiaGVhZGluZyI6LTcxLjkzOTc3MTY4MDUzNTY0LCJkaXN0IjoxMDcuMjc3fV19LCIxNTIzOTM1MDAiOnsiaWQiOiIxNTIzOTM1MDAiLCJsb24iOi05Ny43NDU4NSwibGF0IjozMC4yNzY2LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNTIzOTM1MDBfNDQzMjE0NjM3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUwMCIsImIiOiI0NDMyMTQ2MzciLCJoZWFkaW5nIjoxOTYuOTgxOTkyMDcwNDM3MzQsImRpc3QiOjYyLjU5Mn0seyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUwMF80NDMyMTQ2MzgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTAwIiwiYiI6IjQ0MzIxNDYzOCIsImhlYWRpbmciOjE4LjM4Njg5NzE1OTU0OTUzNywiZGlzdCI6NTQuOTA2fSx7ImlkIjoiMTUzOTE0NjYtMTUyMzkzNTAwXzE1MjU0NjE5NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDAiLCJiIjoiMTUyNTQ2MTk2IiwiaGVhZGluZyI6MTA3Ljc0NzA4ODQ0OTg1ODEsImRpc3QiOjEwOS4xMDd9LHsiaWQiOiIxNTM5MTQ2Ni0xNTIzOTM1MDBfMTUyNTQ2MTk4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUwMCIsImIiOiIxNTI1NDYxOTgiLCJoZWFkaW5nIjotNzEuNzAwMTQyODE4OTM2MiwiZGlzdCI6MTA5LjQ1fV19LCIxNTIzOTM1MDciOnsiaWQiOiIxNTIzOTM1MDciLCJsb24iOi05Ny43NDU1LCJsYXQiOjMwLjI3NzU2LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNTIzOTM1MDdfNDQzMjE0NjM4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUwNyIsImIiOiI0NDMyMTQ2MzgiLCJoZWFkaW5nIjoxOTYuNzU4MDg4NjEwMjk5NTgsImRpc3QiOjU2LjcyOX0seyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUwN180NDMyMTQ2MzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTA3IiwiYiI6IjQ0MzIxNDYzOSIsImhlYWRpbmciOjE4LjM4NjcyNzcxNTkzODY4MywiZGlzdCI6NTQuOTA2fSx7ImlkIjoiMjU3NTg0MTItMTUyMzkzNTA3XzE1MjQyODMxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDciLCJiIjoiMTUyNDI4MzEwIiwiaGVhZGluZyI6MTA4LjQ1OTQ1MDkzOTEyNjIzLCJkaXN0IjoxMDguNTM2fSx7ImlkIjoiMjU3NTg0MTItMTUyMzkzNTA3XzE1MjQyODMxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDciLCJiIjoiMTUyNDI4MzEyIiwiaGVhZGluZyI6LTcxLjY5OTk3NDA2MDQ3Mzk1LCJkaXN0IjoxMDkuNDQ5fV19LCIxNTIzOTM1MTUiOnsiaWQiOiIxNTIzOTM1MTUiLCJsb24iOi05Ny43NDUxMiwibGF0IjozMC4yNzg1NywiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNTE1XzE2MjY1NTU4MjgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTE1IiwiYiI6IjE2MjY1NTU4MjgiLCJoZWFkaW5nIjoyMDEuNTI5Nzg5NDE0ODI5OTYsImRpc3QiOjEzLjEwOX0seyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUxNV8xNTIzOTM1MTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTE1IiwiYiI6IjE1MjM5MzUxOCIsImhlYWRpbmciOjE3LjgzODc4Mjc1NTE2MDc3NSwiZGlzdCI6MTAzLjY0Nn0seyJpZCI6IjE3MDA1MDgxNy0xNTIzOTM1MTVfMTUyNjM2ODg2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzOTM1MTUiLCJiIjoiMTUyNjM2ODg2IiwiaGVhZGluZyI6LTcxLjg1NjYzNzU2MDUzNjYsImRpc3QiOjExMC4zNjJ9XX0sIjE1MjM5MzUxOCI6eyJpZCI6IjE1MjM5MzUxOCIsImxvbiI6LTk3Ljc0NDc5LCJsYXQiOjMwLjI3OTQ2LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNTIzOTM1MThfMTUyMzkzNTE1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUxOCIsImIiOiIxNTIzOTM1MTUiLCJoZWFkaW5nIjoxOTcuODM4NzgyNzU1MTYwNzYsImRpc3QiOjEwMy42NDZ9LHsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM1MThfMTUyMzkzNTIxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUxOCIsImIiOiIxNTIzOTM1MjEiLCJoZWFkaW5nIjoxOC4xNTMxMDA3NzEzNzExMzYsImRpc3QiOjEwNC45OTh9LHsiaWQiOiIxMjQ5NTMyMzEtMTUyMzkzNTE4XzQ0MzIxNDY0NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MTgiLCJiIjoiNDQzMjE0NjQ1IiwiaGVhZGluZyI6MTA2LjA2ODk2NzYxNjU0MjY1LCJkaXN0Ijo1Ni4wNzF9LHsiaWQiOiIxMjQ5NTMyMzEtMTUyMzkzNTE4XzE1MjYwMTAyOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MTgiLCJiIjoiMTUyNjAxMDI4IiwiaGVhZGluZyI6LTcxLjE1MDQxMzg5NTc3NjM4LCJkaXN0IjoxMDkuOH1dfSwiMTUyMzkzNTIxIjp7ImlkIjoiMTUyMzkzNTIxIiwibG9uIjotOTcuNzQ0NDUsImxhdCI6MzAuMjgwMzYsImVkZ2VzIjpbeyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUyMV8xNTIzOTM1MTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTIxIiwiYiI6IjE1MjM5MzUxOCIsImhlYWRpbmciOjE5OC4xNTMxMDA3NzEzNzExMywiZGlzdCI6MTA0Ljk5OH0seyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUyMV80NDMyMTQ2NDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTIxIiwiYiI6IjQ0MzIxNDY0MCIsImhlYWRpbmciOjE3LjYxNjAwNTkzODU3NDY2LCJkaXN0Ijo0Ny42ODh9LHsiaWQiOiIxMjQ5NTMyMzMtMTUyMzkzNTIxXzQ0MzIxNDY0OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MjEiLCJiIjoiNDQzMjE0NjQ5IiwiaGVhZGluZyI6MTEwLjI4MzAxNTk2Mzg2NDU2LCJkaXN0Ijo1NC4zNjR9LHsiaWQiOiIxMjQ5NTMyMzMtMTUyMzkzNTIxXzE1MjQ4NjYxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MjEiLCJiIjoiMTUyNDg2NjEwIiwiaGVhZGluZyI6LTcwLjkzMTU1MDI2MDE4ODczLCJkaXN0IjoxMTEuOTc5fV19LCIxNTIzOTM1MjQiOnsiaWQiOiIxNTIzOTM1MjQiLCJsb24iOi05Ny43NDQxMywibGF0IjozMC4yODEyMiwiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNTI0XzQ0MzIxNDY0MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MjQiLCJiIjoiNDQzMjE0NjQwIiwiaGVhZGluZyI6MTk4LjE1Mjk1NDE5Nzg4MzMzLCJkaXN0Ijo1Mi40OTl9LHsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM1MjRfNDQzMjE0NjQxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUyNCIsImIiOiI0NDMyMTQ2NDEiLCJoZWFkaW5nIjoxOC45NTk3NjgxMzI2NDUwMTcsImRpc3QiOjU2LjI2NH0seyJpZCI6IjE1NDEwODg1LTE1MjM5MzUyNF8xNTI1ODM0MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTI0IiwiYiI6IjE1MjU4MzQxMCIsImhlYWRpbmciOjEwOC43ODcyNDkyODkwNjYxNSwiZGlzdCI6MTA2LjcwOX0seyJpZCI6IjE1NDEwODg1LTE1MjM5MzUyNF8xNTI2MzY4ODgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTI0IiwiYiI6IjE1MjYzNjg4OCIsImhlYWRpbmciOi03MS40NjkyMTUwNzk2MTA2NSwiZGlzdCI6MTExLjYyMX1dfSwiMTUyMzkzNTI4Ijp7ImlkIjoiMTUyMzkzNTI4IiwibG9uIjotOTcuNzQzNzQsImxhdCI6MzAuMjgyMjMsImVkZ2VzIjpbeyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUyOF80NDMyMTQ2NDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTI4IiwiYiI6IjQ0MzIxNDY0MSIsImhlYWRpbmciOjE5OC4xMzM5NDkyNjcwNTg2LCJkaXN0Ijo2MS44MjV9LHsiaWQiOiIxMzc0MTc0NjYtMTUyMzkzNTI4XzE1MjUwMjk3NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzkzNTI4IiwiYiI6IjE1MjUwMjk3NiIsImhlYWRpbmciOjEwNi45MjgyMzMyNzIyMjY0LCJkaXN0Ijo1My4zMDJ9LHsiaWQiOiIxMzc0MTc0NjYtMTUyMzkzNTI4XzE1MjM5MzU0MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzkzNTI4IiwiYiI6IjE1MjM5MzU0MyIsImhlYWRpbmciOi03MS41ODkxOTc2NTIyMDkxNywiZGlzdCI6NDUuNjMxfV19LCIxNTIzOTM1NDMiOnsiaWQiOiIxNTIzOTM1NDMiLCJsb24iOi05Ny43NDQxOSwibGF0IjozMC4yODIzNiwiZWRnZXMiOlt7ImlkIjoiMTM3NDE3NDY2LTE1MjM5MzU0M18xNTIzOTM1MjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjM5MzU0MyIsImIiOiIxNTIzOTM1MjgiLCJoZWFkaW5nIjoxMDguNDEwODAyMzQ3NzkwODMsImRpc3QiOjQ1LjYzMX0seyJpZCI6IjEzNzQxNzQ2Ni0xNTIzOTM1NDNfMTQzMDQ3MDI2MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzkzNTQzIiwiYiI6IjE0MzA0NzAyNjAiLCJoZWFkaW5nIjotNzIuMTE5MDU5Nzk0NDg3OTcsImRpc3QiOjUwLjU0OH1dfSwiMTUyMzk4MjE0Ijp7ImlkIjoiMTUyMzk4MjE0IiwibG9uIjotOTcuNzQyMTEsImxhdCI6MzAuMjY5OSwiZWRnZXMiOlt7ImlkIjoiMTUzNzczMDktMTUyMzk4MjE0XzQ0MzE4NTEzOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMTQiLCJiIjoiNDQzMTg1MTM5IiwiaGVhZGluZyI6LTcyLjAyMDE1NjY5OTQ3ODA4LCJkaXN0Ijo3MS44Mjd9XX0sIjE1MjM5ODIxNyI6eyJpZCI6IjE1MjM5ODIxNyIsImxvbiI6LTk3Ljc0MzQxLCJsYXQiOjMwLjI3MDI2LCJlZGdlcyI6W3siaWQiOiIyMDQ5NzQ3MjMtMTUyMzk4MjE3XzQ0MzE4MjMzNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMTciLCJiIjoiNDQzMTgyMzM1IiwiaGVhZGluZyI6LTE2MS43MDI2MTQ4NzMxMzcxLCJkaXN0Ijo0OS4wMzl9LHsiaWQiOiIyMDQ5NzQ3OTktMTUyMzk4MjE3XzE1MjM5ODIxOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMTciLCJiIjoiMTUyMzk4MjE5IiwiaGVhZGluZyI6LTcxLjU0MTc4NjgyNzYxMzI4LCJkaXN0IjoxMDguNTQzfV19LCIxNTIzOTgyMTkiOnsiaWQiOiIxNTIzOTgyMTkiLCJsb24iOi05Ny43NDQ0OCwibGF0IjozMC4yNzA1NywiZWRnZXMiOlt7ImlkIjoiMjA0OTc0ODAxLTE1MjM5ODIxOV8xNTIzOTgyMjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzk4MjE5IiwiYiI6IjE1MjM5ODIyMiIsImhlYWRpbmciOi03Mi43MDQ1MzQ2MzQ4NzU1NywiZGlzdCI6MTExLjg2Nn1dfSwiMTUyMzk4MjIyIjp7ImlkIjoiMTUyMzk4MjIyIiwibG9uIjotOTcuNzQ1NTksImxhdCI6MzAuMjcwODcsImVkZ2VzIjpbeyJpZCI6IjQxMjg3NjI4LTE1MjM5ODIyMl8xNTIzOTgyMjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzk4MjIyIiwiYiI6IjE1MjM5ODIyNyIsImhlYWRpbmciOi03Mi4wOTg1MzQxNjc2NzIxNCwiZGlzdCI6MTA4LjE5N31dfSwiMTUyMzk4MjI3Ijp7ImlkIjoiMTUyMzk4MjI3IiwibG9uIjotOTcuNzQ2NjYsImxhdCI6MzAuMjcxMTcsImVkZ2VzIjpbeyJpZCI6IjI3NDAxMjQxLTE1MjM5ODIyN18xODUxMTkyNTIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5ODIyNyIsImIiOiIxODUxMTkyNTIwIiwiaGVhZGluZyI6LTE2Mi40MjY5MDg3NjgzNDY4LCJkaXN0Ijo4Ni4wNX0seyJpZCI6IjI3NDAxMjQzLTE1MjM5ODIyN180NDMxODIzNDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzk4MjI3IiwiYiI6IjQ0MzE4MjM0NCIsImhlYWRpbmciOjE2Ljc5OTUwNDI0Njc4MjgyNCwiZGlzdCI6NTMuMjY4fSx7ImlkIjoiNDEyODc2MjgtMTUyMzk4MjI3XzE1MjM5ODIyMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMjciLCJiIjoiMTUyMzk4MjIyIiwiaGVhZGluZyI6MTA3LjkwMTQ2NTgzMjMyNzg2LCJkaXN0IjoxMDguMTk3fSx7ImlkIjoiNDEyODc2MjgtMTUyMzk4MjI3XzE1MjM5MzQ4NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMjciLCJiIjoiMTUyMzkzNDg1IiwiaGVhZGluZyI6LTcxLjcwMTA5NzIxMzA0NTU2LCJkaXN0IjoxMDkuNDU1fV19LCIxNTIzOTgyMzAiOnsiaWQiOiIxNTIzOTgyMzAiLCJsb24iOi05Ny43NDg4LCJsYXQiOjMwLjI3MTgsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTE1MjM5ODIzMF80NDMxODIzNDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzk4MjMwIiwiYiI6IjQ0MzE4MjM0OSIsImhlYWRpbmciOjE5OC43NTk4NjUyMTI3NzYxLCJkaXN0Ijo1My44NTV9LHsiaWQiOiIxNTM5OTY4Mi0xNTIzOTgyMzBfNDQzMTgyMzUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5ODIzMCIsImIiOiI0NDMxODIzNTAiLCJoZWFkaW5nIjoxNi40ODM2MjUwMDY1MDQ5ODMsImRpc3QiOjUwLjg2OH0seyJpZCI6IjQxMjg3NjI4LTE1MjM5ODIzMF8xNTIzOTM0ODUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzk4MjMwIiwiYiI6IjE1MjM5MzQ4NSIsImhlYWRpbmciOjEwOS4xNzgwMDM4OTM4MzUxMSwiZGlzdCI6MTA3Ljk4OX1dfSwiMTUyNDAwMjYxIjp7ImlkIjoiMTUyNDAwMjYxIiwibG9uIjotOTcuNzM4MTIsImxhdCI6MzAuMjgwNjQsImVkZ2VzIjpbeyJpZCI6IjE1Mzg2OTIxLTE1MjQwMDI2MV8yMTY3MTYxMjI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDAyNjEiLCJiIjoiMjE2NzE2MTIyNiIsImhlYWRpbmciOi03My45MzA5NDQ4ODk0Mzk4OSwiZGlzdCI6MTIuMDE1fSx7ImlkIjoiMTUzOTMzODUtMTUyNDAwMjYxXzIxNjcxNjExNjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMDI2MSIsImIiOiIyMTY3MTYxMTYzIiwiaGVhZGluZyI6MTA5LjA2ODE2NTQwOTAxMjI1LCJkaXN0IjoxMC4xOH0seyJpZCI6IjI0MDE4MjU1NC0xNTI0MDAyNjFfMjE2NzE2MTIxMyIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTI0MDAyNjEiLCJiIjoiMjE2NzE2MTIxMyIsImhlYWRpbmciOjE5Ni4xMzUyNjUxNjA1NzMyNSwiZGlzdCI6MTMuODQ4fV19LCIxNTI0MDE4OTkiOnsiaWQiOiIxNTI0MDE4OTkiLCJsb24iOi05Ny43NDE0NSwibGF0IjozMC4yNjc2OCwiZWRnZXMiOlt7ImlkIjoiMjA0OTgxNTU0LTE1MjQwMTg5OV80NDMxODUxMzQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMTg5OSIsImIiOiI0NDMxODUxMzQiLCJoZWFkaW5nIjotNzIuMzA1Njk1ODM4MjMwNDYsImRpc3QiOjY1LjY1M30seyJpZCI6IjIwNzUyNDExNi0xNTI0MDE4OTlfNDQzMTg2OTYwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQwMTg5OSIsImIiOiI0NDMxODY5NjAiLCJoZWFkaW5nIjoxNy43ODU2NzY3ODc5Mzc5MDIsImRpc3QiOjUzLjU1NH1dfSwiMTUyNDAxOTAxIjp7ImlkIjoiMTUyNDAxOTAxIiwibG9uIjotOTcuNzQwMzksImxhdCI6MzAuMjY3MzcsImVkZ2VzIjpbeyJpZCI6IjIwMTY4MDQ4My0xNTI0MDE5MDFfNDQzMTg3MDEyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDE5MDEiLCJiIjoiNDQzMTg3MDEyIiwiaGVhZGluZyI6LTE2MC44NTI0MDY1NTU5NjM1LCJkaXN0Ijo1Mi44MDd9LHsiaWQiOiIyMDQ5ODE1NTQtMTUyNDAxOTAxXzE1MjQwMTg5OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAxOTAxIiwiYiI6IjE1MjQwMTg5OSIsImhlYWRpbmciOi03MS4zODAxMjcyNjUyNjc2MiwiZGlzdCI6MTA3LjYzNH1dfSwiMTUyNDAxOTA1Ijp7ImlkIjoiMTUyNDAxOTA1IiwibG9uIjotOTcuNzM5MzMsImxhdCI6MzAuMjY3MDYsImVkZ2VzIjpbeyJpZCI6IjIwNDk4MTU1NC0xNTI0MDE5MDVfMTUyNDAxOTAxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDE5MDUiLCJiIjoiMTUyNDAxOTAxIiwiaGVhZGluZyI6LTcxLjM4MDE4MjU1NTE2MjY5LCJkaXN0IjoxMDcuNjM0fSx7ImlkIjoiMjA0OTgxNTY5LTE1MjQwMTkwNV80NDMxODY5ODgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMTkwNSIsImIiOiI0NDMxODY5ODgiLCJoZWFkaW5nIjoxOS41MDg5ODQ0NzM1MTYwNDQsImRpc3QiOjU3LjYyOH1dfSwiMTUyNDAxOTA5Ijp7ImlkIjoiMTUyNDAxOTA5IiwibG9uIjotOTcuNzM4MjQsImxhdCI6MzAuMjY2NzgsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTU2LTE1MjQwMTkwOV8xNTI0MDE5MDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMTkwOSIsImIiOiIxNTI0MDE5MDUiLCJoZWFkaW5nIjotNzMuNTE0MzU2NjM3MTUxNTUsImRpc3QiOjEwOS4zODR9LHsiaWQiOiIxNDM5NDgxODUtMTUyNDAxOTA5XzQ0MzE4NzA3MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MDE5MDkiLCJiIjoiNDQzMTg3MDczIiwiaGVhZGluZyI6MTk3LjQzMDYzMTkxMjE2Nzg1LCJkaXN0Ijo1NC42MX0seyJpZCI6IjE0Mzk0ODE4NS0xNTI0MDE5MDlfNDQzMTg3MDc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQwMTkwOSIsImIiOiI0NDMxODcwNzUiLCJoZWFkaW5nIjoxNy40MzA1NTI3NDEwOTMxNSwiZGlzdCI6NTQuNjF9XX0sIjE1MjQwMTkxMiI6eyJpZCI6IjE1MjQwMTkxMiIsImxvbiI6LTk3LjczNzE4LCJsYXQiOjMwLjI2NjQ3LCJlZGdlcyI6W3siaWQiOiIzNzc0OTU1Ni0xNTI0MDE5MTJfMTUyNDAxOTA5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDE5MTIiLCJiIjoiMTUyNDAxOTA5IiwiaGVhZGluZyI6LTcxLjM4MDI4Nzc3OTkyNDE5LCJkaXN0IjoxMDcuNjM1fSx7ImlkIjoiMjA0OTk5NzA4LTE1MjQwMTkxMl80NDMxODcwOTkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMTkxMiIsImIiOiI0NDMxODcwOTkiLCJoZWFkaW5nIjoxOTcuMTUxOTk0OTA4MzA0LCJkaXN0Ijo1Mi4yMDh9LHsiaWQiOiIyMDQ5OTk3MDgtMTUyNDAxOTEyXzQ0MzE4NzEwMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAxOTEyIiwiYiI6IjQ0MzE4NzEwMCIsImhlYWRpbmciOjE4LjYwMjMyNDkxNzk5ODI5NSwiZGlzdCI6NTcuMzE0fV19LCIxNTI0MDE5MTUiOnsiaWQiOiIxNTI0MDE5MTUiLCJsb24iOi05Ny43MzYxMiwibGF0IjozMC4yNjYxNywiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjUtMTUyNDAxOTE1XzE1MjUxNjY0OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MDE5MTUiLCJiIjoiMTUyNTE2NjQ4IiwiaGVhZGluZyI6MTk3LjQzMDczMTQxMTY0ODg4LCJkaXN0IjoxMDkuMjIxfSx7ImlkIjoiMTUzOTY1NjUtMTUyNDAxOTE1XzQ0MzE4NzEyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MDE5MTUiLCJiIjoiNDQzMTg3MTIwIiwiaGVhZGluZyI6MTcuMzUzNTU5NDIxNDI0NTA3LCJkaXN0Ijo1OC4wNzJ9LHsiaWQiOiIzNzc0OTU1Ni0xNTI0MDE5MTVfMTUyNDAxOTEyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDE5MTUiLCJiIjoiMTUyNDAxOTEyIiwiaGVhZGluZyI6LTcxLjk0MTM5Mjc5OTE0MDk0LCJkaXN0IjoxMDcuMjg2fV19LCIxNTI0MDE5MTkiOnsiaWQiOiIxNTI0MDE5MTkiLCJsb24iOi05Ny43MzU4OCwibGF0IjozMC4yNjYxLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU1Ni0xNTI0MDE5MTlfMTQ4MTQ1NjY1OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAxOTE5IiwiYiI6IjE0ODE0NTY2NTgiLCJoZWFkaW5nIjotNzAuNDgyMDk5NTA0MzM4MzUsImRpc3QiOjEzLjI3Mn1dfSwiMTUyNDAxOTIxIjp7ImlkIjoiMTUyNDAxOTIxIiwibG9uIjotOTcuNzM1NjUsImxhdCI6MzAuMjY2MDQsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTU1LTE1MjQwMTkyMV8xNTI0MDE5MTkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMTkyMSIsImIiOiIxNTI0MDE5MTkiLCJoZWFkaW5nIjotNzMuMjcyOTI2OTMyNzQyODIsImRpc3QiOjIzLjExfV19LCIxNTI0MTQ3NjAiOnsiaWQiOiIxNTI0MTQ3NjAiLCJsb24iOi05Ny43NDMyMywibGF0IjozMC4yNjMwMiwiZWRnZXMiOlt7ImlkIjoiMzIwNjU1MjctMTUyNDE0NzYwXzQ0MzE4NjkzOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MTQ3NjAiLCJiIjoiNDQzMTg2OTM5IiwiaGVhZGluZyI6MjAuNjc3MzYxNTA2NDIyMzU0LCJkaXN0Ijo1NC41MDV9XX0sIjE1MjQxNDc2NiI6eyJpZCI6IjE1MjQxNDc2NiIsImxvbiI6LTk3Ljc0MTA3LCJsYXQiOjMwLjI2MjQzLCJlZGdlcyI6W3siaWQiOiIzMjA2NTUzMy0xNTI0MTQ3NjZfNDQzMTg3MDYwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MTQ3NjYiLCJiIjoiNDQzMTg3MDYwIiwiaGVhZGluZyI6MTkuNzI1MjEzMDU3NDA0MDk4LCJkaXN0Ijo1NC4xNzN9XX0sIjE1MjQxNDc3NyI6eyJpZCI6IjE1MjQxNDc3NyIsImxvbiI6LTk3LjczODc5LCJsYXQiOjMwLjI2MTc4LCJlZGdlcyI6W3siaWQiOiIxMjg5Mjg4MjQtMTUyNDE0Nzc3XzE0ODEzNjQzMDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQxNDc3NyIsImIiOiIxNDgxMzY0MzA3IiwiaGVhZGluZyI6MCwiZGlzdCI6MjkuOTMxfV19LCIxNTI0MjgzMDIiOnsiaWQiOiIxNTI0MjgzMDIiLCJsb24iOi05Ny43NDExOSwibGF0IjozMC4yNzYzNCwiZWRnZXMiOlt7ImlkIjoiMTU0MDgzNDYtMTUyNDI4MzAyXzIxNjcxNjExODEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzAyIiwiYiI6IjIxNjcxNjExODEiLCJoZWFkaW5nIjoxNy40MTcyNzQwNDc3OTM2OSwiZGlzdCI6OTYuNDMzfSx7ImlkIjoiMjU3NTg0MTItMTUyNDI4MzAyXzE1MjQyODMwNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MjgzMDIiLCJiIjoiMTUyNDI4MzA1IiwiaGVhZGluZyI6LTcxLjE1MDk3NjQzOTkwNTYsImRpc3QiOjEwOS44MDN9XX0sIjE1MjQyODMwNSI6eyJpZCI6IjE1MjQyODMwNSIsImxvbiI6LTk3Ljc0MjI3LCJsYXQiOjMwLjI3NjY2LCJlZGdlcyI6W3siaWQiOiIyNTc1ODQxMi0xNTI0MjgzMDVfMTUyNDI4MzAyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQyODMwNSIsImIiOiIxNTI0MjgzMDIiLCJoZWFkaW5nIjoxMDguODQ5MDIzNTYwMDk0NCwiZGlzdCI6MTA5LjgwM30seyJpZCI6IjI1NzU4NDEyLTE1MjQyODMwNV8xNTI0MjgzMDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzA1IiwiYiI6IjE1MjQyODMwOCIsImhlYWRpbmciOi03My4wNzI1MTM1OTUxMDQ2OCwiZGlzdCI6MTA2LjYwOX1dfSwiMTUyNDI4MzA4Ijp7ImlkIjoiMTUyNDI4MzA4IiwibG9uIjotOTcuNzQzMzMsImxhdCI6MzAuMjc2OTQsImVkZ2VzIjpbeyJpZCI6IjI1NzU4NDEyLTE1MjQyODMwOF8xNTI0MjgzMDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzA4IiwiYiI6IjE1MjQyODMwNSIsImhlYWRpbmciOjEwNi45Mjc0ODY0MDQ4OTUzMiwiZGlzdCI6MTA2LjYwOX0seyJpZCI6IjI1NzU4NDEyLTE1MjQyODMwOF8xNTI0MjgzMTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzA4IiwiYiI6IjE1MjQyODMxMCIsImhlYWRpbmciOi03Mi4wMTExODM1MTAxODU2MywiZGlzdCI6MTExLjI3OH1dfSwiMTUyNDI4MzEwIjp7ImlkIjoiMTUyNDI4MzEwIiwibG9uIjotOTcuNzQ0NDMsImxhdCI6MzAuMjc3MjUsImVkZ2VzIjpbeyJpZCI6IjI1NzU4NDEyLTE1MjQyODMxMF8xNTI0MjgzMDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzEwIiwiYiI6IjE1MjQyODMwOCIsImhlYWRpbmciOjEwNy45ODg4MTY0ODk4MTQzNywiZGlzdCI6MTExLjI3OH0seyJpZCI6IjI1NzU4NDEyLTE1MjQyODMxMF8xNTIzOTM1MDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzEwIiwiYiI6IjE1MjM5MzUwNyIsImhlYWRpbmciOi03MS41NDA1NDkwNjA4NzM3NywiZGlzdCI6MTA4LjUzNn0seyJpZCI6IjE1MDM1MDAxOC0xNTI0MjgzMTBfNDQzMjE0NjEyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQyODMxMCIsImIiOiI0NDMyMTQ2MTIiLCJoZWFkaW5nIjoxOTcuNjg0MDM2NTI3NTA2MzgsImRpc3QiOjU3LjAxNH0seyJpZCI6IjE1MDM1MDAxOC0xNTI0MjgzMTBfNDQzMjE0NjEzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQyODMxMCIsImIiOiI0NDMyMTQ2MTMiLCJoZWFkaW5nIjoxOC4zODY3ODI0MzI3ODYxMjQsImRpc3QiOjU0LjkwNn1dfSwiMTUyNDI4MzEyIjp7ImlkIjoiMTUyNDI4MzEyIiwibG9uIjotOTcuNzQ2NTgsImxhdCI6MzAuMjc3ODcsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTE1MjQyODMxMl80NDMyMTQ2MTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzEyIiwiYiI6IjQ0MzIxNDYxOCIsImhlYWRpbmciOjE5OC43NTg3NzU0MDU3Njc1LCJkaXN0Ijo1My44NTV9LHsiaWQiOiIxNTM5OTY4Mi0xNTI0MjgzMTJfNDQzMjE0NjE5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQyODMxMiIsImIiOiI0NDMyMTQ2MTkiLCJoZWFkaW5nIjoxNy41MTYyMDUxMjM4NTY2ODIsImRpc3QiOjUxLjE0OX0seyJpZCI6IjI1NzU4NDEyLTE1MjQyODMxMl8xNTIzOTM1MDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzEyIiwiYiI6IjE1MjM5MzUwNyIsImhlYWRpbmciOjEwOC4zMDAwMjU5Mzk1MjYwNSwiZGlzdCI6MTA5LjQ0OX1dfSwiMTUyNDM1ODg4Ijp7ImlkIjoiMTUyNDM1ODg4IiwibG9uIjotOTcuNzM5NTQsImxhdCI6MzAuMjc2ODYsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTc1LTE1MjQzNTg4OF8yMTY3MTYxMzQwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU4ODgiLCJiIjoiMjE2NzE2MTM0MCIsImhlYWRpbmciOjEwNy43NDY4MzY3MjE4MTY4LCJkaXN0IjoxOC4xODR9LHsiaWQiOiIyNDAxODI1NTQtMTUyNDM1ODg4XzE2MjY1NTg1OTQiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNDM1ODg4IiwiYiI6IjE2MjY1NTg1OTQiLCJoZWFkaW5nIjoxNy41MTY0MzQyNDEzNjU5MywiZGlzdCI6MTIuNzg3fV19LCIxNTI0MzU4OTEiOnsiaWQiOiIxNTI0MzU4OTEiLCJsb24iOi05Ny43MzgyMSwibGF0IjozMC4yNzY0OSwiZWRnZXMiOlt7ImlkIjoiMTUzOTgxMDktMTUyNDM1ODkxXzIxNjcxNjEyNDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDM1ODkxIiwiYiI6IjIxNjcxNjEyNDciLCJoZWFkaW5nIjoxOTYuMTM1OTE4ODAyMTQ2OTMsImRpc3QiOjYuOTI0fSx7ImlkIjoiMTUzOTgxMDktMTUyNDM1ODkxXzE2MjY1NTg1OTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDM1ODkxIiwiYiI6IjE2MjY1NTg1OTciLCJoZWFkaW5nIjoxNy41MTY0OTY4NjIyNTMzMjcsImRpc3QiOjEyLjc4N30seyJpZCI6IjM3NzQ5NTc1LTE1MjQzNTg5MV8yMTY3MTYxMTk0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU4OTEiLCJiIjoiMjE2NzE2MTE5NCIsImhlYWRpbmciOjEwNy40NDM4NTk3MjYwNjUzOCwiZGlzdCI6MTEuMDk0fV19LCIxNTI0MzU4OTQiOnsiaWQiOiIxNTI0MzU4OTQiLCJsb24iOi05Ny43MzcxMiwibGF0IjozMC4yNzYxOSwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NzUtMTUyNDM1ODk0XzIxNjcxNjEyODEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQzNTg5NCIsImIiOiIyMTY3MTYxMjgxIiwiaGVhZGluZyI6MTA5LjA2NzM1NTE4MzA2MDM3LCJkaXN0IjoxMC4xOH0seyJpZCI6IjE1MDM1MDAyMy0xNTI0MzU4OTRfMjE2NzE2MTIwMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDM1ODk0IiwiYiI6IjIxNjcxNjEyMDMiLCJoZWFkaW5nIjotMTU5LjU5NTk1MDM0OTczNjQ2LCJkaXN0Ijo4LjI3OX1dfSwiMTUyNDM1ODk3Ijp7ImlkIjoiMTUyNDM1ODk3IiwibG9uIjotOTcuNzM2MDUsImxhdCI6MzAuMjc1ODksImVkZ2VzIjpbeyJpZCI6IjEyNDk1MzEwNi0xNTI0MzU4OTdfMzQzMzM2MDMwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU4OTciLCJiIjoiMzQzMzM2MDMwIiwiaGVhZGluZyI6MTA3LjY5NTM0NzI4NTUyNzUzLCJkaXN0Ijo2NS42NDh9LHsiaWQiOiIxMjQ5NTMxMjgtMTUyNDM1ODk3XzE2MjY1NTg1OTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQzNTg5NyIsImIiOiIxNjI2NTU4NTkwIiwiaGVhZGluZyI6MTkuMTQ1OTMxNDk2NzkxODEsImRpc3QiOjExLjczNX1dfSwiMTUyNDM1OTAwIjp7ImlkIjoiMTUyNDM1OTAwIiwibG9uIjotOTcuNzM1MTMsImxhdCI6MzAuMjc1NjQsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTc0LTE1MjQzNTkwMF8xNDIxMTM0NzM0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU5MDAiLCJiIjoiMTQyMTEzNDczNCIsImhlYWRpbmciOjEwOC43MTk2NDI1MTQ4NDQxMSwiZGlzdCI6MTcuMjcxfV19LCIxNTI0MzU5MDIiOnsiaWQiOiIxNTI0MzU5MDIiLCJsb24iOi05Ny43MzQ4NCwibGF0IjozMC4yNzU1NSwiZWRnZXMiOlt7ImlkIjoiMTI4NjM3NTM2LTE1MjQzNTkwMl8xNjI2NTU1ODM1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU5MDIiLCJiIjoiMTYyNjU1NTgzNSIsImhlYWRpbmciOjI1Ljc0MzEyNjgyNjU0NjQxMiwiZGlzdCI6MTEuMDc2fSx7ImlkIjoiMTMxMjgxNjA2LTE1MjQzNTkwMl8xNDIxMTM0NzI4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU5MDIiLCJiIjoiMTQyMTEzNDcyOCIsImhlYWRpbmciOjEwNC44ODkxODUxMjAzMjI0NywiZGlzdCI6MTIuOTQzfSx7ImlkIjoiMjA0OTg5NzU3LTE1MjQzNTkwMl8xNDIxMTM0NzI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU5MDIiLCJiIjoiMTQyMTEzNDcyNiIsImhlYWRpbmciOjIxMC4wNTUxNTA1MTEyMDk4NiwiZGlzdCI6Ny42ODV9XX0sIjE1MjQzNTkwNCI6eyJpZCI6IjE1MjQzNTkwNCIsImxvbiI6LTk3LjczMjg5LCJsYXQiOjMwLjI3NTA3LCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNjMtMTUyNDM1OTA0XzE0NDA2MDgzMjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQzNTkwNCIsImIiOiIxNDQwNjA4MzIyIiwiaGVhZGluZyI6Mjg3LjQ0MzU3NDk0NDIxNjI3LCJkaXN0IjozMy4yODN9LHsiaWQiOiIxNDk3MTAwNjMtMTUyNDM1OTA0XzM0MzMzNjkwNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDM1OTA0IiwiYiI6IjM0MzMzNjkwNSIsImhlYWRpbmciOjEwNy4wNzg3NjIxMjgzMzk5OSwiZGlzdCI6MTUuMDk5fV19LCIxNTI0MzU5MDYiOnsiaWQiOiIxNTI0MzU5MDYiLCJsb24iOi05Ny43MzE3OCwibGF0IjozMC4yNzQ3MiwiZWRnZXMiOlt7ImlkIjoiMTI0OTUzMTIwLTE1MjQzNTkwNl81MDQ4NjIzMzMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQzNTkwNiIsImIiOiI1MDQ4NjIzMzMiLCJoZWFkaW5nIjotMTY0LjgyNDMyNTc3MDUzMjIzLCJkaXN0IjozNi43NTZ9XX0sIjE1MjQ0MjQxMiI6eyJpZCI6IjE1MjQ0MjQxMiIsImxvbiI6LTk3Ljc0NDE5LCJsYXQiOjMwLjI2NDMyLCJlZGdlcyI6W3siaWQiOiIxNTM4MTk3My0xNTI0NDI0MTJfMjQ4MTkzMDY3NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MTIiLCJiIjoiMjQ4MTkzMDY3NiIsImhlYWRpbmciOi03Mi4zOTk4MDkwNDE5ODUzNSwiZGlzdCI6NjkuNjU5fSx7ImlkIjoiMTUzOTgxNjctMTUyNDQyNDEyXzQ0MzE4NTEzMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MTIiLCJiIjoiNDQzMTg1MTMyIiwiaGVhZGluZyI6MTA3Ljk3ODQ4NTE4OTgwNjAxLCJkaXN0Ijo3MS44M31dfSwiMTUyNDQyNDE0Ijp7ImlkIjoiMTUyNDQyNDE0IiwibG9uIjotOTcuNzQ1NTEsImxhdCI6MzAuMjY0NjgsImVkZ2VzIjpbeyJpZCI6IjE1MzgxOTczLTE1MjQ0MjQxNF8yNDgxOTMwNjc2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0MjQxNCIsImIiOiIyNDgxOTMwNjc2IiwiaGVhZGluZyI6MTA3LjI2ODUwMjEzNDU3MjUzLCJkaXN0Ijo2My40ODZ9LHsiaWQiOiIxNTM4MTk3My0xNTI0NDI0MTRfMTUyNDQyNDIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0MjQxNCIsImIiOiIxNTI0NDI0MjAiLCJoZWFkaW5nIjotNzEuNTQyNzc0NjE2NDY0MDcsImRpc3QiOjEwOC41NDl9LHsiaWQiOiIyMDQ5NzQ3MjMtMTUyNDQyNDE0XzE1MjUwOTk0OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MTQiLCJiIjoiMTUyNTA5OTQ5IiwiaGVhZGluZyI6LTE2Mi4yMTM1NjIwOTgyMjg4LCJkaXN0IjoxMDcuMTA4fV19LCIxNTI0NDI0MjAiOnsiaWQiOiIxNTI0NDI0MjAiLCJsb24iOi05Ny43NDY1OCwibGF0IjozMC4yNjQ5OSwiZWRnZXMiOlt7ImlkIjoiMTUzODE5NzMtMTUyNDQyNDIwXzE1MjQ0MjQxNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MjAiLCJiIjoiMTUyNDQyNDE0IiwiaGVhZGluZyI6MTA4LjQ1NzIyNTM4MzUzNTkzLCJkaXN0IjoxMDguNTQ5fSx7ImlkIjoiMTUzODE5NzMtMTUyNDQyNDIwXzE1MjQ0MjQyMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MjAiLCJiIjoiMTUyNDQyNDIyIiwiaGVhZGluZyI6LTczLjEwNTUxMDU0NDg2NDY5LCJkaXN0IjoxMTAuNjI2fV19LCIxNTI0NDI0MjIiOnsiaWQiOiIxNTI0NDI0MjIiLCJsb24iOi05Ny43NDc2OCwibGF0IjozMC4yNjUyOCwiZWRnZXMiOlt7ImlkIjoiMTUzODE5NzMtMTUyNDQyNDIyXzE1MjQ0MjQyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MjIiLCJiIjoiMTUyNDQyNDIwIiwiaGVhZGluZyI6MTA2Ljg5NDQ4OTQ1NTEzNTMxLCJkaXN0IjoxMTAuNjI2fSx7ImlkIjoiMTUzODE5NzMtMTUyNDQyNDIyXzE1MjQ0MjQyNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MjIiLCJiIjoiMTUyNDQyNDI1IiwiaGVhZGluZyI6LTcyLjAxMzIwMjU1MzI3MTI0LCJkaXN0IjoxMTEuMjl9XX0sIjE1MjQ0MjQyNSI6eyJpZCI6IjE1MjQ0MjQyNSIsImxvbiI6LTk3Ljc0ODc4LCJsYXQiOjMwLjI2NTU5LCJlZGdlcyI6W3siaWQiOiIxNTM4MTk3My0xNTI0NDI0MjVfMTUyNDQyNDIyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0MjQyNSIsImIiOiIxNTI0NDI0MjIiLCJoZWFkaW5nIjoxMDcuOTg2Nzk3NDQ2NzI4NzYsImRpc3QiOjExMS4yOX0seyJpZCI6IjE1Mzk0NzQ2LTE1MjQ0MjQyNV8yNTI4OTc2NTM0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0MjQyNSIsImIiOiIyNTI4OTc2NTM0IiwiaGVhZGluZyI6MTk2Ljg3MjA4OTA4MzUxMDg3LCJkaXN0Ijo5Ni4xNX0seyJpZCI6IjE1Mzk0NzQ2LTE1MjQ0MjQyNV80NDMxMjk0MDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQyNDI1IiwiYiI6IjQ0MzEyOTQwMyIsImhlYWRpbmciOjE4LjAzMDc3MTA2MzI4NzU5NSwiZGlzdCI6NTUuOTU5fV19LCIxNTI0NDczNTAiOnsiaWQiOiIxNTI0NDczNTAiLCJsb24iOi05Ny43NDM0OSwibGF0IjozMC4yNjYyLCJlZGdlcyI6W3siaWQiOiIxNTM4Mjc2OS0xNTI0NDczNTBfNDQzMTg1MTMxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM1MCIsImIiOiI0NDMxODUxMzEiLCJoZWFkaW5nIjotNzIuMTU2OTY5MDg0MzY3MiwiZGlzdCI6NjguNzQxfSx7ImlkIjoiMTI5MTcwNzAwLTE1MjQ0NzM1MF8yNDgxOTMwNjkzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM1MCIsImIiOiIyNDgxOTMwNjkzIiwiaGVhZGluZyI6MTA3LjM2MzkwODg2ODcyNTM3LCJkaXN0Ijo3MC41NzZ9XX0sIjE1MjQ0NzM1MyI6eyJpZCI6IjE1MjQ0NzM1MyIsImxvbiI6LTk3Ljc0MjE1LCJsYXQiOjMwLjI2NTgzLCJlZGdlcyI6W3siaWQiOiIzMjA2NTUyNy0xNTI0NDczNTNfNDQzMTg2OTU0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM1MyIsImIiOiI0NDMxODY5NTQiLCJoZWFkaW5nIjoxNi44MDAzNzUyMDk5MDg0NzQsImRpc3QiOjUzLjI2OH0seyJpZCI6IjEyOTE3MDcwMC0xNTI0NDczNTNfMjQ4MTkzMDY5MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNTMiLCJiIjoiMjQ4MTkzMDY5MyIsImhlYWRpbmciOjI4Ny45NTI1MDkwNDAyNjUyLCJkaXN0Ijo2NC43Mzh9LHsiaWQiOiIxMjkxNzA3MDAtMTUyNDQ3MzUzXzE1MjQ0NzM1NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNTMiLCJiIjoiMTUyNDQ3MzU2IiwiaGVhZGluZyI6MTA4LjA1Nzk2MTc3NTQ0NTY5LCJkaXN0IjoxMDcuMjg3fV19LCIxNTI0NDczNTYiOnsiaWQiOiIxNTI0NDczNTYiLCJsb24iOi05Ny43NDEwOSwibGF0IjozMC4yNjU1MywiZWRnZXMiOlt7ImlkIjoiMTI5MTcwNzAwLTE1MjQ0NzM1Nl8xNTI0NDczNTMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzU2IiwiYiI6IjE1MjQ0NzM1MyIsImhlYWRpbmciOjI4OC4wNTc5NjE3NzU0NDU3LCJkaXN0IjoxMDcuMjg3fSx7ImlkIjoiMjA0OTgxNTY4LTE1MjQ0NzM1Nl80NDMxODcwMTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ0NzM1NiIsImIiOiI0NDMxODcwMTciLCJoZWFkaW5nIjotMTYwLjY2MzQxMzYwNTE2MzE2LCJkaXN0Ijo1NS4yMTh9LHsiaWQiOiIyNjMzNjE4MDItMTUyNDQ3MzU2XzE1MjQ0NzM1OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNTYiLCJiIjoiMTUyNDQ3MzU5IiwiaGVhZGluZyI6MTA3LjU5MTkzMjE3Nzg5OTExLCJkaXN0IjoxMTAuMDM1fV19LCIxNTI0NDczNTkiOnsiaWQiOiIxNTI0NDczNTkiLCJsb24iOi05Ny43NCwibGF0IjozMC4yNjUyMywiZWRnZXMiOlt7ImlkIjoiMzAxNDg3NDAtMTUyNDQ3MzU5XzQ0MzE4Njk4MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDQ3MzU5IiwiYiI6IjQ0MzE4Njk4MyIsImhlYWRpbmciOjE3Ljc4NjA5NjgxMTg4NDIzLCJkaXN0Ijo1My41NTR9LHsiaWQiOiIyMDQ5OTk3MDItMTUyNDQ3MzU5XzE1MjQ0NzM2MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNTkiLCJiIjoiMTUyNDQ3MzYxIiwiaGVhZGluZyI6MTA3LjQ5MzIwODIwMjQwNjI4LCJkaXN0IjoxMDYuOTQ5fSx7ImlkIjoiMjYzMzYxODAyLTE1MjQ0NzM1OV8xNTI0NDczNTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzU5IiwiYiI6IjE1MjQ0NzM1NiIsImhlYWRpbmciOjI4Ny41OTE5MzIxNzc4OTkxNCwiZGlzdCI6MTEwLjAzNX1dfSwiMTUyNDQ3MzYxIjp7ImlkIjoiMTUyNDQ3MzYxIiwibG9uIjotOTcuNzM4OTQsImxhdCI6MzAuMjY0OTQsImVkZ2VzIjpbeyJpZCI6IjE1MzgyNzc4LTE1MjQ0NzM2MV8xNTI0NTE2MDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzYxIiwiYiI6IjE1MjQ1MTYwNiIsImhlYWRpbmciOjE5LjE0Nzc3Nzg3NzQ0NzkxNSwiZGlzdCI6MTA1LjYxNH0seyJpZCI6IjIwNDk5OTcwMi0xNTI0NDczNjFfMTUyNDQ3MzU5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM2MSIsImIiOiIxNTI0NDczNTkiLCJoZWFkaW5nIjoyODcuNDkzMjA4MjAyNDA2MjcsImRpc3QiOjEwNi45NDl9LHsiaWQiOiIyMDQ5OTk3MDItMTUyNDQ3MzYxXzE1MjQ0NzM2MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNjEiLCJiIjoiMTUyNDQ3MzYzIiwiaGVhZGluZyI6MTA4LjUyNzI4MTUyODM0ODk2LCJkaXN0IjoxMTEuNjM4fV19LCIxNTI0NDczNjMiOnsiaWQiOiIxNTI0NDczNjMiLCJsb24iOi05Ny43Mzc4NCwibGF0IjozMC4yNjQ2MiwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NDctMTUyNDQ3MzYzXzIxMjgzMjM4MTEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ0NzM2MyIsImIiOiIyMTI4MzIzODExIiwiaGVhZGluZyI6MjAzLjQ2MjAzMDg5MTQ5MTUsImRpc3QiOjQuODM0fSx7ImlkIjoiMjA0OTk5NzAyLTE1MjQ0NzM2M18xNTI0NDczNjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzYzIiwiYiI6IjE1MjQ0NzM2MSIsImhlYWRpbmciOjI4OC41MjcyODE1MjgzNDg5NiwiZGlzdCI6MTExLjYzOH0seyJpZCI6IjIwNDk5OTcwMy0xNTI0NDczNjNfMTQyNTczMDgyMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNjMiLCJiIjoiMTQyNTczMDgyMSIsImhlYWRpbmciOjEwNy44MDg0NDk5MDMyODcwMSwiZGlzdCI6MTA1LjExNX0seyJpZCI6IjIwNDk5OTcwOC0xNTI0NDczNjNfMTUyNTE2NjQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NDczNjMiLCJiIjoiMTUyNTE2NjQ2IiwiaGVhZGluZyI6MTcuMTE5NTg3MjY0MDAwMzYyLCJkaXN0IjoxMDcuODc3fV19LCIxNTI0NDczNzAiOnsiaWQiOiIxNTI0NDczNzAiLCJsb24iOi05Ny43MzY1NiwibGF0IjozMC4yNjQyNywiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NTEtMTUyNDQ3MzcwXzE1MjQ0NzM3MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNzAiLCJiIjoiMTUyNDQ3MzcyIiwiaGVhZGluZyI6MTA5Ljc5ODg5NzQ5NTQ3NTgzLCJkaXN0IjoxNi4zNjR9LHsiaWQiOiIyMDQ5OTk3MDMtMTUyNDQ3MzcwXzE0MjU3MzA4MjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzcwIiwiYiI6IjE0MjU3MzA4MjEiLCJoZWFkaW5nIjoyODYuMDY2Mzk5OTYwNTA2OSwiZGlzdCI6MjQuMDM0fV19LCIxNTI0NDczNzIiOnsiaWQiOiIxNTI0NDczNzIiLCJsb24iOi05Ny43MzY0LCJsYXQiOjMwLjI2NDIyLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU1MS0xNTI0NDczNzJfMTUyNDQ3MzcwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM3MiIsImIiOiIxNTI0NDczNzAiLCJoZWFkaW5nIjoyODkuNzk4ODk3NDk1NDc1ODQsImRpc3QiOjE2LjM2NH0seyJpZCI6IjM3NzQ5NTUyLTE1MjQ0NzM3Ml8xNTI0NDczNzMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzcyIiwiYiI6IjE1MjQ0NzM3MyIsImhlYWRpbmciOjEwNi45NTg0ODU4Nzc5NDkzOSwiZGlzdCI6NjguNDExfV19LCIxNTI0NDczNzMiOnsiaWQiOiIxNTI0NDczNzMiLCJsb24iOi05Ny43MzU3MiwibGF0IjozMC4yNjQwNCwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NTItMTUyNDQ3MzczXzE1MjQ0NzM3MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNzMiLCJiIjoiMTUyNDQ3MzcyIiwiaGVhZGluZyI6Mjg2Ljk1ODQ4NTg3Nzk0OTQsImRpc3QiOjY4LjQxMX0seyJpZCI6IjE3Njg3NTE3NS0xNTI0NDczNzNfMzU5NjI5OTQ3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NDczNzMiLCJiIjoiMzU5NjI5OTQ3IiwiaGVhZGluZyI6LTE3MC4xNTA5OTI2MjE0MzUwNSwiZGlzdCI6NS42MjZ9XX0sIjE1MjQ1MTU0MSI6eyJpZCI6IjE1MjQ1MTU0MSIsImxvbiI6LTk3Ljc0NDgxLCJsYXQiOjMwLjI2NjU2LCJlZGdlcyI6W3siaWQiOiIxNTM4Mjc2OS0xNTI0NTE1NDFfNDQzMTg1MTMxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU0MSIsImIiOiI0NDMxODUxMzEiLCJoZWFkaW5nIjoxMDcuMDE0NjkzNzA2MjgzMDMsImRpc3QiOjY0LjQwNX0seyJpZCI6IjE1MzgyNzY5LTE1MjQ1MTU0MV8xNTI0NTE1NDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNTQxIiwiYiI6IjE1MjQ1MTU0MyIsImhlYWRpbmciOi03MS4xNTI3MzkyNTI2MTA3OSwiZGlzdCI6MTA5LjgxM30seyJpZCI6IjIwNDk3NDcyMy0xNTI0NTE1NDFfNDQzMTgyMzM4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU0MSIsImIiOiI0NDMxODIzMzgiLCJoZWFkaW5nIjotMTYyLjU2OTI0NTM0NDgxNTA3LCJkaXN0Ijo1NC42MX1dfSwiMTUyNDUxNTQzIjp7ImlkIjoiMTUyNDUxNTQzIiwibG9uIjotOTcuNzQ1ODksImxhdCI6MzAuMjY2ODgsImVkZ2VzIjpbeyJpZCI6IjE1MzgyNzY5LTE1MjQ1MTU0M18xNTI0NTE1NDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNTQzIiwiYiI6IjE1MjQ1MTU0MSIsImhlYWRpbmciOjEwOC44NDcyNjA3NDczODkyMSwiZGlzdCI6MTA5LjgxM30seyJpZCI6IjE1MzgyNzY5LTE1MjQ1MTU0M18xNTI0NTE1NDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNTQzIiwiYiI6IjE1MjQ1MTU0NSIsImhlYWRpbmciOi03Mi4wOTkyMjIxMzAzNTE5LCJkaXN0IjoxMDguMjAxfV19LCIxNTI0NTE1NDUiOnsiaWQiOiIxNTI0NTE1NDUiLCJsb24iOi05Ny43NDY5NiwibGF0IjozMC4yNjcxOCwiZWRnZXMiOlt7ImlkIjoiMTUzODI3NjktMTUyNDUxNTQ1XzE1MjQ1MTU0MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE1NDUiLCJiIjoiMTUyNDUxNTQzIiwiaGVhZGluZyI6MTA3LjkwMDc3Nzg2OTY0ODEsImRpc3QiOjEwOC4yMDF9LHsiaWQiOiIxNTM4Mjc2OS0xNTI0NTE1NDVfMTUyNDUxNTQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU0NSIsImIiOiIxNTI0NTE1NDciLCJoZWFkaW5nIjotNzQuODk4MzAyNTA2NTA2MTcsImRpc3QiOjExMC42MzJ9XX0sIjE1MjQ1MTU0NyI6eyJpZCI6IjE1MjQ1MTU0NyIsImxvbiI6LTk3Ljc0ODA3LCJsYXQiOjMwLjI2NzQ0LCJlZGdlcyI6W3siaWQiOiIxNTM4Mjc2OS0xNTI0NTE1NDdfMTUyNDUxNTQ1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU0NyIsImIiOiIxNTI0NTE1NDUiLCJoZWFkaW5nIjoxMDUuMTAxNjk3NDkzNDkzODMsImRpc3QiOjExMC42MzJ9LHsiaWQiOiIxNTM4Mjc2OS0xNTI0NTE1NDdfMTUyMzkzNDc5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU0NyIsImIiOiIxNTIzOTM0NzkiLCJoZWFkaW5nIjotNzEuODU4NTc5MjcyNzIzNzYsImRpc3QiOjExMC4zNzN9LHsiaWQiOiIyMDQ5NjQ3NTMtMTUyNDUxNTQ3XzE1MjUwMDcyMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE1NDciLCJiIjoiMTUyNTAwNzIyIiwiaGVhZGluZyI6MTk4Ljk1MjE2MzQ0MzQzMjgsImRpc3QiOjEwNi42NjJ9XX0sIjE1MjQ1MTU1MCI6eyJpZCI6IjE1MjQ1MTU1MCIsImxvbiI6LTk3Ljc1MDE2LCJsYXQiOjMwLjI2ODExLCJlZGdlcyI6W3siaWQiOiIxNTM4Mjc2OS0xNTI0NTE1NTBfMTUyMzkzNDc5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU1MCIsImIiOiIxNTIzOTM0NzkiLCJoZWFkaW5nIjoxMTIuNTI1ODUxNzMyMDU1MTksImRpc3QiOjEwNC4xNzR9LHsiaWQiOiIxNTM5OTY4Mi0xNTI0NTE1NTBfNDQzMTI5Mzk4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU1MCIsImIiOiI0NDMxMjkzOTgiLCJoZWFkaW5nIjoxNi4xMzcxNjk3NTU2Nzg5MTUsImRpc3QiOjQ4LjQ3fV19LCIxNTI0NTE2MDYiOnsiaWQiOiIxNTI0NTE2MDYiLCJsb24iOi05Ny43Mzg1OCwibGF0IjozMC4yNjU4NCwiZWRnZXMiOlt7ImlkIjoiMTUzODI3NzgtMTUyNDUxNjA2XzE1MjQ0NzM2MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE2MDYiLCJiIjoiMTUyNDQ3MzYxIiwiaGVhZGluZyI6MTk5LjE0Nzc3Nzg3NzQ0NzksImRpc3QiOjEwNS42MTR9LHsiaWQiOiIxNDM5NDgxNjUtMTUyNDUxNjA2XzE1MjUxNjY0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDUxNjA2IiwiYiI6IjE1MjUxNjY0NiIsImhlYWRpbmciOjEwNy4zMzk2NjA3MzIwNTU0MiwiZGlzdCI6MTA3Ljg2Nn0seyJpZCI6IjE0Mzk0ODE4NS0xNTI0NTE2MDZfNDQzMTg3MDczIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYwNiIsImIiOiI0NDMxODcwNzMiLCJoZWFkaW5nIjoxNy40MzA3MTEwODQzMzYzNSwiZGlzdCI6NTQuNjF9XX0sIjE1MjQ1MTYwOCI6eyJpZCI6IjE1MjQ1MTYwOCIsImxvbiI6LTk3LjczNzkxLCJsYXQiOjMwLjI2NzcsImVkZ2VzIjpbeyJpZCI6IjE0Mzk0ODE4NS0xNTI0NTE2MDhfNDQzMTg3MDc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYwOCIsImIiOiI0NDMxODcwNzUiLCJoZWFkaW5nIjoxOTcuMTUxNzkwNjExOTIyNywiZGlzdCI6NTIuMjA3fSx7ImlkIjoiMTQzOTQ4MTg2LTE1MjQ1MTYwOF80NDMxODcwNzgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNjA4IiwiYiI6IjQ0MzE4NzA3OCIsImhlYWRpbmciOjE3LjY4NTU4MjQ0NjIzMDQ2LCJkaXN0Ijo1Ny4wMTV9LHsiaWQiOiIyMDc1MTc2NDAtMTUyNDUxNjA4XzE1MjU2NjMxNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDUxNjA4IiwiYiI6IjE1MjU2NjMxNCIsImhlYWRpbmciOjEwNy40NDIxMDU1NDU4MDE4LCJkaXN0IjoxMTAuOTUxfV19LCIxNTI0NTE2MTAiOnsiaWQiOiIxNTI0NTE2MTAiLCJsb24iOi05Ny43Mzc1NiwibGF0IjozMC4yNjg2MywiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NjAtMTUyNDUxNjEwXzE1MjUzOTY0MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDUxNjEwIiwiYiI6IjE1MjUzOTY0MyIsImhlYWRpbmciOi03Mi4xOTAyODc5MDA1NDc2OSwiZGlzdCI6MTA1LjExMX0seyJpZCI6IjE0Mzk0ODE4Ni0xNTI0NTE2MTBfNDQzMTg3MDc4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYxMCIsImIiOiI0NDMxODcwNzgiLCJoZWFkaW5nIjoxOTguNTM5ODQ0NDM3MDc5NzUsImRpc3QiOjUxLjQ0N30seyJpZCI6IjE0Mzk0ODE4Ni0xNTI0NTE2MTBfNDQzMTg3MDgwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYxMCIsImIiOiI0NDMxODcwODAiLCJoZWFkaW5nIjoxOC4zODgzMDM2OTQzMzY4MjMsImRpc3QiOjU0LjkwNn1dfSwiMTUyNDUxNjEyIjp7ImlkIjoiMTUyNDUxNjEyIiwibG9uIjotOTcuNzM3MiwibGF0IjozMC4yNjk1OSwiZWRnZXMiOlt7ImlkIjoiMTQzOTQ4MTg2LTE1MjQ1MTYxMl80NDMxODcwODAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNjEyIiwiYiI6IjQ0MzE4NzA4MCIsImhlYWRpbmciOjE5Ny42ODUzNDM1OTEyMjA5NCwiZGlzdCI6NTcuMDE0fSx7ImlkIjoiMTQzOTQ4MTg2LTE1MjQ1MTYxMl8xNTI0NTE2MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNjEyIiwiYiI6IjE1MjQ1MTYxNSIsImhlYWRpbmciOjE3LjYwNTg5NjY4NTc3NDE3NywiZGlzdCI6MTA4LjE2M30seyJpZCI6IjE3MjgxNDYxMi0xNTI0NTE2MTJfMTUyNDYwMjMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYxMiIsImIiOiIxNTI0NjAyMzAiLCJoZWFkaW5nIjoxMDguMjE5MjkyOTAxNTAxNzcsImRpc3QiOjEwNi4zNjl9XX0sIjE1MjQ1MTYxNSI6eyJpZCI6IjE1MjQ1MTYxNSIsImxvbiI6LTk3LjczNjg2LCJsYXQiOjMwLjI3MDUyLCJlZGdlcyI6W3siaWQiOiIxNDM5NDgxODYtMTUyNDUxNjE1XzE1MjQ1MTYxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE2MTUiLCJiIjoiMTUyNDUxNjEyIiwiaGVhZGluZyI6MTk3LjYwNTg5NjY4NTc3NDE4LCJkaXN0IjoxMDguMTYzfSx7ImlkIjoiMjA0OTg5NzMwLTE1MjQ1MTYxNV8xNTI1Mzk2NDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNjE1IiwiYiI6IjE1MjUzOTY0NiIsImhlYWRpbmciOi03MS43Nzk5NjI0ODI1MjE3NCwiZGlzdCI6MTA2LjM2N31dfSwiMTUyNDUxNjE4Ijp7ImlkIjoiMTUyNDUxNjE4IiwibG9uIjotOTcuNzM2NDksImxhdCI6MzAuMjcxNDYsImVkZ2VzIjpbeyJpZCI6IjIwNDk2NDY5NC0xNTI0NTE2MThfMTUyNDk1NjE4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NTE2MTgiLCJiIjoiMTUyNDk1NjE4IiwiaGVhZGluZyI6Mjg3LjkwMTAyODE4NTcyNzYsImRpc3QiOjEwOC4xOTZ9LHsiaWQiOiIyMDQ5NjQ2OTQtMTUyNDUxNjE4XzE1MjQ5NTYyMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDUxNjE4IiwiYiI6IjE1MjQ5NTYyMCIsImhlYWRpbmciOjEwNy42NTA1Nzg4MDQ1NDg3LCJkaXN0IjoxMDYuMDI1fV19LCIxNTI0NTE2MjEiOnsiaWQiOiIxNTI0NTE2MjEiLCJsb24iOi05Ny43MzYxMSwibGF0IjozMC4yNzI1NSwiZWRnZXMiOlt7ImlkIjoiOTI0NjAwMzUtMTUyNDUxNjIxXzE1Mjc1OTM5OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDUxNjIxIiwiYiI6IjE1Mjc1OTM5OCIsImhlYWRpbmciOjEwOS4yNDUxMjEzNDg3NjA5MiwiZGlzdCI6MzMuNjMzfV19LCIxNTI0NTY2MDciOnsiaWQiOiIxNTI0NTY2MDciLCJsb24iOi05Ny43NDU5MywibGF0IjozMC4yNjk5NiwiZWRnZXMiOlt7ImlkIjoiMjAxNjgwNDg0LTE1MjQ1NjYwN18xNTI1MTI4NDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjA3IiwiYiI6IjE1MjUxMjg0MSIsImhlYWRpbmciOjEwOC4xNDEyNTY3NTYxODk5NywiZGlzdCI6MTEwLjM3MX1dfSwiMTUyNDU2NjEwIjp7ImlkIjoiMTUyNDU2NjEwIiwibG9uIjotOTcuNzQ1MjMsImxhdCI6MzAuMjcxODEsImVkZ2VzIjpbeyJpZCI6IjE1NDA0MDMwLTE1MjQ1NjYxMF8xNTI1MTYxOTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjEwIiwiYiI6IjE1MjUxNjE5NyIsImhlYWRpbmciOjEwNS45Mjc0NDIyNDY3NTgxOCwiZGlzdCI6MTA5LjA3fSx7ImlkIjoiNDEyODc2MjktMTUyNDU2NjEwXzE1MjU4MzM5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MTAiLCJiIjoiMTUyNTgzMzk1IiwiaGVhZGluZyI6LTcxLjQ3MDg4NzA1ODE3NjIyLCJkaXN0IjoxMTEuNjMxfV19LCIxNTI0NTY2MTMiOnsiaWQiOiIxNTI0NTY2MTMiLCJsb24iOi05Ny43NDQ4OSwibGF0IjozMC4yNzI3NywiZWRnZXMiOlt7ImlkIjoiNDEyODc2MzAtMTUyNDU2NjEzXzE1MjQ4MDIxNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MTMiLCJiIjoiMTUyNDgwMjE0IiwiaGVhZGluZyI6LTcyLjI1MzUxNTc3OTgyOTk0LCJkaXN0IjoxMDkuMTExfV19LCIxNTI0NTY2MTYiOnsiaWQiOiIxNTI0NTY2MTYiLCJsb24iOi05Ny43NDQ1OCwibGF0IjozMC4yNzM3LCJlZGdlcyI6W3siaWQiOiIyMDQ4Njk1MzAtMTUyNDU2NjE2XzE1MjU4MzM5OCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTI0NTY2MTYiLCJiIjoiMTUyNTgzMzk4IiwiaGVhZGluZyI6LTcxLjI4MDM3MzgzODg4NDA5LCJkaXN0IjoxMDMuNjI2fV19LCIxNTI0NTY2MTgiOnsiaWQiOiIxNTI0NTY2MTgiLCJsb24iOi05Ny43NDQxMiwibGF0IjozMC4yNzQ5LCJlZGdlcyI6W3siaWQiOiIyMDQ5ODk3NzUtMTUyNDU2NjE4XzE1MjU4MzQwMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDU2NjE4IiwiYiI6IjE1MjU4MzQwMiIsImhlYWRpbmciOi03Mi4zNDgyNTY0NTM2NjA3NywiZGlzdCI6MTA2LjAyMn1dfSwiMTUyNDU2NjIwIjp7ImlkIjoiMTUyNDU2NjIwIiwibG9uIjotOTcuNzQzNywibGF0IjozMC4yNzYwMSwiZWRnZXMiOlt7ImlkIjoiMTUzOTE0NjYtMTUyNDU2NjIwXzE1MjUxNjIwNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MjAiLCJiIjoiMTUyNTE2MjA0IiwiaGVhZGluZyI6MTA3LjI5NjMyNTYwNjIzNzkxLCJkaXN0IjoxMTEuODYxfSx7ImlkIjoiMTUzOTE0NjYtMTUyNDU2NjIwXzE1MjU0NjE5NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MjAiLCJiIjoiMTUyNTQ2MTk2IiwiaGVhZGluZyI6LTcyLjY1ODA0NTUzNTUzMDcyLCJkaXN0IjoxMDcuODU2fV19LCIxNTI0NTY2MjIiOnsiaWQiOiIxNTI0NTY2MjIiLCJsb24iOi05Ny43NDI5NywibGF0IjozMC4yNzc5NiwiZWRnZXMiOlt7ImlkIjoiMTcwMDUwODE3LTE1MjQ1NjYyMl8xNTI1ODM0MDQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ1NjYyMiIsImIiOiIxNTI1ODM0MDQiLCJoZWFkaW5nIjotNzIuMjUyNjI3MzcxNTQ0ODMsImRpc3QiOjEwOS4xMDZ9XX0sIjE1MjQ1NjYyNCI6eyJpZCI6IjE1MjQ1NjYyNCIsImxvbiI6LTk3Ljc0MjY0LCJsYXQiOjMwLjI3ODg3LCJlZGdlcyI6W3siaWQiOiIxNTM5NjI1MC0xNTI0NTY2MjRfNDQzMjE0NjQ0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1NjYyNCIsImIiOiI0NDMyMTQ2NDQiLCJoZWFkaW5nIjoxMDcuNDQ0NDE3MzU0NTk0NjMsImRpc3QiOjU1LjQ3fSx7ImlkIjoiMTI0OTUzMjMwLTE1MjQ1NjYyNF8xNTI1ODM0MDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjI0IiwiYiI6IjE1MjU4MzQwNyIsImhlYWRpbmciOi03MS44NTY1ODUyMDkxNjE1NCwiZGlzdCI6MTEwLjM2Mn1dfSwiMTUyNDU2NjI4Ijp7ImlkIjoiMTUyNDU2NjI4IiwibG9uIjotOTcuNzQyMzEsImxhdCI6MzAuMjc5NzMsImVkZ2VzIjpbeyJpZCI6IjE1Mzg1MzcyLTE1MjQ1NjYyOF80NDMyMTQ2NDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjI4IiwiYiI6IjQ0MzIxNDY0OCIsImhlYWRpbmciOjEwNy43NDc1MDA5OTk5OTE2NCwiZGlzdCI6NTQuNTUyfSx7ImlkIjoiMTI0OTUzMjMyLTE1MjQ1NjYyOF8xNTI0ODY2MDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjI4IiwiYiI6IjE1MjQ4NjYwOSIsImhlYWRpbmciOi03MS44NTY0MzUxMjkzMjM3NiwiZGlzdCI6MTEwLjM2MX1dfSwiMTUyNDU2NjMwIjp7ImlkIjoiMTUyNDU2NjMwIiwibG9uIjotOTcuNzQxOTksImxhdCI6MzAuMjgwNjEsImVkZ2VzIjpbeyJpZCI6IjE1NDEwODg1LTE1MjQ1NjYzMF80NDMyMTQ2NTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjMwIiwiYiI6IjQ0MzIxNDY1MSIsImhlYWRpbmciOjExMC42NjA3MjQ3OTc3NzgyNiwiZGlzdCI6NTYuNTU1fSx7ImlkIjoiMTU0MTA4ODUtMTUyNDU2NjMwXzE1MjU4MzQxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MzAiLCJiIjoiMTUyNTgzNDEwIiwiaGVhZGluZyI6LTcyLjQwNDkwNTc4MTE1ODUsImRpc3QiOjExMC4wMn1dfSwiMTUyNDU2NjM2Ijp7ImlkIjoiMTUyNDU2NjM2IiwibG9uIjotOTcuNzQxOTQsImxhdCI6MzAuMjgxNzMsImVkZ2VzIjpbeyJpZCI6IjEzNzQxNzQ2Ni0xNTI0NTY2MzZfMTgzMzYwNjc1OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDU2NjM2IiwiYiI6IjE4MzM2MDY3NTgiLCJoZWFkaW5nIjotNzEuOTYzMzMzODE5NDU1MjMsImRpc3QiOjQ2LjU0NX1dfSwiMTUyNDYwMjIxIjp7ImlkIjoiMTUyNDYwMjIxIiwibG9uIjotOTcuNzQxNzUsImxhdCI6MzAuMjcwODUsImVkZ2VzIjpbeyJpZCI6IjE1MzgzNDc0LTE1MjQ2MDIyMV80NDMxODUxNDIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDYwMjIxIiwiYiI6IjQ0MzE4NTE0MiIsImhlYWRpbmciOjEwOC45NzgxNjkwMTM5MzEwMiwiZGlzdCI6NjguMTc2fV19LCIxNTI0NjAyMjMiOnsiaWQiOiIxNTI0NjAyMjMiLCJsb24iOi05Ny43NDA0MiwibGF0IjozMC4yNzA0NywiZWRnZXMiOlt7ImlkIjoiMTUzODM0NzQtMTUyNDYwMjIzXzE1MjQ2MDIyNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NjAyMjMiLCJiIjoiMTUyNDYwMjI1IiwiaGVhZGluZyI6MTA3LjU5Mjc3MTA2NzE1Mzg2LCJkaXN0IjoxMTAuMDN9LHsiaWQiOiIyMDQ5OTg2NjktMTUyNDYwMjIzXzQ0MzE4Njk2NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NjAyMjMiLCJiIjoiNDQzMTg2OTY2IiwiaGVhZGluZyI6MTcuMTUxMjU1NzU1MzEzMTEsImRpc3QiOjUyLjIwN31dfSwiMTUyNDYwMjI1Ijp7ImlkIjoiMTUyNDYwMjI1IiwibG9uIjotOTcuNzM5MzMsImxhdCI6MzAuMjcwMTcsImVkZ2VzIjpbeyJpZCI6IjIwMTY4MDQ4My0xNTI0NjAyMjVfNDQzMTg3MDA0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NjAyMjUiLCJiIjoiNDQzMTg3MDA0IiwiaGVhZGluZyI6LTE2MS42MTE3OTQzODM5MzE3NCwiZGlzdCI6NTQuOTA2fV19LCIxNTI0NjAyMjgiOnsiaWQiOiIxNTI0NjAyMjgiLCJsb24iOi05Ny43MzgyNiwibGF0IjozMC4yNjk4OSwiZWRnZXMiOlt7ImlkIjoiMTcyODE0NjEyLTE1MjQ2MDIyOF8xNTI0NTE2MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDYwMjI4IiwiYiI6IjE1MjQ1MTYxMiIsImhlYWRpbmciOjEwOC4wNTg2NjcwMzY0ODcxNCwiZGlzdCI6MTA3LjI4M30seyJpZCI6IjIwNDk4MTU2OS0xNTI0NjAyMjhfMTUyNTM5NjQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NjAyMjgiLCJiIjoiMTUyNTM5NjQ2IiwiaGVhZGluZyI6MTguMDkwMzYzNjExMDU4OTEyLCJkaXN0IjoxMDguNDU4fV19LCIxNTI0NjAyMzAiOnsiaWQiOiIxNTI0NjAyMzAiLCJsb24iOi05Ny43MzYxNSwibGF0IjozMC4yNjkyOSwiZWRnZXMiOlt7ImlkIjoiMTcyODE0NjEyLTE1MjQ2MDIzMF80NDI3NjE1NTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDYwMjMwIiwiYiI6IjQ0Mjc2MTU1MSIsImhlYWRpbmciOjEwNy45NTI5ODc1MDUxOTEzMywiZGlzdCI6OTcuMTA0fSx7ImlkIjoiMjA0OTk5NzA4LTE1MjQ2MDIzMF80NDMxODcxMDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ2MDIzMCIsImIiOiI0NDMxODcxMDIiLCJoZWFkaW5nIjoxOTcuMDg4NDM4MTcwOTkyNTYsImRpc3QiOjU1LjY2OX0seyJpZCI6IjIwNDk5OTcwOC0xNTI0NjAyMzBfMTUyNTY2MzE3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NjAyMzAiLCJiIjoiMTUyNTY2MzE3IiwiaGVhZGluZyI6MTkuNTI3ODc1MDUzNDc2NDEsImRpc3QiOjEwOS4zODl9XX0sIjE1MjQ4MDIwNyI6eyJpZCI6IjE1MjQ4MDIwNyIsImxvbiI6LTk3Ljc0MTQ0LCJsYXQiOjMwLjI3MTgsImVkZ2VzIjpbeyJpZCI6IjE1Mzg0ODMyLTE1MjQ4MDIwN180NDMxODUxNDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDgwMjA3IiwiYiI6IjQ0MzE4NTE0MSIsImhlYWRpbmciOi03MS42NTEwMzA2ODg2NDI0MSwiZGlzdCI6NjYuOTA4fV19LCIxNTI0ODAyMDkiOnsiaWQiOiIxNTI0ODAyMDkiLCJsb24iOi05Ny43NDI3NCwibGF0IjozMC4yNzIxNywiZWRnZXMiOlt7ImlkIjoiMjczOTE2NDYtMTUyNDgwMjA5XzQ0MzE4MjMzMyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODAyMDkiLCJiIjoiNDQzMTgyMzMzIiwiaGVhZGluZyI6LTE2My41NTc4NTgwNjYyMTkzMiwiZGlzdCI6NTcuNzkyfSx7ImlkIjoiMjA0OTc0NzkyLTE1MjQ4MDIwOV8xNTI0ODAyMTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDgwMjA5IiwiYiI6IjE1MjQ4MDIxMSIsImhlYWRpbmciOi03MS4zNzkyNzEwNjk5NiwiZGlzdCI6MTA3LjYyOX1dfSwiMTUyNDgwMjExIjp7ImlkIjoiMTUyNDgwMjExIiwibG9uIjotOTcuNzQzOCwibGF0IjozMC4yNzI0OCwiZWRnZXMiOlt7ImlkIjoiMjA0OTY0NzY1LTE1MjQ4MDIxMV8xNTI0NTY2MTMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDgwMjExIiwiYiI6IjE1MjQ1NjYxMyIsImhlYWRpbmciOi03Mi45NTgyMjUzMzkyNDQ1NCwiZGlzdCI6MTA5LjY5OH1dfSwiMTUyNDgwMjE0Ijp7ImlkIjoiMTUyNDgwMjE0IiwibG9uIjotOTcuNzQ1OTcsImxhdCI6MzAuMjczMDcsImVkZ2VzIjpbeyJpZCI6IjI3NDAxMjQzLTE1MjQ4MDIxNF80NDMxODIzNDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDgwMjE0IiwiYiI6IjQ0MzE4MjM0NiIsImhlYWRpbmciOjE5OC43NTk2MzcyMTQ0NzQ4MiwiZGlzdCI6NTMuODU1fSx7ImlkIjoiNDEyODc2MzAtMTUyNDgwMjE0XzE1MjQ1NjYxMyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODAyMTQiLCJiIjoiMTUyNDU2NjEzIiwiaGVhZGluZyI6MTA3Ljc0NjQ4NDIyMDE3MDA2LCJkaXN0IjoxMDkuMTExfV19LCIxNTI0ODAyMTYiOnsiaWQiOiIxNTI0ODAyMTYiLCJsb24iOi05Ny43NDgxMiwibGF0IjozMC4yNzM2NiwiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItMTUyNDgwMjE2XzQ0MzE4MjM1MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODAyMTYiLCJiIjoiNDQzMTgyMzUxIiwiaGVhZGluZyI6MTk4LjM4NzQ5ODk5NTI3NzkyLCJkaXN0Ijo1NC45MDZ9LHsiaWQiOiIxNTM5OTY4Mi0xNTI0ODAyMTZfNDQzMTgyMzUyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4MDIxNiIsImIiOiI0NDMxODIzNTIiLCJoZWFkaW5nIjoxNi40NjEyMDc0MTk5NTQwMywiZGlzdCI6NTQuMzN9LHsiaWQiOiI0MTkyMDA4OS0xNTI0ODAyMTZfMTUyMzkzNDg5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4MDIxNiIsImIiOiIxNTIzOTM0ODkiLCJoZWFkaW5nIjoxMDYuNjMwOTU2Mjk1ODA0NjQsImRpc3QiOjEwOC40NTV9XX0sIjE1MjQ4NjYwMyI6eyJpZCI6IjE1MjQ4NjYwMyIsImxvbiI6LTk3LjczODg0LCJsYXQiOjMwLjI3ODc0LCJlZGdlcyI6W3siaWQiOiIxNTM4NTM3Mi0xNTI0ODY2MDNfMjE2NzE2MTMxMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDMiLCJiIjoiMjE2NzE2MTMxMSIsImhlYWRpbmciOi03MS43Nzg3OTQ1ODYwMDI2OSwiZGlzdCI6Ny4wOTF9LHsiaWQiOiIxNTM5NzQ2MS0xNTI0ODY2MDNfMjE2NzE2MTI3NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDMiLCJiIjoiMjE2NzE2MTI3NyIsImhlYWRpbmciOjEwMS44MzE1NjgxMDU5ODkyOCwiZGlzdCI6MTAuODEzfSx7ImlkIjoiMjQwMTgyNTU0LTE1MjQ4NjYwM18yMTY3MTYxMzIyIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjQ4NjYwMyIsImIiOiIyMTY3MTYxMzIyIiwiaGVhZGluZyI6MTk4LjAyODU3NTgwMjY4MjU4LCJkaXN0Ijo5LjMyNn0seyJpZCI6IjI0MDE4MjU1NC0xNTI0ODY2MDNfMjE2NzE2MTI5MCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTI0ODY2MDMiLCJiIjoiMjE2NzE2MTI5MCIsImhlYWRpbmciOjE5LjE0NTQyMDQwNTQ4MDE4OCwiZGlzdCI6NS44Njd9XX0sIjE1MjQ4NjYwNCI6eyJpZCI6IjE1MjQ4NjYwNCIsImxvbiI6LTk3Ljc0MDE3LCJsYXQiOjMwLjI3OTE0LCJlZGdlcyI6W3siaWQiOiIxNTM4NTM3Mi0xNTI0ODY2MDRfMjE2NzE2MTMxMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDQiLCJiIjoiMjE2NzE2MTMxMSIsImhlYWRpbmciOjEwOS4xNjE3NTI3MzY4MTkyOCwiZGlzdCI6MTI4LjM0Mn0seyJpZCI6IjE1Mzg1MzcyLTE1MjQ4NjYwNF8xNTI0ODY2MDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDg2NjA0IiwiYiI6IjE1MjQ4NjYwNiIsImhlYWRpbmciOi03Mi45MjAyMzUxMDcxNzQyNSwiZGlzdCI6MTA1LjY4N30seyJpZCI6IjE1NDA4MzQ2LTE1MjQ4NjYwNF8xNTI2MDEwMjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDg2NjA0IiwiYiI6IjE1MjYwMTAyNyIsImhlYWRpbmciOjE5Ni44MjA1Mzc5ODAxMTY3NCwiZGlzdCI6MTAzLjA3M30seyJpZCI6IjE1NDA4MzQ2LTE1MjQ4NjYwNF80NDMyMTQ2NDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDg2NjA0IiwiYiI6IjQ0MzIxNDY0NiIsImhlYWRpbmciOjE5Ljc5MjE1NTQ2MjI1MTY2NywiZGlzdCI6NDguMzA1fV19LCIxNTI0ODY2MDYiOnsiaWQiOiIxNTI0ODY2MDYiLCJsb24iOi05Ny43NDEyMiwibGF0IjozMC4yNzk0MiwiZWRnZXMiOlt7ImlkIjoiMTUzODUzNzItMTUyNDg2NjA2XzE1MjQ4NjYwNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDYiLCJiIjoiMTUyNDg2NjA0IiwiaGVhZGluZyI6MTA3LjA3OTc2NDg5MjgyNTc1LCJkaXN0IjoxMDUuNjg3fSx7ImlkIjoiMTUzODUzNzItMTUyNDg2NjA2XzQ0MzIxNDY0OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDYiLCJiIjoiNDQzMjE0NjQ4IiwiaGVhZGluZyI6LTcxLjQ2OTY4NzgzOTgxMTQ2LCJkaXN0Ijo1NS44MTJ9XX0sIjE1MjQ4NjYwOSI6eyJpZCI6IjE1MjQ4NjYwOSIsImxvbiI6LTk3Ljc0MzQsImxhdCI6MzAuMjgwMDQsImVkZ2VzIjpbeyJpZCI6IjEyNDk1MzIyNi0xNTI0ODY2MDlfMTUyNTgzNDA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4NjYwOSIsImIiOiIxNTI1ODM0MDciLCJoZWFkaW5nIjoxOTguNDE5NTk5Mzg1NDExODMsImRpc3QiOjEwMC40ODV9LHsiaWQiOiIxMjQ5NTMyMjgtMTUyNDg2NjA5XzQ0MzIxNDYxNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDkiLCJiIjoiNDQzMjE0NjE1IiwiaGVhZGluZyI6MTguOTM4NDM5MzE5MTQ1OTM1LCJkaXN0Ijo1MC4zOTd9LHsiaWQiOiIxMjQ5NTMyMzItMTUyNDg2NjA5XzE1MjQ1NjYyOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDkiLCJiIjoiMTUyNDU2NjI4IiwiaGVhZGluZyI6MTA4LjE0MzU2NDg3MDY3NjI0LCJkaXN0IjoxMTAuMzYxfSx7ImlkIjoiMTI0OTUzMjMzLTE1MjQ4NjYwOV80NDMyMTQ2NDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDg2NjA5IiwiYiI6IjQ0MzIxNDY0OSIsImhlYWRpbmciOi03MS42MTQ5NjY5NjM5ODY3NiwiZGlzdCI6NTIuNzIyfV19LCIxNTI0ODY2MTAiOnsiaWQiOiIxNTI0ODY2MTAiLCJsb24iOi05Ny43NDU1NSwibGF0IjozMC4yODA2OSwiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItMTUyNDg2NjEwXzE1MjYwMTAyOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MTAiLCJiIjoiMTUyNjAxMDI4IiwiaGVhZGluZyI6MTk2Ljk3MjA1OTIzODM1ODUsImRpc3QiOjEwNS40NzR9LHsiaWQiOiIxNTM5OTY4Mi0xNTI0ODY2MTBfNDQzMjE0NjIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4NjYxMCIsImIiOiI0NDMyMTQ2MjAiLCJoZWFkaW5nIjoxNy43MzE4NTY1OTUwNTM5OCwiZGlzdCI6NDQuMjI3fSx7ImlkIjoiMTI0OTUzMjMzLTE1MjQ4NjYxMF8xNTIzOTM1MjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDg2NjEwIiwiYiI6IjE1MjM5MzUyMSIsImhlYWRpbmciOjEwOS4wNjg0NDk3Mzk4MTEyNywiZGlzdCI6MTExLjk3OX1dfSwiMTUyNDk1NjEzIjp7ImlkIjoiMTUyNDk1NjEzIiwibG9uIjotOTcuNzQxMSwibGF0IjozMC4yNzI3NCwiZWRnZXMiOlt7ImlkIjoiMTUzODYxMjgtMTUyNDk1NjEzXzIxNjcxNDYyMjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYxMyIsImIiOiIyMTY3MTQ2MjI3IiwiaGVhZGluZyI6MTA2LjA2NzcyOTIyMzc2ODgsImRpc3QiOjIwLjAyN31dfSwiMTUyNDk1NjE1Ijp7ImlkIjoiMTUyNDk1NjE1IiwibG9uIjotOTcuNzM5NzQsImxhdCI6MzAuMjcyMzYsImVkZ2VzIjpbeyJpZCI6IjE1Mzg2MTI4LTE1MjQ5NTYxNV8yODA5MTExMTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYxNSIsImIiOiIyODA5MTExMTUiLCJoZWFkaW5nIjoyODcuOTg3NDY4NzU4MTcyOSwiZGlzdCI6MTExLjI4M30seyJpZCI6IjIwNDk5ODY3Mi0xNTI0OTU2MTVfMTUyNDk1NjE3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MTUiLCJiIjoiMTUyNDk1NjE3IiwiaGVhZGluZyI6MTA3LjU5MzA5MjA3MTczMDk1LCJkaXN0IjoxMTAuMDI4fV19LCIxNTI0OTU2MTciOnsiaWQiOiIxNTI0OTU2MTciLCJsb24iOi05Ny43Mzg2NSwibGF0IjozMC4yNzIwNiwiZWRnZXMiOlt7ImlkIjoiMjAxNjgwNDY2LTE1MjQ5NTYxN18xNTI0OTU2MTgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYxNyIsImIiOiIxNTI0OTU2MTgiLCJoZWFkaW5nIjoxMDcuNTkzMDQxMTE1NzAwODgsImRpc3QiOjExMC4wMjl9LHsiaWQiOiIyMDE2ODA0ODMtMTUyNDk1NjE3XzQ0MzE4NTE0NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjE3IiwiYiI6IjQ0MzE4NTE0NSIsImhlYWRpbmciOi0xNjIuOTExOTM0Nzc2MjkwMjIsImRpc3QiOjU1LjY2OX0seyJpZCI6IjIwNDk5ODY3Mi0xNTI0OTU2MTdfMTUyNDk1NjE1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MTciLCJiIjoiMTUyNDk1NjE1IiwiaGVhZGluZyI6Mjg3LjU5MzA5MjA3MTczMDk1LCJkaXN0IjoxMTAuMDI4fV19LCIxNTI0OTU2MTgiOnsiaWQiOiIxNTI0OTU2MTgiLCJsb24iOi05Ny43Mzc1NiwibGF0IjozMC4yNzE3NiwiZWRnZXMiOlt7ImlkIjoiMjAxNjgwNDY2LTE1MjQ5NTYxOF8xNTI0OTU2MTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYxOCIsImIiOiIxNTI0OTU2MTciLCJoZWFkaW5nIjoyODcuNTkzMDQxMTE1NzAwOSwiZGlzdCI6MTEwLjAyOX0seyJpZCI6IjIwNDk2NDY5NC0xNTI0OTU2MThfMTUyNDUxNjE4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MTgiLCJiIjoiMTUyNDUxNjE4IiwiaGVhZGluZyI6MTA3LjkwMTAyODE4NTcyNzYzLCJkaXN0IjoxMDguMTk2fSx7ImlkIjoiMjA0OTY0NzY0LTE1MjQ5NTYxOF8xNTI1Mzk2NDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYxOCIsImIiOiIxNTI1Mzk2NDkiLCJoZWFkaW5nIjoxNi41NjA0NzY4MDE5Mzc0NDgsImRpc3QiOjEyNC45MDd9XX0sIjE1MjQ5NTYyMCI6eyJpZCI6IjE1MjQ5NTYyMCIsImxvbiI6LTk3LjczNTQ0LCJsYXQiOjMwLjI3MTE3LCJlZGdlcyI6W3siaWQiOiIyMDQ5NjQ2OTQtMTUyNDk1NjIwXzE1MjQ1MTYxOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjIwIiwiYiI6IjE1MjQ1MTYxOCIsImhlYWRpbmciOjI4Ny42NTA1Nzg4MDQ1NDg3LCJkaXN0IjoxMDYuMDI1fSx7ImlkIjoiMjA0OTg5NzMxLTE1MjQ5NTYyMF8xNTI0OTU2MjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYyMCIsImIiOiIxNTI0OTU2MjIiLCJoZWFkaW5nIjoxMTIuOTk4ODcxODgyOTM1OTIsImRpc3QiOjE5Ljg2MX0seyJpZCI6IjIwNDk4OTc1OC0xNTI0OTU2MjBfMTUyNTY2MzE5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MjAiLCJiIjoiMTUyNTY2MzE5IiwiaGVhZGluZyI6MTYuNzk5NTQzMTY2NzE1NTIzLCJkaXN0IjoyNi42MzR9LHsiaWQiOiIyMDQ5ODk3NTktMTUyNDk1NjIwXzE1MjU2NjMxNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjIwIiwiYiI6IjE1MjU2NjMxNyIsImhlYWRpbmciOjE5Ni43Nzg3MTQ2MDY0OTQ3MywiZGlzdCI6MTA5Ljk5N31dfSwiMTUyNDk1NjIyIjp7ImlkIjoiMTUyNDk1NjIyIiwibG9uIjotOTcuNzM1MjUsImxhdCI6MzAuMjcxMSwiZWRnZXMiOlt7ImlkIjoiMTM0Nzk3MDAzLTE1MjQ5NTYyMl80NDI3NjE1NTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYyMiIsImIiOiI0NDI3NjE1NTMiLCJoZWFkaW5nIjoxMDguNzE4NzgxNjEzMTYzMjYsImRpc3QiOjM0LjU0M30seyJpZCI6IjIwNDk4OTczMS0xNTI0OTU2MjJfMTUyNDk1NjIwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MjIiLCJiIjoiMTUyNDk1NjIwIiwiaGVhZGluZyI6MjkyLjk5ODg3MTg4MjkzNTkzLCJkaXN0IjoxOS44NjF9XX0sIjE1MjQ5NTYyNCI6eyJpZCI6IjE1MjQ5NTYyNCIsImxvbiI6LTk3LjczNDM2LCJsYXQiOjMwLjI3MDg2LCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xNTI0OTU2MjRfMTA3ODgwNjY4OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTU2MjQiLCJiIjoiMTA3ODgwNjY4OCIsImhlYWRpbmciOjE5LjE0NjgxMTkwMzI2MjE0NCwiZGlzdCI6MzUuMjA1fSx7ImlkIjoiMTUyNDI5NzE1LTE1MjQ5NTYyNF8xMDc4ODA2NjUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MjQiLCJiIjoiMTA3ODgwNjY1MyIsImhlYWRpbmciOjI4Ny4yOTUxMjQxMzUxODgzNiwiZGlzdCI6MzcuMjg5fSx7ImlkIjoiMTUyNDI5NzE1LTE1MjQ5NTYyNF8xMDc4ODA2NjM4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MjQiLCJiIjoiMTA3ODgwNjYzOCIsImhlYWRpbmciOjEwOC42MzM3MjUzODgzNzE1OSwiZGlzdCI6NDEuNjM0fV19LCIxNTI0OTY4OTEiOnsiaWQiOiIxNTI0OTY4OTEiLCJsb24iOi05Ny43MzgyLCJsYXQiOjMwLjI2MzY2LCJlZGdlcyI6W3siaWQiOiIxNTM4NjI2NS0xNTI0OTY4OTFfMTQ4MTM2NDMxNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTY4OTEiLCJiIjoiMTQ4MTM2NDMxNiIsImhlYWRpbmciOjEwNi40MTk4NDcyMTkyNzk0LCJkaXN0Ijo4Ni4yNzd9LHsiaWQiOiIzNzc0OTU0Ny0xNTI0OTY4OTFfMTQ4MTM2NDMyNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk2ODkxIiwiYiI6IjE0ODEzNjQzMjQiLCJoZWFkaW5nIjoxOTguNjI0MzU5NTExMzQ1MjMsImRpc3QiOjk5LjQzNn0seyJpZCI6IjM3NzQ5NTQ3LTE1MjQ5Njg5MV8xNTI1NjYzMDgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5Njg5MSIsImIiOiIxNTI1NjYzMDgiLCJoZWFkaW5nIjoxNy40MzEwNzgyOTMwMzA1NzMsImRpc3QiOjU0LjYxMX1dfSwiMTUyNDk2ODk0Ijp7ImlkIjoiMTUyNDk2ODk0IiwibG9uIjotOTcuNzM3MTksImxhdCI6MzAuMjYzNCwiZWRnZXMiOlt7ImlkIjoiMTUzODYyNjUtMTUyNDk2ODk0XzE0ODEzNjQzMTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDk2ODk0IiwiYiI6IjE0ODEzNjQzMTUiLCJoZWFkaW5nIjoyNjkuOTk5OTg5OTIyMzk2MzcsImRpc3QiOjMuODQ5fSx7ImlkIjoiMzc3NDk1NTAtMTUyNDk2ODk0XzE1MjQ5Njg5NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTY4OTQiLCJiIjoiMTUyNDk2ODk3IiwiaGVhZGluZyI6MTA4Ljg0NjMxNTEyNDcxNjE2LCJkaXN0IjoyNy40NTR9XX0sIjE1MjQ5Njg5NyI6eyJpZCI6IjE1MjQ5Njg5NyIsImxvbiI6LTk3LjczNjkyLCJsYXQiOjMwLjI2MzMyLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU0OS0xNTI0OTY4OTdfMjA3MjExOTQ5MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTY4OTciLCJiIjoiMjA3MjExOTQ5MSIsImhlYWRpbmciOjg5Ljk5OTk5NzQ3NjY1ODQxLCJkaXN0IjowLjk2Mn0seyJpZCI6IjM3NzQ5NTUwLTE1MjQ5Njg5N18xNTI0OTY4OTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDk2ODk3IiwiYiI6IjE1MjQ5Njg5NCIsImhlYWRpbmciOjI4OC44NDYzMTUxMjQ3MTYxNywiZGlzdCI6MjcuNDU0fV19LCIxNTI0OTY5MDAiOnsiaWQiOiIxNTI0OTY5MDAiLCJsb24iOi05Ny43MzYwOCwibGF0IjozMC4yNjMwNywiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NDktMTUyNDk2OTAwXzIwNzIxMTk0OTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDk2OTAwIiwiYiI6IjIwNzIxMTk0OTEiLCJoZWFkaW5nIjoyODkuMTM1ODE2OTg1NjI0OSwiZGlzdCI6ODQuNTQzfSx7ImlkIjoiMTc2ODc1MTc1LTE1MjQ5NjkwMF8xNTIzNzg3NTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NjkwMCIsImIiOiIxNTIzNzg3NTciLCJoZWFkaW5nIjotMTYyLjA2MzgyMTA2ODAzNzY3LCJkaXN0IjoxMzcuNDkzfV19LCIxNTI0OTY5MzciOnsiaWQiOiIxNTI0OTY5MzciLCJsb24iOi05Ny43NDM4NiwibGF0IjozMC4yNjUyNCwiZWRnZXMiOlt7ImlkIjoiMzA1MTEzODktMTUyNDk2OTM3XzI0ODE5MzA2ODciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDk2OTM3IiwiYiI6IjI0ODE5MzA2ODciLCJoZWFkaW5nIjotNzMuNDk4ODk4MjIwNTM3NjcsImRpc3QiOjM1LjEyN31dfSwiMTUyNDk2OTQwIjp7ImlkIjoiMTUyNDk2OTQwIiwibG9uIjotOTcuNzQyNSwibGF0IjozMC4yNjQ4NywiZWRnZXMiOlt7ImlkIjoiMzAxNDg2ODQtMTUyNDk2OTQwXzE1MjQ5Njk0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTY5NDAiLCJiIjoiMTUyNDk2OTQ2IiwiaGVhZGluZyI6MTA3LjgwOTAxNjk1OTA5NjMxLCJkaXN0IjoxMDUuMTE1fSx7ImlkIjoiMzIwNjU1MjctMTUyNDk2OTQwXzE1MjYyMDU2NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTY5NDAiLCJiIjoiMTUyNjIwNTY2IiwiaGVhZGluZyI6MjMuNDYxOTczMTM3MDM0OTc0LCJkaXN0IjoyLjQxN30seyJpZCI6IjI3NTM5ODAyMS0xNTI0OTY5NDBfNDQzMTg1MTMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njk0MCIsImIiOiI0NDMxODUxMzAiLCJoZWFkaW5nIjotNzMuMjMyNTE3MjI4MTIyMjYsImRpc3QiOjY1LjMyNn1dfSwiMTUyNDk2OTQ2Ijp7ImlkIjoiMTUyNDk2OTQ2IiwibG9uIjotOTcuNzQxNDYsImxhdCI6MzAuMjY0NTgsImVkZ2VzIjpbeyJpZCI6IjMwMTQ4Njg0LTE1MjQ5Njk0Nl8xNTI0OTY5NTMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDk2OTQ2IiwiYiI6IjE1MjQ5Njk1MyIsImhlYWRpbmciOjEwNy45ODY2MjI2MDg3MjIzOSwiZGlzdCI6MTExLjI5MX0seyJpZCI6IjMwMTQ4Njg0LTE1MjQ5Njk0Nl8xNTI0OTY5NDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDk2OTQ2IiwiYiI6IjE1MjQ5Njk0MCIsImhlYWRpbmciOi03Mi4xOTA5ODMwNDA5MDM2OSwiZGlzdCI6MTA1LjExNX0seyJpZCI6IjIwNDk4MTU2OC0xNTI0OTY5NDZfNDQzMTg3MDIwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTY5NDYiLCJiIjoiNDQzMTg3MDIwIiwiaGVhZGluZyI6LTE2My44NjIxMzMyMDU3MDI2LCJkaXN0Ijo1MS45MzJ9XX0sIjE1MjQ5Njk1MyI6eyJpZCI6IjE1MjQ5Njk1MyIsImxvbiI6LTk3Ljc0MDM2LCJsYXQiOjMwLjI2NDI3LCJlZGdlcyI6W3siaWQiOiIzMDE0ODY4NC0xNTI0OTY5NTNfMTUyNDk2OTQ2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njk1MyIsImIiOiIxNTI0OTY5NDYiLCJoZWFkaW5nIjotNzIuMDEzMzc3MzkxMjc3NjEsImRpc3QiOjExMS4yOTF9LHsiaWQiOiIzMDYwMjMyNi0xNTI0OTY5NTNfMTUyNTM5NjM4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTY5NTMiLCJiIjoiMTUyNTM5NjM4IiwiaGVhZGluZyI6MjMuNDYyMTAyMjg0MzY3NDE1LCJkaXN0IjoyLjQxN31dfSwiMTUyNTAwNzA4Ijp7ImlkIjoiMTUyNTAwNzA4IiwibG9uIjotOTcuNzQ1MTUsImxhdCI6MzAuMjY1NiwiZWRnZXMiOlt7ImlkIjoiMzA1MTEzODktMTUyNTAwNzA4XzE1MjUwMDcxMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDA3MDgiLCJiIjoiMTUyNTAwNzExIiwiaGVhZGluZyI6LTcxLjA3NDgxNzEyNjgwMzIzLCJkaXN0Ijo4NS40NTF9LHsiaWQiOiIyMDQ5NzQ3MjMtMTUyNTAwNzA4XzE1MjcyMzQwMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDA3MDgiLCJiIjoiMTUyNzIzNDAwIiwiaGVhZGluZyI6LTE2MC44NTIxNjAxNDA4NDEzNiwiZGlzdCI6NS44Njd9XX0sIjE1MjUwMDcxMSI6eyJpZCI6IjE1MjUwMDcxMSIsImxvbiI6LTk3Ljc0NTk5LCJsYXQiOjMwLjI2NTg1LCJlZGdlcyI6W3siaWQiOiIzMDUxMTM4OS0xNTI1MDA3MTFfMTUyNTAwNzE3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcxMSIsImIiOiIxNTI1MDA3MTciLCJoZWFkaW5nIjotNzIuMTIxOTczMDU4MjUyNjgsImRpc3QiOjI1LjI3OH1dfSwiMTUyNTAwNzE3Ijp7ImlkIjoiMTUyNTAwNzE3IiwibG9uIjotOTcuNzQ2MjQsImxhdCI6MzAuMjY1OTIsImVkZ2VzIjpbeyJpZCI6IjMwNTExMzg5LTE1MjUwMDcxN18xNTI1MDA3MTkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAwNzE3IiwiYiI6IjE1MjUwMDcxOSIsImhlYWRpbmciOi03MS41NTcyNDkwMDA4MjMyMiwiZGlzdCI6NzcuMDkzfV19LCIxNTI1MDA3MTkiOnsiaWQiOiIxNTI1MDA3MTkiLCJsb24iOi05Ny43NDcsImxhdCI6MzAuMjY2MTQsImVkZ2VzIjpbeyJpZCI6IjMwNTExMzg5LTE1MjUwMDcxOV8yMzI4OTM5NzQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcxOSIsImIiOiIyMzI4OTM5NzQ3IiwiaGVhZGluZyI6LTczLjkzMzE2NDIzODQ0MTQ2LCJkaXN0IjozMi4wNDV9XX0sIjE1MjUwMDcyMiI6eyJpZCI6IjE1MjUwMDcyMiIsImxvbiI6LTk3Ljc0ODQzLCJsYXQiOjMwLjI2NjUzLCJlZGdlcyI6W3siaWQiOiIxNTM5NDc0Ni0xNTI1MDA3MjJfNDQzMTI5NDAzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcyMiIsImIiOiI0NDMxMjk0MDMiLCJoZWFkaW5nIjoxOTcuNzg1OTUyODA3MzM4NjcsImRpc3QiOjUzLjU1NH0seyJpZCI6IjMwMTQ4NjcwLTE1MjUwMDcyMl8xNTIzOTM0NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAwNzIyIiwiYiI6IjE1MjM5MzQ3NSIsImhlYWRpbmciOi03Mi42MTA1NDUzNDg2MjcyMywiZGlzdCI6MTAzLjg2MX0seyJpZCI6IjIwNDk2NDc1My0xNTI1MDA3MjJfMTUyNDUxNTQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcyMiIsImIiOiIxNTI0NTE1NDciLCJoZWFkaW5nIjoxOC45NTIxNjM0NDM0MzI3OSwiZGlzdCI6MTA2LjY2Mn0seyJpZCI6IjIwNDk2NDc2Ny0xNTI1MDA3MjJfMTUyMzkzNDc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcyMiIsImIiOiIxNTIzOTM0NzUiLCJoZWFkaW5nIjotNzIuNjEwNTQ1MzQ4NjI3MjMsImRpc3QiOjEwMy44NjF9XX0sIjE1MjUwMjM3MiI6eyJpZCI6IjE1MjUwMjM3MiIsImxvbiI6LTk3LjczODUxLCJsYXQiOjMwLjI3OTYyLCJlZGdlcyI6W3siaWQiOiIxNTM4Njg0Ni0xNTI1MDIzNzJfMjE2NzE2MTE2OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDIzNzIiLCJiIjoiMjE2NzE2MTE2OSIsImhlYWRpbmciOjExMi43MzI1MjAyMDQxOTAxNSwiZGlzdCI6MTEuNDc1fSx7ImlkIjoiMTU0MTA4ODUtMTUyNTAyMzcyXzIxNjcxNjEyODUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyMzcyIiwiYiI6IjIxNjcxNjEyODUiLCJoZWFkaW5nIjotNzIuNTU1NTUxOTAxNDIyMjgsImRpc3QiOjExLjA5NH0seyJpZCI6IjI0MDE4MjU1NC0xNTI1MDIzNzJfMjE2NzE2MTMzMSIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTI1MDIzNzIiLCJiIjoiMjE2NzE2MTMzMSIsImhlYWRpbmciOjIwMC40MDMzNzM2MjQ3NDc5OSwiZGlzdCI6OC4yNzl9LHsiaWQiOiIyNDAxODI1NTQtMTUyNTAyMzcyXzIxNjcxNjEzMDEiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNTAyMzcyIiwiYiI6IjIxNjcxNjEzMDEiLCJoZWFkaW5nIjoxNi4xMzU0MTY2MjE5MjU2MSwiZGlzdCI6Ni45MjR9XX0sIjE1MjUwMjM3NSI6eyJpZCI6IjE1MjUwMjM3NSIsImxvbiI6LTk3LjczNzE3LCJsYXQiOjMwLjI3OTIzLCJlZGdlcyI6W3siaWQiOiIxNTM4Njg0Ni0xNTI1MDIzNzVfMjE2NzE2MTE2OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDIzNzUiLCJiIjoiMjE2NzE2MTE2OSIsImhlYWRpbmciOjI4OC4xNTE3ODg3MzI2ODg5LCJkaXN0IjoxMjQuNTQyfSx7ImlkIjoiMTUzODY4NDYtMTUyNTAyMzc1XzE1MjUwMjM3NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDIzNzUiLCJiIjoiMTUyNTAyMzc3IiwiaGVhZGluZyI6MTA3LjkwMjMxNjQ0NjkyODA3LCJkaXN0IjoxMDguMTg5fSx7ImlkIjoiMTUwMzQ5OTg1LTE1MjUwMjM3NV8xNTI2MTM2MzYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyMzc1IiwiYiI6IjE1MjYxMzYzNiIsImhlYWRpbmciOjE5OC40MTk3NDI1ODM4MTMwOCwiZGlzdCI6MTAwLjQ4NX0seyJpZCI6IjE1MDM0OTk4NS0xNTI1MDIzNzVfMTQyMTEzNTAxOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDIzNzUiLCJiIjoiMTQyMTEzNTAxOSIsImhlYWRpbmciOjE3LjExNzE2NDI0Nzg4ODQ1NywiZGlzdCI6MTA3Ljg3Nn1dfSwiMTUyNTAyMzc3Ijp7ImlkIjoiMTUyNTAyMzc3IiwibG9uIjotOTcuNzM2MSwibGF0IjozMC4yNzg5MywiZWRnZXMiOlt7ImlkIjoiMTUzODY4NDYtMTUyNTAyMzc3XzE1MjUwMjM3NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDIzNzciLCJiIjoiMTUyNTAyMzc1IiwiaGVhZGluZyI6Mjg3LjkwMjMxNjQ0NjkyODA3LCJkaXN0IjoxMDguMTg5fSx7ImlkIjoiMTUzODY4NDYtMTUyNTAyMzc3XzE1MjUwMjM3OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDIzNzciLCJiIjoiMTUyNTAyMzc5IiwiaGVhZGluZyI6MTA4LjE0MjgyMTU3ODExMTEyLCJkaXN0IjoxMTAuMzYyfSx7ImlkIjoiMTUwMzUwMDIzLTE1MjUwMjM3N18yNjM3NjcwNzMyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDIzNzciLCJiIjoiMjYzNzY3MDczMiIsImhlYWRpbmciOi0xNjEuNjI1MDQxMTQwMTQyMDYsImRpc3QiOjk0LjYxOH1dfSwiMTUyNTAyMzc5Ijp7ImlkIjoiMTUyNTAyMzc5IiwibG9uIjotOTcuNzM1MDEsImxhdCI6MzAuMjc4NjIsImVkZ2VzIjpbeyJpZCI6IjE1Mzg2ODQ2LTE1MjUwMjM3OV8xNTI1MDIzNzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyMzc5IiwiYiI6IjE1MjUwMjM3NyIsImhlYWRpbmciOjI4OC4xNDI4MjE1NzgxMTExLCJkaXN0IjoxMTAuMzYyfSx7ImlkIjoiMTI0OTUzMTI4LTE1MjUwMjM3OV8xNDIxMTM0ODAzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDIzNzkiLCJiIjoiMTQyMTEzNDgwMyIsImhlYWRpbmciOjI1LjMzMzQ2NjEyNDQ4NzI3NywiZGlzdCI6MTMuNDkyfV19LCIxNTI1MDI5NjMiOnsiaWQiOiIxNTI1MDI5NjMiLCJsb24iOi05Ny43MzkyMywibGF0IjozMC4yODA5NSwiZWRnZXMiOlt7ImlkIjoiMTUzODY5MjEtMTUyNTAyOTYzXzIxNjcxNjEyMjYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUwMjk2MyIsImIiOiIyMTY3MTYxMjI2IiwiaGVhZGluZyI6MTA4LjA0OTczNDQyMjYzMjgxLCJkaXN0IjoxMDAuMTgxfSx7ImlkIjoiMTI0OTUzNzA0LTE1MjUwMjk2M18xNTI1MDI5NjUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUwMjk2MyIsImIiOiIxNTI1MDI5NjUiLCJoZWFkaW5nIjotNzIuNTU1Mjk3MzI0NDA2NTQsImRpc3QiOjIyLjE4N31dfSwiMTUyNTAyOTY1Ijp7ImlkIjoiMTUyNTAyOTY1IiwibG9uIjotOTcuNzM5NDUsImxhdCI6MzAuMjgxMDEsImVkZ2VzIjpbeyJpZCI6IjE1NDA4MzQ2LTE1MjUwMjk2NV8xNTI3MjMzOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyOTY1IiwiYiI6IjE1MjcyMzM5NSIsImhlYWRpbmciOjE5Ny43NTQ5MTIwMDEyNDE5NiwiZGlzdCI6MTE5Ljg5NH0seyJpZCI6IjEyNDk1MzcwNC0xNTI1MDI5NjVfMTUyNTAyOTYzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDI5NjUiLCJiIjoiMTUyNTAyOTYzIiwiaGVhZGluZyI6MTA3LjQ0NDcwMjY3NTU5MzQ2LCJkaXN0IjoyMi4xODd9LHsiaWQiOiIxMjQ5NTM3MDQtMTUyNTAyOTY1XzEzODkwNjc1OTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUwMjk2NSIsImIiOiIxMzg5MDY3NTkwIiwiaGVhZGluZyI6LTcxLjA5MTE2ODY4NDA4MTYsImRpc3QiOjM3LjYzfV19LCIxNTI1MDI5NjciOnsiaWQiOiIxNTI1MDI5NjciLCJsb24iOi05Ny43Mzk5OCwibGF0IjozMC4yODExNywiZWRnZXMiOlt7ImlkIjoiMTI0OTUzNzA0LTE1MjUwMjk2N18xMzg5MDY3NTkwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDI5NjciLCJiIjoiMTM4OTA2NzU5MCIsImhlYWRpbmciOjEwOS44MDIxNTM2OTI3NDI0NSwiZGlzdCI6MTYuMzYyfSx7ImlkIjoiMTMwNjY4NzkxLTE1MjUwMjk2N18xNTI1MDI5NzAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUwMjk2NyIsImIiOiIxNTI1MDI5NzAiLCJoZWFkaW5nIjotNzEuNjE0NzY3NTAyMTgwMzEsImRpc3QiOjUyLjcyMn1dfSwiMTUyNTAyOTcwIjp7ImlkIjoiMTUyNTAyOTcwIiwibG9uIjotOTcuNzQwNSwibGF0IjozMC4yODEzMiwiZWRnZXMiOlt7ImlkIjoiMTMwNjY4NzkxLTE1MjUwMjk3MF8xNTI1MDI5NjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUwMjk3MCIsImIiOiIxNTI1MDI5NjciLCJoZWFkaW5nIjoxMDguMzg1MjMyNDk3ODE5NjksImRpc3QiOjUyLjcyMn1dfSwiMTUyNTAyOTc1Ijp7ImlkIjoiMTUyNTAyOTc1IiwibG9uIjotOTcuNzQyNjgsImxhdCI6MzAuMjgxOTUsImVkZ2VzIjpbeyJpZCI6IjEyNDk1MzIyOC0xNTI1MDI5NzVfNDQzMjE0NjE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMjk3NSIsImIiOiI0NDMyMTQ2MTYiLCJoZWFkaW5nIjoxOTguMzM0MDUxMDYyMzUyNCwiZGlzdCI6NjQuMjMyfSx7ImlkIjoiMTM3NDE3NDY2LTE1MjUwMjk3NV8xODMzNjA2NzU4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDI5NzUiLCJiIjoiMTgzMzYwNjc1OCIsImhlYWRpbmciOjExMC4zMjIzOTU0MzAwMDI5OCwiZGlzdCI6MjguNzI4fSx7ImlkIjoiMTM3NDE3NDY2LTE1MjUwMjk3NV8xNTI1MDI5NzYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUwMjk3NSIsImIiOiIxNTI1MDI5NzYiLCJoZWFkaW5nIjotNzMuMDcxNzg5NzI4NTcxMTIsImRpc3QiOjUzLjMwMn1dfSwiMTUyNTAyOTc2Ijp7ImlkIjoiMTUyNTAyOTc2IiwibG9uIjotOTcuNzQzMjEsImxhdCI6MzAuMjgyMDksImVkZ2VzIjpbeyJpZCI6IjEzNzQxNzQ2Ni0xNTI1MDI5NzZfMTUyNTAyOTc1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDI5NzYiLCJiIjoiMTUyNTAyOTc1IiwiaGVhZGluZyI6MTA2LjkyODIxMDI3MTQyODg4LCJkaXN0Ijo1My4zMDJ9LHsiaWQiOiIxMzc0MTc0NjYtMTUyNTAyOTc2XzE1MjM5MzUyOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTAyOTc2IiwiYiI6IjE1MjM5MzUyOCIsImhlYWRpbmciOi03My4wNzE3NjY3Mjc3NzM2LCJkaXN0Ijo1My4zMDJ9XX0sIjE1MjUwOTk1NSI6eyJpZCI6IjE1MjUwOTk1NSIsImxvbiI6LTk3Ljc0OTEsImxhdCI6MzAuMjY0NjcsImVkZ2VzIjpbeyJpZCI6IjE1Mzk0NzQ2LTE1MjUwOTk1NV8yNTI4OTc2NTM0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwOTk1NSIsImIiOiIyNTI4OTc2NTM0IiwiaGVhZGluZyI6MTYuMTM3NzY0Nzg1NDgzMjUsImRpc3QiOjEwLjM4Nn1dfSwiMTUyNTEyODM1Ijp7ImlkIjoiMTUyNTEyODM1IiwibG9uIjotOTcuNzQyNDcsImxhdCI6MzAuMjY4OTYsImVkZ2VzIjpbeyJpZCI6IjE1NDA0Mjg2LTE1MjUxMjgzNV80NDMxODUxMzYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUxMjgzNSIsImIiOiI0NDMxODUxMzYiLCJoZWFkaW5nIjoxMDcuMTM0MjE0MzkzNzkxMDEsImRpc3QiOjcxLjQ5M31dfSwiMTUyNTEyODM5Ijp7ImlkIjoiMTUyNTEyODM5IiwibG9uIjotOTcuNzQzNzcsImxhdCI6MzAuMjY5MzQsImVkZ2VzIjpbeyJpZCI6IjIwMTY4MDQ4NC0xNTI1MTI4MzlfNDQzMTg1MTM3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxMjgzOSIsImIiOiI0NDMxODUxMzciLCJoZWFkaW5nIjoxMDcuOTUzMDg0NTc1MTg4OTgsImRpc3QiOjY0LjczNn0seyJpZCI6IjIwNDk3NDcyMy0xNTI1MTI4MzlfNDQzMTgyMzM2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxMjgzOSIsImIiOiI0NDMxODIzMzYiLCJoZWFkaW5nIjotMTYxLjQ2MDE5NjA0MDYyODU1LCJkaXN0Ijo1MS40NDd9XX0sIjE1MjUxMjg0MSI6eyJpZCI6IjE1MjUxMjg0MSIsImxvbiI6LTk3Ljc0NDg0LCJsYXQiOjMwLjI2OTY1LCJlZGdlcyI6W3siaWQiOiIyMDE2ODA0ODQtMTUyNTEyODQxXzE1MjUxMjgzOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTI4NDEiLCJiIjoiMTUyNTEyODM5IiwiaGVhZGluZyI6MTA4LjQ1NzUxMDk0MDk3MDUsImRpc3QiOjEwOC41NDR9XX0sIjE1MjUxMjg0NCI6eyJpZCI6IjE1MjUxMjg0NCIsImxvbiI6LTk3Ljc0NzA0LCJsYXQiOjMwLjI3MDIxLCJlZGdlcyI6W3siaWQiOiIyNzQwMTI0MC0xNTI1MTI4NDRfMTYyNjU0NzAzMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTI4NDQiLCJiIjoiMTYyNjU0NzAzMSIsImhlYWRpbmciOjEwNy4xNjA2MDQ2ODc4NjA2MSwiZGlzdCI6OTcuNjg2fSx7ImlkIjoiMjc0MDEyNTMtMTUyNTEyODQ0XzE2MjY1NDcwMjYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTEyODQ0IiwiYiI6IjE2MjY1NDcwMjYiLCJoZWFkaW5nIjotNjQuMTIyNjAyODgwMjI2NjcsImRpc3QiOjQwLjY0fSx7ImlkIjoiNDA1MjY1NjYtMTUyNTEyODQ0XzE1MjU4MzM5MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTI4NDQiLCJiIjoiMTUyNTgzMzkxIiwiaGVhZGluZyI6MTk3LjMzMjU5NzA2MDc3NDg3LCJkaXN0IjoxMDMuMzU2fV19LCIxNTI1MTI4NDYiOnsiaWQiOiIxNTI1MTI4NDYiLCJsb24iOi05Ny43NDkxNSwibGF0IjozMC4yNzA4OCwiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItMTUyNTEyODQ2XzQ0MzE4MjM0OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTI4NDYiLCJiIjoiNDQzMTgyMzQ4IiwiaGVhZGluZyI6MTk4Ljc2MDAzMDM3MTcwOTU1LCJkaXN0Ijo1My44NTV9LHsiaWQiOiIxNTM5OTY4Mi0xNTI1MTI4NDZfNDQzMTgyMzQ5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxMjg0NiIsImIiOiI0NDMxODIzNDkiLCJoZWFkaW5nIjoxNy43ODUxMjgxMzU2NjQ1MDQsImRpc3QiOjUzLjU1NH0seyJpZCI6IjMxMTY1OTYyLTE1MjUxMjg0Nl8xNTIzOTM0ODMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTEyODQ2IiwiYiI6IjE1MjM5MzQ4MyIsImhlYWRpbmciOjEwOC4xNDE5NjY2NzM3NzYwNSwiZGlzdCI6MTEwLjM3fV19LCIxNTI1MTYxOTciOnsiaWQiOiIxNTI1MTYxOTciLCJsb24iOi05Ny43NDQxNCwibGF0IjozMC4yNzE1NCwiZWRnZXMiOlt7ImlkIjoiMjA0OTc0ODA1LTE1MjUxNjE5N18yMTc3NzI0NjYxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjE5NyIsImIiOiIyMTc3NzI0NjYxIiwiaGVhZGluZyI6MTA3Ljc4Nzg1NTg3NDY2OTU3LCJkaXN0Ijo3OS44MzJ9XX0sIjE1MjUxNjIwMiI6eyJpZCI6IjE1MjUxNjIwMiIsImxvbiI6LTk3Ljc0MzAxLCJsYXQiOjMwLjI3NDU5LCJlZGdlcyI6W3siaWQiOiIxNTQwMTAwOS0xNTI1MTYyMDJfMTUyNDU2NjE4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTYyMDIiLCJiIjoiMTUyNDU2NjE4IiwiaGVhZGluZyI6LTcyLjE2MzMzMjQ4MjgzODUzLCJkaXN0IjoxMTIuMTk2fV19LCIxNTI1MTYyMDQiOnsiaWQiOiIxNTI1MTYyMDQiLCJsb24iOi05Ny43NDI1OSwibGF0IjozMC4yNzU3MSwiZWRnZXMiOlt7ImlkIjoiMTUzOTE0NjYtMTUyNTE2MjA0XzQ0MzIxNDYzNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTYyMDQiLCJiIjoiNDQzMjE0NjM1IiwiaGVhZGluZyI6MTA4Ljg0ODczMDU4OTIwMzA5LCJkaXN0Ijo1NC45MDJ9LHsiaWQiOiIxNTM5MTQ2Ni0xNTI1MTYyMDRfMTUyNDU2NjIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIwNCIsImIiOiIxNTI0NTY2MjAiLCJoZWFkaW5nIjotNzIuNzAzNjc0MzkzNzYyMDksImRpc3QiOjExMS44NjF9XX0sIjE1MjUxNjIwOCI6eyJpZCI6IjE1MjUxNjIwOCIsImxvbiI6LTk3Ljc0MTUzLCJsYXQiOjMwLjI3ODU2LCJlZGdlcyI6W3siaWQiOiIxNTM5NjI1MC0xNTI1MTYyMDhfMTUyNjAxMDI3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIwOCIsImIiOiIxNTI2MDEwMjciLCJoZWFkaW5nIjoxMDguNzg2NzcxMDAyNzQxODYsImRpc3QiOjEwNi43MTJ9LHsiaWQiOiIxNTM5NjI1MC0xNTI1MTYyMDhfNDQzMjE0NjQ0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIwOCIsImIiOiI0NDMyMTQ2NDQiLCJoZWFkaW5nIjotNzEuNzc4NjkwMzI5NDQwNDUsImRpc3QiOjU2LjcyNX1dfSwiMTUyNTE2MjEwIjp7ImlkIjoiMTUyNTE2MjEwIiwibG9uIjotOTcuNzQwODgsImxhdCI6MzAuMjgwMjksImVkZ2VzIjpbeyJpZCI6IjE1NDEwODg1LTE1MjUxNjIxMF8xMDc3NTk5MzMxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIxMCIsImIiOiIxMDc3NTk5MzMxIiwiaGVhZGluZyI6MTA5LjMyNDIyNjkwMDYzODMyLCJkaXN0Ijo0Ni45MDF9LHsiaWQiOiIxNTQxMDg4NS0xNTI1MTYyMTBfNDQzMjE0NjUxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIxMCIsImIiOiI0NDMyMTQ2NTEiLCJoZWFkaW5nIjotNzMuOTMwODgwMjMxNTQ3NDIsImRpc3QiOjU2LjA3MX1dfSwiMTUyNTE2NjM4Ijp7ImlkIjoiMTUyNTE2NjM4IiwibG9uIjotOTcuNzQzMTcsImxhdCI6MzAuMjY3MTEsImVkZ2VzIjpbeyJpZCI6IjE1Mzg4MTc1LTE1MjUxNjYzOF80NDMxODUxMjYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUxNjYzOCIsImIiOiI0NDMxODUxMjYiLCJoZWFkaW5nIjoxMDYuOTA5NTk4MzU2NjY0NTUsImRpc3QiOjcyLjQxNH1dfSwiMTUyNTE2NjQwIjp7ImlkIjoiMTUyNTE2NjQwIiwibG9uIjotOTcuNzQxODMsImxhdCI6MzAuMjY2NzUsImVkZ2VzIjpbeyJpZCI6IjIwNDk5ODY2OC0xNTI1MTY2NDBfNDQzMTg2OTU3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjY0MCIsImIiOiI0NDMxODY5NTciLCJoZWFkaW5nIjoxOS43MjQ0MDQxNjQ0MTAxMywiZGlzdCI6NTQuMTczfSx7ImlkIjoiMjA0OTk4Njc1LTE1MjUxNjY0MF8xNTI1MTY2NDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUxNjY0MCIsImIiOiIxNTI1MTY2NDIiLCJoZWFkaW5nIjoxMDguNDU2OTk3NjA5OTQ1MzUsImRpc3QiOjEwOC41NDd9XX0sIjE1MjUxNjY0MiI6eyJpZCI6IjE1MjUxNjY0MiIsImxvbiI6LTk3Ljc0MDc2LCJsYXQiOjMwLjI2NjQ0LCJlZGdlcyI6W3siaWQiOiIyMDQ5ODE1NTMtMTUyNTE2NjQyXzE1MjUxNjY0NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQyIiwiYiI6IjE1MjUxNjY0NCIsImhlYWRpbmciOjEwOC4xNDA2NDI4NzQ4MTUyNywiZGlzdCI6MTEwLjM3NH0seyJpZCI6IjIwNDk4MTU2OC0xNTI1MTY2NDJfNDQzMTg3MDE1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NDIiLCJiIjoiNDQzMTg3MDE1IiwiaGVhZGluZyI6LTE2Mi44NDc5MTk0NjYwNDAyLCJkaXN0Ijo1Mi4yMDh9XX0sIjE1MjUxNjY0NCI6eyJpZCI6IjE1MjUxNjY0NCIsImxvbiI6LTk3LjczOTY3LCJsYXQiOjMwLjI2NjEzLCJlZGdlcyI6W3siaWQiOiIzMDE0ODc0MC0xNTI1MTY2NDRfNDQzMTg2OTg2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NDQiLCJiIjoiNDQzMTg2OTg2IiwiaGVhZGluZyI6MTcuMDg4ODgxODczMDI5OTk3LCJkaXN0Ijo1NS42Njl9LHsiaWQiOiIyMDQ5ODE1NTMtMTUyNTE2NjQ0XzE1MjQ1MTYwNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQ0IiwiYiI6IjE1MjQ1MTYwNiIsImhlYWRpbmciOjEwNy4wNDAxMjg1NDMwOTUyNiwiZGlzdCI6MTA5LjcwNX1dfSwiMTUyNTE2NjQ2Ijp7ImlkIjoiMTUyNTE2NjQ2IiwibG9uIjotOTcuNzM3NTEsImxhdCI6MzAuMjY1NTUsImVkZ2VzIjpbeyJpZCI6IjE0Mzk0ODE2NS0xNTI1MTY2NDZfMTUyNTE2NjQ4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NDYiLCJiIjoiMTUyNTE2NjQ4IiwiaGVhZGluZyI6MTA5LjM0NTQ1MjE3MTUzMjMsImRpc3QiOjEwNy4wODZ9LHsiaWQiOiIyMDQ5OTk3MDgtMTUyNTE2NjQ2XzE1MjQ0NzM2MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQ2IiwiYiI6IjE1MjQ0NzM2MyIsImhlYWRpbmciOjE5Ny4xMTk1ODcyNjQwMDAzNiwiZGlzdCI6MTA3Ljg3N30seyJpZCI6IjIwNDk5OTcwOC0xNTI1MTY2NDZfNDQzMTg3MDk5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NDYiLCJiIjoiNDQzMTg3MDk5IiwiaGVhZGluZyI6MTcuNDMwNzU5OTM0MjU1Mzc3LCJkaXN0Ijo1NC42MTF9XX0sIjE1MjUxNjY0OCI6eyJpZCI6IjE1MjUxNjY0OCIsImxvbiI6LTk3LjczNjQ2LCJsYXQiOjMwLjI2NTIzLCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NS0xNTI1MTY2NDhfMTUyNjA0MjE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjY0OCIsImIiOiIxNTI2MDQyMTYiLCJoZWFkaW5nIjoxOTguMTAzODg3NjU5NDYyODMsImRpc3QiOjg5LjgwNn0seyJpZCI6IjE1Mzk2NTY1LTE1MjUxNjY0OF8xNTI0MDE5MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTE2NjQ4IiwiYiI6IjE1MjQwMTkxNSIsImhlYWRpbmciOjE3LjQzMDczMTQxMTY0ODg5LCJkaXN0IjoxMDkuMjIxfSx7ImlkIjoiMzExNjU5NjUtMTUyNTE2NjQ4XzE1MjUxNjY1MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQ4IiwiYiI6IjE1MjUxNjY1MCIsImhlYWRpbmciOjEwOC4yMTg3NDMwMjU4OTYzNywiZGlzdCI6MjguMzY2fV19LCIxNTI1MTY2NTAiOnsiaWQiOiIxNTI1MTY2NTAiLCJsb24iOi05Ny43MzYxOCwibGF0IjozMC4yNjUxNSwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NTMtMTUyNTE2NjUwXzE1MjUxNjY1MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjUwIiwiYiI6IjE1MjUxNjY1MSIsImhlYWRpbmciOjEwNy45NTI0NDg4MzQ5ODE0OCwiZGlzdCI6MzIuMzY5fV19LCIxNTI1MTY2NTEiOnsiaWQiOiIxNTI1MTY2NTEiLCJsb24iOi05Ny43MzU4NiwibGF0IjozMC4yNjUwNiwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NTQtMTUyNTE2NjUxXzE1MjUxNjY1MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjUxIiwiYiI6IjE1MjUxNjY1MyIsImhlYWRpbmciOjExMS44MzU4NjE3NTU1NDY4MiwiZGlzdCI6NDcuNjg3fV19LCIxNTI1MTY2NTMiOnsiaWQiOiIxNTI1MTY2NTMiLCJsb24iOi05Ny43MzU0LCJsYXQiOjMwLjI2NDksImVkZ2VzIjpbeyJpZCI6IjE3Njg3NTE3NS0xNTI1MTY2NTNfMTUyMzc2Mzk4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NTMiLCJiIjoiMTUyMzc2Mzk4IiwiaGVhZGluZyI6LTE2MC44NTE5ODQyODI4NTQ1NCwiZGlzdCI6MzUuMjA1fV19LCIxNTI1Mzk2MzMiOnsiaWQiOiIxNTI1Mzk2MzMiLCJsb24iOi05Ny43NDA3MSwibGF0IjozMC4yNjMzMywiZWRnZXMiOlt7ImlkIjoiMTUzOTgxNjctMTUyNTM5NjMzXzE1MjYyMTE3MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1Mzk2MzMiLCJiIjoiMTUyNjIxMTczIiwiaGVhZGluZyI6Mjg4LjI5Njk4MDk0Nzc5ODE1LCJkaXN0IjoxMDkuNDYzfSx7ImlkIjoiMzIwNjU1MzMtMTUyNTM5NjMzXzQ0MzE4NzA2MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjMzIiwiYiI6IjQ0MzE4NzA2MiIsImhlYWRpbmciOjE3LjY4NjMyNzk0NjQ4MDUyNSwiZGlzdCI6NTcuMDE1fV19LCIxNTI1Mzk2MzUiOnsiaWQiOiIxNTI1Mzk2MzUiLCJsb24iOi05Ny43NDAzNywibGF0IjozMC4yNjQyMiwiZWRnZXMiOlt7ImlkIjoiMzIwNjU1MzMtMTUyNTM5NjM1XzE1MjQ5Njk1MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjM1IiwiYiI6IjE1MjQ5Njk1MyIsImhlYWRpbmciOjkuODQ4OTc5NDkzMjM3MTc3LCJkaXN0Ijo1LjYyNn1dfSwiMTUyNTM5NjM4Ijp7ImlkIjoiMTUyNTM5NjM4IiwibG9uIjotOTcuNzQwMzUsImxhdCI6MzAuMjY0MjksImVkZ2VzIjpbeyJpZCI6IjMwNjAyMzI2LTE1MjUzOTYzOF80NDMxODcwNDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTYzOCIsImIiOiI0NDMxODcwNDciLCJoZWFkaW5nIjoxOC4wMzA5OTY1NzYzMTc1NjMsImRpc3QiOjU1Ljk2fV19LCIxNTI1Mzk2NDAiOnsiaWQiOiIxNTI1Mzk2NDAiLCJsb24iOi05Ny43Mzg5NCwibGF0IjozMC4yNjgsImVkZ2VzIjpbeyJpZCI6IjIwNDk4MTU2OS0xNTI1Mzk2NDBfNDQzMTg2OTkwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NDAiLCJiIjoiNDQzMTg2OTkwIiwiaGVhZGluZyI6MTcuNzg1NjIxOTI1MzkzMDgsImRpc3QiOjUzLjU1NH0seyJpZCI6IjIwNzUxNzY0MC0xNTI1Mzk2NDBfMTUyNDUxNjA4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NDAiLCJiIjoiMTUyNDUxNjA4IiwiaGVhZGluZyI6MTA4LjU0ODc5MjIwNDk1NzUxLCJkaXN0IjoxMDQuNTQ0fV19LCIxNTI1Mzk2NDMiOnsiaWQiOiIxNTI1Mzk2NDMiLCJsb24iOi05Ny43Mzg2LCJsYXQiOjMwLjI2ODkyLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU2MC0xNTI1Mzk2NDNfMTUyNTgwOTgzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NDMiLCJiIjoiMTUyNTgwOTgzIiwiaGVhZGluZyI6LTcxLjg1ODMyMTEzNjMzNzY0LCJkaXN0IjoxMTAuMzcyfSx7ImlkIjoiMjA0OTgxNTY5LTE1MjUzOTY0M180NDMxODY5OTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTY0MyIsImIiOiI0NDMxODY5OTMiLCJoZWFkaW5nIjoxNi43NTk0MTUyNTQ0MDUzMzcsImRpc3QiOjU2LjczfV19LCIxNTI1Mzk2NDYiOnsiaWQiOiIxNTI1Mzk2NDYiLCJsb24iOi05Ny43Mzc5MSwibGF0IjozMC4yNzA4MiwiZWRnZXMiOlt7ImlkIjoiMjA0OTgxNTY5LTE1MjUzOTY0Nl80NDMxODUxNDQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTY0NiIsImIiOiI0NDMxODUxNDQiLCJoZWFkaW5nIjoxNy40Mjk4NzIxNDA0OTYzMjUsImRpc3QiOjU0LjYxfSx7ImlkIjoiMjA0OTg5NzMwLTE1MjUzOTY0Nl8xNTI2MDg4NzQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTM5NjQ2IiwiYiI6IjE1MjYwODg3NCIsImhlYWRpbmciOi03Mi44MDk5NzM2OTM0MDE5OSwiZGlzdCI6MTA4Ljc4fV19LCIxNTI1Mzk2NDkiOnsiaWQiOiIxNTI1Mzk2NDkiLCJsb24iOi05Ny43MzcxOSwibGF0IjozMC4yNzI4NCwiZWRnZXMiOlt7ImlkIjoiOTI0NjAwMzUtMTUyNTM5NjQ5XzE1MjQ1MTYyMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjQ5IiwiYiI6IjE1MjQ1MTYyMSIsImhlYWRpbmciOjEwNy4xODk3Njk4Mjk3NjA4MiwiZGlzdCI6MTA4Ljc3OH0seyJpZCI6IjIwNDk2NDc2NC0xNTI1Mzk2NDlfMTA3MzQwMDk2MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjQ5IiwiYiI6IjEwNzM0MDA5NjIiLCJoZWFkaW5nIjoxOS44ODI4MzUyNTI5MjYyMjgsImRpc3QiOjE0LjE0Nn1dfSwiMTUyNTM5NjUyIjp7ImlkIjoiMTUyNTM5NjUyIiwibG9uIjotOTcuNzM2NzIsImxhdCI6MzAuMjc0MDUsImVkZ2VzIjpbeyJpZCI6IjE1NDAyNDYxLTE1MjUzOTY1Ml8yNjM3NjczNDUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUzOTY1MiIsImIiOiIyNjM3NjczNDUwIiwiaGVhZGluZyI6Mjg3LjUwMDczNTY0MjMwMjIsImRpc3QiOjk1Ljg0NX0seyJpZCI6IjIwNDk2NDc2NC0xNTI1Mzk2NTJfMTA3ODkxODA3OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjUyIiwiYiI6IjEwNzg5MTgwNzkiLCJoZWFkaW5nIjoxNi42ODA5NDU4Mzc2NzAzMjUsImRpc3QiOjk3LjIxMX1dfSwiMTUyNTM5NjU1Ijp7ImlkIjoiMTUyNTM5NjU1IiwibG9uIjotOTcuNzM2NCwibGF0IjozMC4yNzQ5NywiZWRnZXMiOlt7ImlkIjoiMjU3NTg0MTQtMTUyNTM5NjU1XzEwNzg5MTk0NjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTM5NjU1IiwiYiI6IjEwNzg5MTk0NjQiLCJoZWFkaW5nIjoyOTAuMzg3Nzc0NTU2MjY4MzcsImRpc3QiOjMxLjgyMX0seyJpZCI6IjIwNDk2NDc2NC0xNTI1Mzk2NTVfMTA3ODkxODg4MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjU1IiwiYiI6IjEwNzg5MTg4ODAiLCJoZWFkaW5nIjoxOC4zODcxODQ4NDg1MjEzNSwiZGlzdCI6NTQuOTA2fV19LCIxNTI1Mzk2NjYiOnsiaWQiOiIxNTI1Mzk2NjYiLCJsb24iOi05Ny43MzUzMywibGF0IjozMC4yNzc3NywiZWRnZXMiOlt7ImlkIjoiMTI0OTUzMTI4LTE1MjUzOTY2Nl8xNDM4MDg1NzIzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NjYiLCJiIjoiMTQzODA4NTcyMyIsImhlYWRpbmciOjE3Ljk0NDY5MzA3NTU0MzU2NSwiZGlzdCI6NzguMDcyfV19LCIxNTI1Mzk2NjgiOnsiaWQiOiIxNTI1Mzk2NjgiLCJsb24iOi05Ny43MzQ4OCwibGF0IjozMC4yNzg4MiwiZWRnZXMiOlt7ImlkIjoiMTI2NDA1NDgzLTE1MjUzOTY2OF8xNDIxMTM0ODEzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NjgiLCJiIjoiMTQyMTEzNDgxMyIsImhlYWRpbmciOjMxLjAwMDMzMDAzNTgyMDIzNCwiZGlzdCI6MTYuODEzfV19LCIxNTI1Mzk2NzAiOnsiaWQiOiIxNTI1Mzk2NzAiLCJsb24iOi05Ny43MzQ3MiwibGF0IjozMC4yNzkwOCwiZWRnZXMiOlt7ImlkIjoiMTI2NDA1NDg1LTE1MjUzOTY3MF8xNDIxMTM0ODc5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NzAiLCJiIjoiMTQyMTEzNDg3OSIsImhlYWRpbmciOjE3Ljg5NzYzMDkyNTg2NzM2OCwiZGlzdCI6NTAuMDkzfV19LCIxNTI1Mzk2NzIiOnsiaWQiOiIxNTI1Mzk2NzIiLCJsb24iOi05Ny43MzQ1MiwibGF0IjozMC4yNzk2MywiZWRnZXMiOlt7ImlkIjoiMzc3NDk1ODMtMTUyNTM5NjcyXzE0MjExMzQ5MzAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTY3MiIsImIiOiIxNDIxMTM0OTMwIiwiaGVhZGluZyI6Mjg3LjQ0NDM5NDMxODc5NjQ3LCJkaXN0IjoxMS4wOTR9LHsiaWQiOiIxMjQ5NTMxMTUtMTUyNTM5NjcyXzE0MjExMzQ5MDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTY3MiIsImIiOiIxNDIxMTM0OTA3IiwiaGVhZGluZyI6MTA5LjUyMDMzOTU1NjM0NzI1LCJkaXN0IjoxMy4yNzF9LHsiaWQiOiIxNTAzNTAwMzQtMTUyNTM5NjcyXzE0MjExMzQ5NTYiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNTM5NjcyIiwiYiI6IjE0MjExMzQ5NTYiLCJoZWFkaW5nIjoxMy4zMTcwMzE5ODkwNDQzMzMsImRpc3QiOjEyLjUzMX1dfSwiMTUyNTQ2MTk1Ijp7ImlkIjoiMTUyNTQ2MTk1IiwibG9uIjotOTcuNzQxOTYsImxhdCI6MzAuMjc1NTMsImVkZ2VzIjpbeyJpZCI6IjE1MzkxNDY2LTE1MjU0NjE5NV80NDMyMTQ2MzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTQ2MTk1IiwiYiI6IjQ0MzIxNDYzNSIsImhlYWRpbmciOi03NS42Mzg5OTQ2NzIwMTY5OCwiZGlzdCI6OC45Mzl9LHsiaWQiOiIzMDc1Njc1NS0xNTI1NDYxOTVfMTUyNjUxMTAxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU0NjE5NSIsImIiOiIxNTI2NTExMDEiLCJoZWFkaW5nIjoxOTguNDI5Njg4OTM0OTk3MiwiZGlzdCI6MTMwLjg3Mn1dfSwiMTUyNTQ2MTk2Ijp7ImlkIjoiMTUyNTQ2MTk2IiwibG9uIjotOTcuNzQ0NzcsImxhdCI6MzAuMjc2MywiZWRnZXMiOlt7ImlkIjoiMTUzOTE0NjYtMTUyNTQ2MTk2XzE1MjQ1NjYyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NDYxOTYiLCJiIjoiMTUyNDU2NjIwIiwiaGVhZGluZyI6MTA3LjM0MTk1NDQ2NDQ2OTI4LCJkaXN0IjoxMDcuODU2fSx7ImlkIjoiMTUzOTE0NjYtMTUyNTQ2MTk2XzE1MjM5MzUwMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NDYxOTYiLCJiIjoiMTUyMzkzNTAwIiwiaGVhZGluZyI6LTcyLjI1MjkxMTU1MDE0MTksImRpc3QiOjEwOS4xMDd9LHsiaWQiOiIxNTAzNTAwMTgtMTUyNTQ2MTk2XzQ0MzIxNDYxMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NDYxOTYiLCJiIjoiNDQzMjE0NjExIiwiaGVhZGluZyI6MTk4LjEzNDk4MzYyNjk0MjUsImRpc3QiOjYxLjgyNX0seyJpZCI6IjE1MDM1MDAxOC0xNTI1NDYxOTZfNDQzMjE0NjEyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU0NjE5NiIsImIiOiI0NDMyMTQ2MTIiLCJoZWFkaW5nIjoxNi43OTg2NjczOTYzNTAxMzMsImRpc3QiOjUzLjI2N31dfSwiMTUyNTQ2MTk4Ijp7ImlkIjoiMTUyNTQ2MTk4IiwibG9uIjotOTcuNzQ2OTMsImxhdCI6MzAuMjc2OTEsImVkZ2VzIjpbeyJpZCI6IjE1MzkxNDY2LTE1MjU0NjE5OF8xNTIzOTM1MDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTQ2MTk4IiwiYiI6IjE1MjM5MzUwMCIsImhlYWRpbmciOjEwOC4yOTk4NTcxODEwNjM4LCJkaXN0IjoxMDkuNDV9LHsiaWQiOiIxNTM5OTY4Mi0xNTI1NDYxOThfNDQzMjE0NjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU0NjE5OCIsImIiOiI0NDMyMTQ2MDkiLCJoZWFkaW5nIjoxOTcuODIwNDY5NDE3MDE2MjMsImRpc3QiOjYyLjg4fSx7ImlkIjoiMTUzOTk2ODItMTUyNTQ2MTk4XzI3NDM1MDY4MjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTQ2MTk4IiwiYiI6IjI3NDM1MDY4MjIiLCJoZWFkaW5nIjoxNi4xMzU4Mjg1OTIzNjM2NTUsImRpc3QiOjE3LjMxMX1dfSwiMTUyNTU0OTgwIjp7ImlkIjoiMTUyNTU0OTgwIiwibG9uIjotOTcuNzM4NTMsImxhdCI6MzAuMjc1NTgsImVkZ2VzIjpbeyJpZCI6IjE1Mzk4MTA5LTE1MjU1NDk4MF8xMDc4OTE5Mjc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU1NDk4MCIsImIiOiIxMDc4OTE5Mjc1IiwiaGVhZGluZyI6MTkuMTQ1OTQ5Njg3MzI0NzgsImRpc3QiOjM1LjIwNH0seyJpZCI6IjI1NzU4NDE0LTE1MjU1NDk4MF8yNjM3NjUyNzU1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU1NDk4MCIsImIiOiIyNjM3NjUyNzU1IiwiaGVhZGluZyI6MTA2LjA2ODIwNzE2NjM5NTg4LCJkaXN0Ijo4LjAxfV19LCIxNTI1NTQ5ODMiOnsiaWQiOiIxNTI1NTQ5ODMiLCJsb24iOi05Ny43Mzc0NiwibGF0IjozMC4yNzUyOCwiZWRnZXMiOlt7ImlkIjoiMjU3NTg0MTQtMTUyNTU0OTgzXzI2Mzc2NTI3NTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTU0OTgzIiwiYiI6IjI2Mzc2NTI3NTIiLCJoZWFkaW5nIjoyODcuNDQzNjYwNzUzOTUwMTYsImRpc3QiOjExLjA5NH0seyJpZCI6IjI1NzU4NDE0LTE1MjU1NDk4M18yNjM3NjUyNzUxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU1NDk4MyIsImIiOiIyNjM3NjUyNzUxIiwiaGVhZGluZyI6MTA5LjA2NzE4OTUxODg3Nzg4LCJkaXN0IjoxMC4xOH0seyJpZCI6IjE1MDM1MDAyMy0xNTI1NTQ5ODNfMjYzNzY1Mjc1MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTU0OTgzIiwiYiI6IjI2Mzc2NTI3NTAiLCJoZWFkaW5nIjotMTU5LjU5NTc3NTAyMjU1MzgsImRpc3QiOjguMjc5fV19LCIxNTI1NjYzMDUiOnsiaWQiOiIxNTI1NjYzMDUiLCJsb24iOi05Ny43Mzg2MiwibGF0IjozMC4yNjI1OSwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NDgtMTUyNTY2MzA1XzE1MjU2NjMwNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzA1IiwiYiI6IjE1MjU2NjMwNyIsImhlYWRpbmciOjE4LjY1MzcxMDk2OTkxOTU4NywiZGlzdCI6MjEuMDYxfSx7ImlkIjoiMTI4OTI4ODI0LTE1MjU2NjMwNV8xNDgxMzY0MzA3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMDUiLCJiIjoiMTQ4MTM2NDMwNyIsImhlYWRpbmciOjE5NS4yODQ2MTQzMTg3ODE4MiwiZGlzdCI6NjIuMDU4fV19LCIxNTI1NjYzMDciOnsiaWQiOiIxNTI1NjYzMDciLCJsb24iOi05Ny43Mzg1NSwibGF0IjozMC4yNjI3NywiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NDctMTUyNTY2MzA3XzE0ODEzNjQzMjQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMwNyIsImIiOiIxNDgxMzY0MzI0IiwiaGVhZGluZyI6MjMuNDYyNDIwNDk1OTM0NTgsImRpc3QiOjQuODM0fSx7ImlkIjoiMzc3NDk1NDgtMTUyNTY2MzA3XzE1MjU2NjMwNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzA3IiwiYiI6IjE1MjU2NjMwNSIsImhlYWRpbmciOjE5OC42NTM3MTA5Njk5MTk2LCJkaXN0IjoyMS4wNjF9XX0sIjE1MjU2NjMwOCI6eyJpZCI6IjE1MjU2NjMwOCIsImxvbiI6LTk3LjczODAzLCJsYXQiOjMwLjI2NDEzLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU0Ny0xNTI1NjYzMDhfMTUyNDk2ODkxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMDgiLCJiIjoiMTUyNDk2ODkxIiwiaGVhZGluZyI6MTk3LjQzMTA3ODI5MzAzMDU3LCJkaXN0Ijo1NC42MTF9LHsiaWQiOiIzNzc0OTU0Ny0xNTI1NjYzMDhfMTQwODg5OTQ5MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzA4IiwiYiI6IjE0MDg4OTk0OTMiLCJoZWFkaW5nIjoxOC4yOTgzMDc3MDc4MDU3MiwiZGlzdCI6NDkuMDR9XX0sIjE1MjU2NjMxNCI6eyJpZCI6IjE1MjU2NjMxNCIsImxvbiI6LTk3LjczNjgxLCJsYXQiOjMwLjI2NzQsImVkZ2VzIjpbeyJpZCI6IjIwNDk5OTcwOC0xNTI1NjYzMTRfNDQzMTg3MTAwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMTQiLCJiIjoiNDQzMTg3MTAwIiwiaGVhZGluZyI6MTk5LjU0OTk5MjYzMDE1Nzc2LCJkaXN0Ijo1MS43NjF9LHsiaWQiOiIyMDQ5OTk3MDgtMTUyNTY2MzE0XzQ0MzE4NzEwMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE0IiwiYiI6IjQ0MzE4NzEwMSIsImhlYWRpbmciOjE2Ljc1OTY2MjYzOTk2MTQ3MywiZGlzdCI6NTYuNzN9LHsiaWQiOiIyMDc1MTc2NDAtMTUyNTY2MzE0XzQ0Mjc2MTU0OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE0IiwiYiI6IjQ0Mjc2MTU0OCIsImhlYWRpbmciOjEwNy42MzAyNTA0NjkzODk1OCwiZGlzdCI6ODcuODQzfV19LCIxNTI1NjYzMTYiOnsiaWQiOiIxNTI1NjYzMTYiLCJsb24iOi05Ny43MzY0NywibGF0IjozMC4yNjgzNCwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NjAtMTUyNTY2MzE2XzE1MjQ1MTYxMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE2IiwiYiI6IjE1MjQ1MTYxMCIsImhlYWRpbmciOi03Mi45NTg5MDkxOTE4NDM1MywiZGlzdCI6MTA5LjcwMn0seyJpZCI6IjIwNDk5OTcwOC0xNTI1NjYzMTZfNDQzMTg3MTAxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMTYiLCJiIjoiNDQzMTg3MTAxIiwiaGVhZGluZyI6MTk4LjE1NTIwMjUyOTE5MTE0LCJkaXN0Ijo1Mi40OTl9LHsiaWQiOiIyMDQ5OTk3MDgtMTUyNTY2MzE2XzQ0MzE4NzEwMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE2IiwiYiI6IjQ0MzE4NzEwMiIsImhlYWRpbmciOjE1LjQ4NDA2MzE0Njc1ODc4MiwiZGlzdCI6NTQuMDY1fV19LCIxNTI1NjYzMTciOnsiaWQiOiIxNTI1NjYzMTciLCJsb24iOi05Ny43MzU3NywibGF0IjozMC4yNzAyMiwiZWRnZXMiOlt7ImlkIjoiMjA0OTg5NzMwLTE1MjU2NjMxN18xNTI0NTE2MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTY2MzE3IiwiYiI6IjE1MjQ1MTYxNSIsImhlYWRpbmciOi03Mi40MDY2NzA5OTI2MTk5NCwiZGlzdCI6MTEwLjAzfSx7ImlkIjoiMjA0OTg5NzU5LTE1MjU2NjMxN18xNTI0OTU2MjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMxNyIsImIiOiIxNTI0OTU2MjAiLCJoZWFkaW5nIjoxNi43Nzg3MTQ2MDY0OTQ3MywiZGlzdCI6MTA5Ljk5N30seyJpZCI6IjIwNDk5OTcwOC0xNTI1NjYzMTdfMTUyNDYwMjMwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMTciLCJiIjoiMTUyNDYwMjMwIiwiaGVhZGluZyI6MTk5LjUyNzg3NTA1MzQ3NjQsImRpc3QiOjEwOS4zODl9XX0sIjE1MjU2NjMxOSI6eyJpZCI6IjE1MjU2NjMxOSIsImxvbiI6LTk3LjczNTM2LCJsYXQiOjMwLjI3MTQsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTcwLTE1MjU2NjMxOV8xNTI1NjYzMjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMxOSIsImIiOiIxNTI1NjYzMjIiLCJoZWFkaW5nIjoxNy4yMjMxNzc0NDQzNzIwMSwiZGlzdCI6MzIuNDk3fSx7ImlkIjoiMjA0OTg5NzU4LTE1MjU2NjMxOV8xNTI0OTU2MjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMxOSIsImIiOiIxNTI0OTU2MjAiLCJoZWFkaW5nIjoxOTYuNzk5NTQzMTY2NzE1NTIsImRpc3QiOjI2LjYzNH1dfSwiMTUyNTY2MzIyIjp7ImlkIjoiMTUyNTY2MzIyIiwibG9uIjotOTcuNzM1MjYsImxhdCI6MzAuMjcxNjgsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTY5LTE1MjU2NjMyMl8yNjM3Njc2MTQyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMjIiLCJiIjoiMjYzNzY3NjE0MiIsImhlYWRpbmciOjE4LjI1NDI2MDU3NzQ1ODI3LCJkaXN0Ijo1OC4zNjZ9LHsiaWQiOiIzNzc0OTU3MC0xNTI1NjYzMjJfMTUyNTY2MzE5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMjIiLCJiIjoiMTUyNTY2MzE5IiwiaGVhZGluZyI6MTk3LjIyMzE3NzQ0NDM3MiwiZGlzdCI6MzIuNDk3fV19LCIxNTI1NjYzMjkiOnsiaWQiOiIxNTI1NjYzMjkiLCJsb24iOi05Ny43MzQ4OCwibGF0IjozMC4yNzI4MSwiZWRnZXMiOlt7ImlkIjoiMjA0OTg5NzU3LTE1MjU2NjMyOV8yNjM3Njc2MTQ4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMjkiLCJiIjoiMjYzNzY3NjE0OCIsImhlYWRpbmciOjE4Ni4xOTIxOTk2ODMzOTUzMywiZGlzdCI6OC45MjF9LHsiaWQiOiIyMDQ5ODk3NTctMTUyNTY2MzI5XzEwNzc1OTk1NzAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMyOSIsImIiOiIxMDc3NTk5NTcwIiwiaGVhZGluZyI6MCwiZGlzdCI6MTEuMDg2fV19LCIxNTI1NjYzMzEiOnsiaWQiOiIxNTI1NjYzMzEiLCJsb24iOi05Ny43MzQ5NSwibGF0IjozMC4yNzM0OSwiZWRnZXMiOlt7ImlkIjoiMjA0OTg5NzU3LTE1MjU2NjMzMV8yNjM3Njc2MTQ5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMzEiLCJiIjoiMjYzNzY3NjE0OSIsImhlYWRpbmciOjE3Mi4zOTQwNjg0NTc4NDYyMywiZGlzdCI6NDMuNjE4fSx7ImlkIjoiMjA0OTg5NzU3LTE1MjU2NjMzMV8zMDA3NjUwMDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMzMSIsImIiOiIzMDA3NjUwMDkiLCJoZWFkaW5nIjotMTAuMDk1NDA2OTAzMzE1NTMsImRpc3QiOjQzLjkxNH1dfSwiMTUyNTY2MzM0Ijp7ImlkIjoiMTUyNTY2MzM0IiwibG9uIjotOTcuNzM1MTQsImxhdCI6MzAuMjc0NjYsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTc1Ny0xNTI1NjYzMzRfMTA4NTgwMjU0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzM0IiwiYiI6IjEwODU4MDI1NDYiLCJoZWFkaW5nIjoxNzcuNzQwNjk3OTA3MjE1MzgsImRpc3QiOjI0LjQwOH0seyJpZCI6IjIwNDk4OTc1Ny0xNTI1NjYzMzRfMjYzNzY3NjE1MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzM0IiwiYiI6IjI2Mzc2NzYxNTAiLCJoZWFkaW5nIjozLjU0NzYyNzM5NTI1ODg5NTcsImRpc3QiOjE1LjU1fV19LCIxNTI1NjYzMzYiOnsiaWQiOiIxNTI1NjYzMzYiLCJsb24iOi05Ny43MzQzNywibGF0IjozMC4yNzYxNiwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjMzNl8zNDMzMzU5OTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMzNiIsImIiOiIzNDMzMzU5OTMiLCJoZWFkaW5nIjoyMjIuOTIxMDM3ODYyNjUwNywiZGlzdCI6MjEuMTk0fSx7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjMzNl8zNDMzMzY4ODMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMzNiIsImIiOiIzNDMzMzY4ODMiLCJoZWFkaW5nIjo1MS4yODgwMTQ3NzU4NTg4MzQsImRpc3QiOjI4LjM2MX1dfSwiMTUyNTY2MzM4Ijp7ImlkIjoiMTUyNTY2MzM4IiwibG9uIjotOTcuNzMzNTEsImxhdCI6MzAuMjc2NzcsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA3Ny0xNTI1NjYzMzhfMTQyMTEzNDc0OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzM4IiwiYiI6IjE0MjExMzQ3NDkiLCJoZWFkaW5nIjoyMTkuNDI5MDY0OTI3NjcwNDUsImRpc3QiOjI3LjI2OX0seyJpZCI6IjE0OTcxMDA3Ny0xNTI1NjYzMzhfMTQyMTEzNDc1MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzM4IiwiYiI6IjE0MjExMzQ3NTEiLCJoZWFkaW5nIjozNy44MzIwNzgxOTI0MTkyNSwiZGlzdCI6MjYuNjY4fV19LCIxNTI1NjYzNDAiOnsiaWQiOiIxNTI1NjYzNDAiLCJsb24iOi05Ny43MzMxOSwibGF0IjozMC4yNzcyMSwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM0MF8xNDIxMTM0NzUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNDAiLCJiIjoiMTQyMTEzNDc1MyIsImhlYWRpbmciOjE5OC4wMjg4NDEzMTcyNjk2LCJkaXN0Ijo5LjMyNn0seyJpZCI6IjE0OTcxMDA3Ny0xNTI1NjYzNDBfMTQyMTEzNDc1NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzQwIiwiYiI6IjE0MjExMzQ3NTQiLCJoZWFkaW5nIjoxNi4xMzU3OTYwMDY0NTgxNTgsImRpc3QiOjYuOTI0fV19LCIxNTI1NjYzNDYiOnsiaWQiOiIxNTI1NjYzNDYiLCJsb24iOi05Ny43MzI3OSwibGF0IjozMC4yNzgyOSwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM0Nl8xNDQwNjA4MzI4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNDYiLCJiIjoiMTQ0MDYwODMyOCIsImhlYWRpbmciOjE5OS44ODE4MzAxNjQ4MTAxNCwiZGlzdCI6MTQuMTQ2fSx7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM0Nl8xNTI1NjYzNDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjM0NiIsImIiOiIxNTI1NjYzNDkiLCJoZWFkaW5nIjoyNS43NDI0NzE3NTI0Mjc4NTcsImRpc3QiOjIyLjE1M31dfSwiMTUyNTY2MzQ5Ijp7ImlkIjoiMTUyNTY2MzQ5IiwibG9uIjotOTcuNzMyNjksImxhdCI6MzAuMjc4NDcsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA3Ny0xNTI1NjYzNDlfMTUyNTY2MzQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNDkiLCJiIjoiMTUyNTY2MzQ2IiwiaGVhZGluZyI6MjA1Ljc0MjQ3MTc1MjQyNzg2LCJkaXN0IjoyMi4xNTN9LHsiaWQiOiIxNDk3MTAwNzctMTUyNTY2MzQ5XzE0MjExMzQ3OTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjM0OSIsImIiOiIxNDIxMTM0Nzk0IiwiaGVhZGluZyI6MzUuMzc5MzIwNTQ0NzIxMTMsImRpc3QiOjE0Ljk1Nn1dfSwiMTUyNTY2MzUyIjp7ImlkIjoiMTUyNTY2MzUyIiwibG9uIjotOTcuNzMyNSwibGF0IjozMC4yNzg2OSwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM1Ml8xNDIxMTM0Nzk0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNTIiLCJiIjoiMTQyMTEzNDc5NCIsImhlYWRpbmciOjIxOC4yNzQxODg5ODcxNDE4MywiZGlzdCI6MTUuNTMzfSx7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM1Ml8xNTI1NjYzNTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjM1MiIsImIiOiIxNTI1NjYzNTQiLCJoZWFkaW5nIjo0My40MzU0MDYwODI4MTAyNzUsImRpc3QiOjE2Ljc5M31dfSwiMTUyNTY2MzU0Ijp7ImlkIjoiMTUyNTY2MzU0IiwibG9uIjotOTcuNzMyMzgsImxhdCI6MzAuMjc4OCwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM1NF8xNTI1NjYzNTIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjM1NCIsImIiOiIxNTI1NjYzNTIiLCJoZWFkaW5nIjoyMjMuNDM1NDA2MDgyODEwMywiZGlzdCI6MTYuNzkzfSx7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM1NF8xNDIxMTM0ODEwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNTQiLCJiIjoiMTQyMTEzNDgxMCIsImhlYWRpbmciOjQ2LjY4OTcxOTc3NzM4Mzg2LCJkaXN0IjoxNC41NDV9XX0sIjE1MjU2NjM1NSI6eyJpZCI6IjE1MjU2NjM1NSIsImxvbiI6LTk3LjczMjE1LCJsYXQiOjMwLjI3ODk2LCJlZGdlcyI6W3siaWQiOiIxMjQ5NTMxMTUtMTUyNTY2MzU1XzE0MjExMzQ4MTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjM1NSIsImIiOiIxNDIxMTM0ODE0IiwiaGVhZGluZyI6Mjg5LjgwMTY2NzAwMzk4MzgsImRpc3QiOjE2LjM2Mn0seyJpZCI6IjEyODI0NzUxOS0xNTI1NjYzNTVfMTQyMTEzNDgxMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzU1IiwiYiI6IjE0MjExMzQ4MTEiLCJoZWFkaW5nIjoxMDQuMzYxNDE4OTkzMzA2OCwiZGlzdCI6MTcuODc3fSx7ImlkIjoiMTI4MjQ3NTI5LTE1MjU2NjM1NV8xNDIxMTM0ODI0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNTUiLCJiIjoiMTQyMTEzNDgyNCIsImhlYWRpbmciOjU2LjYzOTU0MjE1NzAxODcsImRpc3QiOjE2LjEyN30seyJpZCI6IjE0OTcxMDA3Ny0xNTI1NjYzNTVfMTQyMTEzNDgxMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzU1IiwiYiI6IjE0MjExMzQ4MTAiLCJoZWFkaW5nIjoyMzYuMDk0NzczMTc1OTM0MzQsImRpc3QiOjEzLjkxMX1dfSwiMTUyNTY3MDk1Ijp7ImlkIjoiMTUyNTY3MDk1IiwibG9uIjotOTcuNzM2NzksImxhdCI6MzAuMjgwMjgsImVkZ2VzIjpbeyJpZCI6IjE1MzkzMzg1LTE1MjU2NzA5NV8xNDIxMTM1MDQxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjcwOTUiLCJiIjoiMTQyMTEzNTA0MSIsImhlYWRpbmciOjI4Ni4wNjg5Mjg4MzMwMjgzNCwiZGlzdCI6MTYuMDJ9LHsiaWQiOiIxNTM5MzM4NS0xNTI1NjcwOTVfMTQyMTEzNTAyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MDk1IiwiYiI6IjE0MjExMzUwMjYiLCJoZWFkaW5nIjoxMDkuNTIwNDYwMjc2NjIwNjIsImRpc3QiOjEzLjI3MX0seyJpZCI6IjE1MDM0OTk4NS0xNTI1NjcwOTVfMTQyMTEzNTAxOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NjcwOTUiLCJiIjoiMTQyMTEzNTAxOSIsImhlYWRpbmciOjE5OS44ODE0NTQ4NjM5OTE1LCJkaXN0IjoxNC4xNDZ9XX0sIjE1MjU2NzA5OSI6eyJpZCI6IjE1MjU2NzA5OSIsImxvbiI6LTk3LjczNTcxLCJsYXQiOjMwLjI3OTk2LCJlZGdlcyI6W3siaWQiOiIxNTM5MzM4NS0xNTI1NjcwOTlfMTQyMTEzNDk5NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MDk5IiwiYiI6IjE0MjExMzQ5OTciLCJoZWFkaW5nIjoyOTIuNzMyNjAwMDcxNTYyNywiZGlzdCI6MTEuNDc1fSx7ImlkIjoiMTUwMzUwMDIzLTE1MjU2NzA5OV8xNDIxMTM0OTc1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjcwOTkiLCJiIjoiMTQyMTEzNDk3NSIsImhlYWRpbmciOi0xNjUuNDA1NzE2MDExMjYxMzgsImRpc3QiOjExLjQ1NX0seyJpZCI6IjIwNDk4OTczNC0xNTI1NjcwOTlfMTQyMTEzNDk4MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MDk5IiwiYiI6IjE0MjExMzQ5ODMiLCJoZWFkaW5nIjoxMDQuODg5ODMwODgyNDc5NDYsImRpc3QiOjEyLjk0Mn1dfSwiMTUyNTY3MTAyIjp7ImlkIjoiMTUyNTY3MTAyIiwibG9uIjotOTcuNzM1MSwibGF0IjozMC4yNzk3OSwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1ODItMTUyNTY3MTAyXzQ0Mjc2MTU2MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MTAyIiwiYiI6IjQ0Mjc2MTU2MyIsImhlYWRpbmciOjI4Ny44MjQ2MjI4NjQxOTQ3LCJkaXN0Ijo0My40NTh9LHsiaWQiOiIzNzc0OTU4My0xNTI1NjcxMDJfMTQyMTEzNDkzMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MTAyIiwiYiI6IjE0MjExMzQ5MzAiLCJoZWFkaW5nIjoxMDcuNjc2NDQ4MzUzMzEyOTQsImRpc3QiOjQ3LjQ2Mn1dfSwiMTUyNTY3MTA1Ijp7ImlkIjoiMTUyNTY3MTA1IiwibG9uIjotOTcuNzMwNSwibGF0IjozMC4yNzg1NSwiZWRnZXMiOlt7ImlkIjoiMTU0MDcyMzAtMTUyNTY3MTA1XzE3NTkyNDI1MTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NzEwNSIsImIiOiIxNzU5MjQyNTE1IiwiaGVhZGluZyI6LTE2My4xNTU0NzgyMTU0NTgxNywiZGlzdCI6NDkuODA1fSx7ImlkIjoiMTIyOTgxMzIwLTE1MjU2NzEwNV8xNTI1NjcxMTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NzEwNSIsImIiOiIxNTI1NjcxMTAiLCJoZWFkaW5nIjoxMDAuODcwMDkxNDA2MDAyNTcsImRpc3QiOjExLjc1N30seyJpZCI6IjE2NDI3MTA2OC0xNTI1NjcxMDVfMTQyMTEzNDc5NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MTA1IiwiYiI6IjE0MjExMzQ3OTciLCJoZWFkaW5nIjoyODUuMTY4MjAyNTk2MDIzNDMsImRpc3QiOjMzLjg5NH1dfSwiMTUyNTY3MTEwIjp7ImlkIjoiMTUyNTY3MTEwIiwibG9uIjotOTcuNzMwMzgsImxhdCI6MzAuMjc4NTMsImVkZ2VzIjpbeyJpZCI6IjEyMjk4MTMyMC0xNTI1NjcxMTBfMTUyNTY3MTA1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjcxMTAiLCJiIjoiMTUyNTY3MTA1IiwiaGVhZGluZyI6MjgwLjg3MDA5MTQwNjAwMjYsImRpc3QiOjExLjc1N31dfSwiMTUyNTgwOTcxIjp7ImlkIjoiMTUyNTgwOTcxIiwibG9uIjotOTcuNzM1NDgsImxhdCI6MzAuMjY4MDgsImVkZ2VzIjpbeyJpZCI6IjE3Njg3NTExNC0xNTI1ODA5NzFfMTUyNTgwOTc2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1ODA5NzEiLCJiIjoiMTUyNTgwOTc2IiwiaGVhZGluZyI6LTcyLjcwNTE1NDUxODgxOTU1LCJkaXN0IjozNy4yODl9XX0sIjE1MjU4MDk3NiI6eyJpZCI6IjE1MjU4MDk3NiIsImxvbiI6LTk3LjczNTg1LCJsYXQiOjMwLjI2ODE4LCJlZGdlcyI6W3siaWQiOiIzNzc0OTU2MS0xNTI1ODA5NzZfMTUyNTgwOTgwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1ODA5NzYiLCJiIjoiMTUyNTgwOTgwIiwiaGVhZGluZyI6LTc2LjEzMjcwMjIwMTAxNzQyLCJkaXN0IjoyNy43NTJ9XX0sIjE1MjU4MDk4MCI6eyJpZCI6IjE1MjU4MDk4MCIsImxvbiI6LTk3LjczNjEzLCJsYXQiOjMwLjI2ODI0LCJlZGdlcyI6W3siaWQiOiIzNzc0OTU2MC0xNTI1ODA5ODBfMTUyNTY2MzE2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1ODA5ODAiLCJiIjoiMTUyNTY2MzE2IiwiaGVhZGluZyI6LTcxLjI4MTU0MTUxMzY5ODgxLCJkaXN0IjozNC41NDR9XX0sIjE1MjU4MDk4MyI6eyJpZCI6IjE1MjU4MDk4MyIsImxvbiI6LTk3LjczOTY5LCJsYXQiOjMwLjI2OTIzLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU2MC0xNTI1ODA5ODNfMTUyNTgwOTg1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1ODA5ODMiLCJiIjoiMTUyNTgwOTg1IiwiaGVhZGluZyI6LTcyLjQwNjgzOTE0MzE0NzkzLCJkaXN0IjoxMTAuMDMxfSx7ImlkIjoiMjAxNjgwNDgzLTE1MjU4MDk4M180NDMxODcwMDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU4MDk4MyIsImIiOiI0NDMxODcwMDciLCJoZWFkaW5nIjotMTYyLjIxNDQyNDQwMDE5NDA1LCJkaXN0Ijo1My41NTR9XX0sIjE1MjU4MDk4NSI6eyJpZCI6IjE1MjU4MDk4NSIsImxvbiI6LTk3Ljc0MDc4LCJsYXQiOjMwLjI2OTUzLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU2MC0xNTI1ODA5ODVfNDQzMTg1MTM4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1ODA5ODUiLCJiIjoiNDQzMTg1MTM4IiwiaGVhZGluZyI6LTcyLjU1NzEwMTk2MDA4MjMyLCJkaXN0Ijo2Ni41Njl9LHsiaWQiOiIyMDQ5OTg2NjktMTUyNTgwOTg1XzQ0MzE4Njk2MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODA5ODUiLCJiIjoiNDQzMTg2OTYzIiwiaGVhZGluZyI6MTguMzg4MTQ0ODgxMjIyOTU2LCJkaXN0Ijo1NC45MDZ9XX0sIjE1MjU4MzM5MCI6eyJpZCI6IjE1MjU4MzM5MCIsImxvbiI6LTk3Ljc0NzcsImxhdCI6MzAuMjY4MzgsImVkZ2VzIjpbeyJpZCI6IjQwNTI2NTY2LTE1MjU4MzM5MF8xNTI1ODMzOTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzMzkwIiwiYiI6IjE1MjU4MzM5MSIsImhlYWRpbmciOjE3LjQzMDIwMDc3MTk1ODk4MywiZGlzdCI6MTA5LjIyMX1dfSwiMTUyNTgzMzkxIjp7ImlkIjoiMTUyNTgzMzkxIiwibG9uIjotOTcuNzQ3MzYsImxhdCI6MzAuMjY5MzIsImVkZ2VzIjpbeyJpZCI6IjQwNTI2NTY2LTE1MjU4MzM5MV8xNTI1ODMzOTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzMzkxIiwiYiI6IjE1MjU4MzM5MCIsImhlYWRpbmciOjE5Ny40MzAyMDA3NzE5NTksImRpc3QiOjEwOS4yMjF9LHsiaWQiOiI0MDUyNjU2Ni0xNTI1ODMzOTFfMTUyNTEyODQ0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzM5MSIsImIiOiIxNTI1MTI4NDQiLCJoZWFkaW5nIjoxNy4zMzI1OTcwNjA3NzQ4NjIsImRpc3QiOjEwMy4zNTZ9XX0sIjE1MjU4MzM5NSI6eyJpZCI6IjE1MjU4MzM5NSIsImxvbiI6LTk3Ljc0NjMzLCJsYXQiOjMwLjI3MjEzLCJlZGdlcyI6W3siaWQiOiIyNzQwMTI0My0xNTI1ODMzOTVfNDQzMTgyMzQ0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzM5NSIsImIiOiI0NDMxODIzNDQiLCJoZWFkaW5nIjoxOTYuNDQyMDYyNjM3NjEzMTYsImRpc3QiOjU3Ljc5Mn0seyJpZCI6IjI3NDAxMjQzLTE1MjU4MzM5NV80NDMxODIzNDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzMzk1IiwiYiI6IjQ0MzE4MjM0NiIsImhlYWRpbmciOjE4LjAyOTYzNjQxNjM2MzEyNSwiZGlzdCI6NTUuOTU5fSx7ImlkIjoiNDEyODc2MjktMTUyNTgzMzk1XzE1MjQ1NjYxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODMzOTUiLCJiIjoiMTUyNDU2NjEwIiwiaGVhZGluZyI6MTA4LjUyOTExMjk0MTgyMzc4LCJkaXN0IjoxMTEuNjMxfSx7ImlkIjoiNDEyODc2MjktMTUyNTgzMzk1XzIwOTA3NTMzMDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzMzk1IiwiYiI6IjIwOTA3NTMzMDciLCJoZWFkaW5nIjotNzAuOTMzMTYwMzg4NDg0NywiZGlzdCI6NzEuMjY1fV19LCIxNTI1ODMzOTgiOnsiaWQiOiIxNTI1ODMzOTgiLCJsb24iOi05Ny43NDU2LCJsYXQiOjMwLjI3NCwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDE4LTE1MjU4MzM5OF80NDMyMTQ2MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzMzk4IiwiYiI6IjQ0MzIxNDYxMCIsImhlYWRpbmciOjE3LjIyMjY5NTM3OTU0NTkzMiwiZGlzdCI6NjQuOTk0fSx7ImlkIjoiMjA0ODY5NTMwLTE1MjU4MzM5OF8xNTI0NTY2MTYiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNTgzMzk4IiwiYiI6IjE1MjQ1NjYxNiIsImhlYWRpbmciOjEwOC43MTk2MjYxNjExMTU5MSwiZGlzdCI6MTAzLjYyNn0seyJpZCI6IjIwNDg2OTUzMC0xNTI1ODMzOThfMTUyMzkzNDkyIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjU4MzM5OCIsImIiOiIxNTIzOTM0OTIiLCJoZWFkaW5nIjotNzIuNzAzOTYwNjA2NTY2OSwiZGlzdCI6MTExLjg2Mn1dfSwiMTUyNTgzNDAyIjp7ImlkIjoiMTUyNTgzNDAyIiwibG9uIjotOTcuNzQ1MTcsImxhdCI6MzAuMjc1MTksImVkZ2VzIjpbeyJpZCI6IjE1MDM1MDAxOC0xNTI1ODM0MDJfMTYyNjU1OTM0NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODM0MDIiLCJiIjoiMTYyNjU1OTM0NSIsImhlYWRpbmciOjE5OS4xNDYwNzc2MzY2Njk0NSwiZGlzdCI6MTEuNzM1fSx7ImlkIjoiMTUwMzUwMDE4LTE1MjU4MzQwMl80NDMyMTQ2MTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDAyIiwiYiI6IjQ0MzIxNDYxMSIsImhlYWRpbmciOjE2LjY2MjA3MDMzNzI3MzI0NiwiZGlzdCI6NjcuMTE1fSx7ImlkIjoiMjA0OTg5Nzc1LTE1MjU4MzQwMl8xNTIzOTM0OTYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU4MzQwMiIsImIiOiIxNTIzOTM0OTYiLCJoZWFkaW5nIjotNzEuODU3MjI3MzM3MDYwMTgsImRpc3QiOjExMC4zNjV9XX0sIjE1MjU4MzQwNCI6eyJpZCI6IjE1MjU4MzQwNCIsImxvbiI6LTk3Ljc0NDA1LCJsYXQiOjMwLjI3ODI2LCJlZGdlcyI6W3siaWQiOiIxNTAzNTAwMTgtMTUyNTgzNDA0XzE2MjY1NTU4MjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDA0IiwiYiI6IjE2MjY1NTU4MjciLCJoZWFkaW5nIjoxOTcuNTE2MjE1OTEyODE0MTUsImRpc3QiOjEyLjc4N30seyJpZCI6IjE1MDM1MDAxOC0xNTI1ODM0MDRfNDQzMjE0NjE0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzQwNCIsImIiOiI0NDMyMTQ2MTQiLCJoZWFkaW5nIjoxNy4xNDk5NjE1NzY5MzEwOCwiZGlzdCI6NTIuMjA3fSx7ImlkIjoiMTcwMDUwODE3LTE1MjU4MzQwNF80NDMyMTQ2NDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU4MzQwNCIsImIiOiI0NDMyMTQ2NDIiLCJoZWFkaW5nIjotNzEuMTUwNzgwODI3NTYwMDQsImRpc3QiOjU0LjkwMX1dfSwiMTUyNTgzNDA3Ijp7ImlkIjoiMTUyNTgzNDA3IiwibG9uIjotOTcuNzQzNzMsImxhdCI6MzAuMjc5MTgsImVkZ2VzIjpbeyJpZCI6IjEyNDk1MzIyNi0xNTI1ODM0MDdfMTUyNDg2NjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzQwNyIsImIiOiIxNTI0ODY2MDkiLCJoZWFkaW5nIjoxOC40MTk1OTkzODU0MTE4MzIsImRpc3QiOjEwMC40ODV9LHsiaWQiOiIxMjQ5NTMyMzAtMTUyNTgzNDA3XzE1MjQ1NjYyNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODM0MDciLCJiIjoiMTUyNDU2NjI0IiwiaGVhZGluZyI6MTA4LjE0MzQxNDc5MDgzODQ2LCJkaXN0IjoxMTAuMzYyfSx7ImlkIjoiMTI0OTUzMjMxLTE1MjU4MzQwN180NDMyMTQ2NDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDA3IiwiYiI6IjQ0MzIxNDY0NSIsImhlYWRpbmciOi03Mi4xMTk2MDc4MDEyMzY2MywiZGlzdCI6NTAuNTQ5fSx7ImlkIjoiMTUwMzUwMDE4LTE1MjU4MzQwN180NDMyMTQ2MTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDA3IiwiYiI6IjQ0MzIxNDYxNCIsImhlYWRpbmciOjE5Ni40NjAzOTgyMzk5ODEwMywiZGlzdCI6NTQuMzN9XX0sIjE1MjU4MzQxMCI6eyJpZCI6IjE1MjU4MzQxMCIsImxvbiI6LTk3Ljc0MzA4LCJsYXQiOjMwLjI4MDkxLCJlZGdlcyI6W3siaWQiOiIxNTQxMDg4NS0xNTI1ODM0MTBfMTUyNDU2NjMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzQxMCIsImIiOiIxNTI0NTY2MzAiLCJoZWFkaW5nIjoxMDcuNTk1MDk0MjE4ODQxNSwiZGlzdCI6MTEwLjAyfSx7ImlkIjoiMTU0MTA4ODUtMTUyNTgzNDEwXzE1MjM5MzUyNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODM0MTAiLCJiIjoiMTUyMzkzNTI0IiwiaGVhZGluZyI6LTcxLjIxMjc1MDcxMDkzMzg1LCJkaXN0IjoxMDYuNzA5fSx7ImlkIjoiMTI0OTUzMjI4LTE1MjU4MzQxMF80NDMyMTQ2MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDEwIiwiYiI6IjQ0MzIxNDYxNSIsImhlYWRpbmciOjE5Ni40ODIyMzQxMjY3NzU2NywiZGlzdCI6NTAuODY3fSx7ImlkIjoiMTI0OTUzMjI4LTE1MjU4MzQxMF80NDMyMTQ2MTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDEwIiwiYiI6IjQ0MzIxNDYxNiIsImhlYWRpbmciOjE4LjU5OTc1MTEyMzY2ODkxMywiZGlzdCI6NTcuMzE0fV19LCIxNTI2MDEwMjUiOnsiaWQiOiIxNTI2MDEwMjUiLCJsb24iOi05Ny43MzkxNiwibGF0IjozMC4yNzc4NiwiZWRnZXMiOlt7ImlkIjoiMTUzOTYyNTAtMTUyNjAxMDI1XzIxNjcxNjExODkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjAxMDI1IiwiYiI6IjIxNjcxNjExODkiLCJoZWFkaW5nIjotNjguOTkwNDI1NjgzNTYwNjYsImRpc3QiOjEyLjM2OH0seyJpZCI6IjE1NDA3MzcyLTE1MjYwMTAyNV8yMTY3MTYxMjQyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwMTAyNSIsImIiOiIyMTY3MTYxMjQyIiwiaGVhZGluZyI6MTA3LjA3OTIyMzk3MjE4NDYsImRpc3QiOjE1LjA5OH0seyJpZCI6IjI0MDE4MjU1NC0xNTI2MDEwMjVfMjE2NzE2MTMxNiIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTI2MDEwMjUiLCJiIjoiMjE2NzE2MTMxNiIsImhlYWRpbmciOjIwMC40MDM3MTI3NTE3MjU0NiwiZGlzdCI6OC4yNzl9LHsiaWQiOiIyNDAxODI1NTQtMTUyNjAxMDI1XzIxNjcxNjEyOTQiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNjAxMDI1IiwiYiI6IjIxNjcxNjEyOTQiLCJoZWFkaW5nIjo5Ljg0NzYyNDQzMTA0NjI3NywiZGlzdCI6NS42MjZ9XX0sIjE1MjYwMTAyNyI6eyJpZCI6IjE1MjYwMTAyNyIsImxvbiI6LTk3Ljc0MDQ4LCJsYXQiOjMwLjI3ODI1LCJlZGdlcyI6W3siaWQiOiIxNTM5NjI1MC0xNTI2MDEwMjdfMjE2NzE2MTE4OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MDEwMjciLCJiIjoiMjE2NzE2MTE4OSIsImhlYWRpbmciOjEwOC41NzUxNzA5MTU4NDc4MiwiZGlzdCI6MTIxLjgwNH0seyJpZCI6IjE1Mzk2MjUwLTE1MjYwMTAyN18xNTI1MTYyMDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjAxMDI3IiwiYiI6IjE1MjUxNjIwOCIsImhlYWRpbmciOi03MS4yMTMyMjg5OTcyNTgxNCwiZGlzdCI6MTA2LjcxMn0seyJpZCI6IjE1NDA4MzQ2LTE1MjYwMTAyN18xNjI2NTU4NTg1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwMTAyNyIsImIiOiIxNjI2NTU4NTg1IiwiaGVhZGluZyI6MTk3Ljk2Njg2NzI5NDkwNTM0LCJkaXN0IjoxMDYuMDUyfSx7ImlkIjoiMTU0MDgzNDYtMTUyNjAxMDI3XzE1MjQ4NjYwNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MDEwMjciLCJiIjoiMTUyNDg2NjA0IiwiaGVhZGluZyI6MTYuODIwNTM3OTgwMTE2NzUsImRpc3QiOjEwMy4wNzN9XX0sIjE1MjYwMTAyOCI6eyJpZCI6IjE1MjYwMTAyOCIsImxvbiI6LTk3Ljc0NTg3LCJsYXQiOjMwLjI3OTc4LCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi0xNTI2MDEwMjhfMTUyNjM2ODg2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwMTAyOCIsImIiOiIxNTI2MzY4ODYiLCJoZWFkaW5nIjoxOTguMTUzMjAyMDMzOTk4OCwiZGlzdCI6MTA0Ljk5OH0seyJpZCI6IjE1Mzk5NjgyLTE1MjYwMTAyOF8xNTI0ODY2MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjAxMDI4IiwiYiI6IjE1MjQ4NjYxMCIsImhlYWRpbmciOjE2Ljk3MjA1OTIzODM1ODQ4MywiZGlzdCI6MTA1LjQ3NH0seyJpZCI6IjEyNDk1MzIzMS0xNTI2MDEwMjhfMTUyMzkzNTE4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwMTAyOCIsImIiOiIxNTIzOTM1MTgiLCJoZWFkaW5nIjoxMDguODQ5NTg2MTA0MjIzNjIsImRpc3QiOjEwOS44fV19LCIxNTI2MDQyMDkiOnsiaWQiOiIxNTI2MDQyMDkiLCJsb24iOi05Ny43MzM1MSwibGF0IjozMC4yNzMwNSwiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTUyNjA0MjA5XzEwNzc2MDAzNjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA0MjA5IiwiYiI6IjEwNzc2MDAzNjEiLCJoZWFkaW5nIjoxOTguMDI5NTYxMzE0OTM2NjcsImRpc3QiOjM3LjMwNn0seyJpZCI6IjE1Mzk2NTY0LTE1MjYwNDIwOV8xMDc3NjAwNDIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwNDIwOSIsImIiOiIxMDc3NjAwNDIwIiwiaGVhZGluZyI6MTIuMjQzMDAzMDQ1MTc1OTksImRpc3QiOjQuNTM3fV19LCIxNTI2MDQyMTYiOnsiaWQiOiIxNTI2MDQyMTYiLCJsb24iOi05Ny43MzY3NSwibGF0IjozMC4yNjQ0NiwiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjUtMTUyNjA0MjE2XzE0MjU3MzA4MjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA0MjE2IiwiYiI6IjE0MjU3MzA4MjEiLCJoZWFkaW5nIjoxOTguNDYyMzkzMzcxMDc4NTUsImRpc3QiOjE1LjE5M30seyJpZCI6IjE1Mzk2NTY1LTE1MjYwNDIxNl8xNTI1MTY2NDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA0MjE2IiwiYiI6IjE1MjUxNjY0OCIsImhlYWRpbmciOjE4LjEwMzg4NzY1OTQ2MjgyOCwiZGlzdCI6ODkuODA2fV19LCIxNTI2MDQyMTkiOnsiaWQiOiIxNTI2MDQyMTkiLCJsb24iOi05Ny43MzU3OCwibGF0IjozMC4yNjcxMiwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NTgtMTUyNjA0MjE5XzE1MjY4MTk0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjA0MjE5IiwiYiI6IjE1MjY4MTk0NiIsImhlYWRpbmciOjExMC4yMzY0NDYwMTc5MTQwOCwiZGlzdCI6MjUuNjM5fV19LCIxNTI2MDg4NzIiOnsiaWQiOiIxNTI2MDg4NzIiLCJsb24iOi05Ny43NDAwOCwibGF0IjozMC4yNzE0MiwiZWRnZXMiOlt7ImlkIjoiMjA0OTY0NjY4LTE1MjYwODg3Ml80NDMxODUxMzMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA4ODcyIiwiYiI6IjQ0MzE4NTEzMyIsImhlYWRpbmciOjE4LjE1NDU4NjQyNTY1NzgzMywiZGlzdCI6NTIuNDk5fSx7ImlkIjoiMjA0OTY0NjkwLTE1MjYwODg3Ml80NDMxODUxNDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA4ODcyIiwiYiI6IjQ0MzE4NTE0MyIsImhlYWRpbmciOi03Mi4zMDUwNTc0MzU5ODM0NywiZGlzdCI6NjUuNjUxfV19LCIxNTI2MDg4NzQiOnsiaWQiOiIxNTI2MDg4NzQiLCJsb24iOi05Ny43Mzg5OSwibGF0IjozMC4yNzExMSwiZWRnZXMiOlt7ImlkIjoiMjAxNjgwNDgzLTE1MjYwODg3NF80NDMxODcwMDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjYwODg3NCIsImIiOiI0NDMxODcwMDIiLCJoZWFkaW5nIjotMTYyLjkxMTc3NzQ3NzczMzk4LCJkaXN0Ijo1NS42Njl9LHsiaWQiOiIyMDQ5ODk3MzAtMTUyNjA4ODc0XzE1MjYwODg3MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MDg4NzQiLCJiIjoiMTUyNjA4ODcyIiwiaGVhZGluZyI6LTcxLjg1NzkzOTEyODI1NjYzLCJkaXN0IjoxMTAuMzY5fV19LCIxNTI2MDg4NzYiOnsiaWQiOiIxNTI2MDg4NzYiLCJsb24iOi05Ny43MzUzMiwibGF0IjozMC4yNzAwOSwiZWRnZXMiOlt7ImlkIjoiMTUzOTY5NDItMTUyNjA4ODc2XzE1MjU2NjMxNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MDg4NzYiLCJiIjoiMTUyNTY2MzE3IiwiaGVhZGluZyI6LTcxLjU5MTM0MjYxNDIwOTA4LCJkaXN0Ijo0NS42MzZ9XX0sIjE1MjYwODg3OSI6eyJpZCI6IjE1MjYwODg3OSIsImxvbiI6LTk3LjczNTA0LCJsYXQiOjMwLjI3MDAyLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU2NS0xNTI2MDg4NzlfMTUyNjA4ODc2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwODg3OSIsImIiOiIxNTI2MDg4NzYiLCJoZWFkaW5nIjotNzMuOTMyNTY2ODUxOTMzNjMsImRpc3QiOjI4LjAzOH1dfSwiMTUyNjA4ODgxIjp7ImlkIjoiMTUyNjA4ODgxIiwibG9uIjotOTcuNzM0NzIsImxhdCI6MzAuMjY5OTIsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTY2LTE1MjYwODg4MV8xNTI2MDg4NzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA4ODgxIiwiYiI6IjE1MjYwODg3OSIsImhlYWRpbmciOi03MC4xOTk5MDYwODUyNDczLCJkaXN0IjozMi43MjZ9XX0sIjE1MjYxMzYzNiI6eyJpZCI6IjE1MjYxMzYzNiIsImxvbiI6LTk3LjczNzUsImxhdCI6MzAuMjc4MzcsImVkZ2VzIjpbeyJpZCI6IjE1Mzk3NDYxLTE1MjYxMzYzNl80NDMyMTQ2NTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjEzNjM2IiwiYiI6IjQ0MzIxNDY1NCIsImhlYWRpbmciOjEwOC44NDg5Mzc4ODkxMTUzMiwiZGlzdCI6NTQuOTAxfSx7ImlkIjoiMTUwMzQ5OTg1LTE1MjYxMzYzNl8xNTI1MDIzNzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjEzNjM2IiwiYiI6IjE1MjUwMjM3NSIsImhlYWRpbmciOjE4LjQxOTc0MjU4MzgxMzA2NSwiZGlzdCI6MTAwLjQ4NX1dfSwiMTUyNjEzNjM4Ijp7ImlkIjoiMTUyNjEzNjM4IiwibG9uIjotOTcuNzM2NDMsImxhdCI6MzAuMjc4MDYsImVkZ2VzIjpbeyJpZCI6IjE1Mzk3NDYxLTE1MjYxMzYzOF8yNjM3NjcwNzMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYxMzYzOCIsImIiOiIyNjM3NjcwNzMwIiwiaGVhZGluZyI6MTA3LjQ0NDEyNDQ3ODA4NDAzLCJkaXN0IjoxMS4wOTR9LHsiaWQiOiIxNTAzNTAwMjMtMTUyNjEzNjM4XzI2Mzc2NzA3MjkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjYxMzYzOCIsImIiOiIyNjM3NjcwNzI5IiwiaGVhZGluZyI6LTE2MS45NzEyOTEwNzIyNDY2LCJkaXN0Ijo5LjMyNn1dfSwiMTUyNjIwNTQ5Ijp7ImlkIjoiMTUyNjIwNTQ5IiwibG9uIjotOTcuNzM4MDQsImxhdCI6MzAuMjc3NTMsImVkZ2VzIjpbeyJpZCI6IjE1NDA3MzcyLTE1MjYyMDU0OV8yMTY3MTYxMjQyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYyMDU0OSIsImIiOiIyMTY3MTYxMjQyIiwiaGVhZGluZyI6Mjg5LjAwNjU5NDAxMTY5NzksImRpc3QiOjk4LjcxMn0seyJpZCI6IjE1NDA3MzcyLTE1MjYyMDU0OV80NDMyMTQ2NTMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjIwNTQ5IiwiYiI6IjQ0MzIxNDY1MyIsImhlYWRpbmciOjEwNy44Nzk3NjI2MTg4MDU3MywiZGlzdCI6NzUuODI1fV19LCIxNTI2MjA1NTgiOnsiaWQiOiIxNTI2MjA1NTgiLCJsb24iOi05Ny43NDI4NiwibGF0IjozMC4yNjM5NCwiZWRnZXMiOlt7ImlkIjoiMTUzOTgxNjctMTUyNjIwNTU4XzQ0MzE4NTEzMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjA1NTgiLCJiIjoiNDQzMTg1MTMyIiwiaGVhZGluZyI6Mjg4LjQ5MjQ1ODU1MjcyNTksImRpc3QiOjYyLjkxMX0seyJpZCI6IjE1Mzk4MTY3LTE1MjYyMDU1OF8xNTI2MjExNzMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjIwNTU4IiwiYiI6IjE1MjYyMTE3MyIsImhlYWRpbmciOjEwNy44OTk2ODAwNjEwMzcxLCJkaXN0IjoxMDguMjA0fSx7ImlkIjoiMzIwNjU1MjctMTUyNjIwNTU4XzQ0MzE4Njk0MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjA1NTgiLCJiIjoiNDQzMTg2OTQyIiwiaGVhZGluZyI6MTkuNTA5NTYzMzM3NjAxOTksImRpc3QiOjU3LjYyOX1dfSwiMTUyNjIwNTYzIjp7ImlkIjoiMTUyNjIwNTYzIiwibG9uIjotOTcuNzQyNTIsImxhdCI6MzAuMjY0ODIsImVkZ2VzIjpbeyJpZCI6IjMyMDY1NTI3LTE1MjYyMDU2M18xNTI0OTY5NDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjIwNTYzIiwiYiI6IjE1MjQ5Njk0MCIsImhlYWRpbmciOjE5LjE0Nzk2MzA4Mjg2MjQsImRpc3QiOjUuODY3fV19LCIxNTI2MjA1NjYiOnsiaWQiOiIxNTI2MjA1NjYiLCJsb24iOi05Ny43NDI0OSwibGF0IjozMC4yNjQ4OSwiZWRnZXMiOlt7ImlkIjoiMzIwNjU1MjctMTUyNjIwNTY2XzQ0MzE4Njk0NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjA1NjYiLCJiIjoiNDQzMTg2OTQ0IiwiaGVhZGluZyI6MTcuNDMwODcxMTA5MTQ3NjYsImRpc3QiOjU0LjYxMX1dfSwiMTUyNjIwNTY5Ijp7ImlkIjoiMTUyNjIwNTY5IiwibG9uIjotOTcuNzQxMTEsImxhdCI6MzAuMjY4NiwiZWRnZXMiOlt7ImlkIjoiMjA0OTk4NjY5LTE1MjYyMDU2OV8xNTI1ODA5ODUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjIwNTY5IiwiYiI6IjE1MjU4MDk4NSIsImhlYWRpbmciOjE3LjExODkyNzMwNTMyMTA0OCwiZGlzdCI6MTA3Ljg3Nn0seyJpZCI6IjIwNDk5ODY3OC0xNTI2MjA1NjlfMjE3NzcwMjYyMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjIwNTY5IiwiYiI6IjIxNzc3MDI2MjMiLCJoZWFkaW5nIjoxMDguMzgyNzI1NzUwODIwNjgsImRpc3QiOjUyLjcyOH1dfSwiMTUyNjIwOTkyIjp7ImlkIjoiMTUyNjIwOTkyIiwibG9uIjotOTcuNzQ0MTIsImxhdCI6MzAuMjY4NDEsImVkZ2VzIjpbeyJpZCI6IjIwNDk3NDcyMy0xNTI2MjA5OTJfMTUyNzIzNDAzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYyMDk5MiIsImIiOiIxNTI3MjM0MDMiLCJoZWFkaW5nIjotMTYyLjA4OTE0MTM2NTU4OTg1LCJkaXN0IjoxMDkuNTEzfV19LCIxNTI2MjA5OTQiOnsiaWQiOiIxNTI2MjA5OTQiLCJsb24iOi05Ny43NDk1MiwibGF0IjozMC4yNjk5NCwiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItMTUyNjIwOTk0XzQ0MzE4MjM0NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjA5OTQiLCJiIjoiNDQzMTgyMzQ3IiwiaGVhZGluZyI6MTk3LjQzMDA5OTU3ODAwMjU3LCJkaXN0Ijo1NC42MX0seyJpZCI6IjE1Mzk5NjgyLTE1MjYyMDk5NF80NDMxODIzNDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjIwOTk0IiwiYiI6IjQ0MzE4MjM0OCIsImhlYWRpbmciOjE4Ljk2MTgxMTk0MTQ0Mjc5MywiZGlzdCI6NTYuMjY1fV19LCIxNTI2MjExNzMiOnsiaWQiOiIxNTI2MjExNzMiLCJsb24iOi05Ny43NDE3OSwibGF0IjozMC4yNjM2NCwiZWRnZXMiOlt7ImlkIjoiMTUzOTgxNjctMTUyNjIxMTczXzE1MjYyMDU1OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjExNzMiLCJiIjoiMTUyNjIwNTU4IiwiaGVhZGluZyI6Mjg3Ljg5OTY4MDA2MTAzNzEsImRpc3QiOjEwOC4yMDR9LHsiaWQiOiIxNTM5ODE2Ny0xNTI2MjExNzNfMTUyNTM5NjMzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYyMTE3MyIsImIiOiIxNTI1Mzk2MzMiLCJoZWFkaW5nIjoxMDguMjk2OTgwOTQ3Nzk4MTgsImRpc3QiOjEwOS40NjN9LHsiaWQiOiIyMDQ5ODE1NjgtMTUyNjIxMTczXzQ0MzE4NzAyMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjIxMTczIiwiYiI6IjQ0MzE4NzAyMyIsImhlYWRpbmciOi0xNjQuNTE1MDc3MjUxMzEyOTYsImRpc3QiOjU0LjA2NX1dfSwiMTUyNjI5Mzk2Ijp7ImlkIjoiMTUyNjI5Mzk2IiwibG9uIjotOTcuNzM0NjYsImxhdCI6MzAuMjY2ODIsImVkZ2VzIjpbeyJpZCI6IjE0Mzk0ODE3OC0xNTI2MjkzOTZfMTUyMzgxMjU3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2MjkzOTYiLCJiIjoiMTUyMzgxMjU3IiwiaGVhZGluZyI6LTE2Mi41NjkyMDY3MTM5NDksImRpc3QiOjEwOS4yMjF9XX0sIjE1MjYzMTE4MCI6eyJpZCI6IjE1MjYzMTE4MCIsImxvbiI6LTk3Ljc0MDAzLCJsYXQiOjMwLjI2ODI5LCJlZGdlcyI6W3siaWQiOiIyMDE2ODA0ODMtMTUyNjMxMTgwXzQ0MzE4NzAxMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjMxMTgwIiwiYiI6IjQ0MzE4NzAxMCIsImhlYWRpbmciOi0xNjEuODQ0NzAzMDU2NzEwNzYsImRpc3QiOjUyLjQ5OX0seyJpZCI6IjIwNzUxNzY0MC0xNTI2MzExODBfMTUyNTM5NjQwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2MzExODAiLCJiIjoiMTUyNTM5NjQwIiwiaGVhZGluZyI6MTA3LjA0MDQ4NTI0MDIyNzk1LCJkaXN0IjoxMDkuNzAyfV19LCIxNTI2MzExODEiOnsiaWQiOiIxNTI2MzExODEiLCJsb24iOi05Ny43MzgyNiwibGF0IjozMC4yNzMxNCwiZWRnZXMiOlt7ImlkIjoiMTMxNTQ0OTA1LTE1MjYzMTE4MV8yNjM3NjczNDQxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2MzExODEiLCJiIjoiMjYzNzY3MzQ0MSIsImhlYWRpbmciOjExMS4wMDg1ODMwNjA4NTI3NywiZGlzdCI6OS4yNzd9LHsiaWQiOiIxNTAzNTAwMjMtMTUyNjMxMTgxXzI2Mzc2NzM0MzkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjYzMTE4MSIsImIiOiIyNjM3NjczNDM5IiwiaGVhZGluZyI6LTE2My44NjM1NDM4MDI0NTgsImRpc3QiOjYuOTI0fV19LCIxNTI2MzExODMiOnsiaWQiOiIxNTI2MzExODMiLCJsb24iOi05Ny43Mzc4MSwibGF0IjozMC4yNzQzNSwiZWRnZXMiOlt7ImlkIjoiMTU0MDI0NjEtMTUyNjMxMTgzXzI2Mzc2NzM0NTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjMxMTgzIiwiYiI6IjI2Mzc2NzM0NTAiLCJoZWFkaW5nIjoxMDguMjIwMzc4NDEzMTgzNzUsImRpc3QiOjE0LjE4Mn0seyJpZCI6IjE1MDM1MDAyMy0xNTI2MzExODNfMjYzNzY3MzQ0OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjMxMTgzIiwiYiI6IjI2Mzc2NzM0NDgiLCJoZWFkaW5nIjotMTYxLjk3MDY0NzI2MzMzMDYsImRpc3QiOjkuMzI3fV19LCIxNTI2MzExODYiOnsiaWQiOiIxNTI2MzExODYiLCJsb24iOi05Ny43MzY3NSwibGF0IjozMC4yNzcxNywiZWRnZXMiOlt7ImlkIjoiMTU0MDczNzItMTUyNjMxMTg2XzI2Mzc2NzA3MjYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjMxMTg2IiwiYiI6IjI2Mzc2NzA3MjYiLCJoZWFkaW5nIjoyODQuODg5NDI2NzE4NzgzOTcsImRpc3QiOjEyLjk0M30seyJpZCI6IjE1MDM1MDAyMy0xNTI2MzExODZfMjYzNzY3MDcyNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjMxMTg2IiwiYiI6IjI2Mzc2NzA3MjUiLCJoZWFkaW5nIjotMTYzLjg2NDE3ODE1ODYxMjYyLCJkaXN0Ijo2LjkyNH1dfSwiMTUyNjMxMTkwIjp7ImlkIjoiMTUyNjMxMTkwIiwibG9uIjotOTcuNzM1NDEsImxhdCI6MzAuMjgwMTksImVkZ2VzIjpbeyJpZCI6IjE4MTAyNTA4Mi0xNTI2MzExOTBfMTQwMDIxMTI3MiIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTI2MzExOTAiLCJiIjoiMTQwMDIxMTI3MiIsImhlYWRpbmciOi0xMTEuMDA5OTc0MzM4NDYzNTksImRpc3QiOjkuMjc2fV19LCIxNTI2MzY4NzQiOnsiaWQiOiIxNTI2MzY4NzQiLCJsb24iOi05Ny43NDk4NywibGF0IjozMC4yNjg5OSwiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItMTUyNjM2ODc0XzQ0MzEyOTM5OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4NzQiLCJiIjoiNDQzMTI5Mzk4IiwiaGVhZGluZyI6MTk1LjgwMzk5NDY5NDQ4OTk3LCJkaXN0Ijo1Mi45OTh9LHsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4NzRfNDQzMTgyMzQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg3NCIsImIiOiI0NDMxODIzNDciLCJoZWFkaW5nIjoxOC4wMzAxODEyMTUyNTMzMDQsImRpc3QiOjU1Ljk1OX1dfSwiMTUyNjM2ODc3Ijp7ImlkIjoiMTUyNjM2ODc3IiwibG9uIjotOTcuNzQ4NDcsImxhdCI6MzAuMjcyNzQsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg3N180NDMxODIzNTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjM2ODc3IiwiYiI6IjQ0MzE4MjM1MCIsImhlYWRpbmciOjE5Ny4zNTI1NDA3NzgxNzY1OCwiZGlzdCI6NTguMDcyfSx7ImlkIjoiMTUzOTk2ODItMTUyNjM2ODc3XzQ0MzE4MjM1MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4NzciLCJiIjoiNDQzMTgyMzUxIiwiaGVhZGluZyI6MTguMTU0MzU2MDIxMjE0NDU0LCJkaXN0Ijo1Mi40OTl9LHsiaWQiOiI0MTI4NzYyOS0xNTI2MzY4NzdfMTUyMzkzNDg3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg3NyIsImIiOiIxNTIzOTM0ODciLCJoZWFkaW5nIjoxMDcuNzQ2NDI3NzM5NDk5MSwiZGlzdCI6MTA5LjExMX1dfSwiMTUyNjM2ODgwIjp7ImlkIjoiMTUyNjM2ODgwIiwibG9uIjotOTcuNzQ3NzksImxhdCI6MzAuMjc0NTksImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg4MF8yMTI1NDY4NjYzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg4MCIsImIiOiIyMTI1NDY4NjYzIiwiaGVhZGluZyI6MTk2LjEzNjIxNzg4NDkzNDg3LCJkaXN0Ijo2LjkyNH0seyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg4MF8yMTI1NDY4NjY1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg4MCIsImIiOiIyMTI1NDY4NjY1IiwiaGVhZGluZyI6MTkuMTQ2MTY4OTc3NTcxNzksImRpc3QiOjExLjczNX0seyJpZCI6IjIwNDg2OTUzMC0xNTI2MzY4ODBfMjEyNTQ2ODY2NCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTI2MzY4ODAiLCJiIjoiMjEyNTQ2ODY2NCIsImhlYWRpbmciOjEwNi4wNjgxMDE1Mzg4NTIzLCJkaXN0IjoxMi4wMTZ9LHsiaWQiOiIyMDQ4Njk1MzAtMTUyNjM2ODgwXzIxMjU0Njg2NjYiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNjM2ODgwIiwiYiI6IjIxMjU0Njg2NjYiLCJoZWFkaW5nIjotNzAuOTMyODgwMjEwNzY1NTksImRpc3QiOjEwLjE4fV19LCIxNTI2MzY4ODIiOnsiaWQiOiIxNTI2MzY4ODIiLCJsb24iOi05Ny43NDczMiwibGF0IjozMC4yNzU4LCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi0xNTI2MzY4ODJfMTYyNjU1OTM0MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4ODIiLCJiIjoiMTYyNjU1OTM0MyIsImhlYWRpbmciOjE5OS4xNDU5NjYxOTk5NDQ2LCJkaXN0IjoxMS43MzV9LHsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4ODJfNDQzMjE0NjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg4MiIsImIiOiI0NDMyMTQ2MDkiLCJoZWFkaW5nIjoxNi4xMzU5MzQ5NzQ1NTc1MywiZGlzdCI6NjUuNzh9XX0sIjE1MjYzNjg4NCI6eyJpZCI6IjE1MjYzNjg4NCIsImxvbiI6LTk3Ljc0Njc5LCJsYXQiOjMwLjI3NzM0LCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi0xNTI2MzY4ODRfMjc0MzUwNjgyMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4ODQiLCJiIjoiMjc0MzUwNjgyMiIsImhlYWRpbmciOjE5NS41ODgwMDIxMDA5MDQ0LCJkaXN0IjozMi4yMjV9LHsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4ODRfNDQzMjE0NjE4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg4NCIsImIiOiI0NDMyMTQ2MTgiLCJoZWFkaW5nIjoyMC40MDM3OTk0Njc3MzI5NjMsImRpc3QiOjguMjc5fV19LCIxNTI2MzY4ODYiOnsiaWQiOiIxNTI2MzY4ODYiLCJsb24iOi05Ny43NDYyMSwibGF0IjozMC4yNzg4OCwiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItMTUyNjM2ODg2XzE2MjY1NTU4NDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjM2ODg2IiwiYiI6IjE2MjY1NTU4NDciLCJoZWFkaW5nIjoxOTcuNTE2MTEwOTc1MTc2MjIsImRpc3QiOjEyLjc4N30seyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg4Nl8xNTI2MDEwMjgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjM2ODg2IiwiYiI6IjE1MjYwMTAyOCIsImhlYWRpbmciOjE4LjE1MzIwMjAzMzk5ODgxMywiZGlzdCI6MTA0Ljk5OH1dfSwiMTUyNjM2ODg4Ijp7ImlkIjoiMTUyNjM2ODg4IiwibG9uIjotOTcuNzQ1MjMsImxhdCI6MzAuMjgxNTQsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg4OF80NDMyMTQ2MjAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjM2ODg4IiwiYiI6IjQ0MzIxNDYyMCIsImhlYWRpbmciOjE5OC4zODYxMDgxNDQ5MzAwMywiZGlzdCI6NTQuOTA2fSx7ImlkIjoiMTUzOTk2ODItMTUyNjM2ODg4XzQ0MzIxNDYyMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4ODgiLCJiIjoiNDQzMjE0NjIxIiwiaGVhZGluZyI6MTguOTU5NzEwMTQxNTE4ODIsImRpc3QiOjU2LjI2NH0seyJpZCI6IjE1NDEwODg1LTE1MjYzNjg4OF8xNTIzOTM1MjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjM2ODg4IiwiYiI6IjE1MjM5MzUyNCIsImhlYWRpbmciOjEwOC41MzA3ODQ5MjAzODkzNSwiZGlzdCI6MTExLjYyMX1dfSwiMTUyNjUxMTAxIjp7ImlkIjoiMTUyNjUxMTAxIiwibG9uIjotOTcuNzQyMzksImxhdCI6MzAuMjc0NDEsImVkZ2VzIjpbeyJpZCI6IjE1NDAxMDA5LTE1MjY1MTEwMV8xNTI1MTYyMDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjY1MTEwMSIsImIiOiIxNTI1MTYyMDIiLCJoZWFkaW5nIjotNzEuNTA1MzcyMzUwNDczNzgsImRpc3QiOjYyLjkwNX0seyJpZCI6IjMwNzU2NzU1LTE1MjY1MTEwMV8xNTI1NDYxOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjUxMTAxIiwiYiI6IjE1MjU0NjE5NSIsImhlYWRpbmciOjE4LjQyOTY4ODkzNDk5NzE5LCJkaXN0IjoxMzAuODcyfSx7ImlkIjoiMTc0NDIxNjI5LTE1MjY1MTEwMV8yMTMwMjUwMzQwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2NTExMDEiLCJiIjoiMjEzMDI1MDM0MCIsImhlYWRpbmciOjE5OC4wMjkzMjcxODk4ODg1LCJkaXN0Ijo5LjMyN31dfSwiMTUyNjc5NDY2Ijp7ImlkIjoiMTUyNjc5NDY2IiwibG9uIjotOTcuNzQzMDYsImxhdCI6MzAuMjcxMjQsImVkZ2VzIjpbeyJpZCI6IjI3MzkxNjQ2LTE1MjY3OTQ2Nl80NDMxODIzMzQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjc5NDY2IiwiYiI6IjQ0MzE4MjMzNCIsImhlYWRpbmciOi0xNjIuNjQ3MTE2NzQzMzk3MTMsImRpc3QiOjU4LjA3Mn0seyJpZCI6IjIwNzUxOTIwMy0xNTI2Nzk0NjZfNDQzMTg1MTQwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjY3OTQ2NiIsImIiOiI0NDMxODUxNDAiLCJoZWFkaW5nIjoxMDguNDkzNzIwOTYxMTk0MTYsImRpc3QiOjYyLjkwN31dfSwiMTUyNjgxOTQ2Ijp7ImlkIjoiMTUyNjgxOTQ2IiwibG9uIjotOTcuNzM1NTMsImxhdCI6MzAuMjY3MDQsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTU5LTE1MjY4MTk0Nl80NDMxODcxNDgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjY4MTk0NiIsImIiOiI0NDMxODcxNDgiLCJoZWFkaW5nIjoxMDYuMDY2ODAzMDA5MzI1MjMsImRpc3QiOjMyLjA0NH1dfSwiMTUyNzA1MDE2Ijp7ImlkIjoiMTUyNzA1MDE2IiwibG9uIjotOTcuNzQwODYsImxhdCI6MzAuMjc3MjQsImVkZ2VzIjpbeyJpZCI6IjE1NDA2NjU1LTE1MjcwNTAxNl8yMTY3MTYxMzA4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI3MDUwMTYiLCJiIjoiMjE2NzE2MTMwOCIsImhlYWRpbmciOjExMy4zNjcxODAzNTYxNjM2NCwiZGlzdCI6OC4zODV9LHsiaWQiOiIxNTQwODM0Ni0xNTI3MDUwMTZfMjE2NzE2MTE4MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI3MDUwMTYiLCJiIjoiMjE2NzE2MTE4MSIsImhlYWRpbmciOjIwMC40MDM4MzIyMTM1NjcyOCwiZGlzdCI6OC4yNzl9LHsiaWQiOiIxNTQwODM0Ni0xNTI3MDUwMTZfMTYyNjU1ODU4NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI3MDUwMTYiLCJiIjoiMTYyNjU1ODU4NSIsImhlYWRpbmciOjE5LjE0NTY4NDg1NjYwMDQ1LCJkaXN0IjoxMS43MzV9XX0sIjE1MjcxMTExNiI6eyJpZCI6IjE1MjcxMTExNiIsImxvbiI6LTk3LjczMjc4LCJsYXQiOjMwLjI3MTg2LCJlZGdlcyI6W3siaWQiOiIxMzE1NDQ5MDgtMTUyNzExMTE2XzEwNzM0MDA3NjEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjcxMTExNiIsImIiOiIxMDczNDAwNzYxIiwiaGVhZGluZyI6LTkzLjE0MDEzODU3MTI4MjQ0LCJkaXN0IjoyMC4yMzd9XX0sIjE1MjcxMTEyNCI6eyJpZCI6IjE1MjcxMTEyNCIsImxvbiI6LTk3LjczMTY2LCJsYXQiOjMwLjI3NTEyLCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNjktMTUyNzExMTI0XzE2MjY1Njg2MjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjcxMTEyNCIsImIiOiIxNjI2NTY4NjIyIiwiaGVhZGluZyI6LTE2NS44NTY2MDc5NDUwOTI1NSwiZGlzdCI6MzUuNDR9XX0sIjE1MjcxMTEzMSI6eyJpZCI6IjE1MjcxMTEzMSIsImxvbiI6LTk3LjczMTE4LCJsYXQiOjMwLjI3NjY3LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNjktMTUyNzExMTMxXzE1MjM2OTI4NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNzExMTMxIiwiYiI6IjE1MjM2OTI4NiIsImhlYWRpbmciOi0xNjIuMDgxMjUxODU5NjA5NSwiZGlzdCI6NTkuNDE5fV19LCIxNTI3MTExMzQiOnsiaWQiOiIxNTI3MTExMzQiLCJsb24iOi05Ny43MzA5LCJsYXQiOjMwLjI3NzQ1LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNjktMTUyNzExMTM0XzE1MjcxMTEzMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNzExMTM0IiwiYiI6IjE1MjcxMTEzMSIsImhlYWRpbmciOi0xNjIuNjk0NTg5NzQ2OTE1NjMsImRpc3QiOjkwLjU2OH1dfSwiMTUyNzIzMzk1Ijp7ImlkIjoiMTUyNzIzMzk1IiwibG9uIjotOTcuNzM5ODMsImxhdCI6MzAuMjc5OTgsImVkZ2VzIjpbeyJpZCI6IjE1NDA4MzQ2LTE1MjcyMzM5NV80NDMyMTQ2NDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNzIzMzk1IiwiYiI6IjQ0MzIxNDY0NiIsImhlYWRpbmciOjE5OC45Mzg1MjgwMjc4MTgzNiwiZGlzdCI6NTAuMzk3fSx7ImlkIjoiMTU0MDgzNDYtMTUyNzIzMzk1XzE1MjUwMjk2NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI3MjMzOTUiLCJiIjoiMTUyNTAyOTY1IiwiaGVhZGluZyI6MTcuNzU0OTEyMDAxMjQxOTY2LCJkaXN0IjoxMTkuODk0fSx7ImlkIjoiMTU0MTA4ODUtMTUyNzIzMzk1XzEwNzc2MDAxMTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNzIzMzk1IiwiYiI6IjEwNzc2MDAxMTUiLCJoZWFkaW5nIjoxMDYuMzkyNzQwODI2NzE4NjUsImRpc3QiOjQ3LjEzN30seyJpZCI6IjE1NDEwODg1LTE1MjcyMzM5NV8xMDc3NTk5MzMxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjcyMzM5NSIsImIiOiIxMDc3NTk5MzMxIiwiaGVhZGluZyI6LTcxLjYzNDMzNzMzOTE2MTUyLCJkaXN0Ijo1OS44MTN9XX0sIjE1MjcyMzQwMCI6eyJpZCI6IjE1MjcyMzQwMCIsImxvbiI6LTk3Ljc0NTE3LCJsYXQiOjMwLjI2NTU1LCJlZGdlcyI6W3siaWQiOiIyMDQ5NzQ3MjMtMTUyNzIzNDAwXzE1MjQ0MjQxNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI3MjM0MDAiLCJiIjoiMTUyNDQyNDE0IiwiaGVhZGluZyI6LTE2MS4yNjExMzIxNjcyMzM2MywiZGlzdCI6MTAxLjg0NH1dfSwiMTUyNzIzNDAyIjp7ImlkIjoiMTUyNzIzNDAyIiwibG9uIjotOTcuNzQ1MTUsImxhdCI6MzAuMjY1NjIsImVkZ2VzIjpbeyJpZCI6IjIwNDk3NDcyMy0xNTI3MjM0MDJfMTUyNTAwNzA4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjcyMzQwMiIsImIiOiIxNTI1MDA3MDgiLCJoZWFkaW5nIjoxODAsImRpc3QiOjIuMjE3fV19LCIxNTI3MjM0MDMiOnsiaWQiOiIxNTI3MjM0MDMiLCJsb24iOi05Ny43NDQ0NywibGF0IjozMC4yNjc0NywiZWRnZXMiOlt7ImlkIjoiMjA0OTc0NzIzLTE1MjcyMzQwM180NDMxODIzMzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNzIzNDAzIiwiYiI6IjQ0MzE4MjMzNyIsImhlYWRpbmciOi0xNjIuNDgxODc5ODU5NTU1OSwiZGlzdCI6NTEuMTQ5fV19LCIxNTI3MjM0MDQiOnsiaWQiOiIxNTI3MjM0MDQiLCJsb24iOi05Ny43NDI0LCJsYXQiOjMwLjI3MzEsImVkZ2VzIjpbeyJpZCI6IjI3Mzk4MDM1LTE1MjcyMzQwNF8yMTY3MTYxMjczIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjcyMzQwNCIsImIiOiIyMTY3MTYxMjczIiwiaGVhZGluZyI6LTE2NS40MDQ3Mjk2NTk2NDY0OCwiZGlzdCI6MTEuNDU1fSx7ImlkIjoiMTM0NTY2NzQwLTE1MjcyMzQwNF8xODUxMTkyNTIzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI3MjM0MDQiLCJiIjoiMTg1MTE5MjUyMyIsImhlYWRpbmciOi01My40NzQ3NzIzOTcwODQ1OCwiZGlzdCI6MTYuNzYzfV19LCIxNTI3NTkzOTQiOnsiaWQiOiIxNTI3NTkzOTQiLCJsb24iOi05Ny43Mzg5NywibGF0IjozMC4yNzMzNCwiZWRnZXMiOlt7ImlkIjoiMTUwMzQ5OTg2LTE1Mjc1OTM5NF8yMDc5MDY0MDQxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1Mjc1OTM5NCIsImIiOiIyMDc5MDY0MDQxIiwiaGVhZGluZyI6MTA4LjIyMDIyMDk2NDk5NDEsImRpc3QiOjcuMDkxfV19LCIxNTI3NTkzOTgiOnsiaWQiOiIxNTI3NTkzOTgiLCJsb24iOi05Ny43MzU3OCwibGF0IjozMC4yNzI0NSwiZWRnZXMiOlt7ImlkIjoiMTM0Nzk2OTk4LTE1Mjc1OTM5OF8xNDgxNDIwNzY5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI3NTkzOTgiLCJiIjoiMTQ4MTQyMDc2OSIsImhlYWRpbmciOjExMS4wMDg0NjM5OTQwMjY5NCwiZGlzdCI6My4wOTJ9XX0sIjI4MDkxMTExNSI6eyJpZCI6IjI4MDkxMTExNSIsImxvbiI6LTk3Ljc0MDg0LCJsYXQiOjMwLjI3MjY3LCJlZGdlcyI6W3siaWQiOiIxNTM4NjEyOC0yODA5MTExMTVfMjE2NzE0NjIyNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjgwOTExMTE1IiwiYiI6IjIxNjcxNDYyMjciLCJoZWFkaW5nIjoyOTEuMDA4NTAyODA4OTM0ODUsImRpc3QiOjYuMTg0fSx7ImlkIjoiMTUzODYxMjgtMjgwOTExMTE1XzE1MjQ5NTYxNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjgwOTExMTE1IiwiYiI6IjE1MjQ5NTYxNSIsImhlYWRpbmciOjEwNy45ODc0Njg3NTgxNzI5LCJkaXN0IjoxMTEuMjgzfV19LCIzMDA3NjMxODciOnsiaWQiOiIzMDA3NjMxODciLCJsb24iOi05Ny43MzM5LCJsYXQiOjMwLjI3NjQ2LCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNzctMzAwNzYzMTg3XzE0MjExMzQ3NDEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjMwMDc2MzE4NyIsImIiOiIxNDIxMTM0NzQxIiwiaGVhZGluZyI6MjM0LjI0MjU5MzU5MDExNjEsImRpc3QiOjkuNDg1fSx7ImlkIjoiMTQ5NzEwMDc3LTMwMDc2MzE4N18xNDIxMTM0NzQ5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzMDA3NjMxODciLCJiIjoiMTQyMTEzNDc0OSIsImhlYWRpbmciOjU2LjY0MDE5NjE3NjI2NjU4LCJkaXN0IjoyNC4xOTJ9XX0sIjMwMDc2NTAwOSI6eyJpZCI6IjMwMDc2NTAwOSIsImxvbiI6LTk3LjczNTAzLCJsYXQiOjMwLjI3Mzg4LCJlZGdlcyI6W3siaWQiOiIyMDQ5ODk3NTctMzAwNzY1MDA5XzE1MjU2NjMzMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzAwNzY1MDA5IiwiYiI6IjE1MjU2NjMzMSIsImhlYWRpbmciOjE2OS45MDQ1OTMwOTY2ODQ0NywiZGlzdCI6NDMuOTE0fSx7ImlkIjoiMjA0OTg5NzU3LTMwMDc2NTAwOV8xMDg1ODAyNTU5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzMDA3NjUwMDkiLCJiIjoiMTA4NTgwMjU1OSIsImhlYWRpbmciOi05Ljg0ODAwOTg2OTQyOTkwNywiZGlzdCI6MTYuODc3fV19LCIzMDA3NjUwMzUiOnsiaWQiOiIzMDA3NjUwMzUiLCJsb24iOi05Ny43MzM5LCJsYXQiOjMwLjI3NTM0LCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNjMtMzAwNzY1MDM1XzM0MzMzNjkwMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzAwNzY1MDM1IiwiYiI6IjM0MzMzNjkwMyIsImhlYWRpbmciOjEwNy4yMzMzMTE1MjU5NTY5NCwiZGlzdCI6MjYuMTkzfSx7ImlkIjoiMTQ5NzEwMDczLTMwMDc2NTAzNV8xNjI2NTY4NjI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzMDA3NjUwMzUiLCJiIjoiMTYyNjU2ODYyNiIsImhlYWRpbmciOi0zNC4wMjIyNzE0MzM2NTAzNCwiZGlzdCI6MTIuMDM4fV19LCIzMzIyMjkzNTUiOnsiaWQiOiIzMzIyMjkzNTUiLCJsb24iOi05Ny43NTAwMSwibGF0IjozMC4yNjY5NywiZWRnZXMiOlt7ImlkIjoiMjA0OTY0NzY3LTMzMjIyOTM1NV8xNTIzOTM0NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMzMyMjI5MzU1IiwiYiI6IjE1MjM5MzQ3NSIsImhlYWRpbmciOjEwOC41MjgwNzIwMjc1ODAzNCwiZGlzdCI6NTUuODE4fV19LCIzMzIyMzIxMjYiOnsiaWQiOiIzMzIyMzIxMjYiLCJsb24iOi05Ny43NDAwMiwibGF0IjozMC4yNjUxNiwiZWRnZXMiOlt7ImlkIjoiMzA2MDIzMjQtMzMyMjMyMTI2XzE1MjQ0NzM1OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzMyMjMyMTI2IiwiYiI6IjE1MjQ0NzM1OSIsImhlYWRpbmciOjEzLjkyOTAxNzc4OTkxMTUzOSwiZGlzdCI6Ny45OTV9XX0sIjMzMjIzMjM5NyI6eyJpZCI6IjMzMjIzMjM5NyIsImxvbiI6LTk3LjczNTc1LCJsYXQiOjMwLjI2Mzk0LCJlZGdlcyI6W3siaWQiOiIxNzY4NzUxNzUtMzMyMjMyMzk3XzE1MjM4MDgzNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzMyMjMyMzk3IiwiYiI6IjE1MjM4MDgzNCIsImhlYWRpbmciOi0xNjIuMzQ0MzUyMDkwNjQ3NDgsImRpc3QiOjM0LjkwMX1dfSwiMzQzMzM1OTkzIjp7ImlkIjoiMzQzMzM1OTkzIiwibG9uIjotOTcuNzM0NTIsImxhdCI6MzAuMjc2MDIsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA3Ny0zNDMzMzU5OTNfMTQyMTEzNDczNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzQzMzM1OTkzIiwiYiI6IjE0MjExMzQ3MzciLCJoZWFkaW5nIjoyMTQuNzc0NDc2MzQ4MjgyNzUsImRpc3QiOjI2Ljk5Mn0seyJpZCI6IjE0OTcxMDA3Ny0zNDMzMzU5OTNfMTUyNTY2MzM2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzNDMzMzU5OTMiLCJiIjoiMTUyNTY2MzM2IiwiaGVhZGluZyI6NDIuOTIxMDM3ODYyNjUwNywiZGlzdCI6MjEuMTk0fV19LCIzNDMzMzYwMzAiOnsiaWQiOiIzNDMzMzYwMzAiLCJsb24iOi05Ny43MzU0LCJsYXQiOjMwLjI3NTcxLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU3Ni0zNDMzMzYwMzBfMTUyNDM1OTAwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzNDMzMzYwMzAiLCJiIjoiMTUyNDM1OTAwIiwiaGVhZGluZyI6MTA2LjYzMDk2NDQ0MDA4MDE1LCJkaXN0IjoyNy4xMTN9XX0sIjM0MzMzNjg4MyI6eyJpZCI6IjM0MzMzNjg4MyIsImxvbiI6LTk3LjczNDE0LCJsYXQiOjMwLjI3NjMyLCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNzctMzQzMzM2ODgzXzE1MjU2NjMzNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzQzMzM2ODgzIiwiYiI6IjE1MjU2NjMzNiIsImhlYWRpbmciOjIzMS4yODgwMTQ3NzU4NTg4NCwiZGlzdCI6MjguMzYxfSx7ImlkIjoiMTQ5NzEwMDc3LTM0MzMzNjg4M18xNDIxMTM0NzQxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzNDMzMzY4ODMiLCJiIjoiMTQyMTEzNDc0MSIsImhlYWRpbmciOjU3LjA1MzM3MzQ4NTQ5NDY0NiwiZGlzdCI6MTguMzQ1fV19LCIzNDMzMzY5MDMiOnsiaWQiOiIzNDMzMzY5MDMiLCJsb24iOi05Ny43MzM2NCwibGF0IjozMC4yNzUyNywiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDYzLTM0MzMzNjkwM18zMDA3NjUwMzUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjM0MzMzNjkwMyIsImIiOiIzMDA3NjUwMzUiLCJoZWFkaW5nIjoyODcuMjMzMzExNTI1OTU2OTQsImRpc3QiOjI2LjE5M30seyJpZCI6IjE0OTcxMDA2My0zNDMzMzY5MDNfMTQ0MDYwODMyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzQzMzM2OTAzIiwiYiI6IjE0NDA2MDgzMjYiLCJoZWFkaW5nIjoxMDIuOTc1OTY3MTIzMjk3NDIsImRpc3QiOjkuODc0fV19LCIzNDMzMzY5MDUiOnsiaWQiOiIzNDMzMzY5MDUiLCJsb24iOi05Ny43MzI3NCwibGF0IjozMC4yNzUwMywiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDYzLTM0MzMzNjkwNV8xNTI0MzU5MDQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjM0MzMzNjkwNSIsImIiOiIxNTI0MzU5MDQiLCJoZWFkaW5nIjoyODcuMDc4NzYyMTI4MzQsImRpc3QiOjE1LjA5OX0seyJpZCI6IjE0OTcxMDA2My0zNDMzMzY5MDVfMTA3Nzg0MDIwMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzQzMzM2OTA1IiwiYiI6IjEwNzc4NDAyMDIiLCJoZWFkaW5nIjoxMTEuMDA4OTY0NTM4MTg1OTYsImRpc3QiOjYuMTg0fV19LCIzNTk2Mjk5NDciOnsiaWQiOiIzNTk2Mjk5NDciLCJsb24iOi05Ny43MzU3MywibGF0IjozMC4yNjM5OSwiZWRnZXMiOlt7ImlkIjoiMTc2ODc1MTc1LTM1OTYyOTk0N18zMzIyMzIzOTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjM1OTYyOTk0NyIsImIiOiIzMzIyMzIzOTciLCJoZWFkaW5nIjotMTYwLjg1MTg2NjEzMjc4MjQ1LCJkaXN0Ijo1Ljg2N31dfSwiNDQyNzYxNTQ4Ijp7ImlkIjoiNDQyNzYxNTQ4IiwibG9uIjotOTcuNzM1OTQsImxhdCI6MzAuMjY3MTYsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTU4LTQ0Mjc2MTU0OF8xNTI2MDQyMTkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0Mjc2MTU0OCIsImIiOiIxNTI2MDQyMTkiLCJoZWFkaW5nIjoxMDYuMDY2ODY1Mjc2MTI5NzMsImRpc3QiOjE2LjAyMn1dfSwiNDQyNzYxNTUzIjp7ImlkIjoiNDQyNzYxNTUzIiwibG9uIjotOTcuNzM0OTEsImxhdCI6MzAuMjcxLCJlZGdlcyI6W3siaWQiOiIxMzQ3OTcwMDMtNDQyNzYxNTUzXzE1MjQ5NTYyMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQyNzYxNTUzIiwiYiI6IjE1MjQ5NTYyMiIsImhlYWRpbmciOjI4OC43MTg3ODE2MTMxNjMzLCJkaXN0IjozNC41NDN9LHsiaWQiOiIxNTI0Mjk3MTUtNDQyNzYxNTUzXzEwNzg4MDY2NTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0Mjc2MTU1MyIsImIiOiIxMDc4ODA2NjUzIiwiaGVhZGluZyI6MTA0LjM2MDI5MTMxNTAzNDQ3LCJkaXN0IjoxNy44Nzl9XX0sIjQ0Mjc2MTU2MyI6eyJpZCI6IjQ0Mjc2MTU2MyIsImxvbiI6LTk3LjczNTUzLCJsYXQiOjMwLjI3OTkxLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU4Mi00NDI3NjE1NjNfMTUyNTY3MTAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDI3NjE1NjMiLCJiIjoiMTUyNTY3MTAyIiwiaGVhZGluZyI6MTA3LjgyNDYyMjg2NDE5NDY3LCJkaXN0Ijo0My40NTh9LHsiaWQiOiIyMDQ5ODk3MzQtNDQyNzYxNTYzXzE0MjExMzQ5ODMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0Mjc2MTU2MyIsImIiOiIxNDIxMTM0OTgzIiwiaGVhZGluZyI6Mjk0Ljc0MzgyMzU0ODQ2MTY1LCJkaXN0Ijo1LjI5N31dfSwiNDQyNzYxNTY0Ijp7ImlkIjoiNDQyNzYxNTY0IiwibG9uIjotOTcuNzM1MywibGF0IjozMC4yODAyLCJlZGdlcyI6W3siaWQiOiIxODEwMjUwODItNDQyNzYxNTY0XzE1MjYzMTE5MCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiI0NDI3NjE1NjQiLCJiIjoiMTUyNjMxMTkwIiwiaGVhZGluZyI6LTk1Ljk3OTYwMzIwMTU4NDM3LCJkaXN0IjoxMC42NDF9XX0sIjQ0MzEyOTM5OCI6eyJpZCI6IjQ0MzEyOTM5OCIsImxvbiI6LTk3Ljc1MDAyLCJsYXQiOjMwLjI2ODUzLCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi00NDMxMjkzOThfMTUyNDUxNTUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzEyOTM5OCIsImIiOiIxNTI0NTE1NTAiLCJoZWFkaW5nIjoxOTYuMTM3MTY5NzU1Njc4OSwiZGlzdCI6NDguNDd9LHsiaWQiOiIxNTM5OTY4Mi00NDMxMjkzOThfMTUyNjM2ODc0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzEyOTM5OCIsImIiOiIxNTI2MzY4NzQiLCJoZWFkaW5nIjoxNS44MDM5OTQ2OTQ0ODk5NjcsImRpc3QiOjUyLjk5OH1dfSwiNDQzMTI5NDAzIjp7ImlkIjoiNDQzMTI5NDAzIiwibG9uIjotOTcuNzQ4NiwibGF0IjozMC4yNjYwNywiZWRnZXMiOlt7ImlkIjoiMTUzOTQ3NDYtNDQzMTI5NDAzXzE1MjQ0MjQyNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxMjk0MDMiLCJiIjoiMTUyNDQyNDI1IiwiaGVhZGluZyI6MTk4LjAzMDc3MTA2MzI4NzYsImRpc3QiOjU1Ljk1OX0seyJpZCI6IjE1Mzk0NzQ2LTQ0MzEyOTQwM18xNTI1MDA3MjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTI5NDAzIiwiYiI6IjE1MjUwMDcyMiIsImhlYWRpbmciOjE3Ljc4NTk1MjgwNzMzODY5LCJkaXN0Ijo1My41NTR9XX0sIjQ0MzEyOTQxMSI6eyJpZCI6IjQ0MzEyOTQxMSIsImxvbiI6LTk3Ljc0OTYzLCJsYXQiOjMwLjI2NjM1LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni00NDMxMjk0MTFfMTUyMzkzNDcwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzEyOTQxMSIsImIiOiIxNTIzOTM0NzAiLCJoZWFkaW5nIjoxOTcuMDg4OTI0OTE3MTU1MjgsImRpc3QiOjU1LjY2OX0seyJpZCI6IjE1Mzc2ODU2LTQ0MzEyOTQxMV8xNTIzOTM0NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTI5NDExIiwiYiI6IjE1MjM5MzQ3NSIsImhlYWRpbmciOjE3Ljc4NTkwNDgwNDc4OTAxNiwiZGlzdCI6NTMuNTU0fV19LCI0NDMxMjk0MTIiOnsiaWQiOiI0NDMxMjk0MTIiLCJsb24iOi05Ny43NDg5OCwibGF0IjozMC4yNjgyNCwiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtNDQzMTI5NDEyXzE1MjM5MzQ3OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxMjk0MTIiLCJiIjoiMTUyMzkzNDc5IiwiaGVhZGluZyI6MTk3LjY4NTU3MzkxNTg0NzcsImRpc3QiOjU3LjAxNX0seyJpZCI6IjE1Mzc2ODU2LTQ0MzEyOTQxMl8xNTIzOTM0ODEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTI5NDEyIiwiYiI6IjE1MjM5MzQ4MSIsImhlYWRpbmciOjE5LjE0NzI2MTYzMjA2MDgzMiwiZGlzdCI6NTIuODA3fV19LCI0NDMxODIzMzMiOnsiaWQiOiI0NDMxODIzMzMiLCJsb24iOi05Ny43NDI5MSwibGF0IjozMC4yNzE2NywiZWRnZXMiOlt7ImlkIjoiMjczOTE2NDYtNDQzMTgyMzMzXzE1MjY3OTQ2NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzMzMiLCJiIjoiMTUyNjc5NDY2IiwiaGVhZGluZyI6LTE2My4xNTQzNTMxNTY4NjM5MiwiZGlzdCI6NDkuODA2fV19LCI0NDMxODIzMzQiOnsiaWQiOiI0NDMxODIzMzQiLCJsb24iOi05Ny43NDMyNCwibGF0IjozMC4yNzA3NCwiZWRnZXMiOlt7ImlkIjoiMjczOTE2NDYtNDQzMTgyMzM0XzE1MjM5ODIxNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzMzQiLCJiIjoiMTUyMzk4MjE3IiwiaGVhZGluZyI6LTE2Mi45MTE3MTYyMTU0Mzg2MiwiZGlzdCI6NTUuNjY5fV19LCI0NDMxODIzMzUiOnsiaWQiOiI0NDMxODIzMzUiLCJsb24iOi05Ny43NDM1NywibGF0IjozMC4yNjk4NCwiZWRnZXMiOlt7ImlkIjoiMjA0OTc0NzIzLTQ0MzE4MjMzNV8xNTI1MTI4MzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzM1IiwiYiI6IjE1MjUxMjgzOSIsImhlYWRpbmciOi0xNjAuODUyODQ4MDc0NjA4NiwiZGlzdCI6NTguNjc0fV19LCI0NDMxODIzMzYiOnsiaWQiOiI0NDMxODIzMzYiLCJsb24iOi05Ny43NDM5NCwibGF0IjozMC4yNjg5LCJlZGdlcyI6W3siaWQiOiIyMDQ5NzQ3MjMtNDQzMTgyMzM2XzE1MjYyMDk5MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzMzYiLCJiIjoiMTUyNjIwOTkyIiwiaGVhZGluZyI6LTE2Mi4zMTQ0NDc5NTYxNDM4NSwiZGlzdCI6NTcuMDE1fV19LCI0NDMxODIzMzciOnsiaWQiOiI0NDMxODIzMzciLCJsb24iOi05Ny43NDQ2MywibGF0IjozMC4yNjcwMywiZWRnZXMiOlt7ImlkIjoiMjA0OTc0NzIzLTQ0MzE4MjMzN18xNTI0NTE1NDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzM3IiwiYiI6IjE1MjQ1MTU0MSIsImhlYWRpbmciOi0xNjEuNjExMjQwMzI4MDI4NCwiZGlzdCI6NTQuOTA2fV19LCI0NDMxODIzMzgiOnsiaWQiOiI0NDMxODIzMzgiLCJsb24iOi05Ny43NDQ5OCwibGF0IjozMC4yNjYwOSwiZWRnZXMiOlt7ImlkIjoiMjA0OTc0NzIzLTQ0MzE4MjMzOF8xNTI3MjM0MDIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzM4IiwiYiI6IjE1MjcyMzQwMiIsImhlYWRpbmciOi0xNjIuNTY5MTY2MTc0ODc5MDYsImRpc3QiOjU0LjYxMX1dfSwiNDQzMTgyMzM5Ijp7ImlkIjoiNDQzMTgyMzM5IiwibG9uIjotOTcuNzQ4NTksImxhdCI6MzAuMjY5MTcsImVkZ2VzIjpbeyJpZCI6IjE1Mzc2ODU2LTQ0MzE4MjMzOV8xNTIzOTM0ODEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzM5IiwiYiI6IjE1MjM5MzQ4MSIsImhlYWRpbmciOjIwMC43OTQ0NTcwNzA2ODQzLCJkaXN0Ijo1Ni45MTl9LHsiaWQiOiIxNTM3Njg1Ni00NDMxODIzMzlfMTUyMzkzNDgyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjMzOSIsImIiOiIxNTIzOTM0ODIiLCJoZWFkaW5nIjoxOC4xNTQ5NzkxMzMzNTA2MjIsImRpc3QiOjUyLjQ5OX1dfSwiNDQzMTgyMzQwIjp7ImlkIjoiNDQzMTgyMzQwIiwibG9uIjotOTcuNzQ4MjMsImxhdCI6MzAuMjcwMTEsImVkZ2VzIjpbeyJpZCI6IjE1Mzc2ODU2LTQ0MzE4MjM0MF8xNTIzOTM0ODIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQwIiwiYiI6IjE1MjM5MzQ4MiIsImhlYWRpbmciOjE5OC42MDE3NjM1NTk4ODU0LCJkaXN0Ijo1Ny4zMTR9LHsiaWQiOiIxNTM3Njg1Ni00NDMxODIzNDBfMTUyMzkzNDgzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0MCIsImIiOiIxNTIzOTM0ODMiLCJoZWFkaW5nIjoxNy43ODUyNjAxNjIyNzk3LCJkaXN0Ijo1My41NTR9XX0sIjQ0MzE4MjM0MSI6eyJpZCI6IjQ0MzE4MjM0MSIsImxvbiI6LTk3Ljc0Nzg5LCJsYXQiOjMwLjI3MTA0LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni00NDMxODIzNDFfMTUyMzkzNDgzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0MSIsImIiOiIxNTIzOTM0ODMiLCJoZWFkaW5nIjoxOTcuNDI5OTE0MjU5NTMxNzgsImRpc3QiOjU0LjYxfSx7ImlkIjoiMTUzNzY4NTYtNDQzMTgyMzQxXzE1MjM5MzQ4NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDEiLCJiIjoiMTUyMzkzNDg1IiwiaGVhZGluZyI6MTYuNDgzNzQ2OTEwMjYwOTI2LCJkaXN0Ijo1MC44Njh9XX0sIjQ0MzE4MjM0MiI6eyJpZCI6IjQ0MzE4MjM0MiIsImxvbiI6LTk3Ljc0NzU3LCJsYXQiOjMwLjI3MTk0LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni00NDMxODIzNDJfMTUyMzkzNDg1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0MiIsImIiOiIxNTIzOTM0ODUiLCJoZWFkaW5nIjoxOTcuNzg1MDI1MjU3NzAyNDQsImRpc3QiOjUzLjU1NH0seyJpZCI6IjE1Mzc2ODU2LTQ0MzE4MjM0Ml8xNTIzOTM0ODciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQyIiwiYiI6IjE1MjM5MzQ4NyIsImhlYWRpbmciOjE3LjM1MjU5MTEyNzI3ODQ2LCJkaXN0Ijo1OC4wNzJ9XX0sIjQ0MzE4MjM0MyI6eyJpZCI6IjQ0MzE4MjM0MyIsImxvbiI6LTk3Ljc0NzIyLCJsYXQiOjMwLjI3Mjg5LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni00NDMxODIzNDNfMTUyMzkzNDg3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0MyIsImIiOiIxNTIzOTM0ODciLCJoZWFkaW5nIjoxOTguMTU0NDA4Mzg2MzM4NywiZGlzdCI6NTIuNDk5fSx7ImlkIjoiMTUzNzY4NTYtNDQzMTgyMzQzXzE1MjM5MzQ4OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDMiLCJiIjoiMTUyMzkzNDg5IiwiaGVhZGluZyI6MTcuNjg0Njk2OTI0MDg4NDg4LCJkaXN0Ijo1Ny4wMTR9XX0sIjQ0MzE4MjM0NCI6eyJpZCI6IjQ0MzE4MjM0NCIsImxvbiI6LTk3Ljc0NjUsImxhdCI6MzAuMjcxNjMsImVkZ2VzIjpbeyJpZCI6IjI3NDAxMjQzLTQ0MzE4MjM0NF8xNTIzOTgyMjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQ0IiwiYiI6IjE1MjM5ODIyNyIsImhlYWRpbmciOjE5Ni43OTk1MDQyNDY3ODI4MiwiZGlzdCI6NTMuMjY4fSx7ImlkIjoiMjc0MDEyNDMtNDQzMTgyMzQ0XzE1MjU4MzM5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDQiLCJiIjoiMTUyNTgzMzk1IiwiaGVhZGluZyI6MTYuNDQyMDYyNjM3NjEzMTQ4LCJkaXN0Ijo1Ny43OTJ9XX0sIjQ0MzE4MjM0NiI6eyJpZCI6IjQ0MzE4MjM0NiIsImxvbiI6LTk3Ljc0NjE1LCJsYXQiOjMwLjI3MjYxLCJlZGdlcyI6W3siaWQiOiIyNzQwMTI0My00NDMxODIzNDZfMTUyNTgzMzk1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0NiIsImIiOiIxNTI1ODMzOTUiLCJoZWFkaW5nIjoxOTguMDI5NjM2NDE2MzYzMTMsImRpc3QiOjU1Ljk1OX0seyJpZCI6IjI3NDAxMjQzLTQ0MzE4MjM0Nl8xNTI0ODAyMTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQ2IiwiYiI6IjE1MjQ4MDIxNCIsImhlYWRpbmciOjE4Ljc1OTYzNzIxNDQ3NDgzNiwiZGlzdCI6NTMuODU1fV19LCI0NDMxODIzNDciOnsiaWQiOiI0NDMxODIzNDciLCJsb24iOi05Ny43NDk2OSwibGF0IjozMC4yNjk0NywiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItNDQzMTgyMzQ3XzE1MjYzNjg3NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDciLCJiIjoiMTUyNjM2ODc0IiwiaGVhZGluZyI6MTk4LjAzMDE4MTIxNTI1MzMsImRpc3QiOjU1Ljk1OX0seyJpZCI6IjE1Mzk5NjgyLTQ0MzE4MjM0N18xNTI2MjA5OTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQ3IiwiYiI6IjE1MjYyMDk5NCIsImhlYWRpbmciOjE3LjQzMDA5OTU3ODAwMjU2NSwiZGlzdCI6NTQuNjF9XX0sIjQ0MzE4MjM0OCI6eyJpZCI6IjQ0MzE4MjM0OCIsImxvbiI6LTk3Ljc0OTMzLCJsYXQiOjMwLjI3MDQyLCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi00NDMxODIzNDhfMTUyNjIwOTk0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0OCIsImIiOiIxNTI2MjA5OTQiLCJoZWFkaW5nIjoxOTguOTYxODExOTQxNDQyOCwiZGlzdCI6NTYuMjY1fSx7ImlkIjoiMTUzOTk2ODItNDQzMTgyMzQ4XzE1MjUxMjg0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDgiLCJiIjoiMTUyNTEyODQ2IiwiaGVhZGluZyI6MTguNzYwMDMwMzcxNzA5NTU4LCJkaXN0Ijo1My44NTV9XX0sIjQ0MzE4MjM0OSI6eyJpZCI6IjQ0MzE4MjM0OSIsImxvbiI6LTk3Ljc0ODk4LCJsYXQiOjMwLjI3MTM0LCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi00NDMxODIzNDlfMTUyNTEyODQ2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0OSIsImIiOiIxNTI1MTI4NDYiLCJoZWFkaW5nIjoxOTcuNzg1MTI4MTM1NjY0NSwiZGlzdCI6NTMuNTU0fSx7ImlkIjoiMTUzOTk2ODItNDQzMTgyMzQ5XzE1MjM5ODIzMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDkiLCJiIjoiMTUyMzk4MjMwIiwiaGVhZGluZyI6MTguNzU5ODY1MjEyNzc2MTE2LCJkaXN0Ijo1My44NTV9XX0sIjQ0MzE4MjM1MCI6eyJpZCI6IjQ0MzE4MjM1MCIsImxvbiI6LTk3Ljc0ODY1LCJsYXQiOjMwLjI3MjI0LCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi00NDMxODIzNTBfMTUyMzk4MjMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM1MCIsImIiOiIxNTIzOTgyMzAiLCJoZWFkaW5nIjoxOTYuNDgzNjI1MDA2NTA0OTgsImRpc3QiOjUwLjg2OH0seyJpZCI6IjE1Mzk5NjgyLTQ0MzE4MjM1MF8xNTI2MzY4NzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzUwIiwiYiI6IjE1MjYzNjg3NyIsImhlYWRpbmciOjE3LjM1MjU0MDc3ODE3NjU4MiwiZGlzdCI6NTguMDcyfV19LCI0NDMxODIzNTEiOnsiaWQiOiI0NDMxODIzNTEiLCJsb24iOi05Ny43NDgzLCJsYXQiOjMwLjI3MzE5LCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi00NDMxODIzNTFfMTUyNjM2ODc3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM1MSIsImIiOiIxNTI2MzY4NzciLCJoZWFkaW5nIjoxOTguMTU0MzU2MDIxMjE0NDUsImRpc3QiOjUyLjQ5OX0seyJpZCI6IjE1Mzk5NjgyLTQ0MzE4MjM1MV8xNTI0ODAyMTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzUxIiwiYiI6IjE1MjQ4MDIxNiIsImhlYWRpbmciOjE4LjM4NzQ5ODk5NTI3NzkxNiwiZGlzdCI6NTQuOTA2fV19LCI0NDMxODIzNTIiOnsiaWQiOiI0NDMxODIzNTIiLCJsb24iOi05Ny43NDc5NiwibGF0IjozMC4yNzQxMywiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItNDQzMTgyMzUyXzE1MjQ4MDIxNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNTIiLCJiIjoiMTUyNDgwMjE2IiwiaGVhZGluZyI6MTk2LjQ2MTIwNzQxOTk1NDA0LCJkaXN0Ijo1NC4zM30seyJpZCI6IjE1Mzk5NjgyLTQ0MzE4MjM1Ml8yMTI1NDY4NjYzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM1MiIsImIiOiIyMTI1NDY4NjYzIiwiaGVhZGluZyI6MTguMDI5MzAzODg2MzIzMTU2LCJkaXN0Ijo0Ni42MzN9XX0sIjQ0MzE4NTEyNiI6eyJpZCI6IjQ0MzE4NTEyNiIsImxvbiI6LTk3Ljc0MjQ1LCJsYXQiOjMwLjI2NjkyLCJlZGdlcyI6W3siaWQiOiIxNTM4ODE3NS00NDMxODUxMjZfMTUyNTE2NjQwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODUxMjYiLCJiIjoiMTUyNTE2NjQwIiwiaGVhZGluZyI6MTA3LjUzMDE1MTcxMDIwNjU0LCJkaXN0Ijo2Mi41Njd9XX0sIjQ0MzE4NTEyOSI6eyJpZCI6IjQ0MzE4NTEyOSIsImxvbiI6LTk3Ljc0NDU0LCJsYXQiOjMwLjI2NTQyLCJlZGdlcyI6W3siaWQiOiIzMDUxMTM4OS00NDMxODUxMjlfMTUyNTAwNzA4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTEyOSIsImIiOiIxNTI1MDA3MDgiLCJoZWFkaW5nIjotNzEuMjI0ODk0OTUzNjY3NCwiZGlzdCI6NjEuOTk4fV19LCI0NDMxODUxMzAiOnsiaWQiOiI0NDMxODUxMzAiLCJsb24iOi05Ny43NDMxNSwibGF0IjozMC4yNjUwNCwiZWRnZXMiOlt7ImlkIjoiMjc1Mzk4MDIxLTQ0MzE4NTEzMF8xNTI0OTY5MzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTMwIiwiYiI6IjE1MjQ5NjkzNyIsImhlYWRpbmciOi03Mi4wMjA5OTc3ODMyNTQ5OCwiZGlzdCI6NzEuODN9XX0sIjQ0MzE4NTEzMSI6eyJpZCI6IjQ0MzE4NTEzMSIsImxvbiI6LTk3Ljc0NDE3LCJsYXQiOjMwLjI2NjM5LCJlZGdlcyI6W3siaWQiOiIxNTM4Mjc2OS00NDMxODUxMzFfMTUyNDQ3MzUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTEzMSIsImIiOiIxNTI0NDczNTAiLCJoZWFkaW5nIjoxMDcuODQzMDMwOTE1NjMyOCwiZGlzdCI6NjguNzQxfSx7ImlkIjoiMTUzODI3NjktNDQzMTg1MTMxXzE1MjQ1MTU0MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODUxMzEiLCJiIjoiMTUyNDUxNTQxIiwiaGVhZGluZyI6LTcyLjk4NTMwNjI5MzcxNjk3LCJkaXN0Ijo2NC40MDV9XX0sIjQ0MzE4NTEzMiI6eyJpZCI6IjQ0MzE4NTEzMiIsImxvbiI6LTk3Ljc0MzQ4LCJsYXQiOjMwLjI2NDEyLCJlZGdlcyI6W3siaWQiOiIxNTM5ODE2Ny00NDMxODUxMzJfMTUyNDQyNDEyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTEzMiIsImIiOiIxNTI0NDI0MTIiLCJoZWFkaW5nIjoyODcuOTc4NDg1MTg5ODA2LCJkaXN0Ijo3MS44M30seyJpZCI6IjE1Mzk4MTY3LTQ0MzE4NTEzMl8xNTI2MjA1NTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTMyIiwiYiI6IjE1MjYyMDU1OCIsImhlYWRpbmciOjEwOC40OTI0NTg1NTI3MjU4OCwiZGlzdCI6NjIuOTExfV19LCI0NDMxODUxMzMiOnsiaWQiOiI0NDMxODUxMzMiLCJsb24iOi05Ny43Mzk5MSwibGF0IjozMC4yNzE4NywiZWRnZXMiOlt7ImlkIjoiMjA0OTY0NjY4LTQ0MzE4NTEzM18xNTI0OTU2MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTMzIiwiYiI6IjE1MjQ5NTYxNSIsImhlYWRpbmciOjE2Ljc1ODkzNTA5NjAzMDM1MywiZGlzdCI6NTYuNzI5fV19LCI0NDMxODUxMzYiOnsiaWQiOiI0NDMxODUxMzYiLCJsb24iOi05Ny43NDE3NiwibGF0IjozMC4yNjg3NywiZWRnZXMiOlt7ImlkIjoiMTU0MDQyODYtNDQzMTg1MTM2XzE1MjYyMDU2OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg1MTM2IiwiYiI6IjE1MjYyMDU2OSIsImhlYWRpbmciOjEwNi43Njc3NjI0Mzc5ODkzNSwiZGlzdCI6NjUuMzI0fV19LCI0NDMxODUxMzciOnsiaWQiOiI0NDMxODUxMzciLCJsb24iOi05Ny43NDMxMywibGF0IjozMC4yNjkxNiwiZWRnZXMiOlt7ImlkIjoiMjAxNjgwNDg0LTQ0MzE4NTEzN18xNTI1MTI4MzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTM3IiwiYiI6IjE1MjUxMjgzNSIsImhlYWRpbmciOjEwOS4yNDQ0MDcxMjc3NjM5OSwiZGlzdCI6NjcuMjY3fV19LCI0NDMxODUxMzgiOnsiaWQiOiI0NDMxODUxMzgiLCJsb24iOi05Ny43NDE0NCwibGF0IjozMC4yNjk3MSwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NjAtNDQzMTg1MTM4XzE1MjM5ODIxNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg1MTM4IiwiYiI6IjE1MjM5ODIxNCIsImhlYWRpbmciOi03MS45MDcyODcxODM5MTU2NywiZGlzdCI6NjcuODI0fV19LCI0NDMxODUxMzkiOnsiaWQiOiI0NDMxODUxMzkiLCJsb24iOi05Ny43NDI4MiwibGF0IjozMC4yNzAxLCJlZGdlcyI6W3siaWQiOiIxNTM3NzMwOS00NDMxODUxMzlfMTUyMzk4MjE3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTEzOSIsImIiOiIxNTIzOTgyMTciLCJoZWFkaW5nIjotNzIuNjQ5NjQyMTIwODY5NTksImRpc3QiOjU5LjQ3OH1dfSwiNDQzMTg1MTQwIjp7ImlkIjoiNDQzMTg1MTQwIiwibG9uIjotOTcuNzQyNDQsImxhdCI6MzAuMjcxMDYsImVkZ2VzIjpbeyJpZCI6IjIwNzUxOTIwMy00NDMxODUxNDBfMTUyNDYwMjIxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTE0MCIsImIiOiIxNTI0NjAyMjEiLCJoZWFkaW5nIjoxMDkuMzIyMjMxMjA2NjczMywiZGlzdCI6NzAuMzU3fV19LCI0NDMxODUxNDEiOnsiaWQiOiI0NDMxODUxNDEiLCJsb24iOi05Ny43NDIxLCJsYXQiOjMwLjI3MTk5LCJlZGdlcyI6W3siaWQiOiIxNTM4NDgzMi00NDMxODUxNDFfMTUyNDgwMjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTE0MSIsImIiOiIxNTI0ODAyMDkiLCJoZWFkaW5nIjotNzIuMDQ2MTAzNjA0NTY1OTMsImRpc3QiOjY0LjczNH1dfSwiNDQzMTg1MTQyIjp7ImlkIjoiNDQzMTg1MTQyIiwibG9uIjotOTcuNzQxMDgsImxhdCI6MzAuMjcwNjUsImVkZ2VzIjpbeyJpZCI6IjE1MzgzNDc0LTQ0MzE4NTE0Ml8xNTI0NjAyMjMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTQyIiwiYiI6IjE1MjQ2MDIyMyIsImhlYWRpbmciOjEwNy40NDI3MjM4MTA0NjAyLCJkaXN0Ijo2Ni41Njl9XX0sIjQ0MzE4NTE0MyI6eyJpZCI6IjQ0MzE4NTE0MyIsImxvbiI6LTk3Ljc0MDczLCJsYXQiOjMwLjI3MTYsImVkZ2VzIjpbeyJpZCI6IjIwNDk2NDY5MC00NDMxODUxNDNfMTUyNDgwMjA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTE0MyIsImIiOiIxNTI0ODAyMDciLCJoZWFkaW5nIjotNzIuMDE5ODYyNDQ3MjYyNTQsImRpc3QiOjcxLjgyNn1dfSwiNDQzMTg1MTQ0Ijp7ImlkIjoiNDQzMTg1MTQ0IiwibG9uIjotOTcuNzM3NzQsImxhdCI6MzAuMjcxMjksImVkZ2VzIjpbeyJpZCI6IjIwNDk4MTU2OS00NDMxODUxNDRfMTUyNDk1NjE4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODUxNDQiLCJiIjoiMTUyNDk1NjE4IiwiaGVhZGluZyI6MTguMzg3ODM0MzAwNjY0MjUsImRpc3QiOjU0LjkwNn1dfSwiNDQzMTg1MTQ1Ijp7ImlkIjoiNDQzMTg1MTQ1IiwibG9uIjotOTcuNzM4ODIsImxhdCI6MzAuMjcxNTgsImVkZ2VzIjpbeyJpZCI6IjIwMTY4MDQ4My00NDMxODUxNDVfMTUyNjA4ODc0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODUxNDUiLCJiIjoiMTUyNjA4ODc0IiwiaGVhZGluZyI6LTE2Mi41NzAwOTEwMjE1OTYyLCJkaXN0Ijo1NC42MX1dfSwiNDQzMTg2OTM5Ijp7ImlkIjoiNDQzMTg2OTM5IiwibG9uIjotOTcuNzQzMDMsImxhdCI6MzAuMjYzNDgsImVkZ2VzIjpbeyJpZCI6IjMyMDY1NTI3LTQ0MzE4NjkzOV8xNTI2MjA1NTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg2OTM5IiwiYiI6IjE1MjYyMDU1OCIsImhlYWRpbmciOjE3Ljc4NjM5NjgxMDgyNTk3MywiZGlzdCI6NTMuNTU0fV19LCI0NDMxODY5NDIiOnsiaWQiOiI0NDMxODY5NDIiLCJsb24iOi05Ny43NDI2NiwibGF0IjozMC4yNjQ0MywiZWRnZXMiOlt7ImlkIjoiMzIwNjU1MjctNDQzMTg2OTQyXzE1MjYyMDU2MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODY5NDIiLCJiIjoiMTUyNjIwNTYzIiwiaGVhZGluZyI6MTcuMzA3Mzg2MzYyOTA3MDUzLCJkaXN0Ijo0NS4yODV9XX0sIjQ0MzE4Njk0NCI6eyJpZCI6IjQ0MzE4Njk0NCIsImxvbiI6LTk3Ljc0MjMyLCJsYXQiOjMwLjI2NTM2LCJlZGdlcyI6W3siaWQiOiIzMjA2NTUyNy00NDMxODY5NDRfMTUyNDQ3MzUzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4Njk0NCIsImIiOiIxNTI0NDczNTMiLCJoZWFkaW5nIjoxNy40MzA3OTE5NDAzNjU3MiwiZGlzdCI6NTQuNjExfV19LCI0NDMxODY5NTQiOnsiaWQiOiI0NDMxODY5NTQiLCJsb24iOi05Ny43NDE5OSwibGF0IjozMC4yNjYyOSwiZWRnZXMiOlt7ImlkIjoiMzIwNjU1MjctNDQzMTg2OTU0XzE1MjUxNjY0MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODY5NTQiLCJiIjoiMTUyNTE2NjQwIiwiaGVhZGluZyI6MTYuODAwMzAwMTg5NzI3NzQsImRpc3QiOjUzLjI2OH1dfSwiNDQzMTg2OTU3Ijp7ImlkIjoiNDQzMTg2OTU3IiwibG9uIjotOTcuNzQxNjQsImxhdCI6MzAuMjY3MjEsImVkZ2VzIjpbeyJpZCI6IjIwNDk5ODY2OC00NDMxODY5NTdfMjE3Nzc5MDIzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODY5NTciLCJiIjoiMjE3Nzc5MDIzNyIsImhlYWRpbmciOjE5LjE0NzQ4ODE3ODk3MjgxLCJkaXN0IjoyOS4zMzd9XX0sIjQ0MzE4Njk2MCI6eyJpZCI6IjQ0MzE4Njk2MCIsImxvbiI6LTk3Ljc0MTI4LCJsYXQiOjMwLjI2ODE0LCJlZGdlcyI6W3siaWQiOiIyMDc1MjQxMTYtNDQzMTg2OTYwXzE1MjYyMDU2OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODY5NjAiLCJiIjoiMTUyNjIwNTY5IiwiaGVhZGluZyI6MTcuNzg1NTk3OTIyNzc3NDQsImRpc3QiOjUzLjU1NH1dfSwiNDQzMTg2OTYzIjp7ImlkIjoiNDQzMTg2OTYzIiwibG9uIjotOTcuNzQwNiwibGF0IjozMC4yNywiZWRnZXMiOlt7ImlkIjoiMjA0OTk4NjY5LTQ0MzE4Njk2M18xNTI0NjAyMjMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg2OTYzIiwiYiI6IjE1MjQ2MDIyMyIsImhlYWRpbmciOjE4LjM4ODA2MTk0Mzc4MTU4MywiZGlzdCI6NTQuOTA2fV19LCI0NDMxODY5NjYiOnsiaWQiOiI0NDMxODY5NjYiLCJsb24iOi05Ny43NDAyNiwibGF0IjozMC4yNzA5MiwiZWRnZXMiOlt7ImlkIjoiMjA0OTk4NjY5LTQ0MzE4Njk2Nl8xNTI2MDg4NzIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg2OTY2IiwiYiI6IjE1MjYwODg3MiIsImhlYWRpbmciOjE3LjM1Mjc2MjMxMTQ4NjA0NiwiZGlzdCI6NTguMDcyfV19LCI0NDMxODY5ODMiOnsiaWQiOiI0NDMxODY5ODMiLCJsb24iOi05Ny43Mzk4MywibGF0IjozMC4yNjU2OSwiZWRnZXMiOlt7ImlkIjoiMzAxNDg3NDAtNDQzMTg2OTgzXzE1MjUxNjY0NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg2OTgzIiwiYiI6IjE1MjUxNjY0NCIsImhlYWRpbmciOjE3LjUxODI2NjIwOTc2MjM5LCJkaXN0Ijo1MS4xNDl9XX0sIjQ0MzE4Njk4NiI6eyJpZCI6IjQ0MzE4Njk4NiIsImxvbiI6LTk3LjczOTUsImxhdCI6MzAuMjY2NjEsImVkZ2VzIjpbeyJpZCI6IjMwMTQ4NzQwLTQ0MzE4Njk4Nl8xNTI0MDE5MDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4Njk4NiIsImIiOiIxNTI0MDE5MDUiLCJoZWFkaW5nIjoxOC4xNTU0MjU5MTY3NDk2NywiZGlzdCI6NTIuNDk5fV19LCI0NDMxODY5ODgiOnsiaWQiOiI0NDMxODY5ODgiLCJsb24iOi05Ny43MzkxMywibGF0IjozMC4yNjc1NSwiZWRnZXMiOlt7ImlkIjoiMjA0OTgxNTY5LTQ0MzE4Njk4OF8xNTI1Mzk2NDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4Njk4OCIsImIiOiIxNTI1Mzk2NDAiLCJoZWFkaW5nIjoyMC4xMjc3MjY1MzUxNjIyOTIsImRpc3QiOjUzLjEzfV19LCI0NDMxODY5OTAiOnsiaWQiOiI0NDMxODY5OTAiLCJsb24iOi05Ny43Mzg3NywibGF0IjozMC4yNjg0NiwiZWRnZXMiOlt7ImlkIjoiMjA0OTgxNTY5LTQ0MzE4Njk5MF8xNTI1Mzk2NDMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4Njk5MCIsImIiOiIxNTI1Mzk2NDMiLCJoZWFkaW5nIjoxNy43ODU1NDMwNTg2MzQxNSwiZGlzdCI6NTMuNTU0fV19LCI0NDMxODY5OTMiOnsiaWQiOiI0NDMxODY5OTMiLCJsb24iOi05Ny43Mzg0MywibGF0IjozMC4yNjk0MSwiZWRnZXMiOlt7ImlkIjoiMjA0OTgxNTY5LTQ0MzE4Njk5M18xNTI0NjAyMjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4Njk5MyIsImIiOiIxNTI0NjAyMjgiLCJoZWFkaW5nIjoxNy4wODgzMzg4Mjc4MzYwMjYsImRpc3QiOjU1LjY2OX1dfSwiNDQzMTg3MDAyIjp7ImlkIjoiNDQzMTg3MDAyIiwibG9uIjotOTcuNzM5MTYsImxhdCI6MzAuMjcwNjMsImVkZ2VzIjpbeyJpZCI6IjIwMTY4MDQ4My00NDMxODcwMDJfMTUyNDYwMjI1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwMDIiLCJiIjoiMTUyNDYwMjI1IiwiaGVhZGluZyI6LTE2Mi4yMTQ2NjQ0MzM3NDA4NCwiZGlzdCI6NTMuNTU0fV19LCI0NDMxODcwMDQiOnsiaWQiOiI0NDMxODcwMDQiLCJsb24iOi05Ny43Mzk1MSwibGF0IjozMC4yNjk3LCJlZGdlcyI6W3siaWQiOiIyMDE2ODA0ODMtNDQzMTg3MDA0XzE1MjU4MDk4MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDA0IiwiYiI6IjE1MjU4MDk4MyIsImhlYWRpbmciOi0xNjEuNjExNzExNDQ4MjMxOTcsImRpc3QiOjU0LjkwNn1dfSwiNDQzMTg3MDA3Ijp7ImlkIjoiNDQzMTg3MDA3IiwibG9uIjotOTcuNzM5ODYsImxhdCI6MzAuMjY4NzcsImVkZ2VzIjpbeyJpZCI6IjIwMTY4MDQ4My00NDMxODcwMDdfMTUyNjMxMTgwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwMDciLCJiIjoiMTUyNjMxMTgwIiwiaGVhZGluZyI6LTE2Mi45MTEzOTAwNDU1NzM5LCJkaXN0Ijo1NS42Njl9XX0sIjQ0MzE4NzAxMCI6eyJpZCI6IjQ0MzE4NzAxMCIsImxvbiI6LTk3Ljc0MDIsImxhdCI6MzAuMjY3ODQsImVkZ2VzIjpbeyJpZCI6IjIwMTY4MDQ4My00NDMxODcwMTBfMTUyNDAxOTAxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwMTAiLCJiIjoiMTUyNDAxOTAxIiwiaGVhZGluZyI6LTE2MC42NjM4Mzg5OTEyNDg3OCwiZGlzdCI6NTUuMjE3fV19LCI0NDMxODcwMTIiOnsiaWQiOiI0NDMxODcwMTIiLCJsb24iOi05Ny43NDA1NywibGF0IjozMC4yNjY5MiwiZWRnZXMiOlt7ImlkIjoiMjAxNjgwNDgzLTQ0MzE4NzAxMl8xNTI1MTY2NDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NzAxMiIsImIiOiIxNTI1MTY2NDIiLCJoZWFkaW5nIjotMTYxLjAzNzQ1ODI4Mjk3NDc0LCJkaXN0Ijo1Ni4yNjV9XX0sIjQ0MzE4NzAxNSI6eyJpZCI6IjQ0MzE4NzAxNSIsImxvbiI6LTk3Ljc0MDkyLCJsYXQiOjMwLjI2NTk5LCJlZGdlcyI6W3siaWQiOiIyMDQ5ODE1NjgtNDQzMTg3MDE1XzE1MjQ0NzM1NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDE1IiwiYiI6IjE1MjQ0NzM1NiIsImhlYWRpbmciOi0xNjIuMjEzODY4OTM1NjE1NDcsImRpc3QiOjUzLjU1NH1dfSwiNDQzMTg3MDE3Ijp7ImlkIjoiNDQzMTg3MDE3IiwibG9uIjotOTcuNzQxMjgsImxhdCI6MzAuMjY1MDYsImVkZ2VzIjpbeyJpZCI6IjIwNDk4MTU2OC00NDMxODcwMTdfMTUyNDk2OTQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwMTciLCJiIjoiMTUyNDk2OTQ2IiwiaGVhZGluZyI6LTE2MS45Njg5NjMwMTAxMDA3NywiZGlzdCI6NTUuOTZ9XX0sIjQ0MzE4NzAyMCI6eyJpZCI6IjQ0MzE4NzAyMCIsImxvbiI6LTk3Ljc0MTYxLCJsYXQiOjMwLjI2NDEzLCJlZGdlcyI6W3siaWQiOiIyMDQ5ODE1NjgtNDQzMTg3MDIwXzE1MjYyMTE3MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDIwIiwiYiI6IjE1MjYyMTE3MyIsImhlYWRpbmciOi0xNjIuMzEzNjM0MjE3NDcwMTQsImRpc3QiOjU3LjAxNX1dfSwiNDQzMTg3MDQ3Ijp7ImlkIjoiNDQzMTg3MDQ3IiwibG9uIjotOTcuNzQwMTcsImxhdCI6MzAuMjY0NzcsImVkZ2VzIjpbeyJpZCI6IjMwNjAyMzI2LTQ0MzE4NzA0N18zMzIyMzIxMjYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NzA0NyIsImIiOiIzMzIyMzIxMjYiLCJoZWFkaW5nIjoxOC40NjIyNjcyNjIxMDAyNjYsImRpc3QiOjQ1LjU4fV19LCI0NDMxODcwNjAiOnsiaWQiOiI0NDMxODcwNjAiLCJsb24iOi05Ny43NDA4OCwibGF0IjozMC4yNjI4OSwiZWRnZXMiOlt7ImlkIjoiMzIwNjU1MzMtNDQzMTg3MDYwXzE1MjUzOTYzMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDYwIiwiYiI6IjE1MjUzOTYzMyIsImhlYWRpbmciOjE4LjU0MDc4NjE2NDU0MTQ0LCJkaXN0Ijo1MS40NDd9XX0sIjQ0MzE4NzA2MiI6eyJpZCI6IjQ0MzE4NzA2MiIsImxvbiI6LTk3Ljc0MDUzLCJsYXQiOjMwLjI2MzgyLCJlZGdlcyI6W3siaWQiOiIzMjA2NTUzMy00NDMxODcwNjJfMTUyNTM5NjM1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwNjIiLCJiIjoiMTUyNTM5NjM1IiwiaGVhZGluZyI6MTkuMTQ4MDc4NDcyMjc1MTUsImRpc3QiOjQ2Ljk0fV19LCI0NDMxODcwNzMiOnsiaWQiOiI0NDMxODcwNzMiLCJsb24iOi05Ny43Mzg0MSwibGF0IjozMC4yNjYzMSwiZWRnZXMiOlt7ImlkIjoiMTQzOTQ4MTg1LTQ0MzE4NzA3M18xNTI0NTE2MDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg3MDczIiwiYiI6IjE1MjQ1MTYwNiIsImhlYWRpbmciOjE5Ny40MzA3MTEwODQzMzYzNCwiZGlzdCI6NTQuNjF9LHsiaWQiOiIxNDM5NDgxODUtNDQzMTg3MDczXzE1MjQwMTkwOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcwNzMiLCJiIjoiMTUyNDAxOTA5IiwiaGVhZGluZyI6MTcuNDMwNjMxOTEyMTY3ODQ3LCJkaXN0Ijo1NC42MX1dfSwiNDQzMTg3MDc1Ijp7ImlkIjoiNDQzMTg3MDc1IiwibG9uIjotOTcuNzM4MDcsImxhdCI6MzAuMjY3MjUsImVkZ2VzIjpbeyJpZCI6IjE0Mzk0ODE4NS00NDMxODcwNzVfMTUyNDAxOTA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NzA3NSIsImIiOiIxNTI0MDE5MDkiLCJoZWFkaW5nIjoxOTcuNDMwNTUyNzQxMDkzMTUsImRpc3QiOjU0LjYxfSx7ImlkIjoiMTQzOTQ4MTg1LTQ0MzE4NzA3NV8xNTI0NTE2MDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg3MDc1IiwiYiI6IjE1MjQ1MTYwOCIsImhlYWRpbmciOjE3LjE1MTc5MDYxMTkyMjcxMywiZGlzdCI6NTIuMjA3fV19LCI0NDMxODcwNzgiOnsiaWQiOiI0NDMxODcwNzgiLCJsb24iOi05Ny43Mzc3MywibGF0IjozMC4yNjgxOSwiZWRnZXMiOlt7ImlkIjoiMTQzOTQ4MTg2LTQ0MzE4NzA3OF8xNTI0NTE2MDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg3MDc4IiwiYiI6IjE1MjQ1MTYwOCIsImhlYWRpbmciOjE5Ny42ODU1ODI0NDYyMzA0NiwiZGlzdCI6NTcuMDE1fSx7ImlkIjoiMTQzOTQ4MTg2LTQ0MzE4NzA3OF8xNTI0NTE2MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg3MDc4IiwiYiI6IjE1MjQ1MTYxMCIsImhlYWRpbmciOjE4LjUzOTg0NDQzNzA3OTczNiwiZGlzdCI6NTEuNDQ3fV19LCI0NDMxODcwODAiOnsiaWQiOiI0NDMxODcwODAiLCJsb24iOi05Ny43MzczOCwibGF0IjozMC4yNjkxLCJlZGdlcyI6W3siaWQiOiIxNDM5NDgxODYtNDQzMTg3MDgwXzE1MjQ1MTYxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcwODAiLCJiIjoiMTUyNDUxNjEwIiwiaGVhZGluZyI6MTk4LjM4ODMwMzY5NDMzNjgzLCJkaXN0Ijo1NC45MDZ9LHsiaWQiOiIxNDM5NDgxODYtNDQzMTg3MDgwXzE1MjQ1MTYxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcwODAiLCJiIjoiMTUyNDUxNjEyIiwiaGVhZGluZyI6MTcuNjg1MzQzNTkxMjIwOTI4LCJkaXN0Ijo1Ny4wMTR9XX0sIjQ0MzE4NzA5OSI6eyJpZCI6IjQ0MzE4NzA5OSIsImxvbiI6LTk3LjczNzM0LCJsYXQiOjMwLjI2NjAyLCJlZGdlcyI6W3siaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MDk5XzE1MjUxNjY0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDk5IiwiYiI6IjE1MjUxNjY0NiIsImhlYWRpbmciOjE5Ny40MzA3NTk5MzQyNTUzOCwiZGlzdCI6NTQuNjExfSx7ImlkIjoiMjA0OTk5NzA4LTQ0MzE4NzA5OV8xNTI0MDE5MTIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NzA5OSIsImIiOiIxNTI0MDE5MTIiLCJoZWFkaW5nIjoxNy4xNTE5OTQ5MDgzMDM5OTQsImRpc3QiOjUyLjIwOH1dfSwiNDQzMTg3MTAwIjp7ImlkIjoiNDQzMTg3MTAwIiwibG9uIjotOTcuNzM2OTksImxhdCI6MzAuMjY2OTYsImVkZ2VzIjpbeyJpZCI6IjIwNDk5OTcwOC00NDMxODcxMDBfMTUyNDAxOTEyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcxMDAiLCJiIjoiMTUyNDAxOTEyIiwiaGVhZGluZyI6MTk4LjYwMjMyNDkxNzk5ODMsImRpc3QiOjU3LjMxNH0seyJpZCI6IjIwNDk5OTcwOC00NDMxODcxMDBfMTUyNTY2MzE0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcxMDAiLCJiIjoiMTUyNTY2MzE0IiwiaGVhZGluZyI6MTkuNTQ5OTkyNjMwMTU3NzUzLCJkaXN0Ijo1MS43NjF9XX0sIjQ0MzE4NzEwMSI6eyJpZCI6IjQ0MzE4NzEwMSIsImxvbiI6LTk3LjczNjY0LCJsYXQiOjMwLjI2Nzg5LCJlZGdlcyI6W3siaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MTAxXzE1MjU2NjMxNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MTAxIiwiYiI6IjE1MjU2NjMxNCIsImhlYWRpbmciOjE5Ni43NTk2NjI2Mzk5NjE0OCwiZGlzdCI6NTYuNzN9LHsiaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MTAxXzE1MjU2NjMxNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MTAxIiwiYiI6IjE1MjU2NjMxNiIsImhlYWRpbmciOjE4LjE1NTIwMjUyOTE5MTE0LCJkaXN0Ijo1Mi40OTl9XX0sIjQ0MzE4NzEwMiI6eyJpZCI6IjQ0MzE4NzEwMiIsImxvbiI6LTk3LjczNjMyLCJsYXQiOjMwLjI2ODgxLCJlZGdlcyI6W3siaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MTAyXzE1MjU2NjMxNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MTAyIiwiYiI6IjE1MjU2NjMxNiIsImhlYWRpbmciOjE5NS40ODQwNjMxNDY3NTg3OSwiZGlzdCI6NTQuMDY1fSx7ImlkIjoiMjA0OTk5NzA4LTQ0MzE4NzEwMl8xNTI0NjAyMzAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NzEwMiIsImIiOiIxNTI0NjAyMzAiLCJoZWFkaW5nIjoxNy4wODg0MzgxNzA5OTI1NywiZGlzdCI6NTUuNjY5fV19LCI0NDMxODcxMjAiOnsiaWQiOiI0NDMxODcxMjAiLCJsb24iOi05Ny43MzU5NCwibGF0IjozMC4yNjY2NywiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjUtNDQzMTg3MTIwXzE1MjQwMTkxNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcxMjAiLCJiIjoiMTUyNDAxOTE1IiwiaGVhZGluZyI6MTk3LjM1MzU1OTQyMTQyNDUsImRpc3QiOjU4LjA3Mn0seyJpZCI6IjE1Mzk2NTY1LTQ0MzE4NzEyMF8xMTkwMDYxNDg4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NzEyMCIsImIiOiIxMTkwMDYxNDg4IiwiaGVhZGluZyI6MTYuNTM5MTQzMDY0MjQyNzI2LCJkaXN0Ijo0My45NDR9XX0sIjQ0MzE4NzE0OCI6eyJpZCI6IjQ0MzE4NzE0OCIsImxvbiI6LTk3LjczNTIxLCJsYXQiOjMwLjI2Njk2LCJlZGdlcyI6W3siaWQiOiIzNzc0OTU1OS00NDMxODcxNDhfMTUyNjI5Mzk2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcxNDgiLCJiIjoiMTUyNjI5Mzk2IiwiaGVhZGluZyI6MTA2LjM0MzM5MDA1MTc2MTk5LCJkaXN0Ijo1NS4xNTR9XX0sIjQ0MzE4NzE1OSI6eyJpZCI6IjQ0MzE4NzE1OSIsImxvbiI6LTk3LjczNTUyLCJsYXQiOjMwLjI2NjAxLCJlZGdlcyI6W3siaWQiOiIzMTE2NTk2OC00NDMxODcxNTlfMTUyNDAxOTIxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcxNTkiLCJiIjoiMTUyNDAxOTIxIiwiaGVhZGluZyI6LTc1LjExMjE0MTQ0OTEyNDM3LCJkaXN0IjoxMi45NDR9XX0sIjQ0MzIxNDYwOSI6eyJpZCI6IjQ0MzIxNDYwOSIsImxvbiI6LTk3Ljc0NzEzLCJsYXQiOjMwLjI3NjM3LCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MDlfMTUyNjM2ODgyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYwOSIsImIiOiIxNTI2MzY4ODIiLCJoZWFkaW5nIjoxOTYuMTM1OTM0OTc0NTU3NTMsImRpc3QiOjY1Ljc4fSx7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjA5XzE1MjU0NjE5OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MDkiLCJiIjoiMTUyNTQ2MTk4IiwiaGVhZGluZyI6MTcuODIwNDY5NDE3MDE2MjQsImRpc3QiOjYyLjg4fV19LCI0NDMyMTQ2MTAiOnsiaWQiOiI0NDMyMTQ2MTAiLCJsb24iOi05Ny43NDU0LCJsYXQiOjMwLjI3NDU2LCJlZGdlcyI6W3siaWQiOiIxNTAzNTAwMTgtNDQzMjE0NjEwXzE1MjU4MzM5OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTAiLCJiIjoiMTUyNTgzMzk4IiwiaGVhZGluZyI6MTk3LjIyMjY5NTM3OTU0NTk0LCJkaXN0Ijo2NC45OTR9LHsiaWQiOiIxNTAzNTAwMTgtNDQzMjE0NjEwXzE2MjY1NTkzNDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjEwIiwiYiI6IjE2MjY1NTkzNDUiLCJoZWFkaW5nIjoxNy4yODM3MzMxOTYyNTk3NTMsImRpc3QiOjYxLjUzM31dfSwiNDQzMjE0NjExIjp7ImlkIjoiNDQzMjE0NjExIiwibG9uIjotOTcuNzQ0OTcsImxhdCI6MzAuMjc1NzcsImVkZ2VzIjpbeyJpZCI6IjE1MDM1MDAxOC00NDMyMTQ2MTFfMTUyNTgzNDAyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxMSIsImIiOiIxNTI1ODM0MDIiLCJoZWFkaW5nIjoxOTYuNjYyMDcwMzM3MjczMjQsImRpc3QiOjY3LjExNX0seyJpZCI6IjE1MDM1MDAxOC00NDMyMTQ2MTFfMTUyNTQ2MTk2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxMSIsImIiOiIxNTI1NDYxOTYiLCJoZWFkaW5nIjoxOC4xMzQ5ODM2MjY5NDI1MSwiZGlzdCI6NjEuODI1fV19LCI0NDMyMTQ2MTIiOnsiaWQiOiI0NDMyMTQ2MTIiLCJsb24iOi05Ny43NDQ2MSwibGF0IjozMC4yNzY3NiwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDE4LTQ0MzIxNDYxMl8xNTI1NDYxOTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjEyIiwiYiI6IjE1MjU0NjE5NiIsImhlYWRpbmciOjE5Ni43OTg2NjczOTYzNTAxNCwiZGlzdCI6NTMuMjY3fSx7ImlkIjoiMTUwMzUwMDE4LTQ0MzIxNDYxMl8xNTI0MjgzMTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjEyIiwiYiI6IjE1MjQyODMxMCIsImhlYWRpbmciOjE3LjY4NDAzNjUyNzUwNjM4NiwiZGlzdCI6NTcuMDE0fV19LCI0NDMyMTQ2MTMiOnsiaWQiOiI0NDMyMTQ2MTMiLCJsb24iOi05Ny43NDQyNSwibGF0IjozMC4yNzc3MiwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDE4LTQ0MzIxNDYxM18xNTI0MjgzMTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjEzIiwiYiI6IjE1MjQyODMxMCIsImhlYWRpbmciOjE5OC4zODY3ODI0MzI3ODYxMywiZGlzdCI6NTQuOTA2fSx7ImlkIjoiMTUwMzUwMDE4LTQ0MzIxNDYxM18xNjI2NTU1ODI3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxMyIsImIiOiIxNjI2NTU1ODI3IiwiaGVhZGluZyI6MTcuODk3ODY1NDY0NDk0MiwiZGlzdCI6NTAuMDkzfV19LCI0NDMyMTQ2MTQiOnsiaWQiOiI0NDMyMTQ2MTQiLCJsb24iOi05Ny43NDM4OSwibGF0IjozMC4yNzg3MSwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDE4LTQ0MzIxNDYxNF8xNTI1ODM0MDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjE0IiwiYiI6IjE1MjU4MzQwNCIsImhlYWRpbmciOjE5Ny4xNDk5NjE1NzY5MzEwOCwiZGlzdCI6NTIuMjA3fSx7ImlkIjoiMTUwMzUwMDE4LTQ0MzIxNDYxNF8xNTI1ODM0MDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjE0IiwiYiI6IjE1MjU4MzQwNyIsImhlYWRpbmciOjE2LjQ2MDM5ODIzOTk4MTAyNSwiZGlzdCI6NTQuMzN9XX0sIjQ0MzIxNDYxNSI6eyJpZCI6IjQ0MzIxNDYxNSIsImxvbiI6LTk3Ljc0MzIzLCJsYXQiOjMwLjI4MDQ3LCJlZGdlcyI6W3siaWQiOiIxMjQ5NTMyMjgtNDQzMjE0NjE1XzE1MjQ4NjYwOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTUiLCJiIjoiMTUyNDg2NjA5IiwiaGVhZGluZyI6MTk4LjkzODQzOTMxOTE0NTk0LCJkaXN0Ijo1MC4zOTd9LHsiaWQiOiIxMjQ5NTMyMjgtNDQzMjE0NjE1XzE1MjU4MzQxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTUiLCJiIjoiMTUyNTgzNDEwIiwiaGVhZGluZyI6MTYuNDgyMjM0MTI2Nzc1NjU1LCJkaXN0Ijo1MC44Njd9XX0sIjQ0MzIxNDYxNiI6eyJpZCI6IjQ0MzIxNDYxNiIsImxvbiI6LTk3Ljc0Mjg5LCJsYXQiOjMwLjI4MTQsImVkZ2VzIjpbeyJpZCI6IjEyNDk1MzIyOC00NDMyMTQ2MTZfMTUyNTgzNDEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxNiIsImIiOiIxNTI1ODM0MTAiLCJoZWFkaW5nIjoxOTguNTk5NzUxMTIzNjY4OSwiZGlzdCI6NTcuMzE0fSx7ImlkIjoiMTI0OTUzMjI4LTQ0MzIxNDYxNl8xNTI1MDI5NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjE2IiwiYiI6IjE1MjUwMjk3NSIsImhlYWRpbmciOjE4LjMzNDA1MTA2MjM1MjM5LCJkaXN0Ijo2NC4yMzJ9XX0sIjQ0MzIxNDYxNyI6eyJpZCI6IjQ0MzIxNDYxNyIsImxvbiI6LTk3Ljc0NzU3LCJsYXQiOjMwLjI3NTE3LCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MTdfMjEyNTQ2ODY2NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTciLCJiIjoiMjEyNTQ2ODY2NSIsImhlYWRpbmciOjE5OC4wMjkxOTIyMDk0NTQ5OCwiZGlzdCI6NTUuOTU5fSx7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjE3XzE2MjY1NTkzNDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjE3IiwiYiI6IjE2MjY1NTkzNDMiLCJoZWFkaW5nIjoxOC45NzgzMzcyMDE2NjIzODgsImRpc3QiOjYyLjEzMn1dfSwiNDQzMjE0NjE4Ijp7ImlkIjoiNDQzMjE0NjE4IiwibG9uIjotOTcuNzQ2NzYsImxhdCI6MzAuMjc3NDEsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTQ0MzIxNDYxOF8xNTI2MzY4ODQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjE4IiwiYiI6IjE1MjYzNjg4NCIsImhlYWRpbmciOjIwMC40MDM3OTk0Njc3MzI5NywiZGlzdCI6OC4yNzl9LHsiaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MThfMTUyNDI4MzEyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxOCIsImIiOiIxNTI0MjgzMTIiLCJoZWFkaW5nIjoxOC43NTg3NzU0MDU3Njc0OSwiZGlzdCI6NTMuODU1fV19LCI0NDMyMTQ2MTkiOnsiaWQiOiI0NDMyMTQ2MTkiLCJsb24iOi05Ny43NDY0MiwibGF0IjozMC4yNzgzMSwiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjE5XzE1MjQyODMxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTkiLCJiIjoiMTUyNDI4MzEyIiwiaGVhZGluZyI6MTk3LjUxNjIwNTEyMzg1NjY4LCJkaXN0Ijo1MS4xNDl9LHsiaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MTlfMTYyNjU1NTg0NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTkiLCJiIjoiMTYyNjU1NTg0NyIsImhlYWRpbmciOjE3Ljc4Mzg1NDAyMDgyNzYsImRpc3QiOjUzLjU1M31dfSwiNDQzMjE0NjIwIjp7ImlkIjoiNDQzMjE0NjIwIiwibG9uIjotOTcuNzQ1NDEsImxhdCI6MzAuMjgxMDcsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTQ0MzIxNDYyMF8xNTI0ODY2MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjIwIiwiYiI6IjE1MjQ4NjYxMCIsImhlYWRpbmciOjE5Ny43MzE4NTY1OTUwNTM5OCwiZGlzdCI6NDQuMjI3fSx7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjIwXzE1MjYzNjg4OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MjAiLCJiIjoiMTUyNjM2ODg4IiwiaGVhZGluZyI6MTguMzg2MTA4MTQ0OTMwMDMsImRpc3QiOjU0LjkwNn1dfSwiNDQzMjE0NjIxIjp7ImlkIjoiNDQzMjE0NjIxIiwibG9uIjotOTcuNzQ1MDQsImxhdCI6MzAuMjgyMDIsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTQ0MzIxNDYyMV8xNTI2MzY4ODgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjIxIiwiYiI6IjE1MjYzNjg4OCIsImhlYWRpbmciOjE5OC45NTk3MTAxNDE1MTg4MywiZGlzdCI6NTYuMjY0fSx7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjIxXzE0MzA0NzAyNjUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjIxIiwiYiI6IjE0MzA0NzAyNjUiLCJoZWFkaW5nIjoxMy4wMzA5NzIxMTM5MDc4MDYsImRpc3QiOjM0LjEzNn1dfSwiNDQzMjE0NjM1Ijp7ImlkIjoiNDQzMjE0NjM1IiwibG9uIjotOTcuNzQyMDUsImxhdCI6MzAuMjc1NTUsImVkZ2VzIjpbeyJpZCI6IjE1MzkxNDY2LTQ0MzIxNDYzNV8xNTI1NDYxOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjM1IiwiYiI6IjE1MjU0NjE5NSIsImhlYWRpbmciOjEwNC4zNjEwMDUzMjc5ODMwMiwiZGlzdCI6OC45Mzl9LHsiaWQiOiIxNTM5MTQ2Ni00NDMyMTQ2MzVfMTUyNTE2MjA0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYzNSIsImIiOiIxNTI1MTYyMDQiLCJoZWFkaW5nIjotNzEuMTUxMjY5NDEwNzk2OTEsImRpc3QiOjU0LjkwMn1dfSwiNDQzMjE0NjM2Ijp7ImlkIjoiNDQzMjE0NjM2IiwibG9uIjotOTcuNzQ2NDksImxhdCI6MzAuMjc0ODcsImVkZ2VzIjpbeyJpZCI6IjE1Mzc2ODU2LTQ0MzIxNDYzNl8xNTIzOTM0OTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjM2IiwiYiI6IjE1MjM5MzQ5MiIsImhlYWRpbmciOjE5OC41MjA5MDgzMjg2ODQxMywiZGlzdCI6NjYuNjR9LHsiaWQiOiIxNTM3Njg1Ni00NDMyMTQ2MzZfMTYyNjU1OTM0NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MzYiLCJiIjoiMTYyNjU1OTM0NyIsImhlYWRpbmciOjE3LjI4MzY4MTM0MjIyOTM5LCJkaXN0Ijo2MS41MzN9XX0sIjQ0MzIxNDYzNyI6eyJpZCI6IjQ0MzIxNDYzNyIsImxvbiI6LTk3Ljc0NjA0LCJsYXQiOjMwLjI3NjA2LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni00NDMyMTQ2MzdfMTUyMzkzNDk2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYzNyIsImIiOiIxNTIzOTM0OTYiLCJoZWFkaW5nIjoxOTguODI4MzA0OTUxMTkzMSwiZGlzdCI6NjUuNTl9LHsiaWQiOiIxNTM3Njg1Ni00NDMyMTQ2MzdfMTUyMzkzNTAwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYzNyIsImIiOiIxNTIzOTM1MDAiLCJoZWFkaW5nIjoxNi45ODE5OTIwNzA0MzczMzYsImRpc3QiOjYyLjU5Mn1dfSwiNDQzMjE0NjM4Ijp7ImlkIjoiNDQzMjE0NjM4IiwibG9uIjotOTcuNzQ1NjcsImxhdCI6MzAuMjc3MDcsImVkZ2VzIjpbeyJpZCI6IjE1Mzc2ODU2LTQ0MzIxNDYzOF8xNTIzOTM1MDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjM4IiwiYiI6IjE1MjM5MzUwMCIsImhlYWRpbmciOjE5OC4zODY4OTcxNTk1NDk1MywiZGlzdCI6NTQuOTA2fSx7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjM4XzE1MjM5MzUwNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MzgiLCJiIjoiMTUyMzkzNTA3IiwiaGVhZGluZyI6MTYuNzU4MDg4NjEwMjk5NTc3LCJkaXN0Ijo1Ni43Mjl9XX0sIjQ0MzIxNDYzOSI6eyJpZCI6IjQ0MzIxNDYzOSIsImxvbiI6LTk3Ljc0NTMyLCJsYXQiOjMwLjI3ODAzLCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni00NDMyMTQ2MzlfMTUyMzkzNTA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYzOSIsImIiOiIxNTIzOTM1MDciLCJoZWFkaW5nIjoxOTguMzg2NzI3NzE1OTM4NywiZGlzdCI6NTQuOTA2fSx7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjM5XzE2MjY1NTU4MjgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjM5IiwiYiI6IjE2MjY1NTU4MjgiLCJoZWFkaW5nIjoxNi44NDQ0NjA4NzQ4MDk4ODMsImRpc3QiOjQ5LjgwNX1dfSwiNDQzMjE0NjQwIjp7ImlkIjoiNDQzMjE0NjQwIiwibG9uIjotOTcuNzQ0MywibGF0IjozMC4yODA3NywiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjQwXzE1MjM5MzUyMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDAiLCJiIjoiMTUyMzkzNTIxIiwiaGVhZGluZyI6MTk3LjYxNjAwNTkzODU3NDY2LCJkaXN0Ijo0Ny42ODh9LHsiaWQiOiIxNTM3Njg1Ni00NDMyMTQ2NDBfMTUyMzkzNTI0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY0MCIsImIiOiIxNTIzOTM1MjQiLCJoZWFkaW5nIjoxOC4xNTI5NTQxOTc4ODMzMTgsImRpc3QiOjUyLjQ5OX1dfSwiNDQzMjE0NjQxIjp7ImlkIjoiNDQzMjE0NjQxIiwibG9uIjotOTcuNzQzOTQsImxhdCI6MzAuMjgxNywiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjQxXzE1MjM5MzUyNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDEiLCJiIjoiMTUyMzkzNTI0IiwiaGVhZGluZyI6MTk4Ljk1OTc2ODEzMjY0NTAyLCJkaXN0Ijo1Ni4yNjR9LHsiaWQiOiIxNTM3Njg1Ni00NDMyMTQ2NDFfMTUyMzkzNTI4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY0MSIsImIiOiIxNTIzOTM1MjgiLCJoZWFkaW5nIjoxOC4xMzM5NDkyNjcwNTg1ODMsImRpc3QiOjYxLjgyNX1dfSwiNDQzMjE0NjQyIjp7ImlkIjoiNDQzMjE0NjQyIiwibG9uIjotOTcuNzQ0NTksImxhdCI6MzAuMjc4NDIsImVkZ2VzIjpbeyJpZCI6IjE3MDA1MDgxNy00NDMyMTQ2NDJfMTUyMzkzNTE1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMyMTQ2NDIiLCJiIjoiMTUyMzkzNTE1IiwiaGVhZGluZyI6LTcxLjkzOTQxMDgxOTYxMDEyLCJkaXN0Ijo1My42Mzd9XX0sIjQ0MzIxNDY0NCI6eyJpZCI6IjQ0MzIxNDY0NCIsImxvbiI6LTk3Ljc0MjA5LCJsYXQiOjMwLjI3ODcyLCJlZGdlcyI6W3siaWQiOiIxNTM5NjI1MC00NDMyMTQ2NDRfMTUyNTE2MjA4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY0NCIsImIiOiIxNTI1MTYyMDgiLCJoZWFkaW5nIjoxMDguMjIxMzA5NjcwNTU5NTUsImRpc3QiOjU2LjcyNX0seyJpZCI6IjE1Mzk2MjUwLTQ0MzIxNDY0NF8xNTI0NTY2MjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjQ0IiwiYiI6IjE1MjQ1NjYyNCIsImhlYWRpbmciOi03Mi41NTU1ODI2NDU0MDUzNywiZGlzdCI6NTUuNDd9XX0sIjQ0MzIxNDY0NSI6eyJpZCI6IjQ0MzIxNDY0NSIsImxvbiI6LTk3Ljc0NDIzLCJsYXQiOjMwLjI3OTMyLCJlZGdlcyI6W3siaWQiOiIxMjQ5NTMyMzEtNDQzMjE0NjQ1XzE1MjU4MzQwNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDUiLCJiIjoiMTUyNTgzNDA3IiwiaGVhZGluZyI6MTA3Ljg4MDM5MjE5ODc2MzM3LCJkaXN0Ijo1MC41NDl9LHsiaWQiOiIxMjQ5NTMyMzEtNDQzMjE0NjQ1XzE1MjM5MzUxOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDUiLCJiIjoiMTUyMzkzNTE4IiwiaGVhZGluZyI6LTczLjkzMTAzMjM4MzQ1NzM1LCJkaXN0Ijo1Ni4wNzF9XX0sIjQ0MzIxNDY0NiI6eyJpZCI6IjQ0MzIxNDY0NiIsImxvbiI6LTk3Ljc0LCJsYXQiOjMwLjI3OTU1LCJlZGdlcyI6W3siaWQiOiIxNTQwODM0Ni00NDMyMTQ2NDZfMTUyNDg2NjA0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY0NiIsImIiOiIxNTI0ODY2MDQiLCJoZWFkaW5nIjoxOTkuNzkyMTU1NDYyMjUxNjYsImRpc3QiOjQ4LjMwNX0seyJpZCI6IjE1NDA4MzQ2LTQ0MzIxNDY0Nl8xNTI3MjMzOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjQ2IiwiYiI6IjE1MjcyMzM5NSIsImhlYWRpbmciOjE4LjkzODUyODAyNzgxODM1NywiZGlzdCI6NTAuMzk3fV19LCI0NDMyMTQ2NDgiOnsiaWQiOiI0NDMyMTQ2NDgiLCJsb24iOi05Ny43NDE3NywibGF0IjozMC4yNzk1OCwiZWRnZXMiOlt7ImlkIjoiMTUzODUzNzItNDQzMjE0NjQ4XzE1MjQ4NjYwNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDgiLCJiIjoiMTUyNDg2NjA2IiwiaGVhZGluZyI6MTA4LjUzMDMxMjE2MDE4ODU0LCJkaXN0Ijo1NS44MTJ9LHsiaWQiOiIxNTM4NTM3Mi00NDMyMTQ2NDhfMTUyNDU2NjI4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY0OCIsImIiOiIxNTI0NTY2MjgiLCJoZWFkaW5nIjotNzIuMjUyNDk5MDAwMDA4MzYsImRpc3QiOjU0LjU1Mn1dfSwiNDQzMjE0NjQ5Ijp7ImlkIjoiNDQzMjE0NjQ5IiwibG9uIjotOTcuNzQzOTIsImxhdCI6MzAuMjgwMTksImVkZ2VzIjpbeyJpZCI6IjEyNDk1MzIzMy00NDMyMTQ2NDlfMTUyNDg2NjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY0OSIsImIiOiIxNTI0ODY2MDkiLCJoZWFkaW5nIjoxMDguMzg1MDMzMDM2MDEzMjQsImRpc3QiOjUyLjcyMn0seyJpZCI6IjEyNDk1MzIzMy00NDMyMTQ2NDlfMTUyMzkzNTIxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY0OSIsImIiOiIxNTIzOTM1MjEiLCJoZWFkaW5nIjotNjkuNzE2OTg0MDM2MTM1NDQsImRpc3QiOjU0LjM2NH1dfSwiNDQzMjE0NjUxIjp7ImlkIjoiNDQzMjE0NjUxIiwibG9uIjotOTcuNzQxNDQsImxhdCI6MzAuMjgwNDMsImVkZ2VzIjpbeyJpZCI6IjE1NDEwODg1LTQ0MzIxNDY1MV8xNTI1MTYyMTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjUxIiwiYiI6IjE1MjUxNjIxMCIsImhlYWRpbmciOjEwNi4wNjkxMTk3Njg0NTI1OCwiZGlzdCI6NTYuMDcxfSx7ImlkIjoiMTU0MTA4ODUtNDQzMjE0NjUxXzE1MjQ1NjYzMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NTEiLCJiIjoiMTUyNDU2NjMwIiwiaGVhZGluZyI6LTY5LjMzOTI3NTIwMjIyMTc0LCJkaXN0Ijo1Ni41NTV9XX0sIjQ0MzIxNDY1MyI6eyJpZCI6IjQ0MzIxNDY1MyIsImxvbiI6LTk3LjczNzI5LCJsYXQiOjMwLjI3NzMyLCJlZGdlcyI6W3siaWQiOiIxNTQwNzM3Mi00NDMyMTQ2NTNfMTUyNjIwNTQ5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY1MyIsImIiOiIxNTI2MjA1NDkiLCJoZWFkaW5nIjoyODcuODc5NzYyNjE4ODA1NywiZGlzdCI6NzUuODI1fSx7ImlkIjoiMTU0MDczNzItNDQzMjE0NjUzXzI2Mzc2NzA3MjYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjUzIiwiYiI6IjI2Mzc2NzA3MjYiLCJoZWFkaW5nIjoxMDguNjM0ODc4NTYyMjMyNDMsImRpc3QiOjQxLjYzMn1dfSwiNDQzMjE0NjU0Ijp7ImlkIjoiNDQzMjE0NjU0IiwibG9uIjotOTcuNzM2OTYsImxhdCI6MzAuMjc4MjEsImVkZ2VzIjpbeyJpZCI6IjE1Mzk3NDYxLTQ0MzIxNDY1NF8yNjM3NjcwNzMxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY1NCIsImIiOiIyNjM3NjcwNzMxIiwiaGVhZGluZyI6MTA2Ljc5MTUyODI1NDYzOTg0LCJkaXN0Ijo0Mi4yMTF9XX0sIjUwNDg1MDkwOCI6eyJpZCI6IjUwNDg1MDkwOCIsImxvbiI6LTk3Ljc0NTA3LCJsYXQiOjMwLjI4MjYxLCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi01MDQ4NTA5MDhfNTA0ODUxMTg3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjUwNDg1MDkwOCIsImIiOiI1MDQ4NTExODciLCJoZWFkaW5nIjoxNTcuNzg0MDA1OTY3NDE1LCJkaXN0IjoyMC4zNTd9LHsiaWQiOiIxMzc0MTc0NjYtNTA0ODUwOTA4XzE0MzA0NzAyNjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjUwNDg1MDkwOCIsImIiOiIxNDMwNDcwMjYwIiwiaGVhZGluZyI6MTA4LjQ0NTU3OTQxMTY5NzcyLCJkaXN0IjozOC41NH1dfSwiNTA0ODUxMTg3Ijp7ImlkIjoiNTA0ODUxMTg3IiwibG9uIjotOTcuNzQ0OTksImxhdCI6MzAuMjgyNDQsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTUwNDg1MTE4N18xNDMwNDcwMjY1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjUwNDg1MTE4NyIsImIiOiIxNDMwNDcwMjY1IiwiaGVhZGluZyI6MTY3Ljc1ODEzOTYyNjAwOTIsImRpc3QiOjEzLjYxMn0seyJpZCI6IjE1Mzk5NjgyLTUwNDg1MTE4N181MDQ4NTA5MDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNTA0ODUxMTg3IiwiYiI6IjUwNDg1MDkwOCIsImhlYWRpbmciOi0yMi4yMTU5OTQwMzI1ODQ5OSwiZGlzdCI6MjAuMzU3fV19LCI1MDQ4NjIzMzMiOnsiaWQiOiI1MDQ4NjIzMzMiLCJsb24iOi05Ny43MzE4OCwibGF0IjozMC4yNzQ0LCJlZGdlcyI6W3siaWQiOiIxMjQ5NTMxMjAtNTA0ODYyMzMzXzE1MjM3NDc2MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNTA0ODYyMzMzIiwiYiI6IjE1MjM3NDc2MCIsImhlYWRpbmciOi0xNjIuNzc3MjI1NjY1NTkwNzgsImRpc3QiOjMyLjQ5N31dfSwiNTA0ODYyNDUxIjp7ImlkIjoiNTA0ODYyNDUxIiwibG9uIjotOTcuNzMxNjcsImxhdCI6MzAuMjc0NTEsImVkZ2VzIjpbeyJpZCI6IjE3Njg3NTM3MC01MDQ4NjI0NTFfNTA0ODYyNDU1IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjUwNDg2MjQ1MSIsImIiOiI1MDQ4NjI0NTUiLCJoZWFkaW5nIjotMTA3LjQ0MzUyNTg1NzUwMDU1LCJkaXN0IjoxMS4wOTR9XX0sIjUwNDg2MjQ1NSI6eyJpZCI6IjUwNDg2MjQ1NSIsImxvbiI6LTk3LjczMTc4LCJsYXQiOjMwLjI3NDQ4LCJlZGdlcyI6W3siaWQiOiIxNzY4NzUzNzAtNTA0ODYyNDU1XzUwNDg2MjMzMyIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiI1MDQ4NjI0NTUiLCJiIjoiNTA0ODYyMzMzIiwiaGVhZGluZyI6LTEzMi42NjY3MzE4OTc5NTU4OCwiZGlzdCI6MTMuMDg2fV19LCIxMDczNDAwNzYxIjp7ImlkIjoiMTA3MzQwMDc2MSIsImxvbiI6LTk3LjczMjk5LCJsYXQiOjMwLjI3MTg1LCJlZGdlcyI6W3siaWQiOiIxMzE1NDQ5MDgtMTA3MzQwMDc2MV8xNjUyNDg2MDU0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwNzYxIiwiYiI6IjE2NTI0ODYwNTQiLCJoZWFkaW5nIjotODQuNTE1OTM0MjUyMTc4NjgsImRpc3QiOjExLjZ9XX0sIjEwNzM0MDA4MjciOnsiaWQiOiIxMDczNDAwODI3IiwibG9uIjotOTcuNzM1NDksImxhdCI6MzAuMjcyMzYsImVkZ2VzIjpbeyJpZCI6IjE1MjQyOTcxNi0xMDczNDAwODI3XzI2Mzc2NzYxNDQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA4MjciLCJiIjoiMjYzNzY3NjE0NCIsImhlYWRpbmciOjEwNy45NTM2OTUwNDkwMTYxNiwiZGlzdCI6MzIuMzY3fV19LCIxMDczNDAwODMwIjp7ImlkIjoiMTA3MzQwMDgzMCIsImxvbiI6LTk3LjczNTA0LCJsYXQiOjMwLjI3MjI0LCJlZGdlcyI6W3siaWQiOiIzNzc0OTU2OS0xMDczNDAwODMwXzI2Mzc2NzYxNDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA4MzAiLCJiIjoiMjYzNzY3NjE0MiIsImhlYWRpbmciOjIwMy40NjAzOTAxMjI4MTE1MywiZGlzdCI6Ny4yNTF9LHsiaWQiOiIyMDQ5ODk3MzItMTA3MzQwMDgzMF8yNjM3Njc2MTQzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwODMwIiwiYiI6IjI2Mzc2NzYxNDMiLCJoZWFkaW5nIjoxMDkuMDY2NjM2MTQ0MjQ3MTQsImRpc3QiOjEwLjE4MX0seyJpZCI6IjIwNDk4OTc2MC0xMDczNDAwODMwXzEwNzM0MDA5MzgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA4MzAiLCJiIjoiMTA3MzQwMDkzOCIsImhlYWRpbmciOjE3LjUxNzIxNjA5MjIwMjE3LCJkaXN0IjoxMi43ODd9XX0sIjEwNzM0MDA4MzIiOnsiaWQiOiIxMDczNDAwODMyIiwibG9uIjotOTcuNzM0NzgsImxhdCI6MzAuMjcyMTUsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTczMi0xMDczNDAwODMyXzEwNzg4MDY0MTYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA4MzIiLCJiIjoiMTA3ODgwNjQxNiIsImhlYWRpbmciOjEwNC44ODg2ODczNDk4MjczOSwiZGlzdCI6MTIuOTQzfV19LCIxMDczNDAwODM3Ijp7ImlkIjoiMTA3MzQwMDgzNyIsImxvbiI6LTk3LjczMzkzLCJsYXQiOjMwLjI3MTkzLCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDczNDAwODM3XzE5OTczNDQzNDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3MzQwMDgzNyIsImIiOiIxOTk3MzQ0MzQ2IiwiaGVhZGluZyI6MjAzLjQ2MDQ1NjQ5ODEzMTIsImRpc3QiOjkuNjY4fSx7ImlkIjoiMTUzOTY1NjQtMTA3MzQwMDgzN18xMDczNDAwOTMyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzM0MDA4MzciLCJiIjoiMTA3MzQwMDkzMiIsImhlYWRpbmciOjE4LjQ2MTA0Nzc1NzMwNTA0NiwiZGlzdCI6MTUuMTkzfSx7ImlkIjoiMjA0OTg5NzMyLTEwNzM0MDA4MzdfMTA3MzQwMDg0OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDgzNyIsImIiOiIxMDczNDAwODQ5IiwiaGVhZGluZyI6MTA4Ljc5ODAyNTA2MjcwMDM2LCJkaXN0Ijo0NC43MjN9XX0sIjEwNzM0MDA4NDkiOnsiaWQiOiIxMDczNDAwODQ5IiwibG9uIjotOTcuNzMzNDksImxhdCI6MzAuMjcxOCwiZWRnZXMiOlt7ImlkIjoiOTI5NzU5MjEtMTA3MzQwMDg0OV8xMDc3ODQwNDEwIiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjEwNzM0MDA4NDkiLCJiIjoiMTA3Nzg0MDQxMCIsImhlYWRpbmciOjEwOC4yMTk4NzM3NDQ2ODc3MywiZGlzdCI6MzUuNDU1fSx7ImlkIjoiMjA0OTg5NzMyLTEwNzM0MDA4NDlfMTY1MjQ4NjA1MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDg0OSIsImIiOiIxNjUyNDg2MDUzIiwiaGVhZGluZyI6OTYuNTcyMDA4NDM1ODMyLCJkaXN0Ijo5LjY4Nn1dfSwiMTA3MzQwMDkyMCI6eyJpZCI6IjEwNzM0MDA5MjAiLCJsb24iOi05Ny43MzMzLCJsYXQiOjMwLjI3MTksImVkZ2VzIjpbeyJpZCI6IjEzMTU0NDkwOC0xMDczNDAwOTIwXzEwNzM0MDA5MzIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5MjAiLCJiIjoiMTA3MzQwMDkzMiIsImhlYWRpbmciOi03Mi4zNjg1ODQzNDczNTQxMiwiZGlzdCI6NTguNTZ9XX0sIjEwNzM0MDA5MzIiOnsiaWQiOiIxMDczNDAwOTMyIiwibG9uIjotOTcuNzMzODgsImxhdCI6MzAuMjcyMDYsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzM0MDA5MzJfMTA3MzQwMDgzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDczNDAwOTMyIiwiYiI6IjEwNzM0MDA4MzciLCJoZWFkaW5nIjoxOTguNDYxMDQ3NzU3MzA1MDQsImRpc3QiOjE1LjE5M30seyJpZCI6IjE1Mzk2NTY0LTEwNzM0MDA5MzJfMTA3NzU5OTUxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDczNDAwOTMyIiwiYiI6IjEwNzc1OTk1MTIiLCJoZWFkaW5nIjoxNy44MjEyMDk4MDgyNTA0OSwiZGlzdCI6NjIuODh9LHsiaWQiOiIxMzE1NDQ5MDgtMTA3MzQwMDkzMl8xMDc3ODQwMzc0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwOTMyIiwiYiI6IjEwNzc4NDAzNzQiLCJoZWFkaW5nIjotNzMuMjcxODg1OTM1NDE2NTksImRpc3QiOjQ2LjIxOH1dfSwiMTA3MzQwMDkzOCI6eyJpZCI6IjEwNzM0MDA5MzgiLCJsb24iOi05Ny43MzUsImxhdCI6MzAuMjcyMzUsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTczMy0xMDczNDAwOTM4XzI2Mzc2NzYxNDYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5MzgiLCJiIjoiMjYzNzY3NjE0NiIsImhlYWRpbmciOi03MC40ODA5MzkzMDM2NjI5NCwiZGlzdCI6MTMuMjcyfSx7ImlkIjoiMjA0OTg5NzU3LTEwNzM0MDA5MzhfMTA3ODgwNjYxMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDkzOCIsImIiOiIxMDc4ODA2NjEzIiwiaGVhZGluZyI6MTMuOTI4MDI3NTk2NDQ5MjU1LCJkaXN0Ijo3Ljk5NX0seyJpZCI6IjIwNDk4OTc2MC0xMDczNDAwOTM4XzEwNzM0MDA4MzAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5MzgiLCJiIjoiMTA3MzQwMDgzMCIsImhlYWRpbmciOjE5Ny41MTcyMTYwOTIyMDIxOCwiZGlzdCI6MTIuNzg3fV19LCIxMDczNDAwOTUyIjp7ImlkIjoiMTA3MzQwMDk1MiIsImxvbiI6LTk3LjczNTQ5LCJsYXQiOjMwLjI3MjQ5LCJlZGdlcyI6W3siaWQiOiIxMzQ3OTcwMDAtMTA3MzQwMDk1Ml8xMDczNDAwOTU4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwOTUyIiwiYiI6IjEwNzM0MDA5NTgiLCJoZWFkaW5nIjotNzAuOTMzMjA2NjA0NDQ2NDQsImRpc3QiOjMwLjU0Mn1dfSwiMTA3MzQwMDk1OCI6eyJpZCI6IjEwNzM0MDA5NTgiLCJsb24iOi05Ny43MzU3OSwibGF0IjozMC4yNzI1OCwiZWRnZXMiOlt7ImlkIjoiMTM0Nzk3MDAxLTEwNzM0MDA5NThfMTQ4MTQ1Njg3NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDk1OCIsImIiOiIxNDgxNDU2ODc0IiwiaGVhZGluZyI6LTczLjkzMjIwODkzNDkwOTIxLCJkaXN0IjoxMi4wMTZ9XX0sIjEwNzM0MDA5NTkiOnsiaWQiOiIxMDczNDAwOTU5IiwibG9uIjotOTcuNzM2NjgsImxhdCI6MzAuMjcyODMsImVkZ2VzIjpbeyJpZCI6IjEzNDc5NzAwMS0xMDczNDAwOTU5XzEwNzM0MDA5NjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5NTkiLCJiIjoiMTA3MzQwMDk2MiIsImhlYWRpbmciOi03MS45NjQ4Nzg4NDc2ODk5NSwiZGlzdCI6NDYuNTQ5fV19LCIxMDczNDAwOTYyIjp7ImlkIjoiMTA3MzQwMDk2MiIsImxvbiI6LTk3LjczNzE0LCJsYXQiOjMwLjI3Mjk2LCJlZGdlcyI6W3siaWQiOiIxMzQ3OTcwMDEtMTA3MzQwMDk2Ml8xMDczNDAwOTY0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwOTYyIiwiYiI6IjEwNzM0MDA5NjQiLCJoZWFkaW5nIjotNzIuMTIwNjc5NDQ0NzYyOTcsImRpc3QiOjUwLjU1Mn0seyJpZCI6IjIwNDk2NDc2NC0xMDczNDAwOTYyXzE1MjUzOTY1MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDk2MiIsImIiOiIxNTI1Mzk2NTIiLCJoZWFkaW5nIjoxOC40OTIyNTgxNzI5MTg5LCJkaXN0IjoxMjcuNDEzfV19LCIxMDczNDAwOTY0Ijp7ImlkIjoiMTA3MzQwMDk2NCIsImxvbiI6LTk3LjczNzY0LCJsYXQiOjMwLjI3MzEsImVkZ2VzIjpbeyJpZCI6IjEzNDc5NzAwMS0xMDczNDAwOTY0XzI2Mzc2NzM0NDMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5NjQiLCJiIjoiMjYzNzY3MzQ0MyIsImhlYWRpbmciOi03My4wMDM0ODk0NDM5Mjg5OCwiZGlzdCI6NDkuMzAyfV19LCIxMDczNDAwOTY4Ijp7ImlkIjoiMTA3MzQwMDk2OCIsImxvbiI6LTk3LjczODIxLCJsYXQiOjMwLjI3MzI1LCJlZGdlcyI6W3siaWQiOiIxMzE1NDQ5MDItMTA3MzQwMDk2OF8yNjM3NjczNDQ0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzM0MDA5NjgiLCJiIjoiMjYzNzY3MzQ0NCIsImhlYWRpbmciOi03MC40ODA3NzIyMDkzNjUxNiwiZGlzdCI6MTMuMjcxfSx7ImlkIjoiMTUwMzUwMDIzLTEwNzM0MDA5NjhfMTUyNjMxMTgxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwOTY4IiwiYiI6IjE1MjYzMTE4MSIsImhlYWRpbmciOi0xNTguNDY5MTE0NTA5NzMwMTMsImRpc3QiOjEzLjEwOX1dfSwiMTA3MzQwMDk3MSI6eyJpZCI6IjEwNzM0MDA5NzEiLCJsb24iOi05Ny43Mzg4NSwibGF0IjozMC4yNzM0MywiZWRnZXMiOlt7ImlkIjoiMTMxNTQ0OTAyLTEwNzM0MDA5NzFfMTA3MzQwMDk3NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDczNDAwOTcxIiwiYiI6IjEwNzM0MDA5NzYiLCJoZWFkaW5nIjotNzMuOTMyMDg2NTIxMTUxOSwiZGlzdCI6OC4wMTF9XX0sIjEwNzM0MDA5NzYiOnsiaWQiOiIxMDczNDAwOTc2IiwibG9uIjotOTcuNzM4OTMsImxhdCI6MzAuMjczNDUsImVkZ2VzIjpbeyJpZCI6IjEzMTU0NDkwMi0xMDczNDAwOTc2XzEwNzM0MDA5ODQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3MzQwMDk3NiIsImIiOiIxMDczNDAwOTg0IiwiaGVhZGluZyI6LTk1Ljk3OTE5MDg0NjAyNzA3LCJkaXN0IjoxMC42NDJ9XX0sIjEwNzM0MDA5ODQiOnsiaWQiOiIxMDczNDAwOTg0IiwibG9uIjotOTcuNzM5MDQsImxhdCI6MzAuMjczNDQsImVkZ2VzIjpbeyJpZCI6IjE1MDM0OTk4Ni0xMDczNDAwOTg0XzE1Mjc1OTM5NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDczNDAwOTg0IiwiYiI6IjE1Mjc1OTM5NCIsImhlYWRpbmciOjE0OC43MTc5NjcyMzY2NjY2LCJkaXN0IjoxMi45NzF9XX0sIjEwNzM0MDM3ODYiOnsiaWQiOiIxMDczNDAzNzg2IiwibG9uIjotOTcuNzM0OTUsImxhdCI6MzAuMjc1MzcsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTc1Ny0xMDczNDAzNzg2XzE0MjExMzQ3MjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDM3ODYiLCJiIjoiMTQyMTEzNDcyMiIsImhlYWRpbmciOjE5OC43NTkyMjYzMTk5MjA2OSwiZGlzdCI6MjYuOTI4fSx7ImlkIjoiMjA0OTg5NzU3LTEwNzM0MDM3ODZfMTQyMTEzNDcyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMzc4NiIsImIiOiIxNDIxMTM0NzI2IiwiaGVhZGluZyI6MjYuODUzMzM5MDYzNDg5MDUsImRpc3QiOjE0LjkxMX1dfSwiMTA3MzQwMzc5MCI6eyJpZCI6IjEwNzM0MDM3OTAiLCJsb24iOi05Ny43MzUxLCJsYXQiOjMwLjI3NDk0LCJlZGdlcyI6W3siaWQiOiIyMDQ5ODk3NTctMTA3MzQwMzc5MF8yNjM3Njc2MTUwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAzNzkwIiwiYiI6IjI2Mzc2NzYxNTAiLCJoZWFkaW5nIjoxOTAuNTM2MDk4OTgwNzcxOTgsImRpc3QiOjE1Ljc4Nn0seyJpZCI6IjIwNDk4OTc1Ny0xMDczNDAzNzkwXzE0MjExMzQ3MjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDM3OTAiLCJiIjoiMTQyMTEzNDcyMiIsImhlYWRpbmciOjE0LjU5NDk2MTU0NzQyMDE1OSwiZGlzdCI6MjIuOTExfV19LCIxMDc3NTk4ODg0Ijp7ImlkIjoiMTA3NzU5ODg4NCIsImxvbiI6LTk3LjczMzExLCJsYXQiOjMwLjI3NDAzLCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDc3NTk4ODg0XzEwNzc2MDAxOTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5ODg4NCIsImIiOiIxMDc3NjAwMTkyIiwiaGVhZGluZyI6MjM1LjM0NDk3NTE5MDA2OTAyLCJkaXN0Ijo1Ljg0OX0seyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTg4ODRfMTA3NzU5OTQyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk4ODg0IiwiYiI6IjEwNzc1OTk0MjYiLCJoZWFkaW5nIjo3OS4xMzAzNTUxNTQ4ODU2OCwiZGlzdCI6NS44Nzl9XX0sIjEwNzc1OTg5NjMiOnsiaWQiOiIxMDc3NTk4OTYzIiwibG9uIjotOTcuNzMyOTcsImxhdCI6MzAuMjczOTUsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTg5NjNfMTA3NzU5OTAzNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk4OTYzIiwiYiI6IjEwNzc1OTkwMzQiLCJoZWFkaW5nIjowLCJkaXN0Ijo0LjQzNH0seyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTg5NjNfMTA3NzU5OTk5MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk4OTYzIiwiYiI6IjEwNzc1OTk5OTEiLCJoZWFkaW5nIjotMTY2LjA3MjE3MzA1NzA0NTEsImRpc3QiOjcuOTk1fV19LCIxMDc3NTk5MDM0Ijp7ImlkIjoiMTA3NzU5OTAzNCIsImxvbiI6LTk3LjczMjk3LCJsYXQiOjMwLjI3Mzk5LCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDc3NTk5MDM0XzEwNzc1OTkwNDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTAzNCIsImIiOiIxMDc3NTk5MDQwIiwiaGVhZGluZyI6MzI2LjkzNjkwODQxODczOTEsImRpc3QiOjUuMjkxfSx7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTAzNF8xMDc3NTk4OTYzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkwMzQiLCJiIjoiMTA3NzU5ODk2MyIsImhlYWRpbmciOjE4MCwiZGlzdCI6NC40MzR9XX0sIjEwNzc1OTkwNDAiOnsiaWQiOiIxMDc3NTk5MDQwIiwibG9uIjotOTcuNzMzLCJsYXQiOjMwLjI3NDAzLCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDc3NTk5MDQwXzEwNzc1OTk0MjYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTA0MCIsImIiOiIxMDc3NTk5NDI2IiwiaGVhZGluZyI6MjgyLjk3NTgyMTY5MTA4OSwiZGlzdCI6NC45Mzd9LHsiaWQiOiIxNTM5NjU2NC0xMDc3NTk5MDQwXzEwNzc1OTkwMzQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTA0MCIsImIiOiIxMDc3NTk5MDM0IiwiaGVhZGluZyI6MTQ2LjkzNjkwODQxODczOTE0LCJkaXN0Ijo1LjI5MX1dfSwiMTA3NzU5OTA4MiI6eyJpZCI6IjEwNzc1OTkwODIiLCJsb24iOi05Ny43MzI4OSwibGF0IjozMC4yNzM4MywiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTA4Ml8xMDc3NTk5MTM3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkwODIiLCJiIjoiMTA3NzU5OTEzNyIsImhlYWRpbmciOjI2OS45OTk5ODQ4NzU4NTQ3LCJkaXN0Ijo1Ljc3M30seyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTkwODJfMTA3NzU5OTY5OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5MDgyIiwiYiI6IjEwNzc1OTk2OTgiLCJoZWFkaW5nIjo4OS45OTk5ODczOTQ1NTk0LCJkaXN0Ijo0LjgxMX1dfSwiMTA3NzU5OTEzNyI6eyJpZCI6IjEwNzc1OTkxMzciLCJsb24iOi05Ny43MzI5NSwibGF0IjozMC4yNzM4MywiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTEzN18xMDc3NjAwMjA1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkxMzciLCJiIjoiMTA3NzYwMDIwNSIsImhlYWRpbmciOjI5OS45NDQ0NjIxNDE2MDE4LCJkaXN0Ijo0LjQ0Mn0seyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTkxMzdfMTA3NzU5OTA4MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5MTM3IiwiYiI6IjEwNzc1OTkwODIiLCJoZWFkaW5nIjo4OS45OTk5ODQ4NzU4NTQ3LCJkaXN0Ijo1Ljc3M31dfSwiMTA3NzU5OTIzMCI6eyJpZCI6IjEwNzc1OTkyMzAiLCJsb24iOi05Ny43MzMyMiwibGF0IjozMC4yNzM4NiwiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTIzMF8xMDc3NTk5NDkyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkyMzAiLCJiIjoiMTA3NzU5OTQ5MiIsImhlYWRpbmciOjE5NC45NTI4MTI5NzgyOTQwMiwiZGlzdCI6MTQuOTE3fSx7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTIzMF8xMDc3NjAwMTkyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkyMzAiLCJiIjoiMTA3NzYwMDE5MiIsImhlYWRpbmciOjIwLjQwNDQ1NTY0MzkyNjM3LCJkaXN0IjoxNi41NTl9XX0sIjEwNzc1OTkzMzEiOnsiaWQiOiIxMDc3NTk5MzMxIiwibG9uIjotOTcuNzQwNDIsImxhdCI6MzAuMjgwMTUsImVkZ2VzIjpbeyJpZCI6IjE1NDEwODg1LTEwNzc1OTkzMzFfMTUyNzIzMzk1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkzMzEiLCJiIjoiMTUyNzIzMzk1IiwiaGVhZGluZyI6MTA4LjM2NTY2MjY2MDgzODQ4LCJkaXN0Ijo1OS44MTN9LHsiaWQiOiIxNTQxMDg4NS0xMDc3NTk5MzMxXzE1MjUxNjIxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5MzMxIiwiYiI6IjE1MjUxNjIxMCIsImhlYWRpbmciOi03MC42NzU3NzMwOTkzNjE2OCwiZGlzdCI6NDYuOTAxfV19LCIxMDc3NTk5NDI2Ijp7ImlkIjoiMTA3NzU5OTQyNiIsImxvbiI6LTk3LjczMzA1LCJsYXQiOjMwLjI3NDA0LCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDc3NTk5NDI2XzEwNzc1OTg4ODQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTQyNiIsImIiOiIxMDc3NTk4ODg0IiwiaGVhZGluZyI6MjU5LjEzMDM1NTE1NDg4NTcsImRpc3QiOjUuODc5fSx7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTQyNl8xMDc3NTk5MDQwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTk0MjYiLCJiIjoiMTA3NzU5OTA0MCIsImhlYWRpbmciOjEwMi45NzU4MjE2OTEwODkwMSwiZGlzdCI6NC45Mzd9XX0sIjEwNzc1OTk0OTIiOnsiaWQiOiIxMDc3NTk5NDkyIiwibG9uIjotOTcuNzMzMjYsImxhdCI6MzAuMjczNzMsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk0OTJfMTA3NzU5OTcyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NDkyIiwiYiI6IjEwNzc1OTk3MjYiLCJoZWFkaW5nIjoxOTcuNzg0NzE4MzI1MTA0OTYsImRpc3QiOjUzLjU1NH0seyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk0OTJfMTA3NzU5OTIzMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NDkyIiwiYiI6IjEwNzc1OTkyMzAiLCJoZWFkaW5nIjoxNC45NTI4MTI5NzgyOTQwMiwiZGlzdCI6MTQuOTE3fV19LCIxMDc3NTk5NTEyIjp7ImlkIjoiMTA3NzU5OTUxMiIsImxvbiI6LTk3LjczMzY4LCJsYXQiOjMwLjI3MjYsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk1MTJfMTA3MzQwMDkzMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NTEyIiwiYiI6IjEwNzM0MDA5MzIiLCJoZWFkaW5nIjoxOTcuODIxMjA5ODA4MjUwNSwiZGlzdCI6NjIuODh9LHsiaWQiOiIxNTM5NjU2NC0xMDc3NTk5NTEyXzEwNzc2MDAzNjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTUxMiIsImIiOiIxMDc3NjAwMzYxIiwiaGVhZGluZyI6MTguNDYwOTI5MTEzMDQ1MjU3LCJkaXN0IjoxNS4xOTN9XX0sIjEwNzc1OTk1NDgiOnsiaWQiOiIxMDc3NTk5NTQ4IiwibG9uIjotOTcuNzMyNzksImxhdCI6MzAuMjczODYsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk1NDhfMTA3NzU5OTY5OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NTQ4IiwiYiI6IjEwNzc1OTk2OTgiLCJoZWFkaW5nIjoyMzUuMzQ1MDIyMDcyMDMyMTIsImRpc3QiOjUuODQ5fSx7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTU0OF8xMDc3NjAwNDIzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTk1NDgiLCJiIjoiMTA3NzYwMDQyMyIsImhlYWRpbmciOjEzLjkyNzgxOTYwNDk5Nzc0NywiZGlzdCI6Ny45OTV9XX0sIjEwNzc1OTk1NzAiOnsiaWQiOiIxMDc3NTk5NTcwIiwibG9uIjotOTcuNzM0ODgsImxhdCI6MzAuMjcyOTEsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTc1Ny0xMDc3NTk5NTcwXzE1MjU2NjMyOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3NzU5OTU3MCIsImIiOiIxNTI1NjYzMjkiLCJoZWFkaW5nIjoxODAsImRpc3QiOjExLjA4Nn0seyJpZCI6IjIwNDk4OTc1Ny0xMDc3NTk5NTcwXzI2Mzc2NzYxNDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzc1OTk1NzAiLCJiIjoiMjYzNzY3NjE0OSIsImhlYWRpbmciOi0yLjYxNTYxNDIzMDYxNjAxMDYsImRpc3QiOjIxLjA4NX1dfSwiMTA3NzU5OTY5OCI6eyJpZCI6IjEwNzc1OTk2OTgiLCJsb24iOi05Ny43MzI4NCwibGF0IjozMC4yNzM4MywiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTY5OF8xMDc3NTk5MDgyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTk2OTgiLCJiIjoiMTA3NzU5OTA4MiIsImhlYWRpbmciOjI2OS45OTk5ODczOTQ1NTk0LCJkaXN0Ijo0LjgxMX0seyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk2OThfMTA3NzU5OTU0OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5Njk4IiwiYiI6IjEwNzc1OTk1NDgiLCJoZWFkaW5nIjo1NS4zNDUwMjIwNzIwMzIxMSwiZGlzdCI6NS44NDl9XX0sIjEwNzc1OTk3MjYiOnsiaWQiOiIxMDc3NTk5NzI2IiwibG9uIjotOTcuNzMzNDMsImxhdCI6MzAuMjczMjcsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk3MjZfMTA3NzYwMDQyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NzI2IiwiYiI6IjEwNzc2MDA0MjAiLCJoZWFkaW5nIjoxOTguNjUxODM1NDU4NjM5MzQsImRpc3QiOjIxLjA2fSx7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTcyNl8xMDc3NTk5NDkyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTk3MjYiLCJiIjoiMTA3NzU5OTQ5MiIsImhlYWRpbmciOjE3Ljc4NDcxODMyNTEwNDk1OCwiZGlzdCI6NTMuNTU0fV19LCIxMDc3NTk5OTkxIjp7ImlkIjoiMTA3NzU5OTk5MSIsImxvbiI6LTk3LjczMjk5LCJsYXQiOjMwLjI3Mzg4LCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDc3NTk5OTkxXzEwNzc1OTg5NjMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTk5MSIsImIiOiIxMDc3NTk4OTYzIiwiaGVhZGluZyI6MTMuOTI3ODI2OTQyOTU0OTA4LCJkaXN0Ijo3Ljk5NX0seyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk5OTFfMTA3NzYwMDIwNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5OTkxIiwiYiI6IjEwNzc2MDAyMDUiLCJoZWFkaW5nIjoxODAsImRpc3QiOjMuMzI2fV19LCIxMDc3NjAwMTE1Ijp7ImlkIjoiMTA3NzYwMDExNSIsImxvbiI6LTk3LjczOTM2LCJsYXQiOjMwLjI3OTg2LCJlZGdlcyI6W3siaWQiOiIxNTQxMDg4NS0xMDc3NjAwMTE1XzIxNjcxNjEyODUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzYwMDExNSIsImIiOiIyMTY3MTYxMjg1IiwiaGVhZGluZyI6MTA4LjEwNjQ5MjEyMzM3Nzg5LCJkaXN0Ijo3NC45MDh9LHsiaWQiOiIxNTQxMDg4NS0xMDc3NjAwMTE1XzE1MjcyMzM5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwMTE1IiwiYiI6IjE1MjcyMzM5NSIsImhlYWRpbmciOi03My42MDcyNTkxNzMyODEzNSwiZGlzdCI6NDcuMTM3fV19LCIxMDc3NjAwMTkyIjp7ImlkIjoiMTA3NzYwMDE5MiIsImxvbiI6LTk3LjczMzE2LCJsYXQiOjMwLjI3NCwiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTA3NzYwMDE5Ml8xMDc3NTk5MjMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc2MDAxOTIiLCJiIjoiMTA3NzU5OTIzMCIsImhlYWRpbmciOjIwMC40MDQ0NTU2NDM5MjYzOCwiZGlzdCI6MTYuNTU5fSx7ImlkIjoiMTUzOTY1NjQtMTA3NzYwMDE5Ml8xMDc3NTk4ODg0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc2MDAxOTIiLCJiIjoiMTA3NzU5ODg4NCIsImhlYWRpbmciOjU1LjM0NDk3NTE5MDA2OTAzNiwiZGlzdCI6NS44NDl9XX0sIjEwNzc2MDAyMDUiOnsiaWQiOiIxMDc3NjAwMjA1IiwibG9uIjotOTcuNzMyOTksImxhdCI6MzAuMjczODUsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDAyMDVfMTA3NzU5OTk5MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwMjA1IiwiYiI6IjEwNzc1OTk5OTEiLCJoZWFkaW5nIjowLCJkaXN0IjozLjMyNn0seyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDAyMDVfMTA3NzU5OTEzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwMjA1IiwiYiI6IjEwNzc1OTkxMzciLCJoZWFkaW5nIjoxMTkuOTQ0NDYyMTQxNjAxNzUsImRpc3QiOjQuNDQyfV19LCIxMDc3NjAwMzYxIjp7ImlkIjoiMTA3NzYwMDM2MSIsImxvbiI6LTk3LjczMzYzLCJsYXQiOjMwLjI3MjczLCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDc3NjAwMzYxXzEwNzc1OTk1MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzYwMDM2MSIsImIiOiIxMDc3NTk5NTEyIiwiaGVhZGluZyI6MTk4LjQ2MDkyOTExMzA0NTI3LCJkaXN0IjoxNS4xOTN9LHsiaWQiOiIxNTM5NjU2NC0xMDc3NjAwMzYxXzE1MjYwNDIwOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwMzYxIiwiYiI6IjE1MjYwNDIwOSIsImhlYWRpbmciOjE4LjAyOTU2MTMxNDkzNjY4MiwiZGlzdCI6MzcuMzA2fV19LCIxMDc3NjAwNDIwIjp7ImlkIjoiMTA3NzYwMDQyMCIsImxvbiI6LTk3LjczMzUsImxhdCI6MzAuMjczMDksImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDA0MjBfMTUyNjA0MjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc2MDA0MjAiLCJiIjoiMTUyNjA0MjA5IiwiaGVhZGluZyI6MTkyLjI0MzAwMzA0NTE3NTk4LCJkaXN0Ijo0LjUzN30seyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDA0MjBfMTA3NzU5OTcyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwNDIwIiwiYiI6IjEwNzc1OTk3MjYiLCJoZWFkaW5nIjoxOC42NTE4MzU0NTg2MzkzMywiZGlzdCI6MjEuMDZ9XX0sIjEwNzc2MDA0MjMiOnsiaWQiOiIxMDc3NjAwNDIzIiwibG9uIjotOTcuNzMyNzcsImxhdCI6MzAuMjczOTMsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDA0MjNfMTA3NzU5OTU0OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwNDIzIiwiYiI6IjEwNzc1OTk1NDgiLCJoZWFkaW5nIjoxOTMuOTI3ODE5NjA0OTk3NzUsImRpc3QiOjcuOTk1fV19LCIxMDc3ODM5OTg5Ijp7ImlkIjoiMTA3NzgzOTk4OSIsImxvbiI6LTk3LjczMjAxLCJsYXQiOjMwLjI3NDkzLCJlZGdlcyI6W3siaWQiOiIxNjQyODQ3ODMtMTA3NzgzOTk4OV8xMDc3ODQwMzU0IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjEwNzc4Mzk5ODkiLCJiIjoiMTA3Nzg0MDM1NCIsImhlYWRpbmciOi05Ny4yOTQ5OTA4MDQ5NTU5MiwiZGlzdCI6OC43M31dfSwiMTA3Nzg0MDAyMCI6eyJpZCI6IjEwNzc4NDAwMjAiLCJsb24iOi05Ny43MzE3NywibGF0IjozMC4yNzUwNSwiZWRnZXMiOlt7ImlkIjoiMTY0Mjg0NzgzLTEwNzc4NDAwMjBfMTA3Nzg0MDA3OSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxMDc3ODQwMDIwIiwiYiI6IjEwNzc4NDAwNzkiLCJoZWFkaW5nIjotMTMwLjgzMDIzMjk4NTYyMzA0LCJkaXN0IjoxMC4xNzN9XX0sIjEwNzc4NDAwNzEiOnsiaWQiOiIxMDc3ODQwMDcxIiwibG9uIjotOTcuNzMzMDQsImxhdCI6MzAuMjcxNjUsImVkZ2VzIjpbeyJpZCI6IjkyOTc1OTIxLTEwNzc4NDAwNzFfMTA3Nzg0MDQwOSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxMDc3ODQwMDcxIiwiYiI6IjEwNzc4NDA0MDkiLCJoZWFkaW5nIjoxNDguMjAxNDY0MTkwMjA0NTgsImRpc3QiOjkuMTN9XX0sIjEwNzc4NDAwNzkiOnsiaWQiOiIxMDc3ODQwMDc5IiwibG9uIjotOTcuNzMxODUsImxhdCI6MzAuMjc0OTksImVkZ2VzIjpbeyJpZCI6IjE2NDI4NDc4My0xMDc3ODQwMDc5XzEwNzc4NDA0NzgiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTA3Nzg0MDA3OSIsImIiOiIxMDc3ODQwNDc4IiwiaGVhZGluZyI6LTExNy4xMTUwNjY3MDY1NDA5NywiZGlzdCI6OS43Mjl9XX0sIjEwNzc4NDAxOTQiOnsiaWQiOiIxMDc3ODQwMTk0IiwibG9uIjotOTcuNzMyNDQsImxhdCI6MzAuMjc0OTQsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA2My0xMDc3ODQwMTk0XzEwNzc4NDAzNjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzc4NDAxOTQiLCJiIjoiMTA3Nzg0MDM2MiIsImhlYWRpbmciOjI4OC4yMjA1MDQ2MzIyNDMxLCJkaXN0Ijo3LjA5MX0seyJpZCI6IjE0OTcxMDA2My0xMDc3ODQwMTk0XzE2MjY1Njg2MjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzc4NDAxOTQiLCJiIjoiMTYyNjU2ODYyMyIsImhlYWRpbmciOjEwOC4yMjA0NDI5MzYwODQ1NywiZGlzdCI6MjguMzY0fV19LCIxMDc3ODQwMTk3Ijp7ImlkIjoiMTA3Nzg0MDE5NyIsImxvbiI6LTk3LjczMjE4LCJsYXQiOjMwLjI3MzU1LCJlZGdlcyI6W3siaWQiOiIxMzEyODE2MzQtMTA3Nzg0MDE5N18xNTIzODMyMzYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzc4NDAxOTciLCJiIjoiMTUyMzgzMjM2IiwiaGVhZGluZyI6LTE2My4wMTczMTc0NDg3MzE5MiwiZGlzdCI6MTI1LjE4NH1dfSwiMTA3Nzg0MDIwMiI6eyJpZCI6IjEwNzc4NDAyMDIiLCJsb24iOi05Ny43MzI2OCwibGF0IjozMC4yNzUwMSwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDYzLTEwNzc4NDAyMDJfMzQzMzM2OTA1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc3ODQwMjAyIiwiYiI6IjM0MzMzNjkwNSIsImhlYWRpbmciOjI5MS4wMDg5NjQ1MzgxODYsImRpc3QiOjYuMTg0fSx7ImlkIjoiMTQ5NzEwMDYzLTEwNzc4NDAyMDJfMTA3Nzg0MDM2MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3Nzg0MDIwMiIsImIiOiIxMDc3ODQwMzYyIiwiaGVhZGluZyI6MTA4LjcxOTUyOTYwNTcyMDQ0LCJkaXN0IjoxNy4yNzF9XX0sIjEwNzc4NDAzNTQiOnsiaWQiOiIxMDc3ODQwMzU0IiwibG9uIjotOTcuNzMyMSwibGF0IjozMC4yNzQ5MiwiZWRnZXMiOlt7ImlkIjoiMTY0Mjg0NzgzLTEwNzc4NDAzNTRfMTA3Nzg0MDE5NCIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxMDc3ODQwMzU0IiwiYiI6IjEwNzc4NDAxOTQiLCJoZWFkaW5nIjotODYuMTIyNzcxNTEwMDgyOTMsImRpc3QiOjMyLjc5fV19LCIxMDc3ODQwMzYyIjp7ImlkIjoiMTA3Nzg0MDM2MiIsImxvbiI6LTk3LjczMjUxLCJsYXQiOjMwLjI3NDk2LCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNjMtMTA3Nzg0MDM2Ml8xMDc3ODQwMjAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc3ODQwMzYyIiwiYiI6IjEwNzc4NDAyMDIiLCJoZWFkaW5nIjoyODguNzE5NTI5NjA1NzIwNCwiZGlzdCI6MTcuMjcxfSx7ImlkIjoiMTQ5NzEwMDYzLTEwNzc4NDAzNjJfMTA3Nzg0MDE5NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3Nzg0MDM2MiIsImIiOiIxMDc3ODQwMTk0IiwiaGVhZGluZyI6MTA4LjIyMDUwNDYzMjI0MzEyLCJkaXN0Ijo3LjA5MX1dfSwiMTA3Nzg0MDM3NCI6eyJpZCI6IjEwNzc4NDAzNzQiLCJsb24iOi05Ny43MzQzNCwibGF0IjozMC4yNzIxOCwiZWRnZXMiOlt7ImlkIjoiMTMxNTQ0OTA4LTEwNzc4NDAzNzRfMjYzNzY3NjE0NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3Nzg0MDM3NCIsImIiOiIyNjM3Njc2MTQ1IiwiaGVhZGluZyI6LTczLjM2OTM4NTE0ODQ5OTAyLCJkaXN0Ijo1NC4yMjh9XX0sIjEwNzc4NDAzOTEiOnsiaWQiOiIxMDc3ODQwMzkxIiwibG9uIjotOTcuNzMzMDgsImxhdCI6MzAuMjcxNjcsImVkZ2VzIjpbeyJpZCI6IjkyOTc1OTIxLTEwNzc4NDAzOTFfMTA3Nzg0MDA3MSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxMDc3ODQwMzkxIiwiYiI6IjEwNzc4NDAwNzEiLCJoZWFkaW5nIjoxMTkuOTQzOTA2MjUxNzgxNjEsImRpc3QiOjQuNDQyfV19LCIxMDc3ODQwNDEwIjp7ImlkIjoiMTA3Nzg0MDQxMCIsImxvbiI6LTk3LjczMzE0LCJsYXQiOjMwLjI3MTcsImVkZ2VzIjpbeyJpZCI6IjkyOTc1OTIxLTEwNzc4NDA0MTBfMTA3Nzg0MDM5MSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxMDc3ODQwNDEwIiwiYiI6IjEwNzc4NDAzOTEiLCJoZWFkaW5nIjoxMTkuOTQzOTA3NTc1MjU1NDcsImRpc3QiOjYuNjYzfV19LCIxMDc3ODQwNDc4Ijp7ImlkIjoiMTA3Nzg0MDQ3OCIsImxvbiI6LTk3LjczMTk0LCJsYXQiOjMwLjI3NDk1LCJlZGdlcyI6W3siaWQiOiIxNjQyODQ3ODMtMTA3Nzg0MDQ3OF8xMDc3ODM5OTg5IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjEwNzc4NDA0NzgiLCJiIjoiMTA3NzgzOTk4OSIsImhlYWRpbmciOi0xMDguMjIwNTAyODc0MDc3NTIsImRpc3QiOjcuMDkxfV19LCIxMDc4ODA2NDE2Ijp7ImlkIjoiMTA3ODgwNjQxNiIsImxvbiI6LTk3LjczNDY1LCJsYXQiOjMwLjI3MjEyLCJlZGdlcyI6W3siaWQiOiIyMDQ5ODk3MzItMTA3ODgwNjQxNl8xMDczNDAwODM3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4ODA2NDE2IiwiYiI6IjEwNzM0MDA4MzciLCJoZWFkaW5nIjoxMDYuOTEwNDIwMjE0OTEyODksImRpc3QiOjcyLjQxMX1dfSwiMTA3ODgwNjQ5MCI6eyJpZCI6IjEwNzg4MDY0OTAiLCJsb24iOi05Ny43MzQxMSwibGF0IjozMC4yNzE1LCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDc4ODA2NDkwXzEwNzg4MDY1MjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODgwNjQ5MCIsImIiOiIxMDc4ODA2NTI0IiwiaGVhZGluZyI6MTk0LjU5NTQ4NTI0MTg1NDQsImRpc3QiOjExLjQ1NX0seyJpZCI6IjE1Mzk2NTY0LTEwNzg4MDY0OTBfMTA3ODgwNjUzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4ODA2NDkwIiwiYiI6IjEwNzg4MDY1MzciLCJoZWFkaW5nIjoyMC40MDQ5MTAyOTk2MDk2NTcsImRpc3QiOjE2LjU1OX1dfSwiMTA3ODgwNjQ5OCI6eyJpZCI6IjEwNzg4MDY0OTgiLCJsb24iOi05Ny43MzM3MSwibGF0IjozMC4yNzA2NywiZWRnZXMiOlt7ImlkIjoiMTUyNDI5NzE1LTEwNzg4MDY0OThfMTA3ODgwNjYzOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3ODgwNjQ5OCIsImIiOiIxMDc4ODA2NjM4IiwiaGVhZGluZyI6Mjg4LjU3MzQ5NTg4NDAzOTQ2LCJkaXN0IjoyNC4zNjN9LHsiaWQiOiIxNTI0Mjk3MTUtMTA3ODgwNjQ5OF8yMzM4NDE3ODY3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4ODA2NDk4IiwiYiI6IjIzMzg0MTc4NjciLCJoZWFkaW5nIjoxMDYuNTU3NzA2Nzc4NTE5ODQsImRpc3QiOjMxLjEyfV19LCIxMDc4ODA2NTI0Ijp7ImlkIjoiMTA3ODgwNjUyNCIsImxvbiI6LTk3LjczNDE0LCJsYXQiOjMwLjI3MTQsImVkZ2VzIjpbeyJpZCI6IjE1Mzk2NTY0LTEwNzg4MDY1MjRfMTA3ODgwNjY4OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4ODA2NTI0IiwiYiI6IjEwNzg4MDY2ODgiLCJoZWFkaW5nIjoxOTkuODgzMTI4MTAxMTQ2MDQsImRpc3QiOjI4LjI5Mn0seyJpZCI6IjE1Mzk2NTY0LTEwNzg4MDY1MjRfMTA3ODgwNjQ5MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4ODA2NTI0IiwiYiI6IjEwNzg4MDY0OTAiLCJoZWFkaW5nIjoxNC41OTU0ODUyNDE4NTQ0MDEsImRpc3QiOjExLjQ1NX1dfSwiMTA3ODgwNjUzNyI6eyJpZCI6IjEwNzg4MDY1MzciLCJsb24iOi05Ny43MzQwNSwibGF0IjozMC4yNzE2NCwiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTA3ODgwNjUzN18xMDc4ODA2NDkwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg4MDY1MzciLCJiIjoiMTA3ODgwNjQ5MCIsImhlYWRpbmciOjIwMC40MDQ5MTAyOTk2MDk2NywiZGlzdCI6MTYuNTU5fSx7ImlkIjoiMTUzOTY1NjQtMTA3ODgwNjUzN18xMDc4ODA2NjU3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg4MDY1MzciLCJiIjoiMTA3ODgwNjY1NyIsImhlYWRpbmciOjE5Ljg4MzA2MTUxMzk5ODE5MywiZGlzdCI6MTQuMTQ2fV19LCIxMDc4ODA2NjEzIjp7ImlkIjoiMTA3ODgwNjYxMyIsImxvbiI6LTk3LjczNDk4LCJsYXQiOjMwLjI3MjQyLCJlZGdlcyI6W3siaWQiOiIyMDQ5ODk3NTctMTA3ODgwNjYxM18xMDczNDAwOTM4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4ODA2NjEzIiwiYiI6IjEwNzM0MDA5MzgiLCJoZWFkaW5nIjoxOTMuOTI4MDI3NTk2NDQ5MjUsImRpc3QiOjcuOTk1fSx7ImlkIjoiMjA0OTg5NzU3LTEwNzg4MDY2MTNfMjYzNzY3NjE0NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3ODgwNjYxMyIsImIiOiIyNjM3Njc2MTQ3IiwiaGVhZGluZyI6MTcuNzMzMzA1MTU2ODU5MjQsImRpc3QiOjIyLjExNH1dfSwiMTA3ODgwNjYzOCI6eyJpZCI6IjEwNzg4MDY2MzgiLCJsb24iOi05Ny43MzM5NSwibGF0IjozMC4yNzA3NCwiZWRnZXMiOlt7ImlkIjoiMTUyNDI5NzE1LTEwNzg4MDY2MzhfMTUyNDk1NjI0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4ODA2NjM4IiwiYiI6IjE1MjQ5NTYyNCIsImhlYWRpbmciOjI4OC42MzM3MjUzODgzNzE2LCJkaXN0Ijo0MS42MzR9LHsiaWQiOiIxNTI0Mjk3MTUtMTA3ODgwNjYzOF8xMDc4ODA2NDk4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4ODA2NjM4IiwiYiI6IjEwNzg4MDY0OTgiLCJoZWFkaW5nIjoxMDguNTczNDk1ODg0MDM5NDUsImRpc3QiOjI0LjM2M31dfSwiMTA3ODgwNjY1MyI6eyJpZCI6IjEwNzg4MDY2NTMiLCJsb24iOi05Ny43MzQ3MywibGF0IjozMC4yNzA5NiwiZWRnZXMiOlt7ImlkIjoiMTUyNDI5NzE1LTEwNzg4MDY2NTNfNDQyNzYxNTUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4ODA2NjUzIiwiYiI6IjQ0Mjc2MTU1MyIsImhlYWRpbmciOjI4NC4zNjAyOTEzMTUwMzQ1LCJkaXN0IjoxNy44Nzl9LHsiaWQiOiIxNTI0Mjk3MTUtMTA3ODgwNjY1M18xNTI0OTU2MjQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzg4MDY2NTMiLCJiIjoiMTUyNDk1NjI0IiwiaGVhZGluZyI6MTA3LjI5NTEyNDEzNTE4ODM2LCJkaXN0IjozNy4yODl9XX0sIjEwNzg4MDY2NTciOnsiaWQiOiIxMDc4ODA2NjU3IiwibG9uIjotOTcuNzM0LCJsYXQiOjMwLjI3MTc2LCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NC0xMDc4ODA2NjU3XzEwNzg4MDY1MzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODgwNjY1NyIsImIiOiIxMDc4ODA2NTM3IiwiaGVhZGluZyI6MTk5Ljg4MzA2MTUxMzk5ODIsImRpc3QiOjE0LjE0Nn0seyJpZCI6IjE1Mzk2NTY0LTEwNzg4MDY2NTdfMTk5NzM0NDM0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4ODA2NjU3IiwiYiI6IjE5OTczNDQzNDYiLCJoZWFkaW5nIjoxNi4xMzY2NDg5OTMyMjUzODYsImRpc3QiOjEwLjM4Nn1dfSwiMTA3ODgwNjY4OCI6eyJpZCI6IjEwNzg4MDY2ODgiLCJsb24iOi05Ny43MzQyNCwibGF0IjozMC4yNzExNiwiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTA3ODgwNjY4OF8xNTI0OTU2MjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODgwNjY4OCIsImIiOiIxNTI0OTU2MjQiLCJoZWFkaW5nIjoxOTkuMTQ2ODExOTAzMjYyMTUsImRpc3QiOjM1LjIwNX0seyJpZCI6IjE1Mzk2NTY0LTEwNzg4MDY2ODhfMTA3ODgwNjUyNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4ODA2Njg4IiwiYiI6IjEwNzg4MDY1MjQiLCJoZWFkaW5nIjoxOS44ODMxMjgxMDExNDYwNDUsImRpc3QiOjI4LjI5Mn1dfSwiMTA3ODkxODA3OSI6eyJpZCI6IjEwNzg5MTgwNzkiLCJsb24iOi05Ny43MzY0MywibGF0IjozMC4yNzQ4OSwiZWRnZXMiOlt7ImlkIjoiMjA0OTY0NzY0LTEwNzg5MTgwNzlfMTUyNTM5NjU1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4OTE4MDc5IiwiYiI6IjE1MjUzOTY1NSIsImhlYWRpbmciOjE4LjAyOTIzMDAyMDY3MzEyNiwiZGlzdCI6OS4zMjd9XX0sIjEwNzg5MTgyNzkiOnsiaWQiOiIxMDc4OTE4Mjc5IiwibG9uIjotOTcuNzM3NzgsImxhdCI6MzAuMjc1MzcsImVkZ2VzIjpbeyJpZCI6IjI1NzU4NDE0LTEwNzg5MTgyNzlfMTA3ODkxOTQyOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4OTE4Mjc5IiwiYiI6IjEwNzg5MTk0MjkiLCJoZWFkaW5nIjoyODkuOTkyOTgwOTE1MDQyMiwiZGlzdCI6MTkuNDU0fSx7ImlkIjoiMjU3NTg0MTQtMTA3ODkxODI3OV8yNjM3NjUyNzUyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTgyNzkiLCJiIjoiMjYzNzY1Mjc1MiIsImhlYWRpbmciOjEwOC4yMjA1Mzc2MzE2NTgyNywiZGlzdCI6MjEuMjczfV19LCIxMDc4OTE4ODgwIjp7ImlkIjoiMTA3ODkxODg4MCIsImxvbiI6LTk3LjczNjIyLCJsYXQiOjMwLjI3NTQ0LCJlZGdlcyI6W3siaWQiOiIyMDQ5NjQ3NjQtMTA3ODkxODg4MF8xNTI0MzU4OTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzg5MTg4ODAiLCJiIjoiMTUyNDM1ODk3IiwiaGVhZGluZyI6MTguMTUzODg0NzEzMDIwMzIsImRpc3QiOjUyLjQ5OX1dfSwiMTA3ODkxOTA4NyI6eyJpZCI6IjEwNzg5MTkwODciLCJsb24iOi05Ny43MzcwNiwibGF0IjozMC4yNzUxNiwiZWRnZXMiOlt7ImlkIjoiMjU3NTg0MTQtMTA3ODkxOTA4N18xMDc4OTE5MzU0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTkwODciLCJiIjoiMTA3ODkxOTM1NCIsImhlYWRpbmciOjI5Mi4xMjgzNTYxOTg5NDAyLCJkaXN0IjoxNy42NTh9LHsiaWQiOiIyNTc1ODQxNC0xMDc4OTE5MDg3XzEwNzg5MTk0NjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxOTA4NyIsImIiOiIxMDc4OTE5NDY0IiwiaGVhZGluZyI6MTA2LjUwMjUwMzUyMjkzMDc4LCJkaXN0IjozNS4xMjR9XX0sIjEwNzg5MTkyNzUiOnsiaWQiOiIxMDc4OTE5Mjc1IiwibG9uIjotOTcuNzM4NDEsImxhdCI6MzAuMjc1ODgsImVkZ2VzIjpbeyJpZCI6IjE1Mzk4MTA5LTEwNzg5MTkyNzVfMTUyNTU0OTgwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTkyNzUiLCJiIjoiMTUyNTU0OTgwIiwiaGVhZGluZyI6MTk5LjE0NTk0OTY4NzMyNDgsImRpc3QiOjM1LjIwNH0seyJpZCI6IjE1Mzk4MTA5LTEwNzg5MTkyNzVfMjE2NzE2MTI0NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4OTE5Mjc1IiwiYiI6IjIxNjcxNjEyNDciLCJoZWFkaW5nIjoxNS44NTc0MjQ2ODY0NzI5NTMsImRpc3QiOjYzLjM4NH1dfSwiMTA3ODkxOTM1NCI6eyJpZCI6IjEwNzg5MTkzNTQiLCJsb24iOi05Ny43MzcyMywibGF0IjozMC4yNzUyMiwiZWRnZXMiOlt7ImlkIjoiMjU3NTg0MTQtMTA3ODkxOTM1NF8yNjM3NjUyNzUxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTkzNTQiLCJiIjoiMjYzNzY1Mjc1MSIsImhlYWRpbmciOjI4NC44ODkxNDEyMDMyNDEsImRpc3QiOjEyLjk0M30seyJpZCI6IjI1NzU4NDE0LTEwNzg5MTkzNTRfMTA3ODkxOTA4NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4OTE5MzU0IiwiYiI6IjEwNzg5MTkwODciLCJoZWFkaW5nIjoxMTIuMTI4MzU2MTk4OTQwMTgsImRpc3QiOjE3LjY1OH1dfSwiMTA3ODkxOTQyOSI6eyJpZCI6IjEwNzg5MTk0MjkiLCJsb24iOi05Ny43Mzc5NywibGF0IjozMC4yNzU0MywiZWRnZXMiOlt7ImlkIjoiMjU3NTg0MTQtMTA3ODkxOTQyOV8yNjM3NjUyNzU1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTk0MjkiLCJiIjoiMjYzNzY1Mjc1NSIsImhlYWRpbmciOjI4Ny4zMjk3NDEyNTUxNDcyLCJkaXN0Ijo0OC4zODF9LHsiaWQiOiIyNTc1ODQxNC0xMDc4OTE5NDI5XzEwNzg5MTgyNzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxOTQyOSIsImIiOiIxMDc4OTE4Mjc5IiwiaGVhZGluZyI6MTA5Ljk5Mjk4MDkxNTA0MjIxLCJkaXN0IjoxOS40NTR9XX0sIjEwNzg5MTk0NjQiOnsiaWQiOiIxMDc4OTE5NDY0IiwibG9uIjotOTcuNzM2NzEsImxhdCI6MzAuMjc1MDcsImVkZ2VzIjpbeyJpZCI6IjI1NzU4NDE0LTEwNzg5MTk0NjRfMTA3ODkxOTA4NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4OTE5NDY0IiwiYiI6IjEwNzg5MTkwODciLCJoZWFkaW5nIjoyODYuNTAyNTAzNTIyOTMwOCwiZGlzdCI6MzUuMTI0fSx7ImlkIjoiMjU3NTg0MTQtMTA3ODkxOTQ2NF8xNTI1Mzk2NTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxOTQ2NCIsImIiOiIxNTI1Mzk2NTUiLCJoZWFkaW5nIjoxMTAuMzg3Nzc0NTU2MjY4NCwiZGlzdCI6MzEuODIxfV19LCIxMDg1ODAyNTQ1Ijp7ImlkIjoiMTA4NTgwMjU0NSIsImxvbiI6LTk3LjczNTA5LCJsYXQiOjMwLjI3NDIzLCJlZGdlcyI6W3siaWQiOiIyMDQ5ODk3NTctMTA4NTgwMjU0NV8xMDg1ODAyNTU5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDg1ODAyNTQ1IiwiYiI6IjEwODU4MDI1NTkiLCJoZWFkaW5nIjoxNzIuNTgyMTI4MjE5NTg5LCJkaXN0IjoyMi4zNTl9LHsiaWQiOiIyMDQ5ODk3NTctMTA4NTgwMjU0NV8xMDg1ODAyNTQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDg1ODAyNTQ1IiwiYiI6IjEwODU4MDI1NDYiLCJoZWFkaW5nIjotOS4zODc1NjgzNTY1MzI4MDUsImRpc3QiOjIzLjU5Nn1dfSwiMTA4NTgwMjU0NiI6eyJpZCI6IjEwODU4MDI1NDYiLCJsb24iOi05Ny43MzUxMywibGF0IjozMC4yNzQ0NCwiZWRnZXMiOlt7ImlkIjoiMjA0OTg5NzU3LTEwODU4MDI1NDZfMTA4NTgwMjU0NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA4NTgwMjU0NiIsImIiOiIxMDg1ODAyNTQ1IiwiaGVhZGluZyI6MTcwLjYxMjQzMTY0MzQ2NzIsImRpc3QiOjIzLjU5Nn0seyJpZCI6IjIwNDk4OTc1Ny0xMDg1ODAyNTQ2XzE1MjU2NjMzNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA4NTgwMjU0NiIsImIiOiIxNTI1NjYzMzQiLCJoZWFkaW5nIjotMi4yNTkzMDIwOTI3ODQ2MTM3LCJkaXN0IjoyNC40MDh9XX0sIjEwODU4MDI1NTkiOnsiaWQiOiIxMDg1ODAyNTU5IiwibG9uIjotOTcuNzM1MDYsImxhdCI6MzAuMjc0MDMsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTc1Ny0xMDg1ODAyNTU5XzMwMDc2NTAwOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA4NTgwMjU1OSIsImIiOiIzMDA3NjUwMDkiLCJoZWFkaW5nIjoxNzAuMTUxOTkwMTMwNTcwMDgsImRpc3QiOjE2Ljg3N30seyJpZCI6IjIwNDk4OTc1Ny0xMDg1ODAyNTU5XzEwODU4MDI1NDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwODU4MDI1NTkiLCJiIjoiMTA4NTgwMjU0NSIsImhlYWRpbmciOi03LjQxNzg3MTc4MDQxMDk4OCwiZGlzdCI6MjIuMzU5fV19LCIxMTkwMDYxNDg4Ijp7ImlkIjoiMTE5MDA2MTQ4OCIsImxvbiI6LTk3LjczNTgxLCJsYXQiOjMwLjI2NzA1LCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NS0xMTkwMDYxNDg4XzQ0MzE4NzEyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMTkwMDYxNDg4IiwiYiI6IjQ0MzE4NzEyMCIsImhlYWRpbmciOjE5Ni41MzkxNDMwNjQyNDI3MiwiZGlzdCI6NDMuOTQ0fSx7ImlkIjoiMTAzMDcyNzU1LTExOTAwNjE0ODhfMTUyNjA0MjE5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjExOTAwNjE0ODgiLCJiIjoiMTUyNjA0MjE5IiwiaGVhZGluZyI6MjAuNDA1NzgxNzk5MTAxMDU3LCJkaXN0Ijo4LjI4fV19LCIxMzcyNjAxOTkwIjp7ImlkIjoiMTM3MjYwMTk5MCIsImxvbiI6LTk3LjczMTYsImxhdCI6MzAuMjc1NDMsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA2OS0xMzcyNjAxOTkwXzE3NTkzMjg3NTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEzNzI2MDE5OTAiLCJiIjoiMTc1OTMyODc1NyIsImhlYWRpbmciOi0xNzAuMTUyMTE0MTA4MTE5NzUsImRpc3QiOjE2Ljg3N31dfSwiMTM4OTA2NzU5MCI6eyJpZCI6IjEzODkwNjc1OTAiLCJsb24iOi05Ny43Mzk4MiwibGF0IjozMC4yODExMiwiZWRnZXMiOlt7ImlkIjoiMTI0OTUzNzA0LTEzODkwNjc1OTBfMTUyNTAyOTY1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMzg5MDY3NTkwIiwiYiI6IjE1MjUwMjk2NSIsImhlYWRpbmciOjEwOC45MDg4MzEzMTU5MTg0LCJkaXN0IjozNy42M30seyJpZCI6IjEyNDk1MzcwNC0xMzg5MDY3NTkwXzE1MjUwMjk2NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTM4OTA2NzU5MCIsImIiOiIxNTI1MDI5NjciLCJoZWFkaW5nIjotNzAuMTk3ODQ2MzA3MjU3NTUsImRpc3QiOjE2LjM2Mn1dfSwiMTQwMDIxMTI3MiI6eyJpZCI6IjE0MDAyMTEyNzIiLCJsb24iOi05Ny43MzU1LCJsYXQiOjMwLjI4MDE2LCJlZGdlcyI6W3siaWQiOiIxODEwMjUwODItMTQwMDIxMTI3Ml8xNDIxMTM1MDEwIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE0MDAyMTEyNzIiLCJiIjoiMTQyMTEzNTAxMCIsImhlYWRpbmciOi0xMjMuMzYwNzEzNjgxMDUwMTYsImRpc3QiOjguMDY0fV19LCIxNDAwMjExMjc1Ijp7ImlkIjoiMTQwMDIxMTI3NSIsImxvbiI6LTk3LjczNTYxLCJsYXQiOjMwLjI4MDA4LCJlZGdlcyI6W3siaWQiOiIxODEwMjUwODItMTQwMDIxMTI3NV8xNDIxMTM1MDA3IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE0MDAyMTEyNzUiLCJiIjoiMTQyMTEzNTAwNyIsImhlYWRpbmciOi0xMzkuMDQ0OTA4ODI2NTA5NiwiZGlzdCI6NC40MDR9XX0sIjE0MDg4OTk0OTMiOnsiaWQiOiIxNDA4ODk5NDkzIiwibG9uIjotOTcuNzM3ODcsImxhdCI6MzAuMjY0NTUsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTQ3LTE0MDg4OTk0OTNfMTUyNTY2MzA4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDA4ODk5NDkzIiwiYiI6IjE1MjU2NjMwOCIsImhlYWRpbmciOjE5OC4yOTgzMDc3MDc4MDU3MiwiZGlzdCI6NDkuMDR9LHsiaWQiOiIzNzc0OTU0Ny0xNDA4ODk5NDkzXzIxMjgzMjM4MTEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MDg4OTk0OTMiLCJiIjoiMjEyODMyMzgxMSIsImhlYWRpbmciOjE2LjEzNzc5MzQzMzczOTU0NiwiZGlzdCI6My40NjJ9XX0sIjE0MjExMzQ3MjIiOnsiaWQiOiIxNDIxMTM0NzIyIiwibG9uIjotOTcuNzM1MDQsImxhdCI6MzAuMjc1MTQsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTc1Ny0xNDIxMTM0NzIyXzEwNzM0MDM3OTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MjIiLCJiIjoiMTA3MzQwMzc5MCIsImhlYWRpbmciOjE5NC41OTQ5NjE1NDc0MjAxNiwiZGlzdCI6MjIuOTExfSx7ImlkIjoiMjA0OTg5NzU3LTE0MjExMzQ3MjJfMTA3MzQwMzc4NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDcyMiIsImIiOiIxMDczNDAzNzg2IiwiaGVhZGluZyI6MTguNzU5MjI2MzE5OTIwNjkzLCJkaXN0IjoyNi45Mjh9XX0sIjE0MjExMzQ3MjYiOnsiaWQiOiIxNDIxMTM0NzI2IiwibG9uIjotOTcuNzM0ODgsImxhdCI6MzAuMjc1NDksImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTc1Ny0xNDIxMTM0NzI2XzEwNzM0MDM3ODYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MjYiLCJiIjoiMTA3MzQwMzc4NiIsImhlYWRpbmciOjIwNi44NTMzMzkwNjM0ODkwNSwiZGlzdCI6MTQuOTExfSx7ImlkIjoiMjA0OTg5NzU3LTE0MjExMzQ3MjZfMTUyNDM1OTAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzI2IiwiYiI6IjE1MjQzNTkwMiIsImhlYWRpbmciOjMwLjA1NTE1MDUxMTIwOTg3LCJkaXN0Ijo3LjY4NX1dfSwiMTQyMTEzNDcyOCI6eyJpZCI6IjE0MjExMzQ3MjgiLCJsb24iOi05Ny43MzQ3MSwibGF0IjozMC4yNzU1MiwiZWRnZXMiOlt7ImlkIjoiMTMxMjgxNjA2LTE0MjExMzQ3MjhfMTYyNjU2ODYyNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDcyOCIsImIiOiIxNjI2NTY4NjI1IiwiaGVhZGluZyI6MTA4LjIyMDQyODEyMTMxNDMsImRpc3QiOjcwLjkwOH1dfSwiMTQyMTEzNDczMyI6eyJpZCI6IjE0MjExMzQ3MzMiLCJsb24iOi05Ny43MzE1NCwibGF0IjozMC4yNzU2LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNjktMTQyMTEzNDczM18xMzcyNjAxOTkwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzMzIiwiYiI6IjEzNzI2MDE5OTAiLCJoZWFkaW5nIjotMTYyLjk2ODI3Mjk0NjM5MDkzLCJkaXN0IjoxOS43MX1dfSwiMTQyMTEzNDczNCI6eyJpZCI6IjE0MjExMzQ3MzQiLCJsb24iOi05Ny43MzQ5NiwibGF0IjozMC4yNzU1OSwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NzQtMTQyMTEzNDczNF8xNTI0MzU5MDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MzQiLCJiIjoiMTUyNDM1OTAyIiwiaGVhZGluZyI6MTExLjAwOTA1Nzk0OTU5ODg4LCJkaXN0IjoxMi4zNjh9XX0sIjE0MjExMzQ3MzYiOnsiaWQiOiIxNDIxMTM0NzM2IiwibG9uIjotOTcuNzM0NzUsImxhdCI6MzAuMjc1NzEsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzM2XzE2MjY1NTU4MzUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MzYiLCJiIjoiMTYyNjU1NTgzNSIsImhlYWRpbmciOjIwNi4zODAxMDIyNjYyNjksImRpc3QiOjguNjYyfSx7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3MzZfMTQyMTEzNDczNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDczNiIsImIiOiIxNDIxMTM0NzM3IiwiaGVhZGluZyI6MjguOTEzMjQyNzg2MzE3MDM1LCJkaXN0IjoxMy45MzF9XX0sIjE0MjExMzQ3MzciOnsiaWQiOiIxNDIxMTM0NzM3IiwibG9uIjotOTcuNzM0NjgsImxhdCI6MzAuMjc1ODIsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzM3XzE0MjExMzQ3MzYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MzciLCJiIjoiMTQyMTEzNDczNiIsImhlYWRpbmciOjIwOC45MTMyNDI3ODYzMTcwMywiZGlzdCI6MTMuOTMxfSx7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3MzdfMzQzMzM1OTkzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzM3IiwiYiI6IjM0MzMzNTk5MyIsImhlYWRpbmciOjM0Ljc3NDQ3NjM0ODI4Mjc1NCwiZGlzdCI6MjYuOTkyfV19LCIxNDIxMTM0NzQxIjp7ImlkIjoiMTQyMTEzNDc0MSIsImxvbiI6LTk3LjczMzk4LCJsYXQiOjMwLjI3NjQxLCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc0MV8zNDMzMzY4ODMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NDEiLCJiIjoiMzQzMzM2ODgzIiwiaGVhZGluZyI6MjM3LjA1MzM3MzQ4NTQ5NDY2LCJkaXN0IjoxOC4zNDV9LHsiaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc0MV8zMDA3NjMxODciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NDEiLCJiIjoiMzAwNzYzMTg3IiwiaGVhZGluZyI6NTQuMjQyNTkzNTkwMTE2MDgsImRpc3QiOjkuNDg1fV19LCIxNDIxMTM0NzQ5Ijp7ImlkIjoiMTQyMTEzNDc0OSIsImxvbiI6LTk3LjczMzY5LCJsYXQiOjMwLjI3NjU4LCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc0OV8zMDA3NjMxODciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NDkiLCJiIjoiMzAwNzYzMTg3IiwiaGVhZGluZyI6MjM2LjY0MDE5NjE3NjI2NjU4LCJkaXN0IjoyNC4xOTJ9LHsiaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc0OV8xNTI1NjYzMzgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NDkiLCJiIjoiMTUyNTY2MzM4IiwiaGVhZGluZyI6MzkuNDI5MDY0OTI3NjcwNDUsImRpc3QiOjI3LjI2OX1dfSwiMTQyMTEzNDc1MCI6eyJpZCI6IjE0MjExMzQ3NTAiLCJsb24iOi05Ny43MzU2NiwibGF0IjozMC4yNzY4OCwiZWRnZXMiOlt7ImlkIjoiMTI0OTUzMTI4LTE0MjExMzQ3NTBfMTUyNTM5NjY2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzUwIiwiYiI6IjE1MjUzOTY2NiIsImhlYWRpbmciOjE3LjgzOTA3MzM3MDYzMzY0LCJkaXN0IjoxMDMuNjQ2fV19LCIxNDIxMTM0NzUxIjp7ImlkIjoiMTQyMTEzNDc1MSIsImxvbiI6LTk3LjczMzM0LCJsYXQiOjMwLjI3Njk2LCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc1MV8xNTI1NjYzMzgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NTEiLCJiIjoiMTUyNTY2MzM4IiwiaGVhZGluZyI6MjE3LjgzMjA3ODE5MjQxOTI2LCJkaXN0IjoyNi42Njh9LHsiaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc1MV8xNDIxMTM0NzUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzUxIiwiYiI6IjE0MjExMzQ3NTMiLCJoZWFkaW5nIjozMS40OTQyMDI3MDY2MDEwMiwiZGlzdCI6MjIuMTAxfV19LCIxNDIxMTM0NzUzIjp7ImlkIjoiMTQyMTEzNDc1MyIsImxvbiI6LTk3LjczMzIyLCJsYXQiOjMwLjI3NzEzLCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc1M18xNDIxMTM0NzUxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzUzIiwiYiI6IjE0MjExMzQ3NTEiLCJoZWFkaW5nIjoyMTEuNDk0MjAyNzA2NjAxMDIsImRpc3QiOjIyLjEwMX0seyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzUzXzE1MjU2NjM0MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc1MyIsImIiOiIxNTI1NjYzNDAiLCJoZWFkaW5nIjoxOC4wMjg4NDEzMTcyNjk2MTcsImRpc3QiOjkuMzI2fV19LCIxNDIxMTM0NzU0Ijp7ImlkIjoiMTQyMTEzNDc1NCIsImxvbiI6LTk3LjczMzE3LCJsYXQiOjMwLjI3NzI3LCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc1NF8xNTI1NjYzNDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NTQiLCJiIjoiMTUyNTY2MzQwIiwiaGVhZGluZyI6MTk2LjEzNTc5NjAwNjQ1ODE1LCJkaXN0Ijo2LjkyNH0seyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzU0XzE0MjExMzQ3NjQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NTQiLCJiIjoiMTQyMTEzNDc2NCIsImhlYWRpbmciOjE2Ljg2MTM2NTE1ODIxNjMxMiwiZGlzdCI6NzIuOTc3fV19LCIxNDIxMTM0NzU1Ijp7ImlkIjoiMTQyMTEzNDc1NSIsImxvbiI6LTk3LjczMDc1LCJsYXQiOjMwLjI3Nzg2LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNjktMTQyMTEzNDc1NV8xNTI3MTExMzQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NTUiLCJiIjoiMTUyNzExMTM0IiwiaGVhZGluZyI6LTE2Mi4zODM0MjM0NDE1OTkwNiwiZGlzdCI6NDcuNjg4fV19LCIxNDIxMTM0NzY0Ijp7ImlkIjoiMTQyMTEzNDc2NCIsImxvbiI6LTk3LjczMjk1LCJsYXQiOjMwLjI3NzksImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzY0XzE0MjExMzQ3NTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NjQiLCJiIjoiMTQyMTEzNDc1NCIsImhlYWRpbmciOjE5Ni44NjEzNjUxNTgyMTYzLCJkaXN0Ijo3Mi45Nzd9LHsiaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc2NF8xNDIxMTM0NzcxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzY0IiwiYiI6IjE0MjExMzQ3NzEiLCJoZWFkaW5nIjoxOS41NDgwMDIwMDg2NjY3NzQsImRpc3QiOjI1Ljg4fV19LCIxNDIxMTM0NzY4Ijp7ImlkIjoiMTQyMTEzNDc2OCIsImxvbiI6LTk3LjczMDcsImxhdCI6MzAuMjc3OTksImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA2OS0xNDIxMTM0NzY4XzE0MjExMzQ3NTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NjgiLCJiIjoiMTQyMTEzNDc1NSIsImhlYWRpbmciOi0xNjEuNTM5OTc3MTkyMzg4OTYsImRpc3QiOjE1LjE5M31dfSwiMTQyMTEzNDc3MSI6eyJpZCI6IjE0MjExMzQ3NzEiLCJsb24iOi05Ny43MzI4NiwibGF0IjozMC4yNzgxMiwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3NzFfMTQyMTEzNDc2NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc3MSIsImIiOiIxNDIxMTM0NzY0IiwiaGVhZGluZyI6MTk5LjU0ODAwMjAwODY2Njc3LCJkaXN0IjoyNS44OH0seyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzcxXzE0NDA2MDgzMjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NzEiLCJiIjoiMTQ0MDYwODMyOCIsImhlYWRpbmciOjE5LjE0NTUzMzcwMDI3NjI4LCJkaXN0Ijo1Ljg2N31dfSwiMTQyMTEzNDc5MSI6eyJpZCI6IjE0MjExMzQ3OTEiLCJsb24iOi05Ny43MzUwNCwibGF0IjozMC4yNzg1MywiZWRnZXMiOlt7ImlkIjoiMTI0OTUzMTI4LTE0MjExMzQ3OTFfMTUyNTAyMzc5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzkxIiwiYiI6IjE1MjUwMjM3OSIsImhlYWRpbmciOjE2LjEzNTU4MzMyOTQ5NjQ3LCJkaXN0IjoxMC4zODZ9XX0sIjE0MjExMzQ3OTQiOnsiaWQiOiIxNDIxMTM0Nzk0IiwibG9uIjotOTcuNzMyNiwibGF0IjozMC4yNzg1OCwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3OTRfMTUyNTY2MzQ5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0Nzk0IiwiYiI6IjE1MjU2NjM0OSIsImhlYWRpbmciOjIxNS4zNzkzMjA1NDQ3MjExNCwiZGlzdCI6MTQuOTU2fSx7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3OTRfMTUyNTY2MzUyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0Nzk0IiwiYiI6IjE1MjU2NjM1MiIsImhlYWRpbmciOjM4LjI3NDE4ODk4NzE0MTgzLCJkaXN0IjoxNS41MzN9XX0sIjE0MjExMzQ3OTciOnsiaWQiOiIxNDIxMTM0Nzk3IiwibG9uIjotOTcuNzMwODQsImxhdCI6MzAuMjc4NjMsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA2OC0xNDIxMTM0Nzk3XzE3NTkyNDI1MTkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3OTciLCJiIjoiMTc1OTI0MjUxOSIsImhlYWRpbmciOjI4NC4zNjEzNzc4OTgzNzM1LCJkaXN0IjoxNy44Nzd9LHsiaWQiOiIxNjQyNzEwNjgtMTQyMTEzNDc5N18xNTI1NjcxMDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3OTciLCJiIjoiMTUyNTY3MTA1IiwiaGVhZGluZyI6MTA1LjE2ODIwMjU5NjAyMzQzLCJkaXN0IjozMy44OTR9XX0sIjE0MjExMzQ4MDEiOnsiaWQiOiIxNDIxMTM0ODAxIiwibG9uIjotOTcuNzMxMTgsImxhdCI6MzAuMjc4NzEsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA2Ny0xNDIxMTM0ODAxXzE3NTkyNDI1MjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MDEiLCJiIjoiMTc1OTI0MjUyMCIsImhlYWRpbmciOjI5MS4wMDk2ODgxNDQyMzgwNSwiZGlzdCI6OS4yNzZ9LHsiaWQiOiIxNjQyNzEwNjctMTQyMTEzNDgwMV8xNzU5MjQyNTE5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODAxIiwiYiI6IjE3NTkyNDI1MTkiLCJoZWFkaW5nIjoxMDYuMDY4Njc2MzA0OTQ4MDYsImRpc3QiOjE2LjAyfV19LCIxNDIxMTM0ODAzIjp7ImlkIjoiMTQyMTEzNDgwMyIsImxvbiI6LTk3LjczNDk1LCJsYXQiOjMwLjI3ODczLCJlZGdlcyI6W3siaWQiOiIxMjQ5NTMxMjgtMTQyMTEzNDgwM18xNDIxMTM0ODA1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODAzIiwiYiI6IjE0MjExMzQ4MDUiLCJoZWFkaW5nIjozNC43NzM3MjM0Mzc1ODkyLCJkaXN0Ijo2Ljc0OH1dfSwiMTQyMTEzNDgwNSI6eyJpZCI6IjE0MjExMzQ4MDUiLCJsb24iOi05Ny43MzQ5MSwibGF0IjozMC4yNzg3OCwiZWRnZXMiOlt7ImlkIjoiMTI0OTUzMTI4LTE0MjExMzQ4MDVfMTUyNTM5NjY4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODA1IiwiYiI6IjE1MjUzOTY2OCIsImhlYWRpbmciOjMzLjA2MTc4NTEwNzg2MDQxLCJkaXN0Ijo1LjI5MX1dfSwiMTQyMTEzNDgxMCI6eyJpZCI6IjE0MjExMzQ4MTAiLCJsb24iOi05Ny43MzIyNywibGF0IjozMC4yNzg4OSwiZWRnZXMiOlt7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ4MTBfMTUyNTY2MzU0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODEwIiwiYiI6IjE1MjU2NjM1NCIsImhlYWRpbmciOjIyNi42ODk3MTk3NzczODM4NiwiZGlzdCI6MTQuNTQ1fSx7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ4MTBfMTUyNTY2MzU1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODEwIiwiYiI6IjE1MjU2NjM1NSIsImhlYWRpbmciOjU2LjA5NDc3MzE3NTkzNDM0LCJkaXN0IjoxMy45MTF9XX0sIjE0MjExMzQ4MTEiOnsiaWQiOiIxNDIxMTM0ODExIiwibG9uIjotOTcuNzMxOTcsImxhdCI6MzAuMjc4OTIsImVkZ2VzIjpbeyJpZCI6IjEyODI0NzUxOS0xNDIxMTM0ODExXzE1MjU2NjM1NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgxMSIsImIiOiIxNTI1NjYzNTUiLCJoZWFkaW5nIjoyODQuMzYxNDE4OTkzMzA2OCwiZGlzdCI6MTcuODc3fSx7ImlkIjoiMTI4MjQ3NTE5LTE0MjExMzQ4MTFfMTQ0MDYwODMzMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgxMSIsImIiOiIxNDQwNjA4MzMyIiwiaGVhZGluZyI6MTA3LjQ0NDIzOTI1NjQ3NDA4LCJkaXN0IjoyMi4xODh9XX0sIjE0MjExMzQ4MTMiOnsiaWQiOiIxNDIxMTM0ODEzIiwibG9uIjotOTcuNzM0NzksImxhdCI6MzAuMjc4OTUsImVkZ2VzIjpbeyJpZCI6IjEyNjQwNTQ4My0xNDIxMTM0ODEzXzE0MjExMzQ4MjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MTMiLCJiIjoiMTQyMTEzNDgyMyIsImhlYWRpbmciOjMwLjA1NDI2NjA5NzIwOTAwNSwiZGlzdCI6Ny42ODV9XX0sIjE0MjExMzQ4MTQiOnsiaWQiOiIxNDIxMTM0ODE0IiwibG9uIjotOTcuNzMyMzEsImxhdCI6MzAuMjc5MDEsImVkZ2VzIjpbeyJpZCI6IjEyNDk1MzExNS0xNDIxMTM0ODE0XzE3NTkyNDI1MjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MTQiLCJiIjoiMTc1OTI0MjUyOCIsImhlYWRpbmciOjI4OC4yMjExNTM4MTU1MDc2LCJkaXN0IjozNS40NTN9LHsiaWQiOiIxMjQ5NTMxMTUtMTQyMTEzNDgxNF8xNTI1NjYzNTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MTQiLCJiIjoiMTUyNTY2MzU1IiwiaGVhZGluZyI6MTA5LjgwMTY2NzAwMzk4MzgxLCJkaXN0IjoxNi4zNjJ9XX0sIjE0MjExMzQ4MjMiOnsiaWQiOiIxNDIxMTM0ODIzIiwibG9uIjotOTcuNzM0NzUsImxhdCI6MzAuMjc5MDEsImVkZ2VzIjpbeyJpZCI6IjEyNjQwNTQ4My0xNDIxMTM0ODIzXzE1MjUzOTY3MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgyMyIsImIiOiIxNTI1Mzk2NzAiLCJoZWFkaW5nIjoyMC40MDM0Nzc2ODQ2MzY5NDcsImRpc3QiOjguMjc5fV19LCIxNDIxMTM0ODI0Ijp7ImlkIjoiMTQyMTEzNDgyNCIsImxvbiI6LTk3LjczMjAxLCJsYXQiOjMwLjI3OTA0LCJlZGdlcyI6W3siaWQiOiIxMjgyNDc1MjktMTQyMTEzNDgyNF8xNTI1NjYzNTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MjQiLCJiIjoiMTUyNTY2MzU1IiwiaGVhZGluZyI6MjM2LjYzOTU0MjE1NzAxODcsImRpc3QiOjE2LjEyN30seyJpZCI6IjEyODI0NzUyOS0xNDIxMTM0ODI0XzE0MjExMzQ4MjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MjQiLCJiIjoiMTQyMTEzNDgyNyIsImhlYWRpbmciOjYyLjc4MDA5MTI5NTc3NjI5NSwiZGlzdCI6NjAuNTl9XX0sIjE0MjExMzQ4MjciOnsiaWQiOiIxNDIxMTM0ODI3IiwibG9uIjotOTcuNzMxNDUsImxhdCI6MzAuMjc5MjksImVkZ2VzIjpbeyJpZCI6IjEyODI0NzUyOS0xNDIxMTM0ODI3XzE0MjExMzQ4MjQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MjciLCJiIjoiMTQyMTEzNDgyNCIsImhlYWRpbmciOjI0Mi43ODAwOTEyOTU3NzYzLCJkaXN0Ijo2MC41OX1dfSwiMTQyMTEzNDg3OSI6eyJpZCI6IjE0MjExMzQ4NzkiLCJsb24iOi05Ny43MzQ1NiwibGF0IjozMC4yNzk1MSwiZWRnZXMiOlt7ImlkIjoiMTI2NDA1NDg1LTE0MjExMzQ4NzlfMTUyNTM5NjcyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODc5IiwiYiI6IjE1MjUzOTY3MiIsImhlYWRpbmciOjE2LjEzNTQyNDE2NzkxMzg2LCJkaXN0IjoxMy44NDh9XX0sIjE0MjExMzQ5MDciOnsiaWQiOiIxNDIxMTM0OTA3IiwibG9uIjotOTcuNzM0MzksImxhdCI6MzAuMjc5NTksImVkZ2VzIjpbeyJpZCI6IjEyNDk1MzExNS0xNDIxMTM0OTA3XzE1MjUzOTY3MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDkwNyIsImIiOiIxNTI1Mzk2NzIiLCJoZWFkaW5nIjoyODkuNTIwMzM5NTU2MzQ3MjcsImRpc3QiOjEzLjI3MX0seyJpZCI6IjEyNDk1MzExNS0xNDIxMTM0OTA3XzE0NDA2MDgzNDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ5MDciLCJiIjoiMTQ0MDYwODM0NyIsImhlYWRpbmciOjExMS4wMDk4NjQ0NTUzNDMxMywiZGlzdCI6Ni4xODR9XX0sIjE0MjExMzQ5MzAiOnsiaWQiOiIxNDIxMTM0OTMwIiwibG9uIjotOTcuNzM0NjMsImxhdCI6MzAuMjc5NjYsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTgzLTE0MjExMzQ5MzBfMTUyNTY3MTAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0OTMwIiwiYiI6IjE1MjU2NzEwMiIsImhlYWRpbmciOjI4Ny42NzY0NDgzNTMzMTI5NCwiZGlzdCI6NDcuNDYyfSx7ImlkIjoiMzc3NDk1ODMtMTQyMTEzNDkzMF8xNTI1Mzk2NzIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ5MzAiLCJiIjoiMTUyNTM5NjcyIiwiaGVhZGluZyI6MTA3LjQ0NDM5NDMxODc5NjQ1LCJkaXN0IjoxMS4wOTR9XX0sIjE0MjExMzQ5NTYiOnsiaWQiOiIxNDIxMTM0OTU2IiwibG9uIjotOTcuNzM0NDksImxhdCI6MzAuMjc5NzQsImVkZ2VzIjpbeyJpZCI6IjE1MDM1MDAzNC0xNDIxMTM0OTU2XzE0MjExMzQ5ODgiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTQyMTEzNDk1NiIsImIiOiIxNDIxMTM0OTg4IiwiaGVhZGluZyI6MTYuNzk4MTQ1MDg5MTM3Nzg3LCJkaXN0IjoyNi42MzR9XX0sIjE0MjExMzQ5NzUiOnsiaWQiOiIxNDIxMTM0OTc1IiwibG9uIjotOTcuNzM1NzQsImxhdCI6MzAuMjc5ODYsImVkZ2VzIjpbeyJpZCI6IjE1MDM1MDAyMy0xNDIxMTM0OTc1XzE1MjUwMjM3NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDk3NSIsImIiOiIxNTI1MDIzNzciLCJoZWFkaW5nIjotMTYxLjQyOTIwODI4MzEyNDIsImRpc3QiOjEwOC43Nn1dfSwiMTQyMTEzNDk4MyI6eyJpZCI6IjE0MjExMzQ5ODMiLCJsb24iOi05Ny43MzU1OCwibGF0IjozMC4yNzk5MywiZWRnZXMiOlt7ImlkIjoiMjA0OTg5NzM0LTE0MjExMzQ5ODNfMTUyNTY3MDk5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0OTgzIiwiYiI6IjE1MjU2NzA5OSIsImhlYWRpbmciOjI4NC44ODk4MzA4ODI0Nzk1LCJkaXN0IjoxMi45NDJ9LHsiaWQiOiIyMDQ5ODk3MzQtMTQyMTEzNDk4M180NDI3NjE1NjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ5ODMiLCJiIjoiNDQyNzYxNTYzIiwiaGVhZGluZyI6MTE0Ljc0MzgyMzU0ODQ2MTYzLCJkaXN0Ijo1LjI5N31dfSwiMTQyMTEzNDk5NyI6eyJpZCI6IjE0MjExMzQ5OTciLCJsb24iOi05Ny43MzU4MiwibGF0IjozMC4yOCwiZWRnZXMiOlt7ImlkIjoiMTUzOTMzODUtMTQyMTEzNDk5N18xNDIxMTM1MDI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0OTk3IiwiYiI6IjE0MjExMzUwMjYiLCJoZWFkaW5nIjoyODguMjIxMjE1OTM2MTk5MjYsImRpc3QiOjg1LjA4N30seyJpZCI6IjE1MzkzMzg1LTE0MjExMzQ5OTdfMTUyNTY3MDk5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0OTk3IiwiYiI6IjE1MjU2NzA5OSIsImhlYWRpbmciOjExMi43MzI2MDAwNzE1NjI2OSwiZGlzdCI6MTEuNDc1fV19LCIxNDIxMTM1MDA3Ijp7ImlkIjoiMTQyMTEzNTAwNyIsImxvbiI6LTk3LjczNTY0LCJsYXQiOjMwLjI4MDA1LCJlZGdlcyI6W3siaWQiOiIxODEwMjUwODItMTQyMTEzNTAwN18xNTI1NjcwOTkiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTQyMTEzNTAwNyIsImIiOiIxNTI1NjcwOTkiLCJoZWFkaW5nIjotMTQ1Ljk3ODk1NjYxMDk0NzM2LCJkaXN0IjoxMi4wMzh9XX0sIjE0MjExMzUwMTAiOnsiaWQiOiIxNDIxMTM1MDEwIiwibG9uIjotOTcuNzM1NTcsImxhdCI6MzAuMjgwMTIsImVkZ2VzIjpbeyJpZCI6IjE4MTAyNTA4Mi0xNDIxMTM1MDEwXzE0MDAyMTEyNzUiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTQyMTEzNTAxMCIsImIiOiIxNDAwMjExMjc1IiwiaGVhZGluZyI6LTEzOS4wNDQ5MTY1MjAyNDg2MiwiZGlzdCI6NS44NzF9XX0sIjE0MjExMzUwMTkiOnsiaWQiOiIxNDIxMTM1MDE5IiwibG9uIjotOTcuNzM2ODQsImxhdCI6MzAuMjgwMTYsImVkZ2VzIjpbeyJpZCI6IjE1MDM0OTk4NS0xNDIxMTM1MDE5XzE1MjUwMjM3NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDIxMTM1MDE5IiwiYiI6IjE1MjUwMjM3NSIsImhlYWRpbmciOjE5Ny4xMTcxNjQyNDc4ODg0NywiZGlzdCI6MTA3Ljg3Nn0seyJpZCI6IjE1MDM0OTk4NS0xNDIxMTM1MDE5XzE1MjU2NzA5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDIxMTM1MDE5IiwiYiI6IjE1MjU2NzA5NSIsImhlYWRpbmciOjE5Ljg4MTQ1NDg2Mzk5MTUyLCJkaXN0IjoxNC4xNDZ9XX0sIjE0MjExMzUwMjYiOnsiaWQiOiIxNDIxMTM1MDI2IiwibG9uIjotOTcuNzM2NjYsImxhdCI6MzAuMjgwMjQsImVkZ2VzIjpbeyJpZCI6IjE1MzkzMzg1LTE0MjExMzUwMjZfMTUyNTY3MDk1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM1MDI2IiwiYiI6IjE1MjU2NzA5NSIsImhlYWRpbmciOjI4OS41MjA0NjAyNzY2MjA2LCJkaXN0IjoxMy4yNzF9LHsiaWQiOiIxNTM5MzM4NS0xNDIxMTM1MDI2XzE0MjExMzQ5OTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzUwMjYiLCJiIjoiMTQyMTEzNDk5NyIsImhlYWRpbmciOjEwOC4yMjEyMTU5MzYxOTkyNiwiZGlzdCI6ODUuMDg3fV19LCIxNDIxMTM1MDQxIjp7ImlkIjoiMTQyMTEzNTA0MSIsImxvbiI6LTk3LjczNjk1LCJsYXQiOjMwLjI4MDMyLCJlZGdlcyI6W3siaWQiOiIxNTM5MzM4NS0xNDIxMTM1MDQxXzIxNjcxNjExNjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzUwNDEiLCJiIjoiMjE2NzE2MTE2MyIsImhlYWRpbmciOjI4Ny4zNDIxMzgxMDI2NzMxLCJkaXN0IjoxMDcuODUyfSx7ImlkIjoiMTUzOTMzODUtMTQyMTEzNTA0MV8xNTI1NjcwOTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzUwNDEiLCJiIjoiMTUyNTY3MDk1IiwiaGVhZGluZyI6MTA2LjA2ODkyODgzMzAyODM0LCJkaXN0IjoxNi4wMn1dfSwiMTQyNTczMDgyMSI6eyJpZCI6IjE0MjU3MzA4MjEiLCJsb24iOi05Ny43MzY4LCJsYXQiOjMwLjI2NDMzLCJlZGdlcyI6W3siaWQiOiIxNTM5NjU2NS0xNDI1NzMwODIxXzE1MjYwNDIxNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDI1NzMwODIxIiwiYiI6IjE1MjYwNDIxNiIsImhlYWRpbmciOjE4LjQ2MjM5MzM3MTA3ODU0OCwiZGlzdCI6MTUuMTkzfSx7ImlkIjoiMjA0OTk5NzAzLTE0MjU3MzA4MjFfMTUyNDQ3MzYzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE0MjU3MzA4MjEiLCJiIjoiMTUyNDQ3MzYzIiwiaGVhZGluZyI6Mjg3LjgwODQ0OTkwMzI4NywiZGlzdCI6MTA1LjExNX0seyJpZCI6IjIwNDk5OTcwMy0xNDI1NzMwODIxXzE1MjQ0NzM3MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDI1NzMwODIxIiwiYiI6IjE1MjQ0NzM3MCIsImhlYWRpbmciOjEwNi4wNjYzOTk5NjA1MDY4NywiZGlzdCI6MjQuMDM0fV19LCIxNDMwNDcwMjYwIjp7ImlkIjoiMTQzMDQ3MDI2MCIsImxvbiI6LTk3Ljc0NDY5LCJsYXQiOjMwLjI4MjUsImVkZ2VzIjpbeyJpZCI6IjEzNzQxNzQ2Ni0xNDMwNDcwMjYwXzE1MjM5MzU0MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQzMDQ3MDI2MCIsImIiOiIxNTIzOTM1NDMiLCJoZWFkaW5nIjoxMDcuODgwOTQwMjA1NTEyMDMsImRpc3QiOjUwLjU0OH0seyJpZCI6IjEzNzQxNzQ2Ni0xNDMwNDcwMjYwXzUwNDg1MDkwOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQzMDQ3MDI2MCIsImIiOiI1MDQ4NTA5MDgiLCJoZWFkaW5nIjotNzEuNTU0NDIwNTg4MzAyMjgsImRpc3QiOjM4LjU0fV19LCIxNDMwNDcwMjY1Ijp7ImlkIjoiMTQzMDQ3MDI2NSIsImxvbiI6LTk3Ljc0NDk2LCJsYXQiOjMwLjI4MjMyLCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi0xNDMwNDcwMjY1XzQ0MzIxNDYyMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDMwNDcwMjY1IiwiYiI6IjQ0MzIxNDYyMSIsImhlYWRpbmciOjE5My4wMzA5NzIxMTM5MDc4LCJkaXN0IjozNC4xMzZ9LHsiaWQiOiIxNTM5OTY4Mi0xNDMwNDcwMjY1XzUwNDg1MTE4NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDMwNDcwMjY1IiwiYiI6IjUwNDg1MTE4NyIsImhlYWRpbmciOi0xMi4yNDE4NjAzNzM5OTA3OSwiZGlzdCI6MTMuNjEyfV19LCIxNDM3NTE0MDI2Ijp7ImlkIjoiMTQzNzUxNDAyNiIsImxvbiI6LTk3LjczMjkzLCJsYXQiOjMwLjI3OTE4LCJlZGdlcyI6W3siaWQiOiIxMjQ5NTMxMTUtMTQzNzUxNDAyNl8xNDQwNjA4MzQ3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDM3NTE0MDI2IiwiYiI6IjE0NDA2MDgzNDciLCJoZWFkaW5nIjoyODcuNzk0NDc2MjkwMDg3NjMsImRpc3QiOjE0MS40Njl9LHsiaWQiOiIxMjQ5NTMxMTUtMTQzNzUxNDAyNl8xNzU5MjQyNTI4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDM3NTE0MDI2IiwiYiI6IjE3NTkyNDI1MjgiLCJoZWFkaW5nIjoxMDYuNjMxNTI1NTYyNzE3ODgsImRpc3QiOjI3LjExMn1dfSwiMTQzODA4NTcyMyI6eyJpZCI6IjE0MzgwODU3MjMiLCJsb24iOi05Ny43MzUwOCwibGF0IjozMC4yNzg0NCwiZWRnZXMiOlt7ImlkIjoiMTI0OTUzMTI4LTE0MzgwODU3MjNfMTQyMTEzNDc5MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQzODA4NTcyMyIsImIiOiIxNDIxMTM0NzkxIiwiaGVhZGluZyI6MjEuMDkzODQzNzYyMzU3LCJkaXN0IjoxMC42OTR9XX0sIjE0NDA2MDgzMjIiOnsiaWQiOiIxNDQwNjA4MzIyIiwibG9uIjotOTcuNzMzMjIsImxhdCI6MzAuMjc1MTYsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA2My0xNDQwNjA4MzIyXzE0NDA2MDgzMjYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0NDA2MDgzMjIiLCJiIjoiMTQ0MDYwODMyNiIsImhlYWRpbmciOjI4Ny45NTQxOTQ2OTQ0OTI1NywiZGlzdCI6MzIuMzY2fSx7ImlkIjoiMTQ5NzEwMDYzLTE0NDA2MDgzMjJfMTUyNDM1OTA0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDQwNjA4MzIyIiwiYiI6IjE1MjQzNTkwNCIsImhlYWRpbmciOjEwNy40NDM1NzQ5NDQyMTYzLCJkaXN0IjozMy4yODN9XX0sIjE0NDA2MDgzMjYiOnsiaWQiOiIxNDQwNjA4MzI2IiwibG9uIjotOTcuNzMzNTQsImxhdCI6MzAuMjc1MjUsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA2My0xNDQwNjA4MzI2XzM0MzMzNjkwMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ0MDYwODMyNiIsImIiOiIzNDMzMzY5MDMiLCJoZWFkaW5nIjoyODIuOTc1OTY3MTIzMjk3NDQsImRpc3QiOjkuODc0fSx7ImlkIjoiMTQ5NzEwMDYzLTE0NDA2MDgzMjZfMTQ0MDYwODMyMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ0MDYwODMyNiIsImIiOiIxNDQwNjA4MzIyIiwiaGVhZGluZyI6MTA3Ljk1NDE5NDY5NDQ5MjU2LCJkaXN0IjozMi4zNjZ9XX0sIjE0NDA2MDgzMjgiOnsiaWQiOiIxNDQwNjA4MzI4IiwibG9uIjotOTcuNzMyODQsImxhdCI6MzAuMjc4MTcsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA3Ny0xNDQwNjA4MzI4XzE0MjExMzQ3NzEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0NDA2MDgzMjgiLCJiIjoiMTQyMTEzNDc3MSIsImhlYWRpbmciOjE5OS4xNDU1MzM3MDAyNzYyNywiZGlzdCI6NS44Njd9LHsiaWQiOiIxNDk3MTAwNzctMTQ0MDYwODMyOF8xNTI1NjYzNDYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0NDA2MDgzMjgiLCJiIjoiMTUyNTY2MzQ2IiwiaGVhZGluZyI6MTkuODgxODMwMTY0ODEwMTU0LCJkaXN0IjoxNC4xNDZ9XX0sIjE0NDA2MDgzMzIiOnsiaWQiOiIxNDQwNjA4MzMyIiwibG9uIjotOTcuNzMxNzUsImxhdCI6MzAuMjc4ODYsImVkZ2VzIjpbeyJpZCI6IjEyODI0NzUxOS0xNDQwNjA4MzMyXzE0MjExMzQ4MTEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0NDA2MDgzMzIiLCJiIjoiMTQyMTEzNDgxMSIsImhlYWRpbmciOjI4Ny40NDQyMzkyNTY0NzQxLCJkaXN0IjoyMi4xODh9LHsiaWQiOiIxMjgyNDc1MTktMTQ0MDYwODMzMl8xNzU5MjQyNTIwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDQwNjA4MzMyIiwiYiI6IjE3NTkyNDI1MjAiLCJoZWFkaW5nIjoxMDYuMDY4NjEyODg2NDQ4NDUsImRpc3QiOjQ4LjA2MX1dfSwiMTQ0MDYwODM0NyI6eyJpZCI6IjE0NDA2MDgzNDciLCJsb24iOi05Ny43MzQzMywibGF0IjozMC4yNzk1NywiZWRnZXMiOlt7ImlkIjoiMTI0OTUzMTE1LTE0NDA2MDgzNDdfMTQyMTEzNDkwNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ0MDYwODM0NyIsImIiOiIxNDIxMTM0OTA3IiwiaGVhZGluZyI6MjkxLjAwOTg2NDQ1NTM0MzEsImRpc3QiOjYuMTg0fSx7ImlkIjoiMTI0OTUzMTE1LTE0NDA2MDgzNDdfMTQzNzUxNDAyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ0MDYwODM0NyIsImIiOiIxNDM3NTE0MDI2IiwiaGVhZGluZyI6MTA3Ljc5NDQ3NjI5MDA4NzYyLCJkaXN0IjoxNDEuNDY5fV19LCIxNDgxMzY0MzA3Ijp7ImlkIjoiMTQ4MTM2NDMwNyIsImxvbiI6LTk3LjczODc5LCJsYXQiOjMwLjI2MjA1LCJlZGdlcyI6W3siaWQiOiIxMjg5Mjg4MjQtMTQ4MTM2NDMwN18xNTI0MTQ3NzciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0ODEzNjQzMDciLCJiIjoiMTUyNDE0Nzc3IiwiaGVhZGluZyI6MTgwLCJkaXN0IjoyOS45MzF9LHsiaWQiOiIxMjg5Mjg4MjQtMTQ4MTM2NDMwN18xNTI1NjYzMDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0ODEzNjQzMDciLCJiIjoiMTUyNTY2MzA1IiwiaGVhZGluZyI6MTUuMjg0NjE0MzE4NzgxODI3LCJkaXN0Ijo2Mi4wNTh9XX0sIjE0ODEzNjQzMTUiOnsiaWQiOiIxNDgxMzY0MzE1IiwibG9uIjotOTcuNzM3MjMsImxhdCI6MzAuMjYzNCwiZWRnZXMiOlt7ImlkIjoiMTUzODYyNjUtMTQ4MTM2NDMxNV8xNDgxMzY0MzE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE0ODEzNjQzMTUiLCJiIjoiMTQ4MTM2NDMxNiIsImhlYWRpbmciOjI5Mi43MjkxMjA3NzI3MDU3LCJkaXN0IjoxMS40Nzd9LHsiaWQiOiIxNTM4NjI2NS0xNDgxMzY0MzE1XzE1MjQ5Njg5NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDgxMzY0MzE1IiwiYiI6IjE1MjQ5Njg5NCIsImhlYWRpbmciOjg5Ljk5OTk4OTkyMjM5NjM3LCJkaXN0IjozLjg0OX1dfSwiMTQ4MTM2NDMxNiI6eyJpZCI6IjE0ODEzNjQzMTYiLCJsb24iOi05Ny43MzczNCwibGF0IjozMC4yNjM0NCwiZWRnZXMiOlt7ImlkIjoiMTUzODYyNjUtMTQ4MTM2NDMxNl8xNTI0OTY4OTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTQ4MTM2NDMxNiIsImIiOiIxNTI0OTY4OTEiLCJoZWFkaW5nIjoyODYuNDE5ODQ3MjE5Mjc5NCwiZGlzdCI6ODYuMjc3fSx7ImlkIjoiMTUzODYyNjUtMTQ4MTM2NDMxNl8xNDgxMzY0MzE1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE0ODEzNjQzMTYiLCJiIjoiMTQ4MTM2NDMxNSIsImhlYWRpbmciOjExMi43MjkxMjA3NzI3MDU3LCJkaXN0IjoxMS40Nzd9XX0sIjE0ODEzNjQzMjQiOnsiaWQiOiIxNDgxMzY0MzI0IiwibG9uIjotOTcuNzM4NTMsImxhdCI6MzAuMjYyODEsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTQ3LTE0ODEzNjQzMjRfMTUyNTY2MzA3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDgxMzY0MzI0IiwiYiI6IjE1MjU2NjMwNyIsImhlYWRpbmciOjIwMy40NjI0MjA0OTU5MzQ1NywiZGlzdCI6NC44MzR9LHsiaWQiOiIzNzc0OTU0Ny0xNDgxMzY0MzI0XzE1MjQ5Njg5MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ4MTM2NDMyNCIsImIiOiIxNTI0OTY4OTEiLCJoZWFkaW5nIjoxOC42MjQzNTk1MTEzNDUyMjYsImRpc3QiOjk5LjQzNn1dfSwiMTQ4MTQyMDc2OSI6eyJpZCI6IjE0ODE0MjA3NjkiLCJsb24iOi05Ny43MzU3NSwibGF0IjozMC4yNzI0NCwiZWRnZXMiOlt7ImlkIjoiMTM0Nzk2OTk4LTE0ODE0MjA3NjlfMTA3MzQwMDgyNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ4MTQyMDc2OSIsImIiOiIxMDczNDAwODI3IiwiaGVhZGluZyI6MTA5LjUxODk2Nzk2NTY1NzM0LCJkaXN0IjoyNi41NDN9XX0sIjE0ODE0NTY2NTgiOnsiaWQiOiIxNDgxNDU2NjU4IiwibG9uIjotOTcuNzM2MDEsImxhdCI6MzAuMjY2MTQsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTU2LTE0ODE0NTY2NThfMTUyNDAxOTE1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDgxNDU2NjU4IiwiYiI6IjE1MjQwMTkxNSIsImhlYWRpbmciOi03Mi41NTc4MjQ2Mzg4NzIwNiwiZGlzdCI6MTEuMDk1fV19LCIxNDgxNDU2ODc0Ijp7ImlkIjoiMTQ4MTQ1Njg3NCIsImxvbiI6LTk3LjczNTkxLCJsYXQiOjMwLjI3MjYxLCJlZGdlcyI6W3siaWQiOiIxMzQ3OTcwMDEtMTQ4MTQ1Njg3NF8xMDczNDAwOTU5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDgxNDU2ODc0IiwiYiI6IjEwNzM0MDA5NTkiLCJoZWFkaW5nIjotNzEuNzc5Njc0MTE5MDg3NzIsImRpc3QiOjc4LjAwMX1dfSwiMTYyNjU0NzAyNiI6eyJpZCI6IjE2MjY1NDcwMjYiLCJsb24iOi05Ny43NDc0MiwibGF0IjozMC4yNzAzNywiZWRnZXMiOlt7ImlkIjoiMjc0MDEyNTMtMTYyNjU0NzAyNl8xNTI1MTI4NDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU0NzAyNiIsImIiOiIxNTI1MTI4NDQiLCJoZWFkaW5nIjoxMTUuODc3Mzk3MTE5NzczMzMsImRpc3QiOjQwLjY0fSx7ImlkIjoiMjc0MDEyNTMtMTYyNjU0NzAyNl8xNTIzOTM0ODMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU0NzAyNiIsImIiOiIxNTIzOTM0ODMiLCJoZWFkaW5nIjotNzAuMTk5NzMxNDg5MjM3NTQsImRpc3QiOjY1LjQ1M31dfSwiMTYyNjU0NzAyOSI6eyJpZCI6IjE2MjY1NDcwMjkiLCJsb24iOi05Ny43NDYwNywibGF0IjozMC4yNzAwNSwiZWRnZXMiOlt7ImlkIjoiMTQ5NzA2OTk1LTE2MjY1NDcwMjlfMTUyNDU2NjA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NDcwMjkiLCJiIjoiMTUyNDU2NjA3IiwiaGVhZGluZyI6MTI2LjUyNDI3MTY3ODUyMDg5LCJkaXN0IjoxNi43NjR9XX0sIjE2MjY1NDcwMzEiOnsiaWQiOiIxNjI2NTQ3MDMxIiwibG9uIjotOTcuNzQ2MDcsImxhdCI6MzAuMjY5OTUsImVkZ2VzIjpbeyJpZCI6IjI3NDAxMjQwLTE2MjY1NDcwMzFfMTUyNDU2NjA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NDcwMzEiLCJiIjoiMTUyNDU2NjA3IiwiaGVhZGluZyI6ODUuMjk1NjQ3NTEyNzQwMDksImRpc3QiOjEzLjUxN31dfSwiMTYyNjU0NzAzNCI6eyJpZCI6IjE2MjY1NDcwMzQiLCJsb24iOi05Ny43NDY5MiwibGF0IjozMC4yNzAzMywiZWRnZXMiOlt7ImlkIjoiMTQ5NzA2OTk1LTE2MjY1NDcwMzRfMTg1MTE5MjUxNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTQ3MDM0IiwiYiI6IjE4NTExOTI1MTciLCJoZWFkaW5nIjoxMzAuODI4ODcwODE4MDk1NzcsImRpc3QiOjUuMDg3fV19LCIxNjI2NTU1ODI3Ijp7ImlkIjoiMTYyNjU1NTgyNyIsImxvbiI6LTk3Ljc0NDA5LCJsYXQiOjMwLjI3ODE1LCJlZGdlcyI6W3siaWQiOiIxNDk3MDc3ODAtMTYyNjU1NTgyN18xNjI2NTU1ODMyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODI3IiwiYiI6IjE2MjY1NTU4MzIiLCJoZWFkaW5nIjoxMDcuOTAyMTMwMTYzNjI4OTEsImRpc3QiOjEwOC4xOX0seyJpZCI6IjE1MDM1MDAxOC0xNjI2NTU1ODI3XzQ0MzIxNDYxMyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU1ODI3IiwiYiI6IjQ0MzIxNDYxMyIsImhlYWRpbmciOjE5Ny44OTc4NjU0NjQ0OTQyLCJkaXN0Ijo1MC4wOTN9LHsiaWQiOiIxNTAzNTAwMTgtMTYyNjU1NTgyN18xNTI1ODM0MDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1NTgyNyIsImIiOiIxNTI1ODM0MDQiLCJoZWFkaW5nIjoxNy41MTYyMTU5MTI4MTQxNTQsImRpc3QiOjEyLjc4N31dfSwiMTYyNjU1NTgyOCI6eyJpZCI6IjE2MjY1NTU4MjgiLCJsb24iOi05Ny43NDUxNywibGF0IjozMC4yNzg0NiwiZWRnZXMiOlt7ImlkIjoiMTUzNzY4NTYtMTYyNjU1NTgyOF80NDMyMTQ2MzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1NTgyOCIsImIiOiI0NDMyMTQ2MzkiLCJoZWFkaW5nIjoxOTYuODQ0NDYwODc0ODA5OSwiZGlzdCI6NDkuODA1fSx7ImlkIjoiMTUzNzY4NTYtMTYyNjU1NTgyOF8xNTIzOTM1MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1NTgyOCIsImIiOiIxNTIzOTM1MTUiLCJoZWFkaW5nIjoyMS41Mjk3ODk0MTQ4Mjk5NTYsImRpc3QiOjEzLjEwOX0seyJpZCI6IjE0OTcwNzc4MC0xNjI2NTU1ODI4XzE2MjY1NTU4MjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTU4MjgiLCJiIjoiMTYyNjU1NTgyNyIsImhlYWRpbmciOjEwOC4yOTk1ODUxMjIyNDEzMSwiZGlzdCI6MTA5LjQ0OH1dfSwiMTYyNjU1NTgzMSI6eyJpZCI6IjE2MjY1NTU4MzEiLCJsb24iOi05Ny43NDE5LCJsYXQiOjMwLjI3NzY1LCJlZGdlcyI6W3siaWQiOiIxNzAwNTA4MTctMTYyNjU1NTgzMV8xNTI0NTY2MjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTU4MzEiLCJiIjoiMTUyNDU2NjIyIiwiaGVhZGluZyI6LTcxLjU0MDQ3ODIxNzQ4NzAzLCJkaXN0IjoxMDguNTM2fV19LCIxNjI2NTU1ODMyIjp7ImlkIjoiMTYyNjU1NTgzMiIsImxvbiI6LTk3Ljc0MzAyLCJsYXQiOjMwLjI3Nzg1LCJlZGdlcyI6W3siaWQiOiIxNDk3MDc3ODAtMTYyNjU1NTgzMl8xNjI2NTU1ODQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODMyIiwiYiI6IjE2MjY1NTU4NDYiLCJoZWFkaW5nIjoxMDguMjk5NDc3ODk2Njk0MDQsImRpc3QiOjEwOS40NDl9XX0sIjE2MjY1NTU4MzUiOnsiaWQiOiIxNjI2NTU1ODM1IiwibG9uIjotOTcuNzM0NzksImxhdCI6MzAuMjc1NjQsImVkZ2VzIjpbeyJpZCI6IjEyODYzNzUzNi0xNjI2NTU1ODM1XzE1MjQzNTkwMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1NTgzNSIsImIiOiIxNTI0MzU5MDIiLCJoZWFkaW5nIjoyMDUuNzQzMTI2ODI2NTQ2NDIsImRpc3QiOjExLjA3Nn0seyJpZCI6IjE0OTcxMDA3Ny0xNjI2NTU1ODM1XzE0MjExMzQ3MzYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTU4MzUiLCJiIjoiMTQyMTEzNDczNiIsImhlYWRpbmciOjI2LjM4MDEwMjI2NjI2OTAxMywiZGlzdCI6OC42NjJ9LHsiaWQiOiIxNDk3MTAwNzgtMTYyNjU1NTgzNV8xNjI2NTU4NTgyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODM1IiwiYiI6IjE2MjY1NTg1ODIiLCJoZWFkaW5nIjotNzAuMzI0ODgyMDA1Mjc2MjgsImRpc3QiOjI5LjYzM31dfSwiMTYyNjU1NTg0NiI6eyJpZCI6IjE2MjY1NTU4NDYiLCJsb24iOi05Ny43NDE5NCwibGF0IjozMC4yNzc1NCwiZWRnZXMiOlt7ImlkIjoiMTU0MDY2NTUtMTYyNjU1NTg0Nl8yMTY3MTYxMjQ1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODQ2IiwiYiI6IjIxNjcxNjEyNDUiLCJoZWFkaW5nIjoxMDguMDQ4NjQyODcwNTc3NDcsImRpc3QiOjEwMC4xODR9XX0sIjE2MjY1NTU4NDciOnsiaWQiOiIxNjI2NTU1ODQ3IiwibG9uIjotOTcuNzQ2MjUsImxhdCI6MzAuMjc4NzcsImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTE2MjY1NTU4NDdfNDQzMjE0NjE5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTU4NDciLCJiIjoiNDQzMjE0NjE5IiwiaGVhZGluZyI6MTk3Ljc4Mzg1NDAyMDgyNzYsImRpc3QiOjUzLjU1M30seyJpZCI6IjE1Mzk5NjgyLTE2MjY1NTU4NDdfMTUyNjM2ODg2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTU4NDciLCJiIjoiMTUyNjM2ODg2IiwiaGVhZGluZyI6MTcuNTE2MTEwOTc1MTc2MjIyLCJkaXN0IjoxMi43ODd9LHsiaWQiOiIxNDk3MDc3ODAtMTYyNjU1NTg0N18xNjI2NTU1ODI4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODQ3IiwiYiI6IjE2MjY1NTU4MjgiLCJoZWFkaW5nIjoxMDguMjk5NjM5NjE1NTY2NTksImRpc3QiOjEwOS40NDh9XX0sIjE2MjY1NTg1ODIiOnsiaWQiOiIxNjI2NTU4NTgyIiwibG9uIjotOTcuNzM1MDgsImxhdCI6MzAuMjc1NzMsImVkZ2VzIjpbeyJpZCI6IjE0OTcwODExNi0xNjI2NTU4NTgyXzE2MjY1NTg1OTIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTg1ODIiLCJiIjoiMTYyNjU1ODU5MiIsImhlYWRpbmciOi03MS43NzkyNjM1NDgwMjkyOCwiZGlzdCI6MjguMzYzfV19LCIxNjI2NTU4NTg1Ijp7ImlkIjoiMTYyNjU1ODU4NSIsImxvbiI6LTk3Ljc0MDgyLCJsYXQiOjMwLjI3NzM0LCJlZGdlcyI6W3siaWQiOiIxNTQwODM0Ni0xNjI2NTU4NTg1XzE1MjcwNTAxNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU4NTg1IiwiYiI6IjE1MjcwNTAxNiIsImhlYWRpbmciOjE5OS4xNDU2ODQ4NTY2MDA0NCwiZGlzdCI6MTEuNzM1fSx7ImlkIjoiMTU0MDgzNDYtMTYyNjU1ODU4NV8xNTI2MDEwMjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1ODU4NSIsImIiOiIxNTI2MDEwMjciLCJoZWFkaW5nIjoxNy45NjY4NjcyOTQ5MDUzMzUsImRpc3QiOjEwNi4wNTJ9LHsiaWQiOiIxNzAwNTA4MTctMTYyNjU1ODU4NV8yMTY3MTYxMzM3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU4NTg1IiwiYiI6IjIxNjcxNjEzMzciLCJoZWFkaW5nIjotNjguOTkwNTM2ODU0MDgzNTYsImRpc3QiOjkuMjc2fV19LCIxNjI2NTU4NTkwIjp7ImlkIjoiMTYyNjU1ODU5MCIsImxvbiI6LTk3LjczNjAxLCJsYXQiOjMwLjI3NTk5LCJlZGdlcyI6W3siaWQiOiIxMjQ5NTMxMjgtMTYyNjU1ODU5MF8xOTgwOTQ3MTgxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU4NTkwIiwiYiI6IjE5ODA5NDcxODEiLCJoZWFkaW5nIjoxOS4xNDU5MjI4MjA4OTA4NiwiZGlzdCI6NS44Njd9LHsiaWQiOiIxNDk3MDgxMTItMTYyNjU1ODU5MF8yMTY3MTYxMzM0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU4NTkwIiwiYiI6IjIxNjcxNjEzMzQiLCJoZWFkaW5nIjotNzIuMjE4NzA2MDY5MTQxMTgsImRpc3QiOjk4LjAxNH1dfSwiMTYyNjU1ODU5MiI6eyJpZCI6IjE2MjY1NTg1OTIiLCJsb24iOi05Ny43MzUzNiwibGF0IjozMC4yNzU4MSwiZWRnZXMiOlt7ImlkIjoiMTQ5NzA4MTEyLTE2MjY1NTg1OTJfMjYzNzY3MjE4MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1ODU5MiIsImIiOiIyNjM3NjcyMTgwIiwiaGVhZGluZyI6LTcyLjA3ODIyMDgwMTc5MTQ3LCJkaXN0Ijo1Ny42NDF9XX0sIjE2MjY1NTg1OTQiOnsiaWQiOiIxNjI2NTU4NTk0IiwibG9uIjotOTcuNzM5NSwibGF0IjozMC4yNzY5NywiZWRnZXMiOlt7ImlkIjoiMTcwMDUwODE3LTE2MjY1NTg1OTRfMjE2NzE2MTI0OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1ODU5NCIsImIiOiIyMTY3MTYxMjQ4IiwiaGVhZGluZyI6LTcyLjU1NTk5ODgwOTU4OTA3LCJkaXN0IjoxMS4wOTR9LHsiaWQiOiIyNDAxODI1NTQtMTYyNjU1ODU5NF8xNTI0MzU4ODgiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTYyNjU1ODU5NCIsImIiOiIxNTI0MzU4ODgiLCJoZWFkaW5nIjoxOTcuNTE2NDM0MjQxMzY1OSwiZGlzdCI6MTIuNzg3fSx7ImlkIjoiMjQwMTgyNTU0LTE2MjY1NTg1OTRfMjE2NzE2MTIyOSIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNjI2NTU4NTk0IiwiYiI6IjIxNjcxNjEyMjkiLCJoZWFkaW5nIjoyMC40MDM4NzA3NTc5NTQ5MTMsImRpc3QiOjguMjc5fV19LCIxNjI2NTU4NTk3Ijp7ImlkIjoiMTYyNjU1ODU5NyIsImxvbiI6LTk3LjczODE3LCJsYXQiOjMwLjI3NjYsImVkZ2VzIjpbeyJpZCI6IjE1Mzk4MTA5LTE2MjY1NTg1OTdfMTUyNDM1ODkxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTg1OTciLCJiIjoiMTUyNDM1ODkxIiwiaGVhZGluZyI6MTk3LjUxNjQ5Njg2MjI1MzMyLCJkaXN0IjoxMi43ODd9LHsiaWQiOiIxNDk3MDgxMTItMTYyNjU1ODU5N18yMTY3MTYxMjM0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU4NTk3IiwiYiI6IjIxNjcxNjEyMzQiLCJoZWFkaW5nIjotNzUuNjM4ODQzMDcxNjQ0MDksImRpc3QiOjguOTM5fV19LCIxNjI2NTU4NjAwIjp7ImlkIjoiMTYyNjU1ODYwMCIsImxvbiI6LTk3LjczNzA4LCJsYXQiOjMwLjI3NjI5LCJlZGdlcyI6W3siaWQiOiIxNDk3MDgxMTItMTYyNjU1ODYwMF8yMTY3MTYxMjQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU4NjAwIiwiYiI6IjIxNjcxNjEyNDYiLCJoZWFkaW5nIjotNjguOTkwNzM1NTIwOTYzNDEsImRpc3QiOjEyLjM2OH0seyJpZCI6IjE1MDM1MDAyMy0xNjI2NTU4NjAwXzE1MjQzNTg5NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1ODYwMCIsImIiOiIxNTI0MzU4OTQiLCJoZWFkaW5nIjotMTYwLjg1NDEwMzE1MDMxNTU1LCJkaXN0IjoxMS43MzV9XX0sIjE2MjY1NTkzNDEiOnsiaWQiOiIxNjI2NTU5MzQxIiwibG9uIjotOTcuNzQ0MTYsImxhdCI6MzAuMjc0NzksImVkZ2VzIjpbeyJpZCI6IjE0OTcwODg1My0xNjI2NTU5MzQxXzE2MjY1NTkzNDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTkzNDEiLCJiIjoiMTYyNjU1OTM0MiIsImhlYWRpbmciOjEwNy44MzYwODkwMDQyNTY1MiwiZGlzdCI6MTEyLjE5Nn1dfSwiMTYyNjU1OTM0MiI6eyJpZCI6IjE2MjY1NTkzNDIiLCJsb24iOi05Ny43NDMwNSwibGF0IjozMC4yNzQ0OCwiZWRnZXMiOlt7ImlkIjoiMjA0OTg5Nzc0LTE2MjY1NTkzNDJfMTYyNjU1OTM0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1OTM0MiIsImIiOiIxNjI2NTU5MzQ2IiwiaGVhZGluZyI6MTA4LjQ5NDI5NTU3MTI2NDg0LCJkaXN0Ijo2Mi45MDV9XX0sIjE2MjY1NTkzNDMiOnsiaWQiOiIxNjI2NTU5MzQzIiwibG9uIjotOTcuNzQ3MzYsImxhdCI6MzAuMjc1NywiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItMTYyNjU1OTM0M180NDMyMTQ2MTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1OTM0MyIsImIiOiI0NDMyMTQ2MTciLCJoZWFkaW5nIjoxOTguOTc4MzM3MjAxNjYyMzgsImRpc3QiOjYyLjEzMn0seyJpZCI6IjE1Mzk5NjgyLTE2MjY1NTkzNDNfMTUyNjM2ODgyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTkzNDMiLCJiIjoiMTUyNjM2ODgyIiwiaGVhZGluZyI6MTkuMTQ1OTY2MTk5OTQ0NjEsImRpc3QiOjExLjczNX0seyJpZCI6IjE0OTcwODg1My0xNjI2NTU5MzQzXzE2MjY1NTkzNDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTkzNDMiLCJiIjoiMTYyNjU1OTM0NyIsImhlYWRpbmciOjEwOC4wNTk2NzY1MzE1ODcxMywiZGlzdCI6MTA3LjI3N31dfSwiMTYyNjU1OTM0NSI6eyJpZCI6IjE2MjY1NTkzNDUiLCJsb24iOi05Ny43NDUyMSwibGF0IjozMC4yNzUwOSwiZWRnZXMiOlt7ImlkIjoiMTQ5NzA4ODUzLTE2MjY1NTkzNDVfMTYyNjU1OTM0MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1OTM0NSIsImIiOiIxNjI2NTU5MzQxIiwiaGVhZGluZyI6MTA4LjIyMDI1NTg0Mjg1ODUyLCJkaXN0IjoxMDYuMzYzfSx7ImlkIjoiMTUwMzUwMDE4LTE2MjY1NTkzNDVfNDQzMjE0NjEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTkzNDUiLCJiIjoiNDQzMjE0NjEwIiwiaGVhZGluZyI6MTk3LjI4MzczMzE5NjI1OTc2LCJkaXN0Ijo2MS41MzN9LHsiaWQiOiIxNTAzNTAwMTgtMTYyNjU1OTM0NV8xNTI1ODM0MDIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1OTM0NSIsImIiOiIxNTI1ODM0MDIiLCJoZWFkaW5nIjoxOS4xNDYwNzc2MzY2Njk0NDMsImRpc3QiOjExLjczNX1dfSwiMTYyNjU1OTM0NiI6eyJpZCI6IjE2MjY1NTkzNDYiLCJsb24iOi05Ny43NDI0MywibGF0IjozMC4yNzQzLCJlZGdlcyI6W3siaWQiOiIxMzQ1NjY3NDAtMTYyNjU1OTM0Nl8yNzQzNTA2NzQyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU5MzQ2IiwiYiI6IjI3NDM1MDY3NDIiLCJoZWFkaW5nIjoyMDAuNDA0MzkyMTEyNTcyNjgsImRpc3QiOjc0LjUxNX0seyJpZCI6IjE3NDQyMTYyOS0xNjI2NTU5MzQ2XzIxMzAyNTAzNDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTkzNDYiLCJiIjoiMjEzMDI1MDM0MCIsImhlYWRpbmciOjE2LjEzNjI1ODk3MDA5MjEwNCwiZGlzdCI6My40NjJ9XX0sIjE2MjY1NTkzNDciOnsiaWQiOiIxNjI2NTU5MzQ3IiwibG9uIjotOTcuNzQ2MywibGF0IjozMC4yNzU0LCJlZGdlcyI6W3siaWQiOiIxNTM3Njg1Ni0xNjI2NTU5MzQ3XzQ0MzIxNDYzNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU5MzQ3IiwiYiI6IjQ0MzIxNDYzNiIsImhlYWRpbmciOjE5Ny4yODM2ODEzNDIyMjk0LCJkaXN0Ijo2MS41MzN9LHsiaWQiOiIxNTM3Njg1Ni0xNjI2NTU5MzQ3XzE1MjM5MzQ5NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU5MzQ3IiwiYiI6IjE1MjM5MzQ5NiIsImhlYWRpbmciOjE5LjE0NjAyMTAwNTcxNjA2LCJkaXN0IjoxMS43MzV9LHsiaWQiOiIxNDk3MDg4NTMtMTYyNjU1OTM0N18xNjI2NTU5MzQ1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU5MzQ3IiwiYiI6IjE2MjY1NTkzNDUiLCJoZWFkaW5nIjoxMDguMTQyMjA1Njg3Mzk3NjUsImRpc3QiOjExMC4zNjV9XX0sIjE2MjY1Njg2MjEiOnsiaWQiOiIxNjI2NTY4NjIxIiwibG9uIjotOTcuNzMxOTQsImxhdCI6MzAuMjc0NzcsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA3Ni0xNjI2NTY4NjIxXzE1MjQzNTkwNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU2ODYyMSIsImIiOiIxNTI0MzU5MDYiLCJoZWFkaW5nIjoxMDkuODAwODcwMTUyNDc0ODcsImRpc3QiOjE2LjM2M31dfSwiMTYyNjU2ODYyMiI6eyJpZCI6IjE2MjY1Njg2MjIiLCJsb24iOi05Ny43MzE3NSwibGF0IjozMC4yNzQ4MSwiZWRnZXMiOlt7ImlkIjoiMTUyNDI5NzE4LTE2MjY1Njg2MjJfMTYyNjU2ODYyNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU2ODYyMiIsImIiOiIxNjI2NTY4NjI0IiwiaGVhZGluZyI6LTczLjkzMTg0ODM4NzA2ODIxLCJkaXN0IjoxNi4wMjF9LHsiaWQiOiIxNjQyNzEwNjktMTYyNjU2ODYyMl8xNTI0MzU5MDYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1Njg2MjIiLCJiIjoiMTUyNDM1OTA2IiwiaGVhZGluZyI6LTE2My44NjM4MDE3ODc5ODQ3LCJkaXN0IjoxMC4zODZ9XX0sIjE2MjY1Njg2MjMiOnsiaWQiOiIxNjI2NTY4NjIzIiwibG9uIjotOTcuNzMyMTYsImxhdCI6MzAuMjc0ODYsImVkZ2VzIjpbeyJpZCI6IjE0OTcxMDA2My0xNjI2NTY4NjIzXzEwNzc4NDAxOTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1Njg2MjMiLCJiIjoiMTA3Nzg0MDE5NCIsImhlYWRpbmciOjI4OC4yMjA0NDI5MzYwODQ1NywiZGlzdCI6MjguMzY0fSx7ImlkIjoiMTQ5NzEwMDc2LTE2MjY1Njg2MjNfMTYyNjU2ODYyMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU2ODYyMyIsImIiOiIxNjI2NTY4NjIxIiwiaGVhZGluZyI6MTE1LjIzNTY0NDk5MjY0NjMxLCJkaXN0IjoyMy40MDJ9XX0sIjE2MjY1Njg2MjQiOnsiaWQiOiIxNjI2NTY4NjI0IiwibG9uIjotOTcuNzMxOTEsImxhdCI6MzAuMjc0ODUsImVkZ2VzIjpbeyJpZCI6IjE1MjQyOTcxOC0xNjI2NTY4NjI0XzE2MjY1Njg2MjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1Njg2MjQiLCJiIjoiMTYyNjU2ODYyMyIsImhlYWRpbmciOi04Ny4zNjEzMTczMDU1NDY5OCwiZGlzdCI6MjQuMDh9XX0sIjE2MjY1Njg2MjUiOnsiaWQiOiIxNjI2NTY4NjI1IiwibG9uIjotOTcuNzM0MDEsImxhdCI6MzAuMjc1MzIsImVkZ2VzIjpbeyJpZCI6IjEzMTI4MTYwNi0xNjI2NTY4NjI1XzMwMDc2NTAzNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU2ODYyNSIsImIiOiIzMDA3NjUwMzUiLCJoZWFkaW5nIjo3OC4xNjg3Nzg3NDcyNjQwMSwiZGlzdCI6MTAuODE0fV19LCIxNjI2NTY4NjI2Ijp7ImlkIjoiMTYyNjU2ODYyNiIsImxvbiI6LTk3LjczMzk3LCJsYXQiOjMwLjI3NTQzLCJlZGdlcyI6W3siaWQiOiIxNDk3MTAwNzMtMTYyNjU2ODYyNl8xNjI2NTU1ODM1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTY4NjI2IiwiYiI6IjE2MjY1NTU4MzUiLCJoZWFkaW5nIjotNzMuNTYwNTg5ODA0MjkyMzYsImRpc3QiOjgyLjI2Mn1dfSwiMTYzMTQ5NjU2MCI6eyJpZCI6IjE2MzE0OTY1NjAiLCJsb24iOi05Ny43MzI2NSwibGF0IjozMC4yNzIyMiwiZWRnZXMiOlt7ImlkIjoiMTMxMjgxNjM0LTE2MzE0OTY1NjBfMTUyNzExMTE2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjMxNDk2NTYwIiwiYiI6IjE1MjcxMTExNiIsImhlYWRpbmciOi0xNjIuNTk2OTc3Mjc3MTkxNTcsImRpc3QiOjQxLjgyM31dfSwiMTY1MjQ4NjA1NCI6eyJpZCI6IjE2NTI0ODYwNTQiLCJsb24iOi05Ny43MzMxMSwibGF0IjozMC4yNzE4NiwiZWRnZXMiOlt7ImlkIjoiMTMxNTQ0OTA4LTE2NTI0ODYwNTRfMTA3MzQwMDkyMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTY1MjQ4NjA1NCIsImIiOiIxMDczNDAwOTIwIiwiaGVhZGluZyI6LTc2LjM2NjM1ODU4ODU2MTQ1LCJkaXN0IjoxOC44MTJ9XX0sIjE3NTkyNDI1MTUiOnsiaWQiOiIxNzU5MjQyNTE1IiwibG9uIjotOTcuNzMwNjUsImxhdCI6MzAuMjc4MTIsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA2OS0xNzU5MjQyNTE1XzE0MjExMzQ3NjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE3NTkyNDI1MTUiLCJiIjoiMTQyMTEzNDc2OCIsImhlYWRpbmciOi0xNjEuNTQwMDAwMjIwNDkzOTQsImRpc3QiOjE1LjE5M31dfSwiMTc1OTI0MjUxNiI6eyJpZCI6IjE3NTkyNDI1MTYiLCJsb24iOi05Ny43MzA3LCJsYXQiOjMwLjI3ODM2LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNzEtMTc1OTI0MjUxNl8xNzU5MjQyNTE1IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MTYiLCJiIjoiMTc1OTI0MjUxNSIsImhlYWRpbmciOjE2OS43NTA2MDg2NTQyNTY5MiwiZGlzdCI6MjcuMDM3fV19LCIxNzU5MjQyNTE3Ijp7ImlkIjoiMTc1OTI0MjUxNyIsImxvbiI6LTk3LjczMDc0LCJsYXQiOjMwLjI3ODQ0LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNzEtMTc1OTI0MjUxN18xNzU5MjQyNTE2IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MTciLCJiIjoiMTc1OTI0MjUxNiIsImhlYWRpbmciOjE1Ni41NDA5MjUwOTUwNDMyNiwiZGlzdCI6OS42Njh9XX0sIjE3NTkyNDI1MTgiOnsiaWQiOiIxNzU5MjQyNTE4IiwibG9uIjotOTcuNzMwNzksImxhdCI6MzAuMjc4NSwiZWRnZXMiOlt7ImlkIjoiMTY0MjcxMDcxLTE3NTkyNDI1MThfMTc1OTI0MjUxNyIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTE4IiwiYiI6IjE3NTkyNDI1MTciLCJoZWFkaW5nIjoxNDQuMTIyODUwMjIyOTg2NjcsImRpc3QiOjguMjA5fV19LCIxNzU5MjQyNTE5Ijp7ImlkIjoiMTc1OTI0MjUxOSIsImxvbiI6LTk3LjczMTAyLCJsYXQiOjMwLjI3ODY3LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNjctMTc1OTI0MjUxOV8xNDIxMTM0ODAxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNzU5MjQyNTE5IiwiYiI6IjE0MjExMzQ4MDEiLCJoZWFkaW5nIjoyODYuMDY4Njc2MzA0OTQ4MDQsImRpc3QiOjE2LjAyfSx7ImlkIjoiMTY0MjcxMDY4LTE3NTkyNDI1MTlfMTQyMTEzNDc5NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTc1OTI0MjUxOSIsImIiOiIxNDIxMTM0Nzk3IiwiaGVhZGluZyI6MTA0LjM2MTM3Nzg5ODM3MzUzLCJkaXN0IjoxNy44Nzd9LHsiaWQiOiIxNjQyNzEwNzEtMTc1OTI0MjUxOV8xNzU5MjQyNTE4IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MTkiLCJiIjoiMTc1OTI0MjUxOCIsImhlYWRpbmciOjEzMC40MTc4ODI0MTkyMjA1NSwiZGlzdCI6MjkuMDY3fV19LCIxNzU5MjQyNTIwIjp7ImlkIjoiMTc1OTI0MjUyMCIsImxvbiI6LTk3LjczMTI3LCJsYXQiOjMwLjI3ODc0LCJlZGdlcyI6W3siaWQiOiIxMjgyNDc1MTktMTc1OTI0MjUyMF8xNDQwNjA4MzMyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNzU5MjQyNTIwIiwiYiI6IjE0NDA2MDgzMzIiLCJoZWFkaW5nIjoyODYuMDY4NjEyODg2NDQ4NSwiZGlzdCI6NDguMDYxfSx7ImlkIjoiMTY0MjcxMDY3LTE3NTkyNDI1MjBfMTQyMTEzNDgwMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTc1OTI0MjUyMCIsImIiOiIxNDIxMTM0ODAxIiwiaGVhZGluZyI6MTExLjAwOTY4ODE0NDIzODA1LCJkaXN0Ijo5LjI3Nn0seyJpZCI6IjE2NDI3MTA3Mi0xNzU5MjQyNTIwXzE3NTkyNDI1MjMiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUyMCIsImIiOiIxNzU5MjQyNTIzIiwiaGVhZGluZyI6LTQ3LjMzMTkwNTQzMDUzMDg5NSwiZGlzdCI6MjYuMTcxfV19LCIxNzU5MjQyNTIxIjp7ImlkIjoiMTc1OTI0MjUyMSIsImxvbiI6LTk3LjczMjUxLCJsYXQiOjMwLjI3ODgsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA3MC0xNzU5MjQyNTIxXzE1MjU2NjM1MiIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTIxIiwiYiI6IjE1MjU2NjM1MiIsImhlYWRpbmciOjE3NS40ODg1ODY0NjM1NjA4NCwiZGlzdCI6MTIuMjMyfV19LCIxNzU5MjQyNTIyIjp7ImlkIjoiMTc1OTI0MjUyMiIsImxvbiI6LTk3LjczMjUyLCJsYXQiOjMwLjI3ODg5LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNzAtMTc1OTI0MjUyMl8xNzU5MjQyNTIxIiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MjIiLCJiIjoiMTc1OTI0MjUyMSIsImhlYWRpbmciOjE3NC40OTE2NjYzMTE2NjIwNCwiZGlzdCI6MTAuMDIzfV19LCIxNzU5MjQyNTIzIjp7ImlkIjoiMTc1OTI0MjUyMyIsImxvbiI6LTk3LjczMTQ3LCJsYXQiOjMwLjI3ODksImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA3Mi0xNzU5MjQyNTIzXzE3NTkyNDI1MjQiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUyMyIsImIiOiIxNzU5MjQyNTI0IiwiaGVhZGluZyI6LTMxLjc5NjU3Nzc1MjYyOTc2LCJkaXN0Ijo5LjEzfV19LCIxNzU5MjQyNTI0Ijp7ImlkIjoiMTc1OTI0MjUyNCIsImxvbiI6LTk3LjczMTUyLCJsYXQiOjMwLjI3ODk3LCJlZGdlcyI6W3siaWQiOiIxNjQyNzEwNzItMTc1OTI0MjUyNF8xNzU5MjQyNTI2IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MjQiLCJiIjoiMTc1OTI0MjUyNiIsImhlYWRpbmciOi0yNy41MDgzNTM2ODM1NTAxNywiZGlzdCI6Ni4yNDl9XX0sIjE3NTkyNDI1MjUiOnsiaWQiOiIxNzU5MjQyNTI1IiwibG9uIjotOTcuNzMyNTQsImxhdCI6MzAuMjc4OTcsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA3MC0xNzU5MjQyNTI1XzE3NTkyNDI1MjIiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUyNSIsImIiOiIxNzU5MjQyNTIyIiwiaGVhZGluZyI6MTY3Ljc1NzcwNTQwMjg0NjY4LCJkaXN0Ijo5LjA3NX1dfSwiMTc1OTI0MjUyNiI6eyJpZCI6IjE3NTkyNDI1MjYiLCJsb24iOi05Ny43MzE1NSwibGF0IjozMC4yNzkwMiwiZWRnZXMiOlt7ImlkIjoiMTY0MjcxMDcyLTE3NTkyNDI1MjZfMTc1OTI0MjUyNyIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTI2IiwiYiI6IjE3NTkyNDI1MjciLCJoZWFkaW5nIjowLCJkaXN0Ijo2LjY1MX1dfSwiMTc1OTI0MjUyNyI6eyJpZCI6IjE3NTkyNDI1MjciLCJsb24iOi05Ny43MzE1NSwibGF0IjozMC4yNzkwOCwiZWRnZXMiOlt7ImlkIjoiMTY0MjcxMDcyLTE3NTkyNDI1MjdfMTc1OTI0MjUyOSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTI3IiwiYiI6IjE3NTkyNDI1MjkiLCJoZWFkaW5nIjoxNi4xMzU0OTY3NDQ2NzcwMiwiZGlzdCI6MTAuMzg2fV19LCIxNzU5MjQyNTI4Ijp7ImlkIjoiMTc1OTI0MjUyOCIsImxvbiI6LTk3LjczMjY2LCJsYXQiOjMwLjI3OTExLCJlZGdlcyI6W3siaWQiOiIxMjQ5NTMxMTUtMTc1OTI0MjUyOF8xNDM3NTE0MDI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNzU5MjQyNTI4IiwiYiI6IjE0Mzc1MTQwMjYiLCJoZWFkaW5nIjoyODYuNjMxNTI1NTYyNzE3OSwiZGlzdCI6MjcuMTEyfSx7ImlkIjoiMTI0OTUzMTE1LTE3NTkyNDI1MjhfMTQyMTEzNDgxNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTc1OTI0MjUyOCIsImIiOiIxNDIxMTM0ODE0IiwiaGVhZGluZyI6MTA4LjIyMTE1MzgxNTUwNzYsImRpc3QiOjM1LjQ1M30seyJpZCI6IjE2NDI3MTA3MC0xNzU5MjQyNTI4XzE3NTkyNDI1MjUiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUyOCIsImIiOiIxNzU5MjQyNTI1IiwiaGVhZGluZyI6MTQzLjM1MzIzNTQ5MDU2MDU2LCJkaXN0IjoxOS4zNDR9XX0sIjE3NTkyNDI1MjkiOnsiaWQiOiIxNzU5MjQyNTI5IiwibG9uIjotOTcuNzMxNTIsImxhdCI6MzAuMjc5MTcsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA3Mi0xNzU5MjQyNTI5XzE0MjExMzQ4MjciLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUyOSIsImIiOiIxNDIxMTM0ODI3IiwiaGVhZGluZyI6MjYuODUyNDM2MDcxNzQ2MTEsImRpc3QiOjE0LjkxMX1dfSwiMTc1OTMyODc0MiI6eyJpZCI6IjE3NTkzMjg3NDIiLCJsb24iOi05Ny43MzUwMywibGF0IjozMC4yNjU4MSwiZWRnZXMiOlt7ImlkIjoiMTc2ODc1MTc1LTE3NTkzMjg3NDJfMTUyNTE2NjUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNzU5MzI4NzQyIiwiYiI6IjE1MjUxNjY1MyIsImhlYWRpbmciOi0xNjAuNTU5OTA5MDY0NTQwNjgsImRpc3QiOjEwNi45Nzl9XX0sIjE3NTkzMjg3NTciOnsiaWQiOiIxNzU5MzI4NzU3IiwibG9uIjotOTcuNzMxNjMsImxhdCI6MzAuMjc1MjgsImVkZ2VzIjpbeyJpZCI6IjE2NDI3MTA2OS0xNzU5MzI4NzU3XzE1MjcxMTEyNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTc1OTMyODc1NyIsImIiOiIxNTI3MTExMjQiLCJoZWFkaW5nIjotMTcwLjc1NjYyNDM0NjA2MzcsImRpc3QiOjE3Ljk3fSx7ImlkIjoiMTY0Mjg0NzgzLTE3NTkzMjg3NTdfMTA3Nzg0MDAyMCIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MzI4NzU3IiwiYiI6IjEwNzc4NDAwMjAiLCJoZWFkaW5nIjotMTUyLjE1MTU1MjUxMTA0OTMsImRpc3QiOjI4LjgzN30seyJpZCI6IjE2NDI4NDc4NS0xNzU5MzI4NzU3XzE1MjM3NDgxNiIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MzI4NzU3IiwiYiI6IjE1MjM3NDgxNiIsImhlYWRpbmciOjE3Mi42NzI3NjM2ODQ1OTM1LCJkaXN0IjozMC4xNzh9XX0sIjE4MzM2MDY3NTgiOnsiaWQiOiIxODMzNjA2NzU4IiwibG9uIjotOTcuNzQyNCwibGF0IjozMC4yODE4NiwiZWRnZXMiOlt7ImlkIjoiMTM3NDE3NDY2LTE4MzM2MDY3NThfMTUyNDU2NjM2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODMzNjA2NzU4IiwiYiI6IjE1MjQ1NjYzNiIsImhlYWRpbmciOjEwOC4wMzY2NjYxODA1NDQ3NywiZGlzdCI6NDYuNTQ1fSx7ImlkIjoiMTM3NDE3NDY2LTE4MzM2MDY3NThfMTUyNTAyOTc1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODMzNjA2NzU4IiwiYiI6IjE1MjUwMjk3NSIsImhlYWRpbmciOi02OS42Nzc2MDQ1Njk5OTcwMiwiZGlzdCI6MjguNzI4fV19LCIxODUxMTkyNTE3Ijp7ImlkIjoiMTg1MTE5MjUxNyIsImxvbiI6LTk3Ljc0Njg4LCJsYXQiOjMwLjI3MDMsImVkZ2VzIjpbeyJpZCI6IjE0OTcwNjk5NS0xODUxMTkyNTE3XzE2MjY1NDcwMjkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTg1MTE5MjUxNyIsImIiOiIxNjI2NTQ3MDI5IiwiaGVhZGluZyI6MTA5LjU3NDA4NTg3MDIzNTk4LCJkaXN0Ijo4Mi43MjJ9XX0sIjE4NTExOTI1MjAiOnsiaWQiOiIxODUxMTkyNTIwIiwibG9uIjotOTcuNzQ2OTMsImxhdCI6MzAuMjcwNDMsImVkZ2VzIjpbeyJpZCI6IjI3NDAxMjQxLTE4NTExOTI1MjBfMTYyNjU0NzAzNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxODUxMTkyNTIwIiwiYiI6IjE2MjY1NDcwMzQiLCJoZWFkaW5nIjoxNzUuMDM5MTY5ODMwNDk0MDcsImRpc3QiOjExLjEyN31dfSwiMTg1MTE5MjUyMyI6eyJpZCI6IjE4NTExOTI1MjMiLCJsb24iOi05Ny43NDI1NCwibGF0IjozMC4yNzMxOSwiZWRnZXMiOlt7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MjNfMTUyNzIzNDA0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODUxMTkyNTIzIiwiYiI6IjE1MjcyMzQwNCIsImhlYWRpbmciOjEyNi41MjUyMjc2MDI5MTU0MiwiZGlzdCI6MTYuNzYzfSx7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MjNfMjE2NzE2MTIxOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUyMyIsImIiOiIyMTY3MTYxMjE5IiwiaGVhZGluZyI6LTM1Ljg3ODU5NDUyOTM3NzYxLCJkaXN0Ijo4LjIwOX1dfSwiMTg1MTE5MjUyNiI6eyJpZCI6IjE4NTExOTI1MjYiLCJsb24iOi05Ny43NDI2MSwibGF0IjozMC4yNzMyOCwiZWRnZXMiOlt7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MjZfMjE2NzE2MTIxOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUyNiIsImIiOiIyMTY3MTYxMjE5IiwiaGVhZGluZyI6MTQ5Ljk0NDI2ODEwNzA2NDgsImRpc3QiOjMuODQyfSx7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MjZfMTg1MTE5MjUyOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUyNiIsImIiOiIxODUxMTkyNTI4IiwiaGVhZGluZyI6LTMxLjc5ODA2MTc2NTUxOTYyLCJkaXN0Ijo5LjEzfV19LCIxODUxMTkyNTI4Ijp7ImlkIjoiMTg1MTE5MjUyOCIsImxvbiI6LTk3Ljc0MjY2LCJsYXQiOjMwLjI3MzM1LCJlZGdlcyI6W3siaWQiOiIxMzQ1NjY3NDAtMTg1MTE5MjUyOF8xODUxMTkyNTI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODUxMTkyNTI4IiwiYiI6IjE4NTExOTI1MjYiLCJoZWFkaW5nIjoxNDguMjAxOTM4MjM0NDgwNCwiZGlzdCI6OS4xM30seyJpZCI6IjEzNDU2Njc0MC0xODUxMTkyNTI4XzE4NTExOTI1MzEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE4NTExOTI1MjgiLCJiIjoiMTg1MTE5MjUzMSIsImhlYWRpbmciOi0yNS4zMzQ2Njc4NzcyNDc2ODIsImRpc3QiOjEzLjQ5Mn1dfSwiMTg1MTE5MjUzMSI6eyJpZCI6IjE4NTExOTI1MzEiLCJsb24iOi05Ny43NDI3MiwibGF0IjozMC4yNzM0NiwiZWRnZXMiOlt7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MzFfMTg1MTE5MjUyOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUzMSIsImIiOiIxODUxMTkyNTI4IiwiaGVhZGluZyI6MTU0LjY2NTMzMjEyMjc1MjMyLCJkaXN0IjoxMy40OTJ9LHsiaWQiOiIxMzQ1NjY3NDAtMTg1MTE5MjUzMV8xODUxMTkyNTM0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODUxMTkyNTMxIiwiYiI6IjE4NTExOTI1MzQiLCJoZWFkaW5nIjotMjAuNDA0NTQ3MDA3MDg5NTYsImRpc3QiOjguMjc5fV19LCIxODUxMTkyNTM0Ijp7ImlkIjoiMTg1MTE5MjUzNCIsImxvbiI6LTk3Ljc0Mjc1LCJsYXQiOjMwLjI3MzUzLCJlZGdlcyI6W3siaWQiOiIxMzQ1NjY3NDAtMTg1MTE5MjUzNF8xODUxMTkyNTMxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODUxMTkyNTM0IiwiYiI6IjE4NTExOTI1MzEiLCJoZWFkaW5nIjoxNTkuNTk1NDUyOTkyOTEwNDUsImRpc3QiOjguMjc5fSx7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MzRfMjc0MzUwNjc0MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUzNCIsImIiOiIyNzQzNTA2NzQyIiwiaGVhZGluZyI6MTcuMjIyODQ2NTc1MDgwMjIyLCJkaXN0IjoxNi4yNDl9LHsiaWQiOiIxNzQ0MjE2MzItMTg1MTE5MjUzNF8yNzQzNTA2NzI1IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE4NTExOTI1MzQiLCJiIjoiMjc0MzUwNjcyNSIsImhlYWRpbmciOi0xNjEuNTM5MTg3MzQ3MTIxOTgsImRpc3QiOjE1LjE5M31dfSwiMTk4MDk0NzE4MSI6eyJpZCI6IjE5ODA5NDcxODEiLCJsb24iOi05Ny43MzU5OSwibGF0IjozMC4yNzYwNCwiZWRnZXMiOlt7ImlkIjoiMTI0OTUzMTI4LTE5ODA5NDcxODFfMTQyMTEzNDc1MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTk4MDk0NzE4MSIsImIiOiIxNDIxMTM0NzUwIiwiaGVhZGluZyI6MTguODI4MTU0NzQzNzMxNjEsImRpc3QiOjk4LjM4NH1dfSwiMTk5NzM0NDM0NiI6eyJpZCI6IjE5OTczNDQzNDYiLCJsb24iOi05Ny43MzM5NywibGF0IjozMC4yNzE4NSwiZWRnZXMiOlt7ImlkIjoiMTUzOTY1NjQtMTk5NzM0NDM0Nl8xMDc4ODA2NjU3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE5OTczNDQzNDYiLCJiIjoiMTA3ODgwNjY1NyIsImhlYWRpbmciOjE5Ni4xMzY2NDg5OTMyMjUzOCwiZGlzdCI6MTAuMzg2fSx7ImlkIjoiMTUzOTY1NjQtMTk5NzM0NDM0Nl8xMDczNDAwODM3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE5OTczNDQzNDYiLCJiIjoiMTA3MzQwMDgzNyIsImhlYWRpbmciOjIzLjQ2MDQ1NjQ5ODEzMTIsImRpc3QiOjkuNjY4fV19LCIyMDcyMTE5NDkxIjp7ImlkIjoiMjA3MjExOTQ5MSIsImxvbiI6LTk3LjczNjkxLCJsYXQiOjMwLjI2MzMyLCJlZGdlcyI6W3siaWQiOiIzNzc0OTU0OS0yMDcyMTE5NDkxXzE1MjQ5Njg5NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMDcyMTE5NDkxIiwiYiI6IjE1MjQ5Njg5NyIsImhlYWRpbmciOjI2OS45OTk5OTc0NzY2NTg0LCJkaXN0IjowLjk2Mn0seyJpZCI6IjM3NzQ5NTQ5LTIwNzIxMTk0OTFfMTUyNDk2OTAwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIwNzIxMTk0OTEiLCJiIjoiMTUyNDk2OTAwIiwiaGVhZGluZyI6MTA5LjEzNTgxNjk4NTYyNDg4LCJkaXN0Ijo4NC41NDN9XX0sIjIwNzkwNjQwNDEiOnsiaWQiOiIyMDc5MDY0MDQxIiwibG9uIjotOTcuNzM4OSwibGF0IjozMC4yNzMzMiwiZWRnZXMiOlt7ImlkIjoiMTUwMzQ5OTg2LTIwNzkwNjQwNDFfMjYzNzY3MzQ0MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMDc5MDY0MDQxIiwiYiI6IjI2Mzc2NzM0NDIiLCJoZWFkaW5nIjoxMDguMzgzNTU4NDY4NjU4OTYsImRpc3QiOjUyLjcyNn1dfSwiMjA5MDc1MzMwNyI6eyJpZCI6IjIwOTA3NTMzMDciLCJsb24iOi05Ny43NDcwMywibGF0IjozMC4yNzIzNCwiZWRnZXMiOlt7ImlkIjoiNDEyODc2MjktMjA5MDc1MzMwN18xNTI1ODMzOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjA5MDc1MzMwNyIsImIiOiIxNTI1ODMzOTUiLCJoZWFkaW5nIjoxMDkuMDY2ODM5NjExNTE1MywiZGlzdCI6NzEuMjY1fSx7ImlkIjoiNDEyODc2MjktMjA5MDc1MzMwN18xNTIzOTM0ODciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjA5MDc1MzMwNyIsImIiOiIxNTIzOTM0ODciLCJoZWFkaW5nIjotNzIuMjUzNzg3OTY4NzM3ODcsImRpc3QiOjM2LjM3fV19LCIyMTI1NDY4NjYzIjp7ImlkIjoiMjEyNTQ2ODY2MyIsImxvbiI6LTk3Ljc0NzgxLCJsYXQiOjMwLjI3NDUzLCJlZGdlcyI6W3siaWQiOiIxNTM5OTY4Mi0yMTI1NDY4NjYzXzQ0MzE4MjM1MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMTI1NDY4NjYzIiwiYiI6IjQ0MzE4MjM1MiIsImhlYWRpbmciOjE5OC4wMjkzMDM4ODYzMjMxNiwiZGlzdCI6NDYuNjMzfSx7ImlkIjoiMTUzOTk2ODItMjEyNTQ2ODY2M18xNTI2MzY4ODAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjEyNTQ2ODY2MyIsImIiOiIxNTI2MzY4ODAiLCJoZWFkaW5nIjoxNi4xMzYyMTc4ODQ5MzQ4NzYsImRpc3QiOjYuOTI0fV19LCIyMTI1NDY4NjY0Ijp7ImlkIjoiMjEyNTQ2ODY2NCIsImxvbiI6LTk3Ljc0NzY3LCJsYXQiOjMwLjI3NDU2LCJlZGdlcyI6W3siaWQiOiIyMDQ4Njk1MzAtMjEyNTQ2ODY2NF8xNTIzOTM0OTIiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjEyNTQ2ODY2NCIsImIiOiIxNTIzOTM0OTIiLCJoZWFkaW5nIjoxMDcuMzI5OTI1Njg5NTY1ODcsImRpc3QiOjk2Ljc2M30seyJpZCI6IjIwNDg2OTUzMC0yMTI1NDY4NjY0XzE1MjYzNjg4MCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTI1NDY4NjY0IiwiYiI6IjE1MjYzNjg4MCIsImhlYWRpbmciOi03My45MzE4OTg0NjExNDc3LCJkaXN0IjoxMi4wMTZ9XX0sIjIxMjU0Njg2NjUiOnsiaWQiOiIyMTI1NDY4NjY1IiwibG9uIjotOTcuNzQ3NzUsImxhdCI6MzAuMjc0NjksImVkZ2VzIjpbeyJpZCI6IjE1Mzk5NjgyLTIxMjU0Njg2NjVfMTUyNjM2ODgwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxMjU0Njg2NjUiLCJiIjoiMTUyNjM2ODgwIiwiaGVhZGluZyI6MTk5LjE0NjE2ODk3NzU3MTgsImRpc3QiOjExLjczNX0seyJpZCI6IjE1Mzk5NjgyLTIxMjU0Njg2NjVfNDQzMjE0NjE3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxMjU0Njg2NjUiLCJiIjoiNDQzMjE0NjE3IiwiaGVhZGluZyI6MTguMDI5MTkyMjA5NDU0OTc2LCJkaXN0Ijo1NS45NTl9XX0sIjIxMjU0Njg2NjYiOnsiaWQiOiIyMTI1NDY4NjY2IiwibG9uIjotOTcuNzQ3ODksImxhdCI6MzAuMjc0NjIsImVkZ2VzIjpbeyJpZCI6IjIwNDg2OTUzMC0yMTI1NDY4NjY2XzE1MjYzNjg4MCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTI1NDY4NjY2IiwiYiI6IjE1MjYzNjg4MCIsImhlYWRpbmciOjEwOS4wNjcxMTk3ODkyMzQ0MSwiZGlzdCI6MTAuMTh9XX0sIjIxMjgzMjM4MTEiOnsiaWQiOiIyMTI4MzIzODExIiwibG9uIjotOTcuNzM3ODYsImxhdCI6MzAuMjY0NTgsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTQ3LTIxMjgzMjM4MTFfMTQwODg5OTQ5MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjEyODMyMzgxMSIsImIiOiIxNDA4ODk5NDkzIiwiaGVhZGluZyI6MTk2LjEzNzc5MzQzMzczOTU1LCJkaXN0IjozLjQ2Mn0seyJpZCI6IjM3NzQ5NTQ3LTIxMjgzMjM4MTFfMTUyNDQ3MzYzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTI4MzIzODExIiwiYiI6IjE1MjQ0NzM2MyIsImhlYWRpbmciOjIzLjQ2MjAzMDg5MTQ5MTUsImRpc3QiOjQuODM0fV19LCIyMTMwMjUwMzQwIjp7ImlkIjoiMjEzMDI1MDM0MCIsImxvbiI6LTk3Ljc0MjQyLCJsYXQiOjMwLjI3NDMzLCJlZGdlcyI6W3siaWQiOiIxNzQ0MjE2MjktMjEzMDI1MDM0MF8xNjI2NTU5MzQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTMwMjUwMzQwIiwiYiI6IjE2MjY1NTkzNDYiLCJoZWFkaW5nIjoxOTYuMTM2MjU4OTcwMDkyMTEsImRpc3QiOjMuNDYyfSx7ImlkIjoiMTc0NDIxNjI5LTIxMzAyNTAzNDBfMTUyNjUxMTAxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTMwMjUwMzQwIiwiYiI6IjE1MjY1MTEwMSIsImhlYWRpbmciOjE4LjAyOTMyNzE4OTg4ODUxLCJkaXN0Ijo5LjMyN31dfSwiMjE2NzE0NjIyNyI6eyJpZCI6IjIxNjcxNDYyMjciLCJsb24iOi05Ny43NDA5LCJsYXQiOjMwLjI3MjY5LCJlZGdlcyI6W3siaWQiOiIxNTM4NjEyOC0yMTY3MTQ2MjI3XzE1MjQ5NTYxMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE0NjIyNyIsImIiOiIxNTI0OTU2MTMiLCJoZWFkaW5nIjoyODYuMDY3NzI5MjIzNzY4NzcsImRpc3QiOjIwLjAyN30seyJpZCI6IjE1Mzg2MTI4LTIxNjcxNDYyMjdfMjgwOTExMTE1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTQ2MjI3IiwiYiI6IjI4MDkxMTExNSIsImhlYWRpbmciOjExMS4wMDg1MDI4MDg5MzQ4NCwiZGlzdCI6Ni4xODR9XX0sIjIxNjcxNjExNjMiOnsiaWQiOiIyMTY3MTYxMTYzIiwibG9uIjotOTcuNzM4MDIsImxhdCI6MzAuMjgwNjEsImVkZ2VzIjpbeyJpZCI6IjE1MzkzMzg1LTIxNjcxNjExNjNfMTUyNDAwMjYxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMTYzIiwiYiI6IjE1MjQwMDI2MSIsImhlYWRpbmciOjI4OS4wNjgxNjU0MDkwMTIyNCwiZGlzdCI6MTAuMTh9LHsiaWQiOiIxNTM5MzM4NS0yMTY3MTYxMTYzXzE0MjExMzUwNDEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjExNjMiLCJiIjoiMTQyMTEzNTA0MSIsImhlYWRpbmciOjEwNy4zNDIxMzgxMDI2NzMxMywiZGlzdCI6MTA3Ljg1Mn1dfSwiMjE2NzE2MTE2OSI6eyJpZCI6IjIxNjcxNjExNjkiLCJsb24iOi05Ny43Mzg0LCJsYXQiOjMwLjI3OTU4LCJlZGdlcyI6W3siaWQiOiIxNTM4Njg0Ni0yMTY3MTYxMTY5XzE1MjUwMjM3MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMTY3MTYxMTY5IiwiYiI6IjE1MjUwMjM3MiIsImhlYWRpbmciOjI5Mi43MzI1MjAyMDQxOTAxNywiZGlzdCI6MTEuNDc1fSx7ImlkIjoiMTUzODY4NDYtMjE2NzE2MTE2OV8xNTI1MDIzNzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTE2OSIsImIiOiIxNTI1MDIzNzUiLCJoZWFkaW5nIjoxMDguMTUxNzg4NzMyNjg4OSwiZGlzdCI6MTI0LjU0Mn1dfSwiMjE2NzE2MTE4MSI6eyJpZCI6IjIxNjcxNjExODEiLCJsb24iOi05Ny43NDA4OSwibGF0IjozMC4yNzcxNywiZWRnZXMiOlt7ImlkIjoiMTU0MDgzNDYtMjE2NzE2MTE4MV8xNTI0MjgzMDIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTE4MSIsImIiOiIxNTI0MjgzMDIiLCJoZWFkaW5nIjoxOTcuNDE3Mjc0MDQ3NzkzNjgsImRpc3QiOjk2LjQzM30seyJpZCI6IjE1NDA4MzQ2LTIxNjcxNjExODFfMTUyNzA1MDE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjExODEiLCJiIjoiMTUyNzA1MDE2IiwiaGVhZGluZyI6MjAuNDAzODMyMjEzNTY3Mjg4LCJkaXN0Ijo4LjI3OX1dfSwiMjE2NzE2MTE4OSI6eyJpZCI6IjIxNjcxNjExODkiLCJsb24iOi05Ny43MzkyOCwibGF0IjozMC4yNzc5LCJlZGdlcyI6W3siaWQiOiIxNTM5NjI1MC0yMTY3MTYxMTg5XzE1MjYwMTAyNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMTY3MTYxMTg5IiwiYiI6IjE1MjYwMTAyNSIsImhlYWRpbmciOjExMS4wMDk1NzQzMTY0MzkzNCwiZGlzdCI6MTIuMzY4fSx7ImlkIjoiMTUzOTYyNTAtMjE2NzE2MTE4OV8xNTI2MDEwMjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTE4OSIsImIiOiIxNTI2MDEwMjciLCJoZWFkaW5nIjotNzEuNDI0ODI5MDg0MTUyMTgsImRpc3QiOjEyMS44MDR9XX0sIjIxNjcxNjExOTQiOnsiaWQiOiIyMTY3MTYxMTk0IiwibG9uIjotOTcuNzM4MSwibGF0IjozMC4yNzY0NiwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NzUtMjE2NzE2MTE5NF8yMTY3MTYxMjAwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMTk0IiwiYiI6IjIxNjcxNjEyMDAiLCJoZWFkaW5nIjoxMDcuODIzOTExMzI3ODAwODEsImRpc3QiOjg2LjkxOX1dfSwiMjE2NzE2MTIwMCI6eyJpZCI6IjIxNjcxNjEyMDAiLCJsb24iOi05Ny43MzcyNCwibGF0IjozMC4yNzYyMiwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NzUtMjE2NzE2MTIwMF8xNTI0MzU4OTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyMDAiLCJiIjoiMTUyNDM1ODk0IiwiaGVhZGluZyI6MTA2LjA2ODI5NjY2MjQyNjIzLCJkaXN0IjoxMi4wMTZ9XX0sIjIxNjcxNjEyMDEiOnsiaWQiOiIyMTY3MTYxMjAxIiwibG9uIjotOTcuNzM5MzIsImxhdCI6MzAuMjc2OTIsImVkZ2VzIjpbeyJpZCI6IjE0OTcwODExMi0yMTY3MTYxMjAxXzE2MjY1NTg1OTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyMDEiLCJiIjoiMTYyNjU1ODU5NCIsImhlYWRpbmciOi03Mi4yNTMwNTM2OTQ4OTcyNSwiZGlzdCI6MTguMTg0fV19LCIyMTY3MTYxMjAzIjp7ImlkIjoiMjE2NzE2MTIwMyIsImxvbiI6LTk3LjczNzE1LCJsYXQiOjMwLjI3NjEyLCJlZGdlcyI6W3siaWQiOiIxNTAzNTAwMjMtMjE2NzE2MTIwM18yNjM3NjUyNzUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjAzIiwiYiI6IjI2Mzc2NTI3NTMiLCJoZWFkaW5nIjotMTYyLjQ4MzI4NTM4NzMzNjkzLCJkaXN0Ijo4OS41MTF9XX0sIjIxNjcxNjEyMTMiOnsiaWQiOiIyMTY3MTYxMjEzIiwibG9uIjotOTcuNzM4MTYsImxhdCI6MzAuMjgwNTIsImVkZ2VzIjpbeyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMjEzXzIxNjcxNjEzMDEiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTIxMyIsImIiOiIyMTY3MTYxMzAxIiwiaGVhZGluZyI6MTk4LjgyNzQ5OTA4MzY0MDk2LCJkaXN0Ijo5OC4zODR9LHsiaWQiOiIyNDAxODI1NTQtMjE2NzE2MTIxM18xNTI0MDAyNjEiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTIxMyIsImIiOiIxNTI0MDAyNjEiLCJoZWFkaW5nIjoxNi4xMzUyNjUxNjA1NzMyNTUsImRpc3QiOjEzLjg0OH1dfSwiMjE2NzE2MTIxOSI6eyJpZCI6IjIxNjcxNjEyMTkiLCJsb24iOi05Ny43NDI1OSwibGF0IjozMC4yNzMyNSwiZWRnZXMiOlt7ImlkIjoiMTM0NTY2NzQwLTIxNjcxNjEyMTlfMTg1MTE5MjUyMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTIxOSIsImIiOiIxODUxMTkyNTIzIiwiaGVhZGluZyI6MTQ0LjEyMTQwNTQ3MDYyMjQsImRpc3QiOjguMjA5fSx7ImlkIjoiMTM0NTY2NzQwLTIxNjcxNjEyMTlfMTg1MTE5MjUyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTIxOSIsImIiOiIxODUxMTkyNTI2IiwiaGVhZGluZyI6LTMwLjA1NTczMTg5MjkzNTIwMywiZGlzdCI6My44NDJ9XX0sIjIxNjcxNjEyMjEiOnsiaWQiOiIyMTY3MTYxMjIxIiwibG9uIjotOTcuNzM4MDUsImxhdCI6MzAuMjc2NTcsImVkZ2VzIjpbeyJpZCI6IjE0OTcwODExMi0yMTY3MTYxMjIxXzE2MjY1NTg1OTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyMjEiLCJiIjoiMTYyNjU1ODU5NyIsImhlYWRpbmciOi03My45MzE1ODMyNDc3Njg3NiwiZGlzdCI6MTIuMDE2fV19LCIyMTY3MTYxMjI2Ijp7ImlkIjoiMjE2NzE2MTIyNiIsImxvbiI6LTk3LjczODI0LCJsYXQiOjMwLjI4MDY3LCJlZGdlcyI6W3siaWQiOiIxNTM4NjkyMS0yMTY3MTYxMjI2XzE1MjQwMDI2MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTIyNiIsImIiOiIxNTI0MDAyNjEiLCJoZWFkaW5nIjoxMDYuMDY5MDU1MTEwNTYwMTEsImRpc3QiOjEyLjAxNX0seyJpZCI6IjE1Mzg2OTIxLTIxNjcxNjEyMjZfMTUyNTAyOTYzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjI2IiwiYiI6IjE1MjUwMjk2MyIsImhlYWRpbmciOi03MS45NTAyNjU1NzczNjcxOSwiZGlzdCI6MTAwLjE4MX1dfSwiMjE2NzE2MTIyOSI6eyJpZCI6IjIxNjcxNjEyMjkiLCJsb24iOi05Ny43Mzk0NywibGF0IjozMC4yNzcwNCwiZWRnZXMiOlt7ImlkIjoiMjQwMTgyNTU0LTIxNjcxNjEyMjlfMTYyNjU1ODU5NCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMjI5IiwiYiI6IjE2MjY1NTg1OTQiLCJoZWFkaW5nIjoyMDAuNDAzODcwNzU3OTU0OSwiZGlzdCI6OC4yNzl9LHsiaWQiOiIyNDAxODI1NTQtMjE2NzE2MTIyOV8yMTY3MTYxMzE2IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxNjcxNjEyMjkiLCJiIjoiMjE2NzE2MTMxNiIsImhlYWRpbmciOjE3Ljk1Mzc2MTIxNTc5NTUyLCJkaXN0Ijo4Ny4zOTl9XX0sIjIxNjcxNjEyMzQiOnsiaWQiOiIyMTY3MTYxMjM0IiwibG9uIjotOTcuNzM4MjYsImxhdCI6MzAuMjc2NjIsImVkZ2VzIjpbeyJpZCI6IjE0OTcwODExMi0yMTY3MTYxMjM0XzIxNjcxNjEyMDEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyMzQiLCJiIjoiMjE2NzE2MTIwMSIsImhlYWRpbmciOi03MS45Mzk1NzcwMjc3NTg0OSwiZGlzdCI6MTA3LjI3Nn1dfSwiMjE2NzE2MTI0MiI6eyJpZCI6IjIxNjcxNjEyNDIiLCJsb24iOi05Ny43MzkwMSwibGF0IjozMC4yNzc4MiwiZWRnZXMiOlt7ImlkIjoiMTU0MDczNzItMjE2NzE2MTI0Ml8xNTI2MDEwMjUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTI0MiIsImIiOiIxNTI2MDEwMjUiLCJoZWFkaW5nIjoyODcuMDc5MjIzOTcyMTg0NiwiZGlzdCI6MTUuMDk4fSx7ImlkIjoiMTU0MDczNzItMjE2NzE2MTI0Ml8xNTI2MjA1NDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTI0MiIsImIiOiIxNTI2MjA1NDkiLCJoZWFkaW5nIjoxMDkuMDA2NTk0MDExNjk3OTEsImRpc3QiOjk4LjcxMn1dfSwiMjE2NzE2MTI0NSI6eyJpZCI6IjIxNjcxNjEyNDUiLCJsb24iOi05Ny43NDA5NSwibGF0IjozMC4yNzcyNiwiZWRnZXMiOlt7ImlkIjoiMTU0MDY2NTUtMjE2NzE2MTI0NV8xNTI3MDUwMTYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyNDUiLCJiIjoiMTUyNzA1MDE2IiwiaGVhZGluZyI6MTA0LjM2MTIwMjIxNDE2NDQxLCJkaXN0Ijo4LjkzOX1dfSwiMjE2NzE2MTI0NiI6eyJpZCI6IjIxNjcxNjEyNDYiLCJsb24iOi05Ny43MzcyLCJsYXQiOjMwLjI3NjMzLCJlZGdlcyI6W3siaWQiOiIxNDk3MDgxMTItMjE2NzE2MTI0Nl8yMTY3MTYxMjIxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjQ2IiwiYiI6IjIxNjcxNjEyMjEiLCJoZWFkaW5nIjotNzEuOTc5NDI5NjAzMzYwNjQsImRpc3QiOjg2LjAwNH1dfSwiMjE2NzE2MTI0NyI6eyJpZCI6IjIxNjcxNjEyNDciLCJsb24iOi05Ny43MzgyMywibGF0IjozMC4yNzY0MywiZWRnZXMiOlt7ImlkIjoiMTUzOTgxMDktMjE2NzE2MTI0N18xMDc4OTE5Mjc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjEyNDciLCJiIjoiMTA3ODkxOTI3NSIsImhlYWRpbmciOjE5NS44NTc0MjQ2ODY0NzI5NCwiZGlzdCI6NjMuMzg0fSx7ImlkIjoiMTUzOTgxMDktMjE2NzE2MTI0N18xNTI0MzU4OTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTI0NyIsImIiOiIxNTI0MzU4OTEiLCJoZWFkaW5nIjoxNi4xMzU5MTg4MDIxNDY5MiwiZGlzdCI6Ni45MjR9XX0sIjIxNjcxNjEyNDgiOnsiaWQiOiIyMTY3MTYxMjQ4IiwibG9uIjotOTcuNzM5NjEsImxhdCI6MzAuMjc3LCJlZGdlcyI6W3siaWQiOiIxNzAwNTA4MTctMjE2NzE2MTI0OF8yMTY3MTYxMjcwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjQ4IiwiYiI6IjIxNjcxNjEyNzAiLCJoZWFkaW5nIjotNzEuOTI5NTI5MDQwODIzNiwiZGlzdCI6MTE0LjM2Nn1dfSwiMjE2NzE2MTI1MSI6eyJpZCI6IjIxNjcxNjEyNTEiLCJsb24iOi05Ny43MzcwNSwibGF0IjozMC4yNzYzNiwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDIzLTIxNjcxNjEyNTFfMTYyNjU1ODYwMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTI1MSIsImIiOiIxNjI2NTU4NjAwIiwiaGVhZGluZyI6LTE1OS41OTU5ODMwOTY5NTkyLCJkaXN0Ijo4LjI3OX1dfSwiMjE2NzE2MTI2NyI6eyJpZCI6IjIxNjcxNjEyNjciLCJsb24iOi05Ny43MzgyOSwibGF0IjozMC4yNzY1MSwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NzUtMjE2NzE2MTI2N18xNTI0MzU4OTEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyNjciLCJiIjoiMTUyNDM1ODkxIiwiaGVhZGluZyI6MTA2LjA2ODM1MzAwNzM4NzM3LCJkaXN0Ijo4LjAxfV19LCIyMTY3MTYxMjcwIjp7ImlkIjoiMjE2NzE2MTI3MCIsImxvbiI6LTk3Ljc0MDc0LCJsYXQiOjMwLjI3NzMyLCJlZGdlcyI6W3siaWQiOiIxNzAwNTA4MTctMjE2NzE2MTI3MF8xNjI2NTU4NTg1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjcwIiwiYiI6IjE2MjY1NTg1ODUiLCJoZWFkaW5nIjotNzMuOTMxNDc2NDkzMzg2MTEsImRpc3QiOjguMDF9XX0sIjIxNjcxNjEyNzMiOnsiaWQiOiIyMTY3MTYxMjczIiwibG9uIjotOTcuNzQyNDMsImxhdCI6MzAuMjczLCJlZGdlcyI6W3siaWQiOiIyNzM5ODAzNS0yMTY3MTYxMjczXzI3NDM1MDY3MDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTI3MyIsImIiOiIyNzQzNTA2NzA0IiwiaGVhZGluZyI6LTE1Ni41Mzk3Njc3MjQxNDU2LCJkaXN0IjoyLjQxN31dfSwiMjE2NzE2MTI3NyI6eyJpZCI6IjIxNjcxNjEyNzciLCJsb24iOi05Ny43Mzg3MywibGF0IjozMC4yNzg3MiwiZWRnZXMiOlt7ImlkIjoiMTUzOTc0NjEtMjE2NzE2MTI3N18yNjM3NjcxMDc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjEyNzciLCJiIjoiMjYzNzY3MTA3NSIsImhlYWRpbmciOjEwNy45ODg1MTY0ODk4NzMwOSwiZGlzdCI6MTExLjI3N31dfSwiMjE2NzE2MTI4MSI6eyJpZCI6IjIxNjcxNjEyODEiLCJsb24iOi05Ny43MzcwMiwibGF0IjozMC4yNzYxNiwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NzUtMjE2NzE2MTI4MV8xNTI0MzU4OTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyODEiLCJiIjoiMTUyNDM1ODk3IiwiaGVhZGluZyI6MTA3Ljc4MDc4Nzc0Mjk1ODEzLCJkaXN0Ijo5OC4wMTR9XX0sIjIxNjcxNjEyODUiOnsiaWQiOiIyMTY3MTYxMjg1IiwibG9uIjotOTcuNzM4NjIsImxhdCI6MzAuMjc5NjUsImVkZ2VzIjpbeyJpZCI6IjE1NDEwODg1LTIxNjcxNjEyODVfMTUyNTAyMzcyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjEyODUiLCJiIjoiMTUyNTAyMzcyIiwiaGVhZGluZyI6MTA3LjQ0NDQ0ODA5ODU3NzcyLCJkaXN0IjoxMS4wOTR9LHsiaWQiOiIxNTQxMDg4NS0yMTY3MTYxMjg1XzEwNzc2MDAxMTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTI4NSIsImIiOiIxMDc3NjAwMTE1IiwiaGVhZGluZyI6LTcxLjg5MzUwNzg3NjYyMjExLCJkaXN0Ijo3NC45MDh9XX0sIjIxNjcxNjEyOTAiOnsiaWQiOiIyMTY3MTYxMjkwIiwibG9uIjotOTcuNzM4ODIsImxhdCI6MzAuMjc4NzksImVkZ2VzIjpbeyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMjkwXzE1MjQ4NjYwMyIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMjkwIiwiYiI6IjE1MjQ4NjYwMyIsImhlYWRpbmciOjE5OS4xNDU0MjA0MDU0ODAyLCJkaXN0Ijo1Ljg2N30seyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMjkwXzIxNjcxNjEzMzEiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTI5MCIsImIiOiIyMTY3MTYxMzMxIiwiaGVhZGluZyI6MTcuNzMyMTEzODQ1Mjc0NDczLCJkaXN0Ijo4OC40NTR9XX0sIjIxNjcxNjEyOTQiOnsiaWQiOiIyMTY3MTYxMjk0IiwibG9uIjotOTcuNzM5MTUsImxhdCI6MzAuMjc3OTEsImVkZ2VzIjpbeyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMjk0XzE1MjYwMTAyNSIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMjk0IiwiYiI6IjE1MjYwMTAyNSIsImhlYWRpbmciOjE4OS44NDc2MjQ0MzEwNDYyOCwiZGlzdCI6NS42MjZ9LHsiaWQiOiIyNDAxODI1NTQtMjE2NzE2MTI5NF8yMTY3MTYxMzIyIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxNjcxNjEyOTQiLCJiIjoiMjE2NzE2MTMyMiIsImhlYWRpbmciOjE3Ljk1MzYxMDc3NjQ1NjA5NSwiZGlzdCI6ODcuMzk5fV19LCIyMTY3MTYxMzAxIjp7ImlkIjoiMjE2NzE2MTMwMSIsImxvbiI6LTk3LjczODQ5LCJsYXQiOjMwLjI3OTY4LCJlZGdlcyI6W3siaWQiOiIyNDAxODI1NTQtMjE2NzE2MTMwMV8xNTI1MDIzNzIiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMwMSIsImIiOiIxNTI1MDIzNzIiLCJoZWFkaW5nIjoxOTYuMTM1NDE2NjIxOTI1NiwiZGlzdCI6Ni45MjR9LHsiaWQiOiIyNDAxODI1NTQtMjE2NzE2MTMwMV8yMTY3MTYxMjEzIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxNjcxNjEzMDEiLCJiIjoiMjE2NzE2MTIxMyIsImhlYWRpbmciOjE4LjgyNzQ5OTA4MzY0MDk2MiwiZGlzdCI6OTguMzg0fV19LCIyMTY3MTYxMzA4Ijp7ImlkIjoiMjE2NzE2MTMwOCIsImxvbiI6LTk3Ljc0MDc4LCJsYXQiOjMwLjI3NzIxLCJlZGdlcyI6W3siaWQiOiIxNTQwNjY1NS0yMTY3MTYxMzA4XzIxNjcxNjEzMTgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEzMDgiLCJiIjoiMjE2NzE2MTMxOCIsImhlYWRpbmciOjEwOC4zNzM3ODEzMDkyMjc2NywiZGlzdCI6MTEyLjUzOH1dfSwiMjE2NzE2MTMxMSI6eyJpZCI6IjIxNjcxNjEzMTEiLCJsb24iOi05Ny43Mzg5MSwibGF0IjozMC4yNzg3NiwiZWRnZXMiOlt7ImlkIjoiMTUzODUzNzItMjE2NzE2MTMxMV8xNTI0ODY2MDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTMxMSIsImIiOiIxNTI0ODY2MDMiLCJoZWFkaW5nIjoxMDguMjIxMjA1NDEzOTk3MzEsImRpc3QiOjcuMDkxfSx7ImlkIjoiMTUzODUzNzItMjE2NzE2MTMxMV8xNTI0ODY2MDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTMxMSIsImIiOiIxNTI0ODY2MDQiLCJoZWFkaW5nIjotNzAuODM4MjQ3MjYzMTgwNzIsImRpc3QiOjEyOC4zNDJ9XX0sIjIxNjcxNjEzMTYiOnsiaWQiOiIyMTY3MTYxMzE2IiwibG9uIjotOTcuNzM5MTksImxhdCI6MzAuMjc3NzksImVkZ2VzIjpbeyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzE2XzIxNjcxNjEyMjkiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMxNiIsImIiOiIyMTY3MTYxMjI5IiwiaGVhZGluZyI6MTk3Ljk1Mzc2MTIxNTc5NTUsImRpc3QiOjg3LjM5OX0seyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzE2XzE1MjYwMTAyNSIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMzE2IiwiYiI6IjE1MjYwMTAyNSIsImhlYWRpbmciOjIwLjQwMzcxMjc1MTcyNTQ1OCwiZGlzdCI6OC4yNzl9XX0sIjIxNjcxNjEzMTgiOnsiaWQiOiIyMTY3MTYxMzE4IiwibG9uIjotOTcuNzM5NjcsImxhdCI6MzAuMjc2ODksImVkZ2VzIjpbeyJpZCI6IjE1NDA2NjU1LTIxNjcxNjEzMThfMTUyNDM1ODg4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMzE4IiwiYiI6IjE1MjQzNTg4OCIsImhlYWRpbmciOjEwNC44ODkzODEzMjcyNjk3LCJkaXN0IjoxMi45NDN9XX0sIjIxNjcxNjEzMjIiOnsiaWQiOiIyMTY3MTYxMzIyIiwibG9uIjotOTcuNzM4ODcsImxhdCI6MzAuMjc4NjYsImVkZ2VzIjpbeyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzIyXzIxNjcxNjEyOTQiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMyMiIsImIiOiIyMTY3MTYxMjk0IiwiaGVhZGluZyI6MTk3Ljk1MzYxMDc3NjQ1NjEsImRpc3QiOjg3LjM5OX0seyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzIyXzE1MjQ4NjYwMyIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMzIyIiwiYiI6IjE1MjQ4NjYwMyIsImhlYWRpbmciOjE4LjAyODU3NTgwMjY4MjU3OCwiZGlzdCI6OS4zMjZ9XX0sIjIxNjcxNjEzMzEiOnsiaWQiOiIyMTY3MTYxMzMxIiwibG9uIjotOTcuNzM4NTQsImxhdCI6MzAuMjc5NTUsImVkZ2VzIjpbeyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzMxXzIxNjcxNjEyOTAiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMzMSIsImIiOiIyMTY3MTYxMjkwIiwiaGVhZGluZyI6MTk3LjczMjExMzg0NTI3NDQ4LCJkaXN0Ijo4OC40NTR9LHsiaWQiOiIyNDAxODI1NTQtMjE2NzE2MTMzMV8xNTI1MDIzNzIiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMzMSIsImIiOiIxNTI1MDIzNzIiLCJoZWFkaW5nIjoyMC40MDMzNzM2MjQ3NDc5OSwiZGlzdCI6OC4yNzl9XX0sIjIxNjcxNjEzMzQiOnsiaWQiOiIyMTY3MTYxMzM0IiwibG9uIjotOTcuNzM2OTgsImxhdCI6MzAuMjc2MjYsImVkZ2VzIjpbeyJpZCI6IjE0OTcwODExMi0yMTY3MTYxMzM0XzE2MjY1NTg2MDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEzMzQiLCJiIjoiMTYyNjU1ODYwMCIsImhlYWRpbmciOi03MC45MzI1NzYxODkxNDQ0NywiZGlzdCI6MTAuMTh9XX0sIjIxNjcxNjEzMzciOnsiaWQiOiIyMTY3MTYxMzM3IiwibG9uIjotOTcuNzQwOTEsImxhdCI6MzAuMjc3MzcsImVkZ2VzIjpbeyJpZCI6IjE3MDA1MDgxNy0yMTY3MTYxMzM3XzE2MjY1NTU4MzEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEzMzciLCJiIjoiMTYyNjU1NTgzMSIsImhlYWRpbmciOi03MS45NTA4Mzg4NzU4MTc3NCwiZGlzdCI6MTAwLjE4NH1dfSwiMjE2NzE2MTM0MCI6eyJpZCI6IjIxNjcxNjEzNDAiLCJsb24iOi05Ny43MzkzNiwibGF0IjozMC4yNzY4MSwiZWRnZXMiOlt7ImlkIjoiMzc3NDk1NzUtMjE2NzE2MTM0MF8yMTY3MTYxMjY3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMzQwIiwiYiI6IjIxNjcxNjEyNjciLCJoZWFkaW5nIjoxMDcuOTAxODk5MDQ3OTU4NzEsImRpc3QiOjEwOC4xOTF9XX0sIjIxNzc3MDI2MjIiOnsiaWQiOiIyMTc3NzAyNjIyIiwibG9uIjotOTcuNzQwMjgsImxhdCI6MzAuMjY4MzYsImVkZ2VzIjpbeyJpZCI6IjIwNzUxNzY0MC0yMTc3NzAyNjIyXzE1MjYzMTE4MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE3NzcwMjYyMiIsImIiOiIxNTI2MzExODAiLCJoZWFkaW5nIjoxMDcuODc4MzIxMTI4MDUwNjcsImRpc3QiOjI1LjI3N31dfSwiMjE3NzcwMjYyMyI6eyJpZCI6IjIxNzc3MDI2MjMiLCJsb24iOi05Ny43NDA1OSwibGF0IjozMC4yNjg0NSwiZWRnZXMiOlt7ImlkIjoiMjA3NTE3NjM5LTIxNzc3MDI2MjNfMjE3NzcwMjYyMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE3NzcwMjYyMyIsImIiOiIyMTc3NzAyNjIyIiwiaGVhZGluZyI6MTA4LjQ5MzMxMjMzODExNjMsImRpc3QiOjMxLjQ1NH1dfSwiMjE3NzcyNDY2MSI6eyJpZCI6IjIxNzc3MjQ2NjEiLCJsb24iOi05Ny43NDMzNSwibGF0IjozMC4yNzEzMiwiZWRnZXMiOlt7ImlkIjoiMjA3NTE5MjAzLTIxNzc3MjQ2NjFfMTUyNjc5NDY2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNzc3MjQ2NjEiLCJiIjoiMTUyNjc5NDY2IiwiaGVhZGluZyI6MTA3LjYzMTA3NzI0NzQ2ODYsImRpc3QiOjI5LjI4fV19LCIyMTc3NzkwMjM3Ijp7ImlkIjoiMjE3Nzc5MDIzNyIsImxvbiI6LTk3Ljc0MTU0LCJsYXQiOjMwLjI2NzQ2LCJlZGdlcyI6W3siaWQiOiIyMDc1MjQxMTYtMjE3Nzc5MDIzN18xNTI0MDE4OTkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE3Nzc5MDIzNyIsImIiOiIxNTI0MDE4OTkiLCJoZWFkaW5nIjoxOS41NDk5NDI4MjI2NDcwMTUsImRpc3QiOjI1Ljg4MX1dfSwiMjMyODkzOTc0NyI6eyJpZCI6IjIzMjg5Mzk3NDciLCJsb24iOi05Ny43NDczMiwibGF0IjozMC4yNjYyMiwiZWRnZXMiOlt7ImlkIjoiMzA1MTEzODktMjMyODkzOTc0N18xNTI1MDA3MjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjMyODkzOTc0NyIsImIiOiIxNTI1MDA3MjIiLCJoZWFkaW5nIjotNzIuMTY0NzcxMTg2MzI0NzEsImRpc3QiOjExMi4yMDV9XX0sIjIzMzg0MTc4NjciOnsiaWQiOiIyMzM4NDE3ODY3IiwibG9uIjotOTcuNzMzNCwibGF0IjozMC4yNzA1OSwiZWRnZXMiOlt7ImlkIjoiMTUyNDI5NzE1LTIzMzg0MTc4NjdfMTA3ODgwNjQ5OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjMzODQxNzg2NyIsImIiOiIxMDc4ODA2NDk4IiwiaGVhZGluZyI6Mjg2LjU1NzcwNjc3ODUxOTg0LCJkaXN0IjozMS4xMn1dfSwiMjQ4MTkzMDY3NiI6eyJpZCI6IjI0ODE5MzA2NzYiLCJsb24iOi05Ny43NDQ4OCwibGF0IjozMC4yNjQ1MSwiZWRnZXMiOlt7ImlkIjoiMTUzODE5NzMtMjQ4MTkzMDY3Nl8xNTI0NDI0MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjQ4MTkzMDY3NiIsImIiOiIxNTI0NDI0MTIiLCJoZWFkaW5nIjoxMDcuNjAwMTkwOTU4MDE0NjUsImRpc3QiOjY5LjY1OX0seyJpZCI6IjE1MzgxOTczLTI0ODE5MzA2NzZfMTUyNDQyNDE0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI0ODE5MzA2NzYiLCJiIjoiMTUyNDQyNDE0IiwiaGVhZGluZyI6LTcyLjczMTQ5Nzg2NTQyNzQ3LCJkaXN0Ijo2My40ODZ9XX0sIjI0ODE5MzA2ODciOnsiaWQiOiIyNDgxOTMwNjg3IiwibG9uIjotOTcuNzQ0MjEsImxhdCI6MzAuMjY1MzMsImVkZ2VzIjpbeyJpZCI6IjMwNTExMzg5LTI0ODE5MzA2ODdfMjQ4MTkzMDY4OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNDgxOTMwNjg3IiwiYiI6IjI0ODE5MzA2ODgiLCJoZWFkaW5nIjotNzIuNzY4MjE1NDAyMjYxNCwiZGlzdCI6MjYuMTk1fV19LCIyNDgxOTMwNjg4Ijp7ImlkIjoiMjQ4MTkzMDY4OCIsImxvbiI6LTk3Ljc0NDQ3LCJsYXQiOjMwLjI2NTQsImVkZ2VzIjpbeyJpZCI6IjMwNTExMzg5LTI0ODE5MzA2ODhfNDQzMTg1MTI5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI0ODE5MzA2ODgiLCJiIjoiNDQzMTg1MTI5IiwiaGVhZGluZyI6LTcxLjc4MTEzMDI2NTE4NzE5LCJkaXN0Ijo3LjA5MX1dfSwiMjQ4MTkzMDY5MyI6eyJpZCI6IjI0ODE5MzA2OTMiLCJsb24iOi05Ny43NDI3OSwibGF0IjozMC4yNjYwMSwiZWRnZXMiOlt7ImlkIjoiMTI5MTcwNzAwLTI0ODE5MzA2OTNfMTUyNDQ3MzUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI0ODE5MzA2OTMiLCJiIjoiMTUyNDQ3MzUwIiwiaGVhZGluZyI6Mjg3LjM2MzkwODg2ODcyNTQsImRpc3QiOjcwLjU3Nn0seyJpZCI6IjEyOTE3MDcwMC0yNDgxOTMwNjkzXzE1MjQ0NzM1MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNDgxOTMwNjkzIiwiYiI6IjE1MjQ0NzM1MyIsImhlYWRpbmciOjEwNy45NTI1MDkwNDAyNjUyMSwiZGlzdCI6NjQuNzM4fV19LCIyNTI4OTc2NTM0Ijp7ImlkIjoiMjUyODk3NjUzNCIsImxvbiI6LTk3Ljc0OTA3LCJsYXQiOjMwLjI2NDc2LCJlZGdlcyI6W3siaWQiOiIxNTM5NDc0Ni0yNTI4OTc2NTM0XzE1MjUwOTk1NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNTI4OTc2NTM0IiwiYiI6IjE1MjUwOTk1NSIsImhlYWRpbmciOjE5Ni4xMzc3NjQ3ODU0ODMyNiwiZGlzdCI6MTAuMzg2fSx7ImlkIjoiMTUzOTQ3NDYtMjUyODk3NjUzNF8xNTI0NDI0MjUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjUyODk3NjUzNCIsImIiOiIxNTI0NDI0MjUiLCJoZWFkaW5nIjoxNi44NzIwODkwODM1MTA4NywiZGlzdCI6OTYuMTV9XX0sIjI2Mzc2NTI3NTAiOnsiaWQiOiIyNjM3NjUyNzUwIiwibG9uIjotOTcuNzM3NDksImxhdCI6MzAuMjc1MjEsImVkZ2VzIjpbeyJpZCI6IjE1MDM1MDAyMy0yNjM3NjUyNzUwXzI2Mzc2NzM0NTIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NTI3NTAiLCJiIjoiMjYzNzY3MzQ1MiIsImhlYWRpbmciOi0xNjEuOTcwNjY1OTcxMzk5OCwiZGlzdCI6OTMuMjY1fV19LCIyNjM3NjUyNzUxIjp7ImlkIjoiMjYzNzY1Mjc1MSIsImxvbiI6LTk3LjczNzM2LCJsYXQiOjMwLjI3NTI1LCJlZGdlcyI6W3siaWQiOiIyNTc1ODQxNC0yNjM3NjUyNzUxXzE1MjU1NDk4MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjUyNzUxIiwiYiI6IjE1MjU1NDk4MyIsImhlYWRpbmciOjI4OS4wNjcxODk1MTg4Nzc4NSwiZGlzdCI6MTAuMTh9LHsiaWQiOiIyNTc1ODQxNC0yNjM3NjUyNzUxXzEwNzg5MTkzNTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY1Mjc1MSIsImIiOiIxMDc4OTE5MzU0IiwiaGVhZGluZyI6MTA0Ljg4OTE0MTIwMzI0MTAyLCJkaXN0IjoxMi45NDN9XX0sIjI2Mzc2NTI3NTIiOnsiaWQiOiIyNjM3NjUyNzUyIiwibG9uIjotOTcuNzM3NTcsImxhdCI6MzAuMjc1MzEsImVkZ2VzIjpbeyJpZCI6IjI1NzU4NDE0LTI2Mzc2NTI3NTJfMTA3ODkxODI3OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjUyNzUyIiwiYiI6IjEwNzg5MTgyNzkiLCJoZWFkaW5nIjoyODguMjIwNTM3NjMxNjU4MjYsImRpc3QiOjIxLjI3M30seyJpZCI6IjI1NzU4NDE0LTI2Mzc2NTI3NTJfMTUyNTU0OTgzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI2Mzc2NTI3NTIiLCJiIjoiMTUyNTU0OTgzIiwiaGVhZGluZyI6MTA3LjQ0MzY2MDc1Mzk1MDE0LCJkaXN0IjoxMS4wOTR9XX0sIjI2Mzc2NTI3NTMiOnsiaWQiOiIyNjM3NjUyNzUzIiwibG9uIjotOTcuNzM3NDMsImxhdCI6MzAuMjc1MzUsImVkZ2VzIjpbeyJpZCI6IjE1MDM1MDAyMy0yNjM3NjUyNzUzXzE1MjU1NDk4MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY1Mjc1MyIsImIiOiIxNTI1NTQ5ODMiLCJoZWFkaW5nIjotMTU5LjU5NTc4ODUxMTA0NTg0LCJkaXN0Ijo4LjI3OX1dfSwiMjYzNzY1Mjc1NSI6eyJpZCI6IjI2Mzc2NTI3NTUiLCJsb24iOi05Ny43Mzg0NSwibGF0IjozMC4yNzU1NiwiZWRnZXMiOlt7ImlkIjoiMjU3NTg0MTQtMjYzNzY1Mjc1NV8xNTI1NTQ5ODAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY1Mjc1NSIsImIiOiIxNTI1NTQ5ODAiLCJoZWFkaW5nIjoyODYuMDY4MjA3MTY2Mzk1OSwiZGlzdCI6OC4wMX0seyJpZCI6IjI1NzU4NDE0LTI2Mzc2NTI3NTVfMTA3ODkxOTQyOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjUyNzU1IiwiYiI6IjEwNzg5MTk0MjkiLCJoZWFkaW5nIjoxMDcuMzI5NzQxMjU1MTQ3MjMsImRpc3QiOjQ4LjM4MX1dfSwiMjYzNzY3MDcyNSI6eyJpZCI6IjI2Mzc2NzA3MjUiLCJsb24iOi05Ny43MzY3NywibGF0IjozMC4yNzcxMSwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDIzLTI2Mzc2NzA3MjVfMjE2NzE2MTI1MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3MDcyNSIsImIiOiIyMTY3MTYxMjUxIiwiaGVhZGluZyI6LTE2Mi4wNDU5ODAwMzQyMjA4LCJkaXN0Ijo4Ny4zOTl9XX0sIjI2Mzc2NzA3MjYiOnsiaWQiOiIyNjM3NjcwNzI2IiwibG9uIjotOTcuNzM2ODgsImxhdCI6MzAuMjc3MiwiZWRnZXMiOlt7ImlkIjoiMTU0MDczNzItMjYzNzY3MDcyNl80NDMyMTQ2NTMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY3MDcyNiIsImIiOiI0NDMyMTQ2NTMiLCJoZWFkaW5nIjoyODguNjM0ODc4NTYyMjMyNCwiZGlzdCI6NDEuNjMyfSx7ImlkIjoiMTU0MDczNzItMjYzNzY3MDcyNl8xNTI2MzExODYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY3MDcyNiIsImIiOiIxNTI2MzExODYiLCJoZWFkaW5nIjoxMDQuODg5NDI2NzE4Nzg0LCJkaXN0IjoxMi45NDN9XX0sIjI2Mzc2NzA3MjciOnsiaWQiOiIyNjM3NjcwNzI3IiwibG9uIjotOTcuNzM2NzIsImxhdCI6MzAuMjc3MjIsImVkZ2VzIjpbeyJpZCI6IjE1MDM1MDAyMy0yNjM3NjcwNzI3XzE1MjYzMTE4NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3MDcyNyIsImIiOiIxNTI2MzExODYiLCJoZWFkaW5nIjotMTUyLjQ5MTE5NjM2MTI1MTM4LCJkaXN0Ijo2LjI0OX1dfSwiMjYzNzY3MDcyOSI6eyJpZCI6IjI2Mzc2NzA3MjkiLCJsb24iOi05Ny43MzY0NiwibGF0IjozMC4yNzc5OCwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDIzLTI2Mzc2NzA3MjlfMjYzNzY3MDcyNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3MDcyOSIsImIiOiIyNjM3NjcwNzI3IiwiaGVhZGluZyI6LTE2My40NjI0ODY0MTY2MDE1LCJkaXN0Ijo4Ny44ODd9XX0sIjI2Mzc2NzA3MzAiOnsiaWQiOiIyNjM3NjcwNzMwIiwibG9uIjotOTcuNzM2MzIsImxhdCI6MzAuMjc4MDMsImVkZ2VzIjpbeyJpZCI6IjE1Mzk3NDYxLTI2Mzc2NzA3MzBfMTUyNTM5NjY2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI2Mzc2NzA3MzAiLCJiIjoiMTUyNTM5NjY2IiwiaGVhZGluZyI6MTA2LjgzNDk4NzE5MDQ3NjcsImRpc3QiOjk5LjUxOX1dfSwiMjYzNzY3MDczMSI6eyJpZCI6IjI2Mzc2NzA3MzEiLCJsb24iOi05Ny43MzY1NCwibGF0IjozMC4yNzgxLCJlZGdlcyI6W3siaWQiOiIxNTM5NzQ2MS0yNjM3NjcwNzMxXzE1MjYxMzYzOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjcwNzMxIiwiYiI6IjE1MjYxMzYzOCIsImhlYWRpbmciOjExMi43MzIyMDA3NDU2ODIwOSwiZGlzdCI6MTEuNDc1fV19LCIyNjM3NjcwNzMyIjp7ImlkIjoiMjYzNzY3MDczMiIsImxvbiI6LTk3LjczNjQxLCJsYXQiOjMwLjI3ODEyLCJlZGdlcyI6W3siaWQiOiIxNTAzNTAwMjMtMjYzNzY3MDczMl8xNTI2MTM2MzgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzA3MzIiLCJiIjoiMTUyNjEzNjM4IiwiaGVhZGluZyI6LTE2My44NjQzMjc3MjA3NjMzMywiZGlzdCI6Ni45MjR9XX0sIjI2Mzc2NzEwNzUiOnsiaWQiOiIyNjM3NjcxMDc1IiwibG9uIjotOTcuNzM3NjMsImxhdCI6MzAuMjc4NDEsImVkZ2VzIjpbeyJpZCI6IjE1Mzk3NDYxLTI2Mzc2NzEwNzVfMTUyNjEzNjM2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI2Mzc2NzEwNzUiLCJiIjoiMTUyNjEzNjM2IiwiaGVhZGluZyI6MTA5LjUyMDExMjk4MzM4MzEzLCJkaXN0IjoxMy4yNzF9XX0sIjI2Mzc2NzIxODAiOnsiaWQiOiIyNjM3NjcyMTgwIiwibG9uIjotOTcuNzM1OTMsImxhdCI6MzAuMjc1OTcsImVkZ2VzIjpbeyJpZCI6IjE0OTcwODExMi0yNjM3NjcyMTgwXzE2MjY1NTg1OTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzIxODAiLCJiIjoiMTYyNjU1ODU5MCIsImhlYWRpbmciOi03My45MzE2ODgyMTgwNTQyOCwiZGlzdCI6OC4wMX1dfSwiMjYzNzY3MzQzOSI6eyJpZCI6IjI2Mzc2NzM0MzkiLCJsb24iOi05Ny43MzgyOCwibGF0IjozMC4yNzMwOCwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDIzLTI2Mzc2NzM0MzlfMTUyNDk1NjE3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3NjczNDM5IiwiYiI6IjE1MjQ5NTYxNyIsImhlYWRpbmciOi0xNjIuNTIzMDQ0NDM3NDI4OTIsImRpc3QiOjExOC41NDZ9XX0sIjI2Mzc2NzM0NDEiOnsiaWQiOiIyNjM3NjczNDQxIiwibG9uIjotOTcuNzM4MTcsImxhdCI6MzAuMjczMTEsImVkZ2VzIjpbeyJpZCI6IjEzMTU0NDkwNS0yNjM3NjczNDQxXzE1MjUzOTY0OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3MzQ0MSIsImIiOiIxNTI1Mzk2NDkiLCJoZWFkaW5nIjoxMDcuNjEwMDkzMzIzNTY0ODUsImRpc3QiOjk4LjkzM31dfSwiMjYzNzY3MzQ0MiI6eyJpZCI6IjI2Mzc2NzM0NDIiLCJsb24iOi05Ny43MzgzOCwibGF0IjozMC4yNzMxNywiZWRnZXMiOlt7ImlkIjoiMTUwMzQ5OTg2LTI2Mzc2NzM0NDJfMTUyNjMxMTgxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI2Mzc2NzM0NDIiLCJiIjoiMTUyNjMxMTgxIiwiaGVhZGluZyI6MTA2LjA2NzgxODM3NjU3NjMxLCJkaXN0IjoxMi4wMTZ9XX0sIjI2Mzc2NzM0NDMiOnsiaWQiOiIyNjM3NjczNDQzIiwibG9uIjotOTcuNzM4MTMsImxhdCI6MzAuMjczMjMsImVkZ2VzIjpbeyJpZCI6IjEzNDc5NzAwMS0yNjM3NjczNDQzXzEwNzM0MDA5NjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzM0NDMiLCJiIjoiMTA3MzQwMDk2OCIsImhlYWRpbmciOi03My45MzIxMTc4NzQ3MzU3LCJkaXN0Ijo4LjAxMX1dfSwiMjYzNzY3MzQ0NCI6eyJpZCI6IjI2Mzc2NzM0NDQiLCJsb24iOi05Ny43MzgzNCwibGF0IjozMC4yNzMyOSwiZWRnZXMiOlt7ImlkIjoiMTMxNTQ0OTAyLTI2Mzc2NzM0NDRfMTA3MzQwMDk3MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjczNDQ0IiwiYiI6IjEwNzM0MDA5NzEiLCJoZWFkaW5nIjotNzIuNDQ5NDc4NTcxNzc3NiwiZGlzdCI6NTEuNDY4fV19LCIyNjM3NjczNDQ1Ijp7ImlkIjoiMjYzNzY3MzQ0NSIsImxvbiI6LTk3LjczODE4LCJsYXQiOjMwLjI3MzMyLCJlZGdlcyI6W3siaWQiOiIxNTAzNTAwMjMtMjYzNzY3MzQ0NV8xMDczNDAwOTY4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3NjczNDQ1IiwiYiI6IjEwNzM0MDA5NjgiLCJoZWFkaW5nIjotMTU5LjU5NTM5NzQwNzI3NjgsImRpc3QiOjguMjc5fV19LCIyNjM3NjczNDQ4Ijp7ImlkIjoiMjYzNzY3MzQ0OCIsImxvbiI6LTk3LjczNzg0LCJsYXQiOjMwLjI3NDI3LCJlZGdlcyI6W3siaWQiOiIxNTAzNTAwMjMtMjYzNzY3MzQ0OF8yNjM3NjczNDQ1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3NjczNDQ4IiwiYiI6IjI2Mzc2NzM0NDUiLCJoZWFkaW5nIjotMTYyLjc0Mjk4MDM3MTMwNDUzLCJkaXN0IjoxMTAuMjc5fV19LCIyNjM3NjczNDUwIjp7ImlkIjoiMjYzNzY3MzQ1MCIsImxvbiI6LTk3LjczNzY3LCJsYXQiOjMwLjI3NDMxLCJlZGdlcyI6W3siaWQiOiIxNTQwMjQ2MS0yNjM3NjczNDUwXzE1MjYzMTE4MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjczNDUwIiwiYiI6IjE1MjYzMTE4MyIsImhlYWRpbmciOjI4OC4yMjAzNzg0MTMxODM3NywiZGlzdCI6MTQuMTgyfSx7ImlkIjoiMTU0MDI0NjEtMjYzNzY3MzQ1MF8xNTI1Mzk2NTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY3MzQ1MCIsImIiOiIxNTI1Mzk2NTIiLCJoZWFkaW5nIjoxMDcuNTAwNzM1NjQyMzAyMTYsImRpc3QiOjk1Ljg0NX1dfSwiMjYzNzY3MzQ1MiI6eyJpZCI6IjI2Mzc2NzM0NTIiLCJsb24iOi05Ny43Mzc3OSwibGF0IjozMC4yNzQ0MSwiZWRnZXMiOlt7ImlkIjoiMTUwMzUwMDIzLTI2Mzc2NzM0NTJfMTUyNjMxMTgzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3NjczNDUyIiwiYiI6IjE1MjYzMTE4MyIsImhlYWRpbmciOi0xNjMuODYzNzQzNzEzNTgxOCwiZGlzdCI6Ni45MjR9XX0sIjI2Mzc2NzYxNDIiOnsiaWQiOiIyNjM3Njc2MTQyIiwibG9uIjotOTcuNzM1MDcsImxhdCI6MzAuMjcyMTgsImVkZ2VzIjpbeyJpZCI6IjM3NzQ5NTY5LTI2Mzc2NzYxNDJfMTUyNTY2MzIyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQyIiwiYiI6IjE1MjU2NjMyMiIsImhlYWRpbmciOjE5OC4yNTQyNjA1Nzc0NTgyNywiZGlzdCI6NTguMzY2fSx7ImlkIjoiMzc3NDk1NjktMjYzNzY3NjE0Ml8xMDczNDAwODMwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQyIiwiYiI6IjEwNzM0MDA4MzAiLCJoZWFkaW5nIjoyMy40NjAzOTAxMjI4MTE1MiwiZGlzdCI6Ny4yNTF9XX0sIjI2Mzc2NzYxNDMiOnsiaWQiOiIyNjM3Njc2MTQzIiwibG9uIjotOTcuNzM0OTQsImxhdCI6MzAuMjcyMjEsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTczMi0yNjM3Njc2MTQzXzEwNzM0MDA4MzIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzYxNDMiLCJiIjoiMTA3MzQwMDgzMiIsImhlYWRpbmciOjExMy4zNjYwNzcyMDQyNjg0MiwiZGlzdCI6MTYuNzcxfV19LCIyNjM3Njc2MTQ0Ijp7ImlkIjoiMjYzNzY3NjE0NCIsImxvbiI6LTk3LjczNTE3LCJsYXQiOjMwLjI3MjI3LCJlZGdlcyI6W3siaWQiOiIxNTI0Mjk3MTYtMjYzNzY3NjE0NF8xMDczNDAwODMwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ0IiwiYiI6IjEwNzM0MDA4MzAiLCJoZWFkaW5nIjoxMDQuODg4NzA0OTE1MTQzOSwiZGlzdCI6MTIuOTQzfV19LCIyNjM3Njc2MTQ1Ijp7ImlkIjoiMjYzNzY3NjE0NSIsImxvbiI6LTk3LjczNDg4LCJsYXQiOjMwLjI3MjMyLCJlZGdlcyI6W3siaWQiOiIxMzE1NDQ5MDgtMjYzNzY3NjE0NV8xMDczNDAwOTM4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ1IiwiYiI6IjEwNzM0MDA5MzgiLCJoZWFkaW5nIjotNzMuOTMyMjQ5NzA0NDE4MDgsImRpc3QiOjEyLjAxNn1dfSwiMjYzNzY3NjE0NiI6eyJpZCI6IjI2Mzc2NzYxNDYiLCJsb24iOi05Ny43MzUxMywibGF0IjozMC4yNzIzOSwiZWRnZXMiOlt7ImlkIjoiMjA0OTg5NzMzLTI2Mzc2NzYxNDZfMTA3MzQwMDk1MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE0NiIsImIiOiIxMDczNDAwOTUyIiwiaGVhZGluZyI6LTcyLjI1Mzc3OTQxMzA4NjM5LCJkaXN0IjozNi4zN31dfSwiMjYzNzY3NjE0NyI6eyJpZCI6IjI2Mzc2NzYxNDciLCJsb24iOi05Ny43MzQ5MSwibGF0IjozMC4yNzI2MSwiZWRnZXMiOlt7ImlkIjoiMjA0OTg5NzU3LTI2Mzc2NzYxNDdfMTA3ODgwNjYxMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE0NyIsImIiOiIxMDc4ODA2NjEzIiwiaGVhZGluZyI6MTk3LjczMzMwNTE1Njg1OTI1LCJkaXN0IjoyMi4xMTR9LHsiaWQiOiIyMDQ5ODk3NTctMjYzNzY3NjE0N18yNjM3Njc2MTQ4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ3IiwiYiI6IjI2Mzc2NzYxNDgiLCJoZWFkaW5nIjo4LjIzMTQ2NDU4MzM4NDM1LCJkaXN0IjoxMy40NDF9XX0sIjI2Mzc2NzYxNDgiOnsiaWQiOiIyNjM3Njc2MTQ4IiwibG9uIjotOTcuNzM0ODksImxhdCI6MzAuMjcyNzMsImVkZ2VzIjpbeyJpZCI6IjIwNDk4OTc1Ny0yNjM3Njc2MTQ4XzI2Mzc2NzYxNDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzYxNDgiLCJiIjoiMjYzNzY3NjE0NyIsImhlYWRpbmciOjE4OC4yMzE0NjQ1ODMzODQzNCwiZGlzdCI6MTMuNDQxfSx7ImlkIjoiMjA0OTg5NzU3LTI2Mzc2NzYxNDhfMTUyNTY2MzI5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ4IiwiYiI6IjE1MjU2NjMyOSIsImhlYWRpbmciOjYuMTkyMTk5NjgzMzk1MzI0LCJkaXN0Ijo4LjkyMX1dfSwiMjYzNzY3NjE0OSI6eyJpZCI6IjI2Mzc2NzYxNDkiLCJsb24iOi05Ny43MzQ4OSwibGF0IjozMC4yNzMxLCJlZGdlcyI6W3siaWQiOiIyMDQ5ODk3NTctMjYzNzY3NjE0OV8xMDc3NTk5NTcwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ5IiwiYiI6IjEwNzc1OTk1NzAiLCJoZWFkaW5nIjoxNzcuMzg0Mzg1NzY5MzgzOTgsImRpc3QiOjIxLjA4NX0seyJpZCI6IjIwNDk4OTc1Ny0yNjM3Njc2MTQ5XzE1MjU2NjMzMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE0OSIsImIiOiIxNTI1NjYzMzEiLCJoZWFkaW5nIjotNy42MDU5MzE1NDIxNTM3NzUsImRpc3QiOjQzLjYxOH1dfSwiMjYzNzY3NjE1MCI6eyJpZCI6IjI2Mzc2NzYxNTAiLCJsb24iOi05Ny43MzUxMywibGF0IjozMC4yNzQ4LCJlZGdlcyI6W3siaWQiOiIyMDQ5ODk3NTctMjYzNzY3NjE1MF8xNTI1NjYzMzQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzYxNTAiLCJiIjoiMTUyNTY2MzM0IiwiaGVhZGluZyI6MTgzLjU0NzYyNzM5NTI1ODksImRpc3QiOjE1LjU1fSx7ImlkIjoiMjA0OTg5NzU3LTI2Mzc2NzYxNTBfMTA3MzQwMzc5MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE1MCIsImIiOiIxMDczNDAzNzkwIiwiaGVhZGluZyI6MTAuNTM2MDk4OTgwNzcxOTksImRpc3QiOjE1Ljc4Nn1dfSwiMjc0MzUwNjcwNCI6eyJpZCI6IjI3NDM1MDY3MDQiLCJsb24iOi05Ny43NDI0NCwibGF0IjozMC4yNzI5OCwiZWRnZXMiOlt7ImlkIjoiMjczOTgwMzUtMjc0MzUwNjcwNF8xNTI0ODAyMDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjc0MzUwNjcwNCIsImIiOiIxNTI0ODAyMDkiLCJoZWFkaW5nIjotMTYyLjE3ODcwNjI0NzE1NDgyLCJkaXN0Ijo5NC4zMn1dfSwiMjc0MzUwNjc0MiI6eyJpZCI6IjI3NDM1MDY3NDIiLCJsb24iOi05Ny43NDI3LCJsYXQiOjMwLjI3MzY3LCJlZGdlcyI6W3siaWQiOiIxMzQ1NjY3NDAtMjc0MzUwNjc0Ml8xODUxMTkyNTM0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNzQzNTA2NzQyIiwiYiI6IjE4NTExOTI1MzQiLCJoZWFkaW5nIjoxOTcuMjIyODQ2NTc1MDgwMiwiZGlzdCI6MTYuMjQ5fSx7ImlkIjoiMTM0NTY2NzQwLTI3NDM1MDY3NDJfMTYyNjU1OTM0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjc0MzUwNjc0MiIsImIiOiIxNjI2NTU5MzQ2IiwiaGVhZGluZyI6MjAuNDA0MzkyMTEyNTcyNjksImRpc3QiOjc0LjUxNX1dfSwiMjc0MzUwNjgyMiI6eyJpZCI6IjI3NDM1MDY4MjIiLCJsb24iOi05Ny43NDY4OCwibGF0IjozMC4yNzcwNiwiZWRnZXMiOlt7ImlkIjoiMTUzOTk2ODItMjc0MzUwNjgyMl8xNTI1NDYxOTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjc0MzUwNjgyMiIsImIiOiIxNTI1NDYxOTgiLCJoZWFkaW5nIjoxOTYuMTM1ODI4NTkyMzYzNjUsImRpc3QiOjE3LjMxMX0seyJpZCI6IjE1Mzk5NjgyLTI3NDM1MDY4MjJfMTUyNjM2ODg0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI3NDM1MDY4MjIiLCJiIjoiMTUyNjM2ODg0IiwiaGVhZGluZyI6MTUuNTg4MDAyMTAwOTA0MzgzLCJkaXN0IjozMi4yMjV9XX19LCJlZGdlcyI6eyIxNTM3NDU3Ny0xNTIzNzYzOThfMTUyMzc2NDAxIjp7ImlkIjoiMTUzNzQ1NzctMTUyMzc2Mzk4XzE1MjM3NjQwMSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNTIzNzYzOTgiLCJiIjoiMTUyMzc2NDAxIiwiaGVhZGluZyI6LTE3Ny44Mzg2MDQ2NDkzODk2OCwiZGlzdCI6MjUuNTE1fSwiMTUzNzQ1NzctMTUyMzc2NDAxXzE1MjM3NjQwNCI6eyJpZCI6IjE1Mzc0NTc3LTE1MjM3NjQwMV8xNTIzNzY0MDQiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzc2NDAxIiwiYiI6IjE1MjM3NjQwNCIsImhlYWRpbmciOjE2Ni4wNzA4NTM3MTgyNjA4NSwiZGlzdCI6Ny45OTV9LCIxNTM3NDU3Ny0xNTIzNzY0MDRfMTUyMzc2NDA3Ijp7ImlkIjoiMTUzNzQ1NzctMTUyMzc2NDA0XzE1MjM3NjQwNyIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNTIzNzY0MDQiLCJiIjoiMTUyMzc2NDA3IiwiaGVhZGluZyI6MTU0LjI1NDIzMjU5MDY1ODQ2LCJkaXN0IjoxMS4wNzd9LCIxNTM3NDU3Ny0xNTIzNzY0MDdfMTUyMzc2NDEwIjp7ImlkIjoiMTUzNzQ1NzctMTUyMzc2NDA3XzE1MjM3NjQxMCIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNTIzNzY0MDciLCJiIjoiMTUyMzc2NDEwIiwiaGVhZGluZyI6MTM5LjA0MDI3MzM1MjMxNzAzLCJkaXN0Ijo1Ljg3Mn0sIjE1Mzc0NTc3LTE1MjM3NjQxMF8xNTIzNzY0MTUiOnsiaWQiOiIxNTM3NDU3Ny0xNTIzNzY0MTBfMTUyMzc2NDE1IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM3NjQxMCIsImIiOiIxNTIzNzY0MTUiLCJoZWFkaW5nIjoxMjIuMTQzNzkxNzU2NzI0LCJkaXN0IjoxMi41MDJ9LCIxNTM3NDU3Ny0xNTIzNzY0MTVfMTUyMzc2NDE4Ijp7ImlkIjoiMTUzNzQ1NzctMTUyMzc2NDE1XzE1MjM3NjQxOCIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNTIzNzY0MTUiLCJiIjoiMTUyMzc2NDE4IiwiaGVhZGluZyI6MTA2LjA2NjQwODkyODMyMDU0LCJkaXN0Ijo4LjAxMX0sIjE1Mzc1MjAzLTE1MjM4MDgxN18xNTIzODA4MjQiOnsiaWQiOiIxNTM3NTIwMy0xNTIzODA4MTdfMTUyMzgwODI0IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM4MDgxNyIsImIiOiIxNTIzODA4MjQiLCJoZWFkaW5nIjotODEuODA1NzAyODEzMzU2NjMsImRpc3QiOjE1LjU1Nn0sIjE1Mzc1MjAzLTE1MjM4MDgyNF8xNTIzODA4MjUiOnsiaWQiOiIxNTM3NTIwMy0xNTIzODA4MjRfMTUyMzgwODI1IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM4MDgyNCIsImIiOiIxNTIzODA4MjUiLCJoZWFkaW5nIjotOTcuMjk0MTY4MjI3MzY0NjIsImRpc3QiOjguNzMxfSwiMTUzNzUyMDMtMTUyMzgwODI1XzE1MjM4MDgyNyI6eyJpZCI6IjE1Mzc1MjAzLTE1MjM4MDgyNV8xNTIzODA4MjciLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzgwODI1IiwiYiI6IjE1MjM4MDgyNyIsImhlYWRpbmciOi05OS4zNDU0NTM0NjQzODU4NCwiZGlzdCI6Ni44Mjd9LCIxNTM3NTIwMy0xNTIzODA4MjdfMTUyMzgwODMwIjp7ImlkIjoiMTUzNzUyMDMtMTUyMzgwODI3XzE1MjM4MDgzMCIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNTIzODA4MjciLCJiIjoiMTUyMzgwODMwIiwiaGVhZGluZyI6LTEyNy41MjQyMTY4MTE3MTQ4NSwiZGlzdCI6Ny4yOH0sIjE1Mzc1MjAzLTE1MjM4MDgzMF8xNTIzODA4MzIiOnsiaWQiOiIxNTM3NTIwMy0xNTIzODA4MzBfMTUyMzgwODMyIiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE1MjM4MDgzMCIsImIiOiIxNTIzODA4MzIiLCJoZWFkaW5nIjotMTQzLjM0ODkzNTI3NjY3NTQsImRpc3QiOjkuNjcyfSwiMTUzNzUyMDMtMTUyMzgwODMyXzE1MjM4MDgzNCI6eyJpZCI6IjE1Mzc1MjAzLTE1MjM4MDgzMl8xNTIzODA4MzQiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzgwODMyIiwiYiI6IjE1MjM4MDgzNCIsImhlYWRpbmciOi0xNDIuNzgxNDc4MTMzNjIzNCwiZGlzdCI6MTEuMTM3fSwiMTUzNzY4NTYtMTUyMzkzNDcwXzQ0MzEyOTQxMSI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ3MF80NDMxMjk0MTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDcwIiwiYiI6IjQ0MzEyOTQxMSIsImhlYWRpbmciOjE3LjA4ODkyNDkxNzE1NTI5MywiZGlzdCI6NTUuNjY5fSwiMTUzNzY4NTYtNDQzMTI5NDExXzE1MjM5MzQ3MCI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzEyOTQxMV8xNTIzOTM0NzAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTI5NDExIiwiYiI6IjE1MjM5MzQ3MCIsImhlYWRpbmciOjE5Ny4wODg5MjQ5MTcxNTUyOCwiZGlzdCI6NTUuNjY5fSwiMTUzNzY4NTYtNDQzMTI5NDExXzE1MjM5MzQ3NSI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzEyOTQxMV8xNTIzOTM0NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTI5NDExIiwiYiI6IjE1MjM5MzQ3NSIsImhlYWRpbmciOjE3Ljc4NTkwNDgwNDc4OTAxNiwiZGlzdCI6NTMuNTU0fSwiMTUzNzY4NTYtMTUyMzkzNDc1XzQ0MzEyOTQxMSI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ3NV80NDMxMjk0MTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDc1IiwiYiI6IjQ0MzEyOTQxMSIsImhlYWRpbmciOjE5Ny43ODU5MDQ4MDQ3ODkwMywiZGlzdCI6NTMuNTU0fSwiMTUzNzY4NTYtMTUyMzkzNDc1XzE1MjM5MzQ3OSI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ3NV8xNTIzOTM0NzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDc1IiwiYiI6IjE1MjM5MzQ3OSIsImhlYWRpbmciOjE1LjQ4NDIyMTczNzIyNTc0NywiZGlzdCI6MTA4LjEzfSwiMTUzNzY4NTYtMTUyMzkzNDc5XzE1MjM5MzQ3NSI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ3OV8xNTIzOTM0NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDc5IiwiYiI6IjE1MjM5MzQ3NSIsImhlYWRpbmciOjE5NS40ODQyMjE3MzcyMjU3NCwiZGlzdCI6MTA4LjEzfSwiMTUzNzY4NTYtMTUyMzkzNDc5XzQ0MzEyOTQxMiI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ3OV80NDMxMjk0MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDc5IiwiYiI6IjQ0MzEyOTQxMiIsImhlYWRpbmciOjE3LjY4NTU3MzkxNTg0NzcsImRpc3QiOjU3LjAxNX0sIjE1Mzc2ODU2LTQ0MzEyOTQxMl8xNTIzOTM0NzkiOnsiaWQiOiIxNTM3Njg1Ni00NDMxMjk0MTJfMTUyMzkzNDc5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzEyOTQxMiIsImIiOiIxNTIzOTM0NzkiLCJoZWFkaW5nIjoxOTcuNjg1NTczOTE1ODQ3NywiZGlzdCI6NTcuMDE1fSwiMTUzNzY4NTYtNDQzMTI5NDEyXzE1MjM5MzQ4MSI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzEyOTQxMl8xNTIzOTM0ODEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTI5NDEyIiwiYiI6IjE1MjM5MzQ4MSIsImhlYWRpbmciOjE5LjE0NzI2MTYzMjA2MDgzMiwiZGlzdCI6NTIuODA3fSwiMTUzNzY4NTYtMTUyMzkzNDgxXzQ0MzEyOTQxMiI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ4MV80NDMxMjk0MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDgxIiwiYiI6IjQ0MzEyOTQxMiIsImhlYWRpbmciOjE5OS4xNDcyNjE2MzIwNjA4MywiZGlzdCI6NTIuODA3fSwiMTUzNzY4NTYtMTUyMzkzNDgxXzQ0MzE4MjMzOSI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ4MV80NDMxODIzMzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDgxIiwiYiI6IjQ0MzE4MjMzOSIsImhlYWRpbmciOjIwLjc5NDQ1NzA3MDY4NDMwNiwiZGlzdCI6NTYuOTE5fSwiMTUzNzY4NTYtNDQzMTgyMzM5XzE1MjM5MzQ4MSI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzE4MjMzOV8xNTIzOTM0ODEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzM5IiwiYiI6IjE1MjM5MzQ4MSIsImhlYWRpbmciOjIwMC43OTQ0NTcwNzA2ODQzLCJkaXN0Ijo1Ni45MTl9LCIxNTM3Njg1Ni00NDMxODIzMzlfMTUyMzkzNDgyIjp7ImlkIjoiMTUzNzY4NTYtNDQzMTgyMzM5XzE1MjM5MzQ4MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzMzkiLCJiIjoiMTUyMzkzNDgyIiwiaGVhZGluZyI6MTguMTU0OTc5MTMzMzUwNjIyLCJkaXN0Ijo1Mi40OTl9LCIxNTM3Njg1Ni0xNTIzOTM0ODJfNDQzMTgyMzM5Ijp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDgyXzQ0MzE4MjMzOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODIiLCJiIjoiNDQzMTgyMzM5IiwiaGVhZGluZyI6MTk4LjE1NDk3OTEzMzM1MDYyLCJkaXN0Ijo1Mi40OTl9LCIxNTM3Njg1Ni0xNTIzOTM0ODJfNDQzMTgyMzQwIjp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDgyXzQ0MzE4MjM0MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODIiLCJiIjoiNDQzMTgyMzQwIiwiaGVhZGluZyI6MTguNjAxNzYzNTU5ODg1Mzg0LCJkaXN0Ijo1Ny4zMTR9LCIxNTM3Njg1Ni00NDMxODIzNDBfMTUyMzkzNDgyIjp7ImlkIjoiMTUzNzY4NTYtNDQzMTgyMzQwXzE1MjM5MzQ4MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDAiLCJiIjoiMTUyMzkzNDgyIiwiaGVhZGluZyI6MTk4LjYwMTc2MzU1OTg4NTQsImRpc3QiOjU3LjMxNH0sIjE1Mzc2ODU2LTQ0MzE4MjM0MF8xNTIzOTM0ODMiOnsiaWQiOiIxNTM3Njg1Ni00NDMxODIzNDBfMTUyMzkzNDgzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0MCIsImIiOiIxNTIzOTM0ODMiLCJoZWFkaW5nIjoxNy43ODUyNjAxNjIyNzk3LCJkaXN0Ijo1My41NTR9LCIxNTM3Njg1Ni0xNTIzOTM0ODNfNDQzMTgyMzQwIjp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDgzXzQ0MzE4MjM0MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODMiLCJiIjoiNDQzMTgyMzQwIiwiaGVhZGluZyI6MTk3Ljc4NTI2MDE2MjI3OTcsImRpc3QiOjUzLjU1NH0sIjE1Mzc2ODU2LTE1MjM5MzQ4M180NDMxODIzNDEiOnsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODNfNDQzMTgyMzQxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4MyIsImIiOiI0NDMxODIzNDEiLCJoZWFkaW5nIjoxNy40Mjk5MTQyNTk1MzE3OSwiZGlzdCI6NTQuNjF9LCIxNTM3Njg1Ni00NDMxODIzNDFfMTUyMzkzNDgzIjp7ImlkIjoiMTUzNzY4NTYtNDQzMTgyMzQxXzE1MjM5MzQ4MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDEiLCJiIjoiMTUyMzkzNDgzIiwiaGVhZGluZyI6MTk3LjQyOTkxNDI1OTUzMTc4LCJkaXN0Ijo1NC42MX0sIjE1Mzc2ODU2LTQ0MzE4MjM0MV8xNTIzOTM0ODUiOnsiaWQiOiIxNTM3Njg1Ni00NDMxODIzNDFfMTUyMzkzNDg1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0MSIsImIiOiIxNTIzOTM0ODUiLCJoZWFkaW5nIjoxNi40ODM3NDY5MTAyNjA5MjYsImRpc3QiOjUwLjg2OH0sIjE1Mzc2ODU2LTE1MjM5MzQ4NV80NDMxODIzNDEiOnsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODVfNDQzMTgyMzQxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NSIsImIiOiI0NDMxODIzNDEiLCJoZWFkaW5nIjoxOTYuNDgzNzQ2OTEwMjYwOTIsImRpc3QiOjUwLjg2OH0sIjE1Mzc2ODU2LTE1MjM5MzQ4NV80NDMxODIzNDIiOnsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM0ODVfNDQzMTgyMzQyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NSIsImIiOiI0NDMxODIzNDIiLCJoZWFkaW5nIjoxNy43ODUwMjUyNTc3MDI0NSwiZGlzdCI6NTMuNTU0fSwiMTUzNzY4NTYtNDQzMTgyMzQyXzE1MjM5MzQ4NSI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzE4MjM0Ml8xNTIzOTM0ODUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQyIiwiYiI6IjE1MjM5MzQ4NSIsImhlYWRpbmciOjE5Ny43ODUwMjUyNTc3MDI0NCwiZGlzdCI6NTMuNTU0fSwiMTUzNzY4NTYtNDQzMTgyMzQyXzE1MjM5MzQ4NyI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzE4MjM0Ml8xNTIzOTM0ODciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQyIiwiYiI6IjE1MjM5MzQ4NyIsImhlYWRpbmciOjE3LjM1MjU5MTEyNzI3ODQ2LCJkaXN0Ijo1OC4wNzJ9LCIxNTM3Njg1Ni0xNTIzOTM0ODdfNDQzMTgyMzQyIjp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDg3XzQ0MzE4MjM0MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODciLCJiIjoiNDQzMTgyMzQyIiwiaGVhZGluZyI6MTk3LjM1MjU5MTEyNzI3ODQ2LCJkaXN0Ijo1OC4wNzJ9LCIxNTM3Njg1Ni0xNTIzOTM0ODdfNDQzMTgyMzQzIjp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDg3XzQ0MzE4MjM0MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODciLCJiIjoiNDQzMTgyMzQzIiwiaGVhZGluZyI6MTguMTU0NDA4Mzg2MzM4NywiZGlzdCI6NTIuNDk5fSwiMTUzNzY4NTYtNDQzMTgyMzQzXzE1MjM5MzQ4NyI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzE4MjM0M18xNTIzOTM0ODciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQzIiwiYiI6IjE1MjM5MzQ4NyIsImhlYWRpbmciOjE5OC4xNTQ0MDgzODYzMzg3LCJkaXN0Ijo1Mi40OTl9LCIxNTM3Njg1Ni00NDMxODIzNDNfMTUyMzkzNDg5Ijp7ImlkIjoiMTUzNzY4NTYtNDQzMTgyMzQzXzE1MjM5MzQ4OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDMiLCJiIjoiMTUyMzkzNDg5IiwiaGVhZGluZyI6MTcuNjg0Njk2OTI0MDg4NDg4LCJkaXN0Ijo1Ny4wMTR9LCIxNTM3Njg1Ni0xNTIzOTM0ODlfNDQzMTgyMzQzIjp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDg5XzQ0MzE4MjM0MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODkiLCJiIjoiNDQzMTgyMzQzIiwiaGVhZGluZyI6MTk3LjY4NDY5NjkyNDA4ODQ4LCJkaXN0Ijo1Ny4wMTR9LCIxNTM3Njg1Ni0xNTIzOTM0ODlfMTUyMzkzNDkyIjp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDg5XzE1MjM5MzQ5MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODkiLCJiIjoiMTUyMzkzNDkyIiwiaGVhZGluZyI6MTcuMjkzMTYwOTkzOTQzMTY4LCJkaXN0IjoxMDYuODE3fSwiMTUzNzY4NTYtMTUyMzkzNDkyXzE1MjM5MzQ4OSI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ5Ml8xNTIzOTM0ODkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDkyIiwiYiI6IjE1MjM5MzQ4OSIsImhlYWRpbmciOjE5Ny4yOTMxNjA5OTM5NDMxNiwiZGlzdCI6MTA2LjgxN30sIjE1Mzc2ODU2LTE1MjM5MzQ5Ml80NDMyMTQ2MzYiOnsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM0OTJfNDQzMjE0NjM2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ5MiIsImIiOiI0NDMyMTQ2MzYiLCJoZWFkaW5nIjoxOC41MjA5MDgzMjg2ODQxMjIsImRpc3QiOjY2LjY0fSwiMTUzNzY4NTYtNDQzMjE0NjM2XzE1MjM5MzQ5MiI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzIxNDYzNl8xNTIzOTM0OTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjM2IiwiYiI6IjE1MjM5MzQ5MiIsImhlYWRpbmciOjE5OC41MjA5MDgzMjg2ODQxMywiZGlzdCI6NjYuNjR9LCIxNTM3Njg1Ni00NDMyMTQ2MzZfMTYyNjU1OTM0NyI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzIxNDYzNl8xNjI2NTU5MzQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYzNiIsImIiOiIxNjI2NTU5MzQ3IiwiaGVhZGluZyI6MTcuMjgzNjgxMzQyMjI5MzksImRpc3QiOjYxLjUzM30sIjE1Mzc2ODU2LTE2MjY1NTkzNDdfNDQzMjE0NjM2Ijp7ImlkIjoiMTUzNzY4NTYtMTYyNjU1OTM0N180NDMyMTQ2MzYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1OTM0NyIsImIiOiI0NDMyMTQ2MzYiLCJoZWFkaW5nIjoxOTcuMjgzNjgxMzQyMjI5NCwiZGlzdCI6NjEuNTMzfSwiMTUzNzY4NTYtMTYyNjU1OTM0N18xNTIzOTM0OTYiOnsiaWQiOiIxNTM3Njg1Ni0xNjI2NTU5MzQ3XzE1MjM5MzQ5NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU5MzQ3IiwiYiI6IjE1MjM5MzQ5NiIsImhlYWRpbmciOjE5LjE0NjAyMTAwNTcxNjA2LCJkaXN0IjoxMS43MzV9LCIxNTM3Njg1Ni0xNTIzOTM0OTZfMTYyNjU1OTM0NyI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzQ5Nl8xNjI2NTU5MzQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ5NiIsImIiOiIxNjI2NTU5MzQ3IiwiaGVhZGluZyI6MTk5LjE0NjAyMTAwNTcxNjA1LCJkaXN0IjoxMS43MzV9LCIxNTM3Njg1Ni0xNTIzOTM0OTZfNDQzMjE0NjM3Ijp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNDk2XzQ0MzIxNDYzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0OTYiLCJiIjoiNDQzMjE0NjM3IiwiaGVhZGluZyI6MTguODI4MzA0OTUxMTkzMDkzLCJkaXN0Ijo2NS41OX0sIjE1Mzc2ODU2LTQ0MzIxNDYzN18xNTIzOTM0OTYiOnsiaWQiOiIxNTM3Njg1Ni00NDMyMTQ2MzdfMTUyMzkzNDk2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYzNyIsImIiOiIxNTIzOTM0OTYiLCJoZWFkaW5nIjoxOTguODI4MzA0OTUxMTkzMSwiZGlzdCI6NjUuNTl9LCIxNTM3Njg1Ni00NDMyMTQ2MzdfMTUyMzkzNTAwIjp7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjM3XzE1MjM5MzUwMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MzciLCJiIjoiMTUyMzkzNTAwIiwiaGVhZGluZyI6MTYuOTgxOTkyMDcwNDM3MzM2LCJkaXN0Ijo2Mi41OTJ9LCIxNTM3Njg1Ni0xNTIzOTM1MDBfNDQzMjE0NjM3Ijp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNTAwXzQ0MzIxNDYzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDAiLCJiIjoiNDQzMjE0NjM3IiwiaGVhZGluZyI6MTk2Ljk4MTk5MjA3MDQzNzM0LCJkaXN0Ijo2Mi41OTJ9LCIxNTM3Njg1Ni0xNTIzOTM1MDBfNDQzMjE0NjM4Ijp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNTAwXzQ0MzIxNDYzOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDAiLCJiIjoiNDQzMjE0NjM4IiwiaGVhZGluZyI6MTguMzg2ODk3MTU5NTQ5NTM3LCJkaXN0Ijo1NC45MDZ9LCIxNTM3Njg1Ni00NDMyMTQ2MzhfMTUyMzkzNTAwIjp7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjM4XzE1MjM5MzUwMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MzgiLCJiIjoiMTUyMzkzNTAwIiwiaGVhZGluZyI6MTk4LjM4Njg5NzE1OTU0OTUzLCJkaXN0Ijo1NC45MDZ9LCIxNTM3Njg1Ni00NDMyMTQ2MzhfMTUyMzkzNTA3Ijp7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjM4XzE1MjM5MzUwNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MzgiLCJiIjoiMTUyMzkzNTA3IiwiaGVhZGluZyI6MTYuNzU4MDg4NjEwMjk5NTc3LCJkaXN0Ijo1Ni43Mjl9LCIxNTM3Njg1Ni0xNTIzOTM1MDdfNDQzMjE0NjM4Ijp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNTA3XzQ0MzIxNDYzOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDciLCJiIjoiNDQzMjE0NjM4IiwiaGVhZGluZyI6MTk2Ljc1ODA4ODYxMDI5OTU4LCJkaXN0Ijo1Ni43Mjl9LCIxNTM3Njg1Ni0xNTIzOTM1MDdfNDQzMjE0NjM5Ijp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNTA3XzQ0MzIxNDYzOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDciLCJiIjoiNDQzMjE0NjM5IiwiaGVhZGluZyI6MTguMzg2NzI3NzE1OTM4NjgzLCJkaXN0Ijo1NC45MDZ9LCIxNTM3Njg1Ni00NDMyMTQ2MzlfMTUyMzkzNTA3Ijp7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjM5XzE1MjM5MzUwNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MzkiLCJiIjoiMTUyMzkzNTA3IiwiaGVhZGluZyI6MTk4LjM4NjcyNzcxNTkzODcsImRpc3QiOjU0LjkwNn0sIjE1Mzc2ODU2LTQ0MzIxNDYzOV8xNjI2NTU1ODI4Ijp7ImlkIjoiMTUzNzY4NTYtNDQzMjE0NjM5XzE2MjY1NTU4MjgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjM5IiwiYiI6IjE2MjY1NTU4MjgiLCJoZWFkaW5nIjoxNi44NDQ0NjA4NzQ4MDk4ODMsImRpc3QiOjQ5LjgwNX0sIjE1Mzc2ODU2LTE2MjY1NTU4MjhfNDQzMjE0NjM5Ijp7ImlkIjoiMTUzNzY4NTYtMTYyNjU1NTgyOF80NDMyMTQ2MzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1NTgyOCIsImIiOiI0NDMyMTQ2MzkiLCJoZWFkaW5nIjoxOTYuODQ0NDYwODc0ODA5OSwiZGlzdCI6NDkuODA1fSwiMTUzNzY4NTYtMTYyNjU1NTgyOF8xNTIzOTM1MTUiOnsiaWQiOiIxNTM3Njg1Ni0xNjI2NTU1ODI4XzE1MjM5MzUxNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU1ODI4IiwiYiI6IjE1MjM5MzUxNSIsImhlYWRpbmciOjIxLjUyOTc4OTQxNDgyOTk1NiwiZGlzdCI6MTMuMTA5fSwiMTUzNzY4NTYtMTUyMzkzNTE1XzE2MjY1NTU4MjgiOnsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM1MTVfMTYyNjU1NTgyOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MTUiLCJiIjoiMTYyNjU1NTgyOCIsImhlYWRpbmciOjIwMS41Mjk3ODk0MTQ4Mjk5NiwiZGlzdCI6MTMuMTA5fSwiMTUzNzY4NTYtMTUyMzkzNTE1XzE1MjM5MzUxOCI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUxNV8xNTIzOTM1MTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTE1IiwiYiI6IjE1MjM5MzUxOCIsImhlYWRpbmciOjE3LjgzODc4Mjc1NTE2MDc3NSwiZGlzdCI6MTAzLjY0Nn0sIjE1Mzc2ODU2LTE1MjM5MzUxOF8xNTIzOTM1MTUiOnsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM1MThfMTUyMzkzNTE1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUxOCIsImIiOiIxNTIzOTM1MTUiLCJoZWFkaW5nIjoxOTcuODM4NzgyNzU1MTYwNzYsImRpc3QiOjEwMy42NDZ9LCIxNTM3Njg1Ni0xNTIzOTM1MThfMTUyMzkzNTIxIjp7ImlkIjoiMTUzNzY4NTYtMTUyMzkzNTE4XzE1MjM5MzUyMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MTgiLCJiIjoiMTUyMzkzNTIxIiwiaGVhZGluZyI6MTguMTUzMTAwNzcxMzcxMTM2LCJkaXN0IjoxMDQuOTk4fSwiMTUzNzY4NTYtMTUyMzkzNTIxXzE1MjM5MzUxOCI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUyMV8xNTIzOTM1MTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTIxIiwiYiI6IjE1MjM5MzUxOCIsImhlYWRpbmciOjE5OC4xNTMxMDA3NzEzNzExMywiZGlzdCI6MTA0Ljk5OH0sIjE1Mzc2ODU2LTE1MjM5MzUyMV80NDMyMTQ2NDAiOnsiaWQiOiIxNTM3Njg1Ni0xNTIzOTM1MjFfNDQzMjE0NjQwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUyMSIsImIiOiI0NDMyMTQ2NDAiLCJoZWFkaW5nIjoxNy42MTYwMDU5Mzg1NzQ2NiwiZGlzdCI6NDcuNjg4fSwiMTUzNzY4NTYtNDQzMjE0NjQwXzE1MjM5MzUyMSI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzIxNDY0MF8xNTIzOTM1MjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjQwIiwiYiI6IjE1MjM5MzUyMSIsImhlYWRpbmciOjE5Ny42MTYwMDU5Mzg1NzQ2NiwiZGlzdCI6NDcuNjg4fSwiMTUzNzY4NTYtNDQzMjE0NjQwXzE1MjM5MzUyNCI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzIxNDY0MF8xNTIzOTM1MjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjQwIiwiYiI6IjE1MjM5MzUyNCIsImhlYWRpbmciOjE4LjE1Mjk1NDE5Nzg4MzMxOCwiZGlzdCI6NTIuNDk5fSwiMTUzNzY4NTYtMTUyMzkzNTI0XzQ0MzIxNDY0MCI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUyNF80NDMyMTQ2NDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTI0IiwiYiI6IjQ0MzIxNDY0MCIsImhlYWRpbmciOjE5OC4xNTI5NTQxOTc4ODMzMywiZGlzdCI6NTIuNDk5fSwiMTUzNzY4NTYtMTUyMzkzNTI0XzQ0MzIxNDY0MSI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUyNF80NDMyMTQ2NDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTI0IiwiYiI6IjQ0MzIxNDY0MSIsImhlYWRpbmciOjE4Ljk1OTc2ODEzMjY0NTAxNywiZGlzdCI6NTYuMjY0fSwiMTUzNzY4NTYtNDQzMjE0NjQxXzE1MjM5MzUyNCI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzIxNDY0MV8xNTIzOTM1MjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjQxIiwiYiI6IjE1MjM5MzUyNCIsImhlYWRpbmciOjE5OC45NTk3NjgxMzI2NDUwMiwiZGlzdCI6NTYuMjY0fSwiMTUzNzY4NTYtNDQzMjE0NjQxXzE1MjM5MzUyOCI6eyJpZCI6IjE1Mzc2ODU2LTQ0MzIxNDY0MV8xNTIzOTM1MjgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjQxIiwiYiI6IjE1MjM5MzUyOCIsImhlYWRpbmciOjE4LjEzMzk0OTI2NzA1ODU4MywiZGlzdCI6NjEuODI1fSwiMTUzNzY4NTYtMTUyMzkzNTI4XzQ0MzIxNDY0MSI6eyJpZCI6IjE1Mzc2ODU2LTE1MjM5MzUyOF80NDMyMTQ2NDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTI4IiwiYiI6IjQ0MzIxNDY0MSIsImhlYWRpbmciOjE5OC4xMzM5NDkyNjcwNTg2LCJkaXN0Ijo2MS44MjV9LCIxNTM3NzMwOS0xNTIzOTgyMTRfNDQzMTg1MTM5Ijp7ImlkIjoiMTUzNzczMDktMTUyMzk4MjE0XzQ0MzE4NTEzOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMTQiLCJiIjoiNDQzMTg1MTM5IiwiaGVhZGluZyI6LTcyLjAyMDE1NjY5OTQ3ODA4LCJkaXN0Ijo3MS44Mjd9LCIxNTM3NzMwOS00NDMxODUxMzlfMTUyMzk4MjE3Ijp7ImlkIjoiMTUzNzczMDktNDQzMTg1MTM5XzE1MjM5ODIxNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODUxMzkiLCJiIjoiMTUyMzk4MjE3IiwiaGVhZGluZyI6LTcyLjY0OTY0MjEyMDg2OTU5LCJkaXN0Ijo1OS40Nzh9LCIxNTM4MTk3My0xNTI0NDI0MTJfMjQ4MTkzMDY3NiI6eyJpZCI6IjE1MzgxOTczLTE1MjQ0MjQxMl8yNDgxOTMwNjc2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0MjQxMiIsImIiOiIyNDgxOTMwNjc2IiwiaGVhZGluZyI6LTcyLjM5OTgwOTA0MTk4NTM1LCJkaXN0Ijo2OS42NTl9LCIxNTM4MTk3My0yNDgxOTMwNjc2XzE1MjQ0MjQxMiI6eyJpZCI6IjE1MzgxOTczLTI0ODE5MzA2NzZfMTUyNDQyNDEyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI0ODE5MzA2NzYiLCJiIjoiMTUyNDQyNDEyIiwiaGVhZGluZyI6MTA3LjYwMDE5MDk1ODAxNDY1LCJkaXN0Ijo2OS42NTl9LCIxNTM4MTk3My0yNDgxOTMwNjc2XzE1MjQ0MjQxNCI6eyJpZCI6IjE1MzgxOTczLTI0ODE5MzA2NzZfMTUyNDQyNDE0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI0ODE5MzA2NzYiLCJiIjoiMTUyNDQyNDE0IiwiaGVhZGluZyI6LTcyLjczMTQ5Nzg2NTQyNzQ3LCJkaXN0Ijo2My40ODZ9LCIxNTM4MTk3My0xNTI0NDI0MTRfMjQ4MTkzMDY3NiI6eyJpZCI6IjE1MzgxOTczLTE1MjQ0MjQxNF8yNDgxOTMwNjc2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0MjQxNCIsImIiOiIyNDgxOTMwNjc2IiwiaGVhZGluZyI6MTA3LjI2ODUwMjEzNDU3MjUzLCJkaXN0Ijo2My40ODZ9LCIxNTM4MTk3My0xNTI0NDI0MTRfMTUyNDQyNDIwIjp7ImlkIjoiMTUzODE5NzMtMTUyNDQyNDE0XzE1MjQ0MjQyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MTQiLCJiIjoiMTUyNDQyNDIwIiwiaGVhZGluZyI6LTcxLjU0Mjc3NDYxNjQ2NDA3LCJkaXN0IjoxMDguNTQ5fSwiMTUzODE5NzMtMTUyNDQyNDIwXzE1MjQ0MjQxNCI6eyJpZCI6IjE1MzgxOTczLTE1MjQ0MjQyMF8xNTI0NDI0MTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQyNDIwIiwiYiI6IjE1MjQ0MjQxNCIsImhlYWRpbmciOjEwOC40NTcyMjUzODM1MzU5MywiZGlzdCI6MTA4LjU0OX0sIjE1MzgxOTczLTE1MjQ0MjQyMF8xNTI0NDI0MjIiOnsiaWQiOiIxNTM4MTk3My0xNTI0NDI0MjBfMTUyNDQyNDIyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0MjQyMCIsImIiOiIxNTI0NDI0MjIiLCJoZWFkaW5nIjotNzMuMTA1NTEwNTQ0ODY0NjksImRpc3QiOjExMC42MjZ9LCIxNTM4MTk3My0xNTI0NDI0MjJfMTUyNDQyNDIwIjp7ImlkIjoiMTUzODE5NzMtMTUyNDQyNDIyXzE1MjQ0MjQyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MjIiLCJiIjoiMTUyNDQyNDIwIiwiaGVhZGluZyI6MTA2Ljg5NDQ4OTQ1NTEzNTMxLCJkaXN0IjoxMTAuNjI2fSwiMTUzODE5NzMtMTUyNDQyNDIyXzE1MjQ0MjQyNSI6eyJpZCI6IjE1MzgxOTczLTE1MjQ0MjQyMl8xNTI0NDI0MjUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQyNDIyIiwiYiI6IjE1MjQ0MjQyNSIsImhlYWRpbmciOi03Mi4wMTMyMDI1NTMyNzEyNCwiZGlzdCI6MTExLjI5fSwiMTUzODE5NzMtMTUyNDQyNDI1XzE1MjQ0MjQyMiI6eyJpZCI6IjE1MzgxOTczLTE1MjQ0MjQyNV8xNTI0NDI0MjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQyNDI1IiwiYiI6IjE1MjQ0MjQyMiIsImhlYWRpbmciOjEwNy45ODY3OTc0NDY3Mjg3NiwiZGlzdCI6MTExLjI5fSwiMTUzODI3NjktMTUyNDQ3MzUwXzQ0MzE4NTEzMSI6eyJpZCI6IjE1MzgyNzY5LTE1MjQ0NzM1MF80NDMxODUxMzEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzUwIiwiYiI6IjQ0MzE4NTEzMSIsImhlYWRpbmciOi03Mi4xNTY5NjkwODQzNjcyLCJkaXN0Ijo2OC43NDF9LCIxNTM4Mjc2OS00NDMxODUxMzFfMTUyNDQ3MzUwIjp7ImlkIjoiMTUzODI3NjktNDQzMTg1MTMxXzE1MjQ0NzM1MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODUxMzEiLCJiIjoiMTUyNDQ3MzUwIiwiaGVhZGluZyI6MTA3Ljg0MzAzMDkxNTYzMjgsImRpc3QiOjY4Ljc0MX0sIjE1MzgyNzY5LTQ0MzE4NTEzMV8xNTI0NTE1NDEiOnsiaWQiOiIxNTM4Mjc2OS00NDMxODUxMzFfMTUyNDUxNTQxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTEzMSIsImIiOiIxNTI0NTE1NDEiLCJoZWFkaW5nIjotNzIuOTg1MzA2MjkzNzE2OTcsImRpc3QiOjY0LjQwNX0sIjE1MzgyNzY5LTE1MjQ1MTU0MV80NDMxODUxMzEiOnsiaWQiOiIxNTM4Mjc2OS0xNTI0NTE1NDFfNDQzMTg1MTMxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU0MSIsImIiOiI0NDMxODUxMzEiLCJoZWFkaW5nIjoxMDcuMDE0NjkzNzA2MjgzMDMsImRpc3QiOjY0LjQwNX0sIjE1MzgyNzY5LTE1MjQ1MTU0MV8xNTI0NTE1NDMiOnsiaWQiOiIxNTM4Mjc2OS0xNTI0NTE1NDFfMTUyNDUxNTQzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU0MSIsImIiOiIxNTI0NTE1NDMiLCJoZWFkaW5nIjotNzEuMTUyNzM5MjUyNjEwNzksImRpc3QiOjEwOS44MTN9LCIxNTM4Mjc2OS0xNTI0NTE1NDNfMTUyNDUxNTQxIjp7ImlkIjoiMTUzODI3NjktMTUyNDUxNTQzXzE1MjQ1MTU0MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE1NDMiLCJiIjoiMTUyNDUxNTQxIiwiaGVhZGluZyI6MTA4Ljg0NzI2MDc0NzM4OTIxLCJkaXN0IjoxMDkuODEzfSwiMTUzODI3NjktMTUyNDUxNTQzXzE1MjQ1MTU0NSI6eyJpZCI6IjE1MzgyNzY5LTE1MjQ1MTU0M18xNTI0NTE1NDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNTQzIiwiYiI6IjE1MjQ1MTU0NSIsImhlYWRpbmciOi03Mi4wOTkyMjIxMzAzNTE5LCJkaXN0IjoxMDguMjAxfSwiMTUzODI3NjktMTUyNDUxNTQ1XzE1MjQ1MTU0MyI6eyJpZCI6IjE1MzgyNzY5LTE1MjQ1MTU0NV8xNTI0NTE1NDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNTQ1IiwiYiI6IjE1MjQ1MTU0MyIsImhlYWRpbmciOjEwNy45MDA3Nzc4Njk2NDgxLCJkaXN0IjoxMDguMjAxfSwiMTUzODI3NjktMTUyNDUxNTQ1XzE1MjQ1MTU0NyI6eyJpZCI6IjE1MzgyNzY5LTE1MjQ1MTU0NV8xNTI0NTE1NDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNTQ1IiwiYiI6IjE1MjQ1MTU0NyIsImhlYWRpbmciOi03NC44OTgzMDI1MDY1MDYxNywiZGlzdCI6MTEwLjYzMn0sIjE1MzgyNzY5LTE1MjQ1MTU0N18xNTI0NTE1NDUiOnsiaWQiOiIxNTM4Mjc2OS0xNTI0NTE1NDdfMTUyNDUxNTQ1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU0NyIsImIiOiIxNTI0NTE1NDUiLCJoZWFkaW5nIjoxMDUuMTAxNjk3NDkzNDkzODMsImRpc3QiOjExMC42MzJ9LCIxNTM4Mjc2OS0xNTI0NTE1NDdfMTUyMzkzNDc5Ijp7ImlkIjoiMTUzODI3NjktMTUyNDUxNTQ3XzE1MjM5MzQ3OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE1NDciLCJiIjoiMTUyMzkzNDc5IiwiaGVhZGluZyI6LTcxLjg1ODU3OTI3MjcyMzc2LCJkaXN0IjoxMTAuMzczfSwiMTUzODI3NjktMTUyMzkzNDc5XzE1MjQ1MTU0NyI6eyJpZCI6IjE1MzgyNzY5LTE1MjM5MzQ3OV8xNTI0NTE1NDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDc5IiwiYiI6IjE1MjQ1MTU0NyIsImhlYWRpbmciOjEwOC4xNDE0MjA3MjcyNzYyNCwiZGlzdCI6MTEwLjM3M30sIjE1MzgyNzY5LTE1MjM5MzQ3OV8xNTI0NTE1NTAiOnsiaWQiOiIxNTM4Mjc2OS0xNTIzOTM0NzlfMTUyNDUxNTUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ3OSIsImIiOiIxNTI0NTE1NTAiLCJoZWFkaW5nIjotNjcuNDc0MTQ4MjY3OTQ0ODEsImRpc3QiOjEwNC4xNzR9LCIxNTM4Mjc2OS0xNTI0NTE1NTBfMTUyMzkzNDc5Ijp7ImlkIjoiMTUzODI3NjktMTUyNDUxNTUwXzE1MjM5MzQ3OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE1NTAiLCJiIjoiMTUyMzkzNDc5IiwiaGVhZGluZyI6MTEyLjUyNTg1MTczMjA1NTE5LCJkaXN0IjoxMDQuMTc0fSwiMTUzODI3NzgtMTUyNDQ3MzYxXzE1MjQ1MTYwNiI6eyJpZCI6IjE1MzgyNzc4LTE1MjQ0NzM2MV8xNTI0NTE2MDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzYxIiwiYiI6IjE1MjQ1MTYwNiIsImhlYWRpbmciOjE5LjE0Nzc3Nzg3NzQ0NzkxNSwiZGlzdCI6MTA1LjYxNH0sIjE1MzgyNzc4LTE1MjQ1MTYwNl8xNTI0NDczNjEiOnsiaWQiOiIxNTM4Mjc3OC0xNTI0NTE2MDZfMTUyNDQ3MzYxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYwNiIsImIiOiIxNTI0NDczNjEiLCJoZWFkaW5nIjoxOTkuMTQ3Nzc3ODc3NDQ3OSwiZGlzdCI6MTA1LjYxNH0sIjE1MzgzNDc0LTE1MjQ2MDIyMV80NDMxODUxNDIiOnsiaWQiOiIxNTM4MzQ3NC0xNTI0NjAyMjFfNDQzMTg1MTQyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ2MDIyMSIsImIiOiI0NDMxODUxNDIiLCJoZWFkaW5nIjoxMDguOTc4MTY5MDEzOTMxMDIsImRpc3QiOjY4LjE3Nn0sIjE1MzgzNDc0LTQ0MzE4NTE0Ml8xNTI0NjAyMjMiOnsiaWQiOiIxNTM4MzQ3NC00NDMxODUxNDJfMTUyNDYwMjIzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTE0MiIsImIiOiIxNTI0NjAyMjMiLCJoZWFkaW5nIjoxMDcuNDQyNzIzODEwNDYwMiwiZGlzdCI6NjYuNTY5fSwiMTUzODM0NzQtMTUyNDYwMjIzXzE1MjQ2MDIyNSI6eyJpZCI6IjE1MzgzNDc0LTE1MjQ2MDIyM18xNTI0NjAyMjUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDYwMjIzIiwiYiI6IjE1MjQ2MDIyNSIsImhlYWRpbmciOjEwNy41OTI3NzEwNjcxNTM4NiwiZGlzdCI6MTEwLjAzfSwiMTUzODQ4MzItMTUyNDgwMjA3XzQ0MzE4NTE0MSI6eyJpZCI6IjE1Mzg0ODMyLTE1MjQ4MDIwN180NDMxODUxNDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDgwMjA3IiwiYiI6IjQ0MzE4NTE0MSIsImhlYWRpbmciOi03MS42NTEwMzA2ODg2NDI0MSwiZGlzdCI6NjYuOTA4fSwiMTUzODQ4MzItNDQzMTg1MTQxXzE1MjQ4MDIwOSI6eyJpZCI6IjE1Mzg0ODMyLTQ0MzE4NTE0MV8xNTI0ODAyMDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTQxIiwiYiI6IjE1MjQ4MDIwOSIsImhlYWRpbmciOi03Mi4wNDYxMDM2MDQ1NjU5MywiZGlzdCI6NjQuNzM0fSwiMTUzODUzNzItMTUyNDg2NjAzXzIxNjcxNjEzMTEiOnsiaWQiOiIxNTM4NTM3Mi0xNTI0ODY2MDNfMjE2NzE2MTMxMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDMiLCJiIjoiMjE2NzE2MTMxMSIsImhlYWRpbmciOi03MS43Nzg3OTQ1ODYwMDI2OSwiZGlzdCI6Ny4wOTF9LCIxNTM4NTM3Mi0yMTY3MTYxMzExXzE1MjQ4NjYwMyI6eyJpZCI6IjE1Mzg1MzcyLTIxNjcxNjEzMTFfMTUyNDg2NjAzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjEzMTEiLCJiIjoiMTUyNDg2NjAzIiwiaGVhZGluZyI6MTA4LjIyMTIwNTQxMzk5NzMxLCJkaXN0Ijo3LjA5MX0sIjE1Mzg1MzcyLTIxNjcxNjEzMTFfMTUyNDg2NjA0Ijp7ImlkIjoiMTUzODUzNzItMjE2NzE2MTMxMV8xNTI0ODY2MDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTMxMSIsImIiOiIxNTI0ODY2MDQiLCJoZWFkaW5nIjotNzAuODM4MjQ3MjYzMTgwNzIsImRpc3QiOjEyOC4zNDJ9LCIxNTM4NTM3Mi0xNTI0ODY2MDRfMjE2NzE2MTMxMSI6eyJpZCI6IjE1Mzg1MzcyLTE1MjQ4NjYwNF8yMTY3MTYxMzExIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4NjYwNCIsImIiOiIyMTY3MTYxMzExIiwiaGVhZGluZyI6MTA5LjE2MTc1MjczNjgxOTI4LCJkaXN0IjoxMjguMzQyfSwiMTUzODUzNzItMTUyNDg2NjA0XzE1MjQ4NjYwNiI6eyJpZCI6IjE1Mzg1MzcyLTE1MjQ4NjYwNF8xNTI0ODY2MDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDg2NjA0IiwiYiI6IjE1MjQ4NjYwNiIsImhlYWRpbmciOi03Mi45MjAyMzUxMDcxNzQyNSwiZGlzdCI6MTA1LjY4N30sIjE1Mzg1MzcyLTE1MjQ4NjYwNl8xNTI0ODY2MDQiOnsiaWQiOiIxNTM4NTM3Mi0xNTI0ODY2MDZfMTUyNDg2NjA0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4NjYwNiIsImIiOiIxNTI0ODY2MDQiLCJoZWFkaW5nIjoxMDcuMDc5NzY0ODkyODI1NzUsImRpc3QiOjEwNS42ODd9LCIxNTM4NTM3Mi0xNTI0ODY2MDZfNDQzMjE0NjQ4Ijp7ImlkIjoiMTUzODUzNzItMTUyNDg2NjA2XzQ0MzIxNDY0OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDYiLCJiIjoiNDQzMjE0NjQ4IiwiaGVhZGluZyI6LTcxLjQ2OTY4NzgzOTgxMTQ2LCJkaXN0Ijo1NS44MTJ9LCIxNTM4NTM3Mi00NDMyMTQ2NDhfMTUyNDg2NjA2Ijp7ImlkIjoiMTUzODUzNzItNDQzMjE0NjQ4XzE1MjQ4NjYwNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDgiLCJiIjoiMTUyNDg2NjA2IiwiaGVhZGluZyI6MTA4LjUzMDMxMjE2MDE4ODU0LCJkaXN0Ijo1NS44MTJ9LCIxNTM4NTM3Mi00NDMyMTQ2NDhfMTUyNDU2NjI4Ijp7ImlkIjoiMTUzODUzNzItNDQzMjE0NjQ4XzE1MjQ1NjYyOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDgiLCJiIjoiMTUyNDU2NjI4IiwiaGVhZGluZyI6LTcyLjI1MjQ5OTAwMDAwODM2LCJkaXN0Ijo1NC41NTJ9LCIxNTM4NTM3Mi0xNTI0NTY2MjhfNDQzMjE0NjQ4Ijp7ImlkIjoiMTUzODUzNzItMTUyNDU2NjI4XzQ0MzIxNDY0OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MjgiLCJiIjoiNDQzMjE0NjQ4IiwiaGVhZGluZyI6MTA3Ljc0NzUwMDk5OTk5MTY0LCJkaXN0Ijo1NC41NTJ9LCIxNTM4NjEyOC0xNTI0OTU2MTNfMjE2NzE0NjIyNyI6eyJpZCI6IjE1Mzg2MTI4LTE1MjQ5NTYxM18yMTY3MTQ2MjI3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MTMiLCJiIjoiMjE2NzE0NjIyNyIsImhlYWRpbmciOjEwNi4wNjc3MjkyMjM3Njg4LCJkaXN0IjoyMC4wMjd9LCIxNTM4NjEyOC0yMTY3MTQ2MjI3XzE1MjQ5NTYxMyI6eyJpZCI6IjE1Mzg2MTI4LTIxNjcxNDYyMjdfMTUyNDk1NjEzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTQ2MjI3IiwiYiI6IjE1MjQ5NTYxMyIsImhlYWRpbmciOjI4Ni4wNjc3MjkyMjM3Njg3NywiZGlzdCI6MjAuMDI3fSwiMTUzODYxMjgtMjE2NzE0NjIyN18yODA5MTExMTUiOnsiaWQiOiIxNTM4NjEyOC0yMTY3MTQ2MjI3XzI4MDkxMTExNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE0NjIyNyIsImIiOiIyODA5MTExMTUiLCJoZWFkaW5nIjoxMTEuMDA4NTAyODA4OTM0ODQsImRpc3QiOjYuMTg0fSwiMTUzODYxMjgtMjgwOTExMTE1XzIxNjcxNDYyMjciOnsiaWQiOiIxNTM4NjEyOC0yODA5MTExMTVfMjE2NzE0NjIyNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjgwOTExMTE1IiwiYiI6IjIxNjcxNDYyMjciLCJoZWFkaW5nIjoyOTEuMDA4NTAyODA4OTM0ODUsImRpc3QiOjYuMTg0fSwiMTUzODYxMjgtMjgwOTExMTE1XzE1MjQ5NTYxNSI6eyJpZCI6IjE1Mzg2MTI4LTI4MDkxMTExNV8xNTI0OTU2MTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI4MDkxMTExNSIsImIiOiIxNTI0OTU2MTUiLCJoZWFkaW5nIjoxMDcuOTg3NDY4NzU4MTcyOSwiZGlzdCI6MTExLjI4M30sIjE1Mzg2MTI4LTE1MjQ5NTYxNV8yODA5MTExMTUiOnsiaWQiOiIxNTM4NjEyOC0xNTI0OTU2MTVfMjgwOTExMTE1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MTUiLCJiIjoiMjgwOTExMTE1IiwiaGVhZGluZyI6Mjg3Ljk4NzQ2ODc1ODE3MjksImRpc3QiOjExMS4yODN9LCIxNTM4NjI2NS0xNTI0OTY4OTFfMTQ4MTM2NDMxNiI6eyJpZCI6IjE1Mzg2MjY1LTE1MjQ5Njg5MV8xNDgxMzY0MzE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njg5MSIsImIiOiIxNDgxMzY0MzE2IiwiaGVhZGluZyI6MTA2LjQxOTg0NzIxOTI3OTQsImRpc3QiOjg2LjI3N30sIjE1Mzg2MjY1LTE0ODEzNjQzMTZfMTUyNDk2ODkxIjp7ImlkIjoiMTUzODYyNjUtMTQ4MTM2NDMxNl8xNTI0OTY4OTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTQ4MTM2NDMxNiIsImIiOiIxNTI0OTY4OTEiLCJoZWFkaW5nIjoyODYuNDE5ODQ3MjE5Mjc5NCwiZGlzdCI6ODYuMjc3fSwiMTUzODYyNjUtMTQ4MTM2NDMxNl8xNDgxMzY0MzE1Ijp7ImlkIjoiMTUzODYyNjUtMTQ4MTM2NDMxNl8xNDgxMzY0MzE1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE0ODEzNjQzMTYiLCJiIjoiMTQ4MTM2NDMxNSIsImhlYWRpbmciOjExMi43MjkxMjA3NzI3MDU3LCJkaXN0IjoxMS40Nzd9LCIxNTM4NjI2NS0xNDgxMzY0MzE1XzE0ODEzNjQzMTYiOnsiaWQiOiIxNTM4NjI2NS0xNDgxMzY0MzE1XzE0ODEzNjQzMTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTQ4MTM2NDMxNSIsImIiOiIxNDgxMzY0MzE2IiwiaGVhZGluZyI6MjkyLjcyOTEyMDc3MjcwNTcsImRpc3QiOjExLjQ3N30sIjE1Mzg2MjY1LTE0ODEzNjQzMTVfMTUyNDk2ODk0Ijp7ImlkIjoiMTUzODYyNjUtMTQ4MTM2NDMxNV8xNTI0OTY4OTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTQ4MTM2NDMxNSIsImIiOiIxNTI0OTY4OTQiLCJoZWFkaW5nIjo4OS45OTk5ODk5MjIzOTYzNywiZGlzdCI6My44NDl9LCIxNTM4NjI2NS0xNTI0OTY4OTRfMTQ4MTM2NDMxNSI6eyJpZCI6IjE1Mzg2MjY1LTE1MjQ5Njg5NF8xNDgxMzY0MzE1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njg5NCIsImIiOiIxNDgxMzY0MzE1IiwiaGVhZGluZyI6MjY5Ljk5OTk4OTkyMjM5NjM3LCJkaXN0IjozLjg0OX0sIjE1Mzg2ODQ2LTE1MjUwMjM3Ml8yMTY3MTYxMTY5Ijp7ImlkIjoiMTUzODY4NDYtMTUyNTAyMzcyXzIxNjcxNjExNjkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyMzcyIiwiYiI6IjIxNjcxNjExNjkiLCJoZWFkaW5nIjoxMTIuNzMyNTIwMjA0MTkwMTUsImRpc3QiOjExLjQ3NX0sIjE1Mzg2ODQ2LTIxNjcxNjExNjlfMTUyNTAyMzcyIjp7ImlkIjoiMTUzODY4NDYtMjE2NzE2MTE2OV8xNTI1MDIzNzIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTE2OSIsImIiOiIxNTI1MDIzNzIiLCJoZWFkaW5nIjoyOTIuNzMyNTIwMjA0MTkwMTcsImRpc3QiOjExLjQ3NX0sIjE1Mzg2ODQ2LTIxNjcxNjExNjlfMTUyNTAyMzc1Ijp7ImlkIjoiMTUzODY4NDYtMjE2NzE2MTE2OV8xNTI1MDIzNzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTE2OSIsImIiOiIxNTI1MDIzNzUiLCJoZWFkaW5nIjoxMDguMTUxNzg4NzMyNjg4OSwiZGlzdCI6MTI0LjU0Mn0sIjE1Mzg2ODQ2LTE1MjUwMjM3NV8yMTY3MTYxMTY5Ijp7ImlkIjoiMTUzODY4NDYtMTUyNTAyMzc1XzIxNjcxNjExNjkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyMzc1IiwiYiI6IjIxNjcxNjExNjkiLCJoZWFkaW5nIjoyODguMTUxNzg4NzMyNjg4OSwiZGlzdCI6MTI0LjU0Mn0sIjE1Mzg2ODQ2LTE1MjUwMjM3NV8xNTI1MDIzNzciOnsiaWQiOiIxNTM4Njg0Ni0xNTI1MDIzNzVfMTUyNTAyMzc3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMjM3NSIsImIiOiIxNTI1MDIzNzciLCJoZWFkaW5nIjoxMDcuOTAyMzE2NDQ2OTI4MDcsImRpc3QiOjEwOC4xODl9LCIxNTM4Njg0Ni0xNTI1MDIzNzdfMTUyNTAyMzc1Ijp7ImlkIjoiMTUzODY4NDYtMTUyNTAyMzc3XzE1MjUwMjM3NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDIzNzciLCJiIjoiMTUyNTAyMzc1IiwiaGVhZGluZyI6Mjg3LjkwMjMxNjQ0NjkyODA3LCJkaXN0IjoxMDguMTg5fSwiMTUzODY4NDYtMTUyNTAyMzc3XzE1MjUwMjM3OSI6eyJpZCI6IjE1Mzg2ODQ2LTE1MjUwMjM3N18xNTI1MDIzNzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyMzc3IiwiYiI6IjE1MjUwMjM3OSIsImhlYWRpbmciOjEwOC4xNDI4MjE1NzgxMTExMiwiZGlzdCI6MTEwLjM2Mn0sIjE1Mzg2ODQ2LTE1MjUwMjM3OV8xNTI1MDIzNzciOnsiaWQiOiIxNTM4Njg0Ni0xNTI1MDIzNzlfMTUyNTAyMzc3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMjM3OSIsImIiOiIxNTI1MDIzNzciLCJoZWFkaW5nIjoyODguMTQyODIxNTc4MTExMSwiZGlzdCI6MTEwLjM2Mn0sIjE1Mzg2OTIxLTE1MjQwMDI2MV8yMTY3MTYxMjI2Ijp7ImlkIjoiMTUzODY5MjEtMTUyNDAwMjYxXzIxNjcxNjEyMjYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMDI2MSIsImIiOiIyMTY3MTYxMjI2IiwiaGVhZGluZyI6LTczLjkzMDk0NDg4OTQzOTg5LCJkaXN0IjoxMi4wMTV9LCIxNTM4NjkyMS0yMTY3MTYxMjI2XzE1MjQwMDI2MSI6eyJpZCI6IjE1Mzg2OTIxLTIxNjcxNjEyMjZfMTUyNDAwMjYxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjI2IiwiYiI6IjE1MjQwMDI2MSIsImhlYWRpbmciOjEwNi4wNjkwNTUxMTA1NjAxMSwiZGlzdCI6MTIuMDE1fSwiMTUzODY5MjEtMjE2NzE2MTIyNl8xNTI1MDI5NjMiOnsiaWQiOiIxNTM4NjkyMS0yMTY3MTYxMjI2XzE1MjUwMjk2MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTIyNiIsImIiOiIxNTI1MDI5NjMiLCJoZWFkaW5nIjotNzEuOTUwMjY1NTc3MzY3MTksImRpc3QiOjEwMC4xODF9LCIxNTM4NjkyMS0xNTI1MDI5NjNfMjE2NzE2MTIyNiI6eyJpZCI6IjE1Mzg2OTIxLTE1MjUwMjk2M18yMTY3MTYxMjI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDI5NjMiLCJiIjoiMjE2NzE2MTIyNiIsImhlYWRpbmciOjEwOC4wNDk3MzQ0MjI2MzI4MSwiZGlzdCI6MTAwLjE4MX0sIjE1Mzg4MTc1LTE1MjUxNjYzOF80NDMxODUxMjYiOnsiaWQiOiIxNTM4ODE3NS0xNTI1MTY2MzhfNDQzMTg1MTI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2MzgiLCJiIjoiNDQzMTg1MTI2IiwiaGVhZGluZyI6MTA2LjkwOTU5ODM1NjY2NDU1LCJkaXN0Ijo3Mi40MTR9LCIxNTM4ODE3NS00NDMxODUxMjZfMTUyNTE2NjQwIjp7ImlkIjoiMTUzODgxNzUtNDQzMTg1MTI2XzE1MjUxNjY0MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg1MTI2IiwiYiI6IjE1MjUxNjY0MCIsImhlYWRpbmciOjEwNy41MzAxNTE3MTAyMDY1NCwiZGlzdCI6NjIuNTY3fSwiMTUzOTE0NjYtMTUyNTQ2MTk1XzQ0MzIxNDYzNSI6eyJpZCI6IjE1MzkxNDY2LTE1MjU0NjE5NV80NDMyMTQ2MzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTQ2MTk1IiwiYiI6IjQ0MzIxNDYzNSIsImhlYWRpbmciOi03NS42Mzg5OTQ2NzIwMTY5OCwiZGlzdCI6OC45Mzl9LCIxNTM5MTQ2Ni00NDMyMTQ2MzVfMTUyNTQ2MTk1Ijp7ImlkIjoiMTUzOTE0NjYtNDQzMjE0NjM1XzE1MjU0NjE5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MzUiLCJiIjoiMTUyNTQ2MTk1IiwiaGVhZGluZyI6MTA0LjM2MTAwNTMyNzk4MzAyLCJkaXN0Ijo4LjkzOX0sIjE1MzkxNDY2LTQ0MzIxNDYzNV8xNTI1MTYyMDQiOnsiaWQiOiIxNTM5MTQ2Ni00NDMyMTQ2MzVfMTUyNTE2MjA0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYzNSIsImIiOiIxNTI1MTYyMDQiLCJoZWFkaW5nIjotNzEuMTUxMjY5NDEwNzk2OTEsImRpc3QiOjU0LjkwMn0sIjE1MzkxNDY2LTE1MjUxNjIwNF80NDMyMTQ2MzUiOnsiaWQiOiIxNTM5MTQ2Ni0xNTI1MTYyMDRfNDQzMjE0NjM1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIwNCIsImIiOiI0NDMyMTQ2MzUiLCJoZWFkaW5nIjoxMDguODQ4NzMwNTg5MjAzMDksImRpc3QiOjU0LjkwMn0sIjE1MzkxNDY2LTE1MjUxNjIwNF8xNTI0NTY2MjAiOnsiaWQiOiIxNTM5MTQ2Ni0xNTI1MTYyMDRfMTUyNDU2NjIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIwNCIsImIiOiIxNTI0NTY2MjAiLCJoZWFkaW5nIjotNzIuNzAzNjc0MzkzNzYyMDksImRpc3QiOjExMS44NjF9LCIxNTM5MTQ2Ni0xNTI0NTY2MjBfMTUyNTE2MjA0Ijp7ImlkIjoiMTUzOTE0NjYtMTUyNDU2NjIwXzE1MjUxNjIwNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MjAiLCJiIjoiMTUyNTE2MjA0IiwiaGVhZGluZyI6MTA3LjI5NjMyNTYwNjIzNzkxLCJkaXN0IjoxMTEuODYxfSwiMTUzOTE0NjYtMTUyNDU2NjIwXzE1MjU0NjE5NiI6eyJpZCI6IjE1MzkxNDY2LTE1MjQ1NjYyMF8xNTI1NDYxOTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjIwIiwiYiI6IjE1MjU0NjE5NiIsImhlYWRpbmciOi03Mi42NTgwNDU1MzU1MzA3MiwiZGlzdCI6MTA3Ljg1Nn0sIjE1MzkxNDY2LTE1MjU0NjE5Nl8xNTI0NTY2MjAiOnsiaWQiOiIxNTM5MTQ2Ni0xNTI1NDYxOTZfMTUyNDU2NjIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU0NjE5NiIsImIiOiIxNTI0NTY2MjAiLCJoZWFkaW5nIjoxMDcuMzQxOTU0NDY0NDY5MjgsImRpc3QiOjEwNy44NTZ9LCIxNTM5MTQ2Ni0xNTI1NDYxOTZfMTUyMzkzNTAwIjp7ImlkIjoiMTUzOTE0NjYtMTUyNTQ2MTk2XzE1MjM5MzUwMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NDYxOTYiLCJiIjoiMTUyMzkzNTAwIiwiaGVhZGluZyI6LTcyLjI1MjkxMTU1MDE0MTksImRpc3QiOjEwOS4xMDd9LCIxNTM5MTQ2Ni0xNTIzOTM1MDBfMTUyNTQ2MTk2Ijp7ImlkIjoiMTUzOTE0NjYtMTUyMzkzNTAwXzE1MjU0NjE5NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDAiLCJiIjoiMTUyNTQ2MTk2IiwiaGVhZGluZyI6MTA3Ljc0NzA4ODQ0OTg1ODEsImRpc3QiOjEwOS4xMDd9LCIxNTM5MTQ2Ni0xNTIzOTM1MDBfMTUyNTQ2MTk4Ijp7ImlkIjoiMTUzOTE0NjYtMTUyMzkzNTAwXzE1MjU0NjE5OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDAiLCJiIjoiMTUyNTQ2MTk4IiwiaGVhZGluZyI6LTcxLjcwMDE0MjgxODkzNjIsImRpc3QiOjEwOS40NX0sIjE1MzkxNDY2LTE1MjU0NjE5OF8xNTIzOTM1MDAiOnsiaWQiOiIxNTM5MTQ2Ni0xNTI1NDYxOThfMTUyMzkzNTAwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU0NjE5OCIsImIiOiIxNTIzOTM1MDAiLCJoZWFkaW5nIjoxMDguMjk5ODU3MTgxMDYzOCwiZGlzdCI6MTA5LjQ1fSwiMTUzOTMzODUtMTUyNDAwMjYxXzIxNjcxNjExNjMiOnsiaWQiOiIxNTM5MzM4NS0xNTI0MDAyNjFfMjE2NzE2MTE2MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAwMjYxIiwiYiI6IjIxNjcxNjExNjMiLCJoZWFkaW5nIjoxMDkuMDY4MTY1NDA5MDEyMjUsImRpc3QiOjEwLjE4fSwiMTUzOTMzODUtMjE2NzE2MTE2M18xNTI0MDAyNjEiOnsiaWQiOiIxNTM5MzM4NS0yMTY3MTYxMTYzXzE1MjQwMDI2MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTE2MyIsImIiOiIxNTI0MDAyNjEiLCJoZWFkaW5nIjoyODkuMDY4MTY1NDA5MDEyMjQsImRpc3QiOjEwLjE4fSwiMTUzOTMzODUtMjE2NzE2MTE2M18xNDIxMTM1MDQxIjp7ImlkIjoiMTUzOTMzODUtMjE2NzE2MTE2M18xNDIxMTM1MDQxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMTYzIiwiYiI6IjE0MjExMzUwNDEiLCJoZWFkaW5nIjoxMDcuMzQyMTM4MTAyNjczMTMsImRpc3QiOjEwNy44NTJ9LCIxNTM5MzM4NS0xNDIxMTM1MDQxXzIxNjcxNjExNjMiOnsiaWQiOiIxNTM5MzM4NS0xNDIxMTM1MDQxXzIxNjcxNjExNjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzUwNDEiLCJiIjoiMjE2NzE2MTE2MyIsImhlYWRpbmciOjI4Ny4zNDIxMzgxMDI2NzMxLCJkaXN0IjoxMDcuODUyfSwiMTUzOTMzODUtMTQyMTEzNTA0MV8xNTI1NjcwOTUiOnsiaWQiOiIxNTM5MzM4NS0xNDIxMTM1MDQxXzE1MjU2NzA5NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNTA0MSIsImIiOiIxNTI1NjcwOTUiLCJoZWFkaW5nIjoxMDYuMDY4OTI4ODMzMDI4MzQsImRpc3QiOjE2LjAyfSwiMTUzOTMzODUtMTUyNTY3MDk1XzE0MjExMzUwNDEiOnsiaWQiOiIxNTM5MzM4NS0xNTI1NjcwOTVfMTQyMTEzNTA0MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MDk1IiwiYiI6IjE0MjExMzUwNDEiLCJoZWFkaW5nIjoyODYuMDY4OTI4ODMzMDI4MzQsImRpc3QiOjE2LjAyfSwiMTUzOTMzODUtMTUyNTY3MDk1XzE0MjExMzUwMjYiOnsiaWQiOiIxNTM5MzM4NS0xNTI1NjcwOTVfMTQyMTEzNTAyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MDk1IiwiYiI6IjE0MjExMzUwMjYiLCJoZWFkaW5nIjoxMDkuNTIwNDYwMjc2NjIwNjIsImRpc3QiOjEzLjI3MX0sIjE1MzkzMzg1LTE0MjExMzUwMjZfMTUyNTY3MDk1Ijp7ImlkIjoiMTUzOTMzODUtMTQyMTEzNTAyNl8xNTI1NjcwOTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzUwMjYiLCJiIjoiMTUyNTY3MDk1IiwiaGVhZGluZyI6Mjg5LjUyMDQ2MDI3NjYyMDYsImRpc3QiOjEzLjI3MX0sIjE1MzkzMzg1LTE0MjExMzUwMjZfMTQyMTEzNDk5NyI6eyJpZCI6IjE1MzkzMzg1LTE0MjExMzUwMjZfMTQyMTEzNDk5NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNTAyNiIsImIiOiIxNDIxMTM0OTk3IiwiaGVhZGluZyI6MTA4LjIyMTIxNTkzNjE5OTI2LCJkaXN0Ijo4NS4wODd9LCIxNTM5MzM4NS0xNDIxMTM0OTk3XzE0MjExMzUwMjYiOnsiaWQiOiIxNTM5MzM4NS0xNDIxMTM0OTk3XzE0MjExMzUwMjYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ5OTciLCJiIjoiMTQyMTEzNTAyNiIsImhlYWRpbmciOjI4OC4yMjEyMTU5MzYxOTkyNiwiZGlzdCI6ODUuMDg3fSwiMTUzOTMzODUtMTQyMTEzNDk5N18xNTI1NjcwOTkiOnsiaWQiOiIxNTM5MzM4NS0xNDIxMTM0OTk3XzE1MjU2NzA5OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDk5NyIsImIiOiIxNTI1NjcwOTkiLCJoZWFkaW5nIjoxMTIuNzMyNjAwMDcxNTYyNjksImRpc3QiOjExLjQ3NX0sIjE1MzkzMzg1LTE1MjU2NzA5OV8xNDIxMTM0OTk3Ijp7ImlkIjoiMTUzOTMzODUtMTUyNTY3MDk5XzE0MjExMzQ5OTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NzA5OSIsImIiOiIxNDIxMTM0OTk3IiwiaGVhZGluZyI6MjkyLjczMjYwMDA3MTU2MjcsImRpc3QiOjExLjQ3NX0sIjE1Mzk0NzQ2LTE1MjUwOTk1NV8yNTI4OTc2NTM0Ijp7ImlkIjoiMTUzOTQ3NDYtMTUyNTA5OTU1XzI1Mjg5NzY1MzQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTA5OTU1IiwiYiI6IjI1Mjg5NzY1MzQiLCJoZWFkaW5nIjoxNi4xMzc3NjQ3ODU0ODMyNSwiZGlzdCI6MTAuMzg2fSwiMTUzOTQ3NDYtMjUyODk3NjUzNF8xNTI1MDk5NTUiOnsiaWQiOiIxNTM5NDc0Ni0yNTI4OTc2NTM0XzE1MjUwOTk1NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNTI4OTc2NTM0IiwiYiI6IjE1MjUwOTk1NSIsImhlYWRpbmciOjE5Ni4xMzc3NjQ3ODU0ODMyNiwiZGlzdCI6MTAuMzg2fSwiMTUzOTQ3NDYtMjUyODk3NjUzNF8xNTI0NDI0MjUiOnsiaWQiOiIxNTM5NDc0Ni0yNTI4OTc2NTM0XzE1MjQ0MjQyNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNTI4OTc2NTM0IiwiYiI6IjE1MjQ0MjQyNSIsImhlYWRpbmciOjE2Ljg3MjA4OTA4MzUxMDg3LCJkaXN0Ijo5Ni4xNX0sIjE1Mzk0NzQ2LTE1MjQ0MjQyNV8yNTI4OTc2NTM0Ijp7ImlkIjoiMTUzOTQ3NDYtMTUyNDQyNDI1XzI1Mjg5NzY1MzQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQyNDI1IiwiYiI6IjI1Mjg5NzY1MzQiLCJoZWFkaW5nIjoxOTYuODcyMDg5MDgzNTEwODcsImRpc3QiOjk2LjE1fSwiMTUzOTQ3NDYtMTUyNDQyNDI1XzQ0MzEyOTQwMyI6eyJpZCI6IjE1Mzk0NzQ2LTE1MjQ0MjQyNV80NDMxMjk0MDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQyNDI1IiwiYiI6IjQ0MzEyOTQwMyIsImhlYWRpbmciOjE4LjAzMDc3MTA2MzI4NzU5NSwiZGlzdCI6NTUuOTU5fSwiMTUzOTQ3NDYtNDQzMTI5NDAzXzE1MjQ0MjQyNSI6eyJpZCI6IjE1Mzk0NzQ2LTQ0MzEyOTQwM18xNTI0NDI0MjUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTI5NDAzIiwiYiI6IjE1MjQ0MjQyNSIsImhlYWRpbmciOjE5OC4wMzA3NzEwNjMyODc2LCJkaXN0Ijo1NS45NTl9LCIxNTM5NDc0Ni00NDMxMjk0MDNfMTUyNTAwNzIyIjp7ImlkIjoiMTUzOTQ3NDYtNDQzMTI5NDAzXzE1MjUwMDcyMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxMjk0MDMiLCJiIjoiMTUyNTAwNzIyIiwiaGVhZGluZyI6MTcuNzg1OTUyODA3MzM4NjksImRpc3QiOjUzLjU1NH0sIjE1Mzk0NzQ2LTE1MjUwMDcyMl80NDMxMjk0MDMiOnsiaWQiOiIxNTM5NDc0Ni0xNTI1MDA3MjJfNDQzMTI5NDAzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcyMiIsImIiOiI0NDMxMjk0MDMiLCJoZWFkaW5nIjoxOTcuNzg1OTUyODA3MzM4NjcsImRpc3QiOjUzLjU1NH0sIjE1Mzk2MjUwLTE1MjYwMTAyNV8yMTY3MTYxMTg5Ijp7ImlkIjoiMTUzOTYyNTAtMTUyNjAxMDI1XzIxNjcxNjExODkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjAxMDI1IiwiYiI6IjIxNjcxNjExODkiLCJoZWFkaW5nIjotNjguOTkwNDI1NjgzNTYwNjYsImRpc3QiOjEyLjM2OH0sIjE1Mzk2MjUwLTIxNjcxNjExODlfMTUyNjAxMDI1Ijp7ImlkIjoiMTUzOTYyNTAtMjE2NzE2MTE4OV8xNTI2MDEwMjUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTE4OSIsImIiOiIxNTI2MDEwMjUiLCJoZWFkaW5nIjoxMTEuMDA5NTc0MzE2NDM5MzQsImRpc3QiOjEyLjM2OH0sIjE1Mzk2MjUwLTIxNjcxNjExODlfMTUyNjAxMDI3Ijp7ImlkIjoiMTUzOTYyNTAtMjE2NzE2MTE4OV8xNTI2MDEwMjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTE4OSIsImIiOiIxNTI2MDEwMjciLCJoZWFkaW5nIjotNzEuNDI0ODI5MDg0MTUyMTgsImRpc3QiOjEyMS44MDR9LCIxNTM5NjI1MC0xNTI2MDEwMjdfMjE2NzE2MTE4OSI6eyJpZCI6IjE1Mzk2MjUwLTE1MjYwMTAyN18yMTY3MTYxMTg5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwMTAyNyIsImIiOiIyMTY3MTYxMTg5IiwiaGVhZGluZyI6MTA4LjU3NTE3MDkxNTg0NzgyLCJkaXN0IjoxMjEuODA0fSwiMTUzOTYyNTAtMTUyNjAxMDI3XzE1MjUxNjIwOCI6eyJpZCI6IjE1Mzk2MjUwLTE1MjYwMTAyN18xNTI1MTYyMDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjAxMDI3IiwiYiI6IjE1MjUxNjIwOCIsImhlYWRpbmciOi03MS4yMTMyMjg5OTcyNTgxNCwiZGlzdCI6MTA2LjcxMn0sIjE1Mzk2MjUwLTE1MjUxNjIwOF8xNTI2MDEwMjciOnsiaWQiOiIxNTM5NjI1MC0xNTI1MTYyMDhfMTUyNjAxMDI3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIwOCIsImIiOiIxNTI2MDEwMjciLCJoZWFkaW5nIjoxMDguNzg2NzcxMDAyNzQxODYsImRpc3QiOjEwNi43MTJ9LCIxNTM5NjI1MC0xNTI1MTYyMDhfNDQzMjE0NjQ0Ijp7ImlkIjoiMTUzOTYyNTAtMTUyNTE2MjA4XzQ0MzIxNDY0NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTYyMDgiLCJiIjoiNDQzMjE0NjQ0IiwiaGVhZGluZyI6LTcxLjc3ODY5MDMyOTQ0MDQ1LCJkaXN0Ijo1Ni43MjV9LCIxNTM5NjI1MC00NDMyMTQ2NDRfMTUyNTE2MjA4Ijp7ImlkIjoiMTUzOTYyNTAtNDQzMjE0NjQ0XzE1MjUxNjIwOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDQiLCJiIjoiMTUyNTE2MjA4IiwiaGVhZGluZyI6MTA4LjIyMTMwOTY3MDU1OTU1LCJkaXN0Ijo1Ni43MjV9LCIxNTM5NjI1MC00NDMyMTQ2NDRfMTUyNDU2NjI0Ijp7ImlkIjoiMTUzOTYyNTAtNDQzMjE0NjQ0XzE1MjQ1NjYyNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDQiLCJiIjoiMTUyNDU2NjI0IiwiaGVhZGluZyI6LTcyLjU1NTU4MjY0NTQwNTM3LCJkaXN0Ijo1NS40N30sIjE1Mzk2MjUwLTE1MjQ1NjYyNF80NDMyMTQ2NDQiOnsiaWQiOiIxNTM5NjI1MC0xNTI0NTY2MjRfNDQzMjE0NjQ0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1NjYyNCIsImIiOiI0NDMyMTQ2NDQiLCJoZWFkaW5nIjoxMDcuNDQ0NDE3MzU0NTk0NjMsImRpc3QiOjU1LjQ3fSwiMTUzOTY1NjQtMTUyNDk1NjI0XzEwNzg4MDY2ODgiOnsiaWQiOiIxNTM5NjU2NC0xNTI0OTU2MjRfMTA3ODgwNjY4OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTU2MjQiLCJiIjoiMTA3ODgwNjY4OCIsImhlYWRpbmciOjE5LjE0NjgxMTkwMzI2MjE0NCwiZGlzdCI6MzUuMjA1fSwiMTUzOTY1NjQtMTA3ODgwNjY4OF8xNTI0OTU2MjQiOnsiaWQiOiIxNTM5NjU2NC0xMDc4ODA2Njg4XzE1MjQ5NTYyNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4ODA2Njg4IiwiYiI6IjE1MjQ5NTYyNCIsImhlYWRpbmciOjE5OS4xNDY4MTE5MDMyNjIxNSwiZGlzdCI6MzUuMjA1fSwiMTUzOTY1NjQtMTA3ODgwNjY4OF8xMDc4ODA2NTI0Ijp7ImlkIjoiMTUzOTY1NjQtMTA3ODgwNjY4OF8xMDc4ODA2NTI0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg4MDY2ODgiLCJiIjoiMTA3ODgwNjUyNCIsImhlYWRpbmciOjE5Ljg4MzEyODEwMTE0NjA0NSwiZGlzdCI6MjguMjkyfSwiMTUzOTY1NjQtMTA3ODgwNjUyNF8xMDc4ODA2Njg4Ijp7ImlkIjoiMTUzOTY1NjQtMTA3ODgwNjUyNF8xMDc4ODA2Njg4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg4MDY1MjQiLCJiIjoiMTA3ODgwNjY4OCIsImhlYWRpbmciOjE5OS44ODMxMjgxMDExNDYwNCwiZGlzdCI6MjguMjkyfSwiMTUzOTY1NjQtMTA3ODgwNjUyNF8xMDc4ODA2NDkwIjp7ImlkIjoiMTUzOTY1NjQtMTA3ODgwNjUyNF8xMDc4ODA2NDkwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg4MDY1MjQiLCJiIjoiMTA3ODgwNjQ5MCIsImhlYWRpbmciOjE0LjU5NTQ4NTI0MTg1NDQwMSwiZGlzdCI6MTEuNDU1fSwiMTUzOTY1NjQtMTA3ODgwNjQ5MF8xMDc4ODA2NTI0Ijp7ImlkIjoiMTUzOTY1NjQtMTA3ODgwNjQ5MF8xMDc4ODA2NTI0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg4MDY0OTAiLCJiIjoiMTA3ODgwNjUyNCIsImhlYWRpbmciOjE5NC41OTU0ODUyNDE4NTQ0LCJkaXN0IjoxMS40NTV9LCIxNTM5NjU2NC0xMDc4ODA2NDkwXzEwNzg4MDY1MzciOnsiaWQiOiIxNTM5NjU2NC0xMDc4ODA2NDkwXzEwNzg4MDY1MzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODgwNjQ5MCIsImIiOiIxMDc4ODA2NTM3IiwiaGVhZGluZyI6MjAuNDA0OTEwMjk5NjA5NjU3LCJkaXN0IjoxNi41NTl9LCIxNTM5NjU2NC0xMDc4ODA2NTM3XzEwNzg4MDY0OTAiOnsiaWQiOiIxNTM5NjU2NC0xMDc4ODA2NTM3XzEwNzg4MDY0OTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODgwNjUzNyIsImIiOiIxMDc4ODA2NDkwIiwiaGVhZGluZyI6MjAwLjQwNDkxMDI5OTYwOTY3LCJkaXN0IjoxNi41NTl9LCIxNTM5NjU2NC0xMDc4ODA2NTM3XzEwNzg4MDY2NTciOnsiaWQiOiIxNTM5NjU2NC0xMDc4ODA2NTM3XzEwNzg4MDY2NTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODgwNjUzNyIsImIiOiIxMDc4ODA2NjU3IiwiaGVhZGluZyI6MTkuODgzMDYxNTEzOTk4MTkzLCJkaXN0IjoxNC4xNDZ9LCIxNTM5NjU2NC0xMDc4ODA2NjU3XzEwNzg4MDY1MzciOnsiaWQiOiIxNTM5NjU2NC0xMDc4ODA2NjU3XzEwNzg4MDY1MzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODgwNjY1NyIsImIiOiIxMDc4ODA2NTM3IiwiaGVhZGluZyI6MTk5Ljg4MzA2MTUxMzk5ODIsImRpc3QiOjE0LjE0Nn0sIjE1Mzk2NTY0LTEwNzg4MDY2NTdfMTk5NzM0NDM0NiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzg4MDY2NTdfMTk5NzM0NDM0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4ODA2NjU3IiwiYiI6IjE5OTczNDQzNDYiLCJoZWFkaW5nIjoxNi4xMzY2NDg5OTMyMjUzODYsImRpc3QiOjEwLjM4Nn0sIjE1Mzk2NTY0LTE5OTczNDQzNDZfMTA3ODgwNjY1NyI6eyJpZCI6IjE1Mzk2NTY0LTE5OTczNDQzNDZfMTA3ODgwNjY1NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxOTk3MzQ0MzQ2IiwiYiI6IjEwNzg4MDY2NTciLCJoZWFkaW5nIjoxOTYuMTM2NjQ4OTkzMjI1MzgsImRpc3QiOjEwLjM4Nn0sIjE1Mzk2NTY0LTE5OTczNDQzNDZfMTA3MzQwMDgzNyI6eyJpZCI6IjE1Mzk2NTY0LTE5OTczNDQzNDZfMTA3MzQwMDgzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxOTk3MzQ0MzQ2IiwiYiI6IjEwNzM0MDA4MzciLCJoZWFkaW5nIjoyMy40NjA0NTY0OTgxMzEyLCJkaXN0Ijo5LjY2OH0sIjE1Mzk2NTY0LTEwNzM0MDA4MzdfMTk5NzM0NDM0NiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzM0MDA4MzdfMTk5NzM0NDM0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDczNDAwODM3IiwiYiI6IjE5OTczNDQzNDYiLCJoZWFkaW5nIjoyMDMuNDYwNDU2NDk4MTMxMiwiZGlzdCI6OS42Njh9LCIxNTM5NjU2NC0xMDczNDAwODM3XzEwNzM0MDA5MzIiOnsiaWQiOiIxNTM5NjU2NC0xMDczNDAwODM3XzEwNzM0MDA5MzIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3MzQwMDgzNyIsImIiOiIxMDczNDAwOTMyIiwiaGVhZGluZyI6MTguNDYxMDQ3NzU3MzA1MDQ2LCJkaXN0IjoxNS4xOTN9LCIxNTM5NjU2NC0xMDczNDAwOTMyXzEwNzM0MDA4MzciOnsiaWQiOiIxNTM5NjU2NC0xMDczNDAwOTMyXzEwNzM0MDA4MzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3MzQwMDkzMiIsImIiOiIxMDczNDAwODM3IiwiaGVhZGluZyI6MTk4LjQ2MTA0Nzc1NzMwNTA0LCJkaXN0IjoxNS4xOTN9LCIxNTM5NjU2NC0xMDczNDAwOTMyXzEwNzc1OTk1MTIiOnsiaWQiOiIxNTM5NjU2NC0xMDczNDAwOTMyXzEwNzc1OTk1MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3MzQwMDkzMiIsImIiOiIxMDc3NTk5NTEyIiwiaGVhZGluZyI6MTcuODIxMjA5ODA4MjUwNDksImRpc3QiOjYyLjg4fSwiMTUzOTY1NjQtMTA3NzU5OTUxMl8xMDczNDAwOTMyIjp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTUxMl8xMDczNDAwOTMyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTk1MTIiLCJiIjoiMTA3MzQwMDkzMiIsImhlYWRpbmciOjE5Ny44MjEyMDk4MDgyNTA1LCJkaXN0Ijo2Mi44OH0sIjE1Mzk2NTY0LTEwNzc1OTk1MTJfMTA3NzYwMDM2MSI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk1MTJfMTA3NzYwMDM2MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NTEyIiwiYiI6IjEwNzc2MDAzNjEiLCJoZWFkaW5nIjoxOC40NjA5MjkxMTMwNDUyNTcsImRpc3QiOjE1LjE5M30sIjE1Mzk2NTY0LTEwNzc2MDAzNjFfMTA3NzU5OTUxMiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDAzNjFfMTA3NzU5OTUxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwMzYxIiwiYiI6IjEwNzc1OTk1MTIiLCJoZWFkaW5nIjoxOTguNDYwOTI5MTEzMDQ1MjcsImRpc3QiOjE1LjE5M30sIjE1Mzk2NTY0LTEwNzc2MDAzNjFfMTUyNjA0MjA5Ijp7ImlkIjoiMTUzOTY1NjQtMTA3NzYwMDM2MV8xNTI2MDQyMDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzYwMDM2MSIsImIiOiIxNTI2MDQyMDkiLCJoZWFkaW5nIjoxOC4wMjk1NjEzMTQ5MzY2ODIsImRpc3QiOjM3LjMwNn0sIjE1Mzk2NTY0LTE1MjYwNDIwOV8xMDc3NjAwMzYxIjp7ImlkIjoiMTUzOTY1NjQtMTUyNjA0MjA5XzEwNzc2MDAzNjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA0MjA5IiwiYiI6IjEwNzc2MDAzNjEiLCJoZWFkaW5nIjoxOTguMDI5NTYxMzE0OTM2NjcsImRpc3QiOjM3LjMwNn0sIjE1Mzk2NTY0LTE1MjYwNDIwOV8xMDc3NjAwNDIwIjp7ImlkIjoiMTUzOTY1NjQtMTUyNjA0MjA5XzEwNzc2MDA0MjAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA0MjA5IiwiYiI6IjEwNzc2MDA0MjAiLCJoZWFkaW5nIjoxMi4yNDMwMDMwNDUxNzU5OSwiZGlzdCI6NC41Mzd9LCIxNTM5NjU2NC0xMDc3NjAwNDIwXzE1MjYwNDIwOSI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDA0MjBfMTUyNjA0MjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc2MDA0MjAiLCJiIjoiMTUyNjA0MjA5IiwiaGVhZGluZyI6MTkyLjI0MzAwMzA0NTE3NTk4LCJkaXN0Ijo0LjUzN30sIjE1Mzk2NTY0LTEwNzc2MDA0MjBfMTA3NzU5OTcyNiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDA0MjBfMTA3NzU5OTcyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwNDIwIiwiYiI6IjEwNzc1OTk3MjYiLCJoZWFkaW5nIjoxOC42NTE4MzU0NTg2MzkzMywiZGlzdCI6MjEuMDZ9LCIxNTM5NjU2NC0xMDc3NTk5NzI2XzEwNzc2MDA0MjAiOnsiaWQiOiIxNTM5NjU2NC0xMDc3NTk5NzI2XzEwNzc2MDA0MjAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTcyNiIsImIiOiIxMDc3NjAwNDIwIiwiaGVhZGluZyI6MTk4LjY1MTgzNTQ1ODYzOTM0LCJkaXN0IjoyMS4wNn0sIjE1Mzk2NTY0LTEwNzc1OTk3MjZfMTA3NzU5OTQ5MiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk3MjZfMTA3NzU5OTQ5MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NzI2IiwiYiI6IjEwNzc1OTk0OTIiLCJoZWFkaW5nIjoxNy43ODQ3MTgzMjUxMDQ5NTgsImRpc3QiOjUzLjU1NH0sIjE1Mzk2NTY0LTEwNzc1OTk0OTJfMTA3NzU5OTcyNiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk0OTJfMTA3NzU5OTcyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NDkyIiwiYiI6IjEwNzc1OTk3MjYiLCJoZWFkaW5nIjoxOTcuNzg0NzE4MzI1MTA0OTYsImRpc3QiOjUzLjU1NH0sIjE1Mzk2NTY0LTEwNzc1OTk0OTJfMTA3NzU5OTIzMCI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk0OTJfMTA3NzU5OTIzMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NDkyIiwiYiI6IjEwNzc1OTkyMzAiLCJoZWFkaW5nIjoxNC45NTI4MTI5NzgyOTQwMiwiZGlzdCI6MTQuOTE3fSwiMTUzOTY1NjQtMTA3NzU5OTIzMF8xMDc3NTk5NDkyIjp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTIzMF8xMDc3NTk5NDkyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkyMzAiLCJiIjoiMTA3NzU5OTQ5MiIsImhlYWRpbmciOjE5NC45NTI4MTI5NzgyOTQwMiwiZGlzdCI6MTQuOTE3fSwiMTUzOTY1NjQtMTA3NzU5OTIzMF8xMDc3NjAwMTkyIjp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTIzMF8xMDc3NjAwMTkyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkyMzAiLCJiIjoiMTA3NzYwMDE5MiIsImhlYWRpbmciOjIwLjQwNDQ1NTY0MzkyNjM3LCJkaXN0IjoxNi41NTl9LCIxNTM5NjU2NC0xMDc3NjAwMTkyXzEwNzc1OTkyMzAiOnsiaWQiOiIxNTM5NjU2NC0xMDc3NjAwMTkyXzEwNzc1OTkyMzAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzYwMDE5MiIsImIiOiIxMDc3NTk5MjMwIiwiaGVhZGluZyI6MjAwLjQwNDQ1NTY0MzkyNjM4LCJkaXN0IjoxNi41NTl9LCIxNTM5NjU2NC0xMDc3NjAwMTkyXzEwNzc1OTg4ODQiOnsiaWQiOiIxNTM5NjU2NC0xMDc3NjAwMTkyXzEwNzc1OTg4ODQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzYwMDE5MiIsImIiOiIxMDc3NTk4ODg0IiwiaGVhZGluZyI6NTUuMzQ0OTc1MTkwMDY5MDM2LCJkaXN0Ijo1Ljg0OX0sIjE1Mzk2NTY0LTEwNzc1OTg4ODRfMTA3NzYwMDE5MiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTg4ODRfMTA3NzYwMDE5MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk4ODg0IiwiYiI6IjEwNzc2MDAxOTIiLCJoZWFkaW5nIjoyMzUuMzQ0OTc1MTkwMDY5MDIsImRpc3QiOjUuODQ5fSwiMTUzOTY1NjQtMTA3NzU5ODg4NF8xMDc3NTk5NDI2Ijp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5ODg4NF8xMDc3NTk5NDI2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTg4ODQiLCJiIjoiMTA3NzU5OTQyNiIsImhlYWRpbmciOjc5LjEzMDM1NTE1NDg4NTY4LCJkaXN0Ijo1Ljg3OX0sIjE1Mzk2NTY0LTEwNzc1OTk0MjZfMTA3NzU5ODg4NCI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk0MjZfMTA3NzU5ODg4NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5NDI2IiwiYiI6IjEwNzc1OTg4ODQiLCJoZWFkaW5nIjoyNTkuMTMwMzU1MTU0ODg1NywiZGlzdCI6NS44Nzl9LCIxNTM5NjU2NC0xMDc3NTk5NDI2XzEwNzc1OTkwNDAiOnsiaWQiOiIxNTM5NjU2NC0xMDc3NTk5NDI2XzEwNzc1OTkwNDAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTQyNiIsImIiOiIxMDc3NTk5MDQwIiwiaGVhZGluZyI6MTAyLjk3NTgyMTY5MTA4OTAxLCJkaXN0Ijo0LjkzN30sIjE1Mzk2NTY0LTEwNzc1OTkwNDBfMTA3NzU5OTQyNiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTkwNDBfMTA3NzU5OTQyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5MDQwIiwiYiI6IjEwNzc1OTk0MjYiLCJoZWFkaW5nIjoyODIuOTc1ODIxNjkxMDg5LCJkaXN0Ijo0LjkzN30sIjE1Mzk2NTY0LTEwNzc1OTkwNDBfMTA3NzU5OTAzNCI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTkwNDBfMTA3NzU5OTAzNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5MDQwIiwiYiI6IjEwNzc1OTkwMzQiLCJoZWFkaW5nIjoxNDYuOTM2OTA4NDE4NzM5MTQsImRpc3QiOjUuMjkxfSwiMTUzOTY1NjQtMTA3NzU5OTAzNF8xMDc3NTk5MDQwIjp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTAzNF8xMDc3NTk5MDQwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkwMzQiLCJiIjoiMTA3NzU5OTA0MCIsImhlYWRpbmciOjMyNi45MzY5MDg0MTg3MzkxLCJkaXN0Ijo1LjI5MX0sIjE1Mzk2NTY0LTEwNzc1OTkwMzRfMTA3NzU5ODk2MyI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTkwMzRfMTA3NzU5ODk2MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5MDM0IiwiYiI6IjEwNzc1OTg5NjMiLCJoZWFkaW5nIjoxODAsImRpc3QiOjQuNDM0fSwiMTUzOTY1NjQtMTA3NzU5ODk2M18xMDc3NTk5MDM0Ijp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5ODk2M18xMDc3NTk5MDM0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTg5NjMiLCJiIjoiMTA3NzU5OTAzNCIsImhlYWRpbmciOjAsImRpc3QiOjQuNDM0fSwiMTUzOTY1NjQtMTA3NzU5ODk2M18xMDc3NTk5OTkxIjp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5ODk2M18xMDc3NTk5OTkxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTg5NjMiLCJiIjoiMTA3NzU5OTk5MSIsImhlYWRpbmciOi0xNjYuMDcyMTczMDU3MDQ1MSwiZGlzdCI6Ny45OTV9LCIxNTM5NjU2NC0xMDc3NTk5OTkxXzEwNzc1OTg5NjMiOnsiaWQiOiIxNTM5NjU2NC0xMDc3NTk5OTkxXzEwNzc1OTg5NjMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTk5MSIsImIiOiIxMDc3NTk4OTYzIiwiaGVhZGluZyI6MTMuOTI3ODI2OTQyOTU0OTA4LCJkaXN0Ijo3Ljk5NX0sIjE1Mzk2NTY0LTEwNzc1OTk5OTFfMTA3NzYwMDIwNSI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk5OTFfMTA3NzYwMDIwNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5OTkxIiwiYiI6IjEwNzc2MDAyMDUiLCJoZWFkaW5nIjoxODAsImRpc3QiOjMuMzI2fSwiMTUzOTY1NjQtMTA3NzYwMDIwNV8xMDc3NTk5OTkxIjp7ImlkIjoiMTUzOTY1NjQtMTA3NzYwMDIwNV8xMDc3NTk5OTkxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc2MDAyMDUiLCJiIjoiMTA3NzU5OTk5MSIsImhlYWRpbmciOjAsImRpc3QiOjMuMzI2fSwiMTUzOTY1NjQtMTA3NzYwMDIwNV8xMDc3NTk5MTM3Ijp7ImlkIjoiMTUzOTY1NjQtMTA3NzYwMDIwNV8xMDc3NTk5MTM3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc2MDAyMDUiLCJiIjoiMTA3NzU5OTEzNyIsImhlYWRpbmciOjExOS45NDQ0NjIxNDE2MDE3NSwiZGlzdCI6NC40NDJ9LCIxNTM5NjU2NC0xMDc3NTk5MTM3XzEwNzc2MDAyMDUiOnsiaWQiOiIxNTM5NjU2NC0xMDc3NTk5MTM3XzEwNzc2MDAyMDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTEzNyIsImIiOiIxMDc3NjAwMjA1IiwiaGVhZGluZyI6Mjk5Ljk0NDQ2MjE0MTYwMTgsImRpc3QiOjQuNDQyfSwiMTUzOTY1NjQtMTA3NzU5OTEzN18xMDc3NTk5MDgyIjp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTEzN18xMDc3NTk5MDgyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkxMzciLCJiIjoiMTA3NzU5OTA4MiIsImhlYWRpbmciOjg5Ljk5OTk4NDg3NTg1NDcsImRpc3QiOjUuNzczfSwiMTUzOTY1NjQtMTA3NzU5OTA4Ml8xMDc3NTk5MTM3Ijp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTA4Ml8xMDc3NTk5MTM3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTkwODIiLCJiIjoiMTA3NzU5OTEzNyIsImhlYWRpbmciOjI2OS45OTk5ODQ4NzU4NTQ3LCJkaXN0Ijo1Ljc3M30sIjE1Mzk2NTY0LTEwNzc1OTkwODJfMTA3NzU5OTY5OCI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTkwODJfMTA3NzU5OTY5OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5MDgyIiwiYiI6IjEwNzc1OTk2OTgiLCJoZWFkaW5nIjo4OS45OTk5ODczOTQ1NTk0LCJkaXN0Ijo0LjgxMX0sIjE1Mzk2NTY0LTEwNzc1OTk2OThfMTA3NzU5OTA4MiI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc1OTk2OThfMTA3NzU5OTA4MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NTk5Njk4IiwiYiI6IjEwNzc1OTkwODIiLCJoZWFkaW5nIjoyNjkuOTk5OTg3Mzk0NTU5NCwiZGlzdCI6NC44MTF9LCIxNTM5NjU2NC0xMDc3NTk5Njk4XzEwNzc1OTk1NDgiOnsiaWQiOiIxNTM5NjU2NC0xMDc3NTk5Njk4XzEwNzc1OTk1NDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTY5OCIsImIiOiIxMDc3NTk5NTQ4IiwiaGVhZGluZyI6NTUuMzQ1MDIyMDcyMDMyMTEsImRpc3QiOjUuODQ5fSwiMTUzOTY1NjQtMTA3NzU5OTU0OF8xMDc3NTk5Njk4Ijp7ImlkIjoiMTUzOTY1NjQtMTA3NzU5OTU0OF8xMDc3NTk5Njk4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzc1OTk1NDgiLCJiIjoiMTA3NzU5OTY5OCIsImhlYWRpbmciOjIzNS4zNDUwMjIwNzIwMzIxMiwiZGlzdCI6NS44NDl9LCIxNTM5NjU2NC0xMDc3NTk5NTQ4XzEwNzc2MDA0MjMiOnsiaWQiOiIxNTM5NjU2NC0xMDc3NTk5NTQ4XzEwNzc2MDA0MjMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTU0OCIsImIiOiIxMDc3NjAwNDIzIiwiaGVhZGluZyI6MTMuOTI3ODE5NjA0OTk3NzQ3LCJkaXN0Ijo3Ljk5NX0sIjE1Mzk2NTY0LTEwNzc2MDA0MjNfMTA3NzU5OTU0OCI6eyJpZCI6IjE1Mzk2NTY0LTEwNzc2MDA0MjNfMTA3NzU5OTU0OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwNDIzIiwiYiI6IjEwNzc1OTk1NDgiLCJoZWFkaW5nIjoxOTMuOTI3ODE5NjA0OTk3NzUsImRpc3QiOjcuOTk1fSwiMTUzOTY1NjUtMTQyNTczMDgyMV8xNTI2MDQyMTYiOnsiaWQiOiIxNTM5NjU2NS0xNDI1NzMwODIxXzE1MjYwNDIxNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDI1NzMwODIxIiwiYiI6IjE1MjYwNDIxNiIsImhlYWRpbmciOjE4LjQ2MjM5MzM3MTA3ODU0OCwiZGlzdCI6MTUuMTkzfSwiMTUzOTY1NjUtMTUyNjA0MjE2XzE0MjU3MzA4MjEiOnsiaWQiOiIxNTM5NjU2NS0xNTI2MDQyMTZfMTQyNTczMDgyMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MDQyMTYiLCJiIjoiMTQyNTczMDgyMSIsImhlYWRpbmciOjE5OC40NjIzOTMzNzEwNzg1NSwiZGlzdCI6MTUuMTkzfSwiMTUzOTY1NjUtMTUyNjA0MjE2XzE1MjUxNjY0OCI6eyJpZCI6IjE1Mzk2NTY1LTE1MjYwNDIxNl8xNTI1MTY2NDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA0MjE2IiwiYiI6IjE1MjUxNjY0OCIsImhlYWRpbmciOjE4LjEwMzg4NzY1OTQ2MjgyOCwiZGlzdCI6ODkuODA2fSwiMTUzOTY1NjUtMTUyNTE2NjQ4XzE1MjYwNDIxNiI6eyJpZCI6IjE1Mzk2NTY1LTE1MjUxNjY0OF8xNTI2MDQyMTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTE2NjQ4IiwiYiI6IjE1MjYwNDIxNiIsImhlYWRpbmciOjE5OC4xMDM4ODc2NTk0NjI4MywiZGlzdCI6ODkuODA2fSwiMTUzOTY1NjUtMTUyNTE2NjQ4XzE1MjQwMTkxNSI6eyJpZCI6IjE1Mzk2NTY1LTE1MjUxNjY0OF8xNTI0MDE5MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTE2NjQ4IiwiYiI6IjE1MjQwMTkxNSIsImhlYWRpbmciOjE3LjQzMDczMTQxMTY0ODg5LCJkaXN0IjoxMDkuMjIxfSwiMTUzOTY1NjUtMTUyNDAxOTE1XzE1MjUxNjY0OCI6eyJpZCI6IjE1Mzk2NTY1LTE1MjQwMTkxNV8xNTI1MTY2NDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDAxOTE1IiwiYiI6IjE1MjUxNjY0OCIsImhlYWRpbmciOjE5Ny40MzA3MzE0MTE2NDg4OCwiZGlzdCI6MTA5LjIyMX0sIjE1Mzk2NTY1LTE1MjQwMTkxNV80NDMxODcxMjAiOnsiaWQiOiIxNTM5NjU2NS0xNTI0MDE5MTVfNDQzMTg3MTIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQwMTkxNSIsImIiOiI0NDMxODcxMjAiLCJoZWFkaW5nIjoxNy4zNTM1NTk0MjE0MjQ1MDcsImRpc3QiOjU4LjA3Mn0sIjE1Mzk2NTY1LTQ0MzE4NzEyMF8xNTI0MDE5MTUiOnsiaWQiOiIxNTM5NjU2NS00NDMxODcxMjBfMTUyNDAxOTE1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NzEyMCIsImIiOiIxNTI0MDE5MTUiLCJoZWFkaW5nIjoxOTcuMzUzNTU5NDIxNDI0NSwiZGlzdCI6NTguMDcyfSwiMTUzOTY1NjUtNDQzMTg3MTIwXzExOTAwNjE0ODgiOnsiaWQiOiIxNTM5NjU2NS00NDMxODcxMjBfMTE5MDA2MTQ4OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcxMjAiLCJiIjoiMTE5MDA2MTQ4OCIsImhlYWRpbmciOjE2LjUzOTE0MzA2NDI0MjcyNiwiZGlzdCI6NDMuOTQ0fSwiMTUzOTY1NjUtMTE5MDA2MTQ4OF80NDMxODcxMjAiOnsiaWQiOiIxNTM5NjU2NS0xMTkwMDYxNDg4XzQ0MzE4NzEyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMTkwMDYxNDg4IiwiYiI6IjQ0MzE4NzEyMCIsImhlYWRpbmciOjE5Ni41MzkxNDMwNjQyNDI3MiwiZGlzdCI6NDMuOTQ0fSwiMTUzOTY5NDItMTUyNjA4ODc2XzE1MjU2NjMxNyI6eyJpZCI6IjE1Mzk2OTQyLTE1MjYwODg3Nl8xNTI1NjYzMTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA4ODc2IiwiYiI6IjE1MjU2NjMxNyIsImhlYWRpbmciOi03MS41OTEzNDI2MTQyMDkwOCwiZGlzdCI6NDUuNjM2fSwiMTUzOTc0NjEtMTUyNDg2NjAzXzIxNjcxNjEyNzciOnsiaWQiOiIxNTM5NzQ2MS0xNTI0ODY2MDNfMjE2NzE2MTI3NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDMiLCJiIjoiMjE2NzE2MTI3NyIsImhlYWRpbmciOjEwMS44MzE1NjgxMDU5ODkyOCwiZGlzdCI6MTAuODEzfSwiMTUzOTc0NjEtMjE2NzE2MTI3N18yNjM3NjcxMDc1Ijp7ImlkIjoiMTUzOTc0NjEtMjE2NzE2MTI3N18yNjM3NjcxMDc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjEyNzciLCJiIjoiMjYzNzY3MTA3NSIsImhlYWRpbmciOjEwNy45ODg1MTY0ODk4NzMwOSwiZGlzdCI6MTExLjI3N30sIjE1Mzk3NDYxLTI2Mzc2NzEwNzVfMTUyNjEzNjM2Ijp7ImlkIjoiMTUzOTc0NjEtMjYzNzY3MTA3NV8xNTI2MTM2MzYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY3MTA3NSIsImIiOiIxNTI2MTM2MzYiLCJoZWFkaW5nIjoxMDkuNTIwMTEyOTgzMzgzMTMsImRpc3QiOjEzLjI3MX0sIjE1Mzk3NDYxLTE1MjYxMzYzNl80NDMyMTQ2NTQiOnsiaWQiOiIxNTM5NzQ2MS0xNTI2MTM2MzZfNDQzMjE0NjU0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYxMzYzNiIsImIiOiI0NDMyMTQ2NTQiLCJoZWFkaW5nIjoxMDguODQ4OTM3ODg5MTE1MzIsImRpc3QiOjU0LjkwMX0sIjE1Mzk3NDYxLTQ0MzIxNDY1NF8yNjM3NjcwNzMxIjp7ImlkIjoiMTUzOTc0NjEtNDQzMjE0NjU0XzI2Mzc2NzA3MzEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjU0IiwiYiI6IjI2Mzc2NzA3MzEiLCJoZWFkaW5nIjoxMDYuNzkxNTI4MjU0NjM5ODQsImRpc3QiOjQyLjIxMX0sIjE1Mzk3NDYxLTI2Mzc2NzA3MzFfMTUyNjEzNjM4Ijp7ImlkIjoiMTUzOTc0NjEtMjYzNzY3MDczMV8xNTI2MTM2MzgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY3MDczMSIsImIiOiIxNTI2MTM2MzgiLCJoZWFkaW5nIjoxMTIuNzMyMjAwNzQ1NjgyMDksImRpc3QiOjExLjQ3NX0sIjE1Mzk3NDYxLTE1MjYxMzYzOF8yNjM3NjcwNzMwIjp7ImlkIjoiMTUzOTc0NjEtMTUyNjEzNjM4XzI2Mzc2NzA3MzAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjEzNjM4IiwiYiI6IjI2Mzc2NzA3MzAiLCJoZWFkaW5nIjoxMDcuNDQ0MTI0NDc4MDg0MDMsImRpc3QiOjExLjA5NH0sIjE1Mzk3NDYxLTI2Mzc2NzA3MzBfMTUyNTM5NjY2Ijp7ImlkIjoiMTUzOTc0NjEtMjYzNzY3MDczMF8xNTI1Mzk2NjYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY3MDczMCIsImIiOiIxNTI1Mzk2NjYiLCJoZWFkaW5nIjoxMDYuODM0OTg3MTkwNDc2NywiZGlzdCI6OTkuNTE5fSwiMTUzOTgxMDktMTUyNTU0OTgwXzEwNzg5MTkyNzUiOnsiaWQiOiIxNTM5ODEwOS0xNTI1NTQ5ODBfMTA3ODkxOTI3NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NTQ5ODAiLCJiIjoiMTA3ODkxOTI3NSIsImhlYWRpbmciOjE5LjE0NTk0OTY4NzMyNDc4LCJkaXN0IjozNS4yMDR9LCIxNTM5ODEwOS0xMDc4OTE5Mjc1XzE1MjU1NDk4MCI6eyJpZCI6IjE1Mzk4MTA5LTEwNzg5MTkyNzVfMTUyNTU0OTgwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTkyNzUiLCJiIjoiMTUyNTU0OTgwIiwiaGVhZGluZyI6MTk5LjE0NTk0OTY4NzMyNDgsImRpc3QiOjM1LjIwNH0sIjE1Mzk4MTA5LTEwNzg5MTkyNzVfMjE2NzE2MTI0NyI6eyJpZCI6IjE1Mzk4MTA5LTEwNzg5MTkyNzVfMjE2NzE2MTI0NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4OTE5Mjc1IiwiYiI6IjIxNjcxNjEyNDciLCJoZWFkaW5nIjoxNS44NTc0MjQ2ODY0NzI5NTMsImRpc3QiOjYzLjM4NH0sIjE1Mzk4MTA5LTIxNjcxNjEyNDdfMTA3ODkxOTI3NSI6eyJpZCI6IjE1Mzk4MTA5LTIxNjcxNjEyNDdfMTA3ODkxOTI3NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMTY3MTYxMjQ3IiwiYiI6IjEwNzg5MTkyNzUiLCJoZWFkaW5nIjoxOTUuODU3NDI0Njg2NDcyOTQsImRpc3QiOjYzLjM4NH0sIjE1Mzk4MTA5LTIxNjcxNjEyNDdfMTUyNDM1ODkxIjp7ImlkIjoiMTUzOTgxMDktMjE2NzE2MTI0N18xNTI0MzU4OTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTI0NyIsImIiOiIxNTI0MzU4OTEiLCJoZWFkaW5nIjoxNi4xMzU5MTg4MDIxNDY5MiwiZGlzdCI6Ni45MjR9LCIxNTM5ODEwOS0xNTI0MzU4OTFfMjE2NzE2MTI0NyI6eyJpZCI6IjE1Mzk4MTA5LTE1MjQzNTg5MV8yMTY3MTYxMjQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQzNTg5MSIsImIiOiIyMTY3MTYxMjQ3IiwiaGVhZGluZyI6MTk2LjEzNTkxODgwMjE0NjkzLCJkaXN0Ijo2LjkyNH0sIjE1Mzk4MTA5LTE1MjQzNTg5MV8xNjI2NTU4NTk3Ijp7ImlkIjoiMTUzOTgxMDktMTUyNDM1ODkxXzE2MjY1NTg1OTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDM1ODkxIiwiYiI6IjE2MjY1NTg1OTciLCJoZWFkaW5nIjoxNy41MTY0OTY4NjIyNTMzMjcsImRpc3QiOjEyLjc4N30sIjE1Mzk4MTA5LTE2MjY1NTg1OTdfMTUyNDM1ODkxIjp7ImlkIjoiMTUzOTgxMDktMTYyNjU1ODU5N18xNTI0MzU4OTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1ODU5NyIsImIiOiIxNTI0MzU4OTEiLCJoZWFkaW5nIjoxOTcuNTE2NDk2ODYyMjUzMzIsImRpc3QiOjEyLjc4N30sIjE1Mzk4MTY3LTE1MjQ0MjQxMl80NDMxODUxMzIiOnsiaWQiOiIxNTM5ODE2Ny0xNTI0NDI0MTJfNDQzMTg1MTMyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0MjQxMiIsImIiOiI0NDMxODUxMzIiLCJoZWFkaW5nIjoxMDcuOTc4NDg1MTg5ODA2MDEsImRpc3QiOjcxLjgzfSwiMTUzOTgxNjctNDQzMTg1MTMyXzE1MjQ0MjQxMiI6eyJpZCI6IjE1Mzk4MTY3LTQ0MzE4NTEzMl8xNTI0NDI0MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTMyIiwiYiI6IjE1MjQ0MjQxMiIsImhlYWRpbmciOjI4Ny45Nzg0ODUxODk4MDYsImRpc3QiOjcxLjgzfSwiMTUzOTgxNjctNDQzMTg1MTMyXzE1MjYyMDU1OCI6eyJpZCI6IjE1Mzk4MTY3LTQ0MzE4NTEzMl8xNTI2MjA1NTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTMyIiwiYiI6IjE1MjYyMDU1OCIsImhlYWRpbmciOjEwOC40OTI0NTg1NTI3MjU4OCwiZGlzdCI6NjIuOTExfSwiMTUzOTgxNjctMTUyNjIwNTU4XzQ0MzE4NTEzMiI6eyJpZCI6IjE1Mzk4MTY3LTE1MjYyMDU1OF80NDMxODUxMzIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjIwNTU4IiwiYiI6IjQ0MzE4NTEzMiIsImhlYWRpbmciOjI4OC40OTI0NTg1NTI3MjU5LCJkaXN0Ijo2Mi45MTF9LCIxNTM5ODE2Ny0xNTI2MjA1NThfMTUyNjIxMTczIjp7ImlkIjoiMTUzOTgxNjctMTUyNjIwNTU4XzE1MjYyMTE3MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjA1NTgiLCJiIjoiMTUyNjIxMTczIiwiaGVhZGluZyI6MTA3Ljg5OTY4MDA2MTAzNzEsImRpc3QiOjEwOC4yMDR9LCIxNTM5ODE2Ny0xNTI2MjExNzNfMTUyNjIwNTU4Ijp7ImlkIjoiMTUzOTgxNjctMTUyNjIxMTczXzE1MjYyMDU1OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjExNzMiLCJiIjoiMTUyNjIwNTU4IiwiaGVhZGluZyI6Mjg3Ljg5OTY4MDA2MTAzNzEsImRpc3QiOjEwOC4yMDR9LCIxNTM5ODE2Ny0xNTI2MjExNzNfMTUyNTM5NjMzIjp7ImlkIjoiMTUzOTgxNjctMTUyNjIxMTczXzE1MjUzOTYzMyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjExNzMiLCJiIjoiMTUyNTM5NjMzIiwiaGVhZGluZyI6MTA4LjI5Njk4MDk0Nzc5ODE4LCJkaXN0IjoxMDkuNDYzfSwiMTUzOTgxNjctMTUyNTM5NjMzXzE1MjYyMTE3MyI6eyJpZCI6IjE1Mzk4MTY3LTE1MjUzOTYzM18xNTI2MjExNzMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTM5NjMzIiwiYiI6IjE1MjYyMTE3MyIsImhlYWRpbmciOjI4OC4yOTY5ODA5NDc3OTgxNSwiZGlzdCI6MTA5LjQ2M30sIjE1Mzk5NjgyLTE1MjQ1MTU1MF80NDMxMjkzOTgiOnsiaWQiOiIxNTM5OTY4Mi0xNTI0NTE1NTBfNDQzMTI5Mzk4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTU1MCIsImIiOiI0NDMxMjkzOTgiLCJoZWFkaW5nIjoxNi4xMzcxNjk3NTU2Nzg5MTUsImRpc3QiOjQ4LjQ3fSwiMTUzOTk2ODItNDQzMTI5Mzk4XzE1MjQ1MTU1MCI6eyJpZCI6IjE1Mzk5NjgyLTQ0MzEyOTM5OF8xNTI0NTE1NTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTI5Mzk4IiwiYiI6IjE1MjQ1MTU1MCIsImhlYWRpbmciOjE5Ni4xMzcxNjk3NTU2Nzg5LCJkaXN0Ijo0OC40N30sIjE1Mzk5NjgyLTQ0MzEyOTM5OF8xNTI2MzY4NzQiOnsiaWQiOiIxNTM5OTY4Mi00NDMxMjkzOThfMTUyNjM2ODc0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzEyOTM5OCIsImIiOiIxNTI2MzY4NzQiLCJoZWFkaW5nIjoxNS44MDM5OTQ2OTQ0ODk5NjcsImRpc3QiOjUyLjk5OH0sIjE1Mzk5NjgyLTE1MjYzNjg3NF80NDMxMjkzOTgiOnsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4NzRfNDQzMTI5Mzk4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg3NCIsImIiOiI0NDMxMjkzOTgiLCJoZWFkaW5nIjoxOTUuODAzOTk0Njk0NDg5OTcsImRpc3QiOjUyLjk5OH0sIjE1Mzk5NjgyLTE1MjYzNjg3NF80NDMxODIzNDciOnsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4NzRfNDQzMTgyMzQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg3NCIsImIiOiI0NDMxODIzNDciLCJoZWFkaW5nIjoxOC4wMzAxODEyMTUyNTMzMDQsImRpc3QiOjU1Ljk1OX0sIjE1Mzk5NjgyLTQ0MzE4MjM0N18xNTI2MzY4NzQiOnsiaWQiOiIxNTM5OTY4Mi00NDMxODIzNDdfMTUyNjM2ODc0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0NyIsImIiOiIxNTI2MzY4NzQiLCJoZWFkaW5nIjoxOTguMDMwMTgxMjE1MjUzMywiZGlzdCI6NTUuOTU5fSwiMTUzOTk2ODItNDQzMTgyMzQ3XzE1MjYyMDk5NCI6eyJpZCI6IjE1Mzk5NjgyLTQ0MzE4MjM0N18xNTI2MjA5OTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQ3IiwiYiI6IjE1MjYyMDk5NCIsImhlYWRpbmciOjE3LjQzMDA5OTU3ODAwMjU2NSwiZGlzdCI6NTQuNjF9LCIxNTM5OTY4Mi0xNTI2MjA5OTRfNDQzMTgyMzQ3Ijp7ImlkIjoiMTUzOTk2ODItMTUyNjIwOTk0XzQ0MzE4MjM0NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjA5OTQiLCJiIjoiNDQzMTgyMzQ3IiwiaGVhZGluZyI6MTk3LjQzMDA5OTU3ODAwMjU3LCJkaXN0Ijo1NC42MX0sIjE1Mzk5NjgyLTE1MjYyMDk5NF80NDMxODIzNDgiOnsiaWQiOiIxNTM5OTY4Mi0xNTI2MjA5OTRfNDQzMTgyMzQ4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYyMDk5NCIsImIiOiI0NDMxODIzNDgiLCJoZWFkaW5nIjoxOC45NjE4MTE5NDE0NDI3OTMsImRpc3QiOjU2LjI2NX0sIjE1Mzk5NjgyLTQ0MzE4MjM0OF8xNTI2MjA5OTQiOnsiaWQiOiIxNTM5OTY4Mi00NDMxODIzNDhfMTUyNjIwOTk0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM0OCIsImIiOiIxNTI2MjA5OTQiLCJoZWFkaW5nIjoxOTguOTYxODExOTQxNDQyOCwiZGlzdCI6NTYuMjY1fSwiMTUzOTk2ODItNDQzMTgyMzQ4XzE1MjUxMjg0NiI6eyJpZCI6IjE1Mzk5NjgyLTQ0MzE4MjM0OF8xNTI1MTI4NDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQ4IiwiYiI6IjE1MjUxMjg0NiIsImhlYWRpbmciOjE4Ljc2MDAzMDM3MTcwOTU1OCwiZGlzdCI6NTMuODU1fSwiMTUzOTk2ODItMTUyNTEyODQ2XzQ0MzE4MjM0OCI6eyJpZCI6IjE1Mzk5NjgyLTE1MjUxMjg0Nl80NDMxODIzNDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTEyODQ2IiwiYiI6IjQ0MzE4MjM0OCIsImhlYWRpbmciOjE5OC43NjAwMzAzNzE3MDk1NSwiZGlzdCI6NTMuODU1fSwiMTUzOTk2ODItMTUyNTEyODQ2XzQ0MzE4MjM0OSI6eyJpZCI6IjE1Mzk5NjgyLTE1MjUxMjg0Nl80NDMxODIzNDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTEyODQ2IiwiYiI6IjQ0MzE4MjM0OSIsImhlYWRpbmciOjE3Ljc4NTEyODEzNTY2NDUwNCwiZGlzdCI6NTMuNTU0fSwiMTUzOTk2ODItNDQzMTgyMzQ5XzE1MjUxMjg0NiI6eyJpZCI6IjE1Mzk5NjgyLTQ0MzE4MjM0OV8xNTI1MTI4NDYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzQ5IiwiYiI6IjE1MjUxMjg0NiIsImhlYWRpbmciOjE5Ny43ODUxMjgxMzU2NjQ1LCJkaXN0Ijo1My41NTR9LCIxNTM5OTY4Mi00NDMxODIzNDlfMTUyMzk4MjMwIjp7ImlkIjoiMTUzOTk2ODItNDQzMTgyMzQ5XzE1MjM5ODIzMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDkiLCJiIjoiMTUyMzk4MjMwIiwiaGVhZGluZyI6MTguNzU5ODY1MjEyNzc2MTE2LCJkaXN0Ijo1My44NTV9LCIxNTM5OTY4Mi0xNTIzOTgyMzBfNDQzMTgyMzQ5Ijp7ImlkIjoiMTUzOTk2ODItMTUyMzk4MjMwXzQ0MzE4MjM0OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMzAiLCJiIjoiNDQzMTgyMzQ5IiwiaGVhZGluZyI6MTk4Ljc1OTg2NTIxMjc3NjEsImRpc3QiOjUzLjg1NX0sIjE1Mzk5NjgyLTE1MjM5ODIzMF80NDMxODIzNTAiOnsiaWQiOiIxNTM5OTY4Mi0xNTIzOTgyMzBfNDQzMTgyMzUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5ODIzMCIsImIiOiI0NDMxODIzNTAiLCJoZWFkaW5nIjoxNi40ODM2MjUwMDY1MDQ5ODMsImRpc3QiOjUwLjg2OH0sIjE1Mzk5NjgyLTQ0MzE4MjM1MF8xNTIzOTgyMzAiOnsiaWQiOiIxNTM5OTY4Mi00NDMxODIzNTBfMTUyMzk4MjMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM1MCIsImIiOiIxNTIzOTgyMzAiLCJoZWFkaW5nIjoxOTYuNDgzNjI1MDA2NTA0OTgsImRpc3QiOjUwLjg2OH0sIjE1Mzk5NjgyLTQ0MzE4MjM1MF8xNTI2MzY4NzciOnsiaWQiOiIxNTM5OTY4Mi00NDMxODIzNTBfMTUyNjM2ODc3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM1MCIsImIiOiIxNTI2MzY4NzciLCJoZWFkaW5nIjoxNy4zNTI1NDA3NzgxNzY1ODIsImRpc3QiOjU4LjA3Mn0sIjE1Mzk5NjgyLTE1MjYzNjg3N180NDMxODIzNTAiOnsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4NzdfNDQzMTgyMzUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg3NyIsImIiOiI0NDMxODIzNTAiLCJoZWFkaW5nIjoxOTcuMzUyNTQwNzc4MTc2NTgsImRpc3QiOjU4LjA3Mn0sIjE1Mzk5NjgyLTE1MjYzNjg3N180NDMxODIzNTEiOnsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4NzdfNDQzMTgyMzUxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg3NyIsImIiOiI0NDMxODIzNTEiLCJoZWFkaW5nIjoxOC4xNTQzNTYwMjEyMTQ0NTQsImRpc3QiOjUyLjQ5OX0sIjE1Mzk5NjgyLTQ0MzE4MjM1MV8xNTI2MzY4NzciOnsiaWQiOiIxNTM5OTY4Mi00NDMxODIzNTFfMTUyNjM2ODc3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM1MSIsImIiOiIxNTI2MzY4NzciLCJoZWFkaW5nIjoxOTguMTU0MzU2MDIxMjE0NDUsImRpc3QiOjUyLjQ5OX0sIjE1Mzk5NjgyLTQ0MzE4MjM1MV8xNTI0ODAyMTYiOnsiaWQiOiIxNTM5OTY4Mi00NDMxODIzNTFfMTUyNDgwMjE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjM1MSIsImIiOiIxNTI0ODAyMTYiLCJoZWFkaW5nIjoxOC4zODc0OTg5OTUyNzc5MTYsImRpc3QiOjU0LjkwNn0sIjE1Mzk5NjgyLTE1MjQ4MDIxNl80NDMxODIzNTEiOnsiaWQiOiIxNTM5OTY4Mi0xNTI0ODAyMTZfNDQzMTgyMzUxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4MDIxNiIsImIiOiI0NDMxODIzNTEiLCJoZWFkaW5nIjoxOTguMzg3NDk4OTk1Mjc3OTIsImRpc3QiOjU0LjkwNn0sIjE1Mzk5NjgyLTE1MjQ4MDIxNl80NDMxODIzNTIiOnsiaWQiOiIxNTM5OTY4Mi0xNTI0ODAyMTZfNDQzMTgyMzUyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4MDIxNiIsImIiOiI0NDMxODIzNTIiLCJoZWFkaW5nIjoxNi40NjEyMDc0MTk5NTQwMywiZGlzdCI6NTQuMzN9LCIxNTM5OTY4Mi00NDMxODIzNTJfMTUyNDgwMjE2Ijp7ImlkIjoiMTUzOTk2ODItNDQzMTgyMzUyXzE1MjQ4MDIxNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNTIiLCJiIjoiMTUyNDgwMjE2IiwiaGVhZGluZyI6MTk2LjQ2MTIwNzQxOTk1NDA0LCJkaXN0Ijo1NC4zM30sIjE1Mzk5NjgyLTQ0MzE4MjM1Ml8yMTI1NDY4NjYzIjp7ImlkIjoiMTUzOTk2ODItNDQzMTgyMzUyXzIxMjU0Njg2NjMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzUyIiwiYiI6IjIxMjU0Njg2NjMiLCJoZWFkaW5nIjoxOC4wMjkzMDM4ODYzMjMxNTYsImRpc3QiOjQ2LjYzM30sIjE1Mzk5NjgyLTIxMjU0Njg2NjNfNDQzMTgyMzUyIjp7ImlkIjoiMTUzOTk2ODItMjEyNTQ2ODY2M180NDMxODIzNTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjEyNTQ2ODY2MyIsImIiOiI0NDMxODIzNTIiLCJoZWFkaW5nIjoxOTguMDI5MzAzODg2MzIzMTYsImRpc3QiOjQ2LjYzM30sIjE1Mzk5NjgyLTIxMjU0Njg2NjNfMTUyNjM2ODgwIjp7ImlkIjoiMTUzOTk2ODItMjEyNTQ2ODY2M18xNTI2MzY4ODAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjEyNTQ2ODY2MyIsImIiOiIxNTI2MzY4ODAiLCJoZWFkaW5nIjoxNi4xMzYyMTc4ODQ5MzQ4NzYsImRpc3QiOjYuOTI0fSwiMTUzOTk2ODItMTUyNjM2ODgwXzIxMjU0Njg2NjMiOnsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4ODBfMjEyNTQ2ODY2MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4ODAiLCJiIjoiMjEyNTQ2ODY2MyIsImhlYWRpbmciOjE5Ni4xMzYyMTc4ODQ5MzQ4NywiZGlzdCI6Ni45MjR9LCIxNTM5OTY4Mi0xNTI2MzY4ODBfMjEyNTQ2ODY2NSI6eyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg4MF8yMTI1NDY4NjY1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg4MCIsImIiOiIyMTI1NDY4NjY1IiwiaGVhZGluZyI6MTkuMTQ2MTY4OTc3NTcxNzksImRpc3QiOjExLjczNX0sIjE1Mzk5NjgyLTIxMjU0Njg2NjVfMTUyNjM2ODgwIjp7ImlkIjoiMTUzOTk2ODItMjEyNTQ2ODY2NV8xNTI2MzY4ODAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjEyNTQ2ODY2NSIsImIiOiIxNTI2MzY4ODAiLCJoZWFkaW5nIjoxOTkuMTQ2MTY4OTc3NTcxOCwiZGlzdCI6MTEuNzM1fSwiMTUzOTk2ODItMjEyNTQ2ODY2NV80NDMyMTQ2MTciOnsiaWQiOiIxNTM5OTY4Mi0yMTI1NDY4NjY1XzQ0MzIxNDYxNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMTI1NDY4NjY1IiwiYiI6IjQ0MzIxNDYxNyIsImhlYWRpbmciOjE4LjAyOTE5MjIwOTQ1NDk3NiwiZGlzdCI6NTUuOTU5fSwiMTUzOTk2ODItNDQzMjE0NjE3XzIxMjU0Njg2NjUiOnsiaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MTdfMjEyNTQ2ODY2NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTciLCJiIjoiMjEyNTQ2ODY2NSIsImhlYWRpbmciOjE5OC4wMjkxOTIyMDk0NTQ5OCwiZGlzdCI6NTUuOTU5fSwiMTUzOTk2ODItNDQzMjE0NjE3XzE2MjY1NTkzNDMiOnsiaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MTdfMTYyNjU1OTM0MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTciLCJiIjoiMTYyNjU1OTM0MyIsImhlYWRpbmciOjE4Ljk3ODMzNzIwMTY2MjM4OCwiZGlzdCI6NjIuMTMyfSwiMTUzOTk2ODItMTYyNjU1OTM0M180NDMyMTQ2MTciOnsiaWQiOiIxNTM5OTY4Mi0xNjI2NTU5MzQzXzQ0MzIxNDYxNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU5MzQzIiwiYiI6IjQ0MzIxNDYxNyIsImhlYWRpbmciOjE5OC45NzgzMzcyMDE2NjIzOCwiZGlzdCI6NjIuMTMyfSwiMTUzOTk2ODItMTYyNjU1OTM0M18xNTI2MzY4ODIiOnsiaWQiOiIxNTM5OTY4Mi0xNjI2NTU5MzQzXzE1MjYzNjg4MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU5MzQzIiwiYiI6IjE1MjYzNjg4MiIsImhlYWRpbmciOjE5LjE0NTk2NjE5OTk0NDYxLCJkaXN0IjoxMS43MzV9LCIxNTM5OTY4Mi0xNTI2MzY4ODJfMTYyNjU1OTM0MyI6eyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg4Ml8xNjI2NTU5MzQzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg4MiIsImIiOiIxNjI2NTU5MzQzIiwiaGVhZGluZyI6MTk5LjE0NTk2NjE5OTk0NDYsImRpc3QiOjExLjczNX0sIjE1Mzk5NjgyLTE1MjYzNjg4Ml80NDMyMTQ2MDkiOnsiaWQiOiIxNTM5OTY4Mi0xNTI2MzY4ODJfNDQzMjE0NjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg4MiIsImIiOiI0NDMyMTQ2MDkiLCJoZWFkaW5nIjoxNi4xMzU5MzQ5NzQ1NTc1MywiZGlzdCI6NjUuNzh9LCIxNTM5OTY4Mi00NDMyMTQ2MDlfMTUyNjM2ODgyIjp7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjA5XzE1MjYzNjg4MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MDkiLCJiIjoiMTUyNjM2ODgyIiwiaGVhZGluZyI6MTk2LjEzNTkzNDk3NDU1NzUzLCJkaXN0Ijo2NS43OH0sIjE1Mzk5NjgyLTQ0MzIxNDYwOV8xNTI1NDYxOTgiOnsiaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MDlfMTUyNTQ2MTk4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYwOSIsImIiOiIxNTI1NDYxOTgiLCJoZWFkaW5nIjoxNy44MjA0Njk0MTcwMTYyNCwiZGlzdCI6NjIuODh9LCIxNTM5OTY4Mi0xNTI1NDYxOThfNDQzMjE0NjA5Ijp7ImlkIjoiMTUzOTk2ODItMTUyNTQ2MTk4XzQ0MzIxNDYwOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NDYxOTgiLCJiIjoiNDQzMjE0NjA5IiwiaGVhZGluZyI6MTk3LjgyMDQ2OTQxNzAxNjIzLCJkaXN0Ijo2Mi44OH0sIjE1Mzk5NjgyLTE1MjU0NjE5OF8yNzQzNTA2ODIyIjp7ImlkIjoiMTUzOTk2ODItMTUyNTQ2MTk4XzI3NDM1MDY4MjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTQ2MTk4IiwiYiI6IjI3NDM1MDY4MjIiLCJoZWFkaW5nIjoxNi4xMzU4Mjg1OTIzNjM2NTUsImRpc3QiOjE3LjMxMX0sIjE1Mzk5NjgyLTI3NDM1MDY4MjJfMTUyNTQ2MTk4Ijp7ImlkIjoiMTUzOTk2ODItMjc0MzUwNjgyMl8xNTI1NDYxOTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjc0MzUwNjgyMiIsImIiOiIxNTI1NDYxOTgiLCJoZWFkaW5nIjoxOTYuMTM1ODI4NTkyMzYzNjUsImRpc3QiOjE3LjMxMX0sIjE1Mzk5NjgyLTI3NDM1MDY4MjJfMTUyNjM2ODg0Ijp7ImlkIjoiMTUzOTk2ODItMjc0MzUwNjgyMl8xNTI2MzY4ODQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjc0MzUwNjgyMiIsImIiOiIxNTI2MzY4ODQiLCJoZWFkaW5nIjoxNS41ODgwMDIxMDA5MDQzODMsImRpc3QiOjMyLjIyNX0sIjE1Mzk5NjgyLTE1MjYzNjg4NF8yNzQzNTA2ODIyIjp7ImlkIjoiMTUzOTk2ODItMTUyNjM2ODg0XzI3NDM1MDY4MjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjM2ODg0IiwiYiI6IjI3NDM1MDY4MjIiLCJoZWFkaW5nIjoxOTUuNTg4MDAyMTAwOTA0NCwiZGlzdCI6MzIuMjI1fSwiMTUzOTk2ODItMTUyNjM2ODg0XzQ0MzIxNDYxOCI6eyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg4NF80NDMyMTQ2MTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjM2ODg0IiwiYiI6IjQ0MzIxNDYxOCIsImhlYWRpbmciOjIwLjQwMzc5OTQ2NzczMjk2MywiZGlzdCI6OC4yNzl9LCIxNTM5OTY4Mi00NDMyMTQ2MThfMTUyNjM2ODg0Ijp7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjE4XzE1MjYzNjg4NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTgiLCJiIjoiMTUyNjM2ODg0IiwiaGVhZGluZyI6MjAwLjQwMzc5OTQ2NzczMjk3LCJkaXN0Ijo4LjI3OX0sIjE1Mzk5NjgyLTQ0MzIxNDYxOF8xNTI0MjgzMTIiOnsiaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MThfMTUyNDI4MzEyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxOCIsImIiOiIxNTI0MjgzMTIiLCJoZWFkaW5nIjoxOC43NTg3NzU0MDU3Njc0OSwiZGlzdCI6NTMuODU1fSwiMTUzOTk2ODItMTUyNDI4MzEyXzQ0MzIxNDYxOCI6eyJpZCI6IjE1Mzk5NjgyLTE1MjQyODMxMl80NDMyMTQ2MTgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzEyIiwiYiI6IjQ0MzIxNDYxOCIsImhlYWRpbmciOjE5OC43NTg3NzU0MDU3Njc1LCJkaXN0Ijo1My44NTV9LCIxNTM5OTY4Mi0xNTI0MjgzMTJfNDQzMjE0NjE5Ijp7ImlkIjoiMTUzOTk2ODItMTUyNDI4MzEyXzQ0MzIxNDYxOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MjgzMTIiLCJiIjoiNDQzMjE0NjE5IiwiaGVhZGluZyI6MTcuNTE2MjA1MTIzODU2NjgyLCJkaXN0Ijo1MS4xNDl9LCIxNTM5OTY4Mi00NDMyMTQ2MTlfMTUyNDI4MzEyIjp7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjE5XzE1MjQyODMxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTkiLCJiIjoiMTUyNDI4MzEyIiwiaGVhZGluZyI6MTk3LjUxNjIwNTEyMzg1NjY4LCJkaXN0Ijo1MS4xNDl9LCIxNTM5OTY4Mi00NDMyMTQ2MTlfMTYyNjU1NTg0NyI6eyJpZCI6IjE1Mzk5NjgyLTQ0MzIxNDYxOV8xNjI2NTU1ODQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxOSIsImIiOiIxNjI2NTU1ODQ3IiwiaGVhZGluZyI6MTcuNzgzODU0MDIwODI3NiwiZGlzdCI6NTMuNTUzfSwiMTUzOTk2ODItMTYyNjU1NTg0N180NDMyMTQ2MTkiOnsiaWQiOiIxNTM5OTY4Mi0xNjI2NTU1ODQ3XzQ0MzIxNDYxOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU1ODQ3IiwiYiI6IjQ0MzIxNDYxOSIsImhlYWRpbmciOjE5Ny43ODM4NTQwMjA4Mjc2LCJkaXN0Ijo1My41NTN9LCIxNTM5OTY4Mi0xNjI2NTU1ODQ3XzE1MjYzNjg4NiI6eyJpZCI6IjE1Mzk5NjgyLTE2MjY1NTU4NDdfMTUyNjM2ODg2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTU4NDciLCJiIjoiMTUyNjM2ODg2IiwiaGVhZGluZyI6MTcuNTE2MTEwOTc1MTc2MjIyLCJkaXN0IjoxMi43ODd9LCIxNTM5OTY4Mi0xNTI2MzY4ODZfMTYyNjU1NTg0NyI6eyJpZCI6IjE1Mzk5NjgyLTE1MjYzNjg4Nl8xNjI2NTU1ODQ3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg4NiIsImIiOiIxNjI2NTU1ODQ3IiwiaGVhZGluZyI6MTk3LjUxNjExMDk3NTE3NjIyLCJkaXN0IjoxMi43ODd9LCIxNTM5OTY4Mi0xNTI2MzY4ODZfMTUyNjAxMDI4Ijp7ImlkIjoiMTUzOTk2ODItMTUyNjM2ODg2XzE1MjYwMTAyOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4ODYiLCJiIjoiMTUyNjAxMDI4IiwiaGVhZGluZyI6MTguMTUzMjAyMDMzOTk4ODEzLCJkaXN0IjoxMDQuOTk4fSwiMTUzOTk2ODItMTUyNjAxMDI4XzE1MjYzNjg4NiI6eyJpZCI6IjE1Mzk5NjgyLTE1MjYwMTAyOF8xNTI2MzY4ODYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjAxMDI4IiwiYiI6IjE1MjYzNjg4NiIsImhlYWRpbmciOjE5OC4xNTMyMDIwMzM5OTg4LCJkaXN0IjoxMDQuOTk4fSwiMTUzOTk2ODItMTUyNjAxMDI4XzE1MjQ4NjYxMCI6eyJpZCI6IjE1Mzk5NjgyLTE1MjYwMTAyOF8xNTI0ODY2MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjAxMDI4IiwiYiI6IjE1MjQ4NjYxMCIsImhlYWRpbmciOjE2Ljk3MjA1OTIzODM1ODQ4MywiZGlzdCI6MTA1LjQ3NH0sIjE1Mzk5NjgyLTE1MjQ4NjYxMF8xNTI2MDEwMjgiOnsiaWQiOiIxNTM5OTY4Mi0xNTI0ODY2MTBfMTUyNjAxMDI4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4NjYxMCIsImIiOiIxNTI2MDEwMjgiLCJoZWFkaW5nIjoxOTYuOTcyMDU5MjM4MzU4NSwiZGlzdCI6MTA1LjQ3NH0sIjE1Mzk5NjgyLTE1MjQ4NjYxMF80NDMyMTQ2MjAiOnsiaWQiOiIxNTM5OTY4Mi0xNTI0ODY2MTBfNDQzMjE0NjIwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4NjYxMCIsImIiOiI0NDMyMTQ2MjAiLCJoZWFkaW5nIjoxNy43MzE4NTY1OTUwNTM5OCwiZGlzdCI6NDQuMjI3fSwiMTUzOTk2ODItNDQzMjE0NjIwXzE1MjQ4NjYxMCI6eyJpZCI6IjE1Mzk5NjgyLTQ0MzIxNDYyMF8xNTI0ODY2MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjIwIiwiYiI6IjE1MjQ4NjYxMCIsImhlYWRpbmciOjE5Ny43MzE4NTY1OTUwNTM5OCwiZGlzdCI6NDQuMjI3fSwiMTUzOTk2ODItNDQzMjE0NjIwXzE1MjYzNjg4OCI6eyJpZCI6IjE1Mzk5NjgyLTQ0MzIxNDYyMF8xNTI2MzY4ODgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjIwIiwiYiI6IjE1MjYzNjg4OCIsImhlYWRpbmciOjE4LjM4NjEwODE0NDkzMDAzLCJkaXN0Ijo1NC45MDZ9LCIxNTM5OTY4Mi0xNTI2MzY4ODhfNDQzMjE0NjIwIjp7ImlkIjoiMTUzOTk2ODItMTUyNjM2ODg4XzQ0MzIxNDYyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4ODgiLCJiIjoiNDQzMjE0NjIwIiwiaGVhZGluZyI6MTk4LjM4NjEwODE0NDkzMDAzLCJkaXN0Ijo1NC45MDZ9LCIxNTM5OTY4Mi0xNTI2MzY4ODhfNDQzMjE0NjIxIjp7ImlkIjoiMTUzOTk2ODItMTUyNjM2ODg4XzQ0MzIxNDYyMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4ODgiLCJiIjoiNDQzMjE0NjIxIiwiaGVhZGluZyI6MTguOTU5NzEwMTQxNTE4ODIsImRpc3QiOjU2LjI2NH0sIjE1Mzk5NjgyLTQ0MzIxNDYyMV8xNTI2MzY4ODgiOnsiaWQiOiIxNTM5OTY4Mi00NDMyMTQ2MjFfMTUyNjM2ODg4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYyMSIsImIiOiIxNTI2MzY4ODgiLCJoZWFkaW5nIjoxOTguOTU5NzEwMTQxNTE4ODMsImRpc3QiOjU2LjI2NH0sIjE1Mzk5NjgyLTQ0MzIxNDYyMV8xNDMwNDcwMjY1Ijp7ImlkIjoiMTUzOTk2ODItNDQzMjE0NjIxXzE0MzA0NzAyNjUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjIxIiwiYiI6IjE0MzA0NzAyNjUiLCJoZWFkaW5nIjoxMy4wMzA5NzIxMTM5MDc4MDYsImRpc3QiOjM0LjEzNn0sIjE1Mzk5NjgyLTE0MzA0NzAyNjVfNDQzMjE0NjIxIjp7ImlkIjoiMTUzOTk2ODItMTQzMDQ3MDI2NV80NDMyMTQ2MjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTQzMDQ3MDI2NSIsImIiOiI0NDMyMTQ2MjEiLCJoZWFkaW5nIjoxOTMuMDMwOTcyMTEzOTA3OCwiZGlzdCI6MzQuMTM2fSwiMTUzOTk2ODItMTQzMDQ3MDI2NV81MDQ4NTExODciOnsiaWQiOiIxNTM5OTY4Mi0xNDMwNDcwMjY1XzUwNDg1MTE4NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDMwNDcwMjY1IiwiYiI6IjUwNDg1MTE4NyIsImhlYWRpbmciOi0xMi4yNDE4NjAzNzM5OTA3OSwiZGlzdCI6MTMuNjEyfSwiMTUzOTk2ODItNTA0ODUxMTg3XzE0MzA0NzAyNjUiOnsiaWQiOiIxNTM5OTY4Mi01MDQ4NTExODdfMTQzMDQ3MDI2NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI1MDQ4NTExODciLCJiIjoiMTQzMDQ3MDI2NSIsImhlYWRpbmciOjE2Ny43NTgxMzk2MjYwMDkyLCJkaXN0IjoxMy42MTJ9LCIxNTM5OTY4Mi01MDQ4NTExODdfNTA0ODUwOTA4Ijp7ImlkIjoiMTUzOTk2ODItNTA0ODUxMTg3XzUwNDg1MDkwOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI1MDQ4NTExODciLCJiIjoiNTA0ODUwOTA4IiwiaGVhZGluZyI6LTIyLjIxNTk5NDAzMjU4NDk5LCJkaXN0IjoyMC4zNTd9LCIxNTM5OTY4Mi01MDQ4NTA5MDhfNTA0ODUxMTg3Ijp7ImlkIjoiMTUzOTk2ODItNTA0ODUwOTA4XzUwNDg1MTE4NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI1MDQ4NTA5MDgiLCJiIjoiNTA0ODUxMTg3IiwiaGVhZGluZyI6MTU3Ljc4NDAwNTk2NzQxNSwiZGlzdCI6MjAuMzU3fSwiMTU0MDEwMDktMTUyNjUxMTAxXzE1MjUxNjIwMiI6eyJpZCI6IjE1NDAxMDA5LTE1MjY1MTEwMV8xNTI1MTYyMDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjY1MTEwMSIsImIiOiIxNTI1MTYyMDIiLCJoZWFkaW5nIjotNzEuNTA1MzcyMzUwNDczNzgsImRpc3QiOjYyLjkwNX0sIjE1NDAxMDA5LTE1MjUxNjIwMl8xNTI0NTY2MTgiOnsiaWQiOiIxNTQwMTAwOS0xNTI1MTYyMDJfMTUyNDU2NjE4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTYyMDIiLCJiIjoiMTUyNDU2NjE4IiwiaGVhZGluZyI6LTcyLjE2MzMzMjQ4MjgzODUzLCJkaXN0IjoxMTIuMTk2fSwiMTU0MDI0NjEtMTUyNjMxMTgzXzI2Mzc2NzM0NTAiOnsiaWQiOiIxNTQwMjQ2MS0xNTI2MzExODNfMjYzNzY3MzQ1MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzExODMiLCJiIjoiMjYzNzY3MzQ1MCIsImhlYWRpbmciOjEwOC4yMjAzNzg0MTMxODM3NSwiZGlzdCI6MTQuMTgyfSwiMTU0MDI0NjEtMjYzNzY3MzQ1MF8xNTI2MzExODMiOnsiaWQiOiIxNTQwMjQ2MS0yNjM3NjczNDUwXzE1MjYzMTE4MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjczNDUwIiwiYiI6IjE1MjYzMTE4MyIsImhlYWRpbmciOjI4OC4yMjAzNzg0MTMxODM3NywiZGlzdCI6MTQuMTgyfSwiMTU0MDI0NjEtMjYzNzY3MzQ1MF8xNTI1Mzk2NTIiOnsiaWQiOiIxNTQwMjQ2MS0yNjM3NjczNDUwXzE1MjUzOTY1MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjczNDUwIiwiYiI6IjE1MjUzOTY1MiIsImhlYWRpbmciOjEwNy41MDA3MzU2NDIzMDIxNiwiZGlzdCI6OTUuODQ1fSwiMTU0MDI0NjEtMTUyNTM5NjUyXzI2Mzc2NzM0NTAiOnsiaWQiOiIxNTQwMjQ2MS0xNTI1Mzk2NTJfMjYzNzY3MzQ1MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1Mzk2NTIiLCJiIjoiMjYzNzY3MzQ1MCIsImhlYWRpbmciOjI4Ny41MDA3MzU2NDIzMDIyLCJkaXN0Ijo5NS44NDV9LCIxNTQwNDAzMC0xNTI0NTY2MTBfMTUyNTE2MTk3Ijp7ImlkIjoiMTU0MDQwMzAtMTUyNDU2NjEwXzE1MjUxNjE5NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MTAiLCJiIjoiMTUyNTE2MTk3IiwiaGVhZGluZyI6MTA1LjkyNzQ0MjI0Njc1ODE4LCJkaXN0IjoxMDkuMDd9LCIxNTQwNDI4Ni0xNTI1MTI4MzVfNDQzMTg1MTM2Ijp7ImlkIjoiMTU0MDQyODYtMTUyNTEyODM1XzQ0MzE4NTEzNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTEyODM1IiwiYiI6IjQ0MzE4NTEzNiIsImhlYWRpbmciOjEwNy4xMzQyMTQzOTM3OTEwMSwiZGlzdCI6NzEuNDkzfSwiMTU0MDQyODYtNDQzMTg1MTM2XzE1MjYyMDU2OSI6eyJpZCI6IjE1NDA0Mjg2LTQ0MzE4NTEzNl8xNTI2MjA1NjkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NTEzNiIsImIiOiIxNTI2MjA1NjkiLCJoZWFkaW5nIjoxMDYuNzY3NzYyNDM3OTg5MzUsImRpc3QiOjY1LjMyNH0sIjE1NDA2NjU1LTE2MjY1NTU4NDZfMjE2NzE2MTI0NSI6eyJpZCI6IjE1NDA2NjU1LTE2MjY1NTU4NDZfMjE2NzE2MTI0NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1NTg0NiIsImIiOiIyMTY3MTYxMjQ1IiwiaGVhZGluZyI6MTA4LjA0ODY0Mjg3MDU3NzQ3LCJkaXN0IjoxMDAuMTg0fSwiMTU0MDY2NTUtMjE2NzE2MTI0NV8xNTI3MDUwMTYiOnsiaWQiOiIxNTQwNjY1NS0yMTY3MTYxMjQ1XzE1MjcwNTAxNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTI0NSIsImIiOiIxNTI3MDUwMTYiLCJoZWFkaW5nIjoxMDQuMzYxMjAyMjE0MTY0NDEsImRpc3QiOjguOTM5fSwiMTU0MDY2NTUtMTUyNzA1MDE2XzIxNjcxNjEzMDgiOnsiaWQiOiIxNTQwNjY1NS0xNTI3MDUwMTZfMjE2NzE2MTMwOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNzA1MDE2IiwiYiI6IjIxNjcxNjEzMDgiLCJoZWFkaW5nIjoxMTMuMzY3MTgwMzU2MTYzNjQsImRpc3QiOjguMzg1fSwiMTU0MDY2NTUtMjE2NzE2MTMwOF8yMTY3MTYxMzE4Ijp7ImlkIjoiMTU0MDY2NTUtMjE2NzE2MTMwOF8yMTY3MTYxMzE4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMzA4IiwiYiI6IjIxNjcxNjEzMTgiLCJoZWFkaW5nIjoxMDguMzczNzgxMzA5MjI3NjcsImRpc3QiOjExMi41Mzh9LCIxNTQwNjY1NS0yMTY3MTYxMzE4XzE1MjQzNTg4OCI6eyJpZCI6IjE1NDA2NjU1LTIxNjcxNjEzMThfMTUyNDM1ODg4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMzE4IiwiYiI6IjE1MjQzNTg4OCIsImhlYWRpbmciOjEwNC44ODkzODEzMjcyNjk3LCJkaXN0IjoxMi45NDN9LCIxNTQwNzIzMC0xNTI1NjcxMDVfMTc1OTI0MjUxNSI6eyJpZCI6IjE1NDA3MjMwLTE1MjU2NzEwNV8xNzU5MjQyNTE1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjcxMDUiLCJiIjoiMTc1OTI0MjUxNSIsImhlYWRpbmciOi0xNjMuMTU1NDc4MjE1NDU4MTcsImRpc3QiOjQ5LjgwNX0sIjE1NDA3MzcyLTE1MjYwMTAyNV8yMTY3MTYxMjQyIjp7ImlkIjoiMTU0MDczNzItMTUyNjAxMDI1XzIxNjcxNjEyNDIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjAxMDI1IiwiYiI6IjIxNjcxNjEyNDIiLCJoZWFkaW5nIjoxMDcuMDc5MjIzOTcyMTg0NiwiZGlzdCI6MTUuMDk4fSwiMTU0MDczNzItMjE2NzE2MTI0Ml8xNTI2MDEwMjUiOnsiaWQiOiIxNTQwNzM3Mi0yMTY3MTYxMjQyXzE1MjYwMTAyNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMTY3MTYxMjQyIiwiYiI6IjE1MjYwMTAyNSIsImhlYWRpbmciOjI4Ny4wNzkyMjM5NzIxODQ2LCJkaXN0IjoxNS4wOTh9LCIxNTQwNzM3Mi0yMTY3MTYxMjQyXzE1MjYyMDU0OSI6eyJpZCI6IjE1NDA3MzcyLTIxNjcxNjEyNDJfMTUyNjIwNTQ5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjEyNDIiLCJiIjoiMTUyNjIwNTQ5IiwiaGVhZGluZyI6MTA5LjAwNjU5NDAxMTY5NzkxLCJkaXN0Ijo5OC43MTJ9LCIxNTQwNzM3Mi0xNTI2MjA1NDlfMjE2NzE2MTI0MiI6eyJpZCI6IjE1NDA3MzcyLTE1MjYyMDU0OV8yMTY3MTYxMjQyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYyMDU0OSIsImIiOiIyMTY3MTYxMjQyIiwiaGVhZGluZyI6Mjg5LjAwNjU5NDAxMTY5NzksImRpc3QiOjk4LjcxMn0sIjE1NDA3MzcyLTE1MjYyMDU0OV80NDMyMTQ2NTMiOnsiaWQiOiIxNTQwNzM3Mi0xNTI2MjA1NDlfNDQzMjE0NjUzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYyMDU0OSIsImIiOiI0NDMyMTQ2NTMiLCJoZWFkaW5nIjoxMDcuODc5NzYyNjE4ODA1NzMsImRpc3QiOjc1LjgyNX0sIjE1NDA3MzcyLTQ0MzIxNDY1M18xNTI2MjA1NDkiOnsiaWQiOiIxNTQwNzM3Mi00NDMyMTQ2NTNfMTUyNjIwNTQ5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY1MyIsImIiOiIxNTI2MjA1NDkiLCJoZWFkaW5nIjoyODcuODc5NzYyNjE4ODA1NywiZGlzdCI6NzUuODI1fSwiMTU0MDczNzItNDQzMjE0NjUzXzI2Mzc2NzA3MjYiOnsiaWQiOiIxNTQwNzM3Mi00NDMyMTQ2NTNfMjYzNzY3MDcyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NTMiLCJiIjoiMjYzNzY3MDcyNiIsImhlYWRpbmciOjEwOC42MzQ4Nzg1NjIyMzI0MywiZGlzdCI6NDEuNjMyfSwiMTU0MDczNzItMjYzNzY3MDcyNl80NDMyMTQ2NTMiOnsiaWQiOiIxNTQwNzM3Mi0yNjM3NjcwNzI2XzQ0MzIxNDY1MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjcwNzI2IiwiYiI6IjQ0MzIxNDY1MyIsImhlYWRpbmciOjI4OC42MzQ4Nzg1NjIyMzI0LCJkaXN0Ijo0MS42MzJ9LCIxNTQwNzM3Mi0yNjM3NjcwNzI2XzE1MjYzMTE4NiI6eyJpZCI6IjE1NDA3MzcyLTI2Mzc2NzA3MjZfMTUyNjMxMTg2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI2Mzc2NzA3MjYiLCJiIjoiMTUyNjMxMTg2IiwiaGVhZGluZyI6MTA0Ljg4OTQyNjcxODc4NCwiZGlzdCI6MTIuOTQzfSwiMTU0MDczNzItMTUyNjMxMTg2XzI2Mzc2NzA3MjYiOnsiaWQiOiIxNTQwNzM3Mi0xNTI2MzExODZfMjYzNzY3MDcyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzExODYiLCJiIjoiMjYzNzY3MDcyNiIsImhlYWRpbmciOjI4NC44ODk0MjY3MTg3ODM5NywiZGlzdCI6MTIuOTQzfSwiMTU0MDgzNDYtMTUyNDI4MzAyXzIxNjcxNjExODEiOnsiaWQiOiIxNTQwODM0Ni0xNTI0MjgzMDJfMjE2NzE2MTE4MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MjgzMDIiLCJiIjoiMjE2NzE2MTE4MSIsImhlYWRpbmciOjE3LjQxNzI3NDA0Nzc5MzY5LCJkaXN0Ijo5Ni40MzN9LCIxNTQwODM0Ni0yMTY3MTYxMTgxXzE1MjQyODMwMiI6eyJpZCI6IjE1NDA4MzQ2LTIxNjcxNjExODFfMTUyNDI4MzAyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjExODEiLCJiIjoiMTUyNDI4MzAyIiwiaGVhZGluZyI6MTk3LjQxNzI3NDA0Nzc5MzY4LCJkaXN0Ijo5Ni40MzN9LCIxNTQwODM0Ni0yMTY3MTYxMTgxXzE1MjcwNTAxNiI6eyJpZCI6IjE1NDA4MzQ2LTIxNjcxNjExODFfMTUyNzA1MDE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNjcxNjExODEiLCJiIjoiMTUyNzA1MDE2IiwiaGVhZGluZyI6MjAuNDAzODMyMjEzNTY3Mjg4LCJkaXN0Ijo4LjI3OX0sIjE1NDA4MzQ2LTE1MjcwNTAxNl8yMTY3MTYxMTgxIjp7ImlkIjoiMTU0MDgzNDYtMTUyNzA1MDE2XzIxNjcxNjExODEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNzA1MDE2IiwiYiI6IjIxNjcxNjExODEiLCJoZWFkaW5nIjoyMDAuNDAzODMyMjEzNTY3MjgsImRpc3QiOjguMjc5fSwiMTU0MDgzNDYtMTUyNzA1MDE2XzE2MjY1NTg1ODUiOnsiaWQiOiIxNTQwODM0Ni0xNTI3MDUwMTZfMTYyNjU1ODU4NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI3MDUwMTYiLCJiIjoiMTYyNjU1ODU4NSIsImhlYWRpbmciOjE5LjE0NTY4NDg1NjYwMDQ1LCJkaXN0IjoxMS43MzV9LCIxNTQwODM0Ni0xNjI2NTU4NTg1XzE1MjcwNTAxNiI6eyJpZCI6IjE1NDA4MzQ2LTE2MjY1NTg1ODVfMTUyNzA1MDE2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTg1ODUiLCJiIjoiMTUyNzA1MDE2IiwiaGVhZGluZyI6MTk5LjE0NTY4NDg1NjYwMDQ0LCJkaXN0IjoxMS43MzV9LCIxNTQwODM0Ni0xNjI2NTU4NTg1XzE1MjYwMTAyNyI6eyJpZCI6IjE1NDA4MzQ2LTE2MjY1NTg1ODVfMTUyNjAxMDI3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTg1ODUiLCJiIjoiMTUyNjAxMDI3IiwiaGVhZGluZyI6MTcuOTY2ODY3Mjk0OTA1MzM1LCJkaXN0IjoxMDYuMDUyfSwiMTU0MDgzNDYtMTUyNjAxMDI3XzE2MjY1NTg1ODUiOnsiaWQiOiIxNTQwODM0Ni0xNTI2MDEwMjdfMTYyNjU1ODU4NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MDEwMjciLCJiIjoiMTYyNjU1ODU4NSIsImhlYWRpbmciOjE5Ny45NjY4NjcyOTQ5MDUzNCwiZGlzdCI6MTA2LjA1Mn0sIjE1NDA4MzQ2LTE1MjYwMTAyN18xNTI0ODY2MDQiOnsiaWQiOiIxNTQwODM0Ni0xNTI2MDEwMjdfMTUyNDg2NjA0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwMTAyNyIsImIiOiIxNTI0ODY2MDQiLCJoZWFkaW5nIjoxNi44MjA1Mzc5ODAxMTY3NSwiZGlzdCI6MTAzLjA3M30sIjE1NDA4MzQ2LTE1MjQ4NjYwNF8xNTI2MDEwMjciOnsiaWQiOiIxNTQwODM0Ni0xNTI0ODY2MDRfMTUyNjAxMDI3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4NjYwNCIsImIiOiIxNTI2MDEwMjciLCJoZWFkaW5nIjoxOTYuODIwNTM3OTgwMTE2NzQsImRpc3QiOjEwMy4wNzN9LCIxNTQwODM0Ni0xNTI0ODY2MDRfNDQzMjE0NjQ2Ijp7ImlkIjoiMTU0MDgzNDYtMTUyNDg2NjA0XzQ0MzIxNDY0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDQiLCJiIjoiNDQzMjE0NjQ2IiwiaGVhZGluZyI6MTkuNzkyMTU1NDYyMjUxNjY3LCJkaXN0Ijo0OC4zMDV9LCIxNTQwODM0Ni00NDMyMTQ2NDZfMTUyNDg2NjA0Ijp7ImlkIjoiMTU0MDgzNDYtNDQzMjE0NjQ2XzE1MjQ4NjYwNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDYiLCJiIjoiMTUyNDg2NjA0IiwiaGVhZGluZyI6MTk5Ljc5MjE1NTQ2MjI1MTY2LCJkaXN0Ijo0OC4zMDV9LCIxNTQwODM0Ni00NDMyMTQ2NDZfMTUyNzIzMzk1Ijp7ImlkIjoiMTU0MDgzNDYtNDQzMjE0NjQ2XzE1MjcyMzM5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDYiLCJiIjoiMTUyNzIzMzk1IiwiaGVhZGluZyI6MTguOTM4NTI4MDI3ODE4MzU3LCJkaXN0Ijo1MC4zOTd9LCIxNTQwODM0Ni0xNTI3MjMzOTVfNDQzMjE0NjQ2Ijp7ImlkIjoiMTU0MDgzNDYtMTUyNzIzMzk1XzQ0MzIxNDY0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI3MjMzOTUiLCJiIjoiNDQzMjE0NjQ2IiwiaGVhZGluZyI6MTk4LjkzODUyODAyNzgxODM2LCJkaXN0Ijo1MC4zOTd9LCIxNTQwODM0Ni0xNTI3MjMzOTVfMTUyNTAyOTY1Ijp7ImlkIjoiMTU0MDgzNDYtMTUyNzIzMzk1XzE1MjUwMjk2NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI3MjMzOTUiLCJiIjoiMTUyNTAyOTY1IiwiaGVhZGluZyI6MTcuNzU0OTEyMDAxMjQxOTY2LCJkaXN0IjoxMTkuODk0fSwiMTU0MDgzNDYtMTUyNTAyOTY1XzE1MjcyMzM5NSI6eyJpZCI6IjE1NDA4MzQ2LTE1MjUwMjk2NV8xNTI3MjMzOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyOTY1IiwiYiI6IjE1MjcyMzM5NSIsImhlYWRpbmciOjE5Ny43NTQ5MTIwMDEyNDE5NiwiZGlzdCI6MTE5Ljg5NH0sIjE1NDEwODg1LTE1MjUwMjM3Ml8yMTY3MTYxMjg1Ijp7ImlkIjoiMTU0MTA4ODUtMTUyNTAyMzcyXzIxNjcxNjEyODUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyMzcyIiwiYiI6IjIxNjcxNjEyODUiLCJoZWFkaW5nIjotNzIuNTU1NTUxOTAxNDIyMjgsImRpc3QiOjExLjA5NH0sIjE1NDEwODg1LTIxNjcxNjEyODVfMTUyNTAyMzcyIjp7ImlkIjoiMTU0MTA4ODUtMjE2NzE2MTI4NV8xNTI1MDIzNzIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTI4NSIsImIiOiIxNTI1MDIzNzIiLCJoZWFkaW5nIjoxMDcuNDQ0NDQ4MDk4NTc3NzIsImRpc3QiOjExLjA5NH0sIjE1NDEwODg1LTIxNjcxNjEyODVfMTA3NzYwMDExNSI6eyJpZCI6IjE1NDEwODg1LTIxNjcxNjEyODVfMTA3NzYwMDExNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMTY3MTYxMjg1IiwiYiI6IjEwNzc2MDAxMTUiLCJoZWFkaW5nIjotNzEuODkzNTA3ODc2NjIyMTEsImRpc3QiOjc0LjkwOH0sIjE1NDEwODg1LTEwNzc2MDAxMTVfMjE2NzE2MTI4NSI6eyJpZCI6IjE1NDEwODg1LTEwNzc2MDAxMTVfMjE2NzE2MTI4NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc3NjAwMTE1IiwiYiI6IjIxNjcxNjEyODUiLCJoZWFkaW5nIjoxMDguMTA2NDkyMTIzMzc3ODksImRpc3QiOjc0LjkwOH0sIjE1NDEwODg1LTEwNzc2MDAxMTVfMTUyNzIzMzk1Ijp7ImlkIjoiMTU0MTA4ODUtMTA3NzYwMDExNV8xNTI3MjMzOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzYwMDExNSIsImIiOiIxNTI3MjMzOTUiLCJoZWFkaW5nIjotNzMuNjA3MjU5MTczMjgxMzUsImRpc3QiOjQ3LjEzN30sIjE1NDEwODg1LTE1MjcyMzM5NV8xMDc3NjAwMTE1Ijp7ImlkIjoiMTU0MTA4ODUtMTUyNzIzMzk1XzEwNzc2MDAxMTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNzIzMzk1IiwiYiI6IjEwNzc2MDAxMTUiLCJoZWFkaW5nIjoxMDYuMzkyNzQwODI2NzE4NjUsImRpc3QiOjQ3LjEzN30sIjE1NDEwODg1LTE1MjcyMzM5NV8xMDc3NTk5MzMxIjp7ImlkIjoiMTU0MTA4ODUtMTUyNzIzMzk1XzEwNzc1OTkzMzEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNzIzMzk1IiwiYiI6IjEwNzc1OTkzMzEiLCJoZWFkaW5nIjotNzEuNjM0MzM3MzM5MTYxNTIsImRpc3QiOjU5LjgxM30sIjE1NDEwODg1LTEwNzc1OTkzMzFfMTUyNzIzMzk1Ijp7ImlkIjoiMTU0MTA4ODUtMTA3NzU5OTMzMV8xNTI3MjMzOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTMzMSIsImIiOiIxNTI3MjMzOTUiLCJoZWFkaW5nIjoxMDguMzY1NjYyNjYwODM4NDgsImRpc3QiOjU5LjgxM30sIjE1NDEwODg1LTEwNzc1OTkzMzFfMTUyNTE2MjEwIjp7ImlkIjoiMTU0MTA4ODUtMTA3NzU5OTMzMV8xNTI1MTYyMTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3NzU5OTMzMSIsImIiOiIxNTI1MTYyMTAiLCJoZWFkaW5nIjotNzAuNjc1NzczMDk5MzYxNjgsImRpc3QiOjQ2LjkwMX0sIjE1NDEwODg1LTE1MjUxNjIxMF8xMDc3NTk5MzMxIjp7ImlkIjoiMTU0MTA4ODUtMTUyNTE2MjEwXzEwNzc1OTkzMzEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTE2MjEwIiwiYiI6IjEwNzc1OTkzMzEiLCJoZWFkaW5nIjoxMDkuMzI0MjI2OTAwNjM4MzIsImRpc3QiOjQ2LjkwMX0sIjE1NDEwODg1LTE1MjUxNjIxMF80NDMyMTQ2NTEiOnsiaWQiOiIxNTQxMDg4NS0xNTI1MTYyMTBfNDQzMjE0NjUxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjIxMCIsImIiOiI0NDMyMTQ2NTEiLCJoZWFkaW5nIjotNzMuOTMwODgwMjMxNTQ3NDIsImRpc3QiOjU2LjA3MX0sIjE1NDEwODg1LTQ0MzIxNDY1MV8xNTI1MTYyMTAiOnsiaWQiOiIxNTQxMDg4NS00NDMyMTQ2NTFfMTUyNTE2MjEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY1MSIsImIiOiIxNTI1MTYyMTAiLCJoZWFkaW5nIjoxMDYuMDY5MTE5NzY4NDUyNTgsImRpc3QiOjU2LjA3MX0sIjE1NDEwODg1LTQ0MzIxNDY1MV8xNTI0NTY2MzAiOnsiaWQiOiIxNTQxMDg4NS00NDMyMTQ2NTFfMTUyNDU2NjMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY1MSIsImIiOiIxNTI0NTY2MzAiLCJoZWFkaW5nIjotNjkuMzM5Mjc1MjAyMjIxNzQsImRpc3QiOjU2LjU1NX0sIjE1NDEwODg1LTE1MjQ1NjYzMF80NDMyMTQ2NTEiOnsiaWQiOiIxNTQxMDg4NS0xNTI0NTY2MzBfNDQzMjE0NjUxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1NjYzMCIsImIiOiI0NDMyMTQ2NTEiLCJoZWFkaW5nIjoxMTAuNjYwNzI0Nzk3Nzc4MjYsImRpc3QiOjU2LjU1NX0sIjE1NDEwODg1LTE1MjQ1NjYzMF8xNTI1ODM0MTAiOnsiaWQiOiIxNTQxMDg4NS0xNTI0NTY2MzBfMTUyNTgzNDEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1NjYzMCIsImIiOiIxNTI1ODM0MTAiLCJoZWFkaW5nIjotNzIuNDA0OTA1NzgxMTU4NSwiZGlzdCI6MTEwLjAyfSwiMTU0MTA4ODUtMTUyNTgzNDEwXzE1MjQ1NjYzMCI6eyJpZCI6IjE1NDEwODg1LTE1MjU4MzQxMF8xNTI0NTY2MzAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDEwIiwiYiI6IjE1MjQ1NjYzMCIsImhlYWRpbmciOjEwNy41OTUwOTQyMTg4NDE1LCJkaXN0IjoxMTAuMDJ9LCIxNTQxMDg4NS0xNTI1ODM0MTBfMTUyMzkzNTI0Ijp7ImlkIjoiMTU0MTA4ODUtMTUyNTgzNDEwXzE1MjM5MzUyNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODM0MTAiLCJiIjoiMTUyMzkzNTI0IiwiaGVhZGluZyI6LTcxLjIxMjc1MDcxMDkzMzg1LCJkaXN0IjoxMDYuNzA5fSwiMTU0MTA4ODUtMTUyMzkzNTI0XzE1MjU4MzQxMCI6eyJpZCI6IjE1NDEwODg1LTE1MjM5MzUyNF8xNTI1ODM0MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTI0IiwiYiI6IjE1MjU4MzQxMCIsImhlYWRpbmciOjEwOC43ODcyNDkyODkwNjYxNSwiZGlzdCI6MTA2LjcwOX0sIjE1NDEwODg1LTE1MjM5MzUyNF8xNTI2MzY4ODgiOnsiaWQiOiIxNTQxMDg4NS0xNTIzOTM1MjRfMTUyNjM2ODg4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUyNCIsImIiOiIxNTI2MzY4ODgiLCJoZWFkaW5nIjotNzEuNDY5MjE1MDc5NjEwNjUsImRpc3QiOjExMS42MjF9LCIxNTQxMDg4NS0xNTI2MzY4ODhfMTUyMzkzNTI0Ijp7ImlkIjoiMTU0MTA4ODUtMTUyNjM2ODg4XzE1MjM5MzUyNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MzY4ODgiLCJiIjoiMTUyMzkzNTI0IiwiaGVhZGluZyI6MTA4LjUzMDc4NDkyMDM4OTM1LCJkaXN0IjoxMTEuNjIxfSwiMjU3NTg0MTItMTUyNDI4MzAyXzE1MjQyODMwNSI6eyJpZCI6IjI1NzU4NDEyLTE1MjQyODMwMl8xNTI0MjgzMDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzAyIiwiYiI6IjE1MjQyODMwNSIsImhlYWRpbmciOi03MS4xNTA5NzY0Mzk5MDU2LCJkaXN0IjoxMDkuODAzfSwiMjU3NTg0MTItMTUyNDI4MzA1XzE1MjQyODMwMiI6eyJpZCI6IjI1NzU4NDEyLTE1MjQyODMwNV8xNTI0MjgzMDIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzA1IiwiYiI6IjE1MjQyODMwMiIsImhlYWRpbmciOjEwOC44NDkwMjM1NjAwOTQ0LCJkaXN0IjoxMDkuODAzfSwiMjU3NTg0MTItMTUyNDI4MzA1XzE1MjQyODMwOCI6eyJpZCI6IjI1NzU4NDEyLTE1MjQyODMwNV8xNTI0MjgzMDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzA1IiwiYiI6IjE1MjQyODMwOCIsImhlYWRpbmciOi03My4wNzI1MTM1OTUxMDQ2OCwiZGlzdCI6MTA2LjYwOX0sIjI1NzU4NDEyLTE1MjQyODMwOF8xNTI0MjgzMDUiOnsiaWQiOiIyNTc1ODQxMi0xNTI0MjgzMDhfMTUyNDI4MzA1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQyODMwOCIsImIiOiIxNTI0MjgzMDUiLCJoZWFkaW5nIjoxMDYuOTI3NDg2NDA0ODk1MzIsImRpc3QiOjEwNi42MDl9LCIyNTc1ODQxMi0xNTI0MjgzMDhfMTUyNDI4MzEwIjp7ImlkIjoiMjU3NTg0MTItMTUyNDI4MzA4XzE1MjQyODMxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MjgzMDgiLCJiIjoiMTUyNDI4MzEwIiwiaGVhZGluZyI6LTcyLjAxMTE4MzUxMDE4NTYzLCJkaXN0IjoxMTEuMjc4fSwiMjU3NTg0MTItMTUyNDI4MzEwXzE1MjQyODMwOCI6eyJpZCI6IjI1NzU4NDEyLTE1MjQyODMxMF8xNTI0MjgzMDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzEwIiwiYiI6IjE1MjQyODMwOCIsImhlYWRpbmciOjEwNy45ODg4MTY0ODk4MTQzNywiZGlzdCI6MTExLjI3OH0sIjI1NzU4NDEyLTE1MjQyODMxMF8xNTIzOTM1MDciOnsiaWQiOiIyNTc1ODQxMi0xNTI0MjgzMTBfMTUyMzkzNTA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQyODMxMCIsImIiOiIxNTIzOTM1MDciLCJoZWFkaW5nIjotNzEuNTQwNTQ5MDYwODczNzcsImRpc3QiOjEwOC41MzZ9LCIyNTc1ODQxMi0xNTIzOTM1MDdfMTUyNDI4MzEwIjp7ImlkIjoiMjU3NTg0MTItMTUyMzkzNTA3XzE1MjQyODMxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MDciLCJiIjoiMTUyNDI4MzEwIiwiaGVhZGluZyI6MTA4LjQ1OTQ1MDkzOTEyNjIzLCJkaXN0IjoxMDguNTM2fSwiMjU3NTg0MTItMTUyMzkzNTA3XzE1MjQyODMxMiI6eyJpZCI6IjI1NzU4NDEyLTE1MjM5MzUwN18xNTI0MjgzMTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTA3IiwiYiI6IjE1MjQyODMxMiIsImhlYWRpbmciOi03MS42OTk5NzQwNjA0NzM5NSwiZGlzdCI6MTA5LjQ0OX0sIjI1NzU4NDEyLTE1MjQyODMxMl8xNTIzOTM1MDciOnsiaWQiOiIyNTc1ODQxMi0xNTI0MjgzMTJfMTUyMzkzNTA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQyODMxMiIsImIiOiIxNTIzOTM1MDciLCJoZWFkaW5nIjoxMDguMzAwMDI1OTM5NTI2MDUsImRpc3QiOjEwOS40NDl9LCIyNTc1ODQxNC0xNTI1NTQ5ODBfMjYzNzY1Mjc1NSI6eyJpZCI6IjI1NzU4NDE0LTE1MjU1NDk4MF8yNjM3NjUyNzU1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU1NDk4MCIsImIiOiIyNjM3NjUyNzU1IiwiaGVhZGluZyI6MTA2LjA2ODIwNzE2NjM5NTg4LCJkaXN0Ijo4LjAxfSwiMjU3NTg0MTQtMjYzNzY1Mjc1NV8xNTI1NTQ5ODAiOnsiaWQiOiIyNTc1ODQxNC0yNjM3NjUyNzU1XzE1MjU1NDk4MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjUyNzU1IiwiYiI6IjE1MjU1NDk4MCIsImhlYWRpbmciOjI4Ni4wNjgyMDcxNjYzOTU5LCJkaXN0Ijo4LjAxfSwiMjU3NTg0MTQtMjYzNzY1Mjc1NV8xMDc4OTE5NDI5Ijp7ImlkIjoiMjU3NTg0MTQtMjYzNzY1Mjc1NV8xMDc4OTE5NDI5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI2Mzc2NTI3NTUiLCJiIjoiMTA3ODkxOTQyOSIsImhlYWRpbmciOjEwNy4zMjk3NDEyNTUxNDcyMywiZGlzdCI6NDguMzgxfSwiMjU3NTg0MTQtMTA3ODkxOTQyOV8yNjM3NjUyNzU1Ijp7ImlkIjoiMjU3NTg0MTQtMTA3ODkxOTQyOV8yNjM3NjUyNzU1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTk0MjkiLCJiIjoiMjYzNzY1Mjc1NSIsImhlYWRpbmciOjI4Ny4zMjk3NDEyNTUxNDcyLCJkaXN0Ijo0OC4zODF9LCIyNTc1ODQxNC0xMDc4OTE5NDI5XzEwNzg5MTgyNzkiOnsiaWQiOiIyNTc1ODQxNC0xMDc4OTE5NDI5XzEwNzg5MTgyNzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxOTQyOSIsImIiOiIxMDc4OTE4Mjc5IiwiaGVhZGluZyI6MTA5Ljk5Mjk4MDkxNTA0MjIxLCJkaXN0IjoxOS40NTR9LCIyNTc1ODQxNC0xMDc4OTE4Mjc5XzEwNzg5MTk0MjkiOnsiaWQiOiIyNTc1ODQxNC0xMDc4OTE4Mjc5XzEwNzg5MTk0MjkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxODI3OSIsImIiOiIxMDc4OTE5NDI5IiwiaGVhZGluZyI6Mjg5Ljk5Mjk4MDkxNTA0MjIsImRpc3QiOjE5LjQ1NH0sIjI1NzU4NDE0LTEwNzg5MTgyNzlfMjYzNzY1Mjc1MiI6eyJpZCI6IjI1NzU4NDE0LTEwNzg5MTgyNzlfMjYzNzY1Mjc1MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxMDc4OTE4Mjc5IiwiYiI6IjI2Mzc2NTI3NTIiLCJoZWFkaW5nIjoxMDguMjIwNTM3NjMxNjU4MjcsImRpc3QiOjIxLjI3M30sIjI1NzU4NDE0LTI2Mzc2NTI3NTJfMTA3ODkxODI3OSI6eyJpZCI6IjI1NzU4NDE0LTI2Mzc2NTI3NTJfMTA3ODkxODI3OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjUyNzUyIiwiYiI6IjEwNzg5MTgyNzkiLCJoZWFkaW5nIjoyODguMjIwNTM3NjMxNjU4MjYsImRpc3QiOjIxLjI3M30sIjI1NzU4NDE0LTI2Mzc2NTI3NTJfMTUyNTU0OTgzIjp7ImlkIjoiMjU3NTg0MTQtMjYzNzY1Mjc1Ml8xNTI1NTQ5ODMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY1Mjc1MiIsImIiOiIxNTI1NTQ5ODMiLCJoZWFkaW5nIjoxMDcuNDQzNjYwNzUzOTUwMTQsImRpc3QiOjExLjA5NH0sIjI1NzU4NDE0LTE1MjU1NDk4M18yNjM3NjUyNzUyIjp7ImlkIjoiMjU3NTg0MTQtMTUyNTU0OTgzXzI2Mzc2NTI3NTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTU0OTgzIiwiYiI6IjI2Mzc2NTI3NTIiLCJoZWFkaW5nIjoyODcuNDQzNjYwNzUzOTUwMTYsImRpc3QiOjExLjA5NH0sIjI1NzU4NDE0LTE1MjU1NDk4M18yNjM3NjUyNzUxIjp7ImlkIjoiMjU3NTg0MTQtMTUyNTU0OTgzXzI2Mzc2NTI3NTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTU0OTgzIiwiYiI6IjI2Mzc2NTI3NTEiLCJoZWFkaW5nIjoxMDkuMDY3MTg5NTE4ODc3ODgsImRpc3QiOjEwLjE4fSwiMjU3NTg0MTQtMjYzNzY1Mjc1MV8xNTI1NTQ5ODMiOnsiaWQiOiIyNTc1ODQxNC0yNjM3NjUyNzUxXzE1MjU1NDk4MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNjM3NjUyNzUxIiwiYiI6IjE1MjU1NDk4MyIsImhlYWRpbmciOjI4OS4wNjcxODk1MTg4Nzc4NSwiZGlzdCI6MTAuMTh9LCIyNTc1ODQxNC0yNjM3NjUyNzUxXzEwNzg5MTkzNTQiOnsiaWQiOiIyNTc1ODQxNC0yNjM3NjUyNzUxXzEwNzg5MTkzNTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY1Mjc1MSIsImIiOiIxMDc4OTE5MzU0IiwiaGVhZGluZyI6MTA0Ljg4OTE0MTIwMzI0MTAyLCJkaXN0IjoxMi45NDN9LCIyNTc1ODQxNC0xMDc4OTE5MzU0XzI2Mzc2NTI3NTEiOnsiaWQiOiIyNTc1ODQxNC0xMDc4OTE5MzU0XzI2Mzc2NTI3NTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxOTM1NCIsImIiOiIyNjM3NjUyNzUxIiwiaGVhZGluZyI6Mjg0Ljg4OTE0MTIwMzI0MSwiZGlzdCI6MTIuOTQzfSwiMjU3NTg0MTQtMTA3ODkxOTM1NF8xMDc4OTE5MDg3Ijp7ImlkIjoiMjU3NTg0MTQtMTA3ODkxOTM1NF8xMDc4OTE5MDg3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTkzNTQiLCJiIjoiMTA3ODkxOTA4NyIsImhlYWRpbmciOjExMi4xMjgzNTYxOTg5NDAxOCwiZGlzdCI6MTcuNjU4fSwiMjU3NTg0MTQtMTA3ODkxOTA4N18xMDc4OTE5MzU0Ijp7ImlkIjoiMjU3NTg0MTQtMTA3ODkxOTA4N18xMDc4OTE5MzU0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzg5MTkwODciLCJiIjoiMTA3ODkxOTM1NCIsImhlYWRpbmciOjI5Mi4xMjgzNTYxOTg5NDAyLCJkaXN0IjoxNy42NTh9LCIyNTc1ODQxNC0xMDc4OTE5MDg3XzEwNzg5MTk0NjQiOnsiaWQiOiIyNTc1ODQxNC0xMDc4OTE5MDg3XzEwNzg5MTk0NjQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxOTA4NyIsImIiOiIxMDc4OTE5NDY0IiwiaGVhZGluZyI6MTA2LjUwMjUwMzUyMjkzMDc4LCJkaXN0IjozNS4xMjR9LCIyNTc1ODQxNC0xMDc4OTE5NDY0XzEwNzg5MTkwODciOnsiaWQiOiIyNTc1ODQxNC0xMDc4OTE5NDY0XzEwNzg5MTkwODciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxOTQ2NCIsImIiOiIxMDc4OTE5MDg3IiwiaGVhZGluZyI6Mjg2LjUwMjUwMzUyMjkzMDgsImRpc3QiOjM1LjEyNH0sIjI1NzU4NDE0LTEwNzg5MTk0NjRfMTUyNTM5NjU1Ijp7ImlkIjoiMjU3NTg0MTQtMTA3ODkxOTQ2NF8xNTI1Mzk2NTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3ODkxOTQ2NCIsImIiOiIxNTI1Mzk2NTUiLCJoZWFkaW5nIjoxMTAuMzg3Nzc0NTU2MjY4NCwiZGlzdCI6MzEuODIxfSwiMjU3NTg0MTQtMTUyNTM5NjU1XzEwNzg5MTk0NjQiOnsiaWQiOiIyNTc1ODQxNC0xNTI1Mzk2NTVfMTA3ODkxOTQ2NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1Mzk2NTUiLCJiIjoiMTA3ODkxOTQ2NCIsImhlYWRpbmciOjI5MC4zODc3NzQ1NTYyNjgzNywiZGlzdCI6MzEuODIxfSwiMjczOTE2NDYtMTUyNDgwMjA5XzQ0MzE4MjMzMyI6eyJpZCI6IjI3MzkxNjQ2LTE1MjQ4MDIwOV80NDMxODIzMzMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDgwMjA5IiwiYiI6IjQ0MzE4MjMzMyIsImhlYWRpbmciOi0xNjMuNTU3ODU4MDY2MjE5MzIsImRpc3QiOjU3Ljc5Mn0sIjI3MzkxNjQ2LTQ0MzE4MjMzM18xNTI2Nzk0NjYiOnsiaWQiOiIyNzM5MTY0Ni00NDMxODIzMzNfMTUyNjc5NDY2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjMzMyIsImIiOiIxNTI2Nzk0NjYiLCJoZWFkaW5nIjotMTYzLjE1NDM1MzE1Njg2MzkyLCJkaXN0Ijo0OS44MDZ9LCIyNzM5MTY0Ni0xNTI2Nzk0NjZfNDQzMTgyMzM0Ijp7ImlkIjoiMjczOTE2NDYtMTUyNjc5NDY2XzQ0MzE4MjMzNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2Nzk0NjYiLCJiIjoiNDQzMTgyMzM0IiwiaGVhZGluZyI6LTE2Mi42NDcxMTY3NDMzOTcxMywiZGlzdCI6NTguMDcyfSwiMjczOTE2NDYtNDQzMTgyMzM0XzE1MjM5ODIxNyI6eyJpZCI6IjI3MzkxNjQ2LTQ0MzE4MjMzNF8xNTIzOTgyMTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzM0IiwiYiI6IjE1MjM5ODIxNyIsImhlYWRpbmciOi0xNjIuOTExNzE2MjE1NDM4NjIsImRpc3QiOjU1LjY2OX0sIjI3Mzk4MDM1LTE1MjcyMzQwNF8yMTY3MTYxMjczIjp7ImlkIjoiMjczOTgwMzUtMTUyNzIzNDA0XzIxNjcxNjEyNzMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNzIzNDA0IiwiYiI6IjIxNjcxNjEyNzMiLCJoZWFkaW5nIjotMTY1LjQwNDcyOTY1OTY0NjQ4LCJkaXN0IjoxMS40NTV9LCIyNzM5ODAzNS0yMTY3MTYxMjczXzI3NDM1MDY3MDQiOnsiaWQiOiIyNzM5ODAzNS0yMTY3MTYxMjczXzI3NDM1MDY3MDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjE2NzE2MTI3MyIsImIiOiIyNzQzNTA2NzA0IiwiaGVhZGluZyI6LTE1Ni41Mzk3Njc3MjQxNDU2LCJkaXN0IjoyLjQxN30sIjI3Mzk4MDM1LTI3NDM1MDY3MDRfMTUyNDgwMjA5Ijp7ImlkIjoiMjczOTgwMzUtMjc0MzUwNjcwNF8xNTI0ODAyMDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjc0MzUwNjcwNCIsImIiOiIxNTI0ODAyMDkiLCJoZWFkaW5nIjotMTYyLjE3ODcwNjI0NzE1NDgyLCJkaXN0Ijo5NC4zMn0sIjI3NDAxMjQwLTE1MjUxMjg0NF8xNjI2NTQ3MDMxIjp7ImlkIjoiMjc0MDEyNDAtMTUyNTEyODQ0XzE2MjY1NDcwMzEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTEyODQ0IiwiYiI6IjE2MjY1NDcwMzEiLCJoZWFkaW5nIjoxMDcuMTYwNjA0Njg3ODYwNjEsImRpc3QiOjk3LjY4Nn0sIjI3NDAxMjQwLTE2MjY1NDcwMzFfMTUyNDU2NjA3Ijp7ImlkIjoiMjc0MDEyNDAtMTYyNjU0NzAzMV8xNTI0NTY2MDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU0NzAzMSIsImIiOiIxNTI0NTY2MDciLCJoZWFkaW5nIjo4NS4yOTU2NDc1MTI3NDAwOSwiZGlzdCI6MTMuNTE3fSwiMjc0MDEyNDEtMTUyMzk4MjI3XzE4NTExOTI1MjAiOnsiaWQiOiIyNzQwMTI0MS0xNTIzOTgyMjdfMTg1MTE5MjUyMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMjciLCJiIjoiMTg1MTE5MjUyMCIsImhlYWRpbmciOi0xNjIuNDI2OTA4NzY4MzQ2OCwiZGlzdCI6ODYuMDV9LCIyNzQwMTI0MS0xODUxMTkyNTIwXzE2MjY1NDcwMzQiOnsiaWQiOiIyNzQwMTI0MS0xODUxMTkyNTIwXzE2MjY1NDcwMzQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTg1MTE5MjUyMCIsImIiOiIxNjI2NTQ3MDM0IiwiaGVhZGluZyI6MTc1LjAzOTE2OTgzMDQ5NDA3LCJkaXN0IjoxMS4xMjd9LCIyNzQwMTI0My0xNTIzOTgyMjdfNDQzMTgyMzQ0Ijp7ImlkIjoiMjc0MDEyNDMtMTUyMzk4MjI3XzQ0MzE4MjM0NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMjciLCJiIjoiNDQzMTgyMzQ0IiwiaGVhZGluZyI6MTYuNzk5NTA0MjQ2NzgyODI0LCJkaXN0Ijo1My4yNjh9LCIyNzQwMTI0My00NDMxODIzNDRfMTUyMzk4MjI3Ijp7ImlkIjoiMjc0MDEyNDMtNDQzMTgyMzQ0XzE1MjM5ODIyNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDQiLCJiIjoiMTUyMzk4MjI3IiwiaGVhZGluZyI6MTk2Ljc5OTUwNDI0Njc4MjgyLCJkaXN0Ijo1My4yNjh9LCIyNzQwMTI0My00NDMxODIzNDRfMTUyNTgzMzk1Ijp7ImlkIjoiMjc0MDEyNDMtNDQzMTgyMzQ0XzE1MjU4MzM5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDQiLCJiIjoiMTUyNTgzMzk1IiwiaGVhZGluZyI6MTYuNDQyMDYyNjM3NjEzMTQ4LCJkaXN0Ijo1Ny43OTJ9LCIyNzQwMTI0My0xNTI1ODMzOTVfNDQzMTgyMzQ0Ijp7ImlkIjoiMjc0MDEyNDMtMTUyNTgzMzk1XzQ0MzE4MjM0NCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODMzOTUiLCJiIjoiNDQzMTgyMzQ0IiwiaGVhZGluZyI6MTk2LjQ0MjA2MjYzNzYxMzE2LCJkaXN0Ijo1Ny43OTJ9LCIyNzQwMTI0My0xNTI1ODMzOTVfNDQzMTgyMzQ2Ijp7ImlkIjoiMjc0MDEyNDMtMTUyNTgzMzk1XzQ0MzE4MjM0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODMzOTUiLCJiIjoiNDQzMTgyMzQ2IiwiaGVhZGluZyI6MTguMDI5NjM2NDE2MzYzMTI1LCJkaXN0Ijo1NS45NTl9LCIyNzQwMTI0My00NDMxODIzNDZfMTUyNTgzMzk1Ijp7ImlkIjoiMjc0MDEyNDMtNDQzMTgyMzQ2XzE1MjU4MzM5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDYiLCJiIjoiMTUyNTgzMzk1IiwiaGVhZGluZyI6MTk4LjAyOTYzNjQxNjM2MzEzLCJkaXN0Ijo1NS45NTl9LCIyNzQwMTI0My00NDMxODIzNDZfMTUyNDgwMjE0Ijp7ImlkIjoiMjc0MDEyNDMtNDQzMTgyMzQ2XzE1MjQ4MDIxNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODIzNDYiLCJiIjoiMTUyNDgwMjE0IiwiaGVhZGluZyI6MTguNzU5NjM3MjE0NDc0ODM2LCJkaXN0Ijo1My44NTV9LCIyNzQwMTI0My0xNTI0ODAyMTRfNDQzMTgyMzQ2Ijp7ImlkIjoiMjc0MDEyNDMtMTUyNDgwMjE0XzQ0MzE4MjM0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODAyMTQiLCJiIjoiNDQzMTgyMzQ2IiwiaGVhZGluZyI6MTk4Ljc1OTYzNzIxNDQ3NDgyLCJkaXN0Ijo1My44NTV9LCIyNzQwMTI1My0xNTI1MTI4NDRfMTYyNjU0NzAyNiI6eyJpZCI6IjI3NDAxMjUzLTE1MjUxMjg0NF8xNjI2NTQ3MDI2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxMjg0NCIsImIiOiIxNjI2NTQ3MDI2IiwiaGVhZGluZyI6LTY0LjEyMjYwMjg4MDIyNjY3LCJkaXN0Ijo0MC42NH0sIjI3NDAxMjUzLTE2MjY1NDcwMjZfMTUyNTEyODQ0Ijp7ImlkIjoiMjc0MDEyNTMtMTYyNjU0NzAyNl8xNTI1MTI4NDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU0NzAyNiIsImIiOiIxNTI1MTI4NDQiLCJoZWFkaW5nIjoxMTUuODc3Mzk3MTE5NzczMzMsImRpc3QiOjQwLjY0fSwiMjc0MDEyNTMtMTYyNjU0NzAyNl8xNTIzOTM0ODMiOnsiaWQiOiIyNzQwMTI1My0xNjI2NTQ3MDI2XzE1MjM5MzQ4MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTQ3MDI2IiwiYiI6IjE1MjM5MzQ4MyIsImhlYWRpbmciOi03MC4xOTk3MzE0ODkyMzc1NCwiZGlzdCI6NjUuNDUzfSwiMjc0MDEyNTMtMTUyMzkzNDgzXzE2MjY1NDcwMjYiOnsiaWQiOiIyNzQwMTI1My0xNTIzOTM0ODNfMTYyNjU0NzAyNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODMiLCJiIjoiMTYyNjU0NzAyNiIsImhlYWRpbmciOjEwOS44MDAyNjg1MTA3NjI0NiwiZGlzdCI6NjUuNDUzfSwiMzAxNDg2NzAtMTUyNTAwNzIyXzE1MjM5MzQ3NSI6eyJpZCI6IjMwMTQ4NjcwLTE1MjUwMDcyMl8xNTIzOTM0NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAwNzIyIiwiYiI6IjE1MjM5MzQ3NSIsImhlYWRpbmciOi03Mi42MTA1NDUzNDg2MjcyMywiZGlzdCI6MTAzLjg2MX0sIjMwMTQ4NjcwLTE1MjM5MzQ3NV8xNTI1MDA3MjIiOnsiaWQiOiIzMDE0ODY3MC0xNTIzOTM0NzVfMTUyNTAwNzIyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ3NSIsImIiOiIxNTI1MDA3MjIiLCJoZWFkaW5nIjoxMDcuMzg5NDU0NjUxMzcyNzcsImRpc3QiOjEwMy44NjF9LCIzMDE0ODY4NC0xNTI0OTY5NTNfMTUyNDk2OTQ2Ijp7ImlkIjoiMzAxNDg2ODQtMTUyNDk2OTUzXzE1MjQ5Njk0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTY5NTMiLCJiIjoiMTUyNDk2OTQ2IiwiaGVhZGluZyI6LTcyLjAxMzM3NzM5MTI3NzYxLCJkaXN0IjoxMTEuMjkxfSwiMzAxNDg2ODQtMTUyNDk2OTQ2XzE1MjQ5Njk1MyI6eyJpZCI6IjMwMTQ4Njg0LTE1MjQ5Njk0Nl8xNTI0OTY5NTMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDk2OTQ2IiwiYiI6IjE1MjQ5Njk1MyIsImhlYWRpbmciOjEwNy45ODY2MjI2MDg3MjIzOSwiZGlzdCI6MTExLjI5MX0sIjMwMTQ4Njg0LTE1MjQ5Njk0Nl8xNTI0OTY5NDAiOnsiaWQiOiIzMDE0ODY4NC0xNTI0OTY5NDZfMTUyNDk2OTQwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njk0NiIsImIiOiIxNTI0OTY5NDAiLCJoZWFkaW5nIjotNzIuMTkwOTgzMDQwOTAzNjksImRpc3QiOjEwNS4xMTV9LCIzMDE0ODY4NC0xNTI0OTY5NDBfMTUyNDk2OTQ2Ijp7ImlkIjoiMzAxNDg2ODQtMTUyNDk2OTQwXzE1MjQ5Njk0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTY5NDAiLCJiIjoiMTUyNDk2OTQ2IiwiaGVhZGluZyI6MTA3LjgwOTAxNjk1OTA5NjMxLCJkaXN0IjoxMDUuMTE1fSwiMzAxNDg3NDAtMTUyNDQ3MzU5XzQ0MzE4Njk4MyI6eyJpZCI6IjMwMTQ4NzQwLTE1MjQ0NzM1OV80NDMxODY5ODMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ0NzM1OSIsImIiOiI0NDMxODY5ODMiLCJoZWFkaW5nIjoxNy43ODYwOTY4MTE4ODQyMywiZGlzdCI6NTMuNTU0fSwiMzAxNDg3NDAtNDQzMTg2OTgzXzE1MjUxNjY0NCI6eyJpZCI6IjMwMTQ4NzQwLTQ0MzE4Njk4M18xNTI1MTY2NDQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4Njk4MyIsImIiOiIxNTI1MTY2NDQiLCJoZWFkaW5nIjoxNy41MTgyNjYyMDk3NjIzOSwiZGlzdCI6NTEuMTQ5fSwiMzAxNDg3NDAtMTUyNTE2NjQ0XzQ0MzE4Njk4NiI6eyJpZCI6IjMwMTQ4NzQwLTE1MjUxNjY0NF80NDMxODY5ODYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUxNjY0NCIsImIiOiI0NDMxODY5ODYiLCJoZWFkaW5nIjoxNy4wODg4ODE4NzMwMjk5OTcsImRpc3QiOjU1LjY2OX0sIjMwMTQ4NzQwLTQ0MzE4Njk4Nl8xNTI0MDE5MDUiOnsiaWQiOiIzMDE0ODc0MC00NDMxODY5ODZfMTUyNDAxOTA1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODY5ODYiLCJiIjoiMTUyNDAxOTA1IiwiaGVhZGluZyI6MTguMTU1NDI1OTE2NzQ5NjcsImRpc3QiOjUyLjQ5OX0sIjMwNTExMzg5LTE1MjQ5NjkzN18yNDgxOTMwNjg3Ijp7ImlkIjoiMzA1MTEzODktMTUyNDk2OTM3XzI0ODE5MzA2ODciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDk2OTM3IiwiYiI6IjI0ODE5MzA2ODciLCJoZWFkaW5nIjotNzMuNDk4ODk4MjIwNTM3NjcsImRpc3QiOjM1LjEyN30sIjMwNTExMzg5LTI0ODE5MzA2ODdfMjQ4MTkzMDY4OCI6eyJpZCI6IjMwNTExMzg5LTI0ODE5MzA2ODdfMjQ4MTkzMDY4OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNDgxOTMwNjg3IiwiYiI6IjI0ODE5MzA2ODgiLCJoZWFkaW5nIjotNzIuNzY4MjE1NDAyMjYxNCwiZGlzdCI6MjYuMTk1fSwiMzA1MTEzODktMjQ4MTkzMDY4OF80NDMxODUxMjkiOnsiaWQiOiIzMDUxMTM4OS0yNDgxOTMwNjg4XzQ0MzE4NTEyOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNDgxOTMwNjg4IiwiYiI6IjQ0MzE4NTEyOSIsImhlYWRpbmciOi03MS43ODExMzAyNjUxODcxOSwiZGlzdCI6Ny4wOTF9LCIzMDUxMTM4OS00NDMxODUxMjlfMTUyNTAwNzA4Ijp7ImlkIjoiMzA1MTEzODktNDQzMTg1MTI5XzE1MjUwMDcwOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODUxMjkiLCJiIjoiMTUyNTAwNzA4IiwiaGVhZGluZyI6LTcxLjIyNDg5NDk1MzY2NzQsImRpc3QiOjYxLjk5OH0sIjMwNTExMzg5LTE1MjUwMDcwOF8xNTI1MDA3MTEiOnsiaWQiOiIzMDUxMTM4OS0xNTI1MDA3MDhfMTUyNTAwNzExIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcwOCIsImIiOiIxNTI1MDA3MTEiLCJoZWFkaW5nIjotNzEuMDc0ODE3MTI2ODAzMjMsImRpc3QiOjg1LjQ1MX0sIjMwNTExMzg5LTE1MjUwMDcxMV8xNTI1MDA3MTciOnsiaWQiOiIzMDUxMTM4OS0xNTI1MDA3MTFfMTUyNTAwNzE3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcxMSIsImIiOiIxNTI1MDA3MTciLCJoZWFkaW5nIjotNzIuMTIxOTczMDU4MjUyNjgsImRpc3QiOjI1LjI3OH0sIjMwNTExMzg5LTE1MjUwMDcxN18xNTI1MDA3MTkiOnsiaWQiOiIzMDUxMTM4OS0xNTI1MDA3MTdfMTUyNTAwNzE5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcxNyIsImIiOiIxNTI1MDA3MTkiLCJoZWFkaW5nIjotNzEuNTU3MjQ5MDAwODIzMjIsImRpc3QiOjc3LjA5M30sIjMwNTExMzg5LTE1MjUwMDcxOV8yMzI4OTM5NzQ3Ijp7ImlkIjoiMzA1MTEzODktMTUyNTAwNzE5XzIzMjg5Mzk3NDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAwNzE5IiwiYiI6IjIzMjg5Mzk3NDciLCJoZWFkaW5nIjotNzMuOTMzMTY0MjM4NDQxNDYsImRpc3QiOjMyLjA0NX0sIjMwNTExMzg5LTIzMjg5Mzk3NDdfMTUyNTAwNzIyIjp7ImlkIjoiMzA1MTEzODktMjMyODkzOTc0N18xNTI1MDA3MjIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjMyODkzOTc0NyIsImIiOiIxNTI1MDA3MjIiLCJoZWFkaW5nIjotNzIuMTY0NzcxMTg2MzI0NzEsImRpc3QiOjExMi4yMDV9LCIzMDYwMjMyNC0zMzIyMzIxMjZfMTUyNDQ3MzU5Ijp7ImlkIjoiMzA2MDIzMjQtMzMyMjMyMTI2XzE1MjQ0NzM1OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzMyMjMyMTI2IiwiYiI6IjE1MjQ0NzM1OSIsImhlYWRpbmciOjEzLjkyOTAxNzc4OTkxMTUzOSwiZGlzdCI6Ny45OTV9LCIzMDYwMjMyNi0xNTI0OTY5NTNfMTUyNTM5NjM4Ijp7ImlkIjoiMzA2MDIzMjYtMTUyNDk2OTUzXzE1MjUzOTYzOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk2OTUzIiwiYiI6IjE1MjUzOTYzOCIsImhlYWRpbmciOjIzLjQ2MjEwMjI4NDM2NzQxNSwiZGlzdCI6Mi40MTd9LCIzMDYwMjMyNi0xNTI1Mzk2MzhfNDQzMTg3MDQ3Ijp7ImlkIjoiMzA2MDIzMjYtMTUyNTM5NjM4XzQ0MzE4NzA0NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjM4IiwiYiI6IjQ0MzE4NzA0NyIsImhlYWRpbmciOjE4LjAzMDk5NjU3NjMxNzU2MywiZGlzdCI6NTUuOTZ9LCIzMDYwMjMyNi00NDMxODcwNDdfMzMyMjMyMTI2Ijp7ImlkIjoiMzA2MDIzMjYtNDQzMTg3MDQ3XzMzMjIzMjEyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDQ3IiwiYiI6IjMzMjIzMjEyNiIsImhlYWRpbmciOjE4LjQ2MjI2NzI2MjEwMDI2NiwiZGlzdCI6NDUuNTh9LCIzMDc1Njc1NS0xNTI2NTExMDFfMTUyNTQ2MTk1Ijp7ImlkIjoiMzA3NTY3NTUtMTUyNjUxMTAxXzE1MjU0NjE5NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2NTExMDEiLCJiIjoiMTUyNTQ2MTk1IiwiaGVhZGluZyI6MTguNDI5Njg4OTM0OTk3MTksImRpc3QiOjEzMC44NzJ9LCIzMDc1Njc1NS0xNTI1NDYxOTVfMTUyNjUxMTAxIjp7ImlkIjoiMzA3NTY3NTUtMTUyNTQ2MTk1XzE1MjY1MTEwMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NDYxOTUiLCJiIjoiMTUyNjUxMTAxIiwiaGVhZGluZyI6MTk4LjQyOTY4ODkzNDk5NzIsImRpc3QiOjEzMC44NzJ9LCIzMTE2NTk2Mi0xNTIzOTM0ODNfMTUyNTEyODQ2Ijp7ImlkIjoiMzExNjU5NjItMTUyMzkzNDgzXzE1MjUxMjg0NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODMiLCJiIjoiMTUyNTEyODQ2IiwiaGVhZGluZyI6LTcxLjg1ODAzMzMyNjIyMzk1LCJkaXN0IjoxMTAuMzd9LCIzMTE2NTk2Mi0xNTI1MTI4NDZfMTUyMzkzNDgzIjp7ImlkIjoiMzExNjU5NjItMTUyNTEyODQ2XzE1MjM5MzQ4MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTI4NDYiLCJiIjoiMTUyMzkzNDgzIiwiaGVhZGluZyI6MTA4LjE0MTk2NjY3Mzc3NjA1LCJkaXN0IjoxMTAuMzd9LCIzMTE2NTk2NS0xNTI1MTY2NDhfMTUyNTE2NjUwIjp7ImlkIjoiMzExNjU5NjUtMTUyNTE2NjQ4XzE1MjUxNjY1MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQ4IiwiYiI6IjE1MjUxNjY1MCIsImhlYWRpbmciOjEwOC4yMTg3NDMwMjU4OTYzNywiZGlzdCI6MjguMzY2fSwiMzExNjU5NjgtMTUyMzgxMjU3XzQ0MzE4NzE1OSI6eyJpZCI6IjMxMTY1OTY4LTE1MjM4MTI1N180NDMxODcxNTkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjM4MTI1NyIsImIiOiI0NDMxODcxNTkiLCJoZWFkaW5nIjotNzMuOTMzMTUwNjc0NTc4NDYsImRpc3QiOjUyLjA3Mn0sIjMxMTY1OTY4LTQ0MzE4NzE1OV8xNTI0MDE5MjEiOnsiaWQiOiIzMTE2NTk2OC00NDMxODcxNTlfMTUyNDAxOTIxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcxNTkiLCJiIjoiMTUyNDAxOTIxIiwiaGVhZGluZyI6LTc1LjExMjE0MTQ0OTEyNDM3LCJkaXN0IjoxMi45NDR9LCIzMjA2NTUyNy0xNTI0MTQ3NjBfNDQzMTg2OTM5Ijp7ImlkIjoiMzIwNjU1MjctMTUyNDE0NzYwXzQ0MzE4NjkzOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MTQ3NjAiLCJiIjoiNDQzMTg2OTM5IiwiaGVhZGluZyI6MjAuNjc3MzYxNTA2NDIyMzU0LCJkaXN0Ijo1NC41MDV9LCIzMjA2NTUyNy00NDMxODY5MzlfMTUyNjIwNTU4Ijp7ImlkIjoiMzIwNjU1MjctNDQzMTg2OTM5XzE1MjYyMDU1OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODY5MzkiLCJiIjoiMTUyNjIwNTU4IiwiaGVhZGluZyI6MTcuNzg2Mzk2ODEwODI1OTczLCJkaXN0Ijo1My41NTR9LCIzMjA2NTUyNy0xNTI2MjA1NThfNDQzMTg2OTQyIjp7ImlkIjoiMzIwNjU1MjctMTUyNjIwNTU4XzQ0MzE4Njk0MiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MjA1NTgiLCJiIjoiNDQzMTg2OTQyIiwiaGVhZGluZyI6MTkuNTA5NTYzMzM3NjAxOTksImRpc3QiOjU3LjYyOX0sIjMyMDY1NTI3LTQ0MzE4Njk0Ml8xNTI2MjA1NjMiOnsiaWQiOiIzMjA2NTUyNy00NDMxODY5NDJfMTUyNjIwNTYzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4Njk0MiIsImIiOiIxNTI2MjA1NjMiLCJoZWFkaW5nIjoxNy4zMDczODYzNjI5MDcwNTMsImRpc3QiOjQ1LjI4NX0sIjMyMDY1NTI3LTE1MjYyMDU2M18xNTI0OTY5NDAiOnsiaWQiOiIzMjA2NTUyNy0xNTI2MjA1NjNfMTUyNDk2OTQwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYyMDU2MyIsImIiOiIxNTI0OTY5NDAiLCJoZWFkaW5nIjoxOS4xNDc5NjMwODI4NjI0LCJkaXN0Ijo1Ljg2N30sIjMyMDY1NTI3LTE1MjQ5Njk0MF8xNTI2MjA1NjYiOnsiaWQiOiIzMjA2NTUyNy0xNTI0OTY5NDBfMTUyNjIwNTY2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njk0MCIsImIiOiIxNTI2MjA1NjYiLCJoZWFkaW5nIjoyMy40NjE5NzMxMzcwMzQ5NzQsImRpc3QiOjIuNDE3fSwiMzIwNjU1MjctMTUyNjIwNTY2XzQ0MzE4Njk0NCI6eyJpZCI6IjMyMDY1NTI3LTE1MjYyMDU2Nl80NDMxODY5NDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjIwNTY2IiwiYiI6IjQ0MzE4Njk0NCIsImhlYWRpbmciOjE3LjQzMDg3MTEwOTE0NzY2LCJkaXN0Ijo1NC42MTF9LCIzMjA2NTUyNy00NDMxODY5NDRfMTUyNDQ3MzUzIjp7ImlkIjoiMzIwNjU1MjctNDQzMTg2OTQ0XzE1MjQ0NzM1MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODY5NDQiLCJiIjoiMTUyNDQ3MzUzIiwiaGVhZGluZyI6MTcuNDMwNzkxOTQwMzY1NzIsImRpc3QiOjU0LjYxMX0sIjMyMDY1NTI3LTE1MjQ0NzM1M180NDMxODY5NTQiOnsiaWQiOiIzMjA2NTUyNy0xNTI0NDczNTNfNDQzMTg2OTU0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM1MyIsImIiOiI0NDMxODY5NTQiLCJoZWFkaW5nIjoxNi44MDAzNzUyMDk5MDg0NzQsImRpc3QiOjUzLjI2OH0sIjMyMDY1NTI3LTQ0MzE4Njk1NF8xNTI1MTY2NDAiOnsiaWQiOiIzMjA2NTUyNy00NDMxODY5NTRfMTUyNTE2NjQwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4Njk1NCIsImIiOiIxNTI1MTY2NDAiLCJoZWFkaW5nIjoxNi44MDAzMDAxODk3Mjc3NCwiZGlzdCI6NTMuMjY4fSwiMzIwNjU1MzMtMTUyNDE0NzY2XzQ0MzE4NzA2MCI6eyJpZCI6IjMyMDY1NTMzLTE1MjQxNDc2Nl80NDMxODcwNjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQxNDc2NiIsImIiOiI0NDMxODcwNjAiLCJoZWFkaW5nIjoxOS43MjUyMTMwNTc0MDQwOTgsImRpc3QiOjU0LjE3M30sIjMyMDY1NTMzLTQ0MzE4NzA2MF8xNTI1Mzk2MzMiOnsiaWQiOiIzMjA2NTUzMy00NDMxODcwNjBfMTUyNTM5NjMzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwNjAiLCJiIjoiMTUyNTM5NjMzIiwiaGVhZGluZyI6MTguNTQwNzg2MTY0NTQxNDQsImRpc3QiOjUxLjQ0N30sIjMyMDY1NTMzLTE1MjUzOTYzM180NDMxODcwNjIiOnsiaWQiOiIzMjA2NTUzMy0xNTI1Mzk2MzNfNDQzMTg3MDYyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2MzMiLCJiIjoiNDQzMTg3MDYyIiwiaGVhZGluZyI6MTcuNjg2MzI3OTQ2NDgwNTI1LCJkaXN0Ijo1Ny4wMTV9LCIzMjA2NTUzMy00NDMxODcwNjJfMTUyNTM5NjM1Ijp7ImlkIjoiMzIwNjU1MzMtNDQzMTg3MDYyXzE1MjUzOTYzNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDYyIiwiYiI6IjE1MjUzOTYzNSIsImhlYWRpbmciOjE5LjE0ODA3ODQ3MjI3NTE1LCJkaXN0Ijo0Ni45NH0sIjMyMDY1NTMzLTE1MjUzOTYzNV8xNTI0OTY5NTMiOnsiaWQiOiIzMjA2NTUzMy0xNTI1Mzk2MzVfMTUyNDk2OTUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2MzUiLCJiIjoiMTUyNDk2OTUzIiwiaGVhZGluZyI6OS44NDg5Nzk0OTMyMzcxNzcsImRpc3QiOjUuNjI2fSwiMzc3NDk1NDctMTUyNTY2MzA3XzE0ODEzNjQzMjQiOnsiaWQiOiIzNzc0OTU0Ny0xNTI1NjYzMDdfMTQ4MTM2NDMyNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzA3IiwiYiI6IjE0ODEzNjQzMjQiLCJoZWFkaW5nIjoyMy40NjI0MjA0OTU5MzQ1OCwiZGlzdCI6NC44MzR9LCIzNzc0OTU0Ny0xNDgxMzY0MzI0XzE1MjU2NjMwNyI6eyJpZCI6IjM3NzQ5NTQ3LTE0ODEzNjQzMjRfMTUyNTY2MzA3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDgxMzY0MzI0IiwiYiI6IjE1MjU2NjMwNyIsImhlYWRpbmciOjIwMy40NjI0MjA0OTU5MzQ1NywiZGlzdCI6NC44MzR9LCIzNzc0OTU0Ny0xNDgxMzY0MzI0XzE1MjQ5Njg5MSI6eyJpZCI6IjM3NzQ5NTQ3LTE0ODEzNjQzMjRfMTUyNDk2ODkxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDgxMzY0MzI0IiwiYiI6IjE1MjQ5Njg5MSIsImhlYWRpbmciOjE4LjYyNDM1OTUxMTM0NTIyNiwiZGlzdCI6OTkuNDM2fSwiMzc3NDk1NDctMTUyNDk2ODkxXzE0ODEzNjQzMjQiOnsiaWQiOiIzNzc0OTU0Ny0xNTI0OTY4OTFfMTQ4MTM2NDMyNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk2ODkxIiwiYiI6IjE0ODEzNjQzMjQiLCJoZWFkaW5nIjoxOTguNjI0MzU5NTExMzQ1MjMsImRpc3QiOjk5LjQzNn0sIjM3NzQ5NTQ3LTE1MjQ5Njg5MV8xNTI1NjYzMDgiOnsiaWQiOiIzNzc0OTU0Ny0xNTI0OTY4OTFfMTUyNTY2MzA4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTY4OTEiLCJiIjoiMTUyNTY2MzA4IiwiaGVhZGluZyI6MTcuNDMxMDc4MjkzMDMwNTczLCJkaXN0Ijo1NC42MTF9LCIzNzc0OTU0Ny0xNTI1NjYzMDhfMTUyNDk2ODkxIjp7ImlkIjoiMzc3NDk1NDctMTUyNTY2MzA4XzE1MjQ5Njg5MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzA4IiwiYiI6IjE1MjQ5Njg5MSIsImhlYWRpbmciOjE5Ny40MzEwNzgyOTMwMzA1NywiZGlzdCI6NTQuNjExfSwiMzc3NDk1NDctMTUyNTY2MzA4XzE0MDg4OTk0OTMiOnsiaWQiOiIzNzc0OTU0Ny0xNTI1NjYzMDhfMTQwODg5OTQ5MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzA4IiwiYiI6IjE0MDg4OTk0OTMiLCJoZWFkaW5nIjoxOC4yOTgzMDc3MDc4MDU3MiwiZGlzdCI6NDkuMDR9LCIzNzc0OTU0Ny0xNDA4ODk5NDkzXzE1MjU2NjMwOCI6eyJpZCI6IjM3NzQ5NTQ3LTE0MDg4OTk0OTNfMTUyNTY2MzA4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDA4ODk5NDkzIiwiYiI6IjE1MjU2NjMwOCIsImhlYWRpbmciOjE5OC4yOTgzMDc3MDc4MDU3MiwiZGlzdCI6NDkuMDR9LCIzNzc0OTU0Ny0xNDA4ODk5NDkzXzIxMjgzMjM4MTEiOnsiaWQiOiIzNzc0OTU0Ny0xNDA4ODk5NDkzXzIxMjgzMjM4MTEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MDg4OTk0OTMiLCJiIjoiMjEyODMyMzgxMSIsImhlYWRpbmciOjE2LjEzNzc5MzQzMzczOTU0NiwiZGlzdCI6My40NjJ9LCIzNzc0OTU0Ny0yMTI4MzIzODExXzE0MDg4OTk0OTMiOnsiaWQiOiIzNzc0OTU0Ny0yMTI4MzIzODExXzE0MDg4OTk0OTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxMjgzMjM4MTEiLCJiIjoiMTQwODg5OTQ5MyIsImhlYWRpbmciOjE5Ni4xMzc3OTM0MzM3Mzk1NSwiZGlzdCI6My40NjJ9LCIzNzc0OTU0Ny0yMTI4MzIzODExXzE1MjQ0NzM2MyI6eyJpZCI6IjM3NzQ5NTQ3LTIxMjgzMjM4MTFfMTUyNDQ3MzYzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTI4MzIzODExIiwiYiI6IjE1MjQ0NzM2MyIsImhlYWRpbmciOjIzLjQ2MjAzMDg5MTQ5MTUsImRpc3QiOjQuODM0fSwiMzc3NDk1NDctMTUyNDQ3MzYzXzIxMjgzMjM4MTEiOnsiaWQiOiIzNzc0OTU0Ny0xNTI0NDczNjNfMjEyODMyMzgxMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDQ3MzYzIiwiYiI6IjIxMjgzMjM4MTEiLCJoZWFkaW5nIjoyMDMuNDYyMDMwODkxNDkxNSwiZGlzdCI6NC44MzR9LCIzNzc0OTU0OC0xNTI1NjYzMDVfMTUyNTY2MzA3Ijp7ImlkIjoiMzc3NDk1NDgtMTUyNTY2MzA1XzE1MjU2NjMwNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzA1IiwiYiI6IjE1MjU2NjMwNyIsImhlYWRpbmciOjE4LjY1MzcxMDk2OTkxOTU4NywiZGlzdCI6MjEuMDYxfSwiMzc3NDk1NDgtMTUyNTY2MzA3XzE1MjU2NjMwNSI6eyJpZCI6IjM3NzQ5NTQ4LTE1MjU2NjMwN18xNTI1NjYzMDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMwNyIsImIiOiIxNTI1NjYzMDUiLCJoZWFkaW5nIjoxOTguNjUzNzEwOTY5OTE5NiwiZGlzdCI6MjEuMDYxfSwiMzc3NDk1NDktMTUyNDk2ODk3XzIwNzIxMTk0OTEiOnsiaWQiOiIzNzc0OTU0OS0xNTI0OTY4OTdfMjA3MjExOTQ5MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0OTY4OTciLCJiIjoiMjA3MjExOTQ5MSIsImhlYWRpbmciOjg5Ljk5OTk5NzQ3NjY1ODQxLCJkaXN0IjowLjk2Mn0sIjM3NzQ5NTQ5LTIwNzIxMTk0OTFfMTUyNDk2ODk3Ijp7ImlkIjoiMzc3NDk1NDktMjA3MjExOTQ5MV8xNTI0OTY4OTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjA3MjExOTQ5MSIsImIiOiIxNTI0OTY4OTciLCJoZWFkaW5nIjoyNjkuOTk5OTk3NDc2NjU4NCwiZGlzdCI6MC45NjJ9LCIzNzc0OTU0OS0yMDcyMTE5NDkxXzE1MjQ5NjkwMCI6eyJpZCI6IjM3NzQ5NTQ5LTIwNzIxMTk0OTFfMTUyNDk2OTAwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIwNzIxMTk0OTEiLCJiIjoiMTUyNDk2OTAwIiwiaGVhZGluZyI6MTA5LjEzNTgxNjk4NTYyNDg4LCJkaXN0Ijo4NC41NDN9LCIzNzc0OTU0OS0xNTI0OTY5MDBfMjA3MjExOTQ5MSI6eyJpZCI6IjM3NzQ5NTQ5LTE1MjQ5NjkwMF8yMDcyMTE5NDkxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5NjkwMCIsImIiOiIyMDcyMTE5NDkxIiwiaGVhZGluZyI6Mjg5LjEzNTgxNjk4NTYyNDksImRpc3QiOjg0LjU0M30sIjM3NzQ5NTUwLTE1MjQ5Njg5NF8xNTI0OTY4OTciOnsiaWQiOiIzNzc0OTU1MC0xNTI0OTY4OTRfMTUyNDk2ODk3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njg5NCIsImIiOiIxNTI0OTY4OTciLCJoZWFkaW5nIjoxMDguODQ2MzE1MTI0NzE2MTYsImRpc3QiOjI3LjQ1NH0sIjM3NzQ5NTUwLTE1MjQ5Njg5N18xNTI0OTY4OTQiOnsiaWQiOiIzNzc0OTU1MC0xNTI0OTY4OTdfMTUyNDk2ODk0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njg5NyIsImIiOiIxNTI0OTY4OTQiLCJoZWFkaW5nIjoyODguODQ2MzE1MTI0NzE2MTcsImRpc3QiOjI3LjQ1NH0sIjM3NzQ5NTUxLTE1MjQ0NzM3MF8xNTI0NDczNzIiOnsiaWQiOiIzNzc0OTU1MS0xNTI0NDczNzBfMTUyNDQ3MzcyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM3MCIsImIiOiIxNTI0NDczNzIiLCJoZWFkaW5nIjoxMDkuNzk4ODk3NDk1NDc1ODMsImRpc3QiOjE2LjM2NH0sIjM3NzQ5NTUxLTE1MjQ0NzM3Ml8xNTI0NDczNzAiOnsiaWQiOiIzNzc0OTU1MS0xNTI0NDczNzJfMTUyNDQ3MzcwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM3MiIsImIiOiIxNTI0NDczNzAiLCJoZWFkaW5nIjoyODkuNzk4ODk3NDk1NDc1ODQsImRpc3QiOjE2LjM2NH0sIjM3NzQ5NTUyLTE1MjQ0NzM3Ml8xNTI0NDczNzMiOnsiaWQiOiIzNzc0OTU1Mi0xNTI0NDczNzJfMTUyNDQ3MzczIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM3MiIsImIiOiIxNTI0NDczNzMiLCJoZWFkaW5nIjoxMDYuOTU4NDg1ODc3OTQ5MzksImRpc3QiOjY4LjQxMX0sIjM3NzQ5NTUyLTE1MjQ0NzM3M18xNTI0NDczNzIiOnsiaWQiOiIzNzc0OTU1Mi0xNTI0NDczNzNfMTUyNDQ3MzcyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM3MyIsImIiOiIxNTI0NDczNzIiLCJoZWFkaW5nIjoyODYuOTU4NDg1ODc3OTQ5NCwiZGlzdCI6NjguNDExfSwiMzc3NDk1NTMtMTUyNTE2NjUwXzE1MjUxNjY1MSI6eyJpZCI6IjM3NzQ5NTUzLTE1MjUxNjY1MF8xNTI1MTY2NTEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUxNjY1MCIsImIiOiIxNTI1MTY2NTEiLCJoZWFkaW5nIjoxMDcuOTUyNDQ4ODM0OTgxNDgsImRpc3QiOjMyLjM2OX0sIjM3NzQ5NTU0LTE1MjUxNjY1MV8xNTI1MTY2NTMiOnsiaWQiOiIzNzc0OTU1NC0xNTI1MTY2NTFfMTUyNTE2NjUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NTEiLCJiIjoiMTUyNTE2NjUzIiwiaGVhZGluZyI6MTExLjgzNTg2MTc1NTU0NjgyLCJkaXN0Ijo0Ny42ODd9LCIzNzc0OTU1NS0xNTI0MDE5MjFfMTUyNDAxOTE5Ijp7ImlkIjoiMzc3NDk1NTUtMTUyNDAxOTIxXzE1MjQwMTkxOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAxOTIxIiwiYiI6IjE1MjQwMTkxOSIsImhlYWRpbmciOi03My4yNzI5MjY5MzI3NDI4MiwiZGlzdCI6MjMuMTF9LCIzNzc0OTU1Ni0xNTI0MDE5MTlfMTQ4MTQ1NjY1OCI6eyJpZCI6IjM3NzQ5NTU2LTE1MjQwMTkxOV8xNDgxNDU2NjU4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDE5MTkiLCJiIjoiMTQ4MTQ1NjY1OCIsImhlYWRpbmciOi03MC40ODIwOTk1MDQzMzgzNSwiZGlzdCI6MTMuMjcyfSwiMzc3NDk1NTYtMTQ4MTQ1NjY1OF8xNTI0MDE5MTUiOnsiaWQiOiIzNzc0OTU1Ni0xNDgxNDU2NjU4XzE1MjQwMTkxNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ4MTQ1NjY1OCIsImIiOiIxNTI0MDE5MTUiLCJoZWFkaW5nIjotNzIuNTU3ODI0NjM4ODcyMDYsImRpc3QiOjExLjA5NX0sIjM3NzQ5NTU2LTE1MjQwMTkxNV8xNTI0MDE5MTIiOnsiaWQiOiIzNzc0OTU1Ni0xNTI0MDE5MTVfMTUyNDAxOTEyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDE5MTUiLCJiIjoiMTUyNDAxOTEyIiwiaGVhZGluZyI6LTcxLjk0MTM5Mjc5OTE0MDk0LCJkaXN0IjoxMDcuMjg2fSwiMzc3NDk1NTYtMTUyNDAxOTEyXzE1MjQwMTkwOSI6eyJpZCI6IjM3NzQ5NTU2LTE1MjQwMTkxMl8xNTI0MDE5MDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMTkxMiIsImIiOiIxNTI0MDE5MDkiLCJoZWFkaW5nIjotNzEuMzgwMjg3Nzc5OTI0MTksImRpc3QiOjEwNy42MzV9LCIzNzc0OTU1Ni0xNTI0MDE5MDlfMTUyNDAxOTA1Ijp7ImlkIjoiMzc3NDk1NTYtMTUyNDAxOTA5XzE1MjQwMTkwNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAxOTA5IiwiYiI6IjE1MjQwMTkwNSIsImhlYWRpbmciOi03My41MTQzNTY2MzcxNTE1NSwiZGlzdCI6MTA5LjM4NH0sIjM3NzQ5NTU4LTQ0Mjc2MTU0OF8xNTI2MDQyMTkiOnsiaWQiOiIzNzc0OTU1OC00NDI3NjE1NDhfMTUyNjA0MjE5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDI3NjE1NDgiLCJiIjoiMTUyNjA0MjE5IiwiaGVhZGluZyI6MTA2LjA2Njg2NTI3NjEyOTczLCJkaXN0IjoxNi4wMjJ9LCIzNzc0OTU1OC0xNTI2MDQyMTlfMTUyNjgxOTQ2Ijp7ImlkIjoiMzc3NDk1NTgtMTUyNjA0MjE5XzE1MjY4MTk0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjA0MjE5IiwiYiI6IjE1MjY4MTk0NiIsImhlYWRpbmciOjExMC4yMzY0NDYwMTc5MTQwOCwiZGlzdCI6MjUuNjM5fSwiMzc3NDk1NTktMTUyNjgxOTQ2XzQ0MzE4NzE0OCI6eyJpZCI6IjM3NzQ5NTU5LTE1MjY4MTk0Nl80NDMxODcxNDgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjY4MTk0NiIsImIiOiI0NDMxODcxNDgiLCJoZWFkaW5nIjoxMDYuMDY2ODAzMDA5MzI1MjMsImRpc3QiOjMyLjA0NH0sIjM3NzQ5NTU5LTQ0MzE4NzE0OF8xNTI2MjkzOTYiOnsiaWQiOiIzNzc0OTU1OS00NDMxODcxNDhfMTUyNjI5Mzk2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcxNDgiLCJiIjoiMTUyNjI5Mzk2IiwiaGVhZGluZyI6MTA2LjM0MzM5MDA1MTc2MTk5LCJkaXN0Ijo1NS4xNTR9LCIzNzc0OTU2MC0xNTI1ODA5ODBfMTUyNTY2MzE2Ijp7ImlkIjoiMzc3NDk1NjAtMTUyNTgwOTgwXzE1MjU2NjMxNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTgwOTgwIiwiYiI6IjE1MjU2NjMxNiIsImhlYWRpbmciOi03MS4yODE1NDE1MTM2OTg4MSwiZGlzdCI6MzQuNTQ0fSwiMzc3NDk1NjAtMTUyNTY2MzE2XzE1MjQ1MTYxMCI6eyJpZCI6IjM3NzQ5NTYwLTE1MjU2NjMxNl8xNTI0NTE2MTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMxNiIsImIiOiIxNTI0NTE2MTAiLCJoZWFkaW5nIjotNzIuOTU4OTA5MTkxODQzNTMsImRpc3QiOjEwOS43MDJ9LCIzNzc0OTU2MC0xNTI0NTE2MTBfMTUyNTM5NjQzIjp7ImlkIjoiMzc3NDk1NjAtMTUyNDUxNjEwXzE1MjUzOTY0MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDUxNjEwIiwiYiI6IjE1MjUzOTY0MyIsImhlYWRpbmciOi03Mi4xOTAyODc5MDA1NDc2OSwiZGlzdCI6MTA1LjExMX0sIjM3NzQ5NTYwLTE1MjUzOTY0M18xNTI1ODA5ODMiOnsiaWQiOiIzNzc0OTU2MC0xNTI1Mzk2NDNfMTUyNTgwOTgzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NDMiLCJiIjoiMTUyNTgwOTgzIiwiaGVhZGluZyI6LTcxLjg1ODMyMTEzNjMzNzY0LCJkaXN0IjoxMTAuMzcyfSwiMzc3NDk1NjAtMTUyNTgwOTgzXzE1MjU4MDk4NSI6eyJpZCI6IjM3NzQ5NTYwLTE1MjU4MDk4M18xNTI1ODA5ODUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU4MDk4MyIsImIiOiIxNTI1ODA5ODUiLCJoZWFkaW5nIjotNzIuNDA2ODM5MTQzMTQ3OTMsImRpc3QiOjExMC4wMzF9LCIzNzc0OTU2MC0xNTI1ODA5ODVfNDQzMTg1MTM4Ijp7ImlkIjoiMzc3NDk1NjAtMTUyNTgwOTg1XzQ0MzE4NTEzOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTgwOTg1IiwiYiI6IjQ0MzE4NTEzOCIsImhlYWRpbmciOi03Mi41NTcxMDE5NjAwODIzMiwiZGlzdCI6NjYuNTY5fSwiMzc3NDk1NjAtNDQzMTg1MTM4XzE1MjM5ODIxNCI6eyJpZCI6IjM3NzQ5NTYwLTQ0MzE4NTEzOF8xNTIzOTgyMTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NTEzOCIsImIiOiIxNTIzOTgyMTQiLCJoZWFkaW5nIjotNzEuOTA3Mjg3MTgzOTE1NjcsImRpc3QiOjY3LjgyNH0sIjM3NzQ5NTYxLTE1MjU4MDk3Nl8xNTI1ODA5ODAiOnsiaWQiOiIzNzc0OTU2MS0xNTI1ODA5NzZfMTUyNTgwOTgwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1ODA5NzYiLCJiIjoiMTUyNTgwOTgwIiwiaGVhZGluZyI6LTc2LjEzMjcwMjIwMTAxNzQyLCJkaXN0IjoyNy43NTJ9LCIzNzc0OTU2NS0xNTI2MDg4NzlfMTUyNjA4ODc2Ijp7ImlkIjoiMzc3NDk1NjUtMTUyNjA4ODc5XzE1MjYwODg3NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MDg4NzkiLCJiIjoiMTUyNjA4ODc2IiwiaGVhZGluZyI6LTczLjkzMjU2Njg1MTkzMzYzLCJkaXN0IjoyOC4wMzh9LCIzNzc0OTU2Ni0xNTI2MDg4ODFfMTUyNjA4ODc5Ijp7ImlkIjoiMzc3NDk1NjYtMTUyNjA4ODgxXzE1MjYwODg3OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MDg4ODEiLCJiIjoiMTUyNjA4ODc5IiwiaGVhZGluZyI6LTcwLjE5OTkwNjA4NTI0NzMsImRpc3QiOjMyLjcyNn0sIjM3NzQ5NTY5LTE1MjU2NjMyMl8yNjM3Njc2MTQyIjp7ImlkIjoiMzc3NDk1NjktMTUyNTY2MzIyXzI2Mzc2NzYxNDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMyMiIsImIiOiIyNjM3Njc2MTQyIiwiaGVhZGluZyI6MTguMjU0MjYwNTc3NDU4MjcsImRpc3QiOjU4LjM2Nn0sIjM3NzQ5NTY5LTI2Mzc2NzYxNDJfMTUyNTY2MzIyIjp7ImlkIjoiMzc3NDk1NjktMjYzNzY3NjE0Ml8xNTI1NjYzMjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzYxNDIiLCJiIjoiMTUyNTY2MzIyIiwiaGVhZGluZyI6MTk4LjI1NDI2MDU3NzQ1ODI3LCJkaXN0Ijo1OC4zNjZ9LCIzNzc0OTU2OS0yNjM3Njc2MTQyXzEwNzM0MDA4MzAiOnsiaWQiOiIzNzc0OTU2OS0yNjM3Njc2MTQyXzEwNzM0MDA4MzAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzYxNDIiLCJiIjoiMTA3MzQwMDgzMCIsImhlYWRpbmciOjIzLjQ2MDM5MDEyMjgxMTUyLCJkaXN0Ijo3LjI1MX0sIjM3NzQ5NTY5LTEwNzM0MDA4MzBfMjYzNzY3NjE0MiI6eyJpZCI6IjM3NzQ5NTY5LTEwNzM0MDA4MzBfMjYzNzY3NjE0MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDgzMCIsImIiOiIyNjM3Njc2MTQyIiwiaGVhZGluZyI6MjAzLjQ2MDM5MDEyMjgxMTUzLCJkaXN0Ijo3LjI1MX0sIjM3NzQ5NTcwLTE1MjU2NjMxOV8xNTI1NjYzMjIiOnsiaWQiOiIzNzc0OTU3MC0xNTI1NjYzMTlfMTUyNTY2MzIyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMTkiLCJiIjoiMTUyNTY2MzIyIiwiaGVhZGluZyI6MTcuMjIzMTc3NDQ0MzcyMDEsImRpc3QiOjMyLjQ5N30sIjM3NzQ5NTcwLTE1MjU2NjMyMl8xNTI1NjYzMTkiOnsiaWQiOiIzNzc0OTU3MC0xNTI1NjYzMjJfMTUyNTY2MzE5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMjIiLCJiIjoiMTUyNTY2MzE5IiwiaGVhZGluZyI6MTk3LjIyMzE3NzQ0NDM3MiwiZGlzdCI6MzIuNDk3fSwiMzc3NDk1NzQtMTUyNDM1OTAwXzE0MjExMzQ3MzQiOnsiaWQiOiIzNzc0OTU3NC0xNTI0MzU5MDBfMTQyMTEzNDczNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDM1OTAwIiwiYiI6IjE0MjExMzQ3MzQiLCJoZWFkaW5nIjoxMDguNzE5NjQyNTE0ODQ0MTEsImRpc3QiOjE3LjI3MX0sIjM3NzQ5NTc0LTE0MjExMzQ3MzRfMTUyNDM1OTAyIjp7ImlkIjoiMzc3NDk1NzQtMTQyMTEzNDczNF8xNTI0MzU5MDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MzQiLCJiIjoiMTUyNDM1OTAyIiwiaGVhZGluZyI6MTExLjAwOTA1Nzk0OTU5ODg4LCJkaXN0IjoxMi4zNjh9LCIzNzc0OTU3NS0xNTI0MzU4ODhfMjE2NzE2MTM0MCI6eyJpZCI6IjM3NzQ5NTc1LTE1MjQzNTg4OF8yMTY3MTYxMzQwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU4ODgiLCJiIjoiMjE2NzE2MTM0MCIsImhlYWRpbmciOjEwNy43NDY4MzY3MjE4MTY4LCJkaXN0IjoxOC4xODR9LCIzNzc0OTU3NS0yMTY3MTYxMzQwXzIxNjcxNjEyNjciOnsiaWQiOiIzNzc0OTU3NS0yMTY3MTYxMzQwXzIxNjcxNjEyNjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEzNDAiLCJiIjoiMjE2NzE2MTI2NyIsImhlYWRpbmciOjEwNy45MDE4OTkwNDc5NTg3MSwiZGlzdCI6MTA4LjE5MX0sIjM3NzQ5NTc1LTIxNjcxNjEyNjdfMTUyNDM1ODkxIjp7ImlkIjoiMzc3NDk1NzUtMjE2NzE2MTI2N18xNTI0MzU4OTEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyNjciLCJiIjoiMTUyNDM1ODkxIiwiaGVhZGluZyI6MTA2LjA2ODM1MzAwNzM4NzM3LCJkaXN0Ijo4LjAxfSwiMzc3NDk1NzUtMTUyNDM1ODkxXzIxNjcxNjExOTQiOnsiaWQiOiIzNzc0OTU3NS0xNTI0MzU4OTFfMjE2NzE2MTE5NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDM1ODkxIiwiYiI6IjIxNjcxNjExOTQiLCJoZWFkaW5nIjoxMDcuNDQzODU5NzI2MDY1MzgsImRpc3QiOjExLjA5NH0sIjM3NzQ5NTc1LTIxNjcxNjExOTRfMjE2NzE2MTIwMCI6eyJpZCI6IjM3NzQ5NTc1LTIxNjcxNjExOTRfMjE2NzE2MTIwMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTE5NCIsImIiOiIyMTY3MTYxMjAwIiwiaGVhZGluZyI6MTA3LjgyMzkxMTMyNzgwMDgxLCJkaXN0Ijo4Ni45MTl9LCIzNzc0OTU3NS0yMTY3MTYxMjAwXzE1MjQzNTg5NCI6eyJpZCI6IjM3NzQ5NTc1LTIxNjcxNjEyMDBfMTUyNDM1ODk0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjAwIiwiYiI6IjE1MjQzNTg5NCIsImhlYWRpbmciOjEwNi4wNjgyOTY2NjI0MjYyMywiZGlzdCI6MTIuMDE2fSwiMzc3NDk1NzUtMTUyNDM1ODk0XzIxNjcxNjEyODEiOnsiaWQiOiIzNzc0OTU3NS0xNTI0MzU4OTRfMjE2NzE2MTI4MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDM1ODk0IiwiYiI6IjIxNjcxNjEyODEiLCJoZWFkaW5nIjoxMDkuMDY3MzU1MTgzMDYwMzcsImRpc3QiOjEwLjE4fSwiMzc3NDk1NzUtMjE2NzE2MTI4MV8xNTI0MzU4OTciOnsiaWQiOiIzNzc0OTU3NS0yMTY3MTYxMjgxXzE1MjQzNTg5NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTI4MSIsImIiOiIxNTI0MzU4OTciLCJoZWFkaW5nIjoxMDcuNzgwNzg3NzQyOTU4MTMsImRpc3QiOjk4LjAxNH0sIjM3NzQ5NTc2LTM0MzMzNjAzMF8xNTI0MzU5MDAiOnsiaWQiOiIzNzc0OTU3Ni0zNDMzMzYwMzBfMTUyNDM1OTAwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzNDMzMzYwMzAiLCJiIjoiMTUyNDM1OTAwIiwiaGVhZGluZyI6MTA2LjYzMDk2NDQ0MDA4MDE1LCJkaXN0IjoyNy4xMTN9LCIzNzc0OTU4Mi00NDI3NjE1NjNfMTUyNTY3MTAyIjp7ImlkIjoiMzc3NDk1ODItNDQyNzYxNTYzXzE1MjU2NzEwMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQyNzYxNTYzIiwiYiI6IjE1MjU2NzEwMiIsImhlYWRpbmciOjEwNy44MjQ2MjI4NjQxOTQ2NywiZGlzdCI6NDMuNDU4fSwiMzc3NDk1ODItMTUyNTY3MTAyXzQ0Mjc2MTU2MyI6eyJpZCI6IjM3NzQ5NTgyLTE1MjU2NzEwMl80NDI3NjE1NjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NzEwMiIsImIiOiI0NDI3NjE1NjMiLCJoZWFkaW5nIjoyODcuODI0NjIyODY0MTk0NywiZGlzdCI6NDMuNDU4fSwiMzc3NDk1ODMtMTUyNTY3MTAyXzE0MjExMzQ5MzAiOnsiaWQiOiIzNzc0OTU4My0xNTI1NjcxMDJfMTQyMTEzNDkzMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MTAyIiwiYiI6IjE0MjExMzQ5MzAiLCJoZWFkaW5nIjoxMDcuNjc2NDQ4MzUzMzEyOTQsImRpc3QiOjQ3LjQ2Mn0sIjM3NzQ5NTgzLTE0MjExMzQ5MzBfMTUyNTY3MTAyIjp7ImlkIjoiMzc3NDk1ODMtMTQyMTEzNDkzMF8xNTI1NjcxMDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ5MzAiLCJiIjoiMTUyNTY3MTAyIiwiaGVhZGluZyI6Mjg3LjY3NjQ0ODM1MzMxMjk0LCJkaXN0Ijo0Ny40NjJ9LCIzNzc0OTU4My0xNDIxMTM0OTMwXzE1MjUzOTY3MiI6eyJpZCI6IjM3NzQ5NTgzLTE0MjExMzQ5MzBfMTUyNTM5NjcyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0OTMwIiwiYiI6IjE1MjUzOTY3MiIsImhlYWRpbmciOjEwNy40NDQzOTQzMTg3OTY0NSwiZGlzdCI6MTEuMDk0fSwiMzc3NDk1ODMtMTUyNTM5NjcyXzE0MjExMzQ5MzAiOnsiaWQiOiIzNzc0OTU4My0xNTI1Mzk2NzJfMTQyMTEzNDkzMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjcyIiwiYiI6IjE0MjExMzQ5MzAiLCJoZWFkaW5nIjoyODcuNDQ0Mzk0MzE4Nzk2NDcsImRpc3QiOjExLjA5NH0sIjQwNTI2NTY2LTE1MjU4MzM5MF8xNTI1ODMzOTEiOnsiaWQiOiI0MDUyNjU2Ni0xNTI1ODMzOTBfMTUyNTgzMzkxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzM5MCIsImIiOiIxNTI1ODMzOTEiLCJoZWFkaW5nIjoxNy40MzAyMDA3NzE5NTg5ODMsImRpc3QiOjEwOS4yMjF9LCI0MDUyNjU2Ni0xNTI1ODMzOTFfMTUyNTgzMzkwIjp7ImlkIjoiNDA1MjY1NjYtMTUyNTgzMzkxXzE1MjU4MzM5MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODMzOTEiLCJiIjoiMTUyNTgzMzkwIiwiaGVhZGluZyI6MTk3LjQzMDIwMDc3MTk1OSwiZGlzdCI6MTA5LjIyMX0sIjQwNTI2NTY2LTE1MjU4MzM5MV8xNTI1MTI4NDQiOnsiaWQiOiI0MDUyNjU2Ni0xNTI1ODMzOTFfMTUyNTEyODQ0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzM5MSIsImIiOiIxNTI1MTI4NDQiLCJoZWFkaW5nIjoxNy4zMzI1OTcwNjA3NzQ4NjIsImRpc3QiOjEwMy4zNTZ9LCI0MDUyNjU2Ni0xNTI1MTI4NDRfMTUyNTgzMzkxIjp7ImlkIjoiNDA1MjY1NjYtMTUyNTEyODQ0XzE1MjU4MzM5MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTI4NDQiLCJiIjoiMTUyNTgzMzkxIiwiaGVhZGluZyI6MTk3LjMzMjU5NzA2MDc3NDg3LCJkaXN0IjoxMDMuMzU2fSwiNDEyODc2MjgtMTUyMzk4MjIyXzE1MjM5ODIyNyI6eyJpZCI6IjQxMjg3NjI4LTE1MjM5ODIyMl8xNTIzOTgyMjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzk4MjIyIiwiYiI6IjE1MjM5ODIyNyIsImhlYWRpbmciOi03Mi4wOTg1MzQxNjc2NzIxNCwiZGlzdCI6MTA4LjE5N30sIjQxMjg3NjI4LTE1MjM5ODIyN18xNTIzOTgyMjIiOnsiaWQiOiI0MTI4NzYyOC0xNTIzOTgyMjdfMTUyMzk4MjIyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5ODIyNyIsImIiOiIxNTIzOTgyMjIiLCJoZWFkaW5nIjoxMDcuOTAxNDY1ODMyMzI3ODYsImRpc3QiOjEwOC4xOTd9LCI0MTI4NzYyOC0xNTIzOTgyMjdfMTUyMzkzNDg1Ijp7ImlkIjoiNDEyODc2MjgtMTUyMzk4MjI3XzE1MjM5MzQ4NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMjciLCJiIjoiMTUyMzkzNDg1IiwiaGVhZGluZyI6LTcxLjcwMTA5NzIxMzA0NTU2LCJkaXN0IjoxMDkuNDU1fSwiNDEyODc2MjgtMTUyMzkzNDg1XzE1MjM5ODIyNyI6eyJpZCI6IjQxMjg3NjI4LTE1MjM5MzQ4NV8xNTIzOTgyMjciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDg1IiwiYiI6IjE1MjM5ODIyNyIsImhlYWRpbmciOjEwOC4yOTg5MDI3ODY5NTQ0NCwiZGlzdCI6MTA5LjQ1NX0sIjQxMjg3NjI4LTE1MjM5MzQ4NV8xNTIzOTgyMzAiOnsiaWQiOiI0MTI4NzYyOC0xNTIzOTM0ODVfMTUyMzk4MjMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NSIsImIiOiIxNTIzOTgyMzAiLCJoZWFkaW5nIjotNzAuODIxOTk2MTA2MTY0ODksImRpc3QiOjEwNy45ODl9LCI0MTI4NzYyOC0xNTIzOTgyMzBfMTUyMzkzNDg1Ijp7ImlkIjoiNDEyODc2MjgtMTUyMzk4MjMwXzE1MjM5MzQ4NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMzAiLCJiIjoiMTUyMzkzNDg1IiwiaGVhZGluZyI6MTA5LjE3ODAwMzg5MzgzNTExLCJkaXN0IjoxMDcuOTg5fSwiNDEyODc2MjktMTUyNDU2NjEwXzE1MjU4MzM5NSI6eyJpZCI6IjQxMjg3NjI5LTE1MjQ1NjYxMF8xNTI1ODMzOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjEwIiwiYiI6IjE1MjU4MzM5NSIsImhlYWRpbmciOi03MS40NzA4ODcwNTgxNzYyMiwiZGlzdCI6MTExLjYzMX0sIjQxMjg3NjI5LTE1MjU4MzM5NV8xNTI0NTY2MTAiOnsiaWQiOiI0MTI4NzYyOS0xNTI1ODMzOTVfMTUyNDU2NjEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzM5NSIsImIiOiIxNTI0NTY2MTAiLCJoZWFkaW5nIjoxMDguNTI5MTEyOTQxODIzNzgsImRpc3QiOjExMS42MzF9LCI0MTI4NzYyOS0xNTI1ODMzOTVfMjA5MDc1MzMwNyI6eyJpZCI6IjQxMjg3NjI5LTE1MjU4MzM5NV8yMDkwNzUzMzA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzM5NSIsImIiOiIyMDkwNzUzMzA3IiwiaGVhZGluZyI6LTcwLjkzMzE2MDM4ODQ4NDcsImRpc3QiOjcxLjI2NX0sIjQxMjg3NjI5LTIwOTA3NTMzMDdfMTUyNTgzMzk1Ijp7ImlkIjoiNDEyODc2MjktMjA5MDc1MzMwN18xNTI1ODMzOTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjA5MDc1MzMwNyIsImIiOiIxNTI1ODMzOTUiLCJoZWFkaW5nIjoxMDkuMDY2ODM5NjExNTE1MywiZGlzdCI6NzEuMjY1fSwiNDEyODc2MjktMjA5MDc1MzMwN18xNTIzOTM0ODciOnsiaWQiOiI0MTI4NzYyOS0yMDkwNzUzMzA3XzE1MjM5MzQ4NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyMDkwNzUzMzA3IiwiYiI6IjE1MjM5MzQ4NyIsImhlYWRpbmciOi03Mi4yNTM3ODc5Njg3Mzc4NywiZGlzdCI6MzYuMzd9LCI0MTI4NzYyOS0xNTIzOTM0ODdfMjA5MDc1MzMwNyI6eyJpZCI6IjQxMjg3NjI5LTE1MjM5MzQ4N18yMDkwNzUzMzA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NyIsImIiOiIyMDkwNzUzMzA3IiwiaGVhZGluZyI6MTA3Ljc0NjIxMjAzMTI2MjEzLCJkaXN0IjozNi4zN30sIjQxMjg3NjI5LTE1MjM5MzQ4N18xNTI2MzY4NzciOnsiaWQiOiI0MTI4NzYyOS0xNTIzOTM0ODdfMTUyNjM2ODc3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ4NyIsImIiOiIxNTI2MzY4NzciLCJoZWFkaW5nIjotNzIuMjUzNTcyMjYwNTAwOSwiZGlzdCI6MTA5LjExMX0sIjQxMjg3NjI5LTE1MjYzNjg3N18xNTIzOTM0ODciOnsiaWQiOiI0MTI4NzYyOS0xNTI2MzY4NzdfMTUyMzkzNDg3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYzNjg3NyIsImIiOiIxNTIzOTM0ODciLCJoZWFkaW5nIjoxMDcuNzQ2NDI3NzM5NDk5MSwiZGlzdCI6MTA5LjExMX0sIjQxMjg3NjMwLTE1MjQ1NjYxM18xNTI0ODAyMTQiOnsiaWQiOiI0MTI4NzYzMC0xNTI0NTY2MTNfMTUyNDgwMjE0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1NjYxMyIsImIiOiIxNTI0ODAyMTQiLCJoZWFkaW5nIjotNzIuMjUzNTE1Nzc5ODI5OTQsImRpc3QiOjEwOS4xMTF9LCI0MTI4NzYzMC0xNTI0ODAyMTRfMTUyNDU2NjEzIjp7ImlkIjoiNDEyODc2MzAtMTUyNDgwMjE0XzE1MjQ1NjYxMyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODAyMTQiLCJiIjoiMTUyNDU2NjEzIiwiaGVhZGluZyI6MTA3Ljc0NjQ4NDIyMDE3MDA2LCJkaXN0IjoxMDkuMTExfSwiNDE5MjAwODktMTUyMzkzNDg5XzE1MjQ4MDIxNiI6eyJpZCI6IjQxOTIwMDg5LTE1MjM5MzQ4OV8xNTI0ODAyMTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNDg5IiwiYiI6IjE1MjQ4MDIxNiIsImhlYWRpbmciOi03My4zNjkwNDM3MDQxOTUzNiwiZGlzdCI6MTA4LjQ1NX0sIjQxOTIwMDg5LTE1MjQ4MDIxNl8xNTIzOTM0ODkiOnsiaWQiOiI0MTkyMDA4OS0xNTI0ODAyMTZfMTUyMzkzNDg5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4MDIxNiIsImIiOiIxNTIzOTM0ODkiLCJoZWFkaW5nIjoxMDYuNjMwOTU2Mjk1ODA0NjQsImRpc3QiOjEwOC40NTV9LCI0MTkyMDA5MS0xNTIzOTM0ODlfMTUyNDgwMjE0Ijp7ImlkIjoiNDE5MjAwOTEtMTUyMzkzNDg5XzE1MjQ4MDIxNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM0ODkiLCJiIjoiMTUyNDgwMjE0IiwiaGVhZGluZyI6MTA4LjQ1ODE3MTI5NTg0NDY0LCJkaXN0IjoxMDguNTR9LCI5MjQ2MDAzNS0xNTI1Mzk2NDlfMTUyNDUxNjIxIjp7ImlkIjoiOTI0NjAwMzUtMTUyNTM5NjQ5XzE1MjQ1MTYyMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjQ5IiwiYiI6IjE1MjQ1MTYyMSIsImhlYWRpbmciOjEwNy4xODk3Njk4Mjk3NjA4MiwiZGlzdCI6MTA4Ljc3OH0sIjkyNDYwMDM1LTE1MjQ1MTYyMV8xNTI3NTkzOTgiOnsiaWQiOiI5MjQ2MDAzNS0xNTI0NTE2MjFfMTUyNzU5Mzk4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NTE2MjEiLCJiIjoiMTUyNzU5Mzk4IiwiaGVhZGluZyI6MTA5LjI0NTEyMTM0ODc2MDkyLCJkaXN0IjozMy42MzN9LCI5Mjk3NTkyMS0xMDczNDAwODQ5XzEwNzc4NDA0MTAiOnsiaWQiOiI5Mjk3NTkyMS0xMDczNDAwODQ5XzEwNzc4NDA0MTAiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTA3MzQwMDg0OSIsImIiOiIxMDc3ODQwNDEwIiwiaGVhZGluZyI6MTA4LjIxOTg3Mzc0NDY4NzczLCJkaXN0IjozNS40NTV9LCI5Mjk3NTkyMS0xMDc3ODQwNDEwXzEwNzc4NDAzOTEiOnsiaWQiOiI5Mjk3NTkyMS0xMDc3ODQwNDEwXzEwNzc4NDAzOTEiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTA3Nzg0MDQxMCIsImIiOiIxMDc3ODQwMzkxIiwiaGVhZGluZyI6MTE5Ljk0MzkwNzU3NTI1NTQ3LCJkaXN0Ijo2LjY2M30sIjkyOTc1OTIxLTEwNzc4NDAzOTFfMTA3Nzg0MDA3MSI6eyJpZCI6IjkyOTc1OTIxLTEwNzc4NDAzOTFfMTA3Nzg0MDA3MSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxMDc3ODQwMzkxIiwiYiI6IjEwNzc4NDAwNzEiLCJoZWFkaW5nIjoxMTkuOTQzOTA2MjUxNzgxNjEsImRpc3QiOjQuNDQyfSwiOTI5NzU5MjEtMTA3Nzg0MDA3MV8xMDc3ODQwNDA5Ijp7ImlkIjoiOTI5NzU5MjEtMTA3Nzg0MDA3MV8xMDc3ODQwNDA5IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjEwNzc4NDAwNzEiLCJiIjoiMTA3Nzg0MDQwOSIsImhlYWRpbmciOjE0OC4yMDE0NjQxOTAyMDQ1OCwiZGlzdCI6OS4xM30sIjkyOTc1OTIxLTEwNzc4NDA0MDlfMTA3Nzg0MDI4NCI6eyJpZCI6IjkyOTc1OTIxLTEwNzc4NDA0MDlfMTA3Nzg0MDI4NCIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxMDc3ODQwNDA5IiwiYiI6IjEwNzc4NDAyODQiLCJoZWFkaW5nIjoxNTYuNTM5NDUyNjU2NTY1NjYsImRpc3QiOjcuMjUxfSwiMTAzMDcyNzU1LTExOTAwNjE0ODhfMTUyNjA0MjE5Ijp7ImlkIjoiMTAzMDcyNzU1LTExOTAwNjE0ODhfMTUyNjA0MjE5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjExOTAwNjE0ODgiLCJiIjoiMTUyNjA0MjE5IiwiaGVhZGluZyI6MjAuNDA1NzgxNzk5MTAxMDU3LCJkaXN0Ijo4LjI4fSwiMTIyOTgxMzIwLTE1MjU2NzEwNV8xNTI1NjcxMTAiOnsiaWQiOiIxMjI5ODEzMjAtMTUyNTY3MTA1XzE1MjU2NzExMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MTA1IiwiYiI6IjE1MjU2NzExMCIsImhlYWRpbmciOjEwMC44NzAwOTE0MDYwMDI1NywiZGlzdCI6MTEuNzU3fSwiMTIyOTgxMzIwLTE1MjU2NzExMF8xNTI1NjcxMDUiOnsiaWQiOiIxMjI5ODEzMjAtMTUyNTY3MTEwXzE1MjU2NzEwNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MTEwIiwiYiI6IjE1MjU2NzEwNSIsImhlYWRpbmciOjI4MC44NzAwOTE0MDYwMDI2LCJkaXN0IjoxMS43NTd9LCIxMjQ5NTMxMDYtMTUyNDM1ODk3XzM0MzMzNjAzMCI6eyJpZCI6IjEyNDk1MzEwNi0xNTI0MzU4OTdfMzQzMzM2MDMwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU4OTciLCJiIjoiMzQzMzM2MDMwIiwiaGVhZGluZyI6MTA3LjY5NTM0NzI4NTUyNzUzLCJkaXN0Ijo2NS42NDh9LCIxMjQ5NTMxMTUtMTUyNTM5NjcyXzE0MjExMzQ5MDciOnsiaWQiOiIxMjQ5NTMxMTUtMTUyNTM5NjcyXzE0MjExMzQ5MDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTY3MiIsImIiOiIxNDIxMTM0OTA3IiwiaGVhZGluZyI6MTA5LjUyMDMzOTU1NjM0NzI1LCJkaXN0IjoxMy4yNzF9LCIxMjQ5NTMxMTUtMTQyMTEzNDkwN18xNTI1Mzk2NzIiOnsiaWQiOiIxMjQ5NTMxMTUtMTQyMTEzNDkwN18xNTI1Mzk2NzIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ5MDciLCJiIjoiMTUyNTM5NjcyIiwiaGVhZGluZyI6Mjg5LjUyMDMzOTU1NjM0NzI3LCJkaXN0IjoxMy4yNzF9LCIxMjQ5NTMxMTUtMTQyMTEzNDkwN18xNDQwNjA4MzQ3Ijp7ImlkIjoiMTI0OTUzMTE1LTE0MjExMzQ5MDdfMTQ0MDYwODM0NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDkwNyIsImIiOiIxNDQwNjA4MzQ3IiwiaGVhZGluZyI6MTExLjAwOTg2NDQ1NTM0MzEzLCJkaXN0Ijo2LjE4NH0sIjEyNDk1MzExNS0xNDQwNjA4MzQ3XzE0MjExMzQ5MDciOnsiaWQiOiIxMjQ5NTMxMTUtMTQ0MDYwODM0N18xNDIxMTM0OTA3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDQwNjA4MzQ3IiwiYiI6IjE0MjExMzQ5MDciLCJoZWFkaW5nIjoyOTEuMDA5ODY0NDU1MzQzMSwiZGlzdCI6Ni4xODR9LCIxMjQ5NTMxMTUtMTQ0MDYwODM0N18xNDM3NTE0MDI2Ijp7ImlkIjoiMTI0OTUzMTE1LTE0NDA2MDgzNDdfMTQzNzUxNDAyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ0MDYwODM0NyIsImIiOiIxNDM3NTE0MDI2IiwiaGVhZGluZyI6MTA3Ljc5NDQ3NjI5MDA4NzYyLCJkaXN0IjoxNDEuNDY5fSwiMTI0OTUzMTE1LTE0Mzc1MTQwMjZfMTQ0MDYwODM0NyI6eyJpZCI6IjEyNDk1MzExNS0xNDM3NTE0MDI2XzE0NDA2MDgzNDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0Mzc1MTQwMjYiLCJiIjoiMTQ0MDYwODM0NyIsImhlYWRpbmciOjI4Ny43OTQ0NzYyOTAwODc2MywiZGlzdCI6MTQxLjQ2OX0sIjEyNDk1MzExNS0xNDM3NTE0MDI2XzE3NTkyNDI1MjgiOnsiaWQiOiIxMjQ5NTMxMTUtMTQzNzUxNDAyNl8xNzU5MjQyNTI4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDM3NTE0MDI2IiwiYiI6IjE3NTkyNDI1MjgiLCJoZWFkaW5nIjoxMDYuNjMxNTI1NTYyNzE3ODgsImRpc3QiOjI3LjExMn0sIjEyNDk1MzExNS0xNzU5MjQyNTI4XzE0Mzc1MTQwMjYiOnsiaWQiOiIxMjQ5NTMxMTUtMTc1OTI0MjUyOF8xNDM3NTE0MDI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNzU5MjQyNTI4IiwiYiI6IjE0Mzc1MTQwMjYiLCJoZWFkaW5nIjoyODYuNjMxNTI1NTYyNzE3OSwiZGlzdCI6MjcuMTEyfSwiMTI0OTUzMTE1LTE3NTkyNDI1MjhfMTQyMTEzNDgxNCI6eyJpZCI6IjEyNDk1MzExNS0xNzU5MjQyNTI4XzE0MjExMzQ4MTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE3NTkyNDI1MjgiLCJiIjoiMTQyMTEzNDgxNCIsImhlYWRpbmciOjEwOC4yMjExNTM4MTU1MDc2LCJkaXN0IjozNS40NTN9LCIxMjQ5NTMxMTUtMTQyMTEzNDgxNF8xNzU5MjQyNTI4Ijp7ImlkIjoiMTI0OTUzMTE1LTE0MjExMzQ4MTRfMTc1OTI0MjUyOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgxNCIsImIiOiIxNzU5MjQyNTI4IiwiaGVhZGluZyI6Mjg4LjIyMTE1MzgxNTUwNzYsImRpc3QiOjM1LjQ1M30sIjEyNDk1MzExNS0xNDIxMTM0ODE0XzE1MjU2NjM1NSI6eyJpZCI6IjEyNDk1MzExNS0xNDIxMTM0ODE0XzE1MjU2NjM1NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgxNCIsImIiOiIxNTI1NjYzNTUiLCJoZWFkaW5nIjoxMDkuODAxNjY3MDAzOTgzODEsImRpc3QiOjE2LjM2Mn0sIjEyNDk1MzExNS0xNTI1NjYzNTVfMTQyMTEzNDgxNCI6eyJpZCI6IjEyNDk1MzExNS0xNTI1NjYzNTVfMTQyMTEzNDgxNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzU1IiwiYiI6IjE0MjExMzQ4MTQiLCJoZWFkaW5nIjoyODkuODAxNjY3MDAzOTgzOCwiZGlzdCI6MTYuMzYyfSwiMTI0OTUzMTIwLTE1MjQzNTkwNl81MDQ4NjIzMzMiOnsiaWQiOiIxMjQ5NTMxMjAtMTUyNDM1OTA2XzUwNDg2MjMzMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDM1OTA2IiwiYiI6IjUwNDg2MjMzMyIsImhlYWRpbmciOi0xNjQuODI0MzI1NzcwNTMyMjMsImRpc3QiOjM2Ljc1Nn0sIjEyNDk1MzEyMC01MDQ4NjIzMzNfMTUyMzc0NzYwIjp7ImlkIjoiMTI0OTUzMTIwLTUwNDg2MjMzM18xNTIzNzQ3NjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjUwNDg2MjMzMyIsImIiOiIxNTIzNzQ3NjAiLCJoZWFkaW5nIjotMTYyLjc3NzIyNTY2NTU5MDc4LCJkaXN0IjozMi40OTd9LCIxMjQ5NTMxMjgtMTUyNDM1ODk3XzE2MjY1NTg1OTAiOnsiaWQiOiIxMjQ5NTMxMjgtMTUyNDM1ODk3XzE2MjY1NTg1OTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQzNTg5NyIsImIiOiIxNjI2NTU4NTkwIiwiaGVhZGluZyI6MTkuMTQ1OTMxNDk2NzkxODEsImRpc3QiOjExLjczNX0sIjEyNDk1MzEyOC0xNjI2NTU4NTkwXzE5ODA5NDcxODEiOnsiaWQiOiIxMjQ5NTMxMjgtMTYyNjU1ODU5MF8xOTgwOTQ3MTgxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU4NTkwIiwiYiI6IjE5ODA5NDcxODEiLCJoZWFkaW5nIjoxOS4xNDU5MjI4MjA4OTA4NiwiZGlzdCI6NS44Njd9LCIxMjQ5NTMxMjgtMTk4MDk0NzE4MV8xNDIxMTM0NzUwIjp7ImlkIjoiMTI0OTUzMTI4LTE5ODA5NDcxODFfMTQyMTEzNDc1MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTk4MDk0NzE4MSIsImIiOiIxNDIxMTM0NzUwIiwiaGVhZGluZyI6MTguODI4MTU0NzQzNzMxNjEsImRpc3QiOjk4LjM4NH0sIjEyNDk1MzEyOC0xNDIxMTM0NzUwXzE1MjUzOTY2NiI6eyJpZCI6IjEyNDk1MzEyOC0xNDIxMTM0NzUwXzE1MjUzOTY2NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc1MCIsImIiOiIxNTI1Mzk2NjYiLCJoZWFkaW5nIjoxNy44MzkwNzMzNzA2MzM2NCwiZGlzdCI6MTAzLjY0Nn0sIjEyNDk1MzEyOC0xNTI1Mzk2NjZfMTQzODA4NTcyMyI6eyJpZCI6IjEyNDk1MzEyOC0xNTI1Mzk2NjZfMTQzODA4NTcyMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjY2IiwiYiI6IjE0MzgwODU3MjMiLCJoZWFkaW5nIjoxNy45NDQ2OTMwNzU1NDM1NjUsImRpc3QiOjc4LjA3Mn0sIjEyNDk1MzEyOC0xNDM4MDg1NzIzXzE0MjExMzQ3OTEiOnsiaWQiOiIxMjQ5NTMxMjgtMTQzODA4NTcyM18xNDIxMTM0NzkxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDM4MDg1NzIzIiwiYiI6IjE0MjExMzQ3OTEiLCJoZWFkaW5nIjoyMS4wOTM4NDM3NjIzNTcsImRpc3QiOjEwLjY5NH0sIjEyNDk1MzEyOC0xNDIxMTM0NzkxXzE1MjUwMjM3OSI6eyJpZCI6IjEyNDk1MzEyOC0xNDIxMTM0NzkxXzE1MjUwMjM3OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc5MSIsImIiOiIxNTI1MDIzNzkiLCJoZWFkaW5nIjoxNi4xMzU1ODMzMjk0OTY0NywiZGlzdCI6MTAuMzg2fSwiMTI0OTUzMTI4LTE1MjUwMjM3OV8xNDIxMTM0ODAzIjp7ImlkIjoiMTI0OTUzMTI4LTE1MjUwMjM3OV8xNDIxMTM0ODAzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDIzNzkiLCJiIjoiMTQyMTEzNDgwMyIsImhlYWRpbmciOjI1LjMzMzQ2NjEyNDQ4NzI3NywiZGlzdCI6MTMuNDkyfSwiMTI0OTUzMTI4LTE0MjExMzQ4MDNfMTQyMTEzNDgwNSI6eyJpZCI6IjEyNDk1MzEyOC0xNDIxMTM0ODAzXzE0MjExMzQ4MDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MDMiLCJiIjoiMTQyMTEzNDgwNSIsImhlYWRpbmciOjM0Ljc3MzcyMzQzNzU4OTIsImRpc3QiOjYuNzQ4fSwiMTI0OTUzMTI4LTE0MjExMzQ4MDVfMTUyNTM5NjY4Ijp7ImlkIjoiMTI0OTUzMTI4LTE0MjExMzQ4MDVfMTUyNTM5NjY4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODA1IiwiYiI6IjE1MjUzOTY2OCIsImhlYWRpbmciOjMzLjA2MTc4NTEwNzg2MDQxLCJkaXN0Ijo1LjI5MX0sIjEyNDk1MzIyNi0xNTI1ODM0MDdfMTUyNDg2NjA5Ijp7ImlkIjoiMTI0OTUzMjI2LTE1MjU4MzQwN18xNTI0ODY2MDkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDA3IiwiYiI6IjE1MjQ4NjYwOSIsImhlYWRpbmciOjE4LjQxOTU5OTM4NTQxMTgzMiwiZGlzdCI6MTAwLjQ4NX0sIjEyNDk1MzIyNi0xNTI0ODY2MDlfMTUyNTgzNDA3Ijp7ImlkIjoiMTI0OTUzMjI2LTE1MjQ4NjYwOV8xNTI1ODM0MDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDg2NjA5IiwiYiI6IjE1MjU4MzQwNyIsImhlYWRpbmciOjE5OC40MTk1OTkzODU0MTE4MywiZGlzdCI6MTAwLjQ4NX0sIjEyNDk1MzIyOC0xNTI0ODY2MDlfNDQzMjE0NjE1Ijp7ImlkIjoiMTI0OTUzMjI4LTE1MjQ4NjYwOV80NDMyMTQ2MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDg2NjA5IiwiYiI6IjQ0MzIxNDYxNSIsImhlYWRpbmciOjE4LjkzODQzOTMxOTE0NTkzNSwiZGlzdCI6NTAuMzk3fSwiMTI0OTUzMjI4LTQ0MzIxNDYxNV8xNTI0ODY2MDkiOnsiaWQiOiIxMjQ5NTMyMjgtNDQzMjE0NjE1XzE1MjQ4NjYwOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTUiLCJiIjoiMTUyNDg2NjA5IiwiaGVhZGluZyI6MTk4LjkzODQzOTMxOTE0NTk0LCJkaXN0Ijo1MC4zOTd9LCIxMjQ5NTMyMjgtNDQzMjE0NjE1XzE1MjU4MzQxMCI6eyJpZCI6IjEyNDk1MzIyOC00NDMyMTQ2MTVfMTUyNTgzNDEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxNSIsImIiOiIxNTI1ODM0MTAiLCJoZWFkaW5nIjoxNi40ODIyMzQxMjY3NzU2NTUsImRpc3QiOjUwLjg2N30sIjEyNDk1MzIyOC0xNTI1ODM0MTBfNDQzMjE0NjE1Ijp7ImlkIjoiMTI0OTUzMjI4LTE1MjU4MzQxMF80NDMyMTQ2MTUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDEwIiwiYiI6IjQ0MzIxNDYxNSIsImhlYWRpbmciOjE5Ni40ODIyMzQxMjY3NzU2NywiZGlzdCI6NTAuODY3fSwiMTI0OTUzMjI4LTE1MjU4MzQxMF80NDMyMTQ2MTYiOnsiaWQiOiIxMjQ5NTMyMjgtMTUyNTgzNDEwXzQ0MzIxNDYxNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODM0MTAiLCJiIjoiNDQzMjE0NjE2IiwiaGVhZGluZyI6MTguNTk5NzUxMTIzNjY4OTEzLCJkaXN0Ijo1Ny4zMTR9LCIxMjQ5NTMyMjgtNDQzMjE0NjE2XzE1MjU4MzQxMCI6eyJpZCI6IjEyNDk1MzIyOC00NDMyMTQ2MTZfMTUyNTgzNDEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxNiIsImIiOiIxNTI1ODM0MTAiLCJoZWFkaW5nIjoxOTguNTk5NzUxMTIzNjY4OSwiZGlzdCI6NTcuMzE0fSwiMTI0OTUzMjI4LTQ0MzIxNDYxNl8xNTI1MDI5NzUiOnsiaWQiOiIxMjQ5NTMyMjgtNDQzMjE0NjE2XzE1MjUwMjk3NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTYiLCJiIjoiMTUyNTAyOTc1IiwiaGVhZGluZyI6MTguMzM0MDUxMDYyMzUyMzksImRpc3QiOjY0LjIzMn0sIjEyNDk1MzIyOC0xNTI1MDI5NzVfNDQzMjE0NjE2Ijp7ImlkIjoiMTI0OTUzMjI4LTE1MjUwMjk3NV80NDMyMTQ2MTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAyOTc1IiwiYiI6IjQ0MzIxNDYxNiIsImhlYWRpbmciOjE5OC4zMzQwNTEwNjIzNTI0LCJkaXN0Ijo2NC4yMzJ9LCIxMjQ5NTMyMzAtMTUyNDU2NjI0XzE1MjU4MzQwNyI6eyJpZCI6IjEyNDk1MzIzMC0xNTI0NTY2MjRfMTUyNTgzNDA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1NjYyNCIsImIiOiIxNTI1ODM0MDciLCJoZWFkaW5nIjotNzEuODU2NTg1MjA5MTYxNTQsImRpc3QiOjExMC4zNjJ9LCIxMjQ5NTMyMzAtMTUyNTgzNDA3XzE1MjQ1NjYyNCI6eyJpZCI6IjEyNDk1MzIzMC0xNTI1ODM0MDdfMTUyNDU2NjI0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzQwNyIsImIiOiIxNTI0NTY2MjQiLCJoZWFkaW5nIjoxMDguMTQzNDE0NzkwODM4NDYsImRpc3QiOjExMC4zNjJ9LCIxMjQ5NTMyMzEtMTUyNTgzNDA3XzQ0MzIxNDY0NSI6eyJpZCI6IjEyNDk1MzIzMS0xNTI1ODM0MDdfNDQzMjE0NjQ1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MzQwNyIsImIiOiI0NDMyMTQ2NDUiLCJoZWFkaW5nIjotNzIuMTE5NjA3ODAxMjM2NjMsImRpc3QiOjUwLjU0OX0sIjEyNDk1MzIzMS00NDMyMTQ2NDVfMTUyNTgzNDA3Ijp7ImlkIjoiMTI0OTUzMjMxLTQ0MzIxNDY0NV8xNTI1ODM0MDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjQ1IiwiYiI6IjE1MjU4MzQwNyIsImhlYWRpbmciOjEwNy44ODAzOTIxOTg3NjMzNywiZGlzdCI6NTAuNTQ5fSwiMTI0OTUzMjMxLTQ0MzIxNDY0NV8xNTIzOTM1MTgiOnsiaWQiOiIxMjQ5NTMyMzEtNDQzMjE0NjQ1XzE1MjM5MzUxOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2NDUiLCJiIjoiMTUyMzkzNTE4IiwiaGVhZGluZyI6LTczLjkzMTAzMjM4MzQ1NzM1LCJkaXN0Ijo1Ni4wNzF9LCIxMjQ5NTMyMzEtMTUyMzkzNTE4XzQ0MzIxNDY0NSI6eyJpZCI6IjEyNDk1MzIzMS0xNTIzOTM1MThfNDQzMjE0NjQ1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUxOCIsImIiOiI0NDMyMTQ2NDUiLCJoZWFkaW5nIjoxMDYuMDY4OTY3NjE2NTQyNjUsImRpc3QiOjU2LjA3MX0sIjEyNDk1MzIzMS0xNTIzOTM1MThfMTUyNjAxMDI4Ijp7ImlkIjoiMTI0OTUzMjMxLTE1MjM5MzUxOF8xNTI2MDEwMjgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyMzkzNTE4IiwiYiI6IjE1MjYwMTAyOCIsImhlYWRpbmciOi03MS4xNTA0MTM4OTU3NzYzOCwiZGlzdCI6MTA5Ljh9LCIxMjQ5NTMyMzEtMTUyNjAxMDI4XzE1MjM5MzUxOCI6eyJpZCI6IjEyNDk1MzIzMS0xNTI2MDEwMjhfMTUyMzkzNTE4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwMTAyOCIsImIiOiIxNTIzOTM1MTgiLCJoZWFkaW5nIjoxMDguODQ5NTg2MTA0MjIzNjIsImRpc3QiOjEwOS44fSwiMTI0OTUzMjMyLTE1MjQ1NjYyOF8xNTI0ODY2MDkiOnsiaWQiOiIxMjQ5NTMyMzItMTUyNDU2NjI4XzE1MjQ4NjYwOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTY2MjgiLCJiIjoiMTUyNDg2NjA5IiwiaGVhZGluZyI6LTcxLjg1NjQzNTEyOTMyMzc2LCJkaXN0IjoxMTAuMzYxfSwiMTI0OTUzMjMyLTE1MjQ4NjYwOV8xNTI0NTY2MjgiOnsiaWQiOiIxMjQ5NTMyMzItMTUyNDg2NjA5XzE1MjQ1NjYyOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDkiLCJiIjoiMTUyNDU2NjI4IiwiaGVhZGluZyI6MTA4LjE0MzU2NDg3MDY3NjI0LCJkaXN0IjoxMTAuMzYxfSwiMTI0OTUzMjMzLTE1MjQ4NjYwOV80NDMyMTQ2NDkiOnsiaWQiOiIxMjQ5NTMyMzMtMTUyNDg2NjA5XzQ0MzIxNDY0OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODY2MDkiLCJiIjoiNDQzMjE0NjQ5IiwiaGVhZGluZyI6LTcxLjYxNDk2Njk2Mzk4Njc2LCJkaXN0Ijo1Mi43MjJ9LCIxMjQ5NTMyMzMtNDQzMjE0NjQ5XzE1MjQ4NjYwOSI6eyJpZCI6IjEyNDk1MzIzMy00NDMyMTQ2NDlfMTUyNDg2NjA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDY0OSIsImIiOiIxNTI0ODY2MDkiLCJoZWFkaW5nIjoxMDguMzg1MDMzMDM2MDEzMjQsImRpc3QiOjUyLjcyMn0sIjEyNDk1MzIzMy00NDMyMTQ2NDlfMTUyMzkzNTIxIjp7ImlkIjoiMTI0OTUzMjMzLTQ0MzIxNDY0OV8xNTIzOTM1MjEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjQ5IiwiYiI6IjE1MjM5MzUyMSIsImhlYWRpbmciOi02OS43MTY5ODQwMzYxMzU0NCwiZGlzdCI6NTQuMzY0fSwiMTI0OTUzMjMzLTE1MjM5MzUyMV80NDMyMTQ2NDkiOnsiaWQiOiIxMjQ5NTMyMzMtMTUyMzkzNTIxXzQ0MzIxNDY0OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTM1MjEiLCJiIjoiNDQzMjE0NjQ5IiwiaGVhZGluZyI6MTEwLjI4MzAxNTk2Mzg2NDU2LCJkaXN0Ijo1NC4zNjR9LCIxMjQ5NTMyMzMtMTUyMzkzNTIxXzE1MjQ4NjYxMCI6eyJpZCI6IjEyNDk1MzIzMy0xNTIzOTM1MjFfMTUyNDg2NjEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzUyMSIsImIiOiIxNTI0ODY2MTAiLCJoZWFkaW5nIjotNzAuOTMxNTUwMjYwMTg4NzMsImRpc3QiOjExMS45Nzl9LCIxMjQ5NTMyMzMtMTUyNDg2NjEwXzE1MjM5MzUyMSI6eyJpZCI6IjEyNDk1MzIzMy0xNTI0ODY2MTBfMTUyMzkzNTIxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4NjYxMCIsImIiOiIxNTIzOTM1MjEiLCJoZWFkaW5nIjoxMDkuMDY4NDQ5NzM5ODExMjcsImRpc3QiOjExMS45Nzl9LCIxMjQ5NTM3MDQtMTUyNTAyOTYzXzE1MjUwMjk2NSI6eyJpZCI6IjEyNDk1MzcwNC0xNTI1MDI5NjNfMTUyNTAyOTY1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDI5NjMiLCJiIjoiMTUyNTAyOTY1IiwiaGVhZGluZyI6LTcyLjU1NTI5NzMyNDQwNjU0LCJkaXN0IjoyMi4xODd9LCIxMjQ5NTM3MDQtMTUyNTAyOTY1XzE1MjUwMjk2MyI6eyJpZCI6IjEyNDk1MzcwNC0xNTI1MDI5NjVfMTUyNTAyOTYzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDI5NjUiLCJiIjoiMTUyNTAyOTYzIiwiaGVhZGluZyI6MTA3LjQ0NDcwMjY3NTU5MzQ2LCJkaXN0IjoyMi4xODd9LCIxMjQ5NTM3MDQtMTUyNTAyOTY1XzEzODkwNjc1OTAiOnsiaWQiOiIxMjQ5NTM3MDQtMTUyNTAyOTY1XzEzODkwNjc1OTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUwMjk2NSIsImIiOiIxMzg5MDY3NTkwIiwiaGVhZGluZyI6LTcxLjA5MTE2ODY4NDA4MTYsImRpc3QiOjM3LjYzfSwiMTI0OTUzNzA0LTEzODkwNjc1OTBfMTUyNTAyOTY1Ijp7ImlkIjoiMTI0OTUzNzA0LTEzODkwNjc1OTBfMTUyNTAyOTY1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMzg5MDY3NTkwIiwiYiI6IjE1MjUwMjk2NSIsImhlYWRpbmciOjEwOC45MDg4MzEzMTU5MTg0LCJkaXN0IjozNy42M30sIjEyNDk1MzcwNC0xMzg5MDY3NTkwXzE1MjUwMjk2NyI6eyJpZCI6IjEyNDk1MzcwNC0xMzg5MDY3NTkwXzE1MjUwMjk2NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTM4OTA2NzU5MCIsImIiOiIxNTI1MDI5NjciLCJoZWFkaW5nIjotNzAuMTk3ODQ2MzA3MjU3NTUsImRpc3QiOjE2LjM2Mn0sIjEyNDk1MzcwNC0xNTI1MDI5NjdfMTM4OTA2NzU5MCI6eyJpZCI6IjEyNDk1MzcwNC0xNTI1MDI5NjdfMTM4OTA2NzU5MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTAyOTY3IiwiYiI6IjEzODkwNjc1OTAiLCJoZWFkaW5nIjoxMDkuODAyMTUzNjkyNzQyNDUsImRpc3QiOjE2LjM2Mn0sIjEyNjQwNTQ4My0xNTI1Mzk2NjhfMTQyMTEzNDgxMyI6eyJpZCI6IjEyNjQwNTQ4My0xNTI1Mzk2NjhfMTQyMTEzNDgxMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjY4IiwiYiI6IjE0MjExMzQ4MTMiLCJoZWFkaW5nIjozMS4wMDAzMzAwMzU4MjAyMzQsImRpc3QiOjE2LjgxM30sIjEyNjQwNTQ4My0xNDIxMTM0ODEzXzE0MjExMzQ4MjMiOnsiaWQiOiIxMjY0MDU0ODMtMTQyMTEzNDgxM18xNDIxMTM0ODIzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODEzIiwiYiI6IjE0MjExMzQ4MjMiLCJoZWFkaW5nIjozMC4wNTQyNjYwOTcyMDkwMDUsImRpc3QiOjcuNjg1fSwiMTI2NDA1NDgzLTE0MjExMzQ4MjNfMTUyNTM5NjcwIjp7ImlkIjoiMTI2NDA1NDgzLTE0MjExMzQ4MjNfMTUyNTM5NjcwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODIzIiwiYiI6IjE1MjUzOTY3MCIsImhlYWRpbmciOjIwLjQwMzQ3NzY4NDYzNjk0NywiZGlzdCI6OC4yNzl9LCIxMjY0MDU0ODUtMTUyNTM5NjcwXzE0MjExMzQ4NzkiOnsiaWQiOiIxMjY0MDU0ODUtMTUyNTM5NjcwXzE0MjExMzQ4NzkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTY3MCIsImIiOiIxNDIxMTM0ODc5IiwiaGVhZGluZyI6MTcuODk3NjMwOTI1ODY3MzY4LCJkaXN0Ijo1MC4wOTN9LCIxMjY0MDU0ODUtMTQyMTEzNDg3OV8xNTI1Mzk2NzIiOnsiaWQiOiIxMjY0MDU0ODUtMTQyMTEzNDg3OV8xNTI1Mzk2NzIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4NzkiLCJiIjoiMTUyNTM5NjcyIiwiaGVhZGluZyI6MTYuMTM1NDI0MTY3OTEzODYsImRpc3QiOjEzLjg0OH0sIjEyODI0NzUxOS0xNTI1NjYzNTVfMTQyMTEzNDgxMSI6eyJpZCI6IjEyODI0NzUxOS0xNTI1NjYzNTVfMTQyMTEzNDgxMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzU1IiwiYiI6IjE0MjExMzQ4MTEiLCJoZWFkaW5nIjoxMDQuMzYxNDE4OTkzMzA2OCwiZGlzdCI6MTcuODc3fSwiMTI4MjQ3NTE5LTE0MjExMzQ4MTFfMTUyNTY2MzU1Ijp7ImlkIjoiMTI4MjQ3NTE5LTE0MjExMzQ4MTFfMTUyNTY2MzU1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODExIiwiYiI6IjE1MjU2NjM1NSIsImhlYWRpbmciOjI4NC4zNjE0MTg5OTMzMDY4LCJkaXN0IjoxNy44Nzd9LCIxMjgyNDc1MTktMTQyMTEzNDgxMV8xNDQwNjA4MzMyIjp7ImlkIjoiMTI4MjQ3NTE5LTE0MjExMzQ4MTFfMTQ0MDYwODMzMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgxMSIsImIiOiIxNDQwNjA4MzMyIiwiaGVhZGluZyI6MTA3LjQ0NDIzOTI1NjQ3NDA4LCJkaXN0IjoyMi4xODh9LCIxMjgyNDc1MTktMTQ0MDYwODMzMl8xNDIxMTM0ODExIjp7ImlkIjoiMTI4MjQ3NTE5LTE0NDA2MDgzMzJfMTQyMTEzNDgxMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ0MDYwODMzMiIsImIiOiIxNDIxMTM0ODExIiwiaGVhZGluZyI6Mjg3LjQ0NDIzOTI1NjQ3NDEsImRpc3QiOjIyLjE4OH0sIjEyODI0NzUxOS0xNDQwNjA4MzMyXzE3NTkyNDI1MjAiOnsiaWQiOiIxMjgyNDc1MTktMTQ0MDYwODMzMl8xNzU5MjQyNTIwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDQwNjA4MzMyIiwiYiI6IjE3NTkyNDI1MjAiLCJoZWFkaW5nIjoxMDYuMDY4NjEyODg2NDQ4NDUsImRpc3QiOjQ4LjA2MX0sIjEyODI0NzUxOS0xNzU5MjQyNTIwXzE0NDA2MDgzMzIiOnsiaWQiOiIxMjgyNDc1MTktMTc1OTI0MjUyMF8xNDQwNjA4MzMyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNzU5MjQyNTIwIiwiYiI6IjE0NDA2MDgzMzIiLCJoZWFkaW5nIjoyODYuMDY4NjEyODg2NDQ4NSwiZGlzdCI6NDguMDYxfSwiMTI4MjQ3NTI5LTE1MjU2NjM1NV8xNDIxMTM0ODI0Ijp7ImlkIjoiMTI4MjQ3NTI5LTE1MjU2NjM1NV8xNDIxMTM0ODI0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNTUiLCJiIjoiMTQyMTEzNDgyNCIsImhlYWRpbmciOjU2LjYzOTU0MjE1NzAxODcsImRpc3QiOjE2LjEyN30sIjEyODI0NzUyOS0xNDIxMTM0ODI0XzE1MjU2NjM1NSI6eyJpZCI6IjEyODI0NzUyOS0xNDIxMTM0ODI0XzE1MjU2NjM1NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgyNCIsImIiOiIxNTI1NjYzNTUiLCJoZWFkaW5nIjoyMzYuNjM5NTQyMTU3MDE4NywiZGlzdCI6MTYuMTI3fSwiMTI4MjQ3NTI5LTE0MjExMzQ4MjRfMTQyMTEzNDgyNyI6eyJpZCI6IjEyODI0NzUyOS0xNDIxMTM0ODI0XzE0MjExMzQ4MjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MjQiLCJiIjoiMTQyMTEzNDgyNyIsImhlYWRpbmciOjYyLjc4MDA5MTI5NTc3NjI5NSwiZGlzdCI6NjAuNTl9LCIxMjgyNDc1MjktMTQyMTEzNDgyN18xNDIxMTM0ODI0Ijp7ImlkIjoiMTI4MjQ3NTI5LTE0MjExMzQ4MjdfMTQyMTEzNDgyNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgyNyIsImIiOiIxNDIxMTM0ODI0IiwiaGVhZGluZyI6MjQyLjc4MDA5MTI5NTc3NjMsImRpc3QiOjYwLjU5fSwiMTI4NjM3NTM2LTE1MjQzNTkwMl8xNjI2NTU1ODM1Ijp7ImlkIjoiMTI4NjM3NTM2LTE1MjQzNTkwMl8xNjI2NTU1ODM1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU5MDIiLCJiIjoiMTYyNjU1NTgzNSIsImhlYWRpbmciOjI1Ljc0MzEyNjgyNjU0NjQxMiwiZGlzdCI6MTEuMDc2fSwiMTI4NjM3NTM2LTE2MjY1NTU4MzVfMTUyNDM1OTAyIjp7ImlkIjoiMTI4NjM3NTM2LTE2MjY1NTU4MzVfMTUyNDM1OTAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODM1IiwiYiI6IjE1MjQzNTkwMiIsImhlYWRpbmciOjIwNS43NDMxMjY4MjY1NDY0MiwiZGlzdCI6MTEuMDc2fSwiMTI4OTI4ODI0LTE1MjQxNDc3N18xNDgxMzY0MzA3Ijp7ImlkIjoiMTI4OTI4ODI0LTE1MjQxNDc3N18xNDgxMzY0MzA3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MTQ3NzciLCJiIjoiMTQ4MTM2NDMwNyIsImhlYWRpbmciOjAsImRpc3QiOjI5LjkzMX0sIjEyODkyODgyNC0xNDgxMzY0MzA3XzE1MjQxNDc3NyI6eyJpZCI6IjEyODkyODgyNC0xNDgxMzY0MzA3XzE1MjQxNDc3NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ4MTM2NDMwNyIsImIiOiIxNTI0MTQ3NzciLCJoZWFkaW5nIjoxODAsImRpc3QiOjI5LjkzMX0sIjEyODkyODgyNC0xNDgxMzY0MzA3XzE1MjU2NjMwNSI6eyJpZCI6IjEyODkyODgyNC0xNDgxMzY0MzA3XzE1MjU2NjMwNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ4MTM2NDMwNyIsImIiOiIxNTI1NjYzMDUiLCJoZWFkaW5nIjoxNS4yODQ2MTQzMTg3ODE4MjcsImRpc3QiOjYyLjA1OH0sIjEyODkyODgyNC0xNTI1NjYzMDVfMTQ4MTM2NDMwNyI6eyJpZCI6IjEyODkyODgyNC0xNTI1NjYzMDVfMTQ4MTM2NDMwNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzA1IiwiYiI6IjE0ODEzNjQzMDciLCJoZWFkaW5nIjoxOTUuMjg0NjE0MzE4NzgxODIsImRpc3QiOjYyLjA1OH0sIjEyOTE3MDcwMC0xNTI0NDczNTBfMjQ4MTkzMDY5MyI6eyJpZCI6IjEyOTE3MDcwMC0xNTI0NDczNTBfMjQ4MTkzMDY5MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNTAiLCJiIjoiMjQ4MTkzMDY5MyIsImhlYWRpbmciOjEwNy4zNjM5MDg4Njg3MjUzNywiZGlzdCI6NzAuNTc2fSwiMTI5MTcwNzAwLTI0ODE5MzA2OTNfMTUyNDQ3MzUwIjp7ImlkIjoiMTI5MTcwNzAwLTI0ODE5MzA2OTNfMTUyNDQ3MzUwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjI0ODE5MzA2OTMiLCJiIjoiMTUyNDQ3MzUwIiwiaGVhZGluZyI6Mjg3LjM2MzkwODg2ODcyNTQsImRpc3QiOjcwLjU3Nn0sIjEyOTE3MDcwMC0yNDgxOTMwNjkzXzE1MjQ0NzM1MyI6eyJpZCI6IjEyOTE3MDcwMC0yNDgxOTMwNjkzXzE1MjQ0NzM1MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIyNDgxOTMwNjkzIiwiYiI6IjE1MjQ0NzM1MyIsImhlYWRpbmciOjEwNy45NTI1MDkwNDAyNjUyMSwiZGlzdCI6NjQuNzM4fSwiMTI5MTcwNzAwLTE1MjQ0NzM1M18yNDgxOTMwNjkzIjp7ImlkIjoiMTI5MTcwNzAwLTE1MjQ0NzM1M18yNDgxOTMwNjkzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM1MyIsImIiOiIyNDgxOTMwNjkzIiwiaGVhZGluZyI6Mjg3Ljk1MjUwOTA0MDI2NTIsImRpc3QiOjY0LjczOH0sIjEyOTE3MDcwMC0xNTI0NDczNTNfMTUyNDQ3MzU2Ijp7ImlkIjoiMTI5MTcwNzAwLTE1MjQ0NzM1M18xNTI0NDczNTYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzUzIiwiYiI6IjE1MjQ0NzM1NiIsImhlYWRpbmciOjEwOC4wNTc5NjE3NzU0NDU2OSwiZGlzdCI6MTA3LjI4N30sIjEyOTE3MDcwMC0xNTI0NDczNTZfMTUyNDQ3MzUzIjp7ImlkIjoiMTI5MTcwNzAwLTE1MjQ0NzM1Nl8xNTI0NDczNTMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDQ3MzU2IiwiYiI6IjE1MjQ0NzM1MyIsImhlYWRpbmciOjI4OC4wNTc5NjE3NzU0NDU3LCJkaXN0IjoxMDcuMjg3fSwiMTMwNjY4NzkxLTE1MjUwMjk2N18xNTI1MDI5NzAiOnsiaWQiOiIxMzA2Njg3OTEtMTUyNTAyOTY3XzE1MjUwMjk3MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTAyOTY3IiwiYiI6IjE1MjUwMjk3MCIsImhlYWRpbmciOi03MS42MTQ3Njc1MDIxODAzMSwiZGlzdCI6NTIuNzIyfSwiMTMwNjY4NzkxLTE1MjUwMjk3MF8xNTI1MDI5NjciOnsiaWQiOiIxMzA2Njg3OTEtMTUyNTAyOTcwXzE1MjUwMjk2NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTAyOTcwIiwiYiI6IjE1MjUwMjk2NyIsImhlYWRpbmciOjEwOC4zODUyMzI0OTc4MTk2OSwiZGlzdCI6NTIuNzIyfSwiMTMxMjgxNjA2LTE1MjQzNTkwMl8xNDIxMTM0NzI4Ijp7ImlkIjoiMTMxMjgxNjA2LTE1MjQzNTkwMl8xNDIxMTM0NzI4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU5MDIiLCJiIjoiMTQyMTEzNDcyOCIsImhlYWRpbmciOjEwNC44ODkxODUxMjAzMjI0NywiZGlzdCI6MTIuOTQzfSwiMTMxMjgxNjA2LTE0MjExMzQ3MjhfMTYyNjU2ODYyNSI6eyJpZCI6IjEzMTI4MTYwNi0xNDIxMTM0NzI4XzE2MjY1Njg2MjUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MjgiLCJiIjoiMTYyNjU2ODYyNSIsImhlYWRpbmciOjEwOC4yMjA0MjgxMjEzMTQzLCJkaXN0Ijo3MC45MDh9LCIxMzEyODE2MDYtMTYyNjU2ODYyNV8zMDA3NjUwMzUiOnsiaWQiOiIxMzEyODE2MDYtMTYyNjU2ODYyNV8zMDA3NjUwMzUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1Njg2MjUiLCJiIjoiMzAwNzY1MDM1IiwiaGVhZGluZyI6NzguMTY4Nzc4NzQ3MjY0MDEsImRpc3QiOjEwLjgxNH0sIjEzMTI4MTYzNC0xNTIzNzQ3NjBfMTA3Nzg0MDE5NyI6eyJpZCI6IjEzMTI4MTYzNC0xNTIzNzQ3NjBfMTA3Nzg0MDE5NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzc0NzYwIiwiYiI6IjEwNzc4NDAxOTciLCJoZWFkaW5nIjotMTYzLjA2MTg0NDc0MTU0MTMsImRpc3QiOjY2LjA1NH0sIjEzMTI4MTYzNC0xMDc3ODQwMTk3XzE1MjM4MzIzNiI6eyJpZCI6IjEzMTI4MTYzNC0xMDc3ODQwMTk3XzE1MjM4MzIzNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3Nzg0MDE5NyIsImIiOiIxNTIzODMyMzYiLCJoZWFkaW5nIjotMTYzLjAxNzMxNzQ0ODczMTkyLCJkaXN0IjoxMjUuMTg0fSwiMTMxMjgxNjM0LTE1MjM4MzIzNl8xNjMxNDk2NTYwIjp7ImlkIjoiMTMxMjgxNjM0LTE1MjM4MzIzNl8xNjMxNDk2NTYwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzODMyMzYiLCJiIjoiMTYzMTQ5NjU2MCIsImhlYWRpbmciOi0xNjIuNjQ3MzY2ODMxNjA4OSwiZGlzdCI6MjkuMDM2fSwiMTMxMjgxNjM0LTE2MzE0OTY1NjBfMTUyNzExMTE2Ijp7ImlkIjoiMTMxMjgxNjM0LTE2MzE0OTY1NjBfMTUyNzExMTE2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjMxNDk2NTYwIiwiYiI6IjE1MjcxMTExNiIsImhlYWRpbmciOi0xNjIuNTk2OTc3Mjc3MTkxNTcsImRpc3QiOjQxLjgyM30sIjEzMTU0NDkwMi0xMDczNDAwOTY4XzI2Mzc2NzM0NDQiOnsiaWQiOiIxMzE1NDQ5MDItMTA3MzQwMDk2OF8yNjM3NjczNDQ0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzM0MDA5NjgiLCJiIjoiMjYzNzY3MzQ0NCIsImhlYWRpbmciOi03MC40ODA3NzIyMDkzNjUxNiwiZGlzdCI6MTMuMjcxfSwiMTMxNTQ0OTAyLTI2Mzc2NzM0NDRfMTA3MzQwMDk3MSI6eyJpZCI6IjEzMTU0NDkwMi0yNjM3NjczNDQ0XzEwNzM0MDA5NzEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY3MzQ0NCIsImIiOiIxMDczNDAwOTcxIiwiaGVhZGluZyI6LTcyLjQ0OTQ3ODU3MTc3NzYsImRpc3QiOjUxLjQ2OH0sIjEzMTU0NDkwMi0xMDczNDAwOTcxXzEwNzM0MDA5NzYiOnsiaWQiOiIxMzE1NDQ5MDItMTA3MzQwMDk3MV8xMDczNDAwOTc2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzM0MDA5NzEiLCJiIjoiMTA3MzQwMDk3NiIsImhlYWRpbmciOi03My45MzIwODY1MjExNTE5LCJkaXN0Ijo4LjAxMX0sIjEzMTU0NDkwMi0xMDczNDAwOTc2XzEwNzM0MDA5ODQiOnsiaWQiOiIxMzE1NDQ5MDItMTA3MzQwMDk3Nl8xMDczNDAwOTg0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjEwNzM0MDA5NzYiLCJiIjoiMTA3MzQwMDk4NCIsImhlYWRpbmciOi05NS45NzkxOTA4NDYwMjcwNywiZGlzdCI6MTAuNjQyfSwiMTMxNTQ0OTA1LTE1MjYzMTE4MV8yNjM3NjczNDQxIjp7ImlkIjoiMTMxNTQ0OTA1LTE1MjYzMTE4MV8yNjM3NjczNDQxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2MzExODEiLCJiIjoiMjYzNzY3MzQ0MSIsImhlYWRpbmciOjExMS4wMDg1ODMwNjA4NTI3NywiZGlzdCI6OS4yNzd9LCIxMzE1NDQ5MDUtMjYzNzY3MzQ0MV8xNTI1Mzk2NDkiOnsiaWQiOiIxMzE1NDQ5MDUtMjYzNzY3MzQ0MV8xNTI1Mzk2NDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzM0NDEiLCJiIjoiMTUyNTM5NjQ5IiwiaGVhZGluZyI6MTA3LjYxMDA5MzMyMzU2NDg1LCJkaXN0Ijo5OC45MzN9LCIxMzE1NDQ5MDgtMTUyNzExMTE2XzEwNzM0MDA3NjEiOnsiaWQiOiIxMzE1NDQ5MDgtMTUyNzExMTE2XzEwNzM0MDA3NjEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjcxMTExNiIsImIiOiIxMDczNDAwNzYxIiwiaGVhZGluZyI6LTkzLjE0MDEzODU3MTI4MjQ0LCJkaXN0IjoyMC4yMzd9LCIxMzE1NDQ5MDgtMTA3MzQwMDc2MV8xNjUyNDg2MDU0Ijp7ImlkIjoiMTMxNTQ0OTA4LTEwNzM0MDA3NjFfMTY1MjQ4NjA1NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDc2MSIsImIiOiIxNjUyNDg2MDU0IiwiaGVhZGluZyI6LTg0LjUxNTkzNDI1MjE3ODY4LCJkaXN0IjoxMS42fSwiMTMxNTQ0OTA4LTE2NTI0ODYwNTRfMTA3MzQwMDkyMCI6eyJpZCI6IjEzMTU0NDkwOC0xNjUyNDg2MDU0XzEwNzM0MDA5MjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2NTI0ODYwNTQiLCJiIjoiMTA3MzQwMDkyMCIsImhlYWRpbmciOi03Ni4zNjYzNTg1ODg1NjE0NSwiZGlzdCI6MTguODEyfSwiMTMxNTQ0OTA4LTEwNzM0MDA5MjBfMTA3MzQwMDkzMiI6eyJpZCI6IjEzMTU0NDkwOC0xMDczNDAwOTIwXzEwNzM0MDA5MzIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5MjAiLCJiIjoiMTA3MzQwMDkzMiIsImhlYWRpbmciOi03Mi4zNjg1ODQzNDczNTQxMiwiZGlzdCI6NTguNTZ9LCIxMzE1NDQ5MDgtMTA3MzQwMDkzMl8xMDc3ODQwMzc0Ijp7ImlkIjoiMTMxNTQ0OTA4LTEwNzM0MDA5MzJfMTA3Nzg0MDM3NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDkzMiIsImIiOiIxMDc3ODQwMzc0IiwiaGVhZGluZyI6LTczLjI3MTg4NTkzNTQxNjU5LCJkaXN0Ijo0Ni4yMTh9LCIxMzE1NDQ5MDgtMTA3Nzg0MDM3NF8yNjM3Njc2MTQ1Ijp7ImlkIjoiMTMxNTQ0OTA4LTEwNzc4NDAzNzRfMjYzNzY3NjE0NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3Nzg0MDM3NCIsImIiOiIyNjM3Njc2MTQ1IiwiaGVhZGluZyI6LTczLjM2OTM4NTE0ODQ5OTAyLCJkaXN0Ijo1NC4yMjh9LCIxMzE1NDQ5MDgtMjYzNzY3NjE0NV8xMDczNDAwOTM4Ijp7ImlkIjoiMTMxNTQ0OTA4LTI2Mzc2NzYxNDVfMTA3MzQwMDkzOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE0NSIsImIiOiIxMDczNDAwOTM4IiwiaGVhZGluZyI6LTczLjkzMjI0OTcwNDQxODA4LCJkaXN0IjoxMi4wMTZ9LCIxMzQ1NjY3NDAtMTUyNzIzNDA0XzE4NTExOTI1MjMiOnsiaWQiOiIxMzQ1NjY3NDAtMTUyNzIzNDA0XzE4NTExOTI1MjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjcyMzQwNCIsImIiOiIxODUxMTkyNTIzIiwiaGVhZGluZyI6LTUzLjQ3NDc3MjM5NzA4NDU4LCJkaXN0IjoxNi43NjN9LCIxMzQ1NjY3NDAtMTg1MTE5MjUyM18xNTI3MjM0MDQiOnsiaWQiOiIxMzQ1NjY3NDAtMTg1MTE5MjUyM18xNTI3MjM0MDQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE4NTExOTI1MjMiLCJiIjoiMTUyNzIzNDA0IiwiaGVhZGluZyI6MTI2LjUyNTIyNzYwMjkxNTQyLCJkaXN0IjoxNi43NjN9LCIxMzQ1NjY3NDAtMTg1MTE5MjUyM18yMTY3MTYxMjE5Ijp7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MjNfMjE2NzE2MTIxOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUyMyIsImIiOiIyMTY3MTYxMjE5IiwiaGVhZGluZyI6LTM1Ljg3ODU5NDUyOTM3NzYxLCJkaXN0Ijo4LjIwOX0sIjEzNDU2Njc0MC0yMTY3MTYxMjE5XzE4NTExOTI1MjMiOnsiaWQiOiIxMzQ1NjY3NDAtMjE2NzE2MTIxOV8xODUxMTkyNTIzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjE5IiwiYiI6IjE4NTExOTI1MjMiLCJoZWFkaW5nIjoxNDQuMTIxNDA1NDcwNjIyNCwiZGlzdCI6OC4yMDl9LCIxMzQ1NjY3NDAtMjE2NzE2MTIxOV8xODUxMTkyNTI2Ijp7ImlkIjoiMTM0NTY2NzQwLTIxNjcxNjEyMTlfMTg1MTE5MjUyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTIxOSIsImIiOiIxODUxMTkyNTI2IiwiaGVhZGluZyI6LTMwLjA1NTczMTg5MjkzNTIwMywiZGlzdCI6My44NDJ9LCIxMzQ1NjY3NDAtMTg1MTE5MjUyNl8yMTY3MTYxMjE5Ijp7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MjZfMjE2NzE2MTIxOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUyNiIsImIiOiIyMTY3MTYxMjE5IiwiaGVhZGluZyI6MTQ5Ljk0NDI2ODEwNzA2NDgsImRpc3QiOjMuODQyfSwiMTM0NTY2NzQwLTE4NTExOTI1MjZfMTg1MTE5MjUyOCI6eyJpZCI6IjEzNDU2Njc0MC0xODUxMTkyNTI2XzE4NTExOTI1MjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE4NTExOTI1MjYiLCJiIjoiMTg1MTE5MjUyOCIsImhlYWRpbmciOi0zMS43OTgwNjE3NjU1MTk2MiwiZGlzdCI6OS4xM30sIjEzNDU2Njc0MC0xODUxMTkyNTI4XzE4NTExOTI1MjYiOnsiaWQiOiIxMzQ1NjY3NDAtMTg1MTE5MjUyOF8xODUxMTkyNTI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODUxMTkyNTI4IiwiYiI6IjE4NTExOTI1MjYiLCJoZWFkaW5nIjoxNDguMjAxOTM4MjM0NDgwNCwiZGlzdCI6OS4xM30sIjEzNDU2Njc0MC0xODUxMTkyNTI4XzE4NTExOTI1MzEiOnsiaWQiOiIxMzQ1NjY3NDAtMTg1MTE5MjUyOF8xODUxMTkyNTMxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODUxMTkyNTI4IiwiYiI6IjE4NTExOTI1MzEiLCJoZWFkaW5nIjotMjUuMzM0NjY3ODc3MjQ3NjgyLCJkaXN0IjoxMy40OTJ9LCIxMzQ1NjY3NDAtMTg1MTE5MjUzMV8xODUxMTkyNTI4Ijp7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MzFfMTg1MTE5MjUyOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUzMSIsImIiOiIxODUxMTkyNTI4IiwiaGVhZGluZyI6MTU0LjY2NTMzMjEyMjc1MjMyLCJkaXN0IjoxMy40OTJ9LCIxMzQ1NjY3NDAtMTg1MTE5MjUzMV8xODUxMTkyNTM0Ijp7ImlkIjoiMTM0NTY2NzQwLTE4NTExOTI1MzFfMTg1MTE5MjUzNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTg1MTE5MjUzMSIsImIiOiIxODUxMTkyNTM0IiwiaGVhZGluZyI6LTIwLjQwNDU0NzAwNzA4OTU2LCJkaXN0Ijo4LjI3OX0sIjEzNDU2Njc0MC0xODUxMTkyNTM0XzE4NTExOTI1MzEiOnsiaWQiOiIxMzQ1NjY3NDAtMTg1MTE5MjUzNF8xODUxMTkyNTMxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODUxMTkyNTM0IiwiYiI6IjE4NTExOTI1MzEiLCJoZWFkaW5nIjoxNTkuNTk1NDUyOTkyOTEwNDUsImRpc3QiOjguMjc5fSwiMTM0NTY2NzQwLTE4NTExOTI1MzRfMjc0MzUwNjc0MiI6eyJpZCI6IjEzNDU2Njc0MC0xODUxMTkyNTM0XzI3NDM1MDY3NDIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE4NTExOTI1MzQiLCJiIjoiMjc0MzUwNjc0MiIsImhlYWRpbmciOjE3LjIyMjg0NjU3NTA4MDIyMiwiZGlzdCI6MTYuMjQ5fSwiMTM0NTY2NzQwLTI3NDM1MDY3NDJfMTg1MTE5MjUzNCI6eyJpZCI6IjEzNDU2Njc0MC0yNzQzNTA2NzQyXzE4NTExOTI1MzQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI3NDM1MDY3NDIiLCJiIjoiMTg1MTE5MjUzNCIsImhlYWRpbmciOjE5Ny4yMjI4NDY1NzUwODAyLCJkaXN0IjoxNi4yNDl9LCIxMzQ1NjY3NDAtMjc0MzUwNjc0Ml8xNjI2NTU5MzQ2Ijp7ImlkIjoiMTM0NTY2NzQwLTI3NDM1MDY3NDJfMTYyNjU1OTM0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjc0MzUwNjc0MiIsImIiOiIxNjI2NTU5MzQ2IiwiaGVhZGluZyI6MjAuNDA0MzkyMTEyNTcyNjksImRpc3QiOjc0LjUxNX0sIjEzNDU2Njc0MC0xNjI2NTU5MzQ2XzI3NDM1MDY3NDIiOnsiaWQiOiIxMzQ1NjY3NDAtMTYyNjU1OTM0Nl8yNzQzNTA2NzQyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU5MzQ2IiwiYiI6IjI3NDM1MDY3NDIiLCJoZWFkaW5nIjoyMDAuNDA0MzkyMTEyNTcyNjgsImRpc3QiOjc0LjUxNX0sIjEzNDc5Njk5OC0xNTI3NTkzOThfMTQ4MTQyMDc2OSI6eyJpZCI6IjEzNDc5Njk5OC0xNTI3NTkzOThfMTQ4MTQyMDc2OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNzU5Mzk4IiwiYiI6IjE0ODE0MjA3NjkiLCJoZWFkaW5nIjoxMTEuMDA4NDYzOTk0MDI2OTQsImRpc3QiOjMuMDkyfSwiMTM0Nzk2OTk4LTE0ODE0MjA3NjlfMTA3MzQwMDgyNyI6eyJpZCI6IjEzNDc5Njk5OC0xNDgxNDIwNzY5XzEwNzM0MDA4MjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0ODE0MjA3NjkiLCJiIjoiMTA3MzQwMDgyNyIsImhlYWRpbmciOjEwOS41MTg5Njc5NjU2NTczNCwiZGlzdCI6MjYuNTQzfSwiMTM0Nzk3MDAwLTEwNzM0MDA5NTJfMTA3MzQwMDk1OCI6eyJpZCI6IjEzNDc5NzAwMC0xMDczNDAwOTUyXzEwNzM0MDA5NTgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5NTIiLCJiIjoiMTA3MzQwMDk1OCIsImhlYWRpbmciOi03MC45MzMyMDY2MDQ0NDY0NCwiZGlzdCI6MzAuNTQyfSwiMTM0Nzk3MDAxLTEwNzM0MDA5NThfMTQ4MTQ1Njg3NCI6eyJpZCI6IjEzNDc5NzAwMS0xMDczNDAwOTU4XzE0ODE0NTY4NzQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5NTgiLCJiIjoiMTQ4MTQ1Njg3NCIsImhlYWRpbmciOi03My45MzIyMDg5MzQ5MDkyMSwiZGlzdCI6MTIuMDE2fSwiMTM0Nzk3MDAxLTE0ODE0NTY4NzRfMTA3MzQwMDk1OSI6eyJpZCI6IjEzNDc5NzAwMS0xNDgxNDU2ODc0XzEwNzM0MDA5NTkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0ODE0NTY4NzQiLCJiIjoiMTA3MzQwMDk1OSIsImhlYWRpbmciOi03MS43Nzk2NzQxMTkwODc3MiwiZGlzdCI6NzguMDAxfSwiMTM0Nzk3MDAxLTEwNzM0MDA5NTlfMTA3MzQwMDk2MiI6eyJpZCI6IjEzNDc5NzAwMS0xMDczNDAwOTU5XzEwNzM0MDA5NjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5NTkiLCJiIjoiMTA3MzQwMDk2MiIsImhlYWRpbmciOi03MS45NjQ4Nzg4NDc2ODk5NSwiZGlzdCI6NDYuNTQ5fSwiMTM0Nzk3MDAxLTEwNzM0MDA5NjJfMTA3MzQwMDk2NCI6eyJpZCI6IjEzNDc5NzAwMS0xMDczNDAwOTYyXzEwNzM0MDA5NjQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5NjIiLCJiIjoiMTA3MzQwMDk2NCIsImhlYWRpbmciOi03Mi4xMjA2Nzk0NDQ3NjI5NywiZGlzdCI6NTAuNTUyfSwiMTM0Nzk3MDAxLTEwNzM0MDA5NjRfMjYzNzY3MzQ0MyI6eyJpZCI6IjEzNDc5NzAwMS0xMDczNDAwOTY0XzI2Mzc2NzM0NDMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5NjQiLCJiIjoiMjYzNzY3MzQ0MyIsImhlYWRpbmciOi03My4wMDM0ODk0NDM5Mjg5OCwiZGlzdCI6NDkuMzAyfSwiMTM0Nzk3MDAxLTI2Mzc2NzM0NDNfMTA3MzQwMDk2OCI6eyJpZCI6IjEzNDc5NzAwMS0yNjM3NjczNDQzXzEwNzM0MDA5NjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzM0NDMiLCJiIjoiMTA3MzQwMDk2OCIsImhlYWRpbmciOi03My45MzIxMTc4NzQ3MzU3LCJkaXN0Ijo4LjAxMX0sIjEzNDc5NzAwMy0xNTI0OTU2MjJfNDQyNzYxNTUzIjp7ImlkIjoiMTM0Nzk3MDAzLTE1MjQ5NTYyMl80NDI3NjE1NTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYyMiIsImIiOiI0NDI3NjE1NTMiLCJoZWFkaW5nIjoxMDguNzE4NzgxNjEzMTYzMjYsImRpc3QiOjM0LjU0M30sIjEzNDc5NzAwMy00NDI3NjE1NTNfMTUyNDk1NjIyIjp7ImlkIjoiMTM0Nzk3MDAzLTQ0Mjc2MTU1M18xNTI0OTU2MjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0Mjc2MTU1MyIsImIiOiIxNTI0OTU2MjIiLCJoZWFkaW5nIjoyODguNzE4NzgxNjEzMTYzMywiZGlzdCI6MzQuNTQzfSwiMTM3NDE3NDY2LTE1MjQ1NjYzNl8xODMzNjA2NzU4Ijp7ImlkIjoiMTM3NDE3NDY2LTE1MjQ1NjYzNl8xODMzNjA2NzU4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NTY2MzYiLCJiIjoiMTgzMzYwNjc1OCIsImhlYWRpbmciOi03MS45NjMzMzM4MTk0NTUyMywiZGlzdCI6NDYuNTQ1fSwiMTM3NDE3NDY2LTE4MzM2MDY3NThfMTUyNDU2NjM2Ijp7ImlkIjoiMTM3NDE3NDY2LTE4MzM2MDY3NThfMTUyNDU2NjM2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODMzNjA2NzU4IiwiYiI6IjE1MjQ1NjYzNiIsImhlYWRpbmciOjEwOC4wMzY2NjYxODA1NDQ3NywiZGlzdCI6NDYuNTQ1fSwiMTM3NDE3NDY2LTE4MzM2MDY3NThfMTUyNTAyOTc1Ijp7ImlkIjoiMTM3NDE3NDY2LTE4MzM2MDY3NThfMTUyNTAyOTc1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxODMzNjA2NzU4IiwiYiI6IjE1MjUwMjk3NSIsImhlYWRpbmciOi02OS42Nzc2MDQ1Njk5OTcwMiwiZGlzdCI6MjguNzI4fSwiMTM3NDE3NDY2LTE1MjUwMjk3NV8xODMzNjA2NzU4Ijp7ImlkIjoiMTM3NDE3NDY2LTE1MjUwMjk3NV8xODMzNjA2NzU4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDI5NzUiLCJiIjoiMTgzMzYwNjc1OCIsImhlYWRpbmciOjExMC4zMjIzOTU0MzAwMDI5OCwiZGlzdCI6MjguNzI4fSwiMTM3NDE3NDY2LTE1MjUwMjk3NV8xNTI1MDI5NzYiOnsiaWQiOiIxMzc0MTc0NjYtMTUyNTAyOTc1XzE1MjUwMjk3NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTAyOTc1IiwiYiI6IjE1MjUwMjk3NiIsImhlYWRpbmciOi03My4wNzE3ODk3Mjg1NzExMiwiZGlzdCI6NTMuMzAyfSwiMTM3NDE3NDY2LTE1MjUwMjk3Nl8xNTI1MDI5NzUiOnsiaWQiOiIxMzc0MTc0NjYtMTUyNTAyOTc2XzE1MjUwMjk3NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTAyOTc2IiwiYiI6IjE1MjUwMjk3NSIsImhlYWRpbmciOjEwNi45MjgyMTAyNzE0Mjg4OCwiZGlzdCI6NTMuMzAyfSwiMTM3NDE3NDY2LTE1MjUwMjk3Nl8xNTIzOTM1MjgiOnsiaWQiOiIxMzc0MTc0NjYtMTUyNTAyOTc2XzE1MjM5MzUyOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTAyOTc2IiwiYiI6IjE1MjM5MzUyOCIsImhlYWRpbmciOi03My4wNzE3NjY3Mjc3NzM2LCJkaXN0Ijo1My4zMDJ9LCIxMzc0MTc0NjYtMTUyMzkzNTI4XzE1MjUwMjk3NiI6eyJpZCI6IjEzNzQxNzQ2Ni0xNTIzOTM1MjhfMTUyNTAyOTc2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzOTM1MjgiLCJiIjoiMTUyNTAyOTc2IiwiaGVhZGluZyI6MTA2LjkyODIzMzI3MjIyNjQsImRpc3QiOjUzLjMwMn0sIjEzNzQxNzQ2Ni0xNTIzOTM1MjhfMTUyMzkzNTQzIjp7ImlkIjoiMTM3NDE3NDY2LTE1MjM5MzUyOF8xNTIzOTM1NDMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjM5MzUyOCIsImIiOiIxNTIzOTM1NDMiLCJoZWFkaW5nIjotNzEuNTg5MTk3NjUyMjA5MTcsImRpc3QiOjQ1LjYzMX0sIjEzNzQxNzQ2Ni0xNTIzOTM1NDNfMTUyMzkzNTI4Ijp7ImlkIjoiMTM3NDE3NDY2LTE1MjM5MzU0M18xNTIzOTM1MjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjM5MzU0MyIsImIiOiIxNTIzOTM1MjgiLCJoZWFkaW5nIjoxMDguNDEwODAyMzQ3NzkwODMsImRpc3QiOjQ1LjYzMX0sIjEzNzQxNzQ2Ni0xNTIzOTM1NDNfMTQzMDQ3MDI2MCI6eyJpZCI6IjEzNzQxNzQ2Ni0xNTIzOTM1NDNfMTQzMDQ3MDI2MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzkzNTQzIiwiYiI6IjE0MzA0NzAyNjAiLCJoZWFkaW5nIjotNzIuMTE5MDU5Nzk0NDg3OTcsImRpc3QiOjUwLjU0OH0sIjEzNzQxNzQ2Ni0xNDMwNDcwMjYwXzE1MjM5MzU0MyI6eyJpZCI6IjEzNzQxNzQ2Ni0xNDMwNDcwMjYwXzE1MjM5MzU0MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQzMDQ3MDI2MCIsImIiOiIxNTIzOTM1NDMiLCJoZWFkaW5nIjoxMDcuODgwOTQwMjA1NTEyMDMsImRpc3QiOjUwLjU0OH0sIjEzNzQxNzQ2Ni0xNDMwNDcwMjYwXzUwNDg1MDkwOCI6eyJpZCI6IjEzNzQxNzQ2Ni0xNDMwNDcwMjYwXzUwNDg1MDkwOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQzMDQ3MDI2MCIsImIiOiI1MDQ4NTA5MDgiLCJoZWFkaW5nIjotNzEuNTU0NDIwNTg4MzAyMjgsImRpc3QiOjM4LjU0fSwiMTM3NDE3NDY2LTUwNDg1MDkwOF8xNDMwNDcwMjYwIjp7ImlkIjoiMTM3NDE3NDY2LTUwNDg1MDkwOF8xNDMwNDcwMjYwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI1MDQ4NTA5MDgiLCJiIjoiMTQzMDQ3MDI2MCIsImhlYWRpbmciOjEwOC40NDU1Nzk0MTE2OTc3MiwiZGlzdCI6MzguNTR9LCIxNDM5NDgxNjUtMTUyNDUxNjA2XzE1MjUxNjY0NiI6eyJpZCI6IjE0Mzk0ODE2NS0xNTI0NTE2MDZfMTUyNTE2NjQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NTE2MDYiLCJiIjoiMTUyNTE2NjQ2IiwiaGVhZGluZyI6MTA3LjMzOTY2MDczMjA1NTQyLCJkaXN0IjoxMDcuODY2fSwiMTQzOTQ4MTY1LTE1MjUxNjY0Nl8xNTI1MTY2NDgiOnsiaWQiOiIxNDM5NDgxNjUtMTUyNTE2NjQ2XzE1MjUxNjY0OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQ2IiwiYiI6IjE1MjUxNjY0OCIsImhlYWRpbmciOjEwOS4zNDU0NTIxNzE1MzIzLCJkaXN0IjoxMDcuMDg2fSwiMTQzOTQ4MTc4LTE1MjYyOTM5Nl8xNTIzODEyNTciOnsiaWQiOiIxNDM5NDgxNzgtMTUyNjI5Mzk2XzE1MjM4MTI1NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjI5Mzk2IiwiYiI6IjE1MjM4MTI1NyIsImhlYWRpbmciOi0xNjIuNTY5MjA2NzEzOTQ5LCJkaXN0IjoxMDkuMjIxfSwiMTQzOTQ4MTc4LTE1MjM4MTI1N18xNzU5MzI4NzQyIjp7ImlkIjoiMTQzOTQ4MTc4LTE1MjM4MTI1N18xNzU5MzI4NzQyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzODEyNTciLCJiIjoiMTc1OTMyODc0MiIsImhlYWRpbmciOi0xNTkuNTkzOTY0MjQ2MjcyNzgsImRpc3QiOjguMjh9LCIxNDM5NDgxODUtMTUyNDUxNjA2XzQ0MzE4NzA3MyI6eyJpZCI6IjE0Mzk0ODE4NS0xNTI0NTE2MDZfNDQzMTg3MDczIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYwNiIsImIiOiI0NDMxODcwNzMiLCJoZWFkaW5nIjoxNy40MzA3MTEwODQzMzYzNSwiZGlzdCI6NTQuNjF9LCIxNDM5NDgxODUtNDQzMTg3MDczXzE1MjQ1MTYwNiI6eyJpZCI6IjE0Mzk0ODE4NS00NDMxODcwNzNfMTUyNDUxNjA2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NzA3MyIsImIiOiIxNTI0NTE2MDYiLCJoZWFkaW5nIjoxOTcuNDMwNzExMDg0MzM2MzQsImRpc3QiOjU0LjYxfSwiMTQzOTQ4MTg1LTQ0MzE4NzA3M18xNTI0MDE5MDkiOnsiaWQiOiIxNDM5NDgxODUtNDQzMTg3MDczXzE1MjQwMTkwOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcwNzMiLCJiIjoiMTUyNDAxOTA5IiwiaGVhZGluZyI6MTcuNDMwNjMxOTEyMTY3ODQ3LCJkaXN0Ijo1NC42MX0sIjE0Mzk0ODE4NS0xNTI0MDE5MDlfNDQzMTg3MDczIjp7ImlkIjoiMTQzOTQ4MTg1LTE1MjQwMTkwOV80NDMxODcwNzMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDAxOTA5IiwiYiI6IjQ0MzE4NzA3MyIsImhlYWRpbmciOjE5Ny40MzA2MzE5MTIxNjc4NSwiZGlzdCI6NTQuNjF9LCIxNDM5NDgxODUtMTUyNDAxOTA5XzQ0MzE4NzA3NSI6eyJpZCI6IjE0Mzk0ODE4NS0xNTI0MDE5MDlfNDQzMTg3MDc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQwMTkwOSIsImIiOiI0NDMxODcwNzUiLCJoZWFkaW5nIjoxNy40MzA1NTI3NDEwOTMxNSwiZGlzdCI6NTQuNjF9LCIxNDM5NDgxODUtNDQzMTg3MDc1XzE1MjQwMTkwOSI6eyJpZCI6IjE0Mzk0ODE4NS00NDMxODcwNzVfMTUyNDAxOTA5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NzA3NSIsImIiOiIxNTI0MDE5MDkiLCJoZWFkaW5nIjoxOTcuNDMwNTUyNzQxMDkzMTUsImRpc3QiOjU0LjYxfSwiMTQzOTQ4MTg1LTQ0MzE4NzA3NV8xNTI0NTE2MDgiOnsiaWQiOiIxNDM5NDgxODUtNDQzMTg3MDc1XzE1MjQ1MTYwOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcwNzUiLCJiIjoiMTUyNDUxNjA4IiwiaGVhZGluZyI6MTcuMTUxNzkwNjExOTIyNzEzLCJkaXN0Ijo1Mi4yMDd9LCIxNDM5NDgxODUtMTUyNDUxNjA4XzQ0MzE4NzA3NSI6eyJpZCI6IjE0Mzk0ODE4NS0xNTI0NTE2MDhfNDQzMTg3MDc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYwOCIsImIiOiI0NDMxODcwNzUiLCJoZWFkaW5nIjoxOTcuMTUxNzkwNjExOTIyNywiZGlzdCI6NTIuMjA3fSwiMTQzOTQ4MTg2LTE1MjQ1MTYwOF80NDMxODcwNzgiOnsiaWQiOiIxNDM5NDgxODYtMTUyNDUxNjA4XzQ0MzE4NzA3OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE2MDgiLCJiIjoiNDQzMTg3MDc4IiwiaGVhZGluZyI6MTcuNjg1NTgyNDQ2MjMwNDYsImRpc3QiOjU3LjAxNX0sIjE0Mzk0ODE4Ni00NDMxODcwNzhfMTUyNDUxNjA4Ijp7ImlkIjoiMTQzOTQ4MTg2LTQ0MzE4NzA3OF8xNTI0NTE2MDgiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg3MDc4IiwiYiI6IjE1MjQ1MTYwOCIsImhlYWRpbmciOjE5Ny42ODU1ODI0NDYyMzA0NiwiZGlzdCI6NTcuMDE1fSwiMTQzOTQ4MTg2LTQ0MzE4NzA3OF8xNTI0NTE2MTAiOnsiaWQiOiIxNDM5NDgxODYtNDQzMTg3MDc4XzE1MjQ1MTYxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcwNzgiLCJiIjoiMTUyNDUxNjEwIiwiaGVhZGluZyI6MTguNTM5ODQ0NDM3MDc5NzM2LCJkaXN0Ijo1MS40NDd9LCIxNDM5NDgxODYtMTUyNDUxNjEwXzQ0MzE4NzA3OCI6eyJpZCI6IjE0Mzk0ODE4Ni0xNTI0NTE2MTBfNDQzMTg3MDc4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYxMCIsImIiOiI0NDMxODcwNzgiLCJoZWFkaW5nIjoxOTguNTM5ODQ0NDM3MDc5NzUsImRpc3QiOjUxLjQ0N30sIjE0Mzk0ODE4Ni0xNTI0NTE2MTBfNDQzMTg3MDgwIjp7ImlkIjoiMTQzOTQ4MTg2LTE1MjQ1MTYxMF80NDMxODcwODAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNjEwIiwiYiI6IjQ0MzE4NzA4MCIsImhlYWRpbmciOjE4LjM4ODMwMzY5NDMzNjgyMywiZGlzdCI6NTQuOTA2fSwiMTQzOTQ4MTg2LTQ0MzE4NzA4MF8xNTI0NTE2MTAiOnsiaWQiOiIxNDM5NDgxODYtNDQzMTg3MDgwXzE1MjQ1MTYxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODcwODAiLCJiIjoiMTUyNDUxNjEwIiwiaGVhZGluZyI6MTk4LjM4ODMwMzY5NDMzNjgzLCJkaXN0Ijo1NC45MDZ9LCIxNDM5NDgxODYtNDQzMTg3MDgwXzE1MjQ1MTYxMiI6eyJpZCI6IjE0Mzk0ODE4Ni00NDMxODcwODBfMTUyNDUxNjEyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NzA4MCIsImIiOiIxNTI0NTE2MTIiLCJoZWFkaW5nIjoxNy42ODUzNDM1OTEyMjA5MjgsImRpc3QiOjU3LjAxNH0sIjE0Mzk0ODE4Ni0xNTI0NTE2MTJfNDQzMTg3MDgwIjp7ImlkIjoiMTQzOTQ4MTg2LTE1MjQ1MTYxMl80NDMxODcwODAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNjEyIiwiYiI6IjQ0MzE4NzA4MCIsImhlYWRpbmciOjE5Ny42ODUzNDM1OTEyMjA5NCwiZGlzdCI6NTcuMDE0fSwiMTQzOTQ4MTg2LTE1MjQ1MTYxMl8xNTI0NTE2MTUiOnsiaWQiOiIxNDM5NDgxODYtMTUyNDUxNjEyXzE1MjQ1MTYxNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE2MTIiLCJiIjoiMTUyNDUxNjE1IiwiaGVhZGluZyI6MTcuNjA1ODk2Njg1Nzc0MTc3LCJkaXN0IjoxMDguMTYzfSwiMTQzOTQ4MTg2LTE1MjQ1MTYxNV8xNTI0NTE2MTIiOnsiaWQiOiIxNDM5NDgxODYtMTUyNDUxNjE1XzE1MjQ1MTYxMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE2MTUiLCJiIjoiMTUyNDUxNjEyIiwiaGVhZGluZyI6MTk3LjYwNTg5NjY4NTc3NDE4LCJkaXN0IjoxMDguMTYzfSwiMTQ5NzA2OTk1LTE2MjY1NDcwMzRfMTg1MTE5MjUxNyI6eyJpZCI6IjE0OTcwNjk5NS0xNjI2NTQ3MDM0XzE4NTExOTI1MTciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU0NzAzNCIsImIiOiIxODUxMTkyNTE3IiwiaGVhZGluZyI6MTMwLjgyODg3MDgxODA5NTc3LCJkaXN0Ijo1LjA4N30sIjE0OTcwNjk5NS0xODUxMTkyNTE3XzE2MjY1NDcwMjkiOnsiaWQiOiIxNDk3MDY5OTUtMTg1MTE5MjUxN18xNjI2NTQ3MDI5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE4NTExOTI1MTciLCJiIjoiMTYyNjU0NzAyOSIsImhlYWRpbmciOjEwOS41NzQwODU4NzAyMzU5OCwiZGlzdCI6ODIuNzIyfSwiMTQ5NzA2OTk1LTE2MjY1NDcwMjlfMTUyNDU2NjA3Ijp7ImlkIjoiMTQ5NzA2OTk1LTE2MjY1NDcwMjlfMTUyNDU2NjA3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NDcwMjkiLCJiIjoiMTUyNDU2NjA3IiwiaGVhZGluZyI6MTI2LjUyNDI3MTY3ODUyMDg5LCJkaXN0IjoxNi43NjR9LCIxNDk3MDc3ODAtMTYyNjU1NTg0N18xNjI2NTU1ODI4Ijp7ImlkIjoiMTQ5NzA3NzgwLTE2MjY1NTU4NDdfMTYyNjU1NTgyOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1NTg0NyIsImIiOiIxNjI2NTU1ODI4IiwiaGVhZGluZyI6MTA4LjI5OTYzOTYxNTU2NjU5LCJkaXN0IjoxMDkuNDQ4fSwiMTQ5NzA3NzgwLTE2MjY1NTU4MjhfMTYyNjU1NTgyNyI6eyJpZCI6IjE0OTcwNzc4MC0xNjI2NTU1ODI4XzE2MjY1NTU4MjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTU4MjgiLCJiIjoiMTYyNjU1NTgyNyIsImhlYWRpbmciOjEwOC4yOTk1ODUxMjIyNDEzMSwiZGlzdCI6MTA5LjQ0OH0sIjE0OTcwNzc4MC0xNjI2NTU1ODI3XzE2MjY1NTU4MzIiOnsiaWQiOiIxNDk3MDc3ODAtMTYyNjU1NTgyN18xNjI2NTU1ODMyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODI3IiwiYiI6IjE2MjY1NTU4MzIiLCJoZWFkaW5nIjoxMDcuOTAyMTMwMTYzNjI4OTEsImRpc3QiOjEwOC4xOX0sIjE0OTcwNzc4MC0xNjI2NTU1ODMyXzE2MjY1NTU4NDYiOnsiaWQiOiIxNDk3MDc3ODAtMTYyNjU1NTgzMl8xNjI2NTU1ODQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODMyIiwiYiI6IjE2MjY1NTU4NDYiLCJoZWFkaW5nIjoxMDguMjk5NDc3ODk2Njk0MDQsImRpc3QiOjEwOS40NDl9LCIxNDk3MDgxMTItMTYyNjU1ODU5Ml8yNjM3NjcyMTgwIjp7ImlkIjoiMTQ5NzA4MTEyLTE2MjY1NTg1OTJfMjYzNzY3MjE4MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1ODU5MiIsImIiOiIyNjM3NjcyMTgwIiwiaGVhZGluZyI6LTcyLjA3ODIyMDgwMTc5MTQ3LCJkaXN0Ijo1Ny42NDF9LCIxNDk3MDgxMTItMjYzNzY3MjE4MF8xNjI2NTU4NTkwIjp7ImlkIjoiMTQ5NzA4MTEyLTI2Mzc2NzIxODBfMTYyNjU1ODU5MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3MjE4MCIsImIiOiIxNjI2NTU4NTkwIiwiaGVhZGluZyI6LTczLjkzMTY4ODIxODA1NDI4LCJkaXN0Ijo4LjAxfSwiMTQ5NzA4MTEyLTE2MjY1NTg1OTBfMjE2NzE2MTMzNCI6eyJpZCI6IjE0OTcwODExMi0xNjI2NTU4NTkwXzIxNjcxNjEzMzQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTg1OTAiLCJiIjoiMjE2NzE2MTMzNCIsImhlYWRpbmciOi03Mi4yMTg3MDYwNjkxNDExOCwiZGlzdCI6OTguMDE0fSwiMTQ5NzA4MTEyLTIxNjcxNjEzMzRfMTYyNjU1ODYwMCI6eyJpZCI6IjE0OTcwODExMi0yMTY3MTYxMzM0XzE2MjY1NTg2MDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEzMzQiLCJiIjoiMTYyNjU1ODYwMCIsImhlYWRpbmciOi03MC45MzI1NzYxODkxNDQ0NywiZGlzdCI6MTAuMTh9LCIxNDk3MDgxMTItMTYyNjU1ODYwMF8yMTY3MTYxMjQ2Ijp7ImlkIjoiMTQ5NzA4MTEyLTE2MjY1NTg2MDBfMjE2NzE2MTI0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1ODYwMCIsImIiOiIyMTY3MTYxMjQ2IiwiaGVhZGluZyI6LTY4Ljk5MDczNTUyMDk2MzQxLCJkaXN0IjoxMi4zNjh9LCIxNDk3MDgxMTItMjE2NzE2MTI0Nl8yMTY3MTYxMjIxIjp7ImlkIjoiMTQ5NzA4MTEyLTIxNjcxNjEyNDZfMjE2NzE2MTIyMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTI0NiIsImIiOiIyMTY3MTYxMjIxIiwiaGVhZGluZyI6LTcxLjk3OTQyOTYwMzM2MDY0LCJkaXN0Ijo4Ni4wMDR9LCIxNDk3MDgxMTItMjE2NzE2MTIyMV8xNjI2NTU4NTk3Ijp7ImlkIjoiMTQ5NzA4MTEyLTIxNjcxNjEyMjFfMTYyNjU1ODU5NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTIyMSIsImIiOiIxNjI2NTU4NTk3IiwiaGVhZGluZyI6LTczLjkzMTU4MzI0Nzc2ODc2LCJkaXN0IjoxMi4wMTZ9LCIxNDk3MDgxMTItMTYyNjU1ODU5N18yMTY3MTYxMjM0Ijp7ImlkIjoiMTQ5NzA4MTEyLTE2MjY1NTg1OTdfMjE2NzE2MTIzNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1ODU5NyIsImIiOiIyMTY3MTYxMjM0IiwiaGVhZGluZyI6LTc1LjYzODg0MzA3MTY0NDA5LCJkaXN0Ijo4LjkzOX0sIjE0OTcwODExMi0yMTY3MTYxMjM0XzIxNjcxNjEyMDEiOnsiaWQiOiIxNDk3MDgxMTItMjE2NzE2MTIzNF8yMTY3MTYxMjAxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyMTY3MTYxMjM0IiwiYiI6IjIxNjcxNjEyMDEiLCJoZWFkaW5nIjotNzEuOTM5NTc3MDI3NzU4NDksImRpc3QiOjEwNy4yNzZ9LCIxNDk3MDgxMTItMjE2NzE2MTIwMV8xNjI2NTU4NTk0Ijp7ImlkIjoiMTQ5NzA4MTEyLTIxNjcxNjEyMDFfMTYyNjU1ODU5NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTIwMSIsImIiOiIxNjI2NTU4NTk0IiwiaGVhZGluZyI6LTcyLjI1MzA1MzY5NDg5NzI1LCJkaXN0IjoxOC4xODR9LCIxNDk3MDgxMTYtMTYyNjU1ODU4Ml8xNjI2NTU4NTkyIjp7ImlkIjoiMTQ5NzA4MTE2LTE2MjY1NTg1ODJfMTYyNjU1ODU5MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1ODU4MiIsImIiOiIxNjI2NTU4NTkyIiwiaGVhZGluZyI6LTcxLjc3OTI2MzU0ODAyOTI4LCJkaXN0IjoyOC4zNjN9LCIxNDk3MDg4NTMtMTYyNjU1OTM0M18xNjI2NTU5MzQ3Ijp7ImlkIjoiMTQ5NzA4ODUzLTE2MjY1NTkzNDNfMTYyNjU1OTM0NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1OTM0MyIsImIiOiIxNjI2NTU5MzQ3IiwiaGVhZGluZyI6MTA4LjA1OTY3NjUzMTU4NzEzLCJkaXN0IjoxMDcuMjc3fSwiMTQ5NzA4ODUzLTE2MjY1NTkzNDdfMTYyNjU1OTM0NSI6eyJpZCI6IjE0OTcwODg1My0xNjI2NTU5MzQ3XzE2MjY1NTkzNDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTkzNDciLCJiIjoiMTYyNjU1OTM0NSIsImhlYWRpbmciOjEwOC4xNDIyMDU2ODczOTc2NSwiZGlzdCI6MTEwLjM2NX0sIjE0OTcwODg1My0xNjI2NTU5MzQ1XzE2MjY1NTkzNDEiOnsiaWQiOiIxNDk3MDg4NTMtMTYyNjU1OTM0NV8xNjI2NTU5MzQxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU5MzQ1IiwiYiI6IjE2MjY1NTkzNDEiLCJoZWFkaW5nIjoxMDguMjIwMjU1ODQyODU4NTIsImRpc3QiOjEwNi4zNjN9LCIxNDk3MDg4NTMtMTYyNjU1OTM0MV8xNjI2NTU5MzQyIjp7ImlkIjoiMTQ5NzA4ODUzLTE2MjY1NTkzNDFfMTYyNjU1OTM0MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1OTM0MSIsImIiOiIxNjI2NTU5MzQyIiwiaGVhZGluZyI6MTA3LjgzNjA4OTAwNDI1NjUyLCJkaXN0IjoxMTIuMTk2fSwiMTQ5NzEwMDYzLTMwMDc2NTAzNV8zNDMzMzY5MDMiOnsiaWQiOiIxNDk3MTAwNjMtMzAwNzY1MDM1XzM0MzMzNjkwMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzAwNzY1MDM1IiwiYiI6IjM0MzMzNjkwMyIsImhlYWRpbmciOjEwNy4yMzMzMTE1MjU5NTY5NCwiZGlzdCI6MjYuMTkzfSwiMTQ5NzEwMDYzLTM0MzMzNjkwM18zMDA3NjUwMzUiOnsiaWQiOiIxNDk3MTAwNjMtMzQzMzM2OTAzXzMwMDc2NTAzNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzQzMzM2OTAzIiwiYiI6IjMwMDc2NTAzNSIsImhlYWRpbmciOjI4Ny4yMzMzMTE1MjU5NTY5NCwiZGlzdCI6MjYuMTkzfSwiMTQ5NzEwMDYzLTM0MzMzNjkwM18xNDQwNjA4MzI2Ijp7ImlkIjoiMTQ5NzEwMDYzLTM0MzMzNjkwM18xNDQwNjA4MzI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzNDMzMzY5MDMiLCJiIjoiMTQ0MDYwODMyNiIsImhlYWRpbmciOjEwMi45NzU5NjcxMjMyOTc0MiwiZGlzdCI6OS44NzR9LCIxNDk3MTAwNjMtMTQ0MDYwODMyNl8zNDMzMzY5MDMiOnsiaWQiOiIxNDk3MTAwNjMtMTQ0MDYwODMyNl8zNDMzMzY5MDMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0NDA2MDgzMjYiLCJiIjoiMzQzMzM2OTAzIiwiaGVhZGluZyI6MjgyLjk3NTk2NzEyMzI5NzQ0LCJkaXN0Ijo5Ljg3NH0sIjE0OTcxMDA2My0xNDQwNjA4MzI2XzE0NDA2MDgzMjIiOnsiaWQiOiIxNDk3MTAwNjMtMTQ0MDYwODMyNl8xNDQwNjA4MzIyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDQwNjA4MzI2IiwiYiI6IjE0NDA2MDgzMjIiLCJoZWFkaW5nIjoxMDcuOTU0MTk0Njk0NDkyNTYsImRpc3QiOjMyLjM2Nn0sIjE0OTcxMDA2My0xNDQwNjA4MzIyXzE0NDA2MDgzMjYiOnsiaWQiOiIxNDk3MTAwNjMtMTQ0MDYwODMyMl8xNDQwNjA4MzI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDQwNjA4MzIyIiwiYiI6IjE0NDA2MDgzMjYiLCJoZWFkaW5nIjoyODcuOTU0MTk0Njk0NDkyNTcsImRpc3QiOjMyLjM2Nn0sIjE0OTcxMDA2My0xNDQwNjA4MzIyXzE1MjQzNTkwNCI6eyJpZCI6IjE0OTcxMDA2My0xNDQwNjA4MzIyXzE1MjQzNTkwNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQ0MDYwODMyMiIsImIiOiIxNTI0MzU5MDQiLCJoZWFkaW5nIjoxMDcuNDQzNTc0OTQ0MjE2MywiZGlzdCI6MzMuMjgzfSwiMTQ5NzEwMDYzLTE1MjQzNTkwNF8xNDQwNjA4MzIyIjp7ImlkIjoiMTQ5NzEwMDYzLTE1MjQzNTkwNF8xNDQwNjA4MzIyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU5MDQiLCJiIjoiMTQ0MDYwODMyMiIsImhlYWRpbmciOjI4Ny40NDM1NzQ5NDQyMTYyNywiZGlzdCI6MzMuMjgzfSwiMTQ5NzEwMDYzLTE1MjQzNTkwNF8zNDMzMzY5MDUiOnsiaWQiOiIxNDk3MTAwNjMtMTUyNDM1OTA0XzM0MzMzNjkwNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDM1OTA0IiwiYiI6IjM0MzMzNjkwNSIsImhlYWRpbmciOjEwNy4wNzg3NjIxMjgzMzk5OSwiZGlzdCI6MTUuMDk5fSwiMTQ5NzEwMDYzLTM0MzMzNjkwNV8xNTI0MzU5MDQiOnsiaWQiOiIxNDk3MTAwNjMtMzQzMzM2OTA1XzE1MjQzNTkwNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzQzMzM2OTA1IiwiYiI6IjE1MjQzNTkwNCIsImhlYWRpbmciOjI4Ny4wNzg3NjIxMjgzNCwiZGlzdCI6MTUuMDk5fSwiMTQ5NzEwMDYzLTM0MzMzNjkwNV8xMDc3ODQwMjAyIjp7ImlkIjoiMTQ5NzEwMDYzLTM0MzMzNjkwNV8xMDc3ODQwMjAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzNDMzMzY5MDUiLCJiIjoiMTA3Nzg0MDIwMiIsImhlYWRpbmciOjExMS4wMDg5NjQ1MzgxODU5NiwiZGlzdCI6Ni4xODR9LCIxNDk3MTAwNjMtMTA3Nzg0MDIwMl8zNDMzMzY5MDUiOnsiaWQiOiIxNDk3MTAwNjMtMTA3Nzg0MDIwMl8zNDMzMzY5MDUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzc4NDAyMDIiLCJiIjoiMzQzMzM2OTA1IiwiaGVhZGluZyI6MjkxLjAwODk2NDUzODE4NiwiZGlzdCI6Ni4xODR9LCIxNDk3MTAwNjMtMTA3Nzg0MDIwMl8xMDc3ODQwMzYyIjp7ImlkIjoiMTQ5NzEwMDYzLTEwNzc4NDAyMDJfMTA3Nzg0MDM2MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3Nzg0MDIwMiIsImIiOiIxMDc3ODQwMzYyIiwiaGVhZGluZyI6MTA4LjcxOTUyOTYwNTcyMDQ0LCJkaXN0IjoxNy4yNzF9LCIxNDk3MTAwNjMtMTA3Nzg0MDM2Ml8xMDc3ODQwMjAyIjp7ImlkIjoiMTQ5NzEwMDYzLTEwNzc4NDAzNjJfMTA3Nzg0MDIwMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3Nzg0MDM2MiIsImIiOiIxMDc3ODQwMjAyIiwiaGVhZGluZyI6Mjg4LjcxOTUyOTYwNTcyMDQsImRpc3QiOjE3LjI3MX0sIjE0OTcxMDA2My0xMDc3ODQwMzYyXzEwNzc4NDAxOTQiOnsiaWQiOiIxNDk3MTAwNjMtMTA3Nzg0MDM2Ml8xMDc3ODQwMTk0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc3ODQwMzYyIiwiYiI6IjEwNzc4NDAxOTQiLCJoZWFkaW5nIjoxMDguMjIwNTA0NjMyMjQzMTIsImRpc3QiOjcuMDkxfSwiMTQ5NzEwMDYzLTEwNzc4NDAxOTRfMTA3Nzg0MDM2MiI6eyJpZCI6IjE0OTcxMDA2My0xMDc3ODQwMTk0XzEwNzc4NDAzNjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzc4NDAxOTQiLCJiIjoiMTA3Nzg0MDM2MiIsImhlYWRpbmciOjI4OC4yMjA1MDQ2MzIyNDMxLCJkaXN0Ijo3LjA5MX0sIjE0OTcxMDA2My0xMDc3ODQwMTk0XzE2MjY1Njg2MjMiOnsiaWQiOiIxNDk3MTAwNjMtMTA3Nzg0MDE5NF8xNjI2NTY4NjIzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc3ODQwMTk0IiwiYiI6IjE2MjY1Njg2MjMiLCJoZWFkaW5nIjoxMDguMjIwNDQyOTM2MDg0NTcsImRpc3QiOjI4LjM2NH0sIjE0OTcxMDA2My0xNjI2NTY4NjIzXzEwNzc4NDAxOTQiOnsiaWQiOiIxNDk3MTAwNjMtMTYyNjU2ODYyM18xMDc3ODQwMTk0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTY4NjIzIiwiYiI6IjEwNzc4NDAxOTQiLCJoZWFkaW5nIjoyODguMjIwNDQyOTM2MDg0NTcsImRpc3QiOjI4LjM2NH0sIjE0OTcxMDA3My0zMDA3NjUwMzVfMTYyNjU2ODYyNiI6eyJpZCI6IjE0OTcxMDA3My0zMDA3NjUwMzVfMTYyNjU2ODYyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzAwNzY1MDM1IiwiYiI6IjE2MjY1Njg2MjYiLCJoZWFkaW5nIjotMzQuMDIyMjcxNDMzNjUwMzQsImRpc3QiOjEyLjAzOH0sIjE0OTcxMDA3My0xNjI2NTY4NjI2XzE2MjY1NTU4MzUiOnsiaWQiOiIxNDk3MTAwNzMtMTYyNjU2ODYyNl8xNjI2NTU1ODM1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTY4NjI2IiwiYiI6IjE2MjY1NTU4MzUiLCJoZWFkaW5nIjotNzMuNTYwNTg5ODA0MjkyMzYsImRpc3QiOjgyLjI2Mn0sIjE0OTcxMDA3Ni0xNjI2NTY4NjIzXzE2MjY1Njg2MjEiOnsiaWQiOiIxNDk3MTAwNzYtMTYyNjU2ODYyM18xNjI2NTY4NjIxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTY4NjIzIiwiYiI6IjE2MjY1Njg2MjEiLCJoZWFkaW5nIjoxMTUuMjM1NjQ0OTkyNjQ2MzEsImRpc3QiOjIzLjQwMn0sIjE0OTcxMDA3Ni0xNjI2NTY4NjIxXzE1MjQzNTkwNiI6eyJpZCI6IjE0OTcxMDA3Ni0xNjI2NTY4NjIxXzE1MjQzNTkwNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU2ODYyMSIsImIiOiIxNTI0MzU5MDYiLCJoZWFkaW5nIjoxMDkuODAwODcwMTUyNDc0ODcsImRpc3QiOjE2LjM2M30sIjE0OTcxMDA3Ny0xNjI2NTU1ODM1XzE0MjExMzQ3MzYiOnsiaWQiOiIxNDk3MTAwNzctMTYyNjU1NTgzNV8xNDIxMTM0NzM2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODM1IiwiYiI6IjE0MjExMzQ3MzYiLCJoZWFkaW5nIjoyNi4zODAxMDIyNjYyNjkwMTMsImRpc3QiOjguNjYyfSwiMTQ5NzEwMDc3LTE0MjExMzQ3MzZfMTYyNjU1NTgzNSI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzM2XzE2MjY1NTU4MzUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MzYiLCJiIjoiMTYyNjU1NTgzNSIsImhlYWRpbmciOjIwNi4zODAxMDIyNjYyNjksImRpc3QiOjguNjYyfSwiMTQ5NzEwMDc3LTE0MjExMzQ3MzZfMTQyMTEzNDczNyI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzM2XzE0MjExMzQ3MzciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MzYiLCJiIjoiMTQyMTEzNDczNyIsImhlYWRpbmciOjI4LjkxMzI0Mjc4NjMxNzAzNSwiZGlzdCI6MTMuOTMxfSwiMTQ5NzEwMDc3LTE0MjExMzQ3MzdfMTQyMTEzNDczNiI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzM3XzE0MjExMzQ3MzYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MzciLCJiIjoiMTQyMTEzNDczNiIsImhlYWRpbmciOjIwOC45MTMyNDI3ODYzMTcwMywiZGlzdCI6MTMuOTMxfSwiMTQ5NzEwMDc3LTE0MjExMzQ3MzdfMzQzMzM1OTkzIjp7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3MzdfMzQzMzM1OTkzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzM3IiwiYiI6IjM0MzMzNTk5MyIsImhlYWRpbmciOjM0Ljc3NDQ3NjM0ODI4Mjc1NCwiZGlzdCI6MjYuOTkyfSwiMTQ5NzEwMDc3LTM0MzMzNTk5M18xNDIxMTM0NzM3Ijp7ImlkIjoiMTQ5NzEwMDc3LTM0MzMzNTk5M18xNDIxMTM0NzM3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzNDMzMzU5OTMiLCJiIjoiMTQyMTEzNDczNyIsImhlYWRpbmciOjIxNC43NzQ0NzYzNDgyODI3NSwiZGlzdCI6MjYuOTkyfSwiMTQ5NzEwMDc3LTM0MzMzNTk5M18xNTI1NjYzMzYiOnsiaWQiOiIxNDk3MTAwNzctMzQzMzM1OTkzXzE1MjU2NjMzNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzQzMzM1OTkzIiwiYiI6IjE1MjU2NjMzNiIsImhlYWRpbmciOjQyLjkyMTAzNzg2MjY1MDcsImRpc3QiOjIxLjE5NH0sIjE0OTcxMDA3Ny0xNTI1NjYzMzZfMzQzMzM1OTkzIjp7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjMzNl8zNDMzMzU5OTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMzNiIsImIiOiIzNDMzMzU5OTMiLCJoZWFkaW5nIjoyMjIuOTIxMDM3ODYyNjUwNywiZGlzdCI6MjEuMTk0fSwiMTQ5NzEwMDc3LTE1MjU2NjMzNl8zNDMzMzY4ODMiOnsiaWQiOiIxNDk3MTAwNzctMTUyNTY2MzM2XzM0MzMzNjg4MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzM2IiwiYiI6IjM0MzMzNjg4MyIsImhlYWRpbmciOjUxLjI4ODAxNDc3NTg1ODgzNCwiZGlzdCI6MjguMzYxfSwiMTQ5NzEwMDc3LTM0MzMzNjg4M18xNTI1NjYzMzYiOnsiaWQiOiIxNDk3MTAwNzctMzQzMzM2ODgzXzE1MjU2NjMzNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzQzMzM2ODgzIiwiYiI6IjE1MjU2NjMzNiIsImhlYWRpbmciOjIzMS4yODgwMTQ3NzU4NTg4NCwiZGlzdCI6MjguMzYxfSwiMTQ5NzEwMDc3LTM0MzMzNjg4M18xNDIxMTM0NzQxIjp7ImlkIjoiMTQ5NzEwMDc3LTM0MzMzNjg4M18xNDIxMTM0NzQxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIzNDMzMzY4ODMiLCJiIjoiMTQyMTEzNDc0MSIsImhlYWRpbmciOjU3LjA1MzM3MzQ4NTQ5NDY0NiwiZGlzdCI6MTguMzQ1fSwiMTQ5NzEwMDc3LTE0MjExMzQ3NDFfMzQzMzM2ODgzIjp7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3NDFfMzQzMzM2ODgzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzQxIiwiYiI6IjM0MzMzNjg4MyIsImhlYWRpbmciOjIzNy4wNTMzNzM0ODU0OTQ2NiwiZGlzdCI6MTguMzQ1fSwiMTQ5NzEwMDc3LTE0MjExMzQ3NDFfMzAwNzYzMTg3Ijp7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3NDFfMzAwNzYzMTg3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzQxIiwiYiI6IjMwMDc2MzE4NyIsImhlYWRpbmciOjU0LjI0MjU5MzU5MDExNjA4LCJkaXN0Ijo5LjQ4NX0sIjE0OTcxMDA3Ny0zMDA3NjMxODdfMTQyMTEzNDc0MSI6eyJpZCI6IjE0OTcxMDA3Ny0zMDA3NjMxODdfMTQyMTEzNDc0MSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzAwNzYzMTg3IiwiYiI6IjE0MjExMzQ3NDEiLCJoZWFkaW5nIjoyMzQuMjQyNTkzNTkwMTE2MSwiZGlzdCI6OS40ODV9LCIxNDk3MTAwNzctMzAwNzYzMTg3XzE0MjExMzQ3NDkiOnsiaWQiOiIxNDk3MTAwNzctMzAwNzYzMTg3XzE0MjExMzQ3NDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjMwMDc2MzE4NyIsImIiOiIxNDIxMTM0NzQ5IiwiaGVhZGluZyI6NTYuNjQwMTk2MTc2MjY2NTgsImRpc3QiOjI0LjE5Mn0sIjE0OTcxMDA3Ny0xNDIxMTM0NzQ5XzMwMDc2MzE4NyI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzQ5XzMwMDc2MzE4NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc0OSIsImIiOiIzMDA3NjMxODciLCJoZWFkaW5nIjoyMzYuNjQwMTk2MTc2MjY2NTgsImRpc3QiOjI0LjE5Mn0sIjE0OTcxMDA3Ny0xNDIxMTM0NzQ5XzE1MjU2NjMzOCI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzQ5XzE1MjU2NjMzOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc0OSIsImIiOiIxNTI1NjYzMzgiLCJoZWFkaW5nIjozOS40MjkwNjQ5Mjc2NzA0NSwiZGlzdCI6MjcuMjY5fSwiMTQ5NzEwMDc3LTE1MjU2NjMzOF8xNDIxMTM0NzQ5Ijp7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjMzOF8xNDIxMTM0NzQ5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMzgiLCJiIjoiMTQyMTEzNDc0OSIsImhlYWRpbmciOjIxOS40MjkwNjQ5Mjc2NzA0NSwiZGlzdCI6MjcuMjY5fSwiMTQ5NzEwMDc3LTE1MjU2NjMzOF8xNDIxMTM0NzUxIjp7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjMzOF8xNDIxMTM0NzUxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMzgiLCJiIjoiMTQyMTEzNDc1MSIsImhlYWRpbmciOjM3LjgzMjA3ODE5MjQxOTI1LCJkaXN0IjoyNi42Njh9LCIxNDk3MTAwNzctMTQyMTEzNDc1MV8xNTI1NjYzMzgiOnsiaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc1MV8xNTI1NjYzMzgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NTEiLCJiIjoiMTUyNTY2MzM4IiwiaGVhZGluZyI6MjE3LjgzMjA3ODE5MjQxOTI2LCJkaXN0IjoyNi42Njh9LCIxNDk3MTAwNzctMTQyMTEzNDc1MV8xNDIxMTM0NzUzIjp7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3NTFfMTQyMTEzNDc1MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc1MSIsImIiOiIxNDIxMTM0NzUzIiwiaGVhZGluZyI6MzEuNDk0MjAyNzA2NjAxMDIsImRpc3QiOjIyLjEwMX0sIjE0OTcxMDA3Ny0xNDIxMTM0NzUzXzE0MjExMzQ3NTEiOnsiaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc1M18xNDIxMTM0NzUxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzUzIiwiYiI6IjE0MjExMzQ3NTEiLCJoZWFkaW5nIjoyMTEuNDk0MjAyNzA2NjAxMDIsImRpc3QiOjIyLjEwMX0sIjE0OTcxMDA3Ny0xNDIxMTM0NzUzXzE1MjU2NjM0MCI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzUzXzE1MjU2NjM0MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc1MyIsImIiOiIxNTI1NjYzNDAiLCJoZWFkaW5nIjoxOC4wMjg4NDEzMTcyNjk2MTcsImRpc3QiOjkuMzI2fSwiMTQ5NzEwMDc3LTE1MjU2NjM0MF8xNDIxMTM0NzUzIjp7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM0MF8xNDIxMTM0NzUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNDAiLCJiIjoiMTQyMTEzNDc1MyIsImhlYWRpbmciOjE5OC4wMjg4NDEzMTcyNjk2LCJkaXN0Ijo5LjMyNn0sIjE0OTcxMDA3Ny0xNTI1NjYzNDBfMTQyMTEzNDc1NCI6eyJpZCI6IjE0OTcxMDA3Ny0xNTI1NjYzNDBfMTQyMTEzNDc1NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzQwIiwiYiI6IjE0MjExMzQ3NTQiLCJoZWFkaW5nIjoxNi4xMzU3OTYwMDY0NTgxNTgsImRpc3QiOjYuOTI0fSwiMTQ5NzEwMDc3LTE0MjExMzQ3NTRfMTUyNTY2MzQwIjp7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3NTRfMTUyNTY2MzQwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzU0IiwiYiI6IjE1MjU2NjM0MCIsImhlYWRpbmciOjE5Ni4xMzU3OTYwMDY0NTgxNSwiZGlzdCI6Ni45MjR9LCIxNDk3MTAwNzctMTQyMTEzNDc1NF8xNDIxMTM0NzY0Ijp7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3NTRfMTQyMTEzNDc2NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc1NCIsImIiOiIxNDIxMTM0NzY0IiwiaGVhZGluZyI6MTYuODYxMzY1MTU4MjE2MzEyLCJkaXN0Ijo3Mi45Nzd9LCIxNDk3MTAwNzctMTQyMTEzNDc2NF8xNDIxMTM0NzU0Ijp7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3NjRfMTQyMTEzNDc1NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc2NCIsImIiOiIxNDIxMTM0NzU0IiwiaGVhZGluZyI6MTk2Ljg2MTM2NTE1ODIxNjMsImRpc3QiOjcyLjk3N30sIjE0OTcxMDA3Ny0xNDIxMTM0NzY0XzE0MjExMzQ3NzEiOnsiaWQiOiIxNDk3MTAwNzctMTQyMTEzNDc2NF8xNDIxMTM0NzcxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzY0IiwiYiI6IjE0MjExMzQ3NzEiLCJoZWFkaW5nIjoxOS41NDgwMDIwMDg2NjY3NzQsImRpc3QiOjI1Ljg4fSwiMTQ5NzEwMDc3LTE0MjExMzQ3NzFfMTQyMTEzNDc2NCI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0NzcxXzE0MjExMzQ3NjQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NzEiLCJiIjoiMTQyMTEzNDc2NCIsImhlYWRpbmciOjE5OS41NDgwMDIwMDg2NjY3NywiZGlzdCI6MjUuODh9LCIxNDk3MTAwNzctMTQyMTEzNDc3MV8xNDQwNjA4MzI4Ijp7ImlkIjoiMTQ5NzEwMDc3LTE0MjExMzQ3NzFfMTQ0MDYwODMyOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc3MSIsImIiOiIxNDQwNjA4MzI4IiwiaGVhZGluZyI6MTkuMTQ1NTMzNzAwMjc2MjgsImRpc3QiOjUuODY3fSwiMTQ5NzEwMDc3LTE0NDA2MDgzMjhfMTQyMTEzNDc3MSI6eyJpZCI6IjE0OTcxMDA3Ny0xNDQwNjA4MzI4XzE0MjExMzQ3NzEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0NDA2MDgzMjgiLCJiIjoiMTQyMTEzNDc3MSIsImhlYWRpbmciOjE5OS4xNDU1MzM3MDAyNzYyNywiZGlzdCI6NS44Njd9LCIxNDk3MTAwNzctMTQ0MDYwODMyOF8xNTI1NjYzNDYiOnsiaWQiOiIxNDk3MTAwNzctMTQ0MDYwODMyOF8xNTI1NjYzNDYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0NDA2MDgzMjgiLCJiIjoiMTUyNTY2MzQ2IiwiaGVhZGluZyI6MTkuODgxODMwMTY0ODEwMTU0LCJkaXN0IjoxNC4xNDZ9LCIxNDk3MTAwNzctMTUyNTY2MzQ2XzE0NDA2MDgzMjgiOnsiaWQiOiIxNDk3MTAwNzctMTUyNTY2MzQ2XzE0NDA2MDgzMjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjM0NiIsImIiOiIxNDQwNjA4MzI4IiwiaGVhZGluZyI6MTk5Ljg4MTgzMDE2NDgxMDE0LCJkaXN0IjoxNC4xNDZ9LCIxNDk3MTAwNzctMTUyNTY2MzQ2XzE1MjU2NjM0OSI6eyJpZCI6IjE0OTcxMDA3Ny0xNTI1NjYzNDZfMTUyNTY2MzQ5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNDYiLCJiIjoiMTUyNTY2MzQ5IiwiaGVhZGluZyI6MjUuNzQyNDcxNzUyNDI3ODU3LCJkaXN0IjoyMi4xNTN9LCIxNDk3MTAwNzctMTUyNTY2MzQ5XzE1MjU2NjM0NiI6eyJpZCI6IjE0OTcxMDA3Ny0xNTI1NjYzNDlfMTUyNTY2MzQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNDkiLCJiIjoiMTUyNTY2MzQ2IiwiaGVhZGluZyI6MjA1Ljc0MjQ3MTc1MjQyNzg2LCJkaXN0IjoyMi4xNTN9LCIxNDk3MTAwNzctMTUyNTY2MzQ5XzE0MjExMzQ3OTQiOnsiaWQiOiIxNDk3MTAwNzctMTUyNTY2MzQ5XzE0MjExMzQ3OTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjM0OSIsImIiOiIxNDIxMTM0Nzk0IiwiaGVhZGluZyI6MzUuMzc5MzIwNTQ0NzIxMTMsImRpc3QiOjE0Ljk1Nn0sIjE0OTcxMDA3Ny0xNDIxMTM0Nzk0XzE1MjU2NjM0OSI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0Nzk0XzE1MjU2NjM0OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc5NCIsImIiOiIxNTI1NjYzNDkiLCJoZWFkaW5nIjoyMTUuMzc5MzIwNTQ0NzIxMTQsImRpc3QiOjE0Ljk1Nn0sIjE0OTcxMDA3Ny0xNDIxMTM0Nzk0XzE1MjU2NjM1MiI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0Nzk0XzE1MjU2NjM1MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDc5NCIsImIiOiIxNTI1NjYzNTIiLCJoZWFkaW5nIjozOC4yNzQxODg5ODcxNDE4MywiZGlzdCI6MTUuNTMzfSwiMTQ5NzEwMDc3LTE1MjU2NjM1Ml8xNDIxMTM0Nzk0Ijp7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM1Ml8xNDIxMTM0Nzk0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNTIiLCJiIjoiMTQyMTEzNDc5NCIsImhlYWRpbmciOjIxOC4yNzQxODg5ODcxNDE4MywiZGlzdCI6MTUuNTMzfSwiMTQ5NzEwMDc3LTE1MjU2NjM1Ml8xNTI1NjYzNTQiOnsiaWQiOiIxNDk3MTAwNzctMTUyNTY2MzUyXzE1MjU2NjM1NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzUyIiwiYiI6IjE1MjU2NjM1NCIsImhlYWRpbmciOjQzLjQzNTQwNjA4MjgxMDI3NSwiZGlzdCI6MTYuNzkzfSwiMTQ5NzEwMDc3LTE1MjU2NjM1NF8xNTI1NjYzNTIiOnsiaWQiOiIxNDk3MTAwNzctMTUyNTY2MzU0XzE1MjU2NjM1MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzU0IiwiYiI6IjE1MjU2NjM1MiIsImhlYWRpbmciOjIyMy40MzU0MDYwODI4MTAzLCJkaXN0IjoxNi43OTN9LCIxNDk3MTAwNzctMTUyNTY2MzU0XzE0MjExMzQ4MTAiOnsiaWQiOiIxNDk3MTAwNzctMTUyNTY2MzU0XzE0MjExMzQ4MTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjM1NCIsImIiOiIxNDIxMTM0ODEwIiwiaGVhZGluZyI6NDYuNjg5NzE5Nzc3MzgzODYsImRpc3QiOjE0LjU0NX0sIjE0OTcxMDA3Ny0xNDIxMTM0ODEwXzE1MjU2NjM1NCI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0ODEwXzE1MjU2NjM1NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgxMCIsImIiOiIxNTI1NjYzNTQiLCJoZWFkaW5nIjoyMjYuNjg5NzE5Nzc3MzgzODYsImRpc3QiOjE0LjU0NX0sIjE0OTcxMDA3Ny0xNDIxMTM0ODEwXzE1MjU2NjM1NSI6eyJpZCI6IjE0OTcxMDA3Ny0xNDIxMTM0ODEwXzE1MjU2NjM1NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDgxMCIsImIiOiIxNTI1NjYzNTUiLCJoZWFkaW5nIjo1Ni4wOTQ3NzMxNzU5MzQzNCwiZGlzdCI6MTMuOTExfSwiMTQ5NzEwMDc3LTE1MjU2NjM1NV8xNDIxMTM0ODEwIjp7ImlkIjoiMTQ5NzEwMDc3LTE1MjU2NjM1NV8xNDIxMTM0ODEwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzNTUiLCJiIjoiMTQyMTEzNDgxMCIsImhlYWRpbmciOjIzNi4wOTQ3NzMxNzU5MzQzNCwiZGlzdCI6MTMuOTExfSwiMTQ5NzEwMDc4LTE2MjY1NTU4MzVfMTYyNjU1ODU4MiI6eyJpZCI6IjE0OTcxMDA3OC0xNjI2NTU1ODM1XzE2MjY1NTg1ODIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTU4MzUiLCJiIjoiMTYyNjU1ODU4MiIsImhlYWRpbmciOi03MC4zMjQ4ODIwMDUyNzYyOCwiZGlzdCI6MjkuNjMzfSwiMTUwMzQ5OTg1LTE1MjYxMzYzNl8xNTI1MDIzNzUiOnsiaWQiOiIxNTAzNDk5ODUtMTUyNjEzNjM2XzE1MjUwMjM3NSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2MTM2MzYiLCJiIjoiMTUyNTAyMzc1IiwiaGVhZGluZyI6MTguNDE5NzQyNTgzODEzMDY1LCJkaXN0IjoxMDAuNDg1fSwiMTUwMzQ5OTg1LTE1MjUwMjM3NV8xNTI2MTM2MzYiOnsiaWQiOiIxNTAzNDk5ODUtMTUyNTAyMzc1XzE1MjYxMzYzNiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDIzNzUiLCJiIjoiMTUyNjEzNjM2IiwiaGVhZGluZyI6MTk4LjQxOTc0MjU4MzgxMzA4LCJkaXN0IjoxMDAuNDg1fSwiMTUwMzQ5OTg1LTE1MjUwMjM3NV8xNDIxMTM1MDE5Ijp7ImlkIjoiMTUwMzQ5OTg1LTE1MjUwMjM3NV8xNDIxMTM1MDE5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMjM3NSIsImIiOiIxNDIxMTM1MDE5IiwiaGVhZGluZyI6MTcuMTE3MTY0MjQ3ODg4NDU3LCJkaXN0IjoxMDcuODc2fSwiMTUwMzQ5OTg1LTE0MjExMzUwMTlfMTUyNTAyMzc1Ijp7ImlkIjoiMTUwMzQ5OTg1LTE0MjExMzUwMTlfMTUyNTAyMzc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE0MjExMzUwMTkiLCJiIjoiMTUyNTAyMzc1IiwiaGVhZGluZyI6MTk3LjExNzE2NDI0Nzg4ODQ3LCJkaXN0IjoxMDcuODc2fSwiMTUwMzQ5OTg1LTE0MjExMzUwMTlfMTUyNTY3MDk1Ijp7ImlkIjoiMTUwMzQ5OTg1LTE0MjExMzUwMTlfMTUyNTY3MDk1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE0MjExMzUwMTkiLCJiIjoiMTUyNTY3MDk1IiwiaGVhZGluZyI6MTkuODgxNDU0ODYzOTkxNTIsImRpc3QiOjE0LjE0Nn0sIjE1MDM0OTk4NS0xNTI1NjcwOTVfMTQyMTEzNTAxOSI6eyJpZCI6IjE1MDM0OTk4NS0xNTI1NjcwOTVfMTQyMTEzNTAxOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NjcwOTUiLCJiIjoiMTQyMTEzNTAxOSIsImhlYWRpbmciOjE5OS44ODE0NTQ4NjM5OTE1LCJkaXN0IjoxNC4xNDZ9LCIxNTAzNDk5ODYtMTA3MzQwMDk4NF8xNTI3NTkzOTQiOnsiaWQiOiIxNTAzNDk5ODYtMTA3MzQwMDk4NF8xNTI3NTkzOTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTA3MzQwMDk4NCIsImIiOiIxNTI3NTkzOTQiLCJoZWFkaW5nIjoxNDguNzE3OTY3MjM2NjY2NiwiZGlzdCI6MTIuOTcxfSwiMTUwMzQ5OTg2LTE1Mjc1OTM5NF8yMDc5MDY0MDQxIjp7ImlkIjoiMTUwMzQ5OTg2LTE1Mjc1OTM5NF8yMDc5MDY0MDQxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1Mjc1OTM5NCIsImIiOiIyMDc5MDY0MDQxIiwiaGVhZGluZyI6MTA4LjIyMDIyMDk2NDk5NDEsImRpc3QiOjcuMDkxfSwiMTUwMzQ5OTg2LTIwNzkwNjQwNDFfMjYzNzY3MzQ0MiI6eyJpZCI6IjE1MDM0OTk4Ni0yMDc5MDY0MDQxXzI2Mzc2NzM0NDIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjA3OTA2NDA0MSIsImIiOiIyNjM3NjczNDQyIiwiaGVhZGluZyI6MTA4LjM4MzU1ODQ2ODY1ODk2LCJkaXN0Ijo1Mi43MjZ9LCIxNTAzNDk5ODYtMjYzNzY3MzQ0Ml8xNTI2MzExODEiOnsiaWQiOiIxNTAzNDk5ODYtMjYzNzY3MzQ0Ml8xNTI2MzExODEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMjYzNzY3MzQ0MiIsImIiOiIxNTI2MzExODEiLCJoZWFkaW5nIjoxMDYuMDY3ODE4Mzc2NTc2MzEsImRpc3QiOjEyLjAxNn0sIjE1MDM1MDAxOC0xNTI1ODMzOThfNDQzMjE0NjEwIjp7ImlkIjoiMTUwMzUwMDE4LTE1MjU4MzM5OF80NDMyMTQ2MTAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzMzk4IiwiYiI6IjQ0MzIxNDYxMCIsImhlYWRpbmciOjE3LjIyMjY5NTM3OTU0NTkzMiwiZGlzdCI6NjQuOTk0fSwiMTUwMzUwMDE4LTQ0MzIxNDYxMF8xNTI1ODMzOTgiOnsiaWQiOiIxNTAzNTAwMTgtNDQzMjE0NjEwXzE1MjU4MzM5OCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTAiLCJiIjoiMTUyNTgzMzk4IiwiaGVhZGluZyI6MTk3LjIyMjY5NTM3OTU0NTk0LCJkaXN0Ijo2NC45OTR9LCIxNTAzNTAwMTgtNDQzMjE0NjEwXzE2MjY1NTkzNDUiOnsiaWQiOiIxNTAzNTAwMTgtNDQzMjE0NjEwXzE2MjY1NTkzNDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjEwIiwiYiI6IjE2MjY1NTkzNDUiLCJoZWFkaW5nIjoxNy4yODM3MzMxOTYyNTk3NTMsImRpc3QiOjYxLjUzM30sIjE1MDM1MDAxOC0xNjI2NTU5MzQ1XzQ0MzIxNDYxMCI6eyJpZCI6IjE1MDM1MDAxOC0xNjI2NTU5MzQ1XzQ0MzIxNDYxMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU5MzQ1IiwiYiI6IjQ0MzIxNDYxMCIsImhlYWRpbmciOjE5Ny4yODM3MzMxOTYyNTk3NiwiZGlzdCI6NjEuNTMzfSwiMTUwMzUwMDE4LTE2MjY1NTkzNDVfMTUyNTgzNDAyIjp7ImlkIjoiMTUwMzUwMDE4LTE2MjY1NTkzNDVfMTUyNTgzNDAyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE2MjY1NTkzNDUiLCJiIjoiMTUyNTgzNDAyIiwiaGVhZGluZyI6MTkuMTQ2MDc3NjM2NjY5NDQzLCJkaXN0IjoxMS43MzV9LCIxNTAzNTAwMTgtMTUyNTgzNDAyXzE2MjY1NTkzNDUiOnsiaWQiOiIxNTAzNTAwMTgtMTUyNTgzNDAyXzE2MjY1NTkzNDUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDAyIiwiYiI6IjE2MjY1NTkzNDUiLCJoZWFkaW5nIjoxOTkuMTQ2MDc3NjM2NjY5NDUsImRpc3QiOjExLjczNX0sIjE1MDM1MDAxOC0xNTI1ODM0MDJfNDQzMjE0NjExIjp7ImlkIjoiMTUwMzUwMDE4LTE1MjU4MzQwMl80NDMyMTQ2MTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDAyIiwiYiI6IjQ0MzIxNDYxMSIsImhlYWRpbmciOjE2LjY2MjA3MDMzNzI3MzI0NiwiZGlzdCI6NjcuMTE1fSwiMTUwMzUwMDE4LTQ0MzIxNDYxMV8xNTI1ODM0MDIiOnsiaWQiOiIxNTAzNTAwMTgtNDQzMjE0NjExXzE1MjU4MzQwMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTEiLCJiIjoiMTUyNTgzNDAyIiwiaGVhZGluZyI6MTk2LjY2MjA3MDMzNzI3MzI0LCJkaXN0Ijo2Ny4xMTV9LCIxNTAzNTAwMTgtNDQzMjE0NjExXzE1MjU0NjE5NiI6eyJpZCI6IjE1MDM1MDAxOC00NDMyMTQ2MTFfMTUyNTQ2MTk2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxMSIsImIiOiIxNTI1NDYxOTYiLCJoZWFkaW5nIjoxOC4xMzQ5ODM2MjY5NDI1MSwiZGlzdCI6NjEuODI1fSwiMTUwMzUwMDE4LTE1MjU0NjE5Nl80NDMyMTQ2MTEiOnsiaWQiOiIxNTAzNTAwMTgtMTUyNTQ2MTk2XzQ0MzIxNDYxMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NDYxOTYiLCJiIjoiNDQzMjE0NjExIiwiaGVhZGluZyI6MTk4LjEzNDk4MzYyNjk0MjUsImRpc3QiOjYxLjgyNX0sIjE1MDM1MDAxOC0xNTI1NDYxOTZfNDQzMjE0NjEyIjp7ImlkIjoiMTUwMzUwMDE4LTE1MjU0NjE5Nl80NDMyMTQ2MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTQ2MTk2IiwiYiI6IjQ0MzIxNDYxMiIsImhlYWRpbmciOjE2Ljc5ODY2NzM5NjM1MDEzMywiZGlzdCI6NTMuMjY3fSwiMTUwMzUwMDE4LTQ0MzIxNDYxMl8xNTI1NDYxOTYiOnsiaWQiOiIxNTAzNTAwMTgtNDQzMjE0NjEyXzE1MjU0NjE5NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTIiLCJiIjoiMTUyNTQ2MTk2IiwiaGVhZGluZyI6MTk2Ljc5ODY2NzM5NjM1MDE0LCJkaXN0Ijo1My4yNjd9LCIxNTAzNTAwMTgtNDQzMjE0NjEyXzE1MjQyODMxMCI6eyJpZCI6IjE1MDM1MDAxOC00NDMyMTQ2MTJfMTUyNDI4MzEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxMiIsImIiOiIxNTI0MjgzMTAiLCJoZWFkaW5nIjoxNy42ODQwMzY1Mjc1MDYzODYsImRpc3QiOjU3LjAxNH0sIjE1MDM1MDAxOC0xNTI0MjgzMTBfNDQzMjE0NjEyIjp7ImlkIjoiMTUwMzUwMDE4LTE1MjQyODMxMF80NDMyMTQ2MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDI4MzEwIiwiYiI6IjQ0MzIxNDYxMiIsImhlYWRpbmciOjE5Ny42ODQwMzY1Mjc1MDYzOCwiZGlzdCI6NTcuMDE0fSwiMTUwMzUwMDE4LTE1MjQyODMxMF80NDMyMTQ2MTMiOnsiaWQiOiIxNTAzNTAwMTgtMTUyNDI4MzEwXzQ0MzIxNDYxMyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0MjgzMTAiLCJiIjoiNDQzMjE0NjEzIiwiaGVhZGluZyI6MTguMzg2NzgyNDMyNzg2MTI0LCJkaXN0Ijo1NC45MDZ9LCIxNTAzNTAwMTgtNDQzMjE0NjEzXzE1MjQyODMxMCI6eyJpZCI6IjE1MDM1MDAxOC00NDMyMTQ2MTNfMTUyNDI4MzEwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzIxNDYxMyIsImIiOiIxNTI0MjgzMTAiLCJoZWFkaW5nIjoxOTguMzg2NzgyNDMyNzg2MTMsImRpc3QiOjU0LjkwNn0sIjE1MDM1MDAxOC00NDMyMTQ2MTNfMTYyNjU1NTgyNyI6eyJpZCI6IjE1MDM1MDAxOC00NDMyMTQ2MTNfMTYyNjU1NTgyNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTMiLCJiIjoiMTYyNjU1NTgyNyIsImhlYWRpbmciOjE3Ljg5Nzg2NTQ2NDQ5NDIsImRpc3QiOjUwLjA5M30sIjE1MDM1MDAxOC0xNjI2NTU1ODI3XzQ0MzIxNDYxMyI6eyJpZCI6IjE1MDM1MDAxOC0xNjI2NTU1ODI3XzQ0MzIxNDYxMyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNjI2NTU1ODI3IiwiYiI6IjQ0MzIxNDYxMyIsImhlYWRpbmciOjE5Ny44OTc4NjU0NjQ0OTQyLCJkaXN0Ijo1MC4wOTN9LCIxNTAzNTAwMTgtMTYyNjU1NTgyN18xNTI1ODM0MDQiOnsiaWQiOiIxNTAzNTAwMTgtMTYyNjU1NTgyN18xNTI1ODM0MDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTYyNjU1NTgyNyIsImIiOiIxNTI1ODM0MDQiLCJoZWFkaW5nIjoxNy41MTYyMTU5MTI4MTQxNTQsImRpc3QiOjEyLjc4N30sIjE1MDM1MDAxOC0xNTI1ODM0MDRfMTYyNjU1NTgyNyI6eyJpZCI6IjE1MDM1MDAxOC0xNTI1ODM0MDRfMTYyNjU1NTgyNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODM0MDQiLCJiIjoiMTYyNjU1NTgyNyIsImhlYWRpbmciOjE5Ny41MTYyMTU5MTI4MTQxNSwiZGlzdCI6MTIuNzg3fSwiMTUwMzUwMDE4LTE1MjU4MzQwNF80NDMyMTQ2MTQiOnsiaWQiOiIxNTAzNTAwMTgtMTUyNTgzNDA0XzQ0MzIxNDYxNCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1ODM0MDQiLCJiIjoiNDQzMjE0NjE0IiwiaGVhZGluZyI6MTcuMTQ5OTYxNTc2OTMxMDgsImRpc3QiOjUyLjIwN30sIjE1MDM1MDAxOC00NDMyMTQ2MTRfMTUyNTgzNDA0Ijp7ImlkIjoiMTUwMzUwMDE4LTQ0MzIxNDYxNF8xNTI1ODM0MDQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMjE0NjE0IiwiYiI6IjE1MjU4MzQwNCIsImhlYWRpbmciOjE5Ny4xNDk5NjE1NzY5MzEwOCwiZGlzdCI6NTIuMjA3fSwiMTUwMzUwMDE4LTQ0MzIxNDYxNF8xNTI1ODM0MDciOnsiaWQiOiIxNTAzNTAwMTgtNDQzMjE0NjE0XzE1MjU4MzQwNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMyMTQ2MTQiLCJiIjoiMTUyNTgzNDA3IiwiaGVhZGluZyI6MTYuNDYwMzk4MjM5OTgxMDI1LCJkaXN0Ijo1NC4zM30sIjE1MDM1MDAxOC0xNTI1ODM0MDdfNDQzMjE0NjE0Ijp7ImlkIjoiMTUwMzUwMDE4LTE1MjU4MzQwN180NDMyMTQ2MTQiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTgzNDA3IiwiYiI6IjQ0MzIxNDYxNCIsImhlYWRpbmciOjE5Ni40NjAzOTgyMzk5ODEwMywiZGlzdCI6NTQuMzN9LCIxNTAzNTAwMjMtMTUyNTY3MDk5XzE0MjExMzQ5NzUiOnsiaWQiOiIxNTAzNTAwMjMtMTUyNTY3MDk5XzE0MjExMzQ5NzUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NzA5OSIsImIiOiIxNDIxMTM0OTc1IiwiaGVhZGluZyI6LTE2NS40MDU3MTYwMTEyNjEzOCwiZGlzdCI6MTEuNDU1fSwiMTUwMzUwMDIzLTE0MjExMzQ5NzVfMTUyNTAyMzc3Ijp7ImlkIjoiMTUwMzUwMDIzLTE0MjExMzQ5NzVfMTUyNTAyMzc3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0OTc1IiwiYiI6IjE1MjUwMjM3NyIsImhlYWRpbmciOi0xNjEuNDI5MjA4MjgzMTI0MiwiZGlzdCI6MTA4Ljc2fSwiMTUwMzUwMDIzLTE1MjUwMjM3N18yNjM3NjcwNzMyIjp7ImlkIjoiMTUwMzUwMDIzLTE1MjUwMjM3N18yNjM3NjcwNzMyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MDIzNzciLCJiIjoiMjYzNzY3MDczMiIsImhlYWRpbmciOi0xNjEuNjI1MDQxMTQwMTQyMDYsImRpc3QiOjk0LjYxOH0sIjE1MDM1MDAyMy0yNjM3NjcwNzMyXzE1MjYxMzYzOCI6eyJpZCI6IjE1MDM1MDAyMy0yNjM3NjcwNzMyXzE1MjYxMzYzOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3MDczMiIsImIiOiIxNTI2MTM2MzgiLCJoZWFkaW5nIjotMTYzLjg2NDMyNzcyMDc2MzMzLCJkaXN0Ijo2LjkyNH0sIjE1MDM1MDAyMy0xNTI2MTM2MzhfMjYzNzY3MDcyOSI6eyJpZCI6IjE1MDM1MDAyMy0xNTI2MTM2MzhfMjYzNzY3MDcyOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjEzNjM4IiwiYiI6IjI2Mzc2NzA3MjkiLCJoZWFkaW5nIjotMTYxLjk3MTI5MTA3MjI0NjYsImRpc3QiOjkuMzI2fSwiMTUwMzUwMDIzLTI2Mzc2NzA3MjlfMjYzNzY3MDcyNyI6eyJpZCI6IjE1MDM1MDAyMy0yNjM3NjcwNzI5XzI2Mzc2NzA3MjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzA3MjkiLCJiIjoiMjYzNzY3MDcyNyIsImhlYWRpbmciOi0xNjMuNDYyNDg2NDE2NjAxNSwiZGlzdCI6ODcuODg3fSwiMTUwMzUwMDIzLTI2Mzc2NzA3MjdfMTUyNjMxMTg2Ijp7ImlkIjoiMTUwMzUwMDIzLTI2Mzc2NzA3MjdfMTUyNjMxMTg2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3NjcwNzI3IiwiYiI6IjE1MjYzMTE4NiIsImhlYWRpbmciOi0xNTIuNDkxMTk2MzYxMjUxMzgsImRpc3QiOjYuMjQ5fSwiMTUwMzUwMDIzLTE1MjYzMTE4Nl8yNjM3NjcwNzI1Ijp7ImlkIjoiMTUwMzUwMDIzLTE1MjYzMTE4Nl8yNjM3NjcwNzI1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2MzExODYiLCJiIjoiMjYzNzY3MDcyNSIsImhlYWRpbmciOi0xNjMuODY0MTc4MTU4NjEyNjIsImRpc3QiOjYuOTI0fSwiMTUwMzUwMDIzLTI2Mzc2NzA3MjVfMjE2NzE2MTI1MSI6eyJpZCI6IjE1MDM1MDAyMy0yNjM3NjcwNzI1XzIxNjcxNjEyNTEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzA3MjUiLCJiIjoiMjE2NzE2MTI1MSIsImhlYWRpbmciOi0xNjIuMDQ1OTgwMDM0MjIwOCwiZGlzdCI6ODcuMzk5fSwiMTUwMzUwMDIzLTIxNjcxNjEyNTFfMTYyNjU1ODYwMCI6eyJpZCI6IjE1MDM1MDAyMy0yMTY3MTYxMjUxXzE2MjY1NTg2MDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyNTEiLCJiIjoiMTYyNjU1ODYwMCIsImhlYWRpbmciOi0xNTkuNTk1OTgzMDk2OTU5MiwiZGlzdCI6OC4yNzl9LCIxNTAzNTAwMjMtMTYyNjU1ODYwMF8xNTI0MzU4OTQiOnsiaWQiOiIxNTAzNTAwMjMtMTYyNjU1ODYwMF8xNTI0MzU4OTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTg2MDAiLCJiIjoiMTUyNDM1ODk0IiwiaGVhZGluZyI6LTE2MC44NTQxMDMxNTAzMTU1NSwiZGlzdCI6MTEuNzM1fSwiMTUwMzUwMDIzLTE1MjQzNTg5NF8yMTY3MTYxMjAzIjp7ImlkIjoiMTUwMzUwMDIzLTE1MjQzNTg5NF8yMTY3MTYxMjAzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MzU4OTQiLCJiIjoiMjE2NzE2MTIwMyIsImhlYWRpbmciOi0xNTkuNTk1OTUwMzQ5NzM2NDYsImRpc3QiOjguMjc5fSwiMTUwMzUwMDIzLTIxNjcxNjEyMDNfMjYzNzY1Mjc1MyI6eyJpZCI6IjE1MDM1MDAyMy0yMTY3MTYxMjAzXzI2Mzc2NTI3NTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjIxNjcxNjEyMDMiLCJiIjoiMjYzNzY1Mjc1MyIsImhlYWRpbmciOi0xNjIuNDgzMjg1Mzg3MzM2OTMsImRpc3QiOjg5LjUxMX0sIjE1MDM1MDAyMy0yNjM3NjUyNzUzXzE1MjU1NDk4MyI6eyJpZCI6IjE1MDM1MDAyMy0yNjM3NjUyNzUzXzE1MjU1NDk4MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY1Mjc1MyIsImIiOiIxNTI1NTQ5ODMiLCJoZWFkaW5nIjotMTU5LjU5NTc4ODUxMTA0NTg0LCJkaXN0Ijo4LjI3OX0sIjE1MDM1MDAyMy0xNTI1NTQ5ODNfMjYzNzY1Mjc1MCI6eyJpZCI6IjE1MDM1MDAyMy0xNTI1NTQ5ODNfMjYzNzY1Mjc1MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTU0OTgzIiwiYiI6IjI2Mzc2NTI3NTAiLCJoZWFkaW5nIjotMTU5LjU5NTc3NTAyMjU1MzgsImRpc3QiOjguMjc5fSwiMTUwMzUwMDIzLTI2Mzc2NTI3NTBfMjYzNzY3MzQ1MiI6eyJpZCI6IjE1MDM1MDAyMy0yNjM3NjUyNzUwXzI2Mzc2NzM0NTIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NTI3NTAiLCJiIjoiMjYzNzY3MzQ1MiIsImhlYWRpbmciOi0xNjEuOTcwNjY1OTcxMzk5OCwiZGlzdCI6OTMuMjY1fSwiMTUwMzUwMDIzLTI2Mzc2NzM0NTJfMTUyNjMxMTgzIjp7ImlkIjoiMTUwMzUwMDIzLTI2Mzc2NzM0NTJfMTUyNjMxMTgzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3NjczNDUyIiwiYiI6IjE1MjYzMTE4MyIsImhlYWRpbmciOi0xNjMuODYzNzQzNzEzNTgxOCwiZGlzdCI6Ni45MjR9LCIxNTAzNTAwMjMtMTUyNjMxMTgzXzI2Mzc2NzM0NDgiOnsiaWQiOiIxNTAzNTAwMjMtMTUyNjMxMTgzXzI2Mzc2NzM0NDgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjYzMTE4MyIsImIiOiIyNjM3NjczNDQ4IiwiaGVhZGluZyI6LTE2MS45NzA2NDcyNjMzMzA2LCJkaXN0Ijo5LjMyN30sIjE1MDM1MDAyMy0yNjM3NjczNDQ4XzI2Mzc2NzM0NDUiOnsiaWQiOiIxNTAzNTAwMjMtMjYzNzY3MzQ0OF8yNjM3NjczNDQ1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3NjczNDQ4IiwiYiI6IjI2Mzc2NzM0NDUiLCJoZWFkaW5nIjotMTYyLjc0Mjk4MDM3MTMwNDUzLCJkaXN0IjoxMTAuMjc5fSwiMTUwMzUwMDIzLTI2Mzc2NzM0NDVfMTA3MzQwMDk2OCI6eyJpZCI6IjE1MDM1MDAyMy0yNjM3NjczNDQ1XzEwNzM0MDA5NjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzM0NDUiLCJiIjoiMTA3MzQwMDk2OCIsImhlYWRpbmciOi0xNTkuNTk1Mzk3NDA3Mjc2OCwiZGlzdCI6OC4yNzl9LCIxNTAzNTAwMjMtMTA3MzQwMDk2OF8xNTI2MzExODEiOnsiaWQiOiIxNTAzNTAwMjMtMTA3MzQwMDk2OF8xNTI2MzExODEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5NjgiLCJiIjoiMTUyNjMxMTgxIiwiaGVhZGluZyI6LTE1OC40NjkxMTQ1MDk3MzAxMywiZGlzdCI6MTMuMTA5fSwiMTUwMzUwMDIzLTE1MjYzMTE4MV8yNjM3NjczNDM5Ijp7ImlkIjoiMTUwMzUwMDIzLTE1MjYzMTE4MV8yNjM3NjczNDM5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2MzExODEiLCJiIjoiMjYzNzY3MzQzOSIsImhlYWRpbmciOi0xNjMuODYzNTQzODAyNDU4LCJkaXN0Ijo2LjkyNH0sIjE1MDM1MDAyMy0yNjM3NjczNDM5XzE1MjQ5NTYxNyI6eyJpZCI6IjE1MDM1MDAyMy0yNjM3NjczNDM5XzE1MjQ5NTYxNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3MzQzOSIsImIiOiIxNTI0OTU2MTciLCJoZWFkaW5nIjotMTYyLjUyMzA0NDQzNzQyODkyLCJkaXN0IjoxMTguNTQ2fSwiMTUwMzUwMDM0LTE1MjUzOTY3Ml8xNDIxMTM0OTU2Ijp7ImlkIjoiMTUwMzUwMDM0LTE1MjUzOTY3Ml8xNDIxMTM0OTU2IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjUzOTY3MiIsImIiOiIxNDIxMTM0OTU2IiwiaGVhZGluZyI6MTMuMzE3MDMxOTg5MDQ0MzMzLCJkaXN0IjoxMi41MzF9LCIxNTAzNTAwMzQtMTQyMTEzNDk1Nl8xNDIxMTM0OTg4Ijp7ImlkIjoiMTUwMzUwMDM0LTE0MjExMzQ5NTZfMTQyMTEzNDk4OCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNDIxMTM0OTU2IiwiYiI6IjE0MjExMzQ5ODgiLCJoZWFkaW5nIjoxNi43OTgxNDUwODkxMzc3ODcsImRpc3QiOjI2LjYzNH0sIjE1MDM1MDAzNC0xNDIxMTM0OTg4XzEwNzM0MDU2NjQiOnsiaWQiOiIxNTAzNTAwMzQtMTQyMTEzNDk4OF8xMDczNDA1NjY0IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE0MjExMzQ5ODgiLCJiIjoiMTA3MzQwNTY2NCIsImhlYWRpbmciOjE2LjEzNTM1NjYzMTg4NTkyLCJkaXN0IjoxMC4zODZ9LCIxNTI0Mjk3MTUtNDQyNzYxNTUzXzEwNzg4MDY2NTMiOnsiaWQiOiIxNTI0Mjk3MTUtNDQyNzYxNTUzXzEwNzg4MDY2NTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0Mjc2MTU1MyIsImIiOiIxMDc4ODA2NjUzIiwiaGVhZGluZyI6MTA0LjM2MDI5MTMxNTAzNDQ3LCJkaXN0IjoxNy44Nzl9LCIxNTI0Mjk3MTUtMTA3ODgwNjY1M180NDI3NjE1NTMiOnsiaWQiOiIxNTI0Mjk3MTUtMTA3ODgwNjY1M180NDI3NjE1NTMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzg4MDY2NTMiLCJiIjoiNDQyNzYxNTUzIiwiaGVhZGluZyI6Mjg0LjM2MDI5MTMxNTAzNDUsImRpc3QiOjE3Ljg3OX0sIjE1MjQyOTcxNS0xMDc4ODA2NjUzXzE1MjQ5NTYyNCI6eyJpZCI6IjE1MjQyOTcxNS0xMDc4ODA2NjUzXzE1MjQ5NTYyNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3ODgwNjY1MyIsImIiOiIxNTI0OTU2MjQiLCJoZWFkaW5nIjoxMDcuMjk1MTI0MTM1MTg4MzYsImRpc3QiOjM3LjI4OX0sIjE1MjQyOTcxNS0xNTI0OTU2MjRfMTA3ODgwNjY1MyI6eyJpZCI6IjE1MjQyOTcxNS0xNTI0OTU2MjRfMTA3ODgwNjY1MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjI0IiwiYiI6IjEwNzg4MDY2NTMiLCJoZWFkaW5nIjoyODcuMjk1MTI0MTM1MTg4MzYsImRpc3QiOjM3LjI4OX0sIjE1MjQyOTcxNS0xNTI0OTU2MjRfMTA3ODgwNjYzOCI6eyJpZCI6IjE1MjQyOTcxNS0xNTI0OTU2MjRfMTA3ODgwNjYzOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjI0IiwiYiI6IjEwNzg4MDY2MzgiLCJoZWFkaW5nIjoxMDguNjMzNzI1Mzg4MzcxNTksImRpc3QiOjQxLjYzNH0sIjE1MjQyOTcxNS0xMDc4ODA2NjM4XzE1MjQ5NTYyNCI6eyJpZCI6IjE1MjQyOTcxNS0xMDc4ODA2NjM4XzE1MjQ5NTYyNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3ODgwNjYzOCIsImIiOiIxNTI0OTU2MjQiLCJoZWFkaW5nIjoyODguNjMzNzI1Mzg4MzcxNiwiZGlzdCI6NDEuNjM0fSwiMTUyNDI5NzE1LTEwNzg4MDY2MzhfMTA3ODgwNjQ5OCI6eyJpZCI6IjE1MjQyOTcxNS0xMDc4ODA2NjM4XzEwNzg4MDY0OTgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzg4MDY2MzgiLCJiIjoiMTA3ODgwNjQ5OCIsImhlYWRpbmciOjEwOC41NzM0OTU4ODQwMzk0NSwiZGlzdCI6MjQuMzYzfSwiMTUyNDI5NzE1LTEwNzg4MDY0OThfMTA3ODgwNjYzOCI6eyJpZCI6IjE1MjQyOTcxNS0xMDc4ODA2NDk4XzEwNzg4MDY2MzgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzg4MDY0OTgiLCJiIjoiMTA3ODgwNjYzOCIsImhlYWRpbmciOjI4OC41NzM0OTU4ODQwMzk0NiwiZGlzdCI6MjQuMzYzfSwiMTUyNDI5NzE1LTEwNzg4MDY0OThfMjMzODQxNzg2NyI6eyJpZCI6IjE1MjQyOTcxNS0xMDc4ODA2NDk4XzIzMzg0MTc4NjciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzg4MDY0OTgiLCJiIjoiMjMzODQxNzg2NyIsImhlYWRpbmciOjEwNi41NTc3MDY3Nzg1MTk4NCwiZGlzdCI6MzEuMTJ9LCIxNTI0Mjk3MTUtMjMzODQxNzg2N18xMDc4ODA2NDk4Ijp7ImlkIjoiMTUyNDI5NzE1LTIzMzg0MTc4NjdfMTA3ODgwNjQ5OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjMzODQxNzg2NyIsImIiOiIxMDc4ODA2NDk4IiwiaGVhZGluZyI6Mjg2LjU1NzcwNjc3ODUxOTg0LCJkaXN0IjozMS4xMn0sIjE1MjQyOTcxNi0xMDczNDAwODI3XzI2Mzc2NzYxNDQiOnsiaWQiOiIxNTI0Mjk3MTYtMTA3MzQwMDgyN18yNjM3Njc2MTQ0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwODI3IiwiYiI6IjI2Mzc2NzYxNDQiLCJoZWFkaW5nIjoxMDcuOTUzNjk1MDQ5MDE2MTYsImRpc3QiOjMyLjM2N30sIjE1MjQyOTcxNi0yNjM3Njc2MTQ0XzEwNzM0MDA4MzAiOnsiaWQiOiIxNTI0Mjk3MTYtMjYzNzY3NjE0NF8xMDczNDAwODMwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ0IiwiYiI6IjEwNzM0MDA4MzAiLCJoZWFkaW5nIjoxMDQuODg4NzA0OTE1MTQzOSwiZGlzdCI6MTIuOTQzfSwiMTUyNDI5NzE4LTE2MjY1Njg2MjJfMTYyNjU2ODYyNCI6eyJpZCI6IjE1MjQyOTcxOC0xNjI2NTY4NjIyXzE2MjY1Njg2MjQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1Njg2MjIiLCJiIjoiMTYyNjU2ODYyNCIsImhlYWRpbmciOi03My45MzE4NDgzODcwNjgyMSwiZGlzdCI6MTYuMDIxfSwiMTUyNDI5NzE4LTE2MjY1Njg2MjRfMTYyNjU2ODYyMyI6eyJpZCI6IjE1MjQyOTcxOC0xNjI2NTY4NjI0XzE2MjY1Njg2MjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1Njg2MjQiLCJiIjoiMTYyNjU2ODYyMyIsImhlYWRpbmciOi04Ny4zNjEzMTczMDU1NDY5OCwiZGlzdCI6MjQuMDh9LCIxNjQyNzEwNjctMTc1OTI0MjUyMF8xNDIxMTM0ODAxIjp7ImlkIjoiMTY0MjcxMDY3LTE3NTkyNDI1MjBfMTQyMTEzNDgwMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTc1OTI0MjUyMCIsImIiOiIxNDIxMTM0ODAxIiwiaGVhZGluZyI6MTExLjAwOTY4ODE0NDIzODA1LCJkaXN0Ijo5LjI3Nn0sIjE2NDI3MTA2Ny0xNDIxMTM0ODAxXzE3NTkyNDI1MjAiOnsiaWQiOiIxNjQyNzEwNjctMTQyMTEzNDgwMV8xNzU5MjQyNTIwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0ODAxIiwiYiI6IjE3NTkyNDI1MjAiLCJoZWFkaW5nIjoyOTEuMDA5Njg4MTQ0MjM4MDUsImRpc3QiOjkuMjc2fSwiMTY0MjcxMDY3LTE0MjExMzQ4MDFfMTc1OTI0MjUxOSI6eyJpZCI6IjE2NDI3MTA2Ny0xNDIxMTM0ODAxXzE3NTkyNDI1MTkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ4MDEiLCJiIjoiMTc1OTI0MjUxOSIsImhlYWRpbmciOjEwNi4wNjg2NzYzMDQ5NDgwNiwiZGlzdCI6MTYuMDJ9LCIxNjQyNzEwNjctMTc1OTI0MjUxOV8xNDIxMTM0ODAxIjp7ImlkIjoiMTY0MjcxMDY3LTE3NTkyNDI1MTlfMTQyMTEzNDgwMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTc1OTI0MjUxOSIsImIiOiIxNDIxMTM0ODAxIiwiaGVhZGluZyI6Mjg2LjA2ODY3NjMwNDk0ODA0LCJkaXN0IjoxNi4wMn0sIjE2NDI3MTA2OC0xNzU5MjQyNTE5XzE0MjExMzQ3OTciOnsiaWQiOiIxNjQyNzEwNjgtMTc1OTI0MjUxOV8xNDIxMTM0Nzk3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNzU5MjQyNTE5IiwiYiI6IjE0MjExMzQ3OTciLCJoZWFkaW5nIjoxMDQuMzYxMzc3ODk4MzczNTMsImRpc3QiOjE3Ljg3N30sIjE2NDI3MTA2OC0xNDIxMTM0Nzk3XzE3NTkyNDI1MTkiOnsiaWQiOiIxNjQyNzEwNjgtMTQyMTEzNDc5N18xNzU5MjQyNTE5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0Nzk3IiwiYiI6IjE3NTkyNDI1MTkiLCJoZWFkaW5nIjoyODQuMzYxMzc3ODk4MzczNSwiZGlzdCI6MTcuODc3fSwiMTY0MjcxMDY4LTE0MjExMzQ3OTdfMTUyNTY3MTA1Ijp7ImlkIjoiMTY0MjcxMDY4LTE0MjExMzQ3OTdfMTUyNTY3MTA1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0Nzk3IiwiYiI6IjE1MjU2NzEwNSIsImhlYWRpbmciOjEwNS4xNjgyMDI1OTYwMjM0MywiZGlzdCI6MzMuODk0fSwiMTY0MjcxMDY4LTE1MjU2NzEwNV8xNDIxMTM0Nzk3Ijp7ImlkIjoiMTY0MjcxMDY4LTE1MjU2NzEwNV8xNDIxMTM0Nzk3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjcxMDUiLCJiIjoiMTQyMTEzNDc5NyIsImhlYWRpbmciOjI4NS4xNjgyMDI1OTYwMjM0MywiZGlzdCI6MzMuODk0fSwiMTY0MjcxMDY5LTE3NTkyNDI1MTVfMTQyMTEzNDc2OCI6eyJpZCI6IjE2NDI3MTA2OS0xNzU5MjQyNTE1XzE0MjExMzQ3NjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE3NTkyNDI1MTUiLCJiIjoiMTQyMTEzNDc2OCIsImhlYWRpbmciOi0xNjEuNTQwMDAwMjIwNDkzOTQsImRpc3QiOjE1LjE5M30sIjE2NDI3MTA2OS0xNDIxMTM0NzY4XzE0MjExMzQ3NTUiOnsiaWQiOiIxNjQyNzEwNjktMTQyMTEzNDc2OF8xNDIxMTM0NzU1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzY4IiwiYiI6IjE0MjExMzQ3NTUiLCJoZWFkaW5nIjotMTYxLjUzOTk3NzE5MjM4ODk2LCJkaXN0IjoxNS4xOTN9LCIxNjQyNzEwNjktMTQyMTEzNDc1NV8xNTI3MTExMzQiOnsiaWQiOiIxNjQyNzEwNjktMTQyMTEzNDc1NV8xNTI3MTExMzQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3NTUiLCJiIjoiMTUyNzExMTM0IiwiaGVhZGluZyI6LTE2Mi4zODM0MjM0NDE1OTkwNiwiZGlzdCI6NDcuNjg4fSwiMTY0MjcxMDY5LTE1MjcxMTEzNF8xNTI3MTExMzEiOnsiaWQiOiIxNjQyNzEwNjktMTUyNzExMTM0XzE1MjcxMTEzMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNzExMTM0IiwiYiI6IjE1MjcxMTEzMSIsImhlYWRpbmciOi0xNjIuNjk0NTg5NzQ2OTE1NjMsImRpc3QiOjkwLjU2OH0sIjE2NDI3MTA2OS0xNTI3MTExMzFfMTUyMzY5Mjg2Ijp7ImlkIjoiMTY0MjcxMDY5LTE1MjcxMTEzMV8xNTIzNjkyODYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjcxMTEzMSIsImIiOiIxNTIzNjkyODYiLCJoZWFkaW5nIjotMTYyLjA4MTI1MTg1OTYwOTUsImRpc3QiOjU5LjQxOX0sIjE2NDI3MTA2OS0xNTIzNjkyODZfMTQyMTEzNDczMyI6eyJpZCI6IjE2NDI3MTA2OS0xNTIzNjkyODZfMTQyMTEzNDczMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzY5Mjg2IiwiYiI6IjE0MjExMzQ3MzMiLCJoZWFkaW5nIjotMTY1LjIzODg5ODA3MzMxNTgsImRpc3QiOjY0LjE5OX0sIjE2NDI3MTA2OS0xNDIxMTM0NzMzXzEzNzI2MDE5OTAiOnsiaWQiOiIxNjQyNzEwNjktMTQyMTEzNDczM18xMzcyNjAxOTkwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzMzIiwiYiI6IjEzNzI2MDE5OTAiLCJoZWFkaW5nIjotMTYyLjk2ODI3Mjk0NjM5MDkzLCJkaXN0IjoxOS43MX0sIjE2NDI3MTA2OS0xMzcyNjAxOTkwXzE3NTkzMjg3NTciOnsiaWQiOiIxNjQyNzEwNjktMTM3MjYwMTk5MF8xNzU5MzI4NzU3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMzcyNjAxOTkwIiwiYiI6IjE3NTkzMjg3NTciLCJoZWFkaW5nIjotMTcwLjE1MjExNDEwODExOTc1LCJkaXN0IjoxNi44Nzd9LCIxNjQyNzEwNjktMTc1OTMyODc1N18xNTI3MTExMjQiOnsiaWQiOiIxNjQyNzEwNjktMTc1OTMyODc1N18xNTI3MTExMjQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE3NTkzMjg3NTciLCJiIjoiMTUyNzExMTI0IiwiaGVhZGluZyI6LTE3MC43NTY2MjQzNDYwNjM3LCJkaXN0IjoxNy45N30sIjE2NDI3MTA2OS0xNTI3MTExMjRfMTYyNjU2ODYyMiI6eyJpZCI6IjE2NDI3MTA2OS0xNTI3MTExMjRfMTYyNjU2ODYyMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNzExMTI0IiwiYiI6IjE2MjY1Njg2MjIiLCJoZWFkaW5nIjotMTY1Ljg1NjYwNzk0NTA5MjU1LCJkaXN0IjozNS40NH0sIjE2NDI3MTA2OS0xNjI2NTY4NjIyXzE1MjQzNTkwNiI6eyJpZCI6IjE2NDI3MTA2OS0xNjI2NTY4NjIyXzE1MjQzNTkwNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU2ODYyMiIsImIiOiIxNTI0MzU5MDYiLCJoZWFkaW5nIjotMTYzLjg2MzgwMTc4Nzk4NDcsImRpc3QiOjEwLjM4Nn0sIjE2NDI3MTA3MC0xNzU5MjQyNTI4XzE3NTkyNDI1MjUiOnsiaWQiOiIxNjQyNzEwNzAtMTc1OTI0MjUyOF8xNzU5MjQyNTI1IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MjgiLCJiIjoiMTc1OTI0MjUyNSIsImhlYWRpbmciOjE0My4zNTMyMzU0OTA1NjA1NiwiZGlzdCI6MTkuMzQ0fSwiMTY0MjcxMDcwLTE3NTkyNDI1MjVfMTc1OTI0MjUyMiI6eyJpZCI6IjE2NDI3MTA3MC0xNzU5MjQyNTI1XzE3NTkyNDI1MjIiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUyNSIsImIiOiIxNzU5MjQyNTIyIiwiaGVhZGluZyI6MTY3Ljc1NzcwNTQwMjg0NjY4LCJkaXN0Ijo5LjA3NX0sIjE2NDI3MTA3MC0xNzU5MjQyNTIyXzE3NTkyNDI1MjEiOnsiaWQiOiIxNjQyNzEwNzAtMTc1OTI0MjUyMl8xNzU5MjQyNTIxIiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MjIiLCJiIjoiMTc1OTI0MjUyMSIsImhlYWRpbmciOjE3NC40OTE2NjYzMTE2NjIwNCwiZGlzdCI6MTAuMDIzfSwiMTY0MjcxMDcwLTE3NTkyNDI1MjFfMTUyNTY2MzUyIjp7ImlkIjoiMTY0MjcxMDcwLTE3NTkyNDI1MjFfMTUyNTY2MzUyIiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MjEiLCJiIjoiMTUyNTY2MzUyIiwiaGVhZGluZyI6MTc1LjQ4ODU4NjQ2MzU2MDg0LCJkaXN0IjoxMi4yMzJ9LCIxNjQyNzEwNzEtMTc1OTI0MjUxOV8xNzU5MjQyNTE4Ijp7ImlkIjoiMTY0MjcxMDcxLTE3NTkyNDI1MTlfMTc1OTI0MjUxOCIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTE5IiwiYiI6IjE3NTkyNDI1MTgiLCJoZWFkaW5nIjoxMzAuNDE3ODgyNDE5MjIwNTUsImRpc3QiOjI5LjA2N30sIjE2NDI3MTA3MS0xNzU5MjQyNTE4XzE3NTkyNDI1MTciOnsiaWQiOiIxNjQyNzEwNzEtMTc1OTI0MjUxOF8xNzU5MjQyNTE3IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkyNDI1MTgiLCJiIjoiMTc1OTI0MjUxNyIsImhlYWRpbmciOjE0NC4xMjI4NTAyMjI5ODY2NywiZGlzdCI6OC4yMDl9LCIxNjQyNzEwNzEtMTc1OTI0MjUxN18xNzU5MjQyNTE2Ijp7ImlkIjoiMTY0MjcxMDcxLTE3NTkyNDI1MTdfMTc1OTI0MjUxNiIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTE3IiwiYiI6IjE3NTkyNDI1MTYiLCJoZWFkaW5nIjoxNTYuNTQwOTI1MDk1MDQzMjYsImRpc3QiOjkuNjY4fSwiMTY0MjcxMDcxLTE3NTkyNDI1MTZfMTc1OTI0MjUxNSI6eyJpZCI6IjE2NDI3MTA3MS0xNzU5MjQyNTE2XzE3NTkyNDI1MTUiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUxNiIsImIiOiIxNzU5MjQyNTE1IiwiaGVhZGluZyI6MTY5Ljc1MDYwODY1NDI1NjkyLCJkaXN0IjoyNy4wMzd9LCIxNjQyNzEwNzItMTc1OTI0MjUyMF8xNzU5MjQyNTIzIjp7ImlkIjoiMTY0MjcxMDcyLTE3NTkyNDI1MjBfMTc1OTI0MjUyMyIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTIwIiwiYiI6IjE3NTkyNDI1MjMiLCJoZWFkaW5nIjotNDcuMzMxOTA1NDMwNTMwODk1LCJkaXN0IjoyNi4xNzF9LCIxNjQyNzEwNzItMTc1OTI0MjUyM18xNzU5MjQyNTI0Ijp7ImlkIjoiMTY0MjcxMDcyLTE3NTkyNDI1MjNfMTc1OTI0MjUyNCIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTIzIiwiYiI6IjE3NTkyNDI1MjQiLCJoZWFkaW5nIjotMzEuNzk2NTc3NzUyNjI5NzYsImRpc3QiOjkuMTN9LCIxNjQyNzEwNzItMTc1OTI0MjUyNF8xNzU5MjQyNTI2Ijp7ImlkIjoiMTY0MjcxMDcyLTE3NTkyNDI1MjRfMTc1OTI0MjUyNiIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTI0IiwiYiI6IjE3NTkyNDI1MjYiLCJoZWFkaW5nIjotMjcuNTA4MzUzNjgzNTUwMTcsImRpc3QiOjYuMjQ5fSwiMTY0MjcxMDcyLTE3NTkyNDI1MjZfMTc1OTI0MjUyNyI6eyJpZCI6IjE2NDI3MTA3Mi0xNzU5MjQyNTI2XzE3NTkyNDI1MjciLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUyNiIsImIiOiIxNzU5MjQyNTI3IiwiaGVhZGluZyI6MCwiZGlzdCI6Ni42NTF9LCIxNjQyNzEwNzItMTc1OTI0MjUyN18xNzU5MjQyNTI5Ijp7ImlkIjoiMTY0MjcxMDcyLTE3NTkyNDI1MjdfMTc1OTI0MjUyOSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNzU5MjQyNTI3IiwiYiI6IjE3NTkyNDI1MjkiLCJoZWFkaW5nIjoxNi4xMzU0OTY3NDQ2NzcwMiwiZGlzdCI6MTAuMzg2fSwiMTY0MjcxMDcyLTE3NTkyNDI1MjlfMTQyMTEzNDgyNyI6eyJpZCI6IjE2NDI3MTA3Mi0xNzU5MjQyNTI5XzE0MjExMzQ4MjciLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTI0MjUyOSIsImIiOiIxNDIxMTM0ODI3IiwiaGVhZGluZyI6MjYuODUyNDM2MDcxNzQ2MTEsImRpc3QiOjE0LjkxMX0sIjE2NDI4NDc4My0xNzU5MzI4NzU3XzEwNzc4NDAwMjAiOnsiaWQiOiIxNjQyODQ3ODMtMTc1OTMyODc1N18xMDc3ODQwMDIwIiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjE3NTkzMjg3NTciLCJiIjoiMTA3Nzg0MDAyMCIsImhlYWRpbmciOi0xNTIuMTUxNTUyNTExMDQ5MywiZGlzdCI6MjguODM3fSwiMTY0Mjg0NzgzLTEwNzc4NDAwMjBfMTA3Nzg0MDA3OSI6eyJpZCI6IjE2NDI4NDc4My0xMDc3ODQwMDIwXzEwNzc4NDAwNzkiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTA3Nzg0MDAyMCIsImIiOiIxMDc3ODQwMDc5IiwiaGVhZGluZyI6LTEzMC44MzAyMzI5ODU2MjMwNCwiZGlzdCI6MTAuMTczfSwiMTY0Mjg0NzgzLTEwNzc4NDAwNzlfMTA3Nzg0MDQ3OCI6eyJpZCI6IjE2NDI4NDc4My0xMDc3ODQwMDc5XzEwNzc4NDA0NzgiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTA3Nzg0MDA3OSIsImIiOiIxMDc3ODQwNDc4IiwiaGVhZGluZyI6LTExNy4xMTUwNjY3MDY1NDA5NywiZGlzdCI6OS43Mjl9LCIxNjQyODQ3ODMtMTA3Nzg0MDQ3OF8xMDc3ODM5OTg5Ijp7ImlkIjoiMTY0Mjg0NzgzLTEwNzc4NDA0NzhfMTA3NzgzOTk4OSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxMDc3ODQwNDc4IiwiYiI6IjEwNzc4Mzk5ODkiLCJoZWFkaW5nIjotMTA4LjIyMDUwMjg3NDA3NzUyLCJkaXN0Ijo3LjA5MX0sIjE2NDI4NDc4My0xMDc3ODM5OTg5XzEwNzc4NDAzNTQiOnsiaWQiOiIxNjQyODQ3ODMtMTA3NzgzOTk4OV8xMDc3ODQwMzU0IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjEwNzc4Mzk5ODkiLCJiIjoiMTA3Nzg0MDM1NCIsImhlYWRpbmciOi05Ny4yOTQ5OTA4MDQ5NTU5MiwiZGlzdCI6OC43M30sIjE2NDI4NDc4My0xMDc3ODQwMzU0XzEwNzc4NDAxOTQiOnsiaWQiOiIxNjQyODQ3ODMtMTA3Nzg0MDM1NF8xMDc3ODQwMTk0IiwidHlwZSI6InNlY29uZGFyeV9saW5rIiwiYSI6IjEwNzc4NDAzNTQiLCJiIjoiMTA3Nzg0MDE5NCIsImhlYWRpbmciOi04Ni4xMjI3NzE1MTAwODI5MywiZGlzdCI6MzIuNzl9LCIxNjQyODQ3ODUtMTc1OTMyODc1N18xNTIzNzQ4MTYiOnsiaWQiOiIxNjQyODQ3ODUtMTc1OTMyODc1N18xNTIzNzQ4MTYiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTc1OTMyODc1NyIsImIiOiIxNTIzNzQ4MTYiLCJoZWFkaW5nIjoxNzIuNjcyNzYzNjg0NTkzNSwiZGlzdCI6MzAuMTc4fSwiMTY0Mjg0Nzg1LTE1MjM3NDgxNl8xNTIzNzQ4MTkiOnsiaWQiOiIxNjQyODQ3ODUtMTUyMzc0ODE2XzE1MjM3NDgxOSIsInR5cGUiOiJzZWNvbmRhcnlfbGluayIsImEiOiIxNTIzNzQ4MTYiLCJiIjoiMTUyMzc0ODE5IiwiaGVhZGluZyI6MTUyLjQ5MDY2MjUzMjkwODQ2LCJkaXN0Ijo2LjI0OX0sIjE2NDI4NDc4NS0xNTIzNzQ4MTlfMTUyMzc0ODIxIjp7ImlkIjoiMTY0Mjg0Nzg1LTE1MjM3NDgxOV8xNTIzNzQ4MjEiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTUyMzc0ODE5IiwiYiI6IjE1MjM3NDgyMSIsImhlYWRpbmciOjExNC43NDI3MDk1Mzc5MzM0NCwiZGlzdCI6NS4yOTd9LCIxNzAwNTA4MTctMTYyNjU1ODU5NF8yMTY3MTYxMjQ4Ijp7ImlkIjoiMTcwMDUwODE3LTE2MjY1NTg1OTRfMjE2NzE2MTI0OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTYyNjU1ODU5NCIsImIiOiIyMTY3MTYxMjQ4IiwiaGVhZGluZyI6LTcyLjU1NTk5ODgwOTU4OTA3LCJkaXN0IjoxMS4wOTR9LCIxNzAwNTA4MTctMjE2NzE2MTI0OF8yMTY3MTYxMjcwIjp7ImlkIjoiMTcwMDUwODE3LTIxNjcxNjEyNDhfMjE2NzE2MTI3MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTI0OCIsImIiOiIyMTY3MTYxMjcwIiwiaGVhZGluZyI6LTcxLjkyOTUyOTA0MDgyMzYsImRpc3QiOjExNC4zNjZ9LCIxNzAwNTA4MTctMjE2NzE2MTI3MF8xNjI2NTU4NTg1Ijp7ImlkIjoiMTcwMDUwODE3LTIxNjcxNjEyNzBfMTYyNjU1ODU4NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTI3MCIsImIiOiIxNjI2NTU4NTg1IiwiaGVhZGluZyI6LTczLjkzMTQ3NjQ5MzM4NjExLCJkaXN0Ijo4LjAxfSwiMTcwMDUwODE3LTE2MjY1NTg1ODVfMjE2NzE2MTMzNyI6eyJpZCI6IjE3MDA1MDgxNy0xNjI2NTU4NTg1XzIxNjcxNjEzMzciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTg1ODUiLCJiIjoiMjE2NzE2MTMzNyIsImhlYWRpbmciOi02OC45OTA1MzY4NTQwODM1NiwiZGlzdCI6OS4yNzZ9LCIxNzAwNTA4MTctMjE2NzE2MTMzN18xNjI2NTU1ODMxIjp7ImlkIjoiMTcwMDUwODE3LTIxNjcxNjEzMzdfMTYyNjU1NTgzMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE2NzE2MTMzNyIsImIiOiIxNjI2NTU1ODMxIiwiaGVhZGluZyI6LTcxLjk1MDgzODg3NTgxNzc0LCJkaXN0IjoxMDAuMTg0fSwiMTcwMDUwODE3LTE2MjY1NTU4MzFfMTUyNDU2NjIyIjp7ImlkIjoiMTcwMDUwODE3LTE2MjY1NTU4MzFfMTUyNDU2NjIyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNjI2NTU1ODMxIiwiYiI6IjE1MjQ1NjYyMiIsImhlYWRpbmciOi03MS41NDA0NzgyMTc0ODcwMywiZGlzdCI6MTA4LjUzNn0sIjE3MDA1MDgxNy0xNTI0NTY2MjJfMTUyNTgzNDA0Ijp7ImlkIjoiMTcwMDUwODE3LTE1MjQ1NjYyMl8xNTI1ODM0MDQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ1NjYyMiIsImIiOiIxNTI1ODM0MDQiLCJoZWFkaW5nIjotNzIuMjUyNjI3MzcxNTQ0ODMsImRpc3QiOjEwOS4xMDZ9LCIxNzAwNTA4MTctMTUyNTgzNDA0XzQ0MzIxNDY0MiI6eyJpZCI6IjE3MDA1MDgxNy0xNTI1ODM0MDRfNDQzMjE0NjQyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1ODM0MDQiLCJiIjoiNDQzMjE0NjQyIiwiaGVhZGluZyI6LTcxLjE1MDc4MDgyNzU2MDA0LCJkaXN0Ijo1NC45MDF9LCIxNzAwNTA4MTctNDQzMjE0NjQyXzE1MjM5MzUxNSI6eyJpZCI6IjE3MDA1MDgxNy00NDMyMTQ2NDJfMTUyMzkzNTE1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMyMTQ2NDIiLCJiIjoiMTUyMzkzNTE1IiwiaGVhZGluZyI6LTcxLjkzOTQxMDgxOTYxMDEyLCJkaXN0Ijo1My42Mzd9LCIxNzAwNTA4MTctMTUyMzkzNTE1XzE1MjYzNjg4NiI6eyJpZCI6IjE3MDA1MDgxNy0xNTIzOTM1MTVfMTUyNjM2ODg2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzOTM1MTUiLCJiIjoiMTUyNjM2ODg2IiwiaGVhZGluZyI6LTcxLjg1NjYzNzU2MDUzNjYsImRpc3QiOjExMC4zNjJ9LCIxNzI4MTQ2MTEtNDQyNzYxNTUxXzE1MjQ2MDIzNiI6eyJpZCI6IjE3MjgxNDYxMS00NDI3NjE1NTFfMTUyNDYwMjM2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0Mjc2MTU1MSIsImIiOiIxNTI0NjAyMzYiLCJoZWFkaW5nIjoxMDcuMDc3NzE5NzUwNzM5OTYsImRpc3QiOjMwLjE5OX0sIjE3MjgxNDYxMi0xNTI0NjAyMjhfMTUyNDUxNjEyIjp7ImlkIjoiMTcyODE0NjEyLTE1MjQ2MDIyOF8xNTI0NTE2MTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDYwMjI4IiwiYiI6IjE1MjQ1MTYxMiIsImhlYWRpbmciOjEwOC4wNTg2NjcwMzY0ODcxNCwiZGlzdCI6MTA3LjI4M30sIjE3MjgxNDYxMi0xNTI0NTE2MTJfMTUyNDYwMjMwIjp7ImlkIjoiMTcyODE0NjEyLTE1MjQ1MTYxMl8xNTI0NjAyMzAiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDUxNjEyIiwiYiI6IjE1MjQ2MDIzMCIsImhlYWRpbmciOjEwOC4yMTkyOTI5MDE1MDE3NywiZGlzdCI6MTA2LjM2OX0sIjE3MjgxNDYxMi0xNTI0NjAyMzBfNDQyNzYxNTUxIjp7ImlkIjoiMTcyODE0NjEyLTE1MjQ2MDIzMF80NDI3NjE1NTEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDYwMjMwIiwiYiI6IjQ0Mjc2MTU1MSIsImhlYWRpbmciOjEwNy45NTI5ODc1MDUxOTEzMywiZGlzdCI6OTcuMTA0fSwiMTc0NDIxNjI5LTE2MjY1NTkzNDZfMjEzMDI1MDM0MCI6eyJpZCI6IjE3NDQyMTYyOS0xNjI2NTU5MzQ2XzIxMzAyNTAzNDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTkzNDYiLCJiIjoiMjEzMDI1MDM0MCIsImhlYWRpbmciOjE2LjEzNjI1ODk3MDA5MjEwNCwiZGlzdCI6My40NjJ9LCIxNzQ0MjE2MjktMjEzMDI1MDM0MF8xNjI2NTU5MzQ2Ijp7ImlkIjoiMTc0NDIxNjI5LTIxMzAyNTAzNDBfMTYyNjU1OTM0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjEzMDI1MDM0MCIsImIiOiIxNjI2NTU5MzQ2IiwiaGVhZGluZyI6MTk2LjEzNjI1ODk3MDA5MjExLCJkaXN0IjozLjQ2Mn0sIjE3NDQyMTYyOS0yMTMwMjUwMzQwXzE1MjY1MTEwMSI6eyJpZCI6IjE3NDQyMTYyOS0yMTMwMjUwMzQwXzE1MjY1MTEwMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjEzMDI1MDM0MCIsImIiOiIxNTI2NTExMDEiLCJoZWFkaW5nIjoxOC4wMjkzMjcxODk4ODg1MSwiZGlzdCI6OS4zMjd9LCIxNzQ0MjE2MjktMTUyNjUxMTAxXzIxMzAyNTAzNDAiOnsiaWQiOiIxNzQ0MjE2MjktMTUyNjUxMTAxXzIxMzAyNTAzNDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjY1MTEwMSIsImIiOiIyMTMwMjUwMzQwIiwiaGVhZGluZyI6MTk4LjAyOTMyNzE4OTg4ODUsImRpc3QiOjkuMzI3fSwiMTc0NDIxNjMyLTE4NTExOTI1MzRfMjc0MzUwNjcyNSI6eyJpZCI6IjE3NDQyMTYzMi0xODUxMTkyNTM0XzI3NDM1MDY3MjUiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMTg1MTE5MjUzNCIsImIiOiIyNzQzNTA2NzI1IiwiaGVhZGluZyI6LTE2MS41MzkxODczNDcxMjE5OCwiZGlzdCI6MTUuMTkzfSwiMTc0NDIxNjMyLTI3NDM1MDY3MjVfMjE2NzE2MTE3NyI6eyJpZCI6IjE3NDQyMTYzMi0yNzQzNTA2NzI1XzIxNjcxNjExNzciLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMjc0MzUwNjcyNSIsImIiOiIyMTY3MTYxMTc3IiwiaGVhZGluZyI6LTE1OS41OTU0MTI4MjM2ODI3MiwiZGlzdCI6OC4yNzl9LCIxNzQ0MjE2MzItMjE2NzE2MTE3N18xNTI3MjMzOTciOnsiaWQiOiIxNzQ0MjE2MzItMjE2NzE2MTE3N18xNTI3MjMzOTciLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiMjE2NzE2MTE3NyIsImIiOiIxNTI3MjMzOTciLCJoZWFkaW5nIjotMTU2LjUzOTgyNDc2MjM1MDMsImRpc3QiOjkuNjY4fSwiMTc2ODc1MTE0LTE1MjU4MDk3MV8xNTI1ODA5NzYiOnsiaWQiOiIxNzY4NzUxMTQtMTUyNTgwOTcxXzE1MjU4MDk3NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTgwOTcxIiwiYiI6IjE1MjU4MDk3NiIsImhlYWRpbmciOi03Mi43MDUxNTQ1MTg4MTk1NSwiZGlzdCI6MzcuMjg5fSwiMTc2ODc1MTU5LTE1MjM3ODc1N18xNTI0MTQ3NzkiOnsiaWQiOiIxNzY4NzUxNTktMTUyMzc4NzU3XzE1MjQxNDc3OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyMzc4NzU3IiwiYiI6IjE1MjQxNDc3OSIsImhlYWRpbmciOi0xNjIuMDUyMzIxMTEyODc0NTIsImRpc3QiOjc4LjA3M30sIjE3Njg3NTE3NS0xNzU5MzI4NzQyXzE1MjUxNjY1MyI6eyJpZCI6IjE3Njg3NTE3NS0xNzU5MzI4NzQyXzE1MjUxNjY1MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTc1OTMyODc0MiIsImIiOiIxNTI1MTY2NTMiLCJoZWFkaW5nIjotMTYwLjU1OTkwOTA2NDU0MDY4LCJkaXN0IjoxMDYuOTc5fSwiMTc2ODc1MTc1LTE1MjUxNjY1M18xNTIzNzYzOTgiOnsiaWQiOiIxNzY4NzUxNzUtMTUyNTE2NjUzXzE1MjM3NjM5OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjUzIiwiYiI6IjE1MjM3NjM5OCIsImhlYWRpbmciOi0xNjAuODUxOTg0MjgyODU0NTQsImRpc3QiOjM1LjIwNX0sIjE3Njg3NTE3NS0xNTIzNzYzOThfMTUyNDQ3MzczIjp7ImlkIjoiMTc2ODc1MTc1LTE1MjM3NjM5OF8xNTI0NDczNzMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjM3NjM5OCIsImIiOiIxNTI0NDczNzMiLCJoZWFkaW5nIjotMTYyLjc3NTU0MzMxMDY2MzgsImRpc3QiOjY0Ljk5NX0sIjE3Njg3NTE3NS0xNTI0NDczNzNfMzU5NjI5OTQ3Ijp7ImlkIjoiMTc2ODc1MTc1LTE1MjQ0NzM3M18zNTk2Mjk5NDciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ0NzM3MyIsImIiOiIzNTk2Mjk5NDciLCJoZWFkaW5nIjotMTcwLjE1MDk5MjYyMTQzNTA1LCJkaXN0Ijo1LjYyNn0sIjE3Njg3NTE3NS0zNTk2Mjk5NDdfMzMyMjMyMzk3Ijp7ImlkIjoiMTc2ODc1MTc1LTM1OTYyOTk0N18zMzIyMzIzOTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjM1OTYyOTk0NyIsImIiOiIzMzIyMzIzOTciLCJoZWFkaW5nIjotMTYwLjg1MTg2NjEzMjc4MjQ1LCJkaXN0Ijo1Ljg2N30sIjE3Njg3NTE3NS0zMzIyMzIzOTdfMTUyMzgwODM0Ijp7ImlkIjoiMTc2ODc1MTc1LTMzMjIzMjM5N18xNTIzODA4MzQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjMzMjIzMjM5NyIsImIiOiIxNTIzODA4MzQiLCJoZWFkaW5nIjotMTYyLjM0NDM1MjA5MDY0NzQ4LCJkaXN0IjozNC45MDF9LCIxNzY4NzUxNzUtMTUyMzgwODM0XzE1MjQ5NjkwMCI6eyJpZCI6IjE3Njg3NTE3NS0xNTIzODA4MzRfMTUyNDk2OTAwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzODA4MzQiLCJiIjoiMTUyNDk2OTAwIiwiaGVhZGluZyI6LTE2MS40NzY5ODY4MzY4MzE3LCJkaXN0Ijo2Ni42NDF9LCIxNzY4NzUxNzUtMTUyNDk2OTAwXzE1MjM3ODc1NyI6eyJpZCI6IjE3Njg3NTE3NS0xNTI0OTY5MDBfMTUyMzc4NzU3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTY5MDAiLCJiIjoiMTUyMzc4NzU3IiwiaGVhZGluZyI6LTE2Mi4wNjM4MjEwNjgwMzc2NywiZGlzdCI6MTM3LjQ5M30sIjE3Njg3NTM3MC01MDQ4NjI0NTFfNTA0ODYyNDU1Ijp7ImlkIjoiMTc2ODc1MzcwLTUwNDg2MjQ1MV81MDQ4NjI0NTUiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiNTA0ODYyNDUxIiwiYiI6IjUwNDg2MjQ1NSIsImhlYWRpbmciOi0xMDcuNDQzNTI1ODU3NTAwNTUsImRpc3QiOjExLjA5NH0sIjE3Njg3NTM3MC01MDQ4NjI0NTVfNTA0ODYyMzMzIjp7ImlkIjoiMTc2ODc1MzcwLTUwNDg2MjQ1NV81MDQ4NjIzMzMiLCJ0eXBlIjoic2Vjb25kYXJ5X2xpbmsiLCJhIjoiNTA0ODYyNDU1IiwiYiI6IjUwNDg2MjMzMyIsImhlYWRpbmciOi0xMzIuNjY2NzMxODk3OTU1ODgsImRpc3QiOjEzLjA4Nn0sIjE4MTAyNTA4Mi00NDI3NjE1NjRfMTUyNjMxMTkwIjp7ImlkIjoiMTgxMDI1MDgyLTQ0Mjc2MTU2NF8xNTI2MzExOTAiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiNDQyNzYxNTY0IiwiYiI6IjE1MjYzMTE5MCIsImhlYWRpbmciOi05NS45Nzk2MDMyMDE1ODQzNywiZGlzdCI6MTAuNjQxfSwiMTgxMDI1MDgyLTE1MjYzMTE5MF8xNDAwMjExMjcyIjp7ImlkIjoiMTgxMDI1MDgyLTE1MjYzMTE5MF8xNDAwMjExMjcyIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjYzMTE5MCIsImIiOiIxNDAwMjExMjcyIiwiaGVhZGluZyI6LTExMS4wMDk5NzQzMzg0NjM1OSwiZGlzdCI6OS4yNzZ9LCIxODEwMjUwODItMTQwMDIxMTI3Ml8xNDIxMTM1MDEwIjp7ImlkIjoiMTgxMDI1MDgyLTE0MDAyMTEyNzJfMTQyMTEzNTAxMCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNDAwMjExMjcyIiwiYiI6IjE0MjExMzUwMTAiLCJoZWFkaW5nIjotMTIzLjM2MDcxMzY4MTA1MDE2LCJkaXN0Ijo4LjA2NH0sIjE4MTAyNTA4Mi0xNDIxMTM1MDEwXzE0MDAyMTEyNzUiOnsiaWQiOiIxODEwMjUwODItMTQyMTEzNTAxMF8xNDAwMjExMjc1IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE0MjExMzUwMTAiLCJiIjoiMTQwMDIxMTI3NSIsImhlYWRpbmciOi0xMzkuMDQ0OTE2NTIwMjQ4NjIsImRpc3QiOjUuODcxfSwiMTgxMDI1MDgyLTE0MDAyMTEyNzVfMTQyMTEzNTAwNyI6eyJpZCI6IjE4MTAyNTA4Mi0xNDAwMjExMjc1XzE0MjExMzUwMDciLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTQwMDIxMTI3NSIsImIiOiIxNDIxMTM1MDA3IiwiaGVhZGluZyI6LTEzOS4wNDQ5MDg4MjY1MDk2LCJkaXN0Ijo0LjQwNH0sIjE4MTAyNTA4Mi0xNDIxMTM1MDA3XzE1MjU2NzA5OSI6eyJpZCI6IjE4MTAyNTA4Mi0xNDIxMTM1MDA3XzE1MjU2NzA5OSIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNDIxMTM1MDA3IiwiYiI6IjE1MjU2NzA5OSIsImhlYWRpbmciOi0xNDUuOTc4OTU2NjEwOTQ3MzYsImRpc3QiOjEyLjAzOH0sIjIwMTY4MDQ2Ni0xNTI0OTU2MTdfMTUyNDk1NjE4Ijp7ImlkIjoiMjAxNjgwNDY2LTE1MjQ5NTYxN18xNTI0OTU2MTgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYxNyIsImIiOiIxNTI0OTU2MTgiLCJoZWFkaW5nIjoxMDcuNTkzMDQxMTE1NzAwODgsImRpc3QiOjExMC4wMjl9LCIyMDE2ODA0NjYtMTUyNDk1NjE4XzE1MjQ5NTYxNyI6eyJpZCI6IjIwMTY4MDQ2Ni0xNTI0OTU2MThfMTUyNDk1NjE3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MTgiLCJiIjoiMTUyNDk1NjE3IiwiaGVhZGluZyI6Mjg3LjU5MzA0MTExNTcwMDksImRpc3QiOjExMC4wMjl9LCIyMDE2ODA0ODMtMTUyNDk1NjE3XzQ0MzE4NTE0NSI6eyJpZCI6IjIwMTY4MDQ4My0xNTI0OTU2MTdfNDQzMTg1MTQ1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MTciLCJiIjoiNDQzMTg1MTQ1IiwiaGVhZGluZyI6LTE2Mi45MTE5MzQ3NzYyOTAyMiwiZGlzdCI6NTUuNjY5fSwiMjAxNjgwNDgzLTQ0MzE4NTE0NV8xNTI2MDg4NzQiOnsiaWQiOiIyMDE2ODA0ODMtNDQzMTg1MTQ1XzE1MjYwODg3NCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg1MTQ1IiwiYiI6IjE1MjYwODg3NCIsImhlYWRpbmciOi0xNjIuNTcwMDkxMDIxNTk2MiwiZGlzdCI6NTQuNjF9LCIyMDE2ODA0ODMtMTUyNjA4ODc0XzQ0MzE4NzAwMiI6eyJpZCI6IjIwMTY4MDQ4My0xNTI2MDg4NzRfNDQzMTg3MDAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2MDg4NzQiLCJiIjoiNDQzMTg3MDAyIiwiaGVhZGluZyI6LTE2Mi45MTE3Nzc0Nzc3MzM5OCwiZGlzdCI6NTUuNjY5fSwiMjAxNjgwNDgzLTQ0MzE4NzAwMl8xNTI0NjAyMjUiOnsiaWQiOiIyMDE2ODA0ODMtNDQzMTg3MDAyXzE1MjQ2MDIyNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDAyIiwiYiI6IjE1MjQ2MDIyNSIsImhlYWRpbmciOi0xNjIuMjE0NjY0NDMzNzQwODQsImRpc3QiOjUzLjU1NH0sIjIwMTY4MDQ4My0xNTI0NjAyMjVfNDQzMTg3MDA0Ijp7ImlkIjoiMjAxNjgwNDgzLTE1MjQ2MDIyNV80NDMxODcwMDQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ2MDIyNSIsImIiOiI0NDMxODcwMDQiLCJoZWFkaW5nIjotMTYxLjYxMTc5NDM4MzkzMTc0LCJkaXN0Ijo1NC45MDZ9LCIyMDE2ODA0ODMtNDQzMTg3MDA0XzE1MjU4MDk4MyI6eyJpZCI6IjIwMTY4MDQ4My00NDMxODcwMDRfMTUyNTgwOTgzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwMDQiLCJiIjoiMTUyNTgwOTgzIiwiaGVhZGluZyI6LTE2MS42MTE3MTE0NDgyMzE5NywiZGlzdCI6NTQuOTA2fSwiMjAxNjgwNDgzLTE1MjU4MDk4M180NDMxODcwMDciOnsiaWQiOiIyMDE2ODA0ODMtMTUyNTgwOTgzXzQ0MzE4NzAwNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTgwOTgzIiwiYiI6IjQ0MzE4NzAwNyIsImhlYWRpbmciOi0xNjIuMjE0NDI0NDAwMTk0MDUsImRpc3QiOjUzLjU1NH0sIjIwMTY4MDQ4My00NDMxODcwMDdfMTUyNjMxMTgwIjp7ImlkIjoiMjAxNjgwNDgzLTQ0MzE4NzAwN18xNTI2MzExODAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NzAwNyIsImIiOiIxNTI2MzExODAiLCJoZWFkaW5nIjotMTYyLjkxMTM5MDA0NTU3MzksImRpc3QiOjU1LjY2OX0sIjIwMTY4MDQ4My0xNTI2MzExODBfNDQzMTg3MDEwIjp7ImlkIjoiMjAxNjgwNDgzLTE1MjYzMTE4MF80NDMxODcwMTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjYzMTE4MCIsImIiOiI0NDMxODcwMTAiLCJoZWFkaW5nIjotMTYxLjg0NDcwMzA1NjcxMDc2LCJkaXN0Ijo1Mi40OTl9LCIyMDE2ODA0ODMtNDQzMTg3MDEwXzE1MjQwMTkwMSI6eyJpZCI6IjIwMTY4MDQ4My00NDMxODcwMTBfMTUyNDAxOTAxIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwMTAiLCJiIjoiMTUyNDAxOTAxIiwiaGVhZGluZyI6LTE2MC42NjM4Mzg5OTEyNDg3OCwiZGlzdCI6NTUuMjE3fSwiMjAxNjgwNDgzLTE1MjQwMTkwMV80NDMxODcwMTIiOnsiaWQiOiIyMDE2ODA0ODMtMTUyNDAxOTAxXzQ0MzE4NzAxMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAxOTAxIiwiYiI6IjQ0MzE4NzAxMiIsImhlYWRpbmciOi0xNjAuODUyNDA2NTU1OTYzNSwiZGlzdCI6NTIuODA3fSwiMjAxNjgwNDgzLTQ0MzE4NzAxMl8xNTI1MTY2NDIiOnsiaWQiOiIyMDE2ODA0ODMtNDQzMTg3MDEyXzE1MjUxNjY0MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDEyIiwiYiI6IjE1MjUxNjY0MiIsImhlYWRpbmciOi0xNjEuMDM3NDU4MjgyOTc0NzQsImRpc3QiOjU2LjI2NX0sIjIwMTY4MDQ4NC0xNTI0NTY2MDdfMTUyNTEyODQxIjp7ImlkIjoiMjAxNjgwNDg0LTE1MjQ1NjYwN18xNTI1MTI4NDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNDU2NjA3IiwiYiI6IjE1MjUxMjg0MSIsImhlYWRpbmciOjEwOC4xNDEyNTY3NTYxODk5NywiZGlzdCI6MTEwLjM3MX0sIjIwMTY4MDQ4NC0xNTI1MTI4NDFfMTUyNTEyODM5Ijp7ImlkIjoiMjAxNjgwNDg0LTE1MjUxMjg0MV8xNTI1MTI4MzkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTEyODQxIiwiYiI6IjE1MjUxMjgzOSIsImhlYWRpbmciOjEwOC40NTc1MTA5NDA5NzA1LCJkaXN0IjoxMDguNTQ0fSwiMjAxNjgwNDg0LTE1MjUxMjgzOV80NDMxODUxMzciOnsiaWQiOiIyMDE2ODA0ODQtMTUyNTEyODM5XzQ0MzE4NTEzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTI4MzkiLCJiIjoiNDQzMTg1MTM3IiwiaGVhZGluZyI6MTA3Ljk1MzA4NDU3NTE4ODk4LCJkaXN0Ijo2NC43MzZ9LCIyMDE2ODA0ODQtNDQzMTg1MTM3XzE1MjUxMjgzNSI6eyJpZCI6IjIwMTY4MDQ4NC00NDMxODUxMzdfMTUyNTEyODM1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTEzNyIsImIiOiIxNTI1MTI4MzUiLCJoZWFkaW5nIjoxMDkuMjQ0NDA3MTI3NzYzOTksImRpc3QiOjY3LjI2N30sIjIwNDg2OTUzMC0xNTI0NTY2MTZfMTUyNTgzMzk4Ijp7ImlkIjoiMjA0ODY5NTMwLTE1MjQ1NjYxNl8xNTI1ODMzOTgiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNDU2NjE2IiwiYiI6IjE1MjU4MzM5OCIsImhlYWRpbmciOi03MS4yODAzNzM4Mzg4ODQwOSwiZGlzdCI6MTAzLjYyNn0sIjIwNDg2OTUzMC0xNTI1ODMzOThfMTUyNDU2NjE2Ijp7ImlkIjoiMjA0ODY5NTMwLTE1MjU4MzM5OF8xNTI0NTY2MTYiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNTgzMzk4IiwiYiI6IjE1MjQ1NjYxNiIsImhlYWRpbmciOjEwOC43MTk2MjYxNjExMTU5MSwiZGlzdCI6MTAzLjYyNn0sIjIwNDg2OTUzMC0xNTI1ODMzOThfMTUyMzkzNDkyIjp7ImlkIjoiMjA0ODY5NTMwLTE1MjU4MzM5OF8xNTIzOTM0OTIiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNTgzMzk4IiwiYiI6IjE1MjM5MzQ5MiIsImhlYWRpbmciOi03Mi43MDM5NjA2MDY1NjY5LCJkaXN0IjoxMTEuODYyfSwiMjA0ODY5NTMwLTE1MjM5MzQ5Ml8xNTI1ODMzOTgiOnsiaWQiOiIyMDQ4Njk1MzAtMTUyMzkzNDkyXzE1MjU4MzM5OCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTIzOTM0OTIiLCJiIjoiMTUyNTgzMzk4IiwiaGVhZGluZyI6MTA3LjI5NjAzOTM5MzQzMzEsImRpc3QiOjExMS44NjJ9LCIyMDQ4Njk1MzAtMTUyMzkzNDkyXzIxMjU0Njg2NjQiOnsiaWQiOiIyMDQ4Njk1MzAtMTUyMzkzNDkyXzIxMjU0Njg2NjQiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyMzkzNDkyIiwiYiI6IjIxMjU0Njg2NjQiLCJoZWFkaW5nIjotNzIuNjcwMDc0MzEwNDM0MTMsImRpc3QiOjk2Ljc2M30sIjIwNDg2OTUzMC0yMTI1NDY4NjY0XzE1MjM5MzQ5MiI6eyJpZCI6IjIwNDg2OTUzMC0yMTI1NDY4NjY0XzE1MjM5MzQ5MiIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTI1NDY4NjY0IiwiYiI6IjE1MjM5MzQ5MiIsImhlYWRpbmciOjEwNy4zMjk5MjU2ODk1NjU4NywiZGlzdCI6OTYuNzYzfSwiMjA0ODY5NTMwLTIxMjU0Njg2NjRfMTUyNjM2ODgwIjp7ImlkIjoiMjA0ODY5NTMwLTIxMjU0Njg2NjRfMTUyNjM2ODgwIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxMjU0Njg2NjQiLCJiIjoiMTUyNjM2ODgwIiwiaGVhZGluZyI6LTczLjkzMTg5ODQ2MTE0NzcsImRpc3QiOjEyLjAxNn0sIjIwNDg2OTUzMC0xNTI2MzY4ODBfMjEyNTQ2ODY2NCI6eyJpZCI6IjIwNDg2OTUzMC0xNTI2MzY4ODBfMjEyNTQ2ODY2NCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIxNTI2MzY4ODAiLCJiIjoiMjEyNTQ2ODY2NCIsImhlYWRpbmciOjEwNi4wNjgxMDE1Mzg4NTIzLCJkaXN0IjoxMi4wMTZ9LCIyMDQ4Njk1MzAtMTUyNjM2ODgwXzIxMjU0Njg2NjYiOnsiaWQiOiIyMDQ4Njk1MzAtMTUyNjM2ODgwXzIxMjU0Njg2NjYiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNjM2ODgwIiwiYiI6IjIxMjU0Njg2NjYiLCJoZWFkaW5nIjotNzAuOTMyODgwMjEwNzY1NTksImRpc3QiOjEwLjE4fSwiMjA0ODY5NTMwLTIxMjU0Njg2NjZfMTUyNjM2ODgwIjp7ImlkIjoiMjA0ODY5NTMwLTIxMjU0Njg2NjZfMTUyNjM2ODgwIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxMjU0Njg2NjYiLCJiIjoiMTUyNjM2ODgwIiwiaGVhZGluZyI6MTA5LjA2NzExOTc4OTIzNDQxLCJkaXN0IjoxMC4xOH0sIjIwNDk2NDY2OC0xNTI2MDg4NzJfNDQzMTg1MTMzIjp7ImlkIjoiMjA0OTY0NjY4LTE1MjYwODg3Ml80NDMxODUxMzMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA4ODcyIiwiYiI6IjQ0MzE4NTEzMyIsImhlYWRpbmciOjE4LjE1NDU4NjQyNTY1NzgzMywiZGlzdCI6NTIuNDk5fSwiMjA0OTY0NjY4LTQ0MzE4NTEzM18xNTI0OTU2MTUiOnsiaWQiOiIyMDQ5NjQ2NjgtNDQzMTg1MTMzXzE1MjQ5NTYxNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODUxMzMiLCJiIjoiMTUyNDk1NjE1IiwiaGVhZGluZyI6MTYuNzU4OTM1MDk2MDMwMzUzLCJkaXN0Ijo1Ni43Mjl9LCIyMDQ5NjQ2OTAtMTUyNjA4ODcyXzQ0MzE4NTE0MyI6eyJpZCI6IjIwNDk2NDY5MC0xNTI2MDg4NzJfNDQzMTg1MTQzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYwODg3MiIsImIiOiI0NDMxODUxNDMiLCJoZWFkaW5nIjotNzIuMzA1MDU3NDM1OTgzNDcsImRpc3QiOjY1LjY1MX0sIjIwNDk2NDY5MC00NDMxODUxNDNfMTUyNDgwMjA3Ijp7ImlkIjoiMjA0OTY0NjkwLTQ0MzE4NTE0M18xNTI0ODAyMDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTQzIiwiYiI6IjE1MjQ4MDIwNyIsImhlYWRpbmciOi03Mi4wMTk4NjI0NDcyNjI1NCwiZGlzdCI6NzEuODI2fSwiMjA0OTY0Njk0LTE1MjQ5NTYxOF8xNTI0NTE2MTgiOnsiaWQiOiIyMDQ5NjQ2OTQtMTUyNDk1NjE4XzE1MjQ1MTYxOCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjE4IiwiYiI6IjE1MjQ1MTYxOCIsImhlYWRpbmciOjEwNy45MDEwMjgxODU3Mjc2MywiZGlzdCI6MTA4LjE5Nn0sIjIwNDk2NDY5NC0xNTI0NTE2MThfMTUyNDk1NjE4Ijp7ImlkIjoiMjA0OTY0Njk0LTE1MjQ1MTYxOF8xNTI0OTU2MTgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ1MTYxOCIsImIiOiIxNTI0OTU2MTgiLCJoZWFkaW5nIjoyODcuOTAxMDI4MTg1NzI3NiwiZGlzdCI6MTA4LjE5Nn0sIjIwNDk2NDY5NC0xNTI0NTE2MThfMTUyNDk1NjIwIjp7ImlkIjoiMjA0OTY0Njk0LTE1MjQ1MTYxOF8xNTI0OTU2MjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ1MTYxOCIsImIiOiIxNTI0OTU2MjAiLCJoZWFkaW5nIjoxMDcuNjUwNTc4ODA0NTQ4NywiZGlzdCI6MTA2LjAyNX0sIjIwNDk2NDY5NC0xNTI0OTU2MjBfMTUyNDUxNjE4Ijp7ImlkIjoiMjA0OTY0Njk0LTE1MjQ5NTYyMF8xNTI0NTE2MTgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYyMCIsImIiOiIxNTI0NTE2MTgiLCJoZWFkaW5nIjoyODcuNjUwNTc4ODA0NTQ4NywiZGlzdCI6MTA2LjAyNX0sIjIwNDk2NDc1My0xNTI1MDA3MjJfMTUyNDUxNTQ3Ijp7ImlkIjoiMjA0OTY0NzUzLTE1MjUwMDcyMl8xNTI0NTE1NDciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTAwNzIyIiwiYiI6IjE1MjQ1MTU0NyIsImhlYWRpbmciOjE4Ljk1MjE2MzQ0MzQzMjc5LCJkaXN0IjoxMDYuNjYyfSwiMjA0OTY0NzUzLTE1MjQ1MTU0N18xNTI1MDA3MjIiOnsiaWQiOiIyMDQ5NjQ3NTMtMTUyNDUxNTQ3XzE1MjUwMDcyMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE1NDciLCJiIjoiMTUyNTAwNzIyIiwiaGVhZGluZyI6MTk4Ljk1MjE2MzQ0MzQzMjgsImRpc3QiOjEwNi42NjJ9LCIyMDQ5NjQ3NjQtMTUyNDk1NjE4XzE1MjUzOTY0OSI6eyJpZCI6IjIwNDk2NDc2NC0xNTI0OTU2MThfMTUyNTM5NjQ5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTU2MTgiLCJiIjoiMTUyNTM5NjQ5IiwiaGVhZGluZyI6MTYuNTYwNDc2ODAxOTM3NDQ4LCJkaXN0IjoxMjQuOTA3fSwiMjA0OTY0NzY0LTE1MjUzOTY0OV8xMDczNDAwOTYyIjp7ImlkIjoiMjA0OTY0NzY0LTE1MjUzOTY0OV8xMDczNDAwOTYyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NDkiLCJiIjoiMTA3MzQwMDk2MiIsImhlYWRpbmciOjE5Ljg4MjgzNTI1MjkyNjIyOCwiZGlzdCI6MTQuMTQ2fSwiMjA0OTY0NzY0LTEwNzM0MDA5NjJfMTUyNTM5NjUyIjp7ImlkIjoiMjA0OTY0NzY0LTEwNzM0MDA5NjJfMTUyNTM5NjUyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwOTYyIiwiYiI6IjE1MjUzOTY1MiIsImhlYWRpbmciOjE4LjQ5MjI1ODE3MjkxODksImRpc3QiOjEyNy40MTN9LCIyMDQ5NjQ3NjQtMTUyNTM5NjUyXzEwNzg5MTgwNzkiOnsiaWQiOiIyMDQ5NjQ3NjQtMTUyNTM5NjUyXzEwNzg5MTgwNzkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTY1MiIsImIiOiIxMDc4OTE4MDc5IiwiaGVhZGluZyI6MTYuNjgwOTQ1ODM3NjcwMzI1LCJkaXN0Ijo5Ny4yMTF9LCIyMDQ5NjQ3NjQtMTA3ODkxODA3OV8xNTI1Mzk2NTUiOnsiaWQiOiIyMDQ5NjQ3NjQtMTA3ODkxODA3OV8xNTI1Mzk2NTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzg5MTgwNzkiLCJiIjoiMTUyNTM5NjU1IiwiaGVhZGluZyI6MTguMDI5MjMwMDIwNjczMTI2LCJkaXN0Ijo5LjMyN30sIjIwNDk2NDc2NC0xNTI1Mzk2NTVfMTA3ODkxODg4MCI6eyJpZCI6IjIwNDk2NDc2NC0xNTI1Mzk2NTVfMTA3ODkxODg4MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTM5NjU1IiwiYiI6IjEwNzg5MTg4ODAiLCJoZWFkaW5nIjoxOC4zODcxODQ4NDg1MjEzNSwiZGlzdCI6NTQuOTA2fSwiMjA0OTY0NzY0LTEwNzg5MTg4ODBfMTUyNDM1ODk3Ijp7ImlkIjoiMjA0OTY0NzY0LTEwNzg5MTg4ODBfMTUyNDM1ODk3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4OTE4ODgwIiwiYiI6IjE1MjQzNTg5NyIsImhlYWRpbmciOjE4LjE1Mzg4NDcxMzAyMDMyLCJkaXN0Ijo1Mi40OTl9LCIyMDQ5NjQ3NjUtMTUyNDgwMjExXzE1MjQ1NjYxMyI6eyJpZCI6IjIwNDk2NDc2NS0xNTI0ODAyMTFfMTUyNDU2NjEzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ4MDIxMSIsImIiOiIxNTI0NTY2MTMiLCJoZWFkaW5nIjotNzIuOTU4MjI1MzM5MjQ0NTQsImRpc3QiOjEwOS42OTh9LCIyMDQ5NjQ3NjctMTUyNTAwNzIyXzE1MjM5MzQ3NSI6eyJpZCI6IjIwNDk2NDc2Ny0xNTI1MDA3MjJfMTUyMzkzNDc1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUwMDcyMiIsImIiOiIxNTIzOTM0NzUiLCJoZWFkaW5nIjotNzIuNjEwNTQ1MzQ4NjI3MjMsImRpc3QiOjEwMy44NjF9LCIyMDQ5NjQ3NjctMTUyMzkzNDc1XzE1MjUwMDcyMiI6eyJpZCI6IjIwNDk2NDc2Ny0xNTIzOTM0NzVfMTUyNTAwNzIyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ3NSIsImIiOiIxNTI1MDA3MjIiLCJoZWFkaW5nIjoxMDcuMzg5NDU0NjUxMzcyNzcsImRpc3QiOjEwMy44NjF9LCIyMDQ5NjQ3NjctMTUyMzkzNDc1XzMzMjIyOTM1NSI6eyJpZCI6IjIwNDk2NDc2Ny0xNTIzOTM0NzVfMzMyMjI5MzU1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjM5MzQ3NSIsImIiOiIzMzIyMjkzNTUiLCJoZWFkaW5nIjotNzEuNDcxOTI3OTcyNDE5NjYsImRpc3QiOjU1LjgxOH0sIjIwNDk2NDc2Ny0zMzIyMjkzNTVfMTUyMzkzNDc1Ijp7ImlkIjoiMjA0OTY0NzY3LTMzMjIyOTM1NV8xNTIzOTM0NzUiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMzMyMjI5MzU1IiwiYiI6IjE1MjM5MzQ3NSIsImhlYWRpbmciOjEwOC41MjgwNzIwMjc1ODAzNCwiZGlzdCI6NTUuODE4fSwiMjA0OTc0NzIzLTE1MjM5ODIxN180NDMxODIzMzUiOnsiaWQiOiIyMDQ5NzQ3MjMtMTUyMzk4MjE3XzQ0MzE4MjMzNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMTciLCJiIjoiNDQzMTgyMzM1IiwiaGVhZGluZyI6LTE2MS43MDI2MTQ4NzMxMzcxLCJkaXN0Ijo0OS4wMzl9LCIyMDQ5NzQ3MjMtNDQzMTgyMzM1XzE1MjUxMjgzOSI6eyJpZCI6IjIwNDk3NDcyMy00NDMxODIzMzVfMTUyNTEyODM5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjMzNSIsImIiOiIxNTI1MTI4MzkiLCJoZWFkaW5nIjotMTYwLjg1Mjg0ODA3NDYwODYsImRpc3QiOjU4LjY3NH0sIjIwNDk3NDcyMy0xNTI1MTI4MzlfNDQzMTgyMzM2Ijp7ImlkIjoiMjA0OTc0NzIzLTE1MjUxMjgzOV80NDMxODIzMzYiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNTEyODM5IiwiYiI6IjQ0MzE4MjMzNiIsImhlYWRpbmciOi0xNjEuNDYwMTk2MDQwNjI4NTUsImRpc3QiOjUxLjQ0N30sIjIwNDk3NDcyMy00NDMxODIzMzZfMTUyNjIwOTkyIjp7ImlkIjoiMjA0OTc0NzIzLTQ0MzE4MjMzNl8xNTI2MjA5OTIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzM2IiwiYiI6IjE1MjYyMDk5MiIsImhlYWRpbmciOi0xNjIuMzE0NDQ3OTU2MTQzODUsImRpc3QiOjU3LjAxNX0sIjIwNDk3NDcyMy0xNTI2MjA5OTJfMTUyNzIzNDAzIjp7ImlkIjoiMjA0OTc0NzIzLTE1MjYyMDk5Ml8xNTI3MjM0MDMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjIwOTkyIiwiYiI6IjE1MjcyMzQwMyIsImhlYWRpbmciOi0xNjIuMDg5MTQxMzY1NTg5ODUsImRpc3QiOjEwOS41MTN9LCIyMDQ5NzQ3MjMtMTUyNzIzNDAzXzQ0MzE4MjMzNyI6eyJpZCI6IjIwNDk3NDcyMy0xNTI3MjM0MDNfNDQzMTgyMzM3IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjcyMzQwMyIsImIiOiI0NDMxODIzMzciLCJoZWFkaW5nIjotMTYyLjQ4MTg3OTg1OTU1NTksImRpc3QiOjUxLjE0OX0sIjIwNDk3NDcyMy00NDMxODIzMzdfMTUyNDUxNTQxIjp7ImlkIjoiMjA0OTc0NzIzLTQ0MzE4MjMzN18xNTI0NTE1NDEiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTgyMzM3IiwiYiI6IjE1MjQ1MTU0MSIsImhlYWRpbmciOi0xNjEuNjExMjQwMzI4MDI4NCwiZGlzdCI6NTQuOTA2fSwiMjA0OTc0NzIzLTE1MjQ1MTU0MV80NDMxODIzMzgiOnsiaWQiOiIyMDQ5NzQ3MjMtMTUyNDUxNTQxXzQ0MzE4MjMzOCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NTE1NDEiLCJiIjoiNDQzMTgyMzM4IiwiaGVhZGluZyI6LTE2Mi41NjkyNDUzNDQ4MTUwNywiZGlzdCI6NTQuNjF9LCIyMDQ5NzQ3MjMtNDQzMTgyMzM4XzE1MjcyMzQwMiI6eyJpZCI6IjIwNDk3NDcyMy00NDMxODIzMzhfMTUyNzIzNDAyIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4MjMzOCIsImIiOiIxNTI3MjM0MDIiLCJoZWFkaW5nIjotMTYyLjU2OTE2NjE3NDg3OTA2LCJkaXN0Ijo1NC42MTF9LCIyMDQ5NzQ3MjMtMTUyNzIzNDAyXzE1MjUwMDcwOCI6eyJpZCI6IjIwNDk3NDcyMy0xNTI3MjM0MDJfMTUyNTAwNzA4IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjcyMzQwMiIsImIiOiIxNTI1MDA3MDgiLCJoZWFkaW5nIjoxODAsImRpc3QiOjIuMjE3fSwiMjA0OTc0NzIzLTE1MjUwMDcwOF8xNTI3MjM0MDAiOnsiaWQiOiIyMDQ5NzQ3MjMtMTUyNTAwNzA4XzE1MjcyMzQwMCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MDA3MDgiLCJiIjoiMTUyNzIzNDAwIiwiaGVhZGluZyI6LTE2MC44NTIxNjAxNDA4NDEzNiwiZGlzdCI6NS44Njd9LCIyMDQ5NzQ3MjMtMTUyNzIzNDAwXzE1MjQ0MjQxNCI6eyJpZCI6IjIwNDk3NDcyMy0xNTI3MjM0MDBfMTUyNDQyNDE0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjcyMzQwMCIsImIiOiIxNTI0NDI0MTQiLCJoZWFkaW5nIjotMTYxLjI2MTEzMjE2NzIzMzYzLCJkaXN0IjoxMDEuODQ0fSwiMjA0OTc0NzIzLTE1MjQ0MjQxNF8xNTI1MDk5NDkiOnsiaWQiOiIyMDQ5NzQ3MjMtMTUyNDQyNDE0XzE1MjUwOTk0OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDI0MTQiLCJiIjoiMTUyNTA5OTQ5IiwiaGVhZGluZyI6LTE2Mi4yMTM1NjIwOTgyMjg4LCJkaXN0IjoxMDcuMTA4fSwiMjA0OTc0NzkyLTE1MjQ4MDIwOV8xNTI0ODAyMTEiOnsiaWQiOiIyMDQ5NzQ3OTItMTUyNDgwMjA5XzE1MjQ4MDIxMSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0ODAyMDkiLCJiIjoiMTUyNDgwMjExIiwiaGVhZGluZyI6LTcxLjM3OTI3MTA2OTk2LCJkaXN0IjoxMDcuNjI5fSwiMjA0OTc0Nzk5LTE1MjM5ODIxN18xNTIzOTgyMTkiOnsiaWQiOiIyMDQ5NzQ3OTktMTUyMzk4MjE3XzE1MjM5ODIxOSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMTciLCJiIjoiMTUyMzk4MjE5IiwiaGVhZGluZyI6LTcxLjU0MTc4NjgyNzYxMzI4LCJkaXN0IjoxMDguNTQzfSwiMjA0OTc0ODAxLTE1MjM5ODIxOV8xNTIzOTgyMjIiOnsiaWQiOiIyMDQ5NzQ4MDEtMTUyMzk4MjE5XzE1MjM5ODIyMiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTIzOTgyMTkiLCJiIjoiMTUyMzk4MjIyIiwiaGVhZGluZyI6LTcyLjcwNDUzNDYzNDg3NTU3LCJkaXN0IjoxMTEuODY2fSwiMjA0OTc0ODA1LTE1MjUxNjE5N18yMTc3NzI0NjYxIjp7ImlkIjoiMjA0OTc0ODA1LTE1MjUxNjE5N18yMTc3NzI0NjYxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUxNjE5NyIsImIiOiIyMTc3NzI0NjYxIiwiaGVhZGluZyI6MTA3Ljc4Nzg1NTg3NDY2OTU3LCJkaXN0Ijo3OS44MzJ9LCIyMDQ5ODE1NTMtMTUyNTE2NjQyXzE1MjUxNjY0NCI6eyJpZCI6IjIwNDk4MTU1My0xNTI1MTY2NDJfMTUyNTE2NjQ0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NDIiLCJiIjoiMTUyNTE2NjQ0IiwiaGVhZGluZyI6MTA4LjE0MDY0Mjg3NDgxNTI3LCJkaXN0IjoxMTAuMzc0fSwiMjA0OTgxNTUzLTE1MjUxNjY0NF8xNTI0NTE2MDYiOnsiaWQiOiIyMDQ5ODE1NTMtMTUyNTE2NjQ0XzE1MjQ1MTYwNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQ0IiwiYiI6IjE1MjQ1MTYwNiIsImhlYWRpbmciOjEwNy4wNDAxMjg1NDMwOTUyNiwiZGlzdCI6MTA5LjcwNX0sIjIwNDk4MTU1NC0xNTI0MDE5MDVfMTUyNDAxOTAxIjp7ImlkIjoiMjA0OTgxNTU0LTE1MjQwMTkwNV8xNTI0MDE5MDEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMTkwNSIsImIiOiIxNTI0MDE5MDEiLCJoZWFkaW5nIjotNzEuMzgwMTgyNTU1MTYyNjksImRpc3QiOjEwNy42MzR9LCIyMDQ5ODE1NTQtMTUyNDAxOTAxXzE1MjQwMTg5OSI6eyJpZCI6IjIwNDk4MTU1NC0xNTI0MDE5MDFfMTUyNDAxODk5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDE5MDEiLCJiIjoiMTUyNDAxODk5IiwiaGVhZGluZyI6LTcxLjM4MDEyNzI2NTI2NzYyLCJkaXN0IjoxMDcuNjM0fSwiMjA0OTgxNTU0LTE1MjQwMTg5OV80NDMxODUxMzQiOnsiaWQiOiIyMDQ5ODE1NTQtMTUyNDAxODk5XzQ0MzE4NTEzNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAxODk5IiwiYiI6IjQ0MzE4NTEzNCIsImhlYWRpbmciOi03Mi4zMDU2OTU4MzgyMzA0NiwiZGlzdCI6NjUuNjUzfSwiMjA0OTgxNTU0LTQ0MzE4NTEzNF8xNTI0MDE4OTgiOnsiaWQiOiIyMDQ5ODE1NTQtNDQzMTg1MTM0XzE1MjQwMTg5OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg1MTM0IiwiYiI6IjE1MjQwMTg5OCIsImhlYWRpbmciOi03Mi4wMjA1MDk3NzMxNzkxOSwiZGlzdCI6NzEuODI4fSwiMjA0OTgxNTY4LTE1MjUxNjY0Ml80NDMxODcwMTUiOnsiaWQiOiIyMDQ5ODE1NjgtMTUyNTE2NjQyXzQ0MzE4NzAxNSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQyIiwiYiI6IjQ0MzE4NzAxNSIsImhlYWRpbmciOi0xNjIuODQ3OTE5NDY2MDQwMiwiZGlzdCI6NTIuMjA4fSwiMjA0OTgxNTY4LTQ0MzE4NzAxNV8xNTI0NDczNTYiOnsiaWQiOiIyMDQ5ODE1NjgtNDQzMTg3MDE1XzE1MjQ0NzM1NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDE1IiwiYiI6IjE1MjQ0NzM1NiIsImhlYWRpbmciOi0xNjIuMjEzODY4OTM1NjE1NDcsImRpc3QiOjUzLjU1NH0sIjIwNDk4MTU2OC0xNTI0NDczNTZfNDQzMTg3MDE3Ijp7ImlkIjoiMjA0OTgxNTY4LTE1MjQ0NzM1Nl80NDMxODcwMTciLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ0NzM1NiIsImIiOiI0NDMxODcwMTciLCJoZWFkaW5nIjotMTYwLjY2MzQxMzYwNTE2MzE2LCJkaXN0Ijo1NS4yMTh9LCIyMDQ5ODE1NjgtNDQzMTg3MDE3XzE1MjQ5Njk0NiI6eyJpZCI6IjIwNDk4MTU2OC00NDMxODcwMTdfMTUyNDk2OTQ2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwMTciLCJiIjoiMTUyNDk2OTQ2IiwiaGVhZGluZyI6LTE2MS45Njg5NjMwMTAxMDA3NywiZGlzdCI6NTUuOTZ9LCIyMDQ5ODE1NjgtMTUyNDk2OTQ2XzQ0MzE4NzAyMCI6eyJpZCI6IjIwNDk4MTU2OC0xNTI0OTY5NDZfNDQzMTg3MDIwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0OTY5NDYiLCJiIjoiNDQzMTg3MDIwIiwiaGVhZGluZyI6LTE2My44NjIxMzMyMDU3MDI2LCJkaXN0Ijo1MS45MzJ9LCIyMDQ5ODE1NjgtNDQzMTg3MDIwXzE1MjYyMTE3MyI6eyJpZCI6IjIwNDk4MTU2OC00NDMxODcwMjBfMTUyNjIxMTczIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcwMjAiLCJiIjoiMTUyNjIxMTczIiwiaGVhZGluZyI6LTE2Mi4zMTM2MzQyMTc0NzAxNCwiZGlzdCI6NTcuMDE1fSwiMjA0OTgxNTY4LTE1MjYyMTE3M180NDMxODcwMjMiOnsiaWQiOiIyMDQ5ODE1NjgtMTUyNjIxMTczXzQ0MzE4NzAyMyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNjIxMTczIiwiYiI6IjQ0MzE4NzAyMyIsImhlYWRpbmciOi0xNjQuNTE1MDc3MjUxMzEyOTYsImRpc3QiOjU0LjA2NX0sIjIwNDk4MTU2OC00NDMxODcwMjNfMTUyNDE0NzYzIjp7ImlkIjoiMjA0OTgxNTY4LTQ0MzE4NzAyM18xNTI0MTQ3NjMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NzAyMyIsImIiOiIxNTI0MTQ3NjMiLCJoZWFkaW5nIjotMTYxLjIzODQ5NTAwNDIzMzY0LCJkaXN0Ijo1My44NTZ9LCIyMDQ5ODE1NjktMTUyNDAxOTA1XzQ0MzE4Njk4OCI6eyJpZCI6IjIwNDk4MTU2OS0xNTI0MDE5MDVfNDQzMTg2OTg4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0MDE5MDUiLCJiIjoiNDQzMTg2OTg4IiwiaGVhZGluZyI6MTkuNTA4OTg0NDczNTE2MDQ0LCJkaXN0Ijo1Ny42Mjh9LCIyMDQ5ODE1NjktNDQzMTg2OTg4XzE1MjUzOTY0MCI6eyJpZCI6IjIwNDk4MTU2OS00NDMxODY5ODhfMTUyNTM5NjQwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODY5ODgiLCJiIjoiMTUyNTM5NjQwIiwiaGVhZGluZyI6MjAuMTI3NzI2NTM1MTYyMjkyLCJkaXN0Ijo1My4xM30sIjIwNDk4MTU2OS0xNTI1Mzk2NDBfNDQzMTg2OTkwIjp7ImlkIjoiMjA0OTgxNTY5LTE1MjUzOTY0MF80NDMxODY5OTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjUzOTY0MCIsImIiOiI0NDMxODY5OTAiLCJoZWFkaW5nIjoxNy43ODU2MjE5MjUzOTMwOCwiZGlzdCI6NTMuNTU0fSwiMjA0OTgxNTY5LTQ0MzE4Njk5MF8xNTI1Mzk2NDMiOnsiaWQiOiIyMDQ5ODE1NjktNDQzMTg2OTkwXzE1MjUzOTY0MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg2OTkwIiwiYiI6IjE1MjUzOTY0MyIsImhlYWRpbmciOjE3Ljc4NTU0MzA1ODYzNDE1LCJkaXN0Ijo1My41NTR9LCIyMDQ5ODE1NjktMTUyNTM5NjQzXzQ0MzE4Njk5MyI6eyJpZCI6IjIwNDk4MTU2OS0xNTI1Mzk2NDNfNDQzMTg2OTkzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NDMiLCJiIjoiNDQzMTg2OTkzIiwiaGVhZGluZyI6MTYuNzU5NDE1MjU0NDA1MzM3LCJkaXN0Ijo1Ni43M30sIjIwNDk4MTU2OS00NDMxODY5OTNfMTUyNDYwMjI4Ijp7ImlkIjoiMjA0OTgxNTY5LTQ0MzE4Njk5M18xNTI0NjAyMjgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4Njk5MyIsImIiOiIxNTI0NjAyMjgiLCJoZWFkaW5nIjoxNy4wODgzMzg4Mjc4MzYwMjYsImRpc3QiOjU1LjY2OX0sIjIwNDk4MTU2OS0xNTI0NjAyMjhfMTUyNTM5NjQ2Ijp7ImlkIjoiMjA0OTgxNTY5LTE1MjQ2MDIyOF8xNTI1Mzk2NDYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ2MDIyOCIsImIiOiIxNTI1Mzk2NDYiLCJoZWFkaW5nIjoxOC4wOTAzNjM2MTEwNTg5MTIsImRpc3QiOjEwOC40NTh9LCIyMDQ5ODE1NjktMTUyNTM5NjQ2XzQ0MzE4NTE0NCI6eyJpZCI6IjIwNDk4MTU2OS0xNTI1Mzk2NDZfNDQzMTg1MTQ0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NDYiLCJiIjoiNDQzMTg1MTQ0IiwiaGVhZGluZyI6MTcuNDI5ODcyMTQwNDk2MzI1LCJkaXN0Ijo1NC42MX0sIjIwNDk4MTU2OS00NDMxODUxNDRfMTUyNDk1NjE4Ijp7ImlkIjoiMjA0OTgxNTY5LTQ0MzE4NTE0NF8xNTI0OTU2MTgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NTE0NCIsImIiOiIxNTI0OTU2MTgiLCJoZWFkaW5nIjoxOC4zODc4MzQzMDA2NjQyNSwiZGlzdCI6NTQuOTA2fSwiMjA0OTg5NzMwLTE1MjU2NjMxN18xNTI0NTE2MTUiOnsiaWQiOiIyMDQ5ODk3MzAtMTUyNTY2MzE3XzE1MjQ1MTYxNSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1NjYzMTciLCJiIjoiMTUyNDUxNjE1IiwiaGVhZGluZyI6LTcyLjQwNjY3MDk5MjYxOTk0LCJkaXN0IjoxMTAuMDN9LCIyMDQ5ODk3MzAtMTUyNDUxNjE1XzE1MjUzOTY0NiI6eyJpZCI6IjIwNDk4OTczMC0xNTI0NTE2MTVfMTUyNTM5NjQ2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ1MTYxNSIsImIiOiIxNTI1Mzk2NDYiLCJoZWFkaW5nIjotNzEuNzc5OTYyNDgyNTIxNzQsImRpc3QiOjEwNi4zNjd9LCIyMDQ5ODk3MzAtMTUyNTM5NjQ2XzE1MjYwODg3NCI6eyJpZCI6IjIwNDk4OTczMC0xNTI1Mzk2NDZfMTUyNjA4ODc0IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjUzOTY0NiIsImIiOiIxNTI2MDg4NzQiLCJoZWFkaW5nIjotNzIuODA5OTczNjkzNDAxOTksImRpc3QiOjEwOC43OH0sIjIwNDk4OTczMC0xNTI2MDg4NzRfMTUyNjA4ODcyIjp7ImlkIjoiMjA0OTg5NzMwLTE1MjYwODg3NF8xNTI2MDg4NzIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiMTUyNjA4ODc0IiwiYiI6IjE1MjYwODg3MiIsImhlYWRpbmciOi03MS44NTc5MzkxMjgyNTY2MywiZGlzdCI6MTEwLjM2OX0sIjIwNDk4OTczMS0xNTI0OTU2MjBfMTUyNDk1NjIyIjp7ImlkIjoiMjA0OTg5NzMxLTE1MjQ5NTYyMF8xNTI0OTU2MjIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYyMCIsImIiOiIxNTI0OTU2MjIiLCJoZWFkaW5nIjoxMTIuOTk4ODcxODgyOTM1OTIsImRpc3QiOjE5Ljg2MX0sIjIwNDk4OTczMS0xNTI0OTU2MjJfMTUyNDk1NjIwIjp7ImlkIjoiMjA0OTg5NzMxLTE1MjQ5NTYyMl8xNTI0OTU2MjAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYyMiIsImIiOiIxNTI0OTU2MjAiLCJoZWFkaW5nIjoyOTIuOTk4ODcxODgyOTM1OTMsImRpc3QiOjE5Ljg2MX0sIjIwNDk4OTczMi0xMDczNDAwODMwXzI2Mzc2NzYxNDMiOnsiaWQiOiIyMDQ5ODk3MzItMTA3MzQwMDgzMF8yNjM3Njc2MTQzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwODMwIiwiYiI6IjI2Mzc2NzYxNDMiLCJoZWFkaW5nIjoxMDkuMDY2NjM2MTQ0MjQ3MTQsImRpc3QiOjEwLjE4MX0sIjIwNDk4OTczMi0yNjM3Njc2MTQzXzEwNzM0MDA4MzIiOnsiaWQiOiIyMDQ5ODk3MzItMjYzNzY3NjE0M18xMDczNDAwODMyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQzIiwiYiI6IjEwNzM0MDA4MzIiLCJoZWFkaW5nIjoxMTMuMzY2MDc3MjA0MjY4NDIsImRpc3QiOjE2Ljc3MX0sIjIwNDk4OTczMi0xMDczNDAwODMyXzEwNzg4MDY0MTYiOnsiaWQiOiIyMDQ5ODk3MzItMTA3MzQwMDgzMl8xMDc4ODA2NDE2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwODMyIiwiYiI6IjEwNzg4MDY0MTYiLCJoZWFkaW5nIjoxMDQuODg4Njg3MzQ5ODI3MzksImRpc3QiOjEyLjk0M30sIjIwNDk4OTczMi0xMDc4ODA2NDE2XzEwNzM0MDA4MzciOnsiaWQiOiIyMDQ5ODk3MzItMTA3ODgwNjQxNl8xMDczNDAwODM3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc4ODA2NDE2IiwiYiI6IjEwNzM0MDA4MzciLCJoZWFkaW5nIjoxMDYuOTEwNDIwMjE0OTEyODksImRpc3QiOjcyLjQxMX0sIjIwNDk4OTczMi0xMDczNDAwODM3XzEwNzM0MDA4NDkiOnsiaWQiOiIyMDQ5ODk3MzItMTA3MzQwMDgzN18xMDczNDAwODQ5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwODM3IiwiYiI6IjEwNzM0MDA4NDkiLCJoZWFkaW5nIjoxMDguNzk4MDI1MDYyNzAwMzYsImRpc3QiOjQ0LjcyM30sIjIwNDk4OTczMi0xMDczNDAwODQ5XzE2NTI0ODYwNTMiOnsiaWQiOiIyMDQ5ODk3MzItMTA3MzQwMDg0OV8xNjUyNDg2MDUzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwODQ5IiwiYiI6IjE2NTI0ODYwNTMiLCJoZWFkaW5nIjo5Ni41NzIwMDg0MzU4MzIsImRpc3QiOjkuNjg2fSwiMjA0OTg5NzMyLTE2NTI0ODYwNTNfMTY1MjQ4NjA1MiI6eyJpZCI6IjIwNDk4OTczMi0xNjUyNDg2MDUzXzE2NTI0ODYwNTIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2NTI0ODYwNTMiLCJiIjoiMTY1MjQ4NjA1MiIsImhlYWRpbmciOjEwMC44NjkzNTMyNzU3NjgwOCwiZGlzdCI6MTEuNzU4fSwiMjA0OTg5NzMyLTE2NTI0ODYwNTJfMTA3MzQwMDg1NCI6eyJpZCI6IjIwNDk4OTczMi0xNjUyNDg2MDUyXzEwNzM0MDA4NTQiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2NTI0ODYwNTIiLCJiIjoiMTA3MzQwMDg1NCIsImhlYWRpbmciOjg5Ljk5OTk3MjI3NTI2NTcyLCJkaXN0IjoxMC41ODR9LCIyMDQ5ODk3MzMtMTA3MzQwMDkzOF8yNjM3Njc2MTQ2Ijp7ImlkIjoiMjA0OTg5NzMzLTEwNzM0MDA5MzhfMjYzNzY3NjE0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3MzQwMDkzOCIsImIiOiIyNjM3Njc2MTQ2IiwiaGVhZGluZyI6LTcwLjQ4MDkzOTMwMzY2Mjk0LCJkaXN0IjoxMy4yNzJ9LCIyMDQ5ODk3MzMtMjYzNzY3NjE0Nl8xMDczNDAwOTUyIjp7ImlkIjoiMjA0OTg5NzMzLTI2Mzc2NzYxNDZfMTA3MzQwMDk1MiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE0NiIsImIiOiIxMDczNDAwOTUyIiwiaGVhZGluZyI6LTcyLjI1Mzc3OTQxMzA4NjM5LCJkaXN0IjozNi4zN30sIjIwNDk4OTczNC0xNTI1NjcwOTlfMTQyMTEzNDk4MyI6eyJpZCI6IjIwNDk4OTczNC0xNTI1NjcwOTlfMTQyMTEzNDk4MyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY3MDk5IiwiYiI6IjE0MjExMzQ5ODMiLCJoZWFkaW5nIjoxMDQuODg5ODMwODgyNDc5NDYsImRpc3QiOjEyLjk0Mn0sIjIwNDk4OTczNC0xNDIxMTM0OTgzXzE1MjU2NzA5OSI6eyJpZCI6IjIwNDk4OTczNC0xNDIxMTM0OTgzXzE1MjU2NzA5OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTQyMTEzNDk4MyIsImIiOiIxNTI1NjcwOTkiLCJoZWFkaW5nIjoyODQuODg5ODMwODgyNDc5NSwiZGlzdCI6MTIuOTQyfSwiMjA0OTg5NzM0LTE0MjExMzQ5ODNfNDQyNzYxNTYzIjp7ImlkIjoiMjA0OTg5NzM0LTE0MjExMzQ5ODNfNDQyNzYxNTYzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0OTgzIiwiYiI6IjQ0Mjc2MTU2MyIsImhlYWRpbmciOjExNC43NDM4MjM1NDg0NjE2MywiZGlzdCI6NS4yOTd9LCIyMDQ5ODk3MzQtNDQyNzYxNTYzXzE0MjExMzQ5ODMiOnsiaWQiOiIyMDQ5ODk3MzQtNDQyNzYxNTYzXzE0MjExMzQ5ODMiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0Mjc2MTU2MyIsImIiOiIxNDIxMTM0OTgzIiwiaGVhZGluZyI6Mjk0Ljc0MzgyMzU0ODQ2MTY1LCJkaXN0Ijo1LjI5N30sIjIwNDk4OTc1Ny0xMDczNDAwOTM4XzEwNzg4MDY2MTMiOnsiaWQiOiIyMDQ5ODk3NTctMTA3MzQwMDkzOF8xMDc4ODA2NjEzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwOTM4IiwiYiI6IjEwNzg4MDY2MTMiLCJoZWFkaW5nIjoxMy45MjgwMjc1OTY0NDkyNTUsImRpc3QiOjcuOTk1fSwiMjA0OTg5NzU3LTEwNzg4MDY2MTNfMTA3MzQwMDkzOCI6eyJpZCI6IjIwNDk4OTc1Ny0xMDc4ODA2NjEzXzEwNzM0MDA5MzgiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzg4MDY2MTMiLCJiIjoiMTA3MzQwMDkzOCIsImhlYWRpbmciOjE5My45MjgwMjc1OTY0NDkyNSwiZGlzdCI6Ny45OTV9LCIyMDQ5ODk3NTctMTA3ODgwNjYxM18yNjM3Njc2MTQ3Ijp7ImlkIjoiMjA0OTg5NzU3LTEwNzg4MDY2MTNfMjYzNzY3NjE0NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA3ODgwNjYxMyIsImIiOiIyNjM3Njc2MTQ3IiwiaGVhZGluZyI6MTcuNzMzMzA1MTU2ODU5MjQsImRpc3QiOjIyLjExNH0sIjIwNDk4OTc1Ny0yNjM3Njc2MTQ3XzEwNzg4MDY2MTMiOnsiaWQiOiIyMDQ5ODk3NTctMjYzNzY3NjE0N18xMDc4ODA2NjEzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ3IiwiYiI6IjEwNzg4MDY2MTMiLCJoZWFkaW5nIjoxOTcuNzMzMzA1MTU2ODU5MjUsImRpc3QiOjIyLjExNH0sIjIwNDk4OTc1Ny0yNjM3Njc2MTQ3XzI2Mzc2NzYxNDgiOnsiaWQiOiIyMDQ5ODk3NTctMjYzNzY3NjE0N18yNjM3Njc2MTQ4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ3IiwiYiI6IjI2Mzc2NzYxNDgiLCJoZWFkaW5nIjo4LjIzMTQ2NDU4MzM4NDM1LCJkaXN0IjoxMy40NDF9LCIyMDQ5ODk3NTctMjYzNzY3NjE0OF8yNjM3Njc2MTQ3Ijp7ImlkIjoiMjA0OTg5NzU3LTI2Mzc2NzYxNDhfMjYzNzY3NjE0NyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE0OCIsImIiOiIyNjM3Njc2MTQ3IiwiaGVhZGluZyI6MTg4LjIzMTQ2NDU4MzM4NDM0LCJkaXN0IjoxMy40NDF9LCIyMDQ5ODk3NTctMjYzNzY3NjE0OF8xNTI1NjYzMjkiOnsiaWQiOiIyMDQ5ODk3NTctMjYzNzY3NjE0OF8xNTI1NjYzMjkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjI2Mzc2NzYxNDgiLCJiIjoiMTUyNTY2MzI5IiwiaGVhZGluZyI6Ni4xOTIxOTk2ODMzOTUzMjQsImRpc3QiOjguOTIxfSwiMjA0OTg5NzU3LTE1MjU2NjMyOV8yNjM3Njc2MTQ4Ijp7ImlkIjoiMjA0OTg5NzU3LTE1MjU2NjMyOV8yNjM3Njc2MTQ4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMjkiLCJiIjoiMjYzNzY3NjE0OCIsImhlYWRpbmciOjE4Ni4xOTIxOTk2ODMzOTUzMywiZGlzdCI6OC45MjF9LCIyMDQ5ODk3NTctMTUyNTY2MzI5XzEwNzc1OTk1NzAiOnsiaWQiOiIyMDQ5ODk3NTctMTUyNTY2MzI5XzEwNzc1OTk1NzAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMyOSIsImIiOiIxMDc3NTk5NTcwIiwiaGVhZGluZyI6MCwiZGlzdCI6MTEuMDg2fSwiMjA0OTg5NzU3LTEwNzc1OTk1NzBfMTUyNTY2MzI5Ijp7ImlkIjoiMjA0OTg5NzU3LTEwNzc1OTk1NzBfMTUyNTY2MzI5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDc3NTk5NTcwIiwiYiI6IjE1MjU2NjMyOSIsImhlYWRpbmciOjE4MCwiZGlzdCI6MTEuMDg2fSwiMjA0OTg5NzU3LTEwNzc1OTk1NzBfMjYzNzY3NjE0OSI6eyJpZCI6IjIwNDk4OTc1Ny0xMDc3NTk5NTcwXzI2Mzc2NzYxNDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzc1OTk1NzAiLCJiIjoiMjYzNzY3NjE0OSIsImhlYWRpbmciOi0yLjYxNTYxNDIzMDYxNjAxMDYsImRpc3QiOjIxLjA4NX0sIjIwNDk4OTc1Ny0yNjM3Njc2MTQ5XzEwNzc1OTk1NzAiOnsiaWQiOiIyMDQ5ODk3NTctMjYzNzY3NjE0OV8xMDc3NTk5NTcwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIyNjM3Njc2MTQ5IiwiYiI6IjEwNzc1OTk1NzAiLCJoZWFkaW5nIjoxNzcuMzg0Mzg1NzY5MzgzOTgsImRpc3QiOjIxLjA4NX0sIjIwNDk4OTc1Ny0yNjM3Njc2MTQ5XzE1MjU2NjMzMSI6eyJpZCI6IjIwNDk4OTc1Ny0yNjM3Njc2MTQ5XzE1MjU2NjMzMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE0OSIsImIiOiIxNTI1NjYzMzEiLCJoZWFkaW5nIjotNy42MDU5MzE1NDIxNTM3NzUsImRpc3QiOjQzLjYxOH0sIjIwNDk4OTc1Ny0xNTI1NjYzMzFfMjYzNzY3NjE0OSI6eyJpZCI6IjIwNDk4OTc1Ny0xNTI1NjYzMzFfMjYzNzY3NjE0OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzMxIiwiYiI6IjI2Mzc2NzYxNDkiLCJoZWFkaW5nIjoxNzIuMzk0MDY4NDU3ODQ2MjMsImRpc3QiOjQzLjYxOH0sIjIwNDk4OTc1Ny0xNTI1NjYzMzFfMzAwNzY1MDA5Ijp7ImlkIjoiMjA0OTg5NzU3LTE1MjU2NjMzMV8zMDA3NjUwMDkiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMzMSIsImIiOiIzMDA3NjUwMDkiLCJoZWFkaW5nIjotMTAuMDk1NDA2OTAzMzE1NTMsImRpc3QiOjQzLjkxNH0sIjIwNDk4OTc1Ny0zMDA3NjUwMDlfMTUyNTY2MzMxIjp7ImlkIjoiMjA0OTg5NzU3LTMwMDc2NTAwOV8xNTI1NjYzMzEiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjMwMDc2NTAwOSIsImIiOiIxNTI1NjYzMzEiLCJoZWFkaW5nIjoxNjkuOTA0NTkzMDk2Njg0NDcsImRpc3QiOjQzLjkxNH0sIjIwNDk4OTc1Ny0zMDA3NjUwMDlfMTA4NTgwMjU1OSI6eyJpZCI6IjIwNDk4OTc1Ny0zMDA3NjUwMDlfMTA4NTgwMjU1OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMzAwNzY1MDA5IiwiYiI6IjEwODU4MDI1NTkiLCJoZWFkaW5nIjotOS44NDgwMDk4Njk0Mjk5MDcsImRpc3QiOjE2Ljg3N30sIjIwNDk4OTc1Ny0xMDg1ODAyNTU5XzMwMDc2NTAwOSI6eyJpZCI6IjIwNDk4OTc1Ny0xMDg1ODAyNTU5XzMwMDc2NTAwOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA4NTgwMjU1OSIsImIiOiIzMDA3NjUwMDkiLCJoZWFkaW5nIjoxNzAuMTUxOTkwMTMwNTcwMDgsImRpc3QiOjE2Ljg3N30sIjIwNDk4OTc1Ny0xMDg1ODAyNTU5XzEwODU4MDI1NDUiOnsiaWQiOiIyMDQ5ODk3NTctMTA4NTgwMjU1OV8xMDg1ODAyNTQ1IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDg1ODAyNTU5IiwiYiI6IjEwODU4MDI1NDUiLCJoZWFkaW5nIjotNy40MTc4NzE3ODA0MTA5ODgsImRpc3QiOjIyLjM1OX0sIjIwNDk4OTc1Ny0xMDg1ODAyNTQ1XzEwODU4MDI1NTkiOnsiaWQiOiIyMDQ5ODk3NTctMTA4NTgwMjU0NV8xMDg1ODAyNTU5IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDg1ODAyNTQ1IiwiYiI6IjEwODU4MDI1NTkiLCJoZWFkaW5nIjoxNzIuNTgyMTI4MjE5NTg5LCJkaXN0IjoyMi4zNTl9LCIyMDQ5ODk3NTctMTA4NTgwMjU0NV8xMDg1ODAyNTQ2Ijp7ImlkIjoiMjA0OTg5NzU3LTEwODU4MDI1NDVfMTA4NTgwMjU0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA4NTgwMjU0NSIsImIiOiIxMDg1ODAyNTQ2IiwiaGVhZGluZyI6LTkuMzg3NTY4MzU2NTMyODA1LCJkaXN0IjoyMy41OTZ9LCIyMDQ5ODk3NTctMTA4NTgwMjU0Nl8xMDg1ODAyNTQ1Ijp7ImlkIjoiMjA0OTg5NzU3LTEwODU4MDI1NDZfMTA4NTgwMjU0NSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA4NTgwMjU0NiIsImIiOiIxMDg1ODAyNTQ1IiwiaGVhZGluZyI6MTcwLjYxMjQzMTY0MzQ2NzIsImRpc3QiOjIzLjU5Nn0sIjIwNDk4OTc1Ny0xMDg1ODAyNTQ2XzE1MjU2NjMzNCI6eyJpZCI6IjIwNDk4OTc1Ny0xMDg1ODAyNTQ2XzE1MjU2NjMzNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTA4NTgwMjU0NiIsImIiOiIxNTI1NjYzMzQiLCJoZWFkaW5nIjotMi4yNTkzMDIwOTI3ODQ2MTM3LCJkaXN0IjoyNC40MDh9LCIyMDQ5ODk3NTctMTUyNTY2MzM0XzEwODU4MDI1NDYiOnsiaWQiOiIyMDQ5ODk3NTctMTUyNTY2MzM0XzEwODU4MDI1NDYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMzNCIsImIiOiIxMDg1ODAyNTQ2IiwiaGVhZGluZyI6MTc3Ljc0MDY5NzkwNzIxNTM4LCJkaXN0IjoyNC40MDh9LCIyMDQ5ODk3NTctMTUyNTY2MzM0XzI2Mzc2NzYxNTAiOnsiaWQiOiIyMDQ5ODk3NTctMTUyNTY2MzM0XzI2Mzc2NzYxNTAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU2NjMzNCIsImIiOiIyNjM3Njc2MTUwIiwiaGVhZGluZyI6My41NDc2MjczOTUyNTg4OTU3LCJkaXN0IjoxNS41NX0sIjIwNDk4OTc1Ny0yNjM3Njc2MTUwXzE1MjU2NjMzNCI6eyJpZCI6IjIwNDk4OTc1Ny0yNjM3Njc2MTUwXzE1MjU2NjMzNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE1MCIsImIiOiIxNTI1NjYzMzQiLCJoZWFkaW5nIjoxODMuNTQ3NjI3Mzk1MjU4OSwiZGlzdCI6MTUuNTV9LCIyMDQ5ODk3NTctMjYzNzY3NjE1MF8xMDczNDAzNzkwIjp7ImlkIjoiMjA0OTg5NzU3LTI2Mzc2NzYxNTBfMTA3MzQwMzc5MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjYzNzY3NjE1MCIsImIiOiIxMDczNDAzNzkwIiwiaGVhZGluZyI6MTAuNTM2MDk4OTgwNzcxOTksImRpc3QiOjE1Ljc4Nn0sIjIwNDk4OTc1Ny0xMDczNDAzNzkwXzI2Mzc2NzYxNTAiOnsiaWQiOiIyMDQ5ODk3NTctMTA3MzQwMzc5MF8yNjM3Njc2MTUwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAzNzkwIiwiYiI6IjI2Mzc2NzYxNTAiLCJoZWFkaW5nIjoxOTAuNTM2MDk4OTgwNzcxOTgsImRpc3QiOjE1Ljc4Nn0sIjIwNDk4OTc1Ny0xMDczNDAzNzkwXzE0MjExMzQ3MjIiOnsiaWQiOiIyMDQ5ODk3NTctMTA3MzQwMzc5MF8xNDIxMTM0NzIyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAzNzkwIiwiYiI6IjE0MjExMzQ3MjIiLCJoZWFkaW5nIjoxNC41OTQ5NjE1NDc0MjAxNTksImRpc3QiOjIyLjkxMX0sIjIwNDk4OTc1Ny0xNDIxMTM0NzIyXzEwNzM0MDM3OTAiOnsiaWQiOiIyMDQ5ODk3NTctMTQyMTEzNDcyMl8xMDczNDAzNzkwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzIyIiwiYiI6IjEwNzM0MDM3OTAiLCJoZWFkaW5nIjoxOTQuNTk0OTYxNTQ3NDIwMTYsImRpc3QiOjIyLjkxMX0sIjIwNDk4OTc1Ny0xNDIxMTM0NzIyXzEwNzM0MDM3ODYiOnsiaWQiOiIyMDQ5ODk3NTctMTQyMTEzNDcyMl8xMDczNDAzNzg2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzIyIiwiYiI6IjEwNzM0MDM3ODYiLCJoZWFkaW5nIjoxOC43NTkyMjYzMTk5MjA2OTMsImRpc3QiOjI2LjkyOH0sIjIwNDk4OTc1Ny0xMDczNDAzNzg2XzE0MjExMzQ3MjIiOnsiaWQiOiIyMDQ5ODk3NTctMTA3MzQwMzc4Nl8xNDIxMTM0NzIyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAzNzg2IiwiYiI6IjE0MjExMzQ3MjIiLCJoZWFkaW5nIjoxOTguNzU5MjI2MzE5OTIwNjksImRpc3QiOjI2LjkyOH0sIjIwNDk4OTc1Ny0xMDczNDAzNzg2XzE0MjExMzQ3MjYiOnsiaWQiOiIyMDQ5ODk3NTctMTA3MzQwMzc4Nl8xNDIxMTM0NzI2IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAzNzg2IiwiYiI6IjE0MjExMzQ3MjYiLCJoZWFkaW5nIjoyNi44NTMzMzkwNjM0ODkwNSwiZGlzdCI6MTQuOTExfSwiMjA0OTg5NzU3LTE0MjExMzQ3MjZfMTA3MzQwMzc4NiI6eyJpZCI6IjIwNDk4OTc1Ny0xNDIxMTM0NzI2XzEwNzM0MDM3ODYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE0MjExMzQ3MjYiLCJiIjoiMTA3MzQwMzc4NiIsImhlYWRpbmciOjIwNi44NTMzMzkwNjM0ODkwNSwiZGlzdCI6MTQuOTExfSwiMjA0OTg5NzU3LTE0MjExMzQ3MjZfMTUyNDM1OTAyIjp7ImlkIjoiMjA0OTg5NzU3LTE0MjExMzQ3MjZfMTUyNDM1OTAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNDIxMTM0NzI2IiwiYiI6IjE1MjQzNTkwMiIsImhlYWRpbmciOjMwLjA1NTE1MDUxMTIwOTg3LCJkaXN0Ijo3LjY4NX0sIjIwNDk4OTc1Ny0xNTI0MzU5MDJfMTQyMTEzNDcyNiI6eyJpZCI6IjIwNDk4OTc1Ny0xNTI0MzU5MDJfMTQyMTEzNDcyNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDM1OTAyIiwiYiI6IjE0MjExMzQ3MjYiLCJoZWFkaW5nIjoyMTAuMDU1MTUwNTExMjA5ODYsImRpc3QiOjcuNjg1fSwiMjA0OTg5NzU4LTE1MjQ5NTYyMF8xNTI1NjYzMTkiOnsiaWQiOiIyMDQ5ODk3NTgtMTUyNDk1NjIwXzE1MjU2NjMxOSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjIwIiwiYiI6IjE1MjU2NjMxOSIsImhlYWRpbmciOjE2Ljc5OTU0MzE2NjcxNTUyMywiZGlzdCI6MjYuNjM0fSwiMjA0OTg5NzU4LTE1MjU2NjMxOV8xNTI0OTU2MjAiOnsiaWQiOiIyMDQ5ODk3NTgtMTUyNTY2MzE5XzE1MjQ5NTYyMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE5IiwiYiI6IjE1MjQ5NTYyMCIsImhlYWRpbmciOjE5Ni43OTk1NDMxNjY3MTU1MiwiZGlzdCI6MjYuNjM0fSwiMjA0OTg5NzU5LTE1MjU2NjMxN18xNTI0OTU2MjAiOnsiaWQiOiIyMDQ5ODk3NTktMTUyNTY2MzE3XzE1MjQ5NTYyMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE3IiwiYiI6IjE1MjQ5NTYyMCIsImhlYWRpbmciOjE2Ljc3ODcxNDYwNjQ5NDczLCJkaXN0IjoxMDkuOTk3fSwiMjA0OTg5NzU5LTE1MjQ5NTYyMF8xNTI1NjYzMTciOnsiaWQiOiIyMDQ5ODk3NTktMTUyNDk1NjIwXzE1MjU2NjMxNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjIwIiwiYiI6IjE1MjU2NjMxNyIsImhlYWRpbmciOjE5Ni43Nzg3MTQ2MDY0OTQ3MywiZGlzdCI6MTA5Ljk5N30sIjIwNDk4OTc2MC0xMDczNDAwODMwXzEwNzM0MDA5MzgiOnsiaWQiOiIyMDQ5ODk3NjAtMTA3MzQwMDgzMF8xMDczNDAwOTM4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxMDczNDAwODMwIiwiYiI6IjEwNzM0MDA5MzgiLCJoZWFkaW5nIjoxNy41MTcyMTYwOTIyMDIxNywiZGlzdCI6MTIuNzg3fSwiMjA0OTg5NzYwLTEwNzM0MDA5MzhfMTA3MzQwMDgzMCI6eyJpZCI6IjIwNDk4OTc2MC0xMDczNDAwOTM4XzEwNzM0MDA4MzAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjEwNzM0MDA5MzgiLCJiIjoiMTA3MzQwMDgzMCIsImhlYWRpbmciOjE5Ny41MTcyMTYwOTIyMDIxOCwiZGlzdCI6MTIuNzg3fSwiMjA0OTg5Nzc0LTE2MjY1NTkzNDJfMTYyNjU1OTM0NiI6eyJpZCI6IjIwNDk4OTc3NC0xNjI2NTU5MzQyXzE2MjY1NTkzNDYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE2MjY1NTkzNDIiLCJiIjoiMTYyNjU1OTM0NiIsImhlYWRpbmciOjEwOC40OTQyOTU1NzEyNjQ4NCwiZGlzdCI6NjIuOTA1fSwiMjA0OTg5Nzc1LTE1MjQ1NjYxOF8xNTI1ODM0MDIiOnsiaWQiOiIyMDQ5ODk3NzUtMTUyNDU2NjE4XzE1MjU4MzQwMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDU2NjE4IiwiYiI6IjE1MjU4MzQwMiIsImhlYWRpbmciOi03Mi4zNDgyNTY0NTM2NjA3NywiZGlzdCI6MTA2LjAyMn0sIjIwNDk4OTc3NS0xNTI1ODM0MDJfMTUyMzkzNDk2Ijp7ImlkIjoiMjA0OTg5Nzc1LTE1MjU4MzQwMl8xNTIzOTM0OTYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjU4MzQwMiIsImIiOiIxNTIzOTM0OTYiLCJoZWFkaW5nIjotNzEuODU3MjI3MzM3MDYwMTgsImRpc3QiOjExMC4zNjV9LCIyMDQ5ODk3NzUtMTUyMzkzNDk2XzE1MjYzNjg4MiI6eyJpZCI6IjIwNDk4OTc3NS0xNTIzOTM0OTZfMTUyNjM2ODgyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTIzOTM0OTYiLCJiIjoiMTUyNjM2ODgyIiwiaGVhZGluZyI6LTcxLjkzOTc3MTY4MDUzNTY0LCJkaXN0IjoxMDcuMjc3fSwiMjA0OTk4NjY4LTE1MjUxNjY0MF80NDMxODY5NTciOnsiaWQiOiIyMDQ5OTg2NjgtMTUyNTE2NjQwXzQ0MzE4Njk1NyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI1MTY2NDAiLCJiIjoiNDQzMTg2OTU3IiwiaGVhZGluZyI6MTkuNzI0NDA0MTY0NDEwMTMsImRpc3QiOjU0LjE3M30sIjIwNDk5ODY2OC00NDMxODY5NTdfMjE3Nzc5MDIzNyI6eyJpZCI6IjIwNDk5ODY2OC00NDMxODY5NTdfMjE3Nzc5MDIzNyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiI0NDMxODY5NTciLCJiIjoiMjE3Nzc5MDIzNyIsImhlYWRpbmciOjE5LjE0NzQ4ODE3ODk3MjgxLCJkaXN0IjoyOS4zMzd9LCIyMDQ5OTg2NjktMTUyNjIwNTY5XzE1MjU4MDk4NSI6eyJpZCI6IjIwNDk5ODY2OS0xNTI2MjA1NjlfMTUyNTgwOTg1IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjYyMDU2OSIsImIiOiIxNTI1ODA5ODUiLCJoZWFkaW5nIjoxNy4xMTg5MjczMDUzMjEwNDgsImRpc3QiOjEwNy44NzZ9LCIyMDQ5OTg2NjktMTUyNTgwOTg1XzQ0MzE4Njk2MyI6eyJpZCI6IjIwNDk5ODY2OS0xNTI1ODA5ODVfNDQzMTg2OTYzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjU4MDk4NSIsImIiOiI0NDMxODY5NjMiLCJoZWFkaW5nIjoxOC4zODgxNDQ4ODEyMjI5NTYsImRpc3QiOjU0LjkwNn0sIjIwNDk5ODY2OS00NDMxODY5NjNfMTUyNDYwMjIzIjp7ImlkIjoiMjA0OTk4NjY5LTQ0MzE4Njk2M18xNTI0NjAyMjMiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg2OTYzIiwiYiI6IjE1MjQ2MDIyMyIsImhlYWRpbmciOjE4LjM4ODA2MTk0Mzc4MTU4MywiZGlzdCI6NTQuOTA2fSwiMjA0OTk4NjY5LTE1MjQ2MDIyM180NDMxODY5NjYiOnsiaWQiOiIyMDQ5OTg2NjktMTUyNDYwMjIzXzQ0MzE4Njk2NiIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NjAyMjMiLCJiIjoiNDQzMTg2OTY2IiwiaGVhZGluZyI6MTcuMTUxMjU1NzU1MzEzMTEsImRpc3QiOjUyLjIwN30sIjIwNDk5ODY2OS00NDMxODY5NjZfMTUyNjA4ODcyIjp7ImlkIjoiMjA0OTk4NjY5LTQ0MzE4Njk2Nl8xNTI2MDg4NzIiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg2OTY2IiwiYiI6IjE1MjYwODg3MiIsImhlYWRpbmciOjE3LjM1Mjc2MjMxMTQ4NjA0NiwiZGlzdCI6NTguMDcyfSwiMjA0OTk4NjcyLTE1MjQ5NTYxNV8xNTI0OTU2MTciOnsiaWQiOiIyMDQ5OTg2NzItMTUyNDk1NjE1XzE1MjQ5NTYxNyIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDk1NjE1IiwiYiI6IjE1MjQ5NTYxNyIsImhlYWRpbmciOjEwNy41OTMwOTIwNzE3MzA5NSwiZGlzdCI6MTEwLjAyOH0sIjIwNDk5ODY3Mi0xNTI0OTU2MTdfMTUyNDk1NjE1Ijp7ImlkIjoiMjA0OTk4NjcyLTE1MjQ5NTYxN18xNTI0OTU2MTUiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ5NTYxNyIsImIiOiIxNTI0OTU2MTUiLCJoZWFkaW5nIjoyODcuNTkzMDkyMDcxNzMwOTUsImRpc3QiOjExMC4wMjh9LCIyMDQ5OTg2NzUtMTUyNTE2NjQwXzE1MjUxNjY0MiI6eyJpZCI6IjIwNDk5ODY3NS0xNTI1MTY2NDBfMTUyNTE2NjQyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NDAiLCJiIjoiMTUyNTE2NjQyIiwiaGVhZGluZyI6MTA4LjQ1Njk5NzYwOTk0NTM1LCJkaXN0IjoxMDguNTQ3fSwiMjA0OTk4Njc4LTE1MjYyMDU2OV8yMTc3NzAyNjIzIjp7ImlkIjoiMjA0OTk4Njc4LTE1MjYyMDU2OV8yMTc3NzAyNjIzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI2MjA1NjkiLCJiIjoiMjE3NzcwMjYyMyIsImhlYWRpbmciOjEwOC4zODI3MjU3NTA4MjA2OCwiZGlzdCI6NTIuNzI4fSwiMjA0OTk5NzAyLTE1MjQ0NzM1OV8xNTI0NDczNjEiOnsiaWQiOiIyMDQ5OTk3MDItMTUyNDQ3MzU5XzE1MjQ0NzM2MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNTkiLCJiIjoiMTUyNDQ3MzYxIiwiaGVhZGluZyI6MTA3LjQ5MzIwODIwMjQwNjI4LCJkaXN0IjoxMDYuOTQ5fSwiMjA0OTk5NzAyLTE1MjQ0NzM2MV8xNTI0NDczNTkiOnsiaWQiOiIyMDQ5OTk3MDItMTUyNDQ3MzYxXzE1MjQ0NzM1OSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNjEiLCJiIjoiMTUyNDQ3MzU5IiwiaGVhZGluZyI6Mjg3LjQ5MzIwODIwMjQwNjI3LCJkaXN0IjoxMDYuOTQ5fSwiMjA0OTk5NzAyLTE1MjQ0NzM2MV8xNTI0NDczNjMiOnsiaWQiOiIyMDQ5OTk3MDItMTUyNDQ3MzYxXzE1MjQ0NzM2MyIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNjEiLCJiIjoiMTUyNDQ3MzYzIiwiaGVhZGluZyI6MTA4LjUyNzI4MTUyODM0ODk2LCJkaXN0IjoxMTEuNjM4fSwiMjA0OTk5NzAyLTE1MjQ0NzM2M18xNTI0NDczNjEiOnsiaWQiOiIyMDQ5OTk3MDItMTUyNDQ3MzYzXzE1MjQ0NzM2MSIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI0NDczNjMiLCJiIjoiMTUyNDQ3MzYxIiwiaGVhZGluZyI6Mjg4LjUyNzI4MTUyODM0ODk2LCJkaXN0IjoxMTEuNjM4fSwiMjA0OTk5NzAzLTE1MjQ0NzM2M18xNDI1NzMwODIxIjp7ImlkIjoiMjA0OTk5NzAzLTE1MjQ0NzM2M18xNDI1NzMwODIxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM2MyIsImIiOiIxNDI1NzMwODIxIiwiaGVhZGluZyI6MTA3LjgwODQ0OTkwMzI4NzAxLCJkaXN0IjoxMDUuMTE1fSwiMjA0OTk5NzAzLTE0MjU3MzA4MjFfMTUyNDQ3MzYzIjp7ImlkIjoiMjA0OTk5NzAzLTE0MjU3MzA4MjFfMTUyNDQ3MzYzIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE0MjU3MzA4MjEiLCJiIjoiMTUyNDQ3MzYzIiwiaGVhZGluZyI6Mjg3LjgwODQ0OTkwMzI4NywiZGlzdCI6MTA1LjExNX0sIjIwNDk5OTcwMy0xNDI1NzMwODIxXzE1MjQ0NzM3MCI6eyJpZCI6IjIwNDk5OTcwMy0xNDI1NzMwODIxXzE1MjQ0NzM3MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNDI1NzMwODIxIiwiYiI6IjE1MjQ0NzM3MCIsImhlYWRpbmciOjEwNi4wNjYzOTk5NjA1MDY4NywiZGlzdCI6MjQuMDM0fSwiMjA0OTk5NzAzLTE1MjQ0NzM3MF8xNDI1NzMwODIxIjp7ImlkIjoiMjA0OTk5NzAzLTE1MjQ0NzM3MF8xNDI1NzMwODIxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM3MCIsImIiOiIxNDI1NzMwODIxIiwiaGVhZGluZyI6Mjg2LjA2NjM5OTk2MDUwNjksImRpc3QiOjI0LjAzNH0sIjIwNDk5OTcwOC0xNTI0NDczNjNfMTUyNTE2NjQ2Ijp7ImlkIjoiMjA0OTk5NzA4LTE1MjQ0NzM2M18xNTI1MTY2NDYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQ0NzM2MyIsImIiOiIxNTI1MTY2NDYiLCJoZWFkaW5nIjoxNy4xMTk1ODcyNjQwMDAzNjIsImRpc3QiOjEwNy44Nzd9LCIyMDQ5OTk3MDgtMTUyNTE2NjQ2XzE1MjQ0NzM2MyI6eyJpZCI6IjIwNDk5OTcwOC0xNTI1MTY2NDZfMTUyNDQ3MzYzIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1MTY2NDYiLCJiIjoiMTUyNDQ3MzYzIiwiaGVhZGluZyI6MTk3LjExOTU4NzI2NDAwMDM2LCJkaXN0IjoxMDcuODc3fSwiMjA0OTk5NzA4LTE1MjUxNjY0Nl80NDMxODcwOTkiOnsiaWQiOiIyMDQ5OTk3MDgtMTUyNTE2NjQ2XzQ0MzE4NzA5OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTE2NjQ2IiwiYiI6IjQ0MzE4NzA5OSIsImhlYWRpbmciOjE3LjQzMDc1OTkzNDI1NTM3NywiZGlzdCI6NTQuNjExfSwiMjA0OTk5NzA4LTQ0MzE4NzA5OV8xNTI1MTY2NDYiOnsiaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MDk5XzE1MjUxNjY0NiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDk5IiwiYiI6IjE1MjUxNjY0NiIsImhlYWRpbmciOjE5Ny40MzA3NTk5MzQyNTUzOCwiZGlzdCI6NTQuNjExfSwiMjA0OTk5NzA4LTQ0MzE4NzA5OV8xNTI0MDE5MTIiOnsiaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MDk5XzE1MjQwMTkxMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MDk5IiwiYiI6IjE1MjQwMTkxMiIsImhlYWRpbmciOjE3LjE1MTk5NDkwODMwMzk5NCwiZGlzdCI6NTIuMjA4fSwiMjA0OTk5NzA4LTE1MjQwMTkxMl80NDMxODcwOTkiOnsiaWQiOiIyMDQ5OTk3MDgtMTUyNDAxOTEyXzQ0MzE4NzA5OSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDAxOTEyIiwiYiI6IjQ0MzE4NzA5OSIsImhlYWRpbmciOjE5Ny4xNTE5OTQ5MDgzMDQsImRpc3QiOjUyLjIwOH0sIjIwNDk5OTcwOC0xNTI0MDE5MTJfNDQzMTg3MTAwIjp7ImlkIjoiMjA0OTk5NzA4LTE1MjQwMTkxMl80NDMxODcxMDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjQwMTkxMiIsImIiOiI0NDMxODcxMDAiLCJoZWFkaW5nIjoxOC42MDIzMjQ5MTc5OTgyOTUsImRpc3QiOjU3LjMxNH0sIjIwNDk5OTcwOC00NDMxODcxMDBfMTUyNDAxOTEyIjp7ImlkIjoiMjA0OTk5NzA4LTQ0MzE4NzEwMF8xNTI0MDE5MTIiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NzEwMCIsImIiOiIxNTI0MDE5MTIiLCJoZWFkaW5nIjoxOTguNjAyMzI0OTE3OTk4MywiZGlzdCI6NTcuMzE0fSwiMjA0OTk5NzA4LTQ0MzE4NzEwMF8xNTI1NjYzMTQiOnsiaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MTAwXzE1MjU2NjMxNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MTAwIiwiYiI6IjE1MjU2NjMxNCIsImhlYWRpbmciOjE5LjU0OTk5MjYzMDE1Nzc1MywiZGlzdCI6NTEuNzYxfSwiMjA0OTk5NzA4LTE1MjU2NjMxNF80NDMxODcxMDAiOnsiaWQiOiIyMDQ5OTk3MDgtMTUyNTY2MzE0XzQ0MzE4NzEwMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE0IiwiYiI6IjQ0MzE4NzEwMCIsImhlYWRpbmciOjE5OS41NDk5OTI2MzAxNTc3NiwiZGlzdCI6NTEuNzYxfSwiMjA0OTk5NzA4LTE1MjU2NjMxNF80NDMxODcxMDEiOnsiaWQiOiIyMDQ5OTk3MDgtMTUyNTY2MzE0XzQ0MzE4NzEwMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE0IiwiYiI6IjQ0MzE4NzEwMSIsImhlYWRpbmciOjE2Ljc1OTY2MjYzOTk2MTQ3MywiZGlzdCI6NTYuNzN9LCIyMDQ5OTk3MDgtNDQzMTg3MTAxXzE1MjU2NjMxNCI6eyJpZCI6IjIwNDk5OTcwOC00NDMxODcxMDFfMTUyNTY2MzE0IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiI0NDMxODcxMDEiLCJiIjoiMTUyNTY2MzE0IiwiaGVhZGluZyI6MTk2Ljc1OTY2MjYzOTk2MTQ4LCJkaXN0Ijo1Ni43M30sIjIwNDk5OTcwOC00NDMxODcxMDFfMTUyNTY2MzE2Ijp7ImlkIjoiMjA0OTk5NzA4LTQ0MzE4NzEwMV8xNTI1NjYzMTYiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjQ0MzE4NzEwMSIsImIiOiIxNTI1NjYzMTYiLCJoZWFkaW5nIjoxOC4xNTUyMDI1MjkxOTExNCwiZGlzdCI6NTIuNDk5fSwiMjA0OTk5NzA4LTE1MjU2NjMxNl80NDMxODcxMDEiOnsiaWQiOiIyMDQ5OTk3MDgtMTUyNTY2MzE2XzQ0MzE4NzEwMSIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE2IiwiYiI6IjQ0MzE4NzEwMSIsImhlYWRpbmciOjE5OC4xNTUyMDI1MjkxOTExNCwiZGlzdCI6NTIuNDk5fSwiMjA0OTk5NzA4LTE1MjU2NjMxNl80NDMxODcxMDIiOnsiaWQiOiIyMDQ5OTk3MDgtMTUyNTY2MzE2XzQ0MzE4NzEwMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE2IiwiYiI6IjQ0MzE4NzEwMiIsImhlYWRpbmciOjE1LjQ4NDA2MzE0Njc1ODc4MiwiZGlzdCI6NTQuMDY1fSwiMjA0OTk5NzA4LTQ0MzE4NzEwMl8xNTI1NjYzMTYiOnsiaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MTAyXzE1MjU2NjMxNiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MTAyIiwiYiI6IjE1MjU2NjMxNiIsImhlYWRpbmciOjE5NS40ODQwNjMxNDY3NTg3OSwiZGlzdCI6NTQuMDY1fSwiMjA0OTk5NzA4LTQ0MzE4NzEwMl8xNTI0NjAyMzAiOnsiaWQiOiIyMDQ5OTk3MDgtNDQzMTg3MTAyXzE1MjQ2MDIzMCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiNDQzMTg3MTAyIiwiYiI6IjE1MjQ2MDIzMCIsImhlYWRpbmciOjE3LjA4ODQzODE3MDk5MjU3LCJkaXN0Ijo1NS42Njl9LCIyMDQ5OTk3MDgtMTUyNDYwMjMwXzQ0MzE4NzEwMiI6eyJpZCI6IjIwNDk5OTcwOC0xNTI0NjAyMzBfNDQzMTg3MTAyIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NjAyMzAiLCJiIjoiNDQzMTg3MTAyIiwiaGVhZGluZyI6MTk3LjA4ODQzODE3MDk5MjU2LCJkaXN0Ijo1NS42Njl9LCIyMDQ5OTk3MDgtMTUyNDYwMjMwXzE1MjU2NjMxNyI6eyJpZCI6IjIwNDk5OTcwOC0xNTI0NjAyMzBfMTUyNTY2MzE3IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI0NjAyMzAiLCJiIjoiMTUyNTY2MzE3IiwiaGVhZGluZyI6MTkuNTI3ODc1MDUzNDc2NDEsImRpc3QiOjEwOS4zODl9LCIyMDQ5OTk3MDgtMTUyNTY2MzE3XzE1MjQ2MDIzMCI6eyJpZCI6IjIwNDk5OTcwOC0xNTI1NjYzMTdfMTUyNDYwMjMwIiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1NjYzMTciLCJiIjoiMTUyNDYwMjMwIiwiaGVhZGluZyI6MTk5LjUyNzg3NTA1MzQ3NjQsImRpc3QiOjEwOS4zODl9LCIyMDc1MTc2MzktMjE3NzcwMjYyM18yMTc3NzAyNjIyIjp7ImlkIjoiMjA3NTE3NjM5LTIxNzc3MDI2MjNfMjE3NzcwMjYyMiIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE3NzcwMjYyMyIsImIiOiIyMTc3NzAyNjIyIiwiaGVhZGluZyI6MTA4LjQ5MzMxMjMzODExNjMsImRpc3QiOjMxLjQ1NH0sIjIwNzUxNzY0MC0yMTc3NzAyNjIyXzE1MjYzMTE4MCI6eyJpZCI6IjIwNzUxNzY0MC0yMTc3NzAyNjIyXzE1MjYzMTE4MCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMjE3NzcwMjYyMiIsImIiOiIxNTI2MzExODAiLCJoZWFkaW5nIjoxMDcuODc4MzIxMTI4MDUwNjcsImRpc3QiOjI1LjI3N30sIjIwNzUxNzY0MC0xNTI2MzExODBfMTUyNTM5NjQwIjp7ImlkIjoiMjA3NTE3NjQwLTE1MjYzMTE4MF8xNTI1Mzk2NDAiLCJ0eXBlIjoic2Vjb25kYXJ5IiwiYSI6IjE1MjYzMTE4MCIsImIiOiIxNTI1Mzk2NDAiLCJoZWFkaW5nIjoxMDcuMDQwNDg1MjQwMjI3OTUsImRpc3QiOjEwOS43MDJ9LCIyMDc1MTc2NDAtMTUyNTM5NjQwXzE1MjQ1MTYwOCI6eyJpZCI6IjIwNzUxNzY0MC0xNTI1Mzk2NDBfMTUyNDUxNjA4IiwidHlwZSI6InNlY29uZGFyeSIsImEiOiIxNTI1Mzk2NDAiLCJiIjoiMTUyNDUxNjA4IiwiaGVhZGluZyI6MTA4LjU0ODc5MjIwNDk1NzUxLCJkaXN0IjoxMDQuNTQ0fSwiMjA3NTE3NjQwLTE1MjQ1MTYwOF8xNTI1NjYzMTQiOnsiaWQiOiIyMDc1MTc2NDAtMTUyNDUxNjA4XzE1MjU2NjMxNCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNDUxNjA4IiwiYiI6IjE1MjU2NjMxNCIsImhlYWRpbmciOjEwNy40NDIxMDU1NDU4MDE4LCJkaXN0IjoxMTAuOTUxfSwiMjA3NTE3NjQwLTE1MjU2NjMxNF80NDI3NjE1NDgiOnsiaWQiOiIyMDc1MTc2NDAtMTUyNTY2MzE0XzQ0Mjc2MTU0OCIsInR5cGUiOiJzZWNvbmRhcnkiLCJhIjoiMTUyNTY2MzE0IiwiYiI6IjQ0Mjc2MTU0OCIsImhlYWRpbmciOjEwNy42MzAyNTA0NjkzODk1OCwiZGlzdCI6ODcuODQzfSwiMjA3NTE5MjAzLTIxNzc3MjQ2NjFfMTUyNjc5NDY2Ijp7ImlkIjoiMjA3NTE5MjAzLTIxNzc3MjQ2NjFfMTUyNjc5NDY2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNzc3MjQ2NjEiLCJiIjoiMTUyNjc5NDY2IiwiaGVhZGluZyI6MTA3LjYzMTA3NzI0NzQ2ODYsImRpc3QiOjI5LjI4fSwiMjA3NTE5MjAzLTE1MjY3OTQ2Nl80NDMxODUxNDAiOnsiaWQiOiIyMDc1MTkyMDMtMTUyNjc5NDY2XzQ0MzE4NTE0MCIsInR5cGUiOiJyZXNpZGVudGlhbCIsImEiOiIxNTI2Nzk0NjYiLCJiIjoiNDQzMTg1MTQwIiwiaGVhZGluZyI6MTA4LjQ5MzcyMDk2MTE5NDE2LCJkaXN0Ijo2Mi45MDd9LCIyMDc1MTkyMDMtNDQzMTg1MTQwXzE1MjQ2MDIyMSI6eyJpZCI6IjIwNzUxOTIwMy00NDMxODUxNDBfMTUyNDYwMjIxIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjQ0MzE4NTE0MCIsImIiOiIxNTI0NjAyMjEiLCJoZWFkaW5nIjoxMDkuMzIyMjMxMjA2NjczMywiZGlzdCI6NzAuMzU3fSwiMjA3NTI0MTE2LTIxNzc3OTAyMzdfMTUyNDAxODk5Ijp7ImlkIjoiMjA3NTI0MTE2LTIxNzc3OTAyMzdfMTUyNDAxODk5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjIxNzc3OTAyMzciLCJiIjoiMTUyNDAxODk5IiwiaGVhZGluZyI6MTkuNTQ5OTQyODIyNjQ3MDE1LCJkaXN0IjoyNS44ODF9LCIyMDc1MjQxMTYtMTUyNDAxODk5XzQ0MzE4Njk2MCI6eyJpZCI6IjIwNzUyNDExNi0xNTI0MDE4OTlfNDQzMTg2OTYwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQwMTg5OSIsImIiOiI0NDMxODY5NjAiLCJoZWFkaW5nIjoxNy43ODU2NzY3ODc5Mzc5MDIsImRpc3QiOjUzLjU1NH0sIjIwNzUyNDExNi00NDMxODY5NjBfMTUyNjIwNTY5Ijp7ImlkIjoiMjA3NTI0MTE2LTQ0MzE4Njk2MF8xNTI2MjA1NjkiLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg2OTYwIiwiYiI6IjE1MjYyMDU2OSIsImhlYWRpbmciOjE3Ljc4NTU5NzkyMjc3NzQ0LCJkaXN0Ijo1My41NTR9LCIyNDAxODI1NTQtMTUyNDM1ODg4XzE2MjY1NTg1OTQiOnsiaWQiOiIyNDAxODI1NTQtMTUyNDM1ODg4XzE2MjY1NTg1OTQiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNDM1ODg4IiwiYiI6IjE2MjY1NTg1OTQiLCJoZWFkaW5nIjoxNy41MTY0MzQyNDEzNjU5MywiZGlzdCI6MTIuNzg3fSwiMjQwMTgyNTU0LTE2MjY1NTg1OTRfMTUyNDM1ODg4Ijp7ImlkIjoiMjQwMTgyNTU0LTE2MjY1NTg1OTRfMTUyNDM1ODg4IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE2MjY1NTg1OTQiLCJiIjoiMTUyNDM1ODg4IiwiaGVhZGluZyI6MTk3LjUxNjQzNDI0MTM2NTksImRpc3QiOjEyLjc4N30sIjI0MDE4MjU1NC0xNjI2NTU4NTk0XzIxNjcxNjEyMjkiOnsiaWQiOiIyNDAxODI1NTQtMTYyNjU1ODU5NF8yMTY3MTYxMjI5IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE2MjY1NTg1OTQiLCJiIjoiMjE2NzE2MTIyOSIsImhlYWRpbmciOjIwLjQwMzg3MDc1Nzk1NDkxMywiZGlzdCI6OC4yNzl9LCIyNDAxODI1NTQtMjE2NzE2MTIyOV8xNjI2NTU4NTk0Ijp7ImlkIjoiMjQwMTgyNTU0LTIxNjcxNjEyMjlfMTYyNjU1ODU5NCIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMjI5IiwiYiI6IjE2MjY1NTg1OTQiLCJoZWFkaW5nIjoyMDAuNDAzODcwNzU3OTU0OSwiZGlzdCI6OC4yNzl9LCIyNDAxODI1NTQtMjE2NzE2MTIyOV8yMTY3MTYxMzE2Ijp7ImlkIjoiMjQwMTgyNTU0LTIxNjcxNjEyMjlfMjE2NzE2MTMxNiIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMjI5IiwiYiI6IjIxNjcxNjEzMTYiLCJoZWFkaW5nIjoxNy45NTM3NjEyMTU3OTU1MiwiZGlzdCI6ODcuMzk5fSwiMjQwMTgyNTU0LTIxNjcxNjEzMTZfMjE2NzE2MTIyOSI6eyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzE2XzIxNjcxNjEyMjkiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMxNiIsImIiOiIyMTY3MTYxMjI5IiwiaGVhZGluZyI6MTk3Ljk1Mzc2MTIxNTc5NTUsImRpc3QiOjg3LjM5OX0sIjI0MDE4MjU1NC0yMTY3MTYxMzE2XzE1MjYwMTAyNSI6eyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzE2XzE1MjYwMTAyNSIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMzE2IiwiYiI6IjE1MjYwMTAyNSIsImhlYWRpbmciOjIwLjQwMzcxMjc1MTcyNTQ1OCwiZGlzdCI6OC4yNzl9LCIyNDAxODI1NTQtMTUyNjAxMDI1XzIxNjcxNjEzMTYiOnsiaWQiOiIyNDAxODI1NTQtMTUyNjAxMDI1XzIxNjcxNjEzMTYiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNjAxMDI1IiwiYiI6IjIxNjcxNjEzMTYiLCJoZWFkaW5nIjoyMDAuNDAzNzEyNzUxNzI1NDYsImRpc3QiOjguMjc5fSwiMjQwMTgyNTU0LTE1MjYwMTAyNV8yMTY3MTYxMjk0Ijp7ImlkIjoiMjQwMTgyNTU0LTE1MjYwMTAyNV8yMTY3MTYxMjk0IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjYwMTAyNSIsImIiOiIyMTY3MTYxMjk0IiwiaGVhZGluZyI6OS44NDc2MjQ0MzEwNDYyNzcsImRpc3QiOjUuNjI2fSwiMjQwMTgyNTU0LTIxNjcxNjEyOTRfMTUyNjAxMDI1Ijp7ImlkIjoiMjQwMTgyNTU0LTIxNjcxNjEyOTRfMTUyNjAxMDI1IiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxNjcxNjEyOTQiLCJiIjoiMTUyNjAxMDI1IiwiaGVhZGluZyI6MTg5Ljg0NzYyNDQzMTA0NjI4LCJkaXN0Ijo1LjYyNn0sIjI0MDE4MjU1NC0yMTY3MTYxMjk0XzIxNjcxNjEzMjIiOnsiaWQiOiIyNDAxODI1NTQtMjE2NzE2MTI5NF8yMTY3MTYxMzIyIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxNjcxNjEyOTQiLCJiIjoiMjE2NzE2MTMyMiIsImhlYWRpbmciOjE3Ljk1MzYxMDc3NjQ1NjA5NSwiZGlzdCI6ODcuMzk5fSwiMjQwMTgyNTU0LTIxNjcxNjEzMjJfMjE2NzE2MTI5NCI6eyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzIyXzIxNjcxNjEyOTQiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMyMiIsImIiOiIyMTY3MTYxMjk0IiwiaGVhZGluZyI6MTk3Ljk1MzYxMDc3NjQ1NjEsImRpc3QiOjg3LjM5OX0sIjI0MDE4MjU1NC0yMTY3MTYxMzIyXzE1MjQ4NjYwMyI6eyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzIyXzE1MjQ4NjYwMyIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMzIyIiwiYiI6IjE1MjQ4NjYwMyIsImhlYWRpbmciOjE4LjAyODU3NTgwMjY4MjU3OCwiZGlzdCI6OS4zMjZ9LCIyNDAxODI1NTQtMTUyNDg2NjAzXzIxNjcxNjEzMjIiOnsiaWQiOiIyNDAxODI1NTQtMTUyNDg2NjAzXzIxNjcxNjEzMjIiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNDg2NjAzIiwiYiI6IjIxNjcxNjEzMjIiLCJoZWFkaW5nIjoxOTguMDI4NTc1ODAyNjgyNTgsImRpc3QiOjkuMzI2fSwiMjQwMTgyNTU0LTE1MjQ4NjYwM18yMTY3MTYxMjkwIjp7ImlkIjoiMjQwMTgyNTU0LTE1MjQ4NjYwM18yMTY3MTYxMjkwIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjQ4NjYwMyIsImIiOiIyMTY3MTYxMjkwIiwiaGVhZGluZyI6MTkuMTQ1NDIwNDA1NDgwMTg4LCJkaXN0Ijo1Ljg2N30sIjI0MDE4MjU1NC0yMTY3MTYxMjkwXzE1MjQ4NjYwMyI6eyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMjkwXzE1MjQ4NjYwMyIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMjkwIiwiYiI6IjE1MjQ4NjYwMyIsImhlYWRpbmciOjE5OS4xNDU0MjA0MDU0ODAyLCJkaXN0Ijo1Ljg2N30sIjI0MDE4MjU1NC0yMTY3MTYxMjkwXzIxNjcxNjEzMzEiOnsiaWQiOiIyNDAxODI1NTQtMjE2NzE2MTI5MF8yMTY3MTYxMzMxIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxNjcxNjEyOTAiLCJiIjoiMjE2NzE2MTMzMSIsImhlYWRpbmciOjE3LjczMjExMzg0NTI3NDQ3MywiZGlzdCI6ODguNDU0fSwiMjQwMTgyNTU0LTIxNjcxNjEzMzFfMjE2NzE2MTI5MCI6eyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzMxXzIxNjcxNjEyOTAiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMzMSIsImIiOiIyMTY3MTYxMjkwIiwiaGVhZGluZyI6MTk3LjczMjExMzg0NTI3NDQ4LCJkaXN0Ijo4OC40NTR9LCIyNDAxODI1NTQtMjE2NzE2MTMzMV8xNTI1MDIzNzIiOnsiaWQiOiIyNDAxODI1NTQtMjE2NzE2MTMzMV8xNTI1MDIzNzIiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMzMSIsImIiOiIxNTI1MDIzNzIiLCJoZWFkaW5nIjoyMC40MDMzNzM2MjQ3NDc5OSwiZGlzdCI6OC4yNzl9LCIyNDAxODI1NTQtMTUyNTAyMzcyXzIxNjcxNjEzMzEiOnsiaWQiOiIyNDAxODI1NTQtMTUyNTAyMzcyXzIxNjcxNjEzMzEiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMTUyNTAyMzcyIiwiYiI6IjIxNjcxNjEzMzEiLCJoZWFkaW5nIjoyMDAuNDAzMzczNjI0NzQ3OTksImRpc3QiOjguMjc5fSwiMjQwMTgyNTU0LTE1MjUwMjM3Ml8yMTY3MTYxMzAxIjp7ImlkIjoiMjQwMTgyNTU0LTE1MjUwMjM3Ml8yMTY3MTYxMzAxIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjUwMjM3MiIsImIiOiIyMTY3MTYxMzAxIiwiaGVhZGluZyI6MTYuMTM1NDE2NjIxOTI1NjEsImRpc3QiOjYuOTI0fSwiMjQwMTgyNTU0LTIxNjcxNjEzMDFfMTUyNTAyMzcyIjp7ImlkIjoiMjQwMTgyNTU0LTIxNjcxNjEzMDFfMTUyNTAyMzcyIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjIxNjcxNjEzMDEiLCJiIjoiMTUyNTAyMzcyIiwiaGVhZGluZyI6MTk2LjEzNTQxNjYyMTkyNTYsImRpc3QiOjYuOTI0fSwiMjQwMTgyNTU0LTIxNjcxNjEzMDFfMjE2NzE2MTIxMyI6eyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMzAxXzIxNjcxNjEyMTMiLCJ0eXBlIjoidGVydGlhcnkiLCJhIjoiMjE2NzE2MTMwMSIsImIiOiIyMTY3MTYxMjEzIiwiaGVhZGluZyI6MTguODI3NDk5MDgzNjQwOTYyLCJkaXN0Ijo5OC4zODR9LCIyNDAxODI1NTQtMjE2NzE2MTIxM18yMTY3MTYxMzAxIjp7ImlkIjoiMjQwMTgyNTU0LTIxNjcxNjEyMTNfMjE2NzE2MTMwMSIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMjEzIiwiYiI6IjIxNjcxNjEzMDEiLCJoZWFkaW5nIjoxOTguODI3NDk5MDgzNjQwOTYsImRpc3QiOjk4LjM4NH0sIjI0MDE4MjU1NC0yMTY3MTYxMjEzXzE1MjQwMDI2MSI6eyJpZCI6IjI0MDE4MjU1NC0yMTY3MTYxMjEzXzE1MjQwMDI2MSIsInR5cGUiOiJ0ZXJ0aWFyeSIsImEiOiIyMTY3MTYxMjEzIiwiYiI6IjE1MjQwMDI2MSIsImhlYWRpbmciOjE2LjEzNTI2NTE2MDU3MzI1NSwiZGlzdCI6MTMuODQ4fSwiMjQwMTgyNTU0LTE1MjQwMDI2MV8yMTY3MTYxMjEzIjp7ImlkIjoiMjQwMTgyNTU0LTE1MjQwMDI2MV8yMTY3MTYxMjEzIiwidHlwZSI6InRlcnRpYXJ5IiwiYSI6IjE1MjQwMDI2MSIsImIiOiIyMTY3MTYxMjEzIiwiaGVhZGluZyI6MTk2LjEzNTI2NTE2MDU3MzI1LCJkaXN0IjoxMy44NDh9LCIyNjMzNjE4MDItMTUyNDQ3MzU2XzE1MjQ0NzM1OSI6eyJpZCI6IjI2MzM2MTgwMi0xNTI0NDczNTZfMTUyNDQ3MzU5IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM1NiIsImIiOiIxNTI0NDczNTkiLCJoZWFkaW5nIjoxMDcuNTkxOTMyMTc3ODk5MTEsImRpc3QiOjExMC4wMzV9LCIyNjMzNjE4MDItMTUyNDQ3MzU5XzE1MjQ0NzM1NiI6eyJpZCI6IjI2MzM2MTgwMi0xNTI0NDczNTlfMTUyNDQ3MzU2IiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ0NzM1OSIsImIiOiIxNTI0NDczNTYiLCJoZWFkaW5nIjoyODcuNTkxOTMyMTc3ODk5MTQsImRpc3QiOjExMC4wMzV9LCIyNzUzOTgwMjEtMTUyNDk2OTQwXzQ0MzE4NTEzMCI6eyJpZCI6IjI3NTM5ODAyMS0xNTI0OTY5NDBfNDQzMTg1MTMwIiwidHlwZSI6InJlc2lkZW50aWFsIiwiYSI6IjE1MjQ5Njk0MCIsImIiOiI0NDMxODUxMzAiLCJoZWFkaW5nIjotNzMuMjMyNTE3MjI4MTIyMjYsImRpc3QiOjY1LjMyNn0sIjI3NTM5ODAyMS00NDMxODUxMzBfMTUyNDk2OTM3Ijp7ImlkIjoiMjc1Mzk4MDIxLTQ0MzE4NTEzMF8xNTI0OTY5MzciLCJ0eXBlIjoicmVzaWRlbnRpYWwiLCJhIjoiNDQzMTg1MTMwIiwiYiI6IjE1MjQ5NjkzNyIsImhlYWRpbmciOi03Mi4wMjA5OTc3ODMyNTQ5OCwiZGlzdCI6NzEuODN9fX0="; this.objects["austin"] = new MapGraph("austin"); this.objects["austin"].init(JSON.parse(atob(austinMap))); demo.doMapGraphUpdate = true; } MapGraphSet.prototype.draw = function() { if (demo.ui.bDrawMap) { for (var i in this.objects) { this.objects[i].draw(); } } } MapGraphSet.prototype.drawOverlays = function() { for (var i in this.objects) { this.objects[i].drawOverlay(); } } MapGraphSet.prototype.update = function() { if (demo.ui.bDrawMap) { for (var i in this.objects) { this.objects[i].update(); } } } MapGraphSet.prototype.reset = function() { for (var i in this.objects) { this.objects[i].reset(); } } /***************************************************************************** * * MapGraph * * Base class for all objects that will be displayed on the map. * ****************************************************************************/ function MapGraph(id) { this.id = id; this.edges = []; this.nodes = []; this.nodeCount = 0; this.edgeCount = 0; this.name = "default"; } MapGraph.prototype.init = function(data) { this.edges = data.edges; this.nodes = data.nodes; this.nodeCount = data.nodeCount; this.edgeCount = data.edgeCount; this.name = data.name; console.log(this); } MapGraph.prototype.getPopoverData = function() { } MapGraph.prototype.updatePopoverData = function() { } MapGraph.prototype.reset = function() { } MapGraph.prototype.getRadius = function() { var zoom = demo.ui.map.getZoom(); var factor = 1; if (this.isSelected) { factor = 1.8; } var radius = factor * 14 * Math.pow(0.7, (18 - zoom)); return Math.max(radius, 4); } MapGraph.prototype.draw = function() { //if (demo.ui.map.getZoom() < 15) { return; } var context = demo.ui.context; var radius = this.getRadius() / 2; for (var i in this.edges) { var e = this.edges[i]; if (e.startPos && e.endPos) { context.save(); context.translate(e.startPos.x, e.startPos.y); context.rotate((e.heading + 180) * Math.PI / 180); var d = Math.sqrt(Math.pow(e.endPos.x - e.startPos.x, 2) + Math.pow(e.endPos.y - e.startPos.y, 2)); context.strokeStyle = "black"; context.lineWidth = radius / 2; context.beginPath(); context.moveTo(0, 0); context.lineTo(0, d); context.closePath(); context.stroke(); if (demo.ui.map.getZoom() >= 17) { context.strokeStyle = "blue"; context.fillStyle = "rgb(200,200,255)"; context.lineWidth = 1; context.beginPath(); context.moveTo(0, d - 2*radius); var side = radius / 2; context.lineTo(-1 * side, d - 2*radius - side - 1); context.lineTo(side, d-2*radius - side - 1); context.lineTo(0, d - 2*radius); context.closePath(); context.stroke(); context.fill(); } context.restore(); } } for (var i in this.nodes) { var n = this.nodes[i]; if (n.pos) { context.save(); context.strokeStyle = "rgba(15,15,15,0.7)"; context.fillStyle = "rgba(100,100,255,0.8)"; context.lineWidth = 1; context.beginPath(); context.arc(n.pos.x, n.pos.y, radius, 0, Math.PI*2, true); context.closePath(); context.stroke(); context.fill(); context.restore(); } } } MapGraph.prototype.canSelect = function() { return false; } MapGraph.prototype.update = function() { // non-moving, so just update the X/Y based on the map bound //if (!demo.doMapGraphUpdate) { return; } var loc = demo.ui.map.getCenter().toShortString() + ", " + demo.ui.map.getZoom(); if (demo.ui.bForceDrawMap || (this.lastCenterSeen && this.lastCenterSeen != loc)) { console.log("updating"); for (var i in this.nodes) { var n = this.nodes[i]; var p = Utils.geoToXY(n.lon, n.lat); n.pos = { x: p.x, y: p.y } } for (var i in this.edges) { var e = this.edges[i]; if (this.nodes[e.a] && this.nodes[e.b]) { var p_a = Utils.geoToXY(this.nodes[e.a].lon, this.nodes[e.a].lat); var p_b = Utils.geoToXY(this.nodes[e.b].lon, this.nodes[e.b].lat); e.startPos = { x: p_a.x, y: p_a.y } e.endPos = { x: p_b.x, y: p_b.y } } } demo.ui.bForceDrawMap = false; } this.lastCenterSeen = loc; } MapGraph.prototype.drawOverlay = function() { }

public/js/Map/MapObject.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ /***************************************************************************** * * MapObjectSet * * A set of MapObjects. Those that inherit this object should implement * the "sub" method, an onMessage callback that is used to populate/update * MapObject's in the set. * ****************************************************************************/ function MapObjectSet() { this.objects = {}; this.noDeleteOnReset = false; } MapObjectSet.prototype.init = function() { var topic = "iot-2/type/"+window.config.iot_deviceType+"/id/+/evt/telemetry/fmt/json"; this.sub = new Subscription(topic, (function(ctx) { return function(message) { if (!message.destinationName.match("iot-2/type/"+window.config.iot_deviceType+"/id/[A-Za-z0-9]*/evt/telemetry/fmt/json")) { return; } var m = message.payloadString; var data_array = JSON.parse(message.payloadString); if (data_array.length) { } else { data_array = [data_array]; } for (var i in data_array) { var data = data_array[i]; if (ctx.objects[data.id] == null) { console.log("new car: " + data.id); ctx.objects[data.id] = new MapObject(data.id); } ctx.objects[data.id].setLocation(data.lng + "," + data.lat); ctx.objects[data.id].type = data.type; ctx.objects[data.id].name = data.name; ctx.objects[data.id].state = data.state; ctx.objects[data.id].description = data.description; ctx.objects[data.id].heading = data.heading; ctx.objects[data.id].speed = data.speed; ctx.objects[data.id].customProps = data.customProps; ctx.objects[data.id].lastUpdate = (new Date()).getTime(); } } })(this)); } MapObjectSet.prototype.draw = function() { for (var i in this.objects) { this.objects[i].draw(); } } MapObjectSet.prototype.drawOverlays = function() { for (var i in this.objects) { this.objects[i].drawOverlay(); } } MapObjectSet.prototype.update = function() { for (var i in this.objects) { this.objects[i].update(); } } MapObjectSet.prototype.reset = function() { for (var i in this.objects) { this.objects[i].reset(); } if (!this.noDeleteOnReset) { this.objects = {}; } } /***************************************************************************** * * MapObject * * Base class for all objects that will be displayed on the map. * ****************************************************************************/ function MapObject(id) { this.id = id; this.pos = { x: null, y: null } this.heading = 0; this.type = "circle"; this.name = "default"; this.state = "normal"; this.geo = { lon: 0, lat: 0 } this.color = "rgba(0,0,0,1.0)"; this.description = "I am a connected car"; this.overlaySet = new OverlaySet(); this.isSelected = false; this.loadPopoverData = true; this.messages = []; // list of msgData objects, for displaying a list of received messages for a particular car this.label = ""; //this.setLabel(this.id); } MapObject.prototype.setLocation = function(data) { this.geo.lon = parseFloat(data.split(",")[0]); this.geo.lat = parseFloat(data.split(",")[1]); } MapObject.prototype.setType = function(type) { this.type = type; } MapObject.prototype.setName = function(name) { this.name = name; } MapObject.prototype.setDescription = function(description) { this.description = description; } MapObject.prototype.setState = function(state) { this.state = state; } MapObject.prototype.setColor = function(color) { this.color = color; } MapObject.prototype.setLabel = function(label) { this.removeOverlay(this.label); this.addOverlay(label, 0); } MapObject.prototype.getColor = function() { // children must overwrite return this.color } MapObject.prototype.getRadius = function() { var zoom = demo.ui.map.getZoom(); var factor = 1; if (this.isSelected) { factor = 1.8; } var radius = factor * 14 * Math.pow(0.7, (18 - zoom)); return Math.max(radius, 5); } MapObject.prototype.getUnscaledRadius = function() { var zoom = demo.ui.map.getZoom(); var radius = 14 * Math.pow(0.7, (18 - zoom)); return Math.max(radius, 5); } MapObject.prototype._getGeoString = function() { return "(" + (this.geo.lon).toFixed(5) + ", " + (this.geo.lat).toFixed(5) + ")"; } MapObject.prototype._getMessagesHTML = function() { var html = ""; for (var i in this.messages) { var d = this.messages[i]; html += [ "<div class='thingMessage' id='msg"+i+"'>", "<div class='thingMessageSubject'><b>" + d.msgSubject + "</b></div>", "<div class='thingMessageDescription'>" + d.msgDescription + "<div class='thingMessageTime'>" + d.dateStr + " " + d.timeStr + "</div></div>", "<div class='thingMessageActions'><a href='javascript:deleteMessage(" + this.id + ", " + i + ")'>Close</a>", "<a href='javascript:Utils.publish(\"" + d.callbackTopic + "\", \"confirm,"+this.id+"\")'>Reply</a></div>", "</div>" ].join("\n"); } return html; } MapObject.prototype.pushMessage = function(msg) { this.messages.push(msg); if ($("#messagesContainer").is(":visible")) { demo.ui.updateMessagesContainer(); } } MapObject.prototype.getPopoverData = function() { var data = { left: { title: "", content: "" }, right: { title: "", content: "" } }; data.left.title = this.name; data.left.content = ""; var status_location = this._getGeoString(); var status_description = this.description; var status_state = this.state; var status_type = this.type; data.left.content += '<div><b>GPS:</b> <span class="value" id="status_location">'+status_location+'</span></div>'; data.left.content += '<div><b>Speed:</b> <span class="value" id="status_speed">'+this.speed+'</span></div>'; data.left.content += '<div><b>State:</b> <span class="value" id="status_state">'+this.state+'</span></div>'; data.left.content += '<div><b>Type:</b> <span class="value" id="status_type">'+this.type+'</span></div><hr>'; for (var i in this.customProps) { data.left.content += '<div><b>'+i+':</b> <span class="value" id="status_'+i+'">'+this.customProps[i]+'</span></div>'; } data.left.content += '<div style="text-align: center; font-style: italic; padding: 10px;">&quot;<span id="status_description">'+this.description+'</span>&quot;</div>'; return data; } MapObject.prototype.updatePopoverData = function() { var status_location = this._getGeoString(); var status_description = this.description; var status_state = this.state; var status_type = this.type; $("#status_location").html(status_location); $("#status_description").html(status_description); $("#status_state").html(status_state); $("#status_type").html(status_type); } MapObject.prototype.reset = function() { Utils.publish(topicPrefix + "things/" + this.id, "", true); } MapObject.prototype.drawPopover = function() { // update position $(".popover.left").css("left", this.pos.x - $(".popover.left").width() - this.getUnscaledRadius() - 40); $(".popover.right").css("left", this.pos.x + this.getUnscaledRadius() + 35); if (this.isSelected) { $(".popover.left").css("top", win.height / 2 - ($(".popover.left").height() / 2) - 2); $(".popover.right").css("top", win.height / 2 - ($(".popover.right").height() / 2) - 2); $(".popover.left").css("left", win.width / 2 - $(".popover.left").width() - this.getUnscaledRadius() - 80); $(".popover.right").css("left", win.width / 2 + this.getUnscaledRadius() + 80); } else { $(".popover.left").css("top", this.pos.y - $(".popover.left").height()); $(".popover.right").css("top", this.pos.y - $(".popover.right").height()); $(".popover.left").css("left", this.pos.x - $(".popover.left").width() - this.getUnscaledRadius() - 80); $(".popover.right").css("left", this.pos.x + this.getUnscaledRadius() + 80); } $(".popover").css("zIndex", "99"); if (this.loadPopoverData) { // load content var data = this.getPopoverData(); $(".popover.left").find(".popover-title").html(data.left.title); $(".popover.left").find(".popover-content").html(data.left.content); $(".popover.right").css("max-height", $(".popover.left").height()); $(".popover.right").find(".popover-title").html(data.right.title); $(".popover.right").find(".popover-content").html(data.right.content); //this.loadPopoverData = false; } else { // update existing content this.updatePopoverData(); //var data = this.getPopoverData(); //$(".popover.left").find(".popover-title").html(data.left.title); //$(".popover.left").find(".popover-content").html(data.left.content); } } MapObject.prototype.draw = function() { // default is a circle, overwrite from children if (this.color == "") { return; } if (this.pos.x < -1*(this.getRadius() / 2) || this.pos.x > demo.ui.canvas.width + 5 || this.pos.y < -1*(this.getRadius() / 2) || this.pos.y > demo.ui.canvas.height + 5) { // object is off-screen return; } var context = demo.ui.context; var radius = this.getRadius(); if (this.type == "circle") { context.save(); context.strokeStyle = "#111111"; context.fillStyle = this.getColor(); context.lineWidth = 3; context.beginPath(); context.arc(this.pos.x, this.pos.y, radius, 0, Math.PI*2, true); context.closePath(); context.stroke(); context.fill(); context.restore(); } else if (this.type == "square") { context.save(); context.strokeStyle = "#111111"; context.fillStyle = this.getColor(); context.lineWidth = 2; context.fillRect(this.pos.x - radius, this.pos.y - radius, radius*2+1, radius*2+1); context.strokeRect(this.pos.x - radius, this.pos.y - radius, radius*2+1, radius*2+1); context.restore(); } else if (this.type == "triangle") { context.save(); context.strokeStyle = "#111111"; context.fillStyle = this.getColor(); context.lineWidth = 2; context.beginPath(); context.moveTo(this.pos.x, this.pos.y - radius*3/2); context.lineTo(this.pos.x+radius*3/2, this.pos.y + radius); context.lineTo(this.pos.x-radius*3/2, this.pos.y + radius); context.lineTo(this.pos.x, this.pos.y - radius*3/2); context.closePath(); context.stroke(); context.fill(); context.restore(); } else if (this.type == "diamond") { context.save(); context.strokeStyle = "#111111"; context.fillStyle = this.getColor(); context.lineWidth = 2; context.beginPath(); context.moveTo(this.pos.x-radius, this.pos.y); context.lineTo(this.pos.x, this.pos.y - radius); context.lineTo(this.pos.x+radius, this.pos.y); context.lineTo(this.pos.x, this.pos.y + radius); context.lineTo(this.pos.x-radius, this.pos.y); context.closePath(); context.stroke(); context.fill(); context.restore(); } else if (Images[this.type]) { var image = Images[this.type]; var longestSide = Math.max(image.width, image.height); var factor = radius*3 / longestSide; var width = image.width * factor; var height = image.height * factor; if (this.type == "car") { context.save(); context.translate(this.pos.x, this.pos.y); context.rotate((this.heading - 90) * Math.PI / 180); context.drawImage(image, 0 - (width / 2), 0 - (height / 2), width, height); context.restore(); } else { context.drawImage(image, this.pos.x - (width / 2), this.pos.y - (height / 2), width, height); if (this.customProps.color) { context.strokeStyle = this.customProps.color; context.lineWidth = 2; context.strokeRect(this.pos.x - (width / 2) - 3, this.pos.y - (height / 2) - 3, width+6, height+6); } } } if (this.isSelected) { this.drawPopover(); } } MapObject.prototype.update = function() { // non-moving, so just update the X/Y based on the map bound var dispPos = Utils.geoToXY(this.geo.lon, this.geo.lat); this.pos.x = dispPos.x; this.pos.y = dispPos.y; } MapObject.prototype.canSelect = function() { return true; } MapObject.prototype.isCountable = function() { return true; } MapObject.prototype.select = function() { this.isSelected = true; this.loadPopoverData = true; } MapObject.prototype.deselect = function() { this.isSelected = false; } MapObject.prototype.removeOverlay = function(text) { this.overlaySet.removeOverlayByText(text); } MapObject.prototype.addOverlay = function(text, duration, bgColor, textColor) { this.overlaySet.addOverlay(text, duration, bgColor, textColor); } MapObject.prototype.drawOverlay = function() { if (this.color == "") { return; } this.overlaySet.draw(this.pos, this.getUnscaledRadius() * 0.75); }

public/js/Map/MapPolygon.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ /***************************************************************************** * * MapPolygonSet * * A set of MapPolygons. Those that inherit this object should implement * the "sub" method, an onMessage callback that is used to populate/update * MapPolygon objects in the set. * ****************************************************************************/ function MapPolygonSet() { this.polys = {}; this.background = true; this.isBackground = function() { return this.background; } // childen must implement this.sub = null; } MapPolygonSet.prototype.draw = function() { for (var i in this.polys) { this.polys[i].draw(); } } MapPolygonSet.prototype.reset = function() { this.polys = {}; } /***************************************************************************** * * MapPolygon * * Base class for all objects that will be displayed on the map. * ****************************************************************************/ function MapPolygon(id) { this.id = id; this.type = "MapPolygon"; this.points = []; this.editable = false; this.color = Utils.Colors.Poly.White, this.filled = false; this.finished = false; this.drawPoints = false; this.pointRadius = 8; } MapPolygon.prototype.getColor = function() { return this.color; } MapPolygon.prototype.FILLER_POINT = -10000000; MapPolygon.prototype.draw = function() { if (this.points.length == 0) { return; } // draw lines demo.ui.context.save(); if (!this.filled) { // if not filled, use a bigger brush demo.ui.context.lineWidth = 5; demo.ui.context.strokeStyle = this.color; } else { demo.ui.context.lineWidth = 1; demo.ui.context.strokeStyle = "#ffffff"; } demo.ui.context.fillStyle = this.color; demo.ui.context.beginPath(); demo.ui.context.moveTo((Utils.geoToXY(this.points[0])).x, (Utils.geoToXY(this.points[0])).y); for (var i = 1; i < this.points.length; i++) { var pt = this.points[i]; if (pt.lon == this.FILLER_POINT) { continue; } var xypt = Utils.geoToXY(pt); demo.ui.context.lineTo(xypt.x, xypt.y); } demo.ui.context.closePath(); if (this.filled) { demo.ui.context.fill(); } demo.ui.context.stroke(); // draw points if (this.drawPoints) { // draw points for (var i in this.points) { var pt = this.points[i]; demo.ui.context.fillStyle = "#000"; demo.ui.context.beginPath(); demo.ui.context.arc(Utils.geoToXY(pt).x, Utils.geoToXY(pt).y, this.pointRadius, 0, Math.PI*2, true); demo.ui.context.closePath(); demo.ui.context.fill(); demo.ui.context.stroke(); } } demo.ui.context.restore(); } MapPolygon.prototype.setPoints = function(points) { this.points = points; } MapPolygon.prototype.isValid = function() { // polygon must be greater than 100 pixels in circumference var circ = 0; var start = null; for (var i in this.points) { var xy = Utils.geoToXY(this.points[i]); if (start) { circ += Utils.getXYDist(start, xy); } start = xy; } return (circ > 100) ? true : false; } MapPolygon.prototype.isInside = function(x, y) { var pts = []; for (var i in this.points) { pts.push(Utils.geoToXY(this.points[i].lon, this.points[i].lat)); } for (var i = 0; i < pts.length; i++) { var start = pts[i]; var end = pts[i == 0 ? 3 : (i-1)]; if (!Utils.isLeft(start, end, { x: x, y: y })) { return false; } } return true; }

public/js/Map/Overlay.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ /***************************************************************************** * * OverlaySet * * A set of Overlay objects * ****************************************************************************/ function OverlaySet() { this.overlays = {}; this.count = 0; } OverlaySet.prototype.addOverlay = function(text, duration, bgColor, textColor) { if (duration == null) { duration = 5000; } if (!bgColor) { bgColor = "rgba(255,255,255,0.9)"; } if (!textColor) { textColor = "rgb(0,0,0)"; } var obj = new Overlay(text, duration, bgColor, textColor); this.overlays[obj.id] = obj; this.count++; if (duration > 0) { setTimeout((function(ctx, id) { return function() { ctx.removeOverlay(id); } })(this, obj.id), duration); } } OverlaySet.prototype.removeOverlay = function(id) { delete this.overlays[id]; this.count--; } OverlaySet.prototype.removeOverlayByText = function(text) { var ids = []; for (var i in this.overlays) { if (this.overlays[i].text == text) { ids.push(this.overlays[i].id); } } for (var i in ids) { this.removeOverlay(ids[i]); } } OverlaySet.prototype.clear = function () { var ids = []; for (var i in this.overlays) { ids.push(this.overlays[i].id); } for (var i in ids) { this.removeOverlay(ids[i]); } } OverlaySet.prototype.draw = function(pos, objRadius) { if (this.count > 0) { var context = demo.ui.context; context.save(); context.strokeStyle = "#000000"; context.beginPath(); context.moveTo(pos.x, pos.y); //context.lineTo(pos.x + (objRadius*4 / 3), pos.y - (objRadius*4 / 2)); context.lineTo(pos.x + (objRadius*2), pos.y - (objRadius*3)); context.stroke(); context.restore(); } var index = 0; for (var key in this.overlays) { this.overlays[key].draw({ x: pos.x + 6*index, y: pos.y + 10*index }, objRadius); index++; } } /***************************************************************************** * * Overlay * * Class to control display and timeout of all overlay data * for a MapObject * ****************************************************************************/ function Overlay(text, duration, bgColor, textColor) { this.id = Utils.randomString(20); this.text = text; this.duration = duration; this.bgColor = bgColor; this.textColor = textColor; } Overlay.prototype.draw = function(pos, objRadius) { var context = demo.ui.context; if (objRadius > 9.0) { objRadius = 9.0; } objRadius *= 2.5; context.font = objRadius * 2 + "pt HelveticaNeue"; context.textAlign = "center"; context.textBaseline = "middle"; var msgWidth = context.measureText(this.text).width; context.save(); context.fillStyle = this.bgColor; context.strokeStyle = "#000000"; context.shadowOffsetX = 3; context.shadowOffsetY = 3; context.shadowBlur = 5; context.shadowColor = "rgba(0,0,0,0.2)"; var spacing = objRadius; var height = objRadius * 3 + spacing; var heightOffset = 6; var startX = Math.round(pos.x + (objRadius/2.5*2) - 8); var startY = Math.round(pos.y - (objRadius/2.5*3) - height + 3); context.fillRoundedRect(startX, startY, msgWidth + spacing, height, 5, true, true); context.restore(); context.save(); context.fillStyle = this.textColor; context.fillText(this.text, startX + msgWidth / 2 + spacing / 2, startY + height/2); context.restore(); }

public/js/MQTTClient.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ function MQTTClient(id) { this.subscriptionList = {}; this.iot_server = window.config.iot_deviceOrg+".messaging.internetofthings.ibmcloud.com"; this.iot_port = 1883; this.iot_username = window.config.iot_apiKey; this.iot_password = window.config.iot_apiToken; this.iot_clientid = "a:"+window.config.iot_deviceOrg+":mapui" + id; this.client = new Messaging.Client(this.iot_server, this.iot_port, this.iot_clientid); this.client.onMessageArrived = this.onMessage; this.client.onConnectionLost = function() { console.log("disconnected!"); } defineSubs(); } MQTTClient.prototype.connect = function() { var connectOptions = new Object(); connectOptions.cleanSession = true; connectOptions.useSSL = false; connectOptions.keepAliveInterval = 72000; connectOptions.userName = this.iot_username; connectOptions.password = this.iot_password; connectOptions.onSuccess = (function(me) { return function() { console.log("connected!"); demo.mqttclient.subscribe(Subscriptions.overlays); demo.mqttclient.subscribe(Subscriptions.geoAlerts); for (var i in demo.mapObjects) { me.subscribe(demo.mapObjects[i].sub); } } })(this); connectOptions.onFailure = function() { console.log("error!"); } this.client.connect(connectOptions); } MQTTClient.prototype.subscribe = function(sub) { if (!sub) { return; } // remove existing listener, if it hung around... if (this.subscriptionList[sub.topic]) { this.subscriptionList[sub.topic] = null; } console.log("subscribing to " + sub.topic); this.client.subscribe(sub.topic, { onSuccess: function() { console.log("subscribed to: " + sub.topic); } }); this.subscriptionList[sub.topic] = sub.onMessage; } MQTTClient.prototype.onMessage = function(msg) { for (var i in demo.mqttclient.subscriptionList) { demo.mqttclient.subscriptionList[i](msg); } } /****************************** * * * Subscription * * * ******************************/ function Subscription(topic, onMessage) { this.topic = topic; this.onMessage = onMessage; } var Subscriptions = {}; function defineSubs() { Subscriptions.overlays = new Subscription("iot-2/type/api/id/+/cmd/addOverlay/fmt/json", function(msg) { var pattern = "iot-2/type/api/id/[A-Za-z0-9]*/cmd/addOverlay/fmt/json"; if (!msg.destinationName.match(pattern)) { return; } try { console.log(msg.payloadString); var data = JSON.parse(msg.payloadString); console.log(data); var id = data.id; var text = data.text; var fgColor = data.fgColor || "black"; var bgColor = data.bgColor || "rgba(255,255,255,0.9)"; var duration = data.duration || 3000; var c = demo.getCar(id); if (c) { c.addOverlay(text, duration, bgColor, fgColor); } } catch (e) { console.error(e.message); } }); Subscriptions.geoAlerts = new Subscription(window.config.notifyTopic, function(msg) { if (!msg.destinationName.match(window.config.notifyTopic)) { return; } try { var data = JSON.parse(msg.payloadString); console.log(data); var id = data.deviceInfo.id; var text = data.eventType; var fgColor = "white"; var bgColor = "rgba(0,0,0,0.8)"; var duration = 2000; var c = demo.getCar(id); if (c) { c.addOverlay(text, duration, bgColor, fgColor); } /* var id = data.id; var text = data.text; var fgColor = data.fgColor || "black"; var bgColor = data.bgColor || "rgba(255,255,255,0.9)"; var duration = data.duration || 3000; var c = demo.getCar(id); if (c) { c.addOverlay(text, duration, bgColor, fgColor); } */ } catch (e) { console.error(e.message); } }); }

public/js/UI.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ function UI(demo) { this.canvas = document.getElementById("canvas"); this.context = this.canvas.getContext("2d"); this.map = null; this._bSatView = false; this._mainLayer = null; this._satLayer = null; this._clickStart = { x: null, y: null }; this._bMoving = false; this.mode = "SELECTION"; this.bDrawOverlays = true; this.bDrawMap = false; this.selectedObj = null; this.trackOn = true; this._viewport = { lon: { min: null, max: null, }, lat: { min: null, max: null, } } this.MIN_ZOOM_LEVEL = 12; this.MAX_ZOOM_LEVEL = 19; } UI.prototype.init = function() { this.map = new OpenLayers.Map("openLayersMap", { units: 'm', projection: "EPSG:4326" }); this._mainLayer = new OpenLayers.Layer.OSM("OSM"); this.map.addLayer(this._mainLayer); this.updateCursor(); demo.location = defaults.mapLocation; this.map.setCenter( Utils.toOL( new OpenLayers.LonLat( demo.location.getCenter().lon, demo.location.getCenter().lat ) ), demo.location.defaultZoom ); if (!this.context.constructor.prototype.fillRoundedRect) { this.context.constructor.prototype.fillRoundedRect = function (xx,yy, ww,hh, rad, fill, stroke) { if (typeof(rad) == "undefined") rad = 5; this.beginPath(); this.moveTo(xx+rad, yy); this.arcTo(xx+ww, yy, xx+ww, yy+hh, rad); this.arcTo(xx+ww, yy+hh, xx, yy+hh, rad); this.arcTo(xx, yy+hh, xx, yy, rad); this.arcTo(xx, yy, xx+ww, yy, rad); if (stroke) this.stroke(); // Default to no stroke if (fill || typeof(fill)=="undefined") this.fill(); // Default to fill } } this.setInputEvents(); } UI.prototype.updateCursor = function() { document.body.style.cursor = (this.mode == "SELECTION" || this.mode == "ALERT") ? "pointer" : "default"; } UI.prototype.processClick_selection = function(x, y) { // get Fence poly that is editable var fences = demo.getFences(); var fence = null; for (var i in fences) { if (fences[i].inEdit) { fence = fences[i]; } } if (fence) { var poly = fence.polygon; if (poly) { // check each point to see if we are inside of it for (var i in poly.points) { p = poly.points[i]; var pPt = Utils.geoToXY(p.lon, p.lat); if (Utils.getXYDist({ x: x, y: y }, pPt) < poly.pointRadius * 1.5) { document.body.onmousemove = (function(ctx) { return function(event) { var newGeo = Utils.xyToGeo(event.pageX, event.pageY - demo.ui.canvas.offsetTop, true); ctx.points[i].lon = newGeo.lon; ctx.points[i].lat = newGeo.lat; } })(poly); document.body.onmouseup = function() { document.body.onmousemove = defaultOnMouseMove; } return; } } var dotProd = function(a, b) { return (a.x * b.x + a.y * b.y); } // check if we are selecting an edge of the poly var pts = []; for (var i in poly.points) { pts.push(Utils.geoToXY(poly.points[i].lon, poly.points[i].lat)); } for (var i = 0; i < pts.length; i++) { var startIndex = i; var endIndex = i == 0 ? pts.length - 1 : (i-1); var start = pts[startIndex]; var end = pts[endIndex]; var segDist = Utils.getXYDist(start, end); var distFromSeg = 10000000; for (var t = 1; t < 20; t++) { var interpol = { x: start.x + (t / 20) * (end.x - start.x), y: start.y + (t / 20) * (end.y - start.y) }; var d = Utils.getXYDist({x: x, y: y}, interpol) if (d < distFromSeg) { distFromSeg = d; } } //console.log("dist from inner segment: " + distFromSeg); if (distFromSeg < segDist/20) { console.log("selected edge " + startIndex + " --> " + endIndex); document.body.onmousemove = function(event) { var delta = { x: event.pageX - demo.ui.clickLast.x, y: event.pageY - demo.ui.clickLast.y } poly.moveEdge(startIndex, endIndex, delta.x, delta.y); demo.ui.clickLast.x = event.pageX; demo.ui.clickLast.y = event.pageY; }; document.body.onmouseup = function() { document.body.onmousemove = defaultOnMouseMove; } return; } } } } // first, check for a click on a map object var bGotObject = false; for (var type in demo.mapObjects) { for (var i in demo.mapObjects[type].objects) { var obj = demo.mapObjects[type].objects[i]; if (obj.canSelect()) { var dist = Utils.getXYDist({ x: x, y: y }, obj.pos); if (dist < (obj.getRadius() * 1.2) && obj.canSelect()) { bGotObject = true; demo.ui.select(obj); document.body.onmouseup = function() { document.body.onmousemove = defaultOnMouseMove; } break; } } } } // next, check for a map pan if (!bGotObject) { if (!this.selectedObj) { this._bMoving = true; demo.doMapGraphUpdate = true; // start pan of map document.body.onmousemove = function(e) { var delta = { x: e.pageX - demo.ui.clickLast.x, y: e.pageY - demo.ui.clickLast.y } demo.ui.map.pan(-delta.x, -delta.y, { dragging: true }); demo.ui.updateViewport(); demo.ui.clickLast.x = e.pageX; demo.ui.clickLast.y = e.pageY; demo.doMapGraphUpdate = true; }; } document.body.onmouseup = function(e) { document.body.onmousemove = defaultOnMouseMove; if (!e.pageX || (demo.ui._clickStart.x == e.pageX && demo.ui._clickStart.y == e.pageY)) { // we did a single-click (without panning) on an empty map space, so de-select demo.ui.deselect(); } this._bMoving = false; } } } UI.prototype.processLeftClick = function(x, y) { this.processClick_selection(x, y); } UI.prototype.processRightClick = function() { // do nothing } UI.prototype.toggleMap = function() { this.bDrawMap = !this.bDrawMap; this.bForceDrawMap = true; } UI.prototype.flash = function(id, remainingTime) { if (!remainingTime) { remainingTime = 1000; } remainingTime -= 50; if (!demo.getCar(id)) { return; } demo.getCar(id).factor = 1 + 0.5*(1000/2 - Math.abs(1000/2 - remainingTime)) / (1000/2); if (remainingTime <= 0 && !demo.getCar(id)._flashing) { return; } setTimeout(function() { demo.ui.flash(id, remainingTime); }, 50); } UI.prototype.select = function(obj) { this.deselect(); this.trackOn = false; this.selectedObj = obj; obj.select(); this.slideTo(this.selectedObj.geo); } UI.prototype.deselect = function() { if (this.selectedObj) { this.selectedObj.deselect(); } demo.ui.inCarEdit = false; this.selectedObj = null; $(".popover").fadeOut(); } UI.prototype.zoomOut = function() { this.map.zoomOut(); demo.doMapGraphUpdate = true; this.updateViewport(); this.checkZoomBounds(); } UI.prototype.zoomIn = function() { this.map.zoomIn(); demo.doMapGraphUpdate = true; this.updateViewport(); this.checkZoomBounds(); } UI.prototype.trackSelected = function() { if (this.selectedObj && this.trackOn) { var xy = Utils.geoToXY(this.selectedObj.geo); var newGeo = Utils.xyToGeo(xy.x, xy.y);// + deltaY); this.map.setCenter(Utils.toOL(new OpenLayers.LonLat(newGeo.lon, newGeo.lat))); this.updateViewport(); } } UI.prototype._doSlide = function(remaining) { if (remaining <= 0) { this.trackOn = true; return; } if (remaining == 10) { $(".popover.left").slideDown(); if (demo.ui.inboxOn) { $(".popover.right").slideDown(); } } this.updateViewport(); setTimeout(function() { demo.ui._doSlide(remaining-1); }, 10); } UI.prototype.slideTo = function(geo) { this.trackOn = false; $(".popover").hide(); this.map.panTo(Utils.toOL(new OpenLayers.LonLat(geo.lon, geo.lat))); setTimeout(function() { demo.ui._doSlide(30); }, 10); } UI.prototype.updateViewport = function() { if (!this.map) { return; } var min = Utils.toLL(this.map.getLonLatFromViewPortPx({ x: 0, y: win.height })); var max = Utils.toLL(this.map.getLonLatFromViewPortPx({ x: win.width, y: 0 })); // correct var bViewChanged = false; if (this._viewport.lon.min != min.lon || this._viewport.lon.max != max.lon || this._viewport.lat.min != min.lat || this._viewport.lat.max != max.lat) { bViewChanged = true; } this._viewport.lon.min = min.lon; this._viewport.lat.min = min.lat; this._viewport.lon.max = max.lon; this._viewport.lat.max = max.lat; this._viewport.lon.center = min.lon + ((max.lon - min.lon) / 2) this._viewport.lat.center = min.lat + ((max.lat - min.lat) / 2) } UI.prototype.checkZoomBounds = function() { if (demo.ui.map.getZoom() >= UI.MAX_ZOOM_LEVEL) { document.getElementById("zoomInBtn").disabled = true; } else { document.getElementById("zoomInBtn").disabled = false; } if (demo.ui.map.getZoom() <= UI.MIN_ZOOM_LEVEL) { document.getElementById("zoomOutBtn").disabled = true; } else { document.getElementById("zoomOutBtn").disabled = false; } } UI.prototype.getMinLon = function() { return this._viewport.lon.min; } UI.prototype.getMinLat = function() { return this._viewport.lat.min; } UI.prototype.getMaxLon = function() { return this._viewport.lon.max; } UI.prototype.getMaxLat = function() { return this._viewport.lat.max; } UI.prototype.getLonWidth = function() { return this.getMaxLon() - this.getMinLon(); } UI.prototype.getLatHeight = function() { return this.getMaxLat() - this.getMinLat(); } var defaultOnMouseMove = function(event) { } UI.prototype.clickLast = { x: 0, y: 0 }; UI.prototype.setInputEvents = function() { document.body.oncontextmenu = function() { return false; } document.body.onmousemove = defaultOnMouseMove; document.body.onkeydown = function(event) { }; document.body.onkeyup = function(event) { }; document.body.onmousedown = function(event) { var mapX = event.pageX; var mapY = event.pageY; if (event.which == 1 && event.target.nodeName == "CANVAS") { demo.ui.clickLast = { x: event.pageX, y: event.pageY }; demo.ui._clickStart.x = demo.ui.clickLast.x; demo.ui._clickStart.y = demo.ui.clickLast.y; demo.ui.processLeftClick(mapX, mapY); } else if (event.which == 3 && event.target.nodeName == "CANVAS") { demo.ui.processRightClick(mapX, mapY); } } } UI.prototype.touchLast = { x: 0, y: 0 } UI.prototype.touchStart = function(event) { console.log("touchStart: " + event.touches[0].clientX + ", " + event.touches[0].clientY); event.preventDefault(); document.body.onmousedown({ pageX: event.touches[0].clientX, pageY: event.touches[0].clientY, which: 1, target: event.target }); } UI.prototype.touchEnd = function(event) { console.log("touchEnd"); document.body.onmouseup({ }); } UI.prototype.touchMove = function(event) { console.log("touchMove: " + event.touches[0].clientX + ", " + event.touches[0].clientY); event.preventDefault(); document.body.onmousemove({ pageX: event.touches[0].clientX, pageY: event.touches[0].clientY, which: 1, target: event.target }); } UI.prototype.touchCancel = function(event) { console.log("touchCancel: " + event.touches[0].clientX + ", " + event.touches[0].clientY); event.preventDefault(); }

public/js/utils/bootstrap-lightbox.min.js

/*! * bootstrap-lightbox.js v0.6.1 * Copyright 2013 Jason Butz * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(e){"use strict";var t=function(t,n){this.options=n,this.$element=e(t).delegate('[data-dismiss="lightbox"]',"click.dismiss.lightbox",e.proxy(this.hide,this)),this.options.remote&&this.$element.find(".lightbox-body").load(this.options.remote)};t.prototype=e.extend({},e.fn.modal.Constructor.prototype),t.prototype.constructor=t,t.prototype.enforceFocus=function(){var t=this;e(document).on("focusin.lightbox",function(e){t.$element[0]!==e.target&&!t.$element.has(e.target).length&&t.$element.focus()})},t.prototype.show=function(){var t=this,n=e.Event("show");this.$element.trigger(n);if(this.isShown||n.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.preloadSize(function(){t.backdrop(function(){var n=e.support.transition&&t.$element.hasClass("fade");t.$element.parent().length||t.$element.appendTo(document.body),t.$element.show(),n&&t.$element[0].offsetWidth,t.$element.addClass("in").attr("aria-hidden",!1),t.enforceFocus(),n?t.$element.one(e.support.transition.end,function(){t.$element.focus().trigger("shown")}):t.$element.focus().trigger("shown")})})},t.prototype.hide=function(t){t&&t.preventDefault();var n=this;t=e.Event("hide"),this.$element.trigger(t);if(!this.isShown||t.isDefaultPrevented())return;this.isShown=!1,this.escape(),e(document).off("focusin.lightbox"),this.$element.removeClass("in").attr("aria-hidden",!0),e.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},t.prototype.escape=function(){var e=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.lightbox",function(t){t.which==27&&e.hide()}):this.isShown||this.$element.off("keyup.dismiss.lightbox")},t.prototype.preloadSize=function(t){var n=e.Callbacks();t&&n.add(t);var r=this,i,s,o,u,a,f,l,c,h,p;i=e(window).height(),s=e(window).width(),o=parseInt(r.$element.find(".lightbox-content").css("padding-top"),10),u=parseInt(r.$element.find(".lightbox-content").css("padding-bottom"),10),a=parseInt(r.$element.find(".lightbox-content").css("padding-left"),10),f=parseInt(r.$element.find(".lightbox-content").css("padding-right"),10),l=r.$element.find(".lightbox-content").find("img:first"),c=new Image,c.onload=function(){c.width+a+f>=s&&(h=c.width,p=c.height,c.width=s-a-f,c.height=p/h*c.width),c.height+o+u>=i&&(h=c.width,p=c.height,c.height=i-o-u,c.width=h/p*c.height),r.$element.css({position:"fixed",width:c.width+a+f,height:c.height+o+u,top:i/2-(c.height+o+u)/2,left:"50%","margin-left":-1*(c.width+a+f)/2}),r.$element.find(".lightbox-content").css({width:c.width,height:c.height}),n.fire()},c.src=l.attr("src")};var n=e.fn.lightbox;e.fn.lightbox=function(n){return this.each(function(){var r=e(this),i=r.data("lightbox"),s=e.extend({},e.fn.lightbox.defaults,r.data(),typeof n=="object"&&n);i||r.data("lightbox",i=new t(this,s)),typeof n=="string"?i[n]():s.show&&i.show()})},e.fn.lightbox.defaults={backdrop:!0,keyboard:!0,show:!0},e.fn.lightbox.Constructor=t,e.fn.lightbox.noConflict=function(){return e.fn.lightbox=n,this},e(document).on("click.lightbox.data-api",'[data-toggle*="lightbox"]',function(t){var n=e(this),r=n.attr("href"),i=e(n.attr("data-target")||r&&r.replace(/.*(?=#[^\s]+$)/,"")),s=i.data("lightbox")?"toggle":e.extend({remote:!/#/.test(r)&&r},i.data(),n.data());t.preventDefault(),i.lightbox(s).one("hide",function(){n.focus()})})}(window.jQuery);

public/js/utils/bootstrap.min.js

/*! * Bootstrap.js by @fat & @mdo * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function($){"use strict";$(function(){$.support.transition=function(){var transitionEnd=function(){var name,el=document.createElement("bootstrap"),transEndEventNames={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(name in transEndEventNames)if(void 0!==el.style[name])return transEndEventNames[name]}();return transitionEnd&&{end:transitionEnd}}()})}(window.jQuery),!function($){"use strict";var dismiss='[data-dismiss="alert"]',Alert=function(el){$(el).on("click",dismiss,this.close)};Alert.prototype.close=function(e){function removeElement(){$parent.trigger("closed").remove()}var $parent,$this=$(this),selector=$this.attr("data-target");selector||(selector=$this.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,"")),$parent=$(selector),e&&e.preventDefault(),$parent.length||($parent=$this.hasClass("alert")?$this:$this.parent()),$parent.trigger(e=$.Event("close")),e.isDefaultPrevented()||($parent.removeClass("in"),$.support.transition&&$parent.hasClass("fade")?$parent.on($.support.transition.end,removeElement):removeElement())};var old=$.fn.alert;$.fn.alert=function(option){return this.each(function(){var $this=$(this),data=$this.data("alert");data||$this.data("alert",data=new Alert(this)),"string"==typeof option&&data[option].call($this)})},$.fn.alert.Constructor=Alert,$.fn.alert.noConflict=function(){return $.fn.alert=old,this},$(document).on("click.alert.data-api",dismiss,Alert.prototype.close)}(window.jQuery),!function($){"use strict";var Button=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.button.defaults,options)};Button.prototype.setState=function(state){var d="disabled",$el=this.$element,data=$el.data(),val=$el.is("input")?"val":"html";state+="Text",data.resetText||$el.data("resetText",$el[val]()),$el[val](data[state]||this.options[state]),setTimeout(function(){"loadingText"==state?$el.addClass(d).attr(d,d):$el.removeClass(d).removeAttr(d)},0)},Button.prototype.toggle=function(){var $parent=this.$element.closest('[data-toggle="buttons-radio"]');$parent&&$parent.find(".active").removeClass("active"),this.$element.toggleClass("active")};var old=$.fn.button;$.fn.button=function(option){return this.each(function(){var $this=$(this),data=$this.data("button"),options="object"==typeof option&&option;data||$this.data("button",data=new Button(this,options)),"toggle"==option?data.toggle():option&&data.setState(option)})},$.fn.button.defaults={loadingText:"loading..."},$.fn.button.Constructor=Button,$.fn.button.noConflict=function(){return $.fn.button=old,this},$(document).on("click.button.data-api","[data-toggle^=button]",function(e){var $btn=$(e.target);$btn.hasClass("btn")||($btn=$btn.closest(".btn")),$btn.button("toggle")})}(window.jQuery),!function($){"use strict";var Carousel=function(element,options){this.$element=$(element),this.options=options,"hover"==this.options.pause&&this.$element.on("mouseenter",$.proxy(this.pause,this)).on("mouseleave",$.proxy(this.cycle,this))};Carousel.prototype={cycle:function(e){return e||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval($.proxy(this.next,this),this.options.interval)),this},to:function(pos){var $active=this.$element.find(".item.active"),children=$active.parent().children(),activePos=children.index($active),that=this;if(!(pos>children.length-1||0>pos))return this.sliding?this.$element.one("slid",function(){that.to(pos)}):activePos==pos?this.pause().cycle():this.slide(pos>activePos?"next":"prev",$(children[pos]))},pause:function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&$.support.transition.end&&(this.$element.trigger($.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){return this.sliding?void 0:this.slide("next")},prev:function(){return this.sliding?void 0:this.slide("prev")},slide:function(type,next){var e,$active=this.$element.find(".item.active"),$next=next||$active[type](),isCycling=this.interval,direction="next"==type?"left":"right",fallback="next"==type?"first":"last",that=this;if(this.sliding=!0,isCycling&&this.pause(),$next=$next.length?$next:this.$element.find(".item")[fallback](),e=$.Event("slide",{relatedTarget:$next[0]}),!$next.hasClass("active")){if($.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(e),e.isDefaultPrevented())return;$next.addClass(type),$next[0].offsetWidth,$active.addClass(direction),$next.addClass(direction),this.$element.one($.support.transition.end,function(){$next.removeClass([type,direction].join(" ")).addClass("active"),$active.removeClass(["active",direction].join(" ")),that.sliding=!1,setTimeout(function(){that.$element.trigger("slid")},0)})}else{if(this.$element.trigger(e),e.isDefaultPrevented())return;$active.removeClass("active"),$next.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return isCycling&&this.cycle(),this}}};var old=$.fn.carousel;$.fn.carousel=function(option){return this.each(function(){var $this=$(this),data=$this.data("carousel"),options=$.extend({},$.fn.carousel.defaults,"object"==typeof option&&option),action="string"==typeof option?option:options.slide;data||$this.data("carousel",data=new Carousel(this,options)),"number"==typeof option?data.to(option):action?data[action]():options.interval&&data.cycle()})},$.fn.carousel.defaults={interval:5e3,pause:"hover"},$.fn.carousel.Constructor=Carousel,$.fn.carousel.noConflict=function(){return $.fn.carousel=old,this},$(document).on("click.carousel.data-api","[data-slide]",function(e){var href,$this=$(this),$target=$($this.attr("data-target")||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,"")),options=$.extend({},$target.data(),$this.data());$target.carousel(options),e.preventDefault()})}(window.jQuery),!function($){"use strict";var Collapse=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.collapse.defaults,options),this.options.parent&&(this.$parent=$(this.options.parent)),this.options.toggle&&this.toggle()};Collapse.prototype={constructor:Collapse,dimension:function(){var hasWidth=this.$element.hasClass("width");return hasWidth?"width":"height"},show:function(){var dimension,scroll,actives,hasData;if(!this.transitioning){if(dimension=this.dimension(),scroll=$.camelCase(["scroll",dimension].join("-")),actives=this.$parent&&this.$parent.find("> .accordion-group > .in"),actives&&actives.length){if(hasData=actives.data("collapse"),hasData&&hasData.transitioning)return;actives.collapse("hide"),hasData||actives.data("collapse",null)}this.$element[dimension](0),this.transition("addClass",$.Event("show"),"shown"),$.support.transition&&this.$element[dimension](this.$element[0][scroll])}},hide:function(){var dimension;this.transitioning||(dimension=this.dimension(),this.reset(this.$element[dimension]()),this.transition("removeClass",$.Event("hide"),"hidden"),this.$element[dimension](0))},reset:function(size){var dimension=this.dimension();return this.$element.removeClass("collapse")[dimension](size||"auto")[0].offsetWidth,this.$element[null!==size?"addClass":"removeClass"]("collapse"),this},transition:function(method,startEvent,completeEvent){var that=this,complete=function(){"show"==startEvent.type&&that.reset(),that.transitioning=0,that.$element.trigger(completeEvent)};this.$element.trigger(startEvent),startEvent.isDefaultPrevented()||(this.transitioning=1,this.$element[method]("in"),$.support.transition&&this.$element.hasClass("collapse")?this.$element.one($.support.transition.end,complete):complete())},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var old=$.fn.collapse;$.fn.collapse=function(option){return this.each(function(){var $this=$(this),data=$this.data("collapse"),options="object"==typeof option&&option;data||$this.data("collapse",data=new Collapse(this,options)),"string"==typeof option&&data[option]()})},$.fn.collapse.defaults={toggle:!0},$.fn.collapse.Constructor=Collapse,$.fn.collapse.noConflict=function(){return $.fn.collapse=old,this},$(document).on("click.collapse.data-api","[data-toggle=collapse]",function(e){var href,$this=$(this),target=$this.attr("data-target")||e.preventDefault()||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,""),option=$(target).data("collapse")?"toggle":$this.data();$this[$(target).hasClass("in")?"addClass":"removeClass"]("collapsed"),$(target).collapse(option)})}(window.jQuery),!function($){"use strict";function clearMenus(){$(toggle).each(function(){getParent($(this)).removeClass("open")})}function getParent($this){var $parent,selector=$this.attr("data-target");return selector||(selector=$this.attr("href"),selector=selector&&/#/.test(selector)&&selector.replace(/.*(?=#[^\s]*$)/,"")),$parent=$(selector),$parent.length||($parent=$this.parent()),$parent}var toggle="[data-toggle=dropdown]",Dropdown=function(element){var $el=$(element).on("click.dropdown.data-api",this.toggle);$("html").on("click.dropdown.data-api",function(){$el.parent().removeClass("open")})};Dropdown.prototype={constructor:Dropdown,toggle:function(){var $parent,isActive,$this=$(this);if(!$this.is(".disabled, :disabled"))return $parent=getParent($this),isActive=$parent.hasClass("open"),clearMenus(),isActive||$parent.toggleClass("open"),$this.focus(),!1},keydown:function(e){var $this,$items,$parent,isActive,index;if(/(38|40|27)/.test(e.keyCode)&&($this=$(this),e.preventDefault(),e.stopPropagation(),!$this.is(".disabled, :disabled"))){if($parent=getParent($this),isActive=$parent.hasClass("open"),!isActive||isActive&&27==e.keyCode)return $this.click();$items=$("[role=menu] li:not(.divider):visible a",$parent),$items.length&&(index=$items.index($items.filter(":focus")),38==e.keyCode&&index>0&&index--,40==e.keyCode&&$items.length-1>index&&index++,~index||(index=0),$items.eq(index).focus())}}};var old=$.fn.dropdown;$.fn.dropdown=function(option){return this.each(function(){var $this=$(this),data=$this.data("dropdown");data||$this.data("dropdown",data=new Dropdown(this)),"string"==typeof option&&data[option].call($this)})},$.fn.dropdown.Constructor=Dropdown,$.fn.dropdown.noConflict=function(){return $.fn.dropdown=old,this},$(document).on("click.dropdown.data-api touchstart.dropdown.data-api",clearMenus).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(e){e.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",toggle,Dropdown.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",toggle+", [role=menu]",Dropdown.prototype.keydown)}(window.jQuery),!function($){"use strict";var Modal=function(element,options){this.options=options,this.$element=$(element).delegate('[data-dismiss="modal"]',"click.dismiss.modal",$.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};Modal.prototype={constructor:Modal,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var that=this,e=$.Event("show");this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.backdrop(function(){var transition=$.support.transition&&that.$element.hasClass("fade");that.$element.parent().length||that.$element.appendTo(document.body),that.$element.show(),transition&&that.$element[0].offsetWidth,that.$element.addClass("in").attr("aria-hidden",!1),that.enforceFocus(),transition?that.$element.one($.support.transition.end,function(){that.$element.focus().trigger("shown")}):that.$element.focus().trigger("shown")}))},hide:function(e){e&&e.preventDefault(),e=$.Event("hide"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),$(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),$.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal())},enforceFocus:function(){var that=this;$(document).on("focusin.modal",function(e){that.$element[0]===e.target||that.$element.has(e.target).length||that.$element.focus()})},escape:function(){var that=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(e){27==e.which&&that.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var that=this,timeout=setTimeout(function(){that.$element.off($.support.transition.end),that.hideModal()},500);this.$element.one($.support.transition.end,function(){clearTimeout(timeout),that.hideModal()})},hideModal:function(){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(callback){var animate=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var doAnimate=$.support.transition&&animate;this.$backdrop=$('<div class="modal-backdrop '+animate+'" />').appendTo(document.body),this.$backdrop.click("static"==this.options.backdrop?$.proxy(this.$element[0].focus,this.$element[0]):$.proxy(this.hide,this)),doAnimate&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),doAnimate?this.$backdrop.one($.support.transition.end,callback):callback()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),$.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one($.support.transition.end,$.proxy(this.removeBackdrop,this)):this.removeBackdrop()):callback&&callback()}};var old=$.fn.modal;$.fn.modal=function(option){return this.each(function(){var $this=$(this),data=$this.data("modal"),options=$.extend({},$.fn.modal.defaults,$this.data(),"object"==typeof option&&option);data||$this.data("modal",data=new Modal(this,options)),"string"==typeof option?data[option]():options.show&&data.show()})},$.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},$.fn.modal.Constructor=Modal,$.fn.modal.noConflict=function(){return $.fn.modal=old,this},$(document).on("click.modal.data-api",'[data-toggle="modal"]',function(e){var $this=$(this),href=$this.attr("href"),$target=$($this.attr("data-target")||href&&href.replace(/.*(?=#[^\s]+$)/,"")),option=$target.data("modal")?"toggle":$.extend({remote:!/#/.test(href)&&href},$target.data(),$this.data());e.preventDefault(),$target.modal(option).one("hide",function(){$this.focus()})})}(window.jQuery),!function($){"use strict";var Tooltip=function(element,options){this.init("tooltip",element,options)};Tooltip.prototype={constructor:Tooltip,init:function(type,element,options){var eventIn,eventOut;this.type=type,this.$element=$(element),this.options=this.getOptions(options),this.enabled=!0,"click"==this.options.trigger?this.$element.on("click."+this.type,this.options.selector,$.proxy(this.toggle,this)):"manual"!=this.options.trigger&&(eventIn="hover"==this.options.trigger?"mouseenter":"focus",eventOut="hover"==this.options.trigger?"mouseleave":"blur",this.$element.on(eventIn+"."+this.type,this.options.selector,$.proxy(this.enter,this)),this.$element.on(eventOut+"."+this.type,this.options.selector,$.proxy(this.leave,this))),this.options.selector?this._options=$.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(options){return options=$.extend({},$.fn[this.type].defaults,options,this.$element.data()),options.delay&&"number"==typeof options.delay&&(options.delay={show:options.delay,hide:options.delay}),options},enter:function(e){var self=$(e.currentTarget)[this.type](this._options).data(this.type);return self.options.delay&&self.options.delay.show?(clearTimeout(this.timeout),self.hoverState="in",this.timeout=setTimeout(function(){"in"==self.hoverState&&self.show()},self.options.delay.show),void 0):self.show()},leave:function(e){var self=$(e.currentTarget)[this.type](this._options).data(this.type);return this.timeout&&clearTimeout(this.timeout),self.options.delay&&self.options.delay.hide?(self.hoverState="out",this.timeout=setTimeout(function(){"out"==self.hoverState&&self.hide()},self.options.delay.hide),void 0):self.hide()},show:function(){var $tip,inside,pos,actualWidth,actualHeight,placement,tp;if(this.hasContent()&&this.enabled){switch($tip=this.tip(),this.setContent(),this.options.animation&&$tip.addClass("fade"),placement="function"==typeof this.options.placement?this.options.placement.call(this,$tip[0],this.$element[0]):this.options.placement,inside=/in/.test(placement),$tip.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),pos=this.getPosition(inside),actualWidth=$tip[0].offsetWidth,actualHeight=$tip[0].offsetHeight,inside?placement.split(" ")[1]:placement){case"bottom":tp={top:pos.top+pos.height,left:pos.left+pos.width/2-actualWidth/2};break;case"top":tp={top:pos.top-actualHeight,left:pos.left+pos.width/2-actualWidth/2};break;case"left":tp={top:pos.top+pos.height/2-actualHeight/2,left:pos.left-actualWidth};break;case"right":tp={top:pos.top+pos.height/2-actualHeight/2,left:pos.left+pos.width}}$tip.offset(tp).addClass(placement).addClass("in")}},setContent:function(){var $tip=this.tip(),title=this.getTitle();$tip.find(".tooltip-inner")[this.options.html?"html":"text"](title),$tip.removeClass("fade in top bottom left right")},hide:function(){function removeWithAnimation(){var timeout=setTimeout(function(){$tip.off($.support.transition.end).detach()},500);$tip.one($.support.transition.end,function(){clearTimeout(timeout),$tip.detach()})}var $tip=this.tip();return $tip.removeClass("in"),$.support.transition&&this.$tip.hasClass("fade")?removeWithAnimation():$tip.detach(),this},fixTitle:function(){var $e=this.$element;($e.attr("title")||"string"!=typeof $e.attr("data-original-title"))&&$e.attr("data-original-title",$e.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(inside){return $.extend({},inside?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var title,$e=this.$element,o=this.options;return title=$e.attr("data-original-title")||("function"==typeof o.title?o.title.call($e[0]):o.title)},tip:function(){return this.$tip=this.$tip||$(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(e){var self=$(e.currentTarget)[this.type](this._options).data(this.type);self[self.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var old=$.fn.tooltip;$.fn.tooltip=function(option){return this.each(function(){var $this=$(this),data=$this.data("tooltip"),options="object"==typeof option&&option;data||$this.data("tooltip",data=new Tooltip(this,options)),"string"==typeof option&&data[option]()})},$.fn.tooltip.Constructor=Tooltip,$.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},$.fn.tooltip.noConflict=function(){return $.fn.tooltip=old,this}}(window.jQuery),!function($){"use strict";var Popover=function(element,options){this.init("popover",element,options)};Popover.prototype=$.extend({},$.fn.tooltip.Constructor.prototype,{constructor:Popover,setContent:function(){var $tip=this.tip(),title=this.getTitle(),content=this.getContent();$tip.find(".popover-title")[this.options.html?"html":"text"](title),$tip.find(".popover-content")[this.options.html?"html":"text"](content),$tip.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var content,$e=this.$element,o=this.options;return content=$e.attr("data-content")||("function"==typeof o.content?o.content.call($e[0]):o.content)},tip:function(){return this.$tip||(this.$tip=$(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var old=$.fn.popover;$.fn.popover=function(option){return this.each(function(){var $this=$(this),data=$this.data("popover"),options="object"==typeof option&&option;data||$this.data("popover",data=new Popover(this,options)),"string"==typeof option&&data[option]()})},$.fn.popover.Constructor=Popover,$.fn.popover.defaults=$.extend({},$.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),$.fn.popover.noConflict=function(){return $.fn.popover=old,this}}(window.jQuery),!function($){"use strict";function ScrollSpy(element,options){var href,process=$.proxy(this.process,this),$element=$(element).is("body")?$(window):$(element);this.options=$.extend({},$.fn.scrollspy.defaults,options),this.$scrollElement=$element.on("scroll.scroll-spy.data-api",process),this.selector=(this.options.target||(href=$(element).attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=$("body"),this.refresh(),this.process()}ScrollSpy.prototype={constructor:ScrollSpy,refresh:function(){var $targets,self=this;this.offsets=$([]),this.targets=$([]),$targets=this.$body.find(this.selector).map(function(){var $el=$(this),href=$el.data("target")||$el.attr("href"),$href=/^#\w/.test(href)&&$(href);return $href&&$href.length&&[[$href.position().top+self.$scrollElement.scrollTop(),href]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){self.offsets.push(this[0]),self.targets.push(this[1])})},process:function(){var i,scrollTop=this.$scrollElement.scrollTop()+this.options.offset,scrollHeight=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,maxScroll=scrollHeight-this.$scrollElement.height(),offsets=this.offsets,targets=this.targets,activeTarget=this.activeTarget;if(scrollTop>=maxScroll)return activeTarget!=(i=targets.last()[0])&&this.activate(i);for(i=offsets.length;i--;)activeTarget!=targets[i]&&scrollTop>=offsets[i]&&(!offsets[i+1]||offsets[i+1]>=scrollTop)&&this.activate(targets[i])},activate:function(target){var active,selector;this.activeTarget=target,$(this.selector).parent(".active").removeClass("active"),selector=this.selector+'[data-target="'+target+'"],'+this.selector+'[href="'+target+'"]',active=$(selector).parent("li").addClass("active"),active.parent(".dropdown-menu").length&&(active=active.closest("li.dropdown").addClass("active")),active.trigger("activate")}};var old=$.fn.scrollspy;$.fn.scrollspy=function(option){return this.each(function(){var $this=$(this),data=$this.data("scrollspy"),options="object"==typeof option&&option;data||$this.data("scrollspy",data=new ScrollSpy(this,options)),"string"==typeof option&&data[option]()})},$.fn.scrollspy.Constructor=ScrollSpy,$.fn.scrollspy.defaults={offset:10},$.fn.scrollspy.noConflict=function(){return $.fn.scrollspy=old,this},$(window).on("load",function(){$('[data-spy="scroll"]').each(function(){var $spy=$(this);$spy.scrollspy($spy.data())})})}(window.jQuery),!function($){"use strict";var Tab=function(element){this.element=$(element)};Tab.prototype={constructor:Tab,show:function(){var previous,$target,e,$this=this.element,$ul=$this.closest("ul:not(.dropdown-menu)"),selector=$this.attr("data-target");selector||(selector=$this.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,"")),$this.parent("li").hasClass("active")||(previous=$ul.find(".active:last a")[0],e=$.Event("show",{relatedTarget:previous}),$this.trigger(e),e.isDefaultPrevented()||($target=$(selector),this.activate($this.parent("li"),$ul),this.activate($target,$target.parent(),function(){$this.trigger({type:"shown",relatedTarget:previous})})))},activate:function(element,container,callback){function next(){$active.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),element.addClass("active"),transition?(element[0].offsetWidth,element.addClass("in")):element.removeClass("fade"),element.parent(".dropdown-menu")&&element.closest("li.dropdown").addClass("active"),callback&&callback()}var $active=container.find("> .active"),transition=callback&&$.support.transition&&$active.hasClass("fade");transition?$active.one($.support.transition.end,next):next(),$active.removeClass("in")}};var old=$.fn.tab;$.fn.tab=function(option){return this.each(function(){var $this=$(this),data=$this.data("tab");data||$this.data("tab",data=new Tab(this)),"string"==typeof option&&data[option]()})},$.fn.tab.Constructor=Tab,$.fn.tab.noConflict=function(){return $.fn.tab=old,this},$(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(e){e.preventDefault(),$(this).tab("show")})}(window.jQuery),!function($){"use strict";var Typeahead=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.typeahead.defaults,options),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=$(this.options.menu),this.shown=!1,this.listen()};Typeahead.prototype={constructor:Typeahead,select:function(){var val=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(val)).change(),this.hide()},updater:function(item){return item},show:function(){var pos=$.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:pos.top+pos.height,left:pos.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(){var items;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(items=$.isFunction(this.source)?this.source(this.query,$.proxy(this.process,this)):this.source,items?this.process(items):this)},process:function(items){var that=this;return items=$.grep(items,function(item){return that.matcher(item)}),items=this.sorter(items),items.length?this.render(items.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(item){return~item.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(items){for(var item,beginswith=[],caseSensitive=[],caseInsensitive=[];item=items.shift();)item.toLowerCase().indexOf(this.query.toLowerCase())?~item.indexOf(this.query)?caseSensitive.push(item):caseInsensitive.push(item):beginswith.push(item);return beginswith.concat(caseSensitive,caseInsensitive)},highlighter:function(item){var query=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return item.replace(RegExp("("+query+")","ig"),function($1,match){return"<strong>"+match+"</strong>"})},render:function(items){var that=this;return items=$(items).map(function(i,item){return i=$(that.options.item).attr("data-value",item),i.find("a").html(that.highlighter(item)),i[0]}),items.first().addClass("active"),this.$menu.html(items),this},next:function(){var active=this.$menu.find(".active").removeClass("active"),next=active.next();next.length||(next=$(this.$menu.find("li")[0])),next.addClass("active")},prev:function(){var active=this.$menu.find(".active").removeClass("active"),prev=active.prev();prev.length||(prev=this.$menu.find("li").last()),prev.addClass("active")},listen:function(){this.$element.on("blur",$.proxy(this.blur,this)).on("keypress",$.proxy(this.keypress,this)).on("keyup",$.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",$.proxy(this.keydown,this)),this.$menu.on("click",$.proxy(this.click,this)).on("mouseenter","li",$.proxy(this.mouseenter,this))},eventSupported:function(eventName){var isSupported=eventName in this.$element;return isSupported||(this.$element.setAttribute(eventName,"return;"),isSupported="function"==typeof this.$element[eventName]),isSupported},move:function(e){if(this.shown){switch(e.keyCode){case 9:case 13:case 27:e.preventDefault();break;case 38:e.preventDefault(),this.prev();break;case 40:e.preventDefault(),this.next()}e.stopPropagation()}},keydown:function(e){this.suppressKeyPressRepeat=~$.inArray(e.keyCode,[40,38,9,13,27]),this.move(e)},keypress:function(e){this.suppressKeyPressRepeat||this.move(e)},keyup:function(e){switch(e.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}e.stopPropagation(),e.preventDefault()},blur:function(){var that=this;setTimeout(function(){that.hide()},150)},click:function(e){e.stopPropagation(),e.preventDefault(),this.select()},mouseenter:function(e){this.$menu.find(".active").removeClass("active"),$(e.currentTarget).addClass("active")}};var old=$.fn.typeahead;$.fn.typeahead=function(option){return this.each(function(){var $this=$(this),data=$this.data("typeahead"),options="object"==typeof option&&option;data||$this.data("typeahead",data=new Typeahead(this,options)),"string"==typeof option&&data[option]()})},$.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},$.fn.typeahead.Constructor=Typeahead,$.fn.typeahead.noConflict=function(){return $.fn.typeahead=old,this},$(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(e){var $this=$(this);$this.data("typeahead")||(e.preventDefault(),$this.typeahead($this.data()))})}(window.jQuery),!function($){"use strict";var Affix=function(element,options){this.options=$.extend({},$.fn.affix.defaults,options),this.$window=$(window).on("scroll.affix.data-api",$.proxy(this.checkPosition,this)).on("click.affix.data-api",$.proxy(function(){setTimeout($.proxy(this.checkPosition,this),1)},this)),this.$element=$(element),this.checkPosition()};Affix.prototype.checkPosition=function(){if(this.$element.is(":visible")){var affix,scrollHeight=$(document).height(),scrollTop=this.$window.scrollTop(),position=this.$element.offset(),offset=this.options.offset,offsetBottom=offset.bottom,offsetTop=offset.top,reset="affix affix-top affix-bottom";"object"!=typeof offset&&(offsetBottom=offsetTop=offset),"function"==typeof offsetTop&&(offsetTop=offset.top()),"function"==typeof offsetBottom&&(offsetBottom=offset.bottom()),affix=null!=this.unpin&&scrollTop+this.unpin<=position.top?!1:null!=offsetBottom&&position.top+this.$element.height()>=scrollHeight-offsetBottom?"bottom":null!=offsetTop&&offsetTop>=scrollTop?"top":!1,this.affixed!==affix&&(this.affixed=affix,this.unpin="bottom"==affix?position.top-scrollTop:null,this.$element.removeClass(reset).addClass("affix"+(affix?"-"+affix:"")))}};var old=$.fn.affix;$.fn.affix=function(option){return this.each(function(){var $this=$(this),data=$this.data("affix"),options="object"==typeof option&&option;data||$this.data("affix",data=new Affix(this,options)),"string"==typeof option&&data[option]()})},$.fn.affix.Constructor=Affix,$.fn.affix.defaults={offset:0},$.fn.affix.noConflict=function(){return $.fn.affix=old,this},$(window).on("load",function(){$('[data-spy="affix"]').each(function(){var $spy=$(this),data=$spy.data();data.offset=data.offset||{},data.offsetBottom&&(data.offset.bottom=data.offsetBottom),data.offsetTop&&(data.offset.top=data.offsetTop),$spy.affix(data)})})}(window.jQuery);

public/js/utils/jquery-1.9.0.js

/*! * jQuery JavaScript Library v1.9.0 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2013-1-14 */ (function( window, undefined ) { "use strict"; var // A central reference to the root jQuery(document) rootjQuery, // The deferred used on DOM ready readyList, // Use the correct document accordingly with window argument (sandbox) document = window.document, location = window.location, // Map over jQuery in case of overwrite _jQuery = window.jQuery, // Map over the $ in case of overwrite _$ = window.$, // [[Class]] -> type pairs class2type = {}, // List of deleted data cache ids, so we can reuse them core_deletedIds = [], core_version = "1.9.0", // Save a reference to some core methods core_concat = core_deletedIds.concat, core_push = core_deletedIds.push, core_slice = core_deletedIds.slice, core_indexOf = core_deletedIds.indexOf, core_toString = class2type.toString, core_hasOwn = class2type.hasOwnProperty, core_trim = core_version.trim, // Define a local copy of jQuery jQuery = function( selector, context ) { // The jQuery object is actually just the init constructor 'enhanced' return new jQuery.fn.init( selector, context, rootjQuery ); }, // Used for matching numbers core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, // Used for splitting on whitespace core_rnotwhite = /\S+/g, // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, // A simple way to check for HTML strings // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) // Strict HTML recognition (#11290: must start with <) rquickExpr = /^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/, // Match a standalone tag rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, // JSON RegExp rvalidchars = /^[\],:{}\s]*$/, rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, // Matches dashed string for camelizing rmsPrefix = /^-ms-/, rdashAlpha = /-([\da-z])/gi, // Used by jQuery.camelCase as callback to replace() fcamelCase = function( all, letter ) { return letter.toUpperCase(); }, // The ready event handler and self cleanup method DOMContentLoaded = function() { if ( document.addEventListener ) { document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); jQuery.ready(); } else if ( document.readyState === "complete" ) { // we're here because readyState === "complete" in oldIE // which is good enough for us to call the dom ready! document.detachEvent( "onreadystatechange", DOMContentLoaded ); jQuery.ready(); } }; jQuery.fn = jQuery.prototype = { // The current version of jQuery being used jquery: core_version, constructor: jQuery, init: function( selector, context, rootjQuery ) { var match, elem; // HANDLE: $(""), $(null), $(undefined), $(false) if ( !selector ) { return this; } // Handle HTML strings if ( typeof selector === "string" ) { if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { // Assume that strings that start and end with <> are HTML and skip the regex check match = [ null, selector, null ]; } else { match = rquickExpr.exec( selector ); } // Match html or make sure no context is specified for #id if ( match && (match[1] || !context) ) { // HANDLE: $(html) -> $(array) if ( match[1] ) { context = context instanceof jQuery ? context[0] : context; // scripts is true for back-compat jQuery.merge( this, jQuery.parseHTML( match[1], context && context.nodeType ? context.ownerDocument || context : document, true ) ); // HANDLE: $(html, props) if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { for ( match in context ) { // Properties of context are called as methods if possible if ( jQuery.isFunction( this[ match ] ) ) { this[ match ]( context[ match ] ); // ...and otherwise set as attributes } else { this.attr( match, context[ match ] ); } } } return this; // HANDLE: $(#id) } else { elem = document.getElementById( match[2] ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 if ( elem && elem.parentNode ) { // Handle the case where IE and Opera return items // by name instead of ID if ( elem.id !== match[2] ) { return rootjQuery.find( selector ); } // Otherwise, we inject the element directly into the jQuery object this.length = 1; this[0] = elem; } this.context = document; this.selector = selector; return this; } // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { return ( context || rootjQuery ).find( selector ); // HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) } else { return this.constructor( context ).find( selector ); } // HANDLE: $(DOMElement) } else if ( selector.nodeType ) { this.context = this[0] = selector; this.length = 1; return this; // HANDLE: $(function) // Shortcut for document ready } else if ( jQuery.isFunction( selector ) ) { return rootjQuery.ready( selector ); } if ( selector.selector !== undefined ) { this.selector = selector.selector; this.context = selector.context; } return jQuery.makeArray( selector, this ); }, // Start with an empty selector selector: "", // The default length of a jQuery object is 0 length: 0, // The number of elements contained in the matched element set size: function() { return this.length; }, toArray: function() { return core_slice.call( this ); }, // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { return num == null ? // Return a 'clean' array this.toArray() : // Return just the object ( num < 0 ? this[ this.length + num ] : this[ num ] ); }, // Take an array of elements and push it onto the stack // (returning the new matched element set) pushStack: function( elems ) { // Build a new jQuery matched element set var ret = jQuery.merge( this.constructor(), elems ); // Add the old object onto the stack (as a reference) ret.prevObject = this; ret.context = this.context; // Return the newly-formed element set return ret; }, // Execute a callback for every element in the matched set. // (You can seed the arguments with an array of args, but this is // only used internally.) each: function( callback, args ) { return jQuery.each( this, callback, args ); }, ready: function( fn ) { // Add the callback jQuery.ready.promise().done( fn ); return this; }, slice: function() { return this.pushStack( core_slice.apply( this, arguments ) ); }, first: function() { return this.eq( 0 ); }, last: function() { return this.eq( -1 ); }, eq: function( i ) { var len = this.length, j = +i + ( i < 0 ? len : 0 ); return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); }, map: function( callback ) { return this.pushStack( jQuery.map(this, function( elem, i ) { return callback.call( elem, i, elem ); })); }, end: function() { return this.prevObject || this.constructor(null); }, // For internal use only. // Behaves like an Array's method, not like a jQuery method. push: core_push, sort: [].sort, splice: [].splice }; // Give the init function the jQuery prototype for later instantiation jQuery.fn.init.prototype = jQuery.fn; jQuery.extend = jQuery.fn.extend = function() { var options, name, src, copy, copyIsArray, clone, target = arguments[0] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if ( typeof target === "boolean" ) { deep = target; target = arguments[1] || {}; // skip the boolean and the target i = 2; } // Handle case when target is a string or something (possible in deep copy) if ( typeof target !== "object" && !jQuery.isFunction(target) ) { target = {}; } // extend jQuery itself if only one argument is passed if ( length === i ) { target = this; --i; } for ( ; i < length; i++ ) { // Only deal with non-null/undefined values if ( (options = arguments[ i ]) != null ) { // Extend the base object for ( name in options ) { src = target[ name ]; copy = options[ name ]; // Prevent never-ending loop if ( target === copy ) { continue; } // Recurse if we're merging plain objects or arrays if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { if ( copyIsArray ) { copyIsArray = false; clone = src && jQuery.isArray(src) ? src : []; } else { clone = src && jQuery.isPlainObject(src) ? src : {}; } // Never move original objects, clone them target[ name ] = jQuery.extend( deep, clone, copy ); // Don't bring in undefined values } else if ( copy !== undefined ) { target[ name ] = copy; } } } } // Return the modified object return target; }; jQuery.extend({ noConflict: function( deep ) { if ( window.$ === jQuery ) { window.$ = _$; } if ( deep && window.jQuery === jQuery ) { window.jQuery = _jQuery; } return jQuery; }, // Is the DOM ready to be used? Set to true once it occurs. isReady: false, // A counter to track how many items to wait for before // the ready event fires. See #6781 readyWait: 1, // Hold (or release) the ready event holdReady: function( hold ) { if ( hold ) { jQuery.readyWait++; } else { jQuery.ready( true ); } }, // Handle when the DOM is ready ready: function( wait ) { // Abort if there are pending holds or we're already ready if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { return; } // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( !document.body ) { return setTimeout( jQuery.ready ); } // Remember that the DOM is ready jQuery.isReady = true; // If a normal DOM Ready event fired, decrement, and wait if need be if ( wait !== true && --jQuery.readyWait > 0 ) { return; } // If there are functions bound, to execute readyList.resolveWith( document, [ jQuery ] ); // Trigger any bound ready events if ( jQuery.fn.trigger ) { jQuery( document ).trigger("ready").off("ready"); } }, // See test/unit/core.js for details concerning isFunction. // Since version 1.3, DOM methods and functions like alert // aren't supported. They return false on IE (#2968). isFunction: function( obj ) { return jQuery.type(obj) === "function"; }, isArray: Array.isArray || function( obj ) { return jQuery.type(obj) === "array"; }, isWindow: function( obj ) { return obj != null && obj == obj.window; }, isNumeric: function( obj ) { return !isNaN( parseFloat(obj) ) && isFinite( obj ); }, type: function( obj ) { if ( obj == null ) { return String( obj ); } return typeof obj === "object" || typeof obj === "function" ? class2type[ core_toString.call(obj) ] || "object" : typeof obj; }, isPlainObject: function( obj ) { // Must be an Object. // Because of IE, we also have to check the presence of the constructor property. // Make sure that DOM nodes and window objects don't pass through, as well if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { return false; } try { // Not own constructor property must be Object if ( obj.constructor && !core_hasOwn.call(obj, "constructor") && !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { return false; } } catch ( e ) { // IE8,9 Will throw exceptions on certain host objects #9897 return false; } // Own properties are enumerated firstly, so to speed up, // if last one is own, then all properties are own. var key; for ( key in obj ) {} return key === undefined || core_hasOwn.call( obj, key ); }, isEmptyObject: function( obj ) { var name; for ( name in obj ) { return false; } return true; }, error: function( msg ) { throw new Error( msg ); }, // data: string of html // context (optional): If specified, the fragment will be created in this context, defaults to document // keepScripts (optional): If true, will include scripts passed in the html string parseHTML: function( data, context, keepScripts ) { if ( !data || typeof data !== "string" ) { return null; } if ( typeof context === "boolean" ) { keepScripts = context; context = false; } context = context || document; var parsed = rsingleTag.exec( data ), scripts = !keepScripts && []; // Single tag if ( parsed ) { return [ context.createElement( parsed[1] ) ]; } parsed = jQuery.buildFragment( [ data ], context, scripts ); if ( scripts ) { jQuery( scripts ).remove(); } return jQuery.merge( [], parsed.childNodes ); }, parseJSON: function( data ) { // Attempt to parse using the native JSON parser first if ( window.JSON && window.JSON.parse ) { return window.JSON.parse( data ); } if ( data === null ) { return data; } if ( typeof data === "string" ) { // Make sure leading/trailing whitespace is removed (IE can't handle it) data = jQuery.trim( data ); if ( data ) { // Make sure the incoming data is actual JSON // Logic borrowed from http://json.org/json2.js if ( rvalidchars.test( data.replace( rvalidescape, "@" ) .replace( rvalidtokens, "]" ) .replace( rvalidbraces, "")) ) { return ( new Function( "return " + data ) )(); } } } jQuery.error( "Invalid JSON: " + data ); }, // Cross-browser xml parsing parseXML: function( data ) { var xml, tmp; if ( !data || typeof data !== "string" ) { return null; } try { if ( window.DOMParser ) { // Standard tmp = new DOMParser(); xml = tmp.parseFromString( data , "text/xml" ); } else { // IE xml = new ActiveXObject( "Microsoft.XMLDOM" ); xml.async = "false"; xml.loadXML( data ); } } catch( e ) { xml = undefined; } if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { jQuery.error( "Invalid XML: " + data ); } return xml; }, noop: function() {}, // Evaluates a script in a global context // Workarounds based on findings by Jim Driscoll // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context globalEval: function( data ) { if ( data && jQuery.trim( data ) ) { // We use execScript on Internet Explorer // We use an anonymous function so that context is window // rather than jQuery in Firefox ( window.execScript || function( data ) { window[ "eval" ].call( window, data ); } )( data ); } }, // Convert dashed to camelCase; used by the css and data modules // Microsoft forgot to hump their vendor prefix (#9572) camelCase: function( string ) { return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); }, nodeName: function( elem, name ) { return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); }, // args is for internal usage only each: function( obj, callback, args ) { var value, i = 0, length = obj.length, isArray = isArraylike( obj ); if ( args ) { if ( isArray ) { for ( ; i < length; i++ ) { value = callback.apply( obj[ i ], args ); if ( value === false ) { break; } } } else { for ( i in obj ) { value = callback.apply( obj[ i ], args ); if ( value === false ) { break; } } } // A special, fast, case for the most common use of each } else { if ( isArray ) { for ( ; i < length; i++ ) { value = callback.call( obj[ i ], i, obj[ i ] ); if ( value === false ) { break; } } } else { for ( i in obj ) { value = callback.call( obj[ i ], i, obj[ i ] ); if ( value === false ) { break; } } } } return obj; }, // Use native String.trim function wherever possible trim: core_trim && !core_trim.call("\uFEFF\xA0") ? function( text ) { return text == null ? "" : core_trim.call( text ); } : // Otherwise use our own trimming functionality function( text ) { return text == null ? "" : ( text + "" ).replace( rtrim, "" ); }, // results is for internal usage only makeArray: function( arr, results ) { var ret = results || []; if ( arr != null ) { if ( isArraylike( Object(arr) ) ) { jQuery.merge( ret, typeof arr === "string" ? [ arr ] : arr ); } else { core_push.call( ret, arr ); } } return ret; }, inArray: function( elem, arr, i ) { var len; if ( arr ) { if ( core_indexOf ) { return core_indexOf.call( arr, elem, i ); } len = arr.length; i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; for ( ; i < len; i++ ) { // Skip accessing in sparse arrays if ( i in arr && arr[ i ] === elem ) { return i; } } } return -1; }, merge: function( first, second ) { var l = second.length, i = first.length, j = 0; if ( typeof l === "number" ) { for ( ; j < l; j++ ) { first[ i++ ] = second[ j ]; } } else { while ( second[j] !== undefined ) { first[ i++ ] = second[ j++ ]; } } first.length = i; return first; }, grep: function( elems, callback, inv ) { var retVal, ret = [], i = 0, length = elems.length; inv = !!inv; // Go through the array, only saving the items // that pass the validator function for ( ; i < length; i++ ) { retVal = !!callback( elems[ i ], i ); if ( inv !== retVal ) { ret.push( elems[ i ] ); } } return ret; }, // arg is for internal usage only map: function( elems, callback, arg ) { var value, i = 0, length = elems.length, isArray = isArraylike( elems ), ret = []; // Go through the array, translating each of the items to their if ( isArray ) { for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret[ ret.length ] = value; } } // Go through every key on the object, } else { for ( i in elems ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret[ ret.length ] = value; } } } // Flatten any nested arrays return core_concat.apply( [], ret ); }, // A global GUID counter for objects guid: 1, // Bind a function to a context, optionally partially applying any // arguments. proxy: function( fn, context ) { var tmp, args, proxy; if ( typeof context === "string" ) { tmp = fn[ context ]; context = fn; fn = tmp; } // Quick check to determine if target is callable, in the spec // this throws a TypeError, but we will just return undefined. if ( !jQuery.isFunction( fn ) ) { return undefined; } // Simulated bind args = core_slice.call( arguments, 2 ); proxy = function() { return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); }; // Set the guid of unique handler to the same of original handler, so it can be removed proxy.guid = fn.guid = fn.guid || jQuery.guid++; return proxy; }, // Multifunctional method to get and set values of a collection // The value/s can optionally be executed if it's a function access: function( elems, fn, key, value, chainable, emptyGet, raw ) { var i = 0, length = elems.length, bulk = key == null; // Sets many values if ( jQuery.type( key ) === "object" ) { chainable = true; for ( i in key ) { jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); } // Sets one value } else if ( value !== undefined ) { chainable = true; if ( !jQuery.isFunction( value ) ) { raw = true; } if ( bulk ) { // Bulk operations run against the entire set if ( raw ) { fn.call( elems, value ); fn = null; // ...except when executing function values } else { bulk = fn; fn = function( elem, key, value ) { return bulk.call( jQuery( elem ), value ); }; } } if ( fn ) { for ( ; i < length; i++ ) { fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); } } } return chainable ? elems : // Gets bulk ? fn.call( elems ) : length ? fn( elems[0], key ) : emptyGet; }, now: function() { return ( new Date() ).getTime(); } }); jQuery.ready.promise = function( obj ) { if ( !readyList ) { readyList = jQuery.Deferred(); // Catch cases where $(document).ready() is called after the browser event has already occurred. // we once tried to use readyState "interactive" here, but it caused issues like the one // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 if ( document.readyState === "complete" ) { // Handle it asynchronously to allow scripts the opportunity to delay ready setTimeout( jQuery.ready ); // Standards-based browsers support DOMContentLoaded } else if ( document.addEventListener ) { // Use the handy event callback document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); // A fallback to window.onload, that will always work window.addEventListener( "load", jQuery.ready, false ); // If IE event model is used } else { // Ensure firing before onload, maybe late but safe also for iframes document.attachEvent( "onreadystatechange", DOMContentLoaded ); // A fallback to window.onload, that will always work window.attachEvent( "onload", jQuery.ready ); // If IE and not a frame // continually check to see if the document is ready var top = false; try { top = window.frameElement == null && document.documentElement; } catch(e) {} if ( top && top.doScroll ) { (function doScrollCheck() { if ( !jQuery.isReady ) { try { // Use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ top.doScroll("left"); } catch(e) { return setTimeout( doScrollCheck, 50 ); } // and execute any waiting functions jQuery.ready(); } })(); } } } return readyList.promise( obj ); }; // Populate the class2type map jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); }); function isArraylike( obj ) { var length = obj.length, type = jQuery.type( obj ); if ( jQuery.isWindow( obj ) ) { return false; } if ( obj.nodeType === 1 && length ) { return true; } return type === "array" || type !== "function" && ( length === 0 || typeof length === "number" && length > 0 && ( length - 1 ) in obj ); } // All jQuery objects should point back to these rootjQuery = jQuery(document); // String to Object options format cache var optionsCache = {}; // Convert String-formatted options into Object-formatted ones and store in cache function createOptions( options ) { var object = optionsCache[ options ] = {}; jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { object[ flag ] = true; }); return object; } /* * Create a callback list using the following parameters: * * options: an optional list of space-separated options that will change how * the callback list behaves or a more traditional option object * * By default a callback list will act like an event callback list and can be * "fired" multiple times. * * Possible options: * * once: will ensure the callback list can only be fired once (like a Deferred) * * memory: will keep track of previous values and will call any callback added * after the list has been fired right away with the latest "memorized" * values (like a Deferred) * * unique: will ensure a callback can only be added once (no duplicate in the list) * * stopOnFalse: interrupt callings when a callback returns false * */ jQuery.Callbacks = function( options ) { // Convert options from String-formatted to Object-formatted if needed // (we check in cache first) options = typeof options === "string" ? ( optionsCache[ options ] || createOptions( options ) ) : jQuery.extend( {}, options ); var // Last fire value (for non-forgettable lists) memory, // Flag to know if list was already fired fired, // Flag to know if list is currently firing firing, // First callback to fire (used internally by add and fireWith) firingStart, // End of the loop when firing firingLength, // Index of currently firing callback (modified by remove if needed) firingIndex, // Actual callback list list = [], // Stack of fire calls for repeatable lists stack = !options.once && [], // Fire callbacks fire = function( data ) { memory = options.memory && data; fired = true; firingIndex = firingStart || 0; firingStart = 0; firingLength = list.length; firing = true; for ( ; list && firingIndex < firingLength; firingIndex++ ) { if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { memory = false; // To prevent further calls using add break; } } firing = false; if ( list ) { if ( stack ) { if ( stack.length ) { fire( stack.shift() ); } } else if ( memory ) { list = []; } else { self.disable(); } } }, // Actual Callbacks object self = { // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { // First, we save the current length var start = list.length; (function add( args ) { jQuery.each( args, function( _, arg ) { var type = jQuery.type( arg ); if ( type === "function" ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } } else if ( arg && arg.length && type !== "string" ) { // Inspect recursively add( arg ); } }); })( arguments ); // Do we need to add the callbacks to the // current firing batch? if ( firing ) { firingLength = list.length; // With memory, if we're not firing then // we should call right away } else if ( memory ) { firingStart = start; fire( memory ); } } return this; }, // Remove a callback from the list remove: function() { if ( list ) { jQuery.each( arguments, function( _, arg ) { var index; while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { list.splice( index, 1 ); // Handle firing indexes if ( firing ) { if ( index <= firingLength ) { firingLength--; } if ( index <= firingIndex ) { firingIndex--; } } } }); } return this; }, // Control if a given callback is in the list has: function( fn ) { return jQuery.inArray( fn, list ) > -1; }, // Remove all callbacks from the list empty: function() { list = []; return this; }, // Have the list do nothing anymore disable: function() { list = stack = memory = undefined; return this; }, // Is it disabled? disabled: function() { return !list; }, // Lock the list in its current state lock: function() { stack = undefined; if ( !memory ) { self.disable(); } return this; }, // Is it locked? locked: function() { return !stack; }, // Call all callbacks with the given context and arguments fireWith: function( context, args ) { args = args || []; args = [ context, args.slice ? args.slice() : args ]; if ( list && ( !fired || stack ) ) { if ( firing ) { stack.push( args ); } else { fire( args ); } } return this; }, // Call all the callbacks with the given arguments fire: function() { self.fireWith( this, arguments ); return this; }, // To know if the callbacks have already been called at least once fired: function() { return !!fired; } }; return self; }; jQuery.extend({ Deferred: function( func ) { var tuples = [ // action, add listener, listener list, final state [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], [ "notify", "progress", jQuery.Callbacks("memory") ] ], state = "pending", promise = { state: function() { return state; }, always: function() { deferred.done( arguments ).fail( arguments ); return this; }, then: function( /* fnDone, fnFail, fnProgress */ ) { var fns = arguments; return jQuery.Deferred(function( newDefer ) { jQuery.each( tuples, function( i, tuple ) { var action = tuple[ 0 ], fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; // deferred[ done | fail | progress ] for forwarding actions to newDefer deferred[ tuple[1] ](function() { var returned = fn && fn.apply( this, arguments ); if ( returned && jQuery.isFunction( returned.promise ) ) { returned.promise() .done( newDefer.resolve ) .fail( newDefer.reject ) .progress( newDefer.notify ); } else { newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); } }); }); fns = null; }).promise(); }, // Get a promise for this deferred // If obj is provided, the promise aspect is added to the object promise: function( obj ) { return obj != null ? jQuery.extend( obj, promise ) : promise; } }, deferred = {}; // Keep pipe for back-compat promise.pipe = promise.then; // Add list-specific methods jQuery.each( tuples, function( i, tuple ) { var list = tuple[ 2 ], stateString = tuple[ 3 ]; // promise[ done | fail | progress ] = list.add promise[ tuple[1] ] = list.add; // Handle state if ( stateString ) { list.add(function() { // state = [ resolved | rejected ] state = stateString; // [ reject_list | resolve_list ].disable; progress_list.lock }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); } // deferred[ resolve | reject | notify ] deferred[ tuple[0] ] = function() { deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); return this; }; deferred[ tuple[0] + "With" ] = list.fireWith; }); // Make the deferred a promise promise.promise( deferred ); // Call given func if any if ( func ) { func.call( deferred, deferred ); } // All done! return deferred; }, // Deferred helper when: function( subordinate /* , ..., subordinateN */ ) { var i = 0, resolveValues = core_slice.call( arguments ), length = resolveValues.length, // the count of uncompleted subordinates remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, // the master Deferred. If resolveValues consist of only a single Deferred, just use that. deferred = remaining === 1 ? subordinate : jQuery.Deferred(), // Update function for both resolve and progress values updateFunc = function( i, contexts, values ) { return function( value ) { contexts[ i ] = this; values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; if( values === progressValues ) { deferred.notifyWith( contexts, values ); } else if ( !( --remaining ) ) { deferred.resolveWith( contexts, values ); } }; }, progressValues, progressContexts, resolveContexts; // add listeners to Deferred subordinates; treat others as resolved if ( length > 1 ) { progressValues = new Array( length ); progressContexts = new Array( length ); resolveContexts = new Array( length ); for ( ; i < length; i++ ) { if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { resolveValues[ i ].promise() .done( updateFunc( i, resolveContexts, resolveValues ) ) .fail( deferred.reject ) .progress( updateFunc( i, progressContexts, progressValues ) ); } else { --remaining; } } } // if we're not waiting on anything, resolve the master if ( !remaining ) { deferred.resolveWith( resolveContexts, resolveValues ); } return deferred.promise(); } }); jQuery.support = (function() { var support, all, a, select, opt, input, fragment, eventName, isSupported, i, div = document.createElement("div"); // Setup div.setAttribute( "className", "t" ); div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; // Support tests won't run in some limited or non-browser environments all = div.getElementsByTagName("*"); a = div.getElementsByTagName("a")[ 0 ]; if ( !all || !a || !all.length ) { return {}; } // First batch of tests select = document.createElement("select"); opt = select.appendChild( document.createElement("option") ); input = div.getElementsByTagName("input")[ 0 ]; a.style.cssText = "top:1px;float:left;opacity:.5"; support = { // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) getSetAttribute: div.className !== "t", // IE strips leading whitespace when .innerHTML is used leadingWhitespace: div.firstChild.nodeType === 3, // Make sure that tbody elements aren't automatically inserted // IE will insert them into empty tables tbody: !div.getElementsByTagName("tbody").length, // Make sure that link elements get serialized correctly by innerHTML // This requires a wrapper element in IE htmlSerialize: !!div.getElementsByTagName("link").length, // Get the style information from getAttribute // (IE uses .cssText instead) style: /top/.test( a.getAttribute("style") ), // Make sure that URLs aren't manipulated // (IE normalizes it by default) hrefNormalized: a.getAttribute("href") === "/a", // Make sure that element opacity exists // (IE uses filter instead) // Use a regex to work around a WebKit issue. See #5145 opacity: /^0.5/.test( a.style.opacity ), // Verify style float existence // (IE uses styleFloat instead of cssFloat) cssFloat: !!a.style.cssFloat, // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) checkOn: !!input.value, // Make sure that a selected-by-default option has a working selected property. // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) optSelected: opt.selected, // Tests for enctype support on a form (#6743) enctype: !!document.createElement("form").enctype, // Makes sure cloning an html5 element does not cause problems // Where outerHTML is undefined, this still works html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>", // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode boxModel: document.compatMode === "CSS1Compat", // Will be defined later deleteExpando: true, noCloneEvent: true, inlineBlockNeedsLayout: false, shrinkWrapBlocks: false, reliableMarginRight: true, boxSizingReliable: true, pixelPosition: false }; // Make sure checked status is properly cloned input.checked = true; support.noCloneChecked = input.cloneNode( true ).checked; // Make sure that the options inside disabled selects aren't marked as disabled // (WebKit marks them as disabled) select.disabled = true; support.optDisabled = !opt.disabled; // Support: IE<9 try { delete div.test; } catch( e ) { support.deleteExpando = false; } // Check if we can trust getAttribute("value") input = document.createElement("input"); input.setAttribute( "value", "" ); support.input = input.getAttribute( "value" ) === ""; // Check if an input maintains its value after becoming a radio input.value = "t"; input.setAttribute( "type", "radio" ); support.radioValue = input.value === "t"; // #11217 - WebKit loses check when the name is after the checked attribute input.setAttribute( "checked", "t" ); input.setAttribute( "name", "t" ); fragment = document.createDocumentFragment(); fragment.appendChild( input ); // Check if a disconnected checkbox will retain its checked // value of true after appended to the DOM (IE6/7) support.appendChecked = input.checked; // WebKit doesn't clone checked state correctly in fragments support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; // Support: IE<9 // Opera does not clone events (and typeof div.attachEvent === undefined). // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() if ( div.attachEvent ) { div.attachEvent( "onclick", function() { support.noCloneEvent = false; }); div.cloneNode( true ).click(); } // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP), test/csp.php for ( i in { submit: true, change: true, focusin: true }) { div.setAttribute( eventName = "on" + i, "t" ); support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; } div.style.backgroundClip = "content-box"; div.cloneNode( true ).style.backgroundClip = ""; support.clearCloneStyle = div.style.backgroundClip === "content-box"; // Run tests that need a body at doc ready jQuery(function() { var container, marginDiv, tds, divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", body = document.getElementsByTagName("body")[0]; if ( !body ) { // Return for frameset docs that don't have a body return; } container = document.createElement("div"); container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; body.appendChild( container ).appendChild( div ); // Support: IE8 // Check if table cells still have offsetWidth/Height when they are set // to display:none and there are still other visible table cells in a // table row; if so, offsetWidth/Height are not reliable for use when // determining if an element has been hidden directly using // display:none (it is still safe to use offsets if a parent element is // hidden; don safety goggles and see bug #4512 for more information). div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>"; tds = div.getElementsByTagName("td"); tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; isSupported = ( tds[ 0 ].offsetHeight === 0 ); tds[ 0 ].style.display = ""; tds[ 1 ].style.display = "none"; // Support: IE8 // Check if empty table cells still have offsetWidth/Height support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); // Check box-sizing and margin behavior div.innerHTML = ""; div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; support.boxSizing = ( div.offsetWidth === 4 ); support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 ); // Use window.getComputedStyle because jsdom on node.js will break without it. if ( window.getComputedStyle ) { support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; // Check if div with explicit width and no margin-right incorrectly // gets computed margin-right based on width of container. (#3333) // Fails in WebKit before Feb 2011 nightlies // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right marginDiv = div.appendChild( document.createElement("div") ); marginDiv.style.cssText = div.style.cssText = divReset; marginDiv.style.marginRight = marginDiv.style.width = "0"; div.style.width = "1px"; support.reliableMarginRight = !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); } if ( typeof div.style.zoom !== "undefined" ) { // Support: IE<8 // Check if natively block-level elements act like inline-block // elements when setting their display to 'inline' and giving // them layout div.innerHTML = ""; div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); // Support: IE6 // Check if elements with layout shrink-wrap their children div.style.display = "block"; div.innerHTML = "<div></div>"; div.firstChild.style.width = "5px"; support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); // Prevent IE 6 from affecting layout for positioned elements #11048 // Prevent IE from shrinking the body in IE 7 mode #12869 body.style.zoom = 1; } body.removeChild( container ); // Null elements to avoid leaks in IE container = div = tds = marginDiv = null; }); // Null elements to avoid leaks in IE all = select = fragment = opt = a = input = null; return support; })(); var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, rmultiDash = /([A-Z])/g; function internalData( elem, name, data, pvt /* Internal Use Only */ ){ if ( !jQuery.acceptData( elem ) ) { return; } var thisCache, ret, internalKey = jQuery.expando, getByName = typeof name === "string", // We have to handle DOM nodes and JS objects differently because IE6-7 // can't GC object references properly across the DOM-JS boundary isNode = elem.nodeType, // Only DOM nodes need the global jQuery cache; JS object data is // attached directly to the object so GC can occur automatically cache = isNode ? jQuery.cache : elem, // Only defining an ID for JS objects if its cache already exists allows // the code to shortcut on the same path as a DOM node with no cache id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; // Avoid doing any more work than we need to when trying to get data on an // object that has no data at all if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) { return; } if ( !id ) { // Only DOM nodes need a new unique ID for each element since their data // ends up in the global cache if ( isNode ) { elem[ internalKey ] = id = core_deletedIds.pop() || jQuery.guid++; } else { id = internalKey; } } if ( !cache[ id ] ) { cache[ id ] = {}; // Avoids exposing jQuery metadata on plain JS objects when the object // is serialized using JSON.stringify if ( !isNode ) { cache[ id ].toJSON = jQuery.noop; } } // An object can be passed to jQuery.data instead of a key/value pair; this gets // shallow copied over onto the existing cache if ( typeof name === "object" || typeof name === "function" ) { if ( pvt ) { cache[ id ] = jQuery.extend( cache[ id ], name ); } else { cache[ id ].data = jQuery.extend( cache[ id ].data, name ); } } thisCache = cache[ id ]; // jQuery data() is stored in a separate object inside the object's internal data // cache in order to avoid key collisions between internal data and user-defined // data. if ( !pvt ) { if ( !thisCache.data ) { thisCache.data = {}; } thisCache = thisCache.data; } if ( data !== undefined ) { thisCache[ jQuery.camelCase( name ) ] = data; } // Check for both converted-to-camel and non-converted data property names // If a data property was specified if ( getByName ) { // First Try to find as-is property data ret = thisCache[ name ]; // Test for null|undefined property data if ( ret == null ) { // Try to find the camelCased property ret = thisCache[ jQuery.camelCase( name ) ]; } } else { ret = thisCache; } return ret; } function internalRemoveData( elem, name, pvt /* For internal use only */ ){ if ( !jQuery.acceptData( elem ) ) { return; } var thisCache, i, l, isNode = elem.nodeType, // See jQuery.data for more information cache = isNode ? jQuery.cache : elem, id = isNode ? elem[ jQuery.expando ] : jQuery.expando; // If there is already no cache entry for this object, there is no // purpose in continuing if ( !cache[ id ] ) { return; } if ( name ) { thisCache = pvt ? cache[ id ] : cache[ id ].data; if ( thisCache ) { // Support array or space separated string names for data keys if ( !jQuery.isArray( name ) ) { // try the string as a key before any manipulation if ( name in thisCache ) { name = [ name ]; } else { // split the camel cased version by spaces unless a key with the spaces exists name = jQuery.camelCase( name ); if ( name in thisCache ) { name = [ name ]; } else { name = name.split(" "); } } } else { // If "name" is an array of keys... // When data is initially created, via ("key", "val") signature, // keys will be converted to camelCase. // Since there is no way to tell _how_ a key was added, remove // both plain key and camelCase key. #12786 // This will only penalize the array argument path. name = name.concat( jQuery.map( name, jQuery.camelCase ) ); } for ( i = 0, l = name.length; i < l; i++ ) { delete thisCache[ name[i] ]; } // If there is no data left in the cache, we want to continue // and let the cache object itself get destroyed if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { return; } } } // See jQuery.data for more information if ( !pvt ) { delete cache[ id ].data; // Don't destroy the parent cache unless the internal data object // had been the only thing left in it if ( !isEmptyDataObject( cache[ id ] ) ) { return; } } // Destroy the cache if ( isNode ) { jQuery.cleanData( [ elem ], true ); // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) } else if ( jQuery.support.deleteExpando || cache != cache.window ) { delete cache[ id ]; // When all else fails, null } else { cache[ id ] = null; } } jQuery.extend({ cache: {}, // Unique for each copy of jQuery on the page // Non-digits removed to match rinlinejQuery expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), // The following elements throw uncatchable exceptions if you // attempt to add expando properties to them. noData: { "embed": true, // Ban all objects except for Flash (which handle expandos) "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", "applet": true }, hasData: function( elem ) { elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; return !!elem && !isEmptyDataObject( elem ); }, data: function( elem, name, data ) { return internalData( elem, name, data, false ); }, removeData: function( elem, name ) { return internalRemoveData( elem, name, false ); }, // For internal use only. _data: function( elem, name, data ) { return internalData( elem, name, data, true ); }, _removeData: function( elem, name ) { return internalRemoveData( elem, name, true ); }, // A method for determining if a DOM node can handle the data expando acceptData: function( elem ) { var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; // nodes accept data unless otherwise specified; rejection can be conditional return !noData || noData !== true && elem.getAttribute("classid") === noData; } }); jQuery.fn.extend({ data: function( key, value ) { var attrs, name, elem = this[0], i = 0, data = null; // Gets all values if ( key === undefined ) { if ( this.length ) { data = jQuery.data( elem ); if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { attrs = elem.attributes; for ( ; i < attrs.length; i++ ) { name = attrs[i].name; if ( !name.indexOf( "data-" ) ) { name = jQuery.camelCase( name.substring(5) ); dataAttr( elem, name, data[ name ] ); } } jQuery._data( elem, "parsedAttrs", true ); } } return data; } // Sets multiple values if ( typeof key === "object" ) { return this.each(function() { jQuery.data( this, key ); }); } return jQuery.access( this, function( value ) { if ( value === undefined ) { // Try to fetch any internally stored data first return elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; } this.each(function() { jQuery.data( this, key, value ); }); }, null, value, arguments.length > 1, null, true ); }, removeData: function( key ) { return this.each(function() { jQuery.removeData( this, key ); }); } }); function dataAttr( elem, key, data ) { // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); data = elem.getAttribute( name ); if ( typeof data === "string" ) { try { data = data === "true" ? true : data === "false" ? false : data === "null" ? null : // Only convert to a number if it doesn't change the string +data + "" === data ? +data : rbrace.test( data ) ? jQuery.parseJSON( data ) : data; } catch( e ) {} // Make sure we set the data so it isn't changed later jQuery.data( elem, key, data ); } else { data = undefined; } } return data; } // checks a cache object for emptiness function isEmptyDataObject( obj ) { var name; for ( name in obj ) { // if the public data object is empty, the private is still empty if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { continue; } if ( name !== "toJSON" ) { return false; } } return true; } jQuery.extend({ queue: function( elem, type, data ) { var queue; if ( elem ) { type = ( type || "fx" ) + "queue"; queue = jQuery._data( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { if ( !queue || jQuery.isArray(data) ) { queue = jQuery._data( elem, type, jQuery.makeArray(data) ); } else { queue.push( data ); } } return queue || []; } }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), startLength = queue.length, fn = queue.shift(), hooks = jQuery._queueHooks( elem, type ), next = function() { jQuery.dequeue( elem, type ); }; // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); startLength--; } hooks.cur = fn; if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift( "inprogress" ); } // clear up the last queue stop function delete hooks.stop; fn.call( elem, next, hooks ); } if ( !startLength && hooks ) { hooks.empty.fire(); } }, // not intended for public consumption - generates a queueHooks object, or returns the current one _queueHooks: function( elem, type ) { var key = type + "queueHooks"; return jQuery._data( elem, key ) || jQuery._data( elem, key, { empty: jQuery.Callbacks("once memory").add(function() { jQuery._removeData( elem, type + "queue" ); jQuery._removeData( elem, key ); }) }); } }); jQuery.fn.extend({ queue: function( type, data ) { var setter = 2; if ( typeof type !== "string" ) { data = type; type = "fx"; setter--; } if ( arguments.length < setter ) { return jQuery.queue( this[0], type ); } return data === undefined ? this : this.each(function() { var queue = jQuery.queue( this, type, data ); // ensure a hooks for this queue jQuery._queueHooks( this, type ); if ( type === "fx" && queue[0] !== "inprogress" ) { jQuery.dequeue( this, type ); } }); }, dequeue: function( type ) { return this.each(function() { jQuery.dequeue( this, type ); }); }, // Based off of the plugin by Clint Helfers, with permission. // http://blindsignals.com/index.php/2009/07/jquery-delay/ delay: function( time, type ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; type = type || "fx"; return this.queue( type, function( next, hooks ) { var timeout = setTimeout( next, time ); hooks.stop = function() { clearTimeout( timeout ); }; }); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); }, // Get a promise resolved when queues of a certain type // are emptied (fx is the type by default) promise: function( type, obj ) { var tmp, count = 1, defer = jQuery.Deferred(), elements = this, i = this.length, resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }; if ( typeof type !== "string" ) { obj = type; type = undefined; } type = type || "fx"; while( i-- ) { tmp = jQuery._data( elements[ i ], type + "queueHooks" ); if ( tmp && tmp.empty ) { count++; tmp.empty.add( resolve ); } } resolve(); return defer.promise( obj ); } }); var nodeHook, boolHook, rclass = /[\t\r\n]/g, rreturn = /\r/g, rfocusable = /^(?:input|select|textarea|button|object)$/i, rclickable = /^(?:a|area)$/i, rboolean = /^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i, ruseDefault = /^(?:checked|selected)$/i, getSetAttribute = jQuery.support.getSetAttribute, getSetInput = jQuery.support.input; jQuery.fn.extend({ attr: function( name, value ) { return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); }, removeAttr: function( name ) { return this.each(function() { jQuery.removeAttr( this, name ); }); }, prop: function( name, value ) { return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); }, removeProp: function( name ) { name = jQuery.propFix[ name ] || name; return this.each(function() { // try/catch handles cases where IE balks (such as removing a property on window) try { this[ name ] = undefined; delete this[ name ]; } catch( e ) {} }); }, addClass: function( value ) { var classes, elem, cur, clazz, j, i = 0, len = this.length, proceed = typeof value === "string" && value; if ( jQuery.isFunction( value ) ) { return this.each(function( j ) { jQuery( this ).addClass( value.call( this, j, this.className ) ); }); } if ( proceed ) { // The disjunction here is for better compressibility (see removeClass) classes = ( value || "" ).match( core_rnotwhite ) || []; for ( ; i < len; i++ ) { elem = this[ i ]; cur = elem.nodeType === 1 && ( elem.className ? ( " " + elem.className + " " ).replace( rclass, " " ) : " " ); if ( cur ) { j = 0; while ( (clazz = classes[j++]) ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) { cur += clazz + " "; } } elem.className = jQuery.trim( cur ); } } } return this; }, removeClass: function( value ) { var classes, elem, cur, clazz, j, i = 0, len = this.length, proceed = arguments.length === 0 || typeof value === "string" && value; if ( jQuery.isFunction( value ) ) { return this.each(function( j ) { jQuery( this ).removeClass( value.call( this, j, this.className ) ); }); } if ( proceed ) { classes = ( value || "" ).match( core_rnotwhite ) || []; for ( ; i < len; i++ ) { elem = this[ i ]; // This expression is here for better compressibility (see addClass) cur = elem.nodeType === 1 && ( elem.className ? ( " " + elem.className + " " ).replace( rclass, " " ) : "" ); if ( cur ) { j = 0; while ( (clazz = classes[j++]) ) { // Remove *all* instances while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { cur = cur.replace( " " + clazz + " ", " " ); } } elem.className = value ? jQuery.trim( cur ) : ""; } } } return this; }, toggleClass: function( value, stateVal ) { var type = typeof value, isBool = typeof stateVal === "boolean"; if ( jQuery.isFunction( value ) ) { return this.each(function( i ) { jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); }); } return this.each(function() { if ( type === "string" ) { // toggle individual class names var className, i = 0, self = jQuery( this ), state = stateVal, classNames = value.match( core_rnotwhite ) || []; while ( (className = classNames[ i++ ]) ) { // check each className given, space separated list state = isBool ? state : !self.hasClass( className ); self[ state ? "addClass" : "removeClass" ]( className ); } // Toggle whole class name } else if ( type === "undefined" || type === "boolean" ) { if ( this.className ) { // store className if set jQuery._data( this, "__className__", this.className ); } // If the element has a class name or if we're passed "false", // then remove the whole classname (if there was one, the above saved it). // Otherwise bring back whatever was previously saved (if anything), // falling back to the empty string if nothing was stored. this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; } }); }, hasClass: function( selector ) { var className = " " + selector + " ", i = 0, l = this.length; for ( ; i < l; i++ ) { if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { return true; } } return false; }, val: function( value ) { var hooks, ret, isFunction, elem = this[0]; if ( !arguments.length ) { if ( elem ) { hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { return ret; } ret = elem.value; return typeof ret === "string" ? // handle most common string cases ret.replace(rreturn, "") : // handle cases where value is null/undef or number ret == null ? "" : ret; } return; } isFunction = jQuery.isFunction( value ); return this.each(function( i ) { var val, self = jQuery(this); if ( this.nodeType !== 1 ) { return; } if ( isFunction ) { val = value.call( this, i, self.val() ); } else { val = value; } // Treat null/undefined as ""; convert numbers to string if ( val == null ) { val = ""; } else if ( typeof val === "number" ) { val += ""; } else if ( jQuery.isArray( val ) ) { val = jQuery.map(val, function ( value ) { return value == null ? "" : value + ""; }); } hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; // If set returns undefined, fall back to normal setting if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { this.value = val; } }); } }); jQuery.extend({ valHooks: { option: { get: function( elem ) { // attributes.value is undefined in Blackberry 4.7 but // uses .value. See #6932 var val = elem.attributes.value; return !val || val.specified ? elem.value : elem.text; } }, select: { get: function( elem ) { var value, option, options = elem.options, index = elem.selectedIndex, one = elem.type === "select-one" || index < 0, values = one ? null : [], max = one ? index + 1 : options.length, i = index < 0 ? max : one ? index : 0; // Loop through all the selected options for ( ; i < max; i++ ) { option = options[ i ]; // oldIE doesn't update selected after form reset (#2551) if ( ( option.selected || i === index ) && // Don't return options that are disabled or in a disabled optgroup ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { // Get the specific value for the option value = jQuery( option ).val(); // We don't need an array for one selects if ( one ) { return value; } // Multi-Selects return an array values.push( value ); } } return values; }, set: function( elem, value ) { var values = jQuery.makeArray( value ); jQuery(elem).find("option").each(function() { this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; }); if ( !values.length ) { elem.selectedIndex = -1; } return values; } } }, attr: function( elem, name, value ) { var ret, hooks, notxml, nType = elem.nodeType; // don't get/set attributes on text, comment and attribute nodes if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { return; } // Fallback to prop when attributes are not supported if ( typeof elem.getAttribute === "undefined" ) { return jQuery.prop( elem, name, value ); } notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); // All attributes are lowercase // Grab necessary hook if one is defined if ( notxml ) { name = name.toLowerCase(); hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); } if ( value !== undefined ) { if ( value === null ) { jQuery.removeAttr( elem, name ); } else if ( hooks && notxml && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { return ret; } else { elem.setAttribute( name, value + "" ); return value; } } else if ( hooks && notxml && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { return ret; } else { // In IE9+, Flash objects don't have .getAttribute (#12945) // Support: IE9+ if ( typeof elem.getAttribute !== "undefined" ) { ret = elem.getAttribute( name ); } // Non-existent attributes return null, we normalize to undefined return ret == null ? undefined : ret; } }, removeAttr: function( elem, value ) { var name, propName, i = 0, attrNames = value && value.match( core_rnotwhite ); if ( attrNames && elem.nodeType === 1 ) { while ( (name = attrNames[i++]) ) { propName = jQuery.propFix[ name ] || name; // Boolean attributes get special treatment (#10870) if ( rboolean.test( name ) ) { // Set corresponding property to false for boolean attributes // Also clear defaultChecked/defaultSelected (if appropriate) for IE<8 if ( !getSetAttribute && ruseDefault.test( name ) ) { elem[ jQuery.camelCase( "default-" + name ) ] = elem[ propName ] = false; } else { elem[ propName ] = false; } // See #9699 for explanation of this approach (setting first, then removal) } else { jQuery.attr( elem, name, "" ); } elem.removeAttribute( getSetAttribute ? name : propName ); } } }, attrHooks: { type: { set: function( elem, value ) { if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { // Setting the type on a radio button after the value resets the value in IE6-9 // Reset value to default in case type is set after value during creation var val = elem.value; elem.setAttribute( "type", value ); if ( val ) { elem.value = val; } return value; } } } }, propFix: { tabindex: "tabIndex", readonly: "readOnly", "for": "htmlFor", "class": "className", maxlength: "maxLength", cellspacing: "cellSpacing", cellpadding: "cellPadding", rowspan: "rowSpan", colspan: "colSpan", usemap: "useMap", frameborder: "frameBorder", contenteditable: "contentEditable" }, prop: function( elem, name, value ) { var ret, hooks, notxml, nType = elem.nodeType; // don't get/set properties on text, comment and attribute nodes if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { return; } notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); if ( notxml ) { // Fix name and attach hooks name = jQuery.propFix[ name ] || name; hooks = jQuery.propHooks[ name ]; } if ( value !== undefined ) { if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { return ret; } else { return ( elem[ name ] = value ); } } else { if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { return ret; } else { return elem[ name ]; } } }, propHooks: { tabIndex: { get: function( elem ) { // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ var attributeNode = elem.getAttributeNode("tabindex"); return attributeNode && attributeNode.specified ? parseInt( attributeNode.value, 10 ) : rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? 0 : undefined; } } } }); // Hook for boolean attributes boolHook = { get: function( elem, name ) { var // Use .prop to determine if this attribute is understood as boolean prop = jQuery.prop( elem, name ), // Fetch it accordingly attr = typeof prop === "boolean" && elem.getAttribute( name ), detail = typeof prop === "boolean" ? getSetInput && getSetAttribute ? attr != null : // oldIE fabricates an empty string for missing boolean attributes // and conflates checked/selected into attroperties ruseDefault.test( name ) ? elem[ jQuery.camelCase( "default-" + name ) ] : !!attr : // fetch an attribute node for properties not recognized as boolean elem.getAttributeNode( name ); return detail && detail.value !== false ? name.toLowerCase() : undefined; }, set: function( elem, value, name ) { if ( value === false ) { // Remove boolean attributes when set to false jQuery.removeAttr( elem, name ); } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { // IE<8 needs the *property* name elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); // Use defaultChecked and defaultSelected for oldIE } else { elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; } return name; } }; // fix oldIE value attroperty if ( !getSetInput || !getSetAttribute ) { jQuery.attrHooks.value = { get: function( elem, name ) { var ret = elem.getAttributeNode( name ); return jQuery.nodeName( elem, "input" ) ? // Ignore the value *property* by using defaultValue elem.defaultValue : ret && ret.specified ? ret.value : undefined; }, set: function( elem, value, name ) { if ( jQuery.nodeName( elem, "input" ) ) { // Does not return so that setAttribute is also used elem.defaultValue = value; } else { // Use nodeHook if defined (#1954); otherwise setAttribute is fine return nodeHook && nodeHook.set( elem, value, name ); } } }; } // IE6/7 do not support getting/setting some attributes with get/setAttribute if ( !getSetAttribute ) { // Use this for any attribute in IE6/7 // This fixes almost every IE6/7 issue nodeHook = jQuery.valHooks.button = { get: function( elem, name ) { var ret = elem.getAttributeNode( name ); return ret && ( name === "id" || name === "name" || name === "coords" ? ret.value !== "" : ret.specified ) ? ret.value : undefined; }, set: function( elem, value, name ) { // Set the existing or create a new attribute node var ret = elem.getAttributeNode( name ); if ( !ret ) { elem.setAttributeNode( (ret = elem.ownerDocument.createAttribute( name )) ); } ret.value = value += ""; // Break association with cloned elements by also using setAttribute (#9646) return name === "value" || value === elem.getAttribute( name ) ? value : undefined; } }; // Set contenteditable to false on removals(#10429) // Setting to empty string throws an error as an invalid value jQuery.attrHooks.contenteditable = { get: nodeHook.get, set: function( elem, value, name ) { nodeHook.set( elem, value === "" ? false : value, name ); } }; // Set width and height to auto instead of 0 on empty string( Bug #8150 ) // This is for removals jQuery.each([ "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { set: function( elem, value ) { if ( value === "" ) { elem.setAttribute( name, "auto" ); return value; } } }); }); } // Some attributes require a special call on IE // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx if ( !jQuery.support.hrefNormalized ) { jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { get: function( elem ) { var ret = elem.getAttribute( name, 2 ); return ret == null ? undefined : ret; } }); }); // href/src property should get the full normalized URL (#10299/#12915) jQuery.each([ "href", "src" ], function( i, name ) { jQuery.propHooks[ name ] = { get: function( elem ) { return elem.getAttribute( name, 4 ); } }; }); } if ( !jQuery.support.style ) { jQuery.attrHooks.style = { get: function( elem ) { // Return undefined in the case of empty string // Note: IE uppercases css property names, but if we were to .toLowerCase() // .cssText, that would destroy case senstitivity in URL's, like in "background" return elem.style.cssText || undefined; }, set: function( elem, value ) { return ( elem.style.cssText = value + "" ); } }; } // Safari mis-reports the default selected property of an option // Accessing the parent's selectedIndex property fixes it if ( !jQuery.support.optSelected ) { jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { get: function( elem ) { var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; // Make sure that it also works with optgroups, see #5701 if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } return null; } }); } // IE6/7 call enctype encoding if ( !jQuery.support.enctype ) { jQuery.propFix.enctype = "encoding"; } // Radios and checkboxes getter/setter if ( !jQuery.support.checkOn ) { jQuery.each([ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = { get: function( elem ) { // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified return elem.getAttribute("value") === null ? "on" : elem.value; } }; }); } jQuery.each([ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { set: function( elem, value ) { if ( jQuery.isArray( value ) ) { return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); } } }); }); var rformElems = /^(?:input|select|textarea)$/i, rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|contextmenu)|click/, rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; function returnTrue() { return true; } function returnFalse() { return false; } /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { global: {}, add: function( elem, types, handler, data, selector ) { var handleObjIn, eventHandle, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, // Don't attach events to noData or text/comment nodes (but allow plain objects) elemData = elem.nodeType !== 3 && elem.nodeType !== 8 && jQuery._data( elem ); if ( !elemData ) { return; } // Caller can pass in an object of custom data in lieu of the handler if ( handler.handler ) { handleObjIn = handler; handler = handleObjIn.handler; selector = handleObjIn.selector; } // Make sure that the handler has a unique ID, used to find/remove it later if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure and main handler, if this is the first if ( !(events = elemData.events) ) { events = elemData.events = {}; } if ( !(eventHandle = elemData.handle) ) { eventHandle = elemData.handle = function( e ) { // Discard the second event of a jQuery.event.trigger() and // when an event is called after a page has unloaded return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : undefined; }; // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events eventHandle.elem = elem; } // Handle multiple events separated by a space // jQuery(...).bind("mouseover mouseout", fn); types = ( types || "" ).match( core_rnotwhite ) || [""]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[t] ) || []; type = origType = tmp[1]; namespaces = ( tmp[2] || "" ).split( "." ).sort(); // If event changes its type, use the special event handlers for the changed type special = jQuery.event.special[ type ] || {}; // If selector defined, determine special event api type, otherwise given type type = ( selector ? special.delegateType : special.bindType ) || type; // Update special based on newly reset type special = jQuery.event.special[ type ] || {}; // handleObj is passed to all event handlers handleObj = jQuery.extend({ type: type, origType: origType, data: data, handler: handler, guid: handler.guid, selector: selector, needsContext: selector && jQuery.expr.match.needsContext.test( selector ), namespace: namespaces.join(".") }, handleObjIn ); // Init the event handler queue if we're the first if ( !(handlers = events[ type ]) ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener/attachEvent if the special events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { // Bind the global event handler to the element if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle, false ); } else if ( elem.attachEvent ) { elem.attachEvent( "on" + type, eventHandle ); } } } if ( special.add ) { special.add.call( elem, handleObj ); if ( !handleObj.handler.guid ) { handleObj.handler.guid = handler.guid; } } // Add to the element's handler list, delegates in front if ( selector ) { handlers.splice( handlers.delegateCount++, 0, handleObj ); } else { handlers.push( handleObj ); } // Keep track of which events have ever been used, for event optimization jQuery.event.global[ type ] = true; } // Nullify elem to prevent memory leaks in IE elem = null; }, // Detach an event or set of events from an element remove: function( elem, types, handler, selector, mappedTypes ) { var j, origCount, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = jQuery.hasData( elem ) && jQuery._data( elem ); if ( !elemData || !(events = elemData.events) ) { return; } // Once for each type.namespace in types; type may be omitted types = ( types || "" ).match( core_rnotwhite ) || [""]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[t] ) || []; type = origType = tmp[1]; namespaces = ( tmp[2] || "" ).split( "." ).sort(); // Unbind all events (on this namespace, if provided) for the element if ( !type ) { for ( type in events ) { jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); } continue; } special = jQuery.event.special[ type ] || {}; type = ( selector ? special.delegateType : special.bindType ) || type; handlers = events[ type ] || []; tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); // Remove matching events origCount = j = handlers.length; while ( j-- ) { handleObj = handlers[ j ]; if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !tmp || tmp.test( handleObj.namespace ) ) && ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { handlers.splice( j, 1 ); if ( handleObj.selector ) { handlers.delegateCount--; } if ( special.remove ) { special.remove.call( elem, handleObj ); } } } // Remove generic event handler if we removed something and no more handlers exist // (avoids potential for endless recursion during removal of special event handlers) if ( origCount && !handlers.length ) { if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } delete events[ type ]; } } // Remove the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { delete elemData.handle; // removeData also checks for emptiness and clears the expando if empty // so use it instead of delete jQuery._removeData( elem, "events" ); } }, trigger: function( event, data, elem, onlyHandlers ) { var i, cur, tmp, bubbleType, ontype, handle, special, eventPath = [ elem || document ], type = event.type || event, namespaces = event.namespace ? event.namespace.split(".") : []; cur = tmp = elem = elem || document; // Don't do events on text and comment nodes if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } // focus/blur morphs to focusin/out; ensure we're not firing them right now if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { return; } if ( type.indexOf(".") >= 0 ) { // Namespaced trigger; create a regexp to match event type in handle() namespaces = type.split("."); type = namespaces.shift(); namespaces.sort(); } ontype = type.indexOf(":") < 0 && "on" + type; // Caller can pass in a jQuery.Event object, Object, or just an event type string event = event[ jQuery.expando ] ? event : new jQuery.Event( type, typeof event === "object" && event ); event.isTrigger = true; event.namespace = namespaces.join("."); event.namespace_re = event.namespace ? new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : null; // Clean up the event in case it is being reused event.result = undefined; if ( !event.target ) { event.target = elem; } // Clone any incoming data and prepend the event, creating the handler arg list data = data == null ? [ event ] : jQuery.makeArray( data, [ event ] ); // Allow special events to draw outside the lines special = jQuery.event.special[ type ] || {}; if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { return; } // Determine event propagation path in advance, per W3C events spec (#9951) // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { bubbleType = special.delegateType || type; if ( !rfocusMorph.test( bubbleType + type ) ) { cur = cur.parentNode; } for ( ; cur; cur = cur.parentNode ) { eventPath.push( cur ); tmp = cur; } // Only add window if we got to document (e.g., not plain obj or detached DOM) if ( tmp === (elem.ownerDocument || document) ) { eventPath.push( tmp.defaultView || tmp.parentWindow || window ); } } // Fire handlers on the event path i = 0; while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { event.type = i > 1 ? bubbleType : special.bindType || type; // jQuery handler handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); if ( handle ) { handle.apply( cur, data ); } // Native handler handle = ontype && cur[ ontype ]; if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { event.preventDefault(); } } event.type = type; // If nobody prevented the default action, do it now if ( !onlyHandlers && !event.isDefaultPrevented() ) { if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { // Call a native DOM method on the target with the same name name as the event. // Can't use an .isFunction() check here because IE6/7 fails that test. // Don't do default actions on window, that's where global variables be (#6170) if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { // Don't re-trigger an onFOO event when we call its FOO() method tmp = elem[ ontype ]; if ( tmp ) { elem[ ontype ] = null; } // Prevent re-triggering of the same event, since we already bubbled it above jQuery.event.triggered = type; try { elem[ type ](); } catch ( e ) { // IE<9 dies on focus/blur to hidden element (#1486,#12518) // only reproducible on winXP IE8 native, not IE9 in IE8 mode } jQuery.event.triggered = undefined; if ( tmp ) { elem[ ontype ] = tmp; } } } } return event.result; }, dispatch: function( event ) { // Make a writable jQuery.Event from the native event object event = jQuery.event.fix( event ); var i, j, ret, matched, handleObj, handlerQueue = [], args = core_slice.call( arguments ), handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], special = jQuery.event.special[ event.type ] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event args[0] = event; event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { return; } // Determine handlers handlerQueue = jQuery.event.handlers.call( this, event, handlers ); // Run delegates first; they may want to stop propagation beneath us i = 0; while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { event.currentTarget = matched.elem; j = 0; while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { // Triggered event must either 1) have no namespace, or // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { event.handleObj = handleObj; event.data = handleObj.data; ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) .apply( matched.elem, args ); if ( ret !== undefined ) { if ( (event.result = ret) === false ) { event.preventDefault(); event.stopPropagation(); } } } } } // Call the postDispatch hook for the mapped type if ( special.postDispatch ) { special.postDispatch.call( this, event ); } return event.result; }, handlers: function( event, handlers ) { var i, matches, sel, handleObj, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target; // Find delegate handlers // Black-hole SVG <use> instance trees (#13180) // Avoid non-left-click bubbling in Firefox (#3861) if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { for ( ; cur != this; cur = cur.parentNode || this ) { // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) if ( cur.disabled !== true || event.type !== "click" ) { matches = []; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; // Don't conflict with Object.prototype properties (#13203) sel = handleObj.selector + " "; if ( matches[ sel ] === undefined ) { matches[ sel ] = handleObj.needsContext ? jQuery( sel, this ).index( cur ) >= 0 : jQuery.find( sel, this, null, [ cur ] ).length; } if ( matches[ sel ] ) { matches.push( handleObj ); } } if ( matches.length ) { handlerQueue.push({ elem: cur, handlers: matches }); } } } } // Add the remaining (directly-bound) handlers if ( delegateCount < handlers.length ) { handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); } return handlerQueue; }, fix: function( event ) { if ( event[ jQuery.expando ] ) { return event; } // Create a writable copy of the event object and normalize some properties var i, prop, originalEvent = event, fixHook = jQuery.event.fixHooks[ event.type ] || {}, copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; event = new jQuery.Event( originalEvent ); i = copy.length; while ( i-- ) { prop = copy[ i ]; event[ prop ] = originalEvent[ prop ]; } // Support: IE<9 // Fix target property (#1925) if ( !event.target ) { event.target = originalEvent.srcElement || document; } // Support: Chrome 23+, Safari? // Target should not be a text node (#504, #13143) if ( event.target.nodeType === 3 ) { event.target = event.target.parentNode; } // Support: IE<9 // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) event.metaKey = !!event.metaKey; return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; }, // Includes some event props shared by KeyEvent and MouseEvent props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), fixHooks: {}, keyHooks: { props: "char charCode key keyCode".split(" "), filter: function( event, original ) { // Add which for key events if ( event.which == null ) { event.which = original.charCode != null ? original.charCode : original.keyCode; } return event; } }, mouseHooks: { props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), filter: function( event, original ) { var eventDoc, doc, body, button = original.button, fromElement = original.fromElement; // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == null && original.clientX != null ) { eventDoc = event.target.ownerDocument || document; doc = eventDoc.documentElement; body = eventDoc.body; event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); } // Add relatedTarget, if necessary if ( !event.relatedTarget && fromElement ) { event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; } // Add which for click: 1 === left; 2 === middle; 3 === right // Note: button is not normalized, so don't use it if ( !event.which && button !== undefined ) { event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); } return event; } }, special: { load: { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, click: { // For checkbox, fire native event so checked state will be right trigger: function() { if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { this.click(); return false; } } }, focus: { // Fire native event if possible so blur/focus sequence is correct trigger: function() { if ( this !== document.activeElement && this.focus ) { try { this.focus(); return false; } catch ( e ) { // Support: IE<9 // If we error on focus to hidden element (#1486, #12518), // let .trigger() run the handlers } } }, delegateType: "focusin" }, blur: { trigger: function() { if ( this === document.activeElement && this.blur ) { this.blur(); return false; } }, delegateType: "focusout" }, beforeunload: { postDispatch: function( event ) { // Even when returnValue equals to undefined Firefox will still show alert if ( event.result !== undefined ) { event.originalEvent.returnValue = event.result; } } } }, simulate: function( type, elem, event, bubble ) { // Piggyback on a donor event to simulate a different one. // Fake originalEvent to avoid donor's stopPropagation, but if the // simulated event prevents default then we do the same on the donor. var e = jQuery.extend( new jQuery.Event(), event, { type: type, isSimulated: true, originalEvent: {} } ); if ( bubble ) { jQuery.event.trigger( e, null, elem ); } else { jQuery.event.dispatch.call( elem, e ); } if ( e.isDefaultPrevented() ) { event.preventDefault(); } } }; jQuery.removeEvent = document.removeEventListener ? function( elem, type, handle ) { if ( elem.removeEventListener ) { elem.removeEventListener( type, handle, false ); } } : function( elem, type, handle ) { var name = "on" + type; if ( elem.detachEvent ) { // #8545, #7054, preventing memory leaks for custom events in IE6-8 // detachEvent needed property on element, by name of that event, to properly expose it to GC if ( typeof elem[ name ] === "undefined" ) { elem[ name ] = null; } elem.detachEvent( name, handle ); } }; jQuery.Event = function( src, props ) { // Allow instantiation without the 'new' keyword if ( !(this instanceof jQuery.Event) ) { return new jQuery.Event( src, props ); } // Event object if ( src && src.type ) { this.originalEvent = src; this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; // Event type } else { this.type = src; } // Put explicitly provided properties onto the event object if ( props ) { jQuery.extend( this, props ); } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || jQuery.now(); // Mark it as fixed this[ jQuery.expando ] = true; }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse, preventDefault: function() { var e = this.originalEvent; this.isDefaultPrevented = returnTrue; if ( !e ) { return; } // If preventDefault exists, run it on the original event if ( e.preventDefault ) { e.preventDefault(); // Support: IE // Otherwise set the returnValue property of the original event to false } else { e.returnValue = false; } }, stopPropagation: function() { var e = this.originalEvent; this.isPropagationStopped = returnTrue; if ( !e ) { return; } // If stopPropagation exists, run it on the original event if ( e.stopPropagation ) { e.stopPropagation(); } // Support: IE // Set the cancelBubble property of the original event to true e.cancelBubble = true; }, stopImmediatePropagation: function() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); } }; // Create mouseenter/leave events using mouseover/out and event-time checks jQuery.each({ mouseenter: "mouseover", mouseleave: "mouseout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { delegateType: fix, bindType: fix, handle: function( event ) { var ret, target = this, related = event.relatedTarget, handleObj = event.handleObj; // For mousenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window if ( !related || (related !== target && !jQuery.contains( target, related )) ) { event.type = handleObj.origType; ret = handleObj.handler.apply( this, arguments ); event.type = fix; } return ret; } }; }); // IE submit delegation if ( !jQuery.support.submitBubbles ) { jQuery.event.special.submit = { setup: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Lazy-add a submit handler when a descendant form may potentially be submitted jQuery.event.add( this, "click._submit keypress._submit", function( e ) { // Node name check avoids a VML-related crash in IE (#9807) var elem = e.target, form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; if ( form && !jQuery._data( form, "submitBubbles" ) ) { jQuery.event.add( form, "submit._submit", function( event ) { event._submit_bubble = true; }); jQuery._data( form, "submitBubbles", true ); } }); // return undefined since we don't need an event listener }, postDispatch: function( event ) { // If form was submitted by the user, bubble the event up the tree if ( event._submit_bubble ) { delete event._submit_bubble; if ( this.parentNode && !event.isTrigger ) { jQuery.event.simulate( "submit", this.parentNode, event, true ); } } }, teardown: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Remove delegated handlers; cleanData eventually reaps submit handlers attached above jQuery.event.remove( this, "._submit" ); } }; } // IE change delegation and checkbox/radio fix if ( !jQuery.support.changeBubbles ) { jQuery.event.special.change = { setup: function() { if ( rformElems.test( this.nodeName ) ) { // IE doesn't fire change on a check/radio until blur; trigger it on click // after a propertychange. Eat the blur-change in special.change.handle. // This still fires onchange a second time for check/radio after blur. if ( this.type === "checkbox" || this.type === "radio" ) { jQuery.event.add( this, "propertychange._change", function( event ) { if ( event.originalEvent.propertyName === "checked" ) { this._just_changed = true; } }); jQuery.event.add( this, "click._change", function( event ) { if ( this._just_changed && !event.isTrigger ) { this._just_changed = false; } // Allow triggered, simulated change events (#11500) jQuery.event.simulate( "change", this, event, true ); }); } return false; } // Delegated event; lazy-add a change handler on descendant inputs jQuery.event.add( this, "beforeactivate._change", function( e ) { var elem = e.target; if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { jQuery.event.add( elem, "change._change", function( event ) { if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { jQuery.event.simulate( "change", this.parentNode, event, true ); } }); jQuery._data( elem, "changeBubbles", true ); } }); }, handle: function( event ) { var elem = event.target; // Swallow native change events from checkbox/radio, we already triggered them above if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { return event.handleObj.handler.apply( this, arguments ); } }, teardown: function() { jQuery.event.remove( this, "._change" ); return !rformElems.test( this.nodeName ); } }; } // Create "bubbling" focus and blur events if ( !jQuery.support.focusinBubbles ) { jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { // Attach a single capturing handler while someone wants focusin/focusout var attaches = 0, handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); }; jQuery.event.special[ fix ] = { setup: function() { if ( attaches++ === 0 ) { document.addEventListener( orig, handler, true ); } }, teardown: function() { if ( --attaches === 0 ) { document.removeEventListener( orig, handler, true ); } } }; }); } jQuery.fn.extend({ on: function( types, selector, data, fn, /*INTERNAL*/ one ) { var origFn, type; // Types can be a map of types/handlers if ( typeof types === "object" ) { // ( types-Object, selector, data ) if ( typeof selector !== "string" ) { // ( types-Object, data ) data = data || selector; selector = undefined; } for ( type in types ) { this.on( type, selector, data, types[ type ], one ); } return this; } if ( data == null && fn == null ) { // ( types, fn ) fn = selector; data = selector = undefined; } else if ( fn == null ) { if ( typeof selector === "string" ) { // ( types, selector, fn ) fn = data; data = undefined; } else { // ( types, data, fn ) fn = data; data = selector; selector = undefined; } } if ( fn === false ) { fn = returnFalse; } else if ( !fn ) { return this; } if ( one === 1 ) { origFn = fn; fn = function( event ) { // Can use an empty set, since event contains the info jQuery().off( event ); return origFn.apply( this, arguments ); }; // Use same guid so caller can remove using origFn fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); } return this.each( function() { jQuery.event.add( this, types, fn, data, selector ); }); }, one: function( types, selector, data, fn ) { return this.on( types, selector, data, fn, 1 ); }, off: function( types, selector, fn ) { var handleObj, type; if ( types && types.preventDefault && types.handleObj ) { // ( event ) dispatched jQuery.Event handleObj = types.handleObj; jQuery( types.delegateTarget ).off( handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler ); return this; } if ( typeof types === "object" ) { // ( types-object [, selector] ) for ( type in types ) { this.off( type, selector, types[ type ] ); } return this; } if ( selector === false || typeof selector === "function" ) { // ( types [, fn] ) fn = selector; selector = undefined; } if ( fn === false ) { fn = returnFalse; } return this.each(function() { jQuery.event.remove( this, types, fn, selector ); }); }, bind: function( types, data, fn ) { return this.on( types, null, data, fn ); }, unbind: function( types, fn ) { return this.off( types, null, fn ); }, delegate: function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); }, undelegate: function( selector, types, fn ) { // ( namespace ) or ( selector, types [, fn] ) return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); }, trigger: function( type, data ) { return this.each(function() { jQuery.event.trigger( type, data, this ); }); }, triggerHandler: function( type, data ) { var elem = this[0]; if ( elem ) { return jQuery.event.trigger( type, data, elem, true ); } }, hover: function( fnOver, fnOut ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); } }); jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { // Handle event binding jQuery.fn[ name ] = function( data, fn ) { return arguments.length > 0 ? this.on( name, null, data, fn ) : this.trigger( name ); }; if ( rkeyEvent.test( name ) ) { jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; } if ( rmouseEvent.test( name ) ) { jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; } }); /*! * Sizzle CSS Selector Engine * Copyright 2012 jQuery Foundation and other contributors * Released under the MIT license * http://sizzlejs.com/ */ (function( window, undefined ) { var i, cachedruns, Expr, getText, isXML, compile, hasDuplicate, outermostContext, // Local document vars setDocument, document, docElem, documentIsXML, rbuggyQSA, rbuggyMatches, matches, contains, sortOrder, // Instance-specific data expando = "sizzle" + -(new Date()), preferredDoc = window.document, support = {}, dirruns = 0, done = 0, classCache = createCache(), tokenCache = createCache(), compilerCache = createCache(), // General-purpose constants strundefined = typeof undefined, MAX_NEGATIVE = 1 << 31, // Array methods arr = [], pop = arr.pop, push = arr.push, slice = arr.slice, // Use a stripped-down indexOf if we can't use a native one indexOf = arr.indexOf || function( elem ) { var i = 0, len = this.length; for ( ; i < len; i++ ) { if ( this[i] === elem ) { return i; } } return -1; }, // Regular expressions // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace whitespace = "[\\x20\\t\\r\\n\\f]", // http://www.w3.org/TR/css3-syntax/#characters characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", // Loosely modeled on CSS identifier characters // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier identifier = characterEncoding.replace( "w", "w#" ), // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors operators = "([*^$|!~]?=)", attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + "*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", // Prefer arguments quoted, // then not containing pseudos/brackets, // then attribute selectors/non-parenthetical expressions, // then anything else // These preferences are here to reduce the number of selectors // needing tokenize in the PSEUDO preFilter pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ), rpseudo = new RegExp( pseudos ), ridentifier = new RegExp( "^" + identifier + "$" ), matchExpr = { "ID": new RegExp( "^#(" + characterEncoding + ")" ), "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), "NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ), "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), "ATTR": new RegExp( "^" + attributes ), "PSEUDO": new RegExp( "^" + pseudos ), "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), // For use in libraries implementing .is() // We use this for POS matching in `select` "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) }, rsibling = /[\x20\t\r\n\f]*[+~]/, rnative = /\{\s*\[native code\]\s*\}/, // Easily-parseable/retrievable ID or TAG or CLASS selectors rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, rinputs = /^(?:input|select|textarea|button)$/i, rheader = /^h\d$/i, rescape = /'|\\/g, rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters runescape = /\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g, funescape = function( _, escaped ) { var high = "0x" + escaped - 0x10000; // NaN means non-codepoint return high !== high ? escaped : // BMP codepoint high < 0 ? String.fromCharCode( high + 0x10000 ) : // Supplemental Plane codepoint (surrogate pair) String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); }; // Use a stripped-down slice if we can't use a native one try { slice.call( docElem.childNodes, 0 )[0].nodeType; } catch ( e ) { slice = function( i ) { var elem, results = []; for ( ; (elem = this[i]); i++ ) { results.push( elem ); } return results; }; } /** * For feature detection * @param {Function} fn The function to test for native support */ function isNative( fn ) { return rnative.test( fn + "" ); } /** * Create key-value caches of limited size * @returns {Function(string, Object)} Returns the Object data after storing it on itself with * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) * deleting the oldest entry */ function createCache() { var cache, keys = []; return (cache = function( key, value ) { // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) if ( keys.push( key += " " ) > Expr.cacheLength ) { // Only keep the most recent entries delete cache[ keys.shift() ]; } return (cache[ key ] = value); }); } /** * Mark a function for special use by Sizzle * @param {Function} fn The function to mark */ function markFunction( fn ) { fn[ expando ] = true; return fn; } /** * Support testing using an element * @param {Function} fn Passed the created div and expects a boolean result */ function assert( fn ) { var div = document.createElement("div"); try { return fn( div ); } catch (e) { return false; } finally { // release memory in IE div = null; } } function Sizzle( selector, context, results, seed ) { var match, elem, m, nodeType, // QSA vars i, groups, old, nid, newContext, newSelector; if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { setDocument( context ); } context = context || document; results = results || []; if ( !selector || typeof selector !== "string" ) { return results; } if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { return []; } if ( !documentIsXML && !seed ) { // Shortcuts if ( (match = rquickExpr.exec( selector )) ) { // Speed-up: Sizzle("#ID") if ( (m = match[1]) ) { if ( nodeType === 9 ) { elem = context.getElementById( m ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 if ( elem && elem.parentNode ) { // Handle the case where IE, Opera, and Webkit return items // by name instead of ID if ( elem.id === m ) { results.push( elem ); return results; } } else { return results; } } else { // Context is not a document if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && contains( context, elem ) && elem.id === m ) { results.push( elem ); return results; } } // Speed-up: Sizzle("TAG") } else if ( match[2] ) { push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) ); return results; // Speed-up: Sizzle(".CLASS") } else if ( (m = match[3]) && support.getByClassName && context.getElementsByClassName ) { push.apply( results, slice.call(context.getElementsByClassName( m ), 0) ); return results; } } // QSA path if ( support.qsa && !rbuggyQSA.test(selector) ) { old = true; nid = expando; newContext = context; newSelector = nodeType === 9 && selector; // qSA works strangely on Element-rooted queries // We can work around this by specifying an extra ID on the root // and working up from there (Thanks to Andrew Dupont for the technique) // IE 8 doesn't work on object elements if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { groups = tokenize( selector ); if ( (old = context.getAttribute("id")) ) { nid = old.replace( rescape, "\\$&" ); } else { context.setAttribute( "id", nid ); } nid = "[id='" + nid + "'] "; i = groups.length; while ( i-- ) { groups[i] = nid + toSelector( groups[i] ); } newContext = rsibling.test( selector ) && context.parentNode || context; newSelector = groups.join(","); } if ( newSelector ) { try { push.apply( results, slice.call( newContext.querySelectorAll( newSelector ), 0 ) ); return results; } catch(qsaError) { } finally { if ( !old ) { context.removeAttribute("id"); } } } } } // All others return select( selector.replace( rtrim, "$1" ), context, results, seed ); } /** * Detect xml * @param {Element|Object} elem An element or a document */ isXML = Sizzle.isXML = function( elem ) { // documentElement is verified for cases where it doesn't yet exist // (such as loading iframes in IE - #4833) var documentElement = elem && (elem.ownerDocument || elem).documentElement; return documentElement ? documentElement.nodeName !== "HTML" : false; }; /** * Sets document-related variables once based on the current document * @param {Element|Object} [doc] An element or document object to use to set the document * @returns {Object} Returns the current document */ setDocument = Sizzle.setDocument = function( node ) { var doc = node ? node.ownerDocument || node : preferredDoc; // If no document and documentElement is available, return if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { return document; } // Set our document document = doc; docElem = doc.documentElement; // Support tests documentIsXML = isXML( doc ); // Check if getElementsByTagName("*") returns only elements support.tagNameNoComments = assert(function( div ) { div.appendChild( doc.createComment("") ); return !div.getElementsByTagName("*").length; }); // Check if attributes should be retrieved by attribute nodes support.attributes = assert(function( div ) { div.innerHTML = "<select></select>"; var type = typeof div.lastChild.getAttribute("multiple"); // IE8 returns a string for some attributes even when not present return type !== "boolean" && type !== "string"; }); // Check if getElementsByClassName can be trusted support.getByClassName = assert(function( div ) { // Opera can't find a second classname (in 9.6) div.innerHTML = "<div class='hidden e'></div><div class='hidden'></div>"; if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) { return false; } // Safari 3.2 caches class attributes and doesn't catch changes div.lastChild.className = "e"; return div.getElementsByClassName("e").length === 2; }); // Check if getElementById returns elements by name // Check if getElementsByName privileges form controls or returns elements by ID support.getByName = assert(function( div ) { // Inject content div.id = expando + 0; div.innerHTML = "<a name='" + expando + "'></a><div name='" + expando + "'></div>"; docElem.insertBefore( div, docElem.firstChild ); // Test var pass = doc.getElementsByName && // buggy browsers will return fewer than the correct 2 doc.getElementsByName( expando ).length === 2 + // buggy browsers will return more than the correct 0 doc.getElementsByName( expando + 0 ).length; support.getIdNotName = !doc.getElementById( expando ); // Cleanup docElem.removeChild( div ); return pass; }); // IE6/7 return modified attributes Expr.attrHandle = assert(function( div ) { div.innerHTML = "<a href='#'></a>"; return div.firstChild && typeof div.firstChild.getAttribute !== strundefined && div.firstChild.getAttribute("href") === "#"; }) ? {} : { "href": function( elem ) { return elem.getAttribute( "href", 2 ); }, "type": function( elem ) { return elem.getAttribute("type"); } }; // ID find and filter if ( support.getIdNotName ) { Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== strundefined && !documentIsXML ) { var m = context.getElementById( id ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 return m && m.parentNode ? [m] : []; } }; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { return elem.getAttribute("id") === attrId; }; }; } else { Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== strundefined && !documentIsXML ) { var m = context.getElementById( id ); return m ? m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ? [m] : undefined : []; } }; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); return node && node.value === attrId; }; }; } // Tag Expr.find["TAG"] = support.tagNameNoComments ? function( tag, context ) { if ( typeof context.getElementsByTagName !== strundefined ) { return context.getElementsByTagName( tag ); } } : function( tag, context ) { var elem, tmp = [], i = 0, results = context.getElementsByTagName( tag ); // Filter out possible comments if ( tag === "*" ) { for ( ; (elem = results[i]); i++ ) { if ( elem.nodeType === 1 ) { tmp.push( elem ); } } return tmp; } return results; }; // Name Expr.find["NAME"] = support.getByName && function( tag, context ) { if ( typeof context.getElementsByName !== strundefined ) { return context.getElementsByName( name ); } }; // Class Expr.find["CLASS"] = support.getByClassName && function( className, context ) { if ( typeof context.getElementsByClassName !== strundefined && !documentIsXML ) { return context.getElementsByClassName( className ); } }; // QSA and matchesSelector support // matchesSelector(:active) reports false when true (IE9/Opera 11.5) rbuggyMatches = []; // qSa(:focus) reports false when true (Chrome 21), // no need to also add to buggyMatches since matches checks buggyQSA // A support test would require too much code (would include document ready) rbuggyQSA = [ ":focus" ]; if ( (support.qsa = isNative(doc.querySelectorAll)) ) { // Build QSA regex // Regex strategy adopted from Diego Perini assert(function( div ) { // Select is set to empty string on purpose // This is to test IE's treatment of not explictly // setting a boolean content attribute, // since its presence should be enough // http://bugs.jquery.com/ticket/12359 div.innerHTML = "<select><option selected=''></option></select>"; // IE8 - Some boolean attributes are not treated correctly if ( !div.querySelectorAll("[selected]").length ) { rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" ); } // Webkit/Opera - :checked should return selected option elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":checked").length ) { rbuggyQSA.push(":checked"); } }); assert(function( div ) { // Opera 10-12/IE8 - ^= $= *= and empty values // Should not select anything div.innerHTML = "<input type='hidden' i=''/>"; if ( div.querySelectorAll("[i^='']").length ) { rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" ); } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":enabled").length ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Opera 10-11 does not throw on post-comma invalid pseudos div.querySelectorAll("*,:x"); rbuggyQSA.push(",.*:"); }); } if ( (support.matchesSelector = isNative( (matches = docElem.matchesSelector || docElem.mozMatchesSelector || docElem.webkitMatchesSelector || docElem.oMatchesSelector || docElem.msMatchesSelector) )) ) { assert(function( div ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9) support.disconnectedMatch = matches.call( div, "div" ); // This should fail with an exception // Gecko does not error, returns false instead matches.call( div, "[s!='']:x" ); rbuggyMatches.push( "!=", pseudos ); }); } rbuggyQSA = new RegExp( rbuggyQSA.join("|") ); rbuggyMatches = new RegExp( rbuggyMatches.join("|") ); // Element contains another // Purposefully does not implement inclusive descendent // As in, an element does not contain itself contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? function( a, b ) { var adown = a.nodeType === 9 ? a.documentElement : a, bup = b && b.parentNode; return a === bup || !!( bup && bup.nodeType === 1 && ( adown.contains ? adown.contains( bup ) : a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 )); } : function( a, b ) { if ( b ) { while ( (b = b.parentNode) ) { if ( b === a ) { return true; } } } return false; }; // Document order sorting sortOrder = docElem.compareDocumentPosition ? function( a, b ) { var compare; if ( a === b ) { hasDuplicate = true; return 0; } if ( (compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b )) ) { if ( compare & 1 || a.parentNode && a.parentNode.nodeType === 11 ) { if ( a === doc || contains( preferredDoc, a ) ) { return -1; } if ( b === doc || contains( preferredDoc, b ) ) { return 1; } return 0; } return compare & 4 ? -1 : 1; } return a.compareDocumentPosition ? -1 : 1; } : function( a, b ) { var cur, i = 0, aup = a.parentNode, bup = b.parentNode, ap = [ a ], bp = [ b ]; // The nodes are identical, we can exit early if ( a === b ) { hasDuplicate = true; return 0; // Fallback to using sourceIndex (in IE) if it's available on both nodes } else if ( a.sourceIndex && b.sourceIndex ) { return ( ~b.sourceIndex || MAX_NEGATIVE ) - ( contains( preferredDoc, a ) && ~a.sourceIndex || MAX_NEGATIVE ); // Parentless nodes are either documents or disconnected } else if ( !aup || !bup ) { return a === doc ? -1 : b === doc ? 1 : aup ? -1 : bup ? 1 : 0; // If the nodes are siblings, we can do a quick check } else if ( aup === bup ) { return siblingCheck( a, b ); } // Otherwise we need full lists of their ancestors for comparison cur = a; while ( (cur = cur.parentNode) ) { ap.unshift( cur ); } cur = b; while ( (cur = cur.parentNode) ) { bp.unshift( cur ); } // Walk down the tree looking for a discrepancy while ( ap[i] === bp[i] ) { i++; } return i ? // Do a sibling check if the nodes have a common ancestor siblingCheck( ap[i], bp[i] ) : // Otherwise nodes in our document sort first ap[i] === preferredDoc ? -1 : bp[i] === preferredDoc ? 1 : 0; }; // Always assume the presence of duplicates if sort doesn't // pass them to our comparison function (as in Google Chrome). hasDuplicate = false; [0, 0].sort( sortOrder ); support.detectDuplicates = hasDuplicate; return document; }; Sizzle.matches = function( expr, elements ) { return Sizzle( expr, null, null, elements ); }; Sizzle.matchesSelector = function( elem, expr ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } // Make sure that attribute selectors are quoted expr = expr.replace( rattributeQuotes, "='$1']" ); // rbuggyQSA always contains :focus, so no need for an existence check if ( support.matchesSelector && !documentIsXML && (!rbuggyMatches || !rbuggyMatches.test(expr)) && !rbuggyQSA.test(expr) ) { try { var ret = matches.call( elem, expr ); // IE 9's matchesSelector returns false on disconnected nodes if ( ret || support.disconnectedMatch || // As well, disconnected nodes are said to be in a document // fragment in IE 9 elem.document && elem.document.nodeType !== 11 ) { return ret; } } catch(e) {} } return Sizzle( expr, document, null, [elem] ).length > 0; }; Sizzle.contains = function( context, elem ) { // Set document vars if needed if ( ( context.ownerDocument || context ) !== document ) { setDocument( context ); } return contains( context, elem ); }; Sizzle.attr = function( elem, name ) { var val; // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } if ( !documentIsXML ) { name = name.toLowerCase(); } if ( (val = Expr.attrHandle[ name ]) ) { return val( elem ); } if ( documentIsXML || support.attributes ) { return elem.getAttribute( name ); } return ( (val = elem.getAttributeNode( name )) || elem.getAttribute( name ) ) && elem[ name ] === true ? name : val && val.specified ? val.value : null; }; Sizzle.error = function( msg ) { throw new Error( "Syntax error, unrecognized expression: " + msg ); }; // Document sorting and removing duplicates Sizzle.uniqueSort = function( results ) { var elem, duplicates = [], i = 1, j = 0; // Unless we *know* we can detect duplicates, assume their presence hasDuplicate = !support.detectDuplicates; results.sort( sortOrder ); if ( hasDuplicate ) { for ( ; (elem = results[i]); i++ ) { if ( elem === results[ i - 1 ] ) { j = duplicates.push( i ); } } while ( j-- ) { results.splice( duplicates[ j ], 1 ); } } return results; }; function siblingCheck( a, b ) { var cur = a && b && a.nextSibling; for ( ; cur; cur = cur.nextSibling ) { if ( cur === b ) { return -1; } } return a ? 1 : -1; } // Returns a function to use in pseudos for input types function createInputPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === type; }; } // Returns a function to use in pseudos for buttons function createButtonPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return (name === "input" || name === "button") && elem.type === type; }; } // Returns a function to use in pseudos for positionals function createPositionalPseudo( fn ) { return markFunction(function( argument ) { argument = +argument; return markFunction(function( seed, matches ) { var j, matchIndexes = fn( [], seed.length, argument ), i = matchIndexes.length; // Match elements found at the specified indexes while ( i-- ) { if ( seed[ (j = matchIndexes[i]) ] ) { seed[j] = !(matches[j] = seed[j]); } } }); }); } /** * Utility function for retrieving the text value of an array of DOM nodes * @param {Array|Element} elem */ getText = Sizzle.getText = function( elem ) { var node, ret = "", i = 0, nodeType = elem.nodeType; if ( !nodeType ) { // If no nodeType, this is expected to be an array for ( ; (node = elem[i]); i++ ) { // Do not traverse comment nodes ret += getText( node ); } } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { // Use textContent for elements // innerText usage removed for consistency of new lines (see #11153) if ( typeof elem.textContent === "string" ) { return elem.textContent; } else { // Traverse its children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { ret += getText( elem ); } } } else if ( nodeType === 3 || nodeType === 4 ) { return elem.nodeValue; } // Do not include comment or processing instruction nodes return ret; }; Expr = Sizzle.selectors = { // Can be adjusted by the user cacheLength: 50, createPseudo: markFunction, match: matchExpr, find: {}, relative: { ">": { dir: "parentNode", first: true }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: true }, "~": { dir: "previousSibling" } }, preFilter: { "ATTR": function( match ) { match[1] = match[1].replace( runescape, funescape ); // Move the given value to match[3] whether quoted or unquoted match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); if ( match[2] === "~=" ) { match[3] = " " + match[3] + " "; } return match.slice( 0, 4 ); }, "CHILD": function( match ) { /* matches from matchExpr["CHILD"] 1 type (only|nth|...) 2 what (child|of-type) 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) 4 xn-component of xn+y argument ([+-]?\d*n|) 5 sign of xn-component 6 x of xn-component 7 sign of y-component 8 y of y-component */ match[1] = match[1].toLowerCase(); if ( match[1].slice( 0, 3 ) === "nth" ) { // nth-* requires argument if ( !match[3] ) { Sizzle.error( match[0] ); } // numeric x and y parameters for Expr.filter.CHILD // remember that false/true cast respectively to 0/1 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); // other types prohibit arguments } else if ( match[3] ) { Sizzle.error( match[0] ); } return match; }, "PSEUDO": function( match ) { var excess, unquoted = !match[5] && match[2]; if ( matchExpr["CHILD"].test( match[0] ) ) { return null; } // Accept quoted arguments as-is if ( match[4] ) { match[2] = match[4]; // Strip excess characters from unquoted arguments } else if ( unquoted && rpseudo.test( unquoted ) && // Get excess from tokenize (recursively) (excess = tokenize( unquoted, true )) && // advance to the next closing parenthesis (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { // excess is a negative index match[0] = match[0].slice( 0, excess ); match[2] = unquoted.slice( 0, excess ); } // Return only captures needed by the pseudo filter method (type and argument) return match.slice( 0, 3 ); } }, filter: { "TAG": function( nodeName ) { if ( nodeName === "*" ) { return function() { return true; }; } nodeName = nodeName.replace( runescape, funescape ).toLowerCase(); return function( elem ) { return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; }; }, "CLASS": function( className ) { var pattern = classCache[ className + " " ]; return pattern || (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && classCache( className, function( elem ) { return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" ); }); }, "ATTR": function( name, operator, check ) { return function( elem ) { var result = Sizzle.attr( elem, name ); if ( result == null ) { return operator === "!="; } if ( !operator ) { return true; } result += ""; return operator === "=" ? result === check : operator === "!=" ? result !== check : operator === "^=" ? check && result.indexOf( check ) === 0 : operator === "*=" ? check && result.indexOf( check ) > -1 : operator === "$=" ? check && result.substr( result.length - check.length ) === check : operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : operator === "|=" ? result === check || result.substr( 0, check.length + 1 ) === check + "-" : false; }; }, "CHILD": function( type, what, argument, first, last ) { var simple = type.slice( 0, 3 ) !== "nth", forward = type.slice( -4 ) !== "last", ofType = what === "of-type"; return first === 1 && last === 0 ? // Shortcut for :nth-*(n) function( elem ) { return !!elem.parentNode; } : function( elem, context, xml ) { var cache, outerCache, node, diff, nodeIndex, start, dir = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, name = ofType && elem.nodeName.toLowerCase(), useCache = !xml && !ofType; if ( parent ) { // :(first|last|only)-(child|of-type) if ( simple ) { while ( dir ) { node = elem; while ( (node = node[ dir ]) ) { if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { return false; } } // Reverse direction for :only-* (if we haven't yet done so) start = dir = type === "only" && !start && "nextSibling"; } return true; } start = [ forward ? parent.firstChild : parent.lastChild ]; // non-xml :nth-child(...) stores cache data on `parent` if ( forward && useCache ) { // Seek `elem` from a previously-cached index outerCache = parent[ expando ] || (parent[ expando ] = {}); cache = outerCache[ type ] || []; nodeIndex = cache[0] === dirruns && cache[1]; diff = cache[0] === dirruns && cache[2]; node = nodeIndex && parent.childNodes[ nodeIndex ]; while ( (node = ++nodeIndex && node && node[ dir ] || // Fallback to seeking `elem` from the start (diff = nodeIndex = 0) || start.pop()) ) { // When found, cache indexes on `parent` and break if ( node.nodeType === 1 && ++diff && node === elem ) { outerCache[ type ] = [ dirruns, nodeIndex, diff ]; break; } } // Use previously-cached element index if available } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { diff = cache[1]; // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) } else { // Use the same loop as above to seek `elem` from the start while ( (node = ++nodeIndex && node && node[ dir ] || (diff = nodeIndex = 0) || start.pop()) ) { if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { // Cache the index of each encountered element if ( useCache ) { (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; } if ( node === elem ) { break; } } } } // Incorporate the offset, then check against cycle size diff -= last; return diff === first || ( diff % first === 0 && diff / first >= 0 ); } }; }, "PSEUDO": function( pseudo, argument ) { // pseudo-class names are case-insensitive // http://www.w3.org/TR/selectors/#pseudo-classes // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters // Remember that setFilters inherits from pseudos var args, fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || Sizzle.error( "unsupported pseudo: " + pseudo ); // The user may use createPseudo to indicate that // arguments are needed to create the filter function // just as Sizzle does if ( fn[ expando ] ) { return fn( argument ); } // But maintain support for old signatures if ( fn.length > 1 ) { args = [ pseudo, pseudo, "", argument ]; return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? markFunction(function( seed, matches ) { var idx, matched = fn( seed, argument ), i = matched.length; while ( i-- ) { idx = indexOf.call( seed, matched[i] ); seed[ idx ] = !( matches[ idx ] = matched[i] ); } }) : function( elem ) { return fn( elem, 0, args ); }; } return fn; } }, pseudos: { // Potentially complex pseudos "not": markFunction(function( selector ) { // Trim the selector passed to compile // to avoid treating leading and trailing // spaces as combinators var input = [], results = [], matcher = compile( selector.replace( rtrim, "$1" ) ); return matcher[ expando ] ? markFunction(function( seed, matches, context, xml ) { var elem, unmatched = matcher( seed, null, xml, [] ), i = seed.length; // Match elements unmatched by `matcher` while ( i-- ) { if ( (elem = unmatched[i]) ) { seed[i] = !(matches[i] = elem); } } }) : function( elem, context, xml ) { input[0] = elem; matcher( input, null, xml, results ); return !results.pop(); }; }), "has": markFunction(function( selector ) { return function( elem ) { return Sizzle( selector, elem ).length > 0; }; }), "contains": markFunction(function( text ) { return function( elem ) { return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; }; }), // "Whether an element is represented by a :lang() selector // is based solely on the element's language value // being equal to the identifier C, // or beginning with the identifier C immediately followed by "-". // The matching of C against the element's language value is performed case-insensitively. // The identifier C does not have to be a valid language name." // http://www.w3.org/TR/selectors/#lang-pseudo "lang": markFunction( function( lang ) { // lang value must be a valid identifider if ( !ridentifier.test(lang || "") ) { Sizzle.error( "unsupported lang: " + lang ); } lang = lang.replace( runescape, funescape ).toLowerCase(); return function( elem ) { var elemLang; do { if ( (elemLang = documentIsXML ? elem.getAttribute("xml:lang") || elem.getAttribute("lang") : elem.lang) ) { elemLang = elemLang.toLowerCase(); return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; } } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); return false; }; }), // Miscellaneous "target": function( elem ) { var hash = window.location && window.location.hash; return hash && hash.slice( 1 ) === elem.id; }, "root": function( elem ) { return elem === docElem; }, "focus": function( elem ) { return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); }, // Boolean properties "enabled": function( elem ) { return elem.disabled === false; }, "disabled": function( elem ) { return elem.disabled === true; }, "checked": function( elem ) { // In CSS3, :checked should return both checked and selected elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked var nodeName = elem.nodeName.toLowerCase(); return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); }, "selected": function( elem ) { // Accessing this property makes selected-by-default // options in Safari work properly if ( elem.parentNode ) { elem.parentNode.selectedIndex; } return elem.selected === true; }, // Contents "empty": function( elem ) { // http://www.w3.org/TR/selectors/#empty-pseudo // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), // not comment, processing instructions, or others // Thanks to Diego Perini for the nodeName shortcut // Greater than "@" means alpha characters (specifically not starting with "#" or "?") for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { return false; } } return true; }, "parent": function( elem ) { return !Expr.pseudos["empty"]( elem ); }, // Element/input types "header": function( elem ) { return rheader.test( elem.nodeName ); }, "input": function( elem ) { return rinputs.test( elem.nodeName ); }, "button": function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === "button" || name === "button"; }, "text": function( elem ) { var attr; // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) // use getAttribute instead to test this case return elem.nodeName.toLowerCase() === "input" && elem.type === "text" && ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); }, // Position-in-collection "first": createPositionalPseudo(function() { return [ 0 ]; }), "last": createPositionalPseudo(function( matchIndexes, length ) { return [ length - 1 ]; }), "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { return [ argument < 0 ? argument + length : argument ]; }), "even": createPositionalPseudo(function( matchIndexes, length ) { var i = 0; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "odd": createPositionalPseudo(function( matchIndexes, length ) { var i = 1; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; --i >= 0; ) { matchIndexes.push( i ); } return matchIndexes; }), "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; ++i < length; ) { matchIndexes.push( i ); } return matchIndexes; }) } }; // Add button/input type pseudos for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { Expr.pseudos[ i ] = createInputPseudo( i ); } for ( i in { submit: true, reset: true } ) { Expr.pseudos[ i ] = createButtonPseudo( i ); } function tokenize( selector, parseOnly ) { var matched, match, tokens, type, soFar, groups, preFilters, cached = tokenCache[ selector + " " ]; if ( cached ) { return parseOnly ? 0 : cached.slice( 0 ); } soFar = selector; groups = []; preFilters = Expr.preFilter; while ( soFar ) { // Comma and first run if ( !matched || (match = rcomma.exec( soFar )) ) { if ( match ) { // Don't consume trailing commas as valid soFar = soFar.slice( match[0].length ) || soFar; } groups.push( tokens = [] ); } matched = false; // Combinators if ( (match = rcombinators.exec( soFar )) ) { matched = match.shift(); tokens.push( { value: matched, // Cast descendant combinators to space type: match[0].replace( rtrim, " " ) } ); soFar = soFar.slice( matched.length ); } // Filters for ( type in Expr.filter ) { if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || (match = preFilters[ type ]( match ))) ) { matched = match.shift(); tokens.push( { value: matched, type: type, matches: match } ); soFar = soFar.slice( matched.length ); } } if ( !matched ) { break; } } // Return the length of the invalid excess // if we're just parsing // Otherwise, throw an error or return tokens return parseOnly ? soFar.length : soFar ? Sizzle.error( selector ) : // Cache the tokens tokenCache( selector, groups ).slice( 0 ); } function toSelector( tokens ) { var i = 0, len = tokens.length, selector = ""; for ( ; i < len; i++ ) { selector += tokens[i].value; } return selector; } function addCombinator( matcher, combinator, base ) { var dir = combinator.dir, checkNonElements = base && combinator.dir === "parentNode", doneName = done++; return combinator.first ? // Check against closest ancestor/preceding element function( elem, context, xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { return matcher( elem, context, xml ); } } } : // Check against all ancestor/preceding elements function( elem, context, xml ) { var data, cache, outerCache, dirkey = dirruns + " " + doneName; // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching if ( xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { if ( matcher( elem, context, xml ) ) { return true; } } } } else { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { outerCache = elem[ expando ] || (elem[ expando ] = {}); if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { if ( (data = cache[1]) === true || data === cachedruns ) { return data === true; } } else { cache = outerCache[ dir ] = [ dirkey ]; cache[1] = matcher( elem, context, xml ) || cachedruns; if ( cache[1] === true ) { return true; } } } } } }; } function elementMatcher( matchers ) { return matchers.length > 1 ? function( elem, context, xml ) { var i = matchers.length; while ( i-- ) { if ( !matchers[i]( elem, context, xml ) ) { return false; } } return true; } : matchers[0]; } function condense( unmatched, map, filter, context, xml ) { var elem, newUnmatched = [], i = 0, len = unmatched.length, mapped = map != null; for ( ; i < len; i++ ) { if ( (elem = unmatched[i]) ) { if ( !filter || filter( elem, context, xml ) ) { newUnmatched.push( elem ); if ( mapped ) { map.push( i ); } } } } return newUnmatched; } function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { if ( postFilter && !postFilter[ expando ] ) { postFilter = setMatcher( postFilter ); } if ( postFinder && !postFinder[ expando ] ) { postFinder = setMatcher( postFinder, postSelector ); } return markFunction(function( seed, results, context, xml ) { var temp, i, elem, preMap = [], postMap = [], preexisting = results.length, // Get initial elements from seed or context elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), // Prefilter to get matcher input, preserving a map for seed-results synchronization matcherIn = preFilter && ( seed || !selector ) ? condense( elems, preMap, preFilter, context, xml ) : elems, matcherOut = matcher ? // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, postFinder || ( seed ? preFilter : preexisting || postFilter ) ? // ...intermediate processing is necessary [] : // ...otherwise use results directly results : matcherIn; // Find primary matches if ( matcher ) { matcher( matcherIn, matcherOut, context, xml ); } // Apply postFilter if ( postFilter ) { temp = condense( matcherOut, postMap ); postFilter( temp, [], context, xml ); // Un-match failing elements by moving them back to matcherIn i = temp.length; while ( i-- ) { if ( (elem = temp[i]) ) { matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); } } } if ( seed ) { if ( postFinder || preFilter ) { if ( postFinder ) { // Get the final matcherOut by condensing this intermediate into postFinder contexts temp = []; i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) ) { // Restore matcherIn since elem is not yet a final match temp.push( (matcherIn[i] = elem) ); } } postFinder( null, (matcherOut = []), temp, xml ); } // Move matched elements from seed to results to keep them synchronized i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) && (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { seed[temp] = !(results[temp] = elem); } } } // Add elements to results, through postFinder if defined } else { matcherOut = condense( matcherOut === results ? matcherOut.splice( preexisting, matcherOut.length ) : matcherOut ); if ( postFinder ) { postFinder( null, results, matcherOut, xml ); } else { push.apply( results, matcherOut ); } } }); } function matcherFromTokens( tokens ) { var checkContext, matcher, j, len = tokens.length, leadingRelative = Expr.relative[ tokens[0].type ], implicitRelative = leadingRelative || Expr.relative[" "], i = leadingRelative ? 1 : 0, // The foundational matcher ensures that elements are reachable from top-level context(s) matchContext = addCombinator( function( elem ) { return elem === checkContext; }, implicitRelative, true ), matchAnyContext = addCombinator( function( elem ) { return indexOf.call( checkContext, elem ) > -1; }, implicitRelative, true ), matchers = [ function( elem, context, xml ) { return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( (checkContext = context).nodeType ? matchContext( elem, context, xml ) : matchAnyContext( elem, context, xml ) ); } ]; for ( ; i < len; i++ ) { if ( (matcher = Expr.relative[ tokens[i].type ]) ) { matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; } else { matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); // Return special upon seeing a positional matcher if ( matcher[ expando ] ) { // Find the next relative operator (if any) for proper handling j = ++i; for ( ; j < len; j++ ) { if ( Expr.relative[ tokens[j].type ] ) { break; } } return setMatcher( i > 1 && elementMatcher( matchers ), i > 1 && toSelector( tokens.slice( 0, i - 1 ) ).replace( rtrim, "$1" ), matcher, i < j && matcherFromTokens( tokens.slice( i, j ) ), j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), j < len && toSelector( tokens ) ); } matchers.push( matcher ); } } return elementMatcher( matchers ); } function matcherFromGroupMatchers( elementMatchers, setMatchers ) { // A counter to specify which element is currently being matched var matcherCachedRuns = 0, bySet = setMatchers.length > 0, byElement = elementMatchers.length > 0, superMatcher = function( seed, context, xml, results, expandContext ) { var elem, j, matcher, setMatched = [], matchedCount = 0, i = "0", unmatched = seed && [], outermost = expandContext != null, contextBackup = outermostContext, // We must always have either seed elements or context elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), // Nested matchers should use non-integer dirruns dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.E); if ( outermost ) { outermostContext = context !== document && context; cachedruns = matcherCachedRuns; } // Add elements passing elementMatchers directly to results for ( ; (elem = elems[i]) != null; i++ ) { if ( byElement && elem ) { for ( j = 0; (matcher = elementMatchers[j]); j++ ) { if ( matcher( elem, context, xml ) ) { results.push( elem ); break; } } if ( outermost ) { dirruns = dirrunsUnique; cachedruns = ++matcherCachedRuns; } } // Track unmatched elements for set filters if ( bySet ) { // They will have gone through all possible matchers if ( (elem = !matcher && elem) ) { matchedCount--; } // Lengthen the array for every element, matched or not if ( seed ) { unmatched.push( elem ); } } } // Apply set filters to unmatched elements // `i` starts as a string, so matchedCount would equal "00" if there are no elements matchedCount += i; if ( bySet && i !== matchedCount ) { for ( j = 0; (matcher = setMatchers[j]); j++ ) { matcher( unmatched, setMatched, context, xml ); } if ( seed ) { // Reintegrate element matches to eliminate the need for sorting if ( matchedCount > 0 ) { while ( i-- ) { if ( !(unmatched[i] || setMatched[i]) ) { setMatched[i] = pop.call( results ); } } } // Discard index placeholder values to get only actual matches setMatched = condense( setMatched ); } // Add matches to results push.apply( results, setMatched ); // Seedless set matches succeeding multiple successful matchers stipulate sorting if ( outermost && !seed && setMatched.length > 0 && ( matchedCount + setMatchers.length ) > 1 ) { Sizzle.uniqueSort( results ); } } // Override manipulation of globals by nested matchers if ( outermost ) { dirruns = dirrunsUnique; outermostContext = contextBackup; } return unmatched; }; return bySet ? markFunction( superMatcher ) : superMatcher; } compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { var i, setMatchers = [], elementMatchers = [], cached = compilerCache[ selector + " " ]; if ( !cached ) { // Generate a function of recursive functions that can be used to check each element if ( !group ) { group = tokenize( selector ); } i = group.length; while ( i-- ) { cached = matcherFromTokens( group[i] ); if ( cached[ expando ] ) { setMatchers.push( cached ); } else { elementMatchers.push( cached ); } } // Cache the compiled function cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); } return cached; }; function multipleContexts( selector, contexts, results ) { var i = 0, len = contexts.length; for ( ; i < len; i++ ) { Sizzle( selector, contexts[i], results ); } return results; } function select( selector, context, results, seed ) { var i, tokens, token, type, find, match = tokenize( selector ); if ( !seed ) { // Try to minimize operations if there is only one group if ( match.length === 1 ) { // Take a shortcut and set the context if the root selector is an ID tokens = match[0] = match[0].slice( 0 ); if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && context.nodeType === 9 && !documentIsXML && Expr.relative[ tokens[1].type ] ) { context = Expr.find["ID"]( token.matches[0].replace( runescape, funescape ), context )[0]; if ( !context ) { return results; } selector = selector.slice( tokens.shift().value.length ); } // Fetch a seed set for right-to-left matching for ( i = matchExpr["needsContext"].test( selector ) ? -1 : tokens.length - 1; i >= 0; i-- ) { token = tokens[i]; // Abort if we hit a combinator if ( Expr.relative[ (type = token.type) ] ) { break; } if ( (find = Expr.find[ type ]) ) { // Search, expanding context for leading sibling combinators if ( (seed = find( token.matches[0].replace( runescape, funescape ), rsibling.test( tokens[0].type ) && context.parentNode || context )) ) { // If seed is empty or no tokens remain, we can return early tokens.splice( i, 1 ); selector = seed.length && toSelector( tokens ); if ( !selector ) { push.apply( results, slice.call( seed, 0 ) ); return results; } break; } } } } } // Compile and execute a filtering function // Provide `match` to avoid retokenization if we modified the selector above compile( selector, match )( seed, context, documentIsXML, results, rsibling.test( selector ) ); return results; } // Deprecated Expr.pseudos["nth"] = Expr.pseudos["eq"]; // Easy API for creating new setFilters function setFilters() {} Expr.filters = setFilters.prototype = Expr.pseudos; Expr.setFilters = new setFilters(); // Initialize with the default document setDocument(); // Override sizzle attribute retrieval Sizzle.attr = jQuery.attr; jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[":"] = jQuery.expr.pseudos; jQuery.unique = Sizzle.uniqueSort; jQuery.text = Sizzle.getText; jQuery.isXMLDoc = Sizzle.isXML; jQuery.contains = Sizzle.contains; })( window ); var runtil = /Until$/, rparentsprev = /^(?:parents|prev(?:Until|All))/, isSimple = /^.[^:#\[\.,]*$/, rneedsContext = jQuery.expr.match.needsContext, // methods guaranteed to produce a unique set when starting from a unique set guaranteedUnique = { children: true, contents: true, next: true, prev: true }; jQuery.fn.extend({ find: function( selector ) { var i, ret, self; if ( typeof selector !== "string" ) { self = this; return this.pushStack( jQuery( selector ).filter(function() { for ( i = 0; i < self.length; i++ ) { if ( jQuery.contains( self[ i ], this ) ) { return true; } } }) ); } ret = []; for ( i = 0; i < this.length; i++ ) { jQuery.find( selector, this[ i ], ret ); } // Needed because $( selector, context ) becomes $( context ).find( selector ) ret = this.pushStack( jQuery.unique( ret ) ); ret.selector = ( this.selector ? this.selector + " " : "" ) + selector; return ret; }, has: function( target ) { var i, targets = jQuery( target, this ), len = targets.length; return this.filter(function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( this, targets[i] ) ) { return true; } } }); }, not: function( selector ) { return this.pushStack( winnow(this, selector, false) ); }, filter: function( selector ) { return this.pushStack( winnow(this, selector, true) ); }, is: function( selector ) { return !!selector && ( typeof selector === "string" ? // If this is a positional/relative selector, check membership in the returned set // so $("p:first").is("p:last") won't return true for a doc with two "p". rneedsContext.test( selector ) ? jQuery( selector, this.context ).index( this[0] ) >= 0 : jQuery.filter( selector, this ).length > 0 : this.filter( selector ).length > 0 ); }, closest: function( selectors, context ) { var cur, i = 0, l = this.length, ret = [], pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? jQuery( selectors, context || this.context ) : 0; for ( ; i < l; i++ ) { cur = this[i]; while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) { if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { ret.push( cur ); break; } cur = cur.parentNode; } } return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); }, // Determine the position of an element within // the matched set of elements index: function( elem ) { // No argument, return index in parent if ( !elem ) { return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; } // index in selector if ( typeof elem === "string" ) { return jQuery.inArray( this[0], jQuery( elem ) ); } // Locate the position of the desired element return jQuery.inArray( // If it receives a jQuery object, the first element is used elem.jquery ? elem[0] : elem, this ); }, add: function( selector, context ) { var set = typeof selector === "string" ? jQuery( selector, context ) : jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), all = jQuery.merge( this.get(), set ); return this.pushStack( jQuery.unique(all) ); }, addBack: function( selector ) { return this.add( selector == null ? this.prevObject : this.prevObject.filter(selector) ); } }); jQuery.fn.andSelf = jQuery.fn.addBack; function sibling( cur, dir ) { do { cur = cur[ dir ]; } while ( cur && cur.nodeType !== 1 ); return cur; } jQuery.each({ parent: function( elem ) { var parent = elem.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, parents: function( elem ) { return jQuery.dir( elem, "parentNode" ); }, parentsUntil: function( elem, i, until ) { return jQuery.dir( elem, "parentNode", until ); }, next: function( elem ) { return sibling( elem, "nextSibling" ); }, prev: function( elem ) { return sibling( elem, "previousSibling" ); }, nextAll: function( elem ) { return jQuery.dir( elem, "nextSibling" ); }, prevAll: function( elem ) { return jQuery.dir( elem, "previousSibling" ); }, nextUntil: function( elem, i, until ) { return jQuery.dir( elem, "nextSibling", until ); }, prevUntil: function( elem, i, until ) { return jQuery.dir( elem, "previousSibling", until ); }, siblings: function( elem ) { return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); }, children: function( elem ) { return jQuery.sibling( elem.firstChild ); }, contents: function( elem ) { return jQuery.nodeName( elem, "iframe" ) ? elem.contentDocument || elem.contentWindow.document : jQuery.merge( [], elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var ret = jQuery.map( this, fn, until ); if ( !runtil.test( name ) ) { selector = until; } if ( selector && typeof selector === "string" ) { ret = jQuery.filter( selector, ret ); } ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; if ( this.length > 1 && rparentsprev.test( name ) ) { ret = ret.reverse(); } return this.pushStack( ret ); }; }); jQuery.extend({ filter: function( expr, elems, not ) { if ( not ) { expr = ":not(" + expr + ")"; } return elems.length === 1 ? jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : jQuery.find.matches(expr, elems); }, dir: function( elem, dir, until ) { var matched = [], cur = elem[ dir ]; while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { if ( cur.nodeType === 1 ) { matched.push( cur ); } cur = cur[dir]; } return matched; }, sibling: function( n, elem ) { var r = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType === 1 && n !== elem ) { r.push( n ); } } return r; } }); // Implement the identical functionality for filter and not function winnow( elements, qualifier, keep ) { // Can't pass null or undefined to indexOf in Firefox 4 // Set to 0 to skip string check qualifier = qualifier || 0; if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep(elements, function( elem, i ) { var retVal = !!qualifier.call( elem, i, elem ); return retVal === keep; }); } else if ( qualifier.nodeType ) { return jQuery.grep(elements, function( elem ) { return ( elem === qualifier ) === keep; }); } else if ( typeof qualifier === "string" ) { var filtered = jQuery.grep(elements, function( elem ) { return elem.nodeType === 1; }); if ( isSimple.test( qualifier ) ) { return jQuery.filter(qualifier, filtered, !keep); } else { qualifier = jQuery.filter( qualifier, filtered ); } } return jQuery.grep(elements, function( elem ) { return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; }); } function createSafeFragment( document ) { var list = nodeNames.split( "|" ), safeFrag = document.createDocumentFragment(); if ( safeFrag.createElement ) { while ( list.length ) { safeFrag.createElement( list.pop() ); } } return safeFrag; } var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), rleadingWhitespace = /^\s+/, rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, rtagName = /<([\w:]+)/, rtbody = /<tbody/i, rhtml = /<|&#?\w+;/, rnoInnerhtml = /<(?:script|style|link)/i, manipulation_rcheckableType = /^(?:checkbox|radio)$/i, // checked="checked" or checked rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, rscriptType = /^$|\/(?:java|ecma)script/i, rscriptTypeMasked = /^true\/(.*)/, rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g, // We have to close these tags to support XHTML (#13200) wrapMap = { option: [ 1, "<select multiple='multiple'>", "</select>" ], legend: [ 1, "<fieldset>", "</fieldset>" ], area: [ 1, "<map>", "</map>" ], param: [ 1, "<object>", "</object>" ], thead: [ 1, "<table>", "</table>" ], tr: [ 2, "<table><tbody>", "</tbody></table>" ], col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, // unless wrapped in a div with non-breaking characters in front of it. _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ] }, safeFragment = createSafeFragment( document ), fragmentDiv = safeFragment.appendChild( document.createElement("div") ); wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; jQuery.fn.extend({ text: function( value ) { return jQuery.access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); }, null, value, arguments.length ); }, wrapAll: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each(function(i) { jQuery(this).wrapAll( html.call(this, i) ); }); } if ( this[0] ) { // The elements to wrap the target around var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); if ( this[0].parentNode ) { wrap.insertBefore( this[0] ); } wrap.map(function() { var elem = this; while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { elem = elem.firstChild; } return elem; }).append( this ); } return this; }, wrapInner: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each(function(i) { jQuery(this).wrapInner( html.call(this, i) ); }); } return this.each(function() { var self = jQuery( this ), contents = self.contents(); if ( contents.length ) { contents.wrapAll( html ); } else { self.append( html ); } }); }, wrap: function( html ) { var isFunction = jQuery.isFunction( html ); return this.each(function(i) { jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); }); }, unwrap: function() { return this.parent().each(function() { if ( !jQuery.nodeName( this, "body" ) ) { jQuery( this ).replaceWith( this.childNodes ); } }).end(); }, append: function() { return this.domManip(arguments, true, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.appendChild( elem ); } }); }, prepend: function() { return this.domManip(arguments, true, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.insertBefore( elem, this.firstChild ); } }); }, before: function() { return this.domManip( arguments, false, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } }); }, after: function() { return this.domManip( arguments, false, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); } }); }, // keepData is for internal use only--do not document remove: function( selector, keepData ) { var elem, i = 0; for ( ; (elem = this[i]) != null; i++ ) { if ( !selector || jQuery.filter( selector, [ elem ] ).length > 0 ) { if ( !keepData && elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem ) ); } if ( elem.parentNode ) { if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { setGlobalEval( getAll( elem, "script" ) ); } elem.parentNode.removeChild( elem ); } } } return this; }, empty: function() { var elem, i = 0; for ( ; (elem = this[i]) != null; i++ ) { // Remove element nodes and prevent memory leaks if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); } // Remove any remaining nodes while ( elem.firstChild ) { elem.removeChild( elem.firstChild ); } // If this is a select, ensure that it displays empty (#12336) // Support: IE<9 if ( elem.options && jQuery.nodeName( elem, "select" ) ) { elem.options.length = 0; } } return this; }, clone: function( dataAndEvents, deepDataAndEvents ) { dataAndEvents = dataAndEvents == null ? false : dataAndEvents; deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; return this.map( function () { return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); }); }, html: function( value ) { return jQuery.access( this, function( value ) { var elem = this[0] || {}, i = 0, l = this.length; if ( value === undefined ) { return elem.nodeType === 1 ? elem.innerHTML.replace( rinlinejQuery, "" ) : undefined; } // See if we can take a shortcut and just use innerHTML if ( typeof value === "string" && !rnoInnerhtml.test( value ) && ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { value = value.replace( rxhtmlTag, "<$1></$2>" ); try { for (; i < l; i++ ) { // Remove element nodes and prevent memory leaks elem = this[i] || {}; if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); elem.innerHTML = value; } } elem = 0; // If using innerHTML throws an exception, use the fallback method } catch(e) {} } if ( elem ) { this.empty().append( value ); } }, null, value, arguments.length ); }, replaceWith: function( value ) { var isFunc = jQuery.isFunction( value ); // Make sure that the elements are removed from the DOM before they are inserted // this can help fix replacing a parent with child elements if ( !isFunc && typeof value !== "string" ) { value = jQuery( value ).not( this ).detach(); } return this.domManip( [ value ], true, function( elem ) { var next = this.nextSibling, parent = this.parentNode; if ( parent && this.nodeType === 1 || this.nodeType === 11 ) { jQuery( this ).remove(); if ( next ) { next.parentNode.insertBefore( elem, next ); } else { parent.appendChild( elem ); } } }); }, detach: function( selector ) { return this.remove( selector, true ); }, domManip: function( args, table, callback ) { // Flatten any nested arrays args = core_concat.apply( [], args ); var fragment, first, scripts, hasScripts, node, doc, i = 0, l = this.length, set = this, iNoClone = l - 1, value = args[0], isFunction = jQuery.isFunction( value ); // We can't cloneNode fragments that contain checked, in WebKit if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { return this.each(function( index ) { var self = set.eq( index ); if ( isFunction ) { args[0] = value.call( this, index, table ? self.html() : undefined ); } self.domManip( args, table, callback ); }); } if ( l ) { fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); first = fragment.firstChild; if ( fragment.childNodes.length === 1 ) { fragment = first; } if ( first ) { table = table && jQuery.nodeName( first, "tr" ); scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); hasScripts = scripts.length; // Use the original fragment for the last item instead of the first because it can end up // being emptied incorrectly in certain situations (#8070). for ( ; i < l; i++ ) { node = fragment; if ( i !== iNoClone ) { node = jQuery.clone( node, true, true ); // Keep references to cloned scripts for later restoration if ( hasScripts ) { jQuery.merge( scripts, getAll( node, "script" ) ); } } callback.call( table && jQuery.nodeName( this[i], "table" ) ? findOrAppend( this[i], "tbody" ) : this[i], node, i ); } if ( hasScripts ) { doc = scripts[ scripts.length - 1 ].ownerDocument; // Reenable scripts jQuery.map( scripts, restoreScript ); // Evaluate executable scripts on first document insertion for ( i = 0; i < hasScripts; i++ ) { node = scripts[ i ]; if ( rscriptType.test( node.type || "" ) && !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { if ( node.src ) { // Hope ajax is available... jQuery.ajax({ url: node.src, type: "GET", dataType: "script", async: false, global: false, "throws": true }); } else { jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); } } } } // Fix #11809: Avoid leaking memory fragment = first = null; } } return this; } }); function findOrAppend( elem, tag ) { return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) ); } // Replace/restore the type attribute of script elements for safe DOM manipulation function disableScript( elem ) { var attr = elem.getAttributeNode("type"); elem.type = ( attr && attr.specified ) + "/" + elem.type; return elem; } function restoreScript( elem ) { var match = rscriptTypeMasked.exec( elem.type ); if ( match ) { elem.type = match[1]; } else { elem.removeAttribute("type"); } return elem; } // Mark scripts as having already been evaluated function setGlobalEval( elems, refElements ) { var elem, i = 0; for ( ; (elem = elems[i]) != null; i++ ) { jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); } } function cloneCopyEvent( src, dest ) { if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { return; } var type, i, l, oldData = jQuery._data( src ), curData = jQuery._data( dest, oldData ), events = oldData.events; if ( events ) { delete curData.handle; curData.events = {}; for ( type in events ) { for ( i = 0, l = events[ type ].length; i < l; i++ ) { jQuery.event.add( dest, type, events[ type ][ i ] ); } } } // make the cloned public data object a copy from the original if ( curData.data ) { curData.data = jQuery.extend( {}, curData.data ); } } function fixCloneNodeIssues( src, dest ) { var nodeName, data, e; // We do not need to do anything for non-Elements if ( dest.nodeType !== 1 ) { return; } nodeName = dest.nodeName.toLowerCase(); // IE6-8 copies events bound via attachEvent when using cloneNode. if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { data = jQuery._data( dest ); for ( e in data.events ) { jQuery.removeEvent( dest, e, data.handle ); } // Event data gets referenced instead of copied if the expando gets copied too dest.removeAttribute( jQuery.expando ); } // IE blanks contents when cloning scripts, and tries to evaluate newly-set text if ( nodeName === "script" && dest.text !== src.text ) { disableScript( dest ).text = src.text; restoreScript( dest ); // IE6-10 improperly clones children of object elements using classid. // IE10 throws NoModificationAllowedError if parent is null, #12132. } else if ( nodeName === "object" ) { if ( dest.parentNode ) { dest.outerHTML = src.outerHTML; } // This path appears unavoidable for IE9. When cloning an object // element in IE9, the outerHTML strategy above is not sufficient. // If the src has innerHTML and the destination does not, // copy the src.innerHTML into the dest.innerHTML. #10324 if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { dest.innerHTML = src.innerHTML; } } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { // IE6-8 fails to persist the checked state of a cloned checkbox // or radio button. Worse, IE6-7 fail to give the cloned element // a checked appearance if the defaultChecked value isn't also set dest.defaultChecked = dest.checked = src.checked; // IE6-7 get confused and end up setting the value of a cloned // checkbox/radio button to an empty string instead of "on" if ( dest.value !== src.value ) { dest.value = src.value; } // IE6-8 fails to return the selected option to the default selected // state when cloning options } else if ( nodeName === "option" ) { dest.defaultSelected = dest.selected = src.defaultSelected; // IE6-8 fails to set the defaultValue to the correct value when // cloning other types of input fields } else if ( nodeName === "input" || nodeName === "textarea" ) { dest.defaultValue = src.defaultValue; } } jQuery.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function( name, original ) { jQuery.fn[ name ] = function( selector ) { var elems, i = 0, ret = [], insert = jQuery( selector ), last = insert.length - 1; for ( ; i <= last; i++ ) { elems = i === last ? this : this.clone(true); jQuery( insert[i] )[ original ]( elems ); // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() core_push.apply( ret, elems.get() ); } return this.pushStack( ret ); }; }); function getAll( context, tag ) { var elems, elem, i = 0, found = typeof context.getElementsByTagName !== "undefined" ? context.getElementsByTagName( tag || "*" ) : typeof context.querySelectorAll !== "undefined" ? context.querySelectorAll( tag || "*" ) : undefined; if ( !found ) { for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { if ( !tag || jQuery.nodeName( elem, tag ) ) { found.push( elem ); } else { jQuery.merge( found, getAll( elem, tag ) ); } } } return tag === undefined || tag && jQuery.nodeName( context, tag ) ? jQuery.merge( [ context ], found ) : found; } // Used in buildFragment, fixes the defaultChecked property function fixDefaultChecked( elem ) { if ( manipulation_rcheckableType.test( elem.type ) ) { elem.defaultChecked = elem.checked; } } jQuery.extend({ clone: function( elem, dataAndEvents, deepDataAndEvents ) { var destElements, srcElements, node, i, clone, inPage = jQuery.contains( elem.ownerDocument, elem ); if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { clone = elem.cloneNode( true ); // IE<=8 does not properly clone detached, unknown element nodes } else { fragmentDiv.innerHTML = elem.outerHTML; fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); } if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 destElements = getAll( clone ); srcElements = getAll( elem ); // Fix all IE cloning issues for ( i = 0; (node = srcElements[i]) != null; ++i ) { // Ensure that the destination node is not null; Fixes #9587 if ( destElements[i] ) { fixCloneNodeIssues( node, destElements[i] ); } } } // Copy the events from the original to the clone if ( dataAndEvents ) { if ( deepDataAndEvents ) { srcElements = srcElements || getAll( elem ); destElements = destElements || getAll( clone ); for ( i = 0; (node = srcElements[i]) != null; i++ ) { cloneCopyEvent( node, destElements[i] ); } } else { cloneCopyEvent( elem, clone ); } } // Preserve script evaluation history destElements = getAll( clone, "script" ); if ( destElements.length > 0 ) { setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); } destElements = srcElements = node = null; // Return the cloned set return clone; }, buildFragment: function( elems, context, scripts, selection ) { var contains, elem, tag, tmp, wrap, tbody, j, l = elems.length, // Ensure a safe fragment safe = createSafeFragment( context ), nodes = [], i = 0; for ( ; i < l; i++ ) { elem = elems[ i ]; if ( elem || elem === 0 ) { // Add nodes directly if ( jQuery.type( elem ) === "object" ) { jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); // Convert non-html into a text node } else if ( !rhtml.test( elem ) ) { nodes.push( context.createTextNode( elem ) ); // Convert html into DOM nodes } else { tmp = tmp || safe.appendChild( context.createElement("div") ); // Deserialize a standard representation tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); wrap = wrapMap[ tag ] || wrapMap._default; tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[2]; // Descend through wrappers to the right content j = wrap[0]; while ( j-- ) { tmp = tmp.lastChild; } // Manually add leading whitespace removed by IE if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); } // Remove IE's autoinserted <tbody> from table fragments if ( !jQuery.support.tbody ) { // String was a <table>, *may* have spurious <tbody> elem = tag === "table" && !rtbody.test( elem ) ? tmp.firstChild : // String was a bare <thead> or <tfoot> wrap[1] === "<table>" && !rtbody.test( elem ) ? tmp : 0; j = elem && elem.childNodes.length; while ( j-- ) { if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { elem.removeChild( tbody ); } } } jQuery.merge( nodes, tmp.childNodes ); // Fix #12392 for WebKit and IE > 9 tmp.textContent = ""; // Fix #12392 for oldIE while ( tmp.firstChild ) { tmp.removeChild( tmp.firstChild ); } // Remember the top-level container for proper cleanup tmp = safe.lastChild; } } } // Fix #11356: Clear elements from fragment if ( tmp ) { safe.removeChild( tmp ); } // Reset defaultChecked for any radios and checkboxes // about to be appended to the DOM in IE 6/7 (#8060) if ( !jQuery.support.appendChecked ) { jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); } i = 0; while ( (elem = nodes[ i++ ]) ) { // #4087 - If origin and destination elements are the same, and this is // that element, do not do anything if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { continue; } contains = jQuery.contains( elem.ownerDocument, elem ); // Append to fragment tmp = getAll( safe.appendChild( elem ), "script" ); // Preserve script evaluation history if ( contains ) { setGlobalEval( tmp ); } // Capture executables if ( scripts ) { j = 0; while ( (elem = tmp[ j++ ]) ) { if ( rscriptType.test( elem.type || "" ) ) { scripts.push( elem ); } } } } tmp = null; return safe; }, cleanData: function( elems, /* internal */ acceptData ) { var data, id, elem, type, i = 0, internalKey = jQuery.expando, cache = jQuery.cache, deleteExpando = jQuery.support.deleteExpando, special = jQuery.event.special; for ( ; (elem = elems[i]) != null; i++ ) { if ( acceptData || jQuery.acceptData( elem ) ) { id = elem[ internalKey ]; data = id && cache[ id ]; if ( data ) { if ( data.events ) { for ( type in data.events ) { if ( special[ type ] ) { jQuery.event.remove( elem, type ); // This is a shortcut to avoid jQuery.event.remove's overhead } else { jQuery.removeEvent( elem, type, data.handle ); } } } // Remove cache only if it was not already removed by jQuery.event.remove if ( cache[ id ] ) { delete cache[ id ]; // IE does not allow us to delete expando properties from nodes, // nor does it have a removeAttribute function on Document nodes; // we must handle all of these cases if ( deleteExpando ) { delete elem[ internalKey ]; } else if ( typeof elem.removeAttribute !== "undefined" ) { elem.removeAttribute( internalKey ); } else { elem[ internalKey ] = null; } core_deletedIds.push( id ); } } } } } }); var curCSS, getStyles, iframe, ralpha = /alpha\([^)]*\)/i, ropacity = /opacity\s*=\s*([^)]*)/, rposition = /^(top|right|bottom|left)$/, // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display rdisplayswap = /^(none|table(?!-c[ea]).+)/, rmargin = /^margin/, rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), elemdisplay = { BODY: "block" }, cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssNormalTransform = { letterSpacing: 0, fontWeight: 400 }, cssExpand = [ "Top", "Right", "Bottom", "Left" ], cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; // return a css property mapped to a potentially vendor prefixed property function vendorPropName( style, name ) { // shortcut for names that are not vendor prefixed if ( name in style ) { return name; } // check for vendor prefixed names var capName = name.charAt(0).toUpperCase() + name.slice(1), origName = name, i = cssPrefixes.length; while ( i-- ) { name = cssPrefixes[ i ] + capName; if ( name in style ) { return name; } } return origName; } function isHidden( elem, el ) { // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); } function showHide( elements, show ) { var elem, values = [], index = 0, length = elements.length; for ( ; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } values[ index ] = jQuery._data( elem, "olddisplay" ); if ( show ) { // Reset the inline display of this element to learn if it is // being hidden by cascaded rules or not if ( !values[ index ] && elem.style.display === "none" ) { elem.style.display = ""; } // Set elements which have been overridden with display: none // in a stylesheet to whatever the default browser style is // for such an element if ( elem.style.display === "" && isHidden( elem ) ) { values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); } } else if ( !values[ index ] && !isHidden( elem ) ) { jQuery._data( elem, "olddisplay", jQuery.css( elem, "display" ) ); } } // Set the display of most of the elements in a second loop // to avoid the constant reflow for ( index = 0; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } if ( !show || elem.style.display === "none" || elem.style.display === "" ) { elem.style.display = show ? values[ index ] || "" : "none"; } } return elements; } jQuery.fn.extend({ css: function( name, value ) { return jQuery.access( this, function( elem, name, value ) { var styles, len, map = {}, i = 0; if ( jQuery.isArray( name ) ) { styles = getStyles( elem ); len = name.length; for ( ; i < len; i++ ) { map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); } return map; } return value !== undefined ? jQuery.style( elem, name, value ) : jQuery.css( elem, name ); }, name, value, arguments.length > 1 ); }, show: function() { return showHide( this, true ); }, hide: function() { return showHide( this ); }, toggle: function( state ) { var bool = typeof state === "boolean"; return this.each(function() { if ( bool ? state : isHidden( this ) ) { jQuery( this ).show(); } else { jQuery( this ).hide(); } }); } }); jQuery.extend({ // Add in style property hooks for overriding the default // behavior of getting and setting a style property cssHooks: { opacity: { get: function( elem, computed ) { if ( computed ) { // We should always get a number back from opacity var ret = curCSS( elem, "opacity" ); return ret === "" ? "1" : ret; } } } }, // Exclude the following css properties to add px cssNumber: { "columnCount": true, "fillOpacity": true, "fontWeight": true, "lineHeight": true, "opacity": true, "orphans": true, "widows": true, "zIndex": true, "zoom": true }, // Add in properties whose names you wish to fix before // setting or getting the value cssProps: { // normalize float css property "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" }, // Get and set the style property on a DOM Node style: function( elem, name, value, extra ) { // Don't set styles on text and comment nodes if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { return; } // Make sure that we're working with the right name var ret, type, hooks, origName = jQuery.camelCase( name ), style = elem.style; name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); // gets hook for the prefixed version // followed by the unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // Check if we're setting a value if ( value !== undefined ) { type = typeof value; // convert relative number strings (+= or -=) to relative numbers. #7345 if ( type === "string" && (ret = rrelNum.exec( value )) ) { value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); // Fixes bug #9237 type = "number"; } // Make sure that NaN and null values aren't set. See: #7116 if ( value == null || type === "number" && isNaN( value ) ) { return; } // If a number was passed in, add 'px' to the (except for certain CSS properties) if ( type === "number" && !jQuery.cssNumber[ origName ] ) { value += "px"; } // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, // but it would mean to define eight (for every problematic property) identical functions if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { style[ name ] = "inherit"; } // If a hook was provided, use that value, otherwise just set the specified value if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { // Wrapped to prevent IE from throwing errors when 'invalid' values are provided // Fixes bug #5509 try { style[ name ] = value; } catch(e) {} } } else { // If a hook was provided get the non-computed value from there if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { return ret; } // Otherwise just get the value from the style object return style[ name ]; } }, css: function( elem, name, extra, styles ) { var val, num, hooks, origName = jQuery.camelCase( name ); // Make sure that we're working with the right name name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); // gets hook for the prefixed version // followed by the unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // If a hook was provided get the computed value from there if ( hooks && "get" in hooks ) { val = hooks.get( elem, true, extra ); } // Otherwise, if a way to get the computed value exists, use that if ( val === undefined ) { val = curCSS( elem, name, styles ); } //convert "normal" to computed value if ( val === "normal" && name in cssNormalTransform ) { val = cssNormalTransform[ name ]; } // Return, converting to number if forced or a qualifier was provided and val looks numeric if ( extra ) { num = parseFloat( val ); return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; } return val; }, // A method for quickly swapping in/out CSS properties to get correct calculations swap: function( elem, options, callback, args ) { var ret, name, old = {}; // Remember the old values, and insert the new ones for ( name in options ) { old[ name ] = elem.style[ name ]; elem.style[ name ] = options[ name ]; } ret = callback.apply( elem, args || [] ); // Revert the old values for ( name in options ) { elem.style[ name ] = old[ name ]; } return ret; } }); // NOTE: we've included the "window" in window.getComputedStyle // because jsdom on node.js will break without it. if ( window.getComputedStyle ) { getStyles = function( elem ) { return window.getComputedStyle( elem, null ); }; curCSS = function( elem, name, _computed ) { var width, minWidth, maxWidth, computed = _computed || getStyles( elem ), // getPropertyValue is only needed for .css('filter') in IE9, see #12537 ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, style = elem.style; if ( computed ) { if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { ret = jQuery.style( elem, name ); } // A tribute to the "awesome hack by Dean Edwards" // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { // Remember the original values width = style.width; minWidth = style.minWidth; maxWidth = style.maxWidth; // Put in the new values to get a computed value out style.minWidth = style.maxWidth = style.width = ret; ret = computed.width; // Revert the changed values style.width = width; style.minWidth = minWidth; style.maxWidth = maxWidth; } } return ret; }; } else if ( document.documentElement.currentStyle ) { getStyles = function( elem ) { return elem.currentStyle; }; curCSS = function( elem, name, _computed ) { var left, rs, rsLeft, computed = _computed || getStyles( elem ), ret = computed ? computed[ name ] : undefined, style = elem.style; // Avoid setting ret to empty string here // so we don't default to auto if ( ret == null && style && style[ name ] ) { ret = style[ name ]; } // From the awesome hack by Dean Edwards // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 // If we're not dealing with a regular pixel number // but a number that has a weird ending, we need to convert it to pixels // but not position css attributes, as those are proportional to the parent element instead // and we can't measure the parent instead because it might trigger a "stacking dolls" problem if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { // Remember the original values left = style.left; rs = elem.runtimeStyle; rsLeft = rs && rs.left; // Put in the new values to get a computed value out if ( rsLeft ) { rs.left = elem.currentStyle.left; } style.left = name === "fontSize" ? "1em" : ret; ret = style.pixelLeft + "px"; // Revert the changed values style.left = left; if ( rsLeft ) { rs.left = rsLeft; } } return ret === "" ? "auto" : ret; }; } function setPositiveNumber( elem, value, subtract ) { var matches = rnumsplit.exec( value ); return matches ? // Guard against undefined "subtract", e.g., when used as in cssHooks Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : value; } function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { var i = extra === ( isBorderBox ? "border" : "content" ) ? // If we already have the right measurement, avoid augmentation 4 : // Otherwise initialize for horizontal or vertical properties name === "width" ? 1 : 0, val = 0; for ( ; i < 4; i += 2 ) { // both box models exclude margin, so add it if we want it if ( extra === "margin" ) { val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); } if ( isBorderBox ) { // border-box includes padding, so remove it if we want content if ( extra === "content" ) { val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); } // at this point, extra isn't border nor margin, so remove border if ( extra !== "margin" ) { val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } else { // at this point, extra isn't content, so add padding val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); // at this point, extra isn't content nor padding, so add border if ( extra !== "padding" ) { val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } } return val; } function getWidthOrHeight( elem, name, extra ) { // Start with offset property, which is equivalent to the border-box value var valueIsBorderBox = true, val = name === "width" ? elem.offsetWidth : elem.offsetHeight, styles = getStyles( elem ), isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; // some non-html elements return undefined for offsetWidth, so check for null/undefined // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 if ( val <= 0 || val == null ) { // Fall back to computed then uncomputed css if necessary val = curCSS( elem, name, styles ); if ( val < 0 || val == null ) { val = elem.style[ name ]; } // Computed unit is not pixels. Stop here and return. if ( rnumnonpx.test(val) ) { return val; } // we need the check for style in case a browser which returns unreliable values // for getComputedStyle silently falls back to the reliable elem.style valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); // Normalize "", auto, and prepare for extra val = parseFloat( val ) || 0; } // use the active box-sizing model to add/subtract irrelevant styles return ( val + augmentWidthOrHeight( elem, name, extra || ( isBorderBox ? "border" : "content" ), valueIsBorderBox, styles ) ) + "px"; } // Try to determine the default display value of an element function css_defaultDisplay( nodeName ) { var doc = document, display = elemdisplay[ nodeName ]; if ( !display ) { display = actualDisplay( nodeName, doc ); // If the simple way fails, read from inside an iframe if ( display === "none" || !display ) { // Use the already-created iframe if possible iframe = ( iframe || jQuery("<iframe frameborder='0' width='0' height='0'/>") .css( "cssText", "display:block !important" ) ).appendTo( doc.documentElement ); // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse doc = ( iframe[0].contentWindow || iframe[0].contentDocument ).document; doc.write("<!doctype html><html><body>"); doc.close(); display = actualDisplay( nodeName, doc ); iframe.detach(); } // Store the correct default display elemdisplay[ nodeName ] = display; } return display; } // Called ONLY from within css_defaultDisplay function actualDisplay( name, doc ) { var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), display = jQuery.css( elem[0], "display" ); elem.remove(); return display; } jQuery.each([ "height", "width" ], function( i, name ) { jQuery.cssHooks[ name ] = { get: function( elem, computed, extra ) { if ( computed ) { // certain elements can have dimension info if we invisibly show them // however, it must have a current display style that would benefit from this return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ? jQuery.swap( elem, cssShow, function() { return getWidthOrHeight( elem, name, extra ); }) : getWidthOrHeight( elem, name, extra ); } }, set: function( elem, value, extra ) { var styles = extra && getStyles( elem ); return setPositiveNumber( elem, value, extra ? augmentWidthOrHeight( elem, name, extra, jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", styles ) : 0 ); } }; }); if ( !jQuery.support.opacity ) { jQuery.cssHooks.opacity = { get: function( elem, computed ) { // IE uses filters for opacity return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ? ( 0.01 * parseFloat( RegExp.$1 ) ) + "" : computed ? "1" : ""; }, set: function( elem, value ) { var style = elem.style, currentStyle = elem.currentStyle, opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", filter = currentStyle && currentStyle.filter || style.filter || ""; // IE has trouble with opacity if it does not have layout // Force it by setting the zoom level style.zoom = 1; // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652 // if value === "", then remove inline opacity #12685 if ( ( value >= 1 || value === "" ) && jQuery.trim( filter.replace( ralpha, "" ) ) === "" && style.removeAttribute ) { // Setting style.filter to null, "" & " " still leave "filter:" in the cssText // if "filter:" is present at all, clearType is disabled, we want to avoid this // style.removeAttribute is IE Only, but so apparently is this code path... style.removeAttribute( "filter" ); // if there is no filter style applied in a css rule or unset inline opacity, we are done if ( value === "" || currentStyle && !currentStyle.filter ) { return; } } // otherwise, set new filter values style.filter = ralpha.test( filter ) ? filter.replace( ralpha, opacity ) : filter + " " + opacity; } }; } // These hooks cannot be added until DOM ready because the support test // for it is not run until after DOM ready jQuery(function() { if ( !jQuery.support.reliableMarginRight ) { jQuery.cssHooks.marginRight = { get: function( elem, computed ) { if ( computed ) { // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right // Work around by temporarily setting element display to inline-block return jQuery.swap( elem, { "display": "inline-block" }, curCSS, [ elem, "marginRight" ] ); } } }; } // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 // getComputedStyle returns percent when specified for top/left/bottom/right // rather than make the css module depend on the offset module, we just check for it here if ( !jQuery.support.pixelPosition && jQuery.fn.position ) { jQuery.each( [ "top", "left" ], function( i, prop ) { jQuery.cssHooks[ prop ] = { get: function( elem, computed ) { if ( computed ) { computed = curCSS( elem, prop ); // if curCSS returns percentage, fallback to offset return rnumnonpx.test( computed ) ? jQuery( elem ).position()[ prop ] + "px" : computed; } } }; }); } }); if ( jQuery.expr && jQuery.expr.filters ) { jQuery.expr.filters.hidden = function( elem ) { return ( elem.offsetWidth === 0 && elem.offsetHeight === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none"); }; jQuery.expr.filters.visible = function( elem ) { return !jQuery.expr.filters.hidden( elem ); }; } // These hooks are used by animate to expand properties jQuery.each({ margin: "", padding: "", border: "Width" }, function( prefix, suffix ) { jQuery.cssHooks[ prefix + suffix ] = { expand: function( value ) { var i = 0, expanded = {}, // assumes a single number if not a string parts = typeof value === "string" ? value.split(" ") : [ value ]; for ( ; i < 4; i++ ) { expanded[ prefix + cssExpand[ i ] + suffix ] = parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; } return expanded; } }; if ( !rmargin.test( prefix ) ) { jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; } }); var r20 = /%20/g, rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset)$/i, rsubmittable = /^(?:input|select|textarea|keygen)/i; jQuery.fn.extend({ serialize: function() { return jQuery.param( this.serializeArray() ); }, serializeArray: function() { return this.map(function(){ // Can add propHook for "elements" to filter or add form elements var elements = jQuery.prop( this, "elements" ); return elements ? jQuery.makeArray( elements ) : this; }) .filter(function(){ var type = this.type; // Use .is(":disabled") so that fieldset[disabled] works return this.name && !jQuery( this ).is( ":disabled" ) && rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !manipulation_rcheckableType.test( type ) ); }) .map(function( i, elem ){ var val = jQuery( this ).val(); return val == null ? null : jQuery.isArray( val ) ? jQuery.map( val, function( val ){ return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; }) : { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; }).get(); } }); //Serialize an array of form elements or a set of //key/values into a query string jQuery.param = function( a, traditional ) { var prefix, s = [], add = function( key, value ) { // If value is a function, invoke it and return its value value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); }; // Set traditional to true for jQuery <= 1.3.2 behavior. if ( traditional === undefined ) { traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; } // If an array was passed in, assume that it is an array of form elements. if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { // Serialize the form elements jQuery.each( a, function() { add( this.name, this.value ); }); } else { // If traditional, encode the "old" way (the way 1.3.2 or older // did it), otherwise encode params recursively. for ( prefix in a ) { buildParams( prefix, a[ prefix ], traditional, add ); } } // Return the resulting serialization return s.join( "&" ).replace( r20, "+" ); }; function buildParams( prefix, obj, traditional, add ) { var name; if ( jQuery.isArray( obj ) ) { // Serialize array item. jQuery.each( obj, function( i, v ) { if ( traditional || rbracket.test( prefix ) ) { // Treat each array item as a scalar. add( prefix, v ); } else { // Item is non-scalar (array or object), encode its numeric index. buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add ); } }); } else if ( !traditional && jQuery.type( obj ) === "object" ) { // Serialize object item. for ( name in obj ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); } } else { // Serialize scalar item. add( prefix, obj ); } } var // Document location ajaxLocParts, ajaxLocation, ajax_nonce = jQuery.now(), ajax_rquery = /\?/, rhash = /#.*$/, rts = /([?&])_=[^&]*/, rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL // #7653, #8125, #8152: local protocol detection rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, rnoContent = /^(?:GET|HEAD)$/, rprotocol = /^\/\//, rurl = /^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/, // Keep a copy of the old load method _load = jQuery.fn.load, /* Prefilters * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) * 2) These are called: * - BEFORE asking for a transport * - AFTER param serialization (s.data is a string if s.processData is true) * 3) key is the dataType * 4) the catchall symbol "*" can be used * 5) execution will start with transport dataType and THEN continue down to "*" if needed */ prefilters = {}, /* Transports bindings * 1) key is the dataType * 2) the catchall symbol "*" can be used * 3) selection will start with transport dataType and THEN go to "*" if needed */ transports = {}, // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression allTypes = "*/".concat("*"); // #8138, IE may throw an exception when accessing // a field from window.location if document.domain has been set try { ajaxLocation = location.href; } catch( e ) { // Use the href attribute of an A element // since IE will modify it given document.location ajaxLocation = document.createElement( "a" ); ajaxLocation.href = ""; ajaxLocation = ajaxLocation.href; } // Segment location into parts ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; // Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport function addToPrefiltersOrTransports( structure ) { // dataTypeExpression is optional and defaults to "*" return function( dataTypeExpression, func ) { if ( typeof dataTypeExpression !== "string" ) { func = dataTypeExpression; dataTypeExpression = "*"; } var dataType, i = 0, dataTypes = dataTypeExpression.toLowerCase().match( core_rnotwhite ) || []; if ( jQuery.isFunction( func ) ) { // For each dataType in the dataTypeExpression while ( (dataType = dataTypes[i++]) ) { // Prepend if requested if ( dataType[0] === "+" ) { dataType = dataType.slice( 1 ) || "*"; (structure[ dataType ] = structure[ dataType ] || []).unshift( func ); // Otherwise append } else { (structure[ dataType ] = structure[ dataType ] || []).push( func ); } } } }; } // Base inspection function for prefilters and transports function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { var inspected = {}, seekingTransport = ( structure === transports ); function inspect( dataType ) { var selected; inspected[ dataType ] = true; jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); if( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) { options.dataTypes.unshift( dataTypeOrTransport ); inspect( dataTypeOrTransport ); return false; } else if ( seekingTransport ) { return !( selected = dataTypeOrTransport ); } }); return selected; } return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); } // A special extend for ajax options // that takes "flat" options (not to be deep extended) // Fixes #9887 function ajaxExtend( target, src ) { var key, deep, flatOptions = jQuery.ajaxSettings.flatOptions || {}; for ( key in src ) { if ( src[ key ] !== undefined ) { ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ]; } } if ( deep ) { jQuery.extend( true, target, deep ); } return target; } jQuery.fn.load = function( url, params, callback ) { if ( typeof url !== "string" && _load ) { return _load.apply( this, arguments ); } var selector, type, response, self = this, off = url.indexOf(" "); if ( off >= 0 ) { selector = url.slice( off, url.length ); url = url.slice( 0, off ); } // If it's a function if ( jQuery.isFunction( params ) ) { // We assume that it's the callback callback = params; params = undefined; // Otherwise, build a param string } else if ( params && typeof params === "object" ) { type = "POST"; } // If we have elements to modify, make the request if ( self.length > 0 ) { jQuery.ajax({ url: url, // if "type" variable is undefined, then "GET" method will be used type: type, dataType: "html", data: params }).done(function( responseText ) { // Save response for use in complete callback response = arguments; self.html( selector ? // If a selector was specified, locate the right elements in a dummy div // Exclude scripts to avoid IE 'Permission Denied' errors jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) : // Otherwise use the full result responseText ); }).complete( callback && function( jqXHR, status ) { self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] ); }); } return this; }; // Attach a bunch of functions for handling common AJAX events jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ){ jQuery.fn[ type ] = function( fn ){ return this.on( type, fn ); }; }); jQuery.each( [ "get", "post" ], function( i, method ) { jQuery[ method ] = function( url, data, callback, type ) { // shift arguments if data argument was omitted if ( jQuery.isFunction( data ) ) { type = type || callback; callback = data; data = undefined; } return jQuery.ajax({ url: url, type: method, dataType: type, data: data, success: callback }); }; }); jQuery.extend({ // Counter for holding the number of active queries active: 0, // Last-Modified header cache for next request lastModified: {}, etag: {}, ajaxSettings: { url: ajaxLocation, type: "GET", isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), global: true, processData: true, async: true, contentType: "application/x-www-form-urlencoded; charset=UTF-8", /* timeout: 0, data: null, dataType: null, username: null, password: null, cache: null, throws: false, traditional: false, headers: {}, */ accepts: { "*": allTypes, text: "text/plain", html: "text/html", xml: "application/xml, text/xml", json: "application/json, text/javascript" }, contents: { xml: /xml/, html: /html/, json: /json/ }, responseFields: { xml: "responseXML", text: "responseText" }, // Data converters // Keys separate source (or catchall "*") and destination types with a single space converters: { // Convert anything to text "* text": window.String, // Text to html (true = no transformation) "text html": true, // Evaluate text as a json expression "text json": jQuery.parseJSON, // Parse text as xml "text xml": jQuery.parseXML }, // For options that shouldn't be deep extended: // you can add your own custom options here if // and when you create one that shouldn't be // deep extended (see ajaxExtend) flatOptions: { url: true, context: true } }, // Creates a full fledged settings object into target // with both ajaxSettings and settings fields. // If target is omitted, writes into ajaxSettings. ajaxSetup: function( target, settings ) { return settings ? // Building a settings object ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : // Extending ajaxSettings ajaxExtend( jQuery.ajaxSettings, target ); }, ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), ajaxTransport: addToPrefiltersOrTransports( transports ), // Main method ajax: function( url, options ) { // If url is an object, simulate pre-1.5 signature if ( typeof url === "object" ) { options = url; url = undefined; } // Force options to be an object options = options || {}; var transport, // URL without anti-cache param cacheURL, // Response headers responseHeadersString, responseHeaders, // timeout handle timeoutTimer, // Cross-domain detection vars parts, // To know if global events are to be dispatched fireGlobals, // Loop variable i, // Create the final options object s = jQuery.ajaxSetup( {}, options ), // Callbacks context callbackContext = s.context || s, // Context for global events is callbackContext if it is a DOM node or jQuery collection globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ? jQuery( callbackContext ) : jQuery.event, // Deferreds deferred = jQuery.Deferred(), completeDeferred = jQuery.Callbacks("once memory"), // Status-dependent callbacks statusCode = s.statusCode || {}, // Headers (they are sent all at once) requestHeaders = {}, requestHeadersNames = {}, // The jqXHR state state = 0, // Default abort message strAbort = "canceled", // Fake xhr jqXHR = { readyState: 0, // Builds headers hashtable if needed getResponseHeader: function( key ) { var match; if ( state === 2 ) { if ( !responseHeaders ) { responseHeaders = {}; while ( (match = rheaders.exec( responseHeadersString )) ) { responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; } } match = responseHeaders[ key.toLowerCase() ]; } return match == null ? null : match; }, // Raw string getAllResponseHeaders: function() { return state === 2 ? responseHeadersString : null; }, // Caches the header setRequestHeader: function( name, value ) { var lname = name.toLowerCase(); if ( !state ) { name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; requestHeaders[ name ] = value; } return this; }, // Overrides response content-type header overrideMimeType: function( type ) { if ( !state ) { s.mimeType = type; } return this; }, // Status-dependent callbacks statusCode: function( map ) { var code; if ( map ) { if ( state < 2 ) { for ( code in map ) { // Lazy-add the new callback in a way that preserves old ones statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; } } else { // Execute the appropriate callbacks jqXHR.always( map[ jqXHR.status ] ); } } return this; }, // Cancel the request abort: function( statusText ) { var finalText = statusText || strAbort; if ( transport ) { transport.abort( finalText ); } done( 0, finalText ); return this; } }; // Attach deferreds deferred.promise( jqXHR ).complete = completeDeferred.add; jqXHR.success = jqXHR.done; jqXHR.error = jqXHR.fail; // Remove hash character (#7531: and string promotion) // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) // Handle falsy url in the settings object (#10093: consistency with old signature) // We also use the url parameter if available s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); // Alias method option to type as per ticket #12004 s.type = options.method || options.type || s.method || s.type; // Extract dataTypes list s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( core_rnotwhite ) || [""]; // A cross-domain request is in order when we have a protocol:host:port mismatch if ( s.crossDomain == null ) { parts = rurl.exec( s.url.toLowerCase() ); s.crossDomain = !!( parts && ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] || ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) != ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) ) ); } // Convert data if not already a string if ( s.data && s.processData && typeof s.data !== "string" ) { s.data = jQuery.param( s.data, s.traditional ); } // Apply prefilters inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); // If request was aborted inside a prefilter, stop there if ( state === 2 ) { return jqXHR; } // We can fire global events as of now if asked to fireGlobals = s.global; // Watch for a new set of requests if ( fireGlobals && jQuery.active++ === 0 ) { jQuery.event.trigger("ajaxStart"); } // Uppercase the type s.type = s.type.toUpperCase(); // Determine if request has content s.hasContent = !rnoContent.test( s.type ); // Save the URL in case we're toying with the If-Modified-Since // and/or If-None-Match header later on cacheURL = s.url; // More options handling for requests with no content if ( !s.hasContent ) { // If data is available, append data to url if ( s.data ) { cacheURL = ( s.url += ( ajax_rquery.test( cacheURL ) ? "&" : "?" ) + s.data ); // #9682: remove data so that it's not used in an eventual retry delete s.data; } // Add anti-cache in url if needed if ( s.cache === false ) { s.url = rts.test( cacheURL ) ? // If there is already a '_' parameter, set its value cacheURL.replace( rts, "$1_=" + ajax_nonce++ ) : // Otherwise add one to the end cacheURL + ( ajax_rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ajax_nonce++; } } // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { if ( jQuery.lastModified[ cacheURL ] ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); } if ( jQuery.etag[ cacheURL ] ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); } } // Set the correct header, if data is being sent if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { jqXHR.setRequestHeader( "Content-Type", s.contentType ); } // Set the Accepts header for the server, depending on the dataType jqXHR.setRequestHeader( "Accept", s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ? s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : s.accepts[ "*" ] ); // Check for headers option for ( i in s.headers ) { jqXHR.setRequestHeader( i, s.headers[ i ] ); } // Allow custom headers/mimetypes and early abort if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { // Abort if not done already and return return jqXHR.abort(); } // aborting is no longer a cancellation strAbort = "abort"; // Install callbacks on deferreds for ( i in { success: 1, error: 1, complete: 1 } ) { jqXHR[ i ]( s[ i ] ); } // Get transport transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); // If no transport, we auto-abort if ( !transport ) { done( -1, "No Transport" ); } else { jqXHR.readyState = 1; // Send global event if ( fireGlobals ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); } // Timeout if ( s.async && s.timeout > 0 ) { timeoutTimer = setTimeout(function() { jqXHR.abort("timeout"); }, s.timeout ); } try { state = 1; transport.send( requestHeaders, done ); } catch ( e ) { // Propagate exception as error if not done if ( state < 2 ) { done( -1, e ); // Simply rethrow otherwise } else { throw e; } } } // Callback for when everything is done function done( status, nativeStatusText, responses, headers ) { var isSuccess, success, error, response, modified, statusText = nativeStatusText; // Called once if ( state === 2 ) { return; } // State is "done" now state = 2; // Clear timeout if it exists if ( timeoutTimer ) { clearTimeout( timeoutTimer ); } // Dereference transport for early garbage collection // (no matter how long the jqXHR object will be used) transport = undefined; // Cache response headers responseHeadersString = headers || ""; // Set readyState jqXHR.readyState = status > 0 ? 4 : 0; // Get response data if ( responses ) { response = ajaxHandleResponses( s, jqXHR, responses ); } // If successful, handle type chaining if ( status >= 200 && status < 300 || status === 304 ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { modified = jqXHR.getResponseHeader("Last-Modified"); if ( modified ) { jQuery.lastModified[ cacheURL ] = modified; } modified = jqXHR.getResponseHeader("etag"); if ( modified ) { jQuery.etag[ cacheURL ] = modified; } } // If not modified if ( status === 304 ) { isSuccess = true; statusText = "notmodified"; // If we have data } else { isSuccess = ajaxConvert( s, response ); statusText = isSuccess.state; success = isSuccess.data; error = isSuccess.error; isSuccess = !error; } } else { // We extract error from statusText // then normalize statusText and status for non-aborts error = statusText; if ( status || !statusText ) { statusText = "error"; if ( status < 0 ) { status = 0; } } } // Set data for the fake xhr object jqXHR.status = status; jqXHR.statusText = ( nativeStatusText || statusText ) + ""; // Success/Error if ( isSuccess ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); } else { deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); } // Status-dependent callbacks jqXHR.statusCode( statusCode ); statusCode = undefined; if ( fireGlobals ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", [ jqXHR, s, isSuccess ? success : error ] ); } // Complete completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); if ( fireGlobals ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); // Handle the global AJAX counter if ( !( --jQuery.active ) ) { jQuery.event.trigger("ajaxStop"); } } } return jqXHR; }, getScript: function( url, callback ) { return jQuery.get( url, undefined, callback, "script" ); }, getJSON: function( url, data, callback ) { return jQuery.get( url, data, callback, "json" ); } }); /* Handles responses to an ajax request: * - sets all responseXXX fields accordingly * - finds the right dataType (mediates between content-type and expected dataType) * - returns the corresponding response */ function ajaxHandleResponses( s, jqXHR, responses ) { var ct, type, finalDataType, firstDataType, contents = s.contents, dataTypes = s.dataTypes, responseFields = s.responseFields; // Fill responseXXX fields for ( type in responseFields ) { if ( type in responses ) { jqXHR[ responseFields[type] ] = responses[ type ]; } } // Remove auto dataType and get content-type in the process while( dataTypes[ 0 ] === "*" ) { dataTypes.shift(); if ( ct === undefined ) { ct = s.mimeType || jqXHR.getResponseHeader("Content-Type"); } } // Check if we're dealing with a known content-type if ( ct ) { for ( type in contents ) { if ( contents[ type ] && contents[ type ].test( ct ) ) { dataTypes.unshift( type ); break; } } } // Check to see if we have a response for the expected dataType if ( dataTypes[ 0 ] in responses ) { finalDataType = dataTypes[ 0 ]; } else { // Try convertible dataTypes for ( type in responses ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) { finalDataType = type; break; } if ( !firstDataType ) { firstDataType = type; } } // Or just use first one finalDataType = finalDataType || firstDataType; } // If we found a dataType // We add the dataType to the list if needed // and return the corresponding response if ( finalDataType ) { if ( finalDataType !== dataTypes[ 0 ] ) { dataTypes.unshift( finalDataType ); } return responses[ finalDataType ]; } } // Chain conversions given the request and the original response function ajaxConvert( s, response ) { var conv, conv2, current, tmp, converters = {}, i = 0, // Work with a copy of dataTypes in case we need to modify it for conversion dataTypes = s.dataTypes.slice(), prev = dataTypes[ 0 ]; // Apply the dataFilter if provided if ( s.dataFilter ) { response = s.dataFilter( response, s.dataType ); } // Create converters map with lowercased keys if ( dataTypes[ 1 ] ) { for ( conv in s.converters ) { converters[ conv.toLowerCase() ] = s.converters[ conv ]; } } // Convert to each sequential dataType, tolerating list modification for ( ; (current = dataTypes[++i]); ) { // There's only work to do if current dataType is non-auto if ( current !== "*" ) { // Convert response if prev dataType is non-auto and differs from current if ( prev !== "*" && prev !== current ) { // Seek a direct converter conv = converters[ prev + " " + current ] || converters[ "* " + current ]; // If none found, seek a pair if ( !conv ) { for ( conv2 in converters ) { // If conv2 outputs current tmp = conv2.split(" "); if ( tmp[ 1 ] === current ) { // If prev can be converted to accepted input conv = converters[ prev + " " + tmp[ 0 ] ] || converters[ "* " + tmp[ 0 ] ]; if ( conv ) { // Condense equivalence converters if ( conv === true ) { conv = converters[ conv2 ]; // Otherwise, insert the intermediate dataType } else if ( converters[ conv2 ] !== true ) { current = tmp[ 0 ]; dataTypes.splice( i--, 0, current ); } break; } } } } // Apply converter (if not an equivalence) if ( conv !== true ) { // Unless errors are allowed to bubble, catch and return them if ( conv && s["throws"] ) { response = conv( response ); } else { try { response = conv( response ); } catch ( e ) { return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; } } } } // Update prev for next iteration prev = current; } } return { state: "success", data: response }; } // Install script dataType jQuery.ajaxSetup({ accepts: { script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" }, contents: { script: /(?:java|ecma)script/ }, converters: { "text script": function( text ) { jQuery.globalEval( text ); return text; } } }); // Handle cache's special case and global jQuery.ajaxPrefilter( "script", function( s ) { if ( s.cache === undefined ) { s.cache = false; } if ( s.crossDomain ) { s.type = "GET"; s.global = false; } }); // Bind script tag hack transport jQuery.ajaxTransport( "script", function(s) { // This transport only deals with cross domain requests if ( s.crossDomain ) { var script, head = document.head || jQuery("head")[0] || document.documentElement; return { send: function( _, callback ) { script = document.createElement("script"); script.async = true; if ( s.scriptCharset ) { script.charset = s.scriptCharset; } script.src = s.url; // Attach handlers for all browsers script.onload = script.onreadystatechange = function( _, isAbort ) { if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { // Handle memory leak in IE script.onload = script.onreadystatechange = null; // Remove the script if ( script.parentNode ) { script.parentNode.removeChild( script ); } // Dereference the script script = null; // Callback if not abort if ( !isAbort ) { callback( 200, "success" ); } } }; // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending // Use native DOM manipulation to avoid our domManip AJAX trickery head.insertBefore( script, head.firstChild ); }, abort: function() { if ( script ) { script.onload( undefined, true ); } } }; } }); var oldCallbacks = [], rjsonp = /(=)\?(?=&|$)|\?\?/; // Default jsonp settings jQuery.ajaxSetup({ jsonp: "callback", jsonpCallback: function() { var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( ajax_nonce++ ) ); this[ callback ] = true; return callback; } }); // Detect, normalize options and install callbacks for jsonp requests jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { var callbackName, overwritten, responseContainer, jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ? "url" : typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data" ); // Handle iff the expected data type is "jsonp" or we have a parameter to set if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) { // Get callback name, remembering preexisting value associated with it callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback; // Insert callback into url or form data if ( jsonProp ) { s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName ); } else if ( s.jsonp !== false ) { s.url += ( ajax_rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; } // Use data converter to retrieve json after script execution s.converters["script json"] = function() { if ( !responseContainer ) { jQuery.error( callbackName + " was not called" ); } return responseContainer[ 0 ]; }; // force json dataType s.dataTypes[ 0 ] = "json"; // Install callback overwritten = window[ callbackName ]; window[ callbackName ] = function() { responseContainer = arguments; }; // Clean-up function (fires after converters) jqXHR.always(function() { // Restore preexisting value window[ callbackName ] = overwritten; // Save back as free if ( s[ callbackName ] ) { // make sure that re-using the options doesn't screw things around s.jsonpCallback = originalSettings.jsonpCallback; // save the callback name for future use oldCallbacks.push( callbackName ); } // Call if it was a function and we have a response if ( responseContainer && jQuery.isFunction( overwritten ) ) { overwritten( responseContainer[ 0 ] ); } responseContainer = overwritten = undefined; }); // Delegate to script return "script"; } }); var xhrCallbacks, xhrSupported, xhrId = 0, // #5280: Internet Explorer will keep connections alive if we don't abort on unload xhrOnUnloadAbort = window.ActiveXObject && function() { // Abort all pending requests var key; for ( key in xhrCallbacks ) { xhrCallbacks[ key ]( undefined, true ); } }; // Functions to create xhrs function createStandardXHR() { try { return new window.XMLHttpRequest(); } catch( e ) {} } function createActiveXHR() { try { return new window.ActiveXObject("Microsoft.XMLHTTP"); } catch( e ) {} } // Create the request object // (This is still attached to ajaxSettings for backward compatibility) jQuery.ajaxSettings.xhr = window.ActiveXObject ? /* Microsoft failed to properly * implement the XMLHttpRequest in IE7 (can't request local files), * so we use the ActiveXObject when it is available * Additionally XMLHttpRequest can be disabled in IE7/IE8 so * we need a fallback. */ function() { return !this.isLocal && createStandardXHR() || createActiveXHR(); } : // For all other browsers, use the standard XMLHttpRequest object createStandardXHR; // Determine support properties xhrSupported = jQuery.ajaxSettings.xhr(); jQuery.support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); xhrSupported = jQuery.support.ajax = !!xhrSupported; // Create transport if the browser can provide an xhr if ( xhrSupported ) { jQuery.ajaxTransport(function( s ) { // Cross domain only allowed if supported through XMLHttpRequest if ( !s.crossDomain || jQuery.support.cors ) { var callback; return { send: function( headers, complete ) { // Get a new xhr var handle, i, xhr = s.xhr(); // Open the socket // Passing null username, generates a login popup on Opera (#2865) if ( s.username ) { xhr.open( s.type, s.url, s.async, s.username, s.password ); } else { xhr.open( s.type, s.url, s.async ); } // Apply custom fields if provided if ( s.xhrFields ) { for ( i in s.xhrFields ) { xhr[ i ] = s.xhrFields[ i ]; } } // Override mime type if needed if ( s.mimeType && xhr.overrideMimeType ) { xhr.overrideMimeType( s.mimeType ); } // X-Requested-With header // For cross-domain requests, seeing as conditions for a preflight are // akin to a jigsaw puzzle, we simply never set it to be sure. // (it can always be set on a per-request basis or even using ajaxSetup) // For same-domain requests, won't change header if already provided. if ( !s.crossDomain && !headers["X-Requested-With"] ) { headers["X-Requested-With"] = "XMLHttpRequest"; } // Need an extra try/catch for cross domain requests in Firefox 3 try { for ( i in headers ) { xhr.setRequestHeader( i, headers[ i ] ); } } catch( err ) {} // Do send the request // This may raise an exception which is actually // handled in jQuery.ajax (so no try/catch here) xhr.send( ( s.hasContent && s.data ) || null ); // Listener callback = function( _, isAbort ) { var status, statusText, responseHeaders, responses, xml; // Firefox throws exceptions when accessing properties // of an xhr when a network error occurred // http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE) try { // Was never called and is aborted or complete if ( callback && ( isAbort || xhr.readyState === 4 ) ) { // Only called once callback = undefined; // Do not keep as active anymore if ( handle ) { xhr.onreadystatechange = jQuery.noop; if ( xhrOnUnloadAbort ) { delete xhrCallbacks[ handle ]; } } // If it's an abort if ( isAbort ) { // Abort it manually if needed if ( xhr.readyState !== 4 ) { xhr.abort(); } } else { responses = {}; status = xhr.status; xml = xhr.responseXML; responseHeaders = xhr.getAllResponseHeaders(); // Construct response list if ( xml && xml.documentElement /* #4958 */ ) { responses.xml = xml; } // When requesting binary data, IE6-9 will throw an exception // on any attempt to access responseText (#11426) if ( typeof xhr.responseText === "string" ) { responses.text = xhr.responseText; } // Firefox throws an exception when accessing // statusText for faulty cross-domain requests try { statusText = xhr.statusText; } catch( e ) { // We normalize with Webkit giving an empty statusText statusText = ""; } // Filter status for non standard behaviors // If the request is local and we have data: assume a success // (success with no data won't get notified, that's the best we // can do given current implementations) if ( !status && s.isLocal && !s.crossDomain ) { status = responses.text ? 200 : 404; // IE - #1450: sometimes returns 1223 when it should be 204 } else if ( status === 1223 ) { status = 204; } } } } catch( firefoxAccessException ) { if ( !isAbort ) { complete( -1, firefoxAccessException ); } } // Call complete if needed if ( responses ) { complete( status, statusText, responses, responseHeaders ); } }; if ( !s.async ) { // if we're in sync mode we fire the callback callback(); } else if ( xhr.readyState === 4 ) { // (IE6 & IE7) if it's in cache and has been // retrieved directly we need to fire the callback setTimeout( callback ); } else { handle = ++xhrId; if ( xhrOnUnloadAbort ) { // Create the active xhrs callbacks list if needed // and attach the unload handler if ( !xhrCallbacks ) { xhrCallbacks = {}; jQuery( window ).unload( xhrOnUnloadAbort ); } // Add to list of active xhrs callbacks xhrCallbacks[ handle ] = callback; } xhr.onreadystatechange = callback; } }, abort: function() { if ( callback ) { callback( undefined, true ); } } }; } }); } var fxNow, timerId, rfxtypes = /^(?:toggle|show|hide)$/, rfxnum = new RegExp( "^(?:([+-])=|)(" + core_pnum + ")([a-z%]*)$", "i" ), rrun = /queueHooks$/, animationPrefilters = [ defaultPrefilter ], tweeners = { "*": [function( prop, value ) { var end, unit, tween = this.createTween( prop, value ), parts = rfxnum.exec( value ), target = tween.cur(), start = +target || 0, scale = 1, maxIterations = 20; if ( parts ) { end = +parts[2]; unit = parts[3] || ( jQuery.cssNumber[ prop ] ? "" : "px" ); // We need to compute starting value if ( unit !== "px" && start ) { // Iteratively approximate from a nonzero starting point // Prefer the current property, because this process will be trivial if it uses the same units // Fallback to end or a simple constant start = jQuery.css( tween.elem, prop, true ) || end || 1; do { // If previous iteration zeroed out, double until we get *something* // Use a string for doubling factor so we don't accidentally see scale as unchanged below scale = scale || ".5"; // Adjust and apply start = start / scale; jQuery.style( tween.elem, prop, start + unit ); // Update scale, tolerating zero or NaN from tween.cur() // And breaking the loop if scale is unchanged or perfect, or if we've just had enough } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations ); } tween.unit = unit; tween.start = start; // If a +=/-= token was provided, we're doing a relative animation tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end; } return tween; }] }; // Animations created synchronously will run synchronously function createFxNow() { setTimeout(function() { fxNow = undefined; }); return ( fxNow = jQuery.now() ); } function createTweens( animation, props ) { jQuery.each( props, function( prop, value ) { var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), index = 0, length = collection.length; for ( ; index < length; index++ ) { if ( collection[ index ].call( animation, prop, value ) ) { // we're done with this property return; } } }); } function Animation( elem, properties, options ) { var result, stopped, index = 0, length = animationPrefilters.length, deferred = jQuery.Deferred().always( function() { // don't match elem in the :animated selector delete tick.elem; }), tick = function() { if ( stopped ) { return false; } var currentTime = fxNow || createFxNow(), remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497) temp = remaining / animation.duration || 0, percent = 1 - temp, index = 0, length = animation.tweens.length; for ( ; index < length ; index++ ) { animation.tweens[ index ].run( percent ); } deferred.notifyWith( elem, [ animation, percent, remaining ]); if ( percent < 1 && length ) { return remaining; } else { deferred.resolveWith( elem, [ animation ] ); return false; } }, animation = deferred.promise({ elem: elem, props: jQuery.extend( {}, properties ), opts: jQuery.extend( true, { specialEasing: {} }, options ), originalProperties: properties, originalOptions: options, startTime: fxNow || createFxNow(), duration: options.duration, tweens: [], createTween: function( prop, end ) { var tween = jQuery.Tween( elem, animation.opts, prop, end, animation.opts.specialEasing[ prop ] || animation.opts.easing ); animation.tweens.push( tween ); return tween; }, stop: function( gotoEnd ) { var index = 0, // if we are going to the end, we want to run all the tweens // otherwise we skip this part length = gotoEnd ? animation.tweens.length : 0; if ( stopped ) { return this; } stopped = true; for ( ; index < length ; index++ ) { animation.tweens[ index ].run( 1 ); } // resolve when we played the last frame // otherwise, reject if ( gotoEnd ) { deferred.resolveWith( elem, [ animation, gotoEnd ] ); } else { deferred.rejectWith( elem, [ animation, gotoEnd ] ); } return this; } }), props = animation.props; propFilter( props, animation.opts.specialEasing ); for ( ; index < length ; index++ ) { result = animationPrefilters[ index ].call( animation, elem, props, animation.opts ); if ( result ) { return result; } } createTweens( animation, props ); if ( jQuery.isFunction( animation.opts.start ) ) { animation.opts.start.call( elem, animation ); } jQuery.fx.timer( jQuery.extend( tick, { elem: elem, anim: animation, queue: animation.opts.queue }) ); // attach callbacks from options return animation.progress( animation.opts.progress ) .done( animation.opts.done, animation.opts.complete ) .fail( animation.opts.fail ) .always( animation.opts.always ); } function propFilter( props, specialEasing ) { var index, name, easing, value, hooks; // camelCase, specialEasing and expand cssHook pass for ( index in props ) { name = jQuery.camelCase( index ); easing = specialEasing[ name ]; value = props[ index ]; if ( jQuery.isArray( value ) ) { easing = value[ 1 ]; value = props[ index ] = value[ 0 ]; } if ( index !== name ) { props[ name ] = value; delete props[ index ]; } hooks = jQuery.cssHooks[ name ]; if ( hooks && "expand" in hooks ) { value = hooks.expand( value ); delete props[ name ]; // not quite $.extend, this wont overwrite keys already present. // also - reusing 'index' from above because we have the correct "name" for ( index in value ) { if ( !( index in props ) ) { props[ index ] = value[ index ]; specialEasing[ index ] = easing; } } } else { specialEasing[ name ] = easing; } } } jQuery.Animation = jQuery.extend( Animation, { tweener: function( props, callback ) { if ( jQuery.isFunction( props ) ) { callback = props; props = [ "*" ]; } else { props = props.split(" "); } var prop, index = 0, length = props.length; for ( ; index < length ; index++ ) { prop = props[ index ]; tweeners[ prop ] = tweeners[ prop ] || []; tweeners[ prop ].unshift( callback ); } }, prefilter: function( callback, prepend ) { if ( prepend ) { animationPrefilters.unshift( callback ); } else { animationPrefilters.push( callback ); } } }); function defaultPrefilter( elem, props, opts ) { /*jshint validthis:true */ var index, prop, value, length, dataShow, toggle, tween, hooks, oldfire, anim = this, style = elem.style, orig = {}, handled = [], hidden = elem.nodeType && isHidden( elem ); // handle queue: false promises if ( !opts.queue ) { hooks = jQuery._queueHooks( elem, "fx" ); if ( hooks.unqueued == null ) { hooks.unqueued = 0; oldfire = hooks.empty.fire; hooks.empty.fire = function() { if ( !hooks.unqueued ) { oldfire(); } }; } hooks.unqueued++; anim.always(function() { // doing this makes sure that the complete handler will be called // before this completes anim.always(function() { hooks.unqueued--; if ( !jQuery.queue( elem, "fx" ).length ) { hooks.empty.fire(); } }); }); } // height/width overflow pass if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) { // Make sure that nothing sneaks out // Record all 3 overflow attributes because IE does not // change the overflow attribute when overflowX and // overflowY are set to the same value opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; // Set display property to inline-block for height/width // animations on inline elements that are having width/height animated if ( jQuery.css( elem, "display" ) === "inline" && jQuery.css( elem, "float" ) === "none" ) { // inline-level elements accept inline-block; // block-level elements need to be inline with layout if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) { style.display = "inline-block"; } else { style.zoom = 1; } } } if ( opts.overflow ) { style.overflow = "hidden"; if ( !jQuery.support.shrinkWrapBlocks ) { anim.done(function() { style.overflow = opts.overflow[ 0 ]; style.overflowX = opts.overflow[ 1 ]; style.overflowY = opts.overflow[ 2 ]; }); } } // show/hide pass for ( index in props ) { value = props[ index ]; if ( rfxtypes.exec( value ) ) { delete props[ index ]; toggle = toggle || value === "toggle"; if ( value === ( hidden ? "hide" : "show" ) ) { continue; } handled.push( index ); } } length = handled.length; if ( length ) { dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} ); if ( "hidden" in dataShow ) { hidden = dataShow.hidden; } // store state if its toggle - enables .stop().toggle() to "reverse" if ( toggle ) { dataShow.hidden = !hidden; } if ( hidden ) { jQuery( elem ).show(); } else { anim.done(function() { jQuery( elem ).hide(); }); } anim.done(function() { var prop; jQuery._removeData( elem, "fxshow" ); for ( prop in orig ) { jQuery.style( elem, prop, orig[ prop ] ); } }); for ( index = 0 ; index < length ; index++ ) { prop = handled[ index ]; tween = anim.createTween( prop, hidden ? dataShow[ prop ] : 0 ); orig[ prop ] = dataShow[ prop ] || jQuery.style( elem, prop ); if ( !( prop in dataShow ) ) { dataShow[ prop ] = tween.start; if ( hidden ) { tween.end = tween.start; tween.start = prop === "width" || prop === "height" ? 1 : 0; } } } } } function Tween( elem, options, prop, end, easing ) { return new Tween.prototype.init( elem, options, prop, end, easing ); } jQuery.Tween = Tween; Tween.prototype = { constructor: Tween, init: function( elem, options, prop, end, easing, unit ) { this.elem = elem; this.prop = prop; this.easing = easing || "swing"; this.options = options; this.start = this.now = this.cur(); this.end = end; this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); }, cur: function() { var hooks = Tween.propHooks[ this.prop ]; return hooks && hooks.get ? hooks.get( this ) : Tween.propHooks._default.get( this ); }, run: function( percent ) { var eased, hooks = Tween.propHooks[ this.prop ]; if ( this.options.duration ) { this.pos = eased = jQuery.easing[ this.easing ]( percent, this.options.duration * percent, 0, 1, this.options.duration ); } else { this.pos = eased = percent; } this.now = ( this.end - this.start ) * eased + this.start; if ( this.options.step ) { this.options.step.call( this.elem, this.now, this ); } if ( hooks && hooks.set ) { hooks.set( this ); } else { Tween.propHooks._default.set( this ); } return this; } }; Tween.prototype.init.prototype = Tween.prototype; Tween.propHooks = { _default: { get: function( tween ) { var result; if ( tween.elem[ tween.prop ] != null && (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) { return tween.elem[ tween.prop ]; } // passing a non empty string as a 3rd parameter to .css will automatically // attempt a parseFloat and fallback to a string if the parse fails // so, simple values such as "10px" are parsed to Float. // complex values such as "rotate(1rad)" are returned as is. result = jQuery.css( tween.elem, tween.prop, "auto" ); // Empty strings, null, undefined and "auto" are converted to 0. return !result || result === "auto" ? 0 : result; }, set: function( tween ) { // use step hook for back compat - use cssHook if its there - use .style if its // available and use plain properties where available if ( jQuery.fx.step[ tween.prop ] ) { jQuery.fx.step[ tween.prop ]( tween ); } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) { jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); } else { tween.elem[ tween.prop ] = tween.now; } } } }; // Remove in 2.0 - this supports IE8's panic based approach // to setting things on disconnected nodes Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { set: function( tween ) { if ( tween.elem.nodeType && tween.elem.parentNode ) { tween.elem[ tween.prop ] = tween.now; } } }; jQuery.each([ "toggle", "show", "hide" ], function( i, name ) { var cssFn = jQuery.fn[ name ]; jQuery.fn[ name ] = function( speed, easing, callback ) { return speed == null || typeof speed === "boolean" ? cssFn.apply( this, arguments ) : this.animate( genFx( name, true ), speed, easing, callback ); }; }); jQuery.fn.extend({ fadeTo: function( speed, to, easing, callback ) { // show any hidden elements after setting opacity to 0 return this.filter( isHidden ).css( "opacity", 0 ).show() // animate to the value specified .end().animate({ opacity: to }, speed, easing, callback ); }, animate: function( prop, speed, easing, callback ) { var empty = jQuery.isEmptyObject( prop ), optall = jQuery.speed( speed, easing, callback ), doAnimation = function() { // Operate on a copy of prop so per-property easing won't be lost var anim = Animation( this, jQuery.extend( {}, prop ), optall ); doAnimation.finish = function() { anim.stop( true ); }; // Empty animations, or finishing resolves immediately if ( empty || jQuery._data( this, "finish" ) ) { anim.stop( true ); } }; doAnimation.finish = doAnimation; return empty || optall.queue === false ? this.each( doAnimation ) : this.queue( optall.queue, doAnimation ); }, stop: function( type, clearQueue, gotoEnd ) { var stopQueue = function( hooks ) { var stop = hooks.stop; delete hooks.stop; stop( gotoEnd ); }; if ( typeof type !== "string" ) { gotoEnd = clearQueue; clearQueue = type; type = undefined; } if ( clearQueue && type !== false ) { this.queue( type || "fx", [] ); } return this.each(function() { var dequeue = true, index = type != null && type + "queueHooks", timers = jQuery.timers, data = jQuery._data( this ); if ( index ) { if ( data[ index ] && data[ index ].stop ) { stopQueue( data[ index ] ); } } else { for ( index in data ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { stopQueue( data[ index ] ); } } } for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) { timers[ index ].anim.stop( gotoEnd ); dequeue = false; timers.splice( index, 1 ); } } // start the next in the queue if the last step wasn't forced // timers currently will call their complete callbacks, which will dequeue // but only if they were gotoEnd if ( dequeue || !gotoEnd ) { jQuery.dequeue( this, type ); } }); }, finish: function( type ) { if ( type !== false ) { type = type || "fx"; } return this.each(function() { var index, data = jQuery._data( this ), queue = data[ type + "queue" ], hooks = data[ type + "queueHooks" ], timers = jQuery.timers, length = queue ? queue.length : 0; // enable finishing flag on private data data.finish = true; // empty the queue first jQuery.queue( this, type, [] ); if ( hooks && hooks.cur && hooks.cur.finish ) { hooks.cur.finish.call( this ); } // look for any active animations, and finish them for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) { timers[ index ].anim.stop( true ); timers.splice( index, 1 ); } } // look for any animations in the old queue and finish them for ( index = 0; index < length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) { queue[ index ].finish.call( this ); } } // turn off finishing flag delete data.finish; }); } }); // Generate parameters to create a standard animation function genFx( type, includeWidth ) { var which, attrs = { height: type }, i = 0; // if we include width, step value is 1 to do all cssExpand values, // if we don't include width, step value is 2 to skip over Left and Right includeWidth = includeWidth? 1 : 0; for( ; i < 4 ; i += 2 - includeWidth ) { which = cssExpand[ i ]; attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; } if ( includeWidth ) { attrs.opacity = attrs.width = type; } return attrs; } // Generate shortcuts for custom animations jQuery.each({ slideDown: genFx("show"), slideUp: genFx("hide"), slideToggle: genFx("toggle"), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function( name, props ) { jQuery.fn[ name ] = function( speed, easing, callback ) { return this.animate( props, speed, easing, callback ); }; }); jQuery.speed = function( speed, easing, fn ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { complete: fn || !fn && easing || jQuery.isFunction( speed ) && speed, duration: speed, easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing }; opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; // normalize opt.queue - true/undefined/null -> "fx" if ( opt.queue == null || opt.queue === true ) { opt.queue = "fx"; } // Queueing opt.old = opt.complete; opt.complete = function() { if ( jQuery.isFunction( opt.old ) ) { opt.old.call( this ); } if ( opt.queue ) { jQuery.dequeue( this, opt.queue ); } }; return opt; }; jQuery.easing = { linear: function( p ) { return p; }, swing: function( p ) { return 0.5 - Math.cos( p*Math.PI ) / 2; } }; jQuery.timers = []; jQuery.fx = Tween.prototype.init; jQuery.fx.tick = function() { var timer, timers = jQuery.timers, i = 0; fxNow = jQuery.now(); for ( ; i < timers.length; i++ ) { timer = timers[ i ]; // Checks the timer has not already been removed if ( !timer() && timers[ i ] === timer ) { timers.splice( i--, 1 ); } } if ( !timers.length ) { jQuery.fx.stop(); } fxNow = undefined; }; jQuery.fx.timer = function( timer ) { if ( timer() && jQuery.timers.push( timer ) ) { jQuery.fx.start(); } }; jQuery.fx.interval = 13; jQuery.fx.start = function() { if ( !timerId ) { timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval ); } }; jQuery.fx.stop = function() { clearInterval( timerId ); timerId = null; }; jQuery.fx.speeds = { slow: 600, fast: 200, // Default speed _default: 400 }; // Back Compat <1.8 extension point jQuery.fx.step = {}; if ( jQuery.expr && jQuery.expr.filters ) { jQuery.expr.filters.animated = function( elem ) { return jQuery.grep(jQuery.timers, function( fn ) { return elem === fn.elem; }).length; }; } jQuery.fn.offset = function( options ) { if ( arguments.length ) { return options === undefined ? this : this.each(function( i ) { jQuery.offset.setOffset( this, options, i ); }); } var docElem, win, box = { top: 0, left: 0 }, elem = this[ 0 ], doc = elem && elem.ownerDocument; if ( !doc ) { return; } docElem = doc.documentElement; // Make sure it's not a disconnected DOM node if ( !jQuery.contains( docElem, elem ) ) { return box; } // If we don't have gBCR, just use 0,0 rather than error // BlackBerry 5, iOS 3 (original iPhone) if ( typeof elem.getBoundingClientRect !== "undefined" ) { box = elem.getBoundingClientRect(); } win = getWindow( doc ); return { top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ), left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 ) }; }; jQuery.offset = { setOffset: function( elem, options, i ) { var position = jQuery.css( elem, "position" ); // set position first, in-case top/left are set even on static elem if ( position === "static" ) { elem.style.position = "relative"; } var curElem = jQuery( elem ), curOffset = curElem.offset(), curCSSTop = jQuery.css( elem, "top" ), curCSSLeft = jQuery.css( elem, "left" ), calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1, props = {}, curPosition = {}, curTop, curLeft; // need to be able to calculate position if either top or left is auto and position is either absolute or fixed if ( calculatePosition ) { curPosition = curElem.position(); curTop = curPosition.top; curLeft = curPosition.left; } else { curTop = parseFloat( curCSSTop ) || 0; curLeft = parseFloat( curCSSLeft ) || 0; } if ( jQuery.isFunction( options ) ) { options = options.call( elem, i, curOffset ); } if ( options.top != null ) { props.top = ( options.top - curOffset.top ) + curTop; } if ( options.left != null ) { props.left = ( options.left - curOffset.left ) + curLeft; } if ( "using" in options ) { options.using.call( elem, props ); } else { curElem.css( props ); } } }; jQuery.fn.extend({ position: function() { if ( !this[ 0 ] ) { return; } var offsetParent, offset, parentOffset = { top: 0, left: 0 }, elem = this[ 0 ]; // fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is it's only offset parent if ( jQuery.css( elem, "position" ) === "fixed" ) { // we assume that getBoundingClientRect is available when computed position is fixed offset = elem.getBoundingClientRect(); } else { // Get *real* offsetParent offsetParent = this.offsetParent(); // Get correct offsets offset = this.offset(); if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) { parentOffset = offsetParent.offset(); } // Add offsetParent borders parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true ); parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true ); } // Subtract parent offsets and element margins // note: when an element has margin: auto the offsetLeft and marginLeft // are the same in Safari causing offset.left to incorrectly be 0 return { top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ), left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true) }; }, offsetParent: function() { return this.map(function() { var offsetParent = this.offsetParent || document.documentElement; while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position") === "static" ) ) { offsetParent = offsetParent.offsetParent; } return offsetParent || document.documentElement; }); } }); // Create scrollLeft and scrollTop methods jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) { var top = /Y/.test( prop ); jQuery.fn[ method ] = function( val ) { return jQuery.access( this, function( elem, method, val ) { var win = getWindow( elem ); if ( val === undefined ) { return win ? (prop in win) ? win[ prop ] : win.document.documentElement[ method ] : elem[ method ]; } if ( win ) { win.scrollTo( !top ? val : jQuery( win ).scrollLeft(), top ? val : jQuery( win ).scrollTop() ); } else { elem[ method ] = val; } }, method, val, arguments.length, null ); }; }); function getWindow( elem ) { return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 ? elem.defaultView || elem.parentWindow : false; } // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { // margin is only for outerHeight, outerWidth jQuery.fn[ funcName ] = function( margin, value ) { var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); return jQuery.access( this, function( elem, type, value ) { var doc; if ( jQuery.isWindow( elem ) ) { // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there // isn't a whole lot we can do. See pull request at this URL for discussion: // https://github.com/jquery/jquery/pull/764 return elem.document.documentElement[ "client" + name ]; } // Get document width or height if ( elem.nodeType === 9 ) { doc = elem.documentElement; // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it. return Math.max( elem.body[ "scroll" + name ], doc[ "scroll" + name ], elem.body[ "offset" + name ], doc[ "offset" + name ], doc[ "client" + name ] ); } return value === undefined ? // Get width or height on the element, requesting but not forcing parseFloat jQuery.css( elem, type, extra ) : // Set width or height on the element jQuery.style( elem, type, value, extra ); }, type, chainable ? margin : undefined, chainable, null ); }; }); }); // Limit scope pollution from any deprecated API // (function() { // })(); // Expose jQuery to the global object window.jQuery = window.$ = jQuery; // Expose jQuery as an AMD module, but only for AMD loaders that // understand the issues with loading multiple versions of jQuery // in a page that all might call define(). The loader will indicate // they have special allowances for multiple jQuery versions by // specifying define.amd.jQuery = true. Register as a named module, // since jQuery can be concatenated with other files that may use define, // but not use a proper concatenation script that understands anonymous // AMD modules. A named AMD is safest and most robust way to register. // Lowercase jquery is used because AMD module names are derived from // file names, and jQuery is normally delivered in a lowercase file name. // Do this after creating the global so that if an AMD module wants to call // noConflict to hide this version of jQuery, it will work. if ( typeof define === "function" && define.amd && define.amd.jQuery ) { define( "jquery", [], function () { return jQuery; } ); } })( window );

public/js/utils/mqttws31.js

/******************************************************************************* * Copyright (c) 2013 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Andrew Banks - initial API and implementation and/or initial documentation *******************************************************************************/ // Only expose a single object name in the global namespace. // Everything must go through this module. Global Messaging module // only has a single public function, client, which returns // a Messaging client object given connection details. /** * @namespace Messaging * Send and receive messages using web browsers. * <p> * This programming interface lets a JavaScript client application use the MQTT V3.1 protocol to * connect to an MQTT-supporting messaging server. * * The function supported includes: * <ol> * <li>Connecting to and disconnecting from a server. The server is identified by its host name and port number. * <li>Specifying options that relate to the communications link with the server, * for example the frequency of keep-alive heartbeats, and whether SSL/TLS is required. * <li>Subscribing to and receiving messages from MQTT Topics. * <li>Publishing messages to MQTT Topics. * </ol> * <p> * <h2>The API consists of two main objects:</h2> * The <b>Messaging.Client</b> object. This contains methods that provide the functionality of the API, * including provision of callbacks that notify the application when a message arrives from or is delivered to the messaging server, * or when the status of its connection to the messaging server changes. * <p> * The <b>Messaging.Message</b> object. This encapsulates the payload of the message along with various attributes * associated with its delivery, in particular the destination to which it has been (or is about to be) sent. * <p> * The programming interface validates parameters passed to it, and will throw an Error containing an error message * intended for developer use, if it detects an error with any parameter. * <p> * Example: * * <code><pre> client = new Messaging.Client(location.hostname, Number(location.port), "clientId"); client.onConnectionLost = onConnectionLost; client.onMessageArrived = onMessageArrived; client.connect({onSuccess:onConnect}); function onConnect() { // Once a connection has been made, make a subscription and send a message. console.log("onConnect"); client.subscribe("/World"); message = new Messaging.Message("Hello"); message.destinationName = "/World"; client.send(message); }; function onConnectionLost(responseObject) { if (responseObject.errorCode !== 0) console.log("onConnectionLost:"+responseObject.errorMessage); }; function onMessageArrived(message) { console.log("onMessageArrived:"+message.payloadString); client.disconnect(); }; * </pre></code> * <p> * Other programming languages, * <a href="/clients/java/doc/javadoc/index.html"><big>Java</big></a>, * <a href="/clients/c/doc/html/index.html"><big>C</big></a>. */ Messaging = (function (global) { // Private variables below, these are only visible inside the function closure // which is used to define the module. var version = "0.0.0.0"; var buildLevel = "@BUILDLEVEL@"; /** * Unique message type identifiers, with associated * associated integer values. * @private */ var MESSAGE_TYPE = { CONNECT: 1, CONNACK: 2, PUBLISH: 3, PUBACK: 4, PUBREC: 5, PUBREL: 6, PUBCOMP: 7, SUBSCRIBE: 8, SUBACK: 9, UNSUBSCRIBE: 10, UNSUBACK: 11, PINGREQ: 12, PINGRESP: 13, DISCONNECT: 14 }; // Collection of utility methods used to simplify module code // and promote the DRY pattern. /** * Validate an object's parameter names to ensure they * match a list of expected variables name for this option * type. Used to ensure option object passed into the API don't * contain erroneous parameters. * @param {Object} obj User options object * @param {key:type, key2:type, ...} valid keys and types that may exist in obj. * @throws {Error} Invalid option parameter found. * @private */ var validate = function(obj, keys) { for(key in obj) { if (obj.hasOwnProperty(key)) { if (keys.hasOwnProperty(key)) { if (typeof obj[key] !== keys[key]) throw new Error(format(ERROR.INVALID_TYPE, [typeof obj[key], key])); } else { var errorStr = "Unknown property, " + key + ". Valid properties are:"; for (key in keys) if (keys.hasOwnProperty(key)) errorStr = errorStr+" "+key; throw new Error(errorStr); } } } }; /** * Return a new function which runs the user function bound * to a fixed scope. * @param {function} User function * @param {object} Function scope * @return {function} User function bound to another scope * @private */ var scope = function (f, scope) { return function () { return f.apply(scope, arguments); }; }; /** * Unique message type identifiers, with associated * associated integer values. * @private */ var ERROR = { OK: {code:0, text:"AMQJSC0000I OK."}, CONNECT_TIMEOUT: {code:1, text:"AMQJSC0001E Connect timed out."}, SUBSCRIBE_TIMEOUT: {code:2, text:"AMQJS0002E Subscribe timed out."}, UNSUBSCRIBE_TIMEOUT: {code:3, text:"AMQJS0003E Unsubscribe timed out."}, PING_TIMEOUT: {code:4, text:"AMQJS0004E Ping timed out."}, INTERNAL_ERROR: {code:5, text:"AMQJS0005E Internal error."}, CONNACK_RETURNCODE: {code:6, text:"AMQJS0006E Bad Connack return code:{0} {1}."}, SOCKET_ERROR: {code:7, text:"AMQJS0007E Socket error:{0}."}, SOCKET_CLOSE: {code:8, text:"AMQJS0008I Socket closed."}, MALFORMED_UTF: {code:9, text:"AMQJS0009E Malformed UTF data:{0} {1} {2}."}, UNSUPPORTED: {code:10, text:"AMQJS0010E {0} is not supported by this browser."}, INVALID_STATE: {code:11, text:"AMQJS0011E Invalid state {0}."}, INVALID_TYPE: {code:12, text:"AMQJS0012E Invalid type {0} for {1}."}, INVALID_ARGUMENT: {code:13, text:"AMQJS0013E Invalid argument {0} for {1}."}, UNSUPPORTED_OPERATION: {code:14, text:"AMQJS0014E Unsupported operation."}, INVALID_STORED_DATA: {code:15, text:"AMQJS0015E Invalid data in local storage key={0} value={1}."}, INVALID_MQTT_MESSAGE_TYPE: {code:16, text:"AMQJS0016E Invalid MQTT message type {0}."}, MALFORMED_UNICODE: {code:17, text:"AMQJS0017E Malformed Unicode string:{0} {1}."}, }; /** CONNACK RC Meaning. */ var CONNACK_RC = { 0:"Connection Accepted", 1:"Connection Refused: unacceptable protocol version", 2:"Connection Refused: identifier rejected", 3:"Connection Refused: server unavailable", 4:"Connection Refused: bad user name or password", 5:"Connection Refused: not authorized" }; /** * Format an error message text. * @private * @param {error} ERROR.KEY value above. * @param {substitutions} [array] substituted into the text. * @return the text with the substitutions made. */ var format = function(error, substitutions) { var text = error.text; if (substitutions) { for (var i=0; i<substitutions.length; i++) { field = "{"+i+"}"; start = text.indexOf(field); if(start > 0) { var part1 = text.substring(0,start); var part2 = text.substring(start+field.length); text = part1+substitutions[i]+part2; } } } return text; }; //MQTT protocol and version 6 M Q I s d p 3 var MqttProtoIdentifier = [0x00,0x06,0x4d,0x51,0x49,0x73,0x64,0x70,0x03]; /** * @ignore * Construct an MQTT wire protocol message. * @param type MQTT packet type. * @param options optional wire message attributes. * * Optional properties * * messageIdentifier: message ID in the range [0..65535] * payloadMessage: Application Message - PUBLISH only * connectStrings: array of 0 or more Strings to be put into the CONNECT payload * topics: array of strings (SUBSCRIBE, UNSUBSCRIBE) * requestQoS: array of QoS values [0..2] * * "Flag" properties * cleanSession: true if present / false if absent (CONNECT) * willMessage: true if present / false if absent (CONNECT) * isRetained: true if present / false if absent (CONNECT) * userName: true if present / false if absent (CONNECT) * password: true if present / false if absent (CONNECT) * keepAliveInterval: integer [0..65535] (CONNECT) * * @private */ var WireMessage = function (type, options) { this.type = type; for(name in options) { if (options.hasOwnProperty(name)) { this[name] = options[name]; } } }; WireMessage.prototype.encode = function() { // Compute the first byte of the fixed header var first = ((this.type & 0x0f) << 4); /* * Now calculate the length of the variable header + payload by adding up the lengths * of all the component parts */ remLength = 0; topicStrLength = new Array(); // if the message contains a messageIdentifier then we need two bytes for that if (this.messageIdentifier != undefined) remLength += 2; switch(this.type) { // If this a Connect then we need to include 12 bytes for its header case MESSAGE_TYPE.CONNECT: remLength += MqttProtoIdentifier.length + 3; remLength += UTF8Length(this.clientId) + 2; if (this.willMessage != undefined) { remLength += UTF8Length(this.willMessage.destinationName) + 2; // Will message is always a string, sent as UTF-8 characters with a preceding length. var willMessagePayloadBytes = this.willMessage.payloadBytes; if (!(willMessagePayloadBytes instanceof Uint8Array)) willMessagePayloadBytes = new Uint8Array(payloadBytes); remLength += willMessagePayloadBytes.byteLength +2; } if (this.userName != undefined) remLength += UTF8Length(this.userName) + 2; if (this.password != undefined) remLength += UTF8Length(this.password) + 2; break; // Subscribe, Unsubscribe can both contain topic strings case MESSAGE_TYPE.SUBSCRIBE: first |= 0x02; // Qos = 1; for ( var i = 0; i < this.topics.length; i++) { topicStrLength[i] = UTF8Length(this.topics[i]); remLength += topicStrLength[i] + 2; } remLength += this.requestedQos.length; // 1 byte for each topic's Qos // QoS on Subscribe only break; case MESSAGE_TYPE.UNSUBSCRIBE: first |= 0x02; // Qos = 1; for ( var i = 0; i < this.topics.length; i++) { topicStrLength[i] = UTF8Length(this.topics[i]); remLength += topicStrLength[i] + 2; } break; case MESSAGE_TYPE.PUBLISH: if (this.payloadMessage.duplicate) first |= 0x08; first = first |= (this.payloadMessage.qos << 1); if (this.payloadMessage.retained) first |= 0x01; destinationNameLength = UTF8Length(this.payloadMessage.destinationName); remLength += destinationNameLength + 2; var payloadBytes = this.payloadMessage.payloadBytes; remLength += payloadBytes.byteLength; if (payloadBytes instanceof ArrayBuffer) payloadBytes = new Uint8Array(payloadBytes); else if (!(payloadBytes instanceof Uint8Array)) payloadBytes = new Uint8Array(payloadBytes.buffer); break; case MESSAGE_TYPE.DISCONNECT: break; default: ; } // Now we can allocate a buffer for the message var mbi = encodeMBI(remLength); // Convert the length to MQTT MBI format var pos = mbi.length + 1; // Offset of start of variable header var buffer = new ArrayBuffer(remLength + pos); var byteStream = new Uint8Array(buffer); // view it as a sequence of bytes //Write the fixed header into the buffer byteStream[0] = first; byteStream.set(mbi,1); // If this is a PUBLISH then the variable header starts with a topic if (this.type == MESSAGE_TYPE.PUBLISH) pos = writeString(this.payloadMessage.destinationName, destinationNameLength, byteStream, pos); // If this is a CONNECT then the variable header contains the protocol name/version, flags and keepalive time else if (this.type == MESSAGE_TYPE.CONNECT) { byteStream.set(MqttProtoIdentifier, pos); pos += MqttProtoIdentifier.length; var connectFlags = 0; if (this.cleanSession) connectFlags = 0x02; if (this.willMessage != undefined ) { connectFlags |= 0x04; connectFlags |= (this.willMessage.qos<<3); if (this.willMessage.retained) { connectFlags |= 0x20; } } if (this.userName != undefined) connectFlags |= 0x80; if (this.password != undefined) connectFlags |= 0x40; byteStream[pos++] = connectFlags; pos = writeUint16 (this.keepAliveInterval, byteStream, pos); } // Output the messageIdentifier - if there is one if (this.messageIdentifier != undefined) pos = writeUint16 (this.messageIdentifier, byteStream, pos); switch(this.type) { case MESSAGE_TYPE.CONNECT: pos = writeString(this.clientId, UTF8Length(this.clientId), byteStream, pos); if (this.willMessage != undefined) { pos = writeString(this.willMessage.destinationName, UTF8Length(this.willMessage.destinationName), byteStream, pos); pos = writeUint16(willMessagePayloadBytes.byteLength, byteStream, pos); byteStream.set(willMessagePayloadBytes, pos); pos += willMessagePayloadBytes.byteLength; } if (this.userName != undefined) pos = writeString(this.userName, UTF8Length(this.userName), byteStream, pos); if (this.password != undefined) pos = writeString(this.password, UTF8Length(this.password), byteStream, pos); break; case MESSAGE_TYPE.PUBLISH: // PUBLISH has a text or binary payload, if text do not add a 2 byte length field, just the UTF characters. byteStream.set(payloadBytes, pos); break; // case MESSAGE_TYPE.PUBREC: // case MESSAGE_TYPE.PUBREL: // case MESSAGE_TYPE.PUBCOMP: // break; case MESSAGE_TYPE.SUBSCRIBE: // SUBSCRIBE has a list of topic strings and request QoS for (var i=0; i<this.topics.length; i++) { pos = writeString(this.topics[i], topicStrLength[i], byteStream, pos); byteStream[pos++] = this.requestedQos[i]; } break; case MESSAGE_TYPE.UNSUBSCRIBE: // UNSUBSCRIBE has a list of topic strings for (var i=0; i<this.topics.length; i++) pos = writeString(this.topics[i], topicStrLength[i], byteStream, pos); break; default: // Do nothing. } return buffer; } function decodeMessage(input) { //var msg = new Object(); // message to be constructed var first = input[0]; var type = first >> 4; var messageInfo = first &= 0x0f; var pos = 1; // Decode the remaining length (MBI format) var digit; var remLength = 0; var multiplier = 1; do { digit = input[pos++]; remLength += ((digit & 0x7F) * multiplier); multiplier *= 128; } while ((digit & 0x80) != 0); var wireMessage = new WireMessage(type); switch(type) { case MESSAGE_TYPE.CONNACK: wireMessage.topicNameCompressionResponse = input[pos++]; wireMessage.returnCode = input[pos++]; break; case MESSAGE_TYPE.PUBLISH: var qos = (messageInfo >> 1) & 0x03; var len = readUint16(input, pos); pos += 2; var topicName = parseUTF8(input, pos, len); pos += len; // If QoS 1 or 2 there will be a messageIdentifier if (qos > 0) { wireMessage.messageIdentifier = readUint16(input, pos); pos += 2; } var message = new Messaging.Message(input.subarray(pos)); if ((messageInfo & 0x01) == 0x01) message.retained = true; if ((messageInfo & 0x08) == 0x08) message.duplicate = true; message.qos = qos; message.destinationName = topicName; wireMessage.payloadMessage = message; break; case MESSAGE_TYPE.PUBACK: case MESSAGE_TYPE.PUBREC: case MESSAGE_TYPE.PUBREL: case MESSAGE_TYPE.PUBCOMP: case MESSAGE_TYPE.UNSUBACK: wireMessage.messageIdentifier = readUint16(input, pos); break; case MESSAGE_TYPE.SUBACK: wireMessage.messageIdentifier = readUint16(input, pos); pos += 2; wireMessage.grantedQos = input.subarray(pos); break; default: ; } return wireMessage; } function writeUint16(input, buffer, offset) { buffer[offset++] = input >> 8; //MSB buffer[offset++] = input % 256; //LSB return offset; } function writeString(input, utf8Length, buffer, offset) { offset = writeUint16(utf8Length, buffer, offset); stringToUTF8(input, buffer, offset); return offset + utf8Length; } function readUint16(buffer, offset) { return 256*buffer[offset] + buffer[offset+1]; } /** * Encodes an MQTT Multi-Byte Integer * @private */ function encodeMBI(number) { var output = new Array(1); var numBytes = 0; do { var digit = number % 128; number = number >> 7; if (number > 0) { digit |= 0x80; } output[numBytes++] = digit; } while ( (number > 0) && (numBytes<4) ); return output; } /** * Takes a String and calculates its length in bytes when encoded in UTF8. * @private */ function UTF8Length(input) { var output = 0; for (var i = 0; i<input.length; i++) { var charCode = input.charCodeAt(i); if (charCode > 0x7FF) { // Surrogate pair means its a 4 byte character if (0xD800 <= charCode && charCode <= 0xDBFF) { i++; output++; } output +=3; } else if (charCode > 0x7F) output +=2; else output++; } return output; } /** * Takes a String and writes it into an array as UTF8 encoded bytes. * @private */ function stringToUTF8(input, output, start) { var pos = start; for (var i = 0; i<input.length; i++) { var charCode = input.charCodeAt(i); // Check for a surrogate pair. if (0xD800 <= charCode && charCode <= 0xDBFF) { lowCharCode = input.charCodeAt(++i); if (isNaN(lowCharCode)) { throw new Error(format(ERROR.MALFORMED_UNICODE, [charCode, lowCharCode])); } charCode = ((charCode - 0xD800)<<10) + (lowCharCode - 0xDC00) + 0x10000; } if (charCode <= 0x7F) { output[pos++] = charCode; } else if (charCode <= 0x7FF) { output[pos++] = charCode>>6 & 0x1F | 0xC0; output[pos++] = charCode & 0x3F | 0x80; } else if (charCode <= 0xFFFF) { output[pos++] = charCode>>12 & 0x0F | 0xE0; output[pos++] = charCode>>6 & 0x3F | 0x80; output[pos++] = charCode & 0x3F | 0x80; } else { output[pos++] = charCode>>18 & 0x07 | 0xF0; output[pos++] = charCode>>12 & 0x3F | 0x80; output[pos++] = charCode>>6 & 0x3F | 0x80; output[pos++] = charCode & 0x3F | 0x80; }; } return output; } function parseUTF8(input, offset, length) { var output = ""; var utf16; var pos = offset; while (pos < offset+length) { var byte1 = input[pos++]; if (byte1 < 128) utf16 = byte1; else { var byte2 = input[pos++]-128; if (byte2 < 0) throw new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16),""])); if (byte1 < 0xE0) // 2 byte character utf16 = 64*(byte1-0xC0) + byte2; else { var byte3 = input[pos++]-128; if (byte3 < 0) throw new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16)])); if (byte1 < 0xF0) // 3 byte character utf16 = 4096*(byte1-0xE0) + 64*byte2 + byte3; else { var byte4 = input[pos++]-128; if (byte4 < 0) throw new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16), byte4.toString(16)])); if (byte1 < 0xF8) // 4 byte character utf16 = 262144*(byte1-0xF0) + 4096*byte2 + 64*byte3 + byte4; else // longer encodings are not supported throw new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16), byte4.toString(16)])); } } } if (utf16 > 0xFFFF) // 4 byte character - express as a surrogate pair { utf16 -= 0x10000; output += String.fromCharCode(0xD800 + (utf16 >> 10)); // lead character utf16 = 0xDC00 + (utf16 & 0x3FF); // trail character } output += String.fromCharCode(utf16); } return output; } /** @ignore Repeat keepalive requests, monitor responses.*/ var Pinger = function(client, window, keepAliveInterval) { this._client = client; this._window = window; this._keepAliveInterval = keepAliveInterval*1000; this.isReset = false; var pingReq = new WireMessage(MESSAGE_TYPE.PINGREQ).encode(); var doTimeout = function (pinger) { return function () { return doPing.apply(pinger); }; }; /** @ignore */ var doPing = function() { if (!this.isReset) { this._client._trace("Pinger.doPing", "Timed out"); this._client._disconnected( ERROR.PING_TIMEOUT.code , format(ERROR.PING_TIMEOUT)); } else { this.isReset = false; this._client._trace("Pinger.doPing", "send PINGREQ"); this._client.socket.send(pingReq); this.timeout = this._window.setTimeout(doTimeout(this), this._keepAliveInterval); } } this.reset = function() { this.isReset = true; this._window.clearTimeout(this.timeout); if (this._keepAliveInterval > 0) this.timeout = setTimeout(doTimeout(this), this._keepAliveInterval); } this.cancel = function() { this._window.clearTimeout(this.timeout); } }; /** @ignore Monitor request completion. */ var Timeout = function(client, window, timeoutSeconds, action, args) { this._window = window; if (!timeoutSeconds) timeoutSeconds = 30; var doTimeout = function (action, client, args) { return function () { return action.apply(client, args); }; }; this.timeout = setTimeout(doTimeout(action, client, args), timeoutSeconds * 1000); this.cancel = function() { this._window.clearTimeout(this.timeout); } }; /* * Internal implementation of the Websockets MQTT V3.1 client. * * @name Messaging.ClientImpl @constructor * @param {String} host the DNS nameof the webSocket host. * @param {Number} port the port number for that host. * @param {String} clientId the MQ client identifier. */ var ClientImpl = function (host, port, clientId) { // Check dependencies are satisfied in this browser. if (!("WebSocket" in global && global["WebSocket"] !== null)) { throw new Error(format(ERROR.UNSUPPORTED, ["WebSocket"])); } if (!("localStorage" in global && global["localStorage"] !== null)) { throw new Error(format(ERROR.UNSUPPORTED, ["localStorage"])); } if (!("ArrayBuffer" in global && global["ArrayBuffer"] !== null)) { throw new Error(format(ERROR.UNSUPPORTED, ["ArrayBuffer"])); } this._trace("Messaging.Client", host, port, clientId); this.host = host; this.port = port; this.clientId = clientId; // Local storagekeys are qualified with the following string. this._localKey=host+":"+port+":"+clientId+":"; // Create private instance-only message queue // Internal queue of messages to be sent, in sending order. this._msg_queue = []; // Messages we have sent and are expecting a response for, indexed by their respective message ids. this._sentMessages = {}; // Messages we have received and acknowleged and are expecting a confirm message for // indexed by their respective message ids. this._receivedMessages = {}; // Internal list of callbacks to be executed when messages // have been successfully sent over web socket, e.g. disconnect // when it doesn't have to wait for ACK, just message is dispatched. this._notify_msg_sent = {}; // Unique identifier for SEND messages, incrementing // counter as messages are sent. this._message_identifier = 1; // Used to determine the transmission sequence of stored sent messages. this._sequence = 0; // Load the local state, if any, from the saved version, only restore state relevant to this client. for(key in localStorage) if ( key.indexOf("Sent:"+this._localKey) == 0 || key.indexOf("Received:"+this._localKey) == 0) this.restore(key); }; // Messaging Client public instance members. ClientImpl.prototype.host; ClientImpl.prototype.port; ClientImpl.prototype.clientId; // Messaging Client private instance members. ClientImpl.prototype.socket; /* true once we have received an acknowledgement to a CONNECT packet. */ ClientImpl.prototype.connected = false; /* The largest message identifier allowed, may not be larger than 2**16 but * if set smaller reduces the maximum number of outbound messages allowed. */ ClientImpl.prototype.maxMessageIdentifier = 65536; ClientImpl.prototype.connectOptions; ClientImpl.prototype.hostIndex; ClientImpl.prototype.onConnectionLost; ClientImpl.prototype.onMessageDelivered; ClientImpl.prototype.onMessageArrived; ClientImpl.prototype._msg_queue = null; ClientImpl.prototype._connectTimeout; /* Send keep alive messages. */ ClientImpl.prototype.pinger = null; ClientImpl.prototype._traceBuffer = null; ClientImpl.prototype._MAX_TRACE_ENTRIES = 100; ClientImpl.prototype.connect = function (connectOptions) { var connectOptionsMasked = this._traceMask(connectOptions, "password"); this._trace("Client.connect", connectOptionsMasked, this.socket, this.connected); if (this.connected) throw new Error(format(ERROR.INVALID_STATE, ["already connected"])); if (this.socket) throw new Error(format(ERROR.INVALID_STATE, ["already connected"])); this.connectOptions = connectOptions; if (connectOptions.hosts) { this.hostIndex = 0; this._doConnect(connectOptions.hosts[0], connectOptions.ports[0]); } else { this._doConnect(this.host, this.port); } }; ClientImpl.prototype.subscribe = function (filter, subscribeOptions) { this._trace("Client.subscribe", filter, subscribeOptions); if (!this.connected) throw new Error(format(ERROR.INVALID_STATE, ["not connected"])); var wireMessage = new WireMessage(MESSAGE_TYPE.SUBSCRIBE); wireMessage.topics=[filter]; if (subscribeOptions.qos != undefined) wireMessage.requestedQos = [subscribeOptions.qos]; else wireMessage.requestedQos = [0]; if (subscribeOptions.onSuccess) { wireMessage.callback = function() {subscribeOptions.onSuccess({invocationContext:subscribeOptions.invocationContext});}; } if (subscribeOptions.timeout) { wireMessage.timeOut = new Timeout(this, window, subscribeOptions.timeout, subscribeOptions.onFailure , [{invocationContext:subscribeOptions.invocationContext, errorCode:ERROR.SUBSCRIBE_TIMEOUT.code, errorMessage:format(ERROR.SUBSCRIBE_TIMEOUT)}]); } // All subscriptions return a SUBACK. this._requires_ack(wireMessage); this._schedule_message(wireMessage); }; /** @ignore */ ClientImpl.prototype.unsubscribe = function(filter, unsubscribeOptions) { this._trace("Client.unsubscribe", filter, unsubscribeOptions); if (!this.connected) throw new Error(format(ERROR.INVALID_STATE, ["not connected"])); var wireMessage = new WireMessage(MESSAGE_TYPE.UNSUBSCRIBE); wireMessage.topics = [filter]; if (unsubscribeOptions.onSuccess) { wireMessage.callback = function() {unsubscribeOptions.onSuccess({invocationContext:unsubscribeOptions.invocationContext});}; } if (unsubscribeOptions.timeout) { wireMessage.timeOut = new Timeout(this, window, unsubscribeOptions.timeout, unsubscribeOptions.onFailure , [{invocationContext:unsubscribeOptions.invocationContext, errorCode:ERROR.UNSUBSCRIBE_TIMEOUT.code, errorMessage:format(ERROR.UNSUBSCRIBE_TIMEOUT)}]); } // All unsubscribes return a SUBACK. this._requires_ack(wireMessage); this._schedule_message(wireMessage); }; ClientImpl.prototype.send = function (message) { this._trace("Client.send", message); if (!this.connected) throw new Error(format(ERROR.INVALID_STATE, ["not connected"])); wireMessage = new WireMessage(MESSAGE_TYPE.PUBLISH); wireMessage.payloadMessage = message; if (message.qos > 0) this._requires_ack(wireMessage); else if (this.onMessageDelivered) this._notify_msg_sent[wireMessage] = this.onMessageDelivered(wireMessage.payloadMessage); this._schedule_message(wireMessage); }; ClientImpl.prototype.disconnect = function () { this._trace("Client.disconnect"); if (!this.socket) throw new Error(format(ERROR.INVALID_STATE, ["not connecting or connected"])); wireMessage = new WireMessage(MESSAGE_TYPE.DISCONNECT); // Run the disconnected call back as soon as the message has been sent, // in case of a failure later on in the disconnect processing. // as a consequence, the _disconected call back may be run several times. this._notify_msg_sent[wireMessage] = scope(this._disconnected, this); this._schedule_message(wireMessage); }; ClientImpl.prototype.getTraceLog = function () { if ( this._traceBuffer !== null ) { this._trace("Client.getTraceLog", new Date()); this._trace("Client.getTraceLog in flight messages", this._sentMessages.length); for (key in this._sentMessages) this._trace("_sentMessages ",key, this._sentMessages[key]); for (key in this._receivedMessages) this._trace("_receivedMessages ",key, this._receivedMessages[key]); return this._traceBuffer; } }; ClientImpl.prototype.startTrace = function () { if ( this._traceBuffer === null ) { this._traceBuffer = []; } this._trace("Client.startTrace", new Date(), version); }; ClientImpl.prototype.stopTrace = function () { delete this._traceBuffer; }; ClientImpl.prototype._doConnect = function (host, port) { // When the socket is open, this client will send the CONNECT WireMessage using the saved parameters. if (this.connectOptions.useSSL) wsurl = ["wss://", host, ":", port, "/mqtt"].join(""); else wsurl = ["ws://", host, ":", port, "/mqtt"].join(""); this.connected = false; this.socket = new WebSocket(wsurl, 'mqttv3.1'); this.socket.binaryType = 'arraybuffer'; this.socket.onopen = scope(this._on_socket_open, this); this.socket.onmessage = scope(this._on_socket_message, this); this.socket.onerror = scope(this._on_socket_error, this); this.socket.onclose = scope(this._on_socket_close, this); this.pinger = new Pinger(this, window, this.connectOptions.keepAliveInterval); this._connectTimeout = new Timeout(this, window, this.connectOptions.timeout, this._disconnected, [ERROR.CONNECT_TIMEOUT.code, format(ERROR.CONNECT_TIMEOUT)]); }; // Schedule a new message to be sent over the WebSockets // connection. CONNECT messages cause WebSocket connection // to be started. All other messages are queued internally // until this has happened. When WS connection starts, process // all outstanding messages. ClientImpl.prototype._schedule_message = function (message) { this._msg_queue.push(message); // Process outstanding messages in the queue if we have an open socket, and have received CONNACK. if (this.connected) { this._process_queue(); } }; ClientImpl.prototype.store = function(prefix, wireMessage) { storedMessage = {type:wireMessage.type, messageIdentifier:wireMessage.messageIdentifier, version:1}; switch(wireMessage.type) { case MESSAGE_TYPE.PUBLISH: if(wireMessage.pubRecReceived) storedMessage.pubRecReceived = true; // Convert the payload to a hex string. storedMessage.payloadMessage = {}; var hex = ""; var messageBytes = wireMessage.payloadMessage.payloadBytes; for (var i=0; i<messageBytes.length; i++) { if (messageBytes[i] <= 0xF) hex = hex+"0"+messageBytes[i].toString(16); else hex = hex+messageBytes[i].toString(16); } storedMessage.payloadMessage.payloadHex = hex; storedMessage.payloadMessage.qos = wireMessage.payloadMessage.qos; storedMessage.payloadMessage.destinationName = wireMessage.payloadMessage.destinationName; if (wireMessage.payloadMessage.duplicate) storedMessage.payloadMessage.duplicate = true; if (wireMessage.payloadMessage.retained) storedMessage.payloadMessage.retained = true; // Add a sequence number to sent messages. if ( prefix.indexOf("Sent:") == 0 ) { if ( wireMessage.sequence === undefined ) wireMessage.sequence = ++this._sequence; storedMessage.sequence = wireMessage.sequence; } break; default: throw Error(format(ERROR.INVALID_STORED_DATA, [key, storedMessage])); } localStorage.setItem(prefix+this._localKey+wireMessage.messageIdentifier, JSON.stringify(storedMessage)); }; ClientImpl.prototype.restore = function(key) { var value = localStorage.getItem(key); var storedMessage = JSON.parse(value); var wireMessage = new WireMessage(storedMessage.type, storedMessage); switch(storedMessage.type) { case MESSAGE_TYPE.PUBLISH: // Replace the payload message with a Message object. var hex = storedMessage.payloadMessage.payloadHex; var buffer = new ArrayBuffer((hex.length)/2); var byteStream = new Uint8Array(buffer); var i = 0; while (hex.length >= 2) { var x = parseInt(hex.substring(0, 2), 16); hex = hex.substring(2, hex.length); byteStream[i++] = x; } var payloadMessage = new Messaging.Message(byteStream); payloadMessage.qos = storedMessage.payloadMessage.qos; payloadMessage.destinationName = storedMessage.payloadMessage.destinationName; if (storedMessage.payloadMessage.duplicate) payloadMessage.duplicate = true; if (storedMessage.payloadMessage.retained) payloadMessage.retained = true; wireMessage.payloadMessage = payloadMessage; break; default: throw Error(format(ERROR.INVALID_STORED_DATA, [key, value])); } if (key.indexOf("Sent:"+this._localKey) == 0) { this._sentMessages[wireMessage.messageIdentifier] = wireMessage; } else if (key.indexOf("Received:"+this._localKey) == 0) { this._receivedMessages[wireMessage.messageIdentifier] = wireMessage; } }; ClientImpl.prototype._process_queue = function () { var message = null; // Process messages in order they were added var fifo = this._msg_queue.reverse(); // Send all queued messages down socket connection while ((message = fifo.pop())) { this._socket_send(message); // Notify listeners that message was successfully sent if (this._notify_msg_sent[message]) { this._notify_msg_sent[message](); delete this._notify_msg_sent[message]; } } }; /** * @ignore * Expect an ACK response for this message. Add message to the set of in progress * messages and set an unused identifier in this message. */ ClientImpl.prototype._requires_ack = function (wireMessage) { var messageCount = Object.keys(this._sentMessages).length; if (messageCount > this.maxMessageIdentifier) throw Error ("Too many messages:"+messageCount); while(this._sentMessages[this._message_identifier] !== undefined) { this._message_identifier++; } wireMessage.messageIdentifier = this._message_identifier; this._sentMessages[wireMessage.messageIdentifier] = wireMessage; if (wireMessage.type === MESSAGE_TYPE.PUBLISH) { this.store("Sent:", wireMessage); } if (this._message_identifier === this.maxMessagIdentifier) { this._message_identifier = 1; } }; /** * @ignore * Called when the underlying websocket has been opened. */ ClientImpl.prototype._on_socket_open = function () { // Create the CONNECT message object. var wireMessage = new WireMessage(MESSAGE_TYPE.CONNECT, this.connectOptions); wireMessage.clientId = this.clientId; this._socket_send(wireMessage); }; /** * @ignore * Called when the underlying websocket has received a complete packet. */ ClientImpl.prototype._on_socket_message = function (event) { this._trace("Client._on_socket_message", event.data); // Reset the ping timer. this.pinger.reset(); var byteArray = new Uint8Array(event.data); try { var wireMessage = decodeMessage(byteArray); } catch (error) { this._disconnected(ERROR.INTERNAL_ERROR.code , format(ERROR.INTERNAL_ERROR, [error.message])); return; } this._trace("Client._on_socket_message", wireMessage); switch(wireMessage.type) { case MESSAGE_TYPE.CONNACK: this._connectTimeout.cancel(); // If we have started using clean session then clear up the local state. if (this.connectOptions.cleanSession) { for (key in this._sentMessages) { var sentMessage = this._sentMessages[key]; localStorage.removeItem("Sent:"+this._localKey+sentMessage.messageIdentifier); } this._sentMessages = {}; for (key in this._receivedMessages) { var receivedMessage = this._receivedMessages[key]; localStorage.removeItem("Received:"+this._localKey+receivedMessage.messageIdentifier); } this._receivedMessages = {}; } // Client connected and ready for business. if (wireMessage.returnCode === 0) { this.connected = true; } else { this._disconnected(ERROR.CONNACK_RETURNCODE.code , format(ERROR.CONNACK_RETURNCODE, [wireMessage.returnCode, CONNACK_RC[wireMessage.returnCode]])); break; } // Resend messages. var sequencedMessages = new Array(); for (var msgId in this._sentMessages) { if (this._sentMessages.hasOwnProperty(msgId)) sequencedMessages.push(this._sentMessages[msgId]); } // Sort sentMessages into the original sent order. var sequencedMessages = sequencedMessages.sort(function(a,b) {return a.sequence - b.sequence;} ); for (var i=0, len=sequencedMessages.length; i<len; i++) { var sentMessage = sequencedMessages[i]; if (sentMessage.type == MESSAGE_TYPE.PUBLISH && sentMessage.pubRecReceived) { var pubRelMessage = new WireMessage(MESSAGE_TYPE.PUBREL, {messageIdentifier:sentMessage.messageIdentifier}); this._schedule_message(pubRelMessage); } else { this._schedule_message(sentMessage); }; } // Execute the connectOptions.onSuccess callback if there is one. if (this.connectOptions.onSuccess) { this.connectOptions.onSuccess({invocationContext:this.connectOptions.invocationContext}); } // Process all queued messages now that the connection is established. this._process_queue(); break; case MESSAGE_TYPE.PUBLISH: this._receivePublish(wireMessage); break; case MESSAGE_TYPE.PUBACK: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; // If this is a re flow of a PUBACK after we have restarted receivedMessage will not exist. if (sentMessage) { delete this._sentMessages[wireMessage.messageIdentifier]; localStorage.removeItem("Sent:"+this._localKey+wireMessage.messageIdentifier); if (this.onMessageDelivered) this.onMessageDelivered(sentMessage.payloadMessage); } break; case MESSAGE_TYPE.PUBREC: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; // If this is a re flow of a PUBREC after we have restarted receivedMessage will not exist. if (sentMessage) { sentMessage.pubRecReceived = true; var pubRelMessage = new WireMessage(MESSAGE_TYPE.PUBREL, {messageIdentifier:wireMessage.messageIdentifier}); this.store("Sent:", sentMessage); this._schedule_message(pubRelMessage); } break; case MESSAGE_TYPE.PUBREL: var receivedMessage = this._receivedMessages[wireMessage.messageIdentifier]; localStorage.removeItem("Received:"+this._localKey+wireMessage.messageIdentifier); // If this is a re flow of a PUBREL after we have restarted receivedMessage will not exist. if (receivedMessage) { this._receiveMessage(receivedMessage); delete this._receivedMessages[wireMessage.messageIdentifier]; } // Always flow PubComp, we may have previously flowed PubComp but the server lost it and restarted. pubCompMessage = new WireMessage(MESSAGE_TYPE.PUBCOMP, {messageIdentifier:wireMessage.messageIdentifier}); this._schedule_message(pubCompMessage); break; case MESSAGE_TYPE.PUBCOMP: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; delete this._sentMessages[wireMessage.messageIdentifier]; localStorage.removeItem("Sent:"+this._localKey+wireMessage.messageIdentifier); if (this.onMessageDelivered) this.onMessageDelivered(sentMessage.payloadMessage); break; case MESSAGE_TYPE.SUBACK: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; if (sentMessage) { if(sentMessage.timeOut) sentMessage.timeOut.cancel(); if (sentMessage.callback) { sentMessage.callback(); } delete this._sentMessages[wireMessage.messageIdentifier]; } break; case MESSAGE_TYPE.UNSUBACK: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; if (sentMessage) { if (sentMessage.timeOut) sentMessage.timeOut.cancel(); if (sentMessage.callback) { sentMessage.callback(); } delete this._sentMessages[wireMessage.messageIdentifier]; } break; case MESSAGE_TYPE.PINGRESP: break; case MESSAGE_TYPE.DISCONNECT: // Clients do not expect to receive disconnect packets. this._disconnected(ERROR.INVALID_MQTT_MESSAGE_TYPE.code , format(ERROR.INVALID_MQTT_MESSAGE_TYPE, [wireMessage.type])); break; default: this._disconnected(ERROR.INVALID_MQTT_MESSAGE_TYPE.code , format(ERROR.INVALID_MQTT_MESSAGE_TYPE, [wireMessage.type])); }; }; /** @ignore */ ClientImpl.prototype._on_socket_error = function (error) { this._disconnected(ERROR.SOCKET_ERROR.code , format(ERROR.SOCKET_ERROR, [error.data])); }; /** @ignore */ ClientImpl.prototype._on_socket_close = function () { this._disconnected(ERROR.SOCKET_CLOSE.code , format(ERROR.SOCKET_CLOSE)); }; /** @ignore */ ClientImpl.prototype._socket_send = function (wireMessage) { if (wireMessage.type == 1) { var wireMessageMasked = this._traceMask(wireMessage, "password"); this._trace("Client._socket_send", wireMessageMasked); } else this._trace("Client._socket_send", wireMessage); this.socket.send(wireMessage.encode()); this.pinger.reset(); }; /** @ignore */ ClientImpl.prototype._receivePublish = function (wireMessage) { switch(wireMessage.payloadMessage.qos) { case "undefined": case 0: this._receiveMessage(wireMessage); break; case 1: var pubAckMessage = new WireMessage(MESSAGE_TYPE.PUBACK, {messageIdentifier:wireMessage.messageIdentifier}); this._schedule_message(pubAckMessage); this._receiveMessage(wireMessage); break; case 2: this._receivedMessages[wireMessage.messageIdentifier] = wireMessage; this.store("Received:", wireMessage); var pubRecMessage = new WireMessage(MESSAGE_TYPE.PUBREC, {messageIdentifier:wireMessage.messageIdentifier}); this._schedule_message(pubRecMessage); break; default: throw Error("Invaild qos="+wireMmessage.payloadMessage.qos); }; }; /** @ignore */ ClientImpl.prototype._receiveMessage = function (wireMessage) { if (this.onMessageArrived) { this.onMessageArrived(wireMessage.payloadMessage); } }; /** * @ignore * Client has disconnected either at its own request or because the server * or network disconnected it. Remove all non-durable state. * @param {errorCode} [number] the error number. * @param {errorText} [string] the error text. */ ClientImpl.prototype._disconnected = function (errorCode, errorText) { this.pinger.cancel(); if (this._connectTimeout) this._connectTimeout.cancel(); // Clear message buffers. this._msg_queue = []; this._notify_msg_sent = {}; if (this.socket) { // Cancel all socket callbacks so that they cannot be driven again by this socket. this.socket.onopen = null; this.socket.onmessage = null; this.socket.onerror = null; this.socket.onclose = null; this.socket.close(); delete this.socket; } if (this.connectOptions.hosts && this.hostIndex < this.connectOptions.hosts.length-1) { // Try the next host. this.hostIndex++; this._doConnect(this.connectOptions.hosts[this.hostIndex], this.connectOptions.ports[this.hostIndex]); } else { if (errorCode === undefined) { errorCode = ERROR.OK.code; errroText = format(ERROR.OK); } // Run any application callbacks last as they may attempt to reconnect and hence create a new socket. if (this.connected) { this.connected = false; // Execute the connectionLostCallback if there is one, and we were connected. if (this.onConnectionLost) this.onConnectionLost({errorCode:errorCode, errorMessage:errorText}); } else { // Otherwise we never had a connection, so indicate that the connect has failed. if(this.connectOptions.onFailure) this.connectOptions.onFailure({invocationContext:this.connectOptions.invocationContext, errorCode:errorCode, errorMessage:errorText}); } } }; /** @ignore */ ClientImpl.prototype._trace = function () { if ( this._traceBuffer !== null ) { for (var i = 0, max = arguments.length; i < max; i++) { if ( this._traceBuffer.length == this._MAX_TRACE_ENTRIES ) { this._traceBuffer.shift(); } if (i === 0) this._traceBuffer.push(arguments[i]); else if (typeof arguments[i] === "undefined" ) this._traceBuffer.push(arguments[i]); else this._traceBuffer.push(" "+JSON.stringify(arguments[i])); }; }; }; /** @ignore */ ClientImpl.prototype._traceMask = function (traceObject, masked) { var traceObjectMasked = {}; for (var attr in traceObject) { if (traceObject.hasOwnProperty(attr)) { if (attr == masked) traceObjectMasked[attr] = "******"; else traceObjectMasked[attr] = traceObject[attr]; } } return traceObjectMasked; }; // ------------------------------------------------------------------------ // Public Programming interface. // ------------------------------------------------------------------------ /** * The JavaScript application communicates to the server using a Messaging.Client object. * <p> * Other programming languages, * <a href="/clients/java/doc/javadoc/com/ibm/micro/client/mqttv3/MqttClient.html"><big>Java</big></a>, * <a href="/clients/c/doc/html/index.html"><big>C</big></a>. * <p> * Most applications will create just one Client object and then call its connect() method, * however applications can create more than one Client object if they wish. * In this case the combination of host, port and clientId attributes must be different for each Client object. * <p> * The send, subscribe and unsubscribe methods are implemented as asynchronous JavaScript methods * (even though the underlying protocol exchange might be synchronous in nature). * This means they signal their completion by calling back to the application, * via Success or Failure callback functions provided by the application on the method in question. * Such callbacks are called at most once per method invocation and do not persist beyond the lifetime * of the script that made the invocation. * <p> * In contrast there are some callback functions <i> most notably onMessageArrived</i> * that are defined on the Messaging.Client object. * These may get called multiple times, and aren't directly related to specific method invocations made by the client. * * @name Messaging.Client * * @constructor * Creates a Messaging.Client object that can be used to communicate with a Messaging server. * * @param {string} host the address of the messaging server, as a DNS name or dotted decimal IP address. * @param {number} port the port number in the host to connect to. * @param {string} clientId the Messaging client identifier, between 1 and 23 characters in length. * * @property {string} host <i>read only</i> the server's DNS hostname or dotted decimal IP address. * @property {number} port <i>read only</i> the server's port. * @property {string} clientId <i>read only</i> used when connecting to the server. * @property {function} onConnectionLost called when a connection has been lost, * after a connect() method has succeeded. * Establish the call back used when a connection has been lost. The connection may be * lost because the client initiates a disconnect or because the server or network * cause the client to be disconnected. The disconnect call back may be called without * the connectionComplete call back being invoked if, for example the client fails to * connect. * A single response object parameter is passed to the onConnectionLost callback containing the following fields: * <ol> * <li>errorCode * <li>errorMessage * </ol> * @property {function} onMessageDelivered called when a message has been delivered. * All processing that this Client will ever do has been completed. So, for example, * in the case of a Qos=2 message sent by this client, the PubComp flow has been received from the server * and the message has been removed from persistent storage before this callback is invoked. * Parameters passed to the onMessageDelivered callback are: * <ol> * <li>Messaging.Message that was delivered. * </ol> * @property {function} onMessageArrived called when a message has arrived in this Messaging.client. * Parameters passed to the onMessageArrived callback are: * <ol> * <li>Messaging.Message that has arrived. * </ol> */ var Client = function (host, port, clientId) { if (typeof host !== "string") throw new Error(format(ERROR.INVALID_TYPE, [typeof host, "host"])); if (typeof port !== "number" || port < 0) throw new Error(format(ERROR.INVALID_TYPE, [typeof port, "port"])); var clientIdLength = 0; for (var i = 0; i<clientId.length; i++) { var charCode = clientId.charCodeAt(i); if (0xD800 <= charCode && charCode <= 0xDBFF) { i++; // Surrogate pair. } clientIdLength++; } if (typeof clientId !== "string" || clientIdLength < 1 | clientIdLength > 23) throw new Error(format(ERROR.INVALID_ARGUMENT, [clientId, "clientId"])); var client = new ClientImpl(host, port, clientId); this._getHost = function() { return client.host; }; this._setHost = function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }; this._getPort = function() { return client.port; }; this._setPort = function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }; this._getClientId = function() { return client.clientId; }; this._setClientId = function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }; this._getOnConnectionLost = function() { return client.onConnectionLost; }; this._setOnConnectionLost = function(newOnConnectionLost) { if (typeof newOnConnectionLost === "function") client.onConnectionLost = newOnConnectionLost; else throw new Error(format(ERROR.INVALID_TYPE, [typeof newOnConnectionLost, "onConnectionLost"])); }; this._getOnMessageDelivered = function() { return client.onMessageDelivered; }; this._setOnMessageDelivered = function(newOnMessageDelivered) { if (typeof newOnMessageDelivered === "function") client.onMessageDelivered = newOnMessageDelivered; else throw new Error(format(ERROR.INVALID_TYPE, [typeof newOnMessageDelivered, "onMessageDelivered"])); }; this._getOnMessageArrived = function() { return client.onMessageArrived; }; this._setOnMessageArrived = function(newOnMessageArrived) { if (typeof newOnMessageArrived === "function") client.onMessageArrived = newOnMessageArrived; else throw new Error(format(ERROR.INVALID_TYPE, [typeof newOnMessageArrived, "onMessageArrived"])); }; /** * Connect this Messaging client to its server. * * @name Messaging.Client#connect * @function * @param {Object} [connectOptions] attributes used with the connection. * <p> * Properties of the connect options are: * @config {number} [timeout] If the connect has not succeeded within this number of seconds, it is deemed to have failed. * The default is 30 seconds. * @config {string} [userName] Authentication username for this connection. * @config {string} [password] Authentication password for this connection. * @config {Messaging.Message} [willMessage] sent by the server when the client disconnects abnormally. * @config {Number} [keepAliveInterval] the server disconnects this client if there is no activity for this * number of seconds. The default value of 60 seconds is assumed if not set. * @config {boolean} [cleanSession] if true(default) the client and server persistent state is deleted on successful connect. * @config {boolean} [useSSL] if present and true, use an SSL Websocket connection. * @config {object} [invocationContext] passed to the onSuccess callback or onFailure callback. * @config {function} [onSuccess] called when the connect acknowledgement has been received from the server. * A single response object parameter is passed to the onSuccess callback containing the following fields: * <ol> * <li>invocationContext as passed in to the onSuccess method in the connectOptions. * </ol> * @config {function} [onFailure] called when the connect request has failed or timed out. * A single response object parameter is passed to the onFailure callback containing the following fields: * <ol> * <li>invocationContext as passed in to the onFailure method in the connectOptions. * <li>errorCode a number indicating the nature of the error. * <li>errorMessage text describing the error. * </ol> * @config {Array} [hosts] If present this set of hostnames is tried in order in place * of the host and port paramater on the construtor. The hosts and the matching ports are tried one at at time in order until * one of then succeeds. * @config {Array} [ports] If present this set of ports matching the hosts. * @throws {InvalidState} if the client is not in disconnected state. The client must have received connectionLost * or disconnected before calling connect for a second or subsequent time. */ this.connect = function (connectOptions) { connectOptions = connectOptions || {} ; validate(connectOptions, {timeout:"number", userName:"string", password:"string", willMessage:"object", keepAliveInterval:"number", cleanSession:"boolean", useSSL:"boolean", invocationContext:"object", onSuccess:"function", onFailure:"function", hosts:"object", ports:"object"}); // If no keep alive interval is set, assume 60 seconds. if (connectOptions.keepAliveInterval === undefined) connectOptions.keepAliveInterval = 60; if (connectOptions.willMessage) { if (!(connectOptions.willMessage instanceof Message)) throw new Error(format(ERROR.INVALID_TYPE, [connectOptions.willMessage, "connectOptions.willMessage"])); // The will message must have a payload that can be represented as a string. // Cause the willMessage to throw an exception if this is not the case. connectOptions.willMessage.stringPayload; if (typeof connectOptions.willMessage.destinationName === "undefined") throw new Error(format(ERROR.INVALID_TYPE, [typeof connectOptions.willMessage.destinationName, "connectOptions.willMessage.destinationName"])); } if (typeof connectOptions.cleanSession === "undefined") connectOptions.cleanSession = true; if (connectOptions.hosts) { if (!connectOptions.ports) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.ports, "connectOptions.ports"])); if (!(connectOptions.hosts instanceof Array) ) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.hosts, "connectOptions.hosts"])); if (!(connectOptions.ports instanceof Array) ) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.ports, "connectOptions.ports"])); if (connectOptions.hosts.length <1 ) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.hosts, "connectOptions.hosts"])); if (connectOptions.hosts.length != connectOptions.ports.length) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.ports, "connectOptions.ports"])); for (var i = 0; i<connectOptions.hosts.length; i++) { if (typeof connectOptions.hosts[i] !== "string") throw new Error(format(ERROR.INVALID_TYPE, [typeof connectOptions.hosts[i], "connectionstions.hosts["+i+"]"])); if (typeof connectOptions.ports[i] !== "number" || connectOptions.ports[i] < 0) throw new Error(format(ERROR.INVALID_TYPE, [typeof connectOptions.ports[i], "connectionstions.ports["+i+"]"])); } } client.connect(connectOptions); }; /** * Subscribe for messages, request receipt of a copy of messages sent to the destinations described by the filter. * * @name Messaging.Client#subscribe * @function * @param {string} filter describing the destinations to receive messages from. * <br> * @param {object} [subscribeOptions] used to control the subscription, as follows: * <p> * @config {number} [qos] the maiximum qos of any publications sent as a result of making this subscription. * @config {object} [invocationContext] passed to the onSuccess callback or onFailure callback. * @config {function} [onSuccess] called when the subscribe acknowledgement has been received from the server. * A single response object parameter is passed to the onSuccess callback containing the following fields: * <ol> * <li>invocationContext if set in the subscribeOptions. * </ol> * @config {function} [onFailure] called when the subscribe request has failed or timed out. * A single response object parameter is passed to the onFailure callback containing the following fields: * <ol> * <li>invocationContext if set in the subscribeOptions. * <li>errorCode a number indicating the nature of the error. * <li>errorMessage text describing the error. * </ol> * @config {number} [timeout] which if present determines the number of seconds after which the onFailure calback is called * the presence of a timeout does not prevent the onSuccess callback from being called when the MQTT Suback is eventually received. * @throws {InvalidState} if the client is not in connected state. */ this.subscribe = function (filter, subscribeOptions) { if (typeof filter !== "string") throw new Error("Invalid argument:"+filter); subscribeOptions = subscribeOptions || {} ; validate(subscribeOptions, {qos:"number", invocationContext:"object", onSuccess:"function", onFailure:"function", timeout:"number" }); if (subscribeOptions.timeout && !subscribeOptions.onFailure) throw new Error("subscribeOptions.timeout specified with no onFailure callback."); if (typeof subscribeOptions.qos !== "undefined" && !(subscribeOptions.qos === 0 || subscribeOptions.qos === 1 || subscribeOptions.qos === 2 )) throw new Error(format(ERROR.INVALID_ARGUMENT, [subscribeOptions.qos, "subscribeOptions.qos"])); client.subscribe(filter, subscribeOptions); }; /** * Unsubscribe for messages, stop receiving messages sent to destinations described by the filter. * * @name Messaging.Client#unsubscribe * @function * @param {string} filter describing the destinations to receive messages from. * @param {object} [unsubscribeOptions] used to control the subscription, as follows: * <p> * @config {object} [invocationContext] passed to the onSuccess callback or onFailure callback. * @config {function} [onSuccess] called when the unsubscribe acknowledgement has been receive dfrom the server. * A single response object parameter is passed to the onSuccess callback containing the following fields: * <ol> * <li>invocationContext if set in the unsubscribeOptions. * </ol> * @config {function} [onFailure] called when the unsubscribe request has failed or timed out. * A single response object parameter is passed to the onFailure callback containing the following fields: * <ol> * <li>invocationContext if set in the unsubscribeOptions. * <li>errorCode a number indicating the nature of the error. * <li>errorMessage text describing the error. * </ol> * @config {number} [timeout] which if present determines the number of seconds after which the onFailure callback is called, the * presence of a timeout does not prevent the onSuccess callback from being called when the MQTT UnSuback is eventually received. * @throws {InvalidState} if the client is not in connected state. */ this.unsubscribe = function (filter, unsubscribeOptions) { if (typeof filter !== "string") throw new Error("Invalid argument:"+filter); unsubscribeOptions = unsubscribeOptions || {} ; validate(unsubscribeOptions, {invocationContext:"object", onSuccess:"function", onFailure:"function", timeout:"number" }); if (unsubscribeOptions.timeout && !unsubscribeOptions.onFailure) throw new Error("unsubscribeOptions.timeout specified with no onFailure callback."); client.unsubscribe(filter, unsubscribeOptions); }; /** * Send a message to the consumers of the destination in the Message. * * @name Messaging.Client#send * @function * @param {Messaging.Message} message to send. * @throws {InvalidState} if the client is not in connected state. */ this.send = function (message) { if (!(message instanceof Message)) throw new Error("Invalid argument:"+typeof message); if (typeof message.destinationName === "undefined") throw new Error("Invalid parameter Message.destinationName:"+message.destinationName); client.send(message); }; /** * Normal disconnect of this Messaging client from its server. * * @name Messaging.Client#disconnect * @function * @throws {InvalidState} if the client is not in connected or connecting state. */ this.disconnect = function () { client.disconnect(); }; /** * Get the contents of the trace log. * * @name Messaging.Client#getTraceLog * @function * @return {Object[]} tracebuffer containing the time ordered trace records. */ this.getTraceLog = function () { return client.getTraceLog(); } /** * Start tracing. * * @name Messaging.Client#startTrace * @function */ this.startTrace = function () { client.startTrace(); }; /** * Stop tracing. * * @name Messaging.Client#stopTrace * @function */ this.stopTrace = function () { client.stopTrace(); }; }; Client.prototype = { get host() { return this._getHost(); }, set host(newHost) { this._setHost(newHost); }, get port() { return this._getPort(); }, set port(newPort) { this._setPort(newPort); }, get clientId() { return this._getClientId(); }, set clientId(newClientId) { this._setClientId(newClientId); }, get onConnectionLost() { return this._getOnConnectionLost(); }, set onConnectionLost(newOnConnectionLost) { this._setOnConnectionLost(newOnConnectionLost); }, get onMessageDelivered() { return this._getOnMessageDelivered(); }, set onMessageDelivered(newOnMessageDelivered) { this._setOnMessageDelivered(newOnMessageDelivered); }, get onMessageArrived() { return this._getOnMessageArrived(); }, set onMessageArrived(newOnMessageArrived) { this._setOnMessageArrived(newOnMessageArrived); } }; /** * An application message, sent or received. * <p> * Other programming languages, * <a href="/clients/java/doc/javadoc/com/ibm/micro/client/mqttv3/MqttMessage.html"><big>Java</big></a>, * <a href="/clients/c/doc/html/struct_m_q_t_t_client__message.html"><big>C</big></a>. * <p> * All attributes may be null, which implies the default values. * * @name Messaging.Message * @constructor * @param {String|ArrayBuffer} payload The message data to be sent. * <p> * @property {string} payloadString <i>read only</i> The payload as a string if the payload consists of valid UTF-8 characters. * @property {ArrayBuffer} payloadBytes <i>read only</i> The payload as an ArrayBuffer. * <p> * @property {string} destinationName <b>mandatory</b> The name of the destination to which the message is to be sent * (for messages about to be sent) or the name of the destination from which the message has been received. * (for messages received by the onMessage function). * <p> * @property {number} qos The Quality of Service used to deliver the message. * <dl> * <dt>0 Best effort (default). * <dt>1 At least once. * <dt>2 Exactly once. * </dl> * <p> * @property {Boolean} retained If true, the message is to be retained by the server and delivered * to both current and future subscriptions. * If false the server only delivers the message to current subscribers, this is the default for new Messages. * A received message has the retained boolean set to true if the message was published * with the retained boolean set to true * and the subscrption was made after the message has been published. * <p> * @property {Boolean} duplicate <i>read only</i> If true, this message might be a duplicate of one which has already been received. * This is only set on messages received from the server. * */ var Message = function (newPayload) { var payload; if ( typeof newPayload === "string" || newPayload instanceof ArrayBuffer || newPayload instanceof Int8Array || newPayload instanceof Uint8Array || newPayload instanceof Int16Array || newPayload instanceof Uint16Array || newPayload instanceof Int32Array || newPayload instanceof Uint32Array || newPayload instanceof Float32Array || newPayload instanceof Float64Array ) { payload = newPayload; } else { throw (format(ERROR.INVALID_ARGUMENT, [newPayload, "newPayload"])); } this._getPayloadString = function () { if (typeof payload === "string") return payload; else return parseUTF8(payload, 0, payload.length); }; this._getPayloadBytes = function() { if (typeof payload === "string") { var buffer = new ArrayBuffer(UTF8Length(payload)); var byteStream = new Uint8Array(buffer); stringToUTF8(payload, byteStream, 0); return byteStream; } else { return payload; }; }; var destinationName = undefined; this._getDestinationName = function() { return destinationName; }; this._setDestinationName = function(newDestinationName) { if (typeof newDestinationName === "string") destinationName = newDestinationName; else throw new Error(format(ERROR.INVALID_ARGUMENT, [newDestinationName, "newDestinationName"])); }; var qos = 0; this._getQos = function() { return qos; }; this._setQos = function(newQos) { if (newQos === 0 || newQos === 1 || newQos === 2 ) qos = newQos; else throw new Error("Invalid argument:"+newQos); }; var retained = false; this._getRetained = function() { return retained; }; this._setRetained = function(newRetained) { if (typeof newRetained === "boolean") retained = newRetained; else throw new Error(format(ERROR.INVALID_ARGUMENT, [newRetained, "newRetained"])); }; var duplicate = false; this._getDuplicate = function() { return duplicate; }; this._setDuplicate = function(newDuplicate) { duplicate = newDuplicate; }; }; Message.prototype = { get payloadString() { return this._getPayloadString(); }, get payloadBytes() { return this._getPayloadBytes(); }, get destinationName() { return this._getDestinationName(); }, set destinationName(newDestinationName) { this._setDestinationName(newDestinationName); }, get qos() { return this._getQos(); }, set qos(newQos) { this._setQos(newQos); }, get retained() { return this._getRetained(); }, set retained(newRetained) { this._setRetained(newRetained); }, get duplicate() { return this._getDuplicate(); }, set duplicate(newDuplicate) { this._setDuplicate(newDuplicate); } }; // Module contents. return { Client: Client, Message: Message }; })(window);

public/js/utils/OpenLayers.js

/* OpenLayers.js -- OpenLayers Map Viewer Library Copyright (c) 2006-2012 by OpenLayers Contributors Published under the 2-clause BSD license. See http://openlayers.org/dev/license.txt for the full text of the license, and http://openlayers.org/dev/authors.txt for full list of contributors. Includes compressed code under the following licenses: (For uncompressed versions of the code used, please see the OpenLayers Github repository: <https://github.com/openlayers/openlayers>) */ /** * Contains XMLHttpRequest.js <http://code.google.com/p/xmlhttprequest/> * Copyright 2007 Sergey Ilinsky (http://www.ilinsky.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 */ /** * OpenLayers.Util.pagePosition is based on Yahoo's getXY method, which is * Copyright (c) 2006, Yahoo! Inc. * All rights reserved. * * Redistribution and use of this software in source and binary forms, with or * without modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * * Neither the name of Yahoo! Inc. nor the names of its contributors may be * used to endorse or promote products derived from this software without * specific prior written permission of Yahoo! Inc. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ var OpenLayers={VERSION_NUMBER:"Release 2.12",singleFile:!0,_getScriptLocation:function(){for(var a=/(^|(.*?\/))(OpenLayers[^\/]*?\.js)(\?|$)/,b=document.getElementsByTagName("script"),c,d="",e=0,f=b.length;e<f;e++)if(c=b[e].getAttribute("src"))if(c=c.match(a)){d=c[1];break}return function(){return d}}(),ImgPath:""};OpenLayers.Class=function(){var a=arguments.length,b=arguments[0],c=arguments[a-1],d="function"==typeof c.initialize?c.initialize:function(){b.prototype.initialize.apply(this,arguments)};1<a?(a=[d,b].concat(Array.prototype.slice.call(arguments).slice(1,a-1),c),OpenLayers.inherit.apply(null,a)):d.prototype=c;return d}; OpenLayers.inherit=function(a,b){var c=function(){};c.prototype=b.prototype;a.prototype=new c;var d,e,c=2;for(d=arguments.length;c<d;c++)e=arguments[c],"function"===typeof e&&(e=e.prototype),OpenLayers.Util.extend(a.prototype,e)};OpenLayers.Util=OpenLayers.Util||{};OpenLayers.Util.extend=function(a,b){a=a||{};if(b){for(var c in b){var d=b[c];void 0!==d&&(a[c]=d)}!("function"==typeof window.Event&&b instanceof window.Event)&&(b.hasOwnProperty&&b.hasOwnProperty("toString"))&&(a.toString=b.toString)}return a};OpenLayers.String={startsWith:function(a,b){return 0==a.indexOf(b)},contains:function(a,b){return-1!=a.indexOf(b)},trim:function(a){return a.replace(/^\s\s*/,"").replace(/\s\s*$/,"")},camelize:function(a){for(var a=a.split("-"),b=a[0],c=1,d=a.length;c<d;c++)var e=a[c],b=b+(e.charAt(0).toUpperCase()+e.substring(1));return b},format:function(a,b,c){b||(b=window);return a.replace(OpenLayers.String.tokenRegEx,function(a,e){for(var f,g=e.split(/\.+/),h=0;h<g.length;h++)0==h&&(f=b),f=f[g[h]];"function"== typeof f&&(f=c?f.apply(null,c):f());return"undefined"==typeof f?"undefined":f})},tokenRegEx:/\$\{([\w.]+?)\}/g,numberRegEx:/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/,isNumeric:function(a){return OpenLayers.String.numberRegEx.test(a)},numericIf:function(a){return OpenLayers.String.isNumeric(a)?parseFloat(a):a}}; OpenLayers.Number={decimalSeparator:".",thousandsSeparator:",",limitSigDigs:function(a,b){var c=0;0<b&&(c=parseFloat(a.toPrecision(b)));return c},format:function(a,b,c,d){b="undefined"!=typeof b?b:0;c="undefined"!=typeof c?c:OpenLayers.Number.thousandsSeparator;d="undefined"!=typeof d?d:OpenLayers.Number.decimalSeparator;null!=b&&(a=parseFloat(a.toFixed(b)));var e=a.toString().split(".");1==e.length&&null==b&&(b=0);a=e[0];if(c)for(var f=/(-?[0-9]+)([0-9]{3})/;f.test(a);)a=a.replace(f,"$1"+c+"$2"); 0==b?b=a:(c=1<e.length?e[1]:"0",null!=b&&(c+=Array(b-c.length+1).join("0")),b=a+d+c);return b}};OpenLayers.Function={bind:function(a,b){var c=Array.prototype.slice.apply(arguments,[2]);return function(){var d=c.concat(Array.prototype.slice.apply(arguments,[0]));return a.apply(b,d)}},bindAsEventListener:function(a,b){return function(c){return a.call(b,c||window.event)}},False:function(){return!1},True:function(){return!0},Void:function(){}}; OpenLayers.Array={filter:function(a,b,c){var d=[];if(Array.prototype.filter)d=a.filter(b,c);else{var e=a.length;if("function"!=typeof b)throw new TypeError;for(var f=0;f<e;f++)if(f in a){var g=a[f];b.call(c,g,f,a)&&d.push(g)}}return d}};OpenLayers.Bounds=OpenLayers.Class({left:null,bottom:null,right:null,top:null,centerLonLat:null,initialize:function(a,b,c,d){OpenLayers.Util.isArray(a)&&(d=a[3],c=a[2],b=a[1],a=a[0]);null!=a&&(this.left=OpenLayers.Util.toFloat(a));null!=b&&(this.bottom=OpenLayers.Util.toFloat(b));null!=c&&(this.right=OpenLayers.Util.toFloat(c));null!=d&&(this.top=OpenLayers.Util.toFloat(d))},clone:function(){return new OpenLayers.Bounds(this.left,this.bottom,this.right,this.top)},equals:function(a){var b=!1;null!= a&&(b=this.left==a.left&&this.right==a.right&&this.top==a.top&&this.bottom==a.bottom);return b},toString:function(){return[this.left,this.bottom,this.right,this.top].join()},toArray:function(a){return!0===a?[this.bottom,this.left,this.top,this.right]:[this.left,this.bottom,this.right,this.top]},toBBOX:function(a,b){null==a&&(a=6);var c=Math.pow(10,a),d=Math.round(this.left*c)/c,e=Math.round(this.bottom*c)/c,f=Math.round(this.right*c)/c,c=Math.round(this.top*c)/c;return!0===b?e+","+d+","+c+","+f:d+ ","+e+","+f+","+c},toGeometry:function(){return new OpenLayers.Geometry.Polygon([new OpenLayers.Geometry.LinearRing([new OpenLayers.Geometry.Point(this.left,this.bottom),new OpenLayers.Geometry.Point(this.right,this.bottom),new OpenLayers.Geometry.Point(this.right,this.top),new OpenLayers.Geometry.Point(this.left,this.top)])])},getWidth:function(){return this.right-this.left},getHeight:function(){return this.top-this.bottom},getSize:function(){return new OpenLayers.Size(this.getWidth(),this.getHeight())}, getCenterPixel:function(){return new OpenLayers.Pixel((this.left+this.right)/2,(this.bottom+this.top)/2)},getCenterLonLat:function(){this.centerLonLat||(this.centerLonLat=new OpenLayers.LonLat((this.left+this.right)/2,(this.bottom+this.top)/2));return this.centerLonLat},scale:function(a,b){null==b&&(b=this.getCenterLonLat());var c,d;"OpenLayers.LonLat"==b.CLASS_NAME?(c=b.lon,d=b.lat):(c=b.x,d=b.y);return new OpenLayers.Bounds((this.left-c)*a+c,(this.bottom-d)*a+d,(this.right-c)*a+c,(this.top-d)*a+ d)},add:function(a,b){if(null==a||null==b)throw new TypeError("Bounds.add cannot receive null values");return new OpenLayers.Bounds(this.left+a,this.bottom+b,this.right+a,this.top+b)},extend:function(a){var b=null;if(a){switch(a.CLASS_NAME){case "OpenLayers.LonLat":b=new OpenLayers.Bounds(a.lon,a.lat,a.lon,a.lat);break;case "OpenLayers.Geometry.Point":b=new OpenLayers.Bounds(a.x,a.y,a.x,a.y);break;case "OpenLayers.Bounds":b=a}if(b){this.centerLonLat=null;if(null==this.left||b.left<this.left)this.left= b.left;if(null==this.bottom||b.bottom<this.bottom)this.bottom=b.bottom;if(null==this.right||b.right>this.right)this.right=b.right;if(null==this.top||b.top>this.top)this.top=b.top}}},containsLonLat:function(a,b){"boolean"===typeof b&&(b={inclusive:b});var b=b||{},c=this.contains(a.lon,a.lat,b.inclusive),d=b.worldBounds;d&&!c&&(c=d.getWidth(),d=Math.round((a.lon-(d.left+d.right)/2)/c),c=this.containsLonLat({lon:a.lon-d*c,lat:a.lat},{inclusive:b.inclusive}));return c},containsPixel:function(a,b){return this.contains(a.x, a.y,b)},contains:function(a,b,c){null==c&&(c=!0);if(null==a||null==b)return!1;var a=OpenLayers.Util.toFloat(a),b=OpenLayers.Util.toFloat(b),d=!1;return d=c?a>=this.left&&a<=this.right&&b>=this.bottom&&b<=this.top:a>this.left&&a<this.right&&b>this.bottom&&b<this.top},intersectsBounds:function(a,b){"boolean"===typeof b&&(b={inclusive:b});b=b||{};if(b.worldBounds)var c=this.wrapDateLine(b.worldBounds),a=a.wrapDateLine(b.worldBounds);else c=this;null==b.inclusive&&(b.inclusive=!0);var d=!1,e=c.left== a.right||c.right==a.left||c.top==a.bottom||c.bottom==a.top;if(b.inclusive||!e)var d=a.top>=c.bottom&&a.top<=c.top||c.top>a.bottom&&c.top<a.top,e=a.left>=c.left&&a.left<=c.right||c.left>=a.left&&c.left<=a.right,f=a.right>=c.left&&a.right<=c.right||c.right>=a.left&&c.right<=a.right,d=(a.bottom>=c.bottom&&a.bottom<=c.top||c.bottom>=a.bottom&&c.bottom<=a.top||d)&&(e||f);if(b.worldBounds&&!d){var g=b.worldBounds,e=g.getWidth(),f=!g.containsBounds(c),g=!g.containsBounds(a);f&&!g?(a=a.add(-e,0),d=c.intersectsBounds(a, {inclusive:b.inclusive})):g&&!f&&(c=c.add(-e,0),d=a.intersectsBounds(c,{inclusive:b.inclusive}))}return d},containsBounds:function(a,b,c){null==b&&(b=!1);null==c&&(c=!0);var d=this.contains(a.left,a.bottom,c),e=this.contains(a.right,a.bottom,c),f=this.contains(a.left,a.top,c),a=this.contains(a.right,a.top,c);return b?d||e||f||a:d&&e&&f&&a},determineQuadrant:function(a){var b="",c=this.getCenterLonLat(),b=b+(a.lat<c.lat?"b":"t");return b+=a.lon<c.lon?"l":"r"},transform:function(a,b){this.centerLonLat= null;var c=OpenLayers.Projection.transform({x:this.left,y:this.bottom},a,b),d=OpenLayers.Projection.transform({x:this.right,y:this.bottom},a,b),e=OpenLayers.Projection.transform({x:this.left,y:this.top},a,b),f=OpenLayers.Projection.transform({x:this.right,y:this.top},a,b);this.left=Math.min(c.x,e.x);this.bottom=Math.min(c.y,d.y);this.right=Math.max(d.x,f.x);this.top=Math.max(e.y,f.y);return this},wrapDateLine:function(a,b){var b=b||{},c=b.leftTolerance||0,d=b.rightTolerance||0,e=this.clone();if(a){for(var f= a.getWidth();e.left<a.left&&e.right-d<=a.left;)e=e.add(f,0);for(;e.left+c>=a.right&&e.right>a.right;)e=e.add(-f,0);c=e.left+c;c<a.right&&(c>a.left&&e.right-d>a.right)&&(e=e.add(-f,0))}return e},CLASS_NAME:"OpenLayers.Bounds"});OpenLayers.Bounds.fromString=function(a,b){var c=a.split(",");return OpenLayers.Bounds.fromArray(c,b)};OpenLayers.Bounds.fromArray=function(a,b){return!0===b?new OpenLayers.Bounds(a[1],a[0],a[3],a[2]):new OpenLayers.Bounds(a[0],a[1],a[2],a[3])}; OpenLayers.Bounds.fromSize=function(a){return new OpenLayers.Bounds(0,a.h,a.w,0)};OpenLayers.Bounds.oppositeQuadrant=function(a){var b;b=""+("t"==a.charAt(0)?"b":"t");return b+="l"==a.charAt(1)?"r":"l"};OpenLayers.Element={visible:function(a){return"none"!=OpenLayers.Util.getElement(a).style.display},toggle:function(){for(var a=0,b=arguments.length;a<b;a++){var c=OpenLayers.Util.getElement(arguments[a]),d=OpenLayers.Element.visible(c)?"none":"";c.style.display=d}},remove:function(a){a=OpenLayers.Util.getElement(a);a.parentNode.removeChild(a)},getHeight:function(a){a=OpenLayers.Util.getElement(a);return a.offsetHeight},hasClass:function(a,b){var c=a.className;return!!c&&RegExp("(^|\\s)"+b+"(\\s|$)").test(c)}, addClass:function(a,b){OpenLayers.Element.hasClass(a,b)||(a.className+=(a.className?" ":"")+b);return a},removeClass:function(a,b){var c=a.className;c&&(a.className=OpenLayers.String.trim(c.replace(RegExp("(^|\\s+)"+b+"(\\s+|$)")," ")));return a},toggleClass:function(a,b){OpenLayers.Element.hasClass(a,b)?OpenLayers.Element.removeClass(a,b):OpenLayers.Element.addClass(a,b);return a},getStyle:function(a,b){var a=OpenLayers.Util.getElement(a),c=null;if(a&&a.style){c=a.style[OpenLayers.String.camelize(b)]; c||(document.defaultView&&document.defaultView.getComputedStyle?c=(c=document.defaultView.getComputedStyle(a,null))?c.getPropertyValue(b):null:a.currentStyle&&(c=a.currentStyle[OpenLayers.String.camelize(b)]));var d=["left","top","right","bottom"];window.opera&&(-1!=OpenLayers.Util.indexOf(d,b)&&"static"==OpenLayers.Element.getStyle(a,"position"))&&(c="auto")}return"auto"==c?null:c}};OpenLayers.LonLat=OpenLayers.Class({lon:0,lat:0,initialize:function(a,b){OpenLayers.Util.isArray(a)&&(b=a[1],a=a[0]);this.lon=OpenLayers.Util.toFloat(a);this.lat=OpenLayers.Util.toFloat(b)},toString:function(){return"lon="+this.lon+",lat="+this.lat},toShortString:function(){return this.lon+", "+this.lat},clone:function(){return new OpenLayers.LonLat(this.lon,this.lat)},add:function(a,b){if(null==a||null==b)throw new TypeError("LonLat.add cannot receive null values");return new OpenLayers.LonLat(this.lon+ OpenLayers.Util.toFloat(a),this.lat+OpenLayers.Util.toFloat(b))},equals:function(a){var b=!1;null!=a&&(b=this.lon==a.lon&&this.lat==a.lat||isNaN(this.lon)&&isNaN(this.lat)&&isNaN(a.lon)&&isNaN(a.lat));return b},transform:function(a,b){var c=OpenLayers.Projection.transform({x:this.lon,y:this.lat},a,b);this.lon=c.x;this.lat=c.y;return this},wrapDateLine:function(a){var b=this.clone();if(a){for(;b.lon<a.left;)b.lon+=a.getWidth();for(;b.lon>a.right;)b.lon-=a.getWidth()}return b},CLASS_NAME:"OpenLayers.LonLat"}); OpenLayers.LonLat.fromString=function(a){a=a.split(",");return new OpenLayers.LonLat(a[0],a[1])};OpenLayers.LonLat.fromArray=function(a){var b=OpenLayers.Util.isArray(a);return new OpenLayers.LonLat(b&&a[0],b&&a[1])};OpenLayers.Pixel=OpenLayers.Class({x:0,y:0,initialize:function(a,b){this.x=parseFloat(a);this.y=parseFloat(b)},toString:function(){return"x="+this.x+",y="+this.y},clone:function(){return new OpenLayers.Pixel(this.x,this.y)},equals:function(a){var b=!1;null!=a&&(b=this.x==a.x&&this.y==a.y||isNaN(this.x)&&isNaN(this.y)&&isNaN(a.x)&&isNaN(a.y));return b},distanceTo:function(a){return Math.sqrt(Math.pow(this.x-a.x,2)+Math.pow(this.y-a.y,2))},add:function(a,b){if(null==a||null==b)throw new TypeError("Pixel.add cannot receive null values"); return new OpenLayers.Pixel(this.x+a,this.y+b)},offset:function(a){var b=this.clone();a&&(b=this.add(a.x,a.y));return b},CLASS_NAME:"OpenLayers.Pixel"});OpenLayers.Size=OpenLayers.Class({w:0,h:0,initialize:function(a,b){this.w=parseFloat(a);this.h=parseFloat(b)},toString:function(){return"w="+this.w+",h="+this.h},clone:function(){return new OpenLayers.Size(this.w,this.h)},equals:function(a){var b=!1;null!=a&&(b=this.w==a.w&&this.h==a.h||isNaN(this.w)&&isNaN(this.h)&&isNaN(a.w)&&isNaN(a.h));return b},CLASS_NAME:"OpenLayers.Size"});OpenLayers.Console={log:function(){},debug:function(){},info:function(){},warn:function(){},error:function(){},userError:function(a){alert(a)},assert:function(){},dir:function(){},dirxml:function(){},trace:function(){},group:function(){},groupEnd:function(){},time:function(){},timeEnd:function(){},profile:function(){},profileEnd:function(){},count:function(){},CLASS_NAME:"OpenLayers.Console"}; (function(){for(var a=document.getElementsByTagName("script"),b=0,c=a.length;b<c;++b)if(-1!=a[b].src.indexOf("firebug.js")&&console){OpenLayers.Util.extend(OpenLayers.Console,console);break}})();OpenLayers.Lang={code:null,defaultCode:"en",getCode:function(){OpenLayers.Lang.code||OpenLayers.Lang.setCode();return OpenLayers.Lang.code},setCode:function(a){var b;a||(a="msie"==OpenLayers.BROWSER_NAME?navigator.userLanguage:navigator.language);a=a.split("-");a[0]=a[0].toLowerCase();"object"==typeof OpenLayers.Lang[a[0]]&&(b=a[0]);if(a[1]){var c=a[0]+"-"+a[1].toUpperCase();"object"==typeof OpenLayers.Lang[c]&&(b=c)}b||(OpenLayers.Console.warn("Failed to find OpenLayers.Lang."+a.join("-")+" dictionary, falling back to default language"), b=OpenLayers.Lang.defaultCode);OpenLayers.Lang.code=b},translate:function(a,b){var c=OpenLayers.Lang[OpenLayers.Lang.getCode()];(c=c&&c[a])||(c=a);b&&(c=OpenLayers.String.format(c,b));return c}};OpenLayers.i18n=OpenLayers.Lang.translate;OpenLayers.Util=OpenLayers.Util||{};OpenLayers.Util.getElement=function(){for(var a=[],b=0,c=arguments.length;b<c;b++){var d=arguments[b];"string"==typeof d&&(d=document.getElementById(d));if(1==arguments.length)return d;a.push(d)}return a};OpenLayers.Util.isElement=function(a){return!!(a&&1===a.nodeType)};OpenLayers.Util.isArray=function(a){return"[object Array]"===Object.prototype.toString.call(a)};"undefined"===typeof window.$&&(window.$=OpenLayers.Util.getElement); OpenLayers.Util.removeItem=function(a,b){for(var c=a.length-1;c>=0;c--)a[c]==b&&a.splice(c,1);return a};OpenLayers.Util.indexOf=function(a,b){if(typeof a.indexOf=="function")return a.indexOf(b);for(var c=0,d=a.length;c<d;c++)if(a[c]==b)return c;return-1}; OpenLayers.Util.modifyDOMElement=function(a,b,c,d,e,f,g,h){if(b)a.id=b;if(c){a.style.left=c.x+"px";a.style.top=c.y+"px"}if(d){a.style.width=d.w+"px";a.style.height=d.h+"px"}if(e)a.style.position=e;if(f)a.style.border=f;if(g)a.style.overflow=g;if(parseFloat(h)>=0&&parseFloat(h)<1){a.style.filter="alpha(opacity="+h*100+")";a.style.opacity=h}else if(parseFloat(h)==1){a.style.filter="";a.style.opacity=""}}; OpenLayers.Util.createDiv=function(a,b,c,d,e,f,g,h){var i=document.createElement("div");if(d)i.style.backgroundImage="url("+d+")";a||(a=OpenLayers.Util.createUniqueID("OpenLayersDiv"));e||(e="absolute");OpenLayers.Util.modifyDOMElement(i,a,b,c,e,f,g,h);return i}; OpenLayers.Util.createImage=function(a,b,c,d,e,f,g,h){var i=document.createElement("img");a||(a=OpenLayers.Util.createUniqueID("OpenLayersDiv"));e||(e="relative");OpenLayers.Util.modifyDOMElement(i,a,b,c,e,f,null,g);if(h){i.style.display="none";b=function(){i.style.display="";OpenLayers.Event.stopObservingElement(i)};OpenLayers.Event.observe(i,"load",b);OpenLayers.Event.observe(i,"error",b)}i.style.alt=a;i.galleryImg="no";if(d)i.src=d;return i};OpenLayers.IMAGE_RELOAD_ATTEMPTS=0; OpenLayers.Util.alphaHackNeeded=null;OpenLayers.Util.alphaHack=function(){if(OpenLayers.Util.alphaHackNeeded==null){var a=navigator.appVersion.split("MSIE"),a=parseFloat(a[1]),b=false;try{b=!!document.body.filters}catch(c){}OpenLayers.Util.alphaHackNeeded=b&&a>=5.5&&a<7}return OpenLayers.Util.alphaHackNeeded}; OpenLayers.Util.modifyAlphaImageDiv=function(a,b,c,d,e,f,g,h,i){OpenLayers.Util.modifyDOMElement(a,b,c,d,f,null,null,i);b=a.childNodes[0];if(e)b.src=e;OpenLayers.Util.modifyDOMElement(b,a.id+"_innerImage",null,d,"relative",g);if(OpenLayers.Util.alphaHack()){if(a.style.display!="none")a.style.display="inline-block";h==null&&(h="scale");a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+b.src+"', sizingMethod='"+h+"')";if(parseFloat(a.style.opacity)>=0&&parseFloat(a.style.opacity)< 1)a.style.filter=a.style.filter+(" alpha(opacity="+a.style.opacity*100+")");b.style.filter="alpha(opacity=0)"}};OpenLayers.Util.createAlphaImageDiv=function(a,b,c,d,e,f,g,h,i){var j=OpenLayers.Util.createDiv(),i=OpenLayers.Util.createImage(null,null,null,null,null,null,null,i);i.className="olAlphaImg";j.appendChild(i);OpenLayers.Util.modifyAlphaImageDiv(j,a,b,c,d,e,f,g,h);return j};OpenLayers.Util.upperCaseObject=function(a){var b={},c;for(c in a)b[c.toUpperCase()]=a[c];return b}; OpenLayers.Util.applyDefaults=function(a,b){var a=a||{},c=typeof window.Event=="function"&&b instanceof window.Event,d;for(d in b)if(a[d]===void 0||!c&&b.hasOwnProperty&&b.hasOwnProperty(d)&&!a.hasOwnProperty(d))a[d]=b[d];if(!c&&b&&b.hasOwnProperty&&b.hasOwnProperty("toString")&&!a.hasOwnProperty("toString"))a.toString=b.toString;return a}; OpenLayers.Util.getParameterString=function(a){var b=[],c;for(c in a){var d=a[c];if(d!=null&&typeof d!="function"){if(typeof d=="object"&&d.constructor==Array){for(var e=[],f,g=0,h=d.length;g<h;g++){f=d[g];e.push(encodeURIComponent(f===null||f===void 0?"":f))}d=e.join(",")}else d=encodeURIComponent(d);b.push(encodeURIComponent(c)+"="+d)}}return b.join("&")};OpenLayers.Util.urlAppend=function(a,b){var c=a;if(b)var d=(a+" ").split(/[?&]/),c=c+(d.pop()===" "?b:d.length?"&"+b:"?"+b);return c}; OpenLayers.Util.getImagesLocation=function(){return OpenLayers.ImgPath||OpenLayers._getScriptLocation()+"img/"};OpenLayers.Util.getImageLocation=function(a){return OpenLayers.Util.getImagesLocation()+a};OpenLayers.Util.Try=function(){for(var a=null,b=0,c=arguments.length;b<c;b++){var d=arguments[b];try{a=d();break}catch(e){}}return a}; OpenLayers.Util.getXmlNodeValue=function(a){var b=null;OpenLayers.Util.Try(function(){b=a.text;if(!b)b=a.textContent;if(!b)b=a.firstChild.nodeValue},function(){b=a.textContent});return b};OpenLayers.Util.mouseLeft=function(a,b){for(var c=a.relatedTarget?a.relatedTarget:a.toElement;c!=b&&c!=null;)c=c.parentNode;return c!=b};OpenLayers.Util.DEFAULT_PRECISION=14; OpenLayers.Util.toFloat=function(a,b){if(b==null)b=OpenLayers.Util.DEFAULT_PRECISION;typeof a!=="number"&&(a=parseFloat(a));return b===0?a:parseFloat(a.toPrecision(b))};OpenLayers.Util.rad=function(a){return a*Math.PI/180};OpenLayers.Util.deg=function(a){return a*180/Math.PI};OpenLayers.Util.VincentyConstants={a:6378137,b:6356752.3142,f:1/298.257223563}; OpenLayers.Util.distVincenty=function(a,b){for(var c=OpenLayers.Util.VincentyConstants,d=c.a,e=c.b,c=c.f,f=OpenLayers.Util.rad(b.lon-a.lon),g=Math.atan((1-c)*Math.tan(OpenLayers.Util.rad(a.lat))),h=Math.atan((1-c)*Math.tan(OpenLayers.Util.rad(b.lat))),i=Math.sin(g),g=Math.cos(g),j=Math.sin(h),h=Math.cos(h),k=f,l=2*Math.PI,m=20;Math.abs(k-l)>1.0E-12&&--m>0;){var n=Math.sin(k),o=Math.cos(k),p=Math.sqrt(h*n*h*n+(g*j-i*h*o)*(g*j-i*h*o));if(p==0)return 0;var o=i*j+g*h*o,q=Math.atan2(p,o),r=Math.asin(g* h*n/p),s=Math.cos(r)*Math.cos(r),n=o-2*i*j/s,t=c/16*s*(4+c*(4-3*s)),l=k,k=f+(1-t)*c*Math.sin(r)*(q+t*p*(n+t*o*(-1+2*n*n)))}if(m==0)return NaN;d=s*(d*d-e*e)/(e*e);c=d/1024*(256+d*(-128+d*(74-47*d)));return(e*(1+d/16384*(4096+d*(-768+d*(320-175*d))))*(q-c*p*(n+c/4*(o*(-1+2*n*n)-c/6*n*(-3+4*p*p)*(-3+4*n*n))))).toFixed(3)/1E3}; OpenLayers.Util.destinationVincenty=function(a,b,c){for(var d=OpenLayers.Util,e=d.VincentyConstants,f=e.a,g=e.b,h=e.f,e=a.lon,a=a.lat,i=d.rad(b),b=Math.sin(i),i=Math.cos(i),a=(1-h)*Math.tan(d.rad(a)),j=1/Math.sqrt(1+a*a),k=a*j,l=Math.atan2(a,i),a=j*b,m=1-a*a,f=m*(f*f-g*g)/(g*g),n=1+f/16384*(4096+f*(-768+f*(320-175*f))),o=f/1024*(256+f*(-128+f*(74-47*f))),f=c/(g*n),p=2*Math.PI;Math.abs(f-p)>1.0E-12;)var q=Math.cos(2*l+f),r=Math.sin(f),s=Math.cos(f),t=o*r*(q+o/4*(s*(-1+2*q*q)-o/6*q*(-3+4*r*r)*(-3+4* q*q))),p=f,f=c/(g*n)+t;c=k*r-j*s*i;g=Math.atan2(k*s+j*r*i,(1-h)*Math.sqrt(a*a+c*c));b=Math.atan2(r*b,j*s-k*r*i);i=h/16*m*(4+h*(4-3*m));q=b-(1-i)*h*a*(f+i*r*(q+i*s*(-1+2*q*q)));Math.atan2(a,-c);return new OpenLayers.LonLat(e+d.deg(q),d.deg(g))}; OpenLayers.Util.getParameters=function(a){var a=a===null||a===void 0?window.location.href:a,b="";if(OpenLayers.String.contains(a,"?"))var b=a.indexOf("?")+1,c=OpenLayers.String.contains(a,"#")?a.indexOf("#"):a.length,b=a.substring(b,c);for(var a={},b=b.split(/[&;]/),c=0,d=b.length;c<d;++c){var e=b[c].split("=");if(e[0]){var f=e[0];try{f=decodeURIComponent(f)}catch(g){f=unescape(f)}e=(e[1]||"").replace(/\+/g," ");try{e=decodeURIComponent(e)}catch(h){e=unescape(e)}e=e.split(",");e.length==1&&(e=e[0]); a[f]=e}}return a};OpenLayers.Util.lastSeqID=0;OpenLayers.Util.createUniqueID=function(a){a==null&&(a="id_");OpenLayers.Util.lastSeqID=OpenLayers.Util.lastSeqID+1;return a+OpenLayers.Util.lastSeqID};OpenLayers.INCHES_PER_UNIT={inches:1,ft:12,mi:63360,m:39.3701,km:39370.1,dd:4374754,yd:36};OpenLayers.INCHES_PER_UNIT["in"]=OpenLayers.INCHES_PER_UNIT.inches;OpenLayers.INCHES_PER_UNIT.degrees=OpenLayers.INCHES_PER_UNIT.dd;OpenLayers.INCHES_PER_UNIT.nmi=1852*OpenLayers.INCHES_PER_UNIT.m; OpenLayers.METERS_PER_INCH=0.0254000508001016; OpenLayers.Util.extend(OpenLayers.INCHES_PER_UNIT,{Inch:OpenLayers.INCHES_PER_UNIT.inches,Meter:1/OpenLayers.METERS_PER_INCH,Foot:0.3048006096012192/OpenLayers.METERS_PER_INCH,IFoot:0.3048/OpenLayers.METERS_PER_INCH,ClarkeFoot:0.3047972651151/OpenLayers.METERS_PER_INCH,SearsFoot:0.30479947153867626/OpenLayers.METERS_PER_INCH,GoldCoastFoot:0.3047997101815088/OpenLayers.METERS_PER_INCH,IInch:0.0254/OpenLayers.METERS_PER_INCH,MicroInch:2.54E-5/OpenLayers.METERS_PER_INCH,Mil:2.54E-8/OpenLayers.METERS_PER_INCH, Centimeter:0.01/OpenLayers.METERS_PER_INCH,Kilometer:1E3/OpenLayers.METERS_PER_INCH,Yard:0.9144018288036576/OpenLayers.METERS_PER_INCH,SearsYard:0.914398414616029/OpenLayers.METERS_PER_INCH,IndianYard:0.9143985307444408/OpenLayers.METERS_PER_INCH,IndianYd37:0.91439523/OpenLayers.METERS_PER_INCH,IndianYd62:0.9143988/OpenLayers.METERS_PER_INCH,IndianYd75:0.9143985/OpenLayers.METERS_PER_INCH,IndianFoot:0.30479951/OpenLayers.METERS_PER_INCH,IndianFt37:0.30479841/OpenLayers.METERS_PER_INCH,IndianFt62:0.3047996/ OpenLayers.METERS_PER_INCH,IndianFt75:0.3047995/OpenLayers.METERS_PER_INCH,Mile:1609.3472186944373/OpenLayers.METERS_PER_INCH,IYard:0.9144/OpenLayers.METERS_PER_INCH,IMile:1609.344/OpenLayers.METERS_PER_INCH,NautM:1852/OpenLayers.METERS_PER_INCH,"Lat-66":110943.31648893273/OpenLayers.METERS_PER_INCH,"Lat-83":110946.25736872235/OpenLayers.METERS_PER_INCH,Decimeter:0.1/OpenLayers.METERS_PER_INCH,Millimeter:0.001/OpenLayers.METERS_PER_INCH,Dekameter:10/OpenLayers.METERS_PER_INCH,Decameter:10/OpenLayers.METERS_PER_INCH, Hectometer:100/OpenLayers.METERS_PER_INCH,GermanMeter:1.0000135965/OpenLayers.METERS_PER_INCH,CaGrid:0.999738/OpenLayers.METERS_PER_INCH,ClarkeChain:20.1166194976/OpenLayers.METERS_PER_INCH,GunterChain:20.11684023368047/OpenLayers.METERS_PER_INCH,BenoitChain:20.116782494375872/OpenLayers.METERS_PER_INCH,SearsChain:20.11676512155/OpenLayers.METERS_PER_INCH,ClarkeLink:0.201166194976/OpenLayers.METERS_PER_INCH,GunterLink:0.2011684023368047/OpenLayers.METERS_PER_INCH,BenoitLink:0.20116782494375873/OpenLayers.METERS_PER_INCH, SearsLink:0.2011676512155/OpenLayers.METERS_PER_INCH,Rod:5.02921005842012/OpenLayers.METERS_PER_INCH,IntnlChain:20.1168/OpenLayers.METERS_PER_INCH,IntnlLink:0.201168/OpenLayers.METERS_PER_INCH,Perch:5.02921005842012/OpenLayers.METERS_PER_INCH,Pole:5.02921005842012/OpenLayers.METERS_PER_INCH,Furlong:201.1684023368046/OpenLayers.METERS_PER_INCH,Rood:3.778266898/OpenLayers.METERS_PER_INCH,CapeFoot:0.3047972615/OpenLayers.METERS_PER_INCH,Brealey:375/OpenLayers.METERS_PER_INCH,ModAmFt:0.304812252984506/ OpenLayers.METERS_PER_INCH,Fathom:1.8288/OpenLayers.METERS_PER_INCH,"NautM-UK":1853.184/OpenLayers.METERS_PER_INCH,"50kilometers":5E4/OpenLayers.METERS_PER_INCH,"150kilometers":15E4/OpenLayers.METERS_PER_INCH}); OpenLayers.Util.extend(OpenLayers.INCHES_PER_UNIT,{mm:OpenLayers.INCHES_PER_UNIT.Meter/1E3,cm:OpenLayers.INCHES_PER_UNIT.Meter/100,dm:100*OpenLayers.INCHES_PER_UNIT.Meter,km:1E3*OpenLayers.INCHES_PER_UNIT.Meter,kmi:OpenLayers.INCHES_PER_UNIT.nmi,fath:OpenLayers.INCHES_PER_UNIT.Fathom,ch:OpenLayers.INCHES_PER_UNIT.IntnlChain,link:OpenLayers.INCHES_PER_UNIT.IntnlLink,"us-in":OpenLayers.INCHES_PER_UNIT.inches,"us-ft":OpenLayers.INCHES_PER_UNIT.Foot,"us-yd":OpenLayers.INCHES_PER_UNIT.Yard,"us-ch":OpenLayers.INCHES_PER_UNIT.GunterChain, "us-mi":OpenLayers.INCHES_PER_UNIT.Mile,"ind-yd":OpenLayers.INCHES_PER_UNIT.IndianYd37,"ind-ft":OpenLayers.INCHES_PER_UNIT.IndianFt37,"ind-ch":20.11669506/OpenLayers.METERS_PER_INCH});OpenLayers.DOTS_PER_INCH=72;OpenLayers.Util.normalizeScale=function(a){return a>1?1/a:a};OpenLayers.Util.getResolutionFromScale=function(a,b){var c;if(a){b==null&&(b="degrees");c=1/(OpenLayers.Util.normalizeScale(a)*OpenLayers.INCHES_PER_UNIT[b]*OpenLayers.DOTS_PER_INCH)}return c}; OpenLayers.Util.getScaleFromResolution=function(a,b){b==null&&(b="degrees");return a*OpenLayers.INCHES_PER_UNIT[b]*OpenLayers.DOTS_PER_INCH}; OpenLayers.Util.pagePosition=function(a){var b=[0,0],c=OpenLayers.Util.getViewportElement();if(!a||a==window||a==c)return b;var d=OpenLayers.IS_GECKO&&document.getBoxObjectFor&&OpenLayers.Element.getStyle(a,"position")=="absolute"&&(a.style.top==""||a.style.left==""),e=null;if(a.getBoundingClientRect){a=a.getBoundingClientRect();e=c.scrollTop;b[0]=a.left+c.scrollLeft;b[1]=a.top+e}else if(document.getBoxObjectFor&&!d){a=document.getBoxObjectFor(a);c=document.getBoxObjectFor(c);b[0]=a.screenX-c.screenX; b[1]=a.screenY-c.screenY}else{b[0]=a.offsetLeft;b[1]=a.offsetTop;e=a.offsetParent;if(e!=a)for(;e;){b[0]=b[0]+e.offsetLeft;b[1]=b[1]+e.offsetTop;e=e.offsetParent}c=OpenLayers.BROWSER_NAME;if(c=="opera"||c=="safari"&&OpenLayers.Element.getStyle(a,"position")=="absolute")b[1]=b[1]-document.body.offsetTop;for(e=a.offsetParent;e&&e!=document.body;){b[0]=b[0]-e.scrollLeft;if(c!="opera"||e.tagName!="TR")b[1]=b[1]-e.scrollTop;e=e.offsetParent}}return b}; OpenLayers.Util.getViewportElement=function(){var a=arguments.callee.viewportElement;if(a==void 0){a=OpenLayers.BROWSER_NAME=="msie"&&document.compatMode!="CSS1Compat"?document.body:document.documentElement;arguments.callee.viewportElement=a}return a}; OpenLayers.Util.isEquivalentUrl=function(a,b,c){c=c||{};OpenLayers.Util.applyDefaults(c,{ignoreCase:true,ignorePort80:true,ignoreHash:true});var a=OpenLayers.Util.createUrlObject(a,c),b=OpenLayers.Util.createUrlObject(b,c),d;for(d in a)if(d!=="args"&&a[d]!=b[d])return false;for(d in a.args){if(a.args[d]!=b.args[d])return false;delete b.args[d]}for(d in b.args)return false;return true}; OpenLayers.Util.createUrlObject=function(a,b){b=b||{};if(!/^\w+:\/\//.test(a)){var c=window.location,d=c.port?":"+c.port:"",d=c.protocol+"//"+c.host.split(":").shift()+d;if(a.indexOf("/")===0)a=d+a;else{c=c.pathname.split("/");c.pop();a=d+c.join("/")+"/"+a}}b.ignoreCase&&(a=a.toLowerCase());c=document.createElement("a");c.href=a;d={};d.host=c.host.split(":").shift();d.protocol=c.protocol;d.port=b.ignorePort80?c.port=="80"||c.port=="0"?"":c.port:c.port==""||c.port=="0"?"80":c.port;d.hash=b.ignoreHash|| c.hash==="#"?"":c.hash;var e=c.search;if(!e){e=a.indexOf("?");e=e!=-1?a.substr(e):""}d.args=OpenLayers.Util.getParameters(e);d.pathname=c.pathname.charAt(0)=="/"?c.pathname:"/"+c.pathname;return d};OpenLayers.Util.removeTail=function(a){var b=null,b=a.indexOf("?"),c=a.indexOf("#");return b=b==-1?c!=-1?a.substr(0,c):a:c!=-1?a.substr(0,Math.min(b,c)):a.substr(0,b)};OpenLayers.IS_GECKO=function(){var a=navigator.userAgent.toLowerCase();return a.indexOf("webkit")==-1&&a.indexOf("gecko")!=-1}(); OpenLayers.CANVAS_SUPPORTED=function(){var a=document.createElement("canvas");return!(!a.getContext||!a.getContext("2d"))}();OpenLayers.BROWSER_NAME=function(){var a="",b=navigator.userAgent.toLowerCase();b.indexOf("opera")!=-1?a="opera":b.indexOf("msie")!=-1?a="msie":b.indexOf("safari")!=-1?a="safari":b.indexOf("mozilla")!=-1&&(a=b.indexOf("firefox")!=-1?"firefox":"mozilla");return a}();OpenLayers.Util.getBrowserName=function(){return OpenLayers.BROWSER_NAME}; OpenLayers.Util.getRenderedDimensions=function(a,b,c){var d,e,f=document.createElement("div");f.style.visibility="hidden";for(var g=c&&c.containerElement?c.containerElement:document.body,h=false,i=null,j=g;j&&j.tagName.toLowerCase()!="body";){var k=OpenLayers.Element.getStyle(j,"position");if(k=="absolute"){h=true;break}else if(k&&k!="static")break;j=j.parentNode}if(h&&(g.clientHeight===0||g.clientWidth===0)){i=document.createElement("div");i.style.visibility="hidden";i.style.position="absolute"; i.style.overflow="visible";i.style.width=document.body.clientWidth+"px";i.style.height=document.body.clientHeight+"px";i.appendChild(f)}f.style.position="absolute";if(b)if(b.w){d=b.w;f.style.width=d+"px"}else if(b.h){e=b.h;f.style.height=e+"px"}if(c&&c.displayClass)f.className=c.displayClass;b=document.createElement("div");b.innerHTML=a;b.style.overflow="visible";if(b.childNodes){a=0;for(c=b.childNodes.length;a<c;a++)if(b.childNodes[a].style)b.childNodes[a].style.overflow="visible"}f.appendChild(b); i?g.appendChild(i):g.appendChild(f);if(!d){d=parseInt(b.scrollWidth);f.style.width=d+"px"}e||(e=parseInt(b.scrollHeight));f.removeChild(b);if(i){i.removeChild(f);g.removeChild(i)}else g.removeChild(f);return new OpenLayers.Size(d,e)}; OpenLayers.Util.getScrollbarWidth=function(){var a=OpenLayers.Util._scrollbarWidth;if(a==null){var b=null,c=null,b=a=0,b=document.createElement("div");b.style.position="absolute";b.style.top="-1000px";b.style.left="-1000px";b.style.width="100px";b.style.height="50px";b.style.overflow="hidden";c=document.createElement("div");c.style.width="100%";c.style.height="200px";b.appendChild(c);document.body.appendChild(b);a=c.offsetWidth;b.style.overflow="scroll";b=c.offsetWidth;document.body.removeChild(document.body.lastChild); OpenLayers.Util._scrollbarWidth=a-b;a=OpenLayers.Util._scrollbarWidth}return a}; OpenLayers.Util.getFormattedLonLat=function(a,b,c){c||(c="dms");var a=(a+540)%360-180,d=Math.abs(a),e=Math.floor(d),f=d=(d-e)/(1/60),d=Math.floor(d),f=Math.round((f-d)/(1/60)*10),f=f/10;if(f>=60){f=f-60;d=d+1;if(d>=60){d=d-60;e=e+1}}e<10&&(e="0"+e);e=e+"\u00b0";if(c.indexOf("dm")>=0){d<10&&(d="0"+d);e=e+(d+"'");if(c.indexOf("dms")>=0){f<10&&(f="0"+f);e=e+(f+'"')}}return e=b=="lon"?e+(a<0?OpenLayers.i18n("W"):OpenLayers.i18n("E")):e+(a<0?OpenLayers.i18n("S"):OpenLayers.i18n("N"))};OpenLayers.Format=OpenLayers.Class({options:null,externalProjection:null,internalProjection:null,data:null,keepData:!1,initialize:function(a){OpenLayers.Util.extend(this,a);this.options=a},destroy:function(){},read:function(){throw Error("Read not implemented.");},write:function(){throw Error("Write not implemented.");},CLASS_NAME:"OpenLayers.Format"});OpenLayers.Format.CSWGetRecords=function(a){var a=OpenLayers.Util.applyDefaults(a,OpenLayers.Format.CSWGetRecords.DEFAULTS),b=OpenLayers.Format.CSWGetRecords["v"+a.version.replace(/\./g,"_")];if(!b)throw"Unsupported CSWGetRecords version: "+a.version;return new b(a)};OpenLayers.Format.CSWGetRecords.DEFAULTS={version:"2.0.2"};OpenLayers.Control=OpenLayers.Class({id:null,map:null,div:null,type:null,allowSelection:!1,displayClass:"",title:"",autoActivate:!1,active:null,handler:null,eventListeners:null,events:null,initialize:function(a){this.displayClass=this.CLASS_NAME.replace("OpenLayers.","ol").replace(/\./g,"");OpenLayers.Util.extend(this,a);this.events=new OpenLayers.Events(this);if(this.eventListeners instanceof Object)this.events.on(this.eventListeners);null==this.id&&(this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+ "_"))},destroy:function(){this.events&&(this.eventListeners&&this.events.un(this.eventListeners),this.events.destroy(),this.events=null);this.eventListeners=null;this.handler&&(this.handler.destroy(),this.handler=null);if(this.handlers){for(var a in this.handlers)this.handlers.hasOwnProperty(a)&&"function"==typeof this.handlers[a].destroy&&this.handlers[a].destroy();this.handlers=null}this.map&&(this.map.removeControl(this),this.map=null);this.div=null},setMap:function(a){this.map=a;this.handler&& this.handler.setMap(a)},draw:function(a){if(null==this.div&&(this.div=OpenLayers.Util.createDiv(this.id),this.div.className=this.displayClass,this.allowSelection||(this.div.className+=" olControlNoSelect",this.div.setAttribute("unselectable","on",0),this.div.onselectstart=OpenLayers.Function.False),""!=this.title))this.div.title=this.title;null!=a&&(this.position=a.clone());this.moveTo(this.position);return this.div},moveTo:function(a){null!=a&&null!=this.div&&(this.div.style.left=a.x+"px",this.div.style.top= a.y+"px")},activate:function(){if(this.active)return!1;this.handler&&this.handler.activate();this.active=!0;this.map&&OpenLayers.Element.addClass(this.map.viewPortDiv,this.displayClass.replace(/ /g,"")+"Active");this.events.triggerEvent("activate");return!0},deactivate:function(){return this.active?(this.handler&&this.handler.deactivate(),this.active=!1,this.map&&OpenLayers.Element.removeClass(this.map.viewPortDiv,this.displayClass.replace(/ /g,"")+"Active"),this.events.triggerEvent("deactivate"), !0):!1},CLASS_NAME:"OpenLayers.Control"});OpenLayers.Control.TYPE_BUTTON=1;OpenLayers.Control.TYPE_TOGGLE=2;OpenLayers.Control.TYPE_TOOL=3;OpenLayers.Event={observers:!1,KEY_SPACE:32,KEY_BACKSPACE:8,KEY_TAB:9,KEY_RETURN:13,KEY_ESC:27,KEY_LEFT:37,KEY_UP:38,KEY_RIGHT:39,KEY_DOWN:40,KEY_DELETE:46,element:function(a){return a.target||a.srcElement},isSingleTouch:function(a){return a.touches&&1==a.touches.length},isMultiTouch:function(a){return a.touches&&1<a.touches.length},isLeftClick:function(a){return a.which&&1==a.which||a.button&&1==a.button},isRightClick:function(a){return a.which&&3==a.which||a.button&&2==a.button},stop:function(a, b){b||(a.preventDefault?a.preventDefault():a.returnValue=!1);a.stopPropagation?a.stopPropagation():a.cancelBubble=!0},findElement:function(a,b){for(var c=OpenLayers.Event.element(a);c.parentNode&&(!c.tagName||c.tagName.toUpperCase()!=b.toUpperCase());)c=c.parentNode;return c},observe:function(a,b,c,d){a=OpenLayers.Util.getElement(a);d=d||!1;if("keypress"==b&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||a.attachEvent))b="keydown";this.observers||(this.observers={});if(!a._eventCacheID){var e= "eventCacheID_";a.id&&(e=a.id+"_"+e);a._eventCacheID=OpenLayers.Util.createUniqueID(e)}e=a._eventCacheID;this.observers[e]||(this.observers[e]=[]);this.observers[e].push({element:a,name:b,observer:c,useCapture:d});a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},stopObservingElement:function(a){a=OpenLayers.Util.getElement(a)._eventCacheID;this._removeElementObservers(OpenLayers.Event.observers[a])},_removeElementObservers:function(a){if(a)for(var b=a.length-1;0<= b;b--){var c=a[b];OpenLayers.Event.stopObserving.apply(this,[c.element,c.name,c.observer,c.useCapture])}},stopObserving:function(a,b,c,d){var d=d||!1,a=OpenLayers.Util.getElement(a),e=a._eventCacheID;if("keypress"==b&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||a.detachEvent))b="keydown";var f=!1,g=OpenLayers.Event.observers[e];if(g)for(var h=0;!f&&h<g.length;){var i=g[h];if(i.name==b&&i.observer==c&&i.useCapture==d){g.splice(h,1);0==g.length&&delete OpenLayers.Event.observers[e];f=!0; break}h++}f&&(a.removeEventListener?a.removeEventListener(b,c,d):a&&a.detachEvent&&a.detachEvent("on"+b,c));return f},unloadCache:function(){if(OpenLayers.Event&&OpenLayers.Event.observers){for(var a in OpenLayers.Event.observers)OpenLayers.Event._removeElementObservers.apply(this,[OpenLayers.Event.observers[a]]);OpenLayers.Event.observers=!1}},CLASS_NAME:"OpenLayers.Event"};OpenLayers.Event.observe(window,"unload",OpenLayers.Event.unloadCache,!1); OpenLayers.Events=OpenLayers.Class({BROWSER_EVENTS:"mouseover mouseout mousedown mouseup mousemove click dblclick rightclick dblrightclick resize focus blur touchstart touchmove touchend keydown".split(" "),listeners:null,object:null,element:null,eventHandler:null,fallThrough:null,includeXY:!1,extensions:null,extensionCount:null,clearMouseListener:null,initialize:function(a,b,c,d,e){OpenLayers.Util.extend(this,e);this.object=a;this.fallThrough=d;this.listeners={};this.extensions={};this.extensionCount= {};null!=b&&this.attachToElement(b)},destroy:function(){for(var a in this.extensions)"boolean"!==typeof this.extensions[a]&&this.extensions[a].destroy();this.extensions=null;this.element&&(OpenLayers.Event.stopObservingElement(this.element),this.element.hasScrollEvent&&OpenLayers.Event.stopObserving(window,"scroll",this.clearMouseListener));this.eventHandler=this.fallThrough=this.object=this.listeners=this.element=null},addEventType:function(){},attachToElement:function(a){this.element?OpenLayers.Event.stopObservingElement(this.element): (this.eventHandler=OpenLayers.Function.bindAsEventListener(this.handleBrowserEvent,this),this.clearMouseListener=OpenLayers.Function.bind(this.clearMouseCache,this));this.element=a;for(var b=0,c=this.BROWSER_EVENTS.length;b<c;b++)OpenLayers.Event.observe(a,this.BROWSER_EVENTS[b],this.eventHandler);OpenLayers.Event.observe(a,"dragstart",OpenLayers.Event.stop)},on:function(a){for(var b in a)"scope"!=b&&a.hasOwnProperty(b)&&this.register(b,a.scope,a[b])},register:function(a,b,c,d){a in OpenLayers.Events&& !this.extensions[a]&&(this.extensions[a]=new OpenLayers.Events[a](this));if(null!=c){null==b&&(b=this.object);var e=this.listeners[a];e||(e=[],this.listeners[a]=e,this.extensionCount[a]=0);b={obj:b,func:c};d?(e.splice(this.extensionCount[a],0,b),"object"===typeof d&&d.extension&&this.extensionCount[a]++):e.push(b)}},registerPriority:function(a,b,c){this.register(a,b,c,!0)},un:function(a){for(var b in a)"scope"!=b&&a.hasOwnProperty(b)&&this.unregister(b,a.scope,a[b])},unregister:function(a,b,c){null== b&&(b=this.object);a=this.listeners[a];if(null!=a)for(var d=0,e=a.length;d<e;d++)if(a[d].obj==b&&a[d].func==c){a.splice(d,1);break}},remove:function(a){null!=this.listeners[a]&&(this.listeners[a]=[])},triggerEvent:function(a,b){var c=this.listeners[a];if(c&&0!=c.length){null==b&&(b={});b.object=this.object;b.element=this.element;b.type||(b.type=a);for(var c=c.slice(),d,e=0,f=c.length;e<f&&!(d=c[e],d=d.func.apply(d.obj,[b]),void 0!=d&&!1==d);e++);this.fallThrough||OpenLayers.Event.stop(b,!0);return d}}, handleBrowserEvent:function(a){var b=a.type,c=this.listeners[b];if(c&&0!=c.length){if((c=a.touches)&&c[0]){for(var d=0,e=0,f=c.length,g,h=0;h<f;++h)g=c[h],d+=g.clientX,e+=g.clientY;a.clientX=d/f;a.clientY=e/f}this.includeXY&&(a.xy=this.getMousePosition(a));this.triggerEvent(b,a)}},clearMouseCache:function(){this.element.scrolls=null;this.element.lefttop=null;var a=document.body;if(a&&(!(0!=a.scrollTop||0!=a.scrollLeft)||!navigator.userAgent.match(/iPhone/i)))this.element.offsets=null},getMousePosition:function(a){this.includeXY? this.element.hasScrollEvent||(OpenLayers.Event.observe(window,"scroll",this.clearMouseListener),this.element.hasScrollEvent=!0):this.clearMouseCache();if(!this.element.scrolls){var b=OpenLayers.Util.getViewportElement();this.element.scrolls=[b.scrollLeft,b.scrollTop]}this.element.lefttop||(this.element.lefttop=[document.documentElement.clientLeft||0,document.documentElement.clientTop||0]);this.element.offsets||(this.element.offsets=OpenLayers.Util.pagePosition(this.element));return new OpenLayers.Pixel(a.clientX+ this.element.scrolls[0]-this.element.offsets[0]-this.element.lefttop[0],a.clientY+this.element.scrolls[1]-this.element.offsets[1]-this.element.lefttop[1])},CLASS_NAME:"OpenLayers.Events"});OpenLayers.Events.buttonclick=OpenLayers.Class({target:null,events:"mousedown mouseup click dblclick touchstart touchmove touchend keydown".split(" "),startRegEx:/^mousedown|touchstart$/,cancelRegEx:/^touchmove$/,completeRegEx:/^mouseup|touchend$/,initialize:function(a){this.target=a;for(a=this.events.length-1;0<=a;--a)this.target.register(this.events[a],this,this.buttonClick,{extension:!0})},destroy:function(){for(var a=this.events.length-1;0<=a;--a)this.target.unregister(this.events[a],this,this.buttonClick); delete this.target},getPressedButton:function(a){var b=3,c;do{if(OpenLayers.Element.hasClass(a,"olButton")){c=a;break}a=a.parentNode}while(0<--b&&a);return c},buttonClick:function(a){var b=!0,c=OpenLayers.Event.element(a);if(c&&(OpenLayers.Event.isLeftClick(a)||!~a.type.indexOf("mouse")))if(c=this.getPressedButton(c)){if("keydown"===a.type)switch(a.keyCode){case OpenLayers.Event.KEY_RETURN:case OpenLayers.Event.KEY_SPACE:this.target.triggerEvent("buttonclick",{buttonElement:c}),OpenLayers.Event.stop(a), b=!1}else this.startEvt&&(this.completeRegEx.test(a.type)&&(b=OpenLayers.Util.pagePosition(c),this.target.triggerEvent("buttonclick",{buttonElement:c,buttonXY:{x:this.startEvt.clientX-b[0],y:this.startEvt.clientY-b[1]}})),this.cancelRegEx.test(a.type)&&delete this.startEvt,OpenLayers.Event.stop(a),b=!1);this.startRegEx.test(a.type)&&(this.startEvt=a,OpenLayers.Event.stop(a),b=!1)}else delete this.startEvt;return b}});OpenLayers.Control.OverviewMap=OpenLayers.Class(OpenLayers.Control,{element:null,ovmap:null,size:{w:180,h:90},layers:null,minRectSize:15,minRectDisplayClass:"RectReplacement",minRatio:8,maxRatio:32,mapOptions:null,autoPan:!1,handlers:null,resolutionFactor:1,maximized:!1,initialize:function(a){this.layers=[];this.handlers={};OpenLayers.Control.prototype.initialize.apply(this,[a])},destroy:function(){this.mapDiv&&(this.handlers.click&&this.handlers.click.destroy(),this.handlers.drag&&this.handlers.drag.destroy(), this.ovmap&&this.ovmap.viewPortDiv.removeChild(this.extentRectangle),this.extentRectangle=null,this.rectEvents&&(this.rectEvents.destroy(),this.rectEvents=null),this.ovmap&&(this.ovmap.destroy(),this.ovmap=null),this.element.removeChild(this.mapDiv),this.mapDiv=null,this.div.removeChild(this.element),this.element=null,this.maximizeDiv&&(this.div.removeChild(this.maximizeDiv),this.maximizeDiv=null),this.minimizeDiv&&(this.div.removeChild(this.minimizeDiv),this.minimizeDiv=null),this.map.events.un({buttonclick:this.onButtonClick, moveend:this.update,changebaselayer:this.baseLayerDraw,scope:this}),OpenLayers.Control.prototype.destroy.apply(this,arguments))},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);if(0===this.layers.length)if(this.map.baseLayer)this.layers=[this.map.baseLayer.clone()];else return this.map.events.register("changebaselayer",this,this.baseLayerDraw),this.div;this.element=document.createElement("div");this.element.className=this.displayClass+"Element";this.element.style.display="none"; this.mapDiv=document.createElement("div");this.mapDiv.style.width=this.size.w+"px";this.mapDiv.style.height=this.size.h+"px";this.mapDiv.style.position="relative";this.mapDiv.style.overflow="hidden";this.mapDiv.id=OpenLayers.Util.createUniqueID("overviewMap");this.extentRectangle=document.createElement("div");this.extentRectangle.style.position="absolute";this.extentRectangle.style.zIndex=1E3;this.extentRectangle.className=this.displayClass+"ExtentRectangle";this.element.appendChild(this.mapDiv); this.div.appendChild(this.element);if(this.outsideViewport)this.element.style.display="";else{this.div.className+=" "+this.displayClass+"Container";var a=OpenLayers.Util.getImageLocation("layer-switcher-maximize.png");this.maximizeDiv=OpenLayers.Util.createAlphaImageDiv(this.displayClass+"MaximizeButton",null,null,a,"absolute");this.maximizeDiv.style.display="none";this.maximizeDiv.className=this.displayClass+"MaximizeButton olButton";this.div.appendChild(this.maximizeDiv);a=OpenLayers.Util.getImageLocation("layer-switcher-minimize.png"); this.minimizeDiv=OpenLayers.Util.createAlphaImageDiv("OpenLayers_Control_minimizeDiv",null,null,a,"absolute");this.minimizeDiv.style.display="none";this.minimizeDiv.className=this.displayClass+"MinimizeButton olButton";this.div.appendChild(this.minimizeDiv);this.minimizeControl()}this.map.getExtent()&&this.update();this.map.events.on({buttonclick:this.onButtonClick,moveend:this.update,scope:this});this.maximized&&this.maximizeControl();return this.div},baseLayerDraw:function(){this.draw();this.map.events.unregister("changebaselayer", this,this.baseLayerDraw)},rectDrag:function(a){var b=this.handlers.drag.last.x-a.x,c=this.handlers.drag.last.y-a.y;if(0!=b||0!=c){var d=this.rectPxBounds.top,e=this.rectPxBounds.left,a=Math.abs(this.rectPxBounds.getHeight()),f=this.rectPxBounds.getWidth(),c=Math.max(0,d-c),c=Math.min(c,this.ovmap.size.h-this.hComp-a),b=Math.max(0,e-b),b=Math.min(b,this.ovmap.size.w-this.wComp-f);this.setRectPxBounds(new OpenLayers.Bounds(b,c+a,b+f,c))}},mapDivClick:function(a){var b=this.rectPxBounds.getCenterPixel(), c=a.xy.x-b.x,d=a.xy.y-b.y,e=this.rectPxBounds.top,f=this.rectPxBounds.left,a=Math.abs(this.rectPxBounds.getHeight()),b=this.rectPxBounds.getWidth(),d=Math.max(0,e+d),d=Math.min(d,this.ovmap.size.h-a),c=Math.max(0,f+c),c=Math.min(c,this.ovmap.size.w-b);this.setRectPxBounds(new OpenLayers.Bounds(c,d+a,c+b,d));this.updateMapToRect()},onButtonClick:function(a){a.buttonElement===this.minimizeDiv?this.minimizeControl():a.buttonElement===this.maximizeDiv&&this.maximizeControl()},maximizeControl:function(a){this.element.style.display= "";this.showToggle(!1);null!=a&&OpenLayers.Event.stop(a)},minimizeControl:function(a){this.element.style.display="none";this.showToggle(!0);null!=a&&OpenLayers.Event.stop(a)},showToggle:function(a){this.maximizeDiv.style.display=a?"":"none";this.minimizeDiv.style.display=a?"none":""},update:function(){null==this.ovmap&&this.createMap();(this.autoPan||!this.isSuitableOverview())&&this.updateOverview();this.updateRectToMap()},isSuitableOverview:function(){var a=this.map.getExtent(),b=this.map.maxExtent, a=new OpenLayers.Bounds(Math.max(a.left,b.left),Math.max(a.bottom,b.bottom),Math.min(a.right,b.right),Math.min(a.top,b.top));this.ovmap.getProjection()!=this.map.getProjection()&&(a=a.transform(this.map.getProjectionObject(),this.ovmap.getProjectionObject()));b=this.ovmap.getResolution()/this.map.getResolution();return b>this.minRatio&&b<=this.maxRatio&&this.ovmap.getExtent().containsBounds(a)},updateOverview:function(){var a=this.map.getResolution(),b=this.ovmap.getResolution(),c=b/a;c>this.maxRatio? b=this.minRatio*a:c<=this.minRatio&&(b=this.maxRatio*a);this.ovmap.getProjection()!=this.map.getProjection()?(a=this.map.center.clone(),a.transform(this.map.getProjectionObject(),this.ovmap.getProjectionObject())):a=this.map.center;this.ovmap.setCenter(a,this.ovmap.getZoomForResolution(b*this.resolutionFactor));this.updateRectToMap()},createMap:function(){var a=OpenLayers.Util.extend({controls:[],maxResolution:"auto",fallThrough:!1},this.mapOptions);this.ovmap=new OpenLayers.Map(this.mapDiv,a);this.ovmap.viewPortDiv.appendChild(this.extentRectangle); OpenLayers.Event.stopObserving(window,"unload",this.ovmap.unloadDestroy);this.ovmap.addLayers(this.layers);this.ovmap.zoomToMaxExtent();this.wComp=(this.wComp=parseInt(OpenLayers.Element.getStyle(this.extentRectangle,"border-left-width"))+parseInt(OpenLayers.Element.getStyle(this.extentRectangle,"border-right-width")))?this.wComp:2;this.hComp=(this.hComp=parseInt(OpenLayers.Element.getStyle(this.extentRectangle,"border-top-width"))+parseInt(OpenLayers.Element.getStyle(this.extentRectangle,"border-bottom-width")))? this.hComp:2;this.handlers.drag=new OpenLayers.Handler.Drag(this,{move:this.rectDrag,done:this.updateMapToRect},{map:this.ovmap});this.handlers.click=new OpenLayers.Handler.Click(this,{click:this.mapDivClick},{single:!0,"double":!1,stopSingle:!0,stopDouble:!0,pixelTolerance:1,map:this.ovmap});this.handlers.click.activate();this.rectEvents=new OpenLayers.Events(this,this.extentRectangle,null,!0);this.rectEvents.register("mouseover",this,function(){!this.handlers.drag.active&&!this.map.dragging&&this.handlers.drag.activate()}); this.rectEvents.register("mouseout",this,function(){this.handlers.drag.dragging||this.handlers.drag.deactivate()});if(this.ovmap.getProjection()!=this.map.getProjection()){var a=this.map.getProjectionObject().getUnits()||this.map.units||this.map.baseLayer.units,b=this.ovmap.getProjectionObject().getUnits()||this.ovmap.units||this.ovmap.baseLayer.units;this.resolutionFactor=a&&b?OpenLayers.INCHES_PER_UNIT[a]/OpenLayers.INCHES_PER_UNIT[b]:1}},updateRectToMap:function(){var a=this.getRectBoundsFromMapBounds(this.ovmap.getProjection()!= this.map.getProjection()?this.map.getExtent().transform(this.map.getProjectionObject(),this.ovmap.getProjectionObject()):this.map.getExtent());a&&this.setRectPxBounds(a)},updateMapToRect:function(){var a=this.getMapBoundsFromRectBounds(this.rectPxBounds);this.ovmap.getProjection()!=this.map.getProjection()&&(a=a.transform(this.ovmap.getProjectionObject(),this.map.getProjectionObject()));this.map.panTo(a.getCenterLonLat())},setRectPxBounds:function(a){var b=Math.max(a.top,0),c=Math.max(a.left,0),d= Math.min(a.top+Math.abs(a.getHeight()),this.ovmap.size.h-this.hComp),a=Math.min(a.left+a.getWidth(),this.ovmap.size.w-this.wComp),e=Math.max(a-c,0),f=Math.max(d-b,0);e<this.minRectSize||f<this.minRectSize?(this.extentRectangle.className=this.displayClass+this.minRectDisplayClass,e=c+e/2-this.minRectSize/2,this.extentRectangle.style.top=Math.round(b+f/2-this.minRectSize/2)+"px",this.extentRectangle.style.left=Math.round(e)+"px",this.extentRectangle.style.height=this.minRectSize+"px",this.extentRectangle.style.width= this.minRectSize+"px"):(this.extentRectangle.className=this.displayClass+"ExtentRectangle",this.extentRectangle.style.top=Math.round(b)+"px",this.extentRectangle.style.left=Math.round(c)+"px",this.extentRectangle.style.height=Math.round(f)+"px",this.extentRectangle.style.width=Math.round(e)+"px");this.rectPxBounds=new OpenLayers.Bounds(Math.round(c),Math.round(d),Math.round(a),Math.round(b))},getRectBoundsFromMapBounds:function(a){var b=this.getOverviewPxFromLonLat({lon:a.left,lat:a.bottom}),a=this.getOverviewPxFromLonLat({lon:a.right, lat:a.top}),c=null;b&&a&&(c=new OpenLayers.Bounds(b.x,b.y,a.x,a.y));return c},getMapBoundsFromRectBounds:function(a){var b=this.getLonLatFromOverviewPx({x:a.left,y:a.bottom}),a=this.getLonLatFromOverviewPx({x:a.right,y:a.top});return new OpenLayers.Bounds(b.lon,b.lat,a.lon,a.lat)},getLonLatFromOverviewPx:function(a){var b=this.ovmap.size,c=this.ovmap.getResolution(),d=this.ovmap.getExtent().getCenterLonLat();return{lon:d.lon+(a.x-b.w/2)*c,lat:d.lat-(a.y-b.h/2)*c}},getOverviewPxFromLonLat:function(a){var b= this.ovmap.getResolution(),c=this.ovmap.getExtent();if(c)return{x:Math.round(1/b*(a.lon-c.left)),y:Math.round(1/b*(c.top-a.lat))}},CLASS_NAME:"OpenLayers.Control.OverviewMap"});OpenLayers.Animation=function(a){var b=!(!a.requestAnimationFrame&&!a.webkitRequestAnimationFrame&&!a.mozRequestAnimationFrame&&!a.oRequestAnimationFrame&&!a.msRequestAnimationFrame),c=function(){var b=a.requestAnimationFrame||a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame||a.msRequestAnimationFrame||function(b){a.setTimeout(b,16)};return function(c,d){b.apply(a,[c,d])}}(),d=0,e={};return{isNative:b,requestFrame:c,start:function(a,b,h){var b=0<b?b:Number.POSITIVE_INFINITY, i=++d,j=+new Date;e[i]=function(){e[i]&&+new Date-j<=b?(a(),e[i]&&c(e[i],h)):delete e[i]};c(e[i],h);return i},stop:function(a){delete e[a]}}}(window);OpenLayers.Tween=OpenLayers.Class({easing:null,begin:null,finish:null,duration:null,callbacks:null,time:null,animationId:null,playing:!1,initialize:function(a){this.easing=a?a:OpenLayers.Easing.Expo.easeOut},start:function(a,b,c,d){this.playing=!0;this.begin=a;this.finish=b;this.duration=c;this.callbacks=d.callbacks;this.time=0;OpenLayers.Animation.stop(this.animationId);this.animationId=null;this.callbacks&&this.callbacks.start&&this.callbacks.start.call(this,this.begin);this.animationId=OpenLayers.Animation.start(OpenLayers.Function.bind(this.play, this))},stop:function(){this.playing&&(this.callbacks&&this.callbacks.done&&this.callbacks.done.call(this,this.finish),OpenLayers.Animation.stop(this.animationId),this.animationId=null,this.playing=!1)},play:function(){var a={},b;for(b in this.begin){var c=this.begin[b],d=this.finish[b];if(null==c||null==d||isNaN(c)||isNaN(d))throw new TypeError("invalid value for Tween");a[b]=this.easing.apply(this,[this.time,c,d-c,this.duration])}this.time++;this.callbacks&&this.callbacks.eachStep&&this.callbacks.eachStep.call(this, a);this.time>this.duration&&this.stop()},CLASS_NAME:"OpenLayers.Tween"});OpenLayers.Easing={CLASS_NAME:"OpenLayers.Easing"};OpenLayers.Easing.Linear={easeIn:function(a,b,c,d){return c*a/d+b},easeOut:function(a,b,c,d){return c*a/d+b},easeInOut:function(a,b,c,d){return c*a/d+b},CLASS_NAME:"OpenLayers.Easing.Linear"}; OpenLayers.Easing.Expo={easeIn:function(a,b,c,d){return 0==a?b:c*Math.pow(2,10*(a/d-1))+b},easeOut:function(a,b,c,d){return a==d?b+c:c*(-Math.pow(2,-10*a/d)+1)+b},easeInOut:function(a,b,c,d){return 0==a?b:a==d?b+c:1>(a/=d/2)?c/2*Math.pow(2,10*(a-1))+b:c/2*(-Math.pow(2,-10*--a)+2)+b},CLASS_NAME:"OpenLayers.Easing.Expo"}; OpenLayers.Easing.Quad={easeIn:function(a,b,c,d){return c*(a/=d)*a+b},easeOut:function(a,b,c,d){return-c*(a/=d)*(a-2)+b},easeInOut:function(a,b,c,d){return 1>(a/=d/2)?c/2*a*a+b:-c/2*(--a*(a-2)-1)+b},CLASS_NAME:"OpenLayers.Easing.Quad"};OpenLayers.Projection=OpenLayers.Class({proj:null,projCode:null,titleRegEx:/\+title=[^\+]*/,initialize:function(a,b){OpenLayers.Util.extend(this,b);this.projCode=a;window.Proj4js&&(this.proj=new Proj4js.Proj(a))},getCode:function(){return this.proj?this.proj.srsCode:this.projCode},getUnits:function(){return this.proj?this.proj.units:null},toString:function(){return this.getCode()},equals:function(a){var b=!1;a&&(a instanceof OpenLayers.Projection||(a=new OpenLayers.Projection(a)),window.Proj4js&& this.proj.defData&&a.proj.defData?b=this.proj.defData.replace(this.titleRegEx,"")==a.proj.defData.replace(this.titleRegEx,""):a.getCode&&(b=this.getCode(),a=a.getCode(),b=b==a||!!OpenLayers.Projection.transforms[b]&&OpenLayers.Projection.transforms[b][a]===OpenLayers.Projection.nullTransform));return b},destroy:function(){delete this.proj;delete this.projCode},CLASS_NAME:"OpenLayers.Projection"});OpenLayers.Projection.transforms={}; OpenLayers.Projection.defaults={"EPSG:4326":{units:"degrees",maxExtent:[-180,-90,180,90],yx:!0},"CRS:84":{units:"degrees",maxExtent:[-180,-90,180,90]},"EPSG:900913":{units:"m",maxExtent:[-2.003750834E7,-2.003750834E7,2.003750834E7,2.003750834E7]}}; OpenLayers.Projection.addTransform=function(a,b,c){if(c===OpenLayers.Projection.nullTransform){var d=OpenLayers.Projection.defaults[a];d&&!OpenLayers.Projection.defaults[b]&&(OpenLayers.Projection.defaults[b]=d)}OpenLayers.Projection.transforms[a]||(OpenLayers.Projection.transforms[a]={});OpenLayers.Projection.transforms[a][b]=c}; OpenLayers.Projection.transform=function(a,b,c){if(b&&c)if(b instanceof OpenLayers.Projection||(b=new OpenLayers.Projection(b)),c instanceof OpenLayers.Projection||(c=new OpenLayers.Projection(c)),b.proj&&c.proj)a=Proj4js.transform(b.proj,c.proj,a);else{var b=b.getCode(),c=c.getCode(),d=OpenLayers.Projection.transforms;if(d[b]&&d[b][c])d[b][c](a)}return a};OpenLayers.Projection.nullTransform=function(a){return a}; (function(){function a(a){a.x=180*a.x/d;a.y=180/Math.PI*(2*Math.atan(Math.exp(a.y/d*Math.PI))-Math.PI/2);return a}function b(a){a.x=a.x*d/180;a.y=Math.log(Math.tan((90+a.y)*Math.PI/360))/Math.PI*d;return a}function c(c,d){var e=OpenLayers.Projection.addTransform,f=OpenLayers.Projection.nullTransform,g,m,n,o,p;g=0;for(m=d.length;g<m;++g){n=d[g];e(c,n,b);e(n,c,a);for(p=g+1;p<m;++p)o=d[p],e(n,o,f),e(o,n,f)}}var d=2.003750834E7,e=["EPSG:900913","EPSG:3857","EPSG:102113","EPSG:102100"],f=["CRS:84","urn:ogc:def:crs:EPSG:6.6:4326", "EPSG:4326"],g;for(g=e.length-1;0<=g;--g)c(e[g],f);for(g=f.length-1;0<=g;--g)c(f[g],e)})();OpenLayers.Map=OpenLayers.Class({Z_INDEX_BASE:{BaseLayer:100,Overlay:325,Feature:725,Popup:750,Control:1E3},id:null,fractionalZoom:!1,events:null,allOverlays:!1,div:null,dragging:!1,size:null,viewPortDiv:null,layerContainerOrigin:null,layerContainerDiv:null,layers:null,controls:null,popups:null,baseLayer:null,center:null,resolution:null,zoom:0,panRatio:1.5,options:null,tileSize:null,projection:"EPSG:4326",units:null,resolutions:null,maxResolution:null,minResolution:null,maxScale:null,minScale:null, maxExtent:null,minExtent:null,restrictedExtent:null,numZoomLevels:16,theme:null,displayProjection:null,fallThrough:!0,panTween:null,eventListeners:null,panMethod:OpenLayers.Easing.Expo.easeOut,panDuration:50,paddingForPopups:null,minPx:null,maxPx:null,initialize:function(a,b){1===arguments.length&&"object"===typeof a&&(a=(b=a)&&b.div);this.tileSize=new OpenLayers.Size(OpenLayers.Map.TILE_WIDTH,OpenLayers.Map.TILE_HEIGHT);this.paddingForPopups=new OpenLayers.Bounds(15,15,15,15);this.theme=OpenLayers._getScriptLocation()+ "theme/default/style.css";this.options=OpenLayers.Util.extend({},b);OpenLayers.Util.extend(this,b);OpenLayers.Util.applyDefaults(this,OpenLayers.Projection.defaults[this.projection instanceof OpenLayers.Projection?this.projection.projCode:this.projection]);this.maxExtent&&!(this.maxExtent instanceof OpenLayers.Bounds)&&(this.maxExtent=new OpenLayers.Bounds(this.maxExtent));this.minExtent&&!(this.minExtent instanceof OpenLayers.Bounds)&&(this.minExtent=new OpenLayers.Bounds(this.minExtent));this.restrictedExtent&& !(this.restrictedExtent instanceof OpenLayers.Bounds)&&(this.restrictedExtent=new OpenLayers.Bounds(this.restrictedExtent));this.center&&!(this.center instanceof OpenLayers.LonLat)&&(this.center=new OpenLayers.LonLat(this.center));this.layers=[];this.id=OpenLayers.Util.createUniqueID("OpenLayers.Map_");this.div=OpenLayers.Util.getElement(a);this.div||(this.div=document.createElement("div"),this.div.style.height="1px",this.div.style.width="1px");OpenLayers.Element.addClass(this.div,"olMap");var c= this.id+"_OpenLayers_ViewPort";this.viewPortDiv=OpenLayers.Util.createDiv(c,null,null,null,"relative",null,"hidden");this.viewPortDiv.style.width="100%";this.viewPortDiv.style.height="100%";this.viewPortDiv.className="olMapViewport";this.div.appendChild(this.viewPortDiv);this.events=new OpenLayers.Events(this,this.viewPortDiv,null,this.fallThrough,{includeXY:!0});c=this.id+"_OpenLayers_Container";this.layerContainerDiv=OpenLayers.Util.createDiv(c);this.layerContainerDiv.style.width="100px";this.layerContainerDiv.style.height= "100px";this.layerContainerDiv.style.zIndex=this.Z_INDEX_BASE.Popup-1;this.viewPortDiv.appendChild(this.layerContainerDiv);this.updateSize();if(this.eventListeners instanceof Object)this.events.on(this.eventListeners);9>parseFloat(navigator.appVersion.split("MSIE")[1])?this.events.register("resize",this,this.updateSize):(this.updateSizeDestroy=OpenLayers.Function.bind(this.updateSize,this),OpenLayers.Event.observe(window,"resize",this.updateSizeDestroy));if(this.theme){for(var c=!0,d=document.getElementsByTagName("link"), e=0,f=d.length;e<f;++e)if(OpenLayers.Util.isEquivalentUrl(d.item(e).href,this.theme)){c=!1;break}c&&(c=document.createElement("link"),c.setAttribute("rel","stylesheet"),c.setAttribute("type","text/css"),c.setAttribute("href",this.theme),document.getElementsByTagName("head")[0].appendChild(c))}null==this.controls&&(this.controls=[],null!=OpenLayers.Control&&(OpenLayers.Control.Navigation?this.controls.push(new OpenLayers.Control.Navigation):OpenLayers.Control.TouchNavigation&&this.controls.push(new OpenLayers.Control.TouchNavigation), OpenLayers.Control.Zoom?this.controls.push(new OpenLayers.Control.Zoom):OpenLayers.Control.PanZoom&&this.controls.push(new OpenLayers.Control.PanZoom),OpenLayers.Control.ArgParser&&this.controls.push(new OpenLayers.Control.ArgParser),OpenLayers.Control.Attribution&&this.controls.push(new OpenLayers.Control.Attribution)));e=0;for(f=this.controls.length;e<f;e++)this.addControlToMap(this.controls[e]);this.popups=[];this.unloadDestroy=OpenLayers.Function.bind(this.destroy,this);OpenLayers.Event.observe(window, "unload",this.unloadDestroy);b&&b.layers&&(delete this.center,this.addLayers(b.layers),b.center&&!this.getCenter()&&this.setCenter(b.center,b.zoom))},getViewport:function(){return this.viewPortDiv},render:function(a){this.div=OpenLayers.Util.getElement(a);OpenLayers.Element.addClass(this.div,"olMap");this.viewPortDiv.parentNode.removeChild(this.viewPortDiv);this.div.appendChild(this.viewPortDiv);this.updateSize()},unloadDestroy:null,updateSizeDestroy:null,destroy:function(){if(!this.unloadDestroy)return!1; this.panTween&&(this.panTween.stop(),this.panTween=null);OpenLayers.Event.stopObserving(window,"unload",this.unloadDestroy);this.unloadDestroy=null;this.updateSizeDestroy?OpenLayers.Event.stopObserving(window,"resize",this.updateSizeDestroy):this.events.unregister("resize",this,this.updateSize);this.paddingForPopups=null;if(null!=this.controls){for(var a=this.controls.length-1;0<=a;--a)this.controls[a].destroy();this.controls=null}if(null!=this.layers){for(a=this.layers.length-1;0<=a;--a)this.layers[a].destroy(!1); this.layers=null}this.viewPortDiv&&this.div.removeChild(this.viewPortDiv);this.viewPortDiv=null;this.eventListeners&&(this.events.un(this.eventListeners),this.eventListeners=null);this.events.destroy();this.options=this.events=null},setOptions:function(a){var b=this.minPx&&a.restrictedExtent!=this.restrictedExtent;OpenLayers.Util.extend(this,a);b&&this.moveTo(this.getCachedCenter(),this.zoom,{forceZoomChange:!0})},getTileSize:function(){return this.tileSize},getBy:function(a,b,c){var d="function"== typeof c.test;return OpenLayers.Array.filter(this[a],function(a){return a[b]==c||d&&c.test(a[b])})},getLayersBy:function(a,b){return this.getBy("layers",a,b)},getLayersByName:function(a){return this.getLayersBy("name",a)},getLayersByClass:function(a){return this.getLayersBy("CLASS_NAME",a)},getControlsBy:function(a,b){return this.getBy("controls",a,b)},getControlsByClass:function(a){return this.getControlsBy("CLASS_NAME",a)},getLayer:function(a){for(var b=null,c=0,d=this.layers.length;c<d;c++){var e= this.layers[c];if(e.id==a){b=e;break}}return b},setLayerZIndex:function(a,b){a.setZIndex(this.Z_INDEX_BASE[a.isBaseLayer?"BaseLayer":"Overlay"]+5*b)},resetLayersZIndex:function(){for(var a=0,b=this.layers.length;a<b;a++)this.setLayerZIndex(this.layers[a],a)},addLayer:function(a){for(var b=0,c=this.layers.length;b<c;b++)if(this.layers[b]==a)return!1;if(!1===this.events.triggerEvent("preaddlayer",{layer:a}))return!1;this.allOverlays&&(a.isBaseLayer=!1);a.div.className="olLayerDiv";a.div.style.overflow= "";this.setLayerZIndex(a,this.layers.length);a.isFixed?this.viewPortDiv.appendChild(a.div):this.layerContainerDiv.appendChild(a.div);this.layers.push(a);a.setMap(this);a.isBaseLayer||this.allOverlays&&!this.baseLayer?null==this.baseLayer?this.setBaseLayer(a):a.setVisibility(!1):a.redraw();this.events.triggerEvent("addlayer",{layer:a});a.events.triggerEvent("added",{map:this,layer:a});a.afterAdd();return!0},addLayers:function(a){for(var b=0,c=a.length;b<c;b++)this.addLayer(a[b])},removeLayer:function(a, b){if(!1!==this.events.triggerEvent("preremovelayer",{layer:a})){null==b&&(b=!0);a.isFixed?this.viewPortDiv.removeChild(a.div):this.layerContainerDiv.removeChild(a.div);OpenLayers.Util.removeItem(this.layers,a);a.removeMap(this);a.map=null;if(this.baseLayer==a&&(this.baseLayer=null,b))for(var c=0,d=this.layers.length;c<d;c++){var e=this.layers[c];if(e.isBaseLayer||this.allOverlays){this.setBaseLayer(e);break}}this.resetLayersZIndex();this.events.triggerEvent("removelayer",{layer:a});a.events.triggerEvent("removed", {map:this,layer:a})}},getNumLayers:function(){return this.layers.length},getLayerIndex:function(a){return OpenLayers.Util.indexOf(this.layers,a)},setLayerIndex:function(a,b){var c=this.getLayerIndex(a);0>b?b=0:b>this.layers.length&&(b=this.layers.length);if(c!=b){this.layers.splice(c,1);this.layers.splice(b,0,a);for(var c=0,d=this.layers.length;c<d;c++)this.setLayerZIndex(this.layers[c],c);this.events.triggerEvent("changelayer",{layer:a,property:"order"});this.allOverlays&&(0===b?this.setBaseLayer(a): this.baseLayer!==this.layers[0]&&this.setBaseLayer(this.layers[0]))}},raiseLayer:function(a,b){var c=this.getLayerIndex(a)+b;this.setLayerIndex(a,c)},setBaseLayer:function(a){if(a!=this.baseLayer&&-1!=OpenLayers.Util.indexOf(this.layers,a)){var b=this.getCachedCenter(),c=OpenLayers.Util.getResolutionFromScale(this.getScale(),a.units);null!=this.baseLayer&&!this.allOverlays&&this.baseLayer.setVisibility(!1);this.baseLayer=a;if(!this.allOverlays||this.baseLayer.visibility)this.baseLayer.setVisibility(!0), !1===this.baseLayer.inRange&&this.baseLayer.redraw();null!=b&&(a=this.getZoomForResolution(c||this.resolution,!0),this.setCenter(b,a,!1,!0));this.events.triggerEvent("changebaselayer",{layer:this.baseLayer})}},addControl:function(a,b){this.controls.push(a);this.addControlToMap(a,b)},addControls:function(a,b){for(var c=1===arguments.length?[]:b,d=0,e=a.length;d<e;d++)this.addControl(a[d],c[d]?c[d]:null)},addControlToMap:function(a,b){a.outsideViewport=null!=a.div;this.displayProjection&&!a.displayProjection&& (a.displayProjection=this.displayProjection);a.setMap(this);var c=a.draw(b);c&&!a.outsideViewport&&(c.style.zIndex=this.Z_INDEX_BASE.Control+this.controls.length,this.viewPortDiv.appendChild(c));a.autoActivate&&a.activate()},getControl:function(a){for(var b=null,c=0,d=this.controls.length;c<d;c++){var e=this.controls[c];if(e.id==a){b=e;break}}return b},removeControl:function(a){a&&a==this.getControl(a.id)&&(a.div&&a.div.parentNode==this.viewPortDiv&&this.viewPortDiv.removeChild(a.div),OpenLayers.Util.removeItem(this.controls, a))},addPopup:function(a,b){if(b)for(var c=this.popups.length-1;0<=c;--c)this.removePopup(this.popups[c]);a.map=this;this.popups.push(a);if(c=a.draw())c.style.zIndex=this.Z_INDEX_BASE.Popup+this.popups.length,this.layerContainerDiv.appendChild(c)},removePopup:function(a){OpenLayers.Util.removeItem(this.popups,a);if(a.div)try{this.layerContainerDiv.removeChild(a.div)}catch(b){}a.map=null},getSize:function(){var a=null;null!=this.size&&(a=this.size.clone());return a},updateSize:function(){var a=this.getCurrentSize(); if(a&&!isNaN(a.h)&&!isNaN(a.w)){this.events.clearMouseCache();var b=this.getSize();null==b&&(this.size=b=a);if(!a.equals(b)){this.size=a;a=0;for(b=this.layers.length;a<b;a++)this.layers[a].onMapResize();a=this.getCachedCenter();null!=this.baseLayer&&null!=a&&(b=this.getZoom(),this.zoom=null,this.setCenter(a,b))}}},getCurrentSize:function(){var a=new OpenLayers.Size(this.div.clientWidth,this.div.clientHeight);if(0==a.w&&0==a.h||isNaN(a.w)&&isNaN(a.h))a.w=this.div.offsetWidth,a.h=this.div.offsetHeight; if(0==a.w&&0==a.h||isNaN(a.w)&&isNaN(a.h))a.w=parseInt(this.div.style.width),a.h=parseInt(this.div.style.height);return a},calculateBounds:function(a,b){var c=null;null==a&&(a=this.getCachedCenter());null==b&&(b=this.getResolution());if(null!=a&&null!=b)var c=this.size.w*b/2,d=this.size.h*b/2,c=new OpenLayers.Bounds(a.lon-c,a.lat-d,a.lon+c,a.lat+d);return c},getCenter:function(){var a=null,b=this.getCachedCenter();b&&(a=b.clone());return a},getCachedCenter:function(){!this.center&&this.size&&(this.center= this.getLonLatFromViewPortPx({x:this.size.w/2,y:this.size.h/2}));return this.center},getZoom:function(){return this.zoom},pan:function(a,b,c){c=OpenLayers.Util.applyDefaults(c,{animate:!0,dragging:!1});if(c.dragging)(0!=a||0!=b)&&this.moveByPx(a,b);else{var d=this.getViewPortPxFromLonLat(this.getCachedCenter()),a=d.add(a,b);if(this.dragging||!a.equals(d))d=this.getLonLatFromViewPortPx(a),c.animate?this.panTo(d):(this.moveTo(d),this.dragging&&(this.dragging=!1,this.events.triggerEvent("moveend")))}}, panTo:function(a){if(this.panMethod&&this.getExtent().scale(this.panRatio).containsLonLat(a)){this.panTween||(this.panTween=new OpenLayers.Tween(this.panMethod));var b=this.getCachedCenter();if(!a.equals(b)){var b=this.getPixelFromLonLat(b),c=this.getPixelFromLonLat(a),d=0,e=0;this.panTween.start({x:0,y:0},{x:c.x-b.x,y:c.y-b.y},this.panDuration,{callbacks:{eachStep:OpenLayers.Function.bind(function(a){this.moveByPx(a.x-d,a.y-e);d=Math.round(a.x);e=Math.round(a.y)},this),done:OpenLayers.Function.bind(function(){this.moveTo(a); this.dragging=false;this.events.triggerEvent("moveend")},this)}})}}else this.setCenter(a)},setCenter:function(a,b,c,d){this.panTween&&this.panTween.stop();this.moveTo(a,b,{dragging:c,forceZoomChange:d})},moveByPx:function(a,b){var c=this.size.w/2,d=this.size.h/2,e=c+a,f=d+b,g=this.baseLayer.wrapDateLine,h=0,i=0;this.restrictedExtent&&(h=c,i=d,g=!1);a=g||e<=this.maxPx.x-h&&e>=this.minPx.x+h?Math.round(a):0;b=f<=this.maxPx.y-i&&f>=this.minPx.y+i?Math.round(b):0;if(a||b){this.dragging||(this.dragging= !0,this.events.triggerEvent("movestart"));this.center=null;a&&(this.layerContainerDiv.style.left=parseInt(this.layerContainerDiv.style.left)-a+"px",this.minPx.x-=a,this.maxPx.x-=a);b&&(this.layerContainerDiv.style.top=parseInt(this.layerContainerDiv.style.top)-b+"px",this.minPx.y-=b,this.maxPx.y-=b);d=0;for(e=this.layers.length;d<e;++d)if(c=this.layers[d],c.visibility&&(c===this.baseLayer||c.inRange))c.moveByPx(a,b),c.events.triggerEvent("move");this.events.triggerEvent("move")}},adjustZoom:function(a){var b= this.baseLayer.resolutions,c=this.getMaxExtent().getWidth()/this.size.w;if(this.getResolutionForZoom(a)>c)for(var d=a|0,e=b.length;d<e;++d)if(b[d]<=c){a=d;break}return a},moveTo:function(a,b,c){null!=a&&!(a instanceof OpenLayers.LonLat)&&(a=new OpenLayers.LonLat(a));c||(c={});null!=b&&(b=parseFloat(b),this.fractionalZoom||(b=Math.round(b)));if(this.baseLayer.wrapDateLine){var d=b,b=this.adjustZoom(b);b!==d&&(a=this.getCenter())}var d=c.dragging||this.dragging,e=c.forceZoomChange;!this.getCachedCenter()&& !this.isValidLonLat(a)&&(a=this.maxExtent.getCenterLonLat(),this.center=a.clone());if(null!=this.restrictedExtent){null==a&&(a=this.center);null==b&&(b=this.getZoom());var f=this.getResolutionForZoom(b),f=this.calculateBounds(a,f);if(!this.restrictedExtent.containsBounds(f)){var g=this.restrictedExtent.getCenterLonLat();f.getWidth()>this.restrictedExtent.getWidth()?a=new OpenLayers.LonLat(g.lon,a.lat):f.left<this.restrictedExtent.left?a=a.add(this.restrictedExtent.left-f.left,0):f.right>this.restrictedExtent.right&& (a=a.add(this.restrictedExtent.right-f.right,0));f.getHeight()>this.restrictedExtent.getHeight()?a=new OpenLayers.LonLat(a.lon,g.lat):f.bottom<this.restrictedExtent.bottom?a=a.add(0,this.restrictedExtent.bottom-f.bottom):f.top>this.restrictedExtent.top&&(a=a.add(0,this.restrictedExtent.top-f.top))}}e=e||this.isValidZoomLevel(b)&&b!=this.getZoom();f=this.isValidLonLat(a)&&!a.equals(this.center);if(e||f||d){d||this.events.triggerEvent("movestart");f&&(!e&&this.center&&this.centerLayerContainer(a),this.center= a.clone());a=e?this.getResolutionForZoom(b):this.getResolution();if(e||null==this.layerContainerOrigin){this.layerContainerOrigin=this.getCachedCenter();this.layerContainerDiv.style.left="0px";this.layerContainerDiv.style.top="0px";var f=this.getMaxExtent({restricted:!0}),h=f.getCenterLonLat(),g=this.center.lon-h.lon,h=h.lat-this.center.lat,i=Math.round(f.getWidth()/a),j=Math.round(f.getHeight()/a);this.minPx={x:(this.size.w-i)/2-g/a,y:(this.size.h-j)/2-h/a};this.maxPx={x:this.minPx.x+Math.round(f.getWidth()/ a),y:this.minPx.y+Math.round(f.getHeight()/a)}}e&&(this.zoom=b,this.resolution=a);a=this.getExtent();this.baseLayer.visibility&&(this.baseLayer.moveTo(a,e,c.dragging),c.dragging||this.baseLayer.events.triggerEvent("moveend",{zoomChanged:e}));a=this.baseLayer.getExtent();for(b=this.layers.length-1;0<=b;--b)if(f=this.layers[b],f!==this.baseLayer&&!f.isBaseLayer&&(g=f.calculateInRange(),f.inRange!=g&&((f.inRange=g)||f.display(!1),this.events.triggerEvent("changelayer",{layer:f,property:"visibility"})), g&&f.visibility))f.moveTo(a,e,c.dragging),c.dragging||f.events.triggerEvent("moveend",{zoomChanged:e});this.events.triggerEvent("move");d||this.events.triggerEvent("moveend");if(e){b=0;for(c=this.popups.length;b<c;b++)this.popups[b].updatePosition();this.events.triggerEvent("zoomend")}}},centerLayerContainer:function(a){var b=this.getViewPortPxFromLonLat(this.layerContainerOrigin),c=this.getViewPortPxFromLonLat(a);if(null!=b&&null!=c){var d=parseInt(this.layerContainerDiv.style.left),a=parseInt(this.layerContainerDiv.style.top), e=Math.round(b.x-c.x),b=Math.round(b.y-c.y);this.layerContainerDiv.style.left=e+"px";this.layerContainerDiv.style.top=b+"px";d-=e;a-=b;this.minPx.x-=d;this.maxPx.x-=d;this.minPx.y-=a;this.maxPx.y-=a}},isValidZoomLevel:function(a){return null!=a&&0<=a&&a<this.getNumZoomLevels()},isValidLonLat:function(a){var b=!1;null!=a&&(b=this.getMaxExtent(),b=b.containsLonLat(a,{worldBounds:this.baseLayer.wrapDateLine&&b}));return b},getProjection:function(){var a=this.getProjectionObject();return a?a.getCode(): null},getProjectionObject:function(){var a=null;null!=this.baseLayer&&(a=this.baseLayer.projection);return a},getMaxResolution:function(){var a=null;null!=this.baseLayer&&(a=this.baseLayer.maxResolution);return a},getMaxExtent:function(a){var b=null;a&&a.restricted&&this.restrictedExtent?b=this.restrictedExtent:null!=this.baseLayer&&(b=this.baseLayer.maxExtent);return b},getNumZoomLevels:function(){var a=null;null!=this.baseLayer&&(a=this.baseLayer.numZoomLevels);return a},getExtent:function(){var a= null;null!=this.baseLayer&&(a=this.baseLayer.getExtent());return a},getResolution:function(){var a=null;null!=this.baseLayer?a=this.baseLayer.getResolution():!0===this.allOverlays&&0<this.layers.length&&(a=this.layers[0].getResolution());return a},getUnits:function(){var a=null;null!=this.baseLayer&&(a=this.baseLayer.units);return a},getScale:function(){var a=null;null!=this.baseLayer&&(a=this.getResolution(),a=OpenLayers.Util.getScaleFromResolution(a,this.baseLayer.units));return a},getZoomForExtent:function(a, b){var c=null;null!=this.baseLayer&&(c=this.baseLayer.getZoomForExtent(a,b));return c},getResolutionForZoom:function(a){var b=null;this.baseLayer&&(b=this.baseLayer.getResolutionForZoom(a));return b},getZoomForResolution:function(a,b){var c=null;null!=this.baseLayer&&(c=this.baseLayer.getZoomForResolution(a,b));return c},zoomTo:function(a){this.isValidZoomLevel(a)&&this.setCenter(null,a)},zoomIn:function(){this.zoomTo(this.getZoom()+1)},zoomOut:function(){this.zoomTo(this.getZoom()-1)},zoomToExtent:function(a, b){a instanceof OpenLayers.Bounds||(a=new OpenLayers.Bounds(a));var c=a.getCenterLonLat();if(this.baseLayer.wrapDateLine){c=this.getMaxExtent();for(a=a.clone();a.right<a.left;)a.right+=c.getWidth();c=a.getCenterLonLat().wrapDateLine(c)}this.setCenter(c,this.getZoomForExtent(a,b))},zoomToMaxExtent:function(a){this.zoomToExtent(this.getMaxExtent({restricted:a?a.restricted:!0}))},zoomToScale:function(a,b){var c=OpenLayers.Util.getResolutionFromScale(a,this.baseLayer.units),d=this.size.w*c/2,c=this.size.h* c/2,e=this.getCachedCenter();this.zoomToExtent(new OpenLayers.Bounds(e.lon-d,e.lat-c,e.lon+d,e.lat+c),b)},getLonLatFromViewPortPx:function(a){var b=null;null!=this.baseLayer&&(b=this.baseLayer.getLonLatFromViewPortPx(a));return b},getViewPortPxFromLonLat:function(a){var b=null;null!=this.baseLayer&&(b=this.baseLayer.getViewPortPxFromLonLat(a));return b},getLonLatFromPixel:function(a){return this.getLonLatFromViewPortPx(a)},getPixelFromLonLat:function(a){a=this.getViewPortPxFromLonLat(a);a.x=Math.round(a.x); a.y=Math.round(a.y);return a},getGeodesicPixelSize:function(a){var b=a?this.getLonLatFromPixel(a):this.getCachedCenter()||new OpenLayers.LonLat(0,0),c=this.getResolution(),a=b.add(-c/2,0),d=b.add(c/2,0),e=b.add(0,-c/2),b=b.add(0,c/2),c=new OpenLayers.Projection("EPSG:4326"),f=this.getProjectionObject()||c;f.equals(c)||(a.transform(f,c),d.transform(f,c),e.transform(f,c),b.transform(f,c));return new OpenLayers.Size(OpenLayers.Util.distVincenty(a,d),OpenLayers.Util.distVincenty(e,b))},getViewPortPxFromLayerPx:function(a){var b= null;if(null!=a)var b=parseInt(this.layerContainerDiv.style.left),c=parseInt(this.layerContainerDiv.style.top),b=a.add(b,c);return b},getLayerPxFromViewPortPx:function(a){var b=null;if(null!=a){var b=-parseInt(this.layerContainerDiv.style.left),c=-parseInt(this.layerContainerDiv.style.top),b=a.add(b,c);if(isNaN(b.x)||isNaN(b.y))b=null}return b},getLonLatFromLayerPx:function(a){a=this.getViewPortPxFromLayerPx(a);return this.getLonLatFromViewPortPx(a)},getLayerPxFromLonLat:function(a){return this.getLayerPxFromViewPortPx(this.getPixelFromLonLat(a))}, CLASS_NAME:"OpenLayers.Map"});OpenLayers.Map.TILE_WIDTH=256;OpenLayers.Map.TILE_HEIGHT=256;OpenLayers.Layer=OpenLayers.Class({id:null,name:null,div:null,opacity:1,alwaysInRange:null,RESOLUTION_PROPERTIES:"scales resolutions maxScale minScale maxResolution minResolution numZoomLevels maxZoomLevel".split(" "),events:null,map:null,isBaseLayer:!1,alpha:!1,displayInLayerSwitcher:!0,visibility:!0,attribution:null,inRange:!1,imageSize:null,options:null,eventListeners:null,gutter:0,projection:null,units:null,scales:null,resolutions:null,maxExtent:null,minExtent:null,maxResolution:null,minResolution:null, numZoomLevels:null,minScale:null,maxScale:null,displayOutsideMaxExtent:!1,wrapDateLine:!1,metadata:null,initialize:function(a,b){this.metadata={};this.addOptions(b);this.name=a;if(null==this.id&&(this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_"),this.div=OpenLayers.Util.createDiv(this.id),this.div.style.width="100%",this.div.style.height="100%",this.div.dir="ltr",this.events=new OpenLayers.Events(this,this.div),this.eventListeners instanceof Object))this.events.on(this.eventListeners)}, destroy:function(a){null==a&&(a=!0);null!=this.map&&this.map.removeLayer(this,a);this.options=this.div=this.name=this.map=this.projection=null;this.events&&(this.eventListeners&&this.events.un(this.eventListeners),this.events.destroy());this.events=this.eventListeners=null},clone:function(a){null==a&&(a=new OpenLayers.Layer(this.name,this.getOptions()));OpenLayers.Util.applyDefaults(a,this);a.map=null;return a},getOptions:function(){var a={},b;for(b in this.options)a[b]=this[b];return a},setName:function(a){a!= this.name&&(this.name=a,null!=this.map&&this.map.events.triggerEvent("changelayer",{layer:this,property:"name"}))},addOptions:function(a,b){null==this.options&&(this.options={});if(a&&("string"==typeof a.projection&&(a.projection=new OpenLayers.Projection(a.projection)),a.projection&&OpenLayers.Util.applyDefaults(a,OpenLayers.Projection.defaults[a.projection.getCode()]),a.maxExtent&&!(a.maxExtent instanceof OpenLayers.Bounds)&&(a.maxExtent=new OpenLayers.Bounds(a.maxExtent)),a.minExtent&&!(a.minExtent instanceof OpenLayers.Bounds)))a.minExtent=new OpenLayers.Bounds(a.minExtent);OpenLayers.Util.extend(this.options,a);OpenLayers.Util.extend(this,a);this.projection&&this.projection.getUnits()&&(this.units=this.projection.getUnits());if(this.map){var c=this.map.getResolution(),d=this.RESOLUTION_PROPERTIES.concat(["projection","units","minExtent","maxExtent"]),e;for(e in a)if(a.hasOwnProperty(e)&&0<=OpenLayers.Util.indexOf(d,e)){this.initResolutions();b&&this.map.baseLayer===this&&(this.map.setCenter(this.map.getCenter(), this.map.getZoomForResolution(c),!1,!0),this.map.events.triggerEvent("changebaselayer",{layer:this}));break}}},onMapResize:function(){},redraw:function(){var a=!1;if(this.map){this.inRange=this.calculateInRange();var b=this.getExtent();b&&(this.inRange&&this.visibility)&&(this.moveTo(b,!0,!1),this.events.triggerEvent("moveend",{zoomChanged:!0}),a=!0)}return a},moveTo:function(){var a=this.visibility;this.isBaseLayer||(a=a&&this.inRange);this.display(a)},moveByPx:function(){},setMap:function(a){null== this.map&&(this.map=a,this.maxExtent=this.maxExtent||this.map.maxExtent,this.minExtent=this.minExtent||this.map.minExtent,this.projection=this.projection||this.map.projection,"string"==typeof this.projection&&(this.projection=new OpenLayers.Projection(this.projection)),this.units=this.projection.getUnits()||this.units||this.map.units,this.initResolutions(),this.isBaseLayer||(this.inRange=this.calculateInRange(),this.div.style.display=this.visibility&&this.inRange?"":"none"),this.setTileSize())},afterAdd:function(){}, removeMap:function(){},getImageSize:function(){return this.imageSize||this.tileSize},setTileSize:function(a){this.tileSize=a=a?a:this.tileSize?this.tileSize:this.map.getTileSize();this.gutter&&(this.imageSize=new OpenLayers.Size(a.w+2*this.gutter,a.h+2*this.gutter))},getVisibility:function(){return this.visibility},setVisibility:function(a){a!=this.visibility&&(this.visibility=a,this.display(a),this.redraw(),null!=this.map&&this.map.events.triggerEvent("changelayer",{layer:this,property:"visibility"}), this.events.triggerEvent("visibilitychanged"))},display:function(a){a!=("none"!=this.div.style.display)&&(this.div.style.display=a&&this.calculateInRange()?"block":"none")},calculateInRange:function(){var a=!1;this.alwaysInRange?a=!0:this.map&&(a=this.map.getResolution(),a=a>=this.minResolution&&a<=this.maxResolution);return a},setIsBaseLayer:function(a){a!=this.isBaseLayer&&(this.isBaseLayer=a,null!=this.map&&this.map.events.triggerEvent("changebaselayer",{layer:this}))},initResolutions:function(){var a, b,c,d={},e=!0;a=0;for(b=this.RESOLUTION_PROPERTIES.length;a<b;a++)c=this.RESOLUTION_PROPERTIES[a],d[c]=this.options[c],e&&this.options[c]&&(e=!1);null==this.alwaysInRange&&(this.alwaysInRange=e);null==d.resolutions&&(d.resolutions=this.resolutionsFromScales(d.scales));null==d.resolutions&&(d.resolutions=this.calculateResolutions(d));if(null==d.resolutions){a=0;for(b=this.RESOLUTION_PROPERTIES.length;a<b;a++)c=this.RESOLUTION_PROPERTIES[a],d[c]=null!=this.options[c]?this.options[c]:this.map[c];null== d.resolutions&&(d.resolutions=this.resolutionsFromScales(d.scales));null==d.resolutions&&(d.resolutions=this.calculateResolutions(d))}var f;this.options.maxResolution&&"auto"!==this.options.maxResolution&&(f=this.options.maxResolution);this.options.minScale&&(f=OpenLayers.Util.getResolutionFromScale(this.options.minScale,this.units));var g;this.options.minResolution&&"auto"!==this.options.minResolution&&(g=this.options.minResolution);this.options.maxScale&&(g=OpenLayers.Util.getResolutionFromScale(this.options.maxScale, this.units));d.resolutions&&(d.resolutions.sort(function(a,b){return b-a}),f||(f=d.resolutions[0]),g||(g=d.resolutions[d.resolutions.length-1]));if(this.resolutions=d.resolutions){b=this.resolutions.length;this.scales=Array(b);for(a=0;a<b;a++)this.scales[a]=OpenLayers.Util.getScaleFromResolution(this.resolutions[a],this.units);this.numZoomLevels=b}if(this.minResolution=g)this.maxScale=OpenLayers.Util.getScaleFromResolution(g,this.units);if(this.maxResolution=f)this.minScale=OpenLayers.Util.getScaleFromResolution(f, this.units)},resolutionsFromScales:function(a){if(null!=a){var b,c,d;d=a.length;b=Array(d);for(c=0;c<d;c++)b[c]=OpenLayers.Util.getResolutionFromScale(a[c],this.units);return b}},calculateResolutions:function(a){var b,c,d=a.maxResolution;null!=a.minScale?d=OpenLayers.Util.getResolutionFromScale(a.minScale,this.units):"auto"==d&&null!=this.maxExtent&&(b=this.map.getSize(),c=this.maxExtent.getWidth()/b.w,b=this.maxExtent.getHeight()/b.h,d=Math.max(c,b));c=a.minResolution;null!=a.maxScale?c=OpenLayers.Util.getResolutionFromScale(a.maxScale, this.units):"auto"==a.minResolution&&null!=this.minExtent&&(b=this.map.getSize(),c=this.minExtent.getWidth()/b.w,b=this.minExtent.getHeight()/b.h,c=Math.max(c,b));"number"!==typeof d&&("number"!==typeof c&&null!=this.maxExtent)&&(d=this.map.getTileSize(),d=Math.max(this.maxExtent.getWidth()/d.w,this.maxExtent.getHeight()/d.h));b=a.maxZoomLevel;a=a.numZoomLevels;"number"===typeof c&&"number"===typeof d&&void 0===a?a=Math.floor(Math.log(d/c)/Math.log(2))+1:void 0===a&&null!=b&&(a=b+1);if(!("number"!== typeof a||0>=a||"number"!==typeof d&&"number"!==typeof c)){b=Array(a);var e=2;"number"==typeof c&&"number"==typeof d&&(e=Math.pow(d/c,1/(a-1)));var f;if("number"===typeof d)for(f=0;f<a;f++)b[f]=d/Math.pow(e,f);else for(f=0;f<a;f++)b[a-1-f]=c*Math.pow(e,f);return b}},getResolution:function(){return this.getResolutionForZoom(this.map.getZoom())},getExtent:function(){return this.map.calculateBounds()},getZoomForExtent:function(a,b){var c=this.map.getSize();return this.getZoomForResolution(Math.max(a.getWidth()/ c.w,a.getHeight()/c.h),b)},getDataExtent:function(){},getResolutionForZoom:function(a){a=Math.max(0,Math.min(a,this.resolutions.length-1));if(this.map.fractionalZoom)var b=Math.floor(a),c=Math.ceil(a),a=this.resolutions[b]-(a-b)*(this.resolutions[b]-this.resolutions[c]);else a=this.resolutions[Math.round(a)];return a},getZoomForResolution:function(a,b){var c,d;if(this.map.fractionalZoom){var e=0,f=this.resolutions[e],g=this.resolutions[this.resolutions.length-1],h;c=0;for(d=this.resolutions.length;c< d;++c)if(h=this.resolutions[c],h>=a&&(f=h,e=c),h<=a){g=h;break}c=f-g;c=0<c?e+(f-a)/c:e}else{f=Number.POSITIVE_INFINITY;c=0;for(d=this.resolutions.length;c<d;c++)if(b){e=Math.abs(this.resolutions[c]-a);if(e>f)break;f=e}else if(this.resolutions[c]<a)break;c=Math.max(0,c-1)}return c},getLonLatFromViewPortPx:function(a){var b=null,c=this.map;if(null!=a&&c.minPx){var b=c.getResolution(),d=c.getMaxExtent({restricted:!0}),b=new OpenLayers.LonLat((a.x-c.minPx.x)*b+d.left,(c.minPx.y-a.y)*b+d.top);this.wrapDateLine&& (b=b.wrapDateLine(this.maxExtent))}return b},getViewPortPxFromLonLat:function(a,b){var c=null;null!=a&&(b=b||this.map.getResolution(),c=this.map.calculateBounds(null,b),c=new OpenLayers.Pixel(1/b*(a.lon-c.left),1/b*(c.top-a.lat)));return c},setOpacity:function(a){if(a!=this.opacity){this.opacity=a;for(var b=this.div.childNodes,c=0,d=b.length;c<d;++c){var e=b[c].firstChild||b[c],f=b[c].lastChild;f&&"iframe"===f.nodeName.toLowerCase()&&(e=f.parentNode);OpenLayers.Util.modifyDOMElement(e,null,null,null, null,null,null,a)}null!=this.map&&this.map.events.triggerEvent("changelayer",{layer:this,property:"opacity"})}},getZIndex:function(){return this.div.style.zIndex},setZIndex:function(a){this.div.style.zIndex=a},adjustBounds:function(a){if(this.gutter)var b=this.gutter*this.map.getResolution(),a=new OpenLayers.Bounds(a.left-b,a.bottom-b,a.right+b,a.top+b);this.wrapDateLine&&(b={rightTolerance:this.getResolution(),leftTolerance:this.getResolution()},a=a.wrapDateLine(this.maxExtent,b));return a},CLASS_NAME:"OpenLayers.Layer"});OpenLayers.Layer.SphericalMercator={getExtent:function(){var a=null;return a=this.sphericalMercator?this.map.calculateBounds():OpenLayers.Layer.FixedZoomLevels.prototype.getExtent.apply(this)},getLonLatFromViewPortPx:function(a){return OpenLayers.Layer.prototype.getLonLatFromViewPortPx.apply(this,arguments)},getViewPortPxFromLonLat:function(a){return OpenLayers.Layer.prototype.getViewPortPxFromLonLat.apply(this,arguments)},initMercatorParameters:function(){this.RESOLUTIONS=[];for(var a=0;a<=this.MAX_ZOOM_LEVEL;++a)this.RESOLUTIONS[a]= 156543.03390625/Math.pow(2,a);this.units="m";this.projection=this.projection||"EPSG:900913"},forwardMercator:function(){var a=new OpenLayers.Projection("EPSG:4326"),b=new OpenLayers.Projection("EPSG:900913");return function(c,d){var e=OpenLayers.Projection.transform({x:c,y:d},a,b);return new OpenLayers.LonLat(e.x,e.y)}}(),inverseMercator:function(){var a=new OpenLayers.Projection("EPSG:4326"),b=new OpenLayers.Projection("EPSG:900913");return function(c,d){var e=OpenLayers.Projection.transform({x:c, y:d},b,a);return new OpenLayers.LonLat(e.x,e.y)}}()};OpenLayers.Layer.EventPane=OpenLayers.Class(OpenLayers.Layer,{smoothDragPan:!0,isBaseLayer:!0,isFixed:!0,pane:null,mapObject:null,initialize:function(a,b){OpenLayers.Layer.prototype.initialize.apply(this,arguments);null==this.pane&&(this.pane=OpenLayers.Util.createDiv(this.div.id+"_EventPane"))},destroy:function(){this.pane=this.mapObject=null;OpenLayers.Layer.prototype.destroy.apply(this,arguments)},setMap:function(a){OpenLayers.Layer.prototype.setMap.apply(this,arguments);this.pane.style.zIndex= parseInt(this.div.style.zIndex)+1;this.pane.style.display=this.div.style.display;this.pane.style.width="100%";this.pane.style.height="100%";"msie"==OpenLayers.BROWSER_NAME&&(this.pane.style.background="url("+OpenLayers.Util.getImageLocation("blank.gif")+")");this.isFixed?this.map.viewPortDiv.appendChild(this.pane):this.map.layerContainerDiv.appendChild(this.pane);this.loadMapObject();null==this.mapObject&&this.loadWarningMessage()},removeMap:function(a){this.pane&&this.pane.parentNode&&this.pane.parentNode.removeChild(this.pane); OpenLayers.Layer.prototype.removeMap.apply(this,arguments)},loadWarningMessage:function(){this.div.style.backgroundColor="darkblue";var a=this.map.getSize(),b=Math.min(a.w,300),c=Math.min(a.h,200),b=new OpenLayers.Size(b,c),a=(new OpenLayers.Pixel(a.w/2,a.h/2)).add(-b.w/2,-b.h/2),a=OpenLayers.Util.createDiv(this.name+"_warning",a,b,null,null,null,"auto");a.style.padding="7px";a.style.backgroundColor="yellow";a.innerHTML=this.getWarningHTML();this.div.appendChild(a)},getWarningHTML:function(){return""}, display:function(a){OpenLayers.Layer.prototype.display.apply(this,arguments);this.pane.style.display=this.div.style.display},setZIndex:function(a){OpenLayers.Layer.prototype.setZIndex.apply(this,arguments);this.pane.style.zIndex=parseInt(this.div.style.zIndex)+1},moveByPx:function(a,b){OpenLayers.Layer.prototype.moveByPx.apply(this,arguments);this.dragPanMapObject?this.dragPanMapObject(a,-b):this.moveTo(this.map.getCachedCenter())},moveTo:function(a,b,c){OpenLayers.Layer.prototype.moveTo.apply(this, arguments);if(null!=this.mapObject){var d=this.map.getCenter(),e=this.map.getZoom();if(null!=d){var f=this.getOLLonLatFromMapObjectLonLat(this.getMapObjectCenter()),g=this.getOLZoomFromMapObjectZoom(this.getMapObjectZoom());if(!d.equals(f)||e!=g)!b&&f&&this.dragPanMapObject&&this.smoothDragPan?(e=this.map.getViewPortPxFromLonLat(f),d=this.map.getViewPortPxFromLonLat(d),this.dragPanMapObject(d.x-e.x,e.y-d.y)):(d=this.getMapObjectLonLatFromOLLonLat(d),e=this.getMapObjectZoomFromOLZoom(e),this.setMapObjectCenter(d, e,c))}}},getLonLatFromViewPortPx:function(a){var b=null;null!=this.mapObject&&null!=this.getMapObjectCenter()&&(b=this.getOLLonLatFromMapObjectLonLat(this.getMapObjectLonLatFromMapObjectPixel(this.getMapObjectPixelFromOLPixel(a))));return b},getViewPortPxFromLonLat:function(a){var b=null;null!=this.mapObject&&null!=this.getMapObjectCenter()&&(b=this.getOLPixelFromMapObjectPixel(this.getMapObjectPixelFromMapObjectLonLat(this.getMapObjectLonLatFromOLLonLat(a))));return b},getOLLonLatFromMapObjectLonLat:function(a){var b= null;null!=a&&(b=this.getLongitudeFromMapObjectLonLat(a),a=this.getLatitudeFromMapObjectLonLat(a),b=new OpenLayers.LonLat(b,a));return b},getMapObjectLonLatFromOLLonLat:function(a){var b=null;null!=a&&(b=this.getMapObjectLonLatFromLonLat(a.lon,a.lat));return b},getOLPixelFromMapObjectPixel:function(a){var b=null;null!=a&&(b=this.getXFromMapObjectPixel(a),a=this.getYFromMapObjectPixel(a),b=new OpenLayers.Pixel(b,a));return b},getMapObjectPixelFromOLPixel:function(a){var b=null;null!=a&&(b=this.getMapObjectPixelFromXY(a.x, a.y));return b},CLASS_NAME:"OpenLayers.Layer.EventPane"});OpenLayers.Layer.FixedZoomLevels=OpenLayers.Class({initialize:function(){},initResolutions:function(){for(var a=["minZoomLevel","maxZoomLevel","numZoomLevels"],b=0,c=a.length;b<c;b++){var d=a[b];this[d]=null!=this.options[d]?this.options[d]:this.map[d]}if(null==this.minZoomLevel||this.minZoomLevel<this.MIN_ZOOM_LEVEL)this.minZoomLevel=this.MIN_ZOOM_LEVEL;a=this.MAX_ZOOM_LEVEL-this.minZoomLevel+1;b=null==this.options.numZoomLevels&&null!=this.options.maxZoomLevel||null==this.numZoomLevels&&null!=this.maxZoomLevel? this.maxZoomLevel-this.minZoomLevel+1:this.numZoomLevels;this.numZoomLevels=null!=b?Math.min(b,a):a;this.maxZoomLevel=this.minZoomLevel+this.numZoomLevels-1;if(null!=this.RESOLUTIONS){a=0;this.resolutions=[];for(b=this.minZoomLevel;b<=this.maxZoomLevel;b++)this.resolutions[a++]=this.RESOLUTIONS[b];this.maxResolution=this.resolutions[0];this.minResolution=this.resolutions[this.resolutions.length-1]}},getResolution:function(){if(null!=this.resolutions)return OpenLayers.Layer.prototype.getResolution.apply(this, arguments);var a=null,b=this.map.getSize(),c=this.getExtent();null!=b&&null!=c&&(a=Math.max(c.getWidth()/b.w,c.getHeight()/b.h));return a},getExtent:function(){var a=this.map.getSize(),b=this.getLonLatFromViewPortPx({x:0,y:0}),a=this.getLonLatFromViewPortPx({x:a.w,y:a.h});return null!=b&&null!=a?new OpenLayers.Bounds(b.lon,a.lat,a.lon,b.lat):null},getZoomForResolution:function(a){return null!=this.resolutions?OpenLayers.Layer.prototype.getZoomForResolution.apply(this,arguments):this.getZoomForExtent(OpenLayers.Layer.prototype.getExtent.apply(this, []))},getOLZoomFromMapObjectZoom:function(a){var b=null;null!=a&&(b=a-this.minZoomLevel,this.map.baseLayer!==this&&(b=this.map.baseLayer.getZoomForResolution(this.getResolutionForZoom(b))));return b},getMapObjectZoomFromOLZoom:function(a){var b=null;null!=a&&(b=a+this.minZoomLevel,this.map.baseLayer!==this&&(b=this.getZoomForResolution(this.map.baseLayer.getResolutionForZoom(b))));return b},CLASS_NAME:"OpenLayers.Layer.FixedZoomLevels"});OpenLayers.Layer.Google=OpenLayers.Class(OpenLayers.Layer.EventPane,OpenLayers.Layer.FixedZoomLevels,{MIN_ZOOM_LEVEL:0,MAX_ZOOM_LEVEL:21,RESOLUTIONS:[1.40625,0.703125,0.3515625,0.17578125,0.087890625,0.0439453125,0.02197265625,0.010986328125,0.0054931640625,0.00274658203125,0.001373291015625,6.866455078125E-4,3.4332275390625E-4,1.71661376953125E-4,8.58306884765625E-5,4.291534423828125E-5,2.145767211914062E-5,1.072883605957031E-5,5.36441802978515E-6,2.68220901489257E-6,1.341104507446289E-6,6.705522537231445E-7], type:null,wrapDateLine:!0,sphericalMercator:!1,version:null,initialize:function(a,b){b=b||{};b.version||(b.version="function"===typeof GMap2?"2":"3");var c=OpenLayers.Layer.Google["v"+b.version.replace(/\./g,"_")];if(c)OpenLayers.Util.applyDefaults(b,c);else throw"Unsupported Google Maps API version: "+b.version;OpenLayers.Util.applyDefaults(b,c.DEFAULTS);b.maxExtent&&(b.maxExtent=b.maxExtent.clone());OpenLayers.Layer.EventPane.prototype.initialize.apply(this,[a,b]);OpenLayers.Layer.FixedZoomLevels.prototype.initialize.apply(this, [a,b]);this.sphericalMercator&&(OpenLayers.Util.extend(this,OpenLayers.Layer.SphericalMercator),this.initMercatorParameters())},clone:function(){return new OpenLayers.Layer.Google(this.name,this.getOptions())},setVisibility:function(a){var b=null==this.opacity?1:this.opacity;OpenLayers.Layer.EventPane.prototype.setVisibility.apply(this,arguments);this.setOpacity(b)},display:function(a){this._dragging||this.setGMapVisibility(a);OpenLayers.Layer.EventPane.prototype.display.apply(this,arguments)},moveTo:function(a, b,c){this._dragging=c;OpenLayers.Layer.EventPane.prototype.moveTo.apply(this,arguments);delete this._dragging},setOpacity:function(a){a!==this.opacity&&(null!=this.map&&this.map.events.triggerEvent("changelayer",{layer:this,property:"opacity"}),this.opacity=a);if(this.getVisibility()){var b=this.getMapContainer();OpenLayers.Util.modifyDOMElement(b,null,null,null,null,null,null,a)}},destroy:function(){if(this.map){this.setGMapVisibility(!1);var a=OpenLayers.Layer.Google.cache[this.map.id];a&&1>=a.count&& this.removeGMapElements()}OpenLayers.Layer.EventPane.prototype.destroy.apply(this,arguments)},removeGMapElements:function(){var a=OpenLayers.Layer.Google.cache[this.map.id];if(a){var b=this.mapObject&&this.getMapContainer();b&&b.parentNode&&b.parentNode.removeChild(b);(b=a.termsOfUse)&&b.parentNode&&b.parentNode.removeChild(b);(a=a.poweredBy)&&a.parentNode&&a.parentNode.removeChild(a)}},removeMap:function(a){this.visibility&&this.mapObject&&this.setGMapVisibility(!1);var b=OpenLayers.Layer.Google.cache[a.id]; b&&(1>=b.count?(this.removeGMapElements(),delete OpenLayers.Layer.Google.cache[a.id]):--b.count);delete this.termsOfUse;delete this.poweredBy;delete this.mapObject;delete this.dragObject;OpenLayers.Layer.EventPane.prototype.removeMap.apply(this,arguments)},getOLBoundsFromMapObjectBounds:function(a){var b=null;null!=a&&(b=a.getSouthWest(),a=a.getNorthEast(),this.sphericalMercator?(b=this.forwardMercator(b.lng(),b.lat()),a=this.forwardMercator(a.lng(),a.lat())):(b=new OpenLayers.LonLat(b.lng(),b.lat()), a=new OpenLayers.LonLat(a.lng(),a.lat())),b=new OpenLayers.Bounds(b.lon,b.lat,a.lon,a.lat));return b},getWarningHTML:function(){return OpenLayers.i18n("googleWarning")},getMapObjectCenter:function(){return this.mapObject.getCenter()},getMapObjectZoom:function(){return this.mapObject.getZoom()},getLongitudeFromMapObjectLonLat:function(a){return this.sphericalMercator?this.forwardMercator(a.lng(),a.lat()).lon:a.lng()},getLatitudeFromMapObjectLonLat:function(a){return this.sphericalMercator?this.forwardMercator(a.lng(), a.lat()).lat:a.lat()},getXFromMapObjectPixel:function(a){return a.x},getYFromMapObjectPixel:function(a){return a.y},CLASS_NAME:"OpenLayers.Layer.Google"});OpenLayers.Layer.Google.cache={}; OpenLayers.Layer.Google.v2={termsOfUse:null,poweredBy:null,dragObject:null,loadMapObject:function(){this.type||(this.type=G_NORMAL_MAP);var a,b,c,d=OpenLayers.Layer.Google.cache[this.map.id];if(d)a=d.mapObject,b=d.termsOfUse,c=d.poweredBy,++d.count;else{var d=this.map.viewPortDiv,e=document.createElement("div");e.id=this.map.id+"_GMap2Container";e.style.position="absolute";e.style.width="100%";e.style.height="100%";d.appendChild(e);try{a=new GMap2(e),b=e.lastChild,d.appendChild(b),b.style.zIndex= "1100",b.style.right="",b.style.bottom="",b.className="olLayerGoogleCopyright",c=e.lastChild,d.appendChild(c),c.style.zIndex="1100",c.style.right="",c.style.bottom="",c.className="olLayerGooglePoweredBy gmnoprint"}catch(f){throw f;}OpenLayers.Layer.Google.cache[this.map.id]={mapObject:a,termsOfUse:b,poweredBy:c,count:1}}this.mapObject=a;this.termsOfUse=b;this.poweredBy=c;-1===OpenLayers.Util.indexOf(this.mapObject.getMapTypes(),this.type)&&this.mapObject.addMapType(this.type);"function"==typeof a.getDragObject? this.dragObject=a.getDragObject():this.dragPanMapObject=null;!1===this.isBaseLayer&&this.setGMapVisibility("none"!==this.div.style.display)},onMapResize:function(){if(this.visibility&&this.mapObject.isLoaded())this.mapObject.checkResize();else{if(!this._resized)var a=this,b=GEvent.addListener(this.mapObject,"load",function(){GEvent.removeListener(b);delete a._resized;a.mapObject.checkResize();a.moveTo(a.map.getCenter(),a.map.getZoom())});this._resized=!0}},setGMapVisibility:function(a){var b=OpenLayers.Layer.Google.cache[this.map.id]; if(b){var c=this.mapObject.getContainer();!0===a?(this.mapObject.setMapType(this.type),c.style.display="",this.termsOfUse.style.left="",this.termsOfUse.style.display="",this.poweredBy.style.display="",b.displayed=this.id):(b.displayed===this.id&&delete b.displayed,b.displayed||(c.style.display="none",this.termsOfUse.style.display="none",this.termsOfUse.style.left="-9999px",this.poweredBy.style.display="none"))}},getMapContainer:function(){return this.mapObject.getContainer()},getMapObjectBoundsFromOLBounds:function(a){var b= null;null!=a&&(b=this.sphericalMercator?this.inverseMercator(a.bottom,a.left):new OpenLayers.LonLat(a.bottom,a.left),a=this.sphericalMercator?this.inverseMercator(a.top,a.right):new OpenLayers.LonLat(a.top,a.right),b=new GLatLngBounds(new GLatLng(b.lat,b.lon),new GLatLng(a.lat,a.lon)));return b},setMapObjectCenter:function(a,b){this.mapObject.setCenter(a,b)},dragPanMapObject:function(a,b){this.dragObject.moveBy(new GSize(-a,b))},getMapObjectLonLatFromMapObjectPixel:function(a){return this.mapObject.fromContainerPixelToLatLng(a)}, getMapObjectPixelFromMapObjectLonLat:function(a){return this.mapObject.fromLatLngToContainerPixel(a)},getMapObjectZoomFromMapObjectBounds:function(a){return this.mapObject.getBoundsZoomLevel(a)},getMapObjectLonLatFromLonLat:function(a,b){var c;this.sphericalMercator?(c=this.inverseMercator(a,b),c=new GLatLng(c.lat,c.lon)):c=new GLatLng(b,a);return c},getMapObjectPixelFromXY:function(a,b){return new GPoint(a,b)}};OpenLayers.Format.XML=OpenLayers.Class(OpenLayers.Format,{namespaces:null,namespaceAlias:null,defaultPrefix:null,readers:{},writers:{},xmldom:null,initialize:function(a){window.ActiveXObject&&(this.xmldom=new ActiveXObject("Microsoft.XMLDOM"));OpenLayers.Format.prototype.initialize.apply(this,[a]);this.namespaces=OpenLayers.Util.extend({},this.namespaces);this.namespaceAlias={};for(var b in this.namespaces)this.namespaceAlias[this.namespaces[b]]=b},destroy:function(){this.xmldom=null;OpenLayers.Format.prototype.destroy.apply(this, arguments)},setNamespace:function(a,b){this.namespaces[a]=b;this.namespaceAlias[b]=a},read:function(a){var b=a.indexOf("<");0<b&&(a=a.substring(b));b=OpenLayers.Util.Try(OpenLayers.Function.bind(function(){var b;b=window.ActiveXObject&&!this.xmldom?new ActiveXObject("Microsoft.XMLDOM"):this.xmldom;b.loadXML(a);return b},this),function(){return(new DOMParser).parseFromString(a,"text/xml")},function(){var b=new XMLHttpRequest;b.open("GET","data:text/xml;charset=utf-8,"+encodeURIComponent(a),!1);b.overrideMimeType&& b.overrideMimeType("text/xml");b.send(null);return b.responseXML});this.keepData&&(this.data=b);return b},write:function(a){if(this.xmldom)a=a.xml;else{var b=new XMLSerializer;if(1==a.nodeType){var c=document.implementation.createDocument("","",null);c.importNode&&(a=c.importNode(a,!0));c.appendChild(a);a=b.serializeToString(c)}else a=b.serializeToString(a)}return a},createElementNS:function(a,b){return this.xmldom?"string"==typeof a?this.xmldom.createNode(1,b,a):this.xmldom.createNode(1,b,""):document.createElementNS(a, b)},createTextNode:function(a){"string"!==typeof a&&(a=""+a);return this.xmldom?this.xmldom.createTextNode(a):document.createTextNode(a)},getElementsByTagNameNS:function(a,b,c){var d=[];if(a.getElementsByTagNameNS)d=a.getElementsByTagNameNS(b,c);else for(var a=a.getElementsByTagName("*"),e,f,g=0,h=a.length;g<h;++g)if(e=a[g],f=e.prefix?e.prefix+":"+c:c,"*"==c||f==e.nodeName)("*"==b||b==e.namespaceURI)&&d.push(e);return d},getAttributeNodeNS:function(a,b,c){var d=null;if(a.getAttributeNodeNS)d=a.getAttributeNodeNS(b, c);else for(var a=a.attributes,e,f,g=0,h=a.length;g<h;++g)if(e=a[g],e.namespaceURI==b&&(f=e.prefix?e.prefix+":"+c:c,f==e.nodeName)){d=e;break}return d},getAttributeNS:function(a,b,c){var d="";if(a.getAttributeNS)d=a.getAttributeNS(b,c)||"";else if(a=this.getAttributeNodeNS(a,b,c))d=a.nodeValue;return d},getChildValue:function(a,b){var c=b||"";if(a)for(var d=a.firstChild;d;d=d.nextSibling)switch(d.nodeType){case 3:case 4:c+=d.nodeValue}return c},isSimpleContent:function(a){for(var b=!0,a=a.firstChild;a;a= a.nextSibling)if(1===a.nodeType){b=!1;break}return b},contentType:function(a){for(var b=!1,c=!1,d=OpenLayers.Format.XML.CONTENT_TYPE.EMPTY,a=a.firstChild;a;a=a.nextSibling){switch(a.nodeType){case 1:c=!0;break;case 8:break;default:b=!0}if(c&&b)break}if(c&&b)d=OpenLayers.Format.XML.CONTENT_TYPE.MIXED;else{if(c)return OpenLayers.Format.XML.CONTENT_TYPE.COMPLEX;if(b)return OpenLayers.Format.XML.CONTENT_TYPE.SIMPLE}return d},hasAttributeNS:function(a,b,c){var d=!1;return d=a.hasAttributeNS?a.hasAttributeNS(b, c):!!this.getAttributeNodeNS(a,b,c)},setAttributeNS:function(a,b,c,d){if(a.setAttributeNS)a.setAttributeNS(b,c,d);else if(this.xmldom)b?(b=a.ownerDocument.createNode(2,c,b),b.nodeValue=d,a.setAttributeNode(b)):a.setAttribute(c,d);else throw"setAttributeNS not implemented";},createElementNSPlus:function(a,b){var b=b||{},c=b.uri||this.namespaces[b.prefix];c||(c=a.indexOf(":"),c=this.namespaces[a.substring(0,c)]);c||(c=this.namespaces[this.defaultPrefix]);c=this.createElementNS(c,a);b.attributes&&this.setAttributes(c, b.attributes);var d=b.value;null!=d&&c.appendChild(this.createTextNode(d));return c},setAttributes:function(a,b){var c,d,e;for(e in b)null!=b[e]&&b[e].toString&&(c=b[e].toString(),d=this.namespaces[e.substring(0,e.indexOf(":"))]||null,this.setAttributeNS(a,d,e,c))},readNode:function(a,b){b||(b={});var c=this.readers[a.namespaceURI?this.namespaceAlias[a.namespaceURI]:this.defaultPrefix];if(c){var d=a.localName||a.nodeName.split(":").pop();(c=c[d]||c["*"])&&c.apply(this,[a,b])}return b},readChildNodes:function(a, b){b||(b={});for(var c=a.childNodes,d,e=0,f=c.length;e<f;++e)d=c[e],1==d.nodeType&&this.readNode(d,b);return b},writeNode:function(a,b,c){var d,e=a.indexOf(":");0<e?(d=a.substring(0,e),a=a.substring(e+1)):d=c?this.namespaceAlias[c.namespaceURI]:this.defaultPrefix;b=this.writers[d][a].apply(this,[b]);c&&c.appendChild(b);return b},getChildEl:function(a,b,c){return a&&this.getThisOrNextEl(a.firstChild,b,c)},getNextEl:function(a,b,c){return a&&this.getThisOrNextEl(a.nextSibling,b,c)},getThisOrNextEl:function(a, b,c){a:for(;a;a=a.nextSibling)switch(a.nodeType){case 1:if((!b||b===(a.localName||a.nodeName.split(":").pop()))&&(!c||c===a.namespaceURI))break a;a=null;break a;case 3:if(/^\s*$/.test(a.nodeValue))break;case 4:case 6:case 12:case 10:case 11:a=null;break a}return a||null},lookupNamespaceURI:function(a,b){var c=null;if(a)if(a.lookupNamespaceURI)c=a.lookupNamespaceURI(b);else a:switch(a.nodeType){case 1:if(null!==a.namespaceURI&&a.prefix===b){c=a.namespaceURI;break a}if(c=a.attributes.length)for(var d, e=0;e<c;++e)if(d=a.attributes[e],"xmlns"===d.prefix&&d.name==="xmlns:"+b){c=d.value||null;break a}else if("xmlns"===d.name&&null===b){c=d.value||null;break a}c=this.lookupNamespaceURI(a.parentNode,b);break a;case 2:c=this.lookupNamespaceURI(a.ownerElement,b);break a;case 9:c=this.lookupNamespaceURI(a.documentElement,b);break a;case 6:case 12:case 10:case 11:break a;default:c=this.lookupNamespaceURI(a.parentNode,b)}return c},getXMLDoc:function(){!OpenLayers.Format.XML.document&&!this.xmldom&&(document.implementation&& document.implementation.createDocument?OpenLayers.Format.XML.document=document.implementation.createDocument("","",null):!this.xmldom&&window.ActiveXObject&&(this.xmldom=new ActiveXObject("Microsoft.XMLDOM")));return OpenLayers.Format.XML.document||this.xmldom},CLASS_NAME:"OpenLayers.Format.XML"});OpenLayers.Format.XML.CONTENT_TYPE={EMPTY:0,SIMPLE:1,COMPLEX:2,MIXED:3};OpenLayers.Format.XML.lookupNamespaceURI=OpenLayers.Function.bind(OpenLayers.Format.XML.prototype.lookupNamespaceURI,OpenLayers.Format.XML.prototype); OpenLayers.Format.XML.document=null;OpenLayers.Format.WFST=function(a){var a=OpenLayers.Util.applyDefaults(a,OpenLayers.Format.WFST.DEFAULTS),b=OpenLayers.Format.WFST["v"+a.version.replace(/\./g,"_")];if(!b)throw"Unsupported WFST version: "+a.version;return new b(a)};OpenLayers.Format.WFST.DEFAULTS={version:"1.0.0"};OpenLayers.Format.WFST.v1=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance",wfs:"http://www.opengis.net/wfs",gml:"http://www.opengis.net/gml",ogc:"http://www.opengis.net/ogc",ows:"http://www.opengis.net/ows"},defaultPrefix:"wfs",version:null,schemaLocations:null,srsName:null,extractAttributes:!0,xy:!0,stateName:null,initialize:function(a){this.stateName={};this.stateName[OpenLayers.State.INSERT]="wfs:Insert";this.stateName[OpenLayers.State.UPDATE]= "wfs:Update";this.stateName[OpenLayers.State.DELETE]="wfs:Delete";OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},getSrsName:function(a,b){var c=b&&b.srsName;c||(c=a&&a.layer?a.layer.projection.getCode():this.srsName);return c},read:function(a,b){b=b||{};OpenLayers.Util.applyDefaults(b,{output:"features"});"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement);var c={};a&&this.readNode(a,c,!0);c.features&&"features"===b.output&& (c=c.features);return c},readers:{wfs:{FeatureCollection:function(a,b){b.features=[];this.readChildNodes(a,b)}}},write:function(a,b){var c=this.writeNode("wfs:Transaction",{features:a,options:b}),d=this.schemaLocationAttr();d&&this.setAttributeNS(c,this.namespaces.xsi,"xsi:schemaLocation",d);return OpenLayers.Format.XML.prototype.write.apply(this,[c])},writers:{wfs:{GetFeature:function(a){var b=this.createElementNSPlus("wfs:GetFeature",{attributes:{service:"WFS",version:this.version,handle:a&&a.handle, outputFormat:a&&a.outputFormat,maxFeatures:a&&a.maxFeatures,"xsi:schemaLocation":this.schemaLocationAttr(a)}});if("string"==typeof this.featureType)this.writeNode("Query",a,b);else for(var c=0,d=this.featureType.length;c<d;c++)a.featureType=this.featureType[c],this.writeNode("Query",a,b);return b},Transaction:function(a){var a=a||{},b=a.options||{},c=this.createElementNSPlus("wfs:Transaction",{attributes:{service:"WFS",version:this.version,handle:b.handle}}),d,e=a.features;if(e){!0===b.multi&&OpenLayers.Util.extend(this.geometryTypes, {"OpenLayers.Geometry.Point":"MultiPoint","OpenLayers.Geometry.LineString":!0===this.multiCurve?"MultiCurve":"MultiLineString","OpenLayers.Geometry.Polygon":!0===this.multiSurface?"MultiSurface":"MultiPolygon"});var f,g,a=0;for(d=e.length;a<d;++a)g=e[a],(f=this.stateName[g.state])&&this.writeNode(f,{feature:g,options:b},c);!0===b.multi&&this.setGeometryTypes()}if(b.nativeElements){a=0;for(d=b.nativeElements.length;a<d;++a)this.writeNode("wfs:Native",b.nativeElements[a],c)}return c},Native:function(a){return this.createElementNSPlus("wfs:Native", {attributes:{vendorId:a.vendorId,safeToIgnore:a.safeToIgnore},value:a.value})},Insert:function(a){var b=a.feature,a=a.options,a=this.createElementNSPlus("wfs:Insert",{attributes:{handle:a&&a.handle}});this.srsName=this.getSrsName(b);this.writeNode("feature:_typeName",b,a);return a},Update:function(a){var b=a.feature,a=a.options,a=this.createElementNSPlus("wfs:Update",{attributes:{handle:a&&a.handle,typeName:(this.featureNS?this.featurePrefix+":":"")+this.featureType}});this.featureNS&&a.setAttribute("xmlns:"+ this.featurePrefix,this.featureNS);var c=b.modified;if(null!==this.geometryName&&(!c||void 0!==c.geometry))this.srsName=this.getSrsName(b),this.writeNode("Property",{name:this.geometryName,value:b.geometry},a);for(var d in b.attributes)void 0!==b.attributes[d]&&(!c||!c.attributes||c.attributes&&void 0!==c.attributes[d])&&this.writeNode("Property",{name:d,value:b.attributes[d]},a);this.writeNode("ogc:Filter",new OpenLayers.Filter.FeatureId({fids:[b.fid]}),a);return a},Property:function(a){var b=this.createElementNSPlus("wfs:Property"); this.writeNode("Name",a.name,b);null!==a.value&&this.writeNode("Value",a.value,b);return b},Name:function(a){return this.createElementNSPlus("wfs:Name",{value:a})},Value:function(a){var b;a instanceof OpenLayers.Geometry?(b=this.createElementNSPlus("wfs:Value"),a=this.writeNode("feature:_geometry",a).firstChild,b.appendChild(a)):b=this.createElementNSPlus("wfs:Value",{value:a});return b},Delete:function(a){var b=a.feature,a=a.options,a=this.createElementNSPlus("wfs:Delete",{attributes:{handle:a&& a.handle,typeName:(this.featureNS?this.featurePrefix+":":"")+this.featureType}});this.featureNS&&a.setAttribute("xmlns:"+this.featurePrefix,this.featureNS);this.writeNode("ogc:Filter",new OpenLayers.Filter.FeatureId({fids:[b.fid]}),a);return a}}},schemaLocationAttr:function(a){var a=OpenLayers.Util.extend({featurePrefix:this.featurePrefix,schema:this.schema},a),b=OpenLayers.Util.extend({},this.schemaLocations);a.schema&&(b[a.featurePrefix]=a.schema);var a=[],c,d;for(d in b)(c=this.namespaces[d])&& a.push(c+" "+b[d]);return a.join(" ")||void 0},setFilterProperty:function(a){if(a.filters)for(var b=0,c=a.filters.length;b<c;++b)OpenLayers.Format.WFST.v1.prototype.setFilterProperty.call(this,a.filters[b]);else a instanceof OpenLayers.Filter.Spatial&&!a.property&&(a.property=this.geometryName)},CLASS_NAME:"OpenLayers.Format.WFST.v1"});OpenLayers.Format.OGCExceptionReport=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{ogc:"http://www.opengis.net/ogc"},regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},defaultPrefix:"ogc",read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));var b={exceptionReport:null};a.documentElement&&(this.readChildNodes(a,b),null===b.exceptionReport&&(b=(new OpenLayers.Format.OWSCommon).read(a)));return b},readers:{ogc:{ServiceExceptionReport:function(a, b){b.exceptionReport={exceptions:[]};this.readChildNodes(a,b.exceptionReport)},ServiceException:function(a,b){var c={code:a.getAttribute("code"),locator:a.getAttribute("locator"),text:this.getChildValue(a)};b.exceptions.push(c)}}},CLASS_NAME:"OpenLayers.Format.OGCExceptionReport"});OpenLayers.Format.XML.VersionedOGC=OpenLayers.Class(OpenLayers.Format.XML,{defaultVersion:null,version:null,profile:null,errorProperty:null,name:null,stringifyOutput:!1,parser:null,initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a]);a=this.CLASS_NAME;this.name=a.substring(a.lastIndexOf(".")+1)},getVersion:function(a,b){var c;a?(c=this.version,c||(c=a.getAttribute("version"),c||(c=this.defaultVersion))):c=b&&b.version||this.version||this.defaultVersion;return c},getParser:function(a){var a= a||this.defaultVersion,b=this.profile?"_"+this.profile:"";if(!this.parser||this.parser.VERSION!=a){var c=OpenLayers.Format[this.name]["v"+a.replace(/\./g,"_")+b];if(!c)throw"Can't find a "+this.name+" parser for version "+a+b;this.parser=new c(this.options)}return this.parser},write:function(a,b){this.parser=this.getParser(this.getVersion(null,b));var c=this.parser.write(a,b);return!1===this.stringifyOutput?c:OpenLayers.Format.XML.prototype.write.apply(this,[c])},read:function(a,b){"string"==typeof a&& (a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));var c=this.getVersion(a.documentElement);this.parser=this.getParser(c);var d=this.parser.read(a,b);if(null!==this.errorProperty&&void 0===d[this.errorProperty]){var e=new OpenLayers.Format.OGCExceptionReport;d.error=e.read(a)}d.version=c;return d},CLASS_NAME:"OpenLayers.Format.XML.VersionedOGC"});OpenLayers.Feature=OpenLayers.Class({layer:null,id:null,lonlat:null,data:null,marker:null,popupClass:null,popup:null,initialize:function(a,b,c){this.layer=a;this.lonlat=b;this.data=null!=c?c:{};this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},destroy:function(){null!=this.layer&&null!=this.layer.map&&null!=this.popup&&this.layer.map.removePopup(this.popup);null!=this.layer&&null!=this.marker&&this.layer.removeMarker(this.marker);this.data=this.lonlat=this.id=this.layer=null;null!=this.marker&& (this.destroyMarker(this.marker),this.marker=null);null!=this.popup&&(this.destroyPopup(this.popup),this.popup=null)},onScreen:function(){var a=!1;null!=this.layer&&null!=this.layer.map&&(a=this.layer.map.getExtent().containsLonLat(this.lonlat));return a},createMarker:function(){null!=this.lonlat&&(this.marker=new OpenLayers.Marker(this.lonlat,this.data.icon));return this.marker},destroyMarker:function(){this.marker.destroy()},createPopup:function(a){null!=this.lonlat&&(this.popup||(this.popup=new (this.popupClass? this.popupClass:OpenLayers.Popup.Anchored)(this.id+"_popup",this.lonlat,this.data.popupSize,this.data.popupContentHTML,this.marker?this.marker.icon:null,a)),null!=this.data.overflow&&(this.popup.contentDiv.style.overflow=this.data.overflow),this.popup.feature=this);return this.popup},destroyPopup:function(){this.popup&&(this.popup.feature=null,this.popup.destroy(),this.popup=null)},CLASS_NAME:"OpenLayers.Feature"});OpenLayers.State={UNKNOWN:"Unknown",INSERT:"Insert",UPDATE:"Update",DELETE:"Delete"}; OpenLayers.Feature.Vector=OpenLayers.Class(OpenLayers.Feature,{fid:null,geometry:null,attributes:null,bounds:null,state:null,style:null,url:null,renderIntent:"default",modified:null,initialize:function(a,b,c){OpenLayers.Feature.prototype.initialize.apply(this,[null,null,b]);this.lonlat=null;this.geometry=a?a:null;this.state=null;this.attributes={};b&&(this.attributes=OpenLayers.Util.extend(this.attributes,b));this.style=c?c:null},destroy:function(){this.layer&&(this.layer.removeFeatures(this),this.layer= null);this.modified=this.geometry=null;OpenLayers.Feature.prototype.destroy.apply(this,arguments)},clone:function(){return new OpenLayers.Feature.Vector(this.geometry?this.geometry.clone():null,this.attributes,this.style)},onScreen:function(a){var b=!1;this.layer&&this.layer.map&&(b=this.layer.map.getExtent(),a?(a=this.geometry.getBounds(),b=b.intersectsBounds(a)):b=b.toGeometry().intersects(this.geometry));return b},getVisibility:function(){return!(this.style&&"none"==this.style.display||!this.layer|| this.layer&&this.layer.styleMap&&"none"==this.layer.styleMap.createSymbolizer(this,this.renderIntent).display||this.layer&&!this.layer.getVisibility())},createMarker:function(){return null},destroyMarker:function(){},createPopup:function(){return null},atPoint:function(a,b,c){var d=!1;this.geometry&&(d=this.geometry.atPoint(a,b,c));return d},destroyPopup:function(){},move:function(a){if(this.layer&&this.geometry.move){var a="OpenLayers.LonLat"==a.CLASS_NAME?this.layer.getViewPortPxFromLonLat(a):a, b=this.layer.getViewPortPxFromLonLat(this.geometry.getBounds().getCenterLonLat()),c=this.layer.map.getResolution();this.geometry.move(c*(a.x-b.x),c*(b.y-a.y));this.layer.drawFeature(this);return b}},toState:function(a){if(a==OpenLayers.State.UPDATE)switch(this.state){case OpenLayers.State.UNKNOWN:case OpenLayers.State.DELETE:this.state=a}else if(a==OpenLayers.State.INSERT)switch(this.state){case OpenLayers.State.UNKNOWN:break;default:this.state=a}else if(a==OpenLayers.State.DELETE)switch(this.state){case OpenLayers.State.UNKNOWN:case OpenLayers.State.UPDATE:this.state= a}else a==OpenLayers.State.UNKNOWN&&(this.state=a)},CLASS_NAME:"OpenLayers.Feature.Vector"}); OpenLayers.Feature.Vector.style={"default":{fillColor:"#ee9900",fillOpacity:0.4,hoverFillColor:"white",hoverFillOpacity:0.8,strokeColor:"#ee9900",strokeOpacity:1,strokeWidth:1,strokeLinecap:"round",strokeDashstyle:"solid",hoverStrokeColor:"red",hoverStrokeOpacity:1,hoverStrokeWidth:0.2,pointRadius:6,hoverPointRadius:1,hoverPointUnit:"%",pointerEvents:"visiblePainted",cursor:"inherit",fontColor:"#000000",labelAlign:"cm",labelOutlineColor:"white",labelOutlineWidth:3},select:{fillColor:"blue",fillOpacity:0.4, hoverFillColor:"white",hoverFillOpacity:0.8,strokeColor:"blue",strokeOpacity:1,strokeWidth:2,strokeLinecap:"round",strokeDashstyle:"solid",hoverStrokeColor:"red",hoverStrokeOpacity:1,hoverStrokeWidth:0.2,pointRadius:6,hoverPointRadius:1,hoverPointUnit:"%",pointerEvents:"visiblePainted",cursor:"pointer",fontColor:"#000000",labelAlign:"cm",labelOutlineColor:"white",labelOutlineWidth:3},temporary:{fillColor:"#66cccc",fillOpacity:0.2,hoverFillColor:"white",hoverFillOpacity:0.8,strokeColor:"#66cccc",strokeOpacity:1, strokeLinecap:"round",strokeWidth:2,strokeDashstyle:"solid",hoverStrokeColor:"red",hoverStrokeOpacity:1,hoverStrokeWidth:0.2,pointRadius:6,hoverPointRadius:1,hoverPointUnit:"%",pointerEvents:"visiblePainted",cursor:"inherit",fontColor:"#000000",labelAlign:"cm",labelOutlineColor:"white",labelOutlineWidth:3},"delete":{display:"none"}};OpenLayers.Style=OpenLayers.Class({id:null,name:null,title:null,description:null,layerName:null,isDefault:!1,rules:null,context:null,defaultStyle:null,defaultsPerSymbolizer:!1,propertyStyles:null,initialize:function(a,b){OpenLayers.Util.extend(this,b);this.rules=[];b&&b.rules&&this.addRules(b.rules);this.setDefaultStyle(a||OpenLayers.Feature.Vector.style["default"]);this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},destroy:function(){for(var a=0,b=this.rules.length;a<b;a++)this.rules[a].destroy(), this.rules[a]=null;this.defaultStyle=this.rules=null},createSymbolizer:function(a){for(var b=this.defaultsPerSymbolizer?{}:this.createLiterals(OpenLayers.Util.extend({},this.defaultStyle),a),c=this.rules,d,e=[],f=!1,g=0,h=c.length;g<h;g++)d=c[g],d.evaluate(a)&&(d instanceof OpenLayers.Rule&&d.elseFilter?e.push(d):(f=!0,this.applySymbolizer(d,b,a)));if(!1==f&&0<e.length){f=!0;g=0;for(h=e.length;g<h;g++)this.applySymbolizer(e[g],b,a)}0<c.length&&!1==f&&(b.display="none");null!=b.label&&"string"!==typeof b.label&& (b.label=""+b.label);return b},applySymbolizer:function(a,b,c){var d=c.geometry?this.getSymbolizerPrefix(c.geometry):OpenLayers.Style.SYMBOLIZER_PREFIXES[0],a=a.symbolizer[d]||a.symbolizer;!0===this.defaultsPerSymbolizer&&(d=this.defaultStyle,OpenLayers.Util.applyDefaults(a,{pointRadius:d.pointRadius}),(!0===a.stroke||!0===a.graphic)&&OpenLayers.Util.applyDefaults(a,{strokeWidth:d.strokeWidth,strokeColor:d.strokeColor,strokeOpacity:d.strokeOpacity,strokeDashstyle:d.strokeDashstyle,strokeLinecap:d.strokeLinecap}), (!0===a.fill||!0===a.graphic)&&OpenLayers.Util.applyDefaults(a,{fillColor:d.fillColor,fillOpacity:d.fillOpacity}),!0===a.graphic&&OpenLayers.Util.applyDefaults(a,{pointRadius:this.defaultStyle.pointRadius,externalGraphic:this.defaultStyle.externalGraphic,graphicName:this.defaultStyle.graphicName,graphicOpacity:this.defaultStyle.graphicOpacity,graphicWidth:this.defaultStyle.graphicWidth,graphicHeight:this.defaultStyle.graphicHeight,graphicXOffset:this.defaultStyle.graphicXOffset,graphicYOffset:this.defaultStyle.graphicYOffset})); return this.createLiterals(OpenLayers.Util.extend(b,a),c)},createLiterals:function(a,b){var c=OpenLayers.Util.extend({},b.attributes||b.data);OpenLayers.Util.extend(c,this.context);for(var d in this.propertyStyles)a[d]=OpenLayers.Style.createLiteral(a[d],c,b,d);return a},findPropertyStyles:function(){var a={};this.addPropertyStyles(a,this.defaultStyle);for(var b=this.rules,c,d,e=0,f=b.length;e<f;e++){c=b[e].symbolizer;for(var g in c)if(d=c[g],"object"==typeof d)this.addPropertyStyles(a,d);else{this.addPropertyStyles(a, c);break}}return a},addPropertyStyles:function(a,b){var c,d;for(d in b)c=b[d],"string"==typeof c&&c.match(/\$\{\w+\}/)&&(a[d]=!0);return a},addRules:function(a){Array.prototype.push.apply(this.rules,a);this.propertyStyles=this.findPropertyStyles()},setDefaultStyle:function(a){this.defaultStyle=a;this.propertyStyles=this.findPropertyStyles()},getSymbolizerPrefix:function(a){for(var b=OpenLayers.Style.SYMBOLIZER_PREFIXES,c=0,d=b.length;c<d;c++)if(-1!=a.CLASS_NAME.indexOf(b[c]))return b[c]},clone:function(){var a= OpenLayers.Util.extend({},this);if(this.rules){a.rules=[];for(var b=0,c=this.rules.length;b<c;++b)a.rules.push(this.rules[b].clone())}a.context=this.context&&OpenLayers.Util.extend({},this.context);b=OpenLayers.Util.extend({},this.defaultStyle);return new OpenLayers.Style(b,a)},CLASS_NAME:"OpenLayers.Style"});OpenLayers.Style.createLiteral=function(a,b,c,d){"string"==typeof a&&-1!=a.indexOf("${")&&(a=OpenLayers.String.format(a,b,[c,d]),a=isNaN(a)||!a?a:parseFloat(a));return a}; OpenLayers.Style.SYMBOLIZER_PREFIXES=["Point","Line","Polygon","Text","Raster"];OpenLayers.Filter=OpenLayers.Class({initialize:function(a){OpenLayers.Util.extend(this,a)},destroy:function(){},evaluate:function(){return!0},clone:function(){return null},toString:function(){return OpenLayers.Format&&OpenLayers.Format.CQL?OpenLayers.Format.CQL.prototype.write(this):Object.prototype.toString.call(this)},CLASS_NAME:"OpenLayers.Filter"});OpenLayers.Filter.FeatureId=OpenLayers.Class(OpenLayers.Filter,{fids:null,type:"FID",initialize:function(a){this.fids=[];OpenLayers.Filter.prototype.initialize.apply(this,[a])},evaluate:function(a){for(var b=0,c=this.fids.length;b<c;b++)if((a.fid||a.id)==this.fids[b])return!0;return!1},clone:function(){var a=new OpenLayers.Filter.FeatureId;OpenLayers.Util.extend(a,this);a.fids=this.fids.slice();return a},CLASS_NAME:"OpenLayers.Filter.FeatureId"});OpenLayers.Filter.Logical=OpenLayers.Class(OpenLayers.Filter,{filters:null,type:null,initialize:function(a){this.filters=[];OpenLayers.Filter.prototype.initialize.apply(this,[a])},destroy:function(){this.filters=null;OpenLayers.Filter.prototype.destroy.apply(this)},evaluate:function(a){var b,c;switch(this.type){case OpenLayers.Filter.Logical.AND:b=0;for(c=this.filters.length;b<c;b++)if(!1==this.filters[b].evaluate(a))return!1;return!0;case OpenLayers.Filter.Logical.OR:b=0;for(c=this.filters.length;b< c;b++)if(!0==this.filters[b].evaluate(a))return!0;return!1;case OpenLayers.Filter.Logical.NOT:return!this.filters[0].evaluate(a)}},clone:function(){for(var a=[],b=0,c=this.filters.length;b<c;++b)a.push(this.filters[b].clone());return new OpenLayers.Filter.Logical({type:this.type,filters:a})},CLASS_NAME:"OpenLayers.Filter.Logical"});OpenLayers.Filter.Logical.AND="&&";OpenLayers.Filter.Logical.OR="||";OpenLayers.Filter.Logical.NOT="!";OpenLayers.Filter.Comparison=OpenLayers.Class(OpenLayers.Filter,{type:null,property:null,value:null,matchCase:!0,lowerBoundary:null,upperBoundary:null,initialize:function(a){OpenLayers.Filter.prototype.initialize.apply(this,[a]);this.type===OpenLayers.Filter.Comparison.LIKE&&void 0===a.matchCase&&(this.matchCase=null)},evaluate:function(a){a instanceof OpenLayers.Feature.Vector&&(a=a.attributes);var b=!1,a=a[this.property];switch(this.type){case OpenLayers.Filter.Comparison.EQUAL_TO:b=this.value; b=!this.matchCase&&"string"==typeof a&&"string"==typeof b?a.toUpperCase()==b.toUpperCase():a==b;break;case OpenLayers.Filter.Comparison.NOT_EQUAL_TO:b=this.value;b=!this.matchCase&&"string"==typeof a&&"string"==typeof b?a.toUpperCase()!=b.toUpperCase():a!=b;break;case OpenLayers.Filter.Comparison.LESS_THAN:b=a<this.value;break;case OpenLayers.Filter.Comparison.GREATER_THAN:b=a>this.value;break;case OpenLayers.Filter.Comparison.LESS_THAN_OR_EQUAL_TO:b=a<=this.value;break;case OpenLayers.Filter.Comparison.GREATER_THAN_OR_EQUAL_TO:b= a>=this.value;break;case OpenLayers.Filter.Comparison.BETWEEN:b=a>=this.lowerBoundary&&a<=this.upperBoundary;break;case OpenLayers.Filter.Comparison.LIKE:b=RegExp(this.value,"gi").test(a)}return b},value2regex:function(a,b,c){if("."==a)throw Error("'.' is an unsupported wildCard character for OpenLayers.Filter.Comparison");a=a?a:"*";b=b?b:".";this.value=this.value.replace(RegExp("\\"+(c?c:"!")+"(.|$)","g"),"\\$1");this.value=this.value.replace(RegExp("\\"+b,"g"),".");this.value=this.value.replace(RegExp("\\"+ a,"g"),".*");this.value=this.value.replace(RegExp("\\\\.\\*","g"),"\\"+a);return this.value=this.value.replace(RegExp("\\\\\\.","g"),"\\"+b)},regex2value:function(){var a=this.value,a=a.replace(/!/g,"!!"),a=a.replace(/(\\)?\\\./g,function(a,c){return c?a:"!."}),a=a.replace(/(\\)?\\\*/g,function(a,c){return c?a:"!*"}),a=a.replace(/\\\\/g,"\\");return a=a.replace(/\.\*/g,"*")},clone:function(){return OpenLayers.Util.extend(new OpenLayers.Filter.Comparison,this)},CLASS_NAME:"OpenLayers.Filter.Comparison"}); OpenLayers.Filter.Comparison.EQUAL_TO="==";OpenLayers.Filter.Comparison.NOT_EQUAL_TO="!=";OpenLayers.Filter.Comparison.LESS_THAN="<";OpenLayers.Filter.Comparison.GREATER_THAN=">";OpenLayers.Filter.Comparison.LESS_THAN_OR_EQUAL_TO="<=";OpenLayers.Filter.Comparison.GREATER_THAN_OR_EQUAL_TO=">=";OpenLayers.Filter.Comparison.BETWEEN="..";OpenLayers.Filter.Comparison.LIKE="~";OpenLayers.Format.Filter=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.0.0",CLASS_NAME:"OpenLayers.Format.Filter"});OpenLayers.Filter.Function=OpenLayers.Class(OpenLayers.Filter,{name:null,params:null,CLASS_NAME:"OpenLayers.Filter.Function"});OpenLayers.Format.Filter.v1=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{ogc:"http://www.opengis.net/ogc",gml:"http://www.opengis.net/gml",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},defaultPrefix:"ogc",schemaLocation:null,initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){var b={};this.readers.ogc.Filter.apply(this,[a,b]);return b.filter},readers:{ogc:{_expression:function(a){for(var b="",c=a.firstChild;c;c= c.nextSibling)switch(c.nodeType){case 1:a=this.readNode(c);a.property?b+="${"+a.property+"}":void 0!==a.value&&(b+=a.value);break;case 3:case 4:b+=c.nodeValue}return b},Filter:function(a,b){var c={fids:[],filters:[]};this.readChildNodes(a,c);0<c.fids.length?b.filter=new OpenLayers.Filter.FeatureId({fids:c.fids}):0<c.filters.length&&(b.filter=c.filters[0])},FeatureId:function(a,b){var c=a.getAttribute("fid");c&&b.fids.push(c)},And:function(a,b){var c=new OpenLayers.Filter.Logical({type:OpenLayers.Filter.Logical.AND}); this.readChildNodes(a,c);b.filters.push(c)},Or:function(a,b){var c=new OpenLayers.Filter.Logical({type:OpenLayers.Filter.Logical.OR});this.readChildNodes(a,c);b.filters.push(c)},Not:function(a,b){var c=new OpenLayers.Filter.Logical({type:OpenLayers.Filter.Logical.NOT});this.readChildNodes(a,c);b.filters.push(c)},PropertyIsLessThan:function(a,b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.LESS_THAN});this.readChildNodes(a,c);b.filters.push(c)},PropertyIsGreaterThan:function(a, b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.GREATER_THAN});this.readChildNodes(a,c);b.filters.push(c)},PropertyIsLessThanOrEqualTo:function(a,b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.LESS_THAN_OR_EQUAL_TO});this.readChildNodes(a,c);b.filters.push(c)},PropertyIsGreaterThanOrEqualTo:function(a,b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.GREATER_THAN_OR_EQUAL_TO});this.readChildNodes(a,c);b.filters.push(c)}, PropertyIsBetween:function(a,b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.BETWEEN});this.readChildNodes(a,c);b.filters.push(c)},Literal:function(a,b){b.value=OpenLayers.String.numericIf(this.getChildValue(a))},PropertyName:function(a,b){b.property=this.getChildValue(a)},LowerBoundary:function(a,b){b.lowerBoundary=OpenLayers.String.numericIf(this.readers.ogc._expression.call(this,a))},UpperBoundary:function(a,b){b.upperBoundary=OpenLayers.String.numericIf(this.readers.ogc._expression.call(this, a))},Intersects:function(a,b){this.readSpatial(a,b,OpenLayers.Filter.Spatial.INTERSECTS)},Within:function(a,b){this.readSpatial(a,b,OpenLayers.Filter.Spatial.WITHIN)},Contains:function(a,b){this.readSpatial(a,b,OpenLayers.Filter.Spatial.CONTAINS)},DWithin:function(a,b){this.readSpatial(a,b,OpenLayers.Filter.Spatial.DWITHIN)},Distance:function(a,b){b.distance=parseInt(this.getChildValue(a));b.distanceUnits=a.getAttribute("units")},Function:function(){}}},readSpatial:function(a,b,c){c=new OpenLayers.Filter.Spatial({type:c}); this.readChildNodes(a,c);c.value=c.components[0];delete c.components;b.filters.push(c)},writeOgcExpression:function(a,b){if(a instanceof OpenLayers.Filter.Function){var c=this.writeNode("Function",a,b);b.appendChild(c)}else this.writeNode("Literal",a,b);return b},write:function(a){return this.writers.ogc.Filter.apply(this,[a])},writeFeatureIdNodes:function(a,b){for(var c=0,d=a.fids.length;c<d;++c)this.writeNode("FeatureId",a.fids[c],b)},writers:{ogc:{Filter:function(a){var b=this.createElementNSPlus("ogc:Filter"); "FID"===a.type?OpenLayers.Format.Filter.v1.prototype.writeFeatureIdNodes.call(this,a,b):this.writeNode(this.getFilterType(a),a,b);return b},FeatureId:function(a){return this.createElementNSPlus("ogc:FeatureId",{attributes:{fid:a}})},And:function(a){for(var b=this.createElementNSPlus("ogc:And"),c,d=0,e=a.filters.length;d<e;++d)c=a.filters[d],"FID"===c.type?OpenLayers.Format.Filter.v1.prototype.writeFeatureIdNodes.call(this,c,b):this.writeNode(this.getFilterType(c),c,b);return b},Or:function(a){for(var b= this.createElementNSPlus("ogc:Or"),c,d=0,e=a.filters.length;d<e;++d)c=a.filters[d],"FID"===c.type?OpenLayers.Format.Filter.v1.prototype.writeFeatureIdNodes.call(this,c,b):this.writeNode(this.getFilterType(c),c,b);return b},Not:function(a){var b=this.createElementNSPlus("ogc:Not"),a=a.filters[0];"FID"===a.type?OpenLayers.Format.Filter.v1.prototype.writeFeatureIdNodes.call(this,a,b):this.writeNode(this.getFilterType(a),a,b);return b},PropertyIsLessThan:function(a){var b=this.createElementNSPlus("ogc:PropertyIsLessThan"); this.writeNode("PropertyName",a,b);this.writeOgcExpression(a.value,b);return b},PropertyIsGreaterThan:function(a){var b=this.createElementNSPlus("ogc:PropertyIsGreaterThan");this.writeNode("PropertyName",a,b);this.writeOgcExpression(a.value,b);return b},PropertyIsLessThanOrEqualTo:function(a){var b=this.createElementNSPlus("ogc:PropertyIsLessThanOrEqualTo");this.writeNode("PropertyName",a,b);this.writeOgcExpression(a.value,b);return b},PropertyIsGreaterThanOrEqualTo:function(a){var b=this.createElementNSPlus("ogc:PropertyIsGreaterThanOrEqualTo"); this.writeNode("PropertyName",a,b);this.writeOgcExpression(a.value,b);return b},PropertyIsBetween:function(a){var b=this.createElementNSPlus("ogc:PropertyIsBetween");this.writeNode("PropertyName",a,b);this.writeNode("LowerBoundary",a,b);this.writeNode("UpperBoundary",a,b);return b},PropertyName:function(a){return this.createElementNSPlus("ogc:PropertyName",{value:a.property})},Literal:function(a){return this.createElementNSPlus("ogc:Literal",{value:a})},LowerBoundary:function(a){var b=this.createElementNSPlus("ogc:LowerBoundary"); this.writeOgcExpression(a.lowerBoundary,b);return b},UpperBoundary:function(a){var b=this.createElementNSPlus("ogc:UpperBoundary");this.writeNode("Literal",a.upperBoundary,b);return b},INTERSECTS:function(a){return this.writeSpatial(a,"Intersects")},WITHIN:function(a){return this.writeSpatial(a,"Within")},CONTAINS:function(a){return this.writeSpatial(a,"Contains")},DWITHIN:function(a){var b=this.writeSpatial(a,"DWithin");this.writeNode("Distance",a,b);return b},Distance:function(a){return this.createElementNSPlus("ogc:Distance", {attributes:{units:a.distanceUnits},value:a.distance})},Function:function(a){for(var b=this.createElementNSPlus("ogc:Function",{attributes:{name:a.name}}),a=a.params,c=0,d=a.length;c<d;c++)this.writeOgcExpression(a[c],b);return b}}},getFilterType:function(a){var b=this.filterMap[a.type];if(!b)throw"Filter writing not supported for rule type: "+a.type;return b},filterMap:{"&&":"And","||":"Or","!":"Not","==":"PropertyIsEqualTo","!=":"PropertyIsNotEqualTo","<":"PropertyIsLessThan",">":"PropertyIsGreaterThan", "<=":"PropertyIsLessThanOrEqualTo",">=":"PropertyIsGreaterThanOrEqualTo","..":"PropertyIsBetween","~":"PropertyIsLike",BBOX:"BBOX",DWITHIN:"DWITHIN",WITHIN:"WITHIN",CONTAINS:"CONTAINS",INTERSECTS:"INTERSECTS",FID:"FeatureId"},CLASS_NAME:"OpenLayers.Format.Filter.v1"});OpenLayers.Geometry=OpenLayers.Class({id:null,parent:null,bounds:null,initialize:function(){this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},destroy:function(){this.bounds=this.id=null},clone:function(){return new OpenLayers.Geometry},setBounds:function(a){a&&(this.bounds=a.clone())},clearBounds:function(){this.bounds=null;this.parent&&this.parent.clearBounds()},extendBounds:function(a){this.getBounds()?this.bounds.extend(a):this.setBounds(a)},getBounds:function(){null==this.bounds&&this.calculateBounds(); return this.bounds},calculateBounds:function(){},distanceTo:function(){},getVertices:function(){},atPoint:function(a,b,c){var d=!1;null!=this.getBounds()&&null!=a&&(b=null!=b?b:0,c=null!=c?c:0,d=(new OpenLayers.Bounds(this.bounds.left-b,this.bounds.bottom-c,this.bounds.right+b,this.bounds.top+c)).containsLonLat(a));return d},getLength:function(){return 0},getArea:function(){return 0},getCentroid:function(){return null},toString:function(){return OpenLayers.Format&&OpenLayers.Format.WKT?OpenLayers.Format.WKT.prototype.write(new OpenLayers.Feature.Vector(this)): Object.prototype.toString.call(this)},CLASS_NAME:"OpenLayers.Geometry"});OpenLayers.Geometry.fromWKT=function(a){var b;if(OpenLayers.Format&&OpenLayers.Format.WKT){var c=OpenLayers.Geometry.fromWKT.format;c||(c=new OpenLayers.Format.WKT,OpenLayers.Geometry.fromWKT.format=c);a=c.read(a);if(a instanceof OpenLayers.Feature.Vector)b=a.geometry;else if(OpenLayers.Util.isArray(a)){b=a.length;for(var c=Array(b),d=0;d<b;++d)c[d]=a[d].geometry;b=new OpenLayers.Geometry.Collection(c)}}return b}; OpenLayers.Geometry.segmentsIntersect=function(a,b,c){var d=c&&c.point,c=c&&c.tolerance,e=!1,f=a.x1-b.x1,g=a.y1-b.y1,h=a.x2-a.x1,i=a.y2-a.y1,j=b.y2-b.y1,k=b.x2-b.x1,l=j*h-k*i,j=k*g-j*f,g=h*g-i*f;0==l?0==j&&0==g&&(e=!0):(f=j/l,l=g/l,0<=f&&(1>=f&&0<=l&&1>=l)&&(d?(h=a.x1+f*h,l=a.y1+f*i,e=new OpenLayers.Geometry.Point(h,l)):e=!0));if(c)if(e){if(d){a=[a,b];b=0;a:for(;2>b;++b){f=a[b];for(i=1;3>i;++i)if(h=f["x"+i],l=f["y"+i],d=Math.sqrt(Math.pow(h-e.x,2)+Math.pow(l-e.y,2)),d<c){e.x=h;e.y=l;break a}}}}else{a= [a,b];b=0;a:for(;2>b;++b){h=a[b];l=a[(b+1)%2];for(i=1;3>i;++i)if(f={x:h["x"+i],y:h["y"+i]},g=OpenLayers.Geometry.distanceToSegment(f,l),g.distance<c){e=d?new OpenLayers.Geometry.Point(f.x,f.y):!0;break a}}}return e};OpenLayers.Geometry.distanceToSegment=function(a,b){var c=a.x,d=a.y,e=b.x1,f=b.y1,g=b.x2,h=b.y2,i=g-e,j=h-f,k=(i*(c-e)+j*(d-f))/(Math.pow(i,2)+Math.pow(j,2));0>=k||(1<=k?(e=g,f=h):(e+=k*i,f+=k*j));return{distance:Math.sqrt(Math.pow(e-c,2)+Math.pow(f-d,2)),x:e,y:f}};OpenLayers.Geometry.Point=OpenLayers.Class(OpenLayers.Geometry,{x:null,y:null,initialize:function(a,b){OpenLayers.Geometry.prototype.initialize.apply(this,arguments);this.x=parseFloat(a);this.y=parseFloat(b)},clone:function(a){null==a&&(a=new OpenLayers.Geometry.Point(this.x,this.y));OpenLayers.Util.applyDefaults(a,this);return a},calculateBounds:function(){this.bounds=new OpenLayers.Bounds(this.x,this.y,this.x,this.y)},distanceTo:function(a,b){var c=!(b&&!1===b.edge)&&b&&b.details,d,e,f,g,h;a instanceof OpenLayers.Geometry.Point?(e=this.x,f=this.y,g=a.x,h=a.y,d=Math.sqrt(Math.pow(e-g,2)+Math.pow(f-h,2)),d=!c?d:{x0:e,y0:f,x1:g,y1:h,distance:d}):(d=a.distanceTo(this,b),c&&(d={x0:d.x1,y0:d.y1,x1:d.x0,y1:d.y0,distance:d.distance}));return d},equals:function(a){var b=!1;null!=a&&(b=this.x==a.x&&this.y==a.y||isNaN(this.x)&&isNaN(this.y)&&isNaN(a.x)&&isNaN(a.y));return b},toShortString:function(){return this.x+", "+this.y},move:function(a,b){this.x+=a;this.y+=b;this.clearBounds()},rotate:function(a,b){var a= a*(Math.PI/180),c=this.distanceTo(b),d=a+Math.atan2(this.y-b.y,this.x-b.x);this.x=b.x+c*Math.cos(d);this.y=b.y+c*Math.sin(d);this.clearBounds()},getCentroid:function(){return new OpenLayers.Geometry.Point(this.x,this.y)},resize:function(a,b,c){this.x=b.x+a*(void 0==c?1:c)*(this.x-b.x);this.y=b.y+a*(this.y-b.y);this.clearBounds();return this},intersects:function(a){var b=!1;return b="OpenLayers.Geometry.Point"==a.CLASS_NAME?this.equals(a):a.intersects(this)},transform:function(a,b){a&&b&&(OpenLayers.Projection.transform(this, a,b),this.bounds=null);return this},getVertices:function(){return[this]},CLASS_NAME:"OpenLayers.Geometry.Point"});OpenLayers.Geometry.Collection=OpenLayers.Class(OpenLayers.Geometry,{components:null,componentTypes:null,initialize:function(a){OpenLayers.Geometry.prototype.initialize.apply(this,arguments);this.components=[];null!=a&&this.addComponents(a)},destroy:function(){this.components.length=0;this.components=null;OpenLayers.Geometry.prototype.destroy.apply(this,arguments)},clone:function(){for(var a=eval("new "+this.CLASS_NAME+"()"),b=0,c=this.components.length;b<c;b++)a.addComponent(this.components[b].clone()); OpenLayers.Util.applyDefaults(a,this);return a},getComponentsString:function(){for(var a=[],b=0,c=this.components.length;b<c;b++)a.push(this.components[b].toShortString());return a.join(",")},calculateBounds:function(){this.bounds=null;var a=new OpenLayers.Bounds,b=this.components;if(b)for(var c=0,d=b.length;c<d;c++)a.extend(b[c].getBounds());null!=a.left&&(null!=a.bottom&&null!=a.right&&null!=a.top)&&this.setBounds(a)},addComponents:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=0,c=a.length;b< c;b++)this.addComponent(a[b])},addComponent:function(a,b){var c=!1;if(a&&(null==this.componentTypes||-1<OpenLayers.Util.indexOf(this.componentTypes,a.CLASS_NAME))){if(null!=b&&b<this.components.length){var c=this.components.slice(0,b),d=this.components.slice(b,this.components.length);c.push(a);this.components=c.concat(d)}else this.components.push(a);a.parent=this;this.clearBounds();c=!0}return c},removeComponents:function(a){var b=!1;OpenLayers.Util.isArray(a)||(a=[a]);for(var c=a.length-1;0<=c;--c)b= this.removeComponent(a[c])||b;return b},removeComponent:function(a){OpenLayers.Util.removeItem(this.components,a);this.clearBounds();return!0},getLength:function(){for(var a=0,b=0,c=this.components.length;b<c;b++)a+=this.components[b].getLength();return a},getArea:function(){for(var a=0,b=0,c=this.components.length;b<c;b++)a+=this.components[b].getArea();return a},getGeodesicArea:function(a){for(var b=0,c=0,d=this.components.length;c<d;c++)b+=this.components[c].getGeodesicArea(a);return b},getCentroid:function(a){if(!a)return this.components.length&& this.components[0].getCentroid();a=this.components.length;if(!a)return!1;for(var b=[],c=[],d=0,e=Number.MAX_VALUE,f,g=0;g<a;++g){f=this.components[g];var h=f.getArea();f=f.getCentroid(!0);!isNaN(h)&&(!isNaN(f.x)&&!isNaN(f.y))&&(b.push(h),d+=h,e=h<e&&0<h?h:e,c.push(f))}a=b.length;if(0===d){for(g=0;g<a;++g)b[g]=1;d=b.length}else{for(g=0;g<a;++g)b[g]/=e;d/=e}for(var i=e=0,g=0;g<a;++g)f=c[g],h=b[g],e+=f.x*h,i+=f.y*h;return new OpenLayers.Geometry.Point(e/d,i/d)},getGeodesicLength:function(a){for(var b= 0,c=0,d=this.components.length;c<d;c++)b+=this.components[c].getGeodesicLength(a);return b},move:function(a,b){for(var c=0,d=this.components.length;c<d;c++)this.components[c].move(a,b)},rotate:function(a,b){for(var c=0,d=this.components.length;c<d;++c)this.components[c].rotate(a,b)},resize:function(a,b,c){for(var d=0;d<this.components.length;++d)this.components[d].resize(a,b,c);return this},distanceTo:function(a,b){for(var c=!(b&&!1===b.edge)&&b&&b.details,d,e,f,g=Number.POSITIVE_INFINITY,h=0,i=this.components.length;h< i&&!(d=this.components[h].distanceTo(a,b),f=c?d.distance:d,f<g&&(g=f,e=d,0==g));++h);return e},equals:function(a){var b=!0;if(!a||!a.CLASS_NAME||this.CLASS_NAME!=a.CLASS_NAME)b=!1;else if(!OpenLayers.Util.isArray(a.components)||a.components.length!=this.components.length)b=!1;else for(var c=0,d=this.components.length;c<d;++c)if(!this.components[c].equals(a.components[c])){b=!1;break}return b},transform:function(a,b){if(a&&b){for(var c=0,d=this.components.length;c<d;c++)this.components[c].transform(a, b);this.bounds=null}return this},intersects:function(a){for(var b=!1,c=0,d=this.components.length;c<d&&!(b=a.intersects(this.components[c]));++c);return b},getVertices:function(a){for(var b=[],c=0,d=this.components.length;c<d;++c)Array.prototype.push.apply(b,this.components[c].getVertices(a));return b},CLASS_NAME:"OpenLayers.Geometry.Collection"});OpenLayers.Geometry.MultiPoint=OpenLayers.Class(OpenLayers.Geometry.Collection,{componentTypes:["OpenLayers.Geometry.Point"],addPoint:function(a,b){this.addComponent(a,b)},removePoint:function(a){this.removeComponent(a)},CLASS_NAME:"OpenLayers.Geometry.MultiPoint"});OpenLayers.Geometry.Curve=OpenLayers.Class(OpenLayers.Geometry.MultiPoint,{componentTypes:["OpenLayers.Geometry.Point"],getLength:function(){var a=0;if(this.components&&1<this.components.length)for(var b=1,c=this.components.length;b<c;b++)a+=this.components[b-1].distanceTo(this.components[b]);return a},getGeodesicLength:function(a){var b=this;if(a){var c=new OpenLayers.Projection("EPSG:4326");c.equals(a)||(b=this.clone().transform(a,c))}a=0;if(b.components&&1<b.components.length)for(var d,e=1,f=b.components.length;e< f;e++)c=b.components[e-1],d=b.components[e],a+=OpenLayers.Util.distVincenty({lon:c.x,lat:c.y},{lon:d.x,lat:d.y});return 1E3*a},CLASS_NAME:"OpenLayers.Geometry.Curve"});OpenLayers.Geometry.LineString=OpenLayers.Class(OpenLayers.Geometry.Curve,{removeComponent:function(a){var b=this.components&&2<this.components.length;b&&OpenLayers.Geometry.Collection.prototype.removeComponent.apply(this,arguments);return b},intersects:function(a){var b=!1,c=a.CLASS_NAME;if("OpenLayers.Geometry.LineString"==c||"OpenLayers.Geometry.LinearRing"==c||"OpenLayers.Geometry.Point"==c){var d=this.getSortedSegments(),a="OpenLayers.Geometry.Point"==c?[{x1:a.x,y1:a.y,x2:a.x,y2:a.y}]:a.getSortedSegments(), e,f,g,h,i,j,k,l=0,m=d.length;a:for(;l<m;++l){c=d[l];e=c.x1;f=c.x2;g=c.y1;h=c.y2;var n=0,o=a.length;for(;n<o;++n){i=a[n];if(i.x1>f)break;if(!(i.x2<e)&&(j=i.y1,k=i.y2,!(Math.min(j,k)>Math.max(g,h))&&!(Math.max(j,k)<Math.min(g,h))&&OpenLayers.Geometry.segmentsIntersect(c,i))){b=!0;break a}}}}else b=a.intersects(this);return b},getSortedSegments:function(){for(var a=this.components.length-1,b=Array(a),c,d,e=0;e<a;++e)c=this.components[e],d=this.components[e+1],b[e]=c.x<d.x?{x1:c.x,y1:c.y,x2:d.x,y2:d.y}: {x1:d.x,y1:d.y,x2:c.x,y2:c.y};return b.sort(function(a,b){return a.x1-b.x1})},splitWithSegment:function(a,b){for(var c=!(b&&!1===b.edge),d=b&&b.tolerance,e=[],f=this.getVertices(),g=[],h=[],i=!1,j,k,l,m={point:!0,tolerance:d},n=null,o=0,p=f.length-2;o<=p;++o)if(d=f[o],g.push(d.clone()),j=f[o+1],k={x1:d.x,y1:d.y,x2:j.x,y2:j.y},k=OpenLayers.Geometry.segmentsIntersect(a,k,m),k instanceof OpenLayers.Geometry.Point&&((l=k.x===a.x1&&k.y===a.y1||k.x===a.x2&&k.y===a.y2||k.equals(d)||k.equals(j)?!0:!1)||c))k.equals(h[h.length- 1])||h.push(k.clone()),!(0===o&&k.equals(d))&&!k.equals(j)&&(i=!0,k.equals(d)||g.push(k),e.push(new OpenLayers.Geometry.LineString(g)),g=[k.clone()]);i&&(g.push(j.clone()),e.push(new OpenLayers.Geometry.LineString(g)));if(0<h.length)var q=a.x1<a.x2?1:-1,r=a.y1<a.y2?1:-1,n={lines:e,points:h.sort(function(a,b){return q*a.x-q*b.x||r*a.y-r*b.y})};return n},split:function(a,b){var c=null,d=b&&b.mutual,e,f,g,h;if(a instanceof OpenLayers.Geometry.LineString){var i=this.getVertices(),j,k,l,m,n,o=[];g=[]; for(var p=0,q=i.length-2;p<=q;++p){j=i[p];k=i[p+1];l={x1:j.x,y1:j.y,x2:k.x,y2:k.y};h=h||[a];d&&o.push(j.clone());for(var r=0;r<h.length;++r)if(m=h[r].splitWithSegment(l,b))if(n=m.lines,0<n.length&&(n.unshift(r,1),Array.prototype.splice.apply(h,n),r+=n.length-2),d)for(var s=0,t=m.points.length;s<t;++s)n=m.points[s],n.equals(j)||(o.push(n),g.push(new OpenLayers.Geometry.LineString(o)),o=n.equals(k)?[]:[n.clone()])}d&&(0<g.length&&0<o.length)&&(o.push(k.clone()),g.push(new OpenLayers.Geometry.LineString(o)))}else c= a.splitWith(this,b);h&&1<h.length?f=!0:h=[];g&&1<g.length?e=!0:g=[];if(f||e)c=d?[g,h]:h;return c},splitWith:function(a,b){return a.split(this,b)},getVertices:function(a){return!0===a?[this.components[0],this.components[this.components.length-1]]:!1===a?this.components.slice(1,this.components.length-1):this.components.slice()},distanceTo:function(a,b){var c=!(b&&!1===b.edge)&&b&&b.details,d,e={},f=Number.POSITIVE_INFINITY;if(a instanceof OpenLayers.Geometry.Point){for(var g=this.getSortedSegments(), h=a.x,i=a.y,j,k=0,l=g.length;k<l;++k)if(j=g[k],d=OpenLayers.Geometry.distanceToSegment(a,j),d.distance<f){if(f=d.distance,e=d,0===f)break}else if(j.x2>h&&(i>j.y1&&i<j.y2||i<j.y1&&i>j.y2))break;e=c?{distance:e.distance,x0:e.x,y0:e.y,x1:h,y1:i}:e.distance}else if(a instanceof OpenLayers.Geometry.LineString){var g=this.getSortedSegments(),h=a.getSortedSegments(),m,n,o=h.length,p={point:!0},k=0,l=g.length;a:for(;k<l;++k){i=g[k];j=i.x1;n=i.y1;for(var q=0;q<o;++q)if(d=h[q],m=OpenLayers.Geometry.segmentsIntersect(i, d,p)){f=0;e={distance:0,x0:m.x,y0:m.y,x1:m.x,y1:m.y};break a}else d=OpenLayers.Geometry.distanceToSegment({x:j,y:n},d),d.distance<f&&(f=d.distance,e={distance:f,x0:j,y0:n,x1:d.x,y1:d.y})}c||(e=e.distance);0!==f&&i&&(d=a.distanceTo(new OpenLayers.Geometry.Point(i.x2,i.y2),b),k=c?d.distance:d,k<f&&(e=c?{distance:f,x0:d.x1,y0:d.y1,x1:d.x0,y1:d.y0}:k))}else e=a.distanceTo(this,b),c&&(e={distance:e.distance,x0:e.x1,y0:e.y1,x1:e.x0,y1:e.y0});return e},simplify:function(a){if(this&&null!==this){var b=this.getVertices(); if(3>b.length)return this;var c=function(a,b,d,i){for(var j=0,k=0,l=b,m;l<d;l++){m=a[b];var n=a[d],o=a[l],o=Math.abs(0.5*(m.x*n.y+n.x*o.y+o.x*m.y-n.x*m.y-o.x*n.y-m.x*o.y));m=Math.sqrt(Math.pow(m.x-n.x,2)+Math.pow(m.y-n.y,2));m=2*(o/m);m>j&&(j=m,k=l)}j>i&&k!=b&&(e.push(k),c(a,b,k,i),c(a,k,d,i))},d=b.length-1,e=[];e.push(0);for(e.push(d);b[0].equals(b[d]);)d--,e.push(d);c(b,0,d,a);a=[];e.sort(function(a,b){return a-b});for(d=0;d<e.length;d++)a.push(b[e[d]]);return new OpenLayers.Geometry.LineString(a)}return this}, CLASS_NAME:"OpenLayers.Geometry.LineString"});OpenLayers.Geometry.MultiLineString=OpenLayers.Class(OpenLayers.Geometry.Collection,{componentTypes:["OpenLayers.Geometry.LineString"],split:function(a,b){for(var c=null,d=b&&b.mutual,e,f,g,h,i=[],j=[a],k=0,l=this.components.length;k<l;++k){f=this.components[k];g=!1;for(var m=0;m<j.length;++m)if(e=f.split(j[m],b)){if(d){g=e[0];for(var n=0,o=g.length;n<o;++n)0===n&&i.length?i[i.length-1].addComponent(g[n]):i.push(new OpenLayers.Geometry.MultiLineString([g[n]]));g=!0;e=e[1]}if(e.length){e.unshift(m, 1);Array.prototype.splice.apply(j,e);break}}g||(i.length?i[i.length-1].addComponent(f.clone()):i=[new OpenLayers.Geometry.MultiLineString(f.clone())])}i&&1<i.length?g=!0:i=[];j&&1<j.length?h=!0:j=[];if(g||h)c=d?[i,j]:j;return c},splitWith:function(a,b){var c=null,d=b&&b.mutual,e,f,g,h,i,j;if(a instanceof OpenLayers.Geometry.LineString){j=[];i=[a];for(var k=0,l=this.components.length;k<l;++k){g=!1;f=this.components[k];for(var m=0;m<i.length;++m)if(e=i[m].split(f,b)){d&&(g=e[0],g.length&&(g.unshift(m, 1),Array.prototype.splice.apply(i,g),m+=g.length-2),e=e[1],0===e.length&&(e=[f.clone()]));g=0;for(var n=e.length;g<n;++g)0===g&&j.length?j[j.length-1].addComponent(e[g]):j.push(new OpenLayers.Geometry.MultiLineString([e[g]]));g=!0}g||(j.length?j[j.length-1].addComponent(f.clone()):j=[new OpenLayers.Geometry.MultiLineString([f.clone()])])}}else c=a.split(this);i&&1<i.length?h=!0:i=[];j&&1<j.length?g=!0:j=[];if(h||g)c=d?[i,j]:j;return c},CLASS_NAME:"OpenLayers.Geometry.MultiLineString"});OpenLayers.Geometry.LinearRing=OpenLayers.Class(OpenLayers.Geometry.LineString,{componentTypes:["OpenLayers.Geometry.Point"],addComponent:function(a,b){var c=!1,d=this.components.pop();if(null!=b||!a.equals(d))c=OpenLayers.Geometry.Collection.prototype.addComponent.apply(this,arguments);OpenLayers.Geometry.Collection.prototype.addComponent.apply(this,[this.components[0]]);return c},removeComponent:function(a){var b=this.components&&3<this.components.length;b&&(this.components.pop(),OpenLayers.Geometry.Collection.prototype.removeComponent.apply(this, arguments),OpenLayers.Geometry.Collection.prototype.addComponent.apply(this,[this.components[0]]));return b},move:function(a,b){for(var c=0,d=this.components.length;c<d-1;c++)this.components[c].move(a,b)},rotate:function(a,b){for(var c=0,d=this.components.length;c<d-1;++c)this.components[c].rotate(a,b)},resize:function(a,b,c){for(var d=0,e=this.components.length;d<e-1;++d)this.components[d].resize(a,b,c);return this},transform:function(a,b){if(a&&b){for(var c=0,d=this.components.length;c<d-1;c++)this.components[c].transform(a, b);this.bounds=null}return this},getCentroid:function(){if(this.components&&2<this.components.length){for(var a=0,b=0,c=0;c<this.components.length-1;c++)var d=this.components[c],e=this.components[c+1],a=a+(d.x+e.x)*(d.x*e.y-e.x*d.y),b=b+(d.y+e.y)*(d.x*e.y-e.x*d.y);c=-1*this.getArea();return new OpenLayers.Geometry.Point(a/(6*c),b/(6*c))}return null},getArea:function(){var a=0;if(this.components&&2<this.components.length){for(var b=a=0,c=this.components.length;b<c-1;b++)var d=this.components[b],e= this.components[b+1],a=a+(d.x+e.x)*(e.y-d.y);a=-a/2}return a},getGeodesicArea:function(a){var b=this;if(a){var c=new OpenLayers.Projection("EPSG:4326");c.equals(a)||(b=this.clone().transform(a,c))}a=0;c=b.components&&b.components.length;if(2<c){for(var d,e,f=0;f<c-1;f++)d=b.components[f],e=b.components[f+1],a+=OpenLayers.Util.rad(e.x-d.x)*(2+Math.sin(OpenLayers.Util.rad(d.y))+Math.sin(OpenLayers.Util.rad(e.y)));a=40680631590769*a/2}return a},containsPoint:function(a){for(var b=OpenLayers.Number.limitSigDigs, c=b(a.x,14),a=b(a.y,14),d=this.components.length-1,e,f,g,h,i,j=0,k=0;k<d;++k)if(e=this.components[k],g=b(e.x,14),e=b(e.y,14),f=this.components[k+1],h=b(f.x,14),f=b(f.y,14),e==f){if(a==e&&(g<=h&&c>=g&&c<=h||g>=h&&c<=g&&c>=h)){j=-1;break}}else{i=b((a-f)*((h-g)/(f-e))+h,14);if(i==c&&(e<f&&a>=e&&a<=f||e>f&&a<=e&&a>=f)){j=-1;break}i<=c||g!=h&&(i<Math.min(g,h)||i>Math.max(g,h))||(e<f&&a>=e&&a<f||e>f&&a<e&&a>=f)&&++j}return-1==j?1:!!(j&1)},intersects:function(a){var b=!1;if("OpenLayers.Geometry.Point"== a.CLASS_NAME)b=this.containsPoint(a);else if("OpenLayers.Geometry.LineString"==a.CLASS_NAME)b=a.intersects(this);else if("OpenLayers.Geometry.LinearRing"==a.CLASS_NAME)b=OpenLayers.Geometry.LineString.prototype.intersects.apply(this,[a]);else for(var c=0,d=a.components.length;c<d&&!(b=a.components[c].intersects(this));++c);return b},getVertices:function(a){return!0===a?[]:this.components.slice(0,this.components.length-1)},CLASS_NAME:"OpenLayers.Geometry.LinearRing"});OpenLayers.Geometry.Polygon=OpenLayers.Class(OpenLayers.Geometry.Collection,{componentTypes:["OpenLayers.Geometry.LinearRing"],getArea:function(){var a=0;if(this.components&&0<this.components.length)for(var a=a+Math.abs(this.components[0].getArea()),b=1,c=this.components.length;b<c;b++)a-=Math.abs(this.components[b].getArea());return a},getGeodesicArea:function(a){var b=0;if(this.components&&0<this.components.length)for(var b=b+Math.abs(this.components[0].getGeodesicArea(a)),c=1,d=this.components.length;c< d;c++)b-=Math.abs(this.components[c].getGeodesicArea(a));return b},containsPoint:function(a){var b=this.components.length,c=!1;if(0<b&&(c=this.components[0].containsPoint(a),1!==c&&c&&1<b))for(var d,e=1;e<b;++e)if(d=this.components[e].containsPoint(a)){c=1===d?1:!1;break}return c},intersects:function(a){var b=!1,c,d;if("OpenLayers.Geometry.Point"==a.CLASS_NAME)b=this.containsPoint(a);else if("OpenLayers.Geometry.LineString"==a.CLASS_NAME||"OpenLayers.Geometry.LinearRing"==a.CLASS_NAME){c=0;for(d= this.components.length;c<d&&!(b=a.intersects(this.components[c]));++c);if(!b){c=0;for(d=a.components.length;c<d&&!(b=this.containsPoint(a.components[c]));++c);}}else{c=0;for(d=a.components.length;c<d&&!(b=this.intersects(a.components[c]));++c);}if(!b&&"OpenLayers.Geometry.Polygon"==a.CLASS_NAME){var e=this.components[0];c=0;for(d=e.components.length;c<d&&!(b=a.containsPoint(e.components[c]));++c);}return b},distanceTo:function(a,b){return b&&!1===b.edge&&this.intersects(a)?0:OpenLayers.Geometry.Collection.prototype.distanceTo.apply(this, [a,b])},CLASS_NAME:"OpenLayers.Geometry.Polygon"});OpenLayers.Geometry.Polygon.createRegularPolygon=function(a,b,c,d){var e=Math.PI*(1/c-0.5);d&&(e+=d/180*Math.PI);for(var f,g=[],h=0;h<c;++h)f=e+2*h*Math.PI/c,d=a.x+b*Math.cos(f),f=a.y+b*Math.sin(f),g.push(new OpenLayers.Geometry.Point(d,f));a=new OpenLayers.Geometry.LinearRing(g);return new OpenLayers.Geometry.Polygon([a])};OpenLayers.Geometry.MultiPolygon=OpenLayers.Class(OpenLayers.Geometry.Collection,{componentTypes:["OpenLayers.Geometry.Polygon"],CLASS_NAME:"OpenLayers.Geometry.MultiPolygon"});OpenLayers.Format.GML=OpenLayers.Class(OpenLayers.Format.XML,{featureNS:"http://mapserver.gis.umn.edu/mapserver",featurePrefix:"feature",featureName:"featureMember",layerName:"features",geometryName:"geometry",collectionName:"FeatureCollection",gmlns:"http://www.opengis.net/gml",extractAttributes:!0,xy:!0,initialize:function(a){this.regExes={trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g};OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){"string"== typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var a=this.getElementsByTagNameNS(a.documentElement,this.gmlns,this.featureName),b=[],c=0;c<a.length;c++){var d=this.parseFeature(a[c]);d&&b.push(d)}return b},parseFeature:function(a){for(var b="MultiPolygon Polygon MultiLineString LineString MultiPoint Point Envelope".split(" "),c,d,e,f=0;f<b.length;++f)if(c=b[f],d=this.getElementsByTagNameNS(a,this.gmlns,c),0<d.length){if(e=this.parseGeometry[c.toLowerCase()])e=e.apply(this, [d[0]]),this.internalProjection&&this.externalProjection&&e.transform(this.externalProjection,this.internalProjection);else throw new TypeError("Unsupported geometry type: "+c);break}var g;c=this.getElementsByTagNameNS(a,this.gmlns,"Box");for(f=0;f<c.length;++f)b=c[f],d=this.parseGeometry.box.apply(this,[b]),b=b.parentNode,"boundedBy"===(b.localName||b.nodeName.split(":").pop())?g=d:e=d.toGeometry();var h;this.extractAttributes&&(h=this.parseAttributes(a));h=new OpenLayers.Feature.Vector(e,h);h.bounds= g;h.gml={featureType:a.firstChild.nodeName.split(":")[1],featureNS:a.firstChild.namespaceURI,featureNSPrefix:a.firstChild.prefix};for(var a=a.firstChild,i;a&&!(1==a.nodeType&&(i=a.getAttribute("fid")||a.getAttribute("id")));)a=a.nextSibling;h.fid=i;return h},parseGeometry:{point:function(a){var b,c;c=[];b=this.getElementsByTagNameNS(a,this.gmlns,"pos");0<b.length&&(c=b[0].firstChild.nodeValue,c=c.replace(this.regExes.trimSpace,""),c=c.split(this.regExes.splitSpace));0==c.length&&(b=this.getElementsByTagNameNS(a, this.gmlns,"coordinates"),0<b.length&&(c=b[0].firstChild.nodeValue,c=c.replace(this.regExes.removeSpace,""),c=c.split(",")));0==c.length&&(b=this.getElementsByTagNameNS(a,this.gmlns,"coord"),0<b.length&&(a=this.getElementsByTagNameNS(b[0],this.gmlns,"X"),b=this.getElementsByTagNameNS(b[0],this.gmlns,"Y"),0<a.length&&0<b.length&&(c=[a[0].firstChild.nodeValue,b[0].firstChild.nodeValue])));2==c.length&&(c[2]=null);return this.xy?new OpenLayers.Geometry.Point(c[0],c[1],c[2]):new OpenLayers.Geometry.Point(c[1], c[0],c[2])},multipoint:function(a){var a=this.getElementsByTagNameNS(a,this.gmlns,"Point"),b=[];if(0<a.length)for(var c,d=0;d<a.length;++d)(c=this.parseGeometry.point.apply(this,[a[d]]))&&b.push(c);return new OpenLayers.Geometry.MultiPoint(b)},linestring:function(a,b){var c,d;d=[];var e=[];c=this.getElementsByTagNameNS(a,this.gmlns,"posList");if(0<c.length){d=this.getChildValue(c[0]);d=d.replace(this.regExes.trimSpace,"");d=d.split(this.regExes.splitSpace);var f=parseInt(c[0].getAttribute("dimension")), g,h,i;for(c=0;c<d.length/f;++c)g=c*f,h=d[g],i=d[g+1],g=2==f?null:d[g+2],this.xy?e.push(new OpenLayers.Geometry.Point(h,i,g)):e.push(new OpenLayers.Geometry.Point(i,h,g))}if(0==d.length&&(c=this.getElementsByTagNameNS(a,this.gmlns,"coordinates"),0<c.length)){d=this.getChildValue(c[0]);d=d.replace(this.regExes.trimSpace,"");d=d.replace(this.regExes.trimComma,",");f=d.split(this.regExes.splitSpace);for(c=0;c<f.length;++c)d=f[c].split(","),2==d.length&&(d[2]=null),this.xy?e.push(new OpenLayers.Geometry.Point(d[0], d[1],d[2])):e.push(new OpenLayers.Geometry.Point(d[1],d[0],d[2]))}d=null;0!=e.length&&(d=b?new OpenLayers.Geometry.LinearRing(e):new OpenLayers.Geometry.LineString(e));return d},multilinestring:function(a){var a=this.getElementsByTagNameNS(a,this.gmlns,"LineString"),b=[];if(0<a.length)for(var c,d=0;d<a.length;++d)(c=this.parseGeometry.linestring.apply(this,[a[d]]))&&b.push(c);return new OpenLayers.Geometry.MultiLineString(b)},polygon:function(a){var a=this.getElementsByTagNameNS(a,this.gmlns,"LinearRing"), b=[];if(0<a.length)for(var c,d=0;d<a.length;++d)(c=this.parseGeometry.linestring.apply(this,[a[d],!0]))&&b.push(c);return new OpenLayers.Geometry.Polygon(b)},multipolygon:function(a){var a=this.getElementsByTagNameNS(a,this.gmlns,"Polygon"),b=[];if(0<a.length)for(var c,d=0;d<a.length;++d)(c=this.parseGeometry.polygon.apply(this,[a[d]]))&&b.push(c);return new OpenLayers.Geometry.MultiPolygon(b)},envelope:function(a){var b=[],c,d,e=this.getElementsByTagNameNS(a,this.gmlns,"lowerCorner");if(0<e.length){c= [];0<e.length&&(c=e[0].firstChild.nodeValue,c=c.replace(this.regExes.trimSpace,""),c=c.split(this.regExes.splitSpace));2==c.length&&(c[2]=null);var f=this.xy?new OpenLayers.Geometry.Point(c[0],c[1],c[2]):new OpenLayers.Geometry.Point(c[1],c[0],c[2])}a=this.getElementsByTagNameNS(a,this.gmlns,"upperCorner");if(0<a.length){c=[];0<a.length&&(c=a[0].firstChild.nodeValue,c=c.replace(this.regExes.trimSpace,""),c=c.split(this.regExes.splitSpace));2==c.length&&(c[2]=null);var g=this.xy?new OpenLayers.Geometry.Point(c[0], c[1],c[2]):new OpenLayers.Geometry.Point(c[1],c[0],c[2])}f&&g&&(b.push(new OpenLayers.Geometry.Point(f.x,f.y)),b.push(new OpenLayers.Geometry.Point(g.x,f.y)),b.push(new OpenLayers.Geometry.Point(g.x,g.y)),b.push(new OpenLayers.Geometry.Point(f.x,g.y)),b.push(new OpenLayers.Geometry.Point(f.x,f.y)),b=new OpenLayers.Geometry.LinearRing(b),d=new OpenLayers.Geometry.Polygon([b]));return d},box:function(a){var b=this.getElementsByTagNameNS(a,this.gmlns,"coordinates"),c=a=null;0<b.length&&(b=b[0].firstChild.nodeValue, b=b.split(" "),2==b.length&&(a=b[0].split(","),c=b[1].split(",")));if(null!==a&&null!==c)return new OpenLayers.Bounds(parseFloat(a[0]),parseFloat(a[1]),parseFloat(c[0]),parseFloat(c[1]))}},parseAttributes:function(a){for(var b={},a=a.firstChild,c,d,e;a;){if(1==a.nodeType){a=a.childNodes;for(c=0;c<a.length;++c)if(d=a[c],1==d.nodeType)if(e=d.childNodes,1==e.length){if(e=e[0],3==e.nodeType||4==e.nodeType)d=d.prefix?d.nodeName.split(":")[1]:d.nodeName,e=e.nodeValue.replace(this.regExes.trimSpace,""), b[d]=e}else b[d.nodeName.split(":").pop()]=null;break}a=a.nextSibling}return b},write:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=this.createElementNS("http://www.opengis.net/wfs","wfs:"+this.collectionName),c=0;c<a.length;c++)b.appendChild(this.createFeatureXML(a[c]));return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFeatureXML:function(a){var b=this.buildGeometryNode(a.geometry),c=this.createElementNS(this.featureNS,this.featurePrefix+":"+this.geometryName);c.appendChild(b); var b=this.createElementNS(this.gmlns,"gml:"+this.featureName),d=this.createElementNS(this.featureNS,this.featurePrefix+":"+this.layerName);d.setAttribute("fid",a.fid||a.id);d.appendChild(c);for(var e in a.attributes){var c=this.createTextNode(a.attributes[e]),f=this.createElementNS(this.featureNS,this.featurePrefix+":"+e.substring(e.lastIndexOf(":")+1));f.appendChild(c);d.appendChild(f)}b.appendChild(d);return b},buildGeometryNode:function(a){this.externalProjection&&this.internalProjection&&(a= a.clone(),a.transform(this.internalProjection,this.externalProjection));var b=a.CLASS_NAME;return this.buildGeometry[b.substring(b.lastIndexOf(".")+1).toLowerCase()].apply(this,[a])},buildGeometry:{point:function(a){var b=this.createElementNS(this.gmlns,"gml:Point");b.appendChild(this.buildCoordinatesNode(a));return b},multipoint:function(a){for(var b=this.createElementNS(this.gmlns,"gml:MultiPoint"),a=a.components,c,d,e=0;e<a.length;e++)c=this.createElementNS(this.gmlns,"gml:pointMember"),d=this.buildGeometry.point.apply(this, [a[e]]),c.appendChild(d),b.appendChild(c);return b},linestring:function(a){var b=this.createElementNS(this.gmlns,"gml:LineString");b.appendChild(this.buildCoordinatesNode(a));return b},multilinestring:function(a){for(var b=this.createElementNS(this.gmlns,"gml:MultiLineString"),a=a.components,c,d,e=0;e<a.length;++e)c=this.createElementNS(this.gmlns,"gml:lineStringMember"),d=this.buildGeometry.linestring.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},linearring:function(a){var b=this.createElementNS(this.gmlns, "gml:LinearRing");b.appendChild(this.buildCoordinatesNode(a));return b},polygon:function(a){for(var b=this.createElementNS(this.gmlns,"gml:Polygon"),a=a.components,c,d,e=0;e<a.length;++e)c=0==e?"outerBoundaryIs":"innerBoundaryIs",c=this.createElementNS(this.gmlns,"gml:"+c),d=this.buildGeometry.linearring.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},multipolygon:function(a){for(var b=this.createElementNS(this.gmlns,"gml:MultiPolygon"),a=a.components,c,d,e=0;e<a.length;++e)c=this.createElementNS(this.gmlns, "gml:polygonMember"),d=this.buildGeometry.polygon.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},bounds:function(a){var b=this.createElementNS(this.gmlns,"gml:Box");b.appendChild(this.buildCoordinatesNode(a));return b}},buildCoordinatesNode:function(a){var b=this.createElementNS(this.gmlns,"gml:coordinates");b.setAttribute("decimal",".");b.setAttribute("cs",",");b.setAttribute("ts"," ");var c=[];if(a instanceof OpenLayers.Bounds)c.push(a.left+","+a.bottom),c.push(a.right+","+a.top); else for(var a=a.components?a.components:[a],d=0;d<a.length;d++)c.push(a[d].x+","+a[d].y);c=this.createTextNode(c.join(" "));b.appendChild(c);return b},CLASS_NAME:"OpenLayers.Format.GML"});OpenLayers.Format.GML||(OpenLayers.Format.GML={}); OpenLayers.Format.GML.Base=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{gml:"http://www.opengis.net/gml",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance",wfs:"http://www.opengis.net/wfs"},defaultPrefix:"gml",schemaLocation:null,featureType:null,featureNS:null,geometryName:"geometry",extractAttributes:!0,srsName:null,xy:!0,geometryTypes:null,singleFeatureType:null,regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g,featureMember:/^(.*:)?featureMembers?$/}, initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a]);this.setGeometryTypes();a&&a.featureNS&&this.setNamespace("feature",a.featureNS);this.singleFeatureType=!a||typeof a.featureType==="string"},read:function(a){typeof a=="string"&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));if(a&&a.nodeType==9)a=a.documentElement;var b=[];this.readNode(a,{features:b},true);if(b.length==0){var c=this.getElementsByTagNameNS(a,this.namespaces.gml,"featureMember");if(c.length)for(var a= 0,d=c.length;a<d;++a)this.readNode(c[a],{features:b},true);else{c=this.getElementsByTagNameNS(a,this.namespaces.gml,"featureMembers");c.length&&this.readNode(c[0],{features:b},true)}}return b},readNode:function(a,b,c){if(c===true&&this.autoConfig===true){this.featureType=null;delete this.namespaceAlias[this.featureNS];delete this.namespaces.feature;this.featureNS=null}if(!this.featureNS&&!(a.prefix in this.namespaces)&&a.parentNode.namespaceURI==this.namespaces.gml&&this.regExes.featureMember.test(a.parentNode.nodeName)){this.featureType= a.nodeName.split(":").pop();this.setNamespace("feature",a.namespaceURI);this.featureNS=a.namespaceURI;this.autoConfig=true}return OpenLayers.Format.XML.prototype.readNode.apply(this,[a,b])},readers:{gml:{featureMember:function(a,b){this.readChildNodes(a,b)},featureMembers:function(a,b){this.readChildNodes(a,b)},name:function(a,b){b.name=this.getChildValue(a)},boundedBy:function(a,b){var c={};this.readChildNodes(a,c);if(c.components&&c.components.length>0)b.bounds=c.components[0]},Point:function(a, b){var c={points:[]};this.readChildNodes(a,c);if(!b.components)b.components=[];b.components.push(c.points[0])},coordinates:function(a,b){for(var c=this.getChildValue(a).replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),c=c.split(this.regExes.splitSpace),d,e=c.length,f=Array(e),g=0;g<e;++g){d=c[g].split(",");f[g]=this.xy?new OpenLayers.Geometry.Point(d[0],d[1],d[2]):new OpenLayers.Geometry.Point(d[1],d[0],d[2])}b.points=f},coord:function(a,b){var c={};this.readChildNodes(a, c);if(!b.points)b.points=[];b.points.push(new OpenLayers.Geometry.Point(c.x,c.y,c.z))},X:function(a,b){b.x=this.getChildValue(a)},Y:function(a,b){b.y=this.getChildValue(a)},Z:function(a,b){b.z=this.getChildValue(a)},MultiPoint:function(a,b){var c={components:[]};this.readChildNodes(a,c);b.components=[new OpenLayers.Geometry.MultiPoint(c.components)]},pointMember:function(a,b){this.readChildNodes(a,b)},LineString:function(a,b){var c={};this.readChildNodes(a,c);if(!b.components)b.components=[];b.components.push(new OpenLayers.Geometry.LineString(c.points))}, MultiLineString:function(a,b){var c={components:[]};this.readChildNodes(a,c);b.components=[new OpenLayers.Geometry.MultiLineString(c.components)]},lineStringMember:function(a,b){this.readChildNodes(a,b)},Polygon:function(a,b){var c={outer:null,inner:[]};this.readChildNodes(a,c);c.inner.unshift(c.outer);if(!b.components)b.components=[];b.components.push(new OpenLayers.Geometry.Polygon(c.inner))},LinearRing:function(a,b){var c={};this.readChildNodes(a,c);b.components=[new OpenLayers.Geometry.LinearRing(c.points)]}, MultiPolygon:function(a,b){var c={components:[]};this.readChildNodes(a,c);b.components=[new OpenLayers.Geometry.MultiPolygon(c.components)]},polygonMember:function(a,b){this.readChildNodes(a,b)},GeometryCollection:function(a,b){var c={components:[]};this.readChildNodes(a,c);b.components=[new OpenLayers.Geometry.Collection(c.components)]},geometryMember:function(a,b){this.readChildNodes(a,b)}},feature:{"*":function(a,b){var c,d=a.localName||a.nodeName.split(":").pop();b.features?!this.singleFeatureType&& OpenLayers.Util.indexOf(this.featureType,d)!==-1?c="_typeName":d===this.featureType&&(c="_typeName"):a.childNodes.length==0||a.childNodes.length==1&&a.firstChild.nodeType==3?this.extractAttributes&&(c="_attribute"):c="_geometry";c&&this.readers.feature[c].apply(this,[a,b])},_typeName:function(a,b){var c={components:[],attributes:{}};this.readChildNodes(a,c);if(c.name)c.attributes.name=c.name;var d=new OpenLayers.Feature.Vector(c.components[0],c.attributes);if(!this.singleFeatureType){d.type=a.nodeName.split(":").pop(); d.namespace=a.namespaceURI}var e=a.getAttribute("fid")||this.getAttributeNS(a,this.namespaces.gml,"id");if(e)d.fid=e;this.internalProjection&&(this.externalProjection&&d.geometry)&&d.geometry.transform(this.externalProjection,this.internalProjection);if(c.bounds)d.bounds=c.bounds;b.features.push(d)},_geometry:function(a,b){if(!this.geometryName)this.geometryName=a.nodeName.split(":").pop();this.readChildNodes(a,b)},_attribute:function(a,b){var c=a.localName||a.nodeName.split(":").pop(),d=this.getChildValue(a); b.attributes[c]=d}},wfs:{FeatureCollection:function(a,b){this.readChildNodes(a,b)}}},write:function(a){a=this.writeNode("gml:"+(OpenLayers.Util.isArray(a)?"featureMembers":"featureMember"),a);this.setAttributeNS(a,this.namespaces.xsi,"xsi:schemaLocation",this.schemaLocation);return OpenLayers.Format.XML.prototype.write.apply(this,[a])},writers:{gml:{featureMember:function(a){var b=this.createElementNSPlus("gml:featureMember");this.writeNode("feature:_typeName",a,b);return b},MultiPoint:function(a){for(var b= this.createElementNSPlus("gml:MultiPoint"),a=a.components||[a],c=0,d=a.length;c<d;++c)this.writeNode("pointMember",a[c],b);return b},pointMember:function(a){var b=this.createElementNSPlus("gml:pointMember");this.writeNode("Point",a,b);return b},MultiLineString:function(a){for(var b=this.createElementNSPlus("gml:MultiLineString"),a=a.components||[a],c=0,d=a.length;c<d;++c)this.writeNode("lineStringMember",a[c],b);return b},lineStringMember:function(a){var b=this.createElementNSPlus("gml:lineStringMember"); this.writeNode("LineString",a,b);return b},MultiPolygon:function(a){for(var b=this.createElementNSPlus("gml:MultiPolygon"),a=a.components||[a],c=0,d=a.length;c<d;++c)this.writeNode("polygonMember",a[c],b);return b},polygonMember:function(a){var b=this.createElementNSPlus("gml:polygonMember");this.writeNode("Polygon",a,b);return b},GeometryCollection:function(a){for(var b=this.createElementNSPlus("gml:GeometryCollection"),c=0,d=a.components.length;c<d;++c)this.writeNode("geometryMember",a.components[c], b);return b},geometryMember:function(a){var b=this.createElementNSPlus("gml:geometryMember"),a=this.writeNode("feature:_geometry",a);b.appendChild(a.firstChild);return b}},feature:{_typeName:function(a){var b=this.createElementNSPlus("feature:"+this.featureType,{attributes:{fid:a.fid}});a.geometry&&this.writeNode("feature:_geometry",a.geometry,b);for(var c in a.attributes){var d=a.attributes[c];d!=null&&this.writeNode("feature:_attribute",{name:c,value:d},b)}return b},_geometry:function(a){this.externalProjection&& this.internalProjection&&(a=a.clone().transform(this.internalProjection,this.externalProjection));var b=this.createElementNSPlus("feature:"+this.geometryName),a=this.writeNode("gml:"+this.geometryTypes[a.CLASS_NAME],a,b);this.srsName&&a.setAttribute("srsName",this.srsName);return b},_attribute:function(a){return this.createElementNSPlus("feature:"+a.name,{value:a.value})}},wfs:{FeatureCollection:function(a){for(var b=this.createElementNSPlus("wfs:FeatureCollection"),c=0,d=a.length;c<d;++c)this.writeNode("gml:featureMember", a[c],b);return b}}},setGeometryTypes:function(){this.geometryTypes={"OpenLayers.Geometry.Point":"Point","OpenLayers.Geometry.MultiPoint":"MultiPoint","OpenLayers.Geometry.LineString":"LineString","OpenLayers.Geometry.MultiLineString":"MultiLineString","OpenLayers.Geometry.Polygon":"Polygon","OpenLayers.Geometry.MultiPolygon":"MultiPolygon","OpenLayers.Geometry.Collection":"GeometryCollection"}},CLASS_NAME:"OpenLayers.Format.GML.Base"});OpenLayers.Format.GML.v3=OpenLayers.Class(OpenLayers.Format.GML.Base,{schemaLocation:"http://www.opengis.net/gml http://schemas.opengis.net/gml/3.1.1/profiles/gmlsfProfile/1.0.0/gmlsf.xsd",curve:!1,multiCurve:!0,surface:!1,multiSurface:!0,initialize:function(a){OpenLayers.Format.GML.Base.prototype.initialize.apply(this,[a])},readers:{gml:OpenLayers.Util.applyDefaults({featureMembers:function(a,b){this.readChildNodes(a,b)},Curve:function(a,b){var c={points:[]};this.readChildNodes(a,c);b.components|| (b.components=[]);b.components.push(new OpenLayers.Geometry.LineString(c.points))},segments:function(a,b){this.readChildNodes(a,b)},LineStringSegment:function(a,b){var c={};this.readChildNodes(a,c);c.points&&Array.prototype.push.apply(b.points,c.points)},pos:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(this.regExes.splitSpace),c=this.xy?new OpenLayers.Geometry.Point(c[0],c[1],c[2]):new OpenLayers.Geometry.Point(c[1],c[0],c[2]);b.points=[c]},posList:function(a, b){for(var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(this.regExes.splitSpace),d=parseInt(a.getAttribute("dimension"))||2,e,f,g,h=Array(c.length/d),i=0,j=c.length;i<j;i+=d)e=c[i],f=c[i+1],g=2==d?void 0:c[i+2],h[i/d]=this.xy?new OpenLayers.Geometry.Point(e,f,g):new OpenLayers.Geometry.Point(f,e,g);b.points=h},Surface:function(a,b){this.readChildNodes(a,b)},patches:function(a,b){this.readChildNodes(a,b)},PolygonPatch:function(a,b){this.readers.gml.Polygon.apply(this,[a,b])},exterior:function(a, b){var c={};this.readChildNodes(a,c);b.outer=c.components[0]},interior:function(a,b){var c={};this.readChildNodes(a,c);b.inner.push(c.components[0])},MultiCurve:function(a,b){var c={components:[]};this.readChildNodes(a,c);0<c.components.length&&(b.components=[new OpenLayers.Geometry.MultiLineString(c.components)])},curveMember:function(a,b){this.readChildNodes(a,b)},MultiSurface:function(a,b){var c={components:[]};this.readChildNodes(a,c);0<c.components.length&&(b.components=[new OpenLayers.Geometry.MultiPolygon(c.components)])}, surfaceMember:function(a,b){this.readChildNodes(a,b)},surfaceMembers:function(a,b){this.readChildNodes(a,b)},pointMembers:function(a,b){this.readChildNodes(a,b)},lineStringMembers:function(a,b){this.readChildNodes(a,b)},polygonMembers:function(a,b){this.readChildNodes(a,b)},geometryMembers:function(a,b){this.readChildNodes(a,b)},Envelope:function(a,b){var c={points:Array(2)};this.readChildNodes(a,c);b.components||(b.components=[]);var d=c.points[0],c=c.points[1];b.components.push(new OpenLayers.Bounds(d.x, d.y,c.x,c.y))},lowerCorner:function(a,b){var c={};this.readers.gml.pos.apply(this,[a,c]);b.points[0]=c.points[0]},upperCorner:function(a,b){var c={};this.readers.gml.pos.apply(this,[a,c]);b.points[1]=c.points[0]}},OpenLayers.Format.GML.Base.prototype.readers.gml),feature:OpenLayers.Format.GML.Base.prototype.readers.feature,wfs:OpenLayers.Format.GML.Base.prototype.readers.wfs},write:function(a){a=this.writeNode("gml:"+(OpenLayers.Util.isArray(a)?"featureMembers":"featureMember"),a);this.setAttributeNS(a, this.namespaces.xsi,"xsi:schemaLocation",this.schemaLocation);return OpenLayers.Format.XML.prototype.write.apply(this,[a])},writers:{gml:OpenLayers.Util.applyDefaults({featureMembers:function(a){for(var b=this.createElementNSPlus("gml:featureMembers"),c=0,d=a.length;c<d;++c)this.writeNode("feature:_typeName",a[c],b);return b},Point:function(a){var b=this.createElementNSPlus("gml:Point");this.writeNode("pos",a,b);return b},pos:function(a){return this.createElementNSPlus("gml:pos",{value:this.xy?a.x+ " "+a.y:a.y+" "+a.x})},LineString:function(a){var b=this.createElementNSPlus("gml:LineString");this.writeNode("posList",a.components,b);return b},Curve:function(a){var b=this.createElementNSPlus("gml:Curve");this.writeNode("segments",a,b);return b},segments:function(a){var b=this.createElementNSPlus("gml:segments");this.writeNode("LineStringSegment",a,b);return b},LineStringSegment:function(a){var b=this.createElementNSPlus("gml:LineStringSegment");this.writeNode("posList",a.components,b);return b}, posList:function(a){for(var b=a.length,c=Array(b),d,e=0;e<b;++e)d=a[e],c[e]=this.xy?d.x+" "+d.y:d.y+" "+d.x;return this.createElementNSPlus("gml:posList",{value:c.join(" ")})},Surface:function(a){var b=this.createElementNSPlus("gml:Surface");this.writeNode("patches",a,b);return b},patches:function(a){var b=this.createElementNSPlus("gml:patches");this.writeNode("PolygonPatch",a,b);return b},PolygonPatch:function(a){var b=this.createElementNSPlus("gml:PolygonPatch",{attributes:{interpolation:"planar"}}); this.writeNode("exterior",a.components[0],b);for(var c=1,d=a.components.length;c<d;++c)this.writeNode("interior",a.components[c],b);return b},Polygon:function(a){var b=this.createElementNSPlus("gml:Polygon");this.writeNode("exterior",a.components[0],b);for(var c=1,d=a.components.length;c<d;++c)this.writeNode("interior",a.components[c],b);return b},exterior:function(a){var b=this.createElementNSPlus("gml:exterior");this.writeNode("LinearRing",a,b);return b},interior:function(a){var b=this.createElementNSPlus("gml:interior"); this.writeNode("LinearRing",a,b);return b},LinearRing:function(a){var b=this.createElementNSPlus("gml:LinearRing");this.writeNode("posList",a.components,b);return b},MultiCurve:function(a){for(var b=this.createElementNSPlus("gml:MultiCurve"),a=a.components||[a],c=0,d=a.length;c<d;++c)this.writeNode("curveMember",a[c],b);return b},curveMember:function(a){var b=this.createElementNSPlus("gml:curveMember");this.curve?this.writeNode("Curve",a,b):this.writeNode("LineString",a,b);return b},MultiSurface:function(a){for(var b= this.createElementNSPlus("gml:MultiSurface"),a=a.components||[a],c=0,d=a.length;c<d;++c)this.writeNode("surfaceMember",a[c],b);return b},surfaceMember:function(a){var b=this.createElementNSPlus("gml:surfaceMember");this.surface?this.writeNode("Surface",a,b):this.writeNode("Polygon",a,b);return b},Envelope:function(a){var b=this.createElementNSPlus("gml:Envelope");this.writeNode("lowerCorner",a,b);this.writeNode("upperCorner",a,b);this.srsName&&b.setAttribute("srsName",this.srsName);return b},lowerCorner:function(a){return this.createElementNSPlus("gml:lowerCorner", {value:this.xy?a.left+" "+a.bottom:a.bottom+" "+a.left})},upperCorner:function(a){return this.createElementNSPlus("gml:upperCorner",{value:this.xy?a.right+" "+a.top:a.top+" "+a.right})}},OpenLayers.Format.GML.Base.prototype.writers.gml),feature:OpenLayers.Format.GML.Base.prototype.writers.feature,wfs:OpenLayers.Format.GML.Base.prototype.writers.wfs},setGeometryTypes:function(){this.geometryTypes={"OpenLayers.Geometry.Point":"Point","OpenLayers.Geometry.MultiPoint":"MultiPoint","OpenLayers.Geometry.LineString":!0=== this.curve?"Curve":"LineString","OpenLayers.Geometry.MultiLineString":!1===this.multiCurve?"MultiLineString":"MultiCurve","OpenLayers.Geometry.Polygon":!0===this.surface?"Surface":"Polygon","OpenLayers.Geometry.MultiPolygon":!1===this.multiSurface?"MultiPolygon":"MultiSurface","OpenLayers.Geometry.Collection":"GeometryCollection"}},CLASS_NAME:"OpenLayers.Format.GML.v3"});OpenLayers.Format.Filter.v1_1_0=OpenLayers.Class(OpenLayers.Format.GML.v3,OpenLayers.Format.Filter.v1,{VERSION:"1.1.0",schemaLocation:"http://www.opengis.net/ogc/filter/1.1.0/filter.xsd",initialize:function(a){OpenLayers.Format.GML.v3.prototype.initialize.apply(this,[a])},readers:{ogc:OpenLayers.Util.applyDefaults({PropertyIsEqualTo:function(a,b){var c=a.getAttribute("matchCase"),c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.EQUAL_TO,matchCase:!("false"===c||"0"===c)});this.readChildNodes(a, c);b.filters.push(c)},PropertyIsNotEqualTo:function(a,b){var c=a.getAttribute("matchCase"),c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.NOT_EQUAL_TO,matchCase:!("false"===c||"0"===c)});this.readChildNodes(a,c);b.filters.push(c)},PropertyIsLike:function(a,b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.LIKE});this.readChildNodes(a,c);var d=a.getAttribute("wildCard"),e=a.getAttribute("singleChar"),f=a.getAttribute("escapeChar");c.value2regex(d,e, f);b.filters.push(c)}},OpenLayers.Format.Filter.v1.prototype.readers.ogc),gml:OpenLayers.Format.GML.v3.prototype.readers.gml,feature:OpenLayers.Format.GML.v3.prototype.readers.feature},writers:{ogc:OpenLayers.Util.applyDefaults({PropertyIsEqualTo:function(a){var b=this.createElementNSPlus("ogc:PropertyIsEqualTo",{attributes:{matchCase:a.matchCase}});this.writeNode("PropertyName",a,b);this.writeOgcExpression(a.value,b);return b},PropertyIsNotEqualTo:function(a){var b=this.createElementNSPlus("ogc:PropertyIsNotEqualTo", {attributes:{matchCase:a.matchCase}});this.writeNode("PropertyName",a,b);this.writeOgcExpression(a.value,b);return b},PropertyIsLike:function(a){var b=this.createElementNSPlus("ogc:PropertyIsLike",{attributes:{matchCase:a.matchCase,wildCard:"*",singleChar:".",escapeChar:"!"}});this.writeNode("PropertyName",a,b);this.writeNode("Literal",a.regex2value(),b);return b},BBOX:function(a){var b=this.createElementNSPlus("ogc:BBOX");a.property&&this.writeNode("PropertyName",a,b);var c=this.writeNode("gml:Envelope", a.value);a.projection&&c.setAttribute("srsName",a.projection);b.appendChild(c);return b},SortBy:function(a){for(var b=this.createElementNSPlus("ogc:SortBy"),c=0,d=a.length;c<d;c++)this.writeNode("ogc:SortProperty",a[c],b);return b},SortProperty:function(a){var b=this.createElementNSPlus("ogc:SortProperty");this.writeNode("ogc:PropertyName",a,b);this.writeNode("ogc:SortOrder","DESC"==a.order?"DESC":"ASC",b);return b},SortOrder:function(a){return this.createElementNSPlus("ogc:SortOrder",{value:a})}}, OpenLayers.Format.Filter.v1.prototype.writers.ogc),gml:OpenLayers.Format.GML.v3.prototype.writers.gml,feature:OpenLayers.Format.GML.v3.prototype.writers.feature},writeSpatial:function(a,b){var c=this.createElementNSPlus("ogc:"+b);this.writeNode("PropertyName",a,c);if(a.value instanceof OpenLayers.Filter.Function)this.writeNode("Function",a.value,c);else{var d;d=a.value instanceof OpenLayers.Geometry?this.writeNode("feature:_geometry",a.value).firstChild:this.writeNode("gml:Envelope",a.value);a.projection&& d.setAttribute("srsName",a.projection);c.appendChild(d)}return c},CLASS_NAME:"OpenLayers.Format.Filter.v1_1_0"});OpenLayers.Format.OWSCommon=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.0.0",getVersion:function(a){var b=this.version;b||((a=a.getAttribute("xmlns:ows"))&&"1.1"===a.substring(a.lastIndexOf("/")+1)&&(b="1.1.0"),b||(b=this.defaultVersion));return b},CLASS_NAME:"OpenLayers.Format.OWSCommon"});OpenLayers.Format.OWSCommon.v1=OpenLayers.Class(OpenLayers.Format.XML,{regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},read:function(a,b){OpenLayers.Util.applyDefaults(b,this.options);var c={};this.readChildNodes(a,c);return c},readers:{ows:{Exception:function(a,b){var c={code:a.getAttribute("exceptionCode"),locator:a.getAttribute("locator"),texts:[]};b.exceptions.push(c);this.readChildNodes(a,c)},ExceptionText:function(a,b){var c=this.getChildValue(a);b.texts.push(c)}, ServiceIdentification:function(a,b){b.serviceIdentification={};this.readChildNodes(a,b.serviceIdentification)},Title:function(a,b){b.title=this.getChildValue(a)},Abstract:function(a,b){b["abstract"]=this.getChildValue(a)},Keywords:function(a,b){b.keywords={};this.readChildNodes(a,b.keywords)},Keyword:function(a,b){b[this.getChildValue(a)]=!0},ServiceType:function(a,b){b.serviceType={codeSpace:a.getAttribute("codeSpace"),value:this.getChildValue(a)}},ServiceTypeVersion:function(a,b){b.serviceTypeVersion= this.getChildValue(a)},Fees:function(a,b){b.fees=this.getChildValue(a)},AccessConstraints:function(a,b){b.accessConstraints=this.getChildValue(a)},ServiceProvider:function(a,b){b.serviceProvider={};this.readChildNodes(a,b.serviceProvider)},ProviderName:function(a,b){b.providerName=this.getChildValue(a)},ProviderSite:function(a,b){b.providerSite=this.getAttributeNS(a,this.namespaces.xlink,"href")},ServiceContact:function(a,b){b.serviceContact={};this.readChildNodes(a,b.serviceContact)},IndividualName:function(a, b){b.individualName=this.getChildValue(a)},PositionName:function(a,b){b.positionName=this.getChildValue(a)},ContactInfo:function(a,b){b.contactInfo={};this.readChildNodes(a,b.contactInfo)},Phone:function(a,b){b.phone={};this.readChildNodes(a,b.phone)},Voice:function(a,b){b.voice=this.getChildValue(a)},Address:function(a,b){b.address={};this.readChildNodes(a,b.address)},DeliveryPoint:function(a,b){b.deliveryPoint=this.getChildValue(a)},City:function(a,b){b.city=this.getChildValue(a)},AdministrativeArea:function(a, b){b.administrativeArea=this.getChildValue(a)},PostalCode:function(a,b){b.postalCode=this.getChildValue(a)},Country:function(a,b){b.country=this.getChildValue(a)},ElectronicMailAddress:function(a,b){b.electronicMailAddress=this.getChildValue(a)},Role:function(a,b){b.role=this.getChildValue(a)},OperationsMetadata:function(a,b){b.operationsMetadata={};this.readChildNodes(a,b.operationsMetadata)},Operation:function(a,b){var c=a.getAttribute("name");b[c]={};this.readChildNodes(a,b[c])},DCP:function(a, b){b.dcp={};this.readChildNodes(a,b.dcp)},HTTP:function(a,b){b.http={};this.readChildNodes(a,b.http)},Get:function(a,b){b.get||(b.get=[]);var c={url:this.getAttributeNS(a,this.namespaces.xlink,"href")};this.readChildNodes(a,c);b.get.push(c)},Post:function(a,b){b.post||(b.post=[]);var c={url:this.getAttributeNS(a,this.namespaces.xlink,"href")};this.readChildNodes(a,c);b.post.push(c)},Parameter:function(a,b){b.parameters||(b.parameters={});var c=a.getAttribute("name");b.parameters[c]={};this.readChildNodes(a, b.parameters[c])},Constraint:function(a,b){b.constraints||(b.constraints={});var c=a.getAttribute("name");b.constraints[c]={};this.readChildNodes(a,b.constraints[c])},Value:function(a,b){b[this.getChildValue(a)]=!0},OutputFormat:function(a,b){b.formats.push({value:this.getChildValue(a)});this.readChildNodes(a,b)},WGS84BoundingBox:function(a,b){var c={};c.crs=a.getAttribute("crs");b.BoundingBox?b.BoundingBox.push(c):(b.projection=c.crs,c=b);this.readChildNodes(a,c)},BoundingBox:function(a,b){this.readers.ows.WGS84BoundingBox.apply(this, [a,b])},LowerCorner:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),c=c.split(this.regExes.splitSpace);b.left=c[0];b.bottom=c[1]},UpperCorner:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),c=c.split(this.regExes.splitSpace);b.right=c[0];b.top=c[1];b.bounds=new OpenLayers.Bounds(b.left,b.bottom,b.right,b.top);delete b.left;delete b.bottom;delete b.right;delete b.top}, Language:function(a,b){b.language=this.getChildValue(a)}}},writers:{ows:{BoundingBox:function(a){var b=this.createElementNSPlus("ows:BoundingBox",{attributes:{crs:a.projection}});this.writeNode("ows:LowerCorner",a,b);this.writeNode("ows:UpperCorner",a,b);return b},LowerCorner:function(a){return this.createElementNSPlus("ows:LowerCorner",{value:a.bounds.left+" "+a.bounds.bottom})},UpperCorner:function(a){return this.createElementNSPlus("ows:UpperCorner",{value:a.bounds.right+" "+a.bounds.top})},Identifier:function(a){return this.createElementNSPlus("ows:Identifier", {value:a})},Title:function(a){return this.createElementNSPlus("ows:Title",{value:a})},Abstract:function(a){return this.createElementNSPlus("ows:Abstract",{value:a})},OutputFormat:function(a){return this.createElementNSPlus("ows:OutputFormat",{value:a})}}},CLASS_NAME:"OpenLayers.Format.OWSCommon.v1"});OpenLayers.Format.OWSCommon.v1_0_0=OpenLayers.Class(OpenLayers.Format.OWSCommon.v1,{namespaces:{ows:"http://www.opengis.net/ows",xlink:"http://www.w3.org/1999/xlink"},readers:{ows:OpenLayers.Util.applyDefaults({ExceptionReport:function(a,b){b.success=!1;b.exceptionReport={version:a.getAttribute("version"),language:a.getAttribute("language"),exceptions:[]};this.readChildNodes(a,b.exceptionReport)}},OpenLayers.Format.OWSCommon.v1.prototype.readers.ows)},writers:{ows:OpenLayers.Format.OWSCommon.v1.prototype.writers.ows}, CLASS_NAME:"OpenLayers.Format.OWSCommon.v1_0_0"});OpenLayers.Format.WFST.v1_1_0=OpenLayers.Class(OpenLayers.Format.Filter.v1_1_0,OpenLayers.Format.WFST.v1,{version:"1.1.0",schemaLocations:{wfs:"http://schemas.opengis.net/wfs/1.1.0/wfs.xsd"},initialize:function(a){OpenLayers.Format.Filter.v1_1_0.prototype.initialize.apply(this,[a]);OpenLayers.Format.WFST.v1.prototype.initialize.apply(this,[a])},readNode:function(a,b){return OpenLayers.Format.GML.v3.prototype.readNode.apply(this,[a,b])},readers:{wfs:OpenLayers.Util.applyDefaults({FeatureCollection:function(a, b){b.numberOfFeatures=parseInt(a.getAttribute("numberOfFeatures"));OpenLayers.Format.WFST.v1.prototype.readers.wfs.FeatureCollection.apply(this,arguments)},TransactionResponse:function(a,b){b.insertIds=[];b.success=!1;this.readChildNodes(a,b)},TransactionSummary:function(a,b){b.success=!0},InsertResults:function(a,b){this.readChildNodes(a,b)},Feature:function(a,b){var c={fids:[]};this.readChildNodes(a,c);b.insertIds.push(c.fids[0])}},OpenLayers.Format.WFST.v1.prototype.readers.wfs),gml:OpenLayers.Format.GML.v3.prototype.readers.gml, feature:OpenLayers.Format.GML.v3.prototype.readers.feature,ogc:OpenLayers.Format.Filter.v1_1_0.prototype.readers.ogc,ows:OpenLayers.Format.OWSCommon.v1_0_0.prototype.readers.ows},writers:{wfs:OpenLayers.Util.applyDefaults({GetFeature:function(a){var b=OpenLayers.Format.WFST.v1.prototype.writers.wfs.GetFeature.apply(this,arguments);a&&this.setAttributes(b,{resultType:a.resultType,startIndex:a.startIndex,count:a.count});return b},Query:function(a){var a=OpenLayers.Util.extend({featureNS:this.featureNS, featurePrefix:this.featurePrefix,featureType:this.featureType,srsName:this.srsName},a),b=a.featurePrefix,c=this.createElementNSPlus("wfs:Query",{attributes:{typeName:(b?b+":":"")+a.featureType,srsName:a.srsName}});a.featureNS&&c.setAttribute("xmlns:"+b,a.featureNS);if(a.propertyNames)for(var b=0,d=a.propertyNames.length;b<d;b++)this.writeNode("wfs:PropertyName",{property:a.propertyNames[b]},c);a.filter&&(OpenLayers.Format.WFST.v1_1_0.prototype.setFilterProperty.call(this,a.filter),this.writeNode("ogc:Filter", a.filter,c));return c},PropertyName:function(a){return this.createElementNSPlus("wfs:PropertyName",{value:a.property})}},OpenLayers.Format.WFST.v1.prototype.writers.wfs),gml:OpenLayers.Format.GML.v3.prototype.writers.gml,feature:OpenLayers.Format.GML.v3.prototype.writers.feature,ogc:OpenLayers.Format.Filter.v1_1_0.prototype.writers.ogc},CLASS_NAME:"OpenLayers.Format.WFST.v1_1_0"});OpenLayers.Protocol=OpenLayers.Class({format:null,options:null,autoDestroy:!0,defaultFilter:null,initialize:function(a){a=a||{};OpenLayers.Util.extend(this,a);this.options=a},mergeWithDefaultFilter:function(a){return a&&this.defaultFilter?new OpenLayers.Filter.Logical({type:OpenLayers.Filter.Logical.AND,filters:[this.defaultFilter,a]}):a||this.defaultFilter||void 0},destroy:function(){this.format=this.options=null},read:function(a){a=a||{};a.filter=this.mergeWithDefaultFilter(a.filter)},create:function(){}, update:function(){},"delete":function(){},commit:function(){},abort:function(){},createCallback:function(a,b,c){return OpenLayers.Function.bind(function(){a.apply(this,[b,c])},this)},CLASS_NAME:"OpenLayers.Protocol"});OpenLayers.Protocol.Response=OpenLayers.Class({code:null,requestType:null,last:!0,features:null,data:null,reqFeatures:null,priv:null,error:null,initialize:function(a){OpenLayers.Util.extend(this,a)},success:function(){return 0<this.code},CLASS_NAME:"OpenLayers.Protocol.Response"}); OpenLayers.Protocol.Response.SUCCESS=1;OpenLayers.Protocol.Response.FAILURE=0;OpenLayers.Format.JSON=OpenLayers.Class(OpenLayers.Format,{indent:" ",space:" ",newline:"\n",level:0,pretty:!1,nativeJSON:function(){return!(!window.JSON||!("function"==typeof JSON.parse&&"function"==typeof JSON.stringify))}(),read:function(a,b){var c;if(this.nativeJSON)c=JSON.parse(a,b);else try{if(/^[\],:{}\s]*$/.test(a.replace(/\\["\\\/bfnrtu]/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))&&(c=eval("("+a+")"),"function"=== typeof b)){var d=function(a,c){if(c&&"object"===typeof c)for(var e in c)c.hasOwnProperty(e)&&(c[e]=d(e,c[e]));return b(a,c)};c=d("",c)}}catch(e){}this.keepData&&(this.data=c);return c},write:function(a,b){this.pretty=!!b;var c=null,d=typeof a;if(this.serialize[d])try{c=!this.pretty&&this.nativeJSON?JSON.stringify(a):this.serialize[d].apply(this,[a])}catch(e){OpenLayers.Console.error("Trouble serializing: "+e)}return c},writeIndent:function(){var a=[];if(this.pretty)for(var b=0;b<this.level;++b)a.push(this.indent); return a.join("")},writeNewline:function(){return this.pretty?this.newline:""},writeSpace:function(){return this.pretty?this.space:""},serialize:{object:function(a){if(null==a)return"null";if(a.constructor==Date)return this.serialize.date.apply(this,[a]);if(a.constructor==Array)return this.serialize.array.apply(this,[a]);var b=["{"];this.level+=1;var c,d,e,f=!1;for(c in a)a.hasOwnProperty(c)&&(d=OpenLayers.Format.JSON.prototype.write.apply(this,[c,this.pretty]),e=OpenLayers.Format.JSON.prototype.write.apply(this, [a[c],this.pretty]),null!=d&&null!=e&&(f&&b.push(","),b.push(this.writeNewline(),this.writeIndent(),d,":",this.writeSpace(),e),f=!0));this.level-=1;b.push(this.writeNewline(),this.writeIndent(),"}");return b.join("")},array:function(a){var b,c=["["];this.level+=1;for(var d=0,e=a.length;d<e;++d)b=OpenLayers.Format.JSON.prototype.write.apply(this,[a[d],this.pretty]),null!=b&&(0<d&&c.push(","),c.push(this.writeNewline(),this.writeIndent(),b));this.level-=1;c.push(this.writeNewline(),this.writeIndent(), "]");return c.join("")},string:function(a){var b={"\u0008":"\\b","\t":"\\t","\n":"\\n","\u000c":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"};return/["\\\x00-\x1f]/.test(a)?'"'+a.replace(/([\x00-\x1f\\"])/g,function(a,d){var e=b[d];if(e)return e;e=d.charCodeAt();return"\\u00"+Math.floor(e/16).toString(16)+(e%16).toString(16)})+'"':'"'+a+'"'},number:function(a){return isFinite(a)?""+a:"null"},"boolean":function(a){return""+a},date:function(a){function b(a){return 10>a?"0"+a:a}return'"'+a.getFullYear()+"-"+ b(a.getMonth()+1)+"-"+b(a.getDate())+"T"+b(a.getHours())+":"+b(a.getMinutes())+":"+b(a.getSeconds())+'"'}},CLASS_NAME:"OpenLayers.Format.JSON"});OpenLayers.Format.GeoJSON=OpenLayers.Class(OpenLayers.Format.JSON,{ignoreExtraDims:!1,read:function(a,b,c){var b=b?b:"FeatureCollection",d=null,e=null;if(e="string"==typeof a?OpenLayers.Format.JSON.prototype.read.apply(this,[a,c]):a)if("string"!=typeof e.type)OpenLayers.Console.error("Bad GeoJSON - no type: "+a);else{if(this.isValidType(e,b))switch(b){case "Geometry":try{d=this.parseGeometry(e)}catch(f){OpenLayers.Console.error(f)}break;case "Feature":try{d=this.parseFeature(e),d.type="Feature"}catch(g){OpenLayers.Console.error(g)}break; case "FeatureCollection":switch(d=[],e.type){case "Feature":try{d.push(this.parseFeature(e))}catch(h){d=null,OpenLayers.Console.error(h)}break;case "FeatureCollection":a=0;for(b=e.features.length;a<b;++a)try{d.push(this.parseFeature(e.features[a]))}catch(i){d=null,OpenLayers.Console.error(i)}break;default:try{var j=this.parseGeometry(e);d.push(new OpenLayers.Feature.Vector(j))}catch(k){d=null,OpenLayers.Console.error(k)}}}}else OpenLayers.Console.error("Bad JSON: "+a);return d},isValidType:function(a, b){var c=!1;switch(b){case "Geometry":-1==OpenLayers.Util.indexOf("Point MultiPoint LineString MultiLineString Polygon MultiPolygon Box GeometryCollection".split(" "),a.type)?OpenLayers.Console.error("Unsupported geometry type: "+a.type):c=!0;break;case "FeatureCollection":c=!0;break;default:a.type==b?c=!0:OpenLayers.Console.error("Cannot convert types from "+a.type+" to "+b)}return c},parseFeature:function(a){var b,c,d;c=a.properties?a.properties:{};d=a.geometry&&a.geometry.bbox||a.bbox;try{b=this.parseGeometry(a.geometry)}catch(e){throw e; }b=new OpenLayers.Feature.Vector(b,c);d&&(b.bounds=OpenLayers.Bounds.fromArray(d));a.id&&(b.fid=a.id);return b},parseGeometry:function(a){if(null==a)return null;var b,c=!1;if("GeometryCollection"==a.type){if(!OpenLayers.Util.isArray(a.geometries))throw"GeometryCollection must have geometries array: "+a;b=a.geometries.length;for(var c=Array(b),d=0;d<b;++d)c[d]=this.parseGeometry.apply(this,[a.geometries[d]]);b=new OpenLayers.Geometry.Collection(c);c=!0}else{if(!OpenLayers.Util.isArray(a.coordinates))throw"Geometry must have coordinates array: "+ a;if(!this.parseCoords[a.type.toLowerCase()])throw"Unsupported geometry type: "+a.type;try{b=this.parseCoords[a.type.toLowerCase()].apply(this,[a.coordinates])}catch(e){throw e;}}this.internalProjection&&(this.externalProjection&&!c)&&b.transform(this.externalProjection,this.internalProjection);return b},parseCoords:{point:function(a){if(!1==this.ignoreExtraDims&&2!=a.length)throw"Only 2D points are supported: "+a;return new OpenLayers.Geometry.Point(a[0],a[1])},multipoint:function(a){for(var b=[], c=null,d=0,e=a.length;d<e;++d){try{c=this.parseCoords.point.apply(this,[a[d]])}catch(f){throw f;}b.push(c)}return new OpenLayers.Geometry.MultiPoint(b)},linestring:function(a){for(var b=[],c=null,d=0,e=a.length;d<e;++d){try{c=this.parseCoords.point.apply(this,[a[d]])}catch(f){throw f;}b.push(c)}return new OpenLayers.Geometry.LineString(b)},multilinestring:function(a){for(var b=[],c=null,d=0,e=a.length;d<e;++d){try{c=this.parseCoords.linestring.apply(this,[a[d]])}catch(f){throw f;}b.push(c)}return new OpenLayers.Geometry.MultiLineString(b)}, polygon:function(a){for(var b=[],c,d,e=0,f=a.length;e<f;++e){try{d=this.parseCoords.linestring.apply(this,[a[e]])}catch(g){throw g;}c=new OpenLayers.Geometry.LinearRing(d.components);b.push(c)}return new OpenLayers.Geometry.Polygon(b)},multipolygon:function(a){for(var b=[],c=null,d=0,e=a.length;d<e;++d){try{c=this.parseCoords.polygon.apply(this,[a[d]])}catch(f){throw f;}b.push(c)}return new OpenLayers.Geometry.MultiPolygon(b)},box:function(a){if(2!=a.length)throw"GeoJSON box coordinates must have 2 elements"; return new OpenLayers.Geometry.Polygon([new OpenLayers.Geometry.LinearRing([new OpenLayers.Geometry.Point(a[0][0],a[0][1]),new OpenLayers.Geometry.Point(a[1][0],a[0][1]),new OpenLayers.Geometry.Point(a[1][0],a[1][1]),new OpenLayers.Geometry.Point(a[0][0],a[1][1]),new OpenLayers.Geometry.Point(a[0][0],a[0][1])])])}},write:function(a,b){var c={type:null};if(OpenLayers.Util.isArray(a)){c.type="FeatureCollection";var d=a.length;c.features=Array(d);for(var e=0;e<d;++e){var f=a[e];if(!f instanceof OpenLayers.Feature.Vector)throw"FeatureCollection only supports collections of features: "+ f;c.features[e]=this.extract.feature.apply(this,[f])}}else 0==a.CLASS_NAME.indexOf("OpenLayers.Geometry")?c=this.extract.geometry.apply(this,[a]):a instanceof OpenLayers.Feature.Vector&&(c=this.extract.feature.apply(this,[a]),a.layer&&a.layer.projection&&(c.crs=this.createCRSObject(a)));return OpenLayers.Format.JSON.prototype.write.apply(this,[c,b])},createCRSObject:function(a){var a=a.layer.projection.toString(),b={};a.match(/epsg:/i)&&(a=parseInt(a.substring(a.indexOf(":")+1)),b=4326==a?{type:"name", properties:{name:"urn:ogc:def:crs:OGC:1.3:CRS84"}}:{type:"name",properties:{name:"EPSG:"+a}});return b},extract:{feature:function(a){var b=this.extract.geometry.apply(this,[a.geometry]),b={type:"Feature",properties:a.attributes,geometry:b};null!=a.fid&&(b.id=a.fid);return b},geometry:function(a){if(null==a)return null;this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));var b=a.CLASS_NAME.split(".")[2],a=this.extract[b.toLowerCase()].apply(this, [a]);return"Collection"==b?{type:"GeometryCollection",geometries:a}:{type:b,coordinates:a}},point:function(a){return[a.x,a.y]},multipoint:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push(this.extract.point.apply(this,[a.components[c]]));return b},linestring:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push(this.extract.point.apply(this,[a.components[c]]));return b},multilinestring:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push(this.extract.linestring.apply(this, [a.components[c]]));return b},polygon:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push(this.extract.linestring.apply(this,[a.components[c]]));return b},multipolygon:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push(this.extract.polygon.apply(this,[a.components[c]]));return b},collection:function(a){for(var b=a.components.length,c=Array(b),d=0;d<b;++d)c[d]=this.extract.geometry.apply(this,[a.components[d]]);return c}},CLASS_NAME:"OpenLayers.Format.GeoJSON"});OpenLayers.Protocol.Script=OpenLayers.Class(OpenLayers.Protocol,{url:null,params:null,callback:null,callbackTemplate:"OpenLayers.Protocol.Script.registry.${id}",callbackKey:"callback",callbackPrefix:"",scope:null,format:null,pendingRequests:null,srsInBBOX:!1,initialize:function(a){a=a||{};this.params={};this.pendingRequests={};OpenLayers.Protocol.prototype.initialize.apply(this,arguments);this.format||(this.format=new OpenLayers.Format.GeoJSON);if(!this.filterToParams&&OpenLayers.Format.QueryStringFilter){var b= new OpenLayers.Format.QueryStringFilter({srsInBBOX:this.srsInBBOX});this.filterToParams=function(a,d){return b.write(a,d)}}},read:function(a){OpenLayers.Protocol.prototype.read.apply(this,arguments);a=OpenLayers.Util.applyDefaults(a,this.options);a.params=OpenLayers.Util.applyDefaults(a.params,this.options.params);a.filter&&this.filterToParams&&(a.params=this.filterToParams(a.filter,a.params));var b=new OpenLayers.Protocol.Response({requestType:"read"}),c=this.createRequest(a.url,a.params,OpenLayers.Function.bind(function(c){b.data= c;this.handleRead(b,a)},this));b.priv=c;return b},createRequest:function(a,b,c){var c=OpenLayers.Protocol.Script.register(c),d=OpenLayers.String.format(this.callbackTemplate,{id:c}),b=OpenLayers.Util.extend({},b);b[this.callbackKey]=this.callbackPrefix+d;a=OpenLayers.Util.urlAppend(a,OpenLayers.Util.getParameterString(b));b=document.createElement("script");b.type="text/javascript";b.src=a;b.id="OpenLayers_Protocol_Script_"+c;this.pendingRequests[b.id]=b;document.getElementsByTagName("head")[0].appendChild(b); return b},destroyRequest:function(a){OpenLayers.Protocol.Script.unregister(a.id.split("_").pop());delete this.pendingRequests[a.id];a.parentNode&&a.parentNode.removeChild(a)},handleRead:function(a,b){this.handleResponse(a,b)},handleResponse:function(a,b){b.callback&&(a.data?(a.features=this.parseFeatures(a.data),a.code=OpenLayers.Protocol.Response.SUCCESS):a.code=OpenLayers.Protocol.Response.FAILURE,this.destroyRequest(a.priv),b.callback.call(b.scope,a))},parseFeatures:function(a){return this.format.read(a)}, abort:function(a){if(a)this.destroyRequest(a.priv);else for(var b in this.pendingRequests)this.destroyRequest(this.pendingRequests[b])},destroy:function(){this.abort();delete this.params;delete this.format;OpenLayers.Protocol.prototype.destroy.apply(this)},CLASS_NAME:"OpenLayers.Protocol.Script"});(function(){var a=OpenLayers.Protocol.Script,b=0;a.registry={};a.register=function(c){var d="c"+ ++b;a.registry[d]=function(){c.apply(this,arguments)};return d};a.unregister=function(b){delete a.registry[b]}})();OpenLayers.Control.Panel=OpenLayers.Class(OpenLayers.Control,{controls:null,autoActivate:!0,defaultControl:null,saveState:!1,allowDepress:!1,activeState:null,initialize:function(a){OpenLayers.Control.prototype.initialize.apply(this,[a]);this.controls=[];this.activeState={}},destroy:function(){this.map&&this.map.events.unregister("buttonclick",this,this.onButtonClick);OpenLayers.Control.prototype.destroy.apply(this,arguments);for(var a,b=this.controls.length-1;0<=b;b--)a=this.controls[b],a.events&& a.events.un({activate:this.iconOn,deactivate:this.iconOff}),a.panel_div=null;this.activeState=null},activate:function(){if(OpenLayers.Control.prototype.activate.apply(this,arguments)){for(var a,b=0,c=this.controls.length;b<c;b++)a=this.controls[b],(a===this.defaultControl||this.saveState&&this.activeState[a.id])&&a.activate();!0===this.saveState&&(this.defaultControl=null);this.redraw();return!0}return!1},deactivate:function(){if(OpenLayers.Control.prototype.deactivate.apply(this,arguments)){for(var a, b=0,c=this.controls.length;b<c;b++)a=this.controls[b],this.activeState[a.id]=a.deactivate();this.redraw();return!0}return!1},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);this.outsideViewport?(this.events.attachToElement(this.div),this.events.register("buttonclick",this,this.onButtonClick)):this.map.events.register("buttonclick",this,this.onButtonClick);this.addControlsToMap(this.controls);return this.div},redraw:function(){for(var a=this.div.childNodes.length-1;0<=a;a--)this.div.removeChild(this.div.childNodes[a]); this.div.innerHTML="";if(this.active)for(var a=0,b=this.controls.length;a<b;a++)this.div.appendChild(this.controls[a].panel_div)},activateControl:function(a){if(!this.active)return!1;if(a.type==OpenLayers.Control.TYPE_BUTTON)a.trigger();else if(a.type==OpenLayers.Control.TYPE_TOGGLE)a.active?a.deactivate():a.activate();else if(this.allowDepress&&a.active)a.deactivate();else{for(var b,c=0,d=this.controls.length;c<d;c++)b=this.controls[c],b!=a&&(b.type===OpenLayers.Control.TYPE_TOOL||null==b.type)&& b.deactivate();a.activate()}},addControls:function(a){OpenLayers.Util.isArray(a)||(a=[a]);this.controls=this.controls.concat(a);for(var b=0,c=a.length;b<c;b++){var d=a[b],e=this.createControlMarkup(d);OpenLayers.Element.addClass(e,d.displayClass+"ItemInactive");OpenLayers.Element.addClass(e,"olButton");""!=d.title&&!e.title&&(e.title=d.title);d.panel_div=e}this.map&&(this.addControlsToMap(a),this.redraw())},createControlMarkup:function(){return document.createElement("div")},addControlsToMap:function(a){for(var b, c=0,d=a.length;c<d;c++)b=a[c],!0===b.autoActivate?(b.autoActivate=!1,this.map.addControl(b),b.autoActivate=!0):(this.map.addControl(b),b.deactivate()),b.events.on({activate:this.iconOn,deactivate:this.iconOff})},iconOn:function(){var a=this.panel_div;a.className=a.className.replace(RegExp("\\b("+this.displayClass+"Item)Inactive\\b"),"$1Active")},iconOff:function(){var a=this.panel_div;a.className=a.className.replace(RegExp("\\b("+this.displayClass+"Item)Active\\b"),"$1Inactive")},onButtonClick:function(a){for(var b= this.controls,a=a.buttonElement,c=b.length-1;0<=c;--c)if(b[c].panel_div===a){this.activateControl(b[c]);break}},getControlsBy:function(a,b){var c="function"==typeof b.test;return OpenLayers.Array.filter(this.controls,function(d){return d[a]==b||c&&b.test(d[a])})},getControlsByName:function(a){return this.getControlsBy("name",a)},getControlsByClass:function(a){return this.getControlsBy("CLASS_NAME",a)},CLASS_NAME:"OpenLayers.Control.Panel"});OpenLayers.Control.ZoomIn=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_BUTTON,trigger:function(){this.map.zoomIn()},CLASS_NAME:"OpenLayers.Control.ZoomIn"});OpenLayers.Control.ZoomOut=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_BUTTON,trigger:function(){this.map.zoomOut()},CLASS_NAME:"OpenLayers.Control.ZoomOut"});OpenLayers.Control.ZoomToMaxExtent=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_BUTTON,trigger:function(){this.map&&this.map.zoomToMaxExtent()},CLASS_NAME:"OpenLayers.Control.ZoomToMaxExtent"});OpenLayers.Control.ZoomPanel=OpenLayers.Class(OpenLayers.Control.Panel,{initialize:function(a){OpenLayers.Control.Panel.prototype.initialize.apply(this,[a]);this.addControls([new OpenLayers.Control.ZoomIn,new OpenLayers.Control.ZoomToMaxExtent,new OpenLayers.Control.ZoomOut])},CLASS_NAME:"OpenLayers.Control.ZoomPanel"});OpenLayers.Layer.HTTPRequest=OpenLayers.Class(OpenLayers.Layer,{URL_HASH_FACTOR:(Math.sqrt(5)-1)/2,url:null,params:null,reproject:!1,initialize:function(a,b,c,d){OpenLayers.Layer.prototype.initialize.apply(this,[a,d]);this.url=b;this.params||(this.params=OpenLayers.Util.extend({},c))},destroy:function(){this.params=this.url=null;OpenLayers.Layer.prototype.destroy.apply(this,arguments)},clone:function(a){null==a&&(a=new OpenLayers.Layer.HTTPRequest(this.name,this.url,this.params,this.getOptions())); return a=OpenLayers.Layer.prototype.clone.apply(this,[a])},setUrl:function(a){this.url=a},mergeNewParams:function(a){this.params=OpenLayers.Util.extend(this.params,a);a=this.redraw();null!=this.map&&this.map.events.triggerEvent("changelayer",{layer:this,property:"params"});return a},redraw:function(a){return a?this.mergeNewParams({_olSalt:Math.random()}):OpenLayers.Layer.prototype.redraw.apply(this,[])},selectUrl:function(a,b){for(var c=1,d=0,e=a.length;d<e;d++)c*=a.charCodeAt(d)*this.URL_HASH_FACTOR, c-=Math.floor(c);return b[Math.floor(c*b.length)]},getFullRequestString:function(a,b){var c=b||this.url,d=OpenLayers.Util.extend({},this.params),d=OpenLayers.Util.extend(d,a),e=OpenLayers.Util.getParameterString(d);OpenLayers.Util.isArray(c)&&(c=this.selectUrl(e,c));var e=OpenLayers.Util.upperCaseObject(OpenLayers.Util.getParameters(c)),f;for(f in d)f.toUpperCase()in e&&delete d[f];e=OpenLayers.Util.getParameterString(d);return OpenLayers.Util.urlAppend(c,e)},CLASS_NAME:"OpenLayers.Layer.HTTPRequest"});OpenLayers.Tile=OpenLayers.Class({events:null,eventListeners:null,id:null,layer:null,url:null,bounds:null,size:null,position:null,isLoading:!1,initialize:function(a,b,c,d,e,f){this.layer=a;this.position=b.clone();this.setBounds(c);this.url=d;e&&(this.size=e.clone());this.id=OpenLayers.Util.createUniqueID("Tile_");OpenLayers.Util.extend(this,f);this.events=new OpenLayers.Events(this);if(this.eventListeners instanceof Object)this.events.on(this.eventListeners)},unload:function(){this.isLoading&&(this.isLoading= !1,this.events.triggerEvent("unload"))},destroy:function(){this.position=this.size=this.bounds=this.layer=null;this.eventListeners&&this.events.un(this.eventListeners);this.events.destroy();this.events=this.eventListeners=null},draw:function(a){a||this.clear();var b=this.shouldDraw();b&&!a&&(b=!1!==this.events.triggerEvent("beforedraw"));return b},shouldDraw:function(){var a=!1,b=this.layer.maxExtent;if(b){var c=this.layer.map,c=c.baseLayer.wrapDateLine&&c.getMaxExtent();this.bounds.intersectsBounds(b, {inclusive:!1,worldBounds:c})&&(a=!0)}return a||this.layer.displayOutsideMaxExtent},setBounds:function(a){a=a.clone();if(this.layer.map.baseLayer.wrapDateLine)var b=this.layer.map.getMaxExtent(),c=this.layer.map.getResolution(),a=a.wrapDateLine(b,{leftTolerance:c,rightTolerance:c});this.bounds=a},moveTo:function(a,b,c){null==c&&(c=!0);this.setBounds(a);this.position=b.clone();c&&this.draw()},clear:function(){},CLASS_NAME:"OpenLayers.Tile"});OpenLayers.Tile.Image=OpenLayers.Class(OpenLayers.Tile,{url:null,imgDiv:null,frame:null,imageReloadAttempts:null,layerAlphaHack:null,asyncRequestId:null,blankImageUrl:"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAQAIBRAA7",maxGetUrlLength:null,canvasContext:null,crossOriginKeyword:null,initialize:function(a,b,c,d,e,f){OpenLayers.Tile.prototype.initialize.apply(this,arguments);this.url=d;this.layerAlphaHack=this.layer.alpha&&OpenLayers.Util.alphaHack();if(null!=this.maxGetUrlLength|| this.layer.gutter||this.layerAlphaHack)this.frame=document.createElement("div"),this.frame.style.position="absolute",this.frame.style.overflow="hidden";null!=this.maxGetUrlLength&&OpenLayers.Util.extend(this,OpenLayers.Tile.Image.IFrame)},destroy:function(){this.imgDiv&&(this.clear(),this.frame=this.imgDiv=null);this.asyncRequestId=null;OpenLayers.Tile.prototype.destroy.apply(this,arguments)},draw:function(){var a=OpenLayers.Tile.prototype.draw.apply(this,arguments);a?(this.layer!=this.layer.map.baseLayer&& this.layer.reproject&&(this.bounds=this.getBoundsFromBaseLayer(this.position)),this.isLoading?this._loadEvent="reload":(this.isLoading=!0,this._loadEvent="loadstart"),this.positionTile(),this.renderTile()):this.unload();return a},renderTile:function(){this.layer.div.appendChild(this.getTile());if(this.layer.async){var a=this.asyncRequestId=(this.asyncRequestId||0)+1;this.layer.getURLasync(this.bounds,function(b){a==this.asyncRequestId&&(this.url=b,this.initImage())},this)}else this.url=this.layer.getURL(this.bounds), this.initImage()},positionTile:function(){var a=this.getTile().style,b=this.frame?this.size:this.layer.getImageSize(this.bounds);a.left=this.position.x+"%";a.top=this.position.y+"%";a.width=b.w+"%";a.height=b.h+"%"},clear:function(){OpenLayers.Tile.prototype.clear.apply(this,arguments);var a=this.imgDiv;if(a){OpenLayers.Event.stopObservingElement(a);var b=this.getTile();b.parentNode===this.layer.div&&this.layer.div.removeChild(b);this.setImgSrc();!0===this.layerAlphaHack&&(a.style.filter="");OpenLayers.Element.removeClass(a, "olImageLoadError")}this.canvasContext=null},getImage:function(){if(!this.imgDiv){this.imgDiv=document.createElement("img");this.imgDiv.className="olTileImage";this.imgDiv.galleryImg="no";var a=this.imgDiv.style;if(this.frame){var b=0,c=0;this.layer.gutter&&(b=100*(this.layer.gutter/this.layer.tileSize.w),c=100*(this.layer.gutter/this.layer.tileSize.h));a.left=-b+"%";a.top=-c+"%";a.width=2*b+100+"%";a.height=2*c+100+"%"}a.visibility="hidden";a.opacity=0;1>this.layer.opacity&&(a.filter="alpha(opacity="+ 100*this.layer.opacity+")");a.position="absolute";this.layerAlphaHack&&(a.paddingTop=a.height,a.height="0",a.width="100%");this.frame&&this.frame.appendChild(this.imgDiv)}return this.imgDiv},initImage:function(){this.events.triggerEvent(this._loadEvent);var a=this.getImage();if(this.url&&a.getAttribute("src")==this.url)this.onImageLoad();else{var b=OpenLayers.Function.bind(function(){OpenLayers.Event.stopObservingElement(a);OpenLayers.Event.observe(a,"load",OpenLayers.Function.bind(this.onImageLoad, this));OpenLayers.Event.observe(a,"error",OpenLayers.Function.bind(this.onImageError,this));this.imageReloadAttempts=0;this.setImgSrc(this.url)},this);a.getAttribute("src")==this.blankImageUrl?b():(OpenLayers.Event.observe(a,"load",b),OpenLayers.Event.observe(a,"error",b),this.crossOriginKeyword&&a.removeAttribute("crossorigin"),a.src=this.blankImageUrl)}},setImgSrc:function(a){var b=this.imgDiv;b.style.visibility="hidden";b.style.opacity=0;a&&(this.crossOriginKeyword&&("data:"!==a.substr(0,5)?b.setAttribute("crossorigin", this.crossOriginKeyword):b.removeAttribute("crossorigin")),b.src=a)},getTile:function(){return this.frame?this.frame:this.getImage()},createBackBuffer:function(){if(this.imgDiv&&!this.isLoading){var a;this.frame?(a=this.frame.cloneNode(!1),a.appendChild(this.imgDiv)):a=this.imgDiv;this.imgDiv=null;return a}},onImageLoad:function(){var a=this.imgDiv;OpenLayers.Event.stopObservingElement(a);a.style.visibility="inherit";a.style.opacity=this.layer.opacity;this.isLoading=!1;this.canvasContext=null;this.events.triggerEvent("loadend"); if(7>parseFloat(navigator.appVersion.split("MSIE")[1])&&this.layer&&this.layer.div){var b=document.createElement("span");b.style.display="none";var c=this.layer.div;c.appendChild(b);window.setTimeout(function(){b.parentNode===c&&b.parentNode.removeChild(b)},0)}!0===this.layerAlphaHack&&(a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+a.src+"', sizingMethod='scale')")},onImageError:function(){var a=this.imgDiv;null!=a.src&&(this.imageReloadAttempts++,this.imageReloadAttempts<= OpenLayers.IMAGE_RELOAD_ATTEMPTS?this.setImgSrc(this.layer.getURL(this.bounds)):(OpenLayers.Element.addClass(a,"olImageLoadError"),this.events.triggerEvent("loaderror"),this.onImageLoad()))},getCanvasContext:function(){if(OpenLayers.CANVAS_SUPPORTED&&this.imgDiv&&!this.isLoading){if(!this.canvasContext){var a=document.createElement("canvas");a.width=this.size.w;a.height=this.size.h;this.canvasContext=a.getContext("2d");this.canvasContext.drawImage(this.imgDiv,0,0)}return this.canvasContext}},CLASS_NAME:"OpenLayers.Tile.Image"});OpenLayers.Layer.Grid=OpenLayers.Class(OpenLayers.Layer.HTTPRequest,{tileSize:null,tileOriginCorner:"bl",tileOrigin:null,tileOptions:null,tileClass:OpenLayers.Tile.Image,grid:null,singleTile:!1,ratio:1.5,buffer:0,transitionEffect:null,numLoadingTiles:0,tileLoadingDelay:85,serverResolutions:null,moveTimerId:null,deferMoveGriddedTiles:null,tileQueueId:null,tileQueue:null,loading:!1,backBuffer:null,gridResolution:null,backBufferResolution:null,backBufferLonLat:null,backBufferTimerId:null,removeBackBufferDelay:null, className:null,initialize:function(a,b,c,d){OpenLayers.Layer.HTTPRequest.prototype.initialize.apply(this,arguments);this.grid=[];this.tileQueue=[];null===this.removeBackBufferDelay&&(this.removeBackBufferDelay=this.singleTile?0:2500);null===this.className&&(this.className=this.singleTile?"olLayerGridSingleTile":"olLayerGrid");OpenLayers.Animation.isNative||(this.deferMoveGriddedTiles=OpenLayers.Function.bind(function(){this.moveGriddedTiles(true);this.moveTimerId=null},this))},setMap:function(a){OpenLayers.Layer.HTTPRequest.prototype.setMap.call(this, a);OpenLayers.Element.addClass(this.div,this.className)},removeMap:function(){null!==this.moveTimerId&&(window.clearTimeout(this.moveTimerId),this.moveTimerId=null);this.clearTileQueue();null!==this.backBufferTimerId&&(window.clearTimeout(this.backBufferTimerId),this.backBufferTimerId=null)},destroy:function(){this.removeBackBuffer();this.clearGrid();this.tileSize=this.grid=null;OpenLayers.Layer.HTTPRequest.prototype.destroy.apply(this,arguments)},clearGrid:function(){this.clearTileQueue();if(this.grid){for(var a= 0,b=this.grid.length;a<b;a++)for(var c=this.grid[a],d=0,e=c.length;d<e;d++)this.destroyTile(c[d]);this.grid=[];this.gridResolution=null}},clone:function(a){null==a&&(a=new OpenLayers.Layer.Grid(this.name,this.url,this.params,this.getOptions()));a=OpenLayers.Layer.HTTPRequest.prototype.clone.apply(this,[a]);null!=this.tileSize&&(a.tileSize=this.tileSize.clone());a.grid=[];a.gridResolution=null;a.backBuffer=null;a.backBufferTimerId=null;a.tileQueue=[];a.tileQueueId=null;a.loading=!1;a.moveTimerId=null; return a},moveTo:function(a,b,c){OpenLayers.Layer.HTTPRequest.prototype.moveTo.apply(this,arguments);a=a||this.map.getExtent();if(null!=a){var d=!this.grid.length||b,e=this.getTilesBounds(),f=this.map.getResolution(),g=this.getServerResolution(f);if(this.singleTile){if(d||!c&&!e.containsBounds(a))b&&"resize"!==this.transitionEffect&&this.removeBackBuffer(),(!b||"resize"===this.transitionEffect)&&this.applyBackBuffer(g),this.initSingleTile(a)}else(d=d||!e.intersectsBounds(a,{worldBounds:this.map.baseLayer.wrapDateLine&& this.map.getMaxExtent()}),f!==g?(a=this.map.calculateBounds(null,g),d&&this.transformDiv(g/f)):(this.div.style.width="100%",this.div.style.height="100%",this.div.style.left="0%",this.div.style.top="0%"),d)?(b&&"resize"===this.transitionEffect&&this.applyBackBuffer(g),this.initGriddedTiles(a)):this.moveGriddedTiles()}},getTileData:function(a){var b=null,c=a.lon,d=a.lat,e=this.grid.length;if(this.map&&e){var f=this.map.getResolution(),a=this.tileSize.w,g=this.tileSize.h,h=this.grid[0][0].bounds,i=h.left, h=h.top;if(c<i&&this.map.baseLayer.wrapDateLine)var j=this.map.getMaxExtent().getWidth(),k=Math.ceil((i-c)/j),c=c+j*k;c=(c-i)/(f*a);d=(h-d)/(f*g);f=Math.floor(c);i=Math.floor(d);0<=i&&i<e&&(e=this.grid[i][f])&&(b={tile:e,i:Math.floor((c-f)*a),j:Math.floor((d-i)*g)})}return b},queueTileDraw:function(a){a=a.object;~OpenLayers.Util.indexOf(this.tileQueue,a)||this.tileQueue.push(a);this.tileQueueId||(this.tileQueueId=OpenLayers.Animation.start(OpenLayers.Function.bind(this.drawTileFromQueue,this),null, this.div));return!1},drawTileFromQueue:function(){0===this.tileQueue.length?this.clearTileQueue():this.tileQueue.shift().draw(!0)},clearTileQueue:function(){OpenLayers.Animation.stop(this.tileQueueId);this.tileQueueId=null;this.tileQueue=[]},destroyTile:function(a){this.removeTileMonitoringHooks(a);a.destroy()},getServerResolution:function(a){a=a||this.map.getResolution();if(this.serverResolutions&&-1===OpenLayers.Util.indexOf(this.serverResolutions,a)){var b,c;for(b=this.serverResolutions.length- 1;0<=b;b--)if(c=this.serverResolutions[b],c>a){a=c;break}if(-1===b)throw"no appropriate resolution in serverResolutions";}return a},getServerZoom:function(){var a=this.getServerResolution();return this.serverResolutions?OpenLayers.Util.indexOf(this.serverResolutions,a):this.map.getZoomForResolution(a)+(this.zoomOffset||0)},transformDiv:function(a){this.div.style.width=100*a+"%";this.div.style.height=100*a+"%";var b=this.map.getSize(),c=parseInt(this.map.layerContainerDiv.style.left,10),d=(parseInt(this.map.layerContainerDiv.style.top, 10)-b.h/2)*(a-1);this.div.style.left=(c-b.w/2)*(a-1)+"%";this.div.style.top=d+"%"},getResolutionScale:function(){return parseInt(this.div.style.width,10)/100},applyBackBuffer:function(a){null!==this.backBufferTimerId&&this.removeBackBuffer();var b=this.backBuffer;if(!b){b=this.createBackBuffer();if(!b)return;this.div.insertBefore(b,this.div.firstChild);this.backBuffer=b;var c=this.grid[0][0].bounds;this.backBufferLonLat={lon:c.left,lat:c.top};this.backBufferResolution=this.gridResolution}var c=b.style, d=this.backBufferResolution/a;c.width=100*d+"%";c.height=100*d+"%";a=this.getViewPortPxFromLonLat(this.backBufferLonLat,a);c=parseInt(this.map.layerContainerDiv.style.left,10);d=parseInt(this.map.layerContainerDiv.style.top,10);b.style.left=Math.round(a.x-c)+"%";b.style.top=Math.round(a.y-d)+"%"},createBackBuffer:function(){var a;if(0<this.grid.length){a=document.createElement("div");a.id=this.div.id+"_bb";a.className="olBackBuffer";a.style.position="absolute";a.style.width="100%";a.style.height= "100%";for(var b=0,c=this.grid.length;b<c;b++)for(var d=0,e=this.grid[b].length;d<e;d++){var f=this.grid[b][d].createBackBuffer();f&&(f.style.top=b*this.tileSize.h+"%",f.style.left=d*this.tileSize.w+"%",a.appendChild(f))}}return a},removeBackBuffer:function(){this.backBuffer&&(this.div.removeChild(this.backBuffer),this.backBufferResolution=this.backBuffer=null,null!==this.backBufferTimerId&&(window.clearTimeout(this.backBufferTimerId),this.backBufferTimerId=null))},moveByPx:function(){this.singleTile|| this.moveGriddedTiles()},setTileSize:function(a){this.singleTile&&(a=this.map.getSize(),a.h=parseInt(a.h*this.ratio),a.w=parseInt(a.w*this.ratio));OpenLayers.Layer.HTTPRequest.prototype.setTileSize.apply(this,[a])},getTilesBounds:function(){var a=null,b=this.grid.length;if(b)var a=this.grid[b-1][0].bounds,b=this.grid[0].length*a.getWidth(),c=this.grid.length*a.getHeight(),a=new OpenLayers.Bounds(a.left,a.bottom,a.left+b,a.bottom+c);return a},initSingleTile:function(a){this.clearTileQueue();var b= a.getCenterLonLat(),c=a.getWidth()*this.ratio,a=a.getHeight()*this.ratio,b=new OpenLayers.Bounds(b.lon-c/2,b.lat-a/2,b.lon+c/2,b.lat+a/2),c=this.map.getLayerPxFromLonLat({lon:b.left,lat:b.top});this.grid.length||(this.grid[0]=[]);(a=this.grid[0][0])?a.moveTo(b,c):(a=this.addTile(b,c),this.addTileMonitoringHooks(a),a.draw(),this.grid[0][0]=a);this.removeExcessTiles(1,1);this.gridResolution=this.getServerResolution()},calculateGridLayout:function(a,b,c){var d=c*this.tileSize.w,c=c*this.tileSize.h,e= a.left-b.lon,f=Math.floor(e/d)-this.buffer,e=-(e/d-f)*this.tileSize.w,f=b.lon+f*d,a=a.top-(b.lat+c),g=Math.ceil(a/c)+this.buffer;return{tilelon:d,tilelat:c,tileoffsetlon:f,tileoffsetlat:b.lat+g*c,tileoffsetx:e,tileoffsety:-(g-a/c)*this.tileSize.h}},getTileOrigin:function(){var a=this.tileOrigin;if(!a)var a=this.getMaxExtent(),b={tl:["left","top"],tr:["right","top"],bl:["left","bottom"],br:["right","bottom"]}[this.tileOriginCorner],a=new OpenLayers.LonLat(a[b[0]],a[b[1]]);return a},initGriddedTiles:function(a){this.clearTileQueue(); var b=this.map.getSize(),c=Math.ceil(b.h/this.tileSize.h)+Math.max(1,2*this.buffer),b=Math.ceil(b.w/this.tileSize.w)+Math.max(1,2*this.buffer),d=this.getTileOrigin(),e=this.getServerResolution(),d=this.calculateGridLayout(a,d,e),e=Math.round(d.tileoffsetx),f=Math.round(d.tileoffsety),g=d.tileoffsetlon,h=d.tileoffsetlat,i=d.tilelon,j=d.tilelat,k=e,l=g,m=0,n=parseInt(this.map.layerContainerDiv.style.left),o=parseInt(this.map.layerContainerDiv.style.top),d=[],p=this.map.getCenter();do{var q=this.grid[m++]; q||(q=[],this.grid.push(q));var g=l,e=k,r=0;do{var s=new OpenLayers.Bounds(g,h,g+i,h+j),t=e,t=t-n,u=f,u=u-o,u=new OpenLayers.Pixel(t,u);(t=q[r++])?t.moveTo(s,u,!1):(t=this.addTile(s,u),this.addTileMonitoringHooks(t),q.push(t));s=s.getCenterLonLat();d.push({tile:t,distance:Math.pow(s.lon-p.lon,2)+Math.pow(s.lat-p.lat,2)});g+=i;e+=this.tileSize.w}while(g<=a.right+i*this.buffer||r<b);h-=j;f+=this.tileSize.h}while(h>=a.bottom-j*this.buffer||m<c);this.removeExcessTiles(m,r);this.gridResolution=this.getServerResolution(); d.sort(function(a,b){return a.distance-b.distance});a=0;for(c=d.length;a<c;++a)d[a].tile.draw()},getMaxExtent:function(){return this.maxExtent},addTile:function(a,b){var c=new this.tileClass(this,b,a,null,this.tileSize,this.tileOptions);c.events.register("beforedraw",this,this.queueTileDraw);return c},addTileMonitoringHooks:function(a){a.onLoadStart=function(){!1===this.loading&&(this.loading=!0,this.events.triggerEvent("loadstart"));this.events.triggerEvent("tileloadstart",{tile:a});this.numLoadingTiles++}; a.onLoadEnd=function(){this.numLoadingTiles--;this.events.triggerEvent("tileloaded",{tile:a});0===this.tileQueue.length&&0===this.numLoadingTiles&&(this.loading=!1,this.events.triggerEvent("loadend"),this.backBuffer&&(this.backBufferTimerId=window.setTimeout(OpenLayers.Function.bind(this.removeBackBuffer,this),this.removeBackBufferDelay)))};a.onLoadError=function(){this.events.triggerEvent("tileerror",{tile:a})};a.events.on({loadstart:a.onLoadStart,loadend:a.onLoadEnd,unload:a.onLoadEnd,loaderror:a.onLoadError, scope:this})},removeTileMonitoringHooks:function(a){a.unload();a.events.un({loadstart:a.onLoadStart,loadend:a.onLoadEnd,unload:a.onLoadEnd,loaderror:a.onLoadError,scope:this})},moveGriddedTiles:function(a){if(!a&&!OpenLayers.Animation.isNative)null!=this.moveTimerId&&window.clearTimeout(this.moveTimerId),this.moveTimerId=window.setTimeout(this.deferMoveGriddedTiles,this.tileLoadingDelay);else for(var a=this.buffer||1,b=this.getResolutionScale();;){var c=this.grid[0][0].position.x*b+parseInt(this.div.style.left, 10)+parseInt(this.map.layerContainerDiv.style.left),d=this.grid[0][0].position.y*b+parseInt(this.div.style.top,10)+parseInt(this.map.layerContainerDiv.style.top),e=this.tileSize.w*b,f=this.tileSize.h*b;if(c>-e*(a-1))this.shiftColumn(!0);else if(c<-e*a)this.shiftColumn(!1);else if(d>-f*(a-1))this.shiftRow(!0);else if(d<-f*a)this.shiftRow(!1);else break}},shiftRow:function(a){for(var b=this.grid,c=b[a?0:this.grid.length-1],d=this.getServerResolution(),e=a?-this.tileSize.h:this.tileSize.h,d=d*-e,f=a? b.pop():b.shift(),g=0,h=c.length;g<h;g++){var i=c[g],j=i.bounds.clone(),i=i.position.clone();j.bottom+=d;j.top+=d;i.y+=e;f[g].moveTo(j,i)}a?b.unshift(f):b.push(f)},shiftColumn:function(a){for(var b=a?-this.tileSize.w:this.tileSize.w,c=this.getServerResolution()*b,d=0,e=this.grid.length;d<e;d++){var f=this.grid[d],g=f[a?0:f.length-1],h=g.bounds.clone(),g=g.position.clone();h.left+=c;h.right+=c;g.x+=b;var i=a?this.grid[d].pop():this.grid[d].shift();i.moveTo(h,g);a?f.unshift(i):f.push(i)}},removeExcessTiles:function(a, b){for(var c,d;this.grid.length>a;){var e=this.grid.pop();c=0;for(d=e.length;c<d;c++){var f=e[c];this.destroyTile(f)}}c=0;for(d=this.grid.length;c<d;c++)for(;this.grid[c].length>b;)e=this.grid[c],f=e.pop(),this.destroyTile(f)},onMapResize:function(){this.singleTile&&(this.clearGrid(),this.setTileSize())},getTileBounds:function(a){var b=this.maxExtent,c=this.getResolution(),d=c*this.tileSize.w,c=c*this.tileSize.h,e=this.getLonLatFromViewPortPx(a),a=b.left+d*Math.floor((e.lon-b.left)/d),b=b.bottom+ c*Math.floor((e.lat-b.bottom)/c);return new OpenLayers.Bounds(a,b,a+d,b+c)},CLASS_NAME:"OpenLayers.Layer.Grid"});OpenLayers.Format.ArcXML=OpenLayers.Class(OpenLayers.Format.XML,{fontStyleKeys:"antialiasing blockout font fontcolor fontsize fontstyle glowing interval outline printmode shadow transparency".split(" "),request:null,response:null,initialize:function(a){this.request=new OpenLayers.Format.ArcXML.Request;this.response=new OpenLayers.Format.ArcXML.Response;if(a)if("feature"==a.requesttype){this.request.get_image=null;var b=this.request.get_feature.query;this.addCoordSys(b.featurecoordsys,a.featureCoordSys); this.addCoordSys(b.filtercoordsys,a.filterCoordSys);a.polygon?(b.isspatial=!0,b.spatialfilter.polygon=a.polygon):a.envelope&&(b.isspatial=!0,b.spatialfilter.envelope={minx:0,miny:0,maxx:0,maxy:0},this.parseEnvelope(b.spatialfilter.envelope,a.envelope))}else"image"==a.requesttype?(this.request.get_feature=null,b=this.request.get_image.properties,this.parseEnvelope(b.envelope,a.envelope),this.addLayers(b.layerlist,a.layers),this.addImageSize(b.imagesize,a.tileSize),this.addCoordSys(b.featurecoordsys, a.featureCoordSys),this.addCoordSys(b.filtercoordsys,a.filterCoordSys)):this.request=null;OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},parseEnvelope:function(a,b){b&&4==b.length&&(a.minx=b[0],a.miny=b[1],a.maxx=b[2],a.maxy=b[3])},addLayers:function(a,b){for(var c=0,d=b.length;c<d;c++)a.push(b[c])},addImageSize:function(a,b){null!==b&&(a.width=b.w,a.height=b.h,a.printwidth=b.w,a.printheight=b.h)},addCoordSys:function(a,b){"string"==typeof b?(a.id=parseInt(b),a.string=b):"object"==typeof b&& null!==b.proj&&(a.id=b.proj.srsProjNumber,a.string=b.proj.srsCode)},iserror:function(a){var b=null;a?(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]),a=a.documentElement.getElementsByTagName("ERROR"),b=null!==a&&0<a.length):b=""!==this.response.error;return b},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));var b=null;a&&a.documentElement&&(b="ARCXML"==a.documentElement.nodeName?a.documentElement:a.documentElement.getElementsByTagName("ARCXML")[0]); if(!b||"parsererror"===b.firstChild.nodeName){var c,d;try{c=a.firstChild.nodeValue,d=a.firstChild.childNodes[1].firstChild.nodeValue}catch(e){}throw{message:"Error parsing the ArcXML request",error:c,source:d};}return this.parseResponse(b)},write:function(a){a||(a=this.request);var b=this.createElementNS("","ARCXML");b.setAttribute("version","1.1");var c=this.createElementNS("","REQUEST");if(null!=a.get_image){var d=this.createElementNS("","GET_IMAGE");c.appendChild(d);var e=this.createElementNS("", "PROPERTIES");d.appendChild(e);a=a.get_image.properties;null!=a.featurecoordsys&&(d=this.createElementNS("","FEATURECOORDSYS"),e.appendChild(d),0===a.featurecoordsys.id?d.setAttribute("string",a.featurecoordsys.string):d.setAttribute("id",a.featurecoordsys.id));null!=a.filtercoordsys&&(d=this.createElementNS("","FILTERCOORDSYS"),e.appendChild(d),0===a.filtercoordsys.id?d.setAttribute("string",a.filtercoordsys.string):d.setAttribute("id",a.filtercoordsys.id));null!=a.envelope&&(d=this.createElementNS("", "ENVELOPE"),e.appendChild(d),d.setAttribute("minx",a.envelope.minx),d.setAttribute("miny",a.envelope.miny),d.setAttribute("maxx",a.envelope.maxx),d.setAttribute("maxy",a.envelope.maxy));d=this.createElementNS("","IMAGESIZE");e.appendChild(d);d.setAttribute("height",a.imagesize.height);d.setAttribute("width",a.imagesize.width);if(a.imagesize.height!=a.imagesize.printheight||a.imagesize.width!=a.imagesize.printwidth)d.setAttribute("printheight",a.imagesize.printheight),d.setArrtibute("printwidth",a.imagesize.printwidth); null!=a.background&&(d=this.createElementNS("","BACKGROUND"),e.appendChild(d),d.setAttribute("color",a.background.color.r+","+a.background.color.g+","+a.background.color.b),null!==a.background.transcolor&&d.setAttribute("transcolor",a.background.transcolor.r+","+a.background.transcolor.g+","+a.background.transcolor.b));if(null!=a.layerlist&&0<a.layerlist.length){d=this.createElementNS("","LAYERLIST");e.appendChild(d);for(e=0;e<a.layerlist.length;e++){var f=this.createElementNS("","LAYERDEF");d.appendChild(f); f.setAttribute("id",a.layerlist[e].id);f.setAttribute("visible",a.layerlist[e].visible);if("object"==typeof a.layerlist[e].query){var g=a.layerlist[e].query;if(0>g.where.length)continue;var h=null,h="boolean"==typeof g.spatialfilter&&g.spatialfilter?this.createElementNS("","SPATIALQUERY"):this.createElementNS("","QUERY");h.setAttribute("where",g.where);"number"==typeof g.accuracy&&0<g.accuracy&&h.setAttribute("accuracy",g.accuracy);"number"==typeof g.featurelimit&&2E3>g.featurelimit&&h.setAttribute("featurelimit", g.featurelimit);"string"==typeof g.subfields&&"#ALL#"!=g.subfields&&h.setAttribute("subfields",g.subfields);"string"==typeof g.joinexpression&&0<g.joinexpression.length&&h.setAttribute("joinexpression",g.joinexpression);"string"==typeof g.jointables&&0<g.jointables.length&&h.setAttribute("jointables",g.jointables);f.appendChild(h)}"object"==typeof a.layerlist[e].renderer&&this.addRenderer(f,a.layerlist[e].renderer)}}}else if(null!=a.get_feature&&(d=this.createElementNS("","GET_FEATURES"),d.setAttribute("outputmode", "newxml"),d.setAttribute("checkesc","true"),a.get_feature.geometry?d.setAttribute("geometry",a.get_feature.geometry):d.setAttribute("geometry","false"),a.get_feature.compact&&d.setAttribute("compact",a.get_feature.compact),"number"==a.get_feature.featurelimit&&d.setAttribute("featurelimit",a.get_feature.featurelimit),d.setAttribute("globalenvelope","true"),c.appendChild(d),null!=a.get_feature.layer&&0<a.get_feature.layer.length&&(e=this.createElementNS("","LAYER"),e.setAttribute("id",a.get_feature.layer), d.appendChild(e)),a=a.get_feature.query,null!=a))e=null,e=a.isspatial?this.createElementNS("","SPATIALQUERY"):this.createElementNS("","QUERY"),d.appendChild(e),"number"==typeof a.accuracy&&e.setAttribute("accuracy",a.accuracy),null!=a.featurecoordsys&&(d=this.createElementNS("","FEATURECOORDSYS"),0==a.featurecoordsys.id?d.setAttribute("string",a.featurecoordsys.string):d.setAttribute("id",a.featurecoordsys.id),e.appendChild(d)),null!=a.filtercoordsys&&(d=this.createElementNS("","FILTERCOORDSYS"), 0===a.filtercoordsys.id?d.setAttribute("string",a.filtercoordsys.string):d.setAttribute("id",a.filtercoordsys.id),e.appendChild(d)),0<a.buffer&&(d=this.createElementNS("","BUFFER"),d.setAttribute("distance",a.buffer),e.appendChild(d)),a.isspatial&&(d=this.createElementNS("","SPATIALFILTER"),d.setAttribute("relation",a.spatialfilter.relation),e.appendChild(d),a.spatialfilter.envelope?(f=this.createElementNS("","ENVELOPE"),f.setAttribute("minx",a.spatialfilter.envelope.minx),f.setAttribute("miny",a.spatialfilter.envelope.miny), f.setAttribute("maxx",a.spatialfilter.envelope.maxx),f.setAttribute("maxy",a.spatialfilter.envelope.maxy),d.appendChild(f)):"object"==typeof a.spatialfilter.polygon&&d.appendChild(this.writePolygonGeometry(a.spatialfilter.polygon))),null!=a.where&&0<a.where.length&&e.setAttribute("where",a.where);b.appendChild(c);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},addGroupRenderer:function(a,b){var c=this.createElementNS("","GROUPRENDERER");a.appendChild(c);for(var d=0;d<b.length;d++)this.addRenderer(c, b[d])},addRenderer:function(a,b){if(OpenLayers.Util.isArray(b))this.addGroupRenderer(a,b);else{var c=this.createElementNS("",b.type.toUpperCase()+"RENDERER");a.appendChild(c);"VALUEMAPRENDERER"==c.tagName?this.addValueMapRenderer(c,b):"VALUEMAPLABELRENDERER"==c.tagName?this.addValueMapLabelRenderer(c,b):"SIMPLELABELRENDERER"==c.tagName?this.addSimpleLabelRenderer(c,b):"SCALEDEPENDENTRENDERER"==c.tagName&&this.addScaleDependentRenderer(c,b)}},addScaleDependentRenderer:function(a,b){("string"==typeof b.lower|| "number"==typeof b.lower)&&a.setAttribute("lower",b.lower);("string"==typeof b.upper||"number"==typeof b.upper)&&a.setAttribute("upper",b.upper);this.addRenderer(a,b.renderer)},addValueMapLabelRenderer:function(a,b){a.setAttribute("lookupfield",b.lookupfield);a.setAttribute("labelfield",b.labelfield);if("object"==typeof b.exacts)for(var c=0,d=b.exacts.length;c<d;c++){var e=b.exacts[c],f=this.createElementNS("","EXACT");"string"==typeof e.value&&f.setAttribute("value",e.value);"string"==typeof e.label&& f.setAttribute("label",e.label);"string"==typeof e.method&&f.setAttribute("method",e.method);a.appendChild(f);if("object"==typeof e.symbol){var g=null;"text"==e.symbol.type&&(g=this.createElementNS("","TEXTSYMBOL"));if(null!=g){for(var h=this.fontStyleKeys,i=0,j=h.length;i<j;i++){var k=h[i];e.symbol[k]&&g.setAttribute(k,e.symbol[k])}f.appendChild(g)}}}},addValueMapRenderer:function(a,b){a.setAttribute("lookupfield",b.lookupfield);if("object"==typeof b.ranges)for(var c=0,d=b.ranges.length;c<d;c++){var e= b.ranges[c],f=this.createElementNS("","RANGE");f.setAttribute("lower",e.lower);f.setAttribute("upper",e.upper);a.appendChild(f);if("object"==typeof e.symbol){var g=null;"simplepolygon"==e.symbol.type&&(g=this.createElementNS("","SIMPLEPOLYGONSYMBOL"));null!=g&&("string"==typeof e.symbol.boundarycolor&&g.setAttribute("boundarycolor",e.symbol.boundarycolor),"string"==typeof e.symbol.fillcolor&&g.setAttribute("fillcolor",e.symbol.fillcolor),"number"==typeof e.symbol.filltransparency&&g.setAttribute("filltransparency", e.symbol.filltransparency),f.appendChild(g))}}else if("object"==typeof b.exacts){c=0;for(d=b.exacts.length;c<d;c++)e=b.exacts[c],f=this.createElementNS("","EXACT"),"string"==typeof e.value&&f.setAttribute("value",e.value),"string"==typeof e.label&&f.setAttribute("label",e.label),"string"==typeof e.method&&f.setAttribute("method",e.method),a.appendChild(f),"object"==typeof e.symbol&&(g=null,"simplemarker"==e.symbol.type&&(g=this.createElementNS("","SIMPLEMARKERSYMBOL")),null!=g&&("string"==typeof e.symbol.antialiasing&& g.setAttribute("antialiasing",e.symbol.antialiasing),"string"==typeof e.symbol.color&&g.setAttribute("color",e.symbol.color),"string"==typeof e.symbol.outline&&g.setAttribute("outline",e.symbol.outline),"string"==typeof e.symbol.overlap&&g.setAttribute("overlap",e.symbol.overlap),"string"==typeof e.symbol.shadow&&g.setAttribute("shadow",e.symbol.shadow),"number"==typeof e.symbol.transparency&&g.setAttribute("transparency",e.symbol.transparency),"string"==typeof e.symbol.usecentroid&&g.setAttribute("usecentroid", e.symbol.usecentroid),"number"==typeof e.symbol.width&&g.setAttribute("width",e.symbol.width),f.appendChild(g)))}},addSimpleLabelRenderer:function(a,b){a.setAttribute("field",b.field);for(var c="featureweight howmanylabels labelbufferratio labelpriorities labelweight linelabelposition rotationalangles".split(" "),d=0,e=c.length;d<e;d++){var f=c[d];b[f]&&a.setAttribute(f,b[f])}if("text"==b.symbol.type){var g=b.symbol,h=this.createElementNS("","TEXTSYMBOL");a.appendChild(h);c=this.fontStyleKeys;d=0; for(e=c.length;d<e;d++)f=c[d],g[f]&&h.setAttribute(f,b[f])}},writePolygonGeometry:function(a){if(!(a instanceof OpenLayers.Geometry.Polygon))throw{message:"Cannot write polygon geometry to ArcXML with an "+a.CLASS_NAME+" object.",geometry:a};for(var b=this.createElementNS("","POLYGON"),c=0,d=a.components.length;c<d;c++){for(var e=a.components[c],f=this.createElementNS("","RING"),g=0,h=e.components.length;g<h;g++){var i=e.components[g],j=this.createElementNS("","POINT");j.setAttribute("x",i.x);j.setAttribute("y", i.y);f.appendChild(j)}b.appendChild(f)}return b},parseResponse:function(a){"string"==typeof a&&(a=(new OpenLayers.Format.XML).read(a));var b=new OpenLayers.Format.ArcXML.Response,c=a.getElementsByTagName("ERROR");if(null!=c&&0<c.length)b.error=this.getChildValue(c,"Unknown error.");else{c=a.getElementsByTagName("RESPONSE");if(null==c||0==c.length)return b.error="No RESPONSE tag found in ArcXML response.",b;var d=c[0].firstChild.nodeName;"#text"==d&&(d=c[0].firstChild.nextSibling.nodeName);if("IMAGE"== d)c=a.getElementsByTagName("ENVELOPE"),a=a.getElementsByTagName("OUTPUT"),null==c||0==c.length?b.error="No ENVELOPE tag found in ArcXML response.":null==a||0==a.length?b.error="No OUTPUT tag found in ArcXML response.":(c=this.parseAttributes(c[0]),d=this.parseAttributes(a[0]),b.image="string"==typeof d.type?{envelope:c,output:{type:d.type,data:this.getChildValue(a[0])}}:{envelope:c,output:d});else if("FEATURES"==d){if(a=c[0].getElementsByTagName("FEATURES"),c=a[0].getElementsByTagName("FEATURECOUNT"), b.features.featurecount=c[0].getAttribute("count"),0<b.features.featurecount){c=a[0].getElementsByTagName("ENVELOPE");b.features.envelope=this.parseAttributes(c[0],"number");a=a[0].getElementsByTagName("FEATURE");for(c=0;c<a.length;c++){for(var d=new OpenLayers.Feature.Vector,e=a[c].getElementsByTagName("FIELD"),f=0;f<e.length;f++){var g=e[f].getAttribute("name"),h=e[f].getAttribute("value");d.attributes[g]=h}e=a[c].getElementsByTagName("POLYGON");if(0<e.length){e=e[0].getElementsByTagName("RING"); f=[];for(g=0;g<e.length;g++){h=[];h.push(this.parsePointGeometry(e[g]));for(var i=e[g].getElementsByTagName("HOLE"),j=0;j<i.length;j++)h.push(this.parsePointGeometry(i[j]));f.push(new OpenLayers.Geometry.Polygon(h))}d.geometry=1==f.length?f[0]:new OpenLayers.Geometry.MultiPolygon(f)}b.features.feature.push(d)}}}else b.error="Unidentified response type."}return b},parseAttributes:function(a,b){for(var c={},d=0;d<a.attributes.length;d++)c[a.attributes[d].nodeName]="number"==b?parseFloat(a.attributes[d].nodeValue): a.attributes[d].nodeValue;return c},parsePointGeometry:function(a){var b=[],c=a.getElementsByTagName("COORDS");if(0<c.length){a=this.getChildValue(c[0]);a=a.split(/;/);for(c=0;c<a.length;c++){var d=a[c].split(/ /);b.push(new OpenLayers.Geometry.Point(d[0],d[1]))}}else if(a=a.getElementsByTagName("POINT"),0<a.length)for(c=0;c<a.length;c++)b.push(new OpenLayers.Geometry.Point(parseFloat(a[c].getAttribute("x")),parseFloat(a[c].getAttribute("y"))));return new OpenLayers.Geometry.LinearRing(b)},CLASS_NAME:"OpenLayers.Format.ArcXML"}); OpenLayers.Format.ArcXML.Request=OpenLayers.Class({initialize:function(){return OpenLayers.Util.extend(this,{get_image:{properties:{background:null,draw:!0,envelope:{minx:0,miny:0,maxx:0,maxy:0},featurecoordsys:{id:0,string:"",datumtransformid:0,datumtransformstring:""},filtercoordsys:{id:0,string:"",datumtransformid:0,datumtransformstring:""},imagesize:{height:0,width:0,dpi:96,printheight:0,printwidth:0,scalesymbols:!1},layerlist:[],output:{baseurl:"",legendbaseurl:"",legendname:"",legendpath:"", legendurl:"",name:"",path:"",type:"jpg",url:""}}},get_feature:{layer:"",query:{isspatial:!1,featurecoordsys:{id:0,string:"",datumtransformid:0,datumtransformstring:""},filtercoordsys:{id:0,string:"",datumtransformid:0,datumtransformstring:""},buffer:0,where:"",spatialfilter:{relation:"envelope_intersection",envelope:null}}},environment:{separators:{cs:" ",ts:";"}},layer:[],workspaces:[]})},CLASS_NAME:"OpenLayers.Format.ArcXML.Request"}); OpenLayers.Format.ArcXML.Response=OpenLayers.Class({initialize:function(){return OpenLayers.Util.extend(this,{image:{envelope:null,output:""},features:{featurecount:0,envelope:null,feature:[]},error:""})},CLASS_NAME:"OpenLayers.Format.ArcXML.Response"});OpenLayers.ProxyHost=""; OpenLayers.Request={DEFAULT_CONFIG:{method:"GET",url:window.location.href,async:!0,user:void 0,password:void 0,params:null,proxy:OpenLayers.ProxyHost,headers:{},data:null,callback:function(){},success:null,failure:null,scope:null},URL_SPLIT_REGEX:/([^:]*:)\/\/([^:]*:?[^@]*@)?([^:\/\?]*):?([^\/\?]*)/,events:new OpenLayers.Events(this),makeSameOrigin:function(a,b){var c=0!==a.indexOf("http"),d=!c&&a.match(this.URL_SPLIT_REGEX);if(d){var e=window.location,c=d[1]==e.protocol&&d[3]==e.hostname,d=d[4], e=e.port;if(80!=d&&""!=d||"80"!=e&&""!=e)c=c&&d==e}c||(b?a="function"==typeof b?b(a):b+encodeURIComponent(a):OpenLayers.Console.warn(OpenLayers.i18n("proxyNeeded"),{url:a}));return a},issue:function(a){var b=OpenLayers.Util.extend(this.DEFAULT_CONFIG,{proxy:OpenLayers.ProxyHost}),a=OpenLayers.Util.applyDefaults(a,b),b=!1,c;for(c in a.headers)a.headers.hasOwnProperty(c)&&"x-requested-with"===c.toLowerCase()&&(b=!0);!1===b&&(a.headers["X-Requested-With"]="XMLHttpRequest");var d=new OpenLayers.Request.XMLHttpRequest, e=OpenLayers.Util.urlAppend(a.url,OpenLayers.Util.getParameterString(a.params||{})),e=OpenLayers.Request.makeSameOrigin(e,a.proxy);d.open(a.method,e,a.async,a.user,a.password);for(var f in a.headers)d.setRequestHeader(f,a.headers[f]);var g=this.events,h=this;d.onreadystatechange=function(){d.readyState==OpenLayers.Request.XMLHttpRequest.DONE&&!1!==g.triggerEvent("complete",{request:d,config:a,requestUrl:e})&&h.runCallbacks({request:d,config:a,requestUrl:e})};!1===a.async?d.send(a.data):window.setTimeout(function(){0!== d.readyState&&d.send(a.data)},0);return d},runCallbacks:function(a){var b=a.request,c=a.config,d=c.scope?OpenLayers.Function.bind(c.callback,c.scope):c.callback,e;c.success&&(e=c.scope?OpenLayers.Function.bind(c.success,c.scope):c.success);var f;c.failure&&(f=c.scope?OpenLayers.Function.bind(c.failure,c.scope):c.failure);"file:"==OpenLayers.Util.createUrlObject(c.url).protocol&&b.responseText&&(b.status=200);d(b);if(!b.status||200<=b.status&&300>b.status)this.events.triggerEvent("success",a),e&&e(b); if(b.status&&(200>b.status||300<=b.status))this.events.triggerEvent("failure",a),f&&f(b)},GET:function(a){a=OpenLayers.Util.extend(a,{method:"GET"});return OpenLayers.Request.issue(a)},POST:function(a){a=OpenLayers.Util.extend(a,{method:"POST"});a.headers=a.headers?a.headers:{};"CONTENT-TYPE"in OpenLayers.Util.upperCaseObject(a.headers)||(a.headers["Content-Type"]="application/xml");return OpenLayers.Request.issue(a)},PUT:function(a){a=OpenLayers.Util.extend(a,{method:"PUT"});a.headers=a.headers? a.headers:{};"CONTENT-TYPE"in OpenLayers.Util.upperCaseObject(a.headers)||(a.headers["Content-Type"]="application/xml");return OpenLayers.Request.issue(a)},DELETE:function(a){a=OpenLayers.Util.extend(a,{method:"DELETE"});return OpenLayers.Request.issue(a)},HEAD:function(a){a=OpenLayers.Util.extend(a,{method:"HEAD"});return OpenLayers.Request.issue(a)},OPTIONS:function(a){a=OpenLayers.Util.extend(a,{method:"OPTIONS"});return OpenLayers.Request.issue(a)}};OpenLayers.Layer.ArcIMS=OpenLayers.Class(OpenLayers.Layer.Grid,{DEFAULT_PARAMS:{ClientVersion:"9.2",ServiceName:""},featureCoordSys:"4326",filterCoordSys:"4326",layers:null,async:!0,name:"ArcIMS",isBaseLayer:!0,DEFAULT_OPTIONS:{tileSize:new OpenLayers.Size(512,512),featureCoordSys:"4326",filterCoordSys:"4326",layers:null,isBaseLayer:!0,async:!0,name:"ArcIMS"},initialize:function(a,b,c){this.tileSize=new OpenLayers.Size(512,512);this.params=OpenLayers.Util.applyDefaults({ServiceName:c.serviceName}, this.DEFAULT_PARAMS);this.options=OpenLayers.Util.applyDefaults(c,this.DEFAULT_OPTIONS);OpenLayers.Layer.Grid.prototype.initialize.apply(this,[a,b,this.params,c]);if(this.transparent&&(this.isBaseLayer||(this.isBaseLayer=!1),"image/jpeg"==this.format))this.format=OpenLayers.Util.alphaHack()?"image/gif":"image/png";null===this.options.layers&&(this.options.layers=[])},getURL:function(a){var b="",a=this.adjustBounds(a),a=new OpenLayers.Format.ArcXML(OpenLayers.Util.extend(this.options,{requesttype:"image", envelope:a.toArray(),tileSize:this.tileSize})),a=new OpenLayers.Request.POST({url:this.getFullRequestString(),data:a.write(),async:!1});if(null!=a){b=a.responseXML;if(!b||!b.documentElement)b=a.responseText;b=this.getUrlOrImage((new OpenLayers.Format.ArcXML).read(b).image.output)}return b},getURLasync:function(a,b,c){a=this.adjustBounds(a);a=new OpenLayers.Format.ArcXML(OpenLayers.Util.extend(this.options,{requesttype:"image",envelope:a.toArray(),tileSize:this.tileSize}));OpenLayers.Request.POST({url:this.getFullRequestString(), async:!0,data:a.write(),callback:function(a){var e=a.responseXML;if(!e||!e.documentElement)e=a.responseText;a=(new OpenLayers.Format.ArcXML).read(e);b.call(c,this.getUrlOrImage(a.image.output))},scope:this})},getUrlOrImage:function(a){var b="";a.url?b=a.url:a.data&&(b="data:image/"+a.type+";base64,"+a.data);return b},setLayerQuery:function(a,b){for(var c=0;c<this.options.layers.length;c++)if(a==this.options.layers[c].id){this.options.layers[c].query=b;return}this.options.layers.push({id:a,visible:!0, query:b})},getFeatureInfo:function(a,b,c){var d=c.buffer||1,e=c.callback||function(){},f=c.scope||window,g={};OpenLayers.Util.extend(g,this.options);g.requesttype="feature";a instanceof OpenLayers.LonLat?(g.polygon=null,g.envelope=[a.lon-d,a.lat-d,a.lon+d,a.lat+d]):a instanceof OpenLayers.Geometry.Polygon&&(g.envelope=null,g.polygon=a);var h=new OpenLayers.Format.ArcXML(g);OpenLayers.Util.extend(h.request.get_feature,c);h.request.get_feature.layer=b.id;"number"==typeof b.query.accuracy?h.request.get_feature.query.accuracy= b.query.accuracy:(a=this.map.getCenter(),c=this.map.getViewPortPxFromLonLat(a),c.x++,c=this.map.getLonLatFromPixel(c),h.request.get_feature.query.accuracy=c.lon-a.lon);h.request.get_feature.query.where=b.query.where;h.request.get_feature.query.spatialfilter.relation="area_intersection";OpenLayers.Request.POST({url:this.getFullRequestString({CustomService:"Query"}),data:h.write(),callback:function(a){a=h.parseResponse(a.responseText);h.iserror()?e.call(f,null):e.call(f,a.features)}})},clone:function(a){null== a&&(a=new OpenLayers.Layer.ArcIMS(this.name,this.url,this.getOptions()));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a])},CLASS_NAME:"OpenLayers.Layer.ArcIMS"});OpenLayers.Format.OWSCommon.v1_1_0=OpenLayers.Class(OpenLayers.Format.OWSCommon.v1,{namespaces:{ows:"http://www.opengis.net/ows/1.1",xlink:"http://www.w3.org/1999/xlink"},readers:{ows:OpenLayers.Util.applyDefaults({ExceptionReport:function(a,b){b.exceptionReport={version:a.getAttribute("version"),language:a.getAttribute("xml:lang"),exceptions:[]};this.readChildNodes(a,b.exceptionReport)},AllowedValues:function(a,b){b.allowedValues={};this.readChildNodes(a,b.allowedValues)},AnyValue:function(a,b){b.anyValue= !0},DataType:function(a,b){b.dataType=this.getChildValue(a)},Range:function(a,b){b.range={};this.readChildNodes(a,b.range)},MinimumValue:function(a,b){b.minValue=this.getChildValue(a)},MaximumValue:function(a,b){b.maxValue=this.getChildValue(a)},Identifier:function(a,b){b.identifier=this.getChildValue(a)},SupportedCRS:function(a,b){b.supportedCRS=this.getChildValue(a)}},OpenLayers.Format.OWSCommon.v1.prototype.readers.ows)},writers:{ows:OpenLayers.Util.applyDefaults({Range:function(a){var b=this.createElementNSPlus("ows:Range", {attributes:{"ows:rangeClosure":a.closure}});this.writeNode("ows:MinimumValue",a.minValue,b);this.writeNode("ows:MaximumValue",a.maxValue,b);return b},MinimumValue:function(a){return this.createElementNSPlus("ows:MinimumValue",{value:a})},MaximumValue:function(a){return this.createElementNSPlus("ows:MaximumValue",{value:a})},Value:function(a){return this.createElementNSPlus("ows:Value",{value:a})}},OpenLayers.Format.OWSCommon.v1.prototype.writers.ows)},CLASS_NAME:"OpenLayers.Format.OWSCommon.v1_1_0"});OpenLayers.Format.WCSGetCoverage=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{ows:"http://www.opengis.net/ows/1.1",wcs:"http://www.opengis.net/wcs/1.1",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},VERSION:"1.1.2",schemaLocation:"http://www.opengis.net/wcs/1.1 http://schemas.opengis.net/wcs/1.1/wcsGetCoverage.xsd",write:function(a){a=this.writeNode("wcs:GetCoverage", a);this.setAttributeNS(a,this.namespaces.xsi,"xsi:schemaLocation",this.schemaLocation);return OpenLayers.Format.XML.prototype.write.apply(this,[a])},writers:{wcs:{GetCoverage:function(a){var b=this.createElementNSPlus("wcs:GetCoverage",{attributes:{version:a.version||this.VERSION,service:"WCS"}});this.writeNode("ows:Identifier",a.identifier,b);this.writeNode("wcs:DomainSubset",a.domainSubset,b);this.writeNode("wcs:Output",a.output,b);return b},DomainSubset:function(a){var b=this.createElementNSPlus("wcs:DomainSubset", {});this.writeNode("ows:BoundingBox",a.boundingBox,b);a.temporalSubset&&this.writeNode("wcs:TemporalSubset",a.temporalSubset,b);return b},TemporalSubset:function(a){for(var b=this.createElementNSPlus("wcs:TemporalSubset",{}),c=0,d=a.timePeriods.length;c<d;++c)this.writeNode("wcs:TimePeriod",a.timePeriods[c],b);return b},TimePeriod:function(a){var b=this.createElementNSPlus("wcs:TimePeriod",{});this.writeNode("wcs:BeginPosition",a.begin,b);this.writeNode("wcs:EndPosition",a.end,b);a.resolution&&this.writeNode("wcs:TimeResolution", a.resolution,b);return b},BeginPosition:function(a){return this.createElementNSPlus("wcs:BeginPosition",{value:a})},EndPosition:function(a){return this.createElementNSPlus("wcs:EndPosition",{value:a})},TimeResolution:function(a){return this.createElementNSPlus("wcs:TimeResolution",{value:a})},Output:function(a){var b=this.createElementNSPlus("wcs:Output",{attributes:{format:a.format,store:a.store}});a.gridCRS&&this.writeNode("wcs:GridCRS",a.gridCRS,b);return b},GridCRS:function(a){var b=this.createElementNSPlus("wcs:GridCRS", {});this.writeNode("wcs:GridBaseCRS",a.baseCRS,b);a.type&&this.writeNode("wcs:GridType",a.type,b);a.origin&&this.writeNode("wcs:GridOrigin",a.origin,b);this.writeNode("wcs:GridOffsets",a.offsets,b);a.CS&&this.writeNode("wcs:GridCS",a.CS,b);return b},GridBaseCRS:function(a){return this.createElementNSPlus("wcs:GridBaseCRS",{value:a})},GridOrigin:function(a){return this.createElementNSPlus("wcs:GridOrigin",{value:a})},GridType:function(a){return this.createElementNSPlus("wcs:GridType",{value:a})},GridOffsets:function(a){return this.createElementNSPlus("wcs:GridOffsets", {value:a})},GridCS:function(a){return this.createElementNSPlus("wcs:GridCS",{value:a})}},ows:OpenLayers.Format.OWSCommon.v1_1_0.prototype.writers.ows},CLASS_NAME:"OpenLayers.Format.WCSGetCoverage"});OpenLayers.Format.WPSExecute=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{ows:"http://www.opengis.net/ows/1.1",gml:"http://www.opengis.net/gml",wps:"http://www.opengis.net/wps/1.0.0",wfs:"http://www.opengis.net/wfs",ogc:"http://www.opengis.net/ogc",wcs:"http://www.opengis.net/wcs",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},VERSION:"1.0.0",schemaLocation:"http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd", schemaLocationAttr:function(){},write:function(a){var b;window.ActiveXObject?this.xmldom=b=new ActiveXObject("Microsoft.XMLDOM"):b=document.implementation.createDocument("","",null);a=this.writeNode("wps:Execute",a,b);this.setAttributeNS(a,this.namespaces.xsi,"xsi:schemaLocation",this.schemaLocation);return OpenLayers.Format.XML.prototype.write.apply(this,[a])},writers:{wps:{Execute:function(a){var b=this.createElementNSPlus("wps:Execute",{attributes:{version:this.VERSION,service:"WPS"}});this.writeNode("ows:Identifier", a.identifier,b);this.writeNode("wps:DataInputs",a.dataInputs,b);this.writeNode("wps:ResponseForm",a.responseForm,b);return b},ResponseForm:function(a){var b=this.createElementNSPlus("wps:ResponseForm",{});a.rawDataOutput&&this.writeNode("wps:RawDataOutput",a.rawDataOutput,b);a.responseDocument&&this.writeNode("wps:ResponseDocument",a.responseDocument,b);return b},ResponseDocument:function(a){var b=this.createElementNSPlus("wps:ResponseDocument",{attributes:{storeExecuteResponse:a.storeExecuteResponse, lineage:a.lineage,status:a.status}});a.output&&this.writeNode("wps:Output",a.output,b);return b},Output:function(a){var b=this.createElementNSPlus("wps:Output",{attributes:{asReference:a.asReference}});this.writeNode("ows:Identifier",a.identifier,b);this.writeNode("ows:Title",a.title,b);this.writeNode("ows:Abstract",a["abstract"],b);return b},RawDataOutput:function(a){var b=this.createElementNSPlus("wps:RawDataOutput",{attributes:{mimeType:a.mimeType}});this.writeNode("ows:Identifier",a.identifier, b);return b},DataInputs:function(a){for(var b=this.createElementNSPlus("wps:DataInputs",{}),c=0,d=a.length;c<d;++c)this.writeNode("wps:Input",a[c],b);return b},Input:function(a){var b=this.createElementNSPlus("wps:Input",{});this.writeNode("ows:Identifier",a.identifier,b);a.title&&this.writeNode("ows:Title",a.title,b);a.data&&this.writeNode("wps:Data",a.data,b);a.reference&&this.writeNode("wps:Reference",a.reference,b);return b},Data:function(a){var b=this.createElementNSPlus("wps:Data",{});a.literalData? this.writeNode("wps:LiteralData",a.literalData,b):a.complexData&&this.writeNode("wps:ComplexData",a.complexData,b);return b},LiteralData:function(a){return this.createElementNSPlus("wps:LiteralData",{attributes:{uom:a.uom},value:a.value})},ComplexData:function(a){var b=this.createElementNSPlus("wps:ComplexData",{attributes:{mimeType:a.mimeType,encoding:a.encoding,schema:a.schema}}),c=a.value;"string"===typeof c?b.appendChild(this.getXMLDoc().createCDATASection(a.value)):b.appendChild(c);return b}, Reference:function(a){var b=this.createElementNSPlus("wps:Reference",{attributes:{mimeType:a.mimeType,"xlink:href":a.href,method:a.method,encoding:a.encoding,schema:a.schema}});a.body&&this.writeNode("wps:Body",a.body,b);return b},Body:function(a){var b=this.createElementNSPlus("wps:Body",{});a.wcs?this.writeNode("wcs:GetCoverage",a.wcs,b):a.wfs?(this.featureType=a.wfs.featureType,this.version=a.wfs.version,this.writeNode("wfs:GetFeature",a.wfs,b)):this.writeNode("wps:Execute",a,b);return b}},wcs:OpenLayers.Format.WCSGetCoverage.prototype.writers.wcs, wfs:OpenLayers.Format.WFST.v1_1_0.prototype.writers.wfs,ogc:OpenLayers.Format.Filter.v1_1_0.prototype.writers.ogc,ows:OpenLayers.Format.OWSCommon.v1_1_0.prototype.writers.ows},CLASS_NAME:"OpenLayers.Format.WPSExecute"});OpenLayers.Control.PanZoom=OpenLayers.Class(OpenLayers.Control,{slideFactor:50,slideRatio:null,buttons:null,position:null,initialize:function(a){this.position=new OpenLayers.Pixel(OpenLayers.Control.PanZoom.X,OpenLayers.Control.PanZoom.Y);OpenLayers.Control.prototype.initialize.apply(this,arguments)},destroy:function(){this.map&&this.map.events.unregister("buttonclick",this,this.onButtonClick);this.removeButtons();this.position=this.buttons=null;OpenLayers.Control.prototype.destroy.apply(this,arguments)}, setMap:function(a){OpenLayers.Control.prototype.setMap.apply(this,arguments);this.map.events.register("buttonclick",this,this.onButtonClick)},draw:function(a){OpenLayers.Control.prototype.draw.apply(this,arguments);a=this.position;this.buttons=[];var b={w:18,h:18},c=new OpenLayers.Pixel(a.x+b.w/2,a.y);this._addButton("panup","north-mini.png",c,b);a.y=c.y+b.h;this._addButton("panleft","west-mini.png",a,b);this._addButton("panright","east-mini.png",a.add(b.w,0),b);this._addButton("pandown","south-mini.png", c.add(0,2*b.h),b);this._addButton("zoomin","zoom-plus-mini.png",c.add(0,3*b.h+5),b);this._addButton("zoomworld","zoom-world-mini.png",c.add(0,4*b.h+5),b);this._addButton("zoomout","zoom-minus-mini.png",c.add(0,5*b.h+5),b);return this.div},_addButton:function(a,b,c,d){b=OpenLayers.Util.getImageLocation(b);c=OpenLayers.Util.createAlphaImageDiv(this.id+"_"+a,c,d,b,"absolute");c.style.cursor="pointer";this.div.appendChild(c);c.action=a;c.className="olButton";this.buttons.push(c);return c},_removeButton:function(a){this.div.removeChild(a); OpenLayers.Util.removeItem(this.buttons,a)},removeButtons:function(){for(var a=this.buttons.length-1;0<=a;--a)this._removeButton(this.buttons[a])},onButtonClick:function(a){switch(a.buttonElement.action){case "panup":this.map.pan(0,-this.getSlideFactor("h"));break;case "pandown":this.map.pan(0,this.getSlideFactor("h"));break;case "panleft":this.map.pan(-this.getSlideFactor("w"),0);break;case "panright":this.map.pan(this.getSlideFactor("w"),0);break;case "zoomin":this.map.zoomIn();break;case "zoomout":this.map.zoomOut(); break;case "zoomworld":this.map.zoomToMaxExtent()}},getSlideFactor:function(a){return this.slideRatio?this.map.getSize()[a]*this.slideRatio:this.slideFactor},CLASS_NAME:"OpenLayers.Control.PanZoom"});OpenLayers.Control.PanZoom.X=4;OpenLayers.Control.PanZoom.Y=4;OpenLayers.Control.PanZoomBar=OpenLayers.Class(OpenLayers.Control.PanZoom,{zoomStopWidth:18,zoomStopHeight:11,slider:null,sliderEvents:null,zoombarDiv:null,zoomWorldIcon:!1,panIcons:!0,forceFixedZoomLevel:!1,mouseDragStart:null,deltaY:null,zoomStart:null,destroy:function(){this._removeZoomBar();this.map.events.un({changebaselayer:this.redraw,scope:this});OpenLayers.Control.PanZoom.prototype.destroy.apply(this,arguments);delete this.mouseDragStart;delete this.zoomStart},setMap:function(a){OpenLayers.Control.PanZoom.prototype.setMap.apply(this, arguments);this.map.events.register("changebaselayer",this,this.redraw)},redraw:function(){null!=this.div&&(this.removeButtons(),this._removeZoomBar());this.draw()},draw:function(a){OpenLayers.Control.prototype.draw.apply(this,arguments);a=this.position.clone();this.buttons=[];var b={w:18,h:18};if(this.panIcons){var c=new OpenLayers.Pixel(a.x+b.w/2,a.y),d=b.w;this.zoomWorldIcon&&(c=new OpenLayers.Pixel(a.x+b.w,a.y));this._addButton("panup","north-mini.png",c,b);a.y=c.y+b.h;this._addButton("panleft", "west-mini.png",a,b);this.zoomWorldIcon&&(this._addButton("zoomworld","zoom-world-mini.png",a.add(b.w,0),b),d*=2);this._addButton("panright","east-mini.png",a.add(d,0),b);this._addButton("pandown","south-mini.png",c.add(0,2*b.h),b);this._addButton("zoomin","zoom-plus-mini.png",c.add(0,3*b.h+5),b);c=this._addZoomBar(c.add(0,4*b.h+5));this._addButton("zoomout","zoom-minus-mini.png",c,b)}else this._addButton("zoomin","zoom-plus-mini.png",a,b),c=this._addZoomBar(a.add(0,b.h)),this._addButton("zoomout", "zoom-minus-mini.png",c,b),this.zoomWorldIcon&&(c=c.add(0,b.h+3),this._addButton("zoomworld","zoom-world-mini.png",c,b));return this.div},_addZoomBar:function(a){var b=OpenLayers.Util.getImageLocation("slider.png"),c=this.id+"_"+this.map.id,d=this.map.getNumZoomLevels()-1-this.map.getZoom(),d=OpenLayers.Util.createAlphaImageDiv(c,a.add(-1,d*this.zoomStopHeight),{w:20,h:9},b,"absolute");d.style.cursor="move";this.slider=d;this.sliderEvents=new OpenLayers.Events(this,d,null,!0,{includeXY:!0});this.sliderEvents.on({touchstart:this.zoomBarDown, touchmove:this.zoomBarDrag,touchend:this.zoomBarUp,mousedown:this.zoomBarDown,mousemove:this.zoomBarDrag,mouseup:this.zoomBarUp});var e={w:this.zoomStopWidth,h:this.zoomStopHeight*this.map.getNumZoomLevels()},b=OpenLayers.Util.getImageLocation("zoombar.png"),c=null;OpenLayers.Util.alphaHack()?(c=this.id+"_"+this.map.id,c=OpenLayers.Util.createAlphaImageDiv(c,a,{w:e.w,h:this.zoomStopHeight},b,"absolute",null,"crop"),c.style.height=e.h+"px"):c=OpenLayers.Util.createDiv("OpenLayers_Control_PanZoomBar_Zoombar"+ this.map.id,a,e,b);c.style.cursor="pointer";c.className="olButton";this.zoombarDiv=c;this.div.appendChild(c);this.startTop=parseInt(c.style.top);this.div.appendChild(d);this.map.events.register("zoomend",this,this.moveZoomBar);return a=a.add(0,this.zoomStopHeight*this.map.getNumZoomLevels())},_removeZoomBar:function(){this.sliderEvents.un({touchstart:this.zoomBarDown,touchmove:this.zoomBarDrag,touchend:this.zoomBarUp,mousedown:this.zoomBarDown,mousemove:this.zoomBarDrag,mouseup:this.zoomBarUp});this.sliderEvents.destroy(); this.div.removeChild(this.zoombarDiv);this.zoombarDiv=null;this.div.removeChild(this.slider);this.slider=null;this.map.events.unregister("zoomend",this,this.moveZoomBar)},onButtonClick:function(a){OpenLayers.Control.PanZoom.prototype.onButtonClick.apply(this,arguments);if(a.buttonElement===this.zoombarDiv){var b=a.buttonXY.y/this.zoomStopHeight;if(this.forceFixedZoomLevel||!this.map.fractionalZoom)b=Math.floor(b);b=this.map.getNumZoomLevels()-1-b;b=Math.min(Math.max(b,0),this.map.getNumZoomLevels()- 1);this.map.zoomTo(b)}},passEventToSlider:function(a){this.sliderEvents.handleBrowserEvent(a)},zoomBarDown:function(a){if(OpenLayers.Event.isLeftClick(a)||OpenLayers.Event.isSingleTouch(a))this.map.events.on({touchmove:this.passEventToSlider,mousemove:this.passEventToSlider,mouseup:this.passEventToSlider,scope:this}),this.mouseDragStart=a.xy.clone(),this.zoomStart=a.xy.clone(),this.div.style.cursor="move",this.zoombarDiv.offsets=null,OpenLayers.Event.stop(a)},zoomBarDrag:function(a){if(null!=this.mouseDragStart){var b= this.mouseDragStart.y-a.xy.y,c=OpenLayers.Util.pagePosition(this.zoombarDiv);0<a.clientY-c[1]&&a.clientY-c[1]<parseInt(this.zoombarDiv.style.height)-2&&(this.slider.style.top=parseInt(this.slider.style.top)-b+"px",this.mouseDragStart=a.xy.clone());this.deltaY=this.zoomStart.y-a.xy.y;OpenLayers.Event.stop(a)}},zoomBarUp:function(a){if((OpenLayers.Event.isLeftClick(a)||"touchend"===a.type)&&this.mouseDragStart){this.div.style.cursor="";this.map.events.un({touchmove:this.passEventToSlider,mouseup:this.passEventToSlider, mousemove:this.passEventToSlider,scope:this});var b=this.map.zoom;!this.forceFixedZoomLevel&&this.map.fractionalZoom?(b+=this.deltaY/this.zoomStopHeight,b=Math.min(Math.max(b,0),this.map.getNumZoomLevels()-1)):(b+=this.deltaY/this.zoomStopHeight,b=Math.max(Math.round(b),0));this.map.zoomTo(b);this.zoomStart=this.mouseDragStart=null;this.deltaY=0;OpenLayers.Event.stop(a)}},moveZoomBar:function(){this.slider.style.top=(this.map.getNumZoomLevels()-1-this.map.getZoom())*this.zoomStopHeight+this.startTop+ 1+"px"},CLASS_NAME:"OpenLayers.Control.PanZoomBar"});OpenLayers.Format.WFSCapabilities=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.1.0",errorProperty:"service",CLASS_NAME:"OpenLayers.Format.WFSCapabilities"});OpenLayers.Format.WFSCapabilities.v1=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{wfs:"http://www.opengis.net/wfs",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance",ows:"http://www.opengis.net/ows"},defaultPrefix:"wfs",read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement);var b={};this.readNode(a,b);return b},readers:{wfs:{WFS_Capabilities:function(a,b){this.readChildNodes(a,b)}, FeatureTypeList:function(a,b){b.featureTypeList={featureTypes:[]};this.readChildNodes(a,b.featureTypeList)},FeatureType:function(a,b){var c={};this.readChildNodes(a,c);b.featureTypes.push(c)},Name:function(a,b){var c=this.getChildValue(a);c&&(c=c.split(":"),b.name=c.pop(),0<c.length&&(b.featureNS=this.lookupNamespaceURI(a,c[0])))},Title:function(a,b){var c=this.getChildValue(a);c&&(b.title=c)},Abstract:function(a,b){var c=this.getChildValue(a);c&&(b["abstract"]=c)}}},CLASS_NAME:"OpenLayers.Format.WFSCapabilities.v1"});OpenLayers.Format.WFSCapabilities.v1_1_0=OpenLayers.Class(OpenLayers.Format.WFSCapabilities.v1,{regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},readers:{wfs:OpenLayers.Util.applyDefaults({DefaultSRS:function(a,b){var c=this.getChildValue(a);c&&(b.srs=c)}},OpenLayers.Format.WFSCapabilities.v1.prototype.readers.wfs),ows:OpenLayers.Format.OWSCommon.v1.prototype.readers.ows},CLASS_NAME:"OpenLayers.Format.WFSCapabilities.v1_1_0"});OpenLayers.Layer.Image=OpenLayers.Class(OpenLayers.Layer,{isBaseLayer:!0,url:null,extent:null,size:null,tile:null,aspectRatio:null,initialize:function(a,b,c,d,e){this.url=b;this.maxExtent=this.extent=c;this.size=d;OpenLayers.Layer.prototype.initialize.apply(this,[a,e]);this.aspectRatio=this.extent.getHeight()/this.size.h/(this.extent.getWidth()/this.size.w)},destroy:function(){this.tile&&(this.removeTileMonitoringHooks(this.tile),this.tile.destroy(),this.tile=null);OpenLayers.Layer.prototype.destroy.apply(this, arguments)},clone:function(a){null==a&&(a=new OpenLayers.Layer.Image(this.name,this.url,this.extent,this.size,this.getOptions()));return a=OpenLayers.Layer.prototype.clone.apply(this,[a])},setMap:function(a){null==this.options.maxResolution&&(this.options.maxResolution=this.aspectRatio*this.extent.getWidth()/this.size.w);OpenLayers.Layer.prototype.setMap.apply(this,arguments)},moveTo:function(a,b,c){OpenLayers.Layer.prototype.moveTo.apply(this,arguments);var d=null==this.tile;if(b||d){this.setTileSize(); var e=this.map.getLayerPxFromLonLat({lon:this.extent.left,lat:this.extent.top});d?(this.tile=new OpenLayers.Tile.Image(this,e,this.extent,null,this.tileSize),this.addTileMonitoringHooks(this.tile)):(this.tile.size=this.tileSize.clone(),this.tile.position=e.clone());this.tile.draw()}},setTileSize:function(){var a=this.extent.getWidth()/this.map.getResolution(),b=this.extent.getHeight()/this.map.getResolution();this.tileSize=new OpenLayers.Size(a,b)},addTileMonitoringHooks:function(a){a.onLoadStart= function(){this.events.triggerEvent("loadstart")};a.events.register("loadstart",this,a.onLoadStart);a.onLoadEnd=function(){this.events.triggerEvent("loadend")};a.events.register("loadend",this,a.onLoadEnd);a.events.register("unload",this,a.onLoadEnd)},removeTileMonitoringHooks:function(a){a.unload();a.events.un({loadstart:a.onLoadStart,loadend:a.onLoadEnd,unload:a.onLoadEnd,scope:this})},setUrl:function(a){this.url=a;this.tile.draw()},getURL:function(){return this.url},CLASS_NAME:"OpenLayers.Layer.Image"});OpenLayers.Strategy=OpenLayers.Class({layer:null,options:null,active:null,autoActivate:!0,autoDestroy:!0,initialize:function(a){OpenLayers.Util.extend(this,a);this.options=a;this.active=!1},destroy:function(){this.deactivate();this.options=this.layer=null},setLayer:function(a){this.layer=a},activate:function(){return!this.active?this.active=!0:!1},deactivate:function(){return this.active?(this.active=!1,!0):!1},CLASS_NAME:"OpenLayers.Strategy"});OpenLayers.Strategy.Save=OpenLayers.Class(OpenLayers.Strategy,{events:null,auto:!1,timer:null,initialize:function(a){OpenLayers.Strategy.prototype.initialize.apply(this,[a]);this.events=new OpenLayers.Events(this)},activate:function(){var a=OpenLayers.Strategy.prototype.activate.call(this);if(a&&this.auto)if("number"===typeof this.auto)this.timer=window.setInterval(OpenLayers.Function.bind(this.save,this),1E3*this.auto);else this.layer.events.on({featureadded:this.triggerSave,afterfeaturemodified:this.triggerSave, scope:this});return a},deactivate:function(){var a=OpenLayers.Strategy.prototype.deactivate.call(this);a&&this.auto&&("number"===typeof this.auto?window.clearInterval(this.timer):this.layer.events.un({featureadded:this.triggerSave,afterfeaturemodified:this.triggerSave,scope:this}));return a},triggerSave:function(a){var b=a.feature;(b.state===OpenLayers.State.INSERT||b.state===OpenLayers.State.UPDATE||b.state===OpenLayers.State.DELETE)&&this.save([a.feature])},save:function(a){a||(a=this.layer.features); this.events.triggerEvent("start",{features:a});var b=this.layer.projection,c=this.layer.map.getProjectionObject();if(!c.equals(b)){for(var d=a.length,e=Array(d),f,g,h=0;h<d;++h)f=a[h],g=f.clone(),g.fid=f.fid,g.state=f.state,f.url&&(g.url=f.url),g._original=f,g.geometry.transform(c,b),e[h]=g;a=e}this.layer.protocol.commit(a,{callback:this.onCommit,scope:this})},onCommit:function(a){var b={response:a};if(a.success()){for(var c=a.reqFeatures,d,e=[],f=a.insertIds||[],g=0,h=0,i=c.length;h<i;++h)if(d=c[h], d=d._original||d,a=d.state)a==OpenLayers.State.DELETE?e.push(d):a==OpenLayers.State.INSERT&&(d.fid=f[g],++g),d.state=null;0<e.length&&this.layer.destroyFeatures(e);this.events.triggerEvent("success",b)}else this.events.triggerEvent("fail",b)},CLASS_NAME:"OpenLayers.Strategy.Save"});OpenLayers.Format.GPX=OpenLayers.Class(OpenLayers.Format.XML,{defaultDesc:"No description available",extractWaypoints:!0,extractTracks:!0,extractRoutes:!0,extractAttributes:!0,namespaces:{gpx:"http://www.topografix.com/GPX/1/1",xsi:"http://www.w3.org/2001/XMLSchema-instance"},schemaLocation:"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd",creator:"OpenLayers",initialize:function(a){this.externalProjection=new OpenLayers.Projection("EPSG:4326");OpenLayers.Format.XML.prototype.initialize.apply(this, [a])},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));var b=[];if(this.extractTracks)for(var c=a.getElementsByTagName("trk"),d=0,e=c.length;d<e;d++){var f={};this.extractAttributes&&(f=this.parseAttributes(c[d]));for(var g=this.getElementsByTagNameNS(c[d],c[d].namespaceURI,"trkseg"),h=0,i=g.length;h<i;h++){var j=this.extractSegment(g[h],"trkpt");b.push(new OpenLayers.Feature.Vector(j,f))}}if(this.extractRoutes){e=a.getElementsByTagName("rte");c=0;for(d= e.length;c<d;c++)f={},this.extractAttributes&&(f=this.parseAttributes(e[c])),g=this.extractSegment(e[c],"rtept"),b.push(new OpenLayers.Feature.Vector(g,f))}if(this.extractWaypoints){a=a.getElementsByTagName("wpt");c=0;for(e=a.length;c<e;c++)f={},this.extractAttributes&&(f=this.parseAttributes(a[c])),d=new OpenLayers.Geometry.Point(a[c].getAttribute("lon"),a[c].getAttribute("lat")),b.push(new OpenLayers.Feature.Vector(d,f))}if(this.internalProjection&&this.externalProjection){f=0;for(a=b.length;f< a;f++)b[f].geometry.transform(this.externalProjection,this.internalProjection)}return b},extractSegment:function(a,b){for(var c=this.getElementsByTagNameNS(a,a.namespaceURI,b),d=[],e=0,f=c.length;e<f;e++)d.push(new OpenLayers.Geometry.Point(c[e].getAttribute("lon"),c[e].getAttribute("lat")));return new OpenLayers.Geometry.LineString(d)},parseAttributes:function(a){for(var b={},a=a.firstChild,c,d;a;){if(1==a.nodeType&&a.firstChild&&(c=a.firstChild,3==c.nodeType||4==c.nodeType))d=a.prefix?a.nodeName.split(":")[1]: a.nodeName,"trkseg"!=d&&"rtept"!=d&&(b[d]=c.nodeValue);a=a.nextSibling}return b},write:function(a,b){var a=OpenLayers.Util.isArray(a)?a:[a],c=this.createElementNS(this.namespaces.gpx,"gpx");c.setAttribute("version","1.1");c.setAttribute("creator",this.creator);this.setAttributes(c,{"xsi:schemaLocation":this.schemaLocation});b&&"object"==typeof b&&c.appendChild(this.buildMetadataNode(b));for(var d=0,e=a.length;d<e;d++)c.appendChild(this.buildFeatureNode(a[d]));return OpenLayers.Format.XML.prototype.write.apply(this, [c])},buildMetadataNode:function(a){for(var b=["name","desc","author"],c=this.createElementNSPlus("gpx:metadata"),d=0;d<b.length;d++){var e=b[d];if(a[e]){var f=this.createElementNSPlus("gpx:"+e);f.appendChild(this.createTextNode(a[e]));c.appendChild(f)}}return c},buildFeatureNode:function(a){var b=a.geometry,b=b.clone();this.internalProjection&&this.externalProjection&&b.transform(this.internalProjection,this.externalProjection);if("OpenLayers.Geometry.Point"==b.CLASS_NAME){var c=this.buildWptNode(b); this.appendAttributesNode(c,a);return c}c=this.createElementNSPlus("gpx:trk");this.appendAttributesNode(c,a);for(var a=this.buildTrkSegNode(b),a=OpenLayers.Util.isArray(a)?a:[a],b=0,d=a.length;b<d;b++)c.appendChild(a[b]);return c},buildTrkSegNode:function(a){var b,c,d,e;if("OpenLayers.Geometry.LineString"==a.CLASS_NAME||"OpenLayers.Geometry.LinearRing"==a.CLASS_NAME){b=this.createElementNSPlus("gpx:trkseg");c=0;for(d=a.components.length;c<d;c++)e=a.components[c],b.appendChild(this.buildTrkPtNode(e)); return b}b=[];c=0;for(d=a.components.length;c<d;c++)b.push(this.buildTrkSegNode(a.components[c]));return b},buildTrkPtNode:function(a){var b=this.createElementNSPlus("gpx:trkpt");b.setAttribute("lon",a.x);b.setAttribute("lat",a.y);return b},buildWptNode:function(a){var b=this.createElementNSPlus("gpx:wpt");b.setAttribute("lon",a.x);b.setAttribute("lat",a.y);return b},appendAttributesNode:function(a,b){var c=this.createElementNSPlus("gpx:name");c.appendChild(this.createTextNode(b.attributes.name|| b.id));a.appendChild(c);c=this.createElementNSPlus("gpx:desc");c.appendChild(this.createTextNode(b.attributes.description||this.defaultDesc));a.appendChild(c)},CLASS_NAME:"OpenLayers.Format.GPX"});OpenLayers.Format.WMSDescribeLayer=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.1.1",getVersion:function(a,b){var c=OpenLayers.Format.XML.VersionedOGC.prototype.getVersion.apply(this,arguments);if("1.1.1"==c||"1.1.0"==c)c="1.1";return c},CLASS_NAME:"OpenLayers.Format.WMSDescribeLayer"});OpenLayers.Format.WMSDescribeLayer.v1_1=OpenLayers.Class(OpenLayers.Format.WMSDescribeLayer,{initialize:function(a){OpenLayers.Format.WMSDescribeLayer.prototype.initialize.apply(this,[a])},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var a=a.documentElement.childNodes,b=[],c,d,e=0;e<a.length;++e)if(c=a[e],d=c.nodeName,"LayerDescription"==d){d=c.getAttribute("name");var f="",g="",h="";c.getAttribute("owsType")?(f=c.getAttribute("owsType"),g=c.getAttribute("owsURL")): ""!=c.getAttribute("wfs")?(f="WFS",g=c.getAttribute("wfs")):""!=c.getAttribute("wcs")&&(f="WCS",g=c.getAttribute("wcs"));c=c.getElementsByTagName("Query");0<c.length&&((h=c[0].getAttribute("typeName"))||(h=c[0].getAttribute("typename")));b.push({layerName:d,owsType:f,owsURL:g,typeName:h})}return b},CLASS_NAME:"OpenLayers.Format.WMSDescribeLayer.v1_1"});OpenLayers.Layer.XYZ=OpenLayers.Class(OpenLayers.Layer.Grid,{isBaseLayer:!0,sphericalMercator:!1,zoomOffset:0,serverResolutions:null,initialize:function(a,b,c){if(c&&c.sphericalMercator||this.sphericalMercator)c=OpenLayers.Util.extend({projection:"EPSG:900913",numZoomLevels:19},c);OpenLayers.Layer.Grid.prototype.initialize.apply(this,[a||this.name,b||this.url,{},c])},clone:function(a){null==a&&(a=new OpenLayers.Layer.XYZ(this.name,this.url,this.getOptions()));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this, [a])},getURL:function(a){var a=this.getXYZ(a),b=this.url;OpenLayers.Util.isArray(b)&&(b=this.selectUrl(""+a.x+a.y+a.z,b));return OpenLayers.String.format(b,a)},getXYZ:function(a){var b=this.getServerResolution(),c=Math.round((a.left-this.maxExtent.left)/(b*this.tileSize.w)),a=Math.round((this.maxExtent.top-a.top)/(b*this.tileSize.h)),b=this.getServerZoom();if(this.wrapDateLine)var d=Math.pow(2,b),c=(c%d+d)%d;return{x:c,y:a,z:b}},setMap:function(a){OpenLayers.Layer.Grid.prototype.setMap.apply(this, arguments);this.tileOrigin||(this.tileOrigin=new OpenLayers.LonLat(this.maxExtent.left,this.maxExtent.bottom))},CLASS_NAME:"OpenLayers.Layer.XYZ"});OpenLayers.Layer.OSM=OpenLayers.Class(OpenLayers.Layer.XYZ,{name:"OpenStreetMap",url:["http://a.tile.openstreetmap.org/${z}/${x}/${y}.png","http://b.tile.openstreetmap.org/${z}/${x}/${y}.png","http://c.tile.openstreetmap.org/${z}/${x}/${y}.png"],attribution:"Data CC-By-SA by <a href='http://openstreetmap.org/'>OpenStreetMap</a>",sphericalMercator:!0,wrapDateLine:!0,tileOptions:null,initialize:function(a,b,c){OpenLayers.Layer.XYZ.prototype.initialize.apply(this,arguments);this.tileOptions=OpenLayers.Util.extend({crossOriginKeyword:"anonymous"}, this.options&&this.options.tileOptions)},clone:function(a){null==a&&(a=new OpenLayers.Layer.OSM(this.name,this.url,this.getOptions()));return a=OpenLayers.Layer.XYZ.prototype.clone.apply(this,[a])},CLASS_NAME:"OpenLayers.Layer.OSM"});OpenLayers.Renderer=OpenLayers.Class({container:null,root:null,extent:null,locked:!1,size:null,resolution:null,map:null,featureDx:0,initialize:function(a,b){this.container=OpenLayers.Util.getElement(a);OpenLayers.Util.extend(this,b)},destroy:function(){this.map=this.resolution=this.size=this.extent=this.container=null},supported:function(){return!1},setExtent:function(a,b){this.extent=a.clone();if(this.map.baseLayer&&this.map.baseLayer.wrapDateLine){var c=a.getWidth()/this.map.getExtent().getWidth(), a=a.scale(1/c);this.extent=a.wrapDateLine(this.map.getMaxExtent()).scale(c)}b&&(this.resolution=null);return!0},setSize:function(a){this.size=a.clone();this.resolution=null},getResolution:function(){return this.resolution=this.resolution||this.map.getResolution()},drawFeature:function(a,b){null==b&&(b=a.style);if(a.geometry){var c=a.geometry.getBounds();if(c){var d;this.map.baseLayer&&this.map.baseLayer.wrapDateLine&&(d=this.map.getMaxExtent());c.intersectsBounds(this.extent,{worldBounds:d})?this.calculateFeatureDx(c, d):b={display:"none"};c=this.drawGeometry(a.geometry,b,a.id);if("none"!=b.display&&b.label&&!1!==c){d=a.geometry.getCentroid();if(b.labelXOffset||b.labelYOffset){var e=isNaN(b.labelXOffset)?0:b.labelXOffset,f=isNaN(b.labelYOffset)?0:b.labelYOffset,g=this.getResolution();d.move(e*g,f*g)}this.drawText(a.id,b,d)}else this.removeText(a.id);return c}}},calculateFeatureDx:function(a,b){this.featureDx=0;if(b){var c=b.getWidth();this.featureDx=Math.round(((a.left+a.right)/2-(this.extent.left+this.extent.right)/ 2)/c)*c}},drawGeometry:function(){},drawText:function(){},removeText:function(){},clear:function(){},getFeatureIdFromEvent:function(){},eraseFeatures:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=0,c=a.length;b<c;++b){var d=a[b];this.eraseGeometry(d.geometry,d.id);this.removeText(d.id)}},eraseGeometry:function(){},moveRoot:function(){},getRenderLayerId:function(){return this.container.id},applyDefaultSymbolizer:function(a){var b=OpenLayers.Util.extend({},OpenLayers.Renderer.defaultSymbolizer); !1===a.stroke&&(delete b.strokeWidth,delete b.strokeColor);!1===a.fill&&delete b.fillColor;OpenLayers.Util.extend(b,a);return b},CLASS_NAME:"OpenLayers.Renderer"});OpenLayers.Renderer.defaultSymbolizer={fillColor:"#000000",strokeColor:"#000000",strokeWidth:2,fillOpacity:1,strokeOpacity:1,pointRadius:0,labelAlign:"cm"}; OpenLayers.Renderer.symbol={star:[350,75,379,161,469,161,397,215,423,301,350,250,277,301,303,215,231,161,321,161,350,75],cross:[4,0,6,0,6,4,10,4,10,6,6,6,6,10,4,10,4,6,0,6,0,4,4,4,4,0],x:[0,0,25,0,50,35,75,0,100,0,65,50,100,100,75,100,50,65,25,100,0,100,35,50,0,0],square:[0,0,0,1,1,1,1,0,0,0],triangle:[0,10,10,10,5,0,0,10]};OpenLayers.Renderer.Canvas=OpenLayers.Class(OpenLayers.Renderer,{hitDetection:!0,hitOverflow:0,canvas:null,features:null,pendingRedraw:!1,cachedSymbolBounds:{},initialize:function(a,b){OpenLayers.Renderer.prototype.initialize.apply(this,arguments);this.root=document.createElement("canvas");this.container.appendChild(this.root);this.canvas=this.root.getContext("2d");this.features={};this.hitDetection&&(this.hitCanvas=document.createElement("canvas"),this.hitContext=this.hitCanvas.getContext("2d"))}, setExtent:function(){OpenLayers.Renderer.prototype.setExtent.apply(this,arguments);return!1},eraseGeometry:function(a,b){this.eraseFeatures(this.features[b][0])},supported:function(){return OpenLayers.CANVAS_SUPPORTED},setSize:function(a){this.size=a.clone();var b=this.root;b.style.width=a.w+"px";b.style.height=a.h+"px";b.width=a.w;b.height=a.h;this.resolution=null;this.hitDetection&&(b=this.hitCanvas,b.style.width=a.w+"px",b.style.height=a.h+"px",b.width=a.w,b.height=a.h)},drawFeature:function(a, b){var c;if(a.geometry){b=this.applyDefaultSymbolizer(b||a.style);c=a.geometry.getBounds();var d;this.map.baseLayer&&this.map.baseLayer.wrapDateLine&&(d=this.map.getMaxExtent());d=c&&c.intersectsBounds(this.extent,{worldBounds:d});(c="none"!==b.display&&!!c&&d)?this.features[a.id]=[a,b]:delete this.features[a.id];this.pendingRedraw=!0}this.pendingRedraw&&!this.locked&&(this.redraw(),this.pendingRedraw=!1);return c},drawGeometry:function(a,b,c){var d=a.CLASS_NAME;if("OpenLayers.Geometry.Collection"== d||"OpenLayers.Geometry.MultiPoint"==d||"OpenLayers.Geometry.MultiLineString"==d||"OpenLayers.Geometry.MultiPolygon"==d)for(d=0;d<a.components.length;d++)this.drawGeometry(a.components[d],b,c);else switch(a.CLASS_NAME){case "OpenLayers.Geometry.Point":this.drawPoint(a,b,c);break;case "OpenLayers.Geometry.LineString":this.drawLineString(a,b,c);break;case "OpenLayers.Geometry.LinearRing":this.drawLinearRing(a,b,c);break;case "OpenLayers.Geometry.Polygon":this.drawPolygon(a,b,c)}},drawExternalGraphic:function(a, b,c){var d=new Image;b.graphicTitle&&(d.title=b.graphicTitle);var e=b.graphicWidth||b.graphicHeight,f=b.graphicHeight||b.graphicWidth,e=e?e:2*b.pointRadius,f=f?f:2*b.pointRadius,g=void 0!=b.graphicXOffset?b.graphicXOffset:-(0.5*e),h=void 0!=b.graphicYOffset?b.graphicYOffset:-(0.5*f),i=b.graphicOpacity||b.fillOpacity;d.onload=OpenLayers.Function.bind(function(){if(this.features[c]){var b=this.getLocalXY(a),k=b[0],b=b[1];if(!isNaN(k)&&!isNaN(b)){var k=k+g|0,b=b+h|0,l=this.canvas;l.globalAlpha=i;var m= OpenLayers.Renderer.Canvas.drawImageScaleFactor||(OpenLayers.Renderer.Canvas.drawImageScaleFactor=/android 2.1/.test(navigator.userAgent.toLowerCase())?320/window.screen.width:1);l.drawImage(d,k*m,b*m,e*m,f*m);if(this.hitDetection){this.setHitContextStyle("fill",c);this.hitContext.fillRect(k,b,e,f)}}}},this);d.src=b.externalGraphic},drawNamedSymbol:function(a,b,c){var d,e,f,g;f=Math.PI/180;var h=OpenLayers.Renderer.symbol[b.graphicName];if(!h)throw Error(b.graphicName+" is not a valid symbol name"); if(h.length&&!(2>h.length)&&(a=this.getLocalXY(a),e=a[0],g=a[1],!isNaN(e)&&!isNaN(g))){this.canvas.lineCap="round";this.canvas.lineJoin="round";this.hitDetection&&(this.hitContext.lineCap="round",this.hitContext.lineJoin="round");if(b.graphicName in this.cachedSymbolBounds)d=this.cachedSymbolBounds[b.graphicName];else{d=new OpenLayers.Bounds;for(a=0;a<h.length;a+=2)d.extend(new OpenLayers.LonLat(h[a],h[a+1]));this.cachedSymbolBounds[b.graphicName]=d}this.canvas.save();this.hitDetection&&this.hitContext.save(); this.canvas.translate(e,g);this.hitDetection&&this.hitContext.translate(e,g);a=f*b.rotation;isNaN(a)||(this.canvas.rotate(a),this.hitDetection&&this.hitContext.rotate(a));f=2*b.pointRadius/Math.max(d.getWidth(),d.getHeight());this.canvas.scale(f,f);this.hitDetection&&this.hitContext.scale(f,f);a=d.getCenterLonLat().lon;d=d.getCenterLonLat().lat;this.canvas.translate(-a,-d);this.hitDetection&&this.hitContext.translate(-a,-d);g=b.strokeWidth;b.strokeWidth=g/f;if(!1!==b.fill){this.setCanvasStyle("fill", b);this.canvas.beginPath();for(a=0;a<h.length;a+=2)d=h[a],e=h[a+1],0==a&&this.canvas.moveTo(d,e),this.canvas.lineTo(d,e);this.canvas.closePath();this.canvas.fill();if(this.hitDetection){this.setHitContextStyle("fill",c,b);this.hitContext.beginPath();for(a=0;a<h.length;a+=2)d=h[a],e=h[a+1],0==a&&this.canvas.moveTo(d,e),this.hitContext.lineTo(d,e);this.hitContext.closePath();this.hitContext.fill()}}if(!1!==b.stroke){this.setCanvasStyle("stroke",b);this.canvas.beginPath();for(a=0;a<h.length;a+=2)d=h[a], e=h[a+1],0==a&&this.canvas.moveTo(d,e),this.canvas.lineTo(d,e);this.canvas.closePath();this.canvas.stroke();if(this.hitDetection){this.setHitContextStyle("stroke",c,b,f);this.hitContext.beginPath();for(a=0;a<h.length;a+=2)d=h[a],e=h[a+1],0==a&&this.hitContext.moveTo(d,e),this.hitContext.lineTo(d,e);this.hitContext.closePath();this.hitContext.stroke()}}b.strokeWidth=g;this.canvas.restore();this.hitDetection&&this.hitContext.restore();this.setCanvasStyle("reset")}},setCanvasStyle:function(a,b){"fill"=== a?(this.canvas.globalAlpha=b.fillOpacity,this.canvas.fillStyle=b.fillColor):"stroke"===a?(this.canvas.globalAlpha=b.strokeOpacity,this.canvas.strokeStyle=b.strokeColor,this.canvas.lineWidth=b.strokeWidth):(this.canvas.globalAlpha=0,this.canvas.lineWidth=1)},featureIdToHex:function(a){a=Number(a.split("_").pop())+1;16777216<=a&&(this.hitOverflow=a-16777215,a=a%16777216+1);var a="000000"+a.toString(16),b=a.length;return a="#"+a.substring(b-6,b)},setHitContextStyle:function(a,b,c,d){b=this.featureIdToHex(b); "fill"==a?(this.hitContext.globalAlpha=1,this.hitContext.fillStyle=b):"stroke"==a?(this.hitContext.globalAlpha=1,this.hitContext.strokeStyle=b,"undefined"===typeof d?this.hitContext.lineWidth=c.strokeWidth+2:isNaN(d)||(this.hitContext.lineWidth=c.strokeWidth+2/d)):(this.hitContext.globalAlpha=0,this.hitContext.lineWidth=1)},drawPoint:function(a,b,c){if(!1!==b.graphic)if(b.externalGraphic)this.drawExternalGraphic(a,b,c);else if(b.graphicName&&"circle"!=b.graphicName)this.drawNamedSymbol(a,b,c);else{var d= this.getLocalXY(a),a=d[0],d=d[1];if(!isNaN(a)&&!isNaN(d)){var e=2*Math.PI,f=b.pointRadius;!1!==b.fill&&(this.setCanvasStyle("fill",b),this.canvas.beginPath(),this.canvas.arc(a,d,f,0,e,!0),this.canvas.fill(),this.hitDetection&&(this.setHitContextStyle("fill",c,b),this.hitContext.beginPath(),this.hitContext.arc(a,d,f,0,e,!0),this.hitContext.fill()));!1!==b.stroke&&(this.setCanvasStyle("stroke",b),this.canvas.beginPath(),this.canvas.arc(a,d,f,0,e,!0),this.canvas.stroke(),this.hitDetection&&(this.setHitContextStyle("stroke", c,b),this.hitContext.beginPath(),this.hitContext.arc(a,d,f,0,e,!0),this.hitContext.stroke()),this.setCanvasStyle("reset"))}}},drawLineString:function(a,b,c){b=OpenLayers.Util.applyDefaults({fill:!1},b);this.drawLinearRing(a,b,c)},drawLinearRing:function(a,b,c){!1!==b.fill&&(this.setCanvasStyle("fill",b),this.renderPath(this.canvas,a,b,c,"fill"),this.hitDetection&&(this.setHitContextStyle("fill",c,b),this.renderPath(this.hitContext,a,b,c,"fill")));!1!==b.stroke&&(this.setCanvasStyle("stroke",b),this.renderPath(this.canvas, a,b,c,"stroke"),this.hitDetection&&(this.setHitContextStyle("stroke",c,b),this.renderPath(this.hitContext,a,b,c,"stroke")));this.setCanvasStyle("reset")},renderPath:function(a,b,c,d,e){b=b.components;c=b.length;a.beginPath();var d=this.getLocalXY(b[0]),f=d[1];if(!isNaN(d[0])&&!isNaN(f)){a.moveTo(d[0],d[1]);for(d=1;d<c;++d)f=this.getLocalXY(b[d]),a.lineTo(f[0],f[1]);"fill"===e?a.fill():a.stroke()}},drawPolygon:function(a,b,c){var a=a.components,d=a.length;this.drawLinearRing(a[0],b,c);for(var e=1;e< d;++e)this.canvas.globalCompositeOperation="destination-out",this.hitDetection&&(this.hitContext.globalCompositeOperation="destination-out"),this.drawLinearRing(a[e],OpenLayers.Util.applyDefaults({stroke:!1,fillOpacity:1},b),c),this.canvas.globalCompositeOperation="source-over",this.hitDetection&&(this.hitContext.globalCompositeOperation="source-over"),this.drawLinearRing(a[e],OpenLayers.Util.applyDefaults({fill:!1},b),c)},drawText:function(a,b){var c=this.getLocalXY(a);this.setCanvasStyle("reset"); this.canvas.fillStyle=b.fontColor;this.canvas.globalAlpha=b.fontOpacity||1;var d=[b.fontStyle?b.fontStyle:"normal","normal",b.fontWeight?b.fontWeight:"normal",b.fontSize?b.fontSize:"1em",b.fontFamily?b.fontFamily:"sans-serif"].join(" "),e=b.label.split("\n"),f=e.length;if(this.canvas.fillText){this.canvas.font=d;this.canvas.textAlign=OpenLayers.Renderer.Canvas.LABEL_ALIGN[b.labelAlign[0]]||"center";this.canvas.textBaseline=OpenLayers.Renderer.Canvas.LABEL_ALIGN[b.labelAlign[1]]||"middle";var g=OpenLayers.Renderer.Canvas.LABEL_FACTOR[b.labelAlign[1]]; null==g&&(g=-0.5);d=this.canvas.measureText("Mg").height||this.canvas.measureText("xx").width;c[1]+=d*g*(f-1);for(g=0;g<f;g++)b.labelOutlineWidth&&(this.canvas.save(),this.canvas.strokeStyle=b.labelOutlineColor,this.canvas.lineWidth=b.labelOutlineWidth,this.canvas.strokeText(e[g],c[0],c[1]+d*g+1),this.canvas.restore()),this.canvas.fillText(e[g],c[0],c[1]+d*g)}else if(this.canvas.mozDrawText){this.canvas.mozTextStyle=d;var h=OpenLayers.Renderer.Canvas.LABEL_FACTOR[b.labelAlign[0]];null==h&&(h=-0.5); g=OpenLayers.Renderer.Canvas.LABEL_FACTOR[b.labelAlign[1]];null==g&&(g=-0.5);d=this.canvas.mozMeasureText("xx");c[1]+=d*(1+g*f);for(g=0;g<f;g++){var i=c[0]+h*this.canvas.mozMeasureText(e[g]),j=c[1]+g*d;this.canvas.translate(i,j);this.canvas.mozDrawText(e[g]);this.canvas.translate(-i,-j)}}this.setCanvasStyle("reset")},getLocalXY:function(a){var b=this.getResolution(),c=this.extent;return[(a.x-this.featureDx)/b+-c.left/b,c.top/b-a.y/b]},clear:function(){var a=this.root.height,b=this.root.width;this.canvas.clearRect(0, 0,b,a);this.features={};this.hitDetection&&this.hitContext.clearRect(0,0,b,a)},getFeatureIdFromEvent:function(a){var b;if(this.hitDetection&&"none"!==this.root.style.display&&!this.map.dragging&&(a=a.xy,a=this.hitContext.getImageData(a.x|0,a.y|0,1,1).data,255===a[3]&&(a=a[2]+256*(a[1]+256*a[0])))){a="OpenLayers.Feature.Vector_"+(a-1+this.hitOverflow);try{b=this.features[a][0]}catch(c){}}return b},eraseFeatures:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=0;b<a.length;++b)delete this.features[a[b].id]; this.redraw()},redraw:function(){if(!this.locked){var a=this.root.height,b=this.root.width;this.canvas.clearRect(0,0,b,a);this.hitDetection&&this.hitContext.clearRect(0,0,b,a);var a=[],c,d,e=this.map.baseLayer&&this.map.baseLayer.wrapDateLine&&this.map.getMaxExtent(),f;for(f in this.features)this.features.hasOwnProperty(f)&&(b=this.features[f][0],c=b.geometry,this.calculateFeatureDx(c.getBounds(),e),d=this.features[f][1],this.drawGeometry(c,d,b.id),d.label&&a.push([b,d]));b=0;for(c=a.length;b<c;++b)f= a[b],this.drawText(f[0].geometry.getCentroid(),f[1])}},CLASS_NAME:"OpenLayers.Renderer.Canvas"});OpenLayers.Renderer.Canvas.LABEL_ALIGN={l:"left",r:"right",t:"top",b:"bottom"};OpenLayers.Renderer.Canvas.LABEL_FACTOR={l:0,r:-1,t:0,b:-1};OpenLayers.Renderer.Canvas.drawImageScaleFactor=null;OpenLayers.Format.OSM=OpenLayers.Class(OpenLayers.Format.XML,{checkTags:!1,interestingTagsExclude:null,areaTags:null,initialize:function(a){for(var b={interestingTagsExclude:"source source_ref source:ref history attribution created_by".split(" "),areaTags:"area building leisure tourism ruins historic landuse military natural sport".split(" ")},b=OpenLayers.Util.extend(b,a),c={},a=0;a<b.interestingTagsExclude.length;a++)c[b.interestingTagsExclude[a]]=!0;b.interestingTagsExclude=c;c={};for(a=0;a<b.areaTags.length;a++)c[b.areaTags[a]]= !0;b.areaTags=c;this.externalProjection=new OpenLayers.Projection("EPSG:4326");OpenLayers.Format.XML.prototype.initialize.apply(this,[b])},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var b=this.getNodes(a),c=this.getWays(a),a=Array(c.length),d=0;d<c.length;d++){for(var e=Array(c[d].nodes.length),f=this.isWayArea(c[d])?1:0,g=0;g<c[d].nodes.length;g++){var h=b[c[d].nodes[g]],i=new OpenLayers.Geometry.Point(h.lon,h.lat);i.osm_id=parseInt(c[d].nodes[g]); e[g]=i;h.used=!0}h=null;h=f?new OpenLayers.Geometry.Polygon(new OpenLayers.Geometry.LinearRing(e)):new OpenLayers.Geometry.LineString(e);this.internalProjection&&this.externalProjection&&h.transform(this.externalProjection,this.internalProjection);e=new OpenLayers.Feature.Vector(h,c[d].tags);e.osm_id=parseInt(c[d].id);e.fid="way."+e.osm_id;a[d]=e}for(var j in b){h=b[j];if(!h.used||this.checkTags){c=null;if(this.checkTags){c=this.getTags(h.node,!0);if(h.used&&!c[1])continue;c=c[0]}else c=this.getTags(h.node); e=new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Point(h.lon,h.lat),c);this.internalProjection&&this.externalProjection&&e.geometry.transform(this.externalProjection,this.internalProjection);e.osm_id=parseInt(j);e.fid="node."+e.osm_id;a.push(e)}h.node=null}return a},getNodes:function(a){for(var a=a.getElementsByTagName("node"),b={},c=0;c<a.length;c++){var d=a[c],e=d.getAttribute("id");b[e]={lat:d.getAttribute("lat"),lon:d.getAttribute("lon"),node:d}}return b},getWays:function(a){for(var a= a.getElementsByTagName("way"),b=[],c=0;c<a.length;c++){var d=a[c],e={id:d.getAttribute("id")};e.tags=this.getTags(d);d=d.getElementsByTagName("nd");e.nodes=Array(d.length);for(var f=0;f<d.length;f++)e.nodes[f]=d[f].getAttribute("ref");b.push(e)}return b},getTags:function(a,b){for(var c=a.getElementsByTagName("tag"),d={},e=!1,f=0;f<c.length;f++){var g=c[f].getAttribute("k");d[g]=c[f].getAttribute("v");b&&(this.interestingTagsExclude[g]||(e=!0))}return b?[d,e]:d},isWayArea:function(a){var b=!1,c=!1; a.nodes[0]==a.nodes[a.nodes.length-1]&&(b=!0);if(this.checkTags)for(var d in a.tags)if(this.areaTags[d]){c=!0;break}return b&&(this.checkTags?c:!0)},write:function(a){OpenLayers.Util.isArray(a)||(a=[a]);this.osm_id=1;this.created_nodes={};var b=this.createElementNS(null,"osm");b.setAttribute("version","0.5");b.setAttribute("generator","OpenLayers "+OpenLayers.VERSION_NUMBER);for(var c=a.length-1;0<=c;c--)for(var d=this.createFeatureNodes(a[c]),e=0;e<d.length;e++)b.appendChild(d[e]);return OpenLayers.Format.XML.prototype.write.apply(this, [b])},createFeatureNodes:function(a){var b=[],c=a.geometry.CLASS_NAME,c=c.substring(c.lastIndexOf(".")+1),c=c.toLowerCase();(c=this.createXML[c])&&(b=c.apply(this,[a]));return b},createXML:{point:function(a){var b=null,c=a.geometry?a.geometry:a;this.internalProjection&&this.externalProjection&&(c=c.clone(),c.transform(this.internalProjection,this.externalProjection));var d=!1;a.osm_id?(b=a.osm_id,this.created_nodes[b]&&(d=!0)):(b=-this.osm_id,this.osm_id++);var e=d?this.created_nodes[b]:this.createElementNS(null, "node");this.created_nodes[b]=e;e.setAttribute("id",b);e.setAttribute("lon",c.x);e.setAttribute("lat",c.y);a.attributes&&this.serializeTags(a,e);this.setState(a,e);return d?[]:[e]},linestring:function(a){var b,c=[],d=a.geometry;a.osm_id?b=a.osm_id:(b=-this.osm_id,this.osm_id++);var e=this.createElementNS(null,"way");e.setAttribute("id",b);for(b=0;b<d.components.length;b++){var f=this.createXML.point.apply(this,[d.components[b]]);if(f.length){var f=f[0],g=f.getAttribute("id");c.push(f)}else g=d.components[b].osm_id, f=this.created_nodes[g];this.setState(a,f);f=this.createElementNS(null,"nd");f.setAttribute("ref",g);e.appendChild(f)}this.serializeTags(a,e);c.push(e);return c},polygon:function(a){var b=OpenLayers.Util.extend({area:"yes"},a.attributes),b=new OpenLayers.Feature.Vector(a.geometry.components[0],b);b.osm_id=a.osm_id;return this.createXML.linestring.apply(this,[b])}},serializeTags:function(a,b){for(var c in a.attributes){var d=this.createElementNS(null,"tag");d.setAttribute("k",c);d.setAttribute("v", a.attributes[c]);b.appendChild(d)}},setState:function(a,b){if(a.state){var c=null;switch(a.state){case OpenLayers.State.UPDATE:case OpenLayers.State.DELETE:c="delete"}c&&b.setAttribute("action",c)}},CLASS_NAME:"OpenLayers.Format.OSM"});OpenLayers.Handler=OpenLayers.Class({id:null,control:null,map:null,keyMask:null,active:!1,evt:null,initialize:function(a,b,c){OpenLayers.Util.extend(this,c);this.control=a;this.callbacks=b;(a=this.map||a.map)&&this.setMap(a);this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},setMap:function(a){this.map=a},checkModifiers:function(a){return null==this.keyMask?!0:((a.shiftKey?OpenLayers.Handler.MOD_SHIFT:0)|(a.ctrlKey?OpenLayers.Handler.MOD_CTRL:0)|(a.altKey?OpenLayers.Handler.MOD_ALT:0))== this.keyMask},activate:function(){if(this.active)return!1;for(var a=OpenLayers.Events.prototype.BROWSER_EVENTS,b=0,c=a.length;b<c;b++)this[a[b]]&&this.register(a[b],this[a[b]]);return this.active=!0},deactivate:function(){if(!this.active)return!1;for(var a=OpenLayers.Events.prototype.BROWSER_EVENTS,b=0,c=a.length;b<c;b++)this[a[b]]&&this.unregister(a[b],this[a[b]]);this.active=!1;return!0},callback:function(a,b){a&&this.callbacks[a]&&this.callbacks[a].apply(this.control,b)},register:function(a,b){this.map.events.registerPriority(a, this,b);this.map.events.registerPriority(a,this,this.setEvent)},unregister:function(a,b){this.map.events.unregister(a,this,b);this.map.events.unregister(a,this,this.setEvent)},setEvent:function(a){this.evt=a;return!0},destroy:function(){this.deactivate();this.control=this.map=null},CLASS_NAME:"OpenLayers.Handler"});OpenLayers.Handler.MOD_NONE=0;OpenLayers.Handler.MOD_SHIFT=1;OpenLayers.Handler.MOD_CTRL=2;OpenLayers.Handler.MOD_ALT=4;OpenLayers.Handler.Drag=OpenLayers.Class(OpenLayers.Handler,{started:!1,stopDown:!0,dragging:!1,touch:!1,last:null,start:null,lastMoveEvt:null,oldOnselectstart:null,interval:0,timeoutId:null,documentDrag:!1,documentEvents:null,initialize:function(a,b,c){OpenLayers.Handler.prototype.initialize.apply(this,arguments);if(!0===this.documentDrag){var d=this;this._docMove=function(a){d.mousemove({xy:{x:a.clientX,y:a.clientY},element:document})};this._docUp=function(a){d.mouseup({xy:{x:a.clientX,y:a.clientY}})}}}, dragstart:function(a){var b=!0;this.dragging=!1;this.checkModifiers(a)&&(OpenLayers.Event.isLeftClick(a)||OpenLayers.Event.isSingleTouch(a))?(this.started=!0,this.last=this.start=a.xy,OpenLayers.Element.addClass(this.map.viewPortDiv,"olDragDown"),this.down(a),this.callback("down",[a.xy]),OpenLayers.Event.stop(a),this.oldOnselectstart||(this.oldOnselectstart=document.onselectstart?document.onselectstart:OpenLayers.Function.True),document.onselectstart=OpenLayers.Function.False,b=!this.stopDown):(this.started= !1,this.last=this.start=null);return b},dragmove:function(a){this.lastMoveEvt=a;if(this.started&&!this.timeoutId&&(a.xy.x!=this.last.x||a.xy.y!=this.last.y))!0===this.documentDrag&&this.documentEvents&&(a.element===document?(this.adjustXY(a),this.setEvent(a)):this.removeDocumentEvents()),0<this.interval&&(this.timeoutId=setTimeout(OpenLayers.Function.bind(this.removeTimeout,this),this.interval)),this.dragging=!0,this.move(a),this.callback("move",[a.xy]),this.oldOnselectstart||(this.oldOnselectstart= document.onselectstart,document.onselectstart=OpenLayers.Function.False),this.last=a.xy;return!0},dragend:function(a){if(this.started){!0===this.documentDrag&&this.documentEvents&&(this.adjustXY(a),this.removeDocumentEvents());var b=this.start!=this.last;this.dragging=this.started=!1;OpenLayers.Element.removeClass(this.map.viewPortDiv,"olDragDown");this.up(a);this.callback("up",[a.xy]);b&&this.callback("done",[a.xy]);document.onselectstart=this.oldOnselectstart}return!0},down:function(){},move:function(){}, up:function(){},out:function(){},mousedown:function(a){return this.dragstart(a)},touchstart:function(a){this.touch||(this.touch=!0,this.map.events.un({mousedown:this.mousedown,mouseup:this.mouseup,mousemove:this.mousemove,click:this.click,scope:this}));return this.dragstart(a)},mousemove:function(a){return this.dragmove(a)},touchmove:function(a){return this.dragmove(a)},removeTimeout:function(){this.timeoutId=null;this.dragging&&this.mousemove(this.lastMoveEvt)},mouseup:function(a){return this.dragend(a)}, touchend:function(a){a.xy=this.last;return this.dragend(a)},mouseout:function(a){if(this.started&&OpenLayers.Util.mouseLeft(a,this.map.viewPortDiv))if(!0===this.documentDrag)this.addDocumentEvents();else{var b=this.start!=this.last;this.dragging=this.started=!1;OpenLayers.Element.removeClass(this.map.viewPortDiv,"olDragDown");this.out(a);this.callback("out",[]);b&&this.callback("done",[a.xy]);document.onselectstart&&(document.onselectstart=this.oldOnselectstart)}return!0},click:function(){return this.start== this.last},activate:function(){var a=!1;OpenLayers.Handler.prototype.activate.apply(this,arguments)&&(this.dragging=!1,a=!0);return a},deactivate:function(){var a=!1;OpenLayers.Handler.prototype.deactivate.apply(this,arguments)&&(this.dragging=this.started=this.touch=!1,this.last=this.start=null,a=!0,OpenLayers.Element.removeClass(this.map.viewPortDiv,"olDragDown"));return a},adjustXY:function(a){var b=OpenLayers.Util.pagePosition(this.map.viewPortDiv);a.xy.x-=b[0];a.xy.y-=b[1]},addDocumentEvents:function(){OpenLayers.Element.addClass(document.body, "olDragDown");this.documentEvents=!0;OpenLayers.Event.observe(document,"mousemove",this._docMove);OpenLayers.Event.observe(document,"mouseup",this._docUp)},removeDocumentEvents:function(){OpenLayers.Element.removeClass(document.body,"olDragDown");this.documentEvents=!1;OpenLayers.Event.stopObserving(document,"mousemove",this._docMove);OpenLayers.Event.stopObserving(document,"mouseup",this._docUp)},CLASS_NAME:"OpenLayers.Handler.Drag"});OpenLayers.Handler.Feature=OpenLayers.Class(OpenLayers.Handler,{EVENTMAP:{click:{"in":"click",out:"clickout"},mousemove:{"in":"over",out:"out"},dblclick:{"in":"dblclick",out:null},mousedown:{"in":null,out:null},mouseup:{"in":null,out:null},touchstart:{"in":"click",out:"clickout"}},feature:null,lastFeature:null,down:null,up:null,touch:!1,clickTolerance:4,geometryTypes:null,stopClick:!0,stopDown:!0,stopUp:!1,initialize:function(a,b,c,d){OpenLayers.Handler.prototype.initialize.apply(this,[a,c,d]);this.layer= b},touchstart:function(a){this.touch||(this.touch=!0,this.map.events.un({mousedown:this.mousedown,mouseup:this.mouseup,mousemove:this.mousemove,click:this.click,dblclick:this.dblclick,scope:this}));return OpenLayers.Event.isMultiTouch(a)?!0:this.mousedown(a)},touchmove:function(a){OpenLayers.Event.stop(a)},mousedown:function(a){if(OpenLayers.Event.isLeftClick(a)||OpenLayers.Event.isSingleTouch(a))this.down=a.xy;return this.handle(a)?!this.stopDown:!0},mouseup:function(a){this.up=a.xy;return this.handle(a)? !this.stopUp:!0},click:function(a){return this.handle(a)?!this.stopClick:!0},mousemove:function(a){if(!this.callbacks.over&&!this.callbacks.out)return!0;this.handle(a);return!0},dblclick:function(a){return!this.handle(a)},geometryTypeMatches:function(a){return null==this.geometryTypes||-1<OpenLayers.Util.indexOf(this.geometryTypes,a.geometry.CLASS_NAME)},handle:function(a){this.feature&&!this.feature.layer&&(this.feature=null);var b=a.type,c=!1,d=!!this.feature,e="click"==b||"dblclick"==b||"touchstart"== b;if((this.feature=this.layer.getFeatureFromEvent(a))&&!this.feature.layer)this.feature=null;this.lastFeature&&!this.lastFeature.layer&&(this.lastFeature=null);this.feature?("touchstart"===b&&OpenLayers.Event.stop(a),a=this.feature!=this.lastFeature,this.geometryTypeMatches(this.feature)?(d&&a?(this.lastFeature&&this.triggerCallback(b,"out",[this.lastFeature]),this.triggerCallback(b,"in",[this.feature])):(!d||e)&&this.triggerCallback(b,"in",[this.feature]),this.lastFeature=this.feature,c=!0):(this.lastFeature&& (d&&a||e)&&this.triggerCallback(b,"out",[this.lastFeature]),this.feature=null)):this.lastFeature&&(d||e)&&this.triggerCallback(b,"out",[this.lastFeature]);return c},triggerCallback:function(a,b,c){(b=this.EVENTMAP[a][b])&&("click"==a&&this.up&&this.down?Math.sqrt(Math.pow(this.up.x-this.down.x,2)+Math.pow(this.up.y-this.down.y,2))<=this.clickTolerance&&this.callback(b,c):this.callback(b,c))},activate:function(){var a=!1;OpenLayers.Handler.prototype.activate.apply(this,arguments)&&(this.moveLayerToTop(), this.map.events.on({removelayer:this.handleMapEvents,changelayer:this.handleMapEvents,scope:this}),a=!0);return a},deactivate:function(){var a=!1;OpenLayers.Handler.prototype.deactivate.apply(this,arguments)&&(this.moveLayerBack(),this.up=this.down=this.lastFeature=this.feature=null,this.touch=!1,this.map.events.un({removelayer:this.handleMapEvents,changelayer:this.handleMapEvents,scope:this}),a=!0);return a},handleMapEvents:function(a){("removelayer"==a.type||"order"==a.property)&&this.moveLayerToTop()}, moveLayerToTop:function(){this.layer.setZIndex(Math.max(this.map.Z_INDEX_BASE.Feature-1,this.layer.getZIndex())+1)},moveLayerBack:function(){var a=this.layer.getZIndex()-1;a>=this.map.Z_INDEX_BASE.Feature?this.layer.setZIndex(a):this.map.setLayerZIndex(this.layer,this.map.getLayerIndex(this.layer))},CLASS_NAME:"OpenLayers.Handler.Feature"});OpenLayers.Control.DragFeature=OpenLayers.Class(OpenLayers.Control,{geometryTypes:null,onStart:function(){},onDrag:function(){},onComplete:function(){},onEnter:function(){},onLeave:function(){},documentDrag:!1,layer:null,feature:null,dragCallbacks:{},featureCallbacks:{},lastPixel:null,initialize:function(a,b){OpenLayers.Control.prototype.initialize.apply(this,[b]);this.layer=a;this.handlers={drag:new OpenLayers.Handler.Drag(this,OpenLayers.Util.extend({down:this.downFeature,move:this.moveFeature, up:this.upFeature,out:this.cancel,done:this.doneDragging},this.dragCallbacks),{documentDrag:this.documentDrag}),feature:new OpenLayers.Handler.Feature(this,this.layer,OpenLayers.Util.extend({click:this.clickFeature,clickout:this.clickoutFeature,over:this.overFeature,out:this.outFeature},this.featureCallbacks),{geometryTypes:this.geometryTypes})}},clickFeature:function(a){this.handlers.feature.touch&&(!this.over&&this.overFeature(a))&&(this.handlers.drag.dragstart(this.handlers.feature.evt),this.handlers.drag.stopDown= !1)},clickoutFeature:function(a){this.handlers.feature.touch&&this.over&&(this.outFeature(a),this.handlers.drag.stopDown=!0)},destroy:function(){this.layer=null;OpenLayers.Control.prototype.destroy.apply(this,[])},activate:function(){return this.handlers.feature.activate()&&OpenLayers.Control.prototype.activate.apply(this,arguments)},deactivate:function(){this.handlers.drag.deactivate();this.handlers.feature.deactivate();this.feature=null;this.dragging=!1;this.lastPixel=null;OpenLayers.Element.removeClass(this.map.viewPortDiv, this.displayClass+"Over");return OpenLayers.Control.prototype.deactivate.apply(this,arguments)},overFeature:function(a){var b=!1;this.handlers.drag.dragging?this.over=this.feature.id==a.id?!0:!1:(this.feature=a,this.handlers.drag.activate(),this.over=b=!0,OpenLayers.Element.addClass(this.map.viewPortDiv,this.displayClass+"Over"),this.onEnter(a));return b},downFeature:function(a){this.lastPixel=a;this.onStart(this.feature,a)},moveFeature:function(a){var b=this.map.getResolution();this.feature.geometry.move(b* (a.x-this.lastPixel.x),b*(this.lastPixel.y-a.y));this.layer.drawFeature(this.feature);this.lastPixel=a;this.onDrag(this.feature,a)},upFeature:function(){this.over||this.handlers.drag.deactivate()},doneDragging:function(a){this.onComplete(this.feature,a)},outFeature:function(a){this.handlers.drag.dragging?this.feature.id==a.id&&(this.over=!1):(this.over=!1,this.handlers.drag.deactivate(),OpenLayers.Element.removeClass(this.map.viewPortDiv,this.displayClass+"Over"),this.onLeave(a),this.feature=null)}, cancel:function(){this.handlers.drag.deactivate();this.over=!1},setMap:function(a){this.handlers.drag.setMap(a);this.handlers.feature.setMap(a);OpenLayers.Control.prototype.setMap.apply(this,arguments)},CLASS_NAME:"OpenLayers.Control.DragFeature"});OpenLayers.StyleMap=OpenLayers.Class({styles:null,extendDefault:!0,initialize:function(a,b){this.styles={"default":new OpenLayers.Style(OpenLayers.Feature.Vector.style["default"]),select:new OpenLayers.Style(OpenLayers.Feature.Vector.style.select),temporary:new OpenLayers.Style(OpenLayers.Feature.Vector.style.temporary),"delete":new OpenLayers.Style(OpenLayers.Feature.Vector.style["delete"])};if(a instanceof OpenLayers.Style)this.styles["default"]=a,this.styles.select=a,this.styles.temporary=a,this.styles["delete"]= a;else if("object"==typeof a)for(var c in a)if(a[c]instanceof OpenLayers.Style)this.styles[c]=a[c];else if("object"==typeof a[c])this.styles[c]=new OpenLayers.Style(a[c]);else{this.styles["default"]=new OpenLayers.Style(a);this.styles.select=new OpenLayers.Style(a);this.styles.temporary=new OpenLayers.Style(a);this.styles["delete"]=new OpenLayers.Style(a);break}OpenLayers.Util.extend(this,b)},destroy:function(){for(var a in this.styles)this.styles[a].destroy();this.styles=null},createSymbolizer:function(a, b){a||(a=new OpenLayers.Feature.Vector);this.styles[b]||(b="default");a.renderIntent=b;var c={};this.extendDefault&&"default"!=b&&(c=this.styles["default"].createSymbolizer(a));return OpenLayers.Util.extend(c,this.styles[b].createSymbolizer(a))},addUniqueValueRules:function(a,b,c,d){var e=[],f;for(f in c)e.push(new OpenLayers.Rule({symbolizer:c[f],context:d,filter:new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.EQUAL_TO,property:b,value:f})}));this.styles[a].addRules(e)},CLASS_NAME:"OpenLayers.StyleMap"});OpenLayers.Layer.Vector=OpenLayers.Class(OpenLayers.Layer,{isBaseLayer:!1,isFixed:!1,features:null,filter:null,selectedFeatures:null,unrenderedFeatures:null,reportError:!0,style:null,styleMap:null,strategies:null,protocol:null,renderers:["SVG","VML","Canvas"],renderer:null,rendererOptions:null,geometryType:null,drawn:!1,ratio:1,initialize:function(a,b){OpenLayers.Layer.prototype.initialize.apply(this,arguments);(!this.renderer||!this.renderer.supported())&&this.assignRenderer();if(!this.renderer|| !this.renderer.supported())this.renderer=null,this.displayError();this.styleMap||(this.styleMap=new OpenLayers.StyleMap);this.features=[];this.selectedFeatures=[];this.unrenderedFeatures={};if(this.strategies)for(var c=0,d=this.strategies.length;c<d;c++)this.strategies[c].setLayer(this)},destroy:function(){if(this.strategies){var a,b,c;b=0;for(c=this.strategies.length;b<c;b++)a=this.strategies[b],a.autoDestroy&&a.destroy();this.strategies=null}this.protocol&&(this.protocol.autoDestroy&&this.protocol.destroy(), this.protocol=null);this.destroyFeatures();this.unrenderedFeatures=this.selectedFeatures=this.features=null;this.renderer&&this.renderer.destroy();this.drawn=this.geometryType=this.renderer=null;OpenLayers.Layer.prototype.destroy.apply(this,arguments)},clone:function(a){null==a&&(a=new OpenLayers.Layer.Vector(this.name,this.getOptions()));for(var a=OpenLayers.Layer.prototype.clone.apply(this,[a]),b=this.features,c=b.length,d=Array(c),e=0;e<c;++e)d[e]=b[e].clone();a.features=d;return a},refresh:function(a){this.calculateInRange()&& this.visibility&&this.events.triggerEvent("refresh",a)},assignRenderer:function(){for(var a=0,b=this.renderers.length;a<b;a++){var c=this.renderers[a];if((c="function"==typeof c?c:OpenLayers.Renderer[c])&&c.prototype.supported()){this.renderer=new c(this.div,this.rendererOptions);break}}},displayError:function(){this.reportError&&OpenLayers.Console.userError(OpenLayers.i18n("browserNotSupported",{renderers:this.renderers.join("\n")}))},setMap:function(a){OpenLayers.Layer.prototype.setMap.apply(this, arguments);if(this.renderer){this.renderer.map=this.map;var b=this.map.getSize();b.w*=this.ratio;b.h*=this.ratio;this.renderer.setSize(b)}else this.map.removeLayer(this)},afterAdd:function(){if(this.strategies){var a,b,c;b=0;for(c=this.strategies.length;b<c;b++)a=this.strategies[b],a.autoActivate&&a.activate()}},removeMap:function(){this.drawn=!1;if(this.strategies){var a,b,c;b=0;for(c=this.strategies.length;b<c;b++)a=this.strategies[b],a.autoActivate&&a.deactivate()}},onMapResize:function(){OpenLayers.Layer.prototype.onMapResize.apply(this, arguments);var a=this.map.getSize();a.w*=this.ratio;a.h*=this.ratio;this.renderer.setSize(a)},moveTo:function(a,b,c){OpenLayers.Layer.prototype.moveTo.apply(this,arguments);var d=!0;if(!c){this.renderer.root.style.visibility="hidden";var d=this.map.getSize(),e=d.w,d=d.h,e=e/2*this.ratio-e/2,d=d/2*this.ratio-d/2,e=e+parseInt(this.map.layerContainerDiv.style.left,10),e=-Math.round(e),d=d+parseInt(this.map.layerContainerDiv.style.top,10),d=-Math.round(d);this.div.style.left=e+"px";this.div.style.top= d+"px";d=this.renderer.setExtent(this.map.getExtent().scale(this.ratio),b);this.renderer.root.style.visibility="visible";!0===OpenLayers.IS_GECKO&&(this.div.scrollLeft=this.div.scrollLeft);if(!b&&d)for(var f in this.unrenderedFeatures)e=this.unrenderedFeatures[f],this.drawFeature(e)}if(!this.drawn||b||!d){this.drawn=!0;f=0;for(d=this.features.length;f<d;f++)this.renderer.locked=f!==d-1,e=this.features[f],this.drawFeature(e)}},display:function(a){OpenLayers.Layer.prototype.display.apply(this,arguments); var b=this.div.style.display;b!=this.renderer.root.style.display&&(this.renderer.root.style.display=b)},addFeatures:function(a,b){OpenLayers.Util.isArray(a)||(a=[a]);var c=!b||!b.silent;if(c){var d={features:a};if(!1===this.events.triggerEvent("beforefeaturesadded",d))return;a=d.features}for(var d=[],e=0,f=a.length;e<f;e++){this.renderer.locked=e!=a.length-1?!0:!1;var g=a[e];if(this.geometryType&&!(g.geometry instanceof this.geometryType))throw new TypeError("addFeatures: component should be an "+ this.geometryType.prototype.CLASS_NAME);g.layer=this;!g.style&&this.style&&(g.style=OpenLayers.Util.extend({},this.style));if(c){if(!1===this.events.triggerEvent("beforefeatureadded",{feature:g}))continue;this.preFeatureInsert(g)}d.push(g);this.features.push(g);this.drawFeature(g);c&&(this.events.triggerEvent("featureadded",{feature:g}),this.onFeatureInsert(g))}c&&this.events.triggerEvent("featuresadded",{features:d})},removeFeatures:function(a,b){if(a&&0!==a.length){if(a===this.features)return this.removeAllFeatures(b); OpenLayers.Util.isArray(a)||(a=[a]);a===this.selectedFeatures&&(a=a.slice());var c=!b||!b.silent;c&&this.events.triggerEvent("beforefeaturesremoved",{features:a});for(var d=a.length-1;0<=d;d--){this.renderer.locked=0!=d&&a[d-1].geometry?!0:!1;var e=a[d];delete this.unrenderedFeatures[e.id];c&&this.events.triggerEvent("beforefeatureremoved",{feature:e});this.features=OpenLayers.Util.removeItem(this.features,e);e.layer=null;e.geometry&&this.renderer.eraseFeatures(e);-1!=OpenLayers.Util.indexOf(this.selectedFeatures, e)&&OpenLayers.Util.removeItem(this.selectedFeatures,e);c&&this.events.triggerEvent("featureremoved",{feature:e})}c&&this.events.triggerEvent("featuresremoved",{features:a})}},removeAllFeatures:function(a){var a=!a||!a.silent,b=this.features;a&&this.events.triggerEvent("beforefeaturesremoved",{features:b});for(var c,d=b.length-1;0<=d;d--)c=b[d],a&&this.events.triggerEvent("beforefeatureremoved",{feature:c}),c.layer=null,a&&this.events.triggerEvent("featureremoved",{feature:c});this.renderer.clear(); this.features=[];this.unrenderedFeatures={};this.selectedFeatures=[];a&&this.events.triggerEvent("featuresremoved",{features:b})},destroyFeatures:function(a,b){void 0==a&&(a=this.features);if(a){this.removeFeatures(a,b);for(var c=a.length-1;0<=c;c--)a[c].destroy()}},drawFeature:function(a,b){if(this.drawn){if("object"!=typeof b){!b&&a.state===OpenLayers.State.DELETE&&(b="delete");var c=b||a.renderIntent;(b=a.style||this.style)||(b=this.styleMap.createSymbolizer(a,c))}c=this.renderer.drawFeature(a, b);!1===c||null===c?this.unrenderedFeatures[a.id]=a:delete this.unrenderedFeatures[a.id]}},eraseFeatures:function(a){this.renderer.eraseFeatures(a)},getFeatureFromEvent:function(a){if(!this.renderer)throw Error("getFeatureFromEvent called on layer with no renderer. This usually means you destroyed a layer, but not some handler which is associated with it.");var b=null;(a=this.renderer.getFeatureIdFromEvent(a))&&(b="string"===typeof a?this.getFeatureById(a):a);return b},getFeatureBy:function(a,b){for(var c= null,d=0,e=this.features.length;d<e;++d)if(this.features[d][a]==b){c=this.features[d];break}return c},getFeatureById:function(a){return this.getFeatureBy("id",a)},getFeatureByFid:function(a){return this.getFeatureBy("fid",a)},getFeaturesByAttribute:function(a,b){var c,d,e=this.features.length,f=[];for(c=0;c<e;c++)(d=this.features[c])&&d.attributes&&d.attributes[a]===b&&f.push(d);return f},onFeatureInsert:function(){},preFeatureInsert:function(){},getDataExtent:function(){var a=null,b=this.features; if(b&&0<b.length)for(var c=null,d=0,e=b.length;d<e;d++)if(c=b[d].geometry)null===a&&(a=new OpenLayers.Bounds),a.extend(c.getBounds());return a},CLASS_NAME:"OpenLayers.Layer.Vector"});OpenLayers.Layer.Vector.RootContainer=OpenLayers.Class(OpenLayers.Layer.Vector,{displayInLayerSwitcher:!1,layers:null,display:function(){},getFeatureFromEvent:function(a){for(var b=this.layers,c,d=0;d<b.length;d++)if(c=b[d].getFeatureFromEvent(a))return c},setMap:function(a){OpenLayers.Layer.Vector.prototype.setMap.apply(this,arguments);this.collectRoots();a.events.register("changelayer",this,this.handleChangeLayer)},removeMap:function(a){a.events.unregister("changelayer",this,this.handleChangeLayer); this.resetRoots();OpenLayers.Layer.Vector.prototype.removeMap.apply(this,arguments)},collectRoots:function(){for(var a,b=0;b<this.map.layers.length;++b)a=this.map.layers[b],-1!=OpenLayers.Util.indexOf(this.layers,a)&&a.renderer.moveRoot(this.renderer)},resetRoots:function(){for(var a,b=0;b<this.layers.length;++b)a=this.layers[b],this.renderer&&a.renderer.getRenderLayerId()==this.id&&this.renderer.moveRoot(a.renderer)},handleChangeLayer:function(a){var b=a.layer;"order"==a.property&&-1!=OpenLayers.Util.indexOf(this.layers, b)&&(this.resetRoots(),this.collectRoots())},CLASS_NAME:"OpenLayers.Layer.Vector.RootContainer"});OpenLayers.Control.SelectFeature=OpenLayers.Class(OpenLayers.Control,{multipleKey:null,toggleKey:null,multiple:!1,clickout:!0,toggle:!1,hover:!1,highlightOnly:!1,box:!1,onBeforeSelect:function(){},onSelect:function(){},onUnselect:function(){},scope:null,geometryTypes:null,layer:null,layers:null,callbacks:null,selectStyle:null,renderIntent:"select",handlers:null,initialize:function(a,b){OpenLayers.Control.prototype.initialize.apply(this,[b]);null===this.scope&&(this.scope=this);this.initLayer(a);var c= {click:this.clickFeature,clickout:this.clickoutFeature};this.hover&&(c.over=this.overFeature,c.out=this.outFeature);this.callbacks=OpenLayers.Util.extend(c,this.callbacks);this.handlers={feature:new OpenLayers.Handler.Feature(this,this.layer,this.callbacks,{geometryTypes:this.geometryTypes})};this.box&&(this.handlers.box=new OpenLayers.Handler.Box(this,{done:this.selectBox},{boxDivClassName:"olHandlerBoxSelectFeature"}))},initLayer:function(a){OpenLayers.Util.isArray(a)?(this.layers=a,this.layer= new OpenLayers.Layer.Vector.RootContainer(this.id+"_container",{layers:a})):this.layer=a},destroy:function(){this.active&&this.layers&&this.map.removeLayer(this.layer);OpenLayers.Control.prototype.destroy.apply(this,arguments);this.layers&&this.layer.destroy()},activate:function(){this.active||(this.layers&&this.map.addLayer(this.layer),this.handlers.feature.activate(),this.box&&this.handlers.box&&this.handlers.box.activate());return OpenLayers.Control.prototype.activate.apply(this,arguments)},deactivate:function(){this.active&& (this.handlers.feature.deactivate(),this.handlers.box&&this.handlers.box.deactivate(),this.layers&&this.map.removeLayer(this.layer));return OpenLayers.Control.prototype.deactivate.apply(this,arguments)},unselectAll:function(a){for(var b=this.layers||[this.layer],c,d,e=0;e<b.length;++e){c=b[e];for(var f=c.selectedFeatures.length-1;0<=f;--f)d=c.selectedFeatures[f],(!a||a.except!=d)&&this.unselect(d)}},clickFeature:function(a){this.hover||(-1<OpenLayers.Util.indexOf(a.layer.selectedFeatures,a)?this.toggleSelect()? this.unselect(a):this.multipleSelect()||this.unselectAll({except:a}):(this.multipleSelect()||this.unselectAll({except:a}),this.select(a)))},multipleSelect:function(){return this.multiple||this.handlers.feature.evt&&this.handlers.feature.evt[this.multipleKey]},toggleSelect:function(){return this.toggle||this.handlers.feature.evt&&this.handlers.feature.evt[this.toggleKey]},clickoutFeature:function(){!this.hover&&this.clickout&&this.unselectAll()},overFeature:function(a){var b=a.layer;this.hover&&(this.highlightOnly? this.highlight(a):-1==OpenLayers.Util.indexOf(b.selectedFeatures,a)&&this.select(a))},outFeature:function(a){if(this.hover)if(this.highlightOnly){if(a._lastHighlighter==this.id)if(a._prevHighlighter&&a._prevHighlighter!=this.id){delete a._lastHighlighter;var b=this.map.getControl(a._prevHighlighter);b&&b.highlight(a)}else this.unhighlight(a)}else this.unselect(a)},highlight:function(a){var b=a.layer;!1!==this.events.triggerEvent("beforefeaturehighlighted",{feature:a})&&(a._prevHighlighter=a._lastHighlighter, a._lastHighlighter=this.id,b.drawFeature(a,this.selectStyle||this.renderIntent),this.events.triggerEvent("featurehighlighted",{feature:a}))},unhighlight:function(a){var b=a.layer;void 0==a._prevHighlighter?delete a._lastHighlighter:(a._prevHighlighter!=this.id&&(a._lastHighlighter=a._prevHighlighter),delete a._prevHighlighter);b.drawFeature(a,a.style||a.layer.style||"default");this.events.triggerEvent("featureunhighlighted",{feature:a})},select:function(a){var b=this.onBeforeSelect.call(this.scope, a),c=a.layer;!1!==b&&(b=c.events.triggerEvent("beforefeatureselected",{feature:a}),!1!==b&&(c.selectedFeatures.push(a),this.highlight(a),this.handlers.feature.lastFeature||(this.handlers.feature.lastFeature=c.selectedFeatures[0]),c.events.triggerEvent("featureselected",{feature:a}),this.onSelect.call(this.scope,a)))},unselect:function(a){var b=a.layer;this.unhighlight(a);OpenLayers.Util.removeItem(b.selectedFeatures,a);b.events.triggerEvent("featureunselected",{feature:a});this.onUnselect.call(this.scope, a)},selectBox:function(a){if(a instanceof OpenLayers.Bounds){var b=this.map.getLonLatFromPixel({x:a.left,y:a.bottom}),a=this.map.getLonLatFromPixel({x:a.right,y:a.top}),b=new OpenLayers.Bounds(b.lon,b.lat,a.lon,a.lat);this.multipleSelect()||this.unselectAll();a=this.multiple;this.multiple=!0;var c=this.layers||[this.layer];this.events.triggerEvent("boxselectionstart",{layers:c});for(var d,e=0;e<c.length;++e){d=c[e];for(var f=0,g=d.features.length;f<g;++f){var h=d.features[f];h.getVisibility()&&(null== this.geometryTypes||-1<OpenLayers.Util.indexOf(this.geometryTypes,h.geometry.CLASS_NAME))&&b.toGeometry().intersects(h.geometry)&&-1==OpenLayers.Util.indexOf(d.selectedFeatures,h)&&this.select(h)}}this.multiple=a;this.events.triggerEvent("boxselectionend",{layers:c})}},setMap:function(a){this.handlers.feature.setMap(a);this.box&&this.handlers.box.setMap(a);OpenLayers.Control.prototype.setMap.apply(this,arguments)},setLayer:function(a){var b=this.active;this.unselectAll();this.deactivate();this.layers&& (this.layer.destroy(),this.layers=null);this.initLayer(a);this.handlers.feature.layer=this.layer;b&&this.activate()},CLASS_NAME:"OpenLayers.Control.SelectFeature"});OpenLayers.Handler.Keyboard=OpenLayers.Class(OpenLayers.Handler,{KEY_EVENTS:["keydown","keyup"],eventListener:null,observeElement:null,initialize:function(a,b,c){OpenLayers.Handler.prototype.initialize.apply(this,arguments);this.eventListener=OpenLayers.Function.bindAsEventListener(this.handleKeyEvent,this)},destroy:function(){this.deactivate();this.eventListener=null;OpenLayers.Handler.prototype.destroy.apply(this,arguments)},activate:function(){if(OpenLayers.Handler.prototype.activate.apply(this, arguments)){this.observeElement=this.observeElement||document;for(var a=0,b=this.KEY_EVENTS.length;a<b;a++)OpenLayers.Event.observe(this.observeElement,this.KEY_EVENTS[a],this.eventListener);return!0}return!1},deactivate:function(){var a=!1;if(OpenLayers.Handler.prototype.deactivate.apply(this,arguments)){for(var a=0,b=this.KEY_EVENTS.length;a<b;a++)OpenLayers.Event.stopObserving(this.observeElement,this.KEY_EVENTS[a],this.eventListener);a=!0}return a},handleKeyEvent:function(a){this.checkModifiers(a)&& this.callback(a.type,[a])},CLASS_NAME:"OpenLayers.Handler.Keyboard"});OpenLayers.Control.ModifyFeature=OpenLayers.Class(OpenLayers.Control,{geometryTypes:null,clickout:!0,toggle:!0,standalone:!1,layer:null,feature:null,vertices:null,virtualVertices:null,selectControl:null,dragControl:null,handlers:null,deleteCodes:null,virtualStyle:null,vertexRenderIntent:null,mode:null,createVertices:!0,modified:!1,radiusHandle:null,dragHandle:null,onModificationStart:function(){},onModification:function(){},onModificationEnd:function(){},initialize:function(a,b){b=b||{};this.layer= a;this.vertices=[];this.virtualVertices=[];this.virtualStyle=OpenLayers.Util.extend({},this.layer.style||this.layer.styleMap.createSymbolizer(null,b.vertexRenderIntent));this.virtualStyle.fillOpacity=0.3;this.virtualStyle.strokeOpacity=0.3;this.deleteCodes=[46,68];this.mode=OpenLayers.Control.ModifyFeature.RESHAPE;OpenLayers.Control.prototype.initialize.apply(this,[b]);OpenLayers.Util.isArray(this.deleteCodes)||(this.deleteCodes=[this.deleteCodes]);var c=this,d={geometryTypes:this.geometryTypes,clickout:this.clickout, toggle:this.toggle,onBeforeSelect:this.beforeSelectFeature,onSelect:this.selectFeature,onUnselect:this.unselectFeature,scope:this};!1===this.standalone&&(this.selectControl=new OpenLayers.Control.SelectFeature(a,d));this.dragControl=new OpenLayers.Control.DragFeature(a,{geometryTypes:["OpenLayers.Geometry.Point"],onStart:function(a,b){c.dragStart.apply(c,[a,b])},onDrag:function(a,b){c.dragVertex.apply(c,[a,b])},onComplete:function(a){c.dragComplete.apply(c,[a])},featureCallbacks:{over:function(a){(c.standalone!== true||a._sketch||c.feature===a)&&c.dragControl.overFeature.apply(c.dragControl,[a])}}});this.handlers={keyboard:new OpenLayers.Handler.Keyboard(this,{keydown:this.handleKeypress})}},destroy:function(){this.layer=null;this.standalone||this.selectControl.destroy();this.dragControl.destroy();OpenLayers.Control.prototype.destroy.apply(this,[])},activate:function(){return(this.standalone||this.selectControl.activate())&&this.handlers.keyboard.activate()&&OpenLayers.Control.prototype.activate.apply(this, arguments)},deactivate:function(){var a=!1;if(OpenLayers.Control.prototype.deactivate.apply(this,arguments)){this.layer.removeFeatures(this.vertices,{silent:!0});this.layer.removeFeatures(this.virtualVertices,{silent:!0});this.vertices=[];this.dragControl.deactivate();var b=(a=this.feature)&&a.geometry&&a.layer;!1===this.standalone?(b&&this.selectControl.unselect.apply(this.selectControl,[a]),this.selectControl.deactivate()):b&&this.unselectFeature(a);this.handlers.keyboard.deactivate();a=!0}return a}, beforeSelectFeature:function(a){return this.layer.events.triggerEvent("beforefeaturemodified",{feature:a})},selectFeature:function(a){if(!this.standalone||!1!==this.beforeSelectFeature(a))this.feature=a,this.modified=!1,this.resetVertices(),this.dragControl.activate(),this.onModificationStart(this.feature);var b=a.modified;if(a.geometry&&(!b||!b.geometry))this._originalGeometry=a.geometry.clone()},unselectFeature:function(a){this.layer.removeFeatures(this.vertices,{silent:!0});this.vertices=[];this.layer.destroyFeatures(this.virtualVertices, {silent:!0});this.virtualVertices=[];this.dragHandle&&(this.layer.destroyFeatures([this.dragHandle],{silent:!0}),delete this.dragHandle);this.radiusHandle&&(this.layer.destroyFeatures([this.radiusHandle],{silent:!0}),delete this.radiusHandle);this.feature=null;this.dragControl.deactivate();this.onModificationEnd(a);this.layer.events.triggerEvent("afterfeaturemodified",{feature:a,modified:this.modified});this.modified=!1},dragStart:function(a,b){if(a!=this.feature&&(!a.geometry.parent&&a!=this.dragHandle&& a!=this.radiusHandle)&&(!1===this.standalone&&this.feature&&this.selectControl.clickFeature.apply(this.selectControl,[this.feature]),null==this.geometryTypes||-1!=OpenLayers.Util.indexOf(this.geometryTypes,a.geometry.CLASS_NAME)))this.standalone||this.selectControl.clickFeature.apply(this.selectControl,[a]),this.dragControl.overFeature.apply(this.dragControl,[a]),this.dragControl.lastPixel=b,this.dragControl.handlers.drag.started=!0,this.dragControl.handlers.drag.start=b,this.dragControl.handlers.drag.last= b},dragVertex:function(a,b){this.modified=!0;"OpenLayers.Geometry.Point"==this.feature.geometry.CLASS_NAME?(this.feature!=a&&(this.feature=a),this.layer.events.triggerEvent("vertexmodified",{vertex:a.geometry,feature:this.feature,pixel:b})):(a._index?(a.geometry.parent.addComponent(a.geometry,a._index),delete a._index,OpenLayers.Util.removeItem(this.virtualVertices,a),this.vertices.push(a)):a==this.dragHandle?(this.layer.removeFeatures(this.vertices,{silent:!0}),this.vertices=[],this.radiusHandle&& (this.layer.destroyFeatures([this.radiusHandle],{silent:!0}),this.radiusHandle=null)):a!==this.radiusHandle&&this.layer.events.triggerEvent("vertexmodified",{vertex:a.geometry,feature:this.feature,pixel:b}),0<this.virtualVertices.length&&(this.layer.destroyFeatures(this.virtualVertices,{silent:!0}),this.virtualVertices=[]),this.layer.drawFeature(this.feature,this.standalone?void 0:this.selectControl.renderIntent));this.layer.drawFeature(a)},dragComplete:function(){this.resetVertices();this.setFeatureState(); this.onModification(this.feature);this.layer.events.triggerEvent("featuremodified",{feature:this.feature})},setFeatureState:function(){if(this.feature.state!=OpenLayers.State.INSERT&&this.feature.state!=OpenLayers.State.DELETE&&(this.feature.state=OpenLayers.State.UPDATE,this.modified&&this._originalGeometry)){var a=this.feature;a.modified=OpenLayers.Util.extend(a.modified,{geometry:this._originalGeometry});delete this._originalGeometry}},resetVertices:function(){this.dragControl.feature&&this.dragControl.outFeature(this.dragControl.feature); 0<this.vertices.length&&(this.layer.removeFeatures(this.vertices,{silent:!0}),this.vertices=[]);0<this.virtualVertices.length&&(this.layer.removeFeatures(this.virtualVertices,{silent:!0}),this.virtualVertices=[]);this.dragHandle&&(this.layer.destroyFeatures([this.dragHandle],{silent:!0}),this.dragHandle=null);this.radiusHandle&&(this.layer.destroyFeatures([this.radiusHandle],{silent:!0}),this.radiusHandle=null);this.feature&&"OpenLayers.Geometry.Point"!=this.feature.geometry.CLASS_NAME&&(this.mode& OpenLayers.Control.ModifyFeature.DRAG&&this.collectDragHandle(),this.mode&(OpenLayers.Control.ModifyFeature.ROTATE|OpenLayers.Control.ModifyFeature.RESIZE)&&this.collectRadiusHandle(),this.mode&OpenLayers.Control.ModifyFeature.RESHAPE&&(this.mode&OpenLayers.Control.ModifyFeature.RESIZE||this.collectVertices()))},handleKeypress:function(a){var b=a.keyCode;if(this.feature&&-1!=OpenLayers.Util.indexOf(this.deleteCodes,b)&&(b=this.dragControl.feature)&&-1!=OpenLayers.Util.indexOf(this.vertices,b)&&!this.dragControl.handlers.drag.dragging&& b.geometry.parent)b.geometry.parent.removeComponent(b.geometry),this.layer.events.triggerEvent("vertexremoved",{vertex:b.geometry,feature:this.feature,pixel:a.xy}),this.layer.drawFeature(this.feature,this.standalone?void 0:this.selectControl.renderIntent),this.modified=!0,this.resetVertices(),this.setFeatureState(),this.onModification(this.feature),this.layer.events.triggerEvent("featuremodified",{feature:this.feature})},collectVertices:function(){function a(c){var d,e,f;if("OpenLayers.Geometry.Point"== c.CLASS_NAME)e=new OpenLayers.Feature.Vector(c),e._sketch=!0,e.renderIntent=b.vertexRenderIntent,b.vertices.push(e);else{f=c.components.length;"OpenLayers.Geometry.LinearRing"==c.CLASS_NAME&&(f-=1);for(d=0;d<f;++d)e=c.components[d],"OpenLayers.Geometry.Point"==e.CLASS_NAME?(e=new OpenLayers.Feature.Vector(e),e._sketch=!0,e.renderIntent=b.vertexRenderIntent,b.vertices.push(e)):a(e);if(b.createVertices&&"OpenLayers.Geometry.MultiPoint"!=c.CLASS_NAME){d=0;for(f=c.components.length;d<f-1;++d){e=c.components[d]; var g=c.components[d+1];"OpenLayers.Geometry.Point"==e.CLASS_NAME&&"OpenLayers.Geometry.Point"==g.CLASS_NAME&&(e=new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Point((e.x+g.x)/2,(e.y+g.y)/2),null,b.virtualStyle),e.geometry.parent=c,e._index=d+1,e._sketch=!0,b.virtualVertices.push(e))}}}}this.vertices=[];this.virtualVertices=[];var b=this;a.call(this,this.feature.geometry);this.layer.addFeatures(this.virtualVertices,{silent:!0});this.layer.addFeatures(this.vertices,{silent:!0})},collectDragHandle:function(){var a= this.feature.geometry,b=a.getBounds().getCenterLonLat(),b=new OpenLayers.Geometry.Point(b.lon,b.lat),c=new OpenLayers.Feature.Vector(b);b.move=function(b,c){OpenLayers.Geometry.Point.prototype.move.call(this,b,c);a.move(b,c)};c._sketch=!0;this.dragHandle=c;this.dragHandle.renderIntent=this.vertexRenderIntent;this.layer.addFeatures([this.dragHandle],{silent:!0})},collectRadiusHandle:function(){var a=this.feature.geometry,b=a.getBounds(),c=b.getCenterLonLat(),d=new OpenLayers.Geometry.Point(c.lon,c.lat), b=new OpenLayers.Geometry.Point(b.right,b.bottom),c=new OpenLayers.Feature.Vector(b),e=this.mode&OpenLayers.Control.ModifyFeature.RESIZE,f=this.mode&OpenLayers.Control.ModifyFeature.RESHAPE,g=this.mode&OpenLayers.Control.ModifyFeature.ROTATE;b.move=function(b,c){OpenLayers.Geometry.Point.prototype.move.call(this,b,c);var j=this.x-d.x,k=this.y-d.y,l=j-b,m=k-c;if(g){var n=Math.atan2(m,l),n=Math.atan2(k,j)-n,n=n*(180/Math.PI);a.rotate(n,d)}if(e){var o;f?(k/=m,o=j/l/k):(l=Math.sqrt(l*l+m*m),k=Math.sqrt(j* j+k*k)/l);a.resize(k,d,o)}};c._sketch=!0;this.radiusHandle=c;this.radiusHandle.renderIntent=this.vertexRenderIntent;this.layer.addFeatures([this.radiusHandle],{silent:!0})},setMap:function(a){this.standalone||this.selectControl.setMap(a);this.dragControl.setMap(a);OpenLayers.Control.prototype.setMap.apply(this,arguments)},CLASS_NAME:"OpenLayers.Control.ModifyFeature"});OpenLayers.Control.ModifyFeature.RESHAPE=1;OpenLayers.Control.ModifyFeature.RESIZE=2;OpenLayers.Control.ModifyFeature.ROTATE=4; OpenLayers.Control.ModifyFeature.DRAG=8;OpenLayers.Layer.Bing=OpenLayers.Class(OpenLayers.Layer.XYZ,{key:null,serverResolutions:[156543.03390625,78271.516953125,39135.7584765625,19567.87923828125,9783.939619140625,4891.9698095703125,2445.9849047851562,1222.9924523925781,611.4962261962891,305.74811309814453,152.87405654907226,76.43702827453613,38.218514137268066,19.109257068634033,9.554628534317017,4.777314267158508,2.388657133579254,1.194328566789627,0.5971642833948135,0.29858214169740677,0.14929107084870338,0.07464553542435169],attributionTemplate:'<span class="olBingAttribution ${type}"><div><a target="_blank" href="http://www.bing.com/maps/"><img src="${logo}" /></a></div>${copyrights}<a style="white-space: nowrap" target="_blank" href="http://www.microsoft.com/maps/product/terms.html">Terms of Use</a></span>', metadata:null,type:"Road",culture:"en-US",metadataParams:null,tileOptions:null,initialize:function(a){a=OpenLayers.Util.applyDefaults({sphericalMercator:!0},a);OpenLayers.Layer.XYZ.prototype.initialize.apply(this,[a.name||"Bing "+(a.type||this.type),null,a]);this.tileOptions=OpenLayers.Util.extend({crossOriginKeyword:"anonymous"},this.options.tileOptions);this.loadMetadata()},loadMetadata:function(){this._callbackId="_callback_"+this.id.replace(/\./g,"_");window[this._callbackId]=OpenLayers.Function.bind(OpenLayers.Layer.Bing.processMetadata, this);var a=OpenLayers.Util.applyDefaults({key:this.key,jsonp:this._callbackId,include:"ImageryProviders"},this.metadataParams),a="http://dev.virtualearth.net/REST/v1/Imagery/Metadata/"+this.type+"?"+OpenLayers.Util.getParameterString(a),b=document.createElement("script");b.type="text/javascript";b.src=a;b.id=this._callbackId;document.getElementsByTagName("head")[0].appendChild(b)},initLayer:function(){var a=this.metadata.resourceSets[0].resources[0],b=a.imageUrl.replace("{quadkey}","${quadkey}"), b=b.replace("{culture}",this.culture);this.url=[];for(var c=0;c<a.imageUrlSubdomains.length;++c)this.url.push(b.replace("{subdomain}",a.imageUrlSubdomains[c]));this.addOptions({maxResolution:Math.min(this.serverResolutions[a.zoomMin],this.maxResolution||Number.POSITIVE_INFINITY),numZoomLevels:Math.min(a.zoomMax+1-a.zoomMin,this.numZoomLevels)},!0)},getURL:function(a){if(this.url){for(var b=this.getXYZ(a),a=b.x,c=b.y,b=b.z,d=[],e=b;0<e;--e){var f="0",g=1<<e-1;0!=(a&g)&&f++;0!=(c&g)&&(f++,f++);d.push(f)}d= d.join("");a=this.selectUrl(""+a+c+b,this.url);return OpenLayers.String.format(a,{quadkey:d})}},updateAttribution:function(){var a=this.metadata;if(a.resourceSets&&this.map&&this.map.center){var b=a.resourceSets[0].resources[0],c=this.map.getExtent().transform(this.map.getProjectionObject(),new OpenLayers.Projection("EPSG:4326")),b=b.imageryProviders,d=OpenLayers.Util.indexOf(this.serverResolutions,this.getServerResolution()),e="",f,g,h,i,j,k,l;g=0;for(h=b.length;g<h;++g){f=b[g];i=0;for(j=f.coverageAreas.length;i< j;++i)l=f.coverageAreas[i],k=OpenLayers.Bounds.fromArray(l.bbox,!0),c.intersectsBounds(k)&&(d<=l.zoomMax&&d>=l.zoomMin)&&(e+=f.attribution+" ")}this.attribution=OpenLayers.String.format(this.attributionTemplate,{type:this.type.toLowerCase(),logo:a.brandLogoUri,copyrights:e});this.map&&this.map.events.triggerEvent("changelayer",{layer:this,property:"attribution"})}},setMap:function(){OpenLayers.Layer.XYZ.prototype.setMap.apply(this,arguments);this.updateAttribution();this.map.events.register("moveend", this,this.updateAttribution)},clone:function(a){null==a&&(a=new OpenLayers.Layer.Bing(this.options));return a=OpenLayers.Layer.XYZ.prototype.clone.apply(this,[a])},destroy:function(){this.map&&this.map.events.unregister("moveend",this,this.updateAttribution);OpenLayers.Layer.XYZ.prototype.destroy.apply(this,arguments)},CLASS_NAME:"OpenLayers.Layer.Bing"}); OpenLayers.Layer.Bing.processMetadata=function(a){this.metadata=a;this.initLayer();a=document.getElementById(this._callbackId);a.parentNode.removeChild(a);window[this._callbackId]=void 0;delete this._callbackId};OpenLayers.Layer.PointGrid=OpenLayers.Class(OpenLayers.Layer.Vector,{dx:null,dy:null,ratio:1.5,maxFeatures:250,rotation:0,origin:null,gridBounds:null,initialize:function(a){a=a||{};OpenLayers.Layer.Vector.prototype.initialize.apply(this,[a.name,a])},setMap:function(a){OpenLayers.Layer.Vector.prototype.setMap.apply(this,arguments);a.events.register("moveend",this,this.onMoveEnd)},removeMap:function(a){a.events.unregister("moveend",this,this.onMoveEnd);OpenLayers.Layer.Vector.prototype.removeMap.apply(this, arguments)},setRatio:function(a){this.ratio=a;this.updateGrid(!0)},setMaxFeatures:function(a){this.maxFeatures=a;this.updateGrid(!0)},setSpacing:function(a,b){this.dx=a;this.dy=b||a;this.updateGrid(!0)},setOrigin:function(a){this.origin=a;this.updateGrid(!0)},getOrigin:function(){this.origin||(this.origin=this.map.getExtent().getCenterLonLat());return this.origin},setRotation:function(a){this.rotation=a;this.updateGrid(!0)},onMoveEnd:function(){this.updateGrid()},getViewBounds:function(){var a=this.map.getExtent(); if(this.rotation){var b=this.getOrigin(),b=new OpenLayers.Geometry.Point(b.lon,b.lat),a=a.toGeometry();a.rotate(-this.rotation,b);a=a.getBounds()}return a},updateGrid:function(a){if(a||this.invalidBounds()){var b=this.getViewBounds(),c=this.getOrigin(),a=new OpenLayers.Geometry.Point(c.lon,c.lat),d=b.getWidth(),e=b.getHeight(),f=d/e,g=Math.sqrt(this.dx*this.dy*this.maxFeatures/f),d=Math.min(d*this.ratio,g*f),e=Math.min(e*this.ratio,g),b=b.getCenterLonLat();this.gridBounds=new OpenLayers.Bounds(b.lon- d/2,b.lat-e/2,b.lon+d/2,b.lat+e/2);for(var b=Math.floor(e/this.dy),d=Math.floor(d/this.dx),e=c.lon+this.dx*Math.ceil((this.gridBounds.left-c.lon)/this.dx),c=c.lat+this.dy*Math.ceil((this.gridBounds.bottom-c.lat)/this.dy),g=Array(b*d),h,i=0;i<d;++i)for(var f=e+i*this.dx,j=0;j<b;++j)h=c+j*this.dy,h=new OpenLayers.Geometry.Point(f,h),this.rotation&&h.rotate(this.rotation,a),g[i*b+j]=new OpenLayers.Feature.Vector(h);this.destroyFeatures(this.features,{silent:!0});this.addFeatures(g,{silent:!0})}},invalidBounds:function(){return!this.gridBounds|| !this.gridBounds.containsBounds(this.getViewBounds())},CLASS_NAME:"OpenLayers.Layer.PointGrid"});OpenLayers.Handler.MouseWheel=OpenLayers.Class(OpenLayers.Handler,{wheelListener:null,mousePosition:null,interval:0,delta:0,cumulative:!0,initialize:function(a,b,c){OpenLayers.Handler.prototype.initialize.apply(this,arguments);this.wheelListener=OpenLayers.Function.bindAsEventListener(this.onWheelEvent,this)},destroy:function(){OpenLayers.Handler.prototype.destroy.apply(this,arguments);this.wheelListener=null},onWheelEvent:function(a){if(this.map&&this.checkModifiers(a)){for(var b=!1,c=!1,d=!1,e= OpenLayers.Event.element(a);null!=e&&!d&&!b;){if(!b)try{var f=e.currentStyle?e.currentStyle.overflow:document.defaultView.getComputedStyle(e,null).getPropertyValue("overflow"),b=f&&"auto"==f||"scroll"==f}catch(g){}if(!c)for(var d=0,h=this.map.layers.length;d<h;d++)if(e==this.map.layers[d].div||e==this.map.layers[d].pane){c=!0;break}d=e==this.map.div;e=e.parentNode}!b&&d&&(c&&((b=0,a||(a=window.event),a.wheelDelta?(b=a.wheelDelta/120,window.opera&&9.2>window.opera.version()&&(b=-b)):a.detail&&(b=-a.detail/ 3),this.delta+=b,this.interval)?(window.clearTimeout(this._timeoutId),this._timeoutId=window.setTimeout(OpenLayers.Function.bind(function(){this.wheelZoom(a)},this),this.interval)):this.wheelZoom(a)),OpenLayers.Event.stop(a))}},wheelZoom:function(a){var b=this.delta;this.delta=0;b&&(this.mousePosition&&(a.xy=this.mousePosition),a.xy||(a.xy=this.map.getPixelFromLonLat(this.map.getCenter())),0>b?this.callback("down",[a,this.cumulative?b:-1]):this.callback("up",[a,this.cumulative?b:1]))},mousemove:function(a){this.mousePosition= a.xy},activate:function(a){if(OpenLayers.Handler.prototype.activate.apply(this,arguments)){var b=this.wheelListener;OpenLayers.Event.observe(window,"DOMMouseScroll",b);OpenLayers.Event.observe(window,"mousewheel",b);OpenLayers.Event.observe(document,"mousewheel",b);return!0}return!1},deactivate:function(a){if(OpenLayers.Handler.prototype.deactivate.apply(this,arguments)){var b=this.wheelListener;OpenLayers.Event.stopObserving(window,"DOMMouseScroll",b);OpenLayers.Event.stopObserving(window,"mousewheel", b);OpenLayers.Event.stopObserving(document,"mousewheel",b);return!0}return!1},CLASS_NAME:"OpenLayers.Handler.MouseWheel"});OpenLayers.Symbolizer=OpenLayers.Class({zIndex:0,initialize:function(a){OpenLayers.Util.extend(this,a)},clone:function(){return new (eval(this.CLASS_NAME))(OpenLayers.Util.extend({},this))},CLASS_NAME:"OpenLayers.Symbolizer"});OpenLayers.Symbolizer.Raster=OpenLayers.Class(OpenLayers.Symbolizer,{initialize:function(a){OpenLayers.Symbolizer.prototype.initialize.apply(this,arguments)},CLASS_NAME:"OpenLayers.Symbolizer.Raster"});OpenLayers.Rule=OpenLayers.Class({id:null,name:null,title:null,description:null,context:null,filter:null,elseFilter:!1,symbolizer:null,symbolizers:null,minScaleDenominator:null,maxScaleDenominator:null,initialize:function(a){this.symbolizer={};OpenLayers.Util.extend(this,a);this.symbolizers&&delete this.symbolizer;this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},destroy:function(){for(var a in this.symbolizer)this.symbolizer[a]=null;this.symbolizer=null;delete this.symbolizers},evaluate:function(a){var b= this.getContext(a),c=!0;if(this.minScaleDenominator||this.maxScaleDenominator)var d=a.layer.map.getScale();this.minScaleDenominator&&(c=d>=OpenLayers.Style.createLiteral(this.minScaleDenominator,b));c&&this.maxScaleDenominator&&(c=d<OpenLayers.Style.createLiteral(this.maxScaleDenominator,b));c&&this.filter&&(c="OpenLayers.Filter.FeatureId"==this.filter.CLASS_NAME?this.filter.evaluate(a):this.filter.evaluate(b));return c},getContext:function(a){var b=this.context;b||(b=a.attributes||a.data);"function"== typeof this.context&&(b=this.context(a));return b},clone:function(){var a=OpenLayers.Util.extend({},this);if(this.symbolizers){var b=this.symbolizers.length;a.symbolizers=Array(b);for(var c=0;c<b;++c)a.symbolizers[c]=this.symbolizers[c].clone()}else{a.symbolizer={};for(var d in this.symbolizer)b=this.symbolizer[d],c=typeof b,"object"===c?a.symbolizer[d]=OpenLayers.Util.extend({},b):"string"===c&&(a.symbolizer[d]=b)}a.filter=this.filter&&this.filter.clone();a.context=this.context&&OpenLayers.Util.extend({}, this.context);return new OpenLayers.Rule(a)},CLASS_NAME:"OpenLayers.Rule"});OpenLayers.Filter.Spatial=OpenLayers.Class(OpenLayers.Filter,{type:null,property:null,value:null,distance:null,distanceUnits:null,evaluate:function(a){var b=!1;switch(this.type){case OpenLayers.Filter.Spatial.BBOX:case OpenLayers.Filter.Spatial.INTERSECTS:if(a.geometry){var c=this.value;"OpenLayers.Bounds"==this.value.CLASS_NAME&&(c=this.value.toGeometry());a.geometry.intersects(c)&&(b=!0)}break;default:throw Error("evaluate is not implemented for this filter type.");}return b},clone:function(){var a= OpenLayers.Util.applyDefaults({value:this.value&&this.value.clone&&this.value.clone()},this);return new OpenLayers.Filter.Spatial(a)},CLASS_NAME:"OpenLayers.Filter.Spatial"});OpenLayers.Filter.Spatial.BBOX="BBOX";OpenLayers.Filter.Spatial.INTERSECTS="INTERSECTS";OpenLayers.Filter.Spatial.DWITHIN="DWITHIN";OpenLayers.Filter.Spatial.WITHIN="WITHIN";OpenLayers.Filter.Spatial.CONTAINS="CONTAINS";OpenLayers.Format.SLD=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{profile:null,defaultVersion:"1.0.0",stringifyOutput:!0,namedLayersAsArray:!1,CLASS_NAME:"OpenLayers.Format.SLD"});OpenLayers.Symbolizer.Polygon=OpenLayers.Class(OpenLayers.Symbolizer,{initialize:function(a){OpenLayers.Symbolizer.prototype.initialize.apply(this,arguments)},CLASS_NAME:"OpenLayers.Symbolizer.Polygon"});OpenLayers.Format.GML.v2=OpenLayers.Class(OpenLayers.Format.GML.Base,{schemaLocation:"http://www.opengis.net/gml http://schemas.opengis.net/gml/2.1.2/feature.xsd",initialize:function(a){OpenLayers.Format.GML.Base.prototype.initialize.apply(this,[a])},readers:{gml:OpenLayers.Util.applyDefaults({outerBoundaryIs:function(a,b){var c={};this.readChildNodes(a,c);b.outer=c.components[0]},innerBoundaryIs:function(a,b){var c={};this.readChildNodes(a,c);b.inner.push(c.components[0])},Box:function(a,b){var c= {};this.readChildNodes(a,c);b.components||(b.components=[]);var d=c.points[0],c=c.points[1];b.components.push(new OpenLayers.Bounds(d.x,d.y,c.x,c.y))}},OpenLayers.Format.GML.Base.prototype.readers.gml),feature:OpenLayers.Format.GML.Base.prototype.readers.feature,wfs:OpenLayers.Format.GML.Base.prototype.readers.wfs},write:function(a){a=this.writeNode(OpenLayers.Util.isArray(a)?"wfs:FeatureCollection":"gml:featureMember",a);this.setAttributeNS(a,this.namespaces.xsi,"xsi:schemaLocation",this.schemaLocation); return OpenLayers.Format.XML.prototype.write.apply(this,[a])},writers:{gml:OpenLayers.Util.applyDefaults({Point:function(a){var b=this.createElementNSPlus("gml:Point");this.writeNode("coordinates",[a],b);return b},coordinates:function(a){for(var b=a.length,c=Array(b),d,e=0;e<b;++e)d=a[e],c[e]=this.xy?d.x+","+d.y:d.y+","+d.x,void 0!=d.z&&(c[e]+=","+d.z);return this.createElementNSPlus("gml:coordinates",{attributes:{decimal:".",cs:",",ts:" "},value:1==b?c[0]:c.join(" ")})},LineString:function(a){var b= this.createElementNSPlus("gml:LineString");this.writeNode("coordinates",a.components,b);return b},Polygon:function(a){var b=this.createElementNSPlus("gml:Polygon");this.writeNode("outerBoundaryIs",a.components[0],b);for(var c=1;c<a.components.length;++c)this.writeNode("innerBoundaryIs",a.components[c],b);return b},outerBoundaryIs:function(a){var b=this.createElementNSPlus("gml:outerBoundaryIs");this.writeNode("LinearRing",a,b);return b},innerBoundaryIs:function(a){var b=this.createElementNSPlus("gml:innerBoundaryIs"); this.writeNode("LinearRing",a,b);return b},LinearRing:function(a){var b=this.createElementNSPlus("gml:LinearRing");this.writeNode("coordinates",a.components,b);return b},Box:function(a){var b=this.createElementNSPlus("gml:Box");this.writeNode("coordinates",[{x:a.left,y:a.bottom},{x:a.right,y:a.top}],b);this.srsName&&b.setAttribute("srsName",this.srsName);return b}},OpenLayers.Format.GML.Base.prototype.writers.gml),feature:OpenLayers.Format.GML.Base.prototype.writers.feature,wfs:OpenLayers.Format.GML.Base.prototype.writers.wfs}, CLASS_NAME:"OpenLayers.Format.GML.v2"});OpenLayers.Format.Filter.v1_0_0=OpenLayers.Class(OpenLayers.Format.GML.v2,OpenLayers.Format.Filter.v1,{VERSION:"1.0.0",schemaLocation:"http://www.opengis.net/ogc/filter/1.0.0/filter.xsd",initialize:function(a){OpenLayers.Format.GML.v2.prototype.initialize.apply(this,[a])},readers:{ogc:OpenLayers.Util.applyDefaults({PropertyIsEqualTo:function(a,b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.EQUAL_TO});this.readChildNodes(a,c);b.filters.push(c)},PropertyIsNotEqualTo:function(a, b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.NOT_EQUAL_TO});this.readChildNodes(a,c);b.filters.push(c)},PropertyIsLike:function(a,b){var c=new OpenLayers.Filter.Comparison({type:OpenLayers.Filter.Comparison.LIKE});this.readChildNodes(a,c);var d=a.getAttribute("wildCard"),e=a.getAttribute("singleChar"),f=a.getAttribute("escape");c.value2regex(d,e,f);b.filters.push(c)}},OpenLayers.Format.Filter.v1.prototype.readers.ogc),gml:OpenLayers.Format.GML.v2.prototype.readers.gml, feature:OpenLayers.Format.GML.v2.prototype.readers.feature},writers:{ogc:OpenLayers.Util.applyDefaults({PropertyIsEqualTo:function(a){var b=this.createElementNSPlus("ogc:PropertyIsEqualTo");this.writeNode("PropertyName",a,b);this.writeOgcExpression(a.value,b);return b},PropertyIsNotEqualTo:function(a){var b=this.createElementNSPlus("ogc:PropertyIsNotEqualTo");this.writeNode("PropertyName",a,b);this.writeOgcExpression(a.value,b);return b},PropertyIsLike:function(a){var b=this.createElementNSPlus("ogc:PropertyIsLike", {attributes:{wildCard:"*",singleChar:".",escape:"!"}});this.writeNode("PropertyName",a,b);this.writeNode("Literal",a.regex2value(),b);return b},BBOX:function(a){var b=this.createElementNSPlus("ogc:BBOX");a.property&&this.writeNode("PropertyName",a,b);var c=this.writeNode("gml:Box",a.value,b);a.projection&&c.setAttribute("srsName",a.projection);return b}},OpenLayers.Format.Filter.v1.prototype.writers.ogc),gml:OpenLayers.Format.GML.v2.prototype.writers.gml,feature:OpenLayers.Format.GML.v2.prototype.writers.feature}, writeSpatial:function(a,b){var c=this.createElementNSPlus("ogc:"+b);this.writeNode("PropertyName",a,c);if(a.value instanceof OpenLayers.Filter.Function)this.writeNode("Function",a.value,c);else{var d;d=a.value instanceof OpenLayers.Geometry?this.writeNode("feature:_geometry",a.value).firstChild:this.writeNode("gml:Box",a.value);a.projection&&d.setAttribute("srsName",a.projection);c.appendChild(d)}return c},CLASS_NAME:"OpenLayers.Format.Filter.v1_0_0"});OpenLayers.Format.WFST.v1_0_0=OpenLayers.Class(OpenLayers.Format.Filter.v1_0_0,OpenLayers.Format.WFST.v1,{version:"1.0.0",srsNameInQuery:!1,schemaLocations:{wfs:"http://schemas.opengis.net/wfs/1.0.0/WFS-transaction.xsd"},initialize:function(a){OpenLayers.Format.Filter.v1_0_0.prototype.initialize.apply(this,[a]);OpenLayers.Format.WFST.v1.prototype.initialize.apply(this,[a])},readNode:function(a,b){return OpenLayers.Format.GML.v2.prototype.readNode.apply(this,[a,b])},readers:{wfs:OpenLayers.Util.applyDefaults({WFS_TransactionResponse:function(a, b){b.insertIds=[];b.success=!1;this.readChildNodes(a,b)},InsertResult:function(a,b){var c={fids:[]};this.readChildNodes(a,c);b.insertIds.push(c.fids[0])},TransactionResult:function(a,b){this.readChildNodes(a,b)},Status:function(a,b){this.readChildNodes(a,b)},SUCCESS:function(a,b){b.success=!0}},OpenLayers.Format.WFST.v1.prototype.readers.wfs),gml:OpenLayers.Format.GML.v2.prototype.readers.gml,feature:OpenLayers.Format.GML.v2.prototype.readers.feature,ogc:OpenLayers.Format.Filter.v1_0_0.prototype.readers.ogc}, writers:{wfs:OpenLayers.Util.applyDefaults({Query:function(a){var a=OpenLayers.Util.extend({featureNS:this.featureNS,featurePrefix:this.featurePrefix,featureType:this.featureType,srsName:this.srsName,srsNameInQuery:this.srsNameInQuery},a),b=a.featurePrefix,c=this.createElementNSPlus("wfs:Query",{attributes:{typeName:(b?b+":":"")+a.featureType}});a.srsNameInQuery&&a.srsName&&c.setAttribute("srsName",a.srsName);a.featureNS&&c.setAttribute("xmlns:"+b,a.featureNS);if(a.propertyNames)for(var b=0,d=a.propertyNames.length;b< d;b++)this.writeNode("ogc:PropertyName",{property:a.propertyNames[b]},c);a.filter&&(this.setFilterProperty(a.filter),this.writeNode("ogc:Filter",a.filter,c));return c}},OpenLayers.Format.WFST.v1.prototype.writers.wfs),gml:OpenLayers.Format.GML.v2.prototype.writers.gml,feature:OpenLayers.Format.GML.v2.prototype.writers.feature,ogc:OpenLayers.Format.Filter.v1_0_0.prototype.writers.ogc},CLASS_NAME:"OpenLayers.Format.WFST.v1_0_0"});OpenLayers.ElementsIndexer=OpenLayers.Class({maxZIndex:null,order:null,indices:null,compare:null,initialize:function(a){this.compare=a?OpenLayers.ElementsIndexer.IndexingMethods.Z_ORDER_Y_ORDER:OpenLayers.ElementsIndexer.IndexingMethods.Z_ORDER_DRAWING_ORDER;this.clear()},insert:function(a){this.exists(a)&&this.remove(a);var b=a.id;this.determineZIndex(a);for(var c=-1,d=this.order.length,e;1<d-c;)e=parseInt((c+d)/2),0<this.compare(this,a,OpenLayers.Util.getElement(this.order[e]))?c=e:d=e;this.order.splice(d, 0,b);this.indices[b]=this.getZIndex(a);return this.getNextElement(d)},remove:function(a){var a=a.id,b=OpenLayers.Util.indexOf(this.order,a);0<=b&&(this.order.splice(b,1),delete this.indices[a],this.maxZIndex=0<this.order.length?this.indices[this.order[this.order.length-1]]:0)},clear:function(){this.order=[];this.indices={};this.maxZIndex=0},exists:function(a){return null!=this.indices[a.id]},getZIndex:function(a){return a._style.graphicZIndex},determineZIndex:function(a){var b=a._style.graphicZIndex; null==b?(b=this.maxZIndex,a._style.graphicZIndex=b):b>this.maxZIndex&&(this.maxZIndex=b)},getNextElement:function(a){a+=1;if(a<this.order.length){var b=OpenLayers.Util.getElement(this.order[a]);void 0==b&&(b=this.getNextElement(a));return b}return null},CLASS_NAME:"OpenLayers.ElementsIndexer"}); OpenLayers.ElementsIndexer.IndexingMethods={Z_ORDER:function(a,b,c){var b=a.getZIndex(b),d=0;c&&(a=a.getZIndex(c),d=b-a);return d},Z_ORDER_DRAWING_ORDER:function(a,b,c){a=OpenLayers.ElementsIndexer.IndexingMethods.Z_ORDER(a,b,c);c&&0==a&&(a=1);return a},Z_ORDER_Y_ORDER:function(a,b,c){a=OpenLayers.ElementsIndexer.IndexingMethods.Z_ORDER(a,b,c);c&&0===a&&(b=c._boundsBottom-b._boundsBottom,a=0===b?1:b);return a}}; OpenLayers.Renderer.Elements=OpenLayers.Class(OpenLayers.Renderer,{rendererRoot:null,root:null,vectorRoot:null,textRoot:null,xmlns:null,xOffset:0,indexer:null,BACKGROUND_ID_SUFFIX:"_background",LABEL_ID_SUFFIX:"_label",LABEL_OUTLINE_SUFFIX:"_outline",initialize:function(a,b){OpenLayers.Renderer.prototype.initialize.apply(this,arguments);this.rendererRoot=this.createRenderRoot();this.root=this.createRoot("_root");this.vectorRoot=this.createRoot("_vroot");this.textRoot=this.createRoot("_troot");this.root.appendChild(this.vectorRoot); this.root.appendChild(this.textRoot);this.rendererRoot.appendChild(this.root);this.container.appendChild(this.rendererRoot);if(b&&(b.zIndexing||b.yOrdering))this.indexer=new OpenLayers.ElementsIndexer(b.yOrdering)},destroy:function(){this.clear();this.xmlns=this.root=this.rendererRoot=null;OpenLayers.Renderer.prototype.destroy.apply(this,arguments)},clear:function(){var a,b=this.vectorRoot;if(b)for(;a=b.firstChild;)b.removeChild(a);if(b=this.textRoot)for(;a=b.firstChild;)b.removeChild(a);this.indexer&& this.indexer.clear()},setExtent:function(a,b){var c=OpenLayers.Renderer.prototype.setExtent.apply(this,arguments),d=this.getResolution();if(this.map.baseLayer&&this.map.baseLayer.wrapDateLine){var e,f=a.getWidth()/this.map.getExtent().getWidth(),a=a.scale(1/f),f=this.map.getMaxExtent();f.right>a.left&&f.right<a.right?e=!0:f.left>a.left&&f.left<a.right&&(e=!1);if(e!==this.rightOfDateLine||b)c=!1,this.xOffset=!0===e?f.getWidth()/d:0;this.rightOfDateLine=e}return c},getNodeType:function(){},drawGeometry:function(a, b,c){var d=a.CLASS_NAME,e=!0;if("OpenLayers.Geometry.Collection"==d||"OpenLayers.Geometry.MultiPoint"==d||"OpenLayers.Geometry.MultiLineString"==d||"OpenLayers.Geometry.MultiPolygon"==d){for(var d=0,f=a.components.length;d<f;d++)e=this.drawGeometry(a.components[d],b,c)&&e;return e}d=e=!1;"none"!=b.display&&(b.backgroundGraphic?this.redrawBackgroundNode(a.id,a,b,c):d=!0,e=this.redrawNode(a.id,a,b,c));if(!1==e&&(b=document.getElementById(a.id)))b._style.backgroundGraphic&&(d=!0),b.parentNode.removeChild(b); d&&(b=document.getElementById(a.id+this.BACKGROUND_ID_SUFFIX))&&b.parentNode.removeChild(b);return e},redrawNode:function(a,b,c,d){c=this.applyDefaultSymbolizer(c);a=this.nodeFactory(a,this.getNodeType(b,c));a._featureId=d;a._boundsBottom=b.getBounds().bottom;a._geometryClass=b.CLASS_NAME;a._style=c;b=this.drawGeometryNode(a,b,c);if(!1===b)return!1;a=b.node;this.indexer?(c=this.indexer.insert(a))?this.vectorRoot.insertBefore(a,c):this.vectorRoot.appendChild(a):a.parentNode!==this.vectorRoot&&this.vectorRoot.appendChild(a); this.postDraw(a);return b.complete},redrawBackgroundNode:function(a,b,c){c=OpenLayers.Util.extend({},c);c.externalGraphic=c.backgroundGraphic;c.graphicXOffset=c.backgroundXOffset;c.graphicYOffset=c.backgroundYOffset;c.graphicZIndex=c.backgroundGraphicZIndex;c.graphicWidth=c.backgroundWidth||c.graphicWidth;c.graphicHeight=c.backgroundHeight||c.graphicHeight;c.backgroundGraphic=null;c.backgroundXOffset=null;c.backgroundYOffset=null;c.backgroundGraphicZIndex=null;return this.redrawNode(a+this.BACKGROUND_ID_SUFFIX, b,c,null)},drawGeometryNode:function(a,b,c){var c=c||a._style,d={isFilled:void 0===c.fill?!0:c.fill,isStroked:void 0===c.stroke?!!c.strokeWidth:c.stroke},e;switch(b.CLASS_NAME){case "OpenLayers.Geometry.Point":!1===c.graphic&&(d.isFilled=!1,d.isStroked=!1);e=this.drawPoint(a,b);break;case "OpenLayers.Geometry.LineString":d.isFilled=!1;e=this.drawLineString(a,b);break;case "OpenLayers.Geometry.LinearRing":e=this.drawLinearRing(a,b);break;case "OpenLayers.Geometry.Polygon":e=this.drawPolygon(a,b);break; case "OpenLayers.Geometry.Rectangle":e=this.drawRectangle(a,b)}a._options=d;return!1!=e?{node:this.setStyle(a,c,d,b),complete:e}:!1},postDraw:function(){},drawPoint:function(){},drawLineString:function(){},drawLinearRing:function(){},drawPolygon:function(){},drawRectangle:function(){},drawCircle:function(){},removeText:function(a){var b=document.getElementById(a+this.LABEL_ID_SUFFIX);b&&this.textRoot.removeChild(b);(a=document.getElementById(a+this.LABEL_OUTLINE_SUFFIX))&&this.textRoot.removeChild(a)}, getFeatureIdFromEvent:function(a){var b=a.target,c=b&&b.correspondingUseElement;return(c?c:b||a.srcElement)._featureId},eraseGeometry:function(a,b){if("OpenLayers.Geometry.MultiPoint"==a.CLASS_NAME||"OpenLayers.Geometry.MultiLineString"==a.CLASS_NAME||"OpenLayers.Geometry.MultiPolygon"==a.CLASS_NAME||"OpenLayers.Geometry.Collection"==a.CLASS_NAME)for(var c=0,d=a.components.length;c<d;c++)this.eraseGeometry(a.components[c],b);else if((c=OpenLayers.Util.getElement(a.id))&&c.parentNode)if(c.geometry&& (c.geometry.destroy(),c.geometry=null),c.parentNode.removeChild(c),this.indexer&&this.indexer.remove(c),c._style.backgroundGraphic)(c=OpenLayers.Util.getElement(a.id+this.BACKGROUND_ID_SUFFIX))&&c.parentNode&&c.parentNode.removeChild(c)},nodeFactory:function(a,b){var c=OpenLayers.Util.getElement(a);c?this.nodeTypeCompare(c,b)||(c.parentNode.removeChild(c),c=this.nodeFactory(a,b)):c=this.createNode(b,a);return c},nodeTypeCompare:function(){},createNode:function(){},moveRoot:function(a){var b=this.root; a.root.parentNode==this.rendererRoot&&(b=a.root);b.parentNode.removeChild(b);a.rendererRoot.appendChild(b)},getRenderLayerId:function(){return this.root.parentNode.parentNode.id},isComplexSymbol:function(a){return"circle"!=a&&!!a},CLASS_NAME:"OpenLayers.Renderer.Elements"});OpenLayers.Control.ArgParser=OpenLayers.Class(OpenLayers.Control,{center:null,zoom:null,layers:null,displayProjection:null,getParameters:function(a){var a=a||window.location.href,b=OpenLayers.Util.getParameters(a),c=a.indexOf("#");0<c&&(a="?"+a.substring(c+1,a.length),OpenLayers.Util.extend(b,OpenLayers.Util.getParameters(a)));return b},setMap:function(a){OpenLayers.Control.prototype.setMap.apply(this,arguments);for(var b=0,c=this.map.controls.length;b<c;b++){var d=this.map.controls[b];if(d!=this&& "OpenLayers.Control.ArgParser"==d.CLASS_NAME){d.displayProjection!=this.displayProjection&&(this.displayProjection=d.displayProjection);break}}if(b==this.map.controls.length&&(b=this.getParameters(),b.layers&&(this.layers=b.layers,this.map.events.register("addlayer",this,this.configureLayers),this.configureLayers()),b.lat&&b.lon))this.center=new OpenLayers.LonLat(parseFloat(b.lon),parseFloat(b.lat)),b.zoom&&(this.zoom=parseFloat(b.zoom)),this.map.events.register("changebaselayer",this,this.setCenter), this.setCenter()},setCenter:function(){this.map.baseLayer&&(this.map.events.unregister("changebaselayer",this,this.setCenter),this.displayProjection&&this.center.transform(this.displayProjection,this.map.getProjectionObject()),this.map.setCenter(this.center,this.zoom))},configureLayers:function(){if(this.layers.length==this.map.layers.length){this.map.events.unregister("addlayer",this,this.configureLayers);for(var a=0,b=this.layers.length;a<b;a++){var c=this.map.layers[a],d=this.layers.charAt(a); "B"==d?this.map.setBaseLayer(c):("T"==d||"F"==d)&&c.setVisibility("T"==d)}}},CLASS_NAME:"OpenLayers.Control.ArgParser"});OpenLayers.Control.Permalink=OpenLayers.Class(OpenLayers.Control,{argParserClass:OpenLayers.Control.ArgParser,element:null,anchor:!1,base:"",displayProjection:null,initialize:function(a,b,c){null!==a&&"object"==typeof a&&!OpenLayers.Util.isElement(a)?(this.base=document.location.href,OpenLayers.Control.prototype.initialize.apply(this,[a]),null!=this.element&&(this.element=OpenLayers.Util.getElement(this.element))):(OpenLayers.Control.prototype.initialize.apply(this,[c]),this.element=OpenLayers.Util.getElement(a), this.base=b||document.location.href)},destroy:function(){this.element&&this.element.parentNode==this.div&&(this.div.removeChild(this.element),this.element=null);this.map&&this.map.events.unregister("moveend",this,this.updateLink);OpenLayers.Control.prototype.destroy.apply(this,arguments)},setMap:function(a){OpenLayers.Control.prototype.setMap.apply(this,arguments);for(var b=0,c=this.map.controls.length;b<c;b++){var d=this.map.controls[b];if(d.CLASS_NAME==this.argParserClass.CLASS_NAME){d.displayProjection!= this.displayProjection&&(this.displayProjection=d.displayProjection);break}}b==this.map.controls.length&&this.map.addControl(new this.argParserClass({displayProjection:this.displayProjection}))},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);!this.element&&!this.anchor&&(this.element=document.createElement("a"),this.element.innerHTML=OpenLayers.i18n("Permalink"),this.element.href="",this.div.appendChild(this.element));this.map.events.on({moveend:this.updateLink,changelayer:this.updateLink, changebaselayer:this.updateLink,scope:this});this.updateLink();return this.div},updateLink:function(){var a=this.anchor?"#":"?",b=this.base;-1!=b.indexOf(a)&&(b=b.substring(0,b.indexOf(a)));b+=a+OpenLayers.Util.getParameterString(this.createParams());this.anchor&&!this.element?window.location.href=b:this.element.href=b},createParams:function(a,b,c){var a=a||this.map.getCenter(),d=OpenLayers.Util.getParameters(this.base);if(a){d.zoom=b||this.map.getZoom();b=a.lat;a=a.lon;this.displayProjection&&(b= OpenLayers.Projection.transform({x:a,y:b},this.map.getProjectionObject(),this.displayProjection),a=b.x,b=b.y);d.lat=Math.round(1E5*b)/1E5;d.lon=Math.round(1E5*a)/1E5;c=c||this.map.layers;d.layers="";a=0;for(b=c.length;a<b;a++){var e=c[a];d.layers=e.isBaseLayer?d.layers+(e==this.map.baseLayer?"B":"0"):d.layers+(e.getVisibility()?"T":"F")}}return d},CLASS_NAME:"OpenLayers.Control.Permalink"});OpenLayers.Layer.TMS=OpenLayers.Class(OpenLayers.Layer.Grid,{serviceVersion:"1.0.0",layername:null,type:null,isBaseLayer:!0,tileOrigin:null,serverResolutions:null,zoomOffset:0,initialize:function(a,b,c){var d=[];d.push(a,b,{},c);OpenLayers.Layer.Grid.prototype.initialize.apply(this,d)},clone:function(a){null==a&&(a=new OpenLayers.Layer.TMS(this.name,this.url,this.getOptions()));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a])},getURL:function(a){var a=this.adjustBounds(a),b=this.getServerResolution(), c=Math.round((a.left-this.tileOrigin.lon)/(b*this.tileSize.w)),a=Math.round((a.bottom-this.tileOrigin.lat)/(b*this.tileSize.h)),c=this.serviceVersion+"/"+this.layername+"/"+this.getServerZoom()+"/"+c+"/"+a+"."+this.type,a=this.url;OpenLayers.Util.isArray(a)&&(a=this.selectUrl(c,a));return a+c},setMap:function(a){OpenLayers.Layer.Grid.prototype.setMap.apply(this,arguments);this.tileOrigin||(this.tileOrigin=new OpenLayers.LonLat(this.map.maxExtent.left,this.map.maxExtent.bottom))},CLASS_NAME:"OpenLayers.Layer.TMS"});OpenLayers.Strategy.Fixed=OpenLayers.Class(OpenLayers.Strategy,{preload:!1,activate:function(){if(OpenLayers.Strategy.prototype.activate.apply(this,arguments)){this.layer.events.on({refresh:this.load,scope:this});if(!0==this.layer.visibility||this.preload)this.load();else this.layer.events.on({visibilitychanged:this.load,scope:this});return!0}return!1},deactivate:function(){var a=OpenLayers.Strategy.prototype.deactivate.call(this);a&&this.layer.events.un({refresh:this.load,visibilitychanged:this.load, scope:this});return a},load:function(a){var b=this.layer;b.events.triggerEvent("loadstart");b.protocol.read(OpenLayers.Util.applyDefaults({callback:OpenLayers.Function.bind(this.merge,this,b.map.getProjectionObject()),filter:b.filter},a));b.events.un({visibilitychanged:this.load,scope:this})},merge:function(a,b){var c=this.layer;c.destroyFeatures();var d=b.features;if(d&&0<d.length){if(!a.equals(c.projection))for(var e,f=0,g=d.length;f<g;++f)(e=d[f].geometry)&&e.transform(c.projection,a);c.addFeatures(d)}c.events.triggerEvent("loadend")}, CLASS_NAME:"OpenLayers.Strategy.Fixed"});OpenLayers.Control.Zoom=OpenLayers.Class(OpenLayers.Control,{zoomInText:"+",zoomInId:"olZoomInLink",zoomOutText:"-",zoomOutId:"olZoomOutLink",draw:function(){var a=OpenLayers.Control.prototype.draw.apply(this),b=this.getOrCreateLinks(a),c=b.zoomIn,b=b.zoomOut,d=this.map.events;b.parentNode!==a&&(d=this.events,d.attachToElement(b.parentNode));d.register("buttonclick",this,this.onZoomClick);this.zoomInLink=c;this.zoomOutLink=b;return a},getOrCreateLinks:function(a){var b=document.getElementById(this.zoomInId), c=document.getElementById(this.zoomOutId);b||(b=document.createElement("a"),b.href="#zoomIn",b.appendChild(document.createTextNode(this.zoomInText)),b.className="olControlZoomIn",a.appendChild(b));OpenLayers.Element.addClass(b,"olButton");c||(c=document.createElement("a"),c.href="#zoomOut",c.appendChild(document.createTextNode(this.zoomOutText)),c.className="olControlZoomOut",a.appendChild(c));OpenLayers.Element.addClass(c,"olButton");return{zoomIn:b,zoomOut:c}},onZoomClick:function(a){a=a.buttonElement; a===this.zoomInLink?this.map.zoomIn():a===this.zoomOutLink&&this.map.zoomOut()},destroy:function(){this.map&&this.map.events.unregister("buttonclick",this,this.onZoomClick);delete this.zoomInLink;delete this.zoomOutLink;OpenLayers.Control.prototype.destroy.apply(this)},CLASS_NAME:"OpenLayers.Control.Zoom"});OpenLayers.Layer.PointTrack=OpenLayers.Class(OpenLayers.Layer.Vector,{dataFrom:null,styleFrom:null,addNodes:function(a,b){if(2>a.length)throw Error("At least two point features have to be added to create a line from");for(var c=Array(a.length-1),d,e,f,g=0,h=a.length;g<h;g++){d=a[g];if(f=d.geometry){if("OpenLayers.Geometry.Point"!=f.CLASS_NAME)throw new TypeError("Only features with point geometries are supported.");}else f=d.lonlat,f=new OpenLayers.Geometry.Point(f.lon,f.lat);if(0<g){d=null!=this.dataFrom? a[g+this.dataFrom].data||a[g+this.dataFrom].attributes:null;var i=null!=this.styleFrom?a[g+this.styleFrom].style:null;e=new OpenLayers.Geometry.LineString([e,f]);c[g-1]=new OpenLayers.Feature.Vector(e,d,i)}e=f}this.addFeatures(c,b)},CLASS_NAME:"OpenLayers.Layer.PointTrack"});OpenLayers.Layer.PointTrack.SOURCE_NODE=-1;OpenLayers.Layer.PointTrack.TARGET_NODE=0;OpenLayers.Layer.PointTrack.dataFrom={SOURCE_NODE:-1,TARGET_NODE:0};OpenLayers.Protocol.WFS=function(a){var a=OpenLayers.Util.applyDefaults(a,OpenLayers.Protocol.WFS.DEFAULTS),b=OpenLayers.Protocol.WFS["v"+a.version.replace(/\./g,"_")];if(!b)throw"Unsupported WFS version: "+a.version;return new b(a)}; OpenLayers.Protocol.WFS.fromWMSLayer=function(a,b){var c,d;c=a.params.LAYERS;c=(OpenLayers.Util.isArray(c)?c[0]:c).split(":");1<c.length&&(d=c[0]);c=c.pop();d={url:a.url,featureType:c,featurePrefix:d,srsName:a.projection&&a.projection.getCode()||a.map&&a.map.getProjectionObject().getCode(),version:"1.1.0"};return new OpenLayers.Protocol.WFS(OpenLayers.Util.applyDefaults(b,d))};OpenLayers.Protocol.WFS.DEFAULTS={version:"1.0.0"};OpenLayers.Layer.Markers=OpenLayers.Class(OpenLayers.Layer,{isBaseLayer:!1,markers:null,drawn:!1,initialize:function(a,b){OpenLayers.Layer.prototype.initialize.apply(this,arguments);this.markers=[]},destroy:function(){this.clearMarkers();this.markers=null;OpenLayers.Layer.prototype.destroy.apply(this,arguments)},setOpacity:function(a){if(a!=this.opacity){this.opacity=a;for(var a=0,b=this.markers.length;a<b;a++)this.markers[a].setOpacity(this.opacity)}},moveTo:function(a,b,c){OpenLayers.Layer.prototype.moveTo.apply(this, arguments);if(b||!this.drawn){for(var d=0,e=this.markers.length;d<e;d++)this.drawMarker(this.markers[d]);this.drawn=!0}},addMarker:function(a){this.markers.push(a);1>this.opacity&&a.setOpacity(this.opacity);this.map&&this.map.getExtent()&&(a.map=this.map,this.drawMarker(a))},removeMarker:function(a){this.markers&&this.markers.length&&(OpenLayers.Util.removeItem(this.markers,a),a.erase())},clearMarkers:function(){if(null!=this.markers)for(;0<this.markers.length;)this.removeMarker(this.markers[0])}, drawMarker:function(a){var b=this.map.getLayerPxFromLonLat(a.lonlat);null==b?a.display(!1):a.isDrawn()?a.icon&&a.icon.moveTo(b):this.div.appendChild(a.draw(b))},getDataExtent:function(){var a=null;if(this.markers&&0<this.markers.length)for(var a=new OpenLayers.Bounds,b=0,c=this.markers.length;b<c;b++)a.extend(this.markers[b].lonlat);return a},CLASS_NAME:"OpenLayers.Layer.Markers"});OpenLayers.Control.Pan=OpenLayers.Class(OpenLayers.Control,{slideFactor:50,slideRatio:null,direction:null,type:OpenLayers.Control.TYPE_BUTTON,initialize:function(a,b){this.direction=a;this.CLASS_NAME+=this.direction;OpenLayers.Control.prototype.initialize.apply(this,[b])},trigger:function(){var a=OpenLayers.Function.bind(function(a){return this.slideRatio?this.map.getSize()[a]*this.slideRatio:this.slideFactor},this);switch(this.direction){case OpenLayers.Control.Pan.NORTH:this.map.pan(0,-a("h")); break;case OpenLayers.Control.Pan.SOUTH:this.map.pan(0,a("h"));break;case OpenLayers.Control.Pan.WEST:this.map.pan(-a("w"),0);break;case OpenLayers.Control.Pan.EAST:this.map.pan(a("w"),0)}},CLASS_NAME:"OpenLayers.Control.Pan"});OpenLayers.Control.Pan.NORTH="North";OpenLayers.Control.Pan.SOUTH="South";OpenLayers.Control.Pan.EAST="East";OpenLayers.Control.Pan.WEST="West";OpenLayers.Format.CSWGetDomain=function(a){var a=OpenLayers.Util.applyDefaults(a,OpenLayers.Format.CSWGetDomain.DEFAULTS),b=OpenLayers.Format.CSWGetDomain["v"+a.version.replace(/\./g,"_")];if(!b)throw"Unsupported CSWGetDomain version: "+a.version;return new b(a)};OpenLayers.Format.CSWGetDomain.DEFAULTS={version:"2.0.2"};OpenLayers.Format.CSWGetDomain.v2_0_2=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance",csw:"http://www.opengis.net/cat/csw/2.0.2"},defaultPrefix:"csw",version:"2.0.2",schemaLocation:"http://www.opengis.net/cat/csw/2.0.2 http://schemas.opengis.net/csw/2.0.2/CSW-discovery.xsd",PropertyName:null,ParameterName:null,read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9== a.nodeType&&(a=a.documentElement);var b={};this.readNode(a,b);return b},readers:{csw:{GetDomainResponse:function(a,b){this.readChildNodes(a,b)},DomainValues:function(a,b){OpenLayers.Util.isArray(b.DomainValues)||(b.DomainValues=[]);for(var c=a.attributes,d={},e=0,f=c.length;e<f;++e)d[c[e].name]=c[e].nodeValue;this.readChildNodes(a,d);b.DomainValues.push(d)},PropertyName:function(a,b){b.PropertyName=this.getChildValue(a)},ParameterName:function(a,b){b.ParameterName=this.getChildValue(a)},ListOfValues:function(a, b){OpenLayers.Util.isArray(b.ListOfValues)||(b.ListOfValues=[]);this.readChildNodes(a,b.ListOfValues)},Value:function(a,b){for(var c=a.attributes,d={},e=0,f=c.length;e<f;++e)d[c[e].name]=c[e].nodeValue;d.value=this.getChildValue(a);b.push({Value:d})},ConceptualScheme:function(a,b){b.ConceptualScheme={};this.readChildNodes(a,b.ConceptualScheme)},Name:function(a,b){b.Name=this.getChildValue(a)},Document:function(a,b){b.Document=this.getChildValue(a)},Authority:function(a,b){b.Authority=this.getChildValue(a)}, RangeOfValues:function(a,b){b.RangeOfValues={};this.readChildNodes(a,b.RangeOfValues)},MinValue:function(a,b){for(var c=a.attributes,d={},e=0,f=c.length;e<f;++e)d[c[e].name]=c[e].nodeValue;d.value=this.getChildValue(a);b.MinValue=d},MaxValue:function(a,b){for(var c=a.attributes,d={},e=0,f=c.length;e<f;++e)d[c[e].name]=c[e].nodeValue;d.value=this.getChildValue(a);b.MaxValue=d}}},write:function(a){a=this.writeNode("csw:GetDomain",a);return OpenLayers.Format.XML.prototype.write.apply(this,[a])},writers:{csw:{GetDomain:function(a){var b= this.createElementNSPlus("csw:GetDomain",{attributes:{service:"CSW",version:this.version}});if(a.PropertyName||this.PropertyName)this.writeNode("csw:PropertyName",a.PropertyName||this.PropertyName,b);else if(a.ParameterName||this.ParameterName)this.writeNode("csw:ParameterName",a.ParameterName||this.ParameterName,b);this.readChildNodes(b,a);return b},PropertyName:function(a){return this.createElementNSPlus("csw:PropertyName",{value:a})},ParameterName:function(a){return this.createElementNSPlus("csw:ParameterName", {value:a})}}},CLASS_NAME:"OpenLayers.Format.CSWGetDomain.v2_0_2"});OpenLayers.Format.ArcXML.Features=OpenLayers.Class(OpenLayers.Format.XML,{read:function(a){return(new OpenLayers.Format.ArcXML).read(a).features.feature}});OpenLayers.Control.Snapping=OpenLayers.Class(OpenLayers.Control,{DEFAULTS:{tolerance:10,node:!0,edge:!0,vertex:!0},greedy:!0,precedence:["node","vertex","edge"],resolution:null,geoToleranceCache:null,layer:null,feature:null,point:null,initialize:function(a){OpenLayers.Control.prototype.initialize.apply(this,[a]);this.options=a||{};this.options.layer&&this.setLayer(this.options.layer);a=OpenLayers.Util.extend({},this.options.defaults);this.defaults=OpenLayers.Util.applyDefaults(a,this.DEFAULTS);this.setTargets(this.options.targets); 0===this.targets.length&&this.layer&&this.addTargetLayer(this.layer);this.geoToleranceCache={}},setLayer:function(a){this.active?(this.deactivate(),this.layer=a,this.activate()):this.layer=a},setTargets:function(a){this.targets=[];if(a&&a.length)for(var b,c=0,d=a.length;c<d;++c)b=a[c],b instanceof OpenLayers.Layer.Vector?this.addTargetLayer(b):this.addTarget(b)},addTargetLayer:function(a){this.addTarget({layer:a})},addTarget:function(a){a=OpenLayers.Util.applyDefaults(a,this.defaults);a.nodeTolerance= a.nodeTolerance||a.tolerance;a.vertexTolerance=a.vertexTolerance||a.tolerance;a.edgeTolerance=a.edgeTolerance||a.tolerance;this.targets.push(a)},removeTargetLayer:function(a){for(var b,c=this.targets.length-1;0<=c;--c)b=this.targets[c],b.layer===a&&this.removeTarget(b)},removeTarget:function(a){return OpenLayers.Util.removeItem(this.targets,a)},activate:function(){var a=OpenLayers.Control.prototype.activate.call(this);if(a&&this.layer&&this.layer.events)this.layer.events.on({sketchstarted:this.onSketchModified, sketchmodified:this.onSketchModified,vertexmodified:this.onVertexModified,scope:this});return a},deactivate:function(){var a=OpenLayers.Control.prototype.deactivate.call(this);a&&this.layer&&this.layer.events&&this.layer.events.un({sketchstarted:this.onSketchModified,sketchmodified:this.onSketchModified,vertexmodified:this.onVertexModified,scope:this});this.point=this.feature=null;return a},onSketchModified:function(a){this.feature=a.feature;this.considerSnapping(a.vertex,a.vertex)},onVertexModified:function(a){this.feature= a.feature;var b=this.layer.map.getLonLatFromViewPortPx(a.pixel);this.considerSnapping(a.vertex,new OpenLayers.Geometry.Point(b.lon,b.lat))},considerSnapping:function(a,b){for(var c={rank:Number.POSITIVE_INFINITY,dist:Number.POSITIVE_INFINITY,x:null,y:null},d=!1,e,f,g=0,h=this.targets.length;g<h;++g)if(f=this.targets[g],e=this.testTarget(f,b))if(this.greedy){c=e;c.target=f;d=!0;break}else if(e.rank<c.rank||e.rank===c.rank&&e.dist<c.dist)c=e,c.target=f,d=!0;d&&(!1!==this.events.triggerEvent("beforesnap", {point:a,x:c.x,y:c.y,distance:c.dist,layer:c.target.layer,snapType:this.precedence[c.rank]})?(a.x=c.x,a.y=c.y,this.point=a,this.events.triggerEvent("snap",{point:a,snapType:this.precedence[c.rank],layer:c.target.layer,distance:c.dist})):d=!1);this.point&&!d&&(a.x=b.x,a.y=b.y,this.point=null,this.events.triggerEvent("unsnap",{point:a}))},testTarget:function(a,b){var c=this.layer.map.getResolution();if("minResolution"in a&&c<a.minResolution||"maxResolution"in a&&c>=a.maxResolution)return null;for(var c= {node:this.getGeoTolerance(a.nodeTolerance,c),vertex:this.getGeoTolerance(a.vertexTolerance,c),edge:this.getGeoTolerance(a.edgeTolerance,c)},d=Math.max(c.node,c.vertex,c.edge),e={rank:Number.POSITIVE_INFINITY,dist:Number.POSITIVE_INFINITY},f=!1,g=a.layer.features,h,i,j,k,l,m,n=this.precedence.length,o=new OpenLayers.LonLat(b.x,b.y),p=0,q=g.length;p<q;++p)if(h=g[p],h!==this.feature&&(!h._sketch&&h.state!==OpenLayers.State.DELETE&&(!a.filter||a.filter.evaluate(h)))&&h.atPoint(o,d,d))for(var r=0,s=Math.min(e.rank+ 1,n);r<s;++r)if(i=this.precedence[r],a[i])if("edge"===i){if(j=h.geometry.distanceTo(b,{details:!0}),l=j.distance,l<=c[i]&&l<e.dist){e={rank:r,dist:l,x:j.x0,y:j.y0};f=!0;break}}else{j=h.geometry.getVertices("node"===i);m=!1;for(var t=0,u=j.length;t<u;++t)if(k=j[t],l=k.distanceTo(b),l<=c[i]&&(r<e.rank||r===e.rank&&l<e.dist))e={rank:r,dist:l,x:k.x,y:k.y},m=f=!0;if(m)break}return f?e:null},getGeoTolerance:function(a,b){b!==this.resolution&&(this.resolution=b,this.geoToleranceCache={});var c=this.geoToleranceCache[a]; void 0===c&&(c=a*b,this.geoToleranceCache[a]=c);return c},destroy:function(){this.active&&this.deactivate();delete this.layer;delete this.targets;OpenLayers.Control.prototype.destroy.call(this)},CLASS_NAME:"OpenLayers.Control.Snapping"});OpenLayers.Date={toISOString:function(){if("toISOString"in Date.prototype)return function(a){return a.toISOString()};var a=function(a,c){for(var d=a+"";d.length<c;)d="0"+d;return d};return function(b){return isNaN(b.getTime())?"Invalid Date":b.getUTCFullYear()+"-"+a(b.getUTCMonth()+1,2)+"-"+a(b.getUTCDate(),2)+"T"+a(b.getUTCHours(),2)+":"+a(b.getUTCMinutes(),2)+":"+a(b.getUTCSeconds(),2)+"."+a(b.getUTCMilliseconds(),3)+"Z"}}(),parse:function(a){var b;if((a=a.match(/^(?:(\d{4})(?:-(\d{2})(?:-(\d{2}))?)?)?(?:(?:T(\d{1,2}):(\d{2}):(\d{2}(?:\.\d+)?)(Z|(?:[+-]\d{1,2}(?::(\d{2}))?)))|Z)?$/))&& (a[1]||a[7])){b=parseInt(a[1],10)||0;var c=parseInt(a[2],10)-1||0,d=parseInt(a[3],10)||1;b=new Date(Date.UTC(b,c,d));if(c=a[7]){var d=parseInt(a[4],10),e=parseInt(a[5],10),f=parseFloat(a[6]),g=f|0,f=Math.round(1E3*(f-g));b.setUTCHours(d,e,g,f);"Z"!==c&&(c=parseInt(c,10),a=parseInt(a[8],10)||0,b=new Date(b.getTime()+-1E3*(60*60*c+60*a)))}}else b=new Date("invalid");return b}};(function(){function a(){this._object=f&&!i?new f:new window.ActiveXObject("Microsoft.XMLHTTP");this._listeners=[]}function b(){return new a}function c(a){b.onreadystatechange&&b.onreadystatechange.apply(a);a.dispatchEvent({type:"readystatechange",bubbles:!1,cancelable:!1,timeStamp:new Date+0})}function d(a){try{a.responseText=a._object.responseText}catch(b){}try{var c;var d=a._object,e=d.responseXML,f=d.responseText;h&&(f&&e&&!e.documentElement&&d.getResponseHeader("Content-Type").match(/[^\/]+\/[^\+]+\+xml/))&& (e=new window.ActiveXObject("Microsoft.XMLDOM"),e.async=!1,e.validateOnParse=!1,e.loadXML(f));c=e&&(h&&0!=e.parseError||!e.documentElement||e.documentElement&&"parsererror"==e.documentElement.tagName)?null:e;a.responseXML=c}catch(g){}try{a.status=a._object.status}catch(i){}try{a.statusText=a._object.statusText}catch(r){}}function e(a){a._object.onreadystatechange=new window.Function}var f=window.XMLHttpRequest,g=!!window.controllers,h=window.document.all&&!window.opera,i=h&&window.navigator.userAgent.match(/MSIE 7.0/); b.prototype=a.prototype;g&&f.wrapped&&(b.wrapped=f.wrapped);b.UNSENT=0;b.OPENED=1;b.HEADERS_RECEIVED=2;b.LOADING=3;b.DONE=4;b.prototype.readyState=b.UNSENT;b.prototype.responseText="";b.prototype.responseXML=null;b.prototype.status=0;b.prototype.statusText="";b.prototype.priority="NORMAL";b.prototype.onreadystatechange=null;b.onreadystatechange=null;b.onopen=null;b.onsend=null;b.onabort=null;b.prototype.open=function(a,f,i,m,n){delete this._headers;arguments.length<3&&(i=true);this._async=i;var o= this,p=this.readyState,q;if(h&&i){q=function(){if(p!=b.DONE){e(o);o.abort()}};window.attachEvent("onunload",q)}b.onopen&&b.onopen.apply(this,arguments);arguments.length>4?this._object.open(a,f,i,m,n):arguments.length>3?this._object.open(a,f,i,m):this._object.open(a,f,i);this.readyState=b.OPENED;c(this);this._object.onreadystatechange=function(){if(!g||i){o.readyState=o._object.readyState;d(o);if(o._aborted)o.readyState=b.UNSENT;else{if(o.readyState==b.DONE){delete o._data;e(o);h&&i&&window.detachEvent("onunload", q)}p!=o.readyState&&c(o);p=o.readyState}}}};b.prototype.send=function(a){b.onsend&&b.onsend.apply(this,arguments);arguments.length||(a=null);if(a&&a.nodeType){a=window.XMLSerializer?(new window.XMLSerializer).serializeToString(a):a.xml;this._headers["Content-Type"]||this._object.setRequestHeader("Content-Type","application/xml")}this._data=a;a:{this._object.send(this._data);if(g&&!this._async){this.readyState=b.OPENED;for(d(this);this.readyState<b.DONE;){this.readyState++;c(this);if(this._aborted)break a}}}}; b.prototype.abort=function(){b.onabort&&b.onabort.apply(this,arguments);if(this.readyState>b.UNSENT)this._aborted=true;this._object.abort();e(this);this.readyState=b.UNSENT;delete this._data};b.prototype.getAllResponseHeaders=function(){return this._object.getAllResponseHeaders()};b.prototype.getResponseHeader=function(a){return this._object.getResponseHeader(a)};b.prototype.setRequestHeader=function(a,b){if(!this._headers)this._headers={};this._headers[a]=b;return this._object.setRequestHeader(a, b)};b.prototype.addEventListener=function(a,b,c){for(var d=0,e;e=this._listeners[d];d++)if(e[0]==a&&e[1]==b&&e[2]==c)return;this._listeners.push([a,b,c])};b.prototype.removeEventListener=function(a,b,c){for(var d=0,e;e=this._listeners[d];d++)if(e[0]==a&&e[1]==b&&e[2]==c)break;e&&this._listeners.splice(d,1)};b.prototype.dispatchEvent=function(a){a={type:a.type,target:this,currentTarget:this,eventPhase:2,bubbles:a.bubbles,cancelable:a.cancelable,timeStamp:a.timeStamp,stopPropagation:function(){},preventDefault:function(){}, initEvent:function(){}};a.type=="readystatechange"&&this.onreadystatechange&&(this.onreadystatechange.handleEvent||this.onreadystatechange).apply(this,[a]);for(var b=0,c;c=this._listeners[b];b++)c[0]==a.type&&!c[2]&&(c[1].handleEvent||c[1]).apply(this,[a])};b.prototype.toString=function(){return"[object XMLHttpRequest]"};b.toString=function(){return"[XMLHttpRequest]"};window.Function.prototype.apply||(window.Function.prototype.apply=function(a,b){b||(b=[]);a.__func=this;a.__func(b[0],b[1],b[2],b[3], b[4]);delete a.__func});OpenLayers.Request.XMLHttpRequest=b})();OpenLayers.Format.KML=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{kml:"http://www.opengis.net/kml/2.2",gx:"http://www.google.com/kml/ext/2.2"},kmlns:"http://earth.google.com/kml/2.0",placemarksDesc:"No description available",foldersName:"OpenLayers export",foldersDesc:"Exported on "+new Date,extractAttributes:!0,kvpAttributes:!1,extractStyles:!1,extractTracks:!1,trackAttributes:null,internalns:null,features:null,styles:null,styleBaseUrl:"",fetched:null,maxDepth:0,initialize:function(a){this.regExes= {trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g,kmlColor:/(\w{2})(\w{2})(\w{2})(\w{2})/,kmlIconPalette:/root:\/\/icons\/palette-(\d+)(\.\w+)/,straightBracket:/\$\[(.*?)\]/g};this.externalProjection=new OpenLayers.Projection("EPSG:4326");OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){this.features=[];this.styles={};this.fetched={};return this.parseData(a,{depth:0,styleBaseUrl:this.styleBaseUrl})},parseData:function(a,b){"string"==typeof a&& (a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var c=["Link","NetworkLink","Style","StyleMap","Placemark"],d=0,e=c.length;d<e;++d){var f=c[d],g=this.getElementsByTagNameNS(a,"*",f);if(0!=g.length)switch(f.toLowerCase()){case "link":case "networklink":this.parseLinks(g,b);break;case "style":this.extractStyles&&this.parseStyles(g,b);break;case "stylemap":this.extractStyles&&this.parseStyleMaps(g,b);break;case "placemark":this.parseFeatures(g,b)}}return this.features},parseLinks:function(a, b){if(b.depth>=this.maxDepth)return!1;var c=OpenLayers.Util.extend({},b);c.depth++;for(var d=0,e=a.length;d<e;d++){var f=this.parseProperty(a[d],"*","href");f&&!this.fetched[f]&&(this.fetched[f]=!0,(f=this.fetchLink(f))&&this.parseData(f,c))}},fetchLink:function(a){if(a=OpenLayers.Request.GET({url:a,async:!1}))return a.responseText},parseStyles:function(a,b){for(var c=0,d=a.length;c<d;c++){var e=this.parseStyle(a[c]);e&&(this.styles[(b.styleBaseUrl||"")+"#"+e.id]=e)}},parseKmlColor:function(a){var b= null;a&&(a=a.match(this.regExes.kmlColor))&&(b={color:"#"+a[4]+a[3]+a[2],opacity:parseInt(a[1],16)/255});return b},parseStyle:function(a){for(var b={},c=["LineStyle","PolyStyle","IconStyle","BalloonStyle","LabelStyle"],d,e,f=0,g=c.length;f<g;++f)if(d=c[f],e=this.getElementsByTagNameNS(a,"*",d)[0])switch(d.toLowerCase()){case "linestyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.strokeColor=d.color,b.strokeOpacity=d.opacity;(d=this.parseProperty(e,"*","width"))&&(b.strokeWidth= d);break;case "polystyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.fillOpacity=d.opacity,b.fillColor=d.color;"0"==this.parseProperty(e,"*","fill")&&(b.fillColor="none");"0"==this.parseProperty(e,"*","outline")&&(b.strokeWidth="0");break;case "iconstyle":var h=parseFloat(this.parseProperty(e,"*","scale")||1);d=32*h;var i=32*h,j=this.getElementsByTagNameNS(e,"*","Icon")[0];if(j){var k=this.parseProperty(j,"*","href");if(k){var l=this.parseProperty(j,"*","w"),m=this.parseProperty(j, "*","h");OpenLayers.String.startsWith(k,"http://maps.google.com/mapfiles/kml")&&(!l&&!m)&&(m=l=64,h/=2);l=l||m;m=m||l;l&&(d=parseInt(l)*h);m&&(i=parseInt(m)*h);if(m=k.match(this.regExes.kmlIconPalette))l=m[1],m=m[2],k=this.parseProperty(j,"*","x"),j=this.parseProperty(j,"*","y"),k="http://maps.google.com/mapfiles/kml/pal"+l+"/icon"+(8*(j?7-j/32:7)+(k?k/32:0))+m;b.graphicOpacity=1;b.externalGraphic=k}}if(e=this.getElementsByTagNameNS(e,"*","hotSpot")[0])k=parseFloat(e.getAttribute("x")),j=parseFloat(e.getAttribute("y")), l=e.getAttribute("xunits"),"pixels"==l?b.graphicXOffset=-k*h:"insetPixels"==l?b.graphicXOffset=-d+k*h:"fraction"==l&&(b.graphicXOffset=-d*k),e=e.getAttribute("yunits"),"pixels"==e?b.graphicYOffset=-i+j*h+1:"insetPixels"==e?b.graphicYOffset=-(j*h)+1:"fraction"==e&&(b.graphicYOffset=-i*(1-j)+1);b.graphicWidth=d;b.graphicHeight=i;break;case "balloonstyle":(e=OpenLayers.Util.getXmlNodeValue(e))&&(b.balloonStyle=e.replace(this.regExes.straightBracket,"${$1}"));break;case "labelstyle":if(d=this.parseProperty(e, "*","color"),d=this.parseKmlColor(d))b.fontColor=d.color,b.fontOpacity=d.opacity}!b.strokeColor&&b.fillColor&&(b.strokeColor=b.fillColor);if((a=a.getAttribute("id"))&&b)b.id=a;return b},parseStyleMaps:function(a,b){for(var c=0,d=a.length;c<d;c++)for(var e=a[c],f=this.getElementsByTagNameNS(e,"*","Pair"),e=e.getAttribute("id"),g=0,h=f.length;g<h;g++){var i=f[g],j=this.parseProperty(i,"*","key");(i=this.parseProperty(i,"*","styleUrl"))&&"normal"==j&&(this.styles[(b.styleBaseUrl||"")+"#"+e]=this.styles[(b.styleBaseUrl|| "")+i])}},parseFeatures:function(a,b){for(var c=[],d=0,e=a.length;d<e;d++){var f=a[d],g=this.parseFeature.apply(this,[f]);if(g){this.extractStyles&&(g.attributes&&g.attributes.styleUrl)&&(g.style=this.getStyle(g.attributes.styleUrl,b));if(this.extractStyles){var h=this.getElementsByTagNameNS(f,"*","Style")[0];if(h&&(h=this.parseStyle(h)))g.style=OpenLayers.Util.extend(g.style,h)}if(this.extractTracks){if((f=this.getElementsByTagNameNS(f,this.namespaces.gx,"Track"))&&0<f.length)g={features:[],feature:g}, this.readNode(f[0],g),0<g.features.length&&c.push.apply(c,g.features)}else c.push(g)}else throw"Bad Placemark: "+d;}this.features=this.features.concat(c)},readers:{kml:{when:function(a,b){b.whens.push(OpenLayers.Date.parse(this.getChildValue(a)))},_trackPointAttribute:function(a,b){var c=a.nodeName.split(":").pop();b.attributes[c].push(this.getChildValue(a))}},gx:{Track:function(a,b){var c={whens:[],points:[],angles:[]};if(this.trackAttributes){var d;c.attributes={};for(var e=0,f=this.trackAttributes.length;e< f;++e)d=this.trackAttributes[e],c.attributes[d]=[],d in this.readers.kml||(this.readers.kml[d]=this.readers.kml._trackPointAttribute)}this.readChildNodes(a,c);if(c.whens.length!==c.points.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:coord ("+c.points.length+") elements.");var g=0<c.angles.length;if(g&&c.whens.length!==c.angles.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:angles ("+c.angles.length+") elements.");for(var h, i,e=0,f=c.whens.length;e<f;++e){h=b.feature.clone();h.fid=b.feature.fid||b.feature.id;i=c.points[e];h.geometry=i;"z"in i&&(h.attributes.altitude=i.z);this.internalProjection&&this.externalProjection&&h.geometry.transform(this.externalProjection,this.internalProjection);if(this.trackAttributes){i=0;for(var j=this.trackAttributes.length;i<j;++i)h.attributes[d]=c.attributes[this.trackAttributes[i]][e]}h.attributes.when=c.whens[e];h.attributes.trackId=b.feature.id;g&&(i=c.angles[e],h.attributes.heading= parseFloat(i[0]),h.attributes.tilt=parseFloat(i[1]),h.attributes.roll=parseFloat(i[2]));b.features.push(h)}},coord:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/),d=new OpenLayers.Geometry.Point(c[0],c[1]);2<c.length&&(d.z=parseFloat(c[2]));b.points.push(d)},angles:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/);b.angles.push(c)}}},parseFeature:function(a){for(var b=["MultiGeometry","Polygon","LineString","Point"], c,d,e,f=0,g=b.length;f<g;++f)if(c=b[f],this.internalns=a.namespaceURI?a.namespaceURI:this.kmlns,d=this.getElementsByTagNameNS(a,this.internalns,c),0<d.length){if(b=this.parseGeometry[c.toLowerCase()])e=b.apply(this,[d[0]]),this.internalProjection&&this.externalProjection&&e.transform(this.externalProjection,this.internalProjection);else throw new TypeError("Unsupported geometry type: "+c);break}var h;this.extractAttributes&&(h=this.parseAttributes(a));c=new OpenLayers.Feature.Vector(e,h);a=a.getAttribute("id")|| a.getAttribute("name");null!=a&&(c.fid=a);return c},getStyle:function(a,b){var c=OpenLayers.Util.removeTail(a),d=OpenLayers.Util.extend({},b);d.depth++;d.styleBaseUrl=c;!this.styles[a]&&!OpenLayers.String.startsWith(a,"#")&&d.depth<=this.maxDepth&&!this.fetched[c]&&(c=this.fetchLink(c))&&this.parseData(c,d);return OpenLayers.Util.extend({},this.styles[a])},parseGeometry:{point:function(a){var b=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),a=[];if(0<b.length)var c=b[0].firstChild.nodeValue, c=c.replace(this.regExes.removeSpace,""),a=c.split(",");b=null;if(1<a.length)2==a.length&&(a[2]=null),b=new OpenLayers.Geometry.Point(a[0],a[1],a[2]);else throw"Bad coordinate string: "+c;return b},linestring:function(a,b){var c=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),d=null;if(0<c.length){for(var c=this.getChildValue(c[0]),c=c.replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),d=c.split(this.regExes.splitSpace),e=d.length,f=Array(e),g,h,i=0;i<e;++i)if(g= d[i].split(","),h=g.length,1<h)2==g.length&&(g[2]=null),f[i]=new OpenLayers.Geometry.Point(g[0],g[1],g[2]);else throw"Bad LineString point coordinates: "+d[i];if(e)d=b?new OpenLayers.Geometry.LinearRing(f):new OpenLayers.Geometry.LineString(f);else throw"Bad LineString coordinates: "+c;}return d},polygon:function(a){var a=this.getElementsByTagNameNS(a,this.internalns,"LinearRing"),b=a.length,c=Array(b);if(0<b)for(var d=0,e=a.length;d<e;++d)if(b=this.parseGeometry.linestring.apply(this,[a[d],!0]))c[d]= b;else throw"Bad LinearRing geometry: "+d;return new OpenLayers.Geometry.Polygon(c)},multigeometry:function(a){for(var b,c=[],d=a.childNodes,e=0,f=d.length;e<f;++e)a=d[e],1==a.nodeType&&(b=this.parseGeometry[(a.prefix?a.nodeName.split(":")[1]:a.nodeName).toLowerCase()])&&c.push(b.apply(this,[a]));return new OpenLayers.Geometry.Collection(c)}},parseAttributes:function(a){var b={},c=a.getElementsByTagName("ExtendedData");c.length&&(b=this.parseExtendedData(c[0]));for(var d,e,f,a=a.childNodes,c=0,g= a.length;c<g;++c)if(d=a[c],1==d.nodeType&&(e=d.childNodes,1<=e.length&&3>=e.length)){switch(e.length){case 1:f=e[0];break;case 2:f=e[0];e=e[1];f=3==f.nodeType||4==f.nodeType?f:e;break;default:f=e[1]}if(3==f.nodeType||4==f.nodeType)if(d=d.prefix?d.nodeName.split(":")[1]:d.nodeName,f=OpenLayers.Util.getXmlNodeValue(f))f=f.replace(this.regExes.trimSpace,""),b[d]=f}return b},parseExtendedData:function(a){var b={},c,d,e,f,g=a.getElementsByTagName("Data");c=0;for(d=g.length;c<d;c++){e=g[c];f=e.getAttribute("name"); var h={},i=e.getElementsByTagName("value");i.length&&(h.value=this.getChildValue(i[0]));this.kvpAttributes?b[f]=h.value:(e=e.getElementsByTagName("displayName"),e.length&&(h.displayName=this.getChildValue(e[0])),b[f]=h)}a=a.getElementsByTagName("SimpleData");c=0;for(d=a.length;c<d;c++)h={},e=a[c],f=e.getAttribute("name"),h.value=this.getChildValue(e),this.kvpAttributes?b[f]=h.value:(h.displayName=f,b[f]=h);return b},parseProperty:function(a,b,c){var d,a=this.getElementsByTagNameNS(a,b,c);try{d=OpenLayers.Util.getXmlNodeValue(a[0])}catch(e){d= null}return d},write:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=this.createElementNS(this.kmlns,"kml"),c=this.createFolderXML(),d=0,e=a.length;d<e;++d)c.appendChild(this.createPlacemarkXML(a[d]));b.appendChild(c);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFolderXML:function(){var a=this.createElementNS(this.kmlns,"Folder");if(this.foldersName){var b=this.createElementNS(this.kmlns,"name"),c=this.createTextNode(this.foldersName);b.appendChild(c);a.appendChild(b)}this.foldersDesc&& (b=this.createElementNS(this.kmlns,"description"),c=this.createTextNode(this.foldersDesc),b.appendChild(c),a.appendChild(b));return a},createPlacemarkXML:function(a){var b=this.createElementNS(this.kmlns,"name");b.appendChild(this.createTextNode(a.style&&a.style.label?a.style.label:a.attributes.name||a.id));var c=this.createElementNS(this.kmlns,"description");c.appendChild(this.createTextNode(a.attributes.description||this.placemarksDesc));var d=this.createElementNS(this.kmlns,"Placemark");null!= a.fid&&d.setAttribute("id",a.fid);d.appendChild(b);d.appendChild(c);b=this.buildGeometryNode(a.geometry);d.appendChild(b);a.attributes&&(a=this.buildExtendedData(a.attributes))&&d.appendChild(a);return d},buildGeometryNode:function(a){var b=a.CLASS_NAME,b=this.buildGeometry[b.substring(b.lastIndexOf(".")+1).toLowerCase()],c=null;b&&(c=b.apply(this,[a]));return c},buildGeometry:{point:function(a){var b=this.createElementNS(this.kmlns,"Point");b.appendChild(this.buildCoordinatesNode(a));return b},multipoint:function(a){return this.buildGeometry.collection.apply(this, [a])},linestring:function(a){var b=this.createElementNS(this.kmlns,"LineString");b.appendChild(this.buildCoordinatesNode(a));return b},multilinestring:function(a){return this.buildGeometry.collection.apply(this,[a])},linearring:function(a){var b=this.createElementNS(this.kmlns,"LinearRing");b.appendChild(this.buildCoordinatesNode(a));return b},polygon:function(a){for(var b=this.createElementNS(this.kmlns,"Polygon"),a=a.components,c,d,e=0,f=a.length;e<f;++e)c=0==e?"outerBoundaryIs":"innerBoundaryIs", c=this.createElementNS(this.kmlns,c),d=this.buildGeometry.linearring.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},multipolygon:function(a){return this.buildGeometry.collection.apply(this,[a])},collection:function(a){for(var b=this.createElementNS(this.kmlns,"MultiGeometry"),c,d=0,e=a.components.length;d<e;++d)(c=this.buildGeometryNode.apply(this,[a.components[d]]))&&b.appendChild(c);return b}},buildCoordinatesNode:function(a){var b=this.createElementNS(this.kmlns,"coordinates"), c;if(c=a.components){for(var d=c.length,e=Array(d),f=0;f<d;++f)a=c[f],e[f]=this.buildCoordinates(a);c=e.join(" ")}else c=this.buildCoordinates(a);c=this.createTextNode(c);b.appendChild(c);return b},buildCoordinates:function(a){this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));return a.x+","+a.y},buildExtendedData:function(a){var b=this.createElementNS(this.kmlns,"ExtendedData"),c;for(c in a)if(a[c]&&"name"!=c&&"description"!= c&&"styleUrl"!=c){var d=this.createElementNS(this.kmlns,"Data");d.setAttribute("name",c);var e=this.createElementNS(this.kmlns,"value");if("object"==typeof a[c]){if(a[c].value&&e.appendChild(this.createTextNode(a[c].value)),a[c].displayName){var f=this.createElementNS(this.kmlns,"displayName");f.appendChild(this.getXMLDoc().createCDATASection(a[c].displayName));d.appendChild(f)}}else e.appendChild(this.createTextNode(a[c]));d.appendChild(e);b.appendChild(d)}return this.isSimpleContent(b)?null:b}, CLASS_NAME:"OpenLayers.Format.KML"});OpenLayers.Popup=OpenLayers.Class({events:null,id:"",lonlat:null,div:null,contentSize:null,size:null,contentHTML:null,backgroundColor:"",opacity:"",border:"",contentDiv:null,groupDiv:null,closeDiv:null,autoSize:!1,minSize:null,maxSize:null,displayClass:"olPopup",contentDisplayClass:"olPopupContent",padding:0,disableFirefoxOverflowHack:!1,fixPadding:function(){"number"==typeof this.padding&&(this.padding=new OpenLayers.Bounds(this.padding,this.padding,this.padding,this.padding))},panMapIfOutOfView:!1, keepInMap:!1,closeOnMove:!1,map:null,initialize:function(a,b,c,d,e,f){null==a&&(a=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_"));this.id=a;this.lonlat=b;this.contentSize=null!=c?c:new OpenLayers.Size(OpenLayers.Popup.WIDTH,OpenLayers.Popup.HEIGHT);null!=d&&(this.contentHTML=d);this.backgroundColor=OpenLayers.Popup.COLOR;this.opacity=OpenLayers.Popup.OPACITY;this.border=OpenLayers.Popup.BORDER;this.div=OpenLayers.Util.createDiv(this.id,null,null,null,null,null,"hidden");this.div.className=this.displayClass; this.groupDiv=OpenLayers.Util.createDiv(this.id+"_GroupDiv",null,null,null,"relative",null,"hidden");a=this.div.id+"_contentDiv";this.contentDiv=OpenLayers.Util.createDiv(a,null,this.contentSize.clone(),null,"relative");this.contentDiv.className=this.contentDisplayClass;this.groupDiv.appendChild(this.contentDiv);this.div.appendChild(this.groupDiv);e&&this.addCloseBox(f);this.registerEvents()},destroy:function(){this.border=this.opacity=this.backgroundColor=this.contentHTML=this.size=this.lonlat=this.id= null;this.closeOnMove&&this.map&&this.map.events.unregister("movestart",this,this.hide);this.events.destroy();this.events=null;this.closeDiv&&(OpenLayers.Event.stopObservingElement(this.closeDiv),this.groupDiv.removeChild(this.closeDiv));this.closeDiv=null;this.div.removeChild(this.groupDiv);this.groupDiv=null;null!=this.map&&this.map.removePopup(this);this.panMapIfOutOfView=this.padding=this.maxSize=this.minSize=this.autoSize=this.div=this.map=null},draw:function(a){null==a&&null!=this.lonlat&&null!= this.map&&(a=this.map.getLayerPxFromLonLat(this.lonlat));this.closeOnMove&&this.map.events.register("movestart",this,this.hide);!this.disableFirefoxOverflowHack&&"firefox"==OpenLayers.BROWSER_NAME&&(this.map.events.register("movestart",this,function(){var a=document.defaultView.getComputedStyle(this.contentDiv,null).getPropertyValue("overflow");"hidden"!=a&&(this.contentDiv._oldOverflow=a,this.contentDiv.style.overflow="hidden")}),this.map.events.register("moveend",this,function(){var a=this.contentDiv._oldOverflow; a&&(this.contentDiv.style.overflow=a,this.contentDiv._oldOverflow=null)}));this.moveTo(a);!this.autoSize&&!this.size&&this.setSize(this.contentSize);this.setBackgroundColor();this.setOpacity();this.setBorder();this.setContentHTML();this.panMapIfOutOfView&&this.panIntoView();return this.div},updatePosition:function(){if(this.lonlat&&this.map){var a=this.map.getLayerPxFromLonLat(this.lonlat);a&&this.moveTo(a)}},moveTo:function(a){null!=a&&null!=this.div&&(this.div.style.left=a.x+"px",this.div.style.top= a.y+"px")},visible:function(){return OpenLayers.Element.visible(this.div)},toggle:function(){this.visible()?this.hide():this.show()},show:function(){this.div.style.display="";this.panMapIfOutOfView&&this.panIntoView()},hide:function(){this.div.style.display="none"},setSize:function(a){this.size=a.clone();var b=this.getContentDivPadding(),c=b.left+b.right,d=b.top+b.bottom;this.fixPadding();c+=this.padding.left+this.padding.right;d+=this.padding.top+this.padding.bottom;if(this.closeDiv)var e=parseInt(this.closeDiv.style.width), c=c+(e+b.right);this.size.w+=c;this.size.h+=d;"msie"==OpenLayers.BROWSER_NAME&&(this.contentSize.w+=b.left+b.right,this.contentSize.h+=b.bottom+b.top);null!=this.div&&(this.div.style.width=this.size.w+"px",this.div.style.height=this.size.h+"px");null!=this.contentDiv&&(this.contentDiv.style.width=a.w+"px",this.contentDiv.style.height=a.h+"px")},updateSize:function(){var a="<div class='"+this.contentDisplayClass+"'>"+this.contentDiv.innerHTML+"</div>",b=this.map?this.map.div:document.body,c=OpenLayers.Util.getRenderedDimensions(a, null,{displayClass:this.displayClass,containerElement:b}),d=this.getSafeContentSize(c),e=null;d.equals(c)?e=c:(c={w:d.w<c.w?d.w:null,h:d.h<c.h?d.h:null},c.w&&c.h?e=d:(a=OpenLayers.Util.getRenderedDimensions(a,c,{displayClass:this.contentDisplayClass,containerElement:b}),"hidden"!=OpenLayers.Element.getStyle(this.contentDiv,"overflow")&&a.equals(d)&&(d=OpenLayers.Util.getScrollbarWidth(),c.w?a.h+=d:a.w+=d),e=this.getSafeContentSize(a)));this.setSize(e)},setBackgroundColor:function(a){void 0!=a&&(this.backgroundColor= a);null!=this.div&&(this.div.style.backgroundColor=this.backgroundColor)},setOpacity:function(a){void 0!=a&&(this.opacity=a);null!=this.div&&(this.div.style.opacity=this.opacity,this.div.style.filter="alpha(opacity="+100*this.opacity+")")},setBorder:function(a){void 0!=a&&(this.border=a);null!=this.div&&(this.div.style.border=this.border)},setContentHTML:function(a){null!=a&&(this.contentHTML=a);null!=this.contentDiv&&(null!=this.contentHTML&&this.contentHTML!=this.contentDiv.innerHTML)&&(this.contentDiv.innerHTML= this.contentHTML,this.autoSize&&(this.registerImageListeners(),this.updateSize()))},registerImageListeners:function(){for(var a=function(){null!==this.popup.id&&(this.popup.updateSize(),this.popup.visible()&&this.popup.panMapIfOutOfView&&this.popup.panIntoView(),OpenLayers.Event.stopObserving(this.img,"load",this.img._onImageLoad))},b=this.contentDiv.getElementsByTagName("img"),c=0,d=b.length;c<d;c++){var e=b[c];if(0==e.width||0==e.height)e._onImgLoad=OpenLayers.Function.bind(a,{popup:this,img:e}), OpenLayers.Event.observe(e,"load",e._onImgLoad)}},getSafeContentSize:function(a){var a=a.clone(),b=this.getContentDivPadding(),c=b.left+b.right,d=b.top+b.bottom;this.fixPadding();c+=this.padding.left+this.padding.right;d+=this.padding.top+this.padding.bottom;if(this.closeDiv)var e=parseInt(this.closeDiv.style.width),c=c+(e+b.right);this.minSize&&(a.w=Math.max(a.w,this.minSize.w-c),a.h=Math.max(a.h,this.minSize.h-d));this.maxSize&&(a.w=Math.min(a.w,this.maxSize.w-c),a.h=Math.min(a.h,this.maxSize.h- d));if(this.map&&this.map.size){e=b=0;if(this.keepInMap&&!this.panMapIfOutOfView)switch(e=this.map.getPixelFromLonLat(this.lonlat),this.relativePosition){case "tr":b=e.x;e=this.map.size.h-e.y;break;case "tl":b=this.map.size.w-e.x;e=this.map.size.h-e.y;break;case "bl":b=this.map.size.w-e.x;e=e.y;break;case "br":b=e.x;e=e.y;break;default:b=e.x,e=this.map.size.h-e.y}d=this.map.size.h-this.map.paddingForPopups.top-this.map.paddingForPopups.bottom-d-e;a.w=Math.min(a.w,this.map.size.w-this.map.paddingForPopups.left- this.map.paddingForPopups.right-c-b);a.h=Math.min(a.h,d)}return a},getContentDivPadding:function(){var a=this._contentDivPadding;if(!a&&(null==this.div.parentNode&&(this.div.style.display="none",document.body.appendChild(this.div)),this._contentDivPadding=a=new OpenLayers.Bounds(OpenLayers.Element.getStyle(this.contentDiv,"padding-left"),OpenLayers.Element.getStyle(this.contentDiv,"padding-bottom"),OpenLayers.Element.getStyle(this.contentDiv,"padding-right"),OpenLayers.Element.getStyle(this.contentDiv, "padding-top")),this.div.parentNode==document.body))document.body.removeChild(this.div),this.div.style.display="";return a},addCloseBox:function(a){this.closeDiv=OpenLayers.Util.createDiv(this.id+"_close",null,{w:17,h:17});this.closeDiv.className="olPopupCloseBox";var b=this.getContentDivPadding();this.closeDiv.style.right=b.right+"px";this.closeDiv.style.top=b.top+"px";this.groupDiv.appendChild(this.closeDiv);a=a||function(a){this.hide();OpenLayers.Event.stop(a)};OpenLayers.Event.observe(this.closeDiv, "touchend",OpenLayers.Function.bindAsEventListener(a,this));OpenLayers.Event.observe(this.closeDiv,"click",OpenLayers.Function.bindAsEventListener(a,this))},panIntoView:function(){var a=this.map.getSize(),b=this.map.getViewPortPxFromLayerPx(new OpenLayers.Pixel(parseInt(this.div.style.left),parseInt(this.div.style.top))),c=b.clone();b.x<this.map.paddingForPopups.left?c.x=this.map.paddingForPopups.left:b.x+this.size.w>a.w-this.map.paddingForPopups.right&&(c.x=a.w-this.map.paddingForPopups.right-this.size.w); b.y<this.map.paddingForPopups.top?c.y=this.map.paddingForPopups.top:b.y+this.size.h>a.h-this.map.paddingForPopups.bottom&&(c.y=a.h-this.map.paddingForPopups.bottom-this.size.h);this.map.pan(b.x-c.x,b.y-c.y)},registerEvents:function(){this.events=new OpenLayers.Events(this,this.div,null,!0);this.events.on({mousedown:this.onmousedown,mousemove:this.onmousemove,mouseup:this.onmouseup,click:this.onclick,mouseout:this.onmouseout,dblclick:this.ondblclick,touchstart:function(a){OpenLayers.Event.stop(a,!0)}, scope:this})},onmousedown:function(a){this.mousedown=!0;OpenLayers.Event.stop(a,!0)},onmousemove:function(a){this.mousedown&&OpenLayers.Event.stop(a,!0)},onmouseup:function(a){this.mousedown&&(this.mousedown=!1,OpenLayers.Event.stop(a,!0))},onclick:function(a){OpenLayers.Event.stop(a,!0)},onmouseout:function(){this.mousedown=!1},ondblclick:function(a){OpenLayers.Event.stop(a,!0)},CLASS_NAME:"OpenLayers.Popup"});OpenLayers.Popup.WIDTH=200;OpenLayers.Popup.HEIGHT=200;OpenLayers.Popup.COLOR="white"; OpenLayers.Popup.OPACITY=1;OpenLayers.Popup.BORDER="0px";OpenLayers.Popup.Anchored=OpenLayers.Class(OpenLayers.Popup,{relativePosition:null,keepInMap:!0,anchor:null,initialize:function(a,b,c,d,e,f,g){OpenLayers.Popup.prototype.initialize.apply(this,[a,b,c,d,f,g]);this.anchor=null!=e?e:{size:new OpenLayers.Size(0,0),offset:new OpenLayers.Pixel(0,0)}},destroy:function(){this.relativePosition=this.anchor=null;OpenLayers.Popup.prototype.destroy.apply(this,arguments)},show:function(){this.updatePosition();OpenLayers.Popup.prototype.show.apply(this,arguments)}, moveTo:function(a){var b=this.relativePosition;this.relativePosition=this.calculateRelativePosition(a);a=this.calculateNewPx(a);OpenLayers.Popup.prototype.moveTo.apply(this,Array(a));this.relativePosition!=b&&this.updateRelativePosition()},setSize:function(a){OpenLayers.Popup.prototype.setSize.apply(this,arguments);this.lonlat&&this.map&&this.moveTo(this.map.getLayerPxFromLonLat(this.lonlat))},calculateRelativePosition:function(a){a=this.map.getLonLatFromLayerPx(a);a=this.map.getExtent().determineQuadrant(a); return OpenLayers.Bounds.oppositeQuadrant(a)},updateRelativePosition:function(){},calculateNewPx:function(a){var a=a.offset(this.anchor.offset),b=this.size||this.contentSize,c="t"==this.relativePosition.charAt(0);a.y+=c?-b.h:this.anchor.size.h;c="l"==this.relativePosition.charAt(1);a.x+=c?-b.w:this.anchor.size.w;return a},CLASS_NAME:"OpenLayers.Popup.Anchored"});/* Apache 2 Contains portions of Rico <http://openrico.org/> Copyright 2005 Sabre Airline Solutions Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ OpenLayers.Console.warn("OpenLayers.Rico is deprecated");OpenLayers.Rico=OpenLayers.Rico||{}; OpenLayers.Rico.Color=OpenLayers.Class({initialize:function(a,b,c){this.rgb={r:a,g:b,b:c}},setRed:function(a){this.rgb.r=a},setGreen:function(a){this.rgb.g=a},setBlue:function(a){this.rgb.b=a},setHue:function(a){var b=this.asHSB();b.h=a;this.rgb=OpenLayers.Rico.Color.HSBtoRGB(b.h,b.s,b.b)},setSaturation:function(a){var b=this.asHSB();b.s=a;this.rgb=OpenLayers.Rico.Color.HSBtoRGB(b.h,b.s,b.b)},setBrightness:function(a){var b=this.asHSB();b.b=a;this.rgb=OpenLayers.Rico.Color.HSBtoRGB(b.h,b.s,b.b)}, darken:function(a){var b=this.asHSB();this.rgb=OpenLayers.Rico.Color.HSBtoRGB(b.h,b.s,Math.max(b.b-a,0))},brighten:function(a){var b=this.asHSB();this.rgb=OpenLayers.Rico.Color.HSBtoRGB(b.h,b.s,Math.min(b.b+a,1))},blend:function(a){this.rgb.r=Math.floor((this.rgb.r+a.rgb.r)/2);this.rgb.g=Math.floor((this.rgb.g+a.rgb.g)/2);this.rgb.b=Math.floor((this.rgb.b+a.rgb.b)/2)},isBright:function(){this.asHSB();return 0.5<this.asHSB().b},isDark:function(){return!this.isBright()},asRGB:function(){return"rgb("+ this.rgb.r+","+this.rgb.g+","+this.rgb.b+")"},asHex:function(){return"#"+this.rgb.r.toColorPart()+this.rgb.g.toColorPart()+this.rgb.b.toColorPart()},asHSB:function(){return OpenLayers.Rico.Color.RGBtoHSB(this.rgb.r,this.rgb.g,this.rgb.b)},toString:function(){return this.asHex()}}); OpenLayers.Rico.Color.createFromHex=function(a){if(4==a.length)for(var b=a,a="#",c=1;4>c;c++)a+=b.charAt(c)+b.charAt(c);0==a.indexOf("#")&&(a=a.substring(1));b=a.substring(0,2);c=a.substring(2,4);a=a.substring(4,6);return new OpenLayers.Rico.Color(parseInt(b,16),parseInt(c,16),parseInt(a,16))}; OpenLayers.Rico.Color.createColorFromBackground=function(a){var b=OpenLayers.Element.getStyle(OpenLayers.Util.getElement(a),"backgroundColor");return"transparent"==b&&a.parentNode?OpenLayers.Rico.Color.createColorFromBackground(a.parentNode):null==b?new OpenLayers.Rico.Color(255,255,255):0==b.indexOf("rgb(")?(a=b.substring(4,b.length-1).split(","),new OpenLayers.Rico.Color(parseInt(a[0]),parseInt(a[1]),parseInt(a[2]))):0==b.indexOf("#")?OpenLayers.Rico.Color.createFromHex(b):new OpenLayers.Rico.Color(255, 255,255)}; OpenLayers.Rico.Color.HSBtoRGB=function(a,b,c){var d=0,e=0,f=0;if(0==b)f=e=d=parseInt(255*c+0.5);else{var a=6*(a-Math.floor(a)),g=a-Math.floor(a),h=c*(1-b),i=c*(1-b*g),b=c*(1-b*(1-g));switch(parseInt(a)){case 0:d=255*c+0.5;e=255*b+0.5;f=255*h+0.5;break;case 1:d=255*i+0.5;e=255*c+0.5;f=255*h+0.5;break;case 2:d=255*h+0.5;e=255*c+0.5;f=255*b+0.5;break;case 3:d=255*h+0.5;e=255*i+0.5;f=255*c+0.5;break;case 4:d=255*b+0.5;e=255*h+0.5;f=255*c+0.5;break;case 5:d=255*c+0.5,e=255*h+0.5,f=255*i+0.5}}return{r:parseInt(d),g:parseInt(e), b:parseInt(f)}};OpenLayers.Rico.Color.RGBtoHSB=function(a,b,c){var d,e=a>b?a:b;c>e&&(e=c);var f=a<b?a:b;c<f&&(f=c);d=0!=e?(e-f)/e:0;if(0==d)a=0;else{var g=(e-a)/(e-f),h=(e-b)/(e-f),c=(e-c)/(e-f),a=(a==e?c-h:b==e?2+g-c:4+h-g)/6;0>a&&(a+=1)}return{h:a,s:d,b:e/255}};OpenLayers.Console.warn("OpenLayers.Rico is deprecated");OpenLayers.Rico=OpenLayers.Rico||{}; OpenLayers.Rico.Corner={round:function(a,b){a=OpenLayers.Util.getElement(a);this._setOptions(b);var c=this.options.color;"fromElement"==this.options.color&&(c=this._background(a));var d=this.options.bgColor;"fromParent"==this.options.bgColor&&(d=this._background(a.offsetParent));this._roundCornersImpl(a,c,d)},changeColor:function(a,b){a.style.backgroundColor=b;for(var c=a.parentNode.getElementsByTagName("span"),d=0;d<c.length;d++)c[d].style.backgroundColor=b},changeOpacity:function(a,b){var c="alpha(opacity="+ 100*b+")";a.style.opacity=b;a.style.filter=c;for(var d=a.parentNode.getElementsByTagName("span"),e=0;e<d.length;e++)d[e].style.opacity=b,d[e].style.filter=c},reRound:function(a,b){var c=a.parentNode.childNodes[2];a.parentNode.removeChild(a.parentNode.childNodes[0]);a.parentNode.removeChild(c);this.round(a.parentNode,b)},_roundCornersImpl:function(a,b,c){this.options.border&&this._renderBorder(a,c);this._isTopRounded()&&this._roundTopCorners(a,b,c);this._isBottomRounded()&&this._roundBottomCorners(a, b,c)},_renderBorder:function(a,b){var c="1px solid "+this._borderColor(b);a.innerHTML="<div "+("style='border-left: "+c+";"+("border-right: "+c)+"'")+">"+a.innerHTML+"</div>"},_roundTopCorners:function(a,b,c){for(var d=this._createCorner(c),e=0;e<this.options.numSlices;e++)d.appendChild(this._createCornerSlice(b,c,e,"top"));a.style.paddingTop=0;a.insertBefore(d,a.firstChild)},_roundBottomCorners:function(a,b,c){for(var d=this._createCorner(c),e=this.options.numSlices-1;0<=e;e--)d.appendChild(this._createCornerSlice(b, c,e,"bottom"));a.style.paddingBottom=0;a.appendChild(d)},_createCorner:function(a){var b=document.createElement("div");b.style.backgroundColor=this._isTransparent()?"transparent":a;return b},_createCornerSlice:function(a,b,c,d){var e=document.createElement("span"),f=e.style;f.backgroundColor=a;f.display="block";f.height="1px";f.overflow="hidden";f.fontSize="1px";a=this._borderColor(a,b);this.options.border&&0==c?(f.borderTopStyle="solid",f.borderTopWidth="1px",f.borderLeftWidth="0px",f.borderRightWidth= "0px",f.borderBottomWidth="0px",f.height="0px",f.borderColor=a):a&&(f.borderColor=a,f.borderStyle="solid",f.borderWidth="0px 1px");!this.options.compact&&c==this.options.numSlices-1&&(f.height="2px");this._setMargin(e,c,d);this._setBorder(e,c,d);return e},_setOptions:function(a){this.options={corners:"all",color:"fromElement",bgColor:"fromParent",blend:!0,border:!1,compact:!1};OpenLayers.Util.extend(this.options,a||{});this.options.numSlices=this.options.compact?2:4;this._isTransparent()&&(this.options.blend= !1)},_whichSideTop:function(){return this._hasString(this.options.corners,"all","top")||0<=this.options.corners.indexOf("tl")&&0<=this.options.corners.indexOf("tr")?"":0<=this.options.corners.indexOf("tl")?"left":0<=this.options.corners.indexOf("tr")?"right":""},_whichSideBottom:function(){return this._hasString(this.options.corners,"all","bottom")||0<=this.options.corners.indexOf("bl")&&0<=this.options.corners.indexOf("br")?"":0<=this.options.corners.indexOf("bl")?"left":0<=this.options.corners.indexOf("br")? "right":""},_borderColor:function(a,b){return"transparent"==a?b:this.options.border?this.options.border:this.options.blend?this._blend(b,a):""},_setMargin:function(a,b,c){b=this._marginSize(b);c="top"==c?this._whichSideTop():this._whichSideBottom();"left"==c?(a.style.marginLeft=b+"px",a.style.marginRight="0px"):"right"==c?(a.style.marginRight=b+"px",a.style.marginLeft="0px"):(a.style.marginLeft=b+"px",a.style.marginRight=b+"px")},_setBorder:function(a,b,c){b=this._borderSize(b);c="top"==c?this._whichSideTop(): this._whichSideBottom();"left"==c?(a.style.borderLeftWidth=b+"px",a.style.borderRightWidth="0px"):"right"==c?(a.style.borderRightWidth=b+"px",a.style.borderLeftWidth="0px"):(a.style.borderLeftWidth=b+"px",a.style.borderRightWidth=b+"px");!1!=this.options.border&&(a.style.borderLeftWidth=b+"px",a.style.borderRightWidth=b+"px")},_marginSize:function(a){if(this._isTransparent())return 0;var b=[5,3,2,1],c=[3,2,1,0],d=[2,1],e=[1,0];return this.options.compact&&this.options.blend?e[a]:this.options.compact? d[a]:this.options.blend?c[a]:b[a]},_borderSize:function(a){var b=[5,3,2,1],c=[2,1,1,1],d=[1,0],e=[0,2,0,0];return this.options.compact&&(this.options.blend||this._isTransparent())?1:this.options.compact?d[a]:this.options.blend?c[a]:this.options.border?e[a]:this._isTransparent()?b[a]:0},_hasString:function(a){for(var b=1;b<arguments.length;b++)if(0<=a.indexOf(arguments[b]))return!0;return!1},_blend:function(a,b){var c=OpenLayers.Rico.Color.createFromHex(a);c.blend(OpenLayers.Rico.Color.createFromHex(b)); return c},_background:function(a){try{return OpenLayers.Rico.Color.createColorFromBackground(a).asHex()}catch(b){return"#ffffff"}},_isTransparent:function(){return"transparent"==this.options.color},_isTopRounded:function(){return this._hasString(this.options.corners,"all","top","tl","tr")},_isBottomRounded:function(){return this._hasString(this.options.corners,"all","bottom","bl","br")},_hasSingleTextChild:function(a){return 1==a.childNodes.length&&3==a.childNodes[0].nodeType}};OpenLayers.Popup.AnchoredBubble=OpenLayers.Class(OpenLayers.Popup.Anchored,{rounded:!1,initialize:function(a,b,c,d,e,f,g){OpenLayers.Console.warn("AnchoredBubble is deprecated");this.padding=new OpenLayers.Bounds(0,OpenLayers.Popup.AnchoredBubble.CORNER_SIZE,0,OpenLayers.Popup.AnchoredBubble.CORNER_SIZE);OpenLayers.Popup.Anchored.prototype.initialize.apply(this,arguments)},draw:function(a){OpenLayers.Popup.Anchored.prototype.draw.apply(this,arguments);this.setContentHTML();this.setBackgroundColor(); this.setOpacity();return this.div},updateRelativePosition:function(){this.setRicoCorners()},setSize:function(a){OpenLayers.Popup.Anchored.prototype.setSize.apply(this,arguments);this.setRicoCorners()},setBackgroundColor:function(a){void 0!=a&&(this.backgroundColor=a);null!=this.div&&null!=this.contentDiv&&(this.div.style.background="transparent",OpenLayers.Rico.Corner.changeColor(this.groupDiv,this.backgroundColor))},setOpacity:function(a){OpenLayers.Popup.Anchored.prototype.setOpacity.call(this, a);null!=this.div&&null!=this.groupDiv&&OpenLayers.Rico.Corner.changeOpacity(this.groupDiv,this.opacity)},setBorder:function(){this.border=0},setRicoCorners:function(){var a={corners:this.getCornersToRound(this.relativePosition),color:this.backgroundColor,bgColor:"transparent",blend:!1};this.rounded?(OpenLayers.Rico.Corner.reRound(this.groupDiv,a),this.setBackgroundColor(),this.setOpacity()):(OpenLayers.Rico.Corner.round(this.div,a),this.rounded=!0)},getCornersToRound:function(){var a=["tl","tr", "bl","br"],b=OpenLayers.Bounds.oppositeQuadrant(this.relativePosition);OpenLayers.Util.removeItem(a,b);return a.join(" ")},CLASS_NAME:"OpenLayers.Popup.AnchoredBubble"});OpenLayers.Popup.AnchoredBubble.CORNER_SIZE=5;OpenLayers.Protocol.WFS.v1=OpenLayers.Class(OpenLayers.Protocol,{version:null,srsName:"EPSG:4326",featureType:null,featureNS:null,geometryName:"the_geom",schema:null,featurePrefix:"feature",formatOptions:null,readFormat:null,readOptions:null,initialize:function(a){OpenLayers.Protocol.prototype.initialize.apply(this,[a]);a.format||(this.format=OpenLayers.Format.WFST(OpenLayers.Util.extend({version:this.version,featureType:this.featureType,featureNS:this.featureNS,featurePrefix:this.featurePrefix,geometryName:this.geometryName, srsName:this.srsName,schema:this.schema},this.formatOptions)));!a.geometryName&&1<parseFloat(this.format.version)&&this.setGeometryName(null)},destroy:function(){this.options&&!this.options.format&&this.format.destroy();this.format=null;OpenLayers.Protocol.prototype.destroy.apply(this)},read:function(a){OpenLayers.Protocol.prototype.read.apply(this,arguments);a=OpenLayers.Util.extend({},a);OpenLayers.Util.applyDefaults(a,this.options||{});var b=new OpenLayers.Protocol.Response({requestType:"read"}), c=OpenLayers.Format.XML.prototype.write.apply(this.format,[this.format.writeNode("wfs:GetFeature",a)]);b.priv=OpenLayers.Request.POST({url:a.url,callback:this.createCallback(this.handleRead,b,a),params:a.params,headers:a.headers,data:c});return b},setFeatureType:function(a){this.featureType=a;this.format.featureType=a},setGeometryName:function(a){this.geometryName=a;this.format.geometryName=a},handleRead:function(a,b){b=OpenLayers.Util.extend({},b);OpenLayers.Util.applyDefaults(b,this.options);if(b.callback){var c= a.priv;200<=c.status&&300>c.status?(c=this.parseResponse(c,b.readOptions))&&!1!==c.success?(b.readOptions&&"object"==b.readOptions.output?OpenLayers.Util.extend(a,c):a.features=c,a.code=OpenLayers.Protocol.Response.SUCCESS):(a.code=OpenLayers.Protocol.Response.FAILURE,a.error=c):a.code=OpenLayers.Protocol.Response.FAILURE;b.callback.call(b.scope,a)}},parseResponse:function(a,b){var c=a.responseXML;if(!c||!c.documentElement)c=a.responseText;if(!c||0>=c.length)return null;c=null!==this.readFormat?this.readFormat.read(c): this.format.read(c,b);if(!this.featureNS){var d=this.readFormat||this.format;this.featureNS=d.featureNS;d.autoConfig=!1;this.geometryName||this.setGeometryName(d.geometryName)}return c},commit:function(a,b){b=OpenLayers.Util.extend({},b);OpenLayers.Util.applyDefaults(b,this.options);var c=new OpenLayers.Protocol.Response({requestType:"commit",reqFeatures:a});c.priv=OpenLayers.Request.POST({url:b.url,headers:b.headers,data:this.format.write(a,b),callback:this.createCallback(this.handleCommit,c,b)}); return c},handleCommit:function(a,b){if(b.callback){var c=a.priv,d=c.responseXML;if(!d||!d.documentElement)d=c.responseText;c=this.format.read(d)||{};a.insertIds=c.insertIds||[];c.success?a.code=OpenLayers.Protocol.Response.SUCCESS:(a.code=OpenLayers.Protocol.Response.FAILURE,a.error=c);b.callback.call(b.scope,a)}},filterDelete:function(a,b){b=OpenLayers.Util.extend({},b);OpenLayers.Util.applyDefaults(b,this.options);new OpenLayers.Protocol.Response({requestType:"commit"});var c=this.format.createElementNSPlus("wfs:Transaction", {attributes:{service:"WFS",version:this.version}}),d=this.format.createElementNSPlus("wfs:Delete",{attributes:{typeName:(b.featureNS?this.featurePrefix+":":"")+b.featureType}});b.featureNS&&d.setAttribute("xmlns:"+this.featurePrefix,b.featureNS);var e=this.format.writeNode("ogc:Filter",a);d.appendChild(e);c.appendChild(d);c=OpenLayers.Format.XML.prototype.write.apply(this.format,[c]);return OpenLayers.Request.POST({url:this.url,callback:b.callback||function(){},data:c})},abort:function(a){a&&a.priv.abort()}, CLASS_NAME:"OpenLayers.Protocol.WFS.v1"});OpenLayers.Handler.Point=OpenLayers.Class(OpenLayers.Handler,{point:null,layer:null,multi:!1,citeCompliant:!1,mouseDown:!1,stoppedDown:null,lastDown:null,lastUp:null,persist:!1,stopDown:!1,stopUp:!1,layerOptions:null,pixelTolerance:5,touch:!1,lastTouchPx:null,initialize:function(a,b,c){if(!c||!c.layerOptions||!c.layerOptions.styleMap)this.style=OpenLayers.Util.extend(OpenLayers.Feature.Vector.style["default"],{});OpenLayers.Handler.prototype.initialize.apply(this,arguments)},activate:function(){if(!OpenLayers.Handler.prototype.activate.apply(this, arguments))return!1;var a=OpenLayers.Util.extend({displayInLayerSwitcher:!1,calculateInRange:OpenLayers.Function.True,wrapDateLine:this.citeCompliant},this.layerOptions);this.layer=new OpenLayers.Layer.Vector(this.CLASS_NAME,a);this.map.addLayer(this.layer);return!0},createFeature:function(a){a=this.layer.getLonLatFromViewPortPx(a);a=new OpenLayers.Geometry.Point(a.lon,a.lat);this.point=new OpenLayers.Feature.Vector(a);this.callback("create",[this.point.geometry,this.point]);this.point.geometry.clearBounds(); this.layer.addFeatures([this.point],{silent:!0})},deactivate:function(){if(!OpenLayers.Handler.prototype.deactivate.apply(this,arguments))return!1;this.cancel();null!=this.layer.map&&(this.destroyFeature(!0),this.layer.destroy(!1));this.layer=null;this.touch=!1;return!0},destroyFeature:function(a){this.layer&&(a||!this.persist)&&this.layer.destroyFeatures();this.point=null},destroyPersistedFeature:function(){var a=this.layer;a&&1<a.features.length&&this.layer.features[0].destroy()},finalize:function(a){this.mouseDown= !1;this.lastTouchPx=this.lastUp=this.lastDown=null;this.callback(a?"cancel":"done",[this.geometryClone()]);this.destroyFeature(a)},cancel:function(){this.finalize(!0)},click:function(a){OpenLayers.Event.stop(a);return!1},dblclick:function(a){OpenLayers.Event.stop(a);return!1},modifyFeature:function(a){this.point||this.createFeature(a);a=this.layer.getLonLatFromViewPortPx(a);this.point.geometry.x=a.lon;this.point.geometry.y=a.lat;this.callback("modify",[this.point.geometry,this.point,!1]);this.point.geometry.clearBounds(); this.drawFeature()},drawFeature:function(){this.layer.drawFeature(this.point,this.style)},getGeometry:function(){var a=this.point&&this.point.geometry;a&&this.multi&&(a=new OpenLayers.Geometry.MultiPoint([a]));return a},geometryClone:function(){var a=this.getGeometry();return a&&a.clone()},mousedown:function(a){return this.down(a)},touchstart:function(a){this.touch||(this.touch=!0,this.map.events.un({mousedown:this.mousedown,mouseup:this.mouseup,mousemove:this.mousemove,click:this.click,dblclick:this.dblclick, scope:this}));this.lastTouchPx=a.xy;return this.down(a)},mousemove:function(a){return this.move(a)},touchmove:function(a){this.lastTouchPx=a.xy;return this.move(a)},mouseup:function(a){return this.up(a)},touchend:function(a){a.xy=this.lastTouchPx;return this.up(a)},down:function(a){this.mouseDown=!0;this.lastDown=a.xy;this.touch||this.modifyFeature(a.xy);this.stoppedDown=this.stopDown;return!this.stopDown},move:function(a){!this.touch&&(!this.mouseDown||this.stoppedDown)&&this.modifyFeature(a.xy); return!0},up:function(a){this.mouseDown=!1;this.stoppedDown=this.stopDown;return this.checkModifiers(a)&&(!this.lastUp||!this.lastUp.equals(a.xy))&&this.lastDown&&this.passesTolerance(this.lastDown,a.xy,this.pixelTolerance)?(this.touch&&this.modifyFeature(a.xy),this.persist&&this.destroyPersistedFeature(),this.lastUp=a.xy,this.finalize(),!this.stopUp):!0},mouseout:function(a){OpenLayers.Util.mouseLeft(a,this.map.viewPortDiv)&&(this.stoppedDown=this.stopDown,this.mouseDown=!1)},passesTolerance:function(a, b,c){var d=!0;null!=c&&a&&b&&a.distanceTo(b)>c&&(d=!1);return d},CLASS_NAME:"OpenLayers.Handler.Point"});OpenLayers.Handler.Path=OpenLayers.Class(OpenLayers.Handler.Point,{line:null,maxVertices:null,doubleTouchTolerance:20,freehand:!1,freehandToggle:"shiftKey",timerId:null,redoStack:null,createFeature:function(a){a=this.layer.getLonLatFromViewPortPx(a);a=new OpenLayers.Geometry.Point(a.lon,a.lat);this.point=new OpenLayers.Feature.Vector(a);this.line=new OpenLayers.Feature.Vector(new OpenLayers.Geometry.LineString([this.point.geometry]));this.callback("create",[this.point.geometry,this.getSketch()]); this.point.geometry.clearBounds();this.layer.addFeatures([this.line,this.point],{silent:!0})},destroyFeature:function(a){OpenLayers.Handler.Point.prototype.destroyFeature.call(this,a);this.line=null},destroyPersistedFeature:function(){var a=this.layer;a&&2<a.features.length&&this.layer.features[0].destroy()},removePoint:function(){this.point&&this.layer.removeFeatures([this.point])},addPoint:function(a){this.layer.removeFeatures([this.point]);a=this.layer.getLonLatFromViewPortPx(a);this.point=new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Point(a.lon, a.lat));this.line.geometry.addComponent(this.point.geometry,this.line.geometry.components.length);this.layer.addFeatures([this.point]);this.callback("point",[this.point.geometry,this.getGeometry()]);this.callback("modify",[this.point.geometry,this.getSketch()]);this.drawFeature();delete this.redoStack},insertXY:function(a,b){this.line.geometry.addComponent(new OpenLayers.Geometry.Point(a,b),this.getCurrentPointIndex());this.drawFeature();delete this.redoStack},insertDeltaXY:function(a,b){var c=this.line.geometry.components[this.getCurrentPointIndex()- 1];c&&(!isNaN(c.x)&&!isNaN(c.y))&&this.insertXY(c.x+a,c.y+b)},insertDirectionLength:function(a,b){var a=a*(Math.PI/180),c=b*Math.cos(a),d=b*Math.sin(a);this.insertDeltaXY(c,d)},insertDeflectionLength:function(a,b){var c=this.getCurrentPointIndex()-1;if(0<c){var d=this.line.geometry.components[c],c=this.line.geometry.components[c-1];this.insertDirectionLength(180*Math.atan2(d.y-c.y,d.x-c.x)/Math.PI+a,b)}},getCurrentPointIndex:function(){return this.line.geometry.components.length-1},undo:function(){var a= this.line.geometry,b=a.components,c=this.getCurrentPointIndex()-1,b=b[c];if(a=a.removeComponent(b))this.redoStack||(this.redoStack=[]),this.redoStack.push(b),this.drawFeature();return a},redo:function(){var a=this.redoStack&&this.redoStack.pop();a&&(this.line.geometry.addComponent(a,this.getCurrentPointIndex()),this.drawFeature());return!!a},freehandMode:function(a){return this.freehandToggle&&a[this.freehandToggle]?!this.freehand:this.freehand},modifyFeature:function(a,b){this.line||this.createFeature(a); var c=this.layer.getLonLatFromViewPortPx(a);this.point.geometry.x=c.lon;this.point.geometry.y=c.lat;this.callback("modify",[this.point.geometry,this.getSketch(),b]);this.point.geometry.clearBounds();this.drawFeature()},drawFeature:function(){this.layer.drawFeature(this.line,this.style);this.layer.drawFeature(this.point,this.style)},getSketch:function(){return this.line},getGeometry:function(){var a=this.line&&this.line.geometry;a&&this.multi&&(a=new OpenLayers.Geometry.MultiLineString([a]));return a}, touchstart:function(a){if(this.timerId&&this.passesTolerance(this.lastTouchPx,a.xy,this.doubleTouchTolerance))return this.finishGeometry(),window.clearTimeout(this.timerId),this.timerId=null,!1;this.timerId&&(window.clearTimeout(this.timerId),this.timerId=null);this.timerId=window.setTimeout(OpenLayers.Function.bind(function(){this.timerId=null},this),300);return OpenLayers.Handler.Point.prototype.touchstart.call(this,a)},down:function(a){var b=this.stopDown;this.freehandMode(a)&&(b=!0,this.touch&& (this.modifyFeature(a.xy,!!this.lastUp),OpenLayers.Event.stop(a)));!this.touch&&(!this.lastDown||!this.passesTolerance(this.lastDown,a.xy,this.pixelTolerance))&&this.modifyFeature(a.xy,!!this.lastUp);this.mouseDown=!0;this.lastDown=a.xy;this.stoppedDown=b;return!b},move:function(a){if(this.stoppedDown&&this.freehandMode(a))return this.persist&&this.destroyPersistedFeature(),this.maxVertices&&this.line&&this.line.geometry.components.length===this.maxVertices?(this.removePoint(),this.finalize()):this.addPoint(a.xy), !1;!this.touch&&(!this.mouseDown||this.stoppedDown)&&this.modifyFeature(a.xy,!!this.lastUp);return!0},up:function(a){if(this.mouseDown&&(!this.lastUp||!this.lastUp.equals(a.xy)))this.stoppedDown&&this.freehandMode(a)?(this.persist&&this.destroyPersistedFeature(),this.removePoint(),this.finalize()):this.passesTolerance(this.lastDown,a.xy,this.pixelTolerance)&&(this.touch&&this.modifyFeature(a.xy),null==this.lastUp&&this.persist&&this.destroyPersistedFeature(),this.addPoint(a.xy),this.lastUp=a.xy,this.line.geometry.components.length=== this.maxVertices+1&&this.finishGeometry());this.stoppedDown=this.stopDown;this.mouseDown=!1;return!this.stopUp},finishGeometry:function(){this.line.geometry.removeComponent(this.line.geometry.components[this.line.geometry.components.length-1]);this.removePoint();this.finalize()},dblclick:function(a){this.freehandMode(a)||this.finishGeometry();return!1},CLASS_NAME:"OpenLayers.Handler.Path"});OpenLayers.Spherical=OpenLayers.Spherical||{};OpenLayers.Spherical.DEFAULT_RADIUS=6378137;OpenLayers.Spherical.computeDistanceBetween=function(a,b,c){var c=c||OpenLayers.Spherical.DEFAULT_RADIUS,d=Math.sin(Math.PI*(b.lon-a.lon)/360),e=Math.sin(Math.PI*(b.lat-a.lat)/360),a=e*e+d*d*Math.cos(Math.PI*a.lat/180)*Math.cos(Math.PI*b.lat/180);return 2*c*Math.atan2(Math.sqrt(a),Math.sqrt(1-a))}; OpenLayers.Spherical.computeHeading=function(a,b){var c=Math.sin(Math.PI*(a.lon-b.lon)/180)*Math.cos(Math.PI*b.lat/180),d=Math.cos(Math.PI*a.lat/180)*Math.sin(Math.PI*b.lat/180)-Math.sin(Math.PI*a.lat/180)*Math.cos(Math.PI*b.lat/180)*Math.cos(Math.PI*(a.lon-b.lon)/180);return 180*Math.atan2(c,d)/Math.PI};OpenLayers.Control.CacheWrite=OpenLayers.Class(OpenLayers.Control,{layers:null,imageFormat:"image/png",quotaRegEx:/quota/i,setMap:function(a){OpenLayers.Control.prototype.setMap.apply(this,arguments);var b,c=this.layers||a.layers;for(b=c.length-1;0<=b;--b)this.addLayer({layer:c[b]});if(!this.layers)a.events.on({addlayer:this.addLayer,removeLayer:this.removeLayer,scope:this})},addLayer:function(a){a.layer.events.on({tileloadstart:this.makeSameOrigin,tileloaded:this.cache,scope:this})},removeLayer:function(a){a.layer.events.un({tileloadstart:this.makeSameOrigin, tileloaded:this.cache,scope:this})},makeSameOrigin:function(a){if(this.active&&(a=a.tile,a instanceof OpenLayers.Tile.Image&&!a.crossOriginKeyword&&"data:"!==a.url.substr(0,5))){var b=OpenLayers.Request.makeSameOrigin(a.url,OpenLayers.ProxyHost);OpenLayers.Control.CacheWrite.urlMap[b]=a.url;a.url=b}},cache:function(a){if(this.active&&window.localStorage&&(a=a.tile,a instanceof OpenLayers.Tile.Image&&"data:"!==a.url.substr(0,5)))try{var b=a.getCanvasContext();if(b){var c=OpenLayers.Control.CacheWrite.urlMap; window.localStorage.setItem("olCache_"+(c[a.url]||a.url),b.canvas.toDataURL(this.imageFormat));delete c[a.url]}}catch(d){(b=d.name||d.message)&&this.quotaRegEx.test(b)?this.events.triggerEvent("cachefull",{tile:a}):OpenLayers.Console.error(d.toString())}},destroy:function(){if(this.layers||this.map){var a,b=this.layers||this.map.layers;for(a=b.length-1;0<=a;--a)this.removeLayer({layer:b[a]})}this.map&&this.map.events.un({addlayer:this.addLayer,removeLayer:this.removeLayer,scope:this});OpenLayers.Control.prototype.destroy.apply(this, arguments)},CLASS_NAME:"OpenLayers.Control.CacheWrite"});OpenLayers.Control.CacheWrite.clearCache=function(){if(window.localStorage){var a,b;for(a=window.localStorage.length-1;0<=a;--a)b=window.localStorage.key(a),"olCache_"===b.substr(0,8)&&window.localStorage.removeItem(b)}};OpenLayers.Control.CacheWrite.urlMap={};OpenLayers.Format.Context=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{layerOptions:null,layerParams:null,read:function(a,b){var c=OpenLayers.Format.XML.VersionedOGC.prototype.read.apply(this,arguments);if(b&&b.map)if(this.context=c,b.map instanceof OpenLayers.Map)c=this.mergeContextToMap(c,b.map);else{var d=b.map;if(OpenLayers.Util.isElement(d)||"string"==typeof d)d={div:d};c=this.contextToMap(c,d)}return c},getLayerFromContext:function(a){var b,c,d={queryable:a.queryable,visibility:a.visibility, maxExtent:a.maxExtent,metadata:OpenLayers.Util.applyDefaults(a.metadata,{styles:a.styles,formats:a.formats,"abstract":a["abstract"],dataURL:a.dataURL}),numZoomLevels:a.numZoomLevels,units:a.units,isBaseLayer:a.isBaseLayer,opacity:a.opacity,displayInLayerSwitcher:a.displayInLayerSwitcher,singleTile:a.singleTile,tileSize:a.tileSize?new OpenLayers.Size(a.tileSize.width,a.tileSize.height):void 0,minScale:a.minScale||a.maxScaleDenominator,maxScale:a.maxScale||a.minScaleDenominator,srs:a.srs,dimensions:a.dimensions, metadataURL:a.metadataURL};this.layerOptions&&OpenLayers.Util.applyDefaults(d,this.layerOptions);var e={layers:a.name,transparent:a.transparent,version:a.version};if(a.formats&&0<a.formats.length){e.format=a.formats[0].value;b=0;for(c=a.formats.length;b<c;b++){var f=a.formats[b];if(!0==f.current){e.format=f.value;break}}}if(a.styles&&0<a.styles.length){b=0;for(c=a.styles.length;b<c;b++)if(f=a.styles[b],!0==f.current){f.href?e.sld=f.href:f.body?e.sld_body=f.body:e.styles=f.name;break}}this.layerParams&& OpenLayers.Util.applyDefaults(e,this.layerParams);b=null;c=a.service;c==OpenLayers.Format.Context.serviceTypes.WFS?(d.strategies=[new OpenLayers.Strategy.BBOX],d.protocol=new OpenLayers.Protocol.WFS({url:a.url,featurePrefix:a.name.split(":")[0],featureType:a.name.split(":").pop()}),b=new OpenLayers.Layer.Vector(a.title||a.name,d)):c==OpenLayers.Format.Context.serviceTypes.KML?(d.strategies=[new OpenLayers.Strategy.Fixed],d.protocol=new OpenLayers.Protocol.HTTP({url:a.url,format:new OpenLayers.Format.KML}), b=new OpenLayers.Layer.Vector(a.title||a.name,d)):c==OpenLayers.Format.Context.serviceTypes.GML?(d.strategies=[new OpenLayers.Strategy.Fixed],d.protocol=new OpenLayers.Protocol.HTTP({url:a.url,format:new OpenLayers.Format.GML}),b=new OpenLayers.Layer.Vector(a.title||a.name,d)):a.features?(b=new OpenLayers.Layer.Vector(a.title||a.name,d),b.addFeatures(a.features)):!0!==a.categoryLayer&&(b=new OpenLayers.Layer.WMS(a.title||a.name,a.url,e,d));return b},getLayersFromContext:function(a){for(var b=[],c= 0,d=a.length;c<d;c++){var e=this.getLayerFromContext(a[c]);null!==e&&b.push(e)}return b},contextToMap:function(a,b){b=OpenLayers.Util.applyDefaults({maxExtent:a.maxExtent,projection:a.projection,units:a.units},b);b.maxExtent&&(b.maxResolution=b.maxExtent.getWidth()/OpenLayers.Map.TILE_WIDTH);b.metadata={contactInformation:a.contactInformation,"abstract":a["abstract"],keywords:a.keywords,logo:a.logo,descriptionURL:a.descriptionURL};var c=new OpenLayers.Map(b);c.addLayers(this.getLayersFromContext(a.layersContext)); c.setCenter(a.bounds.getCenterLonLat(),c.getZoomForExtent(a.bounds,!0));return c},mergeContextToMap:function(a,b){b.addLayers(this.getLayersFromContext(a.layersContext));return b},write:function(a,b){a=this.toContext(a);return OpenLayers.Format.XML.VersionedOGC.prototype.write.apply(this,arguments)},CLASS_NAME:"OpenLayers.Format.Context"}); OpenLayers.Format.Context.serviceTypes={WMS:"urn:ogc:serviceType:WMS",WFS:"urn:ogc:serviceType:WFS",WCS:"urn:ogc:serviceType:WCS",GML:"urn:ogc:serviceType:GML",SLD:"urn:ogc:serviceType:SLD",FES:"urn:ogc:serviceType:FES",KML:"urn:ogc:serviceType:KML"};OpenLayers.Format.WMC=OpenLayers.Class(OpenLayers.Format.Context,{defaultVersion:"1.1.0",layerToContext:function(a){var b=this.getParser(),c={queryable:a.queryable,visibility:a.visibility,name:a.params.LAYERS,title:a.name,"abstract":a.metadata["abstract"],dataURL:a.metadata.dataURL,metadataURL:a.metadataURL,server:{version:a.params.VERSION,url:a.url},maxExtent:a.maxExtent,transparent:a.params.TRANSPARENT,numZoomLevels:a.numZoomLevels,units:a.units,isBaseLayer:a.isBaseLayer,opacity:1==a.opacity?void 0: a.opacity,displayInLayerSwitcher:a.displayInLayerSwitcher,singleTile:a.singleTile,tileSize:a.singleTile||!a.tileSize?void 0:{width:a.tileSize.w,height:a.tileSize.h},minScale:a.options.resolutions||a.options.scales||a.options.maxResolution||a.options.minScale?a.minScale:void 0,maxScale:a.options.resolutions||a.options.scales||a.options.minResolution||a.options.maxScale?a.maxScale:void 0,formats:[],styles:[],srs:a.srs,dimensions:a.dimensions};a.metadata.servertitle&&(c.server.title=a.metadata.servertitle); if(a.metadata.formats&&0<a.metadata.formats.length)for(var d=0,e=a.metadata.formats.length;d<e;d++){var f=a.metadata.formats[d];c.formats.push({value:f.value,current:f.value==a.params.FORMAT})}else c.formats.push({value:a.params.FORMAT,current:!0});if(a.metadata.styles&&0<a.metadata.styles.length){d=0;for(e=a.metadata.styles.length;d<e;d++)b=a.metadata.styles[d],b.current=b.href==a.params.SLD||b.body==a.params.SLD_BODY||b.name==a.params.STYLES?!0:!1,c.styles.push(b)}else c.styles.push({href:a.params.SLD, body:a.params.SLD_BODY,name:a.params.STYLES||b.defaultStyleName,title:b.defaultStyleTitle,current:!0});return c},toContext:function(a){var b={},c=a.layers;if("OpenLayers.Map"==a.CLASS_NAME){var d=a.metadata||{};b.size=a.getSize();b.bounds=a.getExtent();b.projection=a.projection;b.title=a.title;b.keywords=d.keywords;b["abstract"]=d["abstract"];b.logo=d.logo;b.descriptionURL=d.descriptionURL;b.contactInformation=d.contactInformation;b.maxExtent=a.maxExtent}else OpenLayers.Util.applyDefaults(b,a),void 0!= b.layers&&delete b.layers;void 0==b.layersContext&&(b.layersContext=[]);if(void 0!=c&&OpenLayers.Util.isArray(c)){a=0;for(d=c.length;a<d;a++){var e=c[a];e instanceof OpenLayers.Layer.WMS&&b.layersContext.push(this.layerToContext(e))}}return b},CLASS_NAME:"OpenLayers.Format.WMC"});OpenLayers.Format.WMC.v1=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{ol:"http://openlayers.org/context",wmc:"http://www.opengis.net/context",sld:"http://www.opengis.net/sld",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},schemaLocation:"",getNamespacePrefix:function(a){var b=null;if(null==a)b=this.namespaces[this.defaultPrefix];else for(b in this.namespaces)if(this.namespaces[b]==a)break;return b},defaultPrefix:"wmc",rootPrefix:null,defaultStyleName:"", defaultStyleTitle:"Default",initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a=a.documentElement;this.rootPrefix=a.prefix;var b={version:a.getAttribute("version")};this.runChildNodes(b,a);return b},runChildNodes:function(a,b){for(var c=b.childNodes,d,e,f,g=0,h=c.length;g<h;++g)d=c[g],1==d.nodeType&&(e=this.getNamespacePrefix(d.namespaceURI),f=d.nodeName.split(":").pop(), (e=this["read_"+e+"_"+f])&&e.apply(this,[a,d]))},read_wmc_General:function(a,b){this.runChildNodes(a,b)},read_wmc_BoundingBox:function(a,b){a.projection=b.getAttribute("SRS");a.bounds=new OpenLayers.Bounds(b.getAttribute("minx"),b.getAttribute("miny"),b.getAttribute("maxx"),b.getAttribute("maxy"))},read_wmc_LayerList:function(a,b){a.layersContext=[];this.runChildNodes(a,b)},read_wmc_Layer:function(a,b){var c={visibility:"1"!=b.getAttribute("hidden"),queryable:"1"==b.getAttribute("queryable"),formats:[], styles:[],metadata:{}};this.runChildNodes(c,b);a.layersContext.push(c)},read_wmc_Extension:function(a,b){this.runChildNodes(a,b)},read_ol_units:function(a,b){a.units=this.getChildValue(b)},read_ol_maxExtent:function(a,b){var c=new OpenLayers.Bounds(b.getAttribute("minx"),b.getAttribute("miny"),b.getAttribute("maxx"),b.getAttribute("maxy"));a.maxExtent=c},read_ol_transparent:function(a,b){a.transparent=this.getChildValue(b)},read_ol_numZoomLevels:function(a,b){a.numZoomLevels=parseInt(this.getChildValue(b))}, read_ol_opacity:function(a,b){a.opacity=parseFloat(this.getChildValue(b))},read_ol_singleTile:function(a,b){a.singleTile="true"==this.getChildValue(b)},read_ol_tileSize:function(a,b){var c={width:b.getAttribute("width"),height:b.getAttribute("height")};a.tileSize=c},read_ol_isBaseLayer:function(a,b){a.isBaseLayer="true"==this.getChildValue(b)},read_ol_displayInLayerSwitcher:function(a,b){a.displayInLayerSwitcher="true"==this.getChildValue(b)},read_wmc_Server:function(a,b){a.version=b.getAttribute("version"); a.url=this.getOnlineResource_href(b);a.metadata.servertitle=b.getAttribute("title")},read_wmc_FormatList:function(a,b){this.runChildNodes(a,b)},read_wmc_Format:function(a,b){var c={value:this.getChildValue(b)};"1"==b.getAttribute("current")&&(c.current=!0);a.formats.push(c)},read_wmc_StyleList:function(a,b){this.runChildNodes(a,b)},read_wmc_Style:function(a,b){var c={};this.runChildNodes(c,b);"1"==b.getAttribute("current")&&(c.current=!0);a.styles.push(c)},read_wmc_SLD:function(a,b){this.runChildNodes(a, b)},read_sld_StyledLayerDescriptor:function(a,b){var c=OpenLayers.Format.XML.prototype.write.apply(this,[b]);a.body=c},read_sld_FeatureTypeStyle:function(a,b){var c=OpenLayers.Format.XML.prototype.write.apply(this,[b]);a.body=c},read_wmc_OnlineResource:function(a,b){a.href=this.getAttributeNS(b,this.namespaces.xlink,"href")},read_wmc_Name:function(a,b){var c=this.getChildValue(b);c&&(a.name=c)},read_wmc_Title:function(a,b){var c=this.getChildValue(b);c&&(a.title=c)},read_wmc_MetadataURL:function(a, b){a.metadataURL=this.getOnlineResource_href(b)},read_wmc_KeywordList:function(a,b){a.keywords=[];this.runChildNodes(a.keywords,b)},read_wmc_Keyword:function(a,b){a.push(this.getChildValue(b))},read_wmc_Abstract:function(a,b){var c=this.getChildValue(b);c&&(a["abstract"]=c)},read_wmc_LogoURL:function(a,b){a.logo={width:b.getAttribute("width"),height:b.getAttribute("height"),format:b.getAttribute("format"),href:this.getOnlineResource_href(b)}},read_wmc_DescriptionURL:function(a,b){a.descriptionURL= this.getOnlineResource_href(b)},read_wmc_ContactInformation:function(a,b){var c={};this.runChildNodes(c,b);a.contactInformation=c},read_wmc_ContactPersonPrimary:function(a,b){var c={};this.runChildNodes(c,b);a.personPrimary=c},read_wmc_ContactPerson:function(a,b){var c=this.getChildValue(b);c&&(a.person=c)},read_wmc_ContactOrganization:function(a,b){var c=this.getChildValue(b);c&&(a.organization=c)},read_wmc_ContactPosition:function(a,b){var c=this.getChildValue(b);c&&(a.position=c)},read_wmc_ContactAddress:function(a, b){var c={};this.runChildNodes(c,b);a.contactAddress=c},read_wmc_AddressType:function(a,b){var c=this.getChildValue(b);c&&(a.type=c)},read_wmc_Address:function(a,b){var c=this.getChildValue(b);c&&(a.address=c)},read_wmc_City:function(a,b){var c=this.getChildValue(b);c&&(a.city=c)},read_wmc_StateOrProvince:function(a,b){var c=this.getChildValue(b);c&&(a.stateOrProvince=c)},read_wmc_PostCode:function(a,b){var c=this.getChildValue(b);c&&(a.postcode=c)},read_wmc_Country:function(a,b){var c=this.getChildValue(b); c&&(a.country=c)},read_wmc_ContactVoiceTelephone:function(a,b){var c=this.getChildValue(b);c&&(a.phone=c)},read_wmc_ContactFacsimileTelephone:function(a,b){var c=this.getChildValue(b);c&&(a.fax=c)},read_wmc_ContactElectronicMailAddress:function(a,b){var c=this.getChildValue(b);c&&(a.email=c)},read_wmc_DataURL:function(a,b){a.dataURL=this.getOnlineResource_href(b)},read_wmc_LegendURL:function(a,b){var c={width:b.getAttribute("width"),height:b.getAttribute("height"),format:b.getAttribute("format"), href:this.getOnlineResource_href(b)};a.legend=c},read_wmc_DimensionList:function(a,b){a.dimensions={};this.runChildNodes(a.dimensions,b)},read_wmc_Dimension:function(a,b){var c={name:b.getAttribute("name").toLowerCase(),units:b.getAttribute("units")||"",unitSymbol:b.getAttribute("unitSymbol")||"",userValue:b.getAttribute("userValue")||"",nearestValue:"1"===b.getAttribute("nearestValue"),multipleValues:"1"===b.getAttribute("multipleValues"),current:"1"===b.getAttribute("current"),"default":b.getAttribute("default")|| ""},d=this.getChildValue(b);c.values=d.split(",");a[c.name]=c},write:function(a,b){var c=this.createElementDefaultNS("ViewContext");this.setAttributes(c,{version:this.VERSION,id:b&&"string"==typeof b.id?b.id:OpenLayers.Util.createUniqueID("OpenLayers_Context_")});this.setAttributeNS(c,this.namespaces.xsi,"xsi:schemaLocation",this.schemaLocation);c.appendChild(this.write_wmc_General(a));c.appendChild(this.write_wmc_LayerList(a));return OpenLayers.Format.XML.prototype.write.apply(this,[c])},createElementDefaultNS:function(a, b,c){a=this.createElementNS(this.namespaces[this.defaultPrefix],a);b&&a.appendChild(this.createTextNode(b));c&&this.setAttributes(a,c);return a},setAttributes:function(a,b){var c,d;for(d in b)c=b[d].toString(),c.match(/[A-Z]/)?this.setAttributeNS(a,null,d,c):a.setAttribute(d,c)},write_wmc_General:function(a){var b=this.createElementDefaultNS("General");a.size&&b.appendChild(this.createElementDefaultNS("Window",null,{width:a.size.w,height:a.size.h}));var c=a.bounds;b.appendChild(this.createElementDefaultNS("BoundingBox", null,{minx:c.left.toPrecision(18),miny:c.bottom.toPrecision(18),maxx:c.right.toPrecision(18),maxy:c.top.toPrecision(18),SRS:a.projection}));b.appendChild(this.createElementDefaultNS("Title",a.title));a.keywords&&b.appendChild(this.write_wmc_KeywordList(a.keywords));a["abstract"]&&b.appendChild(this.createElementDefaultNS("Abstract",a["abstract"]));a.logo&&b.appendChild(this.write_wmc_URLType("LogoURL",a.logo.href,a.logo));a.descriptionURL&&b.appendChild(this.write_wmc_URLType("DescriptionURL",a.descriptionURL)); a.contactInformation&&b.appendChild(this.write_wmc_ContactInformation(a.contactInformation));b.appendChild(this.write_ol_MapExtension(a));return b},write_wmc_KeywordList:function(a){for(var b=this.createElementDefaultNS("KeywordList"),c=0,d=a.length;c<d;c++)b.appendChild(this.createElementDefaultNS("Keyword",a[c]));return b},write_wmc_ContactInformation:function(a){var b=this.createElementDefaultNS("ContactInformation");a.personPrimary&&b.appendChild(this.write_wmc_ContactPersonPrimary(a.personPrimary)); a.position&&b.appendChild(this.createElementDefaultNS("ContactPosition",a.position));a.contactAddress&&b.appendChild(this.write_wmc_ContactAddress(a.contactAddress));a.phone&&b.appendChild(this.createElementDefaultNS("ContactVoiceTelephone",a.phone));a.fax&&b.appendChild(this.createElementDefaultNS("ContactFacsimileTelephone",a.fax));a.email&&b.appendChild(this.createElementDefaultNS("ContactElectronicMailAddress",a.email));return b},write_wmc_ContactPersonPrimary:function(a){var b=this.createElementDefaultNS("ContactPersonPrimary"); a.person&&b.appendChild(this.createElementDefaultNS("ContactPerson",a.person));a.organization&&b.appendChild(this.createElementDefaultNS("ContactOrganization",a.organization));return b},write_wmc_ContactAddress:function(a){var b=this.createElementDefaultNS("ContactAddress");a.type&&b.appendChild(this.createElementDefaultNS("AddressType",a.type));a.address&&b.appendChild(this.createElementDefaultNS("Address",a.address));a.city&&b.appendChild(this.createElementDefaultNS("City",a.city));a.stateOrProvince&& b.appendChild(this.createElementDefaultNS("StateOrProvince",a.stateOrProvince));a.postcode&&b.appendChild(this.createElementDefaultNS("PostCode",a.postcode));a.country&&b.appendChild(this.createElementDefaultNS("Country",a.country));return b},write_ol_MapExtension:function(a){var b=this.createElementDefaultNS("Extension");if(a=a.maxExtent){var c=this.createElementNS(this.namespaces.ol,"ol:maxExtent");this.setAttributes(c,{minx:a.left.toPrecision(18),miny:a.bottom.toPrecision(18),maxx:a.right.toPrecision(18), maxy:a.top.toPrecision(18)});b.appendChild(c)}return b},write_wmc_LayerList:function(a){for(var b=this.createElementDefaultNS("LayerList"),c=0,d=a.layersContext.length;c<d;++c)b.appendChild(this.write_wmc_Layer(a.layersContext[c]));return b},write_wmc_Layer:function(a){var b=this.createElementDefaultNS("Layer",null,{queryable:a.queryable?"1":"0",hidden:a.visibility?"0":"1"});b.appendChild(this.write_wmc_Server(a));b.appendChild(this.createElementDefaultNS("Name",a.name));b.appendChild(this.createElementDefaultNS("Title", a.title));a["abstract"]&&b.appendChild(this.createElementDefaultNS("Abstract",a["abstract"]));a.dataURL&&b.appendChild(this.write_wmc_URLType("DataURL",a.dataURL));a.metadataURL&&b.appendChild(this.write_wmc_URLType("MetadataURL",a.metadataURL));return b},write_wmc_LayerExtension:function(a){var b=this.createElementDefaultNS("Extension"),c=a.maxExtent,d=this.createElementNS(this.namespaces.ol,"ol:maxExtent");this.setAttributes(d,{minx:c.left.toPrecision(18),miny:c.bottom.toPrecision(18),maxx:c.right.toPrecision(18), maxy:c.top.toPrecision(18)});b.appendChild(d);a.tileSize&&!a.singleTile&&(c=this.createElementNS(this.namespaces.ol,"ol:tileSize"),this.setAttributes(c,a.tileSize),b.appendChild(c));for(var c="transparent numZoomLevels units isBaseLayer opacity displayInLayerSwitcher singleTile".split(" "),e=0,f=c.length;e<f;++e)(d=this.createOLPropertyNode(a,c[e]))&&b.appendChild(d);return b},createOLPropertyNode:function(a,b){var c=null;null!=a[b]&&(c=this.createElementNS(this.namespaces.ol,"ol:"+b),c.appendChild(this.createTextNode(a[b].toString()))); return c},write_wmc_Server:function(a){var a=a.server,b=this.createElementDefaultNS("Server"),c={service:"OGC:WMS",version:a.version};a.title&&(c.title=a.title);this.setAttributes(b,c);b.appendChild(this.write_wmc_OnlineResource(a.url));return b},write_wmc_URLType:function(a,b,c){a=this.createElementDefaultNS(a);a.appendChild(this.write_wmc_OnlineResource(b));if(c)for(var b=["width","height","format"],d=0;d<b.length;d++)b[d]in c&&a.setAttribute(b[d],c[b[d]]);return a},write_wmc_DimensionList:function(a){var b= this.createElementDefaultNS("DimensionList"),c;for(c in a.dimensions){var d={},e=a.dimensions[c],f;for(f in e)d[f]="boolean"==typeof e[f]?Number(e[f]):e[f];e="";d.values&&(e=d.values.join(","),delete d.values);b.appendChild(this.createElementDefaultNS("Dimension",e,d))}return b},write_wmc_FormatList:function(a){for(var b=this.createElementDefaultNS("FormatList"),c=0,d=a.formats.length;c<d;c++){var e=a.formats[c];b.appendChild(this.createElementDefaultNS("Format",e.value,e.current&&!0==e.current?{current:"1"}: null))}return b},write_wmc_StyleList:function(a){var b=this.createElementDefaultNS("StyleList");if((a=a.styles)&&OpenLayers.Util.isArray(a))for(var c,d=0,e=a.length;d<e;d++){var f=a[d],g=this.createElementDefaultNS("Style",null,f.current&&!0==f.current?{current:"1"}:null);f.href?(c=this.createElementDefaultNS("SLD"),f.name&&c.appendChild(this.createElementDefaultNS("Name",f.name)),f.title&&c.appendChild(this.createElementDefaultNS("Title",f.title)),f.legend&&c.appendChild(this.write_wmc_URLType("LegendURL", f.legend.href,f.legend)),f=this.write_wmc_OnlineResource(f.href),c.appendChild(f),g.appendChild(c)):f.body?(c=this.createElementDefaultNS("SLD"),f.name&&c.appendChild(this.createElementDefaultNS("Name",f.name)),f.title&&c.appendChild(this.createElementDefaultNS("Title",f.title)),f.legend&&c.appendChild(this.write_wmc_URLType("LegendURL",f.legend.href,f.legend)),f=OpenLayers.Format.XML.prototype.read.apply(this,[f.body]).documentElement,c.ownerDocument&&c.ownerDocument.importNode&&(f=c.ownerDocument.importNode(f, !0)),c.appendChild(f),g.appendChild(c)):(g.appendChild(this.createElementDefaultNS("Name",f.name)),g.appendChild(this.createElementDefaultNS("Title",f.title)),f["abstract"]&&g.appendChild(this.createElementDefaultNS("Abstract",f["abstract"])),f.legend&&g.appendChild(this.write_wmc_URLType("LegendURL",f.legend.href,f.legend)));b.appendChild(g)}return b},write_wmc_OnlineResource:function(a){var b=this.createElementDefaultNS("OnlineResource");this.setAttributeNS(b,this.namespaces.xlink,"xlink:type", "simple");this.setAttributeNS(b,this.namespaces.xlink,"xlink:href",a);return b},getOnlineResource_href:function(a){var b={},a=a.getElementsByTagName("OnlineResource");0<a.length&&this.read_wmc_OnlineResource(b,a[0]);return b.href},CLASS_NAME:"OpenLayers.Format.WMC.v1"});OpenLayers.Control.PanPanel=OpenLayers.Class(OpenLayers.Control.Panel,{slideFactor:50,slideRatio:null,initialize:function(a){OpenLayers.Control.Panel.prototype.initialize.apply(this,[a]);a={slideFactor:this.slideFactor,slideRatio:this.slideRatio};this.addControls([new OpenLayers.Control.Pan(OpenLayers.Control.Pan.NORTH,a),new OpenLayers.Control.Pan(OpenLayers.Control.Pan.SOUTH,a),new OpenLayers.Control.Pan(OpenLayers.Control.Pan.EAST,a),new OpenLayers.Control.Pan(OpenLayers.Control.Pan.WEST,a)])}, CLASS_NAME:"OpenLayers.Control.PanPanel"});OpenLayers.Control.Attribution=OpenLayers.Class(OpenLayers.Control,{separator:", ",template:"${layers}",destroy:function(){this.map.events.un({removelayer:this.updateAttribution,addlayer:this.updateAttribution,changelayer:this.updateAttribution,changebaselayer:this.updateAttribution,scope:this});OpenLayers.Control.prototype.destroy.apply(this,arguments)},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);this.map.events.on({changebaselayer:this.updateAttribution,changelayer:this.updateAttribution, addlayer:this.updateAttribution,removelayer:this.updateAttribution,scope:this});this.updateAttribution();return this.div},updateAttribution:function(){var a=[];if(this.map&&this.map.layers){for(var b=0,c=this.map.layers.length;b<c;b++){var d=this.map.layers[b];d.attribution&&d.getVisibility()&&-1===OpenLayers.Util.indexOf(a,d.attribution)&&a.push(d.attribution)}this.div.innerHTML=OpenLayers.String.format(this.template,{layers:a.join(this.separator)})}},CLASS_NAME:"OpenLayers.Control.Attribution"});OpenLayers.Kinetic=OpenLayers.Class({threshold:0,deceleration:0.0035,nbPoints:100,delay:200,points:void 0,timerId:void 0,initialize:function(a){OpenLayers.Util.extend(this,a)},begin:function(){OpenLayers.Animation.stop(this.timerId);this.timerId=void 0;this.points=[]},update:function(a){this.points.unshift({xy:a,tick:(new Date).getTime()});this.points.length>this.nbPoints&&this.points.pop()},end:function(a){for(var b,c=(new Date).getTime(),d=0,e=this.points.length,f;d<e;d++){f=this.points[d];if(c- f.tick>this.delay)break;b=f}if(b&&(d=(new Date).getTime()-b.tick,c=Math.sqrt(Math.pow(a.x-b.xy.x,2)+Math.pow(a.y-b.xy.y,2)),d=c/d,!(0==d||d<this.threshold)))return c=Math.asin((a.y-b.xy.y)/c),b.xy.x<=a.x&&(c=Math.PI-c),{speed:d,theta:c}},move:function(a,b){var c=a.speed,d=Math.cos(a.theta),e=-Math.sin(a.theta),f=(new Date).getTime(),g=0,h=0;this.timerId=OpenLayers.Animation.start(OpenLayers.Function.bind(function(){if(null!=this.timerId){var a=(new Date).getTime()-f,j=-this.deceleration*Math.pow(a, 2)/2+c*a,k=j*d,j=j*e,l,m;l=!1;0>=-this.deceleration*a+c&&(OpenLayers.Animation.stop(this.timerId),this.timerId=null,l=!0);a=k-g;m=j-h;g=k;h=j;b(a,m,l)}},this))},CLASS_NAME:"OpenLayers.Kinetic"});OpenLayers.Layer.GeoRSS=OpenLayers.Class(OpenLayers.Layer.Markers,{location:null,features:null,formatOptions:null,selectedFeature:null,icon:null,popupSize:null,useFeedTitle:!0,initialize:function(a,b,c){OpenLayers.Layer.Markers.prototype.initialize.apply(this,[a,c]);this.location=b;this.features=[]},destroy:function(){OpenLayers.Layer.Markers.prototype.destroy.apply(this,arguments);this.clearFeatures();this.features=null},loadRSS:function(){this.loaded||(this.events.triggerEvent("loadstart"),OpenLayers.Request.GET({url:this.location, success:this.parseData,scope:this}),this.loaded=!0)},moveTo:function(a,b,c){OpenLayers.Layer.Markers.prototype.moveTo.apply(this,arguments);this.visibility&&!this.loaded&&this.loadRSS()},parseData:function(a){var b=a.responseXML;if(!b||!b.documentElement)b=OpenLayers.Format.XML.prototype.read(a.responseText);if(this.useFeedTitle){a=null;try{a=b.getElementsByTagNameNS("*","title")[0].firstChild.nodeValue}catch(c){a=b.getElementsByTagName("title")[0].firstChild.nodeValue}a&&this.setName(a)}a={};OpenLayers.Util.extend(a, this.formatOptions);this.map&&!this.projection.equals(this.map.getProjectionObject())&&(a.externalProjection=this.projection,a.internalProjection=this.map.getProjectionObject());for(var b=(new OpenLayers.Format.GeoRSS(a)).read(b),a=0,d=b.length;a<d;a++){var e={},f=b[a];if(f.geometry){var g=f.attributes.title?f.attributes.title:"Untitled",h=f.attributes.description?f.attributes.description:"No description.",i=f.attributes.link?f.attributes.link:"",f=f.geometry.getBounds().getCenterLonLat();e.icon= null==this.icon?OpenLayers.Marker.defaultIcon():this.icon.clone();e.popupSize=this.popupSize?this.popupSize.clone():new OpenLayers.Size(250,120);if(g||h){e.title=g;e.description=h;var j='<div class="olLayerGeoRSSClose">[x]</div>',j=j+'<div class="olLayerGeoRSSTitle">';i&&(j+='<a class="link" href="'+i+'" target="_blank">');j+=g;i&&(j+="</a>");j+="</div>";j+='<div style="" class="olLayerGeoRSSDescription">';j+=h;j+="</div>";e.popupContentHTML=j}f=new OpenLayers.Feature(this,f,e);this.features.push(f); e=f.createMarker();e.events.register("click",f,this.markerClick);this.addMarker(e)}}this.events.triggerEvent("loadend")},markerClick:function(a){var b=this==this.layer.selectedFeature;this.layer.selectedFeature=!b?this:null;for(var c=0,d=this.layer.map.popups.length;c<d;c++)this.layer.map.removePopup(this.layer.map.popups[c]);b||(b=this.createPopup(),OpenLayers.Event.observe(b.div,"click",OpenLayers.Function.bind(function(){for(var a=0,b=this.layer.map.popups.length;a<b;a++)this.layer.map.removePopup(this.layer.map.popups[a])}, this)),this.layer.map.addPopup(b));OpenLayers.Event.stop(a)},clearFeatures:function(){if(null!=this.features)for(;0<this.features.length;){var a=this.features[0];OpenLayers.Util.removeItem(this.features,a);a.destroy()}},CLASS_NAME:"OpenLayers.Layer.GeoRSS"});OpenLayers.Symbolizer.Point=OpenLayers.Class(OpenLayers.Symbolizer,{initialize:function(a){OpenLayers.Symbolizer.prototype.initialize.apply(this,arguments)},CLASS_NAME:"OpenLayers.Symbolizer.Point"});OpenLayers.Symbolizer.Line=OpenLayers.Class(OpenLayers.Symbolizer,{initialize:function(a){OpenLayers.Symbolizer.prototype.initialize.apply(this,arguments)},CLASS_NAME:"OpenLayers.Symbolizer.Line"});OpenLayers.Symbolizer.Text=OpenLayers.Class(OpenLayers.Symbolizer,{initialize:function(a){OpenLayers.Symbolizer.prototype.initialize.apply(this,arguments)},CLASS_NAME:"OpenLayers.Symbolizer.Text"});OpenLayers.Format.SLD.v1=OpenLayers.Class(OpenLayers.Format.Filter.v1_0_0,{namespaces:{sld:"http://www.opengis.net/sld",ogc:"http://www.opengis.net/ogc",gml:"http://www.opengis.net/gml",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},defaultPrefix:"sld",schemaLocation:null,multipleSymbolizers:!1,featureTypeCounter:null,defaultSymbolizer:{fillColor:"#808080",fillOpacity:1,strokeColor:"#000000",strokeOpacity:1,strokeWidth:1,strokeDashstyle:"solid",pointRadius:3, graphicName:"square"},read:function(a,b){var b=OpenLayers.Util.applyDefaults(b,this.options),c={namedLayers:!0===b.namedLayersAsArray?[]:{}};this.readChildNodes(a,c);return c},readers:OpenLayers.Util.applyDefaults({sld:{StyledLayerDescriptor:function(a,b){b.version=a.getAttribute("version");this.readChildNodes(a,b)},Name:function(a,b){b.name=this.getChildValue(a)},Title:function(a,b){b.title=this.getChildValue(a)},Abstract:function(a,b){b.description=this.getChildValue(a)},NamedLayer:function(a,b){var c= {userStyles:[],namedStyles:[]};this.readChildNodes(a,c);for(var d=0,e=c.userStyles.length;d<e;++d)c.userStyles[d].layerName=c.name;OpenLayers.Util.isArray(b.namedLayers)?b.namedLayers.push(c):b.namedLayers[c.name]=c},NamedStyle:function(a,b){b.namedStyles.push(this.getChildName(a.firstChild))},UserStyle:function(a,b){var c={defaultsPerSymbolizer:!0,rules:[]};this.featureTypeCounter=-1;this.readChildNodes(a,c);this.multipleSymbolizers?(delete c.defaultsPerSymbolizer,c=new OpenLayers.Style2(c)):c=new OpenLayers.Style(this.defaultSymbolizer, c);b.userStyles.push(c)},IsDefault:function(a,b){"1"==this.getChildValue(a)&&(b.isDefault=!0)},FeatureTypeStyle:function(a,b){++this.featureTypeCounter;var c={rules:this.multipleSymbolizers?b.rules:[]};this.readChildNodes(a,c);this.multipleSymbolizers||(b.rules=c.rules)},Rule:function(a,b){var c;this.multipleSymbolizers&&(c={symbolizers:[]});c=new OpenLayers.Rule(c);this.readChildNodes(a,c);b.rules.push(c)},ElseFilter:function(a,b){b.elseFilter=!0},MinScaleDenominator:function(a,b){b.minScaleDenominator= parseFloat(this.getChildValue(a))},MaxScaleDenominator:function(a,b){b.maxScaleDenominator=parseFloat(this.getChildValue(a))},TextSymbolizer:function(a,b){var c={};this.readChildNodes(a,c);this.multipleSymbolizers?(c.zIndex=this.featureTypeCounter,b.symbolizers.push(new OpenLayers.Symbolizer.Text(c))):b.symbolizer.Text=OpenLayers.Util.applyDefaults(c,b.symbolizer.Text)},LabelPlacement:function(a,b){this.readChildNodes(a,b)},PointPlacement:function(a,b){var c={};this.readChildNodes(a,c);c.labelRotation= c.rotation;delete c.rotation;var d,e=b.labelAnchorPointX,f=b.labelAnchorPointY;e<=1/3?d="l":e>1/3&&e<2/3?d="c":e>=2/3&&(d="r");f<=1/3?d+="b":f>1/3&&f<2/3?d+="m":f>=2/3&&(d+="t");c.labelAlign=d;OpenLayers.Util.applyDefaults(b,c)},AnchorPoint:function(a,b){this.readChildNodes(a,b)},AnchorPointX:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.labelAnchorPointX=c)},AnchorPointY:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.labelAnchorPointY=c)},Displacement:function(a, b){this.readChildNodes(a,b)},DisplacementX:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.labelXOffset=c)},DisplacementY:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.labelYOffset=c)},LinePlacement:function(a,b){this.readChildNodes(a,b)},PerpendicularOffset:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.labelPerpendicularOffset=c)},Label:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.label=c)},Font:function(a,b){this.readChildNodes(a, b)},Halo:function(a,b){var c={};this.readChildNodes(a,c);b.haloRadius=c.haloRadius;b.haloColor=c.fillColor;b.haloOpacity=c.fillOpacity},Radius:function(a,b){var c=this.readers.ogc._expression.call(this,a);null!=c&&(b.haloRadius=c)},RasterSymbolizer:function(a,b){var c={};this.readChildNodes(a,c);this.multipleSymbolizers?(c.zIndex=this.featureTypeCounter,b.symbolizers.push(new OpenLayers.Symbolizer.Raster(c))):b.symbolizer.Raster=OpenLayers.Util.applyDefaults(c,b.symbolizer.Raster)},Geometry:function(a, b){b.geometry={};this.readChildNodes(a,b.geometry)},ColorMap:function(a,b){b.colorMap=[];this.readChildNodes(a,b.colorMap)},ColorMapEntry:function(a,b){var c=a.getAttribute("quantity"),d=a.getAttribute("opacity");b.push({color:a.getAttribute("color"),quantity:null!==c?parseFloat(c):void 0,label:a.getAttribute("label")||void 0,opacity:null!==d?parseFloat(d):void 0})},LineSymbolizer:function(a,b){var c={};this.readChildNodes(a,c);this.multipleSymbolizers?(c.zIndex=this.featureTypeCounter,b.symbolizers.push(new OpenLayers.Symbolizer.Line(c))): b.symbolizer.Line=OpenLayers.Util.applyDefaults(c,b.symbolizer.Line)},PolygonSymbolizer:function(a,b){var c={fill:!1,stroke:!1};this.multipleSymbolizers||(c=b.symbolizer.Polygon||c);this.readChildNodes(a,c);this.multipleSymbolizers?(c.zIndex=this.featureTypeCounter,b.symbolizers.push(new OpenLayers.Symbolizer.Polygon(c))):b.symbolizer.Polygon=c},PointSymbolizer:function(a,b){var c={fill:!1,stroke:!1,graphic:!1};this.multipleSymbolizers||(c=b.symbolizer.Point||c);this.readChildNodes(a,c);this.multipleSymbolizers? (c.zIndex=this.featureTypeCounter,b.symbolizers.push(new OpenLayers.Symbolizer.Point(c))):b.symbolizer.Point=c},Stroke:function(a,b){b.stroke=!0;this.readChildNodes(a,b)},Fill:function(a,b){b.fill=!0;this.readChildNodes(a,b)},CssParameter:function(a,b){var c=a.getAttribute("name"),d=this.cssMap[c];b.label&&("fill"===c?d="fontColor":"fill-opacity"===c&&(d="fontOpacity"));d&&(c=this.readers.ogc._expression.call(this,a))&&(b[d]=c)},Graphic:function(a,b){b.graphic=!0;var c={};this.readChildNodes(a,c); for(var d="stroke strokeColor strokeWidth strokeOpacity strokeLinecap fill fillColor fillOpacity graphicName rotation graphicFormat".split(" "),e,f,g=0,h=d.length;g<h;++g)e=d[g],f=c[e],void 0!=f&&(b[e]=f);void 0!=c.opacity&&(b.graphicOpacity=c.opacity);void 0!=c.size&&(isNaN(c.size/2)?b.graphicWidth=c.size:b.pointRadius=c.size/2);void 0!=c.href&&(b.externalGraphic=c.href);void 0!=c.rotation&&(b.rotation=c.rotation)},ExternalGraphic:function(a,b){this.readChildNodes(a,b)},Mark:function(a,b){this.readChildNodes(a, b)},WellKnownName:function(a,b){b.graphicName=this.getChildValue(a)},Opacity:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.opacity=c)},Size:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.size=c)},Rotation:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.rotation=c)},OnlineResource:function(a,b){b.href=this.getAttributeNS(a,this.namespaces.xlink,"href")},Format:function(a,b){b.graphicFormat=this.getChildValue(a)}}},OpenLayers.Format.Filter.v1_0_0.prototype.readers), cssMap:{stroke:"strokeColor","stroke-opacity":"strokeOpacity","stroke-width":"strokeWidth","stroke-linecap":"strokeLinecap","stroke-dasharray":"strokeDashstyle",fill:"fillColor","fill-opacity":"fillOpacity","font-family":"fontFamily","font-size":"fontSize","font-weight":"fontWeight","font-style":"fontStyle"},getCssProperty:function(a){var b=null,c;for(c in this.cssMap)if(this.cssMap[c]==a){b=c;break}return b},getGraphicFormat:function(a){var b,c;for(c in this.graphicFormats)if(this.graphicFormats[c].test(a)){b= c;break}return b||this.defaultGraphicFormat},defaultGraphicFormat:"image/png",graphicFormats:{"image/jpeg":/\.jpe?g$/i,"image/gif":/\.gif$/i,"image/png":/\.png$/i},write:function(a){return this.writers.sld.StyledLayerDescriptor.apply(this,[a])},writers:OpenLayers.Util.applyDefaults({sld:{_OGCExpression:function(a,b){var c=this.createElementNSPlus(a),d="string"==typeof b?b.split("${"):[b];c.appendChild(this.createTextNode(d[0]));for(var e,f,g=1,h=d.length;g<h;g++)e=d[g],f=e.indexOf("}"),0<f?(this.writeNode("ogc:PropertyName", {property:e.substring(0,f)},c),c.appendChild(this.createTextNode(e.substring(++f)))):c.appendChild(this.createTextNode("${"+e));return c},StyledLayerDescriptor:function(a){var b=this.createElementNSPlus("sld:StyledLayerDescriptor",{attributes:{version:this.VERSION,"xsi:schemaLocation":this.schemaLocation}});b.setAttribute("xmlns:ogc",this.namespaces.ogc);b.setAttribute("xmlns:gml",this.namespaces.gml);a.name&&this.writeNode("Name",a.name,b);a.title&&this.writeNode("Title",a.title,b);a.description&& this.writeNode("Abstract",a.description,b);if(OpenLayers.Util.isArray(a.namedLayers))for(var c=0,d=a.namedLayers.length;c<d;++c)this.writeNode("NamedLayer",a.namedLayers[c],b);else for(c in a.namedLayers)this.writeNode("NamedLayer",a.namedLayers[c],b);return b},Name:function(a){return this.createElementNSPlus("sld:Name",{value:a})},Title:function(a){return this.createElementNSPlus("sld:Title",{value:a})},Abstract:function(a){return this.createElementNSPlus("sld:Abstract",{value:a})},NamedLayer:function(a){var b= this.createElementNSPlus("sld:NamedLayer");this.writeNode("Name",a.name,b);if(a.namedStyles)for(var c=0,d=a.namedStyles.length;c<d;++c)this.writeNode("NamedStyle",a.namedStyles[c],b);if(a.userStyles){c=0;for(d=a.userStyles.length;c<d;++c)this.writeNode("UserStyle",a.userStyles[c],b)}return b},NamedStyle:function(a){var b=this.createElementNSPlus("sld:NamedStyle");this.writeNode("Name",a,b);return b},UserStyle:function(a){var b=this.createElementNSPlus("sld:UserStyle");a.name&&this.writeNode("Name", a.name,b);a.title&&this.writeNode("Title",a.title,b);a.description&&this.writeNode("Abstract",a.description,b);a.isDefault&&this.writeNode("IsDefault",a.isDefault,b);if(this.multipleSymbolizers&&a.rules){for(var c={"0":[]},d=[0],e,f,g,h,i,j=0,k=a.rules.length;j<k;++j)if(e=a.rules[j],e.symbolizers){f={};for(var l=0,m=e.symbolizers.length;l<m;++l)g=e.symbolizers[l],h=g.zIndex,h in f||(i=e.clone(),i.symbolizers=[],f[h]=i),f[h].symbolizers.push(g.clone());for(h in f)h in c||(d.push(h),c[h]=[]),c[h].push(f[h])}else c[0].push(e.clone()); d.sort();j=0;for(k=d.length;j<k;++j)e=c[d[j]],0<e.length&&(i=a.clone(),i.rules=c[d[j]],this.writeNode("FeatureTypeStyle",i,b))}else this.writeNode("FeatureTypeStyle",a,b);return b},IsDefault:function(a){return this.createElementNSPlus("sld:IsDefault",{value:a?"1":"0"})},FeatureTypeStyle:function(a){for(var b=this.createElementNSPlus("sld:FeatureTypeStyle"),c=0,d=a.rules.length;c<d;++c)this.writeNode("Rule",a.rules[c],b);return b},Rule:function(a){var b=this.createElementNSPlus("sld:Rule");a.name&& this.writeNode("Name",a.name,b);a.title&&this.writeNode("Title",a.title,b);a.description&&this.writeNode("Abstract",a.description,b);a.elseFilter?this.writeNode("ElseFilter",null,b):a.filter&&this.writeNode("ogc:Filter",a.filter,b);void 0!=a.minScaleDenominator&&this.writeNode("MinScaleDenominator",a.minScaleDenominator,b);void 0!=a.maxScaleDenominator&&this.writeNode("MaxScaleDenominator",a.maxScaleDenominator,b);var c,d;if(this.multipleSymbolizers&&a.symbolizers)for(var e=0,f=a.symbolizers.length;e< f;++e)d=a.symbolizers[e],c=d.CLASS_NAME.split(".").pop(),this.writeNode(c+"Symbolizer",d,b);else for(var f=OpenLayers.Style.SYMBOLIZER_PREFIXES,e=0,g=f.length;e<g;++e)c=f[e],(d=a.symbolizer[c])&&this.writeNode(c+"Symbolizer",d,b);return b},ElseFilter:function(){return this.createElementNSPlus("sld:ElseFilter")},MinScaleDenominator:function(a){return this.createElementNSPlus("sld:MinScaleDenominator",{value:a})},MaxScaleDenominator:function(a){return this.createElementNSPlus("sld:MaxScaleDenominator", {value:a})},LineSymbolizer:function(a){var b=this.createElementNSPlus("sld:LineSymbolizer");this.writeNode("Stroke",a,b);return b},Stroke:function(a){var b=this.createElementNSPlus("sld:Stroke");void 0!=a.strokeColor&&this.writeNode("CssParameter",{symbolizer:a,key:"strokeColor"},b);void 0!=a.strokeOpacity&&this.writeNode("CssParameter",{symbolizer:a,key:"strokeOpacity"},b);void 0!=a.strokeWidth&&this.writeNode("CssParameter",{symbolizer:a,key:"strokeWidth"},b);void 0!=a.strokeDashstyle&&"solid"!== a.strokeDashstyle&&this.writeNode("CssParameter",{symbolizer:a,key:"strokeDashstyle"},b);void 0!=a.strokeLinecap&&this.writeNode("CssParameter",{symbolizer:a,key:"strokeLinecap"},b);return b},CssParameter:function(a){return this.createElementNSPlus("sld:CssParameter",{attributes:{name:this.getCssProperty(a.key)},value:a.symbolizer[a.key]})},TextSymbolizer:function(a){var b=this.createElementNSPlus("sld:TextSymbolizer");null!=a.label&&this.writeNode("Label",a.label,b);(null!=a.fontFamily||null!=a.fontSize|| null!=a.fontWeight||null!=a.fontStyle)&&this.writeNode("Font",a,b);(null!=a.labelAnchorPointX||null!=a.labelAnchorPointY||null!=a.labelAlign||null!=a.labelXOffset||null!=a.labelYOffset||null!=a.labelRotation||null!=a.labelPerpendicularOffset)&&this.writeNode("LabelPlacement",a,b);(null!=a.haloRadius||null!=a.haloColor||null!=a.haloOpacity)&&this.writeNode("Halo",a,b);(null!=a.fontColor||null!=a.fontOpacity)&&this.writeNode("Fill",{fillColor:a.fontColor,fillOpacity:a.fontOpacity},b);return b},LabelPlacement:function(a){var b= this.createElementNSPlus("sld:LabelPlacement");(null!=a.labelAnchorPointX||null!=a.labelAnchorPointY||null!=a.labelAlign||null!=a.labelXOffset||null!=a.labelYOffset||null!=a.labelRotation)&&null==a.labelPerpendicularOffset&&this.writeNode("PointPlacement",a,b);null!=a.labelPerpendicularOffset&&this.writeNode("LinePlacement",a,b);return b},LinePlacement:function(a){var b=this.createElementNSPlus("sld:LinePlacement");this.writeNode("PerpendicularOffset",a.labelPerpendicularOffset,b);return b},PerpendicularOffset:function(a){return this.createElementNSPlus("sld:PerpendicularOffset", {value:a})},PointPlacement:function(a){var b=this.createElementNSPlus("sld:PointPlacement");(null!=a.labelAnchorPointX||null!=a.labelAnchorPointY||null!=a.labelAlign)&&this.writeNode("AnchorPoint",a,b);(null!=a.labelXOffset||null!=a.labelYOffset)&&this.writeNode("Displacement",a,b);null!=a.labelRotation&&this.writeNode("Rotation",a.labelRotation,b);return b},AnchorPoint:function(a){var b=this.createElementNSPlus("sld:AnchorPoint"),c=a.labelAnchorPointX,d=a.labelAnchorPointY;null!=c&&this.writeNode("AnchorPointX", c,b);null!=d&&this.writeNode("AnchorPointY",d,b);if(null==c&&null==d){var e=a.labelAlign.substr(0,1),a=a.labelAlign.substr(1,1);"l"===e?c=0:"c"===e?c=0.5:"r"===e&&(c=1);"b"===a?d=0:"m"===a?d=0.5:"t"===a&&(d=1);this.writeNode("AnchorPointX",c,b);this.writeNode("AnchorPointY",d,b)}return b},AnchorPointX:function(a){return this.createElementNSPlus("sld:AnchorPointX",{value:a})},AnchorPointY:function(a){return this.createElementNSPlus("sld:AnchorPointY",{value:a})},Displacement:function(a){var b=this.createElementNSPlus("sld:Displacement"); null!=a.labelXOffset&&this.writeNode("DisplacementX",a.labelXOffset,b);null!=a.labelYOffset&&this.writeNode("DisplacementY",a.labelYOffset,b);return b},DisplacementX:function(a){return this.createElementNSPlus("sld:DisplacementX",{value:a})},DisplacementY:function(a){return this.createElementNSPlus("sld:DisplacementY",{value:a})},Font:function(a){var b=this.createElementNSPlus("sld:Font");a.fontFamily&&this.writeNode("CssParameter",{symbolizer:a,key:"fontFamily"},b);a.fontSize&&this.writeNode("CssParameter", {symbolizer:a,key:"fontSize"},b);a.fontWeight&&this.writeNode("CssParameter",{symbolizer:a,key:"fontWeight"},b);a.fontStyle&&this.writeNode("CssParameter",{symbolizer:a,key:"fontStyle"},b);return b},Label:function(a){return this.writers.sld._OGCExpression.call(this,"sld:Label",a)},Halo:function(a){var b=this.createElementNSPlus("sld:Halo");a.haloRadius&&this.writeNode("Radius",a.haloRadius,b);(a.haloColor||a.haloOpacity)&&this.writeNode("Fill",{fillColor:a.haloColor,fillOpacity:a.haloOpacity},b); return b},Radius:function(a){return this.createElementNSPlus("sld:Radius",{value:a})},RasterSymbolizer:function(a){var b=this.createElementNSPlus("sld:RasterSymbolizer");a.geometry&&this.writeNode("Geometry",a.geometry,b);a.opacity&&this.writeNode("Opacity",a.opacity,b);a.colorMap&&this.writeNode("ColorMap",a.colorMap,b);return b},Geometry:function(a){var b=this.createElementNSPlus("sld:Geometry");a.property&&this.writeNode("ogc:PropertyName",a,b);return b},ColorMap:function(a){for(var b=this.createElementNSPlus("sld:ColorMap"), c=0,d=a.length;c<d;++c)this.writeNode("ColorMapEntry",a[c],b);return b},ColorMapEntry:function(a){var b=this.createElementNSPlus("sld:ColorMapEntry");b.setAttribute("color",a.color);void 0!==a.opacity&&b.setAttribute("opacity",parseFloat(a.opacity));void 0!==a.quantity&&b.setAttribute("quantity",parseFloat(a.quantity));void 0!==a.label&&b.setAttribute("label",a.label);return b},PolygonSymbolizer:function(a){var b=this.createElementNSPlus("sld:PolygonSymbolizer");!1!==a.fill&&this.writeNode("Fill", a,b);!1!==a.stroke&&this.writeNode("Stroke",a,b);return b},Fill:function(a){var b=this.createElementNSPlus("sld:Fill");a.fillColor&&this.writeNode("CssParameter",{symbolizer:a,key:"fillColor"},b);null!=a.fillOpacity&&this.writeNode("CssParameter",{symbolizer:a,key:"fillOpacity"},b);return b},PointSymbolizer:function(a){var b=this.createElementNSPlus("sld:PointSymbolizer");this.writeNode("Graphic",a,b);return b},Graphic:function(a){var b=this.createElementNSPlus("sld:Graphic");void 0!=a.externalGraphic? this.writeNode("ExternalGraphic",a,b):this.writeNode("Mark",a,b);void 0!=a.graphicOpacity&&this.writeNode("Opacity",a.graphicOpacity,b);void 0!=a.pointRadius?this.writeNode("Size",2*a.pointRadius,b):void 0!=a.graphicWidth&&this.writeNode("Size",a.graphicWidth,b);void 0!=a.rotation&&this.writeNode("Rotation",a.rotation,b);return b},ExternalGraphic:function(a){var b=this.createElementNSPlus("sld:ExternalGraphic");this.writeNode("OnlineResource",a.externalGraphic,b);this.writeNode("Format",a.graphicFormat|| this.getGraphicFormat(a.externalGraphic),b);return b},Mark:function(a){var b=this.createElementNSPlus("sld:Mark");a.graphicName&&this.writeNode("WellKnownName",a.graphicName,b);!1!==a.fill&&this.writeNode("Fill",a,b);!1!==a.stroke&&this.writeNode("Stroke",a,b);return b},WellKnownName:function(a){return this.createElementNSPlus("sld:WellKnownName",{value:a})},Opacity:function(a){return this.createElementNSPlus("sld:Opacity",{value:a})},Size:function(a){return this.writers.sld._OGCExpression.call(this, "sld:Size",a)},Rotation:function(a){return this.createElementNSPlus("sld:Rotation",{value:a})},OnlineResource:function(a){return this.createElementNSPlus("sld:OnlineResource",{attributes:{"xlink:type":"simple","xlink:href":a}})},Format:function(a){return this.createElementNSPlus("sld:Format",{value:a})}}},OpenLayers.Format.Filter.v1_0_0.prototype.writers),CLASS_NAME:"OpenLayers.Format.SLD.v1"});OpenLayers.Layer.WMS=OpenLayers.Class(OpenLayers.Layer.Grid,{DEFAULT_PARAMS:{service:"WMS",version:"1.1.1",request:"GetMap",styles:"",format:"image/jpeg"},isBaseLayer:!0,encodeBBOX:!1,noMagic:!1,yx:{},initialize:function(a,b,c,d){var e=[],c=OpenLayers.Util.upperCaseObject(c);1.3<=parseFloat(c.VERSION)&&!c.EXCEPTIONS&&(c.EXCEPTIONS="INIMAGE");e.push(a,b,c,d);OpenLayers.Layer.Grid.prototype.initialize.apply(this,e);OpenLayers.Util.applyDefaults(this.params,OpenLayers.Util.upperCaseObject(this.DEFAULT_PARAMS)); if(!this.noMagic&&this.params.TRANSPARENT&&"true"==this.params.TRANSPARENT.toString().toLowerCase()){if(null==d||!d.isBaseLayer)this.isBaseLayer=!1;"image/jpeg"==this.params.FORMAT&&(this.params.FORMAT=OpenLayers.Util.alphaHack()?"image/gif":"image/png")}},clone:function(a){null==a&&(a=new OpenLayers.Layer.WMS(this.name,this.url,this.params,this.getOptions()));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a])},reverseAxisOrder:function(){var a=this.projection.getCode();return 1.3<=parseFloat(this.params.VERSION)&& !(!this.yx[a]&&!OpenLayers.Projection.defaults[a].yx)},getURL:function(a){var a=this.adjustBounds(a),b=this.getImageSize(),c={},d=this.reverseAxisOrder();c.BBOX=this.encodeBBOX?a.toBBOX(null,d):a.toArray(d);c.WIDTH=b.w;c.HEIGHT=b.h;return this.getFullRequestString(c)},mergeNewParams:function(a){a=[OpenLayers.Util.upperCaseObject(a)];return OpenLayers.Layer.Grid.prototype.mergeNewParams.apply(this,a)},getFullRequestString:function(a,b){var c=this.map.getProjectionObject(),c=this.projection&&this.projection.equals(c)? this.projection.getCode():c.getCode(),c="none"==c?null:c;1.3<=parseFloat(this.params.VERSION)?this.params.CRS=c:this.params.SRS=c;"boolean"==typeof this.params.TRANSPARENT&&(a.TRANSPARENT=this.params.TRANSPARENT?"TRUE":"FALSE");return OpenLayers.Layer.Grid.prototype.getFullRequestString.apply(this,arguments)},CLASS_NAME:"OpenLayers.Layer.WMS"});OpenLayers.Format.WMC.v1_1_0=OpenLayers.Class(OpenLayers.Format.WMC.v1,{VERSION:"1.1.0",schemaLocation:"http://www.opengis.net/context http://schemas.opengis.net/context/1.1.0/context.xsd",initialize:function(a){OpenLayers.Format.WMC.v1.prototype.initialize.apply(this,[a])},read_sld_MinScaleDenominator:function(a,b){var c=parseFloat(this.getChildValue(b));0<c&&(a.maxScale=c)},read_sld_MaxScaleDenominator:function(a,b){a.minScale=parseFloat(this.getChildValue(b))},read_wmc_SRS:function(a,b){"srs"in a||(a.srs={});a.srs[this.getChildValue(b)]=!0},write_wmc_Layer:function(a){var b=OpenLayers.Format.WMC.v1.prototype.write_wmc_Layer.apply(this,[a]);if(a.maxScale){var c=this.createElementNS(this.namespaces.sld,"sld:MinScaleDenominator");c.appendChild(this.createTextNode(a.maxScale.toPrecision(16)));b.appendChild(c)}a.minScale&&(c=this.createElementNS(this.namespaces.sld,"sld:MaxScaleDenominator"),c.appendChild(this.createTextNode(a.minScale.toPrecision(16))),b.appendChild(c));if(a.srs)for(var d in a.srs)b.appendChild(this.createElementDefaultNS("SRS", d));b.appendChild(this.write_wmc_FormatList(a));b.appendChild(this.write_wmc_StyleList(a));a.dimensions&&b.appendChild(this.write_wmc_DimensionList(a));b.appendChild(this.write_wmc_LayerExtension(a));return b},CLASS_NAME:"OpenLayers.Format.WMC.v1_1_0"});OpenLayers.Format.XLS=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.1.0",stringifyOutput:!0,CLASS_NAME:"OpenLayers.Format.XLS"});OpenLayers.Format.XLS.v1=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{xls:"http://www.opengis.net/xls",gml:"http://www.opengis.net/gml",xsi:"http://www.w3.org/2001/XMLSchema-instance"},regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},xy:!0,defaultPrefix:"xls",schemaLocation:null,read:function(a,b){OpenLayers.Util.applyDefaults(b,this.options);var c={};this.readChildNodes(a,c);return c},readers:{xls:{XLS:function(a,b){b.version=a.getAttribute("version"); this.readChildNodes(a,b)},Response:function(a,b){this.readChildNodes(a,b)},GeocodeResponse:function(a,b){b.responseLists=[];this.readChildNodes(a,b)},GeocodeResponseList:function(a,b){var c={features:[],numberOfGeocodedAddresses:parseInt(a.getAttribute("numberOfGeocodedAddresses"))};b.responseLists.push(c);this.readChildNodes(a,c)},GeocodedAddress:function(a,b){var c=new OpenLayers.Feature.Vector;b.features.push(c);this.readChildNodes(a,c);c.geometry=c.components[0]},GeocodeMatchCode:function(a,b){b.attributes.matchCode= {accuracy:parseFloat(a.getAttribute("accuracy")),matchType:a.getAttribute("matchType")}},Address:function(a,b){var c={countryCode:a.getAttribute("countryCode"),addressee:a.getAttribute("addressee"),street:[],place:[]};b.attributes.address=c;this.readChildNodes(a,c)},freeFormAddress:function(a,b){b.freeFormAddress=this.getChildValue(a)},StreetAddress:function(a,b){this.readChildNodes(a,b)},Building:function(a,b){b.building={number:a.getAttribute("number"),subdivision:a.getAttribute("subdivision"), buildingName:a.getAttribute("buildingName")}},Street:function(a,b){b.street.push(this.getChildValue(a))},Place:function(a,b){b.place[a.getAttribute("type")]=this.getChildValue(a)},PostalCode:function(a,b){b.postalCode=this.getChildValue(a)}},gml:OpenLayers.Format.GML.v3.prototype.readers.gml},write:function(a){return this.writers.xls.XLS.apply(this,[a])},writers:{xls:{XLS:function(a){var b=this.createElementNSPlus("xls:XLS",{attributes:{version:this.VERSION,"xsi:schemaLocation":this.schemaLocation}}); this.writeNode("RequestHeader",a.header,b);this.writeNode("Request",a,b);return b},RequestHeader:function(){return this.createElementNSPlus("xls:RequestHeader")},Request:function(a){var b=this.createElementNSPlus("xls:Request",{attributes:{methodName:"GeocodeRequest",requestID:a.requestID||"",version:this.VERSION}});this.writeNode("GeocodeRequest",a.addresses,b);return b},GeocodeRequest:function(a){for(var b=this.createElementNSPlus("xls:GeocodeRequest"),c=0,d=a.length;c<d;c++)this.writeNode("Address", a[c],b);return b},Address:function(a){var b=this.createElementNSPlus("xls:Address",{attributes:{countryCode:a.countryCode}});a.freeFormAddress?this.writeNode("freeFormAddress",a.freeFormAddress,b):(a.street&&this.writeNode("StreetAddress",a,b),a.municipality&&this.writeNode("Municipality",a.municipality,b),a.countrySubdivision&&this.writeNode("CountrySubdivision",a.countrySubdivision,b),a.postalCode&&this.writeNode("PostalCode",a.postalCode,b));return b},freeFormAddress:function(a){return this.createElementNSPlus("freeFormAddress", {value:a})},StreetAddress:function(a){var b=this.createElementNSPlus("xls:StreetAddress");a.building&&this.writeNode(b,"Building",a.building);a=a.street;OpenLayers.Util.isArray(a)||(a=[a]);for(var c=0,d=a.length;c<d;c++)this.writeNode("Street",a[c],b);return b},Building:function(a){return this.createElementNSPlus("xls:Building",{attributes:{number:a.number,subdivision:a.subdivision,buildingName:a.buildingName}})},Street:function(a){return this.createElementNSPlus("xls:Street",{value:a})},Municipality:function(a){return this.createElementNSPlus("xls:Place", {attributes:{type:"Municipality"},value:a})},CountrySubdivision:function(a){return this.createElementNSPlus("xls:Place",{attributes:{type:"CountrySubdivision"},value:a})},PostalCode:function(a){return this.createElementNSPlus("xls:PostalCode",{value:a})}}},CLASS_NAME:"OpenLayers.Format.XLS.v1"});OpenLayers.Format.XLS.v1_1_0=OpenLayers.Class(OpenLayers.Format.XLS.v1,{VERSION:"1.1",schemaLocation:"http://www.opengis.net/xls http://schemas.opengis.net/ols/1.1.0/LocationUtilityService.xsd",CLASS_NAME:"OpenLayers.Format.XLS.v1_1_0"});OpenLayers.Format.XLS.v1_1=OpenLayers.Format.XLS.v1_1_0;OpenLayers.Renderer.SVG=OpenLayers.Class(OpenLayers.Renderer.Elements,{xmlns:"http://www.w3.org/2000/svg",xlinkns:"http://www.w3.org/1999/xlink",MAX_PIXEL:15E3,translationParameters:null,symbolMetrics:null,initialize:function(a){this.supported()&&(OpenLayers.Renderer.Elements.prototype.initialize.apply(this,arguments),this.translationParameters={x:0,y:0},this.symbolMetrics={})},supported:function(){return document.implementation&&(document.implementation.hasFeature("org.w3c.svg","1.0")||document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#SVG", "1.1")||document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1"))},inValidRange:function(a,b,c){a+=c?0:this.translationParameters.x;b+=c?0:this.translationParameters.y;return a>=-this.MAX_PIXEL&&a<=this.MAX_PIXEL&&b>=-this.MAX_PIXEL&&b<=this.MAX_PIXEL},setExtent:function(a,b){var c=OpenLayers.Renderer.Elements.prototype.setExtent.apply(this,arguments),d=this.getResolution(),e=-a.left/d,d=a.top/d;if(b)return this.left=e,this.top=d,this.rendererRoot.setAttributeNS(null, "viewBox","0 0 "+this.size.w+" "+this.size.h),this.translate(this.xOffset,0),!0;(e=this.translate(e-this.left+this.xOffset,d-this.top))||this.setExtent(a,!0);return c&&e},translate:function(a,b){if(this.inValidRange(a,b,!0)){var c="";if(a||b)c="translate("+a+","+b+")";this.root.setAttributeNS(null,"transform",c);this.translationParameters={x:a,y:b};return!0}return!1},setSize:function(a){OpenLayers.Renderer.prototype.setSize.apply(this,arguments);this.rendererRoot.setAttributeNS(null,"width",this.size.w); this.rendererRoot.setAttributeNS(null,"height",this.size.h)},getNodeType:function(a,b){var c=null;switch(a.CLASS_NAME){case "OpenLayers.Geometry.Point":c=b.externalGraphic?"image":this.isComplexSymbol(b.graphicName)?"svg":"circle";break;case "OpenLayers.Geometry.Rectangle":c="rect";break;case "OpenLayers.Geometry.LineString":c="polyline";break;case "OpenLayers.Geometry.LinearRing":c="polygon";break;case "OpenLayers.Geometry.Polygon":case "OpenLayers.Geometry.Curve":c="path"}return c},setStyle:function(a, b,c){var b=b||a._style,c=c||a._options,d=parseFloat(a.getAttributeNS(null,"r")),e=1,f;if("OpenLayers.Geometry.Point"==a._geometryClass&&d){a.style.visibility="";if(!1===b.graphic)a.style.visibility="hidden";else if(b.externalGraphic){f=this.getPosition(a);b.graphicTitle&&(a.setAttributeNS(null,"title",b.graphicTitle),d=a.getElementsByTagName("title"),0<d.length?d[0].firstChild.textContent=b.graphicTitle:(d=this.nodeFactory(null,"title"),d.textContent=b.graphicTitle,a.appendChild(d)));b.graphicWidth&& b.graphicHeight&&a.setAttributeNS(null,"preserveAspectRatio","none");var d=b.graphicWidth||b.graphicHeight,g=b.graphicHeight||b.graphicWidth,d=d?d:2*b.pointRadius,g=g?g:2*b.pointRadius,h=void 0!=b.graphicYOffset?b.graphicYOffset:-(0.5*g),i=b.graphicOpacity||b.fillOpacity;a.setAttributeNS(null,"x",(f.x+(void 0!=b.graphicXOffset?b.graphicXOffset:-(0.5*d))).toFixed());a.setAttributeNS(null,"y",(f.y+h).toFixed());a.setAttributeNS(null,"width",d);a.setAttributeNS(null,"height",g);a.setAttributeNS(this.xlinkns, "href",b.externalGraphic);a.setAttributeNS(null,"style","opacity: "+i);a.onclick=OpenLayers.Renderer.SVG.preventDefault}else if(this.isComplexSymbol(b.graphicName)){var d=3*b.pointRadius,g=2*d,j=this.importSymbol(b.graphicName);f=this.getPosition(a);e=3*this.symbolMetrics[j.id][0]/g;h=a.parentNode;i=a.nextSibling;h&&h.removeChild(a);a.firstChild&&a.removeChild(a.firstChild);a.appendChild(j.firstChild.cloneNode(!0));a.setAttributeNS(null,"viewBox",j.getAttributeNS(null,"viewBox"));a.setAttributeNS(null, "width",g);a.setAttributeNS(null,"height",g);a.setAttributeNS(null,"x",f.x-d);a.setAttributeNS(null,"y",f.y-d);i?h.insertBefore(a,i):h&&h.appendChild(a)}else a.setAttributeNS(null,"r",b.pointRadius);d=b.rotation;if((void 0!==d||void 0!==a._rotation)&&f)a._rotation=d,d|=0,"svg"!==a.nodeName?a.setAttributeNS(null,"transform","rotate("+d+" "+f.x+" "+f.y+")"):(f=this.symbolMetrics[j.id],a.firstChild.setAttributeNS(null,"transform","rotate("+d+" "+f[1]+" "+f[2]+")"))}c.isFilled?(a.setAttributeNS(null, "fill",b.fillColor),a.setAttributeNS(null,"fill-opacity",b.fillOpacity)):a.setAttributeNS(null,"fill","none");c.isStroked?(a.setAttributeNS(null,"stroke",b.strokeColor),a.setAttributeNS(null,"stroke-opacity",b.strokeOpacity),a.setAttributeNS(null,"stroke-width",b.strokeWidth*e),a.setAttributeNS(null,"stroke-linecap",b.strokeLinecap||"round"),a.setAttributeNS(null,"stroke-linejoin","round"),b.strokeDashstyle&&a.setAttributeNS(null,"stroke-dasharray",this.dashStyle(b,e))):a.setAttributeNS(null,"stroke", "none");b.pointerEvents&&a.setAttributeNS(null,"pointer-events",b.pointerEvents);null!=b.cursor&&a.setAttributeNS(null,"cursor",b.cursor);return a},dashStyle:function(a,b){var c=a.strokeWidth*b,d=a.strokeDashstyle;switch(d){case "solid":return"none";case "dot":return[1,4*c].join();case "dash":return[4*c,4*c].join();case "dashdot":return[4*c,4*c,1,4*c].join();case "longdash":return[8*c,4*c].join();case "longdashdot":return[8*c,4*c,1,4*c].join();default:return OpenLayers.String.trim(d).replace(/\s+/g, ",")}},createNode:function(a,b){var c=document.createElementNS(this.xmlns,a);b&&c.setAttributeNS(null,"id",b);return c},nodeTypeCompare:function(a,b){return b==a.nodeName},createRenderRoot:function(){var a=this.nodeFactory(this.container.id+"_svgRoot","svg");a.style.display="block";return a},createRoot:function(a){return this.nodeFactory(this.container.id+a,"g")},createDefs:function(){var a=this.nodeFactory(this.container.id+"_defs","defs");this.rendererRoot.appendChild(a);return a},drawPoint:function(a, b){return this.drawCircle(a,b,1)},drawCircle:function(a,b,c){var d=this.getResolution(),e=(b.x-this.featureDx)/d+this.left,b=this.top-b.y/d;return this.inValidRange(e,b)?(a.setAttributeNS(null,"cx",e),a.setAttributeNS(null,"cy",b),a.setAttributeNS(null,"r",c),a):!1},drawLineString:function(a,b){var c=this.getComponentsString(b.components);return c.path?(a.setAttributeNS(null,"points",c.path),c.complete?a:null):!1},drawLinearRing:function(a,b){var c=this.getComponentsString(b.components);return c.path? (a.setAttributeNS(null,"points",c.path),c.complete?a:null):!1},drawPolygon:function(a,b){for(var c="",d=!0,e=!0,f,g,h=0,i=b.components.length;h<i;h++)c+=" M",f=this.getComponentsString(b.components[h].components," "),(g=f.path)?(c+=" "+g,e=f.complete&&e):d=!1;return d?(a.setAttributeNS(null,"d",c+" z"),a.setAttributeNS(null,"fill-rule","evenodd"),e?a:null):!1},drawRectangle:function(a,b){var c=this.getResolution(),d=(b.x-this.featureDx)/c+this.left,e=this.top-b.y/c;return this.inValidRange(d,e)?(a.setAttributeNS(null, "x",d),a.setAttributeNS(null,"y",e),a.setAttributeNS(null,"width",b.width/c),a.setAttributeNS(null,"height",b.height/c),a):!1},drawText:function(a,b,c){var d=!!b.labelOutlineWidth;if(d){var e=OpenLayers.Util.extend({},b);e.fontColor=e.labelOutlineColor;e.fontStrokeColor=e.labelOutlineColor;e.fontStrokeWidth=b.labelOutlineWidth;delete e.labelOutlineWidth;this.drawText(a,e,c)}var f=this.getResolution(),e=(c.x-this.featureDx)/f+this.left,g=c.y/f-this.top,d=d?this.LABEL_OUTLINE_SUFFIX:this.LABEL_ID_SUFFIX, f=this.nodeFactory(a+d,"text");f.setAttributeNS(null,"x",e);f.setAttributeNS(null,"y",-g);b.fontColor&&f.setAttributeNS(null,"fill",b.fontColor);b.fontStrokeColor&&f.setAttributeNS(null,"stroke",b.fontStrokeColor);b.fontStrokeWidth&&f.setAttributeNS(null,"stroke-width",b.fontStrokeWidth);b.fontOpacity&&f.setAttributeNS(null,"opacity",b.fontOpacity);b.fontFamily&&f.setAttributeNS(null,"font-family",b.fontFamily);b.fontSize&&f.setAttributeNS(null,"font-size",b.fontSize);b.fontWeight&&f.setAttributeNS(null, "font-weight",b.fontWeight);b.fontStyle&&f.setAttributeNS(null,"font-style",b.fontStyle);!0===b.labelSelect?(f.setAttributeNS(null,"pointer-events","visible"),f._featureId=a):f.setAttributeNS(null,"pointer-events","none");g=b.labelAlign||OpenLayers.Renderer.defaultSymbolizer.labelAlign;f.setAttributeNS(null,"text-anchor",OpenLayers.Renderer.SVG.LABEL_ALIGN[g[0]]||"middle");!0===OpenLayers.IS_GECKO&&f.setAttributeNS(null,"dominant-baseline",OpenLayers.Renderer.SVG.LABEL_ALIGN[g[1]]||"central");for(var h= b.label.split("\n"),i=h.length;f.childNodes.length>i;)f.removeChild(f.lastChild);for(var j=0;j<i;j++){var k=this.nodeFactory(a+d+"_tspan_"+j,"tspan");!0===b.labelSelect&&(k._featureId=a,k._geometry=c,k._geometryClass=c.CLASS_NAME);!1===OpenLayers.IS_GECKO&&k.setAttributeNS(null,"baseline-shift",OpenLayers.Renderer.SVG.LABEL_VSHIFT[g[1]]||"-35%");k.setAttribute("x",e);if(0==j){var l=OpenLayers.Renderer.SVG.LABEL_VFACTOR[g[1]];null==l&&(l=-0.5);k.setAttribute("dy",l*(i-1)+"em")}else k.setAttribute("dy", "1em");k.textContent=""===h[j]?" ":h[j];k.parentNode||f.appendChild(k)}f.parentNode||this.textRoot.appendChild(f)},getComponentsString:function(a,b){for(var c=[],d=!0,e=a.length,f=[],g,h=0;h<e;h++)g=a[h],c.push(g),(g=this.getShortString(g))?f.push(g):(0<h&&this.getShortString(a[h-1])&&f.push(this.clipLine(a[h],a[h-1])),h<e-1&&this.getShortString(a[h+1])&&f.push(this.clipLine(a[h],a[h+1])),d=!1);return{path:f.join(b||","),complete:d}},clipLine:function(a,b){if(b.equals(a))return"";var c=this.getResolution(), d=this.MAX_PIXEL-this.translationParameters.x,e=this.MAX_PIXEL-this.translationParameters.y,f=(b.x-this.featureDx)/c+this.left,g=this.top-b.y/c,h=(a.x-this.featureDx)/c+this.left,c=this.top-a.y/c,i;if(h<-d||h>d)i=(c-g)/(h-f),h=0>h?-d:d,c=g+(h-f)*i;if(c<-e||c>e)i=(h-f)/(c-g),c=0>c?-e:e,h=f+(c-g)*i;return h+","+c},getShortString:function(a){var b=this.getResolution(),c=(a.x-this.featureDx)/b+this.left,a=this.top-a.y/b;return this.inValidRange(c,a)?c+","+a:!1},getPosition:function(a){return{x:parseFloat(a.getAttributeNS(null, "cx")),y:parseFloat(a.getAttributeNS(null,"cy"))}},importSymbol:function(a){this.defs||(this.defs=this.createDefs());var b=this.container.id+"-"+a,c=document.getElementById(b);if(null!=c)return c;var d=OpenLayers.Renderer.symbol[a];if(!d)throw Error(a+" is not a valid symbol name");var a=this.nodeFactory(b,"symbol"),e=this.nodeFactory(null,"polygon");a.appendChild(e);for(var c=new OpenLayers.Bounds(Number.MAX_VALUE,Number.MAX_VALUE,0,0),f=[],g,h,i=0;i<d.length;i+=2)g=d[i],h=d[i+1],c.left=Math.min(c.left, g),c.bottom=Math.min(c.bottom,h),c.right=Math.max(c.right,g),c.top=Math.max(c.top,h),f.push(g,",",h);e.setAttributeNS(null,"points",f.join(" "));d=c.getWidth();e=c.getHeight();a.setAttributeNS(null,"viewBox",[c.left-d,c.bottom-e,3*d,3*e].join(" "));this.symbolMetrics[b]=[Math.max(d,e),c.getCenterLonLat().lon,c.getCenterLonLat().lat];this.defs.appendChild(a);return a},getFeatureIdFromEvent:function(a){var b=OpenLayers.Renderer.Elements.prototype.getFeatureIdFromEvent.apply(this,arguments);b||(b=a.target, b=b.parentNode&&b!=this.rendererRoot?b.parentNode._featureId:void 0);return b},CLASS_NAME:"OpenLayers.Renderer.SVG"});OpenLayers.Renderer.SVG.LABEL_ALIGN={l:"start",r:"end",b:"bottom",t:"hanging"};OpenLayers.Renderer.SVG.LABEL_VSHIFT={t:"-70%",b:"0"};OpenLayers.Renderer.SVG.LABEL_VFACTOR={t:0,b:-1};OpenLayers.Renderer.SVG.preventDefault=function(a){a.preventDefault&&a.preventDefault()};OpenLayers.Format.SLD.v1_0_0=OpenLayers.Class(OpenLayers.Format.SLD.v1,{VERSION:"1.0.0",schemaLocation:"http://www.opengis.net/sld http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd",CLASS_NAME:"OpenLayers.Format.SLD.v1_0_0"});OpenLayers.Format.OWSContext=OpenLayers.Class(OpenLayers.Format.Context,{defaultVersion:"0.3.1",getVersion:function(a,b){var c=OpenLayers.Format.XML.VersionedOGC.prototype.getVersion.apply(this,arguments);"0.3.0"===c&&(c=this.defaultVersion);return c},toContext:function(a){var b={};"OpenLayers.Map"==a.CLASS_NAME&&(b.bounds=a.getExtent(),b.maxExtent=a.maxExtent,b.projection=a.projection,b.size=a.getSize(),b.layers=a.layers);return b},CLASS_NAME:"OpenLayers.Format.OWSContext"});OpenLayers.Format.OWSContext.v0_3_1=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{owc:"http://www.opengis.net/ows-context",gml:"http://www.opengis.net/gml",kml:"http://www.opengis.net/kml/2.2",ogc:"http://www.opengis.net/ogc",ows:"http://www.opengis.net/ows",sld:"http://www.opengis.net/sld",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},VERSION:"0.3.1",schemaLocation:"http://www.opengis.net/ows-context http://www.ogcnetwork.net/schemas/owc/0.3.1/owsContext.xsd", defaultPrefix:"owc",extractAttributes:!0,xy:!0,regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},featureNS:"http://mapserver.gis.umn.edu/mapserver",featureType:"vector",geometryName:"geometry",nestingLayerLookup:null,initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a]);OpenLayers.Format.GML.v2.prototype.setGeometryTypes.call(this)},setNestingPath:function(a){if(a.layersContext)for(var b=0,c=a.layersContext.length;b<c;b++){var d= a.layersContext[b],e=[],f=a.title||"";a.metadata&&a.metadata.nestingPath&&(e=a.metadata.nestingPath.slice());""!=f&&e.push(f);d.metadata.nestingPath=e;d.layersContext&&this.setNestingPath(d)}},decomposeNestingPath:function(a){var b=[];if(OpenLayers.Util.isArray(a)){for(a=a.slice();0<a.length;)b.push(a.slice()),a.pop();b.reverse()}return b},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement);var b={};this.readNode(a, b);this.setNestingPath({layersContext:b.layersContext});a=[];this.processLayer(a,b);delete b.layersContext;b.layersContext=a;return b},processLayer:function(a,b){if(b.layersContext)for(var c=0,d=b.layersContext.length;c<d;c++){var e=b.layersContext[c];a.push(e);e.layersContext&&this.processLayer(a,e)}},write:function(a,b){this.nestingLayerLookup={};b=b||{};OpenLayers.Util.applyDefaults(b,a);var c=this.writeNode("OWSContext",b);this.nestingLayerLookup=null;this.setAttributeNS(c,this.namespaces.xsi, "xsi:schemaLocation",this.schemaLocation);return OpenLayers.Format.XML.prototype.write.apply(this,[c])},readers:{kml:{Document:function(a,b){b.features=(new OpenLayers.Format.KML({kmlns:this.namespaces.kml,extractStyles:!0})).read(a)}},owc:{OWSContext:function(a,b){this.readChildNodes(a,b)},General:function(a,b){this.readChildNodes(a,b)},ResourceList:function(a,b){this.readChildNodes(a,b)},Layer:function(a,b){var c={metadata:{},visibility:"1"!=a.getAttribute("hidden"),queryable:"1"==a.getAttribute("queryable"), opacity:null!=a.getAttribute("opacity")?parseFloat(a.getAttribute("opacity")):null,name:a.getAttribute("name"),categoryLayer:null==a.getAttribute("name"),formats:[],styles:[]};b.layersContext||(b.layersContext=[]);b.layersContext.push(c);this.readChildNodes(a,c)},InlineGeometry:function(a,b){b.features=[];var c=this.getElementsByTagNameNS(a,this.namespaces.gml,"featureMember"),d;1<=c.length&&(d=c[0]);d&&d.firstChild&&(c=d.firstChild.nextSibling?d.firstChild.nextSibling:d.firstChild,this.setNamespace("feature", c.namespaceURI),this.featureType=c.localName||c.nodeName.split(":").pop(),this.readChildNodes(a,b))},Server:function(a,b){if(!b.service&&!b.version||b.service!=OpenLayers.Format.Context.serviceTypes.WMS)b.service=a.getAttribute("service"),b.version=a.getAttribute("version"),this.readChildNodes(a,b)},Name:function(a,b){b.name=this.getChildValue(a);this.readChildNodes(a,b)},Title:function(a,b){b.title=this.getChildValue(a);this.readChildNodes(a,b)},StyleList:function(a,b){this.readChildNodes(a,b.styles)}, Style:function(a,b){var c={};b.push(c);this.readChildNodes(a,c)},LegendURL:function(a,b){var c={};b.legend=c;this.readChildNodes(a,c)},OnlineResource:function(a,b){b.url=this.getAttributeNS(a,this.namespaces.xlink,"href");this.readChildNodes(a,b)}},ows:OpenLayers.Format.OWSCommon.v1_0_0.prototype.readers.ows,gml:OpenLayers.Format.GML.v2.prototype.readers.gml,sld:OpenLayers.Format.SLD.v1_0_0.prototype.readers.sld,feature:OpenLayers.Format.GML.v2.prototype.readers.feature},writers:{owc:{OWSContext:function(a){var b= this.createElementNSPlus("OWSContext",{attributes:{version:this.VERSION,id:a.id||OpenLayers.Util.createUniqueID("OpenLayers_OWSContext_")}});this.writeNode("General",a,b);this.writeNode("ResourceList",a,b);return b},General:function(a){var b=this.createElementNSPlus("General");this.writeNode("ows:BoundingBox",a,b);this.writeNode("ows:Title",a.title||"OpenLayers OWSContext",b);return b},ResourceList:function(a){for(var b=this.createElementNSPlus("ResourceList"),c=0,d=a.layers.length;c<d;c++){var e= a.layers[c],f=this.decomposeNestingPath(e.metadata.nestingPath);this.writeNode("_Layer",{layer:e,subPaths:f},b)}return b},Server:function(a){var b=this.createElementNSPlus("Server",{attributes:{version:a.version,service:a.service}});this.writeNode("OnlineResource",a,b);return b},OnlineResource:function(a){return this.createElementNSPlus("OnlineResource",{attributes:{"xlink:href":a.url}})},InlineGeometry:function(a){var b=this.createElementNSPlus("InlineGeometry");this.writeNode("gml:boundedBy",a.getDataExtent(), b);for(var c=0,d=a.features.length;c<d;c++)this.writeNode("gml:featureMember",a.features[c],b);return b},StyleList:function(a){for(var b=this.createElementNSPlus("StyleList"),c=0,d=a.length;c<d;c++)this.writeNode("Style",a[c],b);return b},Style:function(a){var b=this.createElementNSPlus("Style");this.writeNode("Name",a,b);this.writeNode("Title",a,b);a.legend&&this.writeNode("LegendURL",a,b);return b},Name:function(a){return this.createElementNSPlus("Name",{value:a.name})},Title:function(a){return this.createElementNSPlus("Title", {value:a.title})},LegendURL:function(a){var b=this.createElementNSPlus("LegendURL");this.writeNode("OnlineResource",a.legend,b);return b},_WMS:function(a){var b=this.createElementNSPlus("Layer",{attributes:{name:a.params.LAYERS,queryable:a.queryable?"1":"0",hidden:a.visibility?"0":"1",opacity:a.hasOwnProperty("opacity")?a.opacity:null}});this.writeNode("ows:Title",a.name,b);this.writeNode("ows:OutputFormat",a.params.FORMAT,b);this.writeNode("Server",{service:OpenLayers.Format.Context.serviceTypes.WMS, version:a.params.VERSION,url:a.url},b);a.metadata.styles&&0<a.metadata.styles.length&&this.writeNode("StyleList",a.metadata.styles,b);return b},_Layer:function(a){var b,c,d;b=a.layer;c=a.subPaths;d=null;0<c.length?(b=c[0].join("/"),c=b.lastIndexOf("/"),d=this.nestingLayerLookup[b],c=0<c?b.substring(c+1,b.length):b,d||(d=this.createElementNSPlus("Layer"),this.writeNode("ows:Title",c,d),this.nestingLayerLookup[b]=d),a.subPaths.shift(),this.writeNode("_Layer",a,d)):(b instanceof OpenLayers.Layer.WMS? d=this.writeNode("_WMS",b):b instanceof OpenLayers.Layer.Vector&&(b.protocol instanceof OpenLayers.Protocol.WFS.v1?d=this.writeNode("_WFS",b):b.protocol instanceof OpenLayers.Protocol.HTTP?b.protocol.format instanceof OpenLayers.Format.GML?(b.protocol.format.version="2.1.2",d=this.writeNode("_GML",b)):b.protocol.format instanceof OpenLayers.Format.KML&&(b.protocol.format.version="2.2",d=this.writeNode("_KML",b)):(this.setNamespace("feature",this.featureNS),d=this.writeNode("_InlineGeometry",b))), b.options.maxScale&&this.writeNode("sld:MinScaleDenominator",b.options.maxScale,d),b.options.minScale&&this.writeNode("sld:MaxScaleDenominator",b.options.minScale,d),this.nestingLayerLookup[b.name]=d);return d},_WFS:function(a){var b=this.createElementNSPlus("Layer",{attributes:{name:a.protocol.featurePrefix+":"+a.protocol.featureType,hidden:a.visibility?"0":"1"}});this.writeNode("ows:Title",a.name,b);this.writeNode("Server",{service:OpenLayers.Format.Context.serviceTypes.WFS,version:a.protocol.version, url:a.protocol.url},b);return b},_InlineGeometry:function(a){var b=this.createElementNSPlus("Layer",{attributes:{name:this.featureType,hidden:a.visibility?"0":"1"}});this.writeNode("ows:Title",a.name,b);this.writeNode("InlineGeometry",a,b);return b},_GML:function(a){var b=this.createElementNSPlus("Layer");this.writeNode("ows:Title",a.name,b);this.writeNode("Server",{service:OpenLayers.Format.Context.serviceTypes.GML,url:a.protocol.url,version:a.protocol.format.version},b);return b},_KML:function(a){var b= this.createElementNSPlus("Layer");this.writeNode("ows:Title",a.name,b);this.writeNode("Server",{service:OpenLayers.Format.Context.serviceTypes.KML,version:a.protocol.format.version,url:a.protocol.url},b);return b}},gml:OpenLayers.Util.applyDefaults({boundedBy:function(a){var b=this.createElementNSPlus("gml:boundedBy");this.writeNode("gml:Box",a,b);return b}},OpenLayers.Format.GML.v2.prototype.writers.gml),ows:OpenLayers.Format.OWSCommon.v1_0_0.prototype.writers.ows,sld:OpenLayers.Format.SLD.v1_0_0.prototype.writers.sld, feature:OpenLayers.Format.GML.v2.prototype.writers.feature},CLASS_NAME:"OpenLayers.Format.OWSContext.v0_3_1"});OpenLayers.Control.ScaleLine=OpenLayers.Class(OpenLayers.Control,{maxWidth:100,topOutUnits:"km",topInUnits:"m",bottomOutUnits:"mi",bottomInUnits:"ft",eTop:null,eBottom:null,geodesic:!1,draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);this.eTop||(this.eTop=document.createElement("div"),this.eTop.className=this.displayClass+"Top",this.div.appendChild(this.eTop),this.eTop.style.visibility=""==this.topOutUnits||""==this.topInUnits?"hidden":"visible",this.eBottom=document.createElement("div"), this.eBottom.className=this.displayClass+"Bottom",this.div.appendChild(this.eBottom),this.eBottom.style.visibility=""==this.bottomOutUnits||""==this.bottomInUnits?"hidden":"visible");this.map.events.register("moveend",this,this.update);this.update();return this.div},getBarLen:function(a){var b=parseInt(Math.log(a)/Math.log(10)),b=Math.pow(10,b),a=parseInt(a/b);return(5<a?5:2<a?2:1)*b},update:function(){var a=this.map.getResolution();if(a){var b=this.map.getUnits(),c=OpenLayers.INCHES_PER_UNIT,d=this.maxWidth* a*c[b],e=1;!0===this.geodesic&&(e=(this.map.getGeodesicPixelSize().w||1.0E-6)*this.maxWidth/(d/c.km),d*=e);var f,g;1E5<d?(f=this.topOutUnits,g=this.bottomOutUnits):(f=this.topInUnits,g=this.bottomInUnits);var h=d/c[f],i=d/c[g],d=this.getBarLen(h),j=this.getBarLen(i),h=d/c[b]*c[f],i=j/c[b]*c[g],b=h/a/e,a=i/a/e;"visible"==this.eBottom.style.visibility&&(this.eBottom.style.width=Math.round(a)+"px",this.eBottom.innerHTML=j+" "+g);"visible"==this.eTop.style.visibility&&(this.eTop.style.width=Math.round(b)+ "px",this.eTop.innerHTML=d+" "+f)}},CLASS_NAME:"OpenLayers.Control.ScaleLine"});OpenLayers.Icon=OpenLayers.Class({url:null,size:null,offset:null,calculateOffset:null,imageDiv:null,px:null,initialize:function(a,b,c,d){this.url=a;this.size=b||{w:20,h:20};this.offset=c||{x:-(this.size.w/2),y:-(this.size.h/2)};this.calculateOffset=d;a=OpenLayers.Util.createUniqueID("OL_Icon_");this.imageDiv=OpenLayers.Util.createAlphaImageDiv(a)},destroy:function(){this.erase();OpenLayers.Event.stopObservingElement(this.imageDiv.firstChild);this.imageDiv.innerHTML="";this.imageDiv=null},clone:function(){return new OpenLayers.Icon(this.url, this.size,this.offset,this.calculateOffset)},setSize:function(a){null!=a&&(this.size=a);this.draw()},setUrl:function(a){null!=a&&(this.url=a);this.draw()},draw:function(a){OpenLayers.Util.modifyAlphaImageDiv(this.imageDiv,null,null,this.size,this.url,"absolute");this.moveTo(a);return this.imageDiv},erase:function(){null!=this.imageDiv&&null!=this.imageDiv.parentNode&&OpenLayers.Element.remove(this.imageDiv)},setOpacity:function(a){OpenLayers.Util.modifyAlphaImageDiv(this.imageDiv,null,null,null,null, null,null,null,a)},moveTo:function(a){null!=a&&(this.px=a);null!=this.imageDiv&&(null==this.px?this.display(!1):(this.calculateOffset&&(this.offset=this.calculateOffset(this.size)),OpenLayers.Util.modifyAlphaImageDiv(this.imageDiv,null,{x:this.px.x+this.offset.x,y:this.px.y+this.offset.y})))},display:function(a){this.imageDiv.style.display=a?"":"none"},isDrawn:function(){return this.imageDiv&&this.imageDiv.parentNode&&11!=this.imageDiv.parentNode.nodeType},CLASS_NAME:"OpenLayers.Icon"});OpenLayers.Marker=OpenLayers.Class({icon:null,lonlat:null,events:null,map:null,initialize:function(a,b){this.lonlat=a;var c=b?b:OpenLayers.Marker.defaultIcon();null==this.icon?this.icon=c:(this.icon.url=c.url,this.icon.size=c.size,this.icon.offset=c.offset,this.icon.calculateOffset=c.calculateOffset);this.events=new OpenLayers.Events(this,this.icon.imageDiv)},destroy:function(){this.erase();this.map=null;this.events.destroy();this.events=null;null!=this.icon&&(this.icon.destroy(),this.icon=null)}, draw:function(a){return this.icon.draw(a)},erase:function(){null!=this.icon&&this.icon.erase()},moveTo:function(a){null!=a&&null!=this.icon&&this.icon.moveTo(a);this.lonlat=this.map.getLonLatFromLayerPx(a)},isDrawn:function(){return this.icon&&this.icon.isDrawn()},onScreen:function(){var a=!1;this.map&&(a=this.map.getExtent().containsLonLat(this.lonlat));return a},inflate:function(a){this.icon&&this.icon.setSize({w:this.icon.size.w*a,h:this.icon.size.h*a})},setOpacity:function(a){this.icon.setOpacity(a)}, setUrl:function(a){this.icon.setUrl(a)},display:function(a){this.icon.display(a)},CLASS_NAME:"OpenLayers.Marker"});OpenLayers.Marker.defaultIcon=function(){return new OpenLayers.Icon(OpenLayers.Util.getImageLocation("marker.png"),{w:21,h:25},{x:-10.5,y:-25})};OpenLayers.Layer.TileCache=OpenLayers.Class(OpenLayers.Layer.Grid,{isBaseLayer:!0,format:"image/png",serverResolutions:null,initialize:function(a,b,c,d){this.layername=c;OpenLayers.Layer.Grid.prototype.initialize.apply(this,[a,b,{},d]);this.extension=this.format.split("/")[1].toLowerCase();this.extension="jpg"==this.extension?"jpeg":this.extension},clone:function(a){null==a&&(a=new OpenLayers.Layer.TileCache(this.name,this.url,this.layername,this.getOptions()));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this, [a])},getURL:function(a){function b(a,b){for(var a=""+a,c=[],d=0;d<b;++d)c.push("0");return c.join("").substring(0,b-a.length)+a}var c=this.getServerResolution(),d=this.maxExtent,e=this.tileSize,f=Math.round((a.left-d.left)/(c*e.w)),a=Math.round((a.bottom-d.bottom)/(c*e.h)),c=null!=this.serverResolutions?OpenLayers.Util.indexOf(this.serverResolutions,c):this.map.getZoom(),f=[this.layername,b(c,2),b(parseInt(f/1E6),3),b(parseInt(f/1E3)%1E3,3),b(parseInt(f)%1E3,3),b(parseInt(a/1E6),3),b(parseInt(a/ 1E3)%1E3,3),b(parseInt(a)%1E3,3)+"."+this.extension].join("/"),c=this.url;OpenLayers.Util.isArray(c)&&(c=this.selectUrl(f,c));c="/"==c.charAt(c.length-1)?c:c+"/";return c+f},CLASS_NAME:"OpenLayers.Layer.TileCache"});OpenLayers.Layer.KaMap=OpenLayers.Class(OpenLayers.Layer.Grid,{isBaseLayer:!0,DEFAULT_PARAMS:{i:"jpeg",map:""},initialize:function(a,b,c,d){OpenLayers.Layer.Grid.prototype.initialize.apply(this,arguments);this.params=OpenLayers.Util.applyDefaults(this.params,this.DEFAULT_PARAMS)},getURL:function(a){var a=this.adjustBounds(a),b=this.map.getResolution(),c=Math.round(1E4*this.map.getScale())/1E4,d=Math.round(a.left/b);return this.getFullRequestString({t:-Math.round(a.top/b),l:d,s:c})},calculateGridLayout:function(a, b,c){var b=c*this.tileSize.w,c=c*this.tileSize.h,d=a.left,e=Math.floor(d/b)-this.buffer,d=-(d/b-e)*this.tileSize.w,e=e*b,a=a.top,f=Math.ceil(a/c)+this.buffer;return{tilelon:b,tilelat:c,tileoffsetlon:e,tileoffsetlat:f*c,tileoffsetx:d,tileoffsety:-(f-a/c+1)*this.tileSize.h}},clone:function(a){null==a&&(a=new OpenLayers.Layer.KaMap(this.name,this.url,this.params,this.getOptions()));a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a]);null!=this.tileSize&&(a.tileSize=this.tileSize.clone());a.grid= [];return a},getTileBounds:function(a){var b=this.getResolution(),c=b*this.tileSize.w,b=b*this.tileSize.h,d=this.getLonLatFromViewPortPx(a),a=c*Math.floor(d.lon/c),d=b*Math.floor(d.lat/b);return new OpenLayers.Bounds(a,d,a+c,d+b)},CLASS_NAME:"OpenLayers.Layer.KaMap"});OpenLayers.Control.TransformFeature=OpenLayers.Class(OpenLayers.Control,{geometryTypes:null,layer:null,preserveAspectRatio:!1,rotate:!0,feature:null,renderIntent:"temporary",rotationHandleSymbolizer:null,box:null,center:null,scale:1,ratio:1,rotation:0,handles:null,rotationHandles:null,dragControl:null,irregular:!1,initialize:function(a,b){OpenLayers.Control.prototype.initialize.apply(this,[b]);this.layer=a;this.rotationHandleSymbolizer||(this.rotationHandleSymbolizer={stroke:!1,pointRadius:10,fillOpacity:0, cursor:"pointer"});this.createBox();this.createControl()},activate:function(){var a=!1;OpenLayers.Control.prototype.activate.apply(this,arguments)&&(this.dragControl.activate(),this.layer.addFeatures([this.box]),this.rotate&&this.layer.addFeatures(this.rotationHandles),this.layer.addFeatures(this.handles),a=!0);return a},deactivate:function(){var a=!1;OpenLayers.Control.prototype.deactivate.apply(this,arguments)&&(this.layer.removeFeatures(this.handles),this.rotate&&this.layer.removeFeatures(this.rotationHandles), this.layer.removeFeatures([this.box]),this.dragControl.deactivate(),a=!0);return a},setMap:function(a){this.dragControl.setMap(a);OpenLayers.Control.prototype.setMap.apply(this,arguments)},setFeature:function(a,b){var b=OpenLayers.Util.applyDefaults(b,{rotation:0,scale:1,ratio:1}),c=this.rotation,d=this.center;OpenLayers.Util.extend(this,b);if(!1!==this.events.triggerEvent("beforesetfeature",{feature:a})){this.feature=a;this.activate();this._setfeature=!0;var e=this.feature.geometry.getBounds();this.box.move(e.getCenterLonLat()); this.box.geometry.rotate(-c,d);this._angle=0;this.rotation?(c=a.geometry.clone(),c.rotate(-this.rotation,this.center),c=new OpenLayers.Feature.Vector(c.getBounds().toGeometry()),c.geometry.rotate(this.rotation,this.center),this.box.geometry.rotate(this.rotation,this.center),this.box.move(c.geometry.getBounds().getCenterLonLat()),c=c.geometry.components[0].components[0].getBounds().getCenterLonLat()):c=new OpenLayers.LonLat(e.left,e.bottom);this.handles[0].move(c);delete this._setfeature;this.events.triggerEvent("setfeature", {feature:a})}},unsetFeature:function(){this.active?this.deactivate():(this.feature=null,this.rotation=0,this.ratio=this.scale=1)},createBox:function(){var a=this;this.center=new OpenLayers.Geometry.Point(0,0);this.box=new OpenLayers.Feature.Vector(new OpenLayers.Geometry.LineString([new OpenLayers.Geometry.Point(-1,-1),new OpenLayers.Geometry.Point(0,-1),new OpenLayers.Geometry.Point(1,-1),new OpenLayers.Geometry.Point(1,0),new OpenLayers.Geometry.Point(1,1),new OpenLayers.Geometry.Point(0,1),new OpenLayers.Geometry.Point(-1, 1),new OpenLayers.Geometry.Point(-1,0),new OpenLayers.Geometry.Point(-1,-1)]),null,"string"==typeof this.renderIntent?null:this.renderIntent);this.box.geometry.move=function(b,c){a._moving=!0;OpenLayers.Geometry.LineString.prototype.move.apply(this,arguments);a.center.move(b,c);delete a._moving};for(var b=function(a,b){OpenLayers.Geometry.Point.prototype.move.apply(this,arguments);this._rotationHandle&&this._rotationHandle.geometry.move(a,b);this._handle.geometry.move(a,b)},c=function(a,b,c){OpenLayers.Geometry.Point.prototype.resize.apply(this, arguments);this._rotationHandle&&this._rotationHandle.geometry.resize(a,b,c);this._handle.geometry.resize(a,b,c)},d=function(a,b){OpenLayers.Geometry.Point.prototype.rotate.apply(this,arguments);this._rotationHandle&&this._rotationHandle.geometry.rotate(a,b);this._handle.geometry.rotate(a,b)},e=function(b,c){var d=this.x,e=this.y;OpenLayers.Geometry.Point.prototype.move.call(this,b,c);if(!a._moving){var f=a.dragControl.handlers.drag.evt,g=!(!a._setfeature&&a.preserveAspectRatio)&&!(f&&f.shiftKey), h=new OpenLayers.Geometry.Point(d,e),f=a.center;this.rotate(-a.rotation,f);h.rotate(-a.rotation,f);var i=this.x-f.x,j=this.y-f.y,k=i-(this.x-h.x),l=j-(this.y-h.y);a.irregular&&!a._setfeature&&(i-=(this.x-h.x)/2,j-=(this.y-h.y)/2);this.x=d;this.y=e;h=1;g?(j=1.0E-5>Math.abs(l)?1:j/l,h=(1.0E-5>Math.abs(k)?1:i/k)/j):(k=Math.sqrt(k*k+l*l),j=Math.sqrt(i*i+j*j)/k);a._moving=!0;a.box.geometry.rotate(-a.rotation,f);delete a._moving;a.box.geometry.resize(j,f,h);a.box.geometry.rotate(a.rotation,f);a.transformFeature({scale:j, ratio:h});a.irregular&&!a._setfeature&&(i=f.clone(),i.x+=1.0E-5>Math.abs(d-f.x)?0:this.x-d,i.y+=1.0E-5>Math.abs(e-f.y)?0:this.y-e,a.box.geometry.move(this.x-d,this.y-e),a.transformFeature({center:i}))}},f=function(b,c){var d=this.x,e=this.y;OpenLayers.Geometry.Point.prototype.move.call(this,b,c);if(!a._moving){var f=a.dragControl.handlers.drag.evt,f=f&&f.shiftKey?45:1,g=a.center,h=this.x-g.x,i=this.y-g.y;this.x=d;this.y=e;d=Math.atan2(i-c,h-b);d=Math.atan2(i,h)-d;d*=180/Math.PI;a._angle=(a._angle+ d)%360;d=a.rotation%f;if(Math.abs(a._angle)>=f||0!==d)d=Math.round(a._angle/f)*f-d,a._angle=0,a.box.geometry.rotate(d,g),a.transformFeature({rotation:d})}},g=Array(8),h=Array(4),i,j,k,l="sw s se e ne n nw w".split(" "),m=0;8>m;++m)i=this.box.geometry.components[m],j=new OpenLayers.Feature.Vector(i.clone(),{role:l[m]+"-resize"},"string"==typeof this.renderIntent?null:this.renderIntent),0==m%2&&(k=new OpenLayers.Feature.Vector(i.clone(),{role:l[m]+"-rotate"},"string"==typeof this.rotationHandleSymbolizer? null:this.rotationHandleSymbolizer),k.geometry.move=f,i._rotationHandle=k,h[m/2]=k),i.move=b,i.resize=c,i.rotate=d,j.geometry.move=e,i._handle=j,g[m]=j;this.rotationHandles=h;this.handles=g},createControl:function(){var a=this;this.dragControl=new OpenLayers.Control.DragFeature(this.layer,{documentDrag:!0,moveFeature:function(b){this.feature===a.feature&&(this.feature=a.box);OpenLayers.Control.DragFeature.prototype.moveFeature.apply(this,arguments)},onDrag:function(b){b===a.box&&a.transformFeature({center:a.center})}, onStart:function(b){var c=!a.geometryTypes||-1!==OpenLayers.Util.indexOf(a.geometryTypes,b.geometry.CLASS_NAME),d=OpenLayers.Util.indexOf(a.handles,b),d=d+OpenLayers.Util.indexOf(a.rotationHandles,b);b!==a.feature&&(b!==a.box&&-2==d&&c)&&a.setFeature(b)},onComplete:function(){a.events.triggerEvent("transformcomplete",{feature:a.feature})}})},drawHandles:function(){for(var a=this.layer,b=0;8>b;++b)this.rotate&&0===b%2&&a.drawFeature(this.rotationHandles[b/2],this.rotationHandleSymbolizer),a.drawFeature(this.handles[b], this.renderIntent)},transformFeature:function(a){if(!this._setfeature){this.scale*=a.scale||1;this.ratio*=a.ratio||1;var b=this.rotation;this.rotation=(this.rotation+(a.rotation||0))%360;if(!1!==this.events.triggerEvent("beforetransform",a)){var c=this.feature,d=c.geometry,e=this.center;d.rotate(-b,e);a.scale||a.ratio?d.resize(a.scale,e,a.ratio):a.center&&c.move(a.center.getBounds().getCenterLonLat());d.rotate(this.rotation,e);this.layer.drawFeature(c);c.toState(OpenLayers.State.UPDATE);this.events.triggerEvent("transform", a)}}this.layer.drawFeature(this.box,this.renderIntent);this.drawHandles()},destroy:function(){for(var a,b=0;8>b;++b)a=this.box.geometry.components[b],a._handle.destroy(),a._handle=null,a._rotationHandle&&a._rotationHandle.destroy(),a._rotationHandle=null;this.rotationHandles=this.rotationHandleSymbolizer=this.handles=this.feature=this.center=null;this.box.destroy();this.layer=this.box=null;this.dragControl.destroy();this.dragControl=null;OpenLayers.Control.prototype.destroy.apply(this,arguments)}, CLASS_NAME:"OpenLayers.Control.TransformFeature"});OpenLayers.Handler.Box=OpenLayers.Class(OpenLayers.Handler,{dragHandler:null,boxDivClassName:"olHandlerBoxZoomBox",boxOffsets:null,initialize:function(a,b,c){OpenLayers.Handler.prototype.initialize.apply(this,arguments);this.dragHandler=new OpenLayers.Handler.Drag(this,{down:this.startBox,move:this.moveBox,out:this.removeBox,up:this.endBox},{keyMask:this.keyMask})},destroy:function(){OpenLayers.Handler.prototype.destroy.apply(this,arguments);this.dragHandler&&(this.dragHandler.destroy(),this.dragHandler= null)},setMap:function(a){OpenLayers.Handler.prototype.setMap.apply(this,arguments);this.dragHandler&&this.dragHandler.setMap(a)},startBox:function(){this.callback("start",[]);this.zoomBox=OpenLayers.Util.createDiv("zoomBox",{x:-9999,y:-9999});this.zoomBox.className=this.boxDivClassName;this.zoomBox.style.zIndex=this.map.Z_INDEX_BASE.Popup-1;this.map.viewPortDiv.appendChild(this.zoomBox);OpenLayers.Element.addClass(this.map.viewPortDiv,"olDrawBox")},moveBox:function(a){var b=this.dragHandler.start.x, c=this.dragHandler.start.y,d=Math.abs(b-a.x),e=Math.abs(c-a.y),f=this.getBoxOffsets();this.zoomBox.style.width=d+f.width+1+"px";this.zoomBox.style.height=e+f.height+1+"px";this.zoomBox.style.left=(a.x<b?b-d-f.left:b-f.left)+"px";this.zoomBox.style.top=(a.y<c?c-e-f.top:c-f.top)+"px"},endBox:function(a){var b;if(5<Math.abs(this.dragHandler.start.x-a.x)||5<Math.abs(this.dragHandler.start.y-a.y)){var c=this.dragHandler.start;b=Math.min(c.y,a.y);var d=Math.max(c.y,a.y),e=Math.min(c.x,a.x),a=Math.max(c.x, a.x);b=new OpenLayers.Bounds(e,d,a,b)}else b=this.dragHandler.start.clone();this.removeBox();this.callback("done",[b])},removeBox:function(){this.map.viewPortDiv.removeChild(this.zoomBox);this.boxOffsets=this.zoomBox=null;OpenLayers.Element.removeClass(this.map.viewPortDiv,"olDrawBox")},activate:function(){return OpenLayers.Handler.prototype.activate.apply(this,arguments)?(this.dragHandler.activate(),!0):!1},deactivate:function(){return OpenLayers.Handler.prototype.deactivate.apply(this,arguments)? (this.dragHandler.deactivate()&&this.zoomBox&&this.removeBox(),!0):!1},getBoxOffsets:function(){if(!this.boxOffsets){var a=document.createElement("div");a.style.position="absolute";a.style.border="1px solid black";a.style.width="3px";document.body.appendChild(a);var b=3==a.clientWidth;document.body.removeChild(a);var a=parseInt(OpenLayers.Element.getStyle(this.zoomBox,"border-left-width")),c=parseInt(OpenLayers.Element.getStyle(this.zoomBox,"border-right-width")),d=parseInt(OpenLayers.Element.getStyle(this.zoomBox, "border-top-width")),e=parseInt(OpenLayers.Element.getStyle(this.zoomBox,"border-bottom-width"));this.boxOffsets={left:a,right:c,top:d,bottom:e,width:!1===b?a+c:0,height:!1===b?d+e:0}}return this.boxOffsets},CLASS_NAME:"OpenLayers.Handler.Box"});OpenLayers.Control.ZoomBox=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_TOOL,out:!1,keyMask:null,alwaysZoom:!1,draw:function(){this.handler=new OpenLayers.Handler.Box(this,{done:this.zoomBox},{keyMask:this.keyMask})},zoomBox:function(a){if(a instanceof OpenLayers.Bounds){var b;if(this.out){b=Math.abs(a.right-a.left);var c=Math.abs(a.top-a.bottom);b=Math.min(this.map.size.h/c,this.map.size.w/b);var c=this.map.getExtent(),d=this.map.getLonLatFromPixel(a.getCenterPixel()),a=d.lon- c.getWidth()/2*b,e=d.lon+c.getWidth()/2*b,f=d.lat-c.getHeight()/2*b;b=d.lat+c.getHeight()/2*b;b=new OpenLayers.Bounds(a,f,e,b)}else b=this.map.getLonLatFromPixel({x:a.left,y:a.bottom}),c=this.map.getLonLatFromPixel({x:a.right,y:a.top}),b=new OpenLayers.Bounds(b.lon,b.lat,c.lon,c.lat);c=this.map.getZoom();this.map.zoomToExtent(b);c==this.map.getZoom()&&!0==this.alwaysZoom&&this.map.zoomTo(c+(this.out?-1:1))}else this.out?this.map.setCenter(this.map.getLonLatFromPixel(a),this.map.getZoom()-1):this.map.setCenter(this.map.getLonLatFromPixel(a), this.map.getZoom()+1)},CLASS_NAME:"OpenLayers.Control.ZoomBox"});OpenLayers.Control.DragPan=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_TOOL,panned:!1,interval:1,documentDrag:!1,kinetic:null,enableKinetic:!1,kineticInterval:10,draw:function(){if(this.enableKinetic){var a={interval:this.kineticInterval};"object"===typeof this.enableKinetic&&(a=OpenLayers.Util.extend(a,this.enableKinetic));this.kinetic=new OpenLayers.Kinetic(a)}this.handler=new OpenLayers.Handler.Drag(this,{move:this.panMap,done:this.panMapDone,down:this.panMapStart},{interval:this.interval, documentDrag:this.documentDrag})},panMapStart:function(){this.kinetic&&this.kinetic.begin()},panMap:function(a){this.kinetic&&this.kinetic.update(a);this.panned=!0;this.map.pan(this.handler.last.x-a.x,this.handler.last.y-a.y,{dragging:!0,animate:!1})},panMapDone:function(a){if(this.panned){var b=null;this.kinetic&&(b=this.kinetic.end(a));this.map.pan(this.handler.last.x-a.x,this.handler.last.y-a.y,{dragging:!!b,animate:!1});if(b){var c=this;this.kinetic.move(b,function(a,b,f){c.map.pan(a,b,{dragging:!f, animate:!1})})}this.panned=!1}},CLASS_NAME:"OpenLayers.Control.DragPan"});OpenLayers.Handler.Click=OpenLayers.Class(OpenLayers.Handler,{delay:300,single:!0,"double":!1,pixelTolerance:0,dblclickTolerance:13,stopSingle:!1,stopDouble:!1,timerId:null,touch:!1,down:null,last:null,first:null,rightclickTimerId:null,touchstart:function(a){this.touch||(this.unregisterMouseListeners(),this.touch=!0);this.down=this.getEventInfo(a);this.last=this.getEventInfo(a);return!0},touchmove:function(a){this.last=this.getEventInfo(a);return!0},touchend:function(a){this.down&&(a.xy=this.last.xy, a.lastTouches=this.last.touches,this.handleSingle(a),this.down=null);return!0},unregisterMouseListeners:function(){this.map.events.un({mousedown:this.mousedown,mouseup:this.mouseup,click:this.click,dblclick:this.dblclick,scope:this})},mousedown:function(a){this.down=this.getEventInfo(a);this.last=this.getEventInfo(a);return!0},mouseup:function(a){var b=!0;this.checkModifiers(a)&&(this.control.handleRightClicks&&OpenLayers.Event.isRightClick(a))&&(b=this.rightclick(a));return b},rightclick:function(a){if(this.passesTolerance(a)){if(null!= this.rightclickTimerId)return this.clearTimer(),this.callback("dblrightclick",[a]),!this.stopDouble;a=this["double"]?OpenLayers.Util.extend({},a):this.callback("rightclick",[a]);a=OpenLayers.Function.bind(this.delayedRightCall,this,a);this.rightclickTimerId=window.setTimeout(a,this.delay)}return!this.stopSingle},delayedRightCall:function(a){this.rightclickTimerId=null;a&&this.callback("rightclick",[a])},click:function(a){this.last||(this.last=this.getEventInfo(a));this.handleSingle(a);return!this.stopSingle}, dblclick:function(a){this.handleDouble(a);return!this.stopDouble},handleDouble:function(a){this.passesDblclickTolerance(a)&&(this["double"]&&this.callback("dblclick",[a]),this.clearTimer())},handleSingle:function(a){this.passesTolerance(a)&&(null!=this.timerId?(this.last.touches&&1===this.last.touches.length&&(this["double"]&&OpenLayers.Event.stop(a),this.handleDouble(a)),(!this.last.touches||2!==this.last.touches.length)&&this.clearTimer()):(this.first=this.getEventInfo(a),this.queuePotentialClick(this.single? OpenLayers.Util.extend({},a):null)))},queuePotentialClick:function(a){this.timerId=window.setTimeout(OpenLayers.Function.bind(this.delayedCall,this,a),this.delay)},passesTolerance:function(a){var b=!0;if(null!=this.pixelTolerance&&this.down&&this.down.xy&&(b=this.pixelTolerance>=this.down.xy.distanceTo(a.xy))&&this.touch&&this.down.touches.length===this.last.touches.length)for(var a=0,c=this.down.touches.length;a<c;++a)if(this.getTouchDistance(this.down.touches[a],this.last.touches[a])>this.pixelTolerance){b= !1;break}return b},getTouchDistance:function(a,b){return Math.sqrt(Math.pow(a.clientX-b.clientX,2)+Math.pow(a.clientY-b.clientY,2))},passesDblclickTolerance:function(){var a=!0;this.down&&this.first&&(a=this.down.xy.distanceTo(this.first.xy)<=this.dblclickTolerance);return a},clearTimer:function(){null!=this.timerId&&(window.clearTimeout(this.timerId),this.timerId=null);null!=this.rightclickTimerId&&(window.clearTimeout(this.rightclickTimerId),this.rightclickTimerId=null)},delayedCall:function(a){this.timerId= null;a&&this.callback("click",[a])},getEventInfo:function(a){var b;if(a.touches){var c=a.touches.length;b=Array(c);for(var d,e=0;e<c;e++)d=a.touches[e],b[e]={clientX:d.clientX,clientY:d.clientY}}return{xy:a.xy,touches:b}},deactivate:function(){var a=!1;OpenLayers.Handler.prototype.deactivate.apply(this,arguments)&&(this.clearTimer(),this.last=this.first=this.down=null,this.touch=!1,a=!0);return a},CLASS_NAME:"OpenLayers.Handler.Click"});OpenLayers.Control.Navigation=OpenLayers.Class(OpenLayers.Control,{dragPan:null,dragPanOptions:null,pinchZoom:null,pinchZoomOptions:null,documentDrag:!1,zoomBox:null,zoomBoxEnabled:!0,zoomWheelEnabled:!0,mouseWheelOptions:null,handleRightClicks:!1,zoomBoxKeyMask:OpenLayers.Handler.MOD_SHIFT,autoActivate:!0,initialize:function(a){this.handlers={};OpenLayers.Control.prototype.initialize.apply(this,arguments)},destroy:function(){this.deactivate();this.dragPan&&this.dragPan.destroy();this.dragPan=null; this.zoomBox&&this.zoomBox.destroy();this.zoomBox=null;this.pinchZoom&&this.pinchZoom.destroy();this.pinchZoom=null;OpenLayers.Control.prototype.destroy.apply(this,arguments)},activate:function(){this.dragPan.activate();this.zoomWheelEnabled&&this.handlers.wheel.activate();this.handlers.click.activate();this.zoomBoxEnabled&&this.zoomBox.activate();this.pinchZoom&&this.pinchZoom.activate();return OpenLayers.Control.prototype.activate.apply(this,arguments)},deactivate:function(){this.pinchZoom&&this.pinchZoom.deactivate(); this.zoomBox.deactivate();this.dragPan.deactivate();this.handlers.click.deactivate();this.handlers.wheel.deactivate();return OpenLayers.Control.prototype.deactivate.apply(this,arguments)},draw:function(){this.handleRightClicks&&(this.map.viewPortDiv.oncontextmenu=OpenLayers.Function.False);this.handlers.click=new OpenLayers.Handler.Click(this,{click:this.defaultClick,dblclick:this.defaultDblClick,dblrightclick:this.defaultDblRightClick},{"double":!0,stopDouble:!0});this.dragPan=new OpenLayers.Control.DragPan(OpenLayers.Util.extend({map:this.map, documentDrag:this.documentDrag},this.dragPanOptions));this.zoomBox=new OpenLayers.Control.ZoomBox({map:this.map,keyMask:this.zoomBoxKeyMask});this.dragPan.draw();this.zoomBox.draw();this.handlers.wheel=new OpenLayers.Handler.MouseWheel(this,{up:this.wheelUp,down:this.wheelDown},this.mouseWheelOptions);OpenLayers.Control.PinchZoom&&(this.pinchZoom=new OpenLayers.Control.PinchZoom(OpenLayers.Util.extend({map:this.map},this.pinchZoomOptions)))},defaultClick:function(a){a.lastTouches&&2==a.lastTouches.length&& this.map.zoomOut()},defaultDblClick:function(a){this.map.setCenter(this.map.getLonLatFromViewPortPx(a.xy),this.map.zoom+1)},defaultDblRightClick:function(a){this.map.setCenter(this.map.getLonLatFromViewPortPx(a.xy),this.map.zoom-1)},wheelChange:function(a,b){var c=this.map.getZoom(),d=this.map.getZoom()+Math.round(b),d=Math.max(d,0),d=Math.min(d,this.map.getNumZoomLevels());if(d!==c){var e=this.map.getSize(),c=e.w/2-a.xy.x,e=a.xy.y-e.h/2,f=this.map.baseLayer.getResolutionForZoom(d),g=this.map.getLonLatFromPixel(a.xy); this.map.setCenter(new OpenLayers.LonLat(g.lon+c*f,g.lat+e*f),d)}},wheelUp:function(a,b){this.wheelChange(a,b||1)},wheelDown:function(a,b){this.wheelChange(a,b||-1)},disableZoomBox:function(){this.zoomBoxEnabled=!1;this.zoomBox.deactivate()},enableZoomBox:function(){this.zoomBoxEnabled=!0;this.active&&this.zoomBox.activate()},disableZoomWheel:function(){this.zoomWheelEnabled=!1;this.handlers.wheel.deactivate()},enableZoomWheel:function(){this.zoomWheelEnabled=!0;this.active&&this.handlers.wheel.activate()}, CLASS_NAME:"OpenLayers.Control.Navigation"});OpenLayers.Control.DrawFeature=OpenLayers.Class(OpenLayers.Control,{layer:null,callbacks:null,multi:!1,featureAdded:function(){},handlerOptions:null,initialize:function(a,b,c){OpenLayers.Control.prototype.initialize.apply(this,[c]);this.callbacks=OpenLayers.Util.extend({done:this.drawFeature,modify:function(a,b){this.layer.events.triggerEvent("sketchmodified",{vertex:a,feature:b})},create:function(a,b){this.layer.events.triggerEvent("sketchstarted",{vertex:a,feature:b})}},this.callbacks);this.layer= a;this.handlerOptions=this.handlerOptions||{};this.handlerOptions.layerOptions=OpenLayers.Util.applyDefaults(this.handlerOptions.layerOptions,{renderers:a.renderers,rendererOptions:a.rendererOptions});"multi"in this.handlerOptions||(this.handlerOptions.multi=this.multi);if(a=this.layer.styleMap&&this.layer.styleMap.styles.temporary)this.handlerOptions.layerOptions=OpenLayers.Util.applyDefaults(this.handlerOptions.layerOptions,{styleMap:new OpenLayers.StyleMap({"default":a})});this.handler=new b(this, this.callbacks,this.handlerOptions)},drawFeature:function(a){a=new OpenLayers.Feature.Vector(a);!1!==this.layer.events.triggerEvent("sketchcomplete",{feature:a})&&(a.state=OpenLayers.State.INSERT,this.layer.addFeatures([a]),this.featureAdded(a),this.events.triggerEvent("featureadded",{feature:a}))},insertXY:function(a,b){this.handler&&this.handler.line&&this.handler.insertXY(a,b)},insertDeltaXY:function(a,b){this.handler&&this.handler.line&&this.handler.insertDeltaXY(a,b)},insertDirectionLength:function(a, b){this.handler&&this.handler.line&&this.handler.insertDirectionLength(a,b)},insertDeflectionLength:function(a,b){this.handler&&this.handler.line&&this.handler.insertDeflectionLength(a,b)},undo:function(){return this.handler.undo&&this.handler.undo()},redo:function(){return this.handler.redo&&this.handler.redo()},finishSketch:function(){this.handler.finishGeometry()},cancel:function(){this.handler.cancel()},CLASS_NAME:"OpenLayers.Control.DrawFeature"});OpenLayers.Handler.Polygon=OpenLayers.Class(OpenLayers.Handler.Path,{holeModifier:null,drawingHole:!1,polygon:null,createFeature:function(a){a=this.layer.getLonLatFromViewPortPx(a);a=new OpenLayers.Geometry.Point(a.lon,a.lat);this.point=new OpenLayers.Feature.Vector(a);this.line=new OpenLayers.Feature.Vector(new OpenLayers.Geometry.LinearRing([this.point.geometry]));this.polygon=new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Polygon([this.line.geometry]));this.callback("create",[this.point.geometry, this.getSketch()]);this.point.geometry.clearBounds();this.layer.addFeatures([this.polygon,this.point],{silent:!0})},addPoint:function(a){if(!this.drawingHole&&this.holeModifier&&this.evt&&this.evt[this.holeModifier])for(var b=this.point.geometry,c=this.control.layer.features,d,e=c.length-1;0<=e;--e)if(d=c[e].geometry,(d instanceof OpenLayers.Geometry.Polygon||d instanceof OpenLayers.Geometry.MultiPolygon)&&d.intersects(b)){b=c[e];this.control.layer.removeFeatures([b],{silent:!0});this.control.layer.events.registerPriority("sketchcomplete", this,this.finalizeInteriorRing);this.control.layer.events.registerPriority("sketchmodified",this,this.enforceTopology);b.geometry.addComponent(this.line.geometry);this.polygon=b;this.drawingHole=!0;break}OpenLayers.Handler.Path.prototype.addPoint.apply(this,arguments)},getCurrentPointIndex:function(){return this.line.geometry.components.length-2},enforceTopology:function(a){var a=a.vertex,b=this.line.geometry.components;this.polygon.geometry.intersects(a)||(b=b[b.length-3],a.x=b.x,a.y=b.y)},finishGeometry:function(){this.line.geometry.removeComponent(this.line.geometry.components[this.line.geometry.components.length- 2]);this.removePoint();this.finalize()},finalizeInteriorRing:function(){var a=this.line.geometry,b=0!==a.getArea();if(b){for(var c=this.polygon.geometry.components,d=c.length-2;0<=d;--d)if(a.intersects(c[d])){b=!1;break}if(b){d=c.length-2;a:for(;0<d;--d)for(var e=c[d].components,f=0,g=e.length;f<g;++f)if(a.containsPoint(e[f])){b=!1;break a}}}b?this.polygon.state!==OpenLayers.State.INSERT&&(this.polygon.state=OpenLayers.State.UPDATE):this.polygon.geometry.removeComponent(a);this.restoreFeature();return!1}, cancel:function(){this.drawingHole&&(this.polygon.geometry.removeComponent(this.line.geometry),this.restoreFeature(!0));return OpenLayers.Handler.Path.prototype.cancel.apply(this,arguments)},restoreFeature:function(a){this.control.layer.events.unregister("sketchcomplete",this,this.finalizeInteriorRing);this.control.layer.events.unregister("sketchmodified",this,this.enforceTopology);this.layer.removeFeatures([this.polygon],{silent:!0});this.control.layer.addFeatures([this.polygon],{silent:!0});this.drawingHole= !1;a||this.control.layer.events.triggerEvent("sketchcomplete",{feature:this.polygon})},destroyFeature:function(a){OpenLayers.Handler.Path.prototype.destroyFeature.call(this,a);this.polygon=null},drawFeature:function(){this.layer.drawFeature(this.polygon,this.style);this.layer.drawFeature(this.point,this.style)},getSketch:function(){return this.polygon},getGeometry:function(){var a=this.polygon&&this.polygon.geometry;a&&this.multi&&(a=new OpenLayers.Geometry.MultiPolygon([a]));return a},CLASS_NAME:"OpenLayers.Handler.Polygon"});OpenLayers.Control.EditingToolbar=OpenLayers.Class(OpenLayers.Control.Panel,{citeCompliant:!1,initialize:function(a,b){OpenLayers.Control.Panel.prototype.initialize.apply(this,[b]);this.addControls([new OpenLayers.Control.Navigation]);this.addControls([new OpenLayers.Control.DrawFeature(a,OpenLayers.Handler.Point,{displayClass:"olControlDrawFeaturePoint",handlerOptions:{citeCompliant:this.citeCompliant}}),new OpenLayers.Control.DrawFeature(a,OpenLayers.Handler.Path,{displayClass:"olControlDrawFeaturePath", handlerOptions:{citeCompliant:this.citeCompliant}}),new OpenLayers.Control.DrawFeature(a,OpenLayers.Handler.Polygon,{displayClass:"olControlDrawFeaturePolygon",handlerOptions:{citeCompliant:this.citeCompliant}})])},draw:function(){var a=OpenLayers.Control.Panel.prototype.draw.apply(this,arguments);null===this.defaultControl&&(this.defaultControl=this.controls[0]);return a},CLASS_NAME:"OpenLayers.Control.EditingToolbar"});OpenLayers.Strategy.BBOX=OpenLayers.Class(OpenLayers.Strategy,{bounds:null,resolution:null,ratio:2,resFactor:null,response:null,activate:function(){var a=OpenLayers.Strategy.prototype.activate.call(this);a&&(this.layer.events.on({moveend:this.update,refresh:this.update,visibilitychanged:this.update,scope:this}),this.update());return a},deactivate:function(){var a=OpenLayers.Strategy.prototype.deactivate.call(this);a&&this.layer.events.un({moveend:this.update,refresh:this.update,visibilitychanged:this.update, scope:this});return a},update:function(a){var b=this.getMapBounds();if(null!==b&&(a&&a.force||this.layer.visibility&&this.layer.calculateInRange()&&this.invalidBounds(b)))this.calculateBounds(b),this.resolution=this.layer.map.getResolution(),this.triggerRead(a)},getMapBounds:function(){if(null===this.layer.map)return null;var a=this.layer.map.getExtent();a&&!this.layer.projection.equals(this.layer.map.getProjectionObject())&&(a=a.clone().transform(this.layer.map.getProjectionObject(),this.layer.projection)); return a},invalidBounds:function(a){a||(a=this.getMapBounds());a=!this.bounds||!this.bounds.containsBounds(a);!a&&this.resFactor&&(a=this.resolution/this.layer.map.getResolution(),a=a>=this.resFactor||a<=1/this.resFactor);return a},calculateBounds:function(a){a||(a=this.getMapBounds());var b=a.getCenterLonLat(),c=a.getWidth()*this.ratio,a=a.getHeight()*this.ratio;this.bounds=new OpenLayers.Bounds(b.lon-c/2,b.lat-a/2,b.lon+c/2,b.lat+a/2)},triggerRead:function(a){this.response&&!(a&&!0===a.noAbort)&& (this.layer.protocol.abort(this.response),this.layer.events.triggerEvent("loadend"));this.layer.events.triggerEvent("loadstart");this.response=this.layer.protocol.read(OpenLayers.Util.applyDefaults({filter:this.createFilter(),callback:this.merge,scope:this},a))},createFilter:function(){var a=new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.BBOX,value:this.bounds,projection:this.layer.projection});this.layer.filter&&(a=new OpenLayers.Filter.Logical({type:OpenLayers.Filter.Logical.AND, filters:[this.layer.filter,a]}));return a},merge:function(a){this.layer.destroyFeatures();if((a=a.features)&&0<a.length){var b=this.layer.projection,c=this.layer.map.getProjectionObject();if(!c.equals(b))for(var d,e=0,f=a.length;e<f;++e)(d=a[e].geometry)&&d.transform(b,c);this.layer.addFeatures(a)}this.response=null;this.layer.events.triggerEvent("loadend")},CLASS_NAME:"OpenLayers.Strategy.BBOX"});OpenLayers.Layer.WorldWind=OpenLayers.Class(OpenLayers.Layer.Grid,{DEFAULT_PARAMS:{},isBaseLayer:!0,lzd:null,zoomLevels:null,initialize:function(a,b,c,d,e,f){this.lzd=c;this.zoomLevels=d;c=[];c.push(a,b,e,f);OpenLayers.Layer.Grid.prototype.initialize.apply(this,c);this.params=OpenLayers.Util.applyDefaults(this.params,this.DEFAULT_PARAMS)},getZoom:function(){var a=this.map.getZoom();this.map.getMaxExtent();return a-=Math.log(this.maxResolution/(this.lzd/512))/Math.log(2)},getURL:function(a){var a= this.adjustBounds(a),b=this.getZoom(),c=this.map.getMaxExtent(),d=this.lzd/Math.pow(2,this.getZoom()),e=Math.floor((a.left-c.left)/d),a=Math.floor((a.bottom-c.bottom)/d);return this.map.getResolution()<=this.lzd/512&&this.getZoom()<=this.zoomLevels?this.getFullRequestString({L:b,X:e,Y:a}):OpenLayers.Util.getImageLocation("blank.gif")},CLASS_NAME:"OpenLayers.Layer.WorldWind"});OpenLayers.Protocol.CSW=function(a){var a=OpenLayers.Util.applyDefaults(a,OpenLayers.Protocol.CSW.DEFAULTS),b=OpenLayers.Protocol.CSW["v"+a.version.replace(/\./g,"_")];if(!b)throw"Unsupported CSW version: "+a.version;return new b(a)};OpenLayers.Protocol.CSW.DEFAULTS={version:"2.0.2"};OpenLayers.Format.WMTSCapabilities=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.0.0",yx:{"urn:ogc:def:crs:EPSG::4326":!0},createLayer:function(a,b){var c,d={layer:!0,matrixSet:!0},e;for(e in d)if(!(e in b))throw Error("Missing property '"+e+"' in layer configuration.");d=a.contents;e=d.tileMatrixSets[b.matrixSet];for(var f,g=0,h=d.layers.length;g<h;++g)if(d.layers[g].identifier===b.layer){f=d.layers[g];break}if(f&&e){for(var i,g=0,h=f.styles.length;g<h&&!(i=f.styles[g],i.isDefault);++g); c=new OpenLayers.Layer.WMTS(OpenLayers.Util.applyDefaults(b,{url:"REST"===b.requestEncoding&&f.resourceUrl?f.resourceUrl.tile.template:a.operationsMetadata.GetTile.dcp.http.get[0].url,name:f.title,style:i.identifier,matrixIds:e.matrixIds,tileFullExtent:e.bounds}))}return c},CLASS_NAME:"OpenLayers.Format.WMTSCapabilities"});OpenLayers.Layer.Google.v3={DEFAULTS:{sphericalMercator:!0,projection:"EPSG:900913"},animationEnabled:!0,loadMapObject:function(){this.type||(this.type=google.maps.MapTypeId.ROADMAP);var a,b=OpenLayers.Layer.Google.cache[this.map.id];b?(a=b.mapObject,++b.count):(b=this.map.viewPortDiv,a=document.createElement("div"),a.id=this.map.id+"_GMapContainer",a.style.position="absolute",a.style.width="100%",a.style.height="100%",b.appendChild(a),b=this.map.getCenter(),a=new google.maps.Map(a,{center:b?new google.maps.LatLng(b.lat, b.lon):new google.maps.LatLng(0,0),zoom:this.map.getZoom()||0,mapTypeId:this.type,disableDefaultUI:!0,keyboardShortcuts:!1,draggable:!1,disableDoubleClickZoom:!0,scrollwheel:!1,streetViewControl:!1}),b={mapObject:a,count:1},OpenLayers.Layer.Google.cache[this.map.id]=b,this.repositionListener=google.maps.event.addListenerOnce(a,"center_changed",OpenLayers.Function.bind(this.repositionMapElements,this)));this.mapObject=a;this.setGMapVisibility(this.visibility)},repositionMapElements:function(){google.maps.event.trigger(this.mapObject, "resize");var a=this.mapObject.getDiv().firstChild;if(!a||3>a.childNodes.length)return this.repositionTimer=window.setTimeout(OpenLayers.Function.bind(this.repositionMapElements,this),250),!1;for(var b=OpenLayers.Layer.Google.cache[this.map.id],c=this.map.viewPortDiv,d=a.children.length-1;0<=d;--d){if(1000001==a.children[d].style.zIndex){var e=a.children[d];c.appendChild(e);e.style.zIndex="1100";e.style.bottom="";e.className="olLayerGoogleCopyright olLayerGoogleV3";e.style.display="";b.termsOfUse= e}1E6==a.children[d].style.zIndex&&(e=a.children[d],c.appendChild(e),e.style.zIndex="1100",e.style.bottom="",e.className="olLayerGooglePoweredBy olLayerGoogleV3 gmnoprint",e.style.display="",b.poweredBy=e);10000002==a.children[d].style.zIndex&&c.appendChild(a.children[d])}this.setGMapVisibility(this.visibility)},onMapResize:function(){if(this.visibility)google.maps.event.trigger(this.mapObject,"resize");else{var a=OpenLayers.Layer.Google.cache[this.map.id];if(!a.resized){var b=this;google.maps.event.addListenerOnce(this.mapObject, "tilesloaded",function(){google.maps.event.trigger(b.mapObject,"resize");b.moveTo(b.map.getCenter(),b.map.getZoom());delete a.resized})}a.resized=!0}},setGMapVisibility:function(a){var b=OpenLayers.Layer.Google.cache[this.map.id];if(b){for(var c=this.type,d=this.map.layers,e,f=d.length-1;0<=f;--f)if(e=d[f],e instanceof OpenLayers.Layer.Google&&!0===e.visibility&&!0===e.inRange){c=e.type;a=!0;break}d=this.mapObject.getDiv();!0===a?(this.mapObject.setMapTypeId(c),d.style.left="",b.termsOfUse&&b.termsOfUse.style&& (b.termsOfUse.style.left="",b.termsOfUse.style.display="",b.poweredBy.style.display=""),b.displayed=this.id):(delete b.displayed,d.style.left="-9999px",b.termsOfUse&&b.termsOfUse.style&&(b.termsOfUse.style.display="none",b.termsOfUse.style.left="-9999px",b.poweredBy.style.display="none"))}},getMapContainer:function(){return this.mapObject.getDiv()},getMapObjectBoundsFromOLBounds:function(a){var b=null;null!=a&&(b=this.sphericalMercator?this.inverseMercator(a.bottom,a.left):new OpenLayers.LonLat(a.bottom, a.left),a=this.sphericalMercator?this.inverseMercator(a.top,a.right):new OpenLayers.LonLat(a.top,a.right),b=new google.maps.LatLngBounds(new google.maps.LatLng(b.lat,b.lon),new google.maps.LatLng(a.lat,a.lon)));return b},getMapObjectLonLatFromMapObjectPixel:function(a){var b=this.map.getSize(),c=this.getLongitudeFromMapObjectLonLat(this.mapObject.center),d=this.getLatitudeFromMapObjectLonLat(this.mapObject.center),e=this.map.getResolution(),a=new OpenLayers.LonLat(c+(a.x-b.w/2)*e,d-(a.y-b.h/2)*e); this.wrapDateLine&&(a=a.wrapDateLine(this.maxExtent));return this.getMapObjectLonLatFromLonLat(a.lon,a.lat)},getMapObjectPixelFromMapObjectLonLat:function(a){var b=this.getLongitudeFromMapObjectLonLat(a),a=this.getLatitudeFromMapObjectLonLat(a),c=this.map.getResolution(),d=this.map.getExtent();return this.getMapObjectPixelFromXY(1/c*(b-d.left),1/c*(d.top-a))},setMapObjectCenter:function(a,b){if(!1===this.animationEnabled&&b!=this.mapObject.zoom){var c=this.getMapContainer();google.maps.event.addListenerOnce(this.mapObject, "idle",function(){c.style.visibility=""});c.style.visibility="hidden"}this.mapObject.setOptions({center:a,zoom:b})},getMapObjectZoomFromMapObjectBounds:function(a){return this.mapObject.getBoundsZoomLevel(a)},getMapObjectLonLatFromLonLat:function(a,b){var c;this.sphericalMercator?(c=this.inverseMercator(a,b),c=new google.maps.LatLng(c.lat,c.lon)):c=new google.maps.LatLng(b,a);return c},getMapObjectPixelFromXY:function(a,b){return new google.maps.Point(a,b)},destroy:function(){this.repositionListener&& google.maps.event.removeListener(this.repositionListener);this.repositionTimer&&window.clearTimeout(this.repositionTimer);OpenLayers.Layer.Google.prototype.destroy.apply(this,arguments)}};OpenLayers.Format.WPSDescribeProcess=OpenLayers.Class(OpenLayers.Format.XML,{VERSION:"1.0.0",namespaces:{wps:"http://www.opengis.net/wps/1.0.0",ows:"http://www.opengis.net/ows/1.1",xsi:"http://www.w3.org/2001/XMLSchema-instance"},schemaLocation:"http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd",defaultPrefix:"wps",regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this, [a]));a&&9==a.nodeType&&(a=a.documentElement);var b={};this.readNode(a,b);return b},readers:{wps:{ProcessDescriptions:function(a,b){b.processDescriptions={};this.readChildNodes(a,b.processDescriptions)},ProcessDescription:function(a,b){var c={processVersion:this.getAttributeNS(a,this.namespaces.wps,"processVersion"),statusSupported:"true"===a.getAttribute("statusSupported"),storeSupported:"true"===a.getAttribute("storeSupported")};this.readChildNodes(a,c);b[c.identifier]=c},DataInputs:function(a, b){b.dataInputs=[];this.readChildNodes(a,b.dataInputs)},ProcessOutputs:function(a,b){b.processOutputs=[];this.readChildNodes(a,b.processOutputs)},Output:function(a,b){var c={};this.readChildNodes(a,c);b.push(c)},ComplexOutput:function(a,b){b.complexOutput={};this.readChildNodes(a,b.complexOutput)},Input:function(a,b){var c={maxOccurs:parseInt(a.getAttribute("maxOccurs")),minOccurs:parseInt(a.getAttribute("minOccurs"))};this.readChildNodes(a,c);b.push(c)},BoundingBoxData:function(a,b){b.boundingBoxData= {};this.readChildNodes(a,b.boundingBoxData)},CRS:function(a,b){b.CRSs||(b.CRSs={});b.CRSs[this.getChildValue(a)]=!0},LiteralData:function(a,b){b.literalData={};this.readChildNodes(a,b.literalData)},ComplexData:function(a,b){b.complexData={};this.readChildNodes(a,b.complexData)},Default:function(a,b){b["default"]={};this.readChildNodes(a,b["default"])},Supported:function(a,b){b.supported={};this.readChildNodes(a,b.supported)},Format:function(a,b){var c={};this.readChildNodes(a,c);b.formats||(b.formats= {});b.formats[c.mimeType]=!0},MimeType:function(a,b){b.mimeType=this.getChildValue(a)}},ows:OpenLayers.Format.OWSCommon.v1_1_0.prototype.readers.ows},CLASS_NAME:"OpenLayers.Format.WPSDescribeProcess"});OpenLayers.Format.CSWGetRecords.v2_0_2=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{csw:"http://www.opengis.net/cat/csw/2.0.2",dc:"http://purl.org/dc/elements/1.1/",dct:"http://purl.org/dc/terms/",gmd:"http://www.isotc211.org/2005/gmd",geonet:"http://www.fao.org/geonetwork",ogc:"http://www.opengis.net/ogc",ows:"http://www.opengis.net/ows",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},defaultPrefix:"csw",version:"2.0.2",schemaLocation:"http://www.opengis.net/cat/csw/2.0.2 http://schemas.opengis.net/csw/2.0.2/CSW-discovery.xsd", requestId:null,resultType:null,outputFormat:null,outputSchema:null,startPosition:null,maxRecords:null,DistributedSearch:null,ResponseHandler:null,Query:null,regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement);var b={};this.readNode(a,b);return b}, readers:{csw:{GetRecordsResponse:function(a,b){b.records=[];this.readChildNodes(a,b);var c=this.getAttributeNS(a,"","version");""!=c&&(b.version=c)},RequestId:function(a,b){b.RequestId=this.getChildValue(a)},SearchStatus:function(a,b){b.SearchStatus={};var c=this.getAttributeNS(a,"","timestamp");""!=c&&(b.SearchStatus.timestamp=c)},SearchResults:function(a,b){this.readChildNodes(a,b);for(var c=a.attributes,d={},e=0,f=c.length;e<f;++e)d[c[e].name]="numberOfRecordsMatched"==c[e].name||"numberOfRecordsReturned"== c[e].name||"nextRecord"==c[e].name?parseInt(c[e].nodeValue):c[e].nodeValue;b.SearchResults=d},SummaryRecord:function(a,b){var c={type:"SummaryRecord"};this.readChildNodes(a,c);b.records.push(c)},BriefRecord:function(a,b){var c={type:"BriefRecord"};this.readChildNodes(a,c);b.records.push(c)},DCMIRecord:function(a,b){var c={type:"DCMIRecord"};this.readChildNodes(a,c);b.records.push(c)},Record:function(a,b){var c={type:"Record"};this.readChildNodes(a,c);b.records.push(c)},"*":function(a,b){var c=a.localName|| a.nodeName.split(":").pop();b[c]=this.getChildValue(a)}},geonet:{info:function(a,b){var c={};this.readChildNodes(a,c);b.gninfo=c}},dc:{"*":function(a,b){var c=a.localName||a.nodeName.split(":").pop();OpenLayers.Util.isArray(b[c])||(b[c]=[]);for(var d={},e=a.attributes,f=0,g=e.length;f<g;++f)d[e[f].name]=e[f].nodeValue;d.value=this.getChildValue(a);""!=d.value&&b[c].push(d)}},dct:{"*":function(a,b){var c=a.localName||a.nodeName.split(":").pop();OpenLayers.Util.isArray(b[c])||(b[c]=[]);b[c].push(this.getChildValue(a))}}, ows:OpenLayers.Util.applyDefaults({BoundingBox:function(a,b){b.bounds&&(b.BoundingBox=[{crs:b.projection,value:[b.bounds.left,b.bounds.bottom,b.bounds.right,b.bounds.top]}],delete b.projection,delete b.bounds);OpenLayers.Format.OWSCommon.v1_0_0.prototype.readers.ows.BoundingBox.apply(this,arguments)}},OpenLayers.Format.OWSCommon.v1_0_0.prototype.readers.ows)},write:function(a){a=this.writeNode("csw:GetRecords",a);a.setAttribute("xmlns:gmd",this.namespaces.gmd);return OpenLayers.Format.XML.prototype.write.apply(this, [a])},writers:{csw:{GetRecords:function(a){a||(a={});var b=this.createElementNSPlus("csw:GetRecords",{attributes:{service:"CSW",version:this.version,requestId:a.requestId||this.requestId,resultType:a.resultType||this.resultType,outputFormat:a.outputFormat||this.outputFormat,outputSchema:a.outputSchema||this.outputSchema,startPosition:a.startPosition||this.startPosition,maxRecords:a.maxRecords||this.maxRecords}});if(a.DistributedSearch||this.DistributedSearch)this.writeNode("csw:DistributedSearch", a.DistributedSearch||this.DistributedSearch,b);var c=a.ResponseHandler||this.ResponseHandler;if(OpenLayers.Util.isArray(c)&&0<c.length)for(var d=0,e=c.length;d<e;d++)this.writeNode("csw:ResponseHandler",c[d],b);this.writeNode("Query",a.Query||this.Query,b);return b},DistributedSearch:function(a){return this.createElementNSPlus("csw:DistributedSearch",{attributes:{hopCount:a.hopCount}})},ResponseHandler:function(a){return this.createElementNSPlus("csw:ResponseHandler",{value:a.value})},Query:function(a){a|| (a={});var b=this.createElementNSPlus("csw:Query",{attributes:{typeNames:a.typeNames||"csw:Record"}}),c=a.ElementName;if(OpenLayers.Util.isArray(c)&&0<c.length)for(var d=0,e=c.length;d<e;d++)this.writeNode("csw:ElementName",c[d],b);else this.writeNode("csw:ElementSetName",a.ElementSetName||{value:"summary"},b);a.Constraint&&this.writeNode("csw:Constraint",a.Constraint,b);a.SortBy&&this.writeNode("ogc:SortBy",a.SortBy,b);return b},ElementName:function(a){return this.createElementNSPlus("csw:ElementName", {value:a.value})},ElementSetName:function(a){return this.createElementNSPlus("csw:ElementSetName",{attributes:{typeNames:a.typeNames},value:a.value})},Constraint:function(a){var b=this.createElementNSPlus("csw:Constraint",{attributes:{version:a.version}});if(a.Filter){var c=new OpenLayers.Format.Filter({version:a.version});b.appendChild(c.write(a.Filter))}else a.CqlText&&(a=this.createElementNSPlus("CqlText",{value:a.CqlText.value}),b.appendChild(a));return b}},ogc:OpenLayers.Format.Filter.v1_1_0.prototype.writers.ogc}, CLASS_NAME:"OpenLayers.Format.CSWGetRecords.v2_0_2"});OpenLayers.Marker.Box=OpenLayers.Class(OpenLayers.Marker,{bounds:null,div:null,initialize:function(a,b,c){this.bounds=a;this.div=OpenLayers.Util.createDiv();this.div.style.overflow="hidden";this.events=new OpenLayers.Events(this,this.div);this.setBorder(b,c)},destroy:function(){this.div=this.bounds=null;OpenLayers.Marker.prototype.destroy.apply(this,arguments)},setBorder:function(a,b){a||(a="red");b||(b=2);this.div.style.border=b+"px solid "+a},draw:function(a,b){OpenLayers.Util.modifyDOMElement(this.div, null,a,b);return this.div},onScreen:function(){var a=!1;this.map&&(a=this.map.getExtent().containsBounds(this.bounds,!0,!0));return a},display:function(a){this.div.style.display=a?"":"none"},CLASS_NAME:"OpenLayers.Marker.Box"});OpenLayers.Format.Text=OpenLayers.Class(OpenLayers.Format,{defaultStyle:null,extractStyles:!0,initialize:function(a){a=a||{};!1!==a.extractStyles&&(a.defaultStyle={externalGraphic:OpenLayers.Util.getImageLocation("marker.png"),graphicWidth:21,graphicHeight:25,graphicXOffset:-10.5,graphicYOffset:-12.5});OpenLayers.Format.prototype.initialize.apply(this,[a])},read:function(a){for(var a=a.split("\n"),b,c=[],d=0;d<a.length-1;d++){var e=a[d].replace(/^\s*/,"").replace(/\s*$/,"");if("#"!=e.charAt(0))if(b){for(var e= e.split("\t"),f=new OpenLayers.Geometry.Point(0,0),g={},h=this.defaultStyle?OpenLayers.Util.applyDefaults({},this.defaultStyle):null,i=!1,j=0;j<e.length;j++)if(e[j])if("point"==b[j])i=e[j].split(","),f.y=parseFloat(i[0]),f.x=parseFloat(i[1]),i=!0;else if("lat"==b[j])f.y=parseFloat(e[j]),i=!0;else if("lon"==b[j])f.x=parseFloat(e[j]),i=!0;else if("title"==b[j])g.title=e[j];else if("image"==b[j]||"icon"==b[j]&&h)h.externalGraphic=e[j];else if("iconSize"==b[j]&&h){var k=e[j].split(",");h.graphicWidth= parseFloat(k[0]);h.graphicHeight=parseFloat(k[1])}else"iconOffset"==b[j]&&h?(k=e[j].split(","),h.graphicXOffset=parseFloat(k[0]),h.graphicYOffset=parseFloat(k[1])):"description"==b[j]?g.description=e[j]:"overflow"==b[j]?g.overflow=e[j]:g[b[j]]=e[j];i&&(this.internalProjection&&this.externalProjection&&f.transform(this.externalProjection,this.internalProjection),e=new OpenLayers.Feature.Vector(f,g,h),c.push(e))}else b=e.split("\t")}return c},CLASS_NAME:"OpenLayers.Format.Text"});OpenLayers.Layer.Text=OpenLayers.Class(OpenLayers.Layer.Markers,{location:null,features:null,formatOptions:null,selectedFeature:null,initialize:function(a,b){OpenLayers.Layer.Markers.prototype.initialize.apply(this,arguments);this.features=[]},destroy:function(){OpenLayers.Layer.Markers.prototype.destroy.apply(this,arguments);this.clearFeatures();this.features=null},loadText:function(){!this.loaded&&null!=this.location&&(this.events.triggerEvent("loadstart"),OpenLayers.Request.GET({url:this.location, success:this.parseData,failure:function(){this.events.triggerEvent("loadend")},scope:this}),this.loaded=!0)},moveTo:function(a,b,c){OpenLayers.Layer.Markers.prototype.moveTo.apply(this,arguments);this.visibility&&!this.loaded&&this.loadText()},parseData:function(a){var a=a.responseText,b={};OpenLayers.Util.extend(b,this.formatOptions);this.map&&!this.projection.equals(this.map.getProjectionObject())&&(b.externalProjection=this.projection,b.internalProjection=this.map.getProjectionObject());for(var a= (new OpenLayers.Format.Text(b)).read(a),b=0,c=a.length;b<c;b++){var d={},e=a[b],f,g,h;f=new OpenLayers.LonLat(e.geometry.x,e.geometry.y);e.style.graphicWidth&&e.style.graphicHeight&&(g=new OpenLayers.Size(e.style.graphicWidth,e.style.graphicHeight));void 0!==e.style.graphicXOffset&&void 0!==e.style.graphicYOffset&&(h=new OpenLayers.Pixel(e.style.graphicXOffset,e.style.graphicYOffset));null!=e.style.externalGraphic?d.icon=new OpenLayers.Icon(e.style.externalGraphic,g,h):(d.icon=OpenLayers.Marker.defaultIcon(), null!=g&&d.icon.setSize(g));null!=e.attributes.title&&null!=e.attributes.description&&(d.popupContentHTML="<h2>"+e.attributes.title+"</h2><p>"+e.attributes.description+"</p>");d.overflow=e.attributes.overflow||"auto";d=new OpenLayers.Feature(this,f,d);this.features.push(d);f=d.createMarker();null!=e.attributes.title&&null!=e.attributes.description&&f.events.register("click",d,this.markerClick);this.addMarker(f)}this.events.triggerEvent("loadend")},markerClick:function(a){var b=this==this.layer.selectedFeature; this.layer.selectedFeature=!b?this:null;for(var c=0,d=this.layer.map.popups.length;c<d;c++)this.layer.map.removePopup(this.layer.map.popups[c]);b||this.layer.map.addPopup(this.createPopup());OpenLayers.Event.stop(a)},clearFeatures:function(){if(null!=this.features)for(;0<this.features.length;){var a=this.features[0];OpenLayers.Util.removeItem(this.features,a);a.destroy()}},CLASS_NAME:"OpenLayers.Layer.Text"});OpenLayers.Handler.RegularPolygon=OpenLayers.Class(OpenLayers.Handler.Drag,{sides:4,radius:null,snapAngle:null,snapToggle:"shiftKey",layerOptions:null,persist:!1,irregular:!1,citeCompliant:!1,angle:null,fixedRadius:!1,feature:null,layer:null,origin:null,initialize:function(a,b,c){if(!c||!c.layerOptions||!c.layerOptions.styleMap)this.style=OpenLayers.Util.extend(OpenLayers.Feature.Vector.style["default"],{});OpenLayers.Handler.Drag.prototype.initialize.apply(this,[a,b,c]);this.options=c?c:{}},setOptions:function(a){OpenLayers.Util.extend(this.options, a);OpenLayers.Util.extend(this,a)},activate:function(){var a=!1;OpenLayers.Handler.Drag.prototype.activate.apply(this,arguments)&&(a=OpenLayers.Util.extend({displayInLayerSwitcher:!1,calculateInRange:OpenLayers.Function.True,wrapDateLine:this.citeCompliant},this.layerOptions),this.layer=new OpenLayers.Layer.Vector(this.CLASS_NAME,a),this.map.addLayer(this.layer),a=!0);return a},deactivate:function(){var a=!1;OpenLayers.Handler.Drag.prototype.deactivate.apply(this,arguments)&&(this.dragging&&this.cancel(), null!=this.layer.map&&(this.layer.destroy(!1),this.feature&&this.feature.destroy()),this.feature=this.layer=null,a=!0);return a},down:function(a){this.fixedRadius=!!this.radius;a=this.layer.getLonLatFromViewPortPx(a.xy);this.origin=new OpenLayers.Geometry.Point(a.lon,a.lat);if(!this.fixedRadius||this.irregular)this.radius=this.map.getResolution();this.persist&&this.clear();this.feature=new OpenLayers.Feature.Vector;this.createGeometry();this.callback("create",[this.origin,this.feature]);this.layer.addFeatures([this.feature], {silent:!0});this.layer.drawFeature(this.feature,this.style)},move:function(a){var b=this.layer.getLonLatFromViewPortPx(a.xy),b=new OpenLayers.Geometry.Point(b.lon,b.lat);this.irregular?(a=Math.sqrt(2)*Math.abs(b.y-this.origin.y)/2,this.radius=Math.max(this.map.getResolution()/2,a)):this.fixedRadius?this.origin=b:(this.calculateAngle(b,a),this.radius=Math.max(this.map.getResolution()/2,b.distanceTo(this.origin)));this.modifyGeometry();this.irregular&&(a=b.x-this.origin.x,b=b.y-this.origin.y,this.feature.geometry.resize(1, this.origin,0==b?a/(this.radius*Math.sqrt(2)):a/b),this.feature.geometry.move(a/2,b/2));this.layer.drawFeature(this.feature,this.style)},up:function(a){this.finalize();this.start==this.last&&this.callback("done",[a.xy])},out:function(){this.finalize()},createGeometry:function(){this.angle=Math.PI*(1/this.sides-0.5);this.snapAngle&&(this.angle+=this.snapAngle*(Math.PI/180));this.feature.geometry=OpenLayers.Geometry.Polygon.createRegularPolygon(this.origin,this.radius,this.sides,this.snapAngle)},modifyGeometry:function(){var a, b,c=this.feature.geometry.components[0];c.components.length!=this.sides+1&&(this.createGeometry(),c=this.feature.geometry.components[0]);for(var d=0;d<this.sides;++d)b=c.components[d],a=this.angle+2*d*Math.PI/this.sides,b.x=this.origin.x+this.radius*Math.cos(a),b.y=this.origin.y+this.radius*Math.sin(a),b.clearBounds()},calculateAngle:function(a,b){var c=Math.atan2(a.y-this.origin.y,a.x-this.origin.x);if(this.snapAngle&&this.snapToggle&&!b[this.snapToggle]){var d=Math.PI/180*this.snapAngle;this.angle= Math.round(c/d)*d}else this.angle=c},cancel:function(){this.callback("cancel",null);this.finalize()},finalize:function(){this.origin=null;this.radius=this.options.radius},clear:function(){this.layer&&(this.layer.renderer.clear(),this.layer.destroyFeatures())},callback:function(a){this.callbacks[a]&&this.callbacks[a].apply(this.control,[this.feature.geometry.clone()]);!this.persist&&("done"==a||"cancel"==a)&&this.clear()},CLASS_NAME:"OpenLayers.Handler.RegularPolygon"});OpenLayers.Control.SLDSelect=OpenLayers.Class(OpenLayers.Control,{clearOnDeactivate:!1,layers:null,callbacks:null,selectionSymbolizer:{Polygon:{fillColor:"#FF0000",stroke:!1},Line:{strokeColor:"#FF0000",strokeWidth:2},Point:{graphicName:"square",fillColor:"#FF0000",pointRadius:5}},layerOptions:null,handlerOptions:null,sketchStyle:null,wfsCache:{},layerCache:{},initialize:function(a,b){OpenLayers.Control.prototype.initialize.apply(this,[b]);this.callbacks=OpenLayers.Util.extend({done:this.select,click:this.select}, this.callbacks);this.handlerOptions=this.handlerOptions||{};this.layerOptions=OpenLayers.Util.applyDefaults(this.layerOptions,{displayInLayerSwitcher:!1,tileOptions:{maxGetUrlLength:2048}});this.sketchStyle&&(this.handlerOptions.layerOptions=OpenLayers.Util.applyDefaults(this.handlerOptions.layerOptions,{styleMap:new OpenLayers.StyleMap({"default":this.sketchStyle})}));this.handler=new a(this,this.callbacks,this.handlerOptions)},destroy:function(){for(var a in this.layerCache)delete this.layerCache[a]; for(a in this.wfsCache)delete this.wfsCache[a];OpenLayers.Control.prototype.destroy.apply(this,arguments)},coupleLayerVisiblity:function(a){this.setVisibility(a.object.getVisibility())},createSelectionLayer:function(a){var b;if(this.layerCache[a.id])b=this.layerCache[a.id];else{b=new OpenLayers.Layer.WMS(a.name,a.url,a.params,OpenLayers.Util.applyDefaults(this.layerOptions,a.getOptions()));this.layerCache[a.id]=b;if(!1===this.layerOptions.displayInLayerSwitcher)a.events.on({visibilitychanged:this.coupleLayerVisiblity, scope:b});this.map.addLayer(b)}return b},createSLD:function(a,b,c){for(var d={version:"1.0.0",namedLayers:{}},e=(""+a.params.LAYERS).split(","),f=0,g=e.length;f<g;f++){var h=e[f];d.namedLayers[h]={name:h,userStyles:[]};var i=this.selectionSymbolizer,j=c[f];0<=j.type.indexOf("Polygon")?i={Polygon:this.selectionSymbolizer.Polygon}:0<=j.type.indexOf("LineString")?i={Line:this.selectionSymbolizer.Line}:0<=j.type.indexOf("Point")&&(i={Point:this.selectionSymbolizer.Point});d.namedLayers[h].userStyles.push({name:"default", rules:[new OpenLayers.Rule({symbolizer:i,filter:b[f],maxScaleDenominator:a.options.minScale})]})}return(new OpenLayers.Format.SLD({srsName:this.map.getProjection()})).write(d)},parseDescribeLayer:function(a){var b=new OpenLayers.Format.WMSDescribeLayer,c=a.responseXML;if(!c||!c.documentElement)c=a.responseText;for(var a=b.read(c),b=[],c=null,d=0,e=a.length;d<e;d++)"WFS"==a[d].owsType&&(b.push(a[d].typeName),c=a[d].owsURL);OpenLayers.Request.GET({url:c,params:{SERVICE:"WFS",TYPENAME:b.toString(),REQUEST:"DescribeFeatureType", VERSION:"1.0.0"},callback:function(a){var b=new OpenLayers.Format.WFSDescribeFeatureType,c=a.responseXML;if(!c||!c.documentElement)c=a.responseText;this.control.wfsCache[this.layer.id]=b.read(c);this.control._queue&&this.control.applySelection()},scope:this})},getGeometryAttributes:function(a){for(var b=[],a=this.wfsCache[a.id],c=0,d=a.featureTypes.length;c<d;c++)for(var e=a.featureTypes[c].properties,f=0,g=e.length;f<g;f++){var h=e[f],i=h.type;(0<=i.indexOf("LineString")||0<=i.indexOf("GeometryAssociationType")|| 0<=i.indexOf("GeometryPropertyType")||0<=i.indexOf("Point")||0<=i.indexOf("Polygon"))&&b.push(h)}return b},activate:function(){var a=OpenLayers.Control.prototype.activate.call(this);if(a)for(var b=0,c=this.layers.length;b<c;b++){var d=this.layers[b];d&&!this.wfsCache[d.id]&&OpenLayers.Request.GET({url:d.url,params:{SERVICE:"WMS",VERSION:d.params.VERSION,LAYERS:d.params.LAYERS,REQUEST:"DescribeLayer"},callback:this.parseDescribeLayer,scope:{layer:d,control:this}})}return a},deactivate:function(){var a= OpenLayers.Control.prototype.deactivate.call(this);if(a)for(var b=0,c=this.layers.length;b<c;b++){var d=this.layers[b];if(d&&!0===this.clearOnDeactivate){var e=this.layerCache,f=e[d.id];f&&(d.events.un({visibilitychanged:this.coupleLayerVisiblity,scope:f}),f.destroy(),delete e[d.id])}}return a},setLayers:function(a){this.active?(this.deactivate(),this.layers=a,this.activate()):this.layers=a},createFilter:function(a,b){var c=null;this.handler instanceof OpenLayers.Handler.RegularPolygon?c=!0===this.handler.irregular? new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.BBOX,property:a.name,value:b.getBounds()}):new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.INTERSECTS,property:a.name,value:b}):this.handler instanceof OpenLayers.Handler.Polygon?c=new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.INTERSECTS,property:a.name,value:b}):this.handler instanceof OpenLayers.Handler.Path?c=0<=a.type.indexOf("Point")?new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.DWITHIN, property:a.name,distance:0.01*this.map.getExtent().getWidth(),distanceUnits:this.map.getUnits(),value:b}):new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.INTERSECTS,property:a.name,value:b}):this.handler instanceof OpenLayers.Handler.Click&&(c=0<=a.type.indexOf("Polygon")?new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.INTERSECTS,property:a.name,value:b}):new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.DWITHIN,property:a.name,distance:0.01*this.map.getExtent().getWidth(), distanceUnits:this.map.getUnits(),value:b}));return c},select:function(a){this._queue=function(){for(var b=0,c=this.layers.length;b<c;b++){for(var d=this.layers[b],e=this.getGeometryAttributes(d),f=[],g=0,h=e.length;g<h;g++){var i=e[g];if(null!==i){if(!(a instanceof OpenLayers.Geometry)){var j=this.map.getLonLatFromPixel(a.xy);a=new OpenLayers.Geometry.Point(j.lon,j.lat)}i=this.createFilter(i,a);null!==i&&f.push(i)}}g=this.createSelectionLayer(d);e=this.createSLD(d,f,e);this.events.triggerEvent("selected", {layer:d,filters:f});g.mergeNewParams({SLD_BODY:e});delete this._queue}};this.applySelection()},applySelection:function(){for(var a=!0,b=0,c=this.layers.length;b<c;b++)if(!this.wfsCache[this.layers[b].id]){a=!1;break}a&&this._queue.call(this)},CLASS_NAME:"OpenLayers.Control.SLDSelect"});OpenLayers.Control.Scale=OpenLayers.Class(OpenLayers.Control,{element:null,geodesic:!1,initialize:function(a,b){OpenLayers.Control.prototype.initialize.apply(this,[b]);this.element=OpenLayers.Util.getElement(a)},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);this.element||(this.element=document.createElement("div"),this.div.appendChild(this.element));this.map.events.register("moveend",this,this.updateScale);this.updateScale();return this.div},updateScale:function(){var a; if(!0===this.geodesic){if(!this.map.getUnits())return;a=OpenLayers.INCHES_PER_UNIT;a=(this.map.getGeodesicPixelSize().w||1.0E-6)*a.km*OpenLayers.DOTS_PER_INCH}else a=this.map.getScale();a&&(a=9500<=a&&95E4>=a?Math.round(a/1E3)+"K":95E4<=a?Math.round(a/1E6)+"M":Math.round(a),this.element.innerHTML=OpenLayers.i18n("Scale = 1 : ${scaleDenom}",{scaleDenom:a}))},CLASS_NAME:"OpenLayers.Control.Scale"});OpenLayers.Control.Button=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_BUTTON,trigger:function(){},CLASS_NAME:"OpenLayers.Control.Button"});OpenLayers.Layer.MapGuide=OpenLayers.Class(OpenLayers.Layer.Grid,{isBaseLayer:!0,useHttpTile:!1,singleTile:!1,useOverlay:!1,useAsyncOverlay:!0,TILE_PARAMS:{operation:"GETTILEIMAGE",version:"1.2.0"},SINGLE_TILE_PARAMS:{operation:"GETMAPIMAGE",format:"PNG",locale:"en",clip:"1",version:"1.0.0"},OVERLAY_PARAMS:{operation:"GETDYNAMICMAPOVERLAYIMAGE",format:"PNG",locale:"en",clip:"1",version:"2.0.0"},FOLDER_PARAMS:{tileColumnsPerFolder:30,tileRowsPerFolder:30,format:"png",querystring:null},defaultSize:new OpenLayers.Size(300, 300),tileOriginCorner:"tl",initialize:function(a,b,c,d){OpenLayers.Layer.Grid.prototype.initialize.apply(this,arguments);if(null==d||null==d.isBaseLayer)this.isBaseLayer="true"!=this.transparent&&!0!=this.transparent;d&&null!=d.useOverlay&&(this.useOverlay=d.useOverlay);this.singleTile?this.useOverlay?(OpenLayers.Util.applyDefaults(this.params,this.OVERLAY_PARAMS),this.useAsyncOverlay||(this.params.version="1.0.0")):OpenLayers.Util.applyDefaults(this.params,this.SINGLE_TILE_PARAMS):(this.useHttpTile? OpenLayers.Util.applyDefaults(this.params,this.FOLDER_PARAMS):OpenLayers.Util.applyDefaults(this.params,this.TILE_PARAMS),this.setTileSize(this.defaultSize))},clone:function(a){null==a&&(a=new OpenLayers.Layer.MapGuide(this.name,this.url,this.params,this.getOptions()));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a])},getURL:function(a){var b;b=a.getCenterLonLat();var c=this.map.getSize();this.singleTile?(a={setdisplaydpi:OpenLayers.DOTS_PER_INCH,setdisplayheight:c.h*this.ratio,setdisplaywidth:c.w* this.ratio,setviewcenterx:b.lon,setviewcentery:b.lat,setviewscale:this.map.getScale()},this.useOverlay&&!this.useAsyncOverlay&&(b={},b=OpenLayers.Util.extend(b,a),b.operation="GETVISIBLEMAPEXTENT",b.version="1.0.0",b.session=this.params.session,b.mapName=this.params.mapName,b.format="text/xml",b=this.getFullRequestString(b),OpenLayers.Request.GET({url:b,async:!1})),b=this.getFullRequestString(a)):(c=this.map.getResolution(),b=Math.floor((a.left-this.maxExtent.left)/c),b=Math.round(b/this.tileSize.w), a=Math.floor((this.maxExtent.top-a.top)/c),a=Math.round(a/this.tileSize.h),b=this.useHttpTile?this.getImageFilePath({tilecol:b,tilerow:a,scaleindex:this.resolutions.length-this.map.zoom-1}):this.getFullRequestString({tilecol:b,tilerow:a,scaleindex:this.resolutions.length-this.map.zoom-1}));return b},getFullRequestString:function(a,b){var c=null==b?this.url:b;"object"==typeof c&&(c=c[Math.floor(Math.random()*c.length)]);var d=c,e=OpenLayers.Util.extend({},this.params),e=OpenLayers.Util.extend(e,a), f=OpenLayers.Util.upperCaseObject(OpenLayers.Util.getParameters(c)),g;for(g in e)g.toUpperCase()in f&&delete e[g];e=OpenLayers.Util.getParameterString(e);e=e.replace(/,/g,"+");""!=e&&(f=c.charAt(c.length-1),d="&"==f||"?"==f?d+e:-1==c.indexOf("?")?d+("?"+e):d+("&"+e));return d},getImageFilePath:function(a,b){var c=null==b?this.url:b;"object"==typeof c&&(c=c[Math.floor(Math.random()*c.length)]);var d="",e="";0>a.tilerow&&(d="-");d=0==a.tilerow?d+"0":d+Math.floor(Math.abs(a.tilerow/this.params.tileRowsPerFolder))* this.params.tileRowsPerFolder;0>a.tilecol&&(e="-");e=0==a.tilecol?e+"0":e+Math.floor(Math.abs(a.tilecol/this.params.tileColumnsPerFolder))*this.params.tileColumnsPerFolder;d="/S"+Math.floor(a.scaleindex)+"/"+this.params.basemaplayergroupname+"/R"+d+"/C"+e+"/"+a.tilerow%this.params.tileRowsPerFolder+"_"+a.tilecol%this.params.tileColumnsPerFolder+"."+this.params.format;this.params.querystring&&(d+="?"+this.params.querystring);return c+d},calculateGridLayout:function(a,b,c){var d=c*this.tileSize.w,c= c*this.tileSize.h,e=a.left-b.lon,f=Math.floor(e/d)-this.buffer,a=b.lat-a.top+c,g=Math.floor(a/c)-this.buffer;return{tilelon:d,tilelat:c,tileoffsetlon:b.lon+f*d,tileoffsetlat:b.lat-c*g,tileoffsetx:-(e/d-f)*this.tileSize.w,tileoffsety:(g-a/c)*this.tileSize.h}},CLASS_NAME:"OpenLayers.Layer.MapGuide"});OpenLayers.Control.Measure=OpenLayers.Class(OpenLayers.Control,{handlerOptions:null,callbacks:null,displaySystem:"metric",geodesic:!1,displaySystemUnits:{geographic:["dd"],english:["mi","ft","in"],metric:["km","m"]},partialDelay:300,delayedTrigger:null,persist:!1,immediate:!1,initialize:function(a,b){OpenLayers.Control.prototype.initialize.apply(this,[b]);var c={done:this.measureComplete,point:this.measurePartial};this.immediate&&(c.modify=this.measureImmediate);this.callbacks=OpenLayers.Util.extend(c, this.callbacks);this.handlerOptions=OpenLayers.Util.extend({persist:this.persist},this.handlerOptions);this.handler=new a(this,this.callbacks,this.handlerOptions)},deactivate:function(){this.cancelDelay();return OpenLayers.Control.prototype.deactivate.apply(this,arguments)},cancel:function(){this.cancelDelay();this.handler.cancel()},setImmediate:function(a){(this.immediate=a)?this.callbacks.modify=this.measureImmediate:delete this.callbacks.modify},updateHandler:function(a,b){var c=this.active;c&& this.deactivate();this.handler=new a(this,this.callbacks,b);c&&this.activate()},measureComplete:function(a){this.cancelDelay();this.measure(a,"measure")},measurePartial:function(a,b){this.cancelDelay();b=b.clone();this.handler.freehandMode(this.handler.evt)?this.measure(b,"measurepartial"):this.delayedTrigger=window.setTimeout(OpenLayers.Function.bind(function(){this.delayedTrigger=null;this.measure(b,"measurepartial")},this),this.partialDelay)},measureImmediate:function(a,b,c){c&&!this.handler.freehandMode(this.handler.evt)&& (this.cancelDelay(),this.measure(b.geometry,"measurepartial"))},cancelDelay:function(){null!==this.delayedTrigger&&(window.clearTimeout(this.delayedTrigger),this.delayedTrigger=null)},measure:function(a,b){var c,d;-1<a.CLASS_NAME.indexOf("LineString")?(c=this.getBestLength(a),d=1):(c=this.getBestArea(a),d=2);this.events.triggerEvent(b,{measure:c[0],units:c[1],order:d,geometry:a})},getBestArea:function(a){for(var b=this.displaySystemUnits[this.displaySystem],c,d,e=0,f=b.length;e<f&&!(c=b[e],d=this.getArea(a, c),1<d);++e);return[d,c]},getArea:function(a,b){var c,d;this.geodesic?(c=a.getGeodesicArea(this.map.getProjectionObject()),d="m"):(c=a.getArea(),d=this.map.getUnits());var e=OpenLayers.INCHES_PER_UNIT[b];e&&(c*=Math.pow(OpenLayers.INCHES_PER_UNIT[d]/e,2));return c},getBestLength:function(a){for(var b=this.displaySystemUnits[this.displaySystem],c,d,e=0,f=b.length;e<f&&!(c=b[e],d=this.getLength(a,c),1<d);++e);return[d,c]},getLength:function(a,b){var c,d;this.geodesic?(c=a.getGeodesicLength(this.map.getProjectionObject()), d="m"):(c=a.getLength(),d=this.map.getUnits());var e=OpenLayers.INCHES_PER_UNIT[b];e&&(c*=OpenLayers.INCHES_PER_UNIT[d]/e);return c},CLASS_NAME:"OpenLayers.Control.Measure"});OpenLayers.Format.WMC.v1_0_0=OpenLayers.Class(OpenLayers.Format.WMC.v1,{VERSION:"1.0.0",schemaLocation:"http://www.opengis.net/context http://schemas.opengis.net/context/1.0.0/context.xsd",initialize:function(a){OpenLayers.Format.WMC.v1.prototype.initialize.apply(this,[a])},read_wmc_SRS:function(a,b){var c=this.getChildValue(b);"object"!=typeof a.projections&&(a.projections={});for(var c=c.split(/ +/),d=0,e=c.length;d<e;d++)a.projections[c[d]]=!0},write_wmc_Layer:function(a){var b=OpenLayers.Format.WMC.v1.prototype.write_wmc_Layer.apply(this, [a]);if(a.srs){var c=[],d;for(d in a.srs)c.push(d);b.appendChild(this.createElementDefaultNS("SRS",c.join(" ")))}b.appendChild(this.write_wmc_FormatList(a));b.appendChild(this.write_wmc_StyleList(a));a.dimensions&&b.appendChild(this.write_wmc_DimensionList(a));b.appendChild(this.write_wmc_LayerExtension(a))},CLASS_NAME:"OpenLayers.Format.WMC.v1_0_0"});OpenLayers.Popup.Framed=OpenLayers.Class(OpenLayers.Popup.Anchored,{imageSrc:null,imageSize:null,isAlphaImage:!1,positionBlocks:null,blocks:null,fixedRelativePosition:!1,initialize:function(a,b,c,d,e,f,g){OpenLayers.Popup.Anchored.prototype.initialize.apply(this,arguments);this.fixedRelativePosition&&(this.updateRelativePosition(),this.calculateRelativePosition=function(){return this.relativePosition});this.contentDiv.style.position="absolute";this.contentDiv.style.zIndex=1;f&&(this.closeDiv.style.zIndex= 1);this.groupDiv.style.position="absolute";this.groupDiv.style.top="0px";this.groupDiv.style.left="0px";this.groupDiv.style.height="100%";this.groupDiv.style.width="100%"},destroy:function(){this.isAlphaImage=this.imageSize=this.imageSrc=null;this.fixedRelativePosition=!1;this.positionBlocks=null;for(var a=0;a<this.blocks.length;a++){var b=this.blocks[a];b.image&&b.div.removeChild(b.image);b.image=null;b.div&&this.groupDiv.removeChild(b.div);b.div=null}this.blocks=null;OpenLayers.Popup.Anchored.prototype.destroy.apply(this, arguments)},setBackgroundColor:function(){},setBorder:function(){},setOpacity:function(){},setSize:function(a){OpenLayers.Popup.Anchored.prototype.setSize.apply(this,arguments);this.updateBlocks()},updateRelativePosition:function(){this.padding=this.positionBlocks[this.relativePosition].padding;if(this.closeDiv){var a=this.getContentDivPadding();this.closeDiv.style.right=a.right+this.padding.right+"px";this.closeDiv.style.top=a.top+this.padding.top+"px"}this.updateBlocks()},calculateNewPx:function(a){var b= OpenLayers.Popup.Anchored.prototype.calculateNewPx.apply(this,arguments);return b=b.offset(this.positionBlocks[this.relativePosition].offset)},createBlocks:function(){this.blocks=[];var a=null,b;for(b in this.positionBlocks){a=b;break}a=this.positionBlocks[a];for(b=0;b<a.blocks.length;b++){var c={};this.blocks.push(c);c.div=OpenLayers.Util.createDiv(this.id+"_FrameDecorationDiv_"+b,null,null,null,"absolute",null,"hidden",null);c.image=(this.isAlphaImage?OpenLayers.Util.createAlphaImageDiv:OpenLayers.Util.createImage)(this.id+ "_FrameDecorationImg_"+b,null,this.imageSize,this.imageSrc,"absolute",null,null,null);c.div.appendChild(c.image);this.groupDiv.appendChild(c.div)}},updateBlocks:function(){this.blocks||this.createBlocks();if(this.size&&this.relativePosition){for(var a=this.positionBlocks[this.relativePosition],b=0;b<a.blocks.length;b++){var c=a.blocks[b],d=this.blocks[b],e=c.anchor.left,f=c.anchor.bottom,g=c.anchor.right,h=c.anchor.top,i=isNaN(c.size.w)?this.size.w-(g+e):c.size.w,j=isNaN(c.size.h)?this.size.h-(f+ h):c.size.h;d.div.style.width=(0>i?0:i)+"px";d.div.style.height=(0>j?0:j)+"px";d.div.style.left=null!=e?e+"px":"";d.div.style.bottom=null!=f?f+"px":"";d.div.style.right=null!=g?g+"px":"";d.div.style.top=null!=h?h+"px":"";d.image.style.left=c.position.x+"px";d.image.style.top=c.position.y+"px"}this.contentDiv.style.left=this.padding.left+"px";this.contentDiv.style.top=this.padding.top+"px"}},CLASS_NAME:"OpenLayers.Popup.Framed"});OpenLayers.Popup.FramedCloud=OpenLayers.Class(OpenLayers.Popup.Framed,{contentDisplayClass:"olFramedCloudPopupContent",autoSize:!0,panMapIfOutOfView:!0,imageSize:new OpenLayers.Size(1276,736),isAlphaImage:!1,fixedRelativePosition:!1,positionBlocks:{tl:{offset:new OpenLayers.Pixel(44,0),padding:new OpenLayers.Bounds(8,40,8,9),blocks:[{size:new OpenLayers.Size("auto","auto"),anchor:new OpenLayers.Bounds(0,51,22,0),position:new OpenLayers.Pixel(0,0)},{size:new OpenLayers.Size(22,"auto"),anchor:new OpenLayers.Bounds(null, 50,0,0),position:new OpenLayers.Pixel(-1238,0)},{size:new OpenLayers.Size("auto",19),anchor:new OpenLayers.Bounds(0,32,22,null),position:new OpenLayers.Pixel(0,-631)},{size:new OpenLayers.Size(22,18),anchor:new OpenLayers.Bounds(null,32,0,null),position:new OpenLayers.Pixel(-1238,-632)},{size:new OpenLayers.Size(81,35),anchor:new OpenLayers.Bounds(null,0,0,null),position:new OpenLayers.Pixel(0,-688)}]},tr:{offset:new OpenLayers.Pixel(-45,0),padding:new OpenLayers.Bounds(8,40,8,9),blocks:[{size:new OpenLayers.Size("auto", "auto"),anchor:new OpenLayers.Bounds(0,51,22,0),position:new OpenLayers.Pixel(0,0)},{size:new OpenLayers.Size(22,"auto"),anchor:new OpenLayers.Bounds(null,50,0,0),position:new OpenLayers.Pixel(-1238,0)},{size:new OpenLayers.Size("auto",19),anchor:new OpenLayers.Bounds(0,32,22,null),position:new OpenLayers.Pixel(0,-631)},{size:new OpenLayers.Size(22,19),anchor:new OpenLayers.Bounds(null,32,0,null),position:new OpenLayers.Pixel(-1238,-631)},{size:new OpenLayers.Size(81,35),anchor:new OpenLayers.Bounds(0, 0,null,null),position:new OpenLayers.Pixel(-215,-687)}]},bl:{offset:new OpenLayers.Pixel(45,0),padding:new OpenLayers.Bounds(8,9,8,40),blocks:[{size:new OpenLayers.Size("auto","auto"),anchor:new OpenLayers.Bounds(0,21,22,32),position:new OpenLayers.Pixel(0,0)},{size:new OpenLayers.Size(22,"auto"),anchor:new OpenLayers.Bounds(null,21,0,32),position:new OpenLayers.Pixel(-1238,0)},{size:new OpenLayers.Size("auto",21),anchor:new OpenLayers.Bounds(0,0,22,null),position:new OpenLayers.Pixel(0,-629)},{size:new OpenLayers.Size(22, 21),anchor:new OpenLayers.Bounds(null,0,0,null),position:new OpenLayers.Pixel(-1238,-629)},{size:new OpenLayers.Size(81,33),anchor:new OpenLayers.Bounds(null,null,0,0),position:new OpenLayers.Pixel(-101,-674)}]},br:{offset:new OpenLayers.Pixel(-44,0),padding:new OpenLayers.Bounds(8,9,8,40),blocks:[{size:new OpenLayers.Size("auto","auto"),anchor:new OpenLayers.Bounds(0,21,22,32),position:new OpenLayers.Pixel(0,0)},{size:new OpenLayers.Size(22,"auto"),anchor:new OpenLayers.Bounds(null,21,0,32),position:new OpenLayers.Pixel(-1238, 0)},{size:new OpenLayers.Size("auto",21),anchor:new OpenLayers.Bounds(0,0,22,null),position:new OpenLayers.Pixel(0,-629)},{size:new OpenLayers.Size(22,21),anchor:new OpenLayers.Bounds(null,0,0,null),position:new OpenLayers.Pixel(-1238,-629)},{size:new OpenLayers.Size(81,33),anchor:new OpenLayers.Bounds(0,null,null,0),position:new OpenLayers.Pixel(-311,-674)}]}},minSize:new OpenLayers.Size(105,10),maxSize:new OpenLayers.Size(1200,660),initialize:function(a,b,c,d,e,f,g){this.imageSrc=OpenLayers.Util.getImageLocation("cloud-popup-relative.png"); OpenLayers.Popup.Framed.prototype.initialize.apply(this,arguments);this.contentDiv.className=this.contentDisplayClass},CLASS_NAME:"OpenLayers.Popup.FramedCloud"});OpenLayers.Tile.Image.IFrame={useIFrame:null,draw:function(){if(OpenLayers.Tile.Image.prototype.shouldDraw.call(this)){var a=this.layer.getURL(this.bounds),b=this.useIFrame;this.useIFrame=null!==this.maxGetUrlLength&&!this.layer.async&&a.length>this.maxGetUrlLength;a=b&&!this.useIFrame;b=!b&&this.useIFrame;if(a||b)this.imgDiv&&this.imgDiv.parentNode===this.frame&&this.frame.removeChild(this.imgDiv),this.imgDiv=null,a?(this.blankImageUrl=this._blankImageUrl,this.frame.removeChild(this.frame.firstChild)): (this._blankImageUrl=this.blankImageUrl,this.blankImageUrl="about:blank")}return OpenLayers.Tile.Image.prototype.draw.apply(this,arguments)},getImage:function(){if(!0===this.useIFrame){if(!this.frame.childNodes.length){var a=document.createElement("div"),b=a.style;b.position="absolute";b.width="100%";b.height="100%";b.zIndex=1;b.backgroundImage="url("+this._blankImageUrl+")";this.frame.appendChild(a)}a=this.id+"_iFrame";9>parseFloat(navigator.appVersion.split("MSIE")[1])?(b=document.createElement('<iframe name="'+ a+'">'),b.style.backgroundColor="#FFFFFF",b.style.filter="chroma(color=#FFFFFF)"):(b=document.createElement("iframe"),b.style.backgroundColor="transparent",b.name=a);b.scrolling="no";b.marginWidth="0px";b.marginHeight="0px";b.frameBorder="0";b.style.position="absolute";b.style.width="100%";b.style.height="100%";1>this.layer.opacity&&OpenLayers.Util.modifyDOMElement(b,null,null,null,null,null,null,this.layer.opacity);this.frame.appendChild(b);return this.imgDiv=b}return OpenLayers.Tile.Image.prototype.getImage.apply(this, arguments)},createRequestForm:function(){var a=document.createElement("form");a.method="POST";var b=this.layer.params._OLSALT,b=(b?b+"_":"")+this.bounds.toBBOX();a.action=OpenLayers.Util.urlAppend(this.layer.url,b);a.target=this.id+"_iFrame";this.layer.getImageSize();var b=OpenLayers.Util.getParameters(this.url),c,d;for(d in b)c=document.createElement("input"),c.type="hidden",c.name=d,c.value=b[d],a.appendChild(c);return a},setImgSrc:function(a){if(!0===this.useIFrame)if(a){var b=this.createRequestForm(); this.frame.appendChild(b);b.submit();this.frame.removeChild(b)}else this.imgDiv.parentNode===this.frame&&(this.frame.removeChild(this.imgDiv),this.imgDiv=null);else OpenLayers.Tile.Image.prototype.setImgSrc.apply(this,arguments)},onImageLoad:function(){OpenLayers.Tile.Image.prototype.onImageLoad.apply(this,arguments);!0===this.useIFrame&&(this.imgDiv.style.opacity=1,this.frame.style.opacity=this.layer.opacity)},createBackBuffer:function(){var a;!1===this.useIFrame&&(a=OpenLayers.Tile.Image.prototype.createBackBuffer.call(this)); return a}};OpenLayers.Format.SOSCapabilities=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.0.0",CLASS_NAME:"OpenLayers.Format.SOSCapabilities"});OpenLayers.Format.SOSCapabilities.v1_0_0=OpenLayers.Class(OpenLayers.Format.SOSCapabilities,{namespaces:{ows:"http://www.opengis.net/ows/1.1",sos:"http://www.opengis.net/sos/1.0",gml:"http://www.opengis.net/gml",xlink:"http://www.w3.org/1999/xlink"},regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a]);this.options=a},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this, [a]));a&&9==a.nodeType&&(a=a.documentElement);var b={};this.readNode(a,b);return b},readers:{gml:OpenLayers.Util.applyDefaults({name:function(a,b){b.name=this.getChildValue(a)},TimePeriod:function(a,b){b.timePeriod={};this.readChildNodes(a,b.timePeriod)},beginPosition:function(a,b){b.beginPosition=this.getChildValue(a)},endPosition:function(a,b){b.endPosition=this.getChildValue(a)}},OpenLayers.Format.GML.v3.prototype.readers.gml),sos:{Capabilities:function(a,b){this.readChildNodes(a,b)},Contents:function(a, b){b.contents={};this.readChildNodes(a,b.contents)},ObservationOfferingList:function(a,b){b.offeringList={};this.readChildNodes(a,b.offeringList)},ObservationOffering:function(a,b){var c=this.getAttributeNS(a,this.namespaces.gml,"id");b[c]={procedures:[],observedProperties:[],featureOfInterestIds:[],responseFormats:[],resultModels:[],responseModes:[]};this.readChildNodes(a,b[c])},time:function(a,b){b.time={};this.readChildNodes(a,b.time)},procedure:function(a,b){b.procedures.push(this.getAttributeNS(a, this.namespaces.xlink,"href"))},observedProperty:function(a,b){b.observedProperties.push(this.getAttributeNS(a,this.namespaces.xlink,"href"))},featureOfInterest:function(a,b){b.featureOfInterestIds.push(this.getAttributeNS(a,this.namespaces.xlink,"href"))},responseFormat:function(a,b){b.responseFormats.push(this.getChildValue(a))},resultModel:function(a,b){b.resultModels.push(this.getChildValue(a))},responseMode:function(a,b){b.responseModes.push(this.getChildValue(a))}},ows:OpenLayers.Format.OWSCommon.v1_1_0.prototype.readers.ows}, CLASS_NAME:"OpenLayers.Format.SOSCapabilities.v1_0_0"});OpenLayers.Handler.Pinch=OpenLayers.Class(OpenLayers.Handler,{started:!1,stopDown:!1,pinching:!1,last:null,start:null,touchstart:function(a){var b=!0;this.pinching=!1;OpenLayers.Event.isMultiTouch(a)?(this.started=!0,this.last=this.start={distance:this.getDistance(a.touches),delta:0,scale:1},this.callback("start",[a,this.start]),b=!this.stopDown):(this.started=!1,this.last=this.start=null);OpenLayers.Event.stop(a);return b},touchmove:function(a){if(this.started&&OpenLayers.Event.isMultiTouch(a)){this.pinching= !0;var b=this.getPinchData(a);this.callback("move",[a,b]);this.last=b;OpenLayers.Event.stop(a)}return!0},touchend:function(a){this.started&&(this.pinching=this.started=!1,this.callback("done",[a,this.start,this.last]),this.last=this.start=null);return!0},activate:function(){var a=!1;OpenLayers.Handler.prototype.activate.apply(this,arguments)&&(this.pinching=!1,a=!0);return a},deactivate:function(){var a=!1;OpenLayers.Handler.prototype.deactivate.apply(this,arguments)&&(this.pinching=this.started= !1,this.last=this.start=null,a=!0);return a},getDistance:function(a){var b=a[0],a=a[1];return Math.sqrt(Math.pow(b.clientX-a.clientX,2)+Math.pow(b.clientY-a.clientY,2))},getPinchData:function(a){a=this.getDistance(a.touches);return{distance:a,delta:this.last.distance-a,scale:a/this.start.distance}},CLASS_NAME:"OpenLayers.Handler.Pinch"});OpenLayers.Control.NavToolbar=OpenLayers.Class(OpenLayers.Control.Panel,{initialize:function(a){OpenLayers.Control.Panel.prototype.initialize.apply(this,[a]);this.addControls([new OpenLayers.Control.Navigation,new OpenLayers.Control.ZoomBox])},draw:function(){var a=OpenLayers.Control.Panel.prototype.draw.apply(this,arguments);null===this.defaultControl&&(this.defaultControl=this.controls[0]);return a},CLASS_NAME:"OpenLayers.Control.NavToolbar"});OpenLayers.Strategy.Refresh=OpenLayers.Class(OpenLayers.Strategy,{force:!1,interval:0,timer:null,activate:function(){var a=OpenLayers.Strategy.prototype.activate.call(this);a&&(!0===this.layer.visibility&&this.start(),this.layer.events.on({visibilitychanged:this.reset,scope:this}));return a},deactivate:function(){var a=OpenLayers.Strategy.prototype.deactivate.call(this);a&&this.stop();return a},reset:function(){!0===this.layer.visibility?this.start():this.stop()},start:function(){this.interval&&("number"=== typeof this.interval&&0<this.interval)&&(this.timer=window.setInterval(OpenLayers.Function.bind(this.refresh,this),this.interval))},refresh:function(){this.layer&&(this.layer.refresh&&"function"==typeof this.layer.refresh)&&this.layer.refresh({force:this.force})},stop:function(){null!==this.timer&&(window.clearInterval(this.timer),this.timer=null)},CLASS_NAME:"OpenLayers.Strategy.Refresh"});OpenLayers.Layer.ArcGIS93Rest=OpenLayers.Class(OpenLayers.Layer.Grid,{DEFAULT_PARAMS:{format:"png"},isBaseLayer:!0,initialize:function(a,b,c,d){var e=[],c=OpenLayers.Util.upperCaseObject(c);e.push(a,b,c,d);OpenLayers.Layer.Grid.prototype.initialize.apply(this,e);OpenLayers.Util.applyDefaults(this.params,OpenLayers.Util.upperCaseObject(this.DEFAULT_PARAMS));if(this.params.TRANSPARENT&&"true"==this.params.TRANSPARENT.toString().toLowerCase()){if(null==d||!d.isBaseLayer)this.isBaseLayer=!1;"jpg"==this.params.FORMAT&& (this.params.FORMAT=OpenLayers.Util.alphaHack()?"gif":"png")}},clone:function(a){null==a&&(a=new OpenLayers.Layer.ArcGIS93Rest(this.name,this.url,this.params,this.getOptions()));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a])},getURL:function(a){var a=this.adjustBounds(a),b=this.projection.getCode().split(":"),b=b[b.length-1],c=this.getImageSize(),a={BBOX:a.toBBOX(),SIZE:c.w+","+c.h,F:"image",BBOXSR:b,IMAGESR:b};if(this.layerDefs){var b=[],d;for(d in this.layerDefs)this.layerDefs.hasOwnProperty(d)&& this.layerDefs[d]&&(b.push(d),b.push(":"),b.push(this.layerDefs[d]),b.push(";"));0<b.length&&(a.LAYERDEFS=b.join(""))}return this.getFullRequestString(a)},setLayerFilter:function(a,b){this.layerDefs||(this.layerDefs={});b?this.layerDefs[a]=b:delete this.layerDefs[a]},clearLayerFilter:function(a){a?delete this.layerDefs[a]:delete this.layerDefs},mergeNewParams:function(a){a=[OpenLayers.Util.upperCaseObject(a)];return OpenLayers.Layer.Grid.prototype.mergeNewParams.apply(this,a)},CLASS_NAME:"OpenLayers.Layer.ArcGIS93Rest"});OpenLayers.Format.WKT=OpenLayers.Class(OpenLayers.Format,{initialize:function(a){this.regExes={typeStr:/^\s*(\w+)\s*\(\s*(.*)\s*\)\s*$/,spaces:/\s+/,parenComma:/\)\s*,\s*\(/,doubleParenComma:/\)\s*\)\s*,\s*\(\s*\(/,trimParens:/^\s*\(?(.*?)\)?\s*$/};OpenLayers.Format.prototype.initialize.apply(this,[a])},read:function(a){var b,c,a=a.replace(/[\n\r]/g," ");if(c=this.regExes.typeStr.exec(a))if(a=c[1].toLowerCase(),c=c[2],this.parse[a]&&(b=this.parse[a].apply(this,[c])),this.internalProjection&&this.externalProjection)if(b&& "OpenLayers.Feature.Vector"==b.CLASS_NAME)b.geometry.transform(this.externalProjection,this.internalProjection);else if(b&&"geometrycollection"!=a&&"object"==typeof b){a=0;for(c=b.length;a<c;a++)b[a].geometry.transform(this.externalProjection,this.internalProjection)}return b},write:function(a){var b,c;a.constructor==Array?c=!0:(a=[a],c=!1);var d=[];c&&d.push("GEOMETRYCOLLECTION(");for(var e=0,f=a.length;e<f;++e)c&&0<e&&d.push(","),b=a[e].geometry,d.push(this.extractGeometry(b));c&&d.push(")");return d.join("")}, extractGeometry:function(a){var b=a.CLASS_NAME.split(".")[2].toLowerCase();if(!this.extract[b])return null;this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));return("collection"==b?"GEOMETRYCOLLECTION":b.toUpperCase())+"("+this.extract[b].apply(this,[a])+")"},extract:{point:function(a){return a.x+" "+a.y},multipoint:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push("("+this.extract.point.apply(this,[a.components[c]])+ ")");return b.join(",")},linestring:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push(this.extract.point.apply(this,[a.components[c]]));return b.join(",")},multilinestring:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push("("+this.extract.linestring.apply(this,[a.components[c]])+")");return b.join(",")},polygon:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push("("+this.extract.linestring.apply(this,[a.components[c]])+")");return b.join(",")},multipolygon:function(a){for(var b= [],c=0,d=a.components.length;c<d;++c)b.push("("+this.extract.polygon.apply(this,[a.components[c]])+")");return b.join(",")},collection:function(a){for(var b=[],c=0,d=a.components.length;c<d;++c)b.push(this.extractGeometry.apply(this,[a.components[c]]));return b.join(",")}},parse:{point:function(a){a=OpenLayers.String.trim(a).split(this.regExes.spaces);return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Point(a[0],a[1]))},multipoint:function(a){for(var b=OpenLayers.String.trim(a).split(","), c=[],d=0,e=b.length;d<e;++d)a=b[d].replace(this.regExes.trimParens,"$1"),c.push(this.parse.point.apply(this,[a]).geometry);return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.MultiPoint(c))},linestring:function(a){for(var a=OpenLayers.String.trim(a).split(","),b=[],c=0,d=a.length;c<d;++c)b.push(this.parse.point.apply(this,[a[c]]).geometry);return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.LineString(b))},multilinestring:function(a){for(var b=OpenLayers.String.trim(a).split(this.regExes.parenComma), c=[],d=0,e=b.length;d<e;++d)a=b[d].replace(this.regExes.trimParens,"$1"),c.push(this.parse.linestring.apply(this,[a]).geometry);return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.MultiLineString(c))},polygon:function(a){for(var b,a=OpenLayers.String.trim(a).split(this.regExes.parenComma),c=[],d=0,e=a.length;d<e;++d)b=a[d].replace(this.regExes.trimParens,"$1"),b=this.parse.linestring.apply(this,[b]).geometry,b=new OpenLayers.Geometry.LinearRing(b.components),c.push(b);return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Polygon(c))}, multipolygon:function(a){for(var b=OpenLayers.String.trim(a).split(this.regExes.doubleParenComma),c=[],d=0,e=b.length;d<e;++d)a=b[d].replace(this.regExes.trimParens,"$1"),c.push(this.parse.polygon.apply(this,[a]).geometry);return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.MultiPolygon(c))},geometrycollection:function(a){for(var a=a.replace(/,\s*([A-Za-z])/g,"|$1"),a=OpenLayers.String.trim(a).split("|"),b=[],c=0,d=a.length;c<d;++c)b.push(OpenLayers.Format.WKT.prototype.read.apply(this,[a[c]])); return b}},CLASS_NAME:"OpenLayers.Format.WKT"});OpenLayers.Handler.Hover=OpenLayers.Class(OpenLayers.Handler,{delay:500,pixelTolerance:null,stopMove:!1,px:null,timerId:null,mousemove:function(a){this.passesTolerance(a.xy)&&(this.clearTimer(),this.callback("move",[a]),this.px=a.xy,a=OpenLayers.Util.extend({},a),this.timerId=window.setTimeout(OpenLayers.Function.bind(this.delayedCall,this,a),this.delay));return!this.stopMove},mouseout:function(a){OpenLayers.Util.mouseLeft(a,this.map.viewPortDiv)&&(this.clearTimer(),this.callback("move",[a]));return!0}, passesTolerance:function(a){var b=!0;this.pixelTolerance&&this.px&&Math.sqrt(Math.pow(this.px.x-a.x,2)+Math.pow(this.px.y-a.y,2))<this.pixelTolerance&&(b=!1);return b},clearTimer:function(){null!=this.timerId&&(window.clearTimeout(this.timerId),this.timerId=null)},delayedCall:function(a){this.callback("pause",[a])},deactivate:function(){var a=!1;OpenLayers.Handler.prototype.deactivate.apply(this,arguments)&&(this.clearTimer(),a=!0);return a},CLASS_NAME:"OpenLayers.Handler.Hover"});OpenLayers.Control.GetFeature=OpenLayers.Class(OpenLayers.Control,{protocol:null,multipleKey:null,toggleKey:null,modifiers:null,multiple:!1,click:!0,single:!0,clickout:!0,toggle:!1,clickTolerance:5,hover:!1,box:!1,maxFeatures:10,features:null,hoverFeature:null,handlerOptions:null,handlers:null,hoverResponse:null,filterType:OpenLayers.Filter.Spatial.BBOX,initialize:function(a){a.handlerOptions=a.handlerOptions||{};OpenLayers.Control.prototype.initialize.apply(this,[a]);this.features={};this.handlers= {};this.click&&(this.handlers.click=new OpenLayers.Handler.Click(this,{click:this.selectClick},this.handlerOptions.click||{}));this.box&&(this.handlers.box=new OpenLayers.Handler.Box(this,{done:this.selectBox},OpenLayers.Util.extend(this.handlerOptions.box,{boxDivClassName:"olHandlerBoxSelectFeature"})));this.hover&&(this.handlers.hover=new OpenLayers.Handler.Hover(this,{move:this.cancelHover,pause:this.selectHover},OpenLayers.Util.extend(this.handlerOptions.hover,{delay:250,pixelTolerance:2})))}, activate:function(){if(!this.active)for(var a in this.handlers)this.handlers[a].activate();return OpenLayers.Control.prototype.activate.apply(this,arguments)},deactivate:function(){if(this.active)for(var a in this.handlers)this.handlers[a].deactivate();return OpenLayers.Control.prototype.deactivate.apply(this,arguments)},selectClick:function(a){var b=this.pixelToBounds(a.xy);this.setModifiers(a);this.request(b,{single:this.single})},selectBox:function(a){var b;if(a instanceof OpenLayers.Bounds)b= this.map.getLonLatFromPixel({x:a.left,y:a.bottom}),a=this.map.getLonLatFromPixel({x:a.right,y:a.top}),b=new OpenLayers.Bounds(b.lon,b.lat,a.lon,a.lat);else{if(this.click)return;b=this.pixelToBounds(a)}this.setModifiers(this.handlers.box.dragHandler.evt);this.request(b)},selectHover:function(a){this.request(this.pixelToBounds(a.xy),{single:!0,hover:!0})},cancelHover:function(){this.hoverResponse&&(this.protocol.abort(this.hoverResponse),this.hoverResponse=null,OpenLayers.Element.removeClass(this.map.viewPortDiv, "olCursorWait"))},request:function(a,b){var b=b||{},c=new OpenLayers.Filter.Spatial({type:this.filterType,value:a});OpenLayers.Element.addClass(this.map.viewPortDiv,"olCursorWait");c=this.protocol.read({maxFeatures:!0==b.single?this.maxFeatures:void 0,filter:c,callback:function(c){c.success()&&(c.features.length?!0==b.single?this.selectBestFeature(c.features,a.getCenterLonLat(),b):this.select(c.features):b.hover?this.hoverSelect():(this.events.triggerEvent("clickout"),this.clickout&&this.unselectAll())); OpenLayers.Element.removeClass(this.map.viewPortDiv,"olCursorWait")},scope:this});!0==b.hover&&(this.hoverResponse=c)},selectBestFeature:function(a,b,c){c=c||{};if(a.length){for(var b=new OpenLayers.Geometry.Point(b.lon,b.lat),d,e,f,g=Number.MAX_VALUE,h=0;h<a.length&&!(d=a[h],d.geometry&&(f=b.distanceTo(d.geometry,{edge:!1}),f<g&&(g=f,e=d,0==g)));++h);!0==c.hover?this.hoverSelect(e):this.select(e||a)}},setModifiers:function(a){this.modifiers={multiple:this.multiple||this.multipleKey&&a[this.multipleKey], toggle:this.toggle||this.toggleKey&&a[this.toggleKey]}},select:function(a){!this.modifiers.multiple&&!this.modifiers.toggle&&this.unselectAll();OpenLayers.Util.isArray(a)||(a=[a]);var b=this.events.triggerEvent("beforefeaturesselected",{features:a});if(!1!==b){for(var c=[],d,e=0,f=a.length;e<f;++e)d=a[e],this.features[d.fid||d.id]?this.modifiers.toggle&&this.unselect(this.features[d.fid||d.id]):(b=this.events.triggerEvent("beforefeatureselected",{feature:d}),!1!==b&&(this.features[d.fid||d.id]=d, c.push(d),this.events.triggerEvent("featureselected",{feature:d})));this.events.triggerEvent("featuresselected",{features:c})}},hoverSelect:function(a){var b=a?a.fid||a.id:null,c=this.hoverFeature?this.hoverFeature.fid||this.hoverFeature.id:null;c&&c!=b&&(this.events.triggerEvent("outfeature",{feature:this.hoverFeature}),this.hoverFeature=null);b&&b!=c&&(this.events.triggerEvent("hoverfeature",{feature:a}),this.hoverFeature=a)},unselect:function(a){delete this.features[a.fid||a.id];this.events.triggerEvent("featureunselected", {feature:a})},unselectAll:function(){for(var a in this.features)this.unselect(this.features[a])},setMap:function(a){for(var b in this.handlers)this.handlers[b].setMap(a);OpenLayers.Control.prototype.setMap.apply(this,arguments)},pixelToBounds:function(a){var b=a.add(-this.clickTolerance/2,this.clickTolerance/2),a=a.add(this.clickTolerance/2,-this.clickTolerance/2),b=this.map.getLonLatFromPixel(b),a=this.map.getLonLatFromPixel(a);return new OpenLayers.Bounds(b.lon,b.lat,a.lon,a.lat)},CLASS_NAME:"OpenLayers.Control.GetFeature"});OpenLayers.Format.QueryStringFilter=function(){function a(a){a=a.replace(/%/g,"\\%");a=a.replace(/\\\\\.(\*)?/g,function(a,b){return b?a:"\\\\_"});a=a.replace(/\\\\\.\*/g,"\\\\%");a=a.replace(/(\\)?\.(\*)?/g,function(a,b,c){return b||c?a:"_"});a=a.replace(/(\\)?\.\*/g,function(a,b){return b?a:"%"});a=a.replace(/\\\./g,".");return a=a.replace(/(\\)?\\\*/g,function(a,b){return b?a:"*"})}var b={};b[OpenLayers.Filter.Comparison.EQUAL_TO]="eq";b[OpenLayers.Filter.Comparison.NOT_EQUAL_TO]="ne";b[OpenLayers.Filter.Comparison.LESS_THAN]= "lt";b[OpenLayers.Filter.Comparison.LESS_THAN_OR_EQUAL_TO]="lte";b[OpenLayers.Filter.Comparison.GREATER_THAN]="gt";b[OpenLayers.Filter.Comparison.GREATER_THAN_OR_EQUAL_TO]="gte";b[OpenLayers.Filter.Comparison.LIKE]="ilike";return OpenLayers.Class(OpenLayers.Format,{wildcarded:!1,srsInBBOX:!1,write:function(c,d){var d=d||{},e=c.CLASS_NAME,e=e.substring(e.lastIndexOf(".")+1);switch(e){case "Spatial":switch(c.type){case OpenLayers.Filter.Spatial.BBOX:d.bbox=c.value.toArray();this.srsInBBOX&&c.projection&& d.bbox.push(c.projection.getCode());break;case OpenLayers.Filter.Spatial.DWITHIN:d.tolerance=c.distance;case OpenLayers.Filter.Spatial.WITHIN:d.lon=c.value.x;d.lat=c.value.y;break;default:OpenLayers.Console.warn("Unknown spatial filter type "+c.type)}break;case "Comparison":e=b[c.type];if(void 0!==e){var f=c.value;c.type==OpenLayers.Filter.Comparison.LIKE&&(f=a(f),this.wildcarded&&(f="%"+f+"%"));d[c.property+"__"+e]=f;d.queryable=d.queryable||[];d.queryable.push(c.property)}else OpenLayers.Console.warn("Unknown comparison filter type "+ c.type);break;case "Logical":if(c.type===OpenLayers.Filter.Logical.AND){e=0;for(f=c.filters.length;e<f;e++)d=this.write(c.filters[e],d)}else OpenLayers.Console.warn("Unsupported logical filter type "+c.type);break;default:OpenLayers.Console.warn("Unknown filter type "+e)}return d},CLASS_NAME:"OpenLayers.Format.QueryStringFilter"})}();OpenLayers.Control.MousePosition=OpenLayers.Class(OpenLayers.Control,{autoActivate:!0,element:null,prefix:"",separator:", ",suffix:"",numDigits:5,granularity:10,emptyString:null,lastXy:null,displayProjection:null,destroy:function(){this.deactivate();OpenLayers.Control.prototype.destroy.apply(this,arguments)},activate:function(){return OpenLayers.Control.prototype.activate.apply(this,arguments)?(this.map.events.register("mousemove",this,this.redraw),this.map.events.register("mouseout",this,this.reset), this.redraw(),!0):!1},deactivate:function(){return OpenLayers.Control.prototype.deactivate.apply(this,arguments)?(this.map.events.unregister("mousemove",this,this.redraw),this.map.events.unregister("mouseout",this,this.reset),this.element.innerHTML="",!0):!1},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);this.element||(this.div.left="",this.div.top="",this.element=this.div);return this.div},redraw:function(a){var b;if(null==a)this.reset();else if(null==this.lastXy||Math.abs(a.xy.x- this.lastXy.x)>this.granularity||Math.abs(a.xy.y-this.lastXy.y)>this.granularity)this.lastXy=a.xy;else if(b=this.map.getLonLatFromPixel(a.xy))this.displayProjection&&b.transform(this.map.getProjectionObject(),this.displayProjection),this.lastXy=a.xy,a=this.formatOutput(b),a!=this.element.innerHTML&&(this.element.innerHTML=a)},reset:function(){null!=this.emptyString&&(this.element.innerHTML=this.emptyString)},formatOutput:function(a){var b=parseInt(this.numDigits);return this.prefix+a.lon.toFixed(b)+ this.separator+a.lat.toFixed(b)+this.suffix},CLASS_NAME:"OpenLayers.Control.MousePosition"});OpenLayers.Control.Geolocate=OpenLayers.Class(OpenLayers.Control,{geolocation:navigator.geolocation,bind:!0,watch:!1,geolocationOptions:null,destroy:function(){this.deactivate();OpenLayers.Control.prototype.destroy.apply(this,arguments)},activate:function(){return!this.geolocation?(this.events.triggerEvent("locationuncapable"),!1):OpenLayers.Control.prototype.activate.apply(this,arguments)?(this.watch?this.watchId=this.geolocation.watchPosition(OpenLayers.Function.bind(this.geolocate,this),OpenLayers.Function.bind(this.failure, this),this.geolocationOptions):this.getCurrentLocation(),!0):!1},deactivate:function(){this.active&&null!==this.watchId&&this.geolocation.clearWatch(this.watchId);return OpenLayers.Control.prototype.deactivate.apply(this,arguments)},geolocate:function(a){var b=(new OpenLayers.LonLat(a.coords.longitude,a.coords.latitude)).transform(new OpenLayers.Projection("EPSG:4326"),this.map.getProjectionObject());this.bind&&this.map.setCenter(b);this.events.triggerEvent("locationupdated",{position:a,point:new OpenLayers.Geometry.Point(b.lon, b.lat)})},getCurrentLocation:function(){if(!this.active||this.watch)return!1;this.geolocation.getCurrentPosition(OpenLayers.Function.bind(this.geolocate,this),OpenLayers.Function.bind(this.failure,this),this.geolocationOptions);return!0},failure:function(a){this.events.triggerEvent("locationfailed",{error:a})},CLASS_NAME:"OpenLayers.Control.Geolocate"});OpenLayers.Tile.UTFGrid=OpenLayers.Class(OpenLayers.Tile,{url:null,utfgridResolution:2,json:null,format:null,destroy:function(){this.clear();OpenLayers.Tile.prototype.destroy.apply(this,arguments)},draw:function(){var a=OpenLayers.Tile.prototype.draw.apply(this,arguments);if(a)if(this.isLoading?(this.abortLoading(),this.events.triggerEvent("reload")):(this.isLoading=!0,this.events.triggerEvent("loadstart")),this.url=this.layer.getURL(this.bounds),this.layer.useJSONP){var b=new OpenLayers.Protocol.Script({url:this.url, callback:function(a){this.isLoading=false;this.events.triggerEvent("loadend");this.json=a.data},scope:this});b.read();this.request=b}else this.request=OpenLayers.Request.GET({url:this.url,callback:function(a){this.isLoading=false;this.events.triggerEvent("loadend");a.status===200&&this.parseData(a.responseText)},scope:this});else this.unload();return a},abortLoading:function(){this.request&&(this.request.abort(),delete this.request);this.isLoading=!1},getFeatureInfo:function(a,b){var c=null;if(this.json){var d= this.getFeatureId(a,b);null!==d&&(c={id:d,data:this.json.data[d]})}return c},getFeatureId:function(a,b){var c=null;if(this.json){var d=this.utfgridResolution,d=this.indexFromCharCode(this.json.grid[Math.floor(b/d)].charCodeAt(Math.floor(a/d))),e=this.json.keys;!isNaN(d)&&d in e&&(c=e[d])}return c},indexFromCharCode:function(a){93<=a&&a--;35<=a&&a--;return a-32},parseData:function(a){this.format||(this.format=new OpenLayers.Format.JSON);this.json=this.format.read(a)},clear:function(){this.json=null}, CLASS_NAME:"OpenLayers.Tile.UTFGrid"});OpenLayers.Control.NavigationHistory=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_TOGGLE,previous:null,previousOptions:null,next:null,nextOptions:null,limit:50,autoActivate:!0,clearOnDeactivate:!1,registry:null,nextStack:null,previousStack:null,listeners:null,restoring:!1,initialize:function(a){OpenLayers.Control.prototype.initialize.apply(this,[a]);this.registry=OpenLayers.Util.extend({moveend:this.getState},this.registry);a={trigger:OpenLayers.Function.bind(this.previousTrigger, this),displayClass:this.displayClass+" "+this.displayClass+"Previous"};OpenLayers.Util.extend(a,this.previousOptions);this.previous=new OpenLayers.Control.Button(a);a={trigger:OpenLayers.Function.bind(this.nextTrigger,this),displayClass:this.displayClass+" "+this.displayClass+"Next"};OpenLayers.Util.extend(a,this.nextOptions);this.next=new OpenLayers.Control.Button(a);this.clear()},onPreviousChange:function(a){a&&!this.previous.active?this.previous.activate():!a&&this.previous.active&&this.previous.deactivate()}, onNextChange:function(a){a&&!this.next.active?this.next.activate():!a&&this.next.active&&this.next.deactivate()},destroy:function(){OpenLayers.Control.prototype.destroy.apply(this);this.previous.destroy();this.next.destroy();this.deactivate();for(var a in this)this[a]=null},setMap:function(a){this.map=a;this.next.setMap(a);this.previous.setMap(a)},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);this.next.draw();this.previous.draw()},previousTrigger:function(){var a=this.previousStack.shift(), b=this.previousStack.shift();void 0!=b?(this.nextStack.unshift(a),this.previousStack.unshift(b),this.restoring=!0,this.restore(b),this.restoring=!1,this.onNextChange(this.nextStack[0],this.nextStack.length),this.onPreviousChange(this.previousStack[1],this.previousStack.length-1)):this.previousStack.unshift(a);return b},nextTrigger:function(){var a=this.nextStack.shift();void 0!=a&&(this.previousStack.unshift(a),this.restoring=!0,this.restore(a),this.restoring=!1,this.onNextChange(this.nextStack[0], this.nextStack.length),this.onPreviousChange(this.previousStack[1],this.previousStack.length-1));return a},clear:function(){this.previousStack=[];this.previous.deactivate();this.nextStack=[];this.next.deactivate()},getState:function(){return{center:this.map.getCenter(),resolution:this.map.getResolution(),projection:this.map.getProjectionObject(),units:this.map.getProjectionObject().getUnits()||this.map.units||this.map.baseLayer.units}},restore:function(a){var b,c;if(this.map.getProjectionObject()== a.projection)c=this.map.getZoomForResolution(a.resolution),b=a.center;else{b=a.center.clone();b.transform(a.projection,this.map.getProjectionObject());c=a.units;var d=this.map.getProjectionObject().getUnits()||this.map.units||this.map.baseLayer.units;c=this.map.getZoomForResolution((c&&d?OpenLayers.INCHES_PER_UNIT[c]/OpenLayers.INCHES_PER_UNIT[d]:1)*a.resolution)}this.map.setCenter(b,c)},setListeners:function(){this.listeners={};for(var a in this.registry)this.listeners[a]=OpenLayers.Function.bind(function(){if(!this.restoring){this.previousStack.unshift(this.registry[a].apply(this, arguments));if(1<this.previousStack.length)this.onPreviousChange(this.previousStack[1],this.previousStack.length-1);this.previousStack.length>this.limit+1&&this.previousStack.pop();0<this.nextStack.length&&(this.nextStack=[],this.onNextChange(null,0))}return!0},this)},activate:function(){var a=!1;if(this.map&&OpenLayers.Control.prototype.activate.apply(this)){null==this.listeners&&this.setListeners();for(var b in this.listeners)this.map.events.register(b,this,this.listeners[b]);a=!0;0==this.previousStack.length&& this.initStack()}return a},initStack:function(){this.map.getCenter()&&this.listeners.moveend()},deactivate:function(){var a=!1;if(this.map&&OpenLayers.Control.prototype.deactivate.apply(this)){for(var b in this.listeners)this.map.events.unregister(b,this,this.listeners[b]);this.clearOnDeactivate&&this.clear();a=!0}return a},CLASS_NAME:"OpenLayers.Control.NavigationHistory"});OpenLayers.Protocol.HTTP=OpenLayers.Class(OpenLayers.Protocol,{url:null,headers:null,params:null,callback:null,scope:null,readWithPOST:!1,updateWithPOST:!1,deleteWithPOST:!1,wildcarded:!1,srsInBBOX:!1,initialize:function(a){a=a||{};this.params={};this.headers={};OpenLayers.Protocol.prototype.initialize.apply(this,arguments);if(!this.filterToParams&&OpenLayers.Format.QueryStringFilter){var b=new OpenLayers.Format.QueryStringFilter({wildcarded:this.wildcarded,srsInBBOX:this.srsInBBOX});this.filterToParams= function(a,d){return b.write(a,d)}}},destroy:function(){this.headers=this.params=null;OpenLayers.Protocol.prototype.destroy.apply(this)},read:function(a){OpenLayers.Protocol.prototype.read.apply(this,arguments);a=a||{};a.params=OpenLayers.Util.applyDefaults(a.params,this.options.params);a=OpenLayers.Util.applyDefaults(a,this.options);a.filter&&this.filterToParams&&(a.params=this.filterToParams(a.filter,a.params));var b=void 0!==a.readWithPOST?a.readWithPOST:this.readWithPOST,c=new OpenLayers.Protocol.Response({requestType:"read"}); b?(b=a.headers||{},b["Content-Type"]="application/x-www-form-urlencoded",c.priv=OpenLayers.Request.POST({url:a.url,callback:this.createCallback(this.handleRead,c,a),data:OpenLayers.Util.getParameterString(a.params),headers:b})):c.priv=OpenLayers.Request.GET({url:a.url,callback:this.createCallback(this.handleRead,c,a),params:a.params,headers:a.headers});return c},handleRead:function(a,b){this.handleResponse(a,b)},create:function(a,b){var b=OpenLayers.Util.applyDefaults(b,this.options),c=new OpenLayers.Protocol.Response({reqFeatures:a, requestType:"create"});c.priv=OpenLayers.Request.POST({url:b.url,callback:this.createCallback(this.handleCreate,c,b),headers:b.headers,data:this.format.write(a)});return c},handleCreate:function(a,b){this.handleResponse(a,b)},update:function(a,b){var b=b||{},c=b.url||a.url||this.options.url+"/"+a.fid,b=OpenLayers.Util.applyDefaults(b,this.options),d=new OpenLayers.Protocol.Response({reqFeatures:a,requestType:"update"});d.priv=OpenLayers.Request[this.updateWithPOST?"POST":"PUT"]({url:c,callback:this.createCallback(this.handleUpdate, d,b),headers:b.headers,data:this.format.write(a)});return d},handleUpdate:function(a,b){this.handleResponse(a,b)},"delete":function(a,b){var b=b||{},c=b.url||a.url||this.options.url+"/"+a.fid,b=OpenLayers.Util.applyDefaults(b,this.options),d=new OpenLayers.Protocol.Response({reqFeatures:a,requestType:"delete"}),e=this.deleteWithPOST?"POST":"DELETE",c={url:c,callback:this.createCallback(this.handleDelete,d,b),headers:b.headers};this.deleteWithPOST&&(c.data=this.format.write(a));d.priv=OpenLayers.Request[e](c); return d},handleDelete:function(a,b){this.handleResponse(a,b)},handleResponse:function(a,b){var c=a.priv;b.callback&&(200<=c.status&&300>c.status?("delete"!=a.requestType&&(a.features=this.parseFeatures(c)),a.code=OpenLayers.Protocol.Response.SUCCESS):a.code=OpenLayers.Protocol.Response.FAILURE,b.callback.call(b.scope,a))},parseFeatures:function(a){var b=a.responseXML;if(!b||!b.documentElement)b=a.responseText;return!b||0>=b.length?null:this.format.read(b)},commit:function(a,b){function c(a){for(var b= a.features?a.features.length:0,c=Array(b),e=0;e<b;++e)c[e]=a.features[e].fid;o.insertIds=c;d.apply(this,[a])}function d(a){this.callUserCallback(a,b);n=n&&a.success();f++;f>=m&&b.callback&&(o.code=n?OpenLayers.Protocol.Response.SUCCESS:OpenLayers.Protocol.Response.FAILURE,b.callback.apply(b.scope,[o]))}var b=OpenLayers.Util.applyDefaults(b,this.options),e=[],f=0,g={};g[OpenLayers.State.INSERT]=[];g[OpenLayers.State.UPDATE]=[];g[OpenLayers.State.DELETE]=[];for(var h,i,j=[],k=0,l=a.length;k<l;++k)if(h= a[k],i=g[h.state])i.push(h),j.push(h);var m=(0<g[OpenLayers.State.INSERT].length?1:0)+g[OpenLayers.State.UPDATE].length+g[OpenLayers.State.DELETE].length,n=!0,o=new OpenLayers.Protocol.Response({reqFeatures:j});h=g[OpenLayers.State.INSERT];0<h.length&&e.push(this.create(h,OpenLayers.Util.applyDefaults({callback:c,scope:this},b.create)));h=g[OpenLayers.State.UPDATE];for(k=h.length-1;0<=k;--k)e.push(this.update(h[k],OpenLayers.Util.applyDefaults({callback:d,scope:this},b.update)));h=g[OpenLayers.State.DELETE]; for(k=h.length-1;0<=k;--k)e.push(this["delete"](h[k],OpenLayers.Util.applyDefaults({callback:d,scope:this},b["delete"])));return e},abort:function(a){a&&a.priv.abort()},callUserCallback:function(a,b){var c=b[a.requestType];c&&c.callback&&c.callback.call(c.scope,a)},CLASS_NAME:"OpenLayers.Protocol.HTTP"});OpenLayers.Strategy.Cluster=OpenLayers.Class(OpenLayers.Strategy,{distance:20,threshold:null,features:null,clusters:null,clustering:!1,resolution:null,activate:function(){var a=OpenLayers.Strategy.prototype.activate.call(this);if(a)this.layer.events.on({beforefeaturesadded:this.cacheFeatures,moveend:this.cluster,scope:this});return a},deactivate:function(){var a=OpenLayers.Strategy.prototype.deactivate.call(this);a&&(this.clearCache(),this.layer.events.un({beforefeaturesadded:this.cacheFeatures,moveend:this.cluster, scope:this}));return a},cacheFeatures:function(a){var b=!0;this.clustering||(this.clearCache(),this.features=a.features,this.cluster(),b=!1);return b},clearCache:function(){this.features=null},cluster:function(a){if((!a||a.zoomChanged)&&this.features)if(a=this.layer.map.getResolution(),a!=this.resolution||!this.clustersExist()){this.resolution=a;for(var a=[],b,c,d,e=0;e<this.features.length;++e)if(b=this.features[e],b.geometry){c=!1;for(var f=a.length-1;0<=f;--f)if(d=a[f],this.shouldCluster(d,b)){this.addToCluster(d, b);c=!0;break}c||a.push(this.createCluster(this.features[e]))}this.layer.removeAllFeatures();if(0<a.length){if(1<this.threshold){b=a.slice();a=[];e=0;for(d=b.length;e<d;++e)c=b[e],c.attributes.count<this.threshold?Array.prototype.push.apply(a,c.cluster):a.push(c)}this.clustering=!0;this.layer.addFeatures(a);this.clustering=!1}this.clusters=a}},clustersExist:function(){var a=!1;if(this.clusters&&0<this.clusters.length&&this.clusters.length==this.layer.features.length)for(var a=!0,b=0;b<this.clusters.length;++b)if(this.clusters[b]!= this.layer.features[b]){a=!1;break}return a},shouldCluster:function(a,b){var c=a.geometry.getBounds().getCenterLonLat(),d=b.geometry.getBounds().getCenterLonLat();return Math.sqrt(Math.pow(c.lon-d.lon,2)+Math.pow(c.lat-d.lat,2))/this.resolution<=this.distance},addToCluster:function(a,b){a.cluster.push(b);a.attributes.count+=1},createCluster:function(a){var b=a.geometry.getBounds().getCenterLonLat(),b=new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Point(b.lon,b.lat),{count:1});b.cluster=[a]; return b},CLASS_NAME:"OpenLayers.Strategy.Cluster"});OpenLayers.Strategy.Filter=OpenLayers.Class(OpenLayers.Strategy,{filter:null,cache:null,caching:!1,activate:function(){var a=OpenLayers.Strategy.prototype.activate.apply(this,arguments);a&&(this.cache=[],this.layer.events.on({beforefeaturesadded:this.handleAdd,beforefeaturesremoved:this.handleRemove,scope:this}));return a},deactivate:function(){this.cache=null;this.layer&&this.layer.events&&this.layer.events.un({beforefeaturesadded:this.handleAdd,beforefeaturesremoved:this.handleRemove,scope:this}); return OpenLayers.Strategy.prototype.deactivate.apply(this,arguments)},handleAdd:function(a){if(!this.caching&&this.filter){var b=a.features;a.features=[];for(var c,d=0,e=b.length;d<e;++d)c=b[d],this.filter.evaluate(c)?a.features.push(c):this.cache.push(c)}},handleRemove:function(){this.caching||(this.cache=[])},setFilter:function(a){this.filter=a;a=this.cache;this.cache=[];this.handleAdd({features:this.layer.features});0<this.cache.length&&(this.caching=!0,this.layer.removeFeatures(this.cache.slice()), this.caching=!1);0<a.length&&(a={features:a},this.handleAdd(a),0<a.features.length&&(this.caching=!0,this.layer.addFeatures(a.features),this.caching=!1))},CLASS_NAME:"OpenLayers.Strategy.Filter"});OpenLayers.Protocol.SOS=function(a){var a=OpenLayers.Util.applyDefaults(a,OpenLayers.Protocol.SOS.DEFAULTS),b=OpenLayers.Protocol.SOS["v"+a.version.replace(/\./g,"_")];if(!b)throw"Unsupported SOS version: "+a.version;return new b(a)};OpenLayers.Protocol.SOS.DEFAULTS={version:"1.0.0"};OpenLayers.Format.WFSDescribeFeatureType=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{xsd:"http://www.w3.org/2001/XMLSchema"},readers:{xsd:{schema:function(a,b){var c=[],d={};this.readChildNodes(a,{complexTypes:c,customTypes:d});for(var e=a.attributes,f,g,h=0,i=e.length;h<i;++h)f=e[h],g=f.name,0==g.indexOf("xmlns")?this.setNamespace(g.split(":")[1]||"",f.value):b[g]=f.value;b.featureTypes=c;b.targetPrefix=this.namespaceAlias[b.targetNamespace];h=0;for(i=c.length;h<i;++h)e=c[h],f=d[e.typeName], d[e.typeName]&&(e.typeName=f.name)},complexType:function(a,b){var c={typeName:a.getAttribute("name")};this.readChildNodes(a,c);b.complexTypes.push(c)},complexContent:function(a,b){this.readChildNodes(a,b)},extension:function(a,b){this.readChildNodes(a,b)},sequence:function(a,b){var c={elements:[]};this.readChildNodes(a,c);b.properties=c.elements},element:function(a,b){if(b.elements){for(var c={},d=a.attributes,e,f=0,g=d.length;f<g;++f)e=d[f],c[e.name]=e.value;d=c.type;d||(d={},this.readChildNodes(a, d),c.restriction=d,c.type=d.base);c.localType=(d.base||d).split(":").pop();b.elements.push(c)}b.complexTypes&&(d=a.getAttribute("type"),c=d.split(":").pop(),b.customTypes[c]={name:a.getAttribute("name"),type:d})},simpleType:function(a,b){this.readChildNodes(a,b)},restriction:function(a,b){b.base=a.getAttribute("base");this.readRestriction(a,b)}}},readRestriction:function(a,b){for(var c=a.childNodes,d,e,f=0,g=c.length;f<g;++f)d=c[f],1==d.nodeType&&(e=d.nodeName.split(":").pop(),d=d.getAttribute("value"), b[e]?("string"==typeof b[e]&&(b[e]=[b[e]]),b[e].push(d)):b[e]=d)},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement);var b={};this.readNode(a,b);return b},CLASS_NAME:"OpenLayers.Format.WFSDescribeFeatureType"});OpenLayers.Format.GeoRSS=OpenLayers.Class(OpenLayers.Format.XML,{rssns:"http://backend.userland.com/rss2",featureNS:"http://mapserver.gis.umn.edu/mapserver",georssns:"http://www.georss.org/georss",geons:"http://www.w3.org/2003/01/geo/wgs84_pos#",featureTitle:"Untitled",featureDescription:"No Description",gmlParser:null,xy:!1,createGeometryFromItem:function(a){var b=this.getElementsByTagNameNS(a,this.georssns,"point"),c=this.getElementsByTagNameNS(a,this.geons,"lat"),d=this.getElementsByTagNameNS(a, this.geons,"long"),e=this.getElementsByTagNameNS(a,this.georssns,"line"),f=this.getElementsByTagNameNS(a,this.georssns,"polygon"),g=this.getElementsByTagNameNS(a,this.georssns,"where"),a=this.getElementsByTagNameNS(a,this.georssns,"box");if(0<b.length||0<c.length&&0<d.length){0<b.length?(c=OpenLayers.String.trim(b[0].firstChild.nodeValue).split(/\s+/),2!=c.length&&(c=OpenLayers.String.trim(b[0].firstChild.nodeValue).split(/\s*,\s*/))):c=[parseFloat(c[0].firstChild.nodeValue),parseFloat(d[0].firstChild.nodeValue)]; var h=new OpenLayers.Geometry.Point(c[1],c[0])}else if(0<e.length){c=OpenLayers.String.trim(this.getChildValue(e[0])).split(/\s+/);d=[];e=0;for(f=c.length;e<f;e+=2)b=new OpenLayers.Geometry.Point(c[e+1],c[e]),d.push(b);h=new OpenLayers.Geometry.LineString(d)}else if(0<f.length){c=OpenLayers.String.trim(this.getChildValue(f[0])).split(/\s+/);d=[];e=0;for(f=c.length;e<f;e+=2)b=new OpenLayers.Geometry.Point(c[e+1],c[e]),d.push(b);h=new OpenLayers.Geometry.Polygon([new OpenLayers.Geometry.LinearRing(d)])}else 0< g.length?(this.gmlParser||(this.gmlParser=new OpenLayers.Format.GML({xy:this.xy})),h=this.gmlParser.parseFeature(g[0]).geometry):0<a.length&&(c=OpenLayers.String.trim(a[0].firstChild.nodeValue).split(/\s+/),d=[],3<c.length&&(b=new OpenLayers.Geometry.Point(c[1],c[0]),d.push(b),b=new OpenLayers.Geometry.Point(c[1],c[2]),d.push(b),b=new OpenLayers.Geometry.Point(c[3],c[2]),d.push(b),b=new OpenLayers.Geometry.Point(c[3],c[0]),d.push(b),b=new OpenLayers.Geometry.Point(c[1],c[0]),d.push(b)),h=new OpenLayers.Geometry.Polygon([new OpenLayers.Geometry.LinearRing(d)])); h&&(this.internalProjection&&this.externalProjection)&&h.transform(this.externalProjection,this.internalProjection);return h},createFeatureFromItem:function(a){var b=this.createGeometryFromItem(a),c=this._getChildValue(a,"*","title",this.featureTitle),d=this._getChildValue(a,"*","description",this._getChildValue(a,"*","content",this._getChildValue(a,"*","summary",this.featureDescription))),e=this._getChildValue(a,"*","link");if(!e)try{e=this.getElementsByTagNameNS(a,"*","link")[0].getAttribute("href")}catch(f){e= null}a=this._getChildValue(a,"*","id",null);b=new OpenLayers.Feature.Vector(b,{title:c,description:d,link:e});b.fid=a;return b},_getChildValue:function(a,b,c,d){return(a=this.getElementsByTagNameNS(a,b,c))&&a[0]&&a[0].firstChild&&a[0].firstChild.nodeValue?this.getChildValue(a[0]):void 0==d?"":d},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));var b=null,b=this.getElementsByTagNameNS(a,"*","item");0==b.length&&(b=this.getElementsByTagNameNS(a,"*","entry")); for(var a=b.length,c=Array(a),d=0;d<a;d++)c[d]=this.createFeatureFromItem(b[d]);return c},write:function(a){var b;if(OpenLayers.Util.isArray(a)){b=this.createElementNS(this.rssns,"rss");for(var c=0,d=a.length;c<d;c++)b.appendChild(this.createFeatureXML(a[c]))}else b=this.createFeatureXML(a);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFeatureXML:function(a){var b=this.buildGeometryNode(a.geometry),c=this.createElementNS(this.rssns,"item"),d=this.createElementNS(this.rssns,"title"); d.appendChild(this.createTextNode(a.attributes.title?a.attributes.title:""));var e=this.createElementNS(this.rssns,"description");e.appendChild(this.createTextNode(a.attributes.description?a.attributes.description:""));c.appendChild(d);c.appendChild(e);a.attributes.link&&(d=this.createElementNS(this.rssns,"link"),d.appendChild(this.createTextNode(a.attributes.link)),c.appendChild(d));for(var f in a.attributes)"link"==f||("title"==f||"description"==f)||(d=this.createTextNode(a.attributes[f]),e=f,-1!= f.search(":")&&(e=f.split(":")[1]),e=this.createElementNS(this.featureNS,"feature:"+e),e.appendChild(d),c.appendChild(e));c.appendChild(b);return c},buildGeometryNode:function(a){this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));var b;if("OpenLayers.Geometry.Polygon"==a.CLASS_NAME)b=this.createElementNS(this.georssns,"georss:polygon"),b.appendChild(this.buildCoordinatesNode(a.components[0]));else if("OpenLayers.Geometry.LineString"== a.CLASS_NAME)b=this.createElementNS(this.georssns,"georss:line"),b.appendChild(this.buildCoordinatesNode(a));else if("OpenLayers.Geometry.Point"==a.CLASS_NAME)b=this.createElementNS(this.georssns,"georss:point"),b.appendChild(this.buildCoordinatesNode(a));else throw"Couldn't parse "+a.CLASS_NAME;return b},buildCoordinatesNode:function(a){var b=null;a.components&&(b=a.components);if(b){for(var a=b.length,c=Array(a),d=0;d<a;d++)c[d]=b[d].y+" "+b[d].x;b=c.join(" ")}else b=a.y+" "+a.x;return this.createTextNode(b)}, CLASS_NAME:"OpenLayers.Format.GeoRSS"});OpenLayers.Format.WPSCapabilities=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.0.0",CLASS_NAME:"OpenLayers.Format.WPSCapabilities"});OpenLayers.Format.WPSCapabilities.v1_0_0=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{ows:"http://www.opengis.net/ows/1.1",wps:"http://www.opengis.net/wps/1.0.0",xlink:"http://www.w3.org/1999/xlink"},regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement); var b={};this.readNode(a,b);return b},readers:{wps:{Capabilities:function(a,b){this.readChildNodes(a,b)},ProcessOfferings:function(a,b){b.processOfferings={};this.readChildNodes(a,b.processOfferings)},Process:function(a,b){var c={processVersion:this.getAttributeNS(a,this.namespaces.wps,"processVersion")};this.readChildNodes(a,c);b[c.identifier]=c},Languages:function(a,b){b.languages=[];this.readChildNodes(a,b.languages)},Default:function(a,b){var c={isDefault:!0};this.readChildNodes(a,c);b.push(c)}, Supported:function(a,b){var c={};this.readChildNodes(a,c);b.push(c)}},ows:OpenLayers.Format.OWSCommon.v1_1_0.prototype.readers.ows},CLASS_NAME:"OpenLayers.Format.WPSCapabilities.v1_0_0"});OpenLayers.Control.PinchZoom=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_TOOL,containerCenter:null,pinchOrigin:null,currentCenter:null,autoActivate:!0,initialize:function(a){OpenLayers.Control.prototype.initialize.apply(this,arguments);this.handler=new OpenLayers.Handler.Pinch(this,{start:this.pinchStart,move:this.pinchMove,done:this.pinchDone},this.handlerOptions)},activate:function(){var a=OpenLayers.Control.prototype.activate.apply(this,arguments);a&&(this.map.events.on({moveend:this.updateContainerCenter, scope:this}),this.updateContainerCenter());return a},deactivate:function(){var a=OpenLayers.Control.prototype.deactivate.apply(this,arguments);this.map&&this.map.events&&this.map.events.un({moveend:this.updateContainerCenter,scope:this});return a},updateContainerCenter:function(){var a=this.map.layerContainerDiv;this.containerCenter={x:parseInt(a.style.left,10)+50,y:parseInt(a.style.top,10)+50}},pinchStart:function(a){this.currentCenter=this.pinchOrigin=a.xy},pinchMove:function(a,b){var c=b.scale, d=this.containerCenter,e=this.pinchOrigin,f=a.xy,g=Math.round(f.x-e.x+(c-1)*(d.x-e.x)),d=Math.round(f.y-e.y+(c-1)*(d.y-e.y));this.applyTransform("translate("+g+"px, "+d+"px) scale("+c+")");this.currentCenter=f},applyTransform:function(a){var b=this.map.layerContainerDiv.style;b["-webkit-transform"]=a;b["-moz-transform"]=a},pinchDone:function(a,b,c){this.applyTransform("");a=this.map.getZoomForResolution(this.map.getResolution()/c.scale,!0);if(a!==this.map.getZoom()||!this.currentCenter.equals(this.pinchOrigin)){var b= this.map.getResolutionForZoom(a),c=this.map.getLonLatFromPixel(this.pinchOrigin),d=this.currentCenter,e=this.map.getSize();c.lon+=b*(e.w/2-d.x);c.lat-=b*(e.h/2-d.y);this.map.div.clientWidth=this.map.div.clientWidth;this.map.setCenter(c,a)}},CLASS_NAME:"OpenLayers.Control.PinchZoom"});OpenLayers.Control.TouchNavigation=OpenLayers.Class(OpenLayers.Control,{dragPan:null,dragPanOptions:null,pinchZoom:null,pinchZoomOptions:null,clickHandlerOptions:null,documentDrag:!1,autoActivate:!0,initialize:function(a){this.handlers={};OpenLayers.Control.prototype.initialize.apply(this,arguments)},destroy:function(){this.deactivate();this.dragPan&&this.dragPan.destroy();this.dragPan=null;this.pinchZoom&&(this.pinchZoom.destroy(),delete this.pinchZoom);OpenLayers.Control.prototype.destroy.apply(this, arguments)},activate:function(){return OpenLayers.Control.prototype.activate.apply(this,arguments)?(this.dragPan.activate(),this.handlers.click.activate(),this.pinchZoom.activate(),!0):!1},deactivate:function(){return OpenLayers.Control.prototype.deactivate.apply(this,arguments)?(this.dragPan.deactivate(),this.handlers.click.deactivate(),this.pinchZoom.deactivate(),!0):!1},draw:function(){var a={click:this.defaultClick,dblclick:this.defaultDblClick},b=OpenLayers.Util.extend({"double":!0,stopDouble:!0, pixelTolerance:2},this.clickHandlerOptions);this.handlers.click=new OpenLayers.Handler.Click(this,a,b);this.dragPan=new OpenLayers.Control.DragPan(OpenLayers.Util.extend({map:this.map,documentDrag:this.documentDrag},this.dragPanOptions));this.dragPan.draw();this.pinchZoom=new OpenLayers.Control.PinchZoom(OpenLayers.Util.extend({map:this.map},this.pinchZoomOptions))},defaultClick:function(a){a.lastTouches&&2==a.lastTouches.length&&this.map.zoomOut()},defaultDblClick:function(a){this.map.setCenter(this.map.getLonLatFromViewPortPx(a.xy), this.map.zoom+1)},CLASS_NAME:"OpenLayers.Control.TouchNavigation"});OpenLayers.Style2=OpenLayers.Class({id:null,name:null,title:null,description:null,layerName:null,isDefault:!1,rules:null,initialize:function(a){OpenLayers.Util.extend(this,a);this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},destroy:function(){for(var a=0,b=this.rules.length;a<b;a++)this.rules[a].destroy();delete this.rules},clone:function(){var a=OpenLayers.Util.extend({},this);if(this.rules){a.rules=[];for(var b=0,c=this.rules.length;b<c;++b)a.rules.push(this.rules[b].clone())}return new OpenLayers.Style2(a)}, CLASS_NAME:"OpenLayers.Style2"});OpenLayers.Format.WFS=OpenLayers.Class(OpenLayers.Format.GML,{layer:null,wfsns:"http://www.opengis.net/wfs",ogcns:"http://www.opengis.net/ogc",initialize:function(a,b){OpenLayers.Format.GML.prototype.initialize.apply(this,[a]);this.layer=b;this.layer.featureNS&&(this.featureNS=this.layer.featureNS);this.layer.options.geometry_column&&(this.geometryName=this.layer.options.geometry_column);this.layer.options.typename&&(this.featureName=this.layer.options.typename)},write:function(a){var b=this.createElementNS(this.wfsns, "wfs:Transaction");b.setAttribute("version","1.0.0");b.setAttribute("service","WFS");for(var c=0;c<a.length;c++)switch(a[c].state){case OpenLayers.State.INSERT:b.appendChild(this.insert(a[c]));break;case OpenLayers.State.UPDATE:b.appendChild(this.update(a[c]));break;case OpenLayers.State.DELETE:b.appendChild(this.remove(a[c]))}return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFeatureXML:function(a){var b=this.buildGeometryNode(a.geometry),c=this.createElementNS(this.featureNS,"feature:"+ this.geometryName);c.appendChild(b);b=this.createElementNS(this.featureNS,"feature:"+this.featureName);b.appendChild(c);for(var d in a.attributes){var c=this.createTextNode(a.attributes[d]),e=d;-1!=d.search(":")&&(e=d.split(":")[1]);e=this.createElementNS(this.featureNS,"feature:"+e);e.appendChild(c);b.appendChild(e)}return b},insert:function(a){var b=this.createElementNS(this.wfsns,"wfs:Insert");b.appendChild(this.createFeatureXML(a));return b},update:function(a){a.fid||OpenLayers.Console.userError(OpenLayers.i18n("noFID")); var b=this.createElementNS(this.wfsns,"wfs:Update");b.setAttribute("typeName",this.featurePrefix+":"+this.featureName);b.setAttribute("xmlns:"+this.featurePrefix,this.featureNS);var c=this.createElementNS(this.wfsns,"wfs:Property"),d=this.createElementNS(this.wfsns,"wfs:Name"),e=this.createTextNode(this.geometryName);d.appendChild(e);c.appendChild(d);d=this.createElementNS(this.wfsns,"wfs:Value");e=this.buildGeometryNode(a.geometry);a.layer&&e.setAttribute("srsName",a.layer.projection.getCode()); d.appendChild(e);c.appendChild(d);b.appendChild(c);for(var f in a.attributes)c=this.createElementNS(this.wfsns,"wfs:Property"),d=this.createElementNS(this.wfsns,"wfs:Name"),d.appendChild(this.createTextNode(f)),c.appendChild(d),d=this.createElementNS(this.wfsns,"wfs:Value"),d.appendChild(this.createTextNode(a.attributes[f])),c.appendChild(d),b.appendChild(c);c=this.createElementNS(this.ogcns,"ogc:Filter");f=this.createElementNS(this.ogcns,"ogc:FeatureId");f.setAttribute("fid",a.fid);c.appendChild(f); b.appendChild(c);return b},remove:function(a){if(!a.fid)return OpenLayers.Console.userError(OpenLayers.i18n("noFID")),!1;var b=this.createElementNS(this.wfsns,"wfs:Delete");b.setAttribute("typeName",this.featurePrefix+":"+this.featureName);b.setAttribute("xmlns:"+this.featurePrefix,this.featureNS);var c=this.createElementNS(this.ogcns,"ogc:Filter"),d=this.createElementNS(this.ogcns,"ogc:FeatureId");d.setAttribute("fid",a.fid);c.appendChild(d);b.appendChild(c);return b},destroy:function(){this.layer= null},CLASS_NAME:"OpenLayers.Format.WFS"});OpenLayers.Format.SLD.v1_0_0_GeoServer=OpenLayers.Class(OpenLayers.Format.SLD.v1_0_0,{version:"1.0.0",profile:"GeoServer",readers:OpenLayers.Util.applyDefaults({sld:OpenLayers.Util.applyDefaults({Priority:function(a,b){var c=this.readers.ogc._expression.call(this,a);c&&(b.priority=c)},VendorOption:function(a,b){b.vendorOptions||(b.vendorOptions={});b.vendorOptions[a.getAttribute("name")]=this.getChildValue(a)}},OpenLayers.Format.SLD.v1_0_0.prototype.readers.sld)},OpenLayers.Format.SLD.v1_0_0.prototype.readers), writers:OpenLayers.Util.applyDefaults({sld:OpenLayers.Util.applyDefaults({Priority:function(a){return this.writers.sld._OGCExpression.call(this,"sld:Priority",a)},VendorOption:function(a){return this.createElementNSPlus("sld:VendorOption",{attributes:{name:a.name},value:a.value})},TextSymbolizer:function(a){var b=OpenLayers.Format.SLD.v1_0_0.prototype.writers.sld.TextSymbolizer.apply(this,arguments);!1!==a.graphic&&(a.externalGraphic||a.graphicName)&&this.writeNode("Graphic",a,b);"priority"in a&& this.writeNode("Priority",a.priority,b);return this.addVendorOptions(b,a)},PointSymbolizer:function(a){return this.addVendorOptions(OpenLayers.Format.SLD.v1_0_0.prototype.writers.sld.PointSymbolizer.apply(this,arguments),a)},LineSymbolizer:function(a){return this.addVendorOptions(OpenLayers.Format.SLD.v1_0_0.prototype.writers.sld.LineSymbolizer.apply(this,arguments),a)},PolygonSymbolizer:function(a){return this.addVendorOptions(OpenLayers.Format.SLD.v1_0_0.prototype.writers.sld.PolygonSymbolizer.apply(this, arguments),a)}},OpenLayers.Format.SLD.v1_0_0.prototype.writers.sld)},OpenLayers.Format.SLD.v1_0_0.prototype.writers),addVendorOptions:function(a,b){if(b.vendorOptions)for(var c in b.vendorOptions)this.writeNode("VendorOption",{name:c,value:b.vendorOptions[c]},a);return a},CLASS_NAME:"OpenLayers.Format.SLD.v1_0_0_GeoServer"});OpenLayers.Layer.Boxes=OpenLayers.Class(OpenLayers.Layer.Markers,{drawMarker:function(a){var b=this.map.getLayerPxFromLonLat({lon:a.bounds.left,lat:a.bounds.top}),c=this.map.getLayerPxFromLonLat({lon:a.bounds.right,lat:a.bounds.bottom});null==c||null==b?a.display(!1):(b=a.draw(b,{w:Math.max(1,c.x-b.x),h:Math.max(1,c.y-b.y)}),a.drawn||(this.div.appendChild(b),a.drawn=!0))},removeMarker:function(a){OpenLayers.Util.removeItem(this.markers,a);null!=a.div&&a.div.parentNode==this.div&&this.div.removeChild(a.div)}, CLASS_NAME:"OpenLayers.Layer.Boxes"});OpenLayers.Format.WFSCapabilities.v1_0_0=OpenLayers.Class(OpenLayers.Format.WFSCapabilities.v1,{readers:{wfs:OpenLayers.Util.applyDefaults({Service:function(a,b){b.service={};this.readChildNodes(a,b.service)},Fees:function(a,b){var c=this.getChildValue(a);c&&"none"!=c.toLowerCase()&&(b.fees=c)},AccessConstraints:function(a,b){var c=this.getChildValue(a);c&&"none"!=c.toLowerCase()&&(b.accessConstraints=c)},OnlineResource:function(a,b){var c=this.getChildValue(a);c&&"none"!=c.toLowerCase()&&(b.onlineResource= c)},Keywords:function(a,b){var c=this.getChildValue(a);c&&"none"!=c.toLowerCase()&&(b.keywords=c.split(", "))},Capability:function(a,b){b.capability={};this.readChildNodes(a,b.capability)},Request:function(a,b){b.request={};this.readChildNodes(a,b.request)},GetFeature:function(a,b){b.getfeature={href:{},formats:[]};this.readChildNodes(a,b.getfeature)},ResultFormat:function(a,b){for(var c=a.childNodes,d,e=0;e<c.length;e++)d=c[e],1==d.nodeType&&b.formats.push(d.nodeName)},DCPType:function(a,b){this.readChildNodes(a, b)},HTTP:function(a,b){this.readChildNodes(a,b.href)},Get:function(a,b){b.get=a.getAttribute("onlineResource")},Post:function(a,b){b.post=a.getAttribute("onlineResource")},SRS:function(a,b){var c=this.getChildValue(a);c&&(b.srs=c)}},OpenLayers.Format.WFSCapabilities.v1.prototype.readers.wfs)},CLASS_NAME:"OpenLayers.Format.WFSCapabilities.v1_0_0"});OpenLayers.Format.WMSCapabilities=OpenLayers.Class(OpenLayers.Format.XML.VersionedOGC,{defaultVersion:"1.1.1",profile:null,CLASS_NAME:"OpenLayers.Format.WMSCapabilities"});OpenLayers.Format.WMSCapabilities.v1=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{wms:"http://www.opengis.net/wms",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},defaultPrefix:"wms",read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));var b=a;a&&9==a.nodeType&&(a=a.documentElement);var c={};this.readNode(a,c);void 0===c.service&&(a=new OpenLayers.Format.OGCExceptionReport,c.error=a.read(b));return c},readers:{wms:{Service:function(a, b){b.service={};this.readChildNodes(a,b.service)},Name:function(a,b){b.name=this.getChildValue(a)},Title:function(a,b){b.title=this.getChildValue(a)},Abstract:function(a,b){b["abstract"]=this.getChildValue(a)},BoundingBox:function(a){var b={};b.bbox=[parseFloat(a.getAttribute("minx")),parseFloat(a.getAttribute("miny")),parseFloat(a.getAttribute("maxx")),parseFloat(a.getAttribute("maxy"))];a={x:parseFloat(a.getAttribute("resx")),y:parseFloat(a.getAttribute("resy"))};if(!isNaN(a.x)||!isNaN(a.y))b.res= a;return b},OnlineResource:function(a,b){b.href=this.getAttributeNS(a,this.namespaces.xlink,"href")},ContactInformation:function(a,b){b.contactInformation={};this.readChildNodes(a,b.contactInformation)},ContactPersonPrimary:function(a,b){b.personPrimary={};this.readChildNodes(a,b.personPrimary)},ContactPerson:function(a,b){b.person=this.getChildValue(a)},ContactOrganization:function(a,b){b.organization=this.getChildValue(a)},ContactPosition:function(a,b){b.position=this.getChildValue(a)},ContactAddress:function(a, b){b.contactAddress={};this.readChildNodes(a,b.contactAddress)},AddressType:function(a,b){b.type=this.getChildValue(a)},Address:function(a,b){b.address=this.getChildValue(a)},City:function(a,b){b.city=this.getChildValue(a)},StateOrProvince:function(a,b){b.stateOrProvince=this.getChildValue(a)},PostCode:function(a,b){b.postcode=this.getChildValue(a)},Country:function(a,b){b.country=this.getChildValue(a)},ContactVoiceTelephone:function(a,b){b.phone=this.getChildValue(a)},ContactFacsimileTelephone:function(a, b){b.fax=this.getChildValue(a)},ContactElectronicMailAddress:function(a,b){b.email=this.getChildValue(a)},Fees:function(a,b){var c=this.getChildValue(a);c&&"none"!=c.toLowerCase()&&(b.fees=c)},AccessConstraints:function(a,b){var c=this.getChildValue(a);c&&"none"!=c.toLowerCase()&&(b.accessConstraints=c)},Capability:function(a,b){b.capability={nestedLayers:[],layers:[]};this.readChildNodes(a,b.capability)},Request:function(a,b){b.request={};this.readChildNodes(a,b.request)},GetCapabilities:function(a, b){b.getcapabilities={formats:[]};this.readChildNodes(a,b.getcapabilities)},Format:function(a,b){OpenLayers.Util.isArray(b.formats)?b.formats.push(this.getChildValue(a)):b.format=this.getChildValue(a)},DCPType:function(a,b){this.readChildNodes(a,b)},HTTP:function(a,b){this.readChildNodes(a,b)},Get:function(a,b){b.get={};this.readChildNodes(a,b.get);b.href||(b.href=b.get.href)},Post:function(a,b){b.post={};this.readChildNodes(a,b.post);b.href||(b.href=b.get.href)},GetMap:function(a,b){b.getmap={formats:[]}; this.readChildNodes(a,b.getmap)},GetFeatureInfo:function(a,b){b.getfeatureinfo={formats:[]};this.readChildNodes(a,b.getfeatureinfo)},Exception:function(a,b){b.exception={formats:[]};this.readChildNodes(a,b.exception)},Layer:function(a,b){var c,d;b.capability?(d=b.capability,c=b):d=b;var e=a.getAttributeNode("queryable"),f=e&&e.specified?a.getAttribute("queryable"):null,g=(e=a.getAttributeNode("cascaded"))&&e.specified?a.getAttribute("cascaded"):null,e=(e=a.getAttributeNode("opaque"))&&e.specified? a.getAttribute("opaque"):null,h=a.getAttribute("noSubsets"),i=a.getAttribute("fixedWidth"),j=a.getAttribute("fixedHeight"),k=c||{},l=OpenLayers.Util.extend;c={nestedLayers:[],styles:c?[].concat(c.styles):[],srs:c?l({},k.srs):{},metadataURLs:[],bbox:c?l({},k.bbox):{},llbbox:k.llbbox,dimensions:c?l({},k.dimensions):{},authorityURLs:c?l({},k.authorityURLs):{},identifiers:{},keywords:[],queryable:f&&""!==f?"1"===f||"true"===f:k.queryable||!1,cascaded:null!==g?parseInt(g):k.cascaded||0,opaque:e?"1"=== e||"true"===e:k.opaque||!1,noSubsets:null!==h?"1"===h||"true"===h:k.noSubsets||!1,fixedWidth:null!=i?parseInt(i):k.fixedWidth||0,fixedHeight:null!=j?parseInt(j):k.fixedHeight||0,minScale:k.minScale,maxScale:k.maxScale,attribution:k.attribution};b.nestedLayers.push(c);c.capability=d;this.readChildNodes(a,c);delete c.capability;if(c.name&&(f=c.name.split(":"),g=d.request,e=g.getfeatureinfo,0<f.length&&(c.prefix=f[0]),d.layers.push(c),void 0===c.formats&&(c.formats=g.getmap.formats),void 0===c.infoFormats&& e))c.infoFormats=e.formats},Attribution:function(a,b){b.attribution={};this.readChildNodes(a,b.attribution)},LogoURL:function(a,b){b.logo={width:a.getAttribute("width"),height:a.getAttribute("height")};this.readChildNodes(a,b.logo)},Style:function(a,b){var c={};b.styles.push(c);this.readChildNodes(a,c)},LegendURL:function(a,b){var c={width:a.getAttribute("width"),height:a.getAttribute("height")};b.legend=c;this.readChildNodes(a,c)},MetadataURL:function(a,b){var c={type:a.getAttribute("type")};b.metadataURLs.push(c); this.readChildNodes(a,c)},DataURL:function(a,b){b.dataURL={};this.readChildNodes(a,b.dataURL)},FeatureListURL:function(a,b){b.featureListURL={};this.readChildNodes(a,b.featureListURL)},AuthorityURL:function(a,b){var c=a.getAttribute("name"),d={};this.readChildNodes(a,d);b.authorityURLs[c]=d.href},Identifier:function(a,b){var c=a.getAttribute("authority");b.identifiers[c]=this.getChildValue(a)},KeywordList:function(a,b){this.readChildNodes(a,b)},SRS:function(a,b){b.srs[this.getChildValue(a)]=!0}}}, CLASS_NAME:"OpenLayers.Format.WMSCapabilities.v1"});OpenLayers.Format.WMSCapabilities.v1_3=OpenLayers.Class(OpenLayers.Format.WMSCapabilities.v1,{readers:{wms:OpenLayers.Util.applyDefaults({WMS_Capabilities:function(a,b){this.readChildNodes(a,b)},LayerLimit:function(a,b){b.layerLimit=parseInt(this.getChildValue(a))},MaxWidth:function(a,b){b.maxWidth=parseInt(this.getChildValue(a))},MaxHeight:function(a,b){b.maxHeight=parseInt(this.getChildValue(a))},BoundingBox:function(a,b){var c=OpenLayers.Format.WMSCapabilities.v1.prototype.readers.wms.BoundingBox.apply(this, [a,b]);c.srs=a.getAttribute("CRS");b.bbox[c.srs]=c},CRS:function(a,b){this.readers.wms.SRS.apply(this,[a,b])},EX_GeographicBoundingBox:function(a,b){b.llbbox=[];this.readChildNodes(a,b.llbbox)},westBoundLongitude:function(a,b){b[0]=this.getChildValue(a)},eastBoundLongitude:function(a,b){b[2]=this.getChildValue(a)},southBoundLatitude:function(a,b){b[1]=this.getChildValue(a)},northBoundLatitude:function(a,b){b[3]=this.getChildValue(a)},MinScaleDenominator:function(a,b){b.maxScale=parseFloat(this.getChildValue(a)).toPrecision(16)}, MaxScaleDenominator:function(a,b){b.minScale=parseFloat(this.getChildValue(a)).toPrecision(16)},Dimension:function(a,b){var c={name:a.getAttribute("name").toLowerCase(),units:a.getAttribute("units"),unitsymbol:a.getAttribute("unitSymbol"),nearestVal:"1"===a.getAttribute("nearestValue"),multipleVal:"1"===a.getAttribute("multipleValues"),"default":a.getAttribute("default")||"",current:"1"===a.getAttribute("current"),values:this.getChildValue(a).split(",")};b.dimensions[c.name]=c},Keyword:function(a, b){var c={value:this.getChildValue(a),vocabulary:a.getAttribute("vocabulary")};b.keywords&&b.keywords.push(c)}},OpenLayers.Format.WMSCapabilities.v1.prototype.readers.wms),sld:{UserDefinedSymbolization:function(a,b){this.readers.wms.UserDefinedSymbolization.apply(this,[a,b]);b.userSymbols.inlineFeature=1==parseInt(a.getAttribute("InlineFeature"));b.userSymbols.remoteWCS=1==parseInt(a.getAttribute("RemoteWCS"))},DescribeLayer:function(a,b){this.readers.wms.DescribeLayer.apply(this,[a,b])},GetLegendGraphic:function(a, b){this.readers.wms.GetLegendGraphic.apply(this,[a,b])}}},CLASS_NAME:"OpenLayers.Format.WMSCapabilities.v1_3"});OpenLayers.Layer.Zoomify=OpenLayers.Class(OpenLayers.Layer.Grid,{size:null,isBaseLayer:!0,standardTileSize:256,tileOriginCorner:"tl",numberOfTiers:0,tileCountUpToTier:null,tierSizeInTiles:null,tierImageSize:null,initialize:function(a,b,c,d){this.initializeZoomify(c);OpenLayers.Layer.Grid.prototype.initialize.apply(this,[a,b,c,{},d])},initializeZoomify:function(a){var a=a.clone(),b=new OpenLayers.Size(Math.ceil(a.w/this.standardTileSize),Math.ceil(a.h/this.standardTileSize));this.tierSizeInTiles=[b]; for(this.tierImageSize=[a];a.w>this.standardTileSize||a.h>this.standardTileSize;)a=new OpenLayers.Size(Math.floor(a.w/2),Math.floor(a.h/2)),b=new OpenLayers.Size(Math.ceil(a.w/this.standardTileSize),Math.ceil(a.h/this.standardTileSize)),this.tierSizeInTiles.push(b),this.tierImageSize.push(a);this.tierSizeInTiles.reverse();this.tierImageSize.reverse();this.numberOfTiers=this.tierSizeInTiles.length;this.tileCountUpToTier=[0];for(a=1;a<this.numberOfTiers;a++)this.tileCountUpToTier.push(this.tierSizeInTiles[a- 1].w*this.tierSizeInTiles[a-1].h+this.tileCountUpToTier[a-1])},destroy:function(){OpenLayers.Layer.Grid.prototype.destroy.apply(this,arguments);this.tileCountUpToTier.length=0;this.tierSizeInTiles.length=0;this.tierImageSize.length=0},clone:function(a){null==a&&(a=new OpenLayers.Layer.Zoomify(this.name,this.url,this.size,this.options));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a])},getURL:function(a){var a=this.adjustBounds(a),b=this.map.getResolution(),c=Math.round((a.left-this.tileOrigin.lon)/ (b*this.tileSize.w)),a=Math.round((this.tileOrigin.lat-a.top)/(b*this.tileSize.h)),b=this.map.getZoom(),c="TileGroup"+Math.floor((c+a*this.tierSizeInTiles[b].w+this.tileCountUpToTier[b])/256)+"/"+b+"-"+c+"-"+a+".jpg",a=this.url;OpenLayers.Util.isArray(a)&&(a=this.selectUrl(c,a));return a+c},getImageSize:function(){if(0<arguments.length){var a=this.adjustBounds(arguments[0]),b=this.map.getResolution(),c=Math.round((a.left-this.tileOrigin.lon)/(b*this.tileSize.w)),a=Math.round((this.tileOrigin.lat- a.top)/(b*this.tileSize.h)),b=this.map.getZoom(),d=this.standardTileSize,e=this.standardTileSize;c==this.tierSizeInTiles[b].w-1&&(d=this.tierImageSize[b].w%this.standardTileSize);a==this.tierSizeInTiles[b].h-1&&(e=this.tierImageSize[b].h%this.standardTileSize);return new OpenLayers.Size(d,e)}return this.tileSize},setMap:function(a){OpenLayers.Layer.Grid.prototype.setMap.apply(this,arguments);this.tileOrigin=new OpenLayers.LonLat(this.map.maxExtent.left,this.map.maxExtent.top)},calculateGridLayout:function(a, b,c){var d=c*this.tileSize.w,c=c*this.tileSize.h,e=a.left-b.lon,f=Math.floor(e/d)-this.buffer,a=b.lat-a.top+c,g=Math.floor(a/c)-this.buffer;return{tilelon:d,tilelat:c,tileoffsetlon:b.lon+f*d,tileoffsetlat:b.lat-c*g,tileoffsetx:-(e/d-f)*this.tileSize.w,tileoffsety:(g-a/c)*this.tileSize.h}},CLASS_NAME:"OpenLayers.Layer.Zoomify"});OpenLayers.Layer.MapServer=OpenLayers.Class(OpenLayers.Layer.Grid,{DEFAULT_PARAMS:{mode:"map",map_imagetype:"png"},initialize:function(a,b,c,d){OpenLayers.Layer.Grid.prototype.initialize.apply(this,arguments);this.params=OpenLayers.Util.applyDefaults(this.params,this.DEFAULT_PARAMS);if(null==d||null==d.isBaseLayer)this.isBaseLayer="true"!=this.params.transparent&&!0!=this.params.transparent},clone:function(a){null==a&&(a=new OpenLayers.Layer.MapServer(this.name,this.url,this.params,this.getOptions())); return a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a])},getURL:function(a){var a=this.adjustBounds(a),a=[a.left,a.bottom,a.right,a.top],b=this.getImageSize();return this.getFullRequestString({mapext:a,imgext:a,map_size:[b.w,b.h],imgx:b.w/2,imgy:b.h/2,imgxy:[b.w,b.h]})},getFullRequestString:function(a,b){var c=null==b?this.url:b,d=OpenLayers.Util.extend({},this.params),d=OpenLayers.Util.extend(d,a),e=OpenLayers.Util.getParameterString(d);OpenLayers.Util.isArray(c)&&(c=this.selectUrl(e,c)); var e=OpenLayers.Util.upperCaseObject(OpenLayers.Util.getParameters(c)),f;for(f in d)f.toUpperCase()in e&&delete d[f];e=OpenLayers.Util.getParameterString(d);d=c;e=e.replace(/,/g,"+");""!=e&&(f=c.charAt(c.length-1),d="&"==f||"?"==f?d+e:-1==c.indexOf("?")?d+("?"+e):d+("&"+e));return d},CLASS_NAME:"OpenLayers.Layer.MapServer"});OpenLayers.Renderer.VML=OpenLayers.Class(OpenLayers.Renderer.Elements,{xmlns:"urn:schemas-microsoft-com:vml",symbolCache:{},offset:null,initialize:function(a){if(this.supported()){if(!document.namespaces.olv){document.namespaces.add("olv",this.xmlns);for(var b=document.createStyleSheet(),c="shape rect oval fill stroke imagedata group textbox".split(" "),d=0,e=c.length;d<e;d++)b.addRule("olv\\:"+c[d],"behavior: url(#default#VML); position: absolute; display: inline-block;")}OpenLayers.Renderer.Elements.prototype.initialize.apply(this, arguments)}},supported:function(){return!!document.namespaces},setExtent:function(a,b){var c=OpenLayers.Renderer.Elements.prototype.setExtent.apply(this,arguments),d=this.getResolution(),e=a.left/d|0,d=a.top/d-this.size.h|0;b||!this.offset?(this.offset={x:e,y:d},d=e=0):(e-=this.offset.x,d-=this.offset.y);this.root.coordorigin=e-this.xOffset+" "+d;for(var e=[this.root,this.vectorRoot,this.textRoot],f=0,g=e.length;f<g;++f)d=e[f],d.coordsize=this.size.w+" "+this.size.h;this.root.style.flip="y";return c}, setSize:function(a){OpenLayers.Renderer.prototype.setSize.apply(this,arguments);for(var b=[this.rendererRoot,this.root,this.vectorRoot,this.textRoot],c=this.size.w+"px",d=this.size.h+"px",e,f=0,g=b.length;f<g;++f)e=b[f],e.style.width=c,e.style.height=d},getNodeType:function(a,b){var c=null;switch(a.CLASS_NAME){case "OpenLayers.Geometry.Point":c=b.externalGraphic?"olv:rect":this.isComplexSymbol(b.graphicName)?"olv:shape":"olv:oval";break;case "OpenLayers.Geometry.Rectangle":c="olv:rect";break;case "OpenLayers.Geometry.LineString":case "OpenLayers.Geometry.LinearRing":case "OpenLayers.Geometry.Polygon":case "OpenLayers.Geometry.Curve":c= "olv:shape"}return c},setStyle:function(a,b,c,d){var b=b||a._style,c=c||a._options,e=b.fillColor;if("OpenLayers.Geometry.Point"===a._geometryClass)if(b.externalGraphic){c.isFilled=!0;b.graphicTitle&&(a.title=b.graphicTitle);var e=b.graphicWidth||b.graphicHeight,f=b.graphicHeight||b.graphicWidth,e=e?e:2*b.pointRadius,f=f?f:2*b.pointRadius,g=this.getResolution(),h=void 0!=b.graphicXOffset?b.graphicXOffset:-(0.5*e),i=void 0!=b.graphicYOffset?b.graphicYOffset:-(0.5*f);a.style.left=((d.x-this.featureDx)/ g-this.offset.x+h|0)+"px";a.style.top=(d.y/g-this.offset.y-(i+f)|0)+"px";a.style.width=e+"px";a.style.height=f+"px";a.style.flip="y";e="none";c.isStroked=!1}else this.isComplexSymbol(b.graphicName)?(f=this.importSymbol(b.graphicName),a.path=f.path,a.coordorigin=f.left+","+f.bottom,f=f.size,a.coordsize=f+","+f,this.drawCircle(a,d,b.pointRadius),a.style.flip="y"):this.drawCircle(a,d,b.pointRadius);c.isFilled?a.fillcolor=e:a.filled="false";d=a.getElementsByTagName("fill");d=0==d.length?null:d[0];if(c.isFilled){d|| (d=this.createNode("olv:fill",a.id+"_fill"));d.opacity=b.fillOpacity;if("OpenLayers.Geometry.Point"===a._geometryClass&&b.externalGraphic&&(b.graphicOpacity&&(d.opacity=b.graphicOpacity),d.src=b.externalGraphic,d.type="frame",!b.graphicWidth||!b.graphicHeight))d.aspect="atmost";d.parentNode!=a&&a.appendChild(d)}else d&&a.removeChild(d);e=b.rotation;if(void 0!==e||void 0!==a._rotation)a._rotation=e,b.externalGraphic?(this.graphicRotate(a,h,i,b),d.opacity=0):"OpenLayers.Geometry.Point"===a._geometryClass&& (a.style.rotation=e||0);h=a.getElementsByTagName("stroke");h=0==h.length?null:h[0];if(c.isStroked){if(h||(h=this.createNode("olv:stroke",a.id+"_stroke"),a.appendChild(h)),h.on=!0,h.color=b.strokeColor,h.weight=b.strokeWidth+"px",h.opacity=b.strokeOpacity,h.endcap="butt"==b.strokeLinecap?"flat":b.strokeLinecap||"round",b.strokeDashstyle)h.dashstyle=this.dashStyle(b)}else a.stroked=!1,h&&(h.on=!1);"inherit"!=b.cursor&&null!=b.cursor&&(a.style.cursor=b.cursor);return a},graphicRotate:function(a,b,c, d){var d=d||a._style,e=d.rotation||0,f,g;if(!d.graphicWidth||!d.graphicHeight){var h=new Image;h.onreadystatechange=OpenLayers.Function.bind(function(){if("complete"==h.readyState||"interactive"==h.readyState)f=h.width/h.height,g=Math.max(2*d.pointRadius,d.graphicWidth||0,d.graphicHeight||0),b*=f,d.graphicWidth=g*f,d.graphicHeight=g,this.graphicRotate(a,b,c,d)},this);h.src=d.externalGraphic}else{g=Math.max(d.graphicWidth,d.graphicHeight);f=d.graphicWidth/d.graphicHeight;var i=Math.round(d.graphicWidth|| g*f),j=Math.round(d.graphicHeight||g);a.style.width=i+"px";a.style.height=j+"px";var k=document.getElementById(a.id+"_image");k||(k=this.createNode("olv:imagedata",a.id+"_image"),a.appendChild(k));k.style.width=i+"px";k.style.height=j+"px";k.src=d.externalGraphic;k.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='', sizingMethod='scale')";k=e*Math.PI/180;e=Math.sin(k);k=Math.cos(k);e="progid:DXImageTransform.Microsoft.Matrix(M11="+k+",M12="+-e+",M21="+e+",M22="+k+",SizingMethod='auto expand')\n"; (k=d.graphicOpacity||d.fillOpacity)&&1!=k&&(e+="progid:DXImageTransform.Microsoft.BasicImage(opacity="+k+")\n");a.style.filter=e;e=new OpenLayers.Geometry.Point(-b,-c);i=(new OpenLayers.Bounds(0,0,i,j)).toGeometry();i.rotate(d.rotation,e);i=i.getBounds();a.style.left=Math.round(parseInt(a.style.left)+i.left)+"px";a.style.top=Math.round(parseInt(a.style.top)-i.bottom)+"px"}},postDraw:function(a){a.style.visibility="visible";var b=a._style.fillColor,c=a._style.strokeColor;"none"==b&&a.fillcolor!=b&& (a.fillcolor=b);"none"==c&&a.strokecolor!=c&&(a.strokecolor=c)},setNodeDimension:function(a,b){var c=b.getBounds();if(c){var d=this.getResolution(),c=new OpenLayers.Bounds((c.left-this.featureDx)/d-this.offset.x|0,c.bottom/d-this.offset.y|0,(c.right-this.featureDx)/d-this.offset.x|0,c.top/d-this.offset.y|0);a.style.left=c.left+"px";a.style.top=c.top+"px";a.style.width=c.getWidth()+"px";a.style.height=c.getHeight()+"px";a.coordorigin=c.left+" "+c.top;a.coordsize=c.getWidth()+" "+c.getHeight()}},dashStyle:function(a){a= a.strokeDashstyle;switch(a){case "solid":case "dot":case "dash":case "dashdot":case "longdash":case "longdashdot":return a;default:return a=a.split(/[ ,]/),2==a.length?1*a[0]>=2*a[1]?"longdash":1==a[0]||1==a[1]?"dot":"dash":4==a.length?1*a[0]>=2*a[1]?"longdashdot":"dashdot":"solid"}},createNode:function(a,b){var c=document.createElement(a);b&&(c.id=b);c.unselectable="on";c.onselectstart=OpenLayers.Function.False;return c},nodeTypeCompare:function(a,b){var c=b,d=c.indexOf(":");-1!=d&&(c=c.substr(d+ 1));var e=a.nodeName,d=e.indexOf(":");-1!=d&&(e=e.substr(d+1));return c==e},createRenderRoot:function(){return this.nodeFactory(this.container.id+"_vmlRoot","div")},createRoot:function(a){return this.nodeFactory(this.container.id+a,"olv:group")},drawPoint:function(a,b){return this.drawCircle(a,b,1)},drawCircle:function(a,b,c){if(!isNaN(b.x)&&!isNaN(b.y)){var d=this.getResolution();a.style.left=((b.x-this.featureDx)/d-this.offset.x|0)-c+"px";a.style.top=(b.y/d-this.offset.y|0)-c+"px";b=2*c;a.style.width= b+"px";a.style.height=b+"px";return a}return!1},drawLineString:function(a,b){return this.drawLine(a,b,!1)},drawLinearRing:function(a,b){return this.drawLine(a,b,!0)},drawLine:function(a,b,c){this.setNodeDimension(a,b);for(var d=this.getResolution(),e=b.components.length,f=Array(e),g,h,i=0;i<e;i++)g=b.components[i],h=(g.x-this.featureDx)/d-this.offset.x|0,g=g.y/d-this.offset.y|0,f[i]=" "+h+","+g+" l ";a.path="m"+f.join("")+(c?" x e":" e");return a},drawPolygon:function(a,b){this.setNodeDimension(a, b);var c=this.getResolution(),d=[],e,f,g,h,i,j,k,l,m,n;e=0;for(f=b.components.length;e<f;e++){d.push("m");g=b.components[e].components;h=0===e;j=i=null;k=0;for(l=g.length;k<l;k++)m=g[k],n=(m.x-this.featureDx)/c-this.offset.x|0,m=m.y/c-this.offset.y|0,n=" "+n+","+m,d.push(n),0==k&&d.push(" l"),h||(i?i!=n&&(j?j!=n&&(h=!0):j=n):i=n);d.push(h?" x ":" ")}d.push("e");a.path=d.join("");return a},drawRectangle:function(a,b){var c=this.getResolution();a.style.left=((b.x-this.featureDx)/c-this.offset.x|0)+ "px";a.style.top=(b.y/c-this.offset.y|0)+"px";a.style.width=(b.width/c|0)+"px";a.style.height=(b.height/c|0)+"px";return a},drawText:function(a,b,c){var d=this.nodeFactory(a+this.LABEL_ID_SUFFIX,"olv:rect"),e=this.nodeFactory(a+this.LABEL_ID_SUFFIX+"_textbox","olv:textbox"),f=this.getResolution();d.style.left=((c.x-this.featureDx)/f-this.offset.x|0)+"px";d.style.top=(c.y/f-this.offset.y|0)+"px";d.style.flip="y";e.innerText=b.label;"inherit"!=b.cursor&&null!=b.cursor&&(e.style.cursor=b.cursor);b.fontColor&& (e.style.color=b.fontColor);b.fontOpacity&&(e.style.filter="alpha(opacity="+100*b.fontOpacity+")");b.fontFamily&&(e.style.fontFamily=b.fontFamily);b.fontSize&&(e.style.fontSize=b.fontSize);b.fontWeight&&(e.style.fontWeight=b.fontWeight);b.fontStyle&&(e.style.fontStyle=b.fontStyle);!0===b.labelSelect&&(d._featureId=a,e._featureId=a,e._geometry=c,e._geometryClass=c.CLASS_NAME);e.style.whiteSpace="nowrap";e.inset="1px,0px,0px,0px";d.parentNode||(d.appendChild(e),this.textRoot.appendChild(d));b=b.labelAlign|| "cm";1==b.length&&(b+="m");a=e.clientWidth*OpenLayers.Renderer.VML.LABEL_SHIFT[b.substr(0,1)];e=e.clientHeight*OpenLayers.Renderer.VML.LABEL_SHIFT[b.substr(1,1)];d.style.left=parseInt(d.style.left)-a-1+"px";d.style.top=parseInt(d.style.top)+e+"px"},moveRoot:function(a){var b=this.map.getLayer(a.container.id);b instanceof OpenLayers.Layer.Vector.RootContainer&&(b=this.map.getLayer(this.container.id));b&&b.renderer.clear();OpenLayers.Renderer.Elements.prototype.moveRoot.apply(this,arguments);b&&b.redraw()}, importSymbol:function(a){var b=this.container.id+"-"+a,c=this.symbolCache[b];if(c)return c;c=OpenLayers.Renderer.symbol[a];if(!c)throw Error(a+" is not a valid symbol name");for(var a=new OpenLayers.Bounds(Number.MAX_VALUE,Number.MAX_VALUE,0,0),d=["m"],e=0;e<c.length;e+=2){var f=c[e],g=c[e+1];a.left=Math.min(a.left,f);a.bottom=Math.min(a.bottom,g);a.right=Math.max(a.right,f);a.top=Math.max(a.top,g);d.push(f);d.push(g);0==e&&d.push("l")}d.push("x e");c=d.join(" ");d=(a.getWidth()-a.getHeight())/2; 0<d?(a.bottom-=d,a.top+=d):(a.left+=d,a.right-=d);c={path:c,size:a.getWidth(),left:a.left,bottom:a.bottom};return this.symbolCache[b]=c},CLASS_NAME:"OpenLayers.Renderer.VML"});OpenLayers.Renderer.VML.LABEL_SHIFT={l:0,c:0.5,r:1,t:0,m:0.5,b:1};OpenLayers.Control.CacheRead=OpenLayers.Class(OpenLayers.Control,{fetchEvent:"tileloadstart",layers:null,autoActivate:!0,setMap:function(a){OpenLayers.Control.prototype.setMap.apply(this,arguments);var b,c=this.layers||a.layers;for(b=c.length-1;0<=b;--b)this.addLayer({layer:c[b]});if(!this.layers)a.events.on({addlayer:this.addLayer,removeLayer:this.removeLayer,scope:this})},addLayer:function(a){a.layer.events.register(this.fetchEvent,this,this.fetch)},removeLayer:function(a){a.layer.events.unregister(this.fetchEvent, this,this.fetch)},fetch:function(a){if(this.active&&window.localStorage&&a.tile instanceof OpenLayers.Tile.Image){var b=a.tile,c=b.url;!b.layer.crossOriginKeyword&&(OpenLayers.ProxyHost&&0===c.indexOf(OpenLayers.ProxyHost))&&(c=OpenLayers.Control.CacheWrite.urlMap[c]);if(c=window.localStorage.getItem("olCache_"+c))b.url=c,"tileerror"===a.type&&b.setImgSrc(c)}},destroy:function(){if(this.layers||this.map){var a,b=this.layers||this.map.layers;for(a=b.length-1;0<=a;--a)this.removeLayer({layer:b[a]})}this.map&& this.map.events.un({addlayer:this.addLayer,removeLayer:this.removeLayer,scope:this});OpenLayers.Control.prototype.destroy.apply(this,arguments)},CLASS_NAME:"OpenLayers.Control.CacheRead"});OpenLayers.Protocol.WFS.v1_0_0=OpenLayers.Class(OpenLayers.Protocol.WFS.v1,{version:"1.0.0",CLASS_NAME:"OpenLayers.Protocol.WFS.v1_0_0"});OpenLayers.Format.WMSGetFeatureInfo=OpenLayers.Class(OpenLayers.Format.XML,{layerIdentifier:"_layer",featureIdentifier:"_feature",regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},gmlFormat:null,read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));var b=a.documentElement;if(b)var c=this["read_"+b.nodeName],a=c?c.call(this,b):(new OpenLayers.Format.GML(this.options?this.options:{})).read(a);return a},read_msGMLOutput:function(a){var b= [];if(a=this.getSiblingNodesByTagCriteria(a,this.layerIdentifier))for(var c=0,d=a.length;c<d;++c){var e=a[c],f=e.nodeName;e.prefix&&(f=f.split(":")[1]);f=f.replace(this.layerIdentifier,"");if(e=this.getSiblingNodesByTagCriteria(e,this.featureIdentifier))for(var g=0;g<e.length;g++){var h=e[g],i=this.parseGeometry(h),h=this.parseAttributes(h),h=new OpenLayers.Feature.Vector(i.geometry,h,null);h.bounds=i.bounds;h.type=f;b.push(h)}}return b},read_FeatureInfoResponse:function(a){for(var b=[],a=this.getElementsByTagNameNS(a, "*","FIELDS"),c=0,d=a.length;c<d;c++){var e=a[c],f={},g,h=e.attributes.length;if(0<h)for(g=0;g<h;g++){var i=e.attributes[g];f[i.nodeName]=i.nodeValue}else{e=e.childNodes;g=0;for(h=e.length;g<h;++g)i=e[g],3!=i.nodeType&&(f[i.getAttribute("name")]=i.getAttribute("value"))}b.push(new OpenLayers.Feature.Vector(null,f,null))}return b},getSiblingNodesByTagCriteria:function(a,b){var c=[],d,e,f,g;if(a&&a.hasChildNodes()){d=a.childNodes;f=d.length;for(var h=0;h<f;h++){for(g=d[h];g&&1!=g.nodeType;)g=g.nextSibling, h++;e=g?g.nodeName:"";0<e.length&&-1<e.indexOf(b)?c.push(g):(e=this.getSiblingNodesByTagCriteria(g,b),0<e.length&&(0==c.length?c=e:c.push(e)))}}return c},parseAttributes:function(a){var b={};if(1==a.nodeType)for(var a=a.childNodes,c=a.length,d=0;d<c;++d){var e=a[d];if(1==e.nodeType){var f=e.childNodes,e=e.prefix?e.nodeName.split(":")[1]:e.nodeName;if(0==f.length)b[e]=null;else if(1==f.length&&(f=f[0],3==f.nodeType||4==f.nodeType))f=f.nodeValue.replace(this.regExes.trimSpace,""),b[e]=f}}return b}, parseGeometry:function(a){this.gmlFormat||(this.gmlFormat=new OpenLayers.Format.GML);var a=this.gmlFormat.parseFeature(a),b,c=null;a&&(b=a.geometry&&a.geometry.clone(),c=a.bounds&&a.bounds.clone(),a.destroy());return{geometry:b,bounds:c}},CLASS_NAME:"OpenLayers.Format.WMSGetFeatureInfo"});OpenLayers.Control.WMTSGetFeatureInfo=OpenLayers.Class(OpenLayers.Control,{hover:!1,requestEncoding:"KVP",drillDown:!1,maxFeatures:10,clickCallback:"click",layers:null,queryVisible:!0,infoFormat:"text/html",vendorParams:{},format:null,formatOptions:null,handlerOptions:null,handler:null,hoverRequest:null,pending:0,initialize:function(a){a=a||{};a.handlerOptions=a.handlerOptions||{};OpenLayers.Control.prototype.initialize.apply(this,[a]);this.format||(this.format=new OpenLayers.Format.WMSGetFeatureInfo(a.formatOptions)); !0===this.drillDown&&(this.hover=!1);this.hover?this.handler=new OpenLayers.Handler.Hover(this,{move:this.cancelHover,pause:this.getInfoForHover},OpenLayers.Util.extend(this.handlerOptions.hover||{},{delay:250})):(a={},a[this.clickCallback]=this.getInfoForClick,this.handler=new OpenLayers.Handler.Click(this,a,this.handlerOptions.click||{}))},getInfoForClick:function(a){this.request(a.xy,{})},getInfoForHover:function(a){this.request(a.xy,{hover:!0})},cancelHover:function(){this.hoverRequest&&(--this.pending, 0>=this.pending&&(OpenLayers.Element.removeClass(this.map.viewPortDiv,"olCursorWait"),this.pending=0),this.hoverRequest.abort(),this.hoverRequest=null)},findLayers:function(){for(var a=this.layers||this.map.layers,b=[],c,d=a.length-1;0<=d;--d)if(c=a[d],c instanceof OpenLayers.Layer.WMTS&&c.requestEncoding===this.requestEncoding&&(!this.queryVisible||c.getVisibility()))if(b.push(c),!this.drillDown||this.hover)break;return b},buildRequestOptions:function(a,b){var c=this.map.getLonLatFromPixel(b),d= a.getURL(new OpenLayers.Bounds(c.lon,c.lat,c.lon,c.lat)),d=OpenLayers.Util.getParameters(d),c=a.getTileInfo(c);OpenLayers.Util.extend(d,{service:"WMTS",version:a.version,request:"GetFeatureInfo",infoFormat:this.infoFormat,i:c.i,j:c.j});OpenLayers.Util.applyDefaults(d,this.vendorParams);return{url:OpenLayers.Util.isArray(a.url)?a.url[0]:a.url,params:OpenLayers.Util.upperCaseObject(d),callback:function(c){this.handleResponse(b,c,a)},scope:this}},request:function(a,b){var b=b||{},c=this.findLayers(); if(0<c.length){for(var d,e,f=0,g=c.length;f<g;f++)e=c[f],d=this.events.triggerEvent("beforegetfeatureinfo",{xy:a,layer:e}),!1!==d&&(++this.pending,d=this.buildRequestOptions(e,a),d=OpenLayers.Request.GET(d),!0===b.hover&&(this.hoverRequest=d));0<this.pending&&OpenLayers.Element.addClass(this.map.viewPortDiv,"olCursorWait")}},handleResponse:function(a,b,c){--this.pending;0>=this.pending&&(OpenLayers.Element.removeClass(this.map.viewPortDiv,"olCursorWait"),this.pending=0);if(b.status&&(200>b.status|| 300<=b.status))this.events.triggerEvent("exception",{xy:a,request:b,layer:c});else{var d=b.responseXML;if(!d||!d.documentElement)d=b.responseText;var e,f;try{e=this.format.read(d)}catch(g){f=!0,this.events.triggerEvent("exception",{xy:a,request:b,error:g,layer:c})}f||this.events.triggerEvent("getfeatureinfo",{text:b.responseText,features:e,request:b,xy:a,layer:c})}},CLASS_NAME:"OpenLayers.Control.WMTSGetFeatureInfo"});OpenLayers.Strategy.Paging=OpenLayers.Class(OpenLayers.Strategy,{features:null,length:10,num:null,paging:!1,activate:function(){var a=OpenLayers.Strategy.prototype.activate.call(this);if(a)this.layer.events.on({beforefeaturesadded:this.cacheFeatures,scope:this});return a},deactivate:function(){var a=OpenLayers.Strategy.prototype.deactivate.call(this);a&&(this.clearCache(),this.layer.events.un({beforefeaturesadded:this.cacheFeatures,scope:this}));return a},cacheFeatures:function(a){this.paging||(this.clearCache(), this.features=a.features,this.pageNext(a))},clearCache:function(){if(this.features)for(var a=0;a<this.features.length;++a)this.features[a].destroy();this.num=this.features=null},pageCount:function(){return Math.ceil((this.features?this.features.length:0)/this.length)},pageNum:function(){return this.num},pageLength:function(a){a&&0<a&&(this.length=a);return this.length},pageNext:function(a){var b=!1;this.features&&(null===this.num&&(this.num=-1),b=this.page((this.num+1)*this.length,a));return b},pagePrevious:function(){var a= !1;this.features&&(null===this.num&&(this.num=this.pageCount()),a=this.page((this.num-1)*this.length));return a},page:function(a,b){var c=!1;if(this.features&&0<=a&&a<this.features.length){var d=Math.floor(a/this.length);d!=this.num&&(this.paging=!0,c=this.features.slice(a,a+this.length),this.layer.removeFeatures(this.layer.features),this.num=d,b&&b.features?b.features=c:this.layer.addFeatures(c),this.paging=!1,c=!0)}return c},CLASS_NAME:"OpenLayers.Strategy.Paging"});OpenLayers.Protocol.CSW.v2_0_2=OpenLayers.Class(OpenLayers.Protocol,{formatOptions:null,initialize:function(a){OpenLayers.Protocol.prototype.initialize.apply(this,[a]);a.format||(this.format=new OpenLayers.Format.CSWGetRecords.v2_0_2(OpenLayers.Util.extend({},this.formatOptions)))},destroy:function(){this.options&&!this.options.format&&this.format.destroy();this.format=null;OpenLayers.Protocol.prototype.destroy.apply(this)},read:function(a){a=OpenLayers.Util.extend({},a);OpenLayers.Util.applyDefaults(a, this.options||{});var b=new OpenLayers.Protocol.Response({requestType:"read"}),c=this.format.write(a.params);b.priv=OpenLayers.Request.POST({url:a.url,callback:this.createCallback(this.handleRead,b,a),params:a.params,headers:a.headers,data:c});return b},handleRead:function(a,b){if(b.callback){var c=a.priv;200<=c.status&&300>c.status?(a.data=this.parseData(c),a.code=OpenLayers.Protocol.Response.SUCCESS):a.code=OpenLayers.Protocol.Response.FAILURE;b.callback.call(b.scope,a)}},parseData:function(a){var b= a.responseXML;if(!b||!b.documentElement)b=a.responseText;return!b||0>=b.length?null:this.format.read(b)},CLASS_NAME:"OpenLayers.Protocol.CSW.v2_0_2"});OpenLayers.Format.WMSCapabilities.v1_1=OpenLayers.Class(OpenLayers.Format.WMSCapabilities.v1,{readers:{wms:OpenLayers.Util.applyDefaults({WMT_MS_Capabilities:function(a,b){this.readChildNodes(a,b)},Keyword:function(a,b){b.keywords&&b.keywords.push(this.getChildValue(a))},DescribeLayer:function(a,b){b.describelayer={formats:[]};this.readChildNodes(a,b.describelayer)},GetLegendGraphic:function(a,b){b.getlegendgraphic={formats:[]};this.readChildNodes(a,b.getlegendgraphic)},GetStyles:function(a,b){b.getstyles= {formats:[]};this.readChildNodes(a,b.getstyles)},PutStyles:function(a,b){b.putstyles={formats:[]};this.readChildNodes(a,b.putstyles)},UserDefinedSymbolization:function(a,b){var c={supportSLD:1==parseInt(a.getAttribute("SupportSLD")),userLayer:1==parseInt(a.getAttribute("UserLayer")),userStyle:1==parseInt(a.getAttribute("UserStyle")),remoteWFS:1==parseInt(a.getAttribute("RemoteWFS"))};b.userSymbols=c},LatLonBoundingBox:function(a,b){b.llbbox=[parseFloat(a.getAttribute("minx")),parseFloat(a.getAttribute("miny")), parseFloat(a.getAttribute("maxx")),parseFloat(a.getAttribute("maxy"))]},BoundingBox:function(a,b){var c=OpenLayers.Format.WMSCapabilities.v1.prototype.readers.wms.BoundingBox.apply(this,[a,b]);c.srs=a.getAttribute("SRS");b.bbox[c.srs]=c},ScaleHint:function(a,b){var c=a.getAttribute("min"),d=a.getAttribute("max"),e=Math.pow(2,0.5),f=OpenLayers.INCHES_PER_UNIT.m;b.maxScale=parseFloat((c/e*f*OpenLayers.DOTS_PER_INCH).toPrecision(13));b.minScale=parseFloat((d/e*f*OpenLayers.DOTS_PER_INCH).toPrecision(13))}, Dimension:function(a,b){var c={name:a.getAttribute("name").toLowerCase(),units:a.getAttribute("units"),unitsymbol:a.getAttribute("unitSymbol")};b.dimensions[c.name]=c},Extent:function(a,b){var c=a.getAttribute("name").toLowerCase();if(c in b.dimensions){c=b.dimensions[c];c.nearestVal="1"===a.getAttribute("nearestValue");c.multipleVal="1"===a.getAttribute("multipleValues");c.current="1"===a.getAttribute("current");c["default"]=a.getAttribute("default")||"";var d=this.getChildValue(a);c.values=d.split(",")}}}, OpenLayers.Format.WMSCapabilities.v1.prototype.readers.wms)},CLASS_NAME:"OpenLayers.Format.WMSCapabilities.v1_1"});OpenLayers.Control.Graticule=OpenLayers.Class(OpenLayers.Control,{autoActivate:!0,intervals:[45,30,20,10,5,2,1,0.5,0.2,0.1,0.05,0.01,0.005,0.002,0.001],displayInLayerSwitcher:!0,visible:!0,numPoints:50,targetSize:200,layerName:null,labelled:!0,labelFormat:"dm",lineSymbolizer:{strokeColor:"#333",strokeWidth:1,strokeOpacity:0.5},labelSymbolizer:{},gratLayer:null,initialize:function(a){a=a||{};a.layerName=a.layerName||OpenLayers.i18n("Graticule");OpenLayers.Control.prototype.initialize.apply(this,[a]); this.labelSymbolizer.stroke=!1;this.labelSymbolizer.fill=!1;this.labelSymbolizer.label="${label}";this.labelSymbolizer.labelAlign="${labelAlign}";this.labelSymbolizer.labelXOffset="${xOffset}";this.labelSymbolizer.labelYOffset="${yOffset}"},destroy:function(){this.deactivate();OpenLayers.Control.prototype.destroy.apply(this,arguments);this.gratLayer&&(this.gratLayer.destroy(),this.gratLayer=null)},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);if(!this.gratLayer){var a=new OpenLayers.Style({}, {rules:[new OpenLayers.Rule({symbolizer:{Point:this.labelSymbolizer,Line:this.lineSymbolizer}})]});this.gratLayer=new OpenLayers.Layer.Vector(this.layerName,{styleMap:new OpenLayers.StyleMap({"default":a}),visibility:this.visible,displayInLayerSwitcher:this.displayInLayerSwitcher})}return this.div},activate:function(){return OpenLayers.Control.prototype.activate.apply(this,arguments)?(this.map.addLayer(this.gratLayer),this.map.events.register("moveend",this,this.update),this.update(),!0):!1},deactivate:function(){return OpenLayers.Control.prototype.deactivate.apply(this, arguments)?(this.map.events.unregister("moveend",this,this.update),this.map.removeLayer(this.gratLayer),!0):!1},update:function(){var a=this.map.getExtent();if(a){this.gratLayer.destroyFeatures();var b=new OpenLayers.Projection("EPSG:4326"),c=this.map.getProjectionObject(),d=this.map.getResolution();c.proj&&"longlat"==c.proj.projName&&(this.numPoints=1);var e=this.map.getCenter(),f=new OpenLayers.Pixel(e.lon,e.lat);OpenLayers.Projection.transform(f,c,b);for(var e=this.targetSize*d,e=e*e,g,d=0;d<this.intervals.length;++d){g= this.intervals[d];var h=g/2,i=f.offset({x:-h,y:-h}),h=f.offset({x:h,y:h});OpenLayers.Projection.transform(i,b,c);OpenLayers.Projection.transform(h,b,c);if((i.x-h.x)*(i.x-h.x)+(i.y-h.y)*(i.y-h.y)<=e)break}f.x=Math.floor(f.x/g)*g;f.y=Math.floor(f.y/g)*g;var d=0,e=[f.clone()],h=f.clone(),j;do h=h.offset({x:0,y:g}),j=OpenLayers.Projection.transform(h.clone(),b,c),e.unshift(h);while(a.containsPixel(j)&&1E3>++d);h=f.clone();do h=h.offset({x:0,y:-g}),j=OpenLayers.Projection.transform(h.clone(),b,c),e.push(h); while(a.containsPixel(j)&&1E3>++d);d=0;i=[f.clone()];h=f.clone();do h=h.offset({x:-g,y:0}),j=OpenLayers.Projection.transform(h.clone(),b,c),i.unshift(h);while(a.containsPixel(j)&&1E3>++d);h=f.clone();do h=h.offset({x:g,y:0}),j=OpenLayers.Projection.transform(h.clone(),b,c),i.push(h);while(a.containsPixel(j)&&1E3>++d);g=[];for(d=0;d<i.length;++d){j=i[d].x;for(var f=[],k=null,l=Math.min(e[0].y,90),h=Math.max(e[e.length-1].y,-90),m=(l-h)/this.numPoints,l=h,h=0;h<=this.numPoints;++h){var n=new OpenLayers.Geometry.Point(j, l);n.transform(b,c);f.push(n);l+=m;n.y>=a.bottom&&!k&&(k=n)}this.labelled&&(k=new OpenLayers.Geometry.Point(k.x,a.bottom),j={value:j,label:this.labelled?OpenLayers.Util.getFormattedLonLat(j,"lon",this.labelFormat):"",labelAlign:"cb",xOffset:0,yOffset:2},this.gratLayer.addFeatures(new OpenLayers.Feature.Vector(k,j)));f=new OpenLayers.Geometry.LineString(f);g.push(new OpenLayers.Feature.Vector(f))}for(h=0;h<e.length;++h)if(l=e[h].y,!(-90>l||90<l)){f=[];d=i[0].x;m=(i[i.length-1].x-d)/this.numPoints; j=d;k=null;for(d=0;d<=this.numPoints;++d)n=new OpenLayers.Geometry.Point(j,l),n.transform(b,c),f.push(n),j+=m,n.x<a.right&&(k=n);this.labelled&&(k=new OpenLayers.Geometry.Point(a.right,k.y),j={value:l,label:this.labelled?OpenLayers.Util.getFormattedLonLat(l,"lat",this.labelFormat):"",labelAlign:"rb",xOffset:-2,yOffset:2},this.gratLayer.addFeatures(new OpenLayers.Feature.Vector(k,j)));f=new OpenLayers.Geometry.LineString(f);g.push(new OpenLayers.Feature.Vector(f))}this.gratLayer.addFeatures(g)}},CLASS_NAME:"OpenLayers.Control.Graticule"});OpenLayers.Layer.UTFGrid=OpenLayers.Class(OpenLayers.Layer.XYZ,{isBaseLayer:!1,projection:new OpenLayers.Projection("EPSG:900913"),useJSONP:!1,tileClass:OpenLayers.Tile.UTFGrid,initialize:function(a){OpenLayers.Layer.Grid.prototype.initialize.apply(this,[a.name,a.url,{},a]);this.tileOptions=OpenLayers.Util.extend({utfgridResolution:this.utfgridResolution},this.tileOptions)},clone:function(a){null==a&&(a=new OpenLayers.Layer.UTFGrid(this.getOptions()));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this, [a])},getFeatureInfo:function(a){var b=null,a=this.getTileData(a);a.tile&&(b=a.tile.getFeatureInfo(a.i,a.j));return b},getFeatureId:function(a){var b=null,a=this.getTileData(a);a.tile&&(b=a.tile.getFeatureId(a.i,a.j));return b},CLASS_NAME:"OpenLayers.Layer.UTFGrid"});OpenLayers.Layer.ArcGISCache=OpenLayers.Class(OpenLayers.Layer.XYZ,{url:null,tileOrigin:null,tileSize:new OpenLayers.Size(256,256),useArcGISServer:!0,type:"png",useScales:!1,overrideDPI:!1,initialize:function(a,b,c){OpenLayers.Layer.XYZ.prototype.initialize.apply(this,arguments);this.resolutions&&(this.serverResolutions=this.resolutions,this.maxExtent=this.getMaxExtentForResolution(this.resolutions[0]));if(this.layerInfo){var d=this.layerInfo,e=new OpenLayers.Bounds(d.fullExtent.xmin,d.fullExtent.ymin, d.fullExtent.xmax,d.fullExtent.ymax);this.projection="EPSG:"+d.spatialReference.wkid;this.sphericalMercator=102100==d.spatialReference.wkid;this.units="esriFeet"==d.units?"ft":"m";if(d.tileInfo){this.tileSize=new OpenLayers.Size(d.tileInfo.width||d.tileInfo.cols,d.tileInfo.height||d.tileInfo.rows);this.tileOrigin=new OpenLayers.LonLat(d.tileInfo.origin.x,d.tileInfo.origin.y);var f=new OpenLayers.Geometry.Point(e.left,e.top),e=new OpenLayers.Geometry.Point(e.right,e.bottom);this.useScales?this.scales= []:this.resolutions=[];this.lods=[];for(var g in d.tileInfo.lods)if(d.tileInfo.lods.hasOwnProperty(g)){var h=d.tileInfo.lods[g];this.useScales?this.scales.push(h.scale):this.resolutions.push(h.resolution);var i=this.getContainingTileCoords(f,h.resolution);h.startTileCol=i.x;h.startTileRow=i.y;i=this.getContainingTileCoords(e,h.resolution);h.endTileCol=i.x;h.endTileRow=i.y;this.lods.push(h)}this.maxExtent=this.calculateMaxExtentWithLOD(this.lods[0]);this.serverResolutions=this.resolutions;this.overrideDPI&& d.tileInfo.dpi&&(OpenLayers.DOTS_PER_INCH=d.tileInfo.dpi)}}},getContainingTileCoords:function(a,b){return new OpenLayers.Pixel(Math.max(Math.floor((a.x-this.tileOrigin.lon)/(this.tileSize.w*b)),0),Math.max(Math.floor((this.tileOrigin.lat-a.y)/(this.tileSize.h*b)),0))},calculateMaxExtentWithLOD:function(a){var b=this.tileOrigin.lon+a.startTileCol*this.tileSize.w*a.resolution,c=this.tileOrigin.lat-a.startTileRow*this.tileSize.h*a.resolution;return new OpenLayers.Bounds(b,c-(a.endTileRow-a.startTileRow+ 1)*this.tileSize.h*a.resolution,b+(a.endTileCol-a.startTileCol+1)*this.tileSize.w*a.resolution,c)},calculateMaxExtentWithExtent:function(a,b){var c=new OpenLayers.Geometry.Point(a.left,a.top),d=new OpenLayers.Geometry.Point(a.right,a.bottom),c=this.getContainingTileCoords(c,b),d=this.getContainingTileCoords(d,b);return this.calculateMaxExtentWithLOD({resolution:b,startTileCol:c.x,startTileRow:c.y,endTileCol:d.x,endTileRow:d.y})},getUpperLeftTileCoord:function(a){return this.getContainingTileCoords(new OpenLayers.Geometry.Point(this.maxExtent.left, this.maxExtent.top),a)},getLowerRightTileCoord:function(a){return this.getContainingTileCoords(new OpenLayers.Geometry.Point(this.maxExtent.right,this.maxExtent.bottom),a)},getMaxExtentForResolution:function(a){var b=this.getUpperLeftTileCoord(a),c=this.getLowerRightTileCoord(a),d=this.tileOrigin.lon+b.x*this.tileSize.w*a,e=this.tileOrigin.lat-b.y*this.tileSize.h*a;return new OpenLayers.Bounds(d,e-(c.y-b.y+1)*this.tileSize.h*a,d+(c.x-b.x+1)*this.tileSize.w*a,e)},clone:function(a){null==a&&(a=new OpenLayers.Layer.ArcGISCache(this.name, this.url,this.options));return OpenLayers.Layer.XYZ.prototype.clone.apply(this,[a])},getMaxExtent:function(){return this.maxExtent=this.getMaxExtentForResolution(this.map.getResolution())},getTileOrigin:function(){var a=this.getMaxExtent();return new OpenLayers.LonLat(a.left,a.bottom)},getURL:function(a){var b=this.getResolution(),c=this.tileOrigin.lon+b*this.tileSize.w/2,d=this.tileOrigin.lat-b*this.tileSize.h/2,a=a.getCenterLonLat(),c=Math.round(Math.abs((a.lon-c)/(b*this.tileSize.w))),d=Math.round(Math.abs((d- a.lat)/(b*this.tileSize.h))),a=this.map.getZoom();if(this.lods){if(b=this.lods[this.map.getZoom()],c<b.startTileCol||c>b.endTileCol||d<b.startTileRow||d>b.endTileRow)return null}else{var e=this.getUpperLeftTileCoord(b),b=this.getLowerRightTileCoord(b);if(c<e.x||c>=b.x||d<e.y||d>=b.y)return null}b=this.url;e=""+c+d+a;OpenLayers.Util.isArray(b)&&(b=this.selectUrl(e,b));this.useArcGISServer?b+="/tile/${z}/${y}/${x}":(c="C"+this.zeroPad(c,8,16),d="R"+this.zeroPad(d,8,16),a="L"+this.zeroPad(a,2,16),b= b+"/${z}/${y}/${x}."+this.type);b=OpenLayers.String.format(b,{x:c,y:d,z:a});return OpenLayers.Util.urlAppend(b,OpenLayers.Util.getParameterString(this.params))},zeroPad:function(a,b,c){for(a=a.toString(c||10);a.length<b;)a="0"+a;return a},CLASS_NAME:"OpenLayers.Layer.ArcGISCache"});OpenLayers.Control.WMSGetFeatureInfo=OpenLayers.Class(OpenLayers.Control,{hover:!1,drillDown:!1,maxFeatures:10,clickCallback:"click",output:"features",layers:null,queryVisible:!1,url:null,layerUrls:null,infoFormat:"text/html",vendorParams:{},format:null,formatOptions:null,handlerOptions:null,handler:null,hoverRequest:null,initialize:function(a){a=a||{};a.handlerOptions=a.handlerOptions||{};OpenLayers.Control.prototype.initialize.apply(this,[a]);this.format||(this.format=new OpenLayers.Format.WMSGetFeatureInfo(a.formatOptions)); !0===this.drillDown&&(this.hover=!1);this.hover?this.handler=new OpenLayers.Handler.Hover(this,{move:this.cancelHover,pause:this.getInfoForHover},OpenLayers.Util.extend(this.handlerOptions.hover||{},{delay:250})):(a={},a[this.clickCallback]=this.getInfoForClick,this.handler=new OpenLayers.Handler.Click(this,a,this.handlerOptions.click||{}))},getInfoForClick:function(a){this.events.triggerEvent("beforegetfeatureinfo",{xy:a.xy});OpenLayers.Element.addClass(this.map.viewPortDiv,"olCursorWait");this.request(a.xy, {})},getInfoForHover:function(a){this.events.triggerEvent("beforegetfeatureinfo",{xy:a.xy});this.request(a.xy,{hover:!0})},cancelHover:function(){this.hoverRequest&&(this.hoverRequest.abort(),this.hoverRequest=null)},findLayers:function(){for(var a=this.layers||this.map.layers,b=[],c,d,e=a.length-1;0<=e;--e)if(c=a[e],c instanceof OpenLayers.Layer.WMS&&(!this.queryVisible||c.getVisibility()))d=OpenLayers.Util.isArray(c.url)?c.url[0]:c.url,!1===this.drillDown&&!this.url&&(this.url=d),(!0===this.drillDown|| this.urlMatches(d))&&b.push(c);return b},urlMatches:function(a){var b=OpenLayers.Util.isEquivalentUrl(this.url,a);if(!b&&this.layerUrls)for(var c=0,d=this.layerUrls.length;c<d;++c)if(OpenLayers.Util.isEquivalentUrl(this.layerUrls[c],a)){b=!0;break}return b},buildWMSOptions:function(a,b,c,d){for(var e=[],f=[],g=0,h=b.length;g<h;g++)null!=b[g].params.LAYERS&&(e=e.concat(b[g].params.LAYERS),f=f.concat(this.getStyleNames(b[g])));b=b[0];g=this.map.getProjection();(h=b.projection)&&h.equals(this.map.getProjectionObject())&& (g=h.getCode());d=OpenLayers.Util.extend({service:"WMS",version:b.params.VERSION,request:"GetFeatureInfo",exceptions:b.params.EXCEPTIONS,bbox:this.map.getExtent().toBBOX(null,b.reverseAxisOrder()),feature_count:this.maxFeatures,height:this.map.getSize().h,width:this.map.getSize().w,format:d,info_format:b.params.INFO_FORMAT||this.infoFormat},1.3<=parseFloat(b.params.VERSION)?{crs:g,i:parseInt(c.x),j:parseInt(c.y)}:{srs:g,x:parseInt(c.x),y:parseInt(c.y)});0!=e.length&&(d=OpenLayers.Util.extend({layers:e, query_layers:e,styles:f},d));OpenLayers.Util.applyDefaults(d,this.vendorParams);return{url:a,params:OpenLayers.Util.upperCaseObject(d),callback:function(b){this.handleResponse(c,b,a)},scope:this}},getStyleNames:function(a){return a.params.STYLES?a.params.STYLES:OpenLayers.Util.isArray(a.params.LAYERS)?Array(a.params.LAYERS.length):a.params.LAYERS.replace(/[^,]/g,"")},request:function(a,b){var c=this.findLayers();if(0==c.length)this.events.triggerEvent("nogetfeatureinfo"),OpenLayers.Element.removeClass(this.map.viewPortDiv, "olCursorWait");else if(b=b||{},!1===this.drillDown){var c=this.buildWMSOptions(this.url,c,a,c[0].params.FORMAT),d=OpenLayers.Request.GET(c);!0===b.hover&&(this.hoverRequest=d)}else{this._numRequests=this._requestCount=0;this.features=[];for(var d={},e,f=0,g=c.length;f<g;f++){var h=c[f];e=OpenLayers.Util.isArray(h.url)?h.url[0]:h.url;e in d?d[e].push(h):(this._numRequests++,d[e]=[h])}for(e in d)c=d[e],c=this.buildWMSOptions(e,c,a,c[0].params.FORMAT),OpenLayers.Request.GET(c)}},triggerGetFeatureInfo:function(a, b,c){this.events.triggerEvent("getfeatureinfo",{text:a.responseText,features:c,request:a,xy:b});OpenLayers.Element.removeClass(this.map.viewPortDiv,"olCursorWait")},handleResponse:function(a,b,c){var d=b.responseXML;if(!d||!d.documentElement)d=b.responseText;d=this.format.read(d);!1===this.drillDown?this.triggerGetFeatureInfo(b,a,d):(this._requestCount++,this._features="object"===this.output?(this._features||[]).concat({url:c,features:d}):(this._features||[]).concat(d),this._requestCount===this._numRequests&& (this.triggerGetFeatureInfo(b,a,this._features.concat()),delete this._features,delete this._requestCount,delete this._numRequests))},CLASS_NAME:"OpenLayers.Control.WMSGetFeatureInfo"});OpenLayers.Format.WMSCapabilities.v1_3_0=OpenLayers.Class(OpenLayers.Format.WMSCapabilities.v1_3,{version:"1.3.0",CLASS_NAME:"OpenLayers.Format.WMSCapabilities.v1_3_0"});OpenLayers.Format.SOSGetFeatureOfInterest=OpenLayers.Class(OpenLayers.Format.XML,{VERSION:"1.0.0",namespaces:{sos:"http://www.opengis.net/sos/1.0",gml:"http://www.opengis.net/gml",sa:"http://www.opengis.net/sampling/1.0",xsi:"http://www.w3.org/2001/XMLSchema-instance"},schemaLocation:"http://www.opengis.net/sos/1.0 http://schemas.opengis.net/sos/1.0.0/sosAll.xsd",defaultPrefix:"sos",regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},read:function(a){"string"== typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement);var b={features:[]};this.readNode(a,b);for(var a=[],c=0,d=b.features.length;c<d;c++){var e=b.features[c];this.internalProjection&&(this.externalProjection&&e.components[0])&&e.components[0].transform(this.externalProjection,this.internalProjection);e=new OpenLayers.Feature.Vector(e.components[0],e.attributes);a.push(e)}return a},readers:{sa:{SamplingPoint:function(a,b){if(!b.attributes){var c= {attributes:{}};b.features.push(c);b=c}b.attributes.id=this.getAttributeNS(a,this.namespaces.gml,"id");this.readChildNodes(a,b)},position:function(a,b){this.readChildNodes(a,b)}},gml:OpenLayers.Util.applyDefaults({FeatureCollection:function(a,b){this.readChildNodes(a,b)},featureMember:function(a,b){var c={attributes:{}};b.features.push(c);this.readChildNodes(a,c)},name:function(a,b){b.attributes.name=this.getChildValue(a)},pos:function(a,b){this.externalProjection||(this.externalProjection=new OpenLayers.Projection(a.getAttribute("srsName"))); OpenLayers.Format.GML.v3.prototype.readers.gml.pos.apply(this,[a,b])}},OpenLayers.Format.GML.v3.prototype.readers.gml)},writers:{sos:{GetFeatureOfInterest:function(a){for(var b=this.createElementNSPlus("GetFeatureOfInterest",{attributes:{version:this.VERSION,service:"SOS","xsi:schemaLocation":this.schemaLocation}}),c=0,d=a.fois.length;c<d;c++)this.writeNode("FeatureOfInterestId",{foi:a.fois[c]},b);return b},FeatureOfInterestId:function(a){return this.createElementNSPlus("FeatureOfInterestId",{value:a.foi})}}}, CLASS_NAME:"OpenLayers.Format.SOSGetFeatureOfInterest"});OpenLayers.Format.SOSGetObservation=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{ows:"http://www.opengis.net/ows",gml:"http://www.opengis.net/gml",sos:"http://www.opengis.net/sos/1.0",ogc:"http://www.opengis.net/ogc",om:"http://www.opengis.net/om/1.0",sa:"http://www.opengis.net/sampling/1.0",xlink:"http://www.w3.org/1999/xlink",xsi:"http://www.w3.org/2001/XMLSchema-instance"},regExes:{trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g},VERSION:"1.0.0",schemaLocation:"http://www.opengis.net/sos/1.0 http://schemas.opengis.net/sos/1.0.0/sosGetObservation.xsd", defaultPrefix:"sos",read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement);var b={measurements:[],observations:[]};this.readNode(a,b);return b},write:function(a){a=this.writeNode("sos:GetObservation",a);a.setAttribute("xmlns:om",this.namespaces.om);a.setAttribute("xmlns:ogc",this.namespaces.ogc);this.setAttributeNS(a,this.namespaces.xsi,"xsi:schemaLocation",this.schemaLocation);return OpenLayers.Format.XML.prototype.write.apply(this, [a])},readers:{om:{ObservationCollection:function(a,b){b.id=this.getAttributeNS(a,this.namespaces.gml,"id");this.readChildNodes(a,b)},member:function(a,b){this.readChildNodes(a,b)},Measurement:function(a,b){var c={};b.measurements.push(c);this.readChildNodes(a,c)},Observation:function(a,b){var c={};b.observations.push(c);this.readChildNodes(a,c)},samplingTime:function(a,b){var c={};b.samplingTime=c;this.readChildNodes(a,c)},observedProperty:function(a,b){b.observedProperty=this.getAttributeNS(a,this.namespaces.xlink, "href");this.readChildNodes(a,b)},procedure:function(a,b){b.procedure=this.getAttributeNS(a,this.namespaces.xlink,"href");this.readChildNodes(a,b)},featureOfInterest:function(a,b){var c={features:[]};b.fois=[];b.fois.push(c);this.readChildNodes(a,c);for(var d=[],e=0,f=c.features.length;e<f;e++){var g=c.features[e];d.push(new OpenLayers.Feature.Vector(g.components[0],g.attributes))}c.features=d},result:function(a,b){var c={};b.result=c;""!==this.getChildValue(a)?(c.value=this.getChildValue(a),c.uom= a.getAttribute("uom")):this.readChildNodes(a,c)}},sa:OpenLayers.Format.SOSGetFeatureOfInterest.prototype.readers.sa,gml:OpenLayers.Util.applyDefaults({TimeInstant:function(a,b){var c={};b.timeInstant=c;this.readChildNodes(a,c)},timePosition:function(a,b){b.timePosition=this.getChildValue(a)}},OpenLayers.Format.SOSGetFeatureOfInterest.prototype.readers.gml)},writers:{sos:{GetObservation:function(a){var b=this.createElementNSPlus("GetObservation",{attributes:{version:this.VERSION,service:"SOS"}});this.writeNode("offering", a,b);a.eventTime&&this.writeNode("eventTime",a,b);for(var c in a.procedures)this.writeNode("procedure",a.procedures[c],b);for(var d in a.observedProperties)this.writeNode("observedProperty",a.observedProperties[d],b);a.foi&&this.writeNode("featureOfInterest",a.foi,b);this.writeNode("responseFormat",a,b);a.resultModel&&this.writeNode("resultModel",a,b);a.responseMode&&this.writeNode("responseMode",a,b);return b},featureOfInterest:function(a){var b=this.createElementNSPlus("featureOfInterest");this.writeNode("ObjectID", a.objectId,b);return b},ObjectID:function(a){return this.createElementNSPlus("ObjectID",{value:a})},responseFormat:function(a){return this.createElementNSPlus("responseFormat",{value:a.responseFormat})},procedure:function(a){return this.createElementNSPlus("procedure",{value:a})},offering:function(a){return this.createElementNSPlus("offering",{value:a.offering})},observedProperty:function(a){return this.createElementNSPlus("observedProperty",{value:a})},eventTime:function(a){var b=this.createElementNSPlus("eventTime"); "latest"===a.eventTime&&this.writeNode("ogc:TM_Equals",a,b);return b},resultModel:function(a){return this.createElementNSPlus("resultModel",{value:a.resultModel})},responseMode:function(a){return this.createElementNSPlus("responseMode",{value:a.responseMode})}},ogc:{TM_Equals:function(a){var b=this.createElementNSPlus("ogc:TM_Equals");this.writeNode("ogc:PropertyName",{property:"urn:ogc:data:time:iso8601"},b);"latest"===a.eventTime&&this.writeNode("gml:TimeInstant",{value:"latest"},b);return b},PropertyName:function(a){return this.createElementNSPlus("ogc:PropertyName", {value:a.property})}},gml:{TimeInstant:function(a){var b=this.createElementNSPlus("gml:TimeInstant");this.writeNode("gml:timePosition",a,b);return b},timePosition:function(a){return this.createElementNSPlus("gml:timePosition",{value:a.value})}}},CLASS_NAME:"OpenLayers.Format.SOSGetObservation"});OpenLayers.Control.UTFGrid=OpenLayers.Class(OpenLayers.Control,{autoActivate:!0,layers:null,defaultHandlerOptions:{delay:300,pixelTolerance:4,stopMove:!1,single:!0,"double":!1,stopSingle:!1,stopDouble:!1},handlerMode:"click",setHandler:function(a){this.handlerMode=a;this.resetHandler()},resetHandler:function(){this.handler&&(this.handler.deactivate(),this.handler.destroy(),this.handler=null);"hover"==this.handlerMode?this.handler=new OpenLayers.Handler.Hover(this,{pause:this.handleEvent,move:this.reset}, this.handlerOptions):"click"==this.handlerMode?this.handler=new OpenLayers.Handler.Click(this,{click:this.handleEvent},this.handlerOptions):"move"==this.handlerMode&&(this.handler=new OpenLayers.Handler.Hover(this,{pause:this.handleEvent,move:this.handleEvent},this.handlerOptions));return this.handler?!0:!1},initialize:function(a){a=a||{};a.handlerOptions=a.handlerOptions||this.defaultHandlerOptions;OpenLayers.Control.prototype.initialize.apply(this,[a]);this.resetHandler()},handleEvent:function(a){if(null== a)this.reset();else{var b=this.map.getLonLatFromPixel(a.xy);if(b){var c=this.findLayers();if(0<c.length){for(var d={},e,f,g=0,h=c.length;g<h;g++)e=c[g],f=OpenLayers.Util.indexOf(this.map.layers,e),d[f]=e.getFeatureInfo(b);this.callback(d,b,a.xy)}}}},callback:function(){},reset:function(){this.callback(null)},findLayers:function(){for(var a=this.layers||this.map.layers,b=[],c,d=a.length-1;0<=d;--d)c=a[d],c instanceof OpenLayers.Layer.UTFGrid&&b.push(c);return b},CLASS_NAME:"OpenLayers.Control.UTFGrid"});OpenLayers.Format.CQL=function(){function a(a){function b(){var a=e.pop();switch(a.type){case "LOGICAL":var c=b(),g=b();return new OpenLayers.Filter.Logical({filters:[g,c],type:f[a.text.toUpperCase()]});case "NOT":return c=b(),new OpenLayers.Filter.Logical({filters:[c],type:OpenLayers.Filter.Logical.NOT});case "BETWEEN":return e.pop(),g=b(),a=b(),c=b(),new OpenLayers.Filter.Comparison({property:c,lowerBoundary:a,upperBoundary:g,type:OpenLayers.Filter.Comparison.BETWEEN});case "COMPARISON":return g= b(),c=b(),new OpenLayers.Filter.Comparison({property:c,value:g,type:d[a.text.toUpperCase()]});case "VALUE":return/^'.*'$/.test(a.text)?a.text.substr(1,a.text.length-2):Number(a.text);case "SPATIAL":switch(a.text.toUpperCase()){case "BBOX":var c=b(),a=b(),g=b(),h=b(),i=b();return new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.BBOX,property:i,value:OpenLayers.Bounds.fromArray([h,g,a,c])});case "INTERSECTS":return g=b(),c=b(),new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.INTERSECTS, property:c,value:g});case "WITHIN":return g=b(),c=b(),new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.WITHIN,property:c,value:g});case "CONTAINS":return g=b(),c=b(),new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.CONTAINS,property:c,value:g});case "DWITHIN":return a=b(),g=b(),c=b(),new OpenLayers.Filter.Spatial({type:OpenLayers.Filter.Spatial.DWITHIN,value:g,property:c,distance:Number(a)})}case "GEOMETRY":return OpenLayers.Geometry.fromWKT(a.text);default:return a.text}} for(var c=[],e=[];a.length;){var g=a.shift();switch(g.type){case "PROPERTY":case "GEOMETRY":case "VALUE":e.push(g);break;case "COMPARISON":case "BETWEEN":case "LOGICAL":for(var i=h[g.type];0<c.length&&h[c[c.length-1].type]<=i;)e.push(c.pop());c.push(g);break;case "SPATIAL":case "NOT":case "LPAREN":c.push(g);break;case "RPAREN":for(;0<c.length&&"LPAREN"!=c[c.length-1].type;)e.push(c.pop());c.pop();0<c.length&&"SPATIAL"==c[c.length-1].type&&e.push(c.pop());case "COMMA":case "END":break;default:throw Error("Unknown token type "+ g.type);}}for(;0<c.length;)e.push(c.pop());a=b();if(0<e.length){a="Remaining tokens after building AST: \n";for(c=e.length-1;0<=c;c--)a+=e[c].type+": "+e[c].text+"\n";throw Error(a);}return a}var b={PROPERTY:/^[_a-zA-Z]\w*/,COMPARISON:/^(=|<>|<=|<|>=|>|LIKE)/i,COMMA:/^,/,LOGICAL:/^(AND|OR)/i,VALUE:/^('\w+'|\d+(\.\d*)?|\.\d+)/,LPAREN:/^\(/,RPAREN:/^\)/,SPATIAL:/^(BBOX|INTERSECTS|DWITHIN|WITHIN|CONTAINS)/i,NOT:/^NOT/i,BETWEEN:/^BETWEEN/i,GEOMETRY:function(a){var b=/^(POINT|LINESTRING|POLYGON|MULTIPOINT|MULTILINESTRING|MULTIPOLYGON|GEOMETRYCOLLECTION)/.exec(a); if(b){var c=a.length,b=a.indexOf("(",b[0].length);if(-1<b)for(var d=1;b<c&&0<d;)switch(b++,a.charAt(b)){case "(":d++;break;case ")":d--}return[a.substr(0,b+1)]}},END:/^$/},c={LPAREN:["GEOMETRY","SPATIAL","PROPERTY","VALUE","LPAREN"],RPAREN:["NOT","LOGICAL","END","RPAREN"],PROPERTY:["COMPARISON","BETWEEN","COMMA"],BETWEEN:["VALUE"],COMPARISON:["VALUE"],COMMA:["GEOMETRY","VALUE","PROPERTY"],VALUE:["LOGICAL","COMMA","RPAREN","END"],SPATIAL:["LPAREN"],LOGICAL:["NOT","VALUE","SPATIAL","PROPERTY","LPAREN"], NOT:["PROPERTY","LPAREN"],GEOMETRY:["COMMA","RPAREN"]},d={"=":OpenLayers.Filter.Comparison.EQUAL_TO,"<>":OpenLayers.Filter.Comparison.NOT_EQUAL_TO,"<":OpenLayers.Filter.Comparison.LESS_THAN,"<=":OpenLayers.Filter.Comparison.LESS_THAN_OR_EQUAL_TO,">":OpenLayers.Filter.Comparison.GREATER_THAN,">=":OpenLayers.Filter.Comparison.GREATER_THAN_OR_EQUAL_TO,LIKE:OpenLayers.Filter.Comparison.LIKE,BETWEEN:OpenLayers.Filter.Comparison.BETWEEN},e={},f={AND:OpenLayers.Filter.Logical.AND,OR:OpenLayers.Filter.Logical.OR}, g={},h={RPAREN:3,LOGICAL:2,COMPARISON:1},i;for(i in d)d.hasOwnProperty(i)&&(e[d[i]]=i);for(i in f)f.hasOwnProperty(i)&&(g[f[i]]=i);return OpenLayers.Class(OpenLayers.Format,{read:function(d){var e=d,d=[],f,g=["NOT","GEOMETRY","SPATIAL","PROPERTY","LPAREN"];do{a:{f=g;for(var h=void 0,g=void 0,i=f.length,h=0;h<i;h++){var g=f[h],p=b[g]instanceof RegExp?b[g].exec(e):(0,b[g])(e);if(p){f=p[0];e=e.substr(f.length).replace(/^\s*/,"");f={type:g,text:f,remainder:e};break a}}d="ERROR: In parsing: ["+e+"], expected one of: "; for(h=0;h<i;h++)g=f[h],d+="\n "+g+": "+b[g];throw Error(d);}e=f.remainder;g=c[f.type];if("END"!=f.type&&!g)throw Error("No follows list for "+f.type);d.push(f)}while("END"!=f.type);d=a(d);this.keepData&&(this.data=d);return d},write:function(a){if(a instanceof OpenLayers.Geometry)return a.toString();switch(a.CLASS_NAME){case "OpenLayers.Filter.Spatial":switch(a.type){case OpenLayers.Filter.Spatial.BBOX:return"BBOX("+a.property+","+a.value.toBBOX()+")";case OpenLayers.Filter.Spatial.DWITHIN:return"DWITHIN("+ a.property+", "+this.write(a.value)+", "+a.distance+")";case OpenLayers.Filter.Spatial.WITHIN:return"WITHIN("+a.property+", "+this.write(a.value)+")";case OpenLayers.Filter.Spatial.INTERSECTS:return"INTERSECTS("+a.property+", "+this.write(a.value)+")";case OpenLayers.Filter.Spatial.CONTAINS:return"CONTAINS("+a.property+", "+this.write(a.value)+")";default:throw Error("Unknown spatial filter type: "+a.type);}case "OpenLayers.Filter.Logical":if(a.type==OpenLayers.Filter.Logical.NOT)return"NOT ("+this.write(a.filters[0])+ ")";for(var b="(",c=!0,d=0;d<a.filters.length;d++)c?c=!1:b+=") "+g[a.type]+" (",b+=this.write(a.filters[d]);return b+")";case "OpenLayers.Filter.Comparison":return a.type==OpenLayers.Filter.Comparison.BETWEEN?a.property+" BETWEEN "+this.write(a.lowerBoundary)+" AND "+this.write(a.upperBoundary):a.property+" "+e[a.type]+" "+this.write(a.value);case void 0:if("string"===typeof a)return"'"+a+"'";if("number"===typeof a)return""+a;default:throw Error("Can't encode: "+a.CLASS_NAME+" "+a);}},CLASS_NAME:"OpenLayers.Format.CQL"})}();OpenLayers.Control.Split=OpenLayers.Class(OpenLayers.Control,{layer:null,source:null,sourceOptions:null,tolerance:null,edge:!0,deferDelete:!1,mutual:!0,targetFilter:null,sourceFilter:null,handler:null,initialize:function(a){OpenLayers.Control.prototype.initialize.apply(this,[a]);this.options=a||{};this.options.source&&this.setSource(this.options.source)},setSource:function(a){this.active?(this.deactivate(),this.handler&&(this.handler.destroy(),delete this.handler),this.source=a,this.activate()):this.source= a},activate:function(){var a=OpenLayers.Control.prototype.activate.call(this);if(a)if(this.source){if(this.source.events)this.source.events.on({sketchcomplete:this.onSketchComplete,afterfeaturemodified:this.afterFeatureModified,scope:this})}else this.handler||(this.handler=new OpenLayers.Handler.Path(this,{done:function(a){this.onSketchComplete({feature:new OpenLayers.Feature.Vector(a)})}},{layerOptions:this.sourceOptions})),this.handler.activate();return a},deactivate:function(){var a=OpenLayers.Control.prototype.deactivate.call(this); a&&this.source&&this.source.events&&this.layer.events.un({sketchcomplete:this.onSketchComplete,afterfeaturemodified:this.afterFeatureModified,scope:this});return a},onSketchComplete:function(a){this.feature=null;return!this.considerSplit(a.feature)},afterFeatureModified:function(a){a.modified&&"function"===typeof a.feature.geometry.split&&(this.feature=a.feature,this.considerSplit(a.feature))},removeByGeometry:function(a,b){for(var c=0,d=a.length;c<d;++c)if(a[c].geometry===b){a.splice(c,1);break}}, isEligible:function(a){return a.geometry?a.state!==OpenLayers.State.DELETE&&"function"===typeof a.geometry.split&&this.feature!==a&&(!this.targetFilter||this.targetFilter.evaluate(a.attributes)):!1},considerSplit:function(a){var b=!1,c=!1;if(!this.sourceFilter||this.sourceFilter.evaluate(a.attributes)){for(var d=this.layer&&this.layer.features||[],e,f,g=[],h=[],i=this.layer===this.source&&this.mutual,j={edge:this.edge,tolerance:this.tolerance,mutual:i},k=[a.geometry],l,m,n,o=0,p=d.length;o<p;++o)if(l= d[o],this.isEligible(l)){m=[l.geometry];for(var q=0;q<k.length;++q){n=k[q];for(var r=0;r<m.length;++r)if(e=m[r],n.getBounds().intersectsBounds(e.getBounds())&&(e=n.split(e,j)))if(f=this.events.triggerEvent("beforesplit",{source:a,target:l}),!1!==f&&(i&&(f=e[0],1<f.length&&(f.unshift(q,1),Array.prototype.splice.apply(k,f),q+=f.length-3),e=e[1]),1<e.length))e.unshift(r,1),Array.prototype.splice.apply(m,e),r+=e.length-3}m&&1<m.length&&(this.geomsToFeatures(l,m),this.events.triggerEvent("split",{original:l, features:m}),Array.prototype.push.apply(g,m),h.push(l),c=!0)}k&&1<k.length&&(this.geomsToFeatures(a,k),this.events.triggerEvent("split",{original:a,features:k}),Array.prototype.push.apply(g,k),h.push(a),b=!0);if(b||c){if(this.deferDelete){d=[];o=0;for(p=h.length;o<p;++o)c=h[o],c.state===OpenLayers.State.INSERT?d.push(c):(c.state=OpenLayers.State.DELETE,this.layer.drawFeature(c));this.layer.destroyFeatures(d,{silent:!0});o=0;for(p=g.length;o<p;++o)g[o].state=OpenLayers.State.INSERT}else this.layer.destroyFeatures(h, {silent:!0});this.layer.addFeatures(g,{silent:!0});this.events.triggerEvent("aftersplit",{source:a,features:g})}}return b},geomsToFeatures:function(a,b){var c=a.clone();delete c.geometry;for(var d,e=0,f=b.length;e<f;++e)d=c.clone(),d.geometry=b[e],d.state=OpenLayers.State.INSERT,b[e]=d},destroy:function(){this.active&&this.deactivate();OpenLayers.Control.prototype.destroy.call(this)},CLASS_NAME:"OpenLayers.Control.Split"});OpenLayers.Layer.WMTS=OpenLayers.Class(OpenLayers.Layer.Grid,{isBaseLayer:!0,version:"1.0.0",requestEncoding:"KVP",url:null,layer:null,matrixSet:null,style:null,format:"image/jpeg",tileOrigin:null,tileFullExtent:null,formatSuffix:null,matrixIds:null,dimensions:null,params:null,zoomOffset:0,serverResolutions:null,formatSuffixMap:{"image/png":"png","image/png8":"png","image/png24":"png","image/png32":"png",png:"png","image/jpeg":"jpg","image/jpg":"jpg",jpeg:"jpg",jpg:"jpg"},matrix:null,initialize:function(a){var b= {url:!0,layer:!0,style:!0,matrixSet:!0},c;for(c in b)if(!(c in a))throw Error("Missing property '"+c+"' in layer configuration.");a.params=OpenLayers.Util.upperCaseObject(a.params);OpenLayers.Layer.Grid.prototype.initialize.apply(this,[a.name,a.url,a.params,a]);this.formatSuffix||(this.formatSuffix=this.formatSuffixMap[this.format]||this.format.split("/").pop());if(this.matrixIds&&(a=this.matrixIds.length)&&"string"===typeof this.matrixIds[0]){b=this.matrixIds;this.matrixIds=Array(a);for(c=0;c<a;++c)this.matrixIds[c]= {identifier:b[c]}}},setMap:function(){OpenLayers.Layer.Grid.prototype.setMap.apply(this,arguments);this.updateMatrixProperties()},updateMatrixProperties:function(){if(this.matrix=this.getMatrix())if(this.matrix.topLeftCorner&&(this.tileOrigin=this.matrix.topLeftCorner),this.matrix.tileWidth&&this.matrix.tileHeight&&(this.tileSize=new OpenLayers.Size(this.matrix.tileWidth,this.matrix.tileHeight)),this.tileOrigin||(this.tileOrigin=new OpenLayers.LonLat(this.maxExtent.left,this.maxExtent.top)),!this.tileFullExtent)this.tileFullExtent= this.maxExtent},moveTo:function(a,b,c){(b||!this.matrix)&&this.updateMatrixProperties();return OpenLayers.Layer.Grid.prototype.moveTo.apply(this,arguments)},clone:function(a){null==a&&(a=new OpenLayers.Layer.WMTS(this.options));return a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a])},getIdentifier:function(){return this.getServerZoom()},getMatrix:function(){var a;if(!this.matrixIds||0===this.matrixIds.length)a={identifier:this.getIdentifier()};else if("scaleDenominator"in this.matrixIds[0])for(var b= OpenLayers.METERS_PER_INCH*OpenLayers.INCHES_PER_UNIT[this.units]*this.getServerResolution()/2.8E-4,c=Number.POSITIVE_INFINITY,d,e=0,f=this.matrixIds.length;e<f;++e)d=Math.abs(1-this.matrixIds[e].scaleDenominator/b),d<c&&(c=d,a=this.matrixIds[e]);else a=this.matrixIds[this.getIdentifier()];return a},getTileInfo:function(a){var b=this.getServerResolution(),c=(a.lon-this.tileOrigin.lon)/(b*this.tileSize.w),a=(this.tileOrigin.lat-a.lat)/(b*this.tileSize.h),b=Math.floor(c),d=Math.floor(a);return{col:b, row:d,i:Math.floor((c-b)*this.tileSize.w),j:Math.floor((a-d)*this.tileSize.h)}},getURL:function(a){var a=this.adjustBounds(a),b="";if(!this.tileFullExtent||this.tileFullExtent.intersectsBounds(a)){var c=this.getTileInfo(a.getCenterLonLat()),a=this.dimensions;if("REST"===this.requestEncoding.toUpperCase())if(b=this.params,"string"===typeof this.url&&-1!==this.url.indexOf("{")){var d=this.url.replace(/\{/g,"${"),c={style:this.style,Style:this.style,TileMatrixSet:this.matrixSet,TileMatrix:this.matrix.identifier, TileRow:c.row,TileCol:c.col};if(a){var e,f;for(f=a.length-1;0<=f;--f)e=a[f],c[e]=b[e.toUpperCase()]}b=OpenLayers.String.format(d,c)}else{d=this.version+"/"+this.layer+"/"+this.style+"/";if(a)for(f=0;f<a.length;f++)b[a[f]]&&(d=d+b[a[f]]+"/");d=d+this.matrixSet+"/"+this.matrix.identifier+"/"+c.row+"/"+c.col+"."+this.formatSuffix;b=OpenLayers.Util.isArray(this.url)?this.selectUrl(d,this.url):this.url;b.match(/\/$/)||(b+="/");b+=d}else"KVP"===this.requestEncoding.toUpperCase()&&(b={SERVICE:"WMTS",REQUEST:"GetTile", VERSION:this.version,LAYER:this.layer,STYLE:this.style,TILEMATRIXSET:this.matrixSet,TILEMATRIX:this.matrix.identifier,TILEROW:c.row,TILECOL:c.col,FORMAT:this.format},b=OpenLayers.Layer.Grid.prototype.getFullRequestString.apply(this,[b]))}return b},mergeNewParams:function(a){if("KVP"===this.requestEncoding.toUpperCase())return OpenLayers.Layer.Grid.prototype.mergeNewParams.apply(this,[OpenLayers.Util.upperCaseObject(a)])},CLASS_NAME:"OpenLayers.Layer.WMTS"});OpenLayers.Protocol.SOS.v1_0_0=OpenLayers.Class(OpenLayers.Protocol,{fois:null,formatOptions:null,initialize:function(a){OpenLayers.Protocol.prototype.initialize.apply(this,[a]);a.format||(this.format=new OpenLayers.Format.SOSGetFeatureOfInterest(this.formatOptions))},destroy:function(){this.options&&!this.options.format&&this.format.destroy();this.format=null;OpenLayers.Protocol.prototype.destroy.apply(this)},read:function(a){a=OpenLayers.Util.extend({},a);OpenLayers.Util.applyDefaults(a,this.options|| {});var b=new OpenLayers.Protocol.Response({requestType:"read"}),c=this.format,c=OpenLayers.Format.XML.prototype.write.apply(c,[c.writeNode("sos:GetFeatureOfInterest",{fois:this.fois})]);b.priv=OpenLayers.Request.POST({url:a.url,callback:this.createCallback(this.handleRead,b,a),data:c});return b},handleRead:function(a,b){if(b.callback){var c=a.priv;200<=c.status&&300>c.status?(a.features=this.parseFeatures(c),a.code=OpenLayers.Protocol.Response.SUCCESS):a.code=OpenLayers.Protocol.Response.FAILURE; b.callback.call(b.scope,a)}},parseFeatures:function(a){var b=a.responseXML;if(!b||!b.documentElement)b=a.responseText;return!b||0>=b.length?null:this.format.read(b)},CLASS_NAME:"OpenLayers.Protocol.SOS.v1_0_0"});OpenLayers.Layer.KaMapCache=OpenLayers.Class(OpenLayers.Layer.KaMap,{IMAGE_EXTENSIONS:{jpeg:"jpg",gif:"gif",png:"png",png8:"png",png24:"png",dithered:"png"},DEFAULT_FORMAT:"jpeg",initialize:function(a,b,c,d){OpenLayers.Layer.KaMap.prototype.initialize.apply(this,arguments);this.extension=this.IMAGE_EXTENSIONS[this.params.i.toLowerCase()||this.DEFAULT_FORMAT]},getURL:function(a){var a=this.adjustBounds(a),b=this.map.getResolution(),c=Math.round(1E4*this.map.getScale())/1E4,d=Math.round(a.left/b),a= -Math.round(a.top/b),b=Math.floor(d/this.tileSize.w/this.params.metaTileSize.w)*this.tileSize.w*this.params.metaTileSize.w,e=Math.floor(a/this.tileSize.h/this.params.metaTileSize.h)*this.tileSize.h*this.params.metaTileSize.h,c=["/",this.params.map,"/",c,"/",this.params.g.replace(/\s/g,"_"),"/def/t",e,"/l",b,"/t",a,"l",d,".",this.extension],d=this.url;OpenLayers.Util.isArray(d)&&(d=this.selectUrl(c.join(""),d));return d+c.join("")},CLASS_NAME:"OpenLayers.Layer.KaMapCache"});OpenLayers.Protocol.WFS.v1_1_0=OpenLayers.Class(OpenLayers.Protocol.WFS.v1,{version:"1.1.0",initialize:function(a){OpenLayers.Protocol.WFS.v1.prototype.initialize.apply(this,arguments);this.outputFormat&&!this.readFormat&&("gml2"==this.outputFormat.toLowerCase()?this.readFormat=new OpenLayers.Format.GML.v2({featureType:this.featureType,featureNS:this.featureNS,geometryName:this.geometryName}):"json"==this.outputFormat.toLowerCase()&&(this.readFormat=new OpenLayers.Format.GeoJSON))},CLASS_NAME:"OpenLayers.Protocol.WFS.v1_1_0"});OpenLayers.Format.WMSCapabilities.v1_1_1=OpenLayers.Class(OpenLayers.Format.WMSCapabilities.v1_1,{version:"1.1.1",readers:{wms:OpenLayers.Util.applyDefaults({SRS:function(a,b){b.srs[this.getChildValue(a)]=!0}},OpenLayers.Format.WMSCapabilities.v1_1.prototype.readers.wms)},CLASS_NAME:"OpenLayers.Format.WMSCapabilities.v1_1_1"});OpenLayers.Format.WMSCapabilities.v1_1_1_WMSC=OpenLayers.Class(OpenLayers.Format.WMSCapabilities.v1_1_1,{version:"1.1.1",profile:"WMSC",readers:{wms:OpenLayers.Util.applyDefaults({VendorSpecificCapabilities:function(a,b){b.vendorSpecific={tileSets:[]};this.readChildNodes(a,b.vendorSpecific)},TileSet:function(a,b){var c={srs:{},bbox:{},resolutions:[]};this.readChildNodes(a,c);b.tileSets.push(c)},Resolutions:function(a,b){for(var c=this.getChildValue(a).split(" "),d=0,e=c.length;d<e;d++)""!=c[d]&&b.resolutions.push(parseFloat(c[d]))}, Width:function(a,b){b.width=parseInt(this.getChildValue(a))},Height:function(a,b){b.height=parseInt(this.getChildValue(a))},Layers:function(a,b){b.layers=this.getChildValue(a)},Styles:function(a,b){b.styles=this.getChildValue(a)}},OpenLayers.Format.WMSCapabilities.v1_1_1.prototype.readers.wms)},CLASS_NAME:"OpenLayers.Format.WMSCapabilities.v1_1_1_WMSC"});OpenLayers.Format.WMSCapabilities.v1_1_0=OpenLayers.Class(OpenLayers.Format.WMSCapabilities.v1_1,{version:"1.1.0",readers:{wms:OpenLayers.Util.applyDefaults({SRS:function(a,b){for(var c=this.getChildValue(a).split(/ +/),d=0,e=c.length;d<e;d++)b.srs[c[d]]=!0}},OpenLayers.Format.WMSCapabilities.v1_1.prototype.readers.wms)},CLASS_NAME:"OpenLayers.Format.WMSCapabilities.v1_1_0"});OpenLayers.Control.LayerSwitcher=OpenLayers.Class(OpenLayers.Control,{roundedCorner:!1,roundedCornerColor:"darkblue",layerStates:null,layersDiv:null,baseLayersDiv:null,baseLayers:null,dataLbl:null,dataLayersDiv:null,dataLayers:null,minimizeDiv:null,maximizeDiv:null,ascending:!0,initialize:function(a){OpenLayers.Control.prototype.initialize.apply(this,arguments);this.layerStates=[];this.roundedCorner&&OpenLayers.Console.warn("roundedCorner option is deprecated")},destroy:function(){this.clearLayersArray("base"); this.clearLayersArray("data");this.map.events.un({buttonclick:this.onButtonClick,addlayer:this.redraw,changelayer:this.redraw,removelayer:this.redraw,changebaselayer:this.redraw,scope:this});this.events.unregister("buttonclick",this,this.onButtonClick);OpenLayers.Control.prototype.destroy.apply(this,arguments)},setMap:function(a){OpenLayers.Control.prototype.setMap.apply(this,arguments);this.map.events.on({addlayer:this.redraw,changelayer:this.redraw,removelayer:this.redraw,changebaselayer:this.redraw, scope:this});this.outsideViewport?(this.events.attachToElement(this.div),this.events.register("buttonclick",this,this.onButtonClick)):this.map.events.register("buttonclick",this,this.onButtonClick)},draw:function(){OpenLayers.Control.prototype.draw.apply(this);this.loadContents();this.outsideViewport||this.minimizeControl();this.redraw();return this.div},onButtonClick:function(a){a=a.buttonElement;a===this.minimizeDiv?this.minimizeControl():a===this.maximizeDiv?this.maximizeControl():a._layerSwitcher=== this.id&&(a["for"]&&(a=document.getElementById(a["for"])),a.disabled||("radio"==a.type?(a.checked=!0,this.map.setBaseLayer(this.map.getLayer(a._layer))):(a.checked=!a.checked,this.updateMap())))},clearLayersArray:function(a){this[a+"LayersDiv"].innerHTML="";this[a+"Layers"]=[]},checkRedraw:function(){var a=!1;if(!this.layerStates.length||this.map.layers.length!=this.layerStates.length)a=!0;else for(var b=0,c=this.layerStates.length;b<c;b++){var d=this.layerStates[b],e=this.map.layers[b];if(d.name!= e.name||d.inRange!=e.inRange||d.id!=e.id||d.visibility!=e.visibility){a=!0;break}}return a},redraw:function(){if(!this.checkRedraw())return this.div;this.clearLayersArray("base");this.clearLayersArray("data");var a=!1,b=!1,c=this.map.layers.length;this.layerStates=Array(c);for(var d=0;d<c;d++){var e=this.map.layers[d];this.layerStates[d]={name:e.name,visibility:e.visibility,inRange:e.inRange,id:e.id}}var f=this.map.layers.slice();this.ascending||f.reverse();d=0;for(c=f.length;d<c;d++){var e=f[d], g=e.isBaseLayer;if(e.displayInLayerSwitcher){g?b=!0:a=!0;var h=g?e==this.map.baseLayer:e.getVisibility(),i=document.createElement("input");i.id=this.id+"_input_"+e.name;i.name=g?this.id+"_baseLayers":e.name;i.type=g?"radio":"checkbox";i.value=e.name;i.checked=h;i.defaultChecked=h;i.className="olButton";i._layer=e.id;i._layerSwitcher=this.id;!g&&!e.inRange&&(i.disabled=!0);h=document.createElement("label");h["for"]=i.id;OpenLayers.Element.addClass(h,"labelSpan olButton");h._layer=e.id;h._layerSwitcher= this.id;!g&&!e.inRange&&(h.style.color="gray");h.innerHTML=e.name;h.style.verticalAlign=g?"bottom":"baseline";var j=document.createElement("br");(g?this.baseLayers:this.dataLayers).push({layer:e,inputElem:i,labelSpan:h});e=g?this.baseLayersDiv:this.dataLayersDiv;e.appendChild(i);e.appendChild(h);e.appendChild(j)}}this.dataLbl.style.display=a?"":"none";this.baseLbl.style.display=b?"":"none";return this.div},updateMap:function(){for(var a=0,b=this.baseLayers.length;a<b;a++){var c=this.baseLayers[a]; c.inputElem.checked&&this.map.setBaseLayer(c.layer,!1)}a=0;for(b=this.dataLayers.length;a<b;a++)c=this.dataLayers[a],c.layer.setVisibility(c.inputElem.checked)},maximizeControl:function(a){this.div.style.width="";this.div.style.height="";this.showControls(!1);null!=a&&OpenLayers.Event.stop(a)},minimizeControl:function(a){this.div.style.width="0px";this.div.style.height="0px";this.showControls(!0);null!=a&&OpenLayers.Event.stop(a)},showControls:function(a){this.maximizeDiv.style.display=a?"":"none"; this.minimizeDiv.style.display=a?"none":"";this.layersDiv.style.display=a?"none":""},loadContents:function(){this.layersDiv=document.createElement("div");this.layersDiv.id=this.id+"_layersDiv";OpenLayers.Element.addClass(this.layersDiv,"layersDiv");this.baseLbl=document.createElement("div");this.baseLbl.innerHTML=OpenLayers.i18n("Base Layer");OpenLayers.Element.addClass(this.baseLbl,"baseLbl");this.baseLayersDiv=document.createElement("div");OpenLayers.Element.addClass(this.baseLayersDiv,"baseLayersDiv"); this.dataLbl=document.createElement("div");this.dataLbl.innerHTML=OpenLayers.i18n("Overlays");OpenLayers.Element.addClass(this.dataLbl,"dataLbl");this.dataLayersDiv=document.createElement("div");OpenLayers.Element.addClass(this.dataLayersDiv,"dataLayersDiv");this.ascending?(this.layersDiv.appendChild(this.baseLbl),this.layersDiv.appendChild(this.baseLayersDiv),this.layersDiv.appendChild(this.dataLbl),this.layersDiv.appendChild(this.dataLayersDiv)):(this.layersDiv.appendChild(this.dataLbl),this.layersDiv.appendChild(this.dataLayersDiv), this.layersDiv.appendChild(this.baseLbl),this.layersDiv.appendChild(this.baseLayersDiv));this.div.appendChild(this.layersDiv);this.roundedCorner&&(OpenLayers.Rico.Corner.round(this.div,{corners:"tl bl",bgColor:"transparent",color:this.roundedCornerColor,blend:!1}),OpenLayers.Rico.Corner.changeOpacity(this.layersDiv,0.75));var a=OpenLayers.Util.getImageLocation("layer-switcher-maximize.png");this.maximizeDiv=OpenLayers.Util.createAlphaImageDiv("OpenLayers_Control_MaximizeDiv",null,null,a,"absolute"); OpenLayers.Element.addClass(this.maximizeDiv,"maximizeDiv olButton");this.maximizeDiv.style.display="none";this.div.appendChild(this.maximizeDiv);a=OpenLayers.Util.getImageLocation("layer-switcher-minimize.png");this.minimizeDiv=OpenLayers.Util.createAlphaImageDiv("OpenLayers_Control_MinimizeDiv",null,null,a,"absolute");OpenLayers.Element.addClass(this.minimizeDiv,"minimizeDiv olButton");this.minimizeDiv.style.display="none";this.div.appendChild(this.minimizeDiv)},CLASS_NAME:"OpenLayers.Control.LayerSwitcher"});OpenLayers.Format.Atom=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{atom:"http://www.w3.org/2005/Atom",georss:"http://www.georss.org/georss"},feedTitle:"untitled",defaultEntryTitle:"untitled",gmlParser:null,xy:!1,read:function(a){"string"==typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));return this.parseFeatures(a)},write:function(a){var b;if(OpenLayers.Util.isArray(a)){b=this.createElementNSPlus("atom:feed");b.appendChild(this.createElementNSPlus("atom:title",{value:this.feedTitle})); for(var c=0,d=a.length;c<d;c++)b.appendChild(this.buildEntryNode(a[c]))}else b=this.buildEntryNode(a);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},buildContentNode:function(a){var b=this.createElementNSPlus("atom:content",{attributes:{type:a.type||null}});if(a.src)b.setAttribute("src",a.src);else if("text"==a.type||null==a.type)b.appendChild(this.createTextNode(a.value));else if("html"==a.type){if("string"!=typeof a.value)throw"HTML content must be in form of an escaped string";b.appendChild(this.createTextNode(a.value))}else"xhtml"== a.type?b.appendChild(a.value):"xhtml"==a.type||a.type.match(/(\+|\/)xml$/)?b.appendChild(a.value):b.appendChild(this.createTextNode(a.value));return b},buildEntryNode:function(a){var b=a.attributes,c=b.atom||{},d=this.createElementNSPlus("atom:entry");if(c.authors)for(var e=OpenLayers.Util.isArray(c.authors)?c.authors:[c.authors],f=0,g=e.length;f<g;f++)d.appendChild(this.buildPersonConstructNode("author",e[f]));if(c.categories)for(var e=OpenLayers.Util.isArray(c.categories)?c.categories:[c.categories], h,f=0,g=e.length;f<g;f++)h=e[f],d.appendChild(this.createElementNSPlus("atom:category",{attributes:{term:h.term,scheme:h.scheme||null,label:h.label||null}}));c.content&&d.appendChild(this.buildContentNode(c.content));if(c.contributors){e=OpenLayers.Util.isArray(c.contributors)?c.contributors:[c.contributors];f=0;for(g=e.length;f<g;f++)d.appendChild(this.buildPersonConstructNode("contributor",e[f]))}a.fid&&d.appendChild(this.createElementNSPlus("atom:id",{value:a.fid}));if(c.links){e=OpenLayers.Util.isArray(c.links)? c.links:[c.links];f=0;for(g=e.length;f<g;f++)h=e[f],d.appendChild(this.createElementNSPlus("atom:link",{attributes:{href:h.href,rel:h.rel||null,type:h.type||null,hreflang:h.hreflang||null,title:h.title||null,length:h.length||null}}))}c.published&&d.appendChild(this.createElementNSPlus("atom:published",{value:c.published}));c.rights&&d.appendChild(this.createElementNSPlus("atom:rights",{value:c.rights}));if(c.summary||b.description)d.appendChild(this.createElementNSPlus("atom:summary",{value:c.summary|| b.description}));d.appendChild(this.createElementNSPlus("atom:title",{value:c.title||b.title||this.defaultEntryTitle}));c.updated&&d.appendChild(this.createElementNSPlus("atom:updated",{value:c.updated}));a.geometry&&(b=this.createElementNSPlus("georss:where"),b.appendChild(this.buildGeometryNode(a.geometry)),d.appendChild(b));return d},initGmlParser:function(){this.gmlParser=new OpenLayers.Format.GML.v3({xy:this.xy,featureNS:"http://example.com#feature",internalProjection:this.internalProjection, externalProjection:this.externalProjection})},buildGeometryNode:function(a){this.gmlParser||this.initGmlParser();return this.gmlParser.writeNode("feature:_geometry",a).firstChild},buildPersonConstructNode:function(a,b){var c=["uri","email"],d=this.createElementNSPlus("atom:"+a);d.appendChild(this.createElementNSPlus("atom:name",{value:b.name}));for(var e=0,f=c.length;e<f;e++)b[c[e]]&&d.appendChild(this.createElementNSPlus("atom:"+c[e],{value:b[c[e]]}));return d},getFirstChildValue:function(a,b,c, d){return(a=this.getElementsByTagNameNS(a,b,c))&&0<a.length?this.getChildValue(a[0],d):d},parseFeature:function(a){var b={},c=null,d=null,e=null,f=this.namespaces.atom;this.parsePersonConstructs(a,"author",b);d=this.getElementsByTagNameNS(a,f,"category");0<d.length&&(b.categories=[]);for(var g=0,h=d.length;g<h;g++){c={};c.term=d[g].getAttribute("term");if(e=d[g].getAttribute("scheme"))c.scheme=e;if(e=d[g].getAttribute("label"))c.label=e;b.categories.push(c)}d=this.getElementsByTagNameNS(a,f,"content"); if(0<d.length){c={};if(e=d[0].getAttribute("type"))c.type=e;(e=d[0].getAttribute("src"))?c.src=e:(c.value="text"==c.type||"html"==c.type||null==c.type?this.getFirstChildValue(a,f,"content",null):"xhtml"==c.type||c.type.match(/(\+|\/)xml$/)?this.getChildEl(d[0]):this.getFirstChildValue(a,f,"content",null),b.content=c)}this.parsePersonConstructs(a,"contributor",b);b.id=this.getFirstChildValue(a,f,"id",null);d=this.getElementsByTagNameNS(a,f,"link");0<d.length&&(b.links=Array(d.length));for(var i=["rel", "type","hreflang","title","length"],g=0,h=d.length;g<h;g++){c={};c.href=d[g].getAttribute("href");for(var j=0,k=i.length;j<k;j++)(e=d[g].getAttribute(i[j]))&&(c[i[j]]=e);b.links[g]=c}if(c=this.getFirstChildValue(a,f,"published",null))b.published=c;if(c=this.getFirstChildValue(a,f,"rights",null))b.rights=c;if(c=this.getFirstChildValue(a,f,"summary",null))b.summary=c;b.title=this.getFirstChildValue(a,f,"title",null);b.updated=this.getFirstChildValue(a,f,"updated",null);c={title:b.title,description:b.summary, atom:b};a=this.parseLocations(a)[0];a=new OpenLayers.Feature.Vector(a,c);a.fid=b.id;return a},parseFeatures:function(a){var b=[],c=this.getElementsByTagNameNS(a,this.namespaces.atom,"entry");0==c.length&&(c=[a]);for(var a=0,d=c.length;a<d;a++)b.push(this.parseFeature(c[a]));return b},parseLocations:function(a){var b=this.namespaces.georss,c={components:[]},d=this.getElementsByTagNameNS(a,b,"where");if(d&&0<d.length){this.gmlParser||this.initGmlParser();for(var e=0,f=d.length;e<f;e++)this.gmlParser.readChildNodes(d[e], c)}c=c.components;if((d=this.getElementsByTagNameNS(a,b,"point"))&&0<d.length){e=0;for(f=d.length;e<f;e++){var g=OpenLayers.String.trim(d[e].firstChild.nodeValue).split(/\s+/);2!=g.length&&(g=OpenLayers.String.trim(d[e].firstChild.nodeValue).split(/\s*,\s*/));c.push(new OpenLayers.Geometry.Point(g[1],g[0]))}}var h=this.getElementsByTagNameNS(a,b,"line");if(h&&0<h.length)for(var i,e=0,f=h.length;e<f;e++){d=OpenLayers.String.trim(h[e].firstChild.nodeValue).split(/\s+/);i=[];for(var j=0,k=d.length;j< k;j+=2)g=new OpenLayers.Geometry.Point(d[j+1],d[j]),i.push(g);c.push(new OpenLayers.Geometry.LineString(i))}if((a=this.getElementsByTagNameNS(a,b,"polygon"))&&0<a.length){e=0;for(f=a.length;e<f;e++){d=OpenLayers.String.trim(a[e].firstChild.nodeValue).split(/\s+/);i=[];j=0;for(k=d.length;j<k;j+=2)g=new OpenLayers.Geometry.Point(d[j+1],d[j]),i.push(g);c.push(new OpenLayers.Geometry.Polygon([new OpenLayers.Geometry.LinearRing(c)]))}}if(this.internalProjection&&this.externalProjection){e=0;for(f=c.length;e< f;e++)c[e]&&c[e].transform(this.externalProjection,this.internalProjection)}return c},parsePersonConstructs:function(a,b,c){for(var d=[],e=this.namespaces.atom,a=this.getElementsByTagNameNS(a,e,b),f=["uri","email"],g=0,h=a.length;g<h;g++){var i={};i.name=this.getFirstChildValue(a[g],e,"name",null);for(var j=0,k=f.length;j<k;j++){var l=this.getFirstChildValue(a[g],e,f[j],null);l&&(i[f[j]]=l)}d.push(i)}0<d.length&&(c[b+"s"]=d)},CLASS_NAME:"OpenLayers.Format.Atom"});OpenLayers.Control.KeyboardDefaults=OpenLayers.Class(OpenLayers.Control,{autoActivate:!0,slideFactor:75,observeElement:null,draw:function(){this.handler=new OpenLayers.Handler.Keyboard(this,{keydown:this.defaultKeyPress},{observeElement:this.observeElement||document})},defaultKeyPress:function(a){var b,c=!0;switch(a.keyCode){case OpenLayers.Event.KEY_LEFT:this.map.pan(-this.slideFactor,0);break;case OpenLayers.Event.KEY_RIGHT:this.map.pan(this.slideFactor,0);break;case OpenLayers.Event.KEY_UP:this.map.pan(0, -this.slideFactor);break;case OpenLayers.Event.KEY_DOWN:this.map.pan(0,this.slideFactor);break;case 33:b=this.map.getSize();this.map.pan(0,-0.75*b.h);break;case 34:b=this.map.getSize();this.map.pan(0,0.75*b.h);break;case 35:b=this.map.getSize();this.map.pan(0.75*b.w,0);break;case 36:b=this.map.getSize();this.map.pan(-0.75*b.w,0);break;case 43:case 61:case 187:case 107:this.map.zoomIn();break;case 45:case 109:case 189:case 95:this.map.zoomOut();break;default:c=!1}c&&OpenLayers.Event.stop(a)},CLASS_NAME:"OpenLayers.Control.KeyboardDefaults"});OpenLayers.Format.WMTSCapabilities.v1_0_0=OpenLayers.Class(OpenLayers.Format.OWSCommon.v1_1_0,{version:"1.0.0",namespaces:{ows:"http://www.opengis.net/ows/1.1",wmts:"http://www.opengis.net/wmts/1.0",xlink:"http://www.w3.org/1999/xlink"},yx:null,defaultPrefix:"wmts",initialize:function(a){OpenLayers.Format.XML.prototype.initialize.apply(this,[a]);this.options=a;a=OpenLayers.Util.extend({},OpenLayers.Format.WMTSCapabilities.prototype.yx);this.yx=OpenLayers.Util.extend(a,this.yx)},read:function(a){"string"== typeof a&&(a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));a&&9==a.nodeType&&(a=a.documentElement);var b={};this.readNode(a,b);b.version=this.version;return b},readers:{wmts:{Capabilities:function(a,b){this.readChildNodes(a,b)},Contents:function(a,b){b.contents={};b.contents.layers=[];b.contents.tileMatrixSets={};this.readChildNodes(a,b.contents)},Layer:function(a,b){var c={styles:[],formats:[],dimensions:[],tileMatrixSetLinks:[],layers:[]};this.readChildNodes(a,c);b.layers.push(c)},Style:function(a, b){var c={};c.isDefault="true"===a.getAttribute("isDefault");this.readChildNodes(a,c);b.styles.push(c)},Format:function(a,b){b.formats.push(this.getChildValue(a))},TileMatrixSetLink:function(a,b){var c={};this.readChildNodes(a,c);b.tileMatrixSetLinks.push(c)},TileMatrixSet:function(a,b){if(b.layers){var c={matrixIds:[]};this.readChildNodes(a,c);b.tileMatrixSets[c.identifier]=c}else b.tileMatrixSet=this.getChildValue(a)},TileMatrix:function(a,b){var c={supportedCRS:b.supportedCRS};this.readChildNodes(a, c);b.matrixIds.push(c)},ScaleDenominator:function(a,b){b.scaleDenominator=parseFloat(this.getChildValue(a))},TopLeftCorner:function(a,b){var c=this.getChildValue(a).split(" "),d;b.supportedCRS&&(d=!!this.yx[b.supportedCRS.replace(/urn:ogc:def:crs:(\w+):.+:(\w+)$/,"urn:ogc:def:crs:$1::$2")]);b.topLeftCorner=d?new OpenLayers.LonLat(c[1],c[0]):new OpenLayers.LonLat(c[0],c[1])},TileWidth:function(a,b){b.tileWidth=parseInt(this.getChildValue(a))},TileHeight:function(a,b){b.tileHeight=parseInt(this.getChildValue(a))}, MatrixWidth:function(a,b){b.matrixWidth=parseInt(this.getChildValue(a))},MatrixHeight:function(a,b){b.matrixHeight=parseInt(this.getChildValue(a))},ResourceURL:function(a,b){b.resourceUrl=b.resourceUrl||{};b.resourceUrl[a.getAttribute("resourceType")]={format:a.getAttribute("format"),template:a.getAttribute("template")}},WSDL:function(a,b){b.wsdl={};b.wsdl.href=a.getAttribute("xlink:href")},ServiceMetadataURL:function(a,b){b.serviceMetadataUrl={};b.serviceMetadataUrl.href=a.getAttribute("xlink:href")}, LegendURL:function(a,b){b.legend={};b.legend.href=a.getAttribute("xlink:href");b.legend.format=a.getAttribute("format")},Dimension:function(a,b){var c={values:[]};this.readChildNodes(a,c);b.dimensions.push(c)},Default:function(a,b){b["default"]=this.getChildValue(a)},Value:function(a,b){b.values.push(this.getChildValue(a))}},ows:OpenLayers.Format.OWSCommon.v1_1_0.prototype.readers.ows},CLASS_NAME:"OpenLayers.Format.WMTSCapabilities.v1_0_0"});

public/js/utils/theme/default/style.css

public/tester/index.html

ID
Message
Send Message
ID
Property
Value
Update Property

public/tester/js/jquery.js

/*! * jQuery JavaScript Library v1.9.0 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2013-1-14 */ (function( window, undefined ) { "use strict"; var // A central reference to the root jQuery(document) rootjQuery, // The deferred used on DOM ready readyList, // Use the correct document accordingly with window argument (sandbox) document = window.document, location = window.location, // Map over jQuery in case of overwrite _jQuery = window.jQuery, // Map over the $ in case of overwrite _$ = window.$, // [[Class]] -> type pairs class2type = {}, // List of deleted data cache ids, so we can reuse them core_deletedIds = [], core_version = "1.9.0", // Save a reference to some core methods core_concat = core_deletedIds.concat, core_push = core_deletedIds.push, core_slice = core_deletedIds.slice, core_indexOf = core_deletedIds.indexOf, core_toString = class2type.toString, core_hasOwn = class2type.hasOwnProperty, core_trim = core_version.trim, // Define a local copy of jQuery jQuery = function( selector, context ) { // The jQuery object is actually just the init constructor 'enhanced' return new jQuery.fn.init( selector, context, rootjQuery ); }, // Used for matching numbers core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, // Used for splitting on whitespace core_rnotwhite = /\S+/g, // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, // A simple way to check for HTML strings // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) // Strict HTML recognition (#11290: must start with <) rquickExpr = /^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/, // Match a standalone tag rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, // JSON RegExp rvalidchars = /^[\],:{}\s]*$/, rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, // Matches dashed string for camelizing rmsPrefix = /^-ms-/, rdashAlpha = /-([\da-z])/gi, // Used by jQuery.camelCase as callback to replace() fcamelCase = function( all, letter ) { return letter.toUpperCase(); }, // The ready event handler and self cleanup method DOMContentLoaded = function() { if ( document.addEventListener ) { document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); jQuery.ready(); } else if ( document.readyState === "complete" ) { // we're here because readyState === "complete" in oldIE // which is good enough for us to call the dom ready! document.detachEvent( "onreadystatechange", DOMContentLoaded ); jQuery.ready(); } }; jQuery.fn = jQuery.prototype = { // The current version of jQuery being used jquery: core_version, constructor: jQuery, init: function( selector, context, rootjQuery ) { var match, elem; // HANDLE: $(""), $(null), $(undefined), $(false) if ( !selector ) { return this; } // Handle HTML strings if ( typeof selector === "string" ) { if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { // Assume that strings that start and end with <> are HTML and skip the regex check match = [ null, selector, null ]; } else { match = rquickExpr.exec( selector ); } // Match html or make sure no context is specified for #id if ( match && (match[1] || !context) ) { // HANDLE: $(html) -> $(array) if ( match[1] ) { context = context instanceof jQuery ? context[0] : context; // scripts is true for back-compat jQuery.merge( this, jQuery.parseHTML( match[1], context && context.nodeType ? context.ownerDocument || context : document, true ) ); // HANDLE: $(html, props) if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { for ( match in context ) { // Properties of context are called as methods if possible if ( jQuery.isFunction( this[ match ] ) ) { this[ match ]( context[ match ] ); // ...and otherwise set as attributes } else { this.attr( match, context[ match ] ); } } } return this; // HANDLE: $(#id) } else { elem = document.getElementById( match[2] ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 if ( elem && elem.parentNode ) { // Handle the case where IE and Opera return items // by name instead of ID if ( elem.id !== match[2] ) { return rootjQuery.find( selector ); } // Otherwise, we inject the element directly into the jQuery object this.length = 1; this[0] = elem; } this.context = document; this.selector = selector; return this; } // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { return ( context || rootjQuery ).find( selector ); // HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) } else { return this.constructor( context ).find( selector ); } // HANDLE: $(DOMElement) } else if ( selector.nodeType ) { this.context = this[0] = selector; this.length = 1; return this; // HANDLE: $(function) // Shortcut for document ready } else if ( jQuery.isFunction( selector ) ) { return rootjQuery.ready( selector ); } if ( selector.selector !== undefined ) { this.selector = selector.selector; this.context = selector.context; } return jQuery.makeArray( selector, this ); }, // Start with an empty selector selector: "", // The default length of a jQuery object is 0 length: 0, // The number of elements contained in the matched element set size: function() { return this.length; }, toArray: function() { return core_slice.call( this ); }, // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { return num == null ? // Return a 'clean' array this.toArray() : // Return just the object ( num < 0 ? this[ this.length + num ] : this[ num ] ); }, // Take an array of elements and push it onto the stack // (returning the new matched element set) pushStack: function( elems ) { // Build a new jQuery matched element set var ret = jQuery.merge( this.constructor(), elems ); // Add the old object onto the stack (as a reference) ret.prevObject = this; ret.context = this.context; // Return the newly-formed element set return ret; }, // Execute a callback for every element in the matched set. // (You can seed the arguments with an array of args, but this is // only used internally.) each: function( callback, args ) { return jQuery.each( this, callback, args ); }, ready: function( fn ) { // Add the callback jQuery.ready.promise().done( fn ); return this; }, slice: function() { return this.pushStack( core_slice.apply( this, arguments ) ); }, first: function() { return this.eq( 0 ); }, last: function() { return this.eq( -1 ); }, eq: function( i ) { var len = this.length, j = +i + ( i < 0 ? len : 0 ); return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); }, map: function( callback ) { return this.pushStack( jQuery.map(this, function( elem, i ) { return callback.call( elem, i, elem ); })); }, end: function() { return this.prevObject || this.constructor(null); }, // For internal use only. // Behaves like an Array's method, not like a jQuery method. push: core_push, sort: [].sort, splice: [].splice }; // Give the init function the jQuery prototype for later instantiation jQuery.fn.init.prototype = jQuery.fn; jQuery.extend = jQuery.fn.extend = function() { var options, name, src, copy, copyIsArray, clone, target = arguments[0] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if ( typeof target === "boolean" ) { deep = target; target = arguments[1] || {}; // skip the boolean and the target i = 2; } // Handle case when target is a string or something (possible in deep copy) if ( typeof target !== "object" && !jQuery.isFunction(target) ) { target = {}; } // extend jQuery itself if only one argument is passed if ( length === i ) { target = this; --i; } for ( ; i < length; i++ ) { // Only deal with non-null/undefined values if ( (options = arguments[ i ]) != null ) { // Extend the base object for ( name in options ) { src = target[ name ]; copy = options[ name ]; // Prevent never-ending loop if ( target === copy ) { continue; } // Recurse if we're merging plain objects or arrays if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { if ( copyIsArray ) { copyIsArray = false; clone = src && jQuery.isArray(src) ? src : []; } else { clone = src && jQuery.isPlainObject(src) ? src : {}; } // Never move original objects, clone them target[ name ] = jQuery.extend( deep, clone, copy ); // Don't bring in undefined values } else if ( copy !== undefined ) { target[ name ] = copy; } } } } // Return the modified object return target; }; jQuery.extend({ noConflict: function( deep ) { if ( window.$ === jQuery ) { window.$ = _$; } if ( deep && window.jQuery === jQuery ) { window.jQuery = _jQuery; } return jQuery; }, // Is the DOM ready to be used? Set to true once it occurs. isReady: false, // A counter to track how many items to wait for before // the ready event fires. See #6781 readyWait: 1, // Hold (or release) the ready event holdReady: function( hold ) { if ( hold ) { jQuery.readyWait++; } else { jQuery.ready( true ); } }, // Handle when the DOM is ready ready: function( wait ) { // Abort if there are pending holds or we're already ready if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { return; } // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( !document.body ) { return setTimeout( jQuery.ready ); } // Remember that the DOM is ready jQuery.isReady = true; // If a normal DOM Ready event fired, decrement, and wait if need be if ( wait !== true && --jQuery.readyWait > 0 ) { return; } // If there are functions bound, to execute readyList.resolveWith( document, [ jQuery ] ); // Trigger any bound ready events if ( jQuery.fn.trigger ) { jQuery( document ).trigger("ready").off("ready"); } }, // See test/unit/core.js for details concerning isFunction. // Since version 1.3, DOM methods and functions like alert // aren't supported. They return false on IE (#2968). isFunction: function( obj ) { return jQuery.type(obj) === "function"; }, isArray: Array.isArray || function( obj ) { return jQuery.type(obj) === "array"; }, isWindow: function( obj ) { return obj != null && obj == obj.window; }, isNumeric: function( obj ) { return !isNaN( parseFloat(obj) ) && isFinite( obj ); }, type: function( obj ) { if ( obj == null ) { return String( obj ); } return typeof obj === "object" || typeof obj === "function" ? class2type[ core_toString.call(obj) ] || "object" : typeof obj; }, isPlainObject: function( obj ) { // Must be an Object. // Because of IE, we also have to check the presence of the constructor property. // Make sure that DOM nodes and window objects don't pass through, as well if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { return false; } try { // Not own constructor property must be Object if ( obj.constructor && !core_hasOwn.call(obj, "constructor") && !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { return false; } } catch ( e ) { // IE8,9 Will throw exceptions on certain host objects #9897 return false; } // Own properties are enumerated firstly, so to speed up, // if last one is own, then all properties are own. var key; for ( key in obj ) {} return key === undefined || core_hasOwn.call( obj, key ); }, isEmptyObject: function( obj ) { var name; for ( name in obj ) { return false; } return true; }, error: function( msg ) { throw new Error( msg ); }, // data: string of html // context (optional): If specified, the fragment will be created in this context, defaults to document // keepScripts (optional): If true, will include scripts passed in the html string parseHTML: function( data, context, keepScripts ) { if ( !data || typeof data !== "string" ) { return null; } if ( typeof context === "boolean" ) { keepScripts = context; context = false; } context = context || document; var parsed = rsingleTag.exec( data ), scripts = !keepScripts && []; // Single tag if ( parsed ) { return [ context.createElement( parsed[1] ) ]; } parsed = jQuery.buildFragment( [ data ], context, scripts ); if ( scripts ) { jQuery( scripts ).remove(); } return jQuery.merge( [], parsed.childNodes ); }, parseJSON: function( data ) { // Attempt to parse using the native JSON parser first if ( window.JSON && window.JSON.parse ) { return window.JSON.parse( data ); } if ( data === null ) { return data; } if ( typeof data === "string" ) { // Make sure leading/trailing whitespace is removed (IE can't handle it) data = jQuery.trim( data ); if ( data ) { // Make sure the incoming data is actual JSON // Logic borrowed from http://json.org/json2.js if ( rvalidchars.test( data.replace( rvalidescape, "@" ) .replace( rvalidtokens, "]" ) .replace( rvalidbraces, "")) ) { return ( new Function( "return " + data ) )(); } } } jQuery.error( "Invalid JSON: " + data ); }, // Cross-browser xml parsing parseXML: function( data ) { var xml, tmp; if ( !data || typeof data !== "string" ) { return null; } try { if ( window.DOMParser ) { // Standard tmp = new DOMParser(); xml = tmp.parseFromString( data , "text/xml" ); } else { // IE xml = new ActiveXObject( "Microsoft.XMLDOM" ); xml.async = "false"; xml.loadXML( data ); } } catch( e ) { xml = undefined; } if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { jQuery.error( "Invalid XML: " + data ); } return xml; }, noop: function() {}, // Evaluates a script in a global context // Workarounds based on findings by Jim Driscoll // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context globalEval: function( data ) { if ( data && jQuery.trim( data ) ) { // We use execScript on Internet Explorer // We use an anonymous function so that context is window // rather than jQuery in Firefox ( window.execScript || function( data ) { window[ "eval" ].call( window, data ); } )( data ); } }, // Convert dashed to camelCase; used by the css and data modules // Microsoft forgot to hump their vendor prefix (#9572) camelCase: function( string ) { return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); }, nodeName: function( elem, name ) { return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); }, // args is for internal usage only each: function( obj, callback, args ) { var value, i = 0, length = obj.length, isArray = isArraylike( obj ); if ( args ) { if ( isArray ) { for ( ; i < length; i++ ) { value = callback.apply( obj[ i ], args ); if ( value === false ) { break; } } } else { for ( i in obj ) { value = callback.apply( obj[ i ], args ); if ( value === false ) { break; } } } // A special, fast, case for the most common use of each } else { if ( isArray ) { for ( ; i < length; i++ ) { value = callback.call( obj[ i ], i, obj[ i ] ); if ( value === false ) { break; } } } else { for ( i in obj ) { value = callback.call( obj[ i ], i, obj[ i ] ); if ( value === false ) { break; } } } } return obj; }, // Use native String.trim function wherever possible trim: core_trim && !core_trim.call("\uFEFF\xA0") ? function( text ) { return text == null ? "" : core_trim.call( text ); } : // Otherwise use our own trimming functionality function( text ) { return text == null ? "" : ( text + "" ).replace( rtrim, "" ); }, // results is for internal usage only makeArray: function( arr, results ) { var ret = results || []; if ( arr != null ) { if ( isArraylike( Object(arr) ) ) { jQuery.merge( ret, typeof arr === "string" ? [ arr ] : arr ); } else { core_push.call( ret, arr ); } } return ret; }, inArray: function( elem, arr, i ) { var len; if ( arr ) { if ( core_indexOf ) { return core_indexOf.call( arr, elem, i ); } len = arr.length; i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; for ( ; i < len; i++ ) { // Skip accessing in sparse arrays if ( i in arr && arr[ i ] === elem ) { return i; } } } return -1; }, merge: function( first, second ) { var l = second.length, i = first.length, j = 0; if ( typeof l === "number" ) { for ( ; j < l; j++ ) { first[ i++ ] = second[ j ]; } } else { while ( second[j] !== undefined ) { first[ i++ ] = second[ j++ ]; } } first.length = i; return first; }, grep: function( elems, callback, inv ) { var retVal, ret = [], i = 0, length = elems.length; inv = !!inv; // Go through the array, only saving the items // that pass the validator function for ( ; i < length; i++ ) { retVal = !!callback( elems[ i ], i ); if ( inv !== retVal ) { ret.push( elems[ i ] ); } } return ret; }, // arg is for internal usage only map: function( elems, callback, arg ) { var value, i = 0, length = elems.length, isArray = isArraylike( elems ), ret = []; // Go through the array, translating each of the items to their if ( isArray ) { for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret[ ret.length ] = value; } } // Go through every key on the object, } else { for ( i in elems ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret[ ret.length ] = value; } } } // Flatten any nested arrays return core_concat.apply( [], ret ); }, // A global GUID counter for objects guid: 1, // Bind a function to a context, optionally partially applying any // arguments. proxy: function( fn, context ) { var tmp, args, proxy; if ( typeof context === "string" ) { tmp = fn[ context ]; context = fn; fn = tmp; } // Quick check to determine if target is callable, in the spec // this throws a TypeError, but we will just return undefined. if ( !jQuery.isFunction( fn ) ) { return undefined; } // Simulated bind args = core_slice.call( arguments, 2 ); proxy = function() { return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); }; // Set the guid of unique handler to the same of original handler, so it can be removed proxy.guid = fn.guid = fn.guid || jQuery.guid++; return proxy; }, // Multifunctional method to get and set values of a collection // The value/s can optionally be executed if it's a function access: function( elems, fn, key, value, chainable, emptyGet, raw ) { var i = 0, length = elems.length, bulk = key == null; // Sets many values if ( jQuery.type( key ) === "object" ) { chainable = true; for ( i in key ) { jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); } // Sets one value } else if ( value !== undefined ) { chainable = true; if ( !jQuery.isFunction( value ) ) { raw = true; } if ( bulk ) { // Bulk operations run against the entire set if ( raw ) { fn.call( elems, value ); fn = null; // ...except when executing function values } else { bulk = fn; fn = function( elem, key, value ) { return bulk.call( jQuery( elem ), value ); }; } } if ( fn ) { for ( ; i < length; i++ ) { fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); } } } return chainable ? elems : // Gets bulk ? fn.call( elems ) : length ? fn( elems[0], key ) : emptyGet; }, now: function() { return ( new Date() ).getTime(); } }); jQuery.ready.promise = function( obj ) { if ( !readyList ) { readyList = jQuery.Deferred(); // Catch cases where $(document).ready() is called after the browser event has already occurred. // we once tried to use readyState "interactive" here, but it caused issues like the one // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 if ( document.readyState === "complete" ) { // Handle it asynchronously to allow scripts the opportunity to delay ready setTimeout( jQuery.ready ); // Standards-based browsers support DOMContentLoaded } else if ( document.addEventListener ) { // Use the handy event callback document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); // A fallback to window.onload, that will always work window.addEventListener( "load", jQuery.ready, false ); // If IE event model is used } else { // Ensure firing before onload, maybe late but safe also for iframes document.attachEvent( "onreadystatechange", DOMContentLoaded ); // A fallback to window.onload, that will always work window.attachEvent( "onload", jQuery.ready ); // If IE and not a frame // continually check to see if the document is ready var top = false; try { top = window.frameElement == null && document.documentElement; } catch(e) {} if ( top && top.doScroll ) { (function doScrollCheck() { if ( !jQuery.isReady ) { try { // Use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ top.doScroll("left"); } catch(e) { return setTimeout( doScrollCheck, 50 ); } // and execute any waiting functions jQuery.ready(); } })(); } } } return readyList.promise( obj ); }; // Populate the class2type map jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); }); function isArraylike( obj ) { var length = obj.length, type = jQuery.type( obj ); if ( jQuery.isWindow( obj ) ) { return false; } if ( obj.nodeType === 1 && length ) { return true; } return type === "array" || type !== "function" && ( length === 0 || typeof length === "number" && length > 0 && ( length - 1 ) in obj ); } // All jQuery objects should point back to these rootjQuery = jQuery(document); // String to Object options format cache var optionsCache = {}; // Convert String-formatted options into Object-formatted ones and store in cache function createOptions( options ) { var object = optionsCache[ options ] = {}; jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { object[ flag ] = true; }); return object; } /* * Create a callback list using the following parameters: * * options: an optional list of space-separated options that will change how * the callback list behaves or a more traditional option object * * By default a callback list will act like an event callback list and can be * "fired" multiple times. * * Possible options: * * once: will ensure the callback list can only be fired once (like a Deferred) * * memory: will keep track of previous values and will call any callback added * after the list has been fired right away with the latest "memorized" * values (like a Deferred) * * unique: will ensure a callback can only be added once (no duplicate in the list) * * stopOnFalse: interrupt callings when a callback returns false * */ jQuery.Callbacks = function( options ) { // Convert options from String-formatted to Object-formatted if needed // (we check in cache first) options = typeof options === "string" ? ( optionsCache[ options ] || createOptions( options ) ) : jQuery.extend( {}, options ); var // Last fire value (for non-forgettable lists) memory, // Flag to know if list was already fired fired, // Flag to know if list is currently firing firing, // First callback to fire (used internally by add and fireWith) firingStart, // End of the loop when firing firingLength, // Index of currently firing callback (modified by remove if needed) firingIndex, // Actual callback list list = [], // Stack of fire calls for repeatable lists stack = !options.once && [], // Fire callbacks fire = function( data ) { memory = options.memory && data; fired = true; firingIndex = firingStart || 0; firingStart = 0; firingLength = list.length; firing = true; for ( ; list && firingIndex < firingLength; firingIndex++ ) { if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { memory = false; // To prevent further calls using add break; } } firing = false; if ( list ) { if ( stack ) { if ( stack.length ) { fire( stack.shift() ); } } else if ( memory ) { list = []; } else { self.disable(); } } }, // Actual Callbacks object self = { // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { // First, we save the current length var start = list.length; (function add( args ) { jQuery.each( args, function( _, arg ) { var type = jQuery.type( arg ); if ( type === "function" ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } } else if ( arg && arg.length && type !== "string" ) { // Inspect recursively add( arg ); } }); })( arguments ); // Do we need to add the callbacks to the // current firing batch? if ( firing ) { firingLength = list.length; // With memory, if we're not firing then // we should call right away } else if ( memory ) { firingStart = start; fire( memory ); } } return this; }, // Remove a callback from the list remove: function() { if ( list ) { jQuery.each( arguments, function( _, arg ) { var index; while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { list.splice( index, 1 ); // Handle firing indexes if ( firing ) { if ( index <= firingLength ) { firingLength--; } if ( index <= firingIndex ) { firingIndex--; } } } }); } return this; }, // Control if a given callback is in the list has: function( fn ) { return jQuery.inArray( fn, list ) > -1; }, // Remove all callbacks from the list empty: function() { list = []; return this; }, // Have the list do nothing anymore disable: function() { list = stack = memory = undefined; return this; }, // Is it disabled? disabled: function() { return !list; }, // Lock the list in its current state lock: function() { stack = undefined; if ( !memory ) { self.disable(); } return this; }, // Is it locked? locked: function() { return !stack; }, // Call all callbacks with the given context and arguments fireWith: function( context, args ) { args = args || []; args = [ context, args.slice ? args.slice() : args ]; if ( list && ( !fired || stack ) ) { if ( firing ) { stack.push( args ); } else { fire( args ); } } return this; }, // Call all the callbacks with the given arguments fire: function() { self.fireWith( this, arguments ); return this; }, // To know if the callbacks have already been called at least once fired: function() { return !!fired; } }; return self; }; jQuery.extend({ Deferred: function( func ) { var tuples = [ // action, add listener, listener list, final state [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], [ "notify", "progress", jQuery.Callbacks("memory") ] ], state = "pending", promise = { state: function() { return state; }, always: function() { deferred.done( arguments ).fail( arguments ); return this; }, then: function( /* fnDone, fnFail, fnProgress */ ) { var fns = arguments; return jQuery.Deferred(function( newDefer ) { jQuery.each( tuples, function( i, tuple ) { var action = tuple[ 0 ], fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; // deferred[ done | fail | progress ] for forwarding actions to newDefer deferred[ tuple[1] ](function() { var returned = fn && fn.apply( this, arguments ); if ( returned && jQuery.isFunction( returned.promise ) ) { returned.promise() .done( newDefer.resolve ) .fail( newDefer.reject ) .progress( newDefer.notify ); } else { newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); } }); }); fns = null; }).promise(); }, // Get a promise for this deferred // If obj is provided, the promise aspect is added to the object promise: function( obj ) { return obj != null ? jQuery.extend( obj, promise ) : promise; } }, deferred = {}; // Keep pipe for back-compat promise.pipe = promise.then; // Add list-specific methods jQuery.each( tuples, function( i, tuple ) { var list = tuple[ 2 ], stateString = tuple[ 3 ]; // promise[ done | fail | progress ] = list.add promise[ tuple[1] ] = list.add; // Handle state if ( stateString ) { list.add(function() { // state = [ resolved | rejected ] state = stateString; // [ reject_list | resolve_list ].disable; progress_list.lock }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); } // deferred[ resolve | reject | notify ] deferred[ tuple[0] ] = function() { deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); return this; }; deferred[ tuple[0] + "With" ] = list.fireWith; }); // Make the deferred a promise promise.promise( deferred ); // Call given func if any if ( func ) { func.call( deferred, deferred ); } // All done! return deferred; }, // Deferred helper when: function( subordinate /* , ..., subordinateN */ ) { var i = 0, resolveValues = core_slice.call( arguments ), length = resolveValues.length, // the count of uncompleted subordinates remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, // the master Deferred. If resolveValues consist of only a single Deferred, just use that. deferred = remaining === 1 ? subordinate : jQuery.Deferred(), // Update function for both resolve and progress values updateFunc = function( i, contexts, values ) { return function( value ) { contexts[ i ] = this; values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; if( values === progressValues ) { deferred.notifyWith( contexts, values ); } else if ( !( --remaining ) ) { deferred.resolveWith( contexts, values ); } }; }, progressValues, progressContexts, resolveContexts; // add listeners to Deferred subordinates; treat others as resolved if ( length > 1 ) { progressValues = new Array( length ); progressContexts = new Array( length ); resolveContexts = new Array( length ); for ( ; i < length; i++ ) { if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { resolveValues[ i ].promise() .done( updateFunc( i, resolveContexts, resolveValues ) ) .fail( deferred.reject ) .progress( updateFunc( i, progressContexts, progressValues ) ); } else { --remaining; } } } // if we're not waiting on anything, resolve the master if ( !remaining ) { deferred.resolveWith( resolveContexts, resolveValues ); } return deferred.promise(); } }); jQuery.support = (function() { var support, all, a, select, opt, input, fragment, eventName, isSupported, i, div = document.createElement("div"); // Setup div.setAttribute( "className", "t" ); div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; // Support tests won't run in some limited or non-browser environments all = div.getElementsByTagName("*"); a = div.getElementsByTagName("a")[ 0 ]; if ( !all || !a || !all.length ) { return {}; } // First batch of tests select = document.createElement("select"); opt = select.appendChild( document.createElement("option") ); input = div.getElementsByTagName("input")[ 0 ]; a.style.cssText = "top:1px;float:left;opacity:.5"; support = { // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) getSetAttribute: div.className !== "t", // IE strips leading whitespace when .innerHTML is used leadingWhitespace: div.firstChild.nodeType === 3, // Make sure that tbody elements aren't automatically inserted // IE will insert them into empty tables tbody: !div.getElementsByTagName("tbody").length, // Make sure that link elements get serialized correctly by innerHTML // This requires a wrapper element in IE htmlSerialize: !!div.getElementsByTagName("link").length, // Get the style information from getAttribute // (IE uses .cssText instead) style: /top/.test( a.getAttribute("style") ), // Make sure that URLs aren't manipulated // (IE normalizes it by default) hrefNormalized: a.getAttribute("href") === "/a", // Make sure that element opacity exists // (IE uses filter instead) // Use a regex to work around a WebKit issue. See #5145 opacity: /^0.5/.test( a.style.opacity ), // Verify style float existence // (IE uses styleFloat instead of cssFloat) cssFloat: !!a.style.cssFloat, // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) checkOn: !!input.value, // Make sure that a selected-by-default option has a working selected property. // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) optSelected: opt.selected, // Tests for enctype support on a form (#6743) enctype: !!document.createElement("form").enctype, // Makes sure cloning an html5 element does not cause problems // Where outerHTML is undefined, this still works html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>", // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode boxModel: document.compatMode === "CSS1Compat", // Will be defined later deleteExpando: true, noCloneEvent: true, inlineBlockNeedsLayout: false, shrinkWrapBlocks: false, reliableMarginRight: true, boxSizingReliable: true, pixelPosition: false }; // Make sure checked status is properly cloned input.checked = true; support.noCloneChecked = input.cloneNode( true ).checked; // Make sure that the options inside disabled selects aren't marked as disabled // (WebKit marks them as disabled) select.disabled = true; support.optDisabled = !opt.disabled; // Support: IE<9 try { delete div.test; } catch( e ) { support.deleteExpando = false; } // Check if we can trust getAttribute("value") input = document.createElement("input"); input.setAttribute( "value", "" ); support.input = input.getAttribute( "value" ) === ""; // Check if an input maintains its value after becoming a radio input.value = "t"; input.setAttribute( "type", "radio" ); support.radioValue = input.value === "t"; // #11217 - WebKit loses check when the name is after the checked attribute input.setAttribute( "checked", "t" ); input.setAttribute( "name", "t" ); fragment = document.createDocumentFragment(); fragment.appendChild( input ); // Check if a disconnected checkbox will retain its checked // value of true after appended to the DOM (IE6/7) support.appendChecked = input.checked; // WebKit doesn't clone checked state correctly in fragments support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; // Support: IE<9 // Opera does not clone events (and typeof div.attachEvent === undefined). // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() if ( div.attachEvent ) { div.attachEvent( "onclick", function() { support.noCloneEvent = false; }); div.cloneNode( true ).click(); } // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP), test/csp.php for ( i in { submit: true, change: true, focusin: true }) { div.setAttribute( eventName = "on" + i, "t" ); support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; } div.style.backgroundClip = "content-box"; div.cloneNode( true ).style.backgroundClip = ""; support.clearCloneStyle = div.style.backgroundClip === "content-box"; // Run tests that need a body at doc ready jQuery(function() { var container, marginDiv, tds, divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", body = document.getElementsByTagName("body")[0]; if ( !body ) { // Return for frameset docs that don't have a body return; } container = document.createElement("div"); container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; body.appendChild( container ).appendChild( div ); // Support: IE8 // Check if table cells still have offsetWidth/Height when they are set // to display:none and there are still other visible table cells in a // table row; if so, offsetWidth/Height are not reliable for use when // determining if an element has been hidden directly using // display:none (it is still safe to use offsets if a parent element is // hidden; don safety goggles and see bug #4512 for more information). div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>"; tds = div.getElementsByTagName("td"); tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; isSupported = ( tds[ 0 ].offsetHeight === 0 ); tds[ 0 ].style.display = ""; tds[ 1 ].style.display = "none"; // Support: IE8 // Check if empty table cells still have offsetWidth/Height support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); // Check box-sizing and margin behavior div.innerHTML = ""; div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; support.boxSizing = ( div.offsetWidth === 4 ); support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 ); // Use window.getComputedStyle because jsdom on node.js will break without it. if ( window.getComputedStyle ) { support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; // Check if div with explicit width and no margin-right incorrectly // gets computed margin-right based on width of container. (#3333) // Fails in WebKit before Feb 2011 nightlies // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right marginDiv = div.appendChild( document.createElement("div") ); marginDiv.style.cssText = div.style.cssText = divReset; marginDiv.style.marginRight = marginDiv.style.width = "0"; div.style.width = "1px"; support.reliableMarginRight = !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); } if ( typeof div.style.zoom !== "undefined" ) { // Support: IE<8 // Check if natively block-level elements act like inline-block // elements when setting their display to 'inline' and giving // them layout div.innerHTML = ""; div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); // Support: IE6 // Check if elements with layout shrink-wrap their children div.style.display = "block"; div.innerHTML = "<div></div>"; div.firstChild.style.width = "5px"; support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); // Prevent IE 6 from affecting layout for positioned elements #11048 // Prevent IE from shrinking the body in IE 7 mode #12869 body.style.zoom = 1; } body.removeChild( container ); // Null elements to avoid leaks in IE container = div = tds = marginDiv = null; }); // Null elements to avoid leaks in IE all = select = fragment = opt = a = input = null; return support; })(); var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, rmultiDash = /([A-Z])/g; function internalData( elem, name, data, pvt /* Internal Use Only */ ){ if ( !jQuery.acceptData( elem ) ) { return; } var thisCache, ret, internalKey = jQuery.expando, getByName = typeof name === "string", // We have to handle DOM nodes and JS objects differently because IE6-7 // can't GC object references properly across the DOM-JS boundary isNode = elem.nodeType, // Only DOM nodes need the global jQuery cache; JS object data is // attached directly to the object so GC can occur automatically cache = isNode ? jQuery.cache : elem, // Only defining an ID for JS objects if its cache already exists allows // the code to shortcut on the same path as a DOM node with no cache id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; // Avoid doing any more work than we need to when trying to get data on an // object that has no data at all if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) { return; } if ( !id ) { // Only DOM nodes need a new unique ID for each element since their data // ends up in the global cache if ( isNode ) { elem[ internalKey ] = id = core_deletedIds.pop() || jQuery.guid++; } else { id = internalKey; } } if ( !cache[ id ] ) { cache[ id ] = {}; // Avoids exposing jQuery metadata on plain JS objects when the object // is serialized using JSON.stringify if ( !isNode ) { cache[ id ].toJSON = jQuery.noop; } } // An object can be passed to jQuery.data instead of a key/value pair; this gets // shallow copied over onto the existing cache if ( typeof name === "object" || typeof name === "function" ) { if ( pvt ) { cache[ id ] = jQuery.extend( cache[ id ], name ); } else { cache[ id ].data = jQuery.extend( cache[ id ].data, name ); } } thisCache = cache[ id ]; // jQuery data() is stored in a separate object inside the object's internal data // cache in order to avoid key collisions between internal data and user-defined // data. if ( !pvt ) { if ( !thisCache.data ) { thisCache.data = {}; } thisCache = thisCache.data; } if ( data !== undefined ) { thisCache[ jQuery.camelCase( name ) ] = data; } // Check for both converted-to-camel and non-converted data property names // If a data property was specified if ( getByName ) { // First Try to find as-is property data ret = thisCache[ name ]; // Test for null|undefined property data if ( ret == null ) { // Try to find the camelCased property ret = thisCache[ jQuery.camelCase( name ) ]; } } else { ret = thisCache; } return ret; } function internalRemoveData( elem, name, pvt /* For internal use only */ ){ if ( !jQuery.acceptData( elem ) ) { return; } var thisCache, i, l, isNode = elem.nodeType, // See jQuery.data for more information cache = isNode ? jQuery.cache : elem, id = isNode ? elem[ jQuery.expando ] : jQuery.expando; // If there is already no cache entry for this object, there is no // purpose in continuing if ( !cache[ id ] ) { return; } if ( name ) { thisCache = pvt ? cache[ id ] : cache[ id ].data; if ( thisCache ) { // Support array or space separated string names for data keys if ( !jQuery.isArray( name ) ) { // try the string as a key before any manipulation if ( name in thisCache ) { name = [ name ]; } else { // split the camel cased version by spaces unless a key with the spaces exists name = jQuery.camelCase( name ); if ( name in thisCache ) { name = [ name ]; } else { name = name.split(" "); } } } else { // If "name" is an array of keys... // When data is initially created, via ("key", "val") signature, // keys will be converted to camelCase. // Since there is no way to tell _how_ a key was added, remove // both plain key and camelCase key. #12786 // This will only penalize the array argument path. name = name.concat( jQuery.map( name, jQuery.camelCase ) ); } for ( i = 0, l = name.length; i < l; i++ ) { delete thisCache[ name[i] ]; } // If there is no data left in the cache, we want to continue // and let the cache object itself get destroyed if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { return; } } } // See jQuery.data for more information if ( !pvt ) { delete cache[ id ].data; // Don't destroy the parent cache unless the internal data object // had been the only thing left in it if ( !isEmptyDataObject( cache[ id ] ) ) { return; } } // Destroy the cache if ( isNode ) { jQuery.cleanData( [ elem ], true ); // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) } else if ( jQuery.support.deleteExpando || cache != cache.window ) { delete cache[ id ]; // When all else fails, null } else { cache[ id ] = null; } } jQuery.extend({ cache: {}, // Unique for each copy of jQuery on the page // Non-digits removed to match rinlinejQuery expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), // The following elements throw uncatchable exceptions if you // attempt to add expando properties to them. noData: { "embed": true, // Ban all objects except for Flash (which handle expandos) "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", "applet": true }, hasData: function( elem ) { elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; return !!elem && !isEmptyDataObject( elem ); }, data: function( elem, name, data ) { return internalData( elem, name, data, false ); }, removeData: function( elem, name ) { return internalRemoveData( elem, name, false ); }, // For internal use only. _data: function( elem, name, data ) { return internalData( elem, name, data, true ); }, _removeData: function( elem, name ) { return internalRemoveData( elem, name, true ); }, // A method for determining if a DOM node can handle the data expando acceptData: function( elem ) { var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; // nodes accept data unless otherwise specified; rejection can be conditional return !noData || noData !== true && elem.getAttribute("classid") === noData; } }); jQuery.fn.extend({ data: function( key, value ) { var attrs, name, elem = this[0], i = 0, data = null; // Gets all values if ( key === undefined ) { if ( this.length ) { data = jQuery.data( elem ); if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { attrs = elem.attributes; for ( ; i < attrs.length; i++ ) { name = attrs[i].name; if ( !name.indexOf( "data-" ) ) { name = jQuery.camelCase( name.substring(5) ); dataAttr( elem, name, data[ name ] ); } } jQuery._data( elem, "parsedAttrs", true ); } } return data; } // Sets multiple values if ( typeof key === "object" ) { return this.each(function() { jQuery.data( this, key ); }); } return jQuery.access( this, function( value ) { if ( value === undefined ) { // Try to fetch any internally stored data first return elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; } this.each(function() { jQuery.data( this, key, value ); }); }, null, value, arguments.length > 1, null, true ); }, removeData: function( key ) { return this.each(function() { jQuery.removeData( this, key ); }); } }); function dataAttr( elem, key, data ) { // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); data = elem.getAttribute( name ); if ( typeof data === "string" ) { try { data = data === "true" ? true : data === "false" ? false : data === "null" ? null : // Only convert to a number if it doesn't change the string +data + "" === data ? +data : rbrace.test( data ) ? jQuery.parseJSON( data ) : data; } catch( e ) {} // Make sure we set the data so it isn't changed later jQuery.data( elem, key, data ); } else { data = undefined; } } return data; } // checks a cache object for emptiness function isEmptyDataObject( obj ) { var name; for ( name in obj ) { // if the public data object is empty, the private is still empty if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { continue; } if ( name !== "toJSON" ) { return false; } } return true; } jQuery.extend({ queue: function( elem, type, data ) { var queue; if ( elem ) { type = ( type || "fx" ) + "queue"; queue = jQuery._data( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { if ( !queue || jQuery.isArray(data) ) { queue = jQuery._data( elem, type, jQuery.makeArray(data) ); } else { queue.push( data ); } } return queue || []; } }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), startLength = queue.length, fn = queue.shift(), hooks = jQuery._queueHooks( elem, type ), next = function() { jQuery.dequeue( elem, type ); }; // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); startLength--; } hooks.cur = fn; if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift( "inprogress" ); } // clear up the last queue stop function delete hooks.stop; fn.call( elem, next, hooks ); } if ( !startLength && hooks ) { hooks.empty.fire(); } }, // not intended for public consumption - generates a queueHooks object, or returns the current one _queueHooks: function( elem, type ) { var key = type + "queueHooks"; return jQuery._data( elem, key ) || jQuery._data( elem, key, { empty: jQuery.Callbacks("once memory").add(function() { jQuery._removeData( elem, type + "queue" ); jQuery._removeData( elem, key ); }) }); } }); jQuery.fn.extend({ queue: function( type, data ) { var setter = 2; if ( typeof type !== "string" ) { data = type; type = "fx"; setter--; } if ( arguments.length < setter ) { return jQuery.queue( this[0], type ); } return data === undefined ? this : this.each(function() { var queue = jQuery.queue( this, type, data ); // ensure a hooks for this queue jQuery._queueHooks( this, type ); if ( type === "fx" && queue[0] !== "inprogress" ) { jQuery.dequeue( this, type ); } }); }, dequeue: function( type ) { return this.each(function() { jQuery.dequeue( this, type ); }); }, // Based off of the plugin by Clint Helfers, with permission. // http://blindsignals.com/index.php/2009/07/jquery-delay/ delay: function( time, type ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; type = type || "fx"; return this.queue( type, function( next, hooks ) { var timeout = setTimeout( next, time ); hooks.stop = function() { clearTimeout( timeout ); }; }); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); }, // Get a promise resolved when queues of a certain type // are emptied (fx is the type by default) promise: function( type, obj ) { var tmp, count = 1, defer = jQuery.Deferred(), elements = this, i = this.length, resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }; if ( typeof type !== "string" ) { obj = type; type = undefined; } type = type || "fx"; while( i-- ) { tmp = jQuery._data( elements[ i ], type + "queueHooks" ); if ( tmp && tmp.empty ) { count++; tmp.empty.add( resolve ); } } resolve(); return defer.promise( obj ); } }); var nodeHook, boolHook, rclass = /[\t\r\n]/g, rreturn = /\r/g, rfocusable = /^(?:input|select|textarea|button|object)$/i, rclickable = /^(?:a|area)$/i, rboolean = /^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i, ruseDefault = /^(?:checked|selected)$/i, getSetAttribute = jQuery.support.getSetAttribute, getSetInput = jQuery.support.input; jQuery.fn.extend({ attr: function( name, value ) { return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); }, removeAttr: function( name ) { return this.each(function() { jQuery.removeAttr( this, name ); }); }, prop: function( name, value ) { return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); }, removeProp: function( name ) { name = jQuery.propFix[ name ] || name; return this.each(function() { // try/catch handles cases where IE balks (such as removing a property on window) try { this[ name ] = undefined; delete this[ name ]; } catch( e ) {} }); }, addClass: function( value ) { var classes, elem, cur, clazz, j, i = 0, len = this.length, proceed = typeof value === "string" && value; if ( jQuery.isFunction( value ) ) { return this.each(function( j ) { jQuery( this ).addClass( value.call( this, j, this.className ) ); }); } if ( proceed ) { // The disjunction here is for better compressibility (see removeClass) classes = ( value || "" ).match( core_rnotwhite ) || []; for ( ; i < len; i++ ) { elem = this[ i ]; cur = elem.nodeType === 1 && ( elem.className ? ( " " + elem.className + " " ).replace( rclass, " " ) : " " ); if ( cur ) { j = 0; while ( (clazz = classes[j++]) ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) { cur += clazz + " "; } } elem.className = jQuery.trim( cur ); } } } return this; }, removeClass: function( value ) { var classes, elem, cur, clazz, j, i = 0, len = this.length, proceed = arguments.length === 0 || typeof value === "string" && value; if ( jQuery.isFunction( value ) ) { return this.each(function( j ) { jQuery( this ).removeClass( value.call( this, j, this.className ) ); }); } if ( proceed ) { classes = ( value || "" ).match( core_rnotwhite ) || []; for ( ; i < len; i++ ) { elem = this[ i ]; // This expression is here for better compressibility (see addClass) cur = elem.nodeType === 1 && ( elem.className ? ( " " + elem.className + " " ).replace( rclass, " " ) : "" ); if ( cur ) { j = 0; while ( (clazz = classes[j++]) ) { // Remove *all* instances while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { cur = cur.replace( " " + clazz + " ", " " ); } } elem.className = value ? jQuery.trim( cur ) : ""; } } } return this; }, toggleClass: function( value, stateVal ) { var type = typeof value, isBool = typeof stateVal === "boolean"; if ( jQuery.isFunction( value ) ) { return this.each(function( i ) { jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); }); } return this.each(function() { if ( type === "string" ) { // toggle individual class names var className, i = 0, self = jQuery( this ), state = stateVal, classNames = value.match( core_rnotwhite ) || []; while ( (className = classNames[ i++ ]) ) { // check each className given, space separated list state = isBool ? state : !self.hasClass( className ); self[ state ? "addClass" : "removeClass" ]( className ); } // Toggle whole class name } else if ( type === "undefined" || type === "boolean" ) { if ( this.className ) { // store className if set jQuery._data( this, "__className__", this.className ); } // If the element has a class name or if we're passed "false", // then remove the whole classname (if there was one, the above saved it). // Otherwise bring back whatever was previously saved (if anything), // falling back to the empty string if nothing was stored. this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; } }); }, hasClass: function( selector ) { var className = " " + selector + " ", i = 0, l = this.length; for ( ; i < l; i++ ) { if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { return true; } } return false; }, val: function( value ) { var hooks, ret, isFunction, elem = this[0]; if ( !arguments.length ) { if ( elem ) { hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { return ret; } ret = elem.value; return typeof ret === "string" ? // handle most common string cases ret.replace(rreturn, "") : // handle cases where value is null/undef or number ret == null ? "" : ret; } return; } isFunction = jQuery.isFunction( value ); return this.each(function( i ) { var val, self = jQuery(this); if ( this.nodeType !== 1 ) { return; } if ( isFunction ) { val = value.call( this, i, self.val() ); } else { val = value; } // Treat null/undefined as ""; convert numbers to string if ( val == null ) { val = ""; } else if ( typeof val === "number" ) { val += ""; } else if ( jQuery.isArray( val ) ) { val = jQuery.map(val, function ( value ) { return value == null ? "" : value + ""; }); } hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; // If set returns undefined, fall back to normal setting if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { this.value = val; } }); } }); jQuery.extend({ valHooks: { option: { get: function( elem ) { // attributes.value is undefined in Blackberry 4.7 but // uses .value. See #6932 var val = elem.attributes.value; return !val || val.specified ? elem.value : elem.text; } }, select: { get: function( elem ) { var value, option, options = elem.options, index = elem.selectedIndex, one = elem.type === "select-one" || index < 0, values = one ? null : [], max = one ? index + 1 : options.length, i = index < 0 ? max : one ? index : 0; // Loop through all the selected options for ( ; i < max; i++ ) { option = options[ i ]; // oldIE doesn't update selected after form reset (#2551) if ( ( option.selected || i === index ) && // Don't return options that are disabled or in a disabled optgroup ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { // Get the specific value for the option value = jQuery( option ).val(); // We don't need an array for one selects if ( one ) { return value; } // Multi-Selects return an array values.push( value ); } } return values; }, set: function( elem, value ) { var values = jQuery.makeArray( value ); jQuery(elem).find("option").each(function() { this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; }); if ( !values.length ) { elem.selectedIndex = -1; } return values; } } }, attr: function( elem, name, value ) { var ret, hooks, notxml, nType = elem.nodeType; // don't get/set attributes on text, comment and attribute nodes if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { return; } // Fallback to prop when attributes are not supported if ( typeof elem.getAttribute === "undefined" ) { return jQuery.prop( elem, name, value ); } notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); // All attributes are lowercase // Grab necessary hook if one is defined if ( notxml ) { name = name.toLowerCase(); hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); } if ( value !== undefined ) { if ( value === null ) { jQuery.removeAttr( elem, name ); } else if ( hooks && notxml && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { return ret; } else { elem.setAttribute( name, value + "" ); return value; } } else if ( hooks && notxml && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { return ret; } else { // In IE9+, Flash objects don't have .getAttribute (#12945) // Support: IE9+ if ( typeof elem.getAttribute !== "undefined" ) { ret = elem.getAttribute( name ); } // Non-existent attributes return null, we normalize to undefined return ret == null ? undefined : ret; } }, removeAttr: function( elem, value ) { var name, propName, i = 0, attrNames = value && value.match( core_rnotwhite ); if ( attrNames && elem.nodeType === 1 ) { while ( (name = attrNames[i++]) ) { propName = jQuery.propFix[ name ] || name; // Boolean attributes get special treatment (#10870) if ( rboolean.test( name ) ) { // Set corresponding property to false for boolean attributes // Also clear defaultChecked/defaultSelected (if appropriate) for IE<8 if ( !getSetAttribute && ruseDefault.test( name ) ) { elem[ jQuery.camelCase( "default-" + name ) ] = elem[ propName ] = false; } else { elem[ propName ] = false; } // See #9699 for explanation of this approach (setting first, then removal) } else { jQuery.attr( elem, name, "" ); } elem.removeAttribute( getSetAttribute ? name : propName ); } } }, attrHooks: { type: { set: function( elem, value ) { if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { // Setting the type on a radio button after the value resets the value in IE6-9 // Reset value to default in case type is set after value during creation var val = elem.value; elem.setAttribute( "type", value ); if ( val ) { elem.value = val; } return value; } } } }, propFix: { tabindex: "tabIndex", readonly: "readOnly", "for": "htmlFor", "class": "className", maxlength: "maxLength", cellspacing: "cellSpacing", cellpadding: "cellPadding", rowspan: "rowSpan", colspan: "colSpan", usemap: "useMap", frameborder: "frameBorder", contenteditable: "contentEditable" }, prop: function( elem, name, value ) { var ret, hooks, notxml, nType = elem.nodeType; // don't get/set properties on text, comment and attribute nodes if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { return; } notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); if ( notxml ) { // Fix name and attach hooks name = jQuery.propFix[ name ] || name; hooks = jQuery.propHooks[ name ]; } if ( value !== undefined ) { if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { return ret; } else { return ( elem[ name ] = value ); } } else { if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { return ret; } else { return elem[ name ]; } } }, propHooks: { tabIndex: { get: function( elem ) { // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ var attributeNode = elem.getAttributeNode("tabindex"); return attributeNode && attributeNode.specified ? parseInt( attributeNode.value, 10 ) : rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? 0 : undefined; } } } }); // Hook for boolean attributes boolHook = { get: function( elem, name ) { var // Use .prop to determine if this attribute is understood as boolean prop = jQuery.prop( elem, name ), // Fetch it accordingly attr = typeof prop === "boolean" && elem.getAttribute( name ), detail = typeof prop === "boolean" ? getSetInput && getSetAttribute ? attr != null : // oldIE fabricates an empty string for missing boolean attributes // and conflates checked/selected into attroperties ruseDefault.test( name ) ? elem[ jQuery.camelCase( "default-" + name ) ] : !!attr : // fetch an attribute node for properties not recognized as boolean elem.getAttributeNode( name ); return detail && detail.value !== false ? name.toLowerCase() : undefined; }, set: function( elem, value, name ) { if ( value === false ) { // Remove boolean attributes when set to false jQuery.removeAttr( elem, name ); } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { // IE<8 needs the *property* name elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); // Use defaultChecked and defaultSelected for oldIE } else { elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; } return name; } }; // fix oldIE value attroperty if ( !getSetInput || !getSetAttribute ) { jQuery.attrHooks.value = { get: function( elem, name ) { var ret = elem.getAttributeNode( name ); return jQuery.nodeName( elem, "input" ) ? // Ignore the value *property* by using defaultValue elem.defaultValue : ret && ret.specified ? ret.value : undefined; }, set: function( elem, value, name ) { if ( jQuery.nodeName( elem, "input" ) ) { // Does not return so that setAttribute is also used elem.defaultValue = value; } else { // Use nodeHook if defined (#1954); otherwise setAttribute is fine return nodeHook && nodeHook.set( elem, value, name ); } } }; } // IE6/7 do not support getting/setting some attributes with get/setAttribute if ( !getSetAttribute ) { // Use this for any attribute in IE6/7 // This fixes almost every IE6/7 issue nodeHook = jQuery.valHooks.button = { get: function( elem, name ) { var ret = elem.getAttributeNode( name ); return ret && ( name === "id" || name === "name" || name === "coords" ? ret.value !== "" : ret.specified ) ? ret.value : undefined; }, set: function( elem, value, name ) { // Set the existing or create a new attribute node var ret = elem.getAttributeNode( name ); if ( !ret ) { elem.setAttributeNode( (ret = elem.ownerDocument.createAttribute( name )) ); } ret.value = value += ""; // Break association with cloned elements by also using setAttribute (#9646) return name === "value" || value === elem.getAttribute( name ) ? value : undefined; } }; // Set contenteditable to false on removals(#10429) // Setting to empty string throws an error as an invalid value jQuery.attrHooks.contenteditable = { get: nodeHook.get, set: function( elem, value, name ) { nodeHook.set( elem, value === "" ? false : value, name ); } }; // Set width and height to auto instead of 0 on empty string( Bug #8150 ) // This is for removals jQuery.each([ "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { set: function( elem, value ) { if ( value === "" ) { elem.setAttribute( name, "auto" ); return value; } } }); }); } // Some attributes require a special call on IE // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx if ( !jQuery.support.hrefNormalized ) { jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { get: function( elem ) { var ret = elem.getAttribute( name, 2 ); return ret == null ? undefined : ret; } }); }); // href/src property should get the full normalized URL (#10299/#12915) jQuery.each([ "href", "src" ], function( i, name ) { jQuery.propHooks[ name ] = { get: function( elem ) { return elem.getAttribute( name, 4 ); } }; }); } if ( !jQuery.support.style ) { jQuery.attrHooks.style = { get: function( elem ) { // Return undefined in the case of empty string // Note: IE uppercases css property names, but if we were to .toLowerCase() // .cssText, that would destroy case senstitivity in URL's, like in "background" return elem.style.cssText || undefined; }, set: function( elem, value ) { return ( elem.style.cssText = value + "" ); } }; } // Safari mis-reports the default selected property of an option // Accessing the parent's selectedIndex property fixes it if ( !jQuery.support.optSelected ) { jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { get: function( elem ) { var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; // Make sure that it also works with optgroups, see #5701 if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } return null; } }); } // IE6/7 call enctype encoding if ( !jQuery.support.enctype ) { jQuery.propFix.enctype = "encoding"; } // Radios and checkboxes getter/setter if ( !jQuery.support.checkOn ) { jQuery.each([ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = { get: function( elem ) { // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified return elem.getAttribute("value") === null ? "on" : elem.value; } }; }); } jQuery.each([ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { set: function( elem, value ) { if ( jQuery.isArray( value ) ) { return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); } } }); }); var rformElems = /^(?:input|select|textarea)$/i, rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|contextmenu)|click/, rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; function returnTrue() { return true; } function returnFalse() { return false; } /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { global: {}, add: function( elem, types, handler, data, selector ) { var handleObjIn, eventHandle, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, // Don't attach events to noData or text/comment nodes (but allow plain objects) elemData = elem.nodeType !== 3 && elem.nodeType !== 8 && jQuery._data( elem ); if ( !elemData ) { return; } // Caller can pass in an object of custom data in lieu of the handler if ( handler.handler ) { handleObjIn = handler; handler = handleObjIn.handler; selector = handleObjIn.selector; } // Make sure that the handler has a unique ID, used to find/remove it later if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure and main handler, if this is the first if ( !(events = elemData.events) ) { events = elemData.events = {}; } if ( !(eventHandle = elemData.handle) ) { eventHandle = elemData.handle = function( e ) { // Discard the second event of a jQuery.event.trigger() and // when an event is called after a page has unloaded return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : undefined; }; // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events eventHandle.elem = elem; } // Handle multiple events separated by a space // jQuery(...).bind("mouseover mouseout", fn); types = ( types || "" ).match( core_rnotwhite ) || [""]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[t] ) || []; type = origType = tmp[1]; namespaces = ( tmp[2] || "" ).split( "." ).sort(); // If event changes its type, use the special event handlers for the changed type special = jQuery.event.special[ type ] || {}; // If selector defined, determine special event api type, otherwise given type type = ( selector ? special.delegateType : special.bindType ) || type; // Update special based on newly reset type special = jQuery.event.special[ type ] || {}; // handleObj is passed to all event handlers handleObj = jQuery.extend({ type: type, origType: origType, data: data, handler: handler, guid: handler.guid, selector: selector, needsContext: selector && jQuery.expr.match.needsContext.test( selector ), namespace: namespaces.join(".") }, handleObjIn ); // Init the event handler queue if we're the first if ( !(handlers = events[ type ]) ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener/attachEvent if the special events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { // Bind the global event handler to the element if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle, false ); } else if ( elem.attachEvent ) { elem.attachEvent( "on" + type, eventHandle ); } } } if ( special.add ) { special.add.call( elem, handleObj ); if ( !handleObj.handler.guid ) { handleObj.handler.guid = handler.guid; } } // Add to the element's handler list, delegates in front if ( selector ) { handlers.splice( handlers.delegateCount++, 0, handleObj ); } else { handlers.push( handleObj ); } // Keep track of which events have ever been used, for event optimization jQuery.event.global[ type ] = true; } // Nullify elem to prevent memory leaks in IE elem = null; }, // Detach an event or set of events from an element remove: function( elem, types, handler, selector, mappedTypes ) { var j, origCount, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = jQuery.hasData( elem ) && jQuery._data( elem ); if ( !elemData || !(events = elemData.events) ) { return; } // Once for each type.namespace in types; type may be omitted types = ( types || "" ).match( core_rnotwhite ) || [""]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[t] ) || []; type = origType = tmp[1]; namespaces = ( tmp[2] || "" ).split( "." ).sort(); // Unbind all events (on this namespace, if provided) for the element if ( !type ) { for ( type in events ) { jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); } continue; } special = jQuery.event.special[ type ] || {}; type = ( selector ? special.delegateType : special.bindType ) || type; handlers = events[ type ] || []; tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); // Remove matching events origCount = j = handlers.length; while ( j-- ) { handleObj = handlers[ j ]; if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !tmp || tmp.test( handleObj.namespace ) ) && ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { handlers.splice( j, 1 ); if ( handleObj.selector ) { handlers.delegateCount--; } if ( special.remove ) { special.remove.call( elem, handleObj ); } } } // Remove generic event handler if we removed something and no more handlers exist // (avoids potential for endless recursion during removal of special event handlers) if ( origCount && !handlers.length ) { if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } delete events[ type ]; } } // Remove the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { delete elemData.handle; // removeData also checks for emptiness and clears the expando if empty // so use it instead of delete jQuery._removeData( elem, "events" ); } }, trigger: function( event, data, elem, onlyHandlers ) { var i, cur, tmp, bubbleType, ontype, handle, special, eventPath = [ elem || document ], type = event.type || event, namespaces = event.namespace ? event.namespace.split(".") : []; cur = tmp = elem = elem || document; // Don't do events on text and comment nodes if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } // focus/blur morphs to focusin/out; ensure we're not firing them right now if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { return; } if ( type.indexOf(".") >= 0 ) { // Namespaced trigger; create a regexp to match event type in handle() namespaces = type.split("."); type = namespaces.shift(); namespaces.sort(); } ontype = type.indexOf(":") < 0 && "on" + type; // Caller can pass in a jQuery.Event object, Object, or just an event type string event = event[ jQuery.expando ] ? event : new jQuery.Event( type, typeof event === "object" && event ); event.isTrigger = true; event.namespace = namespaces.join("."); event.namespace_re = event.namespace ? new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : null; // Clean up the event in case it is being reused event.result = undefined; if ( !event.target ) { event.target = elem; } // Clone any incoming data and prepend the event, creating the handler arg list data = data == null ? [ event ] : jQuery.makeArray( data, [ event ] ); // Allow special events to draw outside the lines special = jQuery.event.special[ type ] || {}; if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { return; } // Determine event propagation path in advance, per W3C events spec (#9951) // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { bubbleType = special.delegateType || type; if ( !rfocusMorph.test( bubbleType + type ) ) { cur = cur.parentNode; } for ( ; cur; cur = cur.parentNode ) { eventPath.push( cur ); tmp = cur; } // Only add window if we got to document (e.g., not plain obj or detached DOM) if ( tmp === (elem.ownerDocument || document) ) { eventPath.push( tmp.defaultView || tmp.parentWindow || window ); } } // Fire handlers on the event path i = 0; while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { event.type = i > 1 ? bubbleType : special.bindType || type; // jQuery handler handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); if ( handle ) { handle.apply( cur, data ); } // Native handler handle = ontype && cur[ ontype ]; if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { event.preventDefault(); } } event.type = type; // If nobody prevented the default action, do it now if ( !onlyHandlers && !event.isDefaultPrevented() ) { if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { // Call a native DOM method on the target with the same name name as the event. // Can't use an .isFunction() check here because IE6/7 fails that test. // Don't do default actions on window, that's where global variables be (#6170) if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { // Don't re-trigger an onFOO event when we call its FOO() method tmp = elem[ ontype ]; if ( tmp ) { elem[ ontype ] = null; } // Prevent re-triggering of the same event, since we already bubbled it above jQuery.event.triggered = type; try { elem[ type ](); } catch ( e ) { // IE<9 dies on focus/blur to hidden element (#1486,#12518) // only reproducible on winXP IE8 native, not IE9 in IE8 mode } jQuery.event.triggered = undefined; if ( tmp ) { elem[ ontype ] = tmp; } } } } return event.result; }, dispatch: function( event ) { // Make a writable jQuery.Event from the native event object event = jQuery.event.fix( event ); var i, j, ret, matched, handleObj, handlerQueue = [], args = core_slice.call( arguments ), handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], special = jQuery.event.special[ event.type ] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event args[0] = event; event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { return; } // Determine handlers handlerQueue = jQuery.event.handlers.call( this, event, handlers ); // Run delegates first; they may want to stop propagation beneath us i = 0; while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { event.currentTarget = matched.elem; j = 0; while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { // Triggered event must either 1) have no namespace, or // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { event.handleObj = handleObj; event.data = handleObj.data; ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) .apply( matched.elem, args ); if ( ret !== undefined ) { if ( (event.result = ret) === false ) { event.preventDefault(); event.stopPropagation(); } } } } } // Call the postDispatch hook for the mapped type if ( special.postDispatch ) { special.postDispatch.call( this, event ); } return event.result; }, handlers: function( event, handlers ) { var i, matches, sel, handleObj, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target; // Find delegate handlers // Black-hole SVG <use> instance trees (#13180) // Avoid non-left-click bubbling in Firefox (#3861) if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { for ( ; cur != this; cur = cur.parentNode || this ) { // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) if ( cur.disabled !== true || event.type !== "click" ) { matches = []; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; // Don't conflict with Object.prototype properties (#13203) sel = handleObj.selector + " "; if ( matches[ sel ] === undefined ) { matches[ sel ] = handleObj.needsContext ? jQuery( sel, this ).index( cur ) >= 0 : jQuery.find( sel, this, null, [ cur ] ).length; } if ( matches[ sel ] ) { matches.push( handleObj ); } } if ( matches.length ) { handlerQueue.push({ elem: cur, handlers: matches }); } } } } // Add the remaining (directly-bound) handlers if ( delegateCount < handlers.length ) { handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); } return handlerQueue; }, fix: function( event ) { if ( event[ jQuery.expando ] ) { return event; } // Create a writable copy of the event object and normalize some properties var i, prop, originalEvent = event, fixHook = jQuery.event.fixHooks[ event.type ] || {}, copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; event = new jQuery.Event( originalEvent ); i = copy.length; while ( i-- ) { prop = copy[ i ]; event[ prop ] = originalEvent[ prop ]; } // Support: IE<9 // Fix target property (#1925) if ( !event.target ) { event.target = originalEvent.srcElement || document; } // Support: Chrome 23+, Safari? // Target should not be a text node (#504, #13143) if ( event.target.nodeType === 3 ) { event.target = event.target.parentNode; } // Support: IE<9 // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) event.metaKey = !!event.metaKey; return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; }, // Includes some event props shared by KeyEvent and MouseEvent props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), fixHooks: {}, keyHooks: { props: "char charCode key keyCode".split(" "), filter: function( event, original ) { // Add which for key events if ( event.which == null ) { event.which = original.charCode != null ? original.charCode : original.keyCode; } return event; } }, mouseHooks: { props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), filter: function( event, original ) { var eventDoc, doc, body, button = original.button, fromElement = original.fromElement; // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == null && original.clientX != null ) { eventDoc = event.target.ownerDocument || document; doc = eventDoc.documentElement; body = eventDoc.body; event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); } // Add relatedTarget, if necessary if ( !event.relatedTarget && fromElement ) { event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; } // Add which for click: 1 === left; 2 === middle; 3 === right // Note: button is not normalized, so don't use it if ( !event.which && button !== undefined ) { event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); } return event; } }, special: { load: { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, click: { // For checkbox, fire native event so checked state will be right trigger: function() { if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { this.click(); return false; } } }, focus: { // Fire native event if possible so blur/focus sequence is correct trigger: function() { if ( this !== document.activeElement && this.focus ) { try { this.focus(); return false; } catch ( e ) { // Support: IE<9 // If we error on focus to hidden element (#1486, #12518), // let .trigger() run the handlers } } }, delegateType: "focusin" }, blur: { trigger: function() { if ( this === document.activeElement && this.blur ) { this.blur(); return false; } }, delegateType: "focusout" }, beforeunload: { postDispatch: function( event ) { // Even when returnValue equals to undefined Firefox will still show alert if ( event.result !== undefined ) { event.originalEvent.returnValue = event.result; } } } }, simulate: function( type, elem, event, bubble ) { // Piggyback on a donor event to simulate a different one. // Fake originalEvent to avoid donor's stopPropagation, but if the // simulated event prevents default then we do the same on the donor. var e = jQuery.extend( new jQuery.Event(), event, { type: type, isSimulated: true, originalEvent: {} } ); if ( bubble ) { jQuery.event.trigger( e, null, elem ); } else { jQuery.event.dispatch.call( elem, e ); } if ( e.isDefaultPrevented() ) { event.preventDefault(); } } }; jQuery.removeEvent = document.removeEventListener ? function( elem, type, handle ) { if ( elem.removeEventListener ) { elem.removeEventListener( type, handle, false ); } } : function( elem, type, handle ) { var name = "on" + type; if ( elem.detachEvent ) { // #8545, #7054, preventing memory leaks for custom events in IE6-8 // detachEvent needed property on element, by name of that event, to properly expose it to GC if ( typeof elem[ name ] === "undefined" ) { elem[ name ] = null; } elem.detachEvent( name, handle ); } }; jQuery.Event = function( src, props ) { // Allow instantiation without the 'new' keyword if ( !(this instanceof jQuery.Event) ) { return new jQuery.Event( src, props ); } // Event object if ( src && src.type ) { this.originalEvent = src; this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; // Event type } else { this.type = src; } // Put explicitly provided properties onto the event object if ( props ) { jQuery.extend( this, props ); } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || jQuery.now(); // Mark it as fixed this[ jQuery.expando ] = true; }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse, preventDefault: function() { var e = this.originalEvent; this.isDefaultPrevented = returnTrue; if ( !e ) { return; } // If preventDefault exists, run it on the original event if ( e.preventDefault ) { e.preventDefault(); // Support: IE // Otherwise set the returnValue property of the original event to false } else { e.returnValue = false; } }, stopPropagation: function() { var e = this.originalEvent; this.isPropagationStopped = returnTrue; if ( !e ) { return; } // If stopPropagation exists, run it on the original event if ( e.stopPropagation ) { e.stopPropagation(); } // Support: IE // Set the cancelBubble property of the original event to true e.cancelBubble = true; }, stopImmediatePropagation: function() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); } }; // Create mouseenter/leave events using mouseover/out and event-time checks jQuery.each({ mouseenter: "mouseover", mouseleave: "mouseout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { delegateType: fix, bindType: fix, handle: function( event ) { var ret, target = this, related = event.relatedTarget, handleObj = event.handleObj; // For mousenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window if ( !related || (related !== target && !jQuery.contains( target, related )) ) { event.type = handleObj.origType; ret = handleObj.handler.apply( this, arguments ); event.type = fix; } return ret; } }; }); // IE submit delegation if ( !jQuery.support.submitBubbles ) { jQuery.event.special.submit = { setup: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Lazy-add a submit handler when a descendant form may potentially be submitted jQuery.event.add( this, "click._submit keypress._submit", function( e ) { // Node name check avoids a VML-related crash in IE (#9807) var elem = e.target, form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; if ( form && !jQuery._data( form, "submitBubbles" ) ) { jQuery.event.add( form, "submit._submit", function( event ) { event._submit_bubble = true; }); jQuery._data( form, "submitBubbles", true ); } }); // return undefined since we don't need an event listener }, postDispatch: function( event ) { // If form was submitted by the user, bubble the event up the tree if ( event._submit_bubble ) { delete event._submit_bubble; if ( this.parentNode && !event.isTrigger ) { jQuery.event.simulate( "submit", this.parentNode, event, true ); } } }, teardown: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Remove delegated handlers; cleanData eventually reaps submit handlers attached above jQuery.event.remove( this, "._submit" ); } }; } // IE change delegation and checkbox/radio fix if ( !jQuery.support.changeBubbles ) { jQuery.event.special.change = { setup: function() { if ( rformElems.test( this.nodeName ) ) { // IE doesn't fire change on a check/radio until blur; trigger it on click // after a propertychange. Eat the blur-change in special.change.handle. // This still fires onchange a second time for check/radio after blur. if ( this.type === "checkbox" || this.type === "radio" ) { jQuery.event.add( this, "propertychange._change", function( event ) { if ( event.originalEvent.propertyName === "checked" ) { this._just_changed = true; } }); jQuery.event.add( this, "click._change", function( event ) { if ( this._just_changed && !event.isTrigger ) { this._just_changed = false; } // Allow triggered, simulated change events (#11500) jQuery.event.simulate( "change", this, event, true ); }); } return false; } // Delegated event; lazy-add a change handler on descendant inputs jQuery.event.add( this, "beforeactivate._change", function( e ) { var elem = e.target; if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { jQuery.event.add( elem, "change._change", function( event ) { if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { jQuery.event.simulate( "change", this.parentNode, event, true ); } }); jQuery._data( elem, "changeBubbles", true ); } }); }, handle: function( event ) { var elem = event.target; // Swallow native change events from checkbox/radio, we already triggered them above if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { return event.handleObj.handler.apply( this, arguments ); } }, teardown: function() { jQuery.event.remove( this, "._change" ); return !rformElems.test( this.nodeName ); } }; } // Create "bubbling" focus and blur events if ( !jQuery.support.focusinBubbles ) { jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { // Attach a single capturing handler while someone wants focusin/focusout var attaches = 0, handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); }; jQuery.event.special[ fix ] = { setup: function() { if ( attaches++ === 0 ) { document.addEventListener( orig, handler, true ); } }, teardown: function() { if ( --attaches === 0 ) { document.removeEventListener( orig, handler, true ); } } }; }); } jQuery.fn.extend({ on: function( types, selector, data, fn, /*INTERNAL*/ one ) { var origFn, type; // Types can be a map of types/handlers if ( typeof types === "object" ) { // ( types-Object, selector, data ) if ( typeof selector !== "string" ) { // ( types-Object, data ) data = data || selector; selector = undefined; } for ( type in types ) { this.on( type, selector, data, types[ type ], one ); } return this; } if ( data == null && fn == null ) { // ( types, fn ) fn = selector; data = selector = undefined; } else if ( fn == null ) { if ( typeof selector === "string" ) { // ( types, selector, fn ) fn = data; data = undefined; } else { // ( types, data, fn ) fn = data; data = selector; selector = undefined; } } if ( fn === false ) { fn = returnFalse; } else if ( !fn ) { return this; } if ( one === 1 ) { origFn = fn; fn = function( event ) { // Can use an empty set, since event contains the info jQuery().off( event ); return origFn.apply( this, arguments ); }; // Use same guid so caller can remove using origFn fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); } return this.each( function() { jQuery.event.add( this, types, fn, data, selector ); }); }, one: function( types, selector, data, fn ) { return this.on( types, selector, data, fn, 1 ); }, off: function( types, selector, fn ) { var handleObj, type; if ( types && types.preventDefault && types.handleObj ) { // ( event ) dispatched jQuery.Event handleObj = types.handleObj; jQuery( types.delegateTarget ).off( handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler ); return this; } if ( typeof types === "object" ) { // ( types-object [, selector] ) for ( type in types ) { this.off( type, selector, types[ type ] ); } return this; } if ( selector === false || typeof selector === "function" ) { // ( types [, fn] ) fn = selector; selector = undefined; } if ( fn === false ) { fn = returnFalse; } return this.each(function() { jQuery.event.remove( this, types, fn, selector ); }); }, bind: function( types, data, fn ) { return this.on( types, null, data, fn ); }, unbind: function( types, fn ) { return this.off( types, null, fn ); }, delegate: function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); }, undelegate: function( selector, types, fn ) { // ( namespace ) or ( selector, types [, fn] ) return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); }, trigger: function( type, data ) { return this.each(function() { jQuery.event.trigger( type, data, this ); }); }, triggerHandler: function( type, data ) { var elem = this[0]; if ( elem ) { return jQuery.event.trigger( type, data, elem, true ); } }, hover: function( fnOver, fnOut ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); } }); jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { // Handle event binding jQuery.fn[ name ] = function( data, fn ) { return arguments.length > 0 ? this.on( name, null, data, fn ) : this.trigger( name ); }; if ( rkeyEvent.test( name ) ) { jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; } if ( rmouseEvent.test( name ) ) { jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; } }); /*! * Sizzle CSS Selector Engine * Copyright 2012 jQuery Foundation and other contributors * Released under the MIT license * http://sizzlejs.com/ */ (function( window, undefined ) { var i, cachedruns, Expr, getText, isXML, compile, hasDuplicate, outermostContext, // Local document vars setDocument, document, docElem, documentIsXML, rbuggyQSA, rbuggyMatches, matches, contains, sortOrder, // Instance-specific data expando = "sizzle" + -(new Date()), preferredDoc = window.document, support = {}, dirruns = 0, done = 0, classCache = createCache(), tokenCache = createCache(), compilerCache = createCache(), // General-purpose constants strundefined = typeof undefined, MAX_NEGATIVE = 1 << 31, // Array methods arr = [], pop = arr.pop, push = arr.push, slice = arr.slice, // Use a stripped-down indexOf if we can't use a native one indexOf = arr.indexOf || function( elem ) { var i = 0, len = this.length; for ( ; i < len; i++ ) { if ( this[i] === elem ) { return i; } } return -1; }, // Regular expressions // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace whitespace = "[\\x20\\t\\r\\n\\f]", // http://www.w3.org/TR/css3-syntax/#characters characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", // Loosely modeled on CSS identifier characters // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier identifier = characterEncoding.replace( "w", "w#" ), // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors operators = "([*^$|!~]?=)", attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + "*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", // Prefer arguments quoted, // then not containing pseudos/brackets, // then attribute selectors/non-parenthetical expressions, // then anything else // These preferences are here to reduce the number of selectors // needing tokenize in the PSEUDO preFilter pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ), rpseudo = new RegExp( pseudos ), ridentifier = new RegExp( "^" + identifier + "$" ), matchExpr = { "ID": new RegExp( "^#(" + characterEncoding + ")" ), "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), "NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ), "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), "ATTR": new RegExp( "^" + attributes ), "PSEUDO": new RegExp( "^" + pseudos ), "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), // For use in libraries implementing .is() // We use this for POS matching in `select` "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) }, rsibling = /[\x20\t\r\n\f]*[+~]/, rnative = /\{\s*\[native code\]\s*\}/, // Easily-parseable/retrievable ID or TAG or CLASS selectors rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, rinputs = /^(?:input|select|textarea|button)$/i, rheader = /^h\d$/i, rescape = /'|\\/g, rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters runescape = /\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g, funescape = function( _, escaped ) { var high = "0x" + escaped - 0x10000; // NaN means non-codepoint return high !== high ? escaped : // BMP codepoint high < 0 ? String.fromCharCode( high + 0x10000 ) : // Supplemental Plane codepoint (surrogate pair) String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); }; // Use a stripped-down slice if we can't use a native one try { slice.call( docElem.childNodes, 0 )[0].nodeType; } catch ( e ) { slice = function( i ) { var elem, results = []; for ( ; (elem = this[i]); i++ ) { results.push( elem ); } return results; }; } /** * For feature detection * @param {Function} fn The function to test for native support */ function isNative( fn ) { return rnative.test( fn + "" ); } /** * Create key-value caches of limited size * @returns {Function(string, Object)} Returns the Object data after storing it on itself with * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) * deleting the oldest entry */ function createCache() { var cache, keys = []; return (cache = function( key, value ) { // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) if ( keys.push( key += " " ) > Expr.cacheLength ) { // Only keep the most recent entries delete cache[ keys.shift() ]; } return (cache[ key ] = value); }); } /** * Mark a function for special use by Sizzle * @param {Function} fn The function to mark */ function markFunction( fn ) { fn[ expando ] = true; return fn; } /** * Support testing using an element * @param {Function} fn Passed the created div and expects a boolean result */ function assert( fn ) { var div = document.createElement("div"); try { return fn( div ); } catch (e) { return false; } finally { // release memory in IE div = null; } } function Sizzle( selector, context, results, seed ) { var match, elem, m, nodeType, // QSA vars i, groups, old, nid, newContext, newSelector; if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { setDocument( context ); } context = context || document; results = results || []; if ( !selector || typeof selector !== "string" ) { return results; } if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { return []; } if ( !documentIsXML && !seed ) { // Shortcuts if ( (match = rquickExpr.exec( selector )) ) { // Speed-up: Sizzle("#ID") if ( (m = match[1]) ) { if ( nodeType === 9 ) { elem = context.getElementById( m ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 if ( elem && elem.parentNode ) { // Handle the case where IE, Opera, and Webkit return items // by name instead of ID if ( elem.id === m ) { results.push( elem ); return results; } } else { return results; } } else { // Context is not a document if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && contains( context, elem ) && elem.id === m ) { results.push( elem ); return results; } } // Speed-up: Sizzle("TAG") } else if ( match[2] ) { push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) ); return results; // Speed-up: Sizzle(".CLASS") } else if ( (m = match[3]) && support.getByClassName && context.getElementsByClassName ) { push.apply( results, slice.call(context.getElementsByClassName( m ), 0) ); return results; } } // QSA path if ( support.qsa && !rbuggyQSA.test(selector) ) { old = true; nid = expando; newContext = context; newSelector = nodeType === 9 && selector; // qSA works strangely on Element-rooted queries // We can work around this by specifying an extra ID on the root // and working up from there (Thanks to Andrew Dupont for the technique) // IE 8 doesn't work on object elements if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { groups = tokenize( selector ); if ( (old = context.getAttribute("id")) ) { nid = old.replace( rescape, "\\$&" ); } else { context.setAttribute( "id", nid ); } nid = "[id='" + nid + "'] "; i = groups.length; while ( i-- ) { groups[i] = nid + toSelector( groups[i] ); } newContext = rsibling.test( selector ) && context.parentNode || context; newSelector = groups.join(","); } if ( newSelector ) { try { push.apply( results, slice.call( newContext.querySelectorAll( newSelector ), 0 ) ); return results; } catch(qsaError) { } finally { if ( !old ) { context.removeAttribute("id"); } } } } } // All others return select( selector.replace( rtrim, "$1" ), context, results, seed ); } /** * Detect xml * @param {Element|Object} elem An element or a document */ isXML = Sizzle.isXML = function( elem ) { // documentElement is verified for cases where it doesn't yet exist // (such as loading iframes in IE - #4833) var documentElement = elem && (elem.ownerDocument || elem).documentElement; return documentElement ? documentElement.nodeName !== "HTML" : false; }; /** * Sets document-related variables once based on the current document * @param {Element|Object} [doc] An element or document object to use to set the document * @returns {Object} Returns the current document */ setDocument = Sizzle.setDocument = function( node ) { var doc = node ? node.ownerDocument || node : preferredDoc; // If no document and documentElement is available, return if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { return document; } // Set our document document = doc; docElem = doc.documentElement; // Support tests documentIsXML = isXML( doc ); // Check if getElementsByTagName("*") returns only elements support.tagNameNoComments = assert(function( div ) { div.appendChild( doc.createComment("") ); return !div.getElementsByTagName("*").length; }); // Check if attributes should be retrieved by attribute nodes support.attributes = assert(function( div ) { div.innerHTML = "<select></select>"; var type = typeof div.lastChild.getAttribute("multiple"); // IE8 returns a string for some attributes even when not present return type !== "boolean" && type !== "string"; }); // Check if getElementsByClassName can be trusted support.getByClassName = assert(function( div ) { // Opera can't find a second classname (in 9.6) div.innerHTML = "<div class='hidden e'></div><div class='hidden'></div>"; if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) { return false; } // Safari 3.2 caches class attributes and doesn't catch changes div.lastChild.className = "e"; return div.getElementsByClassName("e").length === 2; }); // Check if getElementById returns elements by name // Check if getElementsByName privileges form controls or returns elements by ID support.getByName = assert(function( div ) { // Inject content div.id = expando + 0; div.innerHTML = "<a name='" + expando + "'></a><div name='" + expando + "'></div>"; docElem.insertBefore( div, docElem.firstChild ); // Test var pass = doc.getElementsByName && // buggy browsers will return fewer than the correct 2 doc.getElementsByName( expando ).length === 2 + // buggy browsers will return more than the correct 0 doc.getElementsByName( expando + 0 ).length; support.getIdNotName = !doc.getElementById( expando ); // Cleanup docElem.removeChild( div ); return pass; }); // IE6/7 return modified attributes Expr.attrHandle = assert(function( div ) { div.innerHTML = "<a href='#'></a>"; return div.firstChild && typeof div.firstChild.getAttribute !== strundefined && div.firstChild.getAttribute("href") === "#"; }) ? {} : { "href": function( elem ) { return elem.getAttribute( "href", 2 ); }, "type": function( elem ) { return elem.getAttribute("type"); } }; // ID find and filter if ( support.getIdNotName ) { Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== strundefined && !documentIsXML ) { var m = context.getElementById( id ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 return m && m.parentNode ? [m] : []; } }; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { return elem.getAttribute("id") === attrId; }; }; } else { Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== strundefined && !documentIsXML ) { var m = context.getElementById( id ); return m ? m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ? [m] : undefined : []; } }; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); return node && node.value === attrId; }; }; } // Tag Expr.find["TAG"] = support.tagNameNoComments ? function( tag, context ) { if ( typeof context.getElementsByTagName !== strundefined ) { return context.getElementsByTagName( tag ); } } : function( tag, context ) { var elem, tmp = [], i = 0, results = context.getElementsByTagName( tag ); // Filter out possible comments if ( tag === "*" ) { for ( ; (elem = results[i]); i++ ) { if ( elem.nodeType === 1 ) { tmp.push( elem ); } } return tmp; } return results; }; // Name Expr.find["NAME"] = support.getByName && function( tag, context ) { if ( typeof context.getElementsByName !== strundefined ) { return context.getElementsByName( name ); } }; // Class Expr.find["CLASS"] = support.getByClassName && function( className, context ) { if ( typeof context.getElementsByClassName !== strundefined && !documentIsXML ) { return context.getElementsByClassName( className ); } }; // QSA and matchesSelector support // matchesSelector(:active) reports false when true (IE9/Opera 11.5) rbuggyMatches = []; // qSa(:focus) reports false when true (Chrome 21), // no need to also add to buggyMatches since matches checks buggyQSA // A support test would require too much code (would include document ready) rbuggyQSA = [ ":focus" ]; if ( (support.qsa = isNative(doc.querySelectorAll)) ) { // Build QSA regex // Regex strategy adopted from Diego Perini assert(function( div ) { // Select is set to empty string on purpose // This is to test IE's treatment of not explictly // setting a boolean content attribute, // since its presence should be enough // http://bugs.jquery.com/ticket/12359 div.innerHTML = "<select><option selected=''></option></select>"; // IE8 - Some boolean attributes are not treated correctly if ( !div.querySelectorAll("[selected]").length ) { rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" ); } // Webkit/Opera - :checked should return selected option elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":checked").length ) { rbuggyQSA.push(":checked"); } }); assert(function( div ) { // Opera 10-12/IE8 - ^= $= *= and empty values // Should not select anything div.innerHTML = "<input type='hidden' i=''/>"; if ( div.querySelectorAll("[i^='']").length ) { rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" ); } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":enabled").length ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Opera 10-11 does not throw on post-comma invalid pseudos div.querySelectorAll("*,:x"); rbuggyQSA.push(",.*:"); }); } if ( (support.matchesSelector = isNative( (matches = docElem.matchesSelector || docElem.mozMatchesSelector || docElem.webkitMatchesSelector || docElem.oMatchesSelector || docElem.msMatchesSelector) )) ) { assert(function( div ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9) support.disconnectedMatch = matches.call( div, "div" ); // This should fail with an exception // Gecko does not error, returns false instead matches.call( div, "[s!='']:x" ); rbuggyMatches.push( "!=", pseudos ); }); } rbuggyQSA = new RegExp( rbuggyQSA.join("|") ); rbuggyMatches = new RegExp( rbuggyMatches.join("|") ); // Element contains another // Purposefully does not implement inclusive descendent // As in, an element does not contain itself contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? function( a, b ) { var adown = a.nodeType === 9 ? a.documentElement : a, bup = b && b.parentNode; return a === bup || !!( bup && bup.nodeType === 1 && ( adown.contains ? adown.contains( bup ) : a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 )); } : function( a, b ) { if ( b ) { while ( (b = b.parentNode) ) { if ( b === a ) { return true; } } } return false; }; // Document order sorting sortOrder = docElem.compareDocumentPosition ? function( a, b ) { var compare; if ( a === b ) { hasDuplicate = true; return 0; } if ( (compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b )) ) { if ( compare & 1 || a.parentNode && a.parentNode.nodeType === 11 ) { if ( a === doc || contains( preferredDoc, a ) ) { return -1; } if ( b === doc || contains( preferredDoc, b ) ) { return 1; } return 0; } return compare & 4 ? -1 : 1; } return a.compareDocumentPosition ? -1 : 1; } : function( a, b ) { var cur, i = 0, aup = a.parentNode, bup = b.parentNode, ap = [ a ], bp = [ b ]; // The nodes are identical, we can exit early if ( a === b ) { hasDuplicate = true; return 0; // Fallback to using sourceIndex (in IE) if it's available on both nodes } else if ( a.sourceIndex && b.sourceIndex ) { return ( ~b.sourceIndex || MAX_NEGATIVE ) - ( contains( preferredDoc, a ) && ~a.sourceIndex || MAX_NEGATIVE ); // Parentless nodes are either documents or disconnected } else if ( !aup || !bup ) { return a === doc ? -1 : b === doc ? 1 : aup ? -1 : bup ? 1 : 0; // If the nodes are siblings, we can do a quick check } else if ( aup === bup ) { return siblingCheck( a, b ); } // Otherwise we need full lists of their ancestors for comparison cur = a; while ( (cur = cur.parentNode) ) { ap.unshift( cur ); } cur = b; while ( (cur = cur.parentNode) ) { bp.unshift( cur ); } // Walk down the tree looking for a discrepancy while ( ap[i] === bp[i] ) { i++; } return i ? // Do a sibling check if the nodes have a common ancestor siblingCheck( ap[i], bp[i] ) : // Otherwise nodes in our document sort first ap[i] === preferredDoc ? -1 : bp[i] === preferredDoc ? 1 : 0; }; // Always assume the presence of duplicates if sort doesn't // pass them to our comparison function (as in Google Chrome). hasDuplicate = false; [0, 0].sort( sortOrder ); support.detectDuplicates = hasDuplicate; return document; }; Sizzle.matches = function( expr, elements ) { return Sizzle( expr, null, null, elements ); }; Sizzle.matchesSelector = function( elem, expr ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } // Make sure that attribute selectors are quoted expr = expr.replace( rattributeQuotes, "='$1']" ); // rbuggyQSA always contains :focus, so no need for an existence check if ( support.matchesSelector && !documentIsXML && (!rbuggyMatches || !rbuggyMatches.test(expr)) && !rbuggyQSA.test(expr) ) { try { var ret = matches.call( elem, expr ); // IE 9's matchesSelector returns false on disconnected nodes if ( ret || support.disconnectedMatch || // As well, disconnected nodes are said to be in a document // fragment in IE 9 elem.document && elem.document.nodeType !== 11 ) { return ret; } } catch(e) {} } return Sizzle( expr, document, null, [elem] ).length > 0; }; Sizzle.contains = function( context, elem ) { // Set document vars if needed if ( ( context.ownerDocument || context ) !== document ) { setDocument( context ); } return contains( context, elem ); }; Sizzle.attr = function( elem, name ) { var val; // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } if ( !documentIsXML ) { name = name.toLowerCase(); } if ( (val = Expr.attrHandle[ name ]) ) { return val( elem ); } if ( documentIsXML || support.attributes ) { return elem.getAttribute( name ); } return ( (val = elem.getAttributeNode( name )) || elem.getAttribute( name ) ) && elem[ name ] === true ? name : val && val.specified ? val.value : null; }; Sizzle.error = function( msg ) { throw new Error( "Syntax error, unrecognized expression: " + msg ); }; // Document sorting and removing duplicates Sizzle.uniqueSort = function( results ) { var elem, duplicates = [], i = 1, j = 0; // Unless we *know* we can detect duplicates, assume their presence hasDuplicate = !support.detectDuplicates; results.sort( sortOrder ); if ( hasDuplicate ) { for ( ; (elem = results[i]); i++ ) { if ( elem === results[ i - 1 ] ) { j = duplicates.push( i ); } } while ( j-- ) { results.splice( duplicates[ j ], 1 ); } } return results; }; function siblingCheck( a, b ) { var cur = a && b && a.nextSibling; for ( ; cur; cur = cur.nextSibling ) { if ( cur === b ) { return -1; } } return a ? 1 : -1; } // Returns a function to use in pseudos for input types function createInputPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === type; }; } // Returns a function to use in pseudos for buttons function createButtonPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return (name === "input" || name === "button") && elem.type === type; }; } // Returns a function to use in pseudos for positionals function createPositionalPseudo( fn ) { return markFunction(function( argument ) { argument = +argument; return markFunction(function( seed, matches ) { var j, matchIndexes = fn( [], seed.length, argument ), i = matchIndexes.length; // Match elements found at the specified indexes while ( i-- ) { if ( seed[ (j = matchIndexes[i]) ] ) { seed[j] = !(matches[j] = seed[j]); } } }); }); } /** * Utility function for retrieving the text value of an array of DOM nodes * @param {Array|Element} elem */ getText = Sizzle.getText = function( elem ) { var node, ret = "", i = 0, nodeType = elem.nodeType; if ( !nodeType ) { // If no nodeType, this is expected to be an array for ( ; (node = elem[i]); i++ ) { // Do not traverse comment nodes ret += getText( node ); } } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { // Use textContent for elements // innerText usage removed for consistency of new lines (see #11153) if ( typeof elem.textContent === "string" ) { return elem.textContent; } else { // Traverse its children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { ret += getText( elem ); } } } else if ( nodeType === 3 || nodeType === 4 ) { return elem.nodeValue; } // Do not include comment or processing instruction nodes return ret; }; Expr = Sizzle.selectors = { // Can be adjusted by the user cacheLength: 50, createPseudo: markFunction, match: matchExpr, find: {}, relative: { ">": { dir: "parentNode", first: true }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: true }, "~": { dir: "previousSibling" } }, preFilter: { "ATTR": function( match ) { match[1] = match[1].replace( runescape, funescape ); // Move the given value to match[3] whether quoted or unquoted match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); if ( match[2] === "~=" ) { match[3] = " " + match[3] + " "; } return match.slice( 0, 4 ); }, "CHILD": function( match ) { /* matches from matchExpr["CHILD"] 1 type (only|nth|...) 2 what (child|of-type) 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) 4 xn-component of xn+y argument ([+-]?\d*n|) 5 sign of xn-component 6 x of xn-component 7 sign of y-component 8 y of y-component */ match[1] = match[1].toLowerCase(); if ( match[1].slice( 0, 3 ) === "nth" ) { // nth-* requires argument if ( !match[3] ) { Sizzle.error( match[0] ); } // numeric x and y parameters for Expr.filter.CHILD // remember that false/true cast respectively to 0/1 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); // other types prohibit arguments } else if ( match[3] ) { Sizzle.error( match[0] ); } return match; }, "PSEUDO": function( match ) { var excess, unquoted = !match[5] && match[2]; if ( matchExpr["CHILD"].test( match[0] ) ) { return null; } // Accept quoted arguments as-is if ( match[4] ) { match[2] = match[4]; // Strip excess characters from unquoted arguments } else if ( unquoted && rpseudo.test( unquoted ) && // Get excess from tokenize (recursively) (excess = tokenize( unquoted, true )) && // advance to the next closing parenthesis (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { // excess is a negative index match[0] = match[0].slice( 0, excess ); match[2] = unquoted.slice( 0, excess ); } // Return only captures needed by the pseudo filter method (type and argument) return match.slice( 0, 3 ); } }, filter: { "TAG": function( nodeName ) { if ( nodeName === "*" ) { return function() { return true; }; } nodeName = nodeName.replace( runescape, funescape ).toLowerCase(); return function( elem ) { return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; }; }, "CLASS": function( className ) { var pattern = classCache[ className + " " ]; return pattern || (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && classCache( className, function( elem ) { return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" ); }); }, "ATTR": function( name, operator, check ) { return function( elem ) { var result = Sizzle.attr( elem, name ); if ( result == null ) { return operator === "!="; } if ( !operator ) { return true; } result += ""; return operator === "=" ? result === check : operator === "!=" ? result !== check : operator === "^=" ? check && result.indexOf( check ) === 0 : operator === "*=" ? check && result.indexOf( check ) > -1 : operator === "$=" ? check && result.substr( result.length - check.length ) === check : operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : operator === "|=" ? result === check || result.substr( 0, check.length + 1 ) === check + "-" : false; }; }, "CHILD": function( type, what, argument, first, last ) { var simple = type.slice( 0, 3 ) !== "nth", forward = type.slice( -4 ) !== "last", ofType = what === "of-type"; return first === 1 && last === 0 ? // Shortcut for :nth-*(n) function( elem ) { return !!elem.parentNode; } : function( elem, context, xml ) { var cache, outerCache, node, diff, nodeIndex, start, dir = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, name = ofType && elem.nodeName.toLowerCase(), useCache = !xml && !ofType; if ( parent ) { // :(first|last|only)-(child|of-type) if ( simple ) { while ( dir ) { node = elem; while ( (node = node[ dir ]) ) { if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { return false; } } // Reverse direction for :only-* (if we haven't yet done so) start = dir = type === "only" && !start && "nextSibling"; } return true; } start = [ forward ? parent.firstChild : parent.lastChild ]; // non-xml :nth-child(...) stores cache data on `parent` if ( forward && useCache ) { // Seek `elem` from a previously-cached index outerCache = parent[ expando ] || (parent[ expando ] = {}); cache = outerCache[ type ] || []; nodeIndex = cache[0] === dirruns && cache[1]; diff = cache[0] === dirruns && cache[2]; node = nodeIndex && parent.childNodes[ nodeIndex ]; while ( (node = ++nodeIndex && node && node[ dir ] || // Fallback to seeking `elem` from the start (diff = nodeIndex = 0) || start.pop()) ) { // When found, cache indexes on `parent` and break if ( node.nodeType === 1 && ++diff && node === elem ) { outerCache[ type ] = [ dirruns, nodeIndex, diff ]; break; } } // Use previously-cached element index if available } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { diff = cache[1]; // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) } else { // Use the same loop as above to seek `elem` from the start while ( (node = ++nodeIndex && node && node[ dir ] || (diff = nodeIndex = 0) || start.pop()) ) { if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { // Cache the index of each encountered element if ( useCache ) { (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; } if ( node === elem ) { break; } } } } // Incorporate the offset, then check against cycle size diff -= last; return diff === first || ( diff % first === 0 && diff / first >= 0 ); } }; }, "PSEUDO": function( pseudo, argument ) { // pseudo-class names are case-insensitive // http://www.w3.org/TR/selectors/#pseudo-classes // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters // Remember that setFilters inherits from pseudos var args, fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || Sizzle.error( "unsupported pseudo: " + pseudo ); // The user may use createPseudo to indicate that // arguments are needed to create the filter function // just as Sizzle does if ( fn[ expando ] ) { return fn( argument ); } // But maintain support for old signatures if ( fn.length > 1 ) { args = [ pseudo, pseudo, "", argument ]; return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? markFunction(function( seed, matches ) { var idx, matched = fn( seed, argument ), i = matched.length; while ( i-- ) { idx = indexOf.call( seed, matched[i] ); seed[ idx ] = !( matches[ idx ] = matched[i] ); } }) : function( elem ) { return fn( elem, 0, args ); }; } return fn; } }, pseudos: { // Potentially complex pseudos "not": markFunction(function( selector ) { // Trim the selector passed to compile // to avoid treating leading and trailing // spaces as combinators var input = [], results = [], matcher = compile( selector.replace( rtrim, "$1" ) ); return matcher[ expando ] ? markFunction(function( seed, matches, context, xml ) { var elem, unmatched = matcher( seed, null, xml, [] ), i = seed.length; // Match elements unmatched by `matcher` while ( i-- ) { if ( (elem = unmatched[i]) ) { seed[i] = !(matches[i] = elem); } } }) : function( elem, context, xml ) { input[0] = elem; matcher( input, null, xml, results ); return !results.pop(); }; }), "has": markFunction(function( selector ) { return function( elem ) { return Sizzle( selector, elem ).length > 0; }; }), "contains": markFunction(function( text ) { return function( elem ) { return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; }; }), // "Whether an element is represented by a :lang() selector // is based solely on the element's language value // being equal to the identifier C, // or beginning with the identifier C immediately followed by "-". // The matching of C against the element's language value is performed case-insensitively. // The identifier C does not have to be a valid language name." // http://www.w3.org/TR/selectors/#lang-pseudo "lang": markFunction( function( lang ) { // lang value must be a valid identifider if ( !ridentifier.test(lang || "") ) { Sizzle.error( "unsupported lang: " + lang ); } lang = lang.replace( runescape, funescape ).toLowerCase(); return function( elem ) { var elemLang; do { if ( (elemLang = documentIsXML ? elem.getAttribute("xml:lang") || elem.getAttribute("lang") : elem.lang) ) { elemLang = elemLang.toLowerCase(); return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; } } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); return false; }; }), // Miscellaneous "target": function( elem ) { var hash = window.location && window.location.hash; return hash && hash.slice( 1 ) === elem.id; }, "root": function( elem ) { return elem === docElem; }, "focus": function( elem ) { return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); }, // Boolean properties "enabled": function( elem ) { return elem.disabled === false; }, "disabled": function( elem ) { return elem.disabled === true; }, "checked": function( elem ) { // In CSS3, :checked should return both checked and selected elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked var nodeName = elem.nodeName.toLowerCase(); return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); }, "selected": function( elem ) { // Accessing this property makes selected-by-default // options in Safari work properly if ( elem.parentNode ) { elem.parentNode.selectedIndex; } return elem.selected === true; }, // Contents "empty": function( elem ) { // http://www.w3.org/TR/selectors/#empty-pseudo // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), // not comment, processing instructions, or others // Thanks to Diego Perini for the nodeName shortcut // Greater than "@" means alpha characters (specifically not starting with "#" or "?") for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { return false; } } return true; }, "parent": function( elem ) { return !Expr.pseudos["empty"]( elem ); }, // Element/input types "header": function( elem ) { return rheader.test( elem.nodeName ); }, "input": function( elem ) { return rinputs.test( elem.nodeName ); }, "button": function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === "button" || name === "button"; }, "text": function( elem ) { var attr; // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) // use getAttribute instead to test this case return elem.nodeName.toLowerCase() === "input" && elem.type === "text" && ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); }, // Position-in-collection "first": createPositionalPseudo(function() { return [ 0 ]; }), "last": createPositionalPseudo(function( matchIndexes, length ) { return [ length - 1 ]; }), "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { return [ argument < 0 ? argument + length : argument ]; }), "even": createPositionalPseudo(function( matchIndexes, length ) { var i = 0; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "odd": createPositionalPseudo(function( matchIndexes, length ) { var i = 1; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; --i >= 0; ) { matchIndexes.push( i ); } return matchIndexes; }), "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; ++i < length; ) { matchIndexes.push( i ); } return matchIndexes; }) } }; // Add button/input type pseudos for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { Expr.pseudos[ i ] = createInputPseudo( i ); } for ( i in { submit: true, reset: true } ) { Expr.pseudos[ i ] = createButtonPseudo( i ); } function tokenize( selector, parseOnly ) { var matched, match, tokens, type, soFar, groups, preFilters, cached = tokenCache[ selector + " " ]; if ( cached ) { return parseOnly ? 0 : cached.slice( 0 ); } soFar = selector; groups = []; preFilters = Expr.preFilter; while ( soFar ) { // Comma and first run if ( !matched || (match = rcomma.exec( soFar )) ) { if ( match ) { // Don't consume trailing commas as valid soFar = soFar.slice( match[0].length ) || soFar; } groups.push( tokens = [] ); } matched = false; // Combinators if ( (match = rcombinators.exec( soFar )) ) { matched = match.shift(); tokens.push( { value: matched, // Cast descendant combinators to space type: match[0].replace( rtrim, " " ) } ); soFar = soFar.slice( matched.length ); } // Filters for ( type in Expr.filter ) { if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || (match = preFilters[ type ]( match ))) ) { matched = match.shift(); tokens.push( { value: matched, type: type, matches: match } ); soFar = soFar.slice( matched.length ); } } if ( !matched ) { break; } } // Return the length of the invalid excess // if we're just parsing // Otherwise, throw an error or return tokens return parseOnly ? soFar.length : soFar ? Sizzle.error( selector ) : // Cache the tokens tokenCache( selector, groups ).slice( 0 ); } function toSelector( tokens ) { var i = 0, len = tokens.length, selector = ""; for ( ; i < len; i++ ) { selector += tokens[i].value; } return selector; } function addCombinator( matcher, combinator, base ) { var dir = combinator.dir, checkNonElements = base && combinator.dir === "parentNode", doneName = done++; return combinator.first ? // Check against closest ancestor/preceding element function( elem, context, xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { return matcher( elem, context, xml ); } } } : // Check against all ancestor/preceding elements function( elem, context, xml ) { var data, cache, outerCache, dirkey = dirruns + " " + doneName; // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching if ( xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { if ( matcher( elem, context, xml ) ) { return true; } } } } else { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { outerCache = elem[ expando ] || (elem[ expando ] = {}); if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { if ( (data = cache[1]) === true || data === cachedruns ) { return data === true; } } else { cache = outerCache[ dir ] = [ dirkey ]; cache[1] = matcher( elem, context, xml ) || cachedruns; if ( cache[1] === true ) { return true; } } } } } }; } function elementMatcher( matchers ) { return matchers.length > 1 ? function( elem, context, xml ) { var i = matchers.length; while ( i-- ) { if ( !matchers[i]( elem, context, xml ) ) { return false; } } return true; } : matchers[0]; } function condense( unmatched, map, filter, context, xml ) { var elem, newUnmatched = [], i = 0, len = unmatched.length, mapped = map != null; for ( ; i < len; i++ ) { if ( (elem = unmatched[i]) ) { if ( !filter || filter( elem, context, xml ) ) { newUnmatched.push( elem ); if ( mapped ) { map.push( i ); } } } } return newUnmatched; } function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { if ( postFilter && !postFilter[ expando ] ) { postFilter = setMatcher( postFilter ); } if ( postFinder && !postFinder[ expando ] ) { postFinder = setMatcher( postFinder, postSelector ); } return markFunction(function( seed, results, context, xml ) { var temp, i, elem, preMap = [], postMap = [], preexisting = results.length, // Get initial elements from seed or context elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), // Prefilter to get matcher input, preserving a map for seed-results synchronization matcherIn = preFilter && ( seed || !selector ) ? condense( elems, preMap, preFilter, context, xml ) : elems, matcherOut = matcher ? // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, postFinder || ( seed ? preFilter : preexisting || postFilter ) ? // ...intermediate processing is necessary [] : // ...otherwise use results directly results : matcherIn; // Find primary matches if ( matcher ) { matcher( matcherIn, matcherOut, context, xml ); } // Apply postFilter if ( postFilter ) { temp = condense( matcherOut, postMap ); postFilter( temp, [], context, xml ); // Un-match failing elements by moving them back to matcherIn i = temp.length; while ( i-- ) { if ( (elem = temp[i]) ) { matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); } } } if ( seed ) { if ( postFinder || preFilter ) { if ( postFinder ) { // Get the final matcherOut by condensing this intermediate into postFinder contexts temp = []; i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) ) { // Restore matcherIn since elem is not yet a final match temp.push( (matcherIn[i] = elem) ); } } postFinder( null, (matcherOut = []), temp, xml ); } // Move matched elements from seed to results to keep them synchronized i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) && (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { seed[temp] = !(results[temp] = elem); } } } // Add elements to results, through postFinder if defined } else { matcherOut = condense( matcherOut === results ? matcherOut.splice( preexisting, matcherOut.length ) : matcherOut ); if ( postFinder ) { postFinder( null, results, matcherOut, xml ); } else { push.apply( results, matcherOut ); } } }); } function matcherFromTokens( tokens ) { var checkContext, matcher, j, len = tokens.length, leadingRelative = Expr.relative[ tokens[0].type ], implicitRelative = leadingRelative || Expr.relative[" "], i = leadingRelative ? 1 : 0, // The foundational matcher ensures that elements are reachable from top-level context(s) matchContext = addCombinator( function( elem ) { return elem === checkContext; }, implicitRelative, true ), matchAnyContext = addCombinator( function( elem ) { return indexOf.call( checkContext, elem ) > -1; }, implicitRelative, true ), matchers = [ function( elem, context, xml ) { return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( (checkContext = context).nodeType ? matchContext( elem, context, xml ) : matchAnyContext( elem, context, xml ) ); } ]; for ( ; i < len; i++ ) { if ( (matcher = Expr.relative[ tokens[i].type ]) ) { matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; } else { matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); // Return special upon seeing a positional matcher if ( matcher[ expando ] ) { // Find the next relative operator (if any) for proper handling j = ++i; for ( ; j < len; j++ ) { if ( Expr.relative[ tokens[j].type ] ) { break; } } return setMatcher( i > 1 && elementMatcher( matchers ), i > 1 && toSelector( tokens.slice( 0, i - 1 ) ).replace( rtrim, "$1" ), matcher, i < j && matcherFromTokens( tokens.slice( i, j ) ), j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), j < len && toSelector( tokens ) ); } matchers.push( matcher ); } } return elementMatcher( matchers ); } function matcherFromGroupMatchers( elementMatchers, setMatchers ) { // A counter to specify which element is currently being matched var matcherCachedRuns = 0, bySet = setMatchers.length > 0, byElement = elementMatchers.length > 0, superMatcher = function( seed, context, xml, results, expandContext ) { var elem, j, matcher, setMatched = [], matchedCount = 0, i = "0", unmatched = seed && [], outermost = expandContext != null, contextBackup = outermostContext, // We must always have either seed elements or context elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), // Nested matchers should use non-integer dirruns dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.E); if ( outermost ) { outermostContext = context !== document && context; cachedruns = matcherCachedRuns; } // Add elements passing elementMatchers directly to results for ( ; (elem = elems[i]) != null; i++ ) { if ( byElement && elem ) { for ( j = 0; (matcher = elementMatchers[j]); j++ ) { if ( matcher( elem, context, xml ) ) { results.push( elem ); break; } } if ( outermost ) { dirruns = dirrunsUnique; cachedruns = ++matcherCachedRuns; } } // Track unmatched elements for set filters if ( bySet ) { // They will have gone through all possible matchers if ( (elem = !matcher && elem) ) { matchedCount--; } // Lengthen the array for every element, matched or not if ( seed ) { unmatched.push( elem ); } } } // Apply set filters to unmatched elements // `i` starts as a string, so matchedCount would equal "00" if there are no elements matchedCount += i; if ( bySet && i !== matchedCount ) { for ( j = 0; (matcher = setMatchers[j]); j++ ) { matcher( unmatched, setMatched, context, xml ); } if ( seed ) { // Reintegrate element matches to eliminate the need for sorting if ( matchedCount > 0 ) { while ( i-- ) { if ( !(unmatched[i] || setMatched[i]) ) { setMatched[i] = pop.call( results ); } } } // Discard index placeholder values to get only actual matches setMatched = condense( setMatched ); } // Add matches to results push.apply( results, setMatched ); // Seedless set matches succeeding multiple successful matchers stipulate sorting if ( outermost && !seed && setMatched.length > 0 && ( matchedCount + setMatchers.length ) > 1 ) { Sizzle.uniqueSort( results ); } } // Override manipulation of globals by nested matchers if ( outermost ) { dirruns = dirrunsUnique; outermostContext = contextBackup; } return unmatched; }; return bySet ? markFunction( superMatcher ) : superMatcher; } compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { var i, setMatchers = [], elementMatchers = [], cached = compilerCache[ selector + " " ]; if ( !cached ) { // Generate a function of recursive functions that can be used to check each element if ( !group ) { group = tokenize( selector ); } i = group.length; while ( i-- ) { cached = matcherFromTokens( group[i] ); if ( cached[ expando ] ) { setMatchers.push( cached ); } else { elementMatchers.push( cached ); } } // Cache the compiled function cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); } return cached; }; function multipleContexts( selector, contexts, results ) { var i = 0, len = contexts.length; for ( ; i < len; i++ ) { Sizzle( selector, contexts[i], results ); } return results; } function select( selector, context, results, seed ) { var i, tokens, token, type, find, match = tokenize( selector ); if ( !seed ) { // Try to minimize operations if there is only one group if ( match.length === 1 ) { // Take a shortcut and set the context if the root selector is an ID tokens = match[0] = match[0].slice( 0 ); if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && context.nodeType === 9 && !documentIsXML && Expr.relative[ tokens[1].type ] ) { context = Expr.find["ID"]( token.matches[0].replace( runescape, funescape ), context )[0]; if ( !context ) { return results; } selector = selector.slice( tokens.shift().value.length ); } // Fetch a seed set for right-to-left matching for ( i = matchExpr["needsContext"].test( selector ) ? -1 : tokens.length - 1; i >= 0; i-- ) { token = tokens[i]; // Abort if we hit a combinator if ( Expr.relative[ (type = token.type) ] ) { break; } if ( (find = Expr.find[ type ]) ) { // Search, expanding context for leading sibling combinators if ( (seed = find( token.matches[0].replace( runescape, funescape ), rsibling.test( tokens[0].type ) && context.parentNode || context )) ) { // If seed is empty or no tokens remain, we can return early tokens.splice( i, 1 ); selector = seed.length && toSelector( tokens ); if ( !selector ) { push.apply( results, slice.call( seed, 0 ) ); return results; } break; } } } } } // Compile and execute a filtering function // Provide `match` to avoid retokenization if we modified the selector above compile( selector, match )( seed, context, documentIsXML, results, rsibling.test( selector ) ); return results; } // Deprecated Expr.pseudos["nth"] = Expr.pseudos["eq"]; // Easy API for creating new setFilters function setFilters() {} Expr.filters = setFilters.prototype = Expr.pseudos; Expr.setFilters = new setFilters(); // Initialize with the default document setDocument(); // Override sizzle attribute retrieval Sizzle.attr = jQuery.attr; jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[":"] = jQuery.expr.pseudos; jQuery.unique = Sizzle.uniqueSort; jQuery.text = Sizzle.getText; jQuery.isXMLDoc = Sizzle.isXML; jQuery.contains = Sizzle.contains; })( window ); var runtil = /Until$/, rparentsprev = /^(?:parents|prev(?:Until|All))/, isSimple = /^.[^:#\[\.,]*$/, rneedsContext = jQuery.expr.match.needsContext, // methods guaranteed to produce a unique set when starting from a unique set guaranteedUnique = { children: true, contents: true, next: true, prev: true }; jQuery.fn.extend({ find: function( selector ) { var i, ret, self; if ( typeof selector !== "string" ) { self = this; return this.pushStack( jQuery( selector ).filter(function() { for ( i = 0; i < self.length; i++ ) { if ( jQuery.contains( self[ i ], this ) ) { return true; } } }) ); } ret = []; for ( i = 0; i < this.length; i++ ) { jQuery.find( selector, this[ i ], ret ); } // Needed because $( selector, context ) becomes $( context ).find( selector ) ret = this.pushStack( jQuery.unique( ret ) ); ret.selector = ( this.selector ? this.selector + " " : "" ) + selector; return ret; }, has: function( target ) { var i, targets = jQuery( target, this ), len = targets.length; return this.filter(function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( this, targets[i] ) ) { return true; } } }); }, not: function( selector ) { return this.pushStack( winnow(this, selector, false) ); }, filter: function( selector ) { return this.pushStack( winnow(this, selector, true) ); }, is: function( selector ) { return !!selector && ( typeof selector === "string" ? // If this is a positional/relative selector, check membership in the returned set // so $("p:first").is("p:last") won't return true for a doc with two "p". rneedsContext.test( selector ) ? jQuery( selector, this.context ).index( this[0] ) >= 0 : jQuery.filter( selector, this ).length > 0 : this.filter( selector ).length > 0 ); }, closest: function( selectors, context ) { var cur, i = 0, l = this.length, ret = [], pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? jQuery( selectors, context || this.context ) : 0; for ( ; i < l; i++ ) { cur = this[i]; while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) { if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { ret.push( cur ); break; } cur = cur.parentNode; } } return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); }, // Determine the position of an element within // the matched set of elements index: function( elem ) { // No argument, return index in parent if ( !elem ) { return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; } // index in selector if ( typeof elem === "string" ) { return jQuery.inArray( this[0], jQuery( elem ) ); } // Locate the position of the desired element return jQuery.inArray( // If it receives a jQuery object, the first element is used elem.jquery ? elem[0] : elem, this ); }, add: function( selector, context ) { var set = typeof selector === "string" ? jQuery( selector, context ) : jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), all = jQuery.merge( this.get(), set ); return this.pushStack( jQuery.unique(all) ); }, addBack: function( selector ) { return this.add( selector == null ? this.prevObject : this.prevObject.filter(selector) ); } }); jQuery.fn.andSelf = jQuery.fn.addBack; function sibling( cur, dir ) { do { cur = cur[ dir ]; } while ( cur && cur.nodeType !== 1 ); return cur; } jQuery.each({ parent: function( elem ) { var parent = elem.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, parents: function( elem ) { return jQuery.dir( elem, "parentNode" ); }, parentsUntil: function( elem, i, until ) { return jQuery.dir( elem, "parentNode", until ); }, next: function( elem ) { return sibling( elem, "nextSibling" ); }, prev: function( elem ) { return sibling( elem, "previousSibling" ); }, nextAll: function( elem ) { return jQuery.dir( elem, "nextSibling" ); }, prevAll: function( elem ) { return jQuery.dir( elem, "previousSibling" ); }, nextUntil: function( elem, i, until ) { return jQuery.dir( elem, "nextSibling", until ); }, prevUntil: function( elem, i, until ) { return jQuery.dir( elem, "previousSibling", until ); }, siblings: function( elem ) { return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); }, children: function( elem ) { return jQuery.sibling( elem.firstChild ); }, contents: function( elem ) { return jQuery.nodeName( elem, "iframe" ) ? elem.contentDocument || elem.contentWindow.document : jQuery.merge( [], elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var ret = jQuery.map( this, fn, until ); if ( !runtil.test( name ) ) { selector = until; } if ( selector && typeof selector === "string" ) { ret = jQuery.filter( selector, ret ); } ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; if ( this.length > 1 && rparentsprev.test( name ) ) { ret = ret.reverse(); } return this.pushStack( ret ); }; }); jQuery.extend({ filter: function( expr, elems, not ) { if ( not ) { expr = ":not(" + expr + ")"; } return elems.length === 1 ? jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : jQuery.find.matches(expr, elems); }, dir: function( elem, dir, until ) { var matched = [], cur = elem[ dir ]; while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { if ( cur.nodeType === 1 ) { matched.push( cur ); } cur = cur[dir]; } return matched; }, sibling: function( n, elem ) { var r = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType === 1 && n !== elem ) { r.push( n ); } } return r; } }); // Implement the identical functionality for filter and not function winnow( elements, qualifier, keep ) { // Can't pass null or undefined to indexOf in Firefox 4 // Set to 0 to skip string check qualifier = qualifier || 0; if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep(elements, function( elem, i ) { var retVal = !!qualifier.call( elem, i, elem ); return retVal === keep; }); } else if ( qualifier.nodeType ) { return jQuery.grep(elements, function( elem ) { return ( elem === qualifier ) === keep; }); } else if ( typeof qualifier === "string" ) { var filtered = jQuery.grep(elements, function( elem ) { return elem.nodeType === 1; }); if ( isSimple.test( qualifier ) ) { return jQuery.filter(qualifier, filtered, !keep); } else { qualifier = jQuery.filter( qualifier, filtered ); } } return jQuery.grep(elements, function( elem ) { return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; }); } function createSafeFragment( document ) { var list = nodeNames.split( "|" ), safeFrag = document.createDocumentFragment(); if ( safeFrag.createElement ) { while ( list.length ) { safeFrag.createElement( list.pop() ); } } return safeFrag; } var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), rleadingWhitespace = /^\s+/, rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, rtagName = /<([\w:]+)/, rtbody = /<tbody/i, rhtml = /<|&#?\w+;/, rnoInnerhtml = /<(?:script|style|link)/i, manipulation_rcheckableType = /^(?:checkbox|radio)$/i, // checked="checked" or checked rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, rscriptType = /^$|\/(?:java|ecma)script/i, rscriptTypeMasked = /^true\/(.*)/, rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g, // We have to close these tags to support XHTML (#13200) wrapMap = { option: [ 1, "<select multiple='multiple'>", "</select>" ], legend: [ 1, "<fieldset>", "</fieldset>" ], area: [ 1, "<map>", "</map>" ], param: [ 1, "<object>", "</object>" ], thead: [ 1, "<table>", "</table>" ], tr: [ 2, "<table><tbody>", "</tbody></table>" ], col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, // unless wrapped in a div with non-breaking characters in front of it. _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ] }, safeFragment = createSafeFragment( document ), fragmentDiv = safeFragment.appendChild( document.createElement("div") ); wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; jQuery.fn.extend({ text: function( value ) { return jQuery.access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); }, null, value, arguments.length ); }, wrapAll: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each(function(i) { jQuery(this).wrapAll( html.call(this, i) ); }); } if ( this[0] ) { // The elements to wrap the target around var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); if ( this[0].parentNode ) { wrap.insertBefore( this[0] ); } wrap.map(function() { var elem = this; while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { elem = elem.firstChild; } return elem; }).append( this ); } return this; }, wrapInner: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each(function(i) { jQuery(this).wrapInner( html.call(this, i) ); }); } return this.each(function() { var self = jQuery( this ), contents = self.contents(); if ( contents.length ) { contents.wrapAll( html ); } else { self.append( html ); } }); }, wrap: function( html ) { var isFunction = jQuery.isFunction( html ); return this.each(function(i) { jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); }); }, unwrap: function() { return this.parent().each(function() { if ( !jQuery.nodeName( this, "body" ) ) { jQuery( this ).replaceWith( this.childNodes ); } }).end(); }, append: function() { return this.domManip(arguments, true, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.appendChild( elem ); } }); }, prepend: function() { return this.domManip(arguments, true, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.insertBefore( elem, this.firstChild ); } }); }, before: function() { return this.domManip( arguments, false, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } }); }, after: function() { return this.domManip( arguments, false, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); } }); }, // keepData is for internal use only--do not document remove: function( selector, keepData ) { var elem, i = 0; for ( ; (elem = this[i]) != null; i++ ) { if ( !selector || jQuery.filter( selector, [ elem ] ).length > 0 ) { if ( !keepData && elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem ) ); } if ( elem.parentNode ) { if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { setGlobalEval( getAll( elem, "script" ) ); } elem.parentNode.removeChild( elem ); } } } return this; }, empty: function() { var elem, i = 0; for ( ; (elem = this[i]) != null; i++ ) { // Remove element nodes and prevent memory leaks if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); } // Remove any remaining nodes while ( elem.firstChild ) { elem.removeChild( elem.firstChild ); } // If this is a select, ensure that it displays empty (#12336) // Support: IE<9 if ( elem.options && jQuery.nodeName( elem, "select" ) ) { elem.options.length = 0; } } return this; }, clone: function( dataAndEvents, deepDataAndEvents ) { dataAndEvents = dataAndEvents == null ? false : dataAndEvents; deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; return this.map( function () { return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); }); }, html: function( value ) { return jQuery.access( this, function( value ) { var elem = this[0] || {}, i = 0, l = this.length; if ( value === undefined ) { return elem.nodeType === 1 ? elem.innerHTML.replace( rinlinejQuery, "" ) : undefined; } // See if we can take a shortcut and just use innerHTML if ( typeof value === "string" && !rnoInnerhtml.test( value ) && ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { value = value.replace( rxhtmlTag, "<$1></$2>" ); try { for (; i < l; i++ ) { // Remove element nodes and prevent memory leaks elem = this[i] || {}; if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); elem.innerHTML = value; } } elem = 0; // If using innerHTML throws an exception, use the fallback method } catch(e) {} } if ( elem ) { this.empty().append( value ); } }, null, value, arguments.length ); }, replaceWith: function( value ) { var isFunc = jQuery.isFunction( value ); // Make sure that the elements are removed from the DOM before they are inserted // this can help fix replacing a parent with child elements if ( !isFunc && typeof value !== "string" ) { value = jQuery( value ).not( this ).detach(); } return this.domManip( [ value ], true, function( elem ) { var next = this.nextSibling, parent = this.parentNode; if ( parent && this.nodeType === 1 || this.nodeType === 11 ) { jQuery( this ).remove(); if ( next ) { next.parentNode.insertBefore( elem, next ); } else { parent.appendChild( elem ); } } }); }, detach: function( selector ) { return this.remove( selector, true ); }, domManip: function( args, table, callback ) { // Flatten any nested arrays args = core_concat.apply( [], args ); var fragment, first, scripts, hasScripts, node, doc, i = 0, l = this.length, set = this, iNoClone = l - 1, value = args[0], isFunction = jQuery.isFunction( value ); // We can't cloneNode fragments that contain checked, in WebKit if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { return this.each(function( index ) { var self = set.eq( index ); if ( isFunction ) { args[0] = value.call( this, index, table ? self.html() : undefined ); } self.domManip( args, table, callback ); }); } if ( l ) { fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); first = fragment.firstChild; if ( fragment.childNodes.length === 1 ) { fragment = first; } if ( first ) { table = table && jQuery.nodeName( first, "tr" ); scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); hasScripts = scripts.length; // Use the original fragment for the last item instead of the first because it can end up // being emptied incorrectly in certain situations (#8070). for ( ; i < l; i++ ) { node = fragment; if ( i !== iNoClone ) { node = jQuery.clone( node, true, true ); // Keep references to cloned scripts for later restoration if ( hasScripts ) { jQuery.merge( scripts, getAll( node, "script" ) ); } } callback.call( table && jQuery.nodeName( this[i], "table" ) ? findOrAppend( this[i], "tbody" ) : this[i], node, i ); } if ( hasScripts ) { doc = scripts[ scripts.length - 1 ].ownerDocument; // Reenable scripts jQuery.map( scripts, restoreScript ); // Evaluate executable scripts on first document insertion for ( i = 0; i < hasScripts; i++ ) { node = scripts[ i ]; if ( rscriptType.test( node.type || "" ) && !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { if ( node.src ) { // Hope ajax is available... jQuery.ajax({ url: node.src, type: "GET", dataType: "script", async: false, global: false, "throws": true }); } else { jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); } } } } // Fix #11809: Avoid leaking memory fragment = first = null; } } return this; } }); function findOrAppend( elem, tag ) { return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) ); } // Replace/restore the type attribute of script elements for safe DOM manipulation function disableScript( elem ) { var attr = elem.getAttributeNode("type"); elem.type = ( attr && attr.specified ) + "/" + elem.type; return elem; } function restoreScript( elem ) { var match = rscriptTypeMasked.exec( elem.type ); if ( match ) { elem.type = match[1]; } else { elem.removeAttribute("type"); } return elem; } // Mark scripts as having already been evaluated function setGlobalEval( elems, refElements ) { var elem, i = 0; for ( ; (elem = elems[i]) != null; i++ ) { jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); } } function cloneCopyEvent( src, dest ) { if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { return; } var type, i, l, oldData = jQuery._data( src ), curData = jQuery._data( dest, oldData ), events = oldData.events; if ( events ) { delete curData.handle; curData.events = {}; for ( type in events ) { for ( i = 0, l = events[ type ].length; i < l; i++ ) { jQuery.event.add( dest, type, events[ type ][ i ] ); } } } // make the cloned public data object a copy from the original if ( curData.data ) { curData.data = jQuery.extend( {}, curData.data ); } } function fixCloneNodeIssues( src, dest ) { var nodeName, data, e; // We do not need to do anything for non-Elements if ( dest.nodeType !== 1 ) { return; } nodeName = dest.nodeName.toLowerCase(); // IE6-8 copies events bound via attachEvent when using cloneNode. if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { data = jQuery._data( dest ); for ( e in data.events ) { jQuery.removeEvent( dest, e, data.handle ); } // Event data gets referenced instead of copied if the expando gets copied too dest.removeAttribute( jQuery.expando ); } // IE blanks contents when cloning scripts, and tries to evaluate newly-set text if ( nodeName === "script" && dest.text !== src.text ) { disableScript( dest ).text = src.text; restoreScript( dest ); // IE6-10 improperly clones children of object elements using classid. // IE10 throws NoModificationAllowedError if parent is null, #12132. } else if ( nodeName === "object" ) { if ( dest.parentNode ) { dest.outerHTML = src.outerHTML; } // This path appears unavoidable for IE9. When cloning an object // element in IE9, the outerHTML strategy above is not sufficient. // If the src has innerHTML and the destination does not, // copy the src.innerHTML into the dest.innerHTML. #10324 if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { dest.innerHTML = src.innerHTML; } } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { // IE6-8 fails to persist the checked state of a cloned checkbox // or radio button. Worse, IE6-7 fail to give the cloned element // a checked appearance if the defaultChecked value isn't also set dest.defaultChecked = dest.checked = src.checked; // IE6-7 get confused and end up setting the value of a cloned // checkbox/radio button to an empty string instead of "on" if ( dest.value !== src.value ) { dest.value = src.value; } // IE6-8 fails to return the selected option to the default selected // state when cloning options } else if ( nodeName === "option" ) { dest.defaultSelected = dest.selected = src.defaultSelected; // IE6-8 fails to set the defaultValue to the correct value when // cloning other types of input fields } else if ( nodeName === "input" || nodeName === "textarea" ) { dest.defaultValue = src.defaultValue; } } jQuery.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function( name, original ) { jQuery.fn[ name ] = function( selector ) { var elems, i = 0, ret = [], insert = jQuery( selector ), last = insert.length - 1; for ( ; i <= last; i++ ) { elems = i === last ? this : this.clone(true); jQuery( insert[i] )[ original ]( elems ); // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() core_push.apply( ret, elems.get() ); } return this.pushStack( ret ); }; }); function getAll( context, tag ) { var elems, elem, i = 0, found = typeof context.getElementsByTagName !== "undefined" ? context.getElementsByTagName( tag || "*" ) : typeof context.querySelectorAll !== "undefined" ? context.querySelectorAll( tag || "*" ) : undefined; if ( !found ) { for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { if ( !tag || jQuery.nodeName( elem, tag ) ) { found.push( elem ); } else { jQuery.merge( found, getAll( elem, tag ) ); } } } return tag === undefined || tag && jQuery.nodeName( context, tag ) ? jQuery.merge( [ context ], found ) : found; } // Used in buildFragment, fixes the defaultChecked property function fixDefaultChecked( elem ) { if ( manipulation_rcheckableType.test( elem.type ) ) { elem.defaultChecked = elem.checked; } } jQuery.extend({ clone: function( elem, dataAndEvents, deepDataAndEvents ) { var destElements, srcElements, node, i, clone, inPage = jQuery.contains( elem.ownerDocument, elem ); if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { clone = elem.cloneNode( true ); // IE<=8 does not properly clone detached, unknown element nodes } else { fragmentDiv.innerHTML = elem.outerHTML; fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); } if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 destElements = getAll( clone ); srcElements = getAll( elem ); // Fix all IE cloning issues for ( i = 0; (node = srcElements[i]) != null; ++i ) { // Ensure that the destination node is not null; Fixes #9587 if ( destElements[i] ) { fixCloneNodeIssues( node, destElements[i] ); } } } // Copy the events from the original to the clone if ( dataAndEvents ) { if ( deepDataAndEvents ) { srcElements = srcElements || getAll( elem ); destElements = destElements || getAll( clone ); for ( i = 0; (node = srcElements[i]) != null; i++ ) { cloneCopyEvent( node, destElements[i] ); } } else { cloneCopyEvent( elem, clone ); } } // Preserve script evaluation history destElements = getAll( clone, "script" ); if ( destElements.length > 0 ) { setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); } destElements = srcElements = node = null; // Return the cloned set return clone; }, buildFragment: function( elems, context, scripts, selection ) { var contains, elem, tag, tmp, wrap, tbody, j, l = elems.length, // Ensure a safe fragment safe = createSafeFragment( context ), nodes = [], i = 0; for ( ; i < l; i++ ) { elem = elems[ i ]; if ( elem || elem === 0 ) { // Add nodes directly if ( jQuery.type( elem ) === "object" ) { jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); // Convert non-html into a text node } else if ( !rhtml.test( elem ) ) { nodes.push( context.createTextNode( elem ) ); // Convert html into DOM nodes } else { tmp = tmp || safe.appendChild( context.createElement("div") ); // Deserialize a standard representation tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); wrap = wrapMap[ tag ] || wrapMap._default; tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[2]; // Descend through wrappers to the right content j = wrap[0]; while ( j-- ) { tmp = tmp.lastChild; } // Manually add leading whitespace removed by IE if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); } // Remove IE's autoinserted <tbody> from table fragments if ( !jQuery.support.tbody ) { // String was a <table>, *may* have spurious <tbody> elem = tag === "table" && !rtbody.test( elem ) ? tmp.firstChild : // String was a bare <thead> or <tfoot> wrap[1] === "<table>" && !rtbody.test( elem ) ? tmp : 0; j = elem && elem.childNodes.length; while ( j-- ) { if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { elem.removeChild( tbody ); } } } jQuery.merge( nodes, tmp.childNodes ); // Fix #12392 for WebKit and IE > 9 tmp.textContent = ""; // Fix #12392 for oldIE while ( tmp.firstChild ) { tmp.removeChild( tmp.firstChild ); } // Remember the top-level container for proper cleanup tmp = safe.lastChild; } } } // Fix #11356: Clear elements from fragment if ( tmp ) { safe.removeChild( tmp ); } // Reset defaultChecked for any radios and checkboxes // about to be appended to the DOM in IE 6/7 (#8060) if ( !jQuery.support.appendChecked ) { jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); } i = 0; while ( (elem = nodes[ i++ ]) ) { // #4087 - If origin and destination elements are the same, and this is // that element, do not do anything if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { continue; } contains = jQuery.contains( elem.ownerDocument, elem ); // Append to fragment tmp = getAll( safe.appendChild( elem ), "script" ); // Preserve script evaluation history if ( contains ) { setGlobalEval( tmp ); } // Capture executables if ( scripts ) { j = 0; while ( (elem = tmp[ j++ ]) ) { if ( rscriptType.test( elem.type || "" ) ) { scripts.push( elem ); } } } } tmp = null; return safe; }, cleanData: function( elems, /* internal */ acceptData ) { var data, id, elem, type, i = 0, internalKey = jQuery.expando, cache = jQuery.cache, deleteExpando = jQuery.support.deleteExpando, special = jQuery.event.special; for ( ; (elem = elems[i]) != null; i++ ) { if ( acceptData || jQuery.acceptData( elem ) ) { id = elem[ internalKey ]; data = id && cache[ id ]; if ( data ) { if ( data.events ) { for ( type in data.events ) { if ( special[ type ] ) { jQuery.event.remove( elem, type ); // This is a shortcut to avoid jQuery.event.remove's overhead } else { jQuery.removeEvent( elem, type, data.handle ); } } } // Remove cache only if it was not already removed by jQuery.event.remove if ( cache[ id ] ) { delete cache[ id ]; // IE does not allow us to delete expando properties from nodes, // nor does it have a removeAttribute function on Document nodes; // we must handle all of these cases if ( deleteExpando ) { delete elem[ internalKey ]; } else if ( typeof elem.removeAttribute !== "undefined" ) { elem.removeAttribute( internalKey ); } else { elem[ internalKey ] = null; } core_deletedIds.push( id ); } } } } } }); var curCSS, getStyles, iframe, ralpha = /alpha\([^)]*\)/i, ropacity = /opacity\s*=\s*([^)]*)/, rposition = /^(top|right|bottom|left)$/, // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display rdisplayswap = /^(none|table(?!-c[ea]).+)/, rmargin = /^margin/, rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), elemdisplay = { BODY: "block" }, cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssNormalTransform = { letterSpacing: 0, fontWeight: 400 }, cssExpand = [ "Top", "Right", "Bottom", "Left" ], cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; // return a css property mapped to a potentially vendor prefixed property function vendorPropName( style, name ) { // shortcut for names that are not vendor prefixed if ( name in style ) { return name; } // check for vendor prefixed names var capName = name.charAt(0).toUpperCase() + name.slice(1), origName = name, i = cssPrefixes.length; while ( i-- ) { name = cssPrefixes[ i ] + capName; if ( name in style ) { return name; } } return origName; } function isHidden( elem, el ) { // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); } function showHide( elements, show ) { var elem, values = [], index = 0, length = elements.length; for ( ; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } values[ index ] = jQuery._data( elem, "olddisplay" ); if ( show ) { // Reset the inline display of this element to learn if it is // being hidden by cascaded rules or not if ( !values[ index ] && elem.style.display === "none" ) { elem.style.display = ""; } // Set elements which have been overridden with display: none // in a stylesheet to whatever the default browser style is // for such an element if ( elem.style.display === "" && isHidden( elem ) ) { values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); } } else if ( !values[ index ] && !isHidden( elem ) ) { jQuery._data( elem, "olddisplay", jQuery.css( elem, "display" ) ); } } // Set the display of most of the elements in a second loop // to avoid the constant reflow for ( index = 0; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } if ( !show || elem.style.display === "none" || elem.style.display === "" ) { elem.style.display = show ? values[ index ] || "" : "none"; } } return elements; } jQuery.fn.extend({ css: function( name, value ) { return jQuery.access( this, function( elem, name, value ) { var styles, len, map = {}, i = 0; if ( jQuery.isArray( name ) ) { styles = getStyles( elem ); len = name.length; for ( ; i < len; i++ ) { map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); } return map; } return value !== undefined ? jQuery.style( elem, name, value ) : jQuery.css( elem, name ); }, name, value, arguments.length > 1 ); }, show: function() { return showHide( this, true ); }, hide: function() { return showHide( this ); }, toggle: function( state ) { var bool = typeof state === "boolean"; return this.each(function() { if ( bool ? state : isHidden( this ) ) { jQuery( this ).show(); } else { jQuery( this ).hide(); } }); } }); jQuery.extend({ // Add in style property hooks for overriding the default // behavior of getting and setting a style property cssHooks: { opacity: { get: function( elem, computed ) { if ( computed ) { // We should always get a number back from opacity var ret = curCSS( elem, "opacity" ); return ret === "" ? "1" : ret; } } } }, // Exclude the following css properties to add px cssNumber: { "columnCount": true, "fillOpacity": true, "fontWeight": true, "lineHeight": true, "opacity": true, "orphans": true, "widows": true, "zIndex": true, "zoom": true }, // Add in properties whose names you wish to fix before // setting or getting the value cssProps: { // normalize float css property "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" }, // Get and set the style property on a DOM Node style: function( elem, name, value, extra ) { // Don't set styles on text and comment nodes if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { return; } // Make sure that we're working with the right name var ret, type, hooks, origName = jQuery.camelCase( name ), style = elem.style; name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); // gets hook for the prefixed version // followed by the unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // Check if we're setting a value if ( value !== undefined ) { type = typeof value; // convert relative number strings (+= or -=) to relative numbers. #7345 if ( type === "string" && (ret = rrelNum.exec( value )) ) { value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); // Fixes bug #9237 type = "number"; } // Make sure that NaN and null values aren't set. See: #7116 if ( value == null || type === "number" && isNaN( value ) ) { return; } // If a number was passed in, add 'px' to the (except for certain CSS properties) if ( type === "number" && !jQuery.cssNumber[ origName ] ) { value += "px"; } // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, // but it would mean to define eight (for every problematic property) identical functions if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { style[ name ] = "inherit"; } // If a hook was provided, use that value, otherwise just set the specified value if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { // Wrapped to prevent IE from throwing errors when 'invalid' values are provided // Fixes bug #5509 try { style[ name ] = value; } catch(e) {} } } else { // If a hook was provided get the non-computed value from there if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { return ret; } // Otherwise just get the value from the style object return style[ name ]; } }, css: function( elem, name, extra, styles ) { var val, num, hooks, origName = jQuery.camelCase( name ); // Make sure that we're working with the right name name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); // gets hook for the prefixed version // followed by the unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // If a hook was provided get the computed value from there if ( hooks && "get" in hooks ) { val = hooks.get( elem, true, extra ); } // Otherwise, if a way to get the computed value exists, use that if ( val === undefined ) { val = curCSS( elem, name, styles ); } //convert "normal" to computed value if ( val === "normal" && name in cssNormalTransform ) { val = cssNormalTransform[ name ]; } // Return, converting to number if forced or a qualifier was provided and val looks numeric if ( extra ) { num = parseFloat( val ); return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; } return val; }, // A method for quickly swapping in/out CSS properties to get correct calculations swap: function( elem, options, callback, args ) { var ret, name, old = {}; // Remember the old values, and insert the new ones for ( name in options ) { old[ name ] = elem.style[ name ]; elem.style[ name ] = options[ name ]; } ret = callback.apply( elem, args || [] ); // Revert the old values for ( name in options ) { elem.style[ name ] = old[ name ]; } return ret; } }); // NOTE: we've included the "window" in window.getComputedStyle // because jsdom on node.js will break without it. if ( window.getComputedStyle ) { getStyles = function( elem ) { return window.getComputedStyle( elem, null ); }; curCSS = function( elem, name, _computed ) { var width, minWidth, maxWidth, computed = _computed || getStyles( elem ), // getPropertyValue is only needed for .css('filter') in IE9, see #12537 ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, style = elem.style; if ( computed ) { if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { ret = jQuery.style( elem, name ); } // A tribute to the "awesome hack by Dean Edwards" // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { // Remember the original values width = style.width; minWidth = style.minWidth; maxWidth = style.maxWidth; // Put in the new values to get a computed value out style.minWidth = style.maxWidth = style.width = ret; ret = computed.width; // Revert the changed values style.width = width; style.minWidth = minWidth; style.maxWidth = maxWidth; } } return ret; }; } else if ( document.documentElement.currentStyle ) { getStyles = function( elem ) { return elem.currentStyle; }; curCSS = function( elem, name, _computed ) { var left, rs, rsLeft, computed = _computed || getStyles( elem ), ret = computed ? computed[ name ] : undefined, style = elem.style; // Avoid setting ret to empty string here // so we don't default to auto if ( ret == null && style && style[ name ] ) { ret = style[ name ]; } // From the awesome hack by Dean Edwards // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 // If we're not dealing with a regular pixel number // but a number that has a weird ending, we need to convert it to pixels // but not position css attributes, as those are proportional to the parent element instead // and we can't measure the parent instead because it might trigger a "stacking dolls" problem if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { // Remember the original values left = style.left; rs = elem.runtimeStyle; rsLeft = rs && rs.left; // Put in the new values to get a computed value out if ( rsLeft ) { rs.left = elem.currentStyle.left; } style.left = name === "fontSize" ? "1em" : ret; ret = style.pixelLeft + "px"; // Revert the changed values style.left = left; if ( rsLeft ) { rs.left = rsLeft; } } return ret === "" ? "auto" : ret; }; } function setPositiveNumber( elem, value, subtract ) { var matches = rnumsplit.exec( value ); return matches ? // Guard against undefined "subtract", e.g., when used as in cssHooks Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : value; } function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { var i = extra === ( isBorderBox ? "border" : "content" ) ? // If we already have the right measurement, avoid augmentation 4 : // Otherwise initialize for horizontal or vertical properties name === "width" ? 1 : 0, val = 0; for ( ; i < 4; i += 2 ) { // both box models exclude margin, so add it if we want it if ( extra === "margin" ) { val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); } if ( isBorderBox ) { // border-box includes padding, so remove it if we want content if ( extra === "content" ) { val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); } // at this point, extra isn't border nor margin, so remove border if ( extra !== "margin" ) { val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } else { // at this point, extra isn't content, so add padding val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); // at this point, extra isn't content nor padding, so add border if ( extra !== "padding" ) { val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } } return val; } function getWidthOrHeight( elem, name, extra ) { // Start with offset property, which is equivalent to the border-box value var valueIsBorderBox = true, val = name === "width" ? elem.offsetWidth : elem.offsetHeight, styles = getStyles( elem ), isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; // some non-html elements return undefined for offsetWidth, so check for null/undefined // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 if ( val <= 0 || val == null ) { // Fall back to computed then uncomputed css if necessary val = curCSS( elem, name, styles ); if ( val < 0 || val == null ) { val = elem.style[ name ]; } // Computed unit is not pixels. Stop here and return. if ( rnumnonpx.test(val) ) { return val; } // we need the check for style in case a browser which returns unreliable values // for getComputedStyle silently falls back to the reliable elem.style valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); // Normalize "", auto, and prepare for extra val = parseFloat( val ) || 0; } // use the active box-sizing model to add/subtract irrelevant styles return ( val + augmentWidthOrHeight( elem, name, extra || ( isBorderBox ? "border" : "content" ), valueIsBorderBox, styles ) ) + "px"; } // Try to determine the default display value of an element function css_defaultDisplay( nodeName ) { var doc = document, display = elemdisplay[ nodeName ]; if ( !display ) { display = actualDisplay( nodeName, doc ); // If the simple way fails, read from inside an iframe if ( display === "none" || !display ) { // Use the already-created iframe if possible iframe = ( iframe || jQuery("<iframe frameborder='0' width='0' height='0'/>") .css( "cssText", "display:block !important" ) ).appendTo( doc.documentElement ); // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse doc = ( iframe[0].contentWindow || iframe[0].contentDocument ).document; doc.write("<!doctype html><html><body>"); doc.close(); display = actualDisplay( nodeName, doc ); iframe.detach(); } // Store the correct default display elemdisplay[ nodeName ] = display; } return display; } // Called ONLY from within css_defaultDisplay function actualDisplay( name, doc ) { var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), display = jQuery.css( elem[0], "display" ); elem.remove(); return display; } jQuery.each([ "height", "width" ], function( i, name ) { jQuery.cssHooks[ name ] = { get: function( elem, computed, extra ) { if ( computed ) { // certain elements can have dimension info if we invisibly show them // however, it must have a current display style that would benefit from this return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ? jQuery.swap( elem, cssShow, function() { return getWidthOrHeight( elem, name, extra ); }) : getWidthOrHeight( elem, name, extra ); } }, set: function( elem, value, extra ) { var styles = extra && getStyles( elem ); return setPositiveNumber( elem, value, extra ? augmentWidthOrHeight( elem, name, extra, jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", styles ) : 0 ); } }; }); if ( !jQuery.support.opacity ) { jQuery.cssHooks.opacity = { get: function( elem, computed ) { // IE uses filters for opacity return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ? ( 0.01 * parseFloat( RegExp.$1 ) ) + "" : computed ? "1" : ""; }, set: function( elem, value ) { var style = elem.style, currentStyle = elem.currentStyle, opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", filter = currentStyle && currentStyle.filter || style.filter || ""; // IE has trouble with opacity if it does not have layout // Force it by setting the zoom level style.zoom = 1; // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652 // if value === "", then remove inline opacity #12685 if ( ( value >= 1 || value === "" ) && jQuery.trim( filter.replace( ralpha, "" ) ) === "" && style.removeAttribute ) { // Setting style.filter to null, "" & " " still leave "filter:" in the cssText // if "filter:" is present at all, clearType is disabled, we want to avoid this // style.removeAttribute is IE Only, but so apparently is this code path... style.removeAttribute( "filter" ); // if there is no filter style applied in a css rule or unset inline opacity, we are done if ( value === "" || currentStyle && !currentStyle.filter ) { return; } } // otherwise, set new filter values style.filter = ralpha.test( filter ) ? filter.replace( ralpha, opacity ) : filter + " " + opacity; } }; } // These hooks cannot be added until DOM ready because the support test // for it is not run until after DOM ready jQuery(function() { if ( !jQuery.support.reliableMarginRight ) { jQuery.cssHooks.marginRight = { get: function( elem, computed ) { if ( computed ) { // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right // Work around by temporarily setting element display to inline-block return jQuery.swap( elem, { "display": "inline-block" }, curCSS, [ elem, "marginRight" ] ); } } }; } // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 // getComputedStyle returns percent when specified for top/left/bottom/right // rather than make the css module depend on the offset module, we just check for it here if ( !jQuery.support.pixelPosition && jQuery.fn.position ) { jQuery.each( [ "top", "left" ], function( i, prop ) { jQuery.cssHooks[ prop ] = { get: function( elem, computed ) { if ( computed ) { computed = curCSS( elem, prop ); // if curCSS returns percentage, fallback to offset return rnumnonpx.test( computed ) ? jQuery( elem ).position()[ prop ] + "px" : computed; } } }; }); } }); if ( jQuery.expr && jQuery.expr.filters ) { jQuery.expr.filters.hidden = function( elem ) { return ( elem.offsetWidth === 0 && elem.offsetHeight === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none"); }; jQuery.expr.filters.visible = function( elem ) { return !jQuery.expr.filters.hidden( elem ); }; } // These hooks are used by animate to expand properties jQuery.each({ margin: "", padding: "", border: "Width" }, function( prefix, suffix ) { jQuery.cssHooks[ prefix + suffix ] = { expand: function( value ) { var i = 0, expanded = {}, // assumes a single number if not a string parts = typeof value === "string" ? value.split(" ") : [ value ]; for ( ; i < 4; i++ ) { expanded[ prefix + cssExpand[ i ] + suffix ] = parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; } return expanded; } }; if ( !rmargin.test( prefix ) ) { jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; } }); var r20 = /%20/g, rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset)$/i, rsubmittable = /^(?:input|select|textarea|keygen)/i; jQuery.fn.extend({ serialize: function() { return jQuery.param( this.serializeArray() ); }, serializeArray: function() { return this.map(function(){ // Can add propHook for "elements" to filter or add form elements var elements = jQuery.prop( this, "elements" ); return elements ? jQuery.makeArray( elements ) : this; }) .filter(function(){ var type = this.type; // Use .is(":disabled") so that fieldset[disabled] works return this.name && !jQuery( this ).is( ":disabled" ) && rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !manipulation_rcheckableType.test( type ) ); }) .map(function( i, elem ){ var val = jQuery( this ).val(); return val == null ? null : jQuery.isArray( val ) ? jQuery.map( val, function( val ){ return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; }) : { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; }).get(); } }); //Serialize an array of form elements or a set of //key/values into a query string jQuery.param = function( a, traditional ) { var prefix, s = [], add = function( key, value ) { // If value is a function, invoke it and return its value value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); }; // Set traditional to true for jQuery <= 1.3.2 behavior. if ( traditional === undefined ) { traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; } // If an array was passed in, assume that it is an array of form elements. if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { // Serialize the form elements jQuery.each( a, function() { add( this.name, this.value ); }); } else { // If traditional, encode the "old" way (the way 1.3.2 or older // did it), otherwise encode params recursively. for ( prefix in a ) { buildParams( prefix, a[ prefix ], traditional, add ); } } // Return the resulting serialization return s.join( "&" ).replace( r20, "+" ); }; function buildParams( prefix, obj, traditional, add ) { var name; if ( jQuery.isArray( obj ) ) { // Serialize array item. jQuery.each( obj, function( i, v ) { if ( traditional || rbracket.test( prefix ) ) { // Treat each array item as a scalar. add( prefix, v ); } else { // Item is non-scalar (array or object), encode its numeric index. buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add ); } }); } else if ( !traditional && jQuery.type( obj ) === "object" ) { // Serialize object item. for ( name in obj ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); } } else { // Serialize scalar item. add( prefix, obj ); } } var // Document location ajaxLocParts, ajaxLocation, ajax_nonce = jQuery.now(), ajax_rquery = /\?/, rhash = /#.*$/, rts = /([?&])_=[^&]*/, rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL // #7653, #8125, #8152: local protocol detection rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, rnoContent = /^(?:GET|HEAD)$/, rprotocol = /^\/\//, rurl = /^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/, // Keep a copy of the old load method _load = jQuery.fn.load, /* Prefilters * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) * 2) These are called: * - BEFORE asking for a transport * - AFTER param serialization (s.data is a string if s.processData is true) * 3) key is the dataType * 4) the catchall symbol "*" can be used * 5) execution will start with transport dataType and THEN continue down to "*" if needed */ prefilters = {}, /* Transports bindings * 1) key is the dataType * 2) the catchall symbol "*" can be used * 3) selection will start with transport dataType and THEN go to "*" if needed */ transports = {}, // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression allTypes = "*/".concat("*"); // #8138, IE may throw an exception when accessing // a field from window.location if document.domain has been set try { ajaxLocation = location.href; } catch( e ) { // Use the href attribute of an A element // since IE will modify it given document.location ajaxLocation = document.createElement( "a" ); ajaxLocation.href = ""; ajaxLocation = ajaxLocation.href; } // Segment location into parts ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; // Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport function addToPrefiltersOrTransports( structure ) { // dataTypeExpression is optional and defaults to "*" return function( dataTypeExpression, func ) { if ( typeof dataTypeExpression !== "string" ) { func = dataTypeExpression; dataTypeExpression = "*"; } var dataType, i = 0, dataTypes = dataTypeExpression.toLowerCase().match( core_rnotwhite ) || []; if ( jQuery.isFunction( func ) ) { // For each dataType in the dataTypeExpression while ( (dataType = dataTypes[i++]) ) { // Prepend if requested if ( dataType[0] === "+" ) { dataType = dataType.slice( 1 ) || "*"; (structure[ dataType ] = structure[ dataType ] || []).unshift( func ); // Otherwise append } else { (structure[ dataType ] = structure[ dataType ] || []).push( func ); } } } }; } // Base inspection function for prefilters and transports function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { var inspected = {}, seekingTransport = ( structure === transports ); function inspect( dataType ) { var selected; inspected[ dataType ] = true; jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); if( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) { options.dataTypes.unshift( dataTypeOrTransport ); inspect( dataTypeOrTransport ); return false; } else if ( seekingTransport ) { return !( selected = dataTypeOrTransport ); } }); return selected; } return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); } // A special extend for ajax options // that takes "flat" options (not to be deep extended) // Fixes #9887 function ajaxExtend( target, src ) { var key, deep, flatOptions = jQuery.ajaxSettings.flatOptions || {}; for ( key in src ) { if ( src[ key ] !== undefined ) { ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ]; } } if ( deep ) { jQuery.extend( true, target, deep ); } return target; } jQuery.fn.load = function( url, params, callback ) { if ( typeof url !== "string" && _load ) { return _load.apply( this, arguments ); } var selector, type, response, self = this, off = url.indexOf(" "); if ( off >= 0 ) { selector = url.slice( off, url.length ); url = url.slice( 0, off ); } // If it's a function if ( jQuery.isFunction( params ) ) { // We assume that it's the callback callback = params; params = undefined; // Otherwise, build a param string } else if ( params && typeof params === "object" ) { type = "POST"; } // If we have elements to modify, make the request if ( self.length > 0 ) { jQuery.ajax({ url: url, // if "type" variable is undefined, then "GET" method will be used type: type, dataType: "html", data: params }).done(function( responseText ) { // Save response for use in complete callback response = arguments; self.html( selector ? // If a selector was specified, locate the right elements in a dummy div // Exclude scripts to avoid IE 'Permission Denied' errors jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) : // Otherwise use the full result responseText ); }).complete( callback && function( jqXHR, status ) { self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] ); }); } return this; }; // Attach a bunch of functions for handling common AJAX events jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ){ jQuery.fn[ type ] = function( fn ){ return this.on( type, fn ); }; }); jQuery.each( [ "get", "post" ], function( i, method ) { jQuery[ method ] = function( url, data, callback, type ) { // shift arguments if data argument was omitted if ( jQuery.isFunction( data ) ) { type = type || callback; callback = data; data = undefined; } return jQuery.ajax({ url: url, type: method, dataType: type, data: data, success: callback }); }; }); jQuery.extend({ // Counter for holding the number of active queries active: 0, // Last-Modified header cache for next request lastModified: {}, etag: {}, ajaxSettings: { url: ajaxLocation, type: "GET", isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), global: true, processData: true, async: true, contentType: "application/x-www-form-urlencoded; charset=UTF-8", /* timeout: 0, data: null, dataType: null, username: null, password: null, cache: null, throws: false, traditional: false, headers: {}, */ accepts: { "*": allTypes, text: "text/plain", html: "text/html", xml: "application/xml, text/xml", json: "application/json, text/javascript" }, contents: { xml: /xml/, html: /html/, json: /json/ }, responseFields: { xml: "responseXML", text: "responseText" }, // Data converters // Keys separate source (or catchall "*") and destination types with a single space converters: { // Convert anything to text "* text": window.String, // Text to html (true = no transformation) "text html": true, // Evaluate text as a json expression "text json": jQuery.parseJSON, // Parse text as xml "text xml": jQuery.parseXML }, // For options that shouldn't be deep extended: // you can add your own custom options here if // and when you create one that shouldn't be // deep extended (see ajaxExtend) flatOptions: { url: true, context: true } }, // Creates a full fledged settings object into target // with both ajaxSettings and settings fields. // If target is omitted, writes into ajaxSettings. ajaxSetup: function( target, settings ) { return settings ? // Building a settings object ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : // Extending ajaxSettings ajaxExtend( jQuery.ajaxSettings, target ); }, ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), ajaxTransport: addToPrefiltersOrTransports( transports ), // Main method ajax: function( url, options ) { // If url is an object, simulate pre-1.5 signature if ( typeof url === "object" ) { options = url; url = undefined; } // Force options to be an object options = options || {}; var transport, // URL without anti-cache param cacheURL, // Response headers responseHeadersString, responseHeaders, // timeout handle timeoutTimer, // Cross-domain detection vars parts, // To know if global events are to be dispatched fireGlobals, // Loop variable i, // Create the final options object s = jQuery.ajaxSetup( {}, options ), // Callbacks context callbackContext = s.context || s, // Context for global events is callbackContext if it is a DOM node or jQuery collection globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ? jQuery( callbackContext ) : jQuery.event, // Deferreds deferred = jQuery.Deferred(), completeDeferred = jQuery.Callbacks("once memory"), // Status-dependent callbacks statusCode = s.statusCode || {}, // Headers (they are sent all at once) requestHeaders = {}, requestHeadersNames = {}, // The jqXHR state state = 0, // Default abort message strAbort = "canceled", // Fake xhr jqXHR = { readyState: 0, // Builds headers hashtable if needed getResponseHeader: function( key ) { var match; if ( state === 2 ) { if ( !responseHeaders ) { responseHeaders = {}; while ( (match = rheaders.exec( responseHeadersString )) ) { responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; } } match = responseHeaders[ key.toLowerCase() ]; } return match == null ? null : match; }, // Raw string getAllResponseHeaders: function() { return state === 2 ? responseHeadersString : null; }, // Caches the header setRequestHeader: function( name, value ) { var lname = name.toLowerCase(); if ( !state ) { name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; requestHeaders[ name ] = value; } return this; }, // Overrides response content-type header overrideMimeType: function( type ) { if ( !state ) { s.mimeType = type; } return this; }, // Status-dependent callbacks statusCode: function( map ) { var code; if ( map ) { if ( state < 2 ) { for ( code in map ) { // Lazy-add the new callback in a way that preserves old ones statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; } } else { // Execute the appropriate callbacks jqXHR.always( map[ jqXHR.status ] ); } } return this; }, // Cancel the request abort: function( statusText ) { var finalText = statusText || strAbort; if ( transport ) { transport.abort( finalText ); } done( 0, finalText ); return this; } }; // Attach deferreds deferred.promise( jqXHR ).complete = completeDeferred.add; jqXHR.success = jqXHR.done; jqXHR.error = jqXHR.fail; // Remove hash character (#7531: and string promotion) // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) // Handle falsy url in the settings object (#10093: consistency with old signature) // We also use the url parameter if available s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); // Alias method option to type as per ticket #12004 s.type = options.method || options.type || s.method || s.type; // Extract dataTypes list s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( core_rnotwhite ) || [""]; // A cross-domain request is in order when we have a protocol:host:port mismatch if ( s.crossDomain == null ) { parts = rurl.exec( s.url.toLowerCase() ); s.crossDomain = !!( parts && ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] || ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) != ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) ) ); } // Convert data if not already a string if ( s.data && s.processData && typeof s.data !== "string" ) { s.data = jQuery.param( s.data, s.traditional ); } // Apply prefilters inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); // If request was aborted inside a prefilter, stop there if ( state === 2 ) { return jqXHR; } // We can fire global events as of now if asked to fireGlobals = s.global; // Watch for a new set of requests if ( fireGlobals && jQuery.active++ === 0 ) { jQuery.event.trigger("ajaxStart"); } // Uppercase the type s.type = s.type.toUpperCase(); // Determine if request has content s.hasContent = !rnoContent.test( s.type ); // Save the URL in case we're toying with the If-Modified-Since // and/or If-None-Match header later on cacheURL = s.url; // More options handling for requests with no content if ( !s.hasContent ) { // If data is available, append data to url if ( s.data ) { cacheURL = ( s.url += ( ajax_rquery.test( cacheURL ) ? "&" : "?" ) + s.data ); // #9682: remove data so that it's not used in an eventual retry delete s.data; } // Add anti-cache in url if needed if ( s.cache === false ) { s.url = rts.test( cacheURL ) ? // If there is already a '_' parameter, set its value cacheURL.replace( rts, "$1_=" + ajax_nonce++ ) : // Otherwise add one to the end cacheURL + ( ajax_rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ajax_nonce++; } } // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { if ( jQuery.lastModified[ cacheURL ] ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); } if ( jQuery.etag[ cacheURL ] ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); } } // Set the correct header, if data is being sent if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { jqXHR.setRequestHeader( "Content-Type", s.contentType ); } // Set the Accepts header for the server, depending on the dataType jqXHR.setRequestHeader( "Accept", s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ? s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : s.accepts[ "*" ] ); // Check for headers option for ( i in s.headers ) { jqXHR.setRequestHeader( i, s.headers[ i ] ); } // Allow custom headers/mimetypes and early abort if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { // Abort if not done already and return return jqXHR.abort(); } // aborting is no longer a cancellation strAbort = "abort"; // Install callbacks on deferreds for ( i in { success: 1, error: 1, complete: 1 } ) { jqXHR[ i ]( s[ i ] ); } // Get transport transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); // If no transport, we auto-abort if ( !transport ) { done( -1, "No Transport" ); } else { jqXHR.readyState = 1; // Send global event if ( fireGlobals ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); } // Timeout if ( s.async && s.timeout > 0 ) { timeoutTimer = setTimeout(function() { jqXHR.abort("timeout"); }, s.timeout ); } try { state = 1; transport.send( requestHeaders, done ); } catch ( e ) { // Propagate exception as error if not done if ( state < 2 ) { done( -1, e ); // Simply rethrow otherwise } else { throw e; } } } // Callback for when everything is done function done( status, nativeStatusText, responses, headers ) { var isSuccess, success, error, response, modified, statusText = nativeStatusText; // Called once if ( state === 2 ) { return; } // State is "done" now state = 2; // Clear timeout if it exists if ( timeoutTimer ) { clearTimeout( timeoutTimer ); } // Dereference transport for early garbage collection // (no matter how long the jqXHR object will be used) transport = undefined; // Cache response headers responseHeadersString = headers || ""; // Set readyState jqXHR.readyState = status > 0 ? 4 : 0; // Get response data if ( responses ) { response = ajaxHandleResponses( s, jqXHR, responses ); } // If successful, handle type chaining if ( status >= 200 && status < 300 || status === 304 ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { modified = jqXHR.getResponseHeader("Last-Modified"); if ( modified ) { jQuery.lastModified[ cacheURL ] = modified; } modified = jqXHR.getResponseHeader("etag"); if ( modified ) { jQuery.etag[ cacheURL ] = modified; } } // If not modified if ( status === 304 ) { isSuccess = true; statusText = "notmodified"; // If we have data } else { isSuccess = ajaxConvert( s, response ); statusText = isSuccess.state; success = isSuccess.data; error = isSuccess.error; isSuccess = !error; } } else { // We extract error from statusText // then normalize statusText and status for non-aborts error = statusText; if ( status || !statusText ) { statusText = "error"; if ( status < 0 ) { status = 0; } } } // Set data for the fake xhr object jqXHR.status = status; jqXHR.statusText = ( nativeStatusText || statusText ) + ""; // Success/Error if ( isSuccess ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); } else { deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); } // Status-dependent callbacks jqXHR.statusCode( statusCode ); statusCode = undefined; if ( fireGlobals ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", [ jqXHR, s, isSuccess ? success : error ] ); } // Complete completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); if ( fireGlobals ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); // Handle the global AJAX counter if ( !( --jQuery.active ) ) { jQuery.event.trigger("ajaxStop"); } } } return jqXHR; }, getScript: function( url, callback ) { return jQuery.get( url, undefined, callback, "script" ); }, getJSON: function( url, data, callback ) { return jQuery.get( url, data, callback, "json" ); } }); /* Handles responses to an ajax request: * - sets all responseXXX fields accordingly * - finds the right dataType (mediates between content-type and expected dataType) * - returns the corresponding response */ function ajaxHandleResponses( s, jqXHR, responses ) { var ct, type, finalDataType, firstDataType, contents = s.contents, dataTypes = s.dataTypes, responseFields = s.responseFields; // Fill responseXXX fields for ( type in responseFields ) { if ( type in responses ) { jqXHR[ responseFields[type] ] = responses[ type ]; } } // Remove auto dataType and get content-type in the process while( dataTypes[ 0 ] === "*" ) { dataTypes.shift(); if ( ct === undefined ) { ct = s.mimeType || jqXHR.getResponseHeader("Content-Type"); } } // Check if we're dealing with a known content-type if ( ct ) { for ( type in contents ) { if ( contents[ type ] && contents[ type ].test( ct ) ) { dataTypes.unshift( type ); break; } } } // Check to see if we have a response for the expected dataType if ( dataTypes[ 0 ] in responses ) { finalDataType = dataTypes[ 0 ]; } else { // Try convertible dataTypes for ( type in responses ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) { finalDataType = type; break; } if ( !firstDataType ) { firstDataType = type; } } // Or just use first one finalDataType = finalDataType || firstDataType; } // If we found a dataType // We add the dataType to the list if needed // and return the corresponding response if ( finalDataType ) { if ( finalDataType !== dataTypes[ 0 ] ) { dataTypes.unshift( finalDataType ); } return responses[ finalDataType ]; } } // Chain conversions given the request and the original response function ajaxConvert( s, response ) { var conv, conv2, current, tmp, converters = {}, i = 0, // Work with a copy of dataTypes in case we need to modify it for conversion dataTypes = s.dataTypes.slice(), prev = dataTypes[ 0 ]; // Apply the dataFilter if provided if ( s.dataFilter ) { response = s.dataFilter( response, s.dataType ); } // Create converters map with lowercased keys if ( dataTypes[ 1 ] ) { for ( conv in s.converters ) { converters[ conv.toLowerCase() ] = s.converters[ conv ]; } } // Convert to each sequential dataType, tolerating list modification for ( ; (current = dataTypes[++i]); ) { // There's only work to do if current dataType is non-auto if ( current !== "*" ) { // Convert response if prev dataType is non-auto and differs from current if ( prev !== "*" && prev !== current ) { // Seek a direct converter conv = converters[ prev + " " + current ] || converters[ "* " + current ]; // If none found, seek a pair if ( !conv ) { for ( conv2 in converters ) { // If conv2 outputs current tmp = conv2.split(" "); if ( tmp[ 1 ] === current ) { // If prev can be converted to accepted input conv = converters[ prev + " " + tmp[ 0 ] ] || converters[ "* " + tmp[ 0 ] ]; if ( conv ) { // Condense equivalence converters if ( conv === true ) { conv = converters[ conv2 ]; // Otherwise, insert the intermediate dataType } else if ( converters[ conv2 ] !== true ) { current = tmp[ 0 ]; dataTypes.splice( i--, 0, current ); } break; } } } } // Apply converter (if not an equivalence) if ( conv !== true ) { // Unless errors are allowed to bubble, catch and return them if ( conv && s["throws"] ) { response = conv( response ); } else { try { response = conv( response ); } catch ( e ) { return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; } } } } // Update prev for next iteration prev = current; } } return { state: "success", data: response }; } // Install script dataType jQuery.ajaxSetup({ accepts: { script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" }, contents: { script: /(?:java|ecma)script/ }, converters: { "text script": function( text ) { jQuery.globalEval( text ); return text; } } }); // Handle cache's special case and global jQuery.ajaxPrefilter( "script", function( s ) { if ( s.cache === undefined ) { s.cache = false; } if ( s.crossDomain ) { s.type = "GET"; s.global = false; } }); // Bind script tag hack transport jQuery.ajaxTransport( "script", function(s) { // This transport only deals with cross domain requests if ( s.crossDomain ) { var script, head = document.head || jQuery("head")[0] || document.documentElement; return { send: function( _, callback ) { script = document.createElement("script"); script.async = true; if ( s.scriptCharset ) { script.charset = s.scriptCharset; } script.src = s.url; // Attach handlers for all browsers script.onload = script.onreadystatechange = function( _, isAbort ) { if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { // Handle memory leak in IE script.onload = script.onreadystatechange = null; // Remove the script if ( script.parentNode ) { script.parentNode.removeChild( script ); } // Dereference the script script = null; // Callback if not abort if ( !isAbort ) { callback( 200, "success" ); } } }; // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending // Use native DOM manipulation to avoid our domManip AJAX trickery head.insertBefore( script, head.firstChild ); }, abort: function() { if ( script ) { script.onload( undefined, true ); } } }; } }); var oldCallbacks = [], rjsonp = /(=)\?(?=&|$)|\?\?/; // Default jsonp settings jQuery.ajaxSetup({ jsonp: "callback", jsonpCallback: function() { var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( ajax_nonce++ ) ); this[ callback ] = true; return callback; } }); // Detect, normalize options and install callbacks for jsonp requests jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { var callbackName, overwritten, responseContainer, jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ? "url" : typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data" ); // Handle iff the expected data type is "jsonp" or we have a parameter to set if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) { // Get callback name, remembering preexisting value associated with it callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback; // Insert callback into url or form data if ( jsonProp ) { s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName ); } else if ( s.jsonp !== false ) { s.url += ( ajax_rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; } // Use data converter to retrieve json after script execution s.converters["script json"] = function() { if ( !responseContainer ) { jQuery.error( callbackName + " was not called" ); } return responseContainer[ 0 ]; }; // force json dataType s.dataTypes[ 0 ] = "json"; // Install callback overwritten = window[ callbackName ]; window[ callbackName ] = function() { responseContainer = arguments; }; // Clean-up function (fires after converters) jqXHR.always(function() { // Restore preexisting value window[ callbackName ] = overwritten; // Save back as free if ( s[ callbackName ] ) { // make sure that re-using the options doesn't screw things around s.jsonpCallback = originalSettings.jsonpCallback; // save the callback name for future use oldCallbacks.push( callbackName ); } // Call if it was a function and we have a response if ( responseContainer && jQuery.isFunction( overwritten ) ) { overwritten( responseContainer[ 0 ] ); } responseContainer = overwritten = undefined; }); // Delegate to script return "script"; } }); var xhrCallbacks, xhrSupported, xhrId = 0, // #5280: Internet Explorer will keep connections alive if we don't abort on unload xhrOnUnloadAbort = window.ActiveXObject && function() { // Abort all pending requests var key; for ( key in xhrCallbacks ) { xhrCallbacks[ key ]( undefined, true ); } }; // Functions to create xhrs function createStandardXHR() { try { return new window.XMLHttpRequest(); } catch( e ) {} } function createActiveXHR() { try { return new window.ActiveXObject("Microsoft.XMLHTTP"); } catch( e ) {} } // Create the request object // (This is still attached to ajaxSettings for backward compatibility) jQuery.ajaxSettings.xhr = window.ActiveXObject ? /* Microsoft failed to properly * implement the XMLHttpRequest in IE7 (can't request local files), * so we use the ActiveXObject when it is available * Additionally XMLHttpRequest can be disabled in IE7/IE8 so * we need a fallback. */ function() { return !this.isLocal && createStandardXHR() || createActiveXHR(); } : // For all other browsers, use the standard XMLHttpRequest object createStandardXHR; // Determine support properties xhrSupported = jQuery.ajaxSettings.xhr(); jQuery.support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); xhrSupported = jQuery.support.ajax = !!xhrSupported; // Create transport if the browser can provide an xhr if ( xhrSupported ) { jQuery.ajaxTransport(function( s ) { // Cross domain only allowed if supported through XMLHttpRequest if ( !s.crossDomain || jQuery.support.cors ) { var callback; return { send: function( headers, complete ) { // Get a new xhr var handle, i, xhr = s.xhr(); // Open the socket // Passing null username, generates a login popup on Opera (#2865) if ( s.username ) { xhr.open( s.type, s.url, s.async, s.username, s.password ); } else { xhr.open( s.type, s.url, s.async ); } // Apply custom fields if provided if ( s.xhrFields ) { for ( i in s.xhrFields ) { xhr[ i ] = s.xhrFields[ i ]; } } // Override mime type if needed if ( s.mimeType && xhr.overrideMimeType ) { xhr.overrideMimeType( s.mimeType ); } // X-Requested-With header // For cross-domain requests, seeing as conditions for a preflight are // akin to a jigsaw puzzle, we simply never set it to be sure. // (it can always be set on a per-request basis or even using ajaxSetup) // For same-domain requests, won't change header if already provided. if ( !s.crossDomain && !headers["X-Requested-With"] ) { headers["X-Requested-With"] = "XMLHttpRequest"; } // Need an extra try/catch for cross domain requests in Firefox 3 try { for ( i in headers ) { xhr.setRequestHeader( i, headers[ i ] ); } } catch( err ) {} // Do send the request // This may raise an exception which is actually // handled in jQuery.ajax (so no try/catch here) xhr.send( ( s.hasContent && s.data ) || null ); // Listener callback = function( _, isAbort ) { var status, statusText, responseHeaders, responses, xml; // Firefox throws exceptions when accessing properties // of an xhr when a network error occurred // http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE) try { // Was never called and is aborted or complete if ( callback && ( isAbort || xhr.readyState === 4 ) ) { // Only called once callback = undefined; // Do not keep as active anymore if ( handle ) { xhr.onreadystatechange = jQuery.noop; if ( xhrOnUnloadAbort ) { delete xhrCallbacks[ handle ]; } } // If it's an abort if ( isAbort ) { // Abort it manually if needed if ( xhr.readyState !== 4 ) { xhr.abort(); } } else { responses = {}; status = xhr.status; xml = xhr.responseXML; responseHeaders = xhr.getAllResponseHeaders(); // Construct response list if ( xml && xml.documentElement /* #4958 */ ) { responses.xml = xml; } // When requesting binary data, IE6-9 will throw an exception // on any attempt to access responseText (#11426) if ( typeof xhr.responseText === "string" ) { responses.text = xhr.responseText; } // Firefox throws an exception when accessing // statusText for faulty cross-domain requests try { statusText = xhr.statusText; } catch( e ) { // We normalize with Webkit giving an empty statusText statusText = ""; } // Filter status for non standard behaviors // If the request is local and we have data: assume a success // (success with no data won't get notified, that's the best we // can do given current implementations) if ( !status && s.isLocal && !s.crossDomain ) { status = responses.text ? 200 : 404; // IE - #1450: sometimes returns 1223 when it should be 204 } else if ( status === 1223 ) { status = 204; } } } } catch( firefoxAccessException ) { if ( !isAbort ) { complete( -1, firefoxAccessException ); } } // Call complete if needed if ( responses ) { complete( status, statusText, responses, responseHeaders ); } }; if ( !s.async ) { // if we're in sync mode we fire the callback callback(); } else if ( xhr.readyState === 4 ) { // (IE6 & IE7) if it's in cache and has been // retrieved directly we need to fire the callback setTimeout( callback ); } else { handle = ++xhrId; if ( xhrOnUnloadAbort ) { // Create the active xhrs callbacks list if needed // and attach the unload handler if ( !xhrCallbacks ) { xhrCallbacks = {}; jQuery( window ).unload( xhrOnUnloadAbort ); } // Add to list of active xhrs callbacks xhrCallbacks[ handle ] = callback; } xhr.onreadystatechange = callback; } }, abort: function() { if ( callback ) { callback( undefined, true ); } } }; } }); } var fxNow, timerId, rfxtypes = /^(?:toggle|show|hide)$/, rfxnum = new RegExp( "^(?:([+-])=|)(" + core_pnum + ")([a-z%]*)$", "i" ), rrun = /queueHooks$/, animationPrefilters = [ defaultPrefilter ], tweeners = { "*": [function( prop, value ) { var end, unit, tween = this.createTween( prop, value ), parts = rfxnum.exec( value ), target = tween.cur(), start = +target || 0, scale = 1, maxIterations = 20; if ( parts ) { end = +parts[2]; unit = parts[3] || ( jQuery.cssNumber[ prop ] ? "" : "px" ); // We need to compute starting value if ( unit !== "px" && start ) { // Iteratively approximate from a nonzero starting point // Prefer the current property, because this process will be trivial if it uses the same units // Fallback to end or a simple constant start = jQuery.css( tween.elem, prop, true ) || end || 1; do { // If previous iteration zeroed out, double until we get *something* // Use a string for doubling factor so we don't accidentally see scale as unchanged below scale = scale || ".5"; // Adjust and apply start = start / scale; jQuery.style( tween.elem, prop, start + unit ); // Update scale, tolerating zero or NaN from tween.cur() // And breaking the loop if scale is unchanged or perfect, or if we've just had enough } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations ); } tween.unit = unit; tween.start = start; // If a +=/-= token was provided, we're doing a relative animation tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end; } return tween; }] }; // Animations created synchronously will run synchronously function createFxNow() { setTimeout(function() { fxNow = undefined; }); return ( fxNow = jQuery.now() ); } function createTweens( animation, props ) { jQuery.each( props, function( prop, value ) { var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), index = 0, length = collection.length; for ( ; index < length; index++ ) { if ( collection[ index ].call( animation, prop, value ) ) { // we're done with this property return; } } }); } function Animation( elem, properties, options ) { var result, stopped, index = 0, length = animationPrefilters.length, deferred = jQuery.Deferred().always( function() { // don't match elem in the :animated selector delete tick.elem; }), tick = function() { if ( stopped ) { return false; } var currentTime = fxNow || createFxNow(), remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497) temp = remaining / animation.duration || 0, percent = 1 - temp, index = 0, length = animation.tweens.length; for ( ; index < length ; index++ ) { animation.tweens[ index ].run( percent ); } deferred.notifyWith( elem, [ animation, percent, remaining ]); if ( percent < 1 && length ) { return remaining; } else { deferred.resolveWith( elem, [ animation ] ); return false; } }, animation = deferred.promise({ elem: elem, props: jQuery.extend( {}, properties ), opts: jQuery.extend( true, { specialEasing: {} }, options ), originalProperties: properties, originalOptions: options, startTime: fxNow || createFxNow(), duration: options.duration, tweens: [], createTween: function( prop, end ) { var tween = jQuery.Tween( elem, animation.opts, prop, end, animation.opts.specialEasing[ prop ] || animation.opts.easing ); animation.tweens.push( tween ); return tween; }, stop: function( gotoEnd ) { var index = 0, // if we are going to the end, we want to run all the tweens // otherwise we skip this part length = gotoEnd ? animation.tweens.length : 0; if ( stopped ) { return this; } stopped = true; for ( ; index < length ; index++ ) { animation.tweens[ index ].run( 1 ); } // resolve when we played the last frame // otherwise, reject if ( gotoEnd ) { deferred.resolveWith( elem, [ animation, gotoEnd ] ); } else { deferred.rejectWith( elem, [ animation, gotoEnd ] ); } return this; } }), props = animation.props; propFilter( props, animation.opts.specialEasing ); for ( ; index < length ; index++ ) { result = animationPrefilters[ index ].call( animation, elem, props, animation.opts ); if ( result ) { return result; } } createTweens( animation, props ); if ( jQuery.isFunction( animation.opts.start ) ) { animation.opts.start.call( elem, animation ); } jQuery.fx.timer( jQuery.extend( tick, { elem: elem, anim: animation, queue: animation.opts.queue }) ); // attach callbacks from options return animation.progress( animation.opts.progress ) .done( animation.opts.done, animation.opts.complete ) .fail( animation.opts.fail ) .always( animation.opts.always ); } function propFilter( props, specialEasing ) { var index, name, easing, value, hooks; // camelCase, specialEasing and expand cssHook pass for ( index in props ) { name = jQuery.camelCase( index ); easing = specialEasing[ name ]; value = props[ index ]; if ( jQuery.isArray( value ) ) { easing = value[ 1 ]; value = props[ index ] = value[ 0 ]; } if ( index !== name ) { props[ name ] = value; delete props[ index ]; } hooks = jQuery.cssHooks[ name ]; if ( hooks && "expand" in hooks ) { value = hooks.expand( value ); delete props[ name ]; // not quite $.extend, this wont overwrite keys already present. // also - reusing 'index' from above because we have the correct "name" for ( index in value ) { if ( !( index in props ) ) { props[ index ] = value[ index ]; specialEasing[ index ] = easing; } } } else { specialEasing[ name ] = easing; } } } jQuery.Animation = jQuery.extend( Animation, { tweener: function( props, callback ) { if ( jQuery.isFunction( props ) ) { callback = props; props = [ "*" ]; } else { props = props.split(" "); } var prop, index = 0, length = props.length; for ( ; index < length ; index++ ) { prop = props[ index ]; tweeners[ prop ] = tweeners[ prop ] || []; tweeners[ prop ].unshift( callback ); } }, prefilter: function( callback, prepend ) { if ( prepend ) { animationPrefilters.unshift( callback ); } else { animationPrefilters.push( callback ); } } }); function defaultPrefilter( elem, props, opts ) { /*jshint validthis:true */ var index, prop, value, length, dataShow, toggle, tween, hooks, oldfire, anim = this, style = elem.style, orig = {}, handled = [], hidden = elem.nodeType && isHidden( elem ); // handle queue: false promises if ( !opts.queue ) { hooks = jQuery._queueHooks( elem, "fx" ); if ( hooks.unqueued == null ) { hooks.unqueued = 0; oldfire = hooks.empty.fire; hooks.empty.fire = function() { if ( !hooks.unqueued ) { oldfire(); } }; } hooks.unqueued++; anim.always(function() { // doing this makes sure that the complete handler will be called // before this completes anim.always(function() { hooks.unqueued--; if ( !jQuery.queue( elem, "fx" ).length ) { hooks.empty.fire(); } }); }); } // height/width overflow pass if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) { // Make sure that nothing sneaks out // Record all 3 overflow attributes because IE does not // change the overflow attribute when overflowX and // overflowY are set to the same value opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; // Set display property to inline-block for height/width // animations on inline elements that are having width/height animated if ( jQuery.css( elem, "display" ) === "inline" && jQuery.css( elem, "float" ) === "none" ) { // inline-level elements accept inline-block; // block-level elements need to be inline with layout if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) { style.display = "inline-block"; } else { style.zoom = 1; } } } if ( opts.overflow ) { style.overflow = "hidden"; if ( !jQuery.support.shrinkWrapBlocks ) { anim.done(function() { style.overflow = opts.overflow[ 0 ]; style.overflowX = opts.overflow[ 1 ]; style.overflowY = opts.overflow[ 2 ]; }); } } // show/hide pass for ( index in props ) { value = props[ index ]; if ( rfxtypes.exec( value ) ) { delete props[ index ]; toggle = toggle || value === "toggle"; if ( value === ( hidden ? "hide" : "show" ) ) { continue; } handled.push( index ); } } length = handled.length; if ( length ) { dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} ); if ( "hidden" in dataShow ) { hidden = dataShow.hidden; } // store state if its toggle - enables .stop().toggle() to "reverse" if ( toggle ) { dataShow.hidden = !hidden; } if ( hidden ) { jQuery( elem ).show(); } else { anim.done(function() { jQuery( elem ).hide(); }); } anim.done(function() { var prop; jQuery._removeData( elem, "fxshow" ); for ( prop in orig ) { jQuery.style( elem, prop, orig[ prop ] ); } }); for ( index = 0 ; index < length ; index++ ) { prop = handled[ index ]; tween = anim.createTween( prop, hidden ? dataShow[ prop ] : 0 ); orig[ prop ] = dataShow[ prop ] || jQuery.style( elem, prop ); if ( !( prop in dataShow ) ) { dataShow[ prop ] = tween.start; if ( hidden ) { tween.end = tween.start; tween.start = prop === "width" || prop === "height" ? 1 : 0; } } } } } function Tween( elem, options, prop, end, easing ) { return new Tween.prototype.init( elem, options, prop, end, easing ); } jQuery.Tween = Tween; Tween.prototype = { constructor: Tween, init: function( elem, options, prop, end, easing, unit ) { this.elem = elem; this.prop = prop; this.easing = easing || "swing"; this.options = options; this.start = this.now = this.cur(); this.end = end; this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); }, cur: function() { var hooks = Tween.propHooks[ this.prop ]; return hooks && hooks.get ? hooks.get( this ) : Tween.propHooks._default.get( this ); }, run: function( percent ) { var eased, hooks = Tween.propHooks[ this.prop ]; if ( this.options.duration ) { this.pos = eased = jQuery.easing[ this.easing ]( percent, this.options.duration * percent, 0, 1, this.options.duration ); } else { this.pos = eased = percent; } this.now = ( this.end - this.start ) * eased + this.start; if ( this.options.step ) { this.options.step.call( this.elem, this.now, this ); } if ( hooks && hooks.set ) { hooks.set( this ); } else { Tween.propHooks._default.set( this ); } return this; } }; Tween.prototype.init.prototype = Tween.prototype; Tween.propHooks = { _default: { get: function( tween ) { var result; if ( tween.elem[ tween.prop ] != null && (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) { return tween.elem[ tween.prop ]; } // passing a non empty string as a 3rd parameter to .css will automatically // attempt a parseFloat and fallback to a string if the parse fails // so, simple values such as "10px" are parsed to Float. // complex values such as "rotate(1rad)" are returned as is. result = jQuery.css( tween.elem, tween.prop, "auto" ); // Empty strings, null, undefined and "auto" are converted to 0. return !result || result === "auto" ? 0 : result; }, set: function( tween ) { // use step hook for back compat - use cssHook if its there - use .style if its // available and use plain properties where available if ( jQuery.fx.step[ tween.prop ] ) { jQuery.fx.step[ tween.prop ]( tween ); } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) { jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); } else { tween.elem[ tween.prop ] = tween.now; } } } }; // Remove in 2.0 - this supports IE8's panic based approach // to setting things on disconnected nodes Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { set: function( tween ) { if ( tween.elem.nodeType && tween.elem.parentNode ) { tween.elem[ tween.prop ] = tween.now; } } }; jQuery.each([ "toggle", "show", "hide" ], function( i, name ) { var cssFn = jQuery.fn[ name ]; jQuery.fn[ name ] = function( speed, easing, callback ) { return speed == null || typeof speed === "boolean" ? cssFn.apply( this, arguments ) : this.animate( genFx( name, true ), speed, easing, callback ); }; }); jQuery.fn.extend({ fadeTo: function( speed, to, easing, callback ) { // show any hidden elements after setting opacity to 0 return this.filter( isHidden ).css( "opacity", 0 ).show() // animate to the value specified .end().animate({ opacity: to }, speed, easing, callback ); }, animate: function( prop, speed, easing, callback ) { var empty = jQuery.isEmptyObject( prop ), optall = jQuery.speed( speed, easing, callback ), doAnimation = function() { // Operate on a copy of prop so per-property easing won't be lost var anim = Animation( this, jQuery.extend( {}, prop ), optall ); doAnimation.finish = function() { anim.stop( true ); }; // Empty animations, or finishing resolves immediately if ( empty || jQuery._data( this, "finish" ) ) { anim.stop( true ); } }; doAnimation.finish = doAnimation; return empty || optall.queue === false ? this.each( doAnimation ) : this.queue( optall.queue, doAnimation ); }, stop: function( type, clearQueue, gotoEnd ) { var stopQueue = function( hooks ) { var stop = hooks.stop; delete hooks.stop; stop( gotoEnd ); }; if ( typeof type !== "string" ) { gotoEnd = clearQueue; clearQueue = type; type = undefined; } if ( clearQueue && type !== false ) { this.queue( type || "fx", [] ); } return this.each(function() { var dequeue = true, index = type != null && type + "queueHooks", timers = jQuery.timers, data = jQuery._data( this ); if ( index ) { if ( data[ index ] && data[ index ].stop ) { stopQueue( data[ index ] ); } } else { for ( index in data ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { stopQueue( data[ index ] ); } } } for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) { timers[ index ].anim.stop( gotoEnd ); dequeue = false; timers.splice( index, 1 ); } } // start the next in the queue if the last step wasn't forced // timers currently will call their complete callbacks, which will dequeue // but only if they were gotoEnd if ( dequeue || !gotoEnd ) { jQuery.dequeue( this, type ); } }); }, finish: function( type ) { if ( type !== false ) { type = type || "fx"; } return this.each(function() { var index, data = jQuery._data( this ), queue = data[ type + "queue" ], hooks = data[ type + "queueHooks" ], timers = jQuery.timers, length = queue ? queue.length : 0; // enable finishing flag on private data data.finish = true; // empty the queue first jQuery.queue( this, type, [] ); if ( hooks && hooks.cur && hooks.cur.finish ) { hooks.cur.finish.call( this ); } // look for any active animations, and finish them for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) { timers[ index ].anim.stop( true ); timers.splice( index, 1 ); } } // look for any animations in the old queue and finish them for ( index = 0; index < length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) { queue[ index ].finish.call( this ); } } // turn off finishing flag delete data.finish; }); } }); // Generate parameters to create a standard animation function genFx( type, includeWidth ) { var which, attrs = { height: type }, i = 0; // if we include width, step value is 1 to do all cssExpand values, // if we don't include width, step value is 2 to skip over Left and Right includeWidth = includeWidth? 1 : 0; for( ; i < 4 ; i += 2 - includeWidth ) { which = cssExpand[ i ]; attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; } if ( includeWidth ) { attrs.opacity = attrs.width = type; } return attrs; } // Generate shortcuts for custom animations jQuery.each({ slideDown: genFx("show"), slideUp: genFx("hide"), slideToggle: genFx("toggle"), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function( name, props ) { jQuery.fn[ name ] = function( speed, easing, callback ) { return this.animate( props, speed, easing, callback ); }; }); jQuery.speed = function( speed, easing, fn ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { complete: fn || !fn && easing || jQuery.isFunction( speed ) && speed, duration: speed, easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing }; opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; // normalize opt.queue - true/undefined/null -> "fx" if ( opt.queue == null || opt.queue === true ) { opt.queue = "fx"; } // Queueing opt.old = opt.complete; opt.complete = function() { if ( jQuery.isFunction( opt.old ) ) { opt.old.call( this ); } if ( opt.queue ) { jQuery.dequeue( this, opt.queue ); } }; return opt; }; jQuery.easing = { linear: function( p ) { return p; }, swing: function( p ) { return 0.5 - Math.cos( p*Math.PI ) / 2; } }; jQuery.timers = []; jQuery.fx = Tween.prototype.init; jQuery.fx.tick = function() { var timer, timers = jQuery.timers, i = 0; fxNow = jQuery.now(); for ( ; i < timers.length; i++ ) { timer = timers[ i ]; // Checks the timer has not already been removed if ( !timer() && timers[ i ] === timer ) { timers.splice( i--, 1 ); } } if ( !timers.length ) { jQuery.fx.stop(); } fxNow = undefined; }; jQuery.fx.timer = function( timer ) { if ( timer() && jQuery.timers.push( timer ) ) { jQuery.fx.start(); } }; jQuery.fx.interval = 13; jQuery.fx.start = function() { if ( !timerId ) { timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval ); } }; jQuery.fx.stop = function() { clearInterval( timerId ); timerId = null; }; jQuery.fx.speeds = { slow: 600, fast: 200, // Default speed _default: 400 }; // Back Compat <1.8 extension point jQuery.fx.step = {}; if ( jQuery.expr && jQuery.expr.filters ) { jQuery.expr.filters.animated = function( elem ) { return jQuery.grep(jQuery.timers, function( fn ) { return elem === fn.elem; }).length; }; } jQuery.fn.offset = function( options ) { if ( arguments.length ) { return options === undefined ? this : this.each(function( i ) { jQuery.offset.setOffset( this, options, i ); }); } var docElem, win, box = { top: 0, left: 0 }, elem = this[ 0 ], doc = elem && elem.ownerDocument; if ( !doc ) { return; } docElem = doc.documentElement; // Make sure it's not a disconnected DOM node if ( !jQuery.contains( docElem, elem ) ) { return box; } // If we don't have gBCR, just use 0,0 rather than error // BlackBerry 5, iOS 3 (original iPhone) if ( typeof elem.getBoundingClientRect !== "undefined" ) { box = elem.getBoundingClientRect(); } win = getWindow( doc ); return { top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ), left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 ) }; }; jQuery.offset = { setOffset: function( elem, options, i ) { var position = jQuery.css( elem, "position" ); // set position first, in-case top/left are set even on static elem if ( position === "static" ) { elem.style.position = "relative"; } var curElem = jQuery( elem ), curOffset = curElem.offset(), curCSSTop = jQuery.css( elem, "top" ), curCSSLeft = jQuery.css( elem, "left" ), calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1, props = {}, curPosition = {}, curTop, curLeft; // need to be able to calculate position if either top or left is auto and position is either absolute or fixed if ( calculatePosition ) { curPosition = curElem.position(); curTop = curPosition.top; curLeft = curPosition.left; } else { curTop = parseFloat( curCSSTop ) || 0; curLeft = parseFloat( curCSSLeft ) || 0; } if ( jQuery.isFunction( options ) ) { options = options.call( elem, i, curOffset ); } if ( options.top != null ) { props.top = ( options.top - curOffset.top ) + curTop; } if ( options.left != null ) { props.left = ( options.left - curOffset.left ) + curLeft; } if ( "using" in options ) { options.using.call( elem, props ); } else { curElem.css( props ); } } }; jQuery.fn.extend({ position: function() { if ( !this[ 0 ] ) { return; } var offsetParent, offset, parentOffset = { top: 0, left: 0 }, elem = this[ 0 ]; // fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is it's only offset parent if ( jQuery.css( elem, "position" ) === "fixed" ) { // we assume that getBoundingClientRect is available when computed position is fixed offset = elem.getBoundingClientRect(); } else { // Get *real* offsetParent offsetParent = this.offsetParent(); // Get correct offsets offset = this.offset(); if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) { parentOffset = offsetParent.offset(); } // Add offsetParent borders parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true ); parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true ); } // Subtract parent offsets and element margins // note: when an element has margin: auto the offsetLeft and marginLeft // are the same in Safari causing offset.left to incorrectly be 0 return { top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ), left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true) }; }, offsetParent: function() { return this.map(function() { var offsetParent = this.offsetParent || document.documentElement; while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position") === "static" ) ) { offsetParent = offsetParent.offsetParent; } return offsetParent || document.documentElement; }); } }); // Create scrollLeft and scrollTop methods jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) { var top = /Y/.test( prop ); jQuery.fn[ method ] = function( val ) { return jQuery.access( this, function( elem, method, val ) { var win = getWindow( elem ); if ( val === undefined ) { return win ? (prop in win) ? win[ prop ] : win.document.documentElement[ method ] : elem[ method ]; } if ( win ) { win.scrollTo( !top ? val : jQuery( win ).scrollLeft(), top ? val : jQuery( win ).scrollTop() ); } else { elem[ method ] = val; } }, method, val, arguments.length, null ); }; }); function getWindow( elem ) { return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 ? elem.defaultView || elem.parentWindow : false; } // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { // margin is only for outerHeight, outerWidth jQuery.fn[ funcName ] = function( margin, value ) { var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); return jQuery.access( this, function( elem, type, value ) { var doc; if ( jQuery.isWindow( elem ) ) { // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there // isn't a whole lot we can do. See pull request at this URL for discussion: // https://github.com/jquery/jquery/pull/764 return elem.document.documentElement[ "client" + name ]; } // Get document width or height if ( elem.nodeType === 9 ) { doc = elem.documentElement; // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it. return Math.max( elem.body[ "scroll" + name ], doc[ "scroll" + name ], elem.body[ "offset" + name ], doc[ "offset" + name ], doc[ "client" + name ] ); } return value === undefined ? // Get width or height on the element, requesting but not forcing parseFloat jQuery.css( elem, type, extra ) : // Set width or height on the element jQuery.style( elem, type, value, extra ); }, type, chainable ? margin : undefined, chainable, null ); }; }); }); // Limit scope pollution from any deprecated API // (function() { // })(); // Expose jQuery to the global object window.jQuery = window.$ = jQuery; // Expose jQuery as an AMD module, but only for AMD loaders that // understand the issues with loading multiple versions of jQuery // in a page that all might call define(). The loader will indicate // they have special allowances for multiple jQuery versions by // specifying define.amd.jQuery = true. Register as a named module, // since jQuery can be concatenated with other files that may use define, // but not use a proper concatenation script that understands anonymous // AMD modules. A named AMD is safest and most robust way to register. // Lowercase jquery is used because AMD module names are derived from // file names, and jQuery is normally delivered in a lowercase file name. // Do this after creating the global so that if an AMD module wants to call // noConflict to hide this version of jQuery, it will work. if ( typeof define === "function" && define.amd && define.amd.jQuery ) { define( "jquery", [], function () { return jQuery; } ); } })( window );

public/tester/js/main.js

/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Bryan Boyd - Initial implementation *******************************************************************************/ function connect() { iot_server = window.config.iot_deviceOrg + ".messaging.internetofthings.ibmcloud.com"; iot_port = 1883; iot_username = window.config.iot_apiKey; iot_password = window.config.iot_apiToken; iot_clientid = "a:"+window.config.iot_deviceOrg+":tester" + Math.floor(Math.random() * 1000); client = new Messaging.Client(iot_server, iot_port, iot_clientid); client.connect({ userName: iot_username, password: iot_password, onSuccess: function() { $("body").append("<br><br><i>Connected to IoT Foundation!</i><br><div id='statusMessage'></div>") } }); } $("#button").on("click", function() { var id = $("#id").val(); var message = $("#message").val(); var payload = { id: id, text: message, duration: 5000 }; var message = new Messaging.Message(JSON.stringify(payload)); message.destinationName = "iot-2/type/api/id/tester/cmd/addOverlay/fmt/json"; $("#statusMessage").html("Published command!<br><br><b>Topic: </b>" + message.destinationName + "<br><b>Payload: </b><pre>" + JSON.stringify(payload, null, 4) + "</pre>"); $("#statusMessage").css("display", "block"); client.send(message); }); $("#propButton").on("click", function() { var id = $("#prop_id").val(); var property = $("#property").val(); var value = $("#value").val(); var payload = { id: id, property: property, value: value }; var group = id.split("-")[0]; var num = id.split("-")[1]; var message = new Messaging.Message(JSON.stringify(payload)); message.destinationName = "iot-2/type/"+window.config.iot_deviceType+"/id/"+id.split("-")[0]+"/cmd/setProperty/fmt/json"; $("#statusMessage").html("Published command!<br><b>Topic: </b>" + message.destinationName + "<br><b>Payload: </b><pre>" + JSON.stringify(payload, null, 4) + "</pre>"); $("#statusMessage").css("display", "block"); client.send(message); });

public/tester/js/mqttws31.js

/******************************************************************************* * Copyright (c) 2013 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Andrew Banks - initial API and implementation and/or initial documentation *******************************************************************************/ // Only expose a single object name in the global namespace. // Everything must go through this module. Global Messaging module // only has a single public function, client, which returns // a Messaging client object given connection details. /** * @namespace Messaging * Send and receive messages using web browsers. * <p> * This programming interface lets a JavaScript client application use the MQTT V3.1 protocol to * connect to an MQTT-supporting messaging server. * * The function supported includes: * <ol> * <li>Connecting to and disconnecting from a server. The server is identified by its host name and port number. * <li>Specifying options that relate to the communications link with the server, * for example the frequency of keep-alive heartbeats, and whether SSL/TLS is required. * <li>Subscribing to and receiving messages from MQTT Topics. * <li>Publishing messages to MQTT Topics. * </ol> * <p> * <h2>The API consists of two main objects:</h2> * The <b>Messaging.Client</b> object. This contains methods that provide the functionality of the API, * including provision of callbacks that notify the application when a message arrives from or is delivered to the messaging server, * or when the status of its connection to the messaging server changes. * <p> * The <b>Messaging.Message</b> object. This encapsulates the payload of the message along with various attributes * associated with its delivery, in particular the destination to which it has been (or is about to be) sent. * <p> * The programming interface validates parameters passed to it, and will throw an Error containing an error message * intended for developer use, if it detects an error with any parameter. * <p> * Example: * * <code><pre> client = new Messaging.Client(location.hostname, Number(location.port), "clientId"); client.onConnectionLost = onConnectionLost; client.onMessageArrived = onMessageArrived; client.connect({onSuccess:onConnect}); function onConnect() { // Once a connection has been made, make a subscription and send a message. console.log("onConnect"); client.subscribe("/World"); message = new Messaging.Message("Hello"); message.destinationName = "/World"; client.send(message); }; function onConnectionLost(responseObject) { if (responseObject.errorCode !== 0) console.log("onConnectionLost:"+responseObject.errorMessage); }; function onMessageArrived(message) { console.log("onMessageArrived:"+message.payloadString); client.disconnect(); }; * </pre></code> * <p> * Other programming languages, * <a href="/clients/java/doc/javadoc/index.html"><big>Java</big></a>, * <a href="/clients/c/doc/html/index.html"><big>C</big></a>. */ Messaging = (function (global) { // Private variables below, these are only visible inside the function closure // which is used to define the module. var version = "0.0.0.0"; var buildLevel = "@BUILDLEVEL@"; /** * Unique message type identifiers, with associated * associated integer values. * @private */ var MESSAGE_TYPE = { CONNECT: 1, CONNACK: 2, PUBLISH: 3, PUBACK: 4, PUBREC: 5, PUBREL: 6, PUBCOMP: 7, SUBSCRIBE: 8, SUBACK: 9, UNSUBSCRIBE: 10, UNSUBACK: 11, PINGREQ: 12, PINGRESP: 13, DISCONNECT: 14 }; // Collection of utility methods used to simplify module code // and promote the DRY pattern. /** * Validate an object's parameter names to ensure they * match a list of expected variables name for this option * type. Used to ensure option object passed into the API don't * contain erroneous parameters. * @param {Object} obj User options object * @param {key:type, key2:type, ...} valid keys and types that may exist in obj. * @throws {Error} Invalid option parameter found. * @private */ var validate = function(obj, keys) { for(key in obj) { if (obj.hasOwnProperty(key)) { if (keys.hasOwnProperty(key)) { if (typeof obj[key] !== keys[key]) throw new Error(format(ERROR.INVALID_TYPE, [typeof obj[key], key])); } else { var errorStr = "Unknown property, " + key + ". Valid properties are:"; for (key in keys) if (keys.hasOwnProperty(key)) errorStr = errorStr+" "+key; throw new Error(errorStr); } } } }; /** * Return a new function which runs the user function bound * to a fixed scope. * @param {function} User function * @param {object} Function scope * @return {function} User function bound to another scope * @private */ var scope = function (f, scope) { return function () { return f.apply(scope, arguments); }; }; /** * Unique message type identifiers, with associated * associated integer values. * @private */ var ERROR = { OK: {code:0, text:"AMQJSC0000I OK."}, CONNECT_TIMEOUT: {code:1, text:"AMQJSC0001E Connect timed out."}, SUBSCRIBE_TIMEOUT: {code:2, text:"AMQJS0002E Subscribe timed out."}, UNSUBSCRIBE_TIMEOUT: {code:3, text:"AMQJS0003E Unsubscribe timed out."}, PING_TIMEOUT: {code:4, text:"AMQJS0004E Ping timed out."}, INTERNAL_ERROR: {code:5, text:"AMQJS0005E Internal error."}, CONNACK_RETURNCODE: {code:6, text:"AMQJS0006E Bad Connack return code:{0} {1}."}, SOCKET_ERROR: {code:7, text:"AMQJS0007E Socket error:{0}."}, SOCKET_CLOSE: {code:8, text:"AMQJS0008I Socket closed."}, MALFORMED_UTF: {code:9, text:"AMQJS0009E Malformed UTF data:{0} {1} {2}."}, UNSUPPORTED: {code:10, text:"AMQJS0010E {0} is not supported by this browser."}, INVALID_STATE: {code:11, text:"AMQJS0011E Invalid state {0}."}, INVALID_TYPE: {code:12, text:"AMQJS0012E Invalid type {0} for {1}."}, INVALID_ARGUMENT: {code:13, text:"AMQJS0013E Invalid argument {0} for {1}."}, UNSUPPORTED_OPERATION: {code:14, text:"AMQJS0014E Unsupported operation."}, INVALID_STORED_DATA: {code:15, text:"AMQJS0015E Invalid data in local storage key={0} value={1}."}, INVALID_MQTT_MESSAGE_TYPE: {code:16, text:"AMQJS0016E Invalid MQTT message type {0}."}, MALFORMED_UNICODE: {code:17, text:"AMQJS0017E Malformed Unicode string:{0} {1}."}, }; /** CONNACK RC Meaning. */ var CONNACK_RC = { 0:"Connection Accepted", 1:"Connection Refused: unacceptable protocol version", 2:"Connection Refused: identifier rejected", 3:"Connection Refused: server unavailable", 4:"Connection Refused: bad user name or password", 5:"Connection Refused: not authorized" }; /** * Format an error message text. * @private * @param {error} ERROR.KEY value above. * @param {substitutions} [array] substituted into the text. * @return the text with the substitutions made. */ var format = function(error, substitutions) { var text = error.text; if (substitutions) { for (var i=0; i<substitutions.length; i++) { field = "{"+i+"}"; start = text.indexOf(field); if(start > 0) { var part1 = text.substring(0,start); var part2 = text.substring(start+field.length); text = part1+substitutions[i]+part2; } } } return text; }; //MQTT protocol and version 6 M Q I s d p 3 var MqttProtoIdentifier = [0x00,0x06,0x4d,0x51,0x49,0x73,0x64,0x70,0x03]; /** * @ignore * Construct an MQTT wire protocol message. * @param type MQTT packet type. * @param options optional wire message attributes. * * Optional properties * * messageIdentifier: message ID in the range [0..65535] * payloadMessage: Application Message - PUBLISH only * connectStrings: array of 0 or more Strings to be put into the CONNECT payload * topics: array of strings (SUBSCRIBE, UNSUBSCRIBE) * requestQoS: array of QoS values [0..2] * * "Flag" properties * cleanSession: true if present / false if absent (CONNECT) * willMessage: true if present / false if absent (CONNECT) * isRetained: true if present / false if absent (CONNECT) * userName: true if present / false if absent (CONNECT) * password: true if present / false if absent (CONNECT) * keepAliveInterval: integer [0..65535] (CONNECT) * * @private */ var WireMessage = function (type, options) { this.type = type; for(name in options) { if (options.hasOwnProperty(name)) { this[name] = options[name]; } } }; WireMessage.prototype.encode = function() { // Compute the first byte of the fixed header var first = ((this.type & 0x0f) << 4); /* * Now calculate the length of the variable header + payload by adding up the lengths * of all the component parts */ remLength = 0; topicStrLength = new Array(); // if the message contains a messageIdentifier then we need two bytes for that if (this.messageIdentifier != undefined) remLength += 2; switch(this.type) { // If this a Connect then we need to include 12 bytes for its header case MESSAGE_TYPE.CONNECT: remLength += MqttProtoIdentifier.length + 3; remLength += UTF8Length(this.clientId) + 2; if (this.willMessage != undefined) { remLength += UTF8Length(this.willMessage.destinationName) + 2; // Will message is always a string, sent as UTF-8 characters with a preceding length. var willMessagePayloadBytes = this.willMessage.payloadBytes; if (!(willMessagePayloadBytes instanceof Uint8Array)) willMessagePayloadBytes = new Uint8Array(payloadBytes); remLength += willMessagePayloadBytes.byteLength +2; } if (this.userName != undefined) remLength += UTF8Length(this.userName) + 2; if (this.password != undefined) remLength += UTF8Length(this.password) + 2; break; // Subscribe, Unsubscribe can both contain topic strings case MESSAGE_TYPE.SUBSCRIBE: first |= 0x02; // Qos = 1; for ( var i = 0; i < this.topics.length; i++) { topicStrLength[i] = UTF8Length(this.topics[i]); remLength += topicStrLength[i] + 2; } remLength += this.requestedQos.length; // 1 byte for each topic's Qos // QoS on Subscribe only break; case MESSAGE_TYPE.UNSUBSCRIBE: first |= 0x02; // Qos = 1; for ( var i = 0; i < this.topics.length; i++) { topicStrLength[i] = UTF8Length(this.topics[i]); remLength += topicStrLength[i] + 2; } break; case MESSAGE_TYPE.PUBLISH: if (this.payloadMessage.duplicate) first |= 0x08; first = first |= (this.payloadMessage.qos << 1); if (this.payloadMessage.retained) first |= 0x01; destinationNameLength = UTF8Length(this.payloadMessage.destinationName); remLength += destinationNameLength + 2; var payloadBytes = this.payloadMessage.payloadBytes; remLength += payloadBytes.byteLength; if (payloadBytes instanceof ArrayBuffer) payloadBytes = new Uint8Array(payloadBytes); else if (!(payloadBytes instanceof Uint8Array)) payloadBytes = new Uint8Array(payloadBytes.buffer); break; case MESSAGE_TYPE.DISCONNECT: break; default: ; } // Now we can allocate a buffer for the message var mbi = encodeMBI(remLength); // Convert the length to MQTT MBI format var pos = mbi.length + 1; // Offset of start of variable header var buffer = new ArrayBuffer(remLength + pos); var byteStream = new Uint8Array(buffer); // view it as a sequence of bytes //Write the fixed header into the buffer byteStream[0] = first; byteStream.set(mbi,1); // If this is a PUBLISH then the variable header starts with a topic if (this.type == MESSAGE_TYPE.PUBLISH) pos = writeString(this.payloadMessage.destinationName, destinationNameLength, byteStream, pos); // If this is a CONNECT then the variable header contains the protocol name/version, flags and keepalive time else if (this.type == MESSAGE_TYPE.CONNECT) { byteStream.set(MqttProtoIdentifier, pos); pos += MqttProtoIdentifier.length; var connectFlags = 0; if (this.cleanSession) connectFlags = 0x02; if (this.willMessage != undefined ) { connectFlags |= 0x04; connectFlags |= (this.willMessage.qos<<3); if (this.willMessage.retained) { connectFlags |= 0x20; } } if (this.userName != undefined) connectFlags |= 0x80; if (this.password != undefined) connectFlags |= 0x40; byteStream[pos++] = connectFlags; pos = writeUint16 (this.keepAliveInterval, byteStream, pos); } // Output the messageIdentifier - if there is one if (this.messageIdentifier != undefined) pos = writeUint16 (this.messageIdentifier, byteStream, pos); switch(this.type) { case MESSAGE_TYPE.CONNECT: pos = writeString(this.clientId, UTF8Length(this.clientId), byteStream, pos); if (this.willMessage != undefined) { pos = writeString(this.willMessage.destinationName, UTF8Length(this.willMessage.destinationName), byteStream, pos); pos = writeUint16(willMessagePayloadBytes.byteLength, byteStream, pos); byteStream.set(willMessagePayloadBytes, pos); pos += willMessagePayloadBytes.byteLength; } if (this.userName != undefined) pos = writeString(this.userName, UTF8Length(this.userName), byteStream, pos); if (this.password != undefined) pos = writeString(this.password, UTF8Length(this.password), byteStream, pos); break; case MESSAGE_TYPE.PUBLISH: // PUBLISH has a text or binary payload, if text do not add a 2 byte length field, just the UTF characters. byteStream.set(payloadBytes, pos); break; // case MESSAGE_TYPE.PUBREC: // case MESSAGE_TYPE.PUBREL: // case MESSAGE_TYPE.PUBCOMP: // break; case MESSAGE_TYPE.SUBSCRIBE: // SUBSCRIBE has a list of topic strings and request QoS for (var i=0; i<this.topics.length; i++) { pos = writeString(this.topics[i], topicStrLength[i], byteStream, pos); byteStream[pos++] = this.requestedQos[i]; } break; case MESSAGE_TYPE.UNSUBSCRIBE: // UNSUBSCRIBE has a list of topic strings for (var i=0; i<this.topics.length; i++) pos = writeString(this.topics[i], topicStrLength[i], byteStream, pos); break; default: // Do nothing. } return buffer; } function decodeMessage(input) { //var msg = new Object(); // message to be constructed var first = input[0]; var type = first >> 4; var messageInfo = first &= 0x0f; var pos = 1; // Decode the remaining length (MBI format) var digit; var remLength = 0; var multiplier = 1; do { digit = input[pos++]; remLength += ((digit & 0x7F) * multiplier); multiplier *= 128; } while ((digit & 0x80) != 0); var wireMessage = new WireMessage(type); switch(type) { case MESSAGE_TYPE.CONNACK: wireMessage.topicNameCompressionResponse = input[pos++]; wireMessage.returnCode = input[pos++]; break; case MESSAGE_TYPE.PUBLISH: var qos = (messageInfo >> 1) & 0x03; var len = readUint16(input, pos); pos += 2; var topicName = parseUTF8(input, pos, len); pos += len; // If QoS 1 or 2 there will be a messageIdentifier if (qos > 0) { wireMessage.messageIdentifier = readUint16(input, pos); pos += 2; } var message = new Messaging.Message(input.subarray(pos)); if ((messageInfo & 0x01) == 0x01) message.retained = true; if ((messageInfo & 0x08) == 0x08) message.duplicate = true; message.qos = qos; message.destinationName = topicName; wireMessage.payloadMessage = message; break; case MESSAGE_TYPE.PUBACK: case MESSAGE_TYPE.PUBREC: case MESSAGE_TYPE.PUBREL: case MESSAGE_TYPE.PUBCOMP: case MESSAGE_TYPE.UNSUBACK: wireMessage.messageIdentifier = readUint16(input, pos); break; case MESSAGE_TYPE.SUBACK: wireMessage.messageIdentifier = readUint16(input, pos); pos += 2; wireMessage.grantedQos = input.subarray(pos); break; default: ; } return wireMessage; } function writeUint16(input, buffer, offset) { buffer[offset++] = input >> 8; //MSB buffer[offset++] = input % 256; //LSB return offset; } function writeString(input, utf8Length, buffer, offset) { offset = writeUint16(utf8Length, buffer, offset); stringToUTF8(input, buffer, offset); return offset + utf8Length; } function readUint16(buffer, offset) { return 256*buffer[offset] + buffer[offset+1]; } /** * Encodes an MQTT Multi-Byte Integer * @private */ function encodeMBI(number) { var output = new Array(1); var numBytes = 0; do { var digit = number % 128; number = number >> 7; if (number > 0) { digit |= 0x80; } output[numBytes++] = digit; } while ( (number > 0) && (numBytes<4) ); return output; } /** * Takes a String and calculates its length in bytes when encoded in UTF8. * @private */ function UTF8Length(input) { var output = 0; for (var i = 0; i<input.length; i++) { var charCode = input.charCodeAt(i); if (charCode > 0x7FF) { // Surrogate pair means its a 4 byte character if (0xD800 <= charCode && charCode <= 0xDBFF) { i++; output++; } output +=3; } else if (charCode > 0x7F) output +=2; else output++; } return output; } /** * Takes a String and writes it into an array as UTF8 encoded bytes. * @private */ function stringToUTF8(input, output, start) { var pos = start; for (var i = 0; i<input.length; i++) { var charCode = input.charCodeAt(i); // Check for a surrogate pair. if (0xD800 <= charCode && charCode <= 0xDBFF) { lowCharCode = input.charCodeAt(++i); if (isNaN(lowCharCode)) { throw new Error(format(ERROR.MALFORMED_UNICODE, [charCode, lowCharCode])); } charCode = ((charCode - 0xD800)<<10) + (lowCharCode - 0xDC00) + 0x10000; } if (charCode <= 0x7F) { output[pos++] = charCode; } else if (charCode <= 0x7FF) { output[pos++] = charCode>>6 & 0x1F | 0xC0; output[pos++] = charCode & 0x3F | 0x80; } else if (charCode <= 0xFFFF) { output[pos++] = charCode>>12 & 0x0F | 0xE0; output[pos++] = charCode>>6 & 0x3F | 0x80; output[pos++] = charCode & 0x3F | 0x80; } else { output[pos++] = charCode>>18 & 0x07 | 0xF0; output[pos++] = charCode>>12 & 0x3F | 0x80; output[pos++] = charCode>>6 & 0x3F | 0x80; output[pos++] = charCode & 0x3F | 0x80; }; } return output; } function parseUTF8(input, offset, length) { var output = ""; var utf16; var pos = offset; while (pos < offset+length) { var byte1 = input[pos++]; if (byte1 < 128) utf16 = byte1; else { var byte2 = input[pos++]-128; if (byte2 < 0) throw new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16),""])); if (byte1 < 0xE0) // 2 byte character utf16 = 64*(byte1-0xC0) + byte2; else { var byte3 = input[pos++]-128; if (byte3 < 0) throw new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16)])); if (byte1 < 0xF0) // 3 byte character utf16 = 4096*(byte1-0xE0) + 64*byte2 + byte3; else { var byte4 = input[pos++]-128; if (byte4 < 0) throw new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16), byte4.toString(16)])); if (byte1 < 0xF8) // 4 byte character utf16 = 262144*(byte1-0xF0) + 4096*byte2 + 64*byte3 + byte4; else // longer encodings are not supported throw new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16), byte4.toString(16)])); } } } if (utf16 > 0xFFFF) // 4 byte character - express as a surrogate pair { utf16 -= 0x10000; output += String.fromCharCode(0xD800 + (utf16 >> 10)); // lead character utf16 = 0xDC00 + (utf16 & 0x3FF); // trail character } output += String.fromCharCode(utf16); } return output; } /** @ignore Repeat keepalive requests, monitor responses.*/ var Pinger = function(client, window, keepAliveInterval) { this._client = client; this._window = window; this._keepAliveInterval = keepAliveInterval*1000; this.isReset = false; var pingReq = new WireMessage(MESSAGE_TYPE.PINGREQ).encode(); var doTimeout = function (pinger) { return function () { return doPing.apply(pinger); }; }; /** @ignore */ var doPing = function() { if (!this.isReset) { this._client._trace("Pinger.doPing", "Timed out"); this._client._disconnected( ERROR.PING_TIMEOUT.code , format(ERROR.PING_TIMEOUT)); } else { this.isReset = false; this._client._trace("Pinger.doPing", "send PINGREQ"); this._client.socket.send(pingReq); this.timeout = this._window.setTimeout(doTimeout(this), this._keepAliveInterval); } } this.reset = function() { this.isReset = true; this._window.clearTimeout(this.timeout); if (this._keepAliveInterval > 0) this.timeout = setTimeout(doTimeout(this), this._keepAliveInterval); } this.cancel = function() { this._window.clearTimeout(this.timeout); } }; /** @ignore Monitor request completion. */ var Timeout = function(client, window, timeoutSeconds, action, args) { this._window = window; if (!timeoutSeconds) timeoutSeconds = 30; var doTimeout = function (action, client, args) { return function () { return action.apply(client, args); }; }; this.timeout = setTimeout(doTimeout(action, client, args), timeoutSeconds * 1000); this.cancel = function() { this._window.clearTimeout(this.timeout); } }; /* * Internal implementation of the Websockets MQTT V3.1 client. * * @name Messaging.ClientImpl @constructor * @param {String} host the DNS nameof the webSocket host. * @param {Number} port the port number for that host. * @param {String} clientId the MQ client identifier. */ var ClientImpl = function (host, port, clientId) { // Check dependencies are satisfied in this browser. if (!("WebSocket" in global && global["WebSocket"] !== null)) { throw new Error(format(ERROR.UNSUPPORTED, ["WebSocket"])); } if (!("localStorage" in global && global["localStorage"] !== null)) { throw new Error(format(ERROR.UNSUPPORTED, ["localStorage"])); } if (!("ArrayBuffer" in global && global["ArrayBuffer"] !== null)) { throw new Error(format(ERROR.UNSUPPORTED, ["ArrayBuffer"])); } this._trace("Messaging.Client", host, port, clientId); this.host = host; this.port = port; this.clientId = clientId; // Local storagekeys are qualified with the following string. this._localKey=host+":"+port+":"+clientId+":"; // Create private instance-only message queue // Internal queue of messages to be sent, in sending order. this._msg_queue = []; // Messages we have sent and are expecting a response for, indexed by their respective message ids. this._sentMessages = {}; // Messages we have received and acknowleged and are expecting a confirm message for // indexed by their respective message ids. this._receivedMessages = {}; // Internal list of callbacks to be executed when messages // have been successfully sent over web socket, e.g. disconnect // when it doesn't have to wait for ACK, just message is dispatched. this._notify_msg_sent = {}; // Unique identifier for SEND messages, incrementing // counter as messages are sent. this._message_identifier = 1; // Used to determine the transmission sequence of stored sent messages. this._sequence = 0; // Load the local state, if any, from the saved version, only restore state relevant to this client. for(key in localStorage) if ( key.indexOf("Sent:"+this._localKey) == 0 || key.indexOf("Received:"+this._localKey) == 0) this.restore(key); }; // Messaging Client public instance members. ClientImpl.prototype.host; ClientImpl.prototype.port; ClientImpl.prototype.clientId; // Messaging Client private instance members. ClientImpl.prototype.socket; /* true once we have received an acknowledgement to a CONNECT packet. */ ClientImpl.prototype.connected = false; /* The largest message identifier allowed, may not be larger than 2**16 but * if set smaller reduces the maximum number of outbound messages allowed. */ ClientImpl.prototype.maxMessageIdentifier = 65536; ClientImpl.prototype.connectOptions; ClientImpl.prototype.hostIndex; ClientImpl.prototype.onConnectionLost; ClientImpl.prototype.onMessageDelivered; ClientImpl.prototype.onMessageArrived; ClientImpl.prototype._msg_queue = null; ClientImpl.prototype._connectTimeout; /* Send keep alive messages. */ ClientImpl.prototype.pinger = null; ClientImpl.prototype._traceBuffer = null; ClientImpl.prototype._MAX_TRACE_ENTRIES = 100; ClientImpl.prototype.connect = function (connectOptions) { var connectOptionsMasked = this._traceMask(connectOptions, "password"); this._trace("Client.connect", connectOptionsMasked, this.socket, this.connected); if (this.connected) throw new Error(format(ERROR.INVALID_STATE, ["already connected"])); if (this.socket) throw new Error(format(ERROR.INVALID_STATE, ["already connected"])); this.connectOptions = connectOptions; if (connectOptions.hosts) { this.hostIndex = 0; this._doConnect(connectOptions.hosts[0], connectOptions.ports[0]); } else { this._doConnect(this.host, this.port); } }; ClientImpl.prototype.subscribe = function (filter, subscribeOptions) { this._trace("Client.subscribe", filter, subscribeOptions); if (!this.connected) throw new Error(format(ERROR.INVALID_STATE, ["not connected"])); var wireMessage = new WireMessage(MESSAGE_TYPE.SUBSCRIBE); wireMessage.topics=[filter]; if (subscribeOptions.qos != undefined) wireMessage.requestedQos = [subscribeOptions.qos]; else wireMessage.requestedQos = [0]; if (subscribeOptions.onSuccess) { wireMessage.callback = function() {subscribeOptions.onSuccess({invocationContext:subscribeOptions.invocationContext});}; } if (subscribeOptions.timeout) { wireMessage.timeOut = new Timeout(this, window, subscribeOptions.timeout, subscribeOptions.onFailure , [{invocationContext:subscribeOptions.invocationContext, errorCode:ERROR.SUBSCRIBE_TIMEOUT.code, errorMessage:format(ERROR.SUBSCRIBE_TIMEOUT)}]); } // All subscriptions return a SUBACK. this._requires_ack(wireMessage); this._schedule_message(wireMessage); }; /** @ignore */ ClientImpl.prototype.unsubscribe = function(filter, unsubscribeOptions) { this._trace("Client.unsubscribe", filter, unsubscribeOptions); if (!this.connected) throw new Error(format(ERROR.INVALID_STATE, ["not connected"])); var wireMessage = new WireMessage(MESSAGE_TYPE.UNSUBSCRIBE); wireMessage.topics = [filter]; if (unsubscribeOptions.onSuccess) { wireMessage.callback = function() {unsubscribeOptions.onSuccess({invocationContext:unsubscribeOptions.invocationContext});}; } if (unsubscribeOptions.timeout) { wireMessage.timeOut = new Timeout(this, window, unsubscribeOptions.timeout, unsubscribeOptions.onFailure , [{invocationContext:unsubscribeOptions.invocationContext, errorCode:ERROR.UNSUBSCRIBE_TIMEOUT.code, errorMessage:format(ERROR.UNSUBSCRIBE_TIMEOUT)}]); } // All unsubscribes return a SUBACK. this._requires_ack(wireMessage); this._schedule_message(wireMessage); }; ClientImpl.prototype.send = function (message) { this._trace("Client.send", message); if (!this.connected) throw new Error(format(ERROR.INVALID_STATE, ["not connected"])); wireMessage = new WireMessage(MESSAGE_TYPE.PUBLISH); wireMessage.payloadMessage = message; if (message.qos > 0) this._requires_ack(wireMessage); else if (this.onMessageDelivered) this._notify_msg_sent[wireMessage] = this.onMessageDelivered(wireMessage.payloadMessage); this._schedule_message(wireMessage); }; ClientImpl.prototype.disconnect = function () { this._trace("Client.disconnect"); if (!this.socket) throw new Error(format(ERROR.INVALID_STATE, ["not connecting or connected"])); wireMessage = new WireMessage(MESSAGE_TYPE.DISCONNECT); // Run the disconnected call back as soon as the message has been sent, // in case of a failure later on in the disconnect processing. // as a consequence, the _disconected call back may be run several times. this._notify_msg_sent[wireMessage] = scope(this._disconnected, this); this._schedule_message(wireMessage); }; ClientImpl.prototype.getTraceLog = function () { if ( this._traceBuffer !== null ) { this._trace("Client.getTraceLog", new Date()); this._trace("Client.getTraceLog in flight messages", this._sentMessages.length); for (key in this._sentMessages) this._trace("_sentMessages ",key, this._sentMessages[key]); for (key in this._receivedMessages) this._trace("_receivedMessages ",key, this._receivedMessages[key]); return this._traceBuffer; } }; ClientImpl.prototype.startTrace = function () { if ( this._traceBuffer === null ) { this._traceBuffer = []; } this._trace("Client.startTrace", new Date(), version); }; ClientImpl.prototype.stopTrace = function () { delete this._traceBuffer; }; ClientImpl.prototype._doConnect = function (host, port) { // When the socket is open, this client will send the CONNECT WireMessage using the saved parameters. if (this.connectOptions.useSSL) wsurl = ["wss://", host, ":", port, "/mqtt"].join(""); else wsurl = ["ws://", host, ":", port, "/mqtt"].join(""); this.connected = false; this.socket = new WebSocket(wsurl, 'mqttv3.1'); this.socket.binaryType = 'arraybuffer'; this.socket.onopen = scope(this._on_socket_open, this); this.socket.onmessage = scope(this._on_socket_message, this); this.socket.onerror = scope(this._on_socket_error, this); this.socket.onclose = scope(this._on_socket_close, this); this.pinger = new Pinger(this, window, this.connectOptions.keepAliveInterval); this._connectTimeout = new Timeout(this, window, this.connectOptions.timeout, this._disconnected, [ERROR.CONNECT_TIMEOUT.code, format(ERROR.CONNECT_TIMEOUT)]); }; // Schedule a new message to be sent over the WebSockets // connection. CONNECT messages cause WebSocket connection // to be started. All other messages are queued internally // until this has happened. When WS connection starts, process // all outstanding messages. ClientImpl.prototype._schedule_message = function (message) { this._msg_queue.push(message); // Process outstanding messages in the queue if we have an open socket, and have received CONNACK. if (this.connected) { this._process_queue(); } }; ClientImpl.prototype.store = function(prefix, wireMessage) { storedMessage = {type:wireMessage.type, messageIdentifier:wireMessage.messageIdentifier, version:1}; switch(wireMessage.type) { case MESSAGE_TYPE.PUBLISH: if(wireMessage.pubRecReceived) storedMessage.pubRecReceived = true; // Convert the payload to a hex string. storedMessage.payloadMessage = {}; var hex = ""; var messageBytes = wireMessage.payloadMessage.payloadBytes; for (var i=0; i<messageBytes.length; i++) { if (messageBytes[i] <= 0xF) hex = hex+"0"+messageBytes[i].toString(16); else hex = hex+messageBytes[i].toString(16); } storedMessage.payloadMessage.payloadHex = hex; storedMessage.payloadMessage.qos = wireMessage.payloadMessage.qos; storedMessage.payloadMessage.destinationName = wireMessage.payloadMessage.destinationName; if (wireMessage.payloadMessage.duplicate) storedMessage.payloadMessage.duplicate = true; if (wireMessage.payloadMessage.retained) storedMessage.payloadMessage.retained = true; // Add a sequence number to sent messages. if ( prefix.indexOf("Sent:") == 0 ) { if ( wireMessage.sequence === undefined ) wireMessage.sequence = ++this._sequence; storedMessage.sequence = wireMessage.sequence; } break; default: throw Error(format(ERROR.INVALID_STORED_DATA, [key, storedMessage])); } localStorage.setItem(prefix+this._localKey+wireMessage.messageIdentifier, JSON.stringify(storedMessage)); }; ClientImpl.prototype.restore = function(key) { var value = localStorage.getItem(key); var storedMessage = JSON.parse(value); var wireMessage = new WireMessage(storedMessage.type, storedMessage); switch(storedMessage.type) { case MESSAGE_TYPE.PUBLISH: // Replace the payload message with a Message object. var hex = storedMessage.payloadMessage.payloadHex; var buffer = new ArrayBuffer((hex.length)/2); var byteStream = new Uint8Array(buffer); var i = 0; while (hex.length >= 2) { var x = parseInt(hex.substring(0, 2), 16); hex = hex.substring(2, hex.length); byteStream[i++] = x; } var payloadMessage = new Messaging.Message(byteStream); payloadMessage.qos = storedMessage.payloadMessage.qos; payloadMessage.destinationName = storedMessage.payloadMessage.destinationName; if (storedMessage.payloadMessage.duplicate) payloadMessage.duplicate = true; if (storedMessage.payloadMessage.retained) payloadMessage.retained = true; wireMessage.payloadMessage = payloadMessage; break; default: throw Error(format(ERROR.INVALID_STORED_DATA, [key, value])); } if (key.indexOf("Sent:"+this._localKey) == 0) { this._sentMessages[wireMessage.messageIdentifier] = wireMessage; } else if (key.indexOf("Received:"+this._localKey) == 0) { this._receivedMessages[wireMessage.messageIdentifier] = wireMessage; } }; ClientImpl.prototype._process_queue = function () { var message = null; // Process messages in order they were added var fifo = this._msg_queue.reverse(); // Send all queued messages down socket connection while ((message = fifo.pop())) { this._socket_send(message); // Notify listeners that message was successfully sent if (this._notify_msg_sent[message]) { this._notify_msg_sent[message](); delete this._notify_msg_sent[message]; } } }; /** * @ignore * Expect an ACK response for this message. Add message to the set of in progress * messages and set an unused identifier in this message. */ ClientImpl.prototype._requires_ack = function (wireMessage) { var messageCount = Object.keys(this._sentMessages).length; if (messageCount > this.maxMessageIdentifier) throw Error ("Too many messages:"+messageCount); while(this._sentMessages[this._message_identifier] !== undefined) { this._message_identifier++; } wireMessage.messageIdentifier = this._message_identifier; this._sentMessages[wireMessage.messageIdentifier] = wireMessage; if (wireMessage.type === MESSAGE_TYPE.PUBLISH) { this.store("Sent:", wireMessage); } if (this._message_identifier === this.maxMessagIdentifier) { this._message_identifier = 1; } }; /** * @ignore * Called when the underlying websocket has been opened. */ ClientImpl.prototype._on_socket_open = function () { // Create the CONNECT message object. var wireMessage = new WireMessage(MESSAGE_TYPE.CONNECT, this.connectOptions); wireMessage.clientId = this.clientId; this._socket_send(wireMessage); }; /** * @ignore * Called when the underlying websocket has received a complete packet. */ ClientImpl.prototype._on_socket_message = function (event) { this._trace("Client._on_socket_message", event.data); // Reset the ping timer. this.pinger.reset(); var byteArray = new Uint8Array(event.data); try { var wireMessage = decodeMessage(byteArray); } catch (error) { this._disconnected(ERROR.INTERNAL_ERROR.code , format(ERROR.INTERNAL_ERROR, [error.message])); return; } this._trace("Client._on_socket_message", wireMessage); switch(wireMessage.type) { case MESSAGE_TYPE.CONNACK: this._connectTimeout.cancel(); // If we have started using clean session then clear up the local state. if (this.connectOptions.cleanSession) { for (key in this._sentMessages) { var sentMessage = this._sentMessages[key]; localStorage.removeItem("Sent:"+this._localKey+sentMessage.messageIdentifier); } this._sentMessages = {}; for (key in this._receivedMessages) { var receivedMessage = this._receivedMessages[key]; localStorage.removeItem("Received:"+this._localKey+receivedMessage.messageIdentifier); } this._receivedMessages = {}; } // Client connected and ready for business. if (wireMessage.returnCode === 0) { this.connected = true; } else { this._disconnected(ERROR.CONNACK_RETURNCODE.code , format(ERROR.CONNACK_RETURNCODE, [wireMessage.returnCode, CONNACK_RC[wireMessage.returnCode]])); break; } // Resend messages. var sequencedMessages = new Array(); for (var msgId in this._sentMessages) { if (this._sentMessages.hasOwnProperty(msgId)) sequencedMessages.push(this._sentMessages[msgId]); } // Sort sentMessages into the original sent order. var sequencedMessages = sequencedMessages.sort(function(a,b) {return a.sequence - b.sequence;} ); for (var i=0, len=sequencedMessages.length; i<len; i++) { var sentMessage = sequencedMessages[i]; if (sentMessage.type == MESSAGE_TYPE.PUBLISH && sentMessage.pubRecReceived) { var pubRelMessage = new WireMessage(MESSAGE_TYPE.PUBREL, {messageIdentifier:sentMessage.messageIdentifier}); this._schedule_message(pubRelMessage); } else { this._schedule_message(sentMessage); }; } // Execute the connectOptions.onSuccess callback if there is one. if (this.connectOptions.onSuccess) { this.connectOptions.onSuccess({invocationContext:this.connectOptions.invocationContext}); } // Process all queued messages now that the connection is established. this._process_queue(); break; case MESSAGE_TYPE.PUBLISH: this._receivePublish(wireMessage); break; case MESSAGE_TYPE.PUBACK: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; // If this is a re flow of a PUBACK after we have restarted receivedMessage will not exist. if (sentMessage) { delete this._sentMessages[wireMessage.messageIdentifier]; localStorage.removeItem("Sent:"+this._localKey+wireMessage.messageIdentifier); if (this.onMessageDelivered) this.onMessageDelivered(sentMessage.payloadMessage); } break; case MESSAGE_TYPE.PUBREC: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; // If this is a re flow of a PUBREC after we have restarted receivedMessage will not exist. if (sentMessage) { sentMessage.pubRecReceived = true; var pubRelMessage = new WireMessage(MESSAGE_TYPE.PUBREL, {messageIdentifier:wireMessage.messageIdentifier}); this.store("Sent:", sentMessage); this._schedule_message(pubRelMessage); } break; case MESSAGE_TYPE.PUBREL: var receivedMessage = this._receivedMessages[wireMessage.messageIdentifier]; localStorage.removeItem("Received:"+this._localKey+wireMessage.messageIdentifier); // If this is a re flow of a PUBREL after we have restarted receivedMessage will not exist. if (receivedMessage) { this._receiveMessage(receivedMessage); delete this._receivedMessages[wireMessage.messageIdentifier]; } // Always flow PubComp, we may have previously flowed PubComp but the server lost it and restarted. pubCompMessage = new WireMessage(MESSAGE_TYPE.PUBCOMP, {messageIdentifier:wireMessage.messageIdentifier}); this._schedule_message(pubCompMessage); break; case MESSAGE_TYPE.PUBCOMP: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; delete this._sentMessages[wireMessage.messageIdentifier]; localStorage.removeItem("Sent:"+this._localKey+wireMessage.messageIdentifier); if (this.onMessageDelivered) this.onMessageDelivered(sentMessage.payloadMessage); break; case MESSAGE_TYPE.SUBACK: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; if (sentMessage) { if(sentMessage.timeOut) sentMessage.timeOut.cancel(); if (sentMessage.callback) { sentMessage.callback(); } delete this._sentMessages[wireMessage.messageIdentifier]; } break; case MESSAGE_TYPE.UNSUBACK: var sentMessage = this._sentMessages[wireMessage.messageIdentifier]; if (sentMessage) { if (sentMessage.timeOut) sentMessage.timeOut.cancel(); if (sentMessage.callback) { sentMessage.callback(); } delete this._sentMessages[wireMessage.messageIdentifier]; } break; case MESSAGE_TYPE.PINGRESP: break; case MESSAGE_TYPE.DISCONNECT: // Clients do not expect to receive disconnect packets. this._disconnected(ERROR.INVALID_MQTT_MESSAGE_TYPE.code , format(ERROR.INVALID_MQTT_MESSAGE_TYPE, [wireMessage.type])); break; default: this._disconnected(ERROR.INVALID_MQTT_MESSAGE_TYPE.code , format(ERROR.INVALID_MQTT_MESSAGE_TYPE, [wireMessage.type])); }; }; /** @ignore */ ClientImpl.prototype._on_socket_error = function (error) { this._disconnected(ERROR.SOCKET_ERROR.code , format(ERROR.SOCKET_ERROR, [error.data])); }; /** @ignore */ ClientImpl.prototype._on_socket_close = function () { this._disconnected(ERROR.SOCKET_CLOSE.code , format(ERROR.SOCKET_CLOSE)); }; /** @ignore */ ClientImpl.prototype._socket_send = function (wireMessage) { if (wireMessage.type == 1) { var wireMessageMasked = this._traceMask(wireMessage, "password"); this._trace("Client._socket_send", wireMessageMasked); } else this._trace("Client._socket_send", wireMessage); this.socket.send(wireMessage.encode()); this.pinger.reset(); }; /** @ignore */ ClientImpl.prototype._receivePublish = function (wireMessage) { switch(wireMessage.payloadMessage.qos) { case "undefined": case 0: this._receiveMessage(wireMessage); break; case 1: var pubAckMessage = new WireMessage(MESSAGE_TYPE.PUBACK, {messageIdentifier:wireMessage.messageIdentifier}); this._schedule_message(pubAckMessage); this._receiveMessage(wireMessage); break; case 2: this._receivedMessages[wireMessage.messageIdentifier] = wireMessage; this.store("Received:", wireMessage); var pubRecMessage = new WireMessage(MESSAGE_TYPE.PUBREC, {messageIdentifier:wireMessage.messageIdentifier}); this._schedule_message(pubRecMessage); break; default: throw Error("Invaild qos="+wireMmessage.payloadMessage.qos); }; }; /** @ignore */ ClientImpl.prototype._receiveMessage = function (wireMessage) { if (this.onMessageArrived) { this.onMessageArrived(wireMessage.payloadMessage); } }; /** * @ignore * Client has disconnected either at its own request or because the server * or network disconnected it. Remove all non-durable state. * @param {errorCode} [number] the error number. * @param {errorText} [string] the error text. */ ClientImpl.prototype._disconnected = function (errorCode, errorText) { this.pinger.cancel(); if (this._connectTimeout) this._connectTimeout.cancel(); // Clear message buffers. this._msg_queue = []; this._notify_msg_sent = {}; if (this.socket) { // Cancel all socket callbacks so that they cannot be driven again by this socket. this.socket.onopen = null; this.socket.onmessage = null; this.socket.onerror = null; this.socket.onclose = null; this.socket.close(); delete this.socket; } if (this.connectOptions.hosts && this.hostIndex < this.connectOptions.hosts.length-1) { // Try the next host. this.hostIndex++; this._doConnect(this.connectOptions.hosts[this.hostIndex], this.connectOptions.ports[this.hostIndex]); } else { if (errorCode === undefined) { errorCode = ERROR.OK.code; errroText = format(ERROR.OK); } // Run any application callbacks last as they may attempt to reconnect and hence create a new socket. if (this.connected) { this.connected = false; // Execute the connectionLostCallback if there is one, and we were connected. if (this.onConnectionLost) this.onConnectionLost({errorCode:errorCode, errorMessage:errorText}); } else { // Otherwise we never had a connection, so indicate that the connect has failed. if(this.connectOptions.onFailure) this.connectOptions.onFailure({invocationContext:this.connectOptions.invocationContext, errorCode:errorCode, errorMessage:errorText}); } } }; /** @ignore */ ClientImpl.prototype._trace = function () { if ( this._traceBuffer !== null ) { for (var i = 0, max = arguments.length; i < max; i++) { if ( this._traceBuffer.length == this._MAX_TRACE_ENTRIES ) { this._traceBuffer.shift(); } if (i === 0) this._traceBuffer.push(arguments[i]); else if (typeof arguments[i] === "undefined" ) this._traceBuffer.push(arguments[i]); else this._traceBuffer.push(" "+JSON.stringify(arguments[i])); }; }; }; /** @ignore */ ClientImpl.prototype._traceMask = function (traceObject, masked) { var traceObjectMasked = {}; for (var attr in traceObject) { if (traceObject.hasOwnProperty(attr)) { if (attr == masked) traceObjectMasked[attr] = "******"; else traceObjectMasked[attr] = traceObject[attr]; } } return traceObjectMasked; }; // ------------------------------------------------------------------------ // Public Programming interface. // ------------------------------------------------------------------------ /** * The JavaScript application communicates to the server using a Messaging.Client object. * <p> * Other programming languages, * <a href="/clients/java/doc/javadoc/com/ibm/micro/client/mqttv3/MqttClient.html"><big>Java</big></a>, * <a href="/clients/c/doc/html/index.html"><big>C</big></a>. * <p> * Most applications will create just one Client object and then call its connect() method, * however applications can create more than one Client object if they wish. * In this case the combination of host, port and clientId attributes must be different for each Client object. * <p> * The send, subscribe and unsubscribe methods are implemented as asynchronous JavaScript methods * (even though the underlying protocol exchange might be synchronous in nature). * This means they signal their completion by calling back to the application, * via Success or Failure callback functions provided by the application on the method in question. * Such callbacks are called at most once per method invocation and do not persist beyond the lifetime * of the script that made the invocation. * <p> * In contrast there are some callback functions <i> most notably onMessageArrived</i> * that are defined on the Messaging.Client object. * These may get called multiple times, and aren't directly related to specific method invocations made by the client. * * @name Messaging.Client * * @constructor * Creates a Messaging.Client object that can be used to communicate with a Messaging server. * * @param {string} host the address of the messaging server, as a DNS name or dotted decimal IP address. * @param {number} port the port number in the host to connect to. * @param {string} clientId the Messaging client identifier, between 1 and 23 characters in length. * * @property {string} host <i>read only</i> the server's DNS hostname or dotted decimal IP address. * @property {number} port <i>read only</i> the server's port. * @property {string} clientId <i>read only</i> used when connecting to the server. * @property {function} onConnectionLost called when a connection has been lost, * after a connect() method has succeeded. * Establish the call back used when a connection has been lost. The connection may be * lost because the client initiates a disconnect or because the server or network * cause the client to be disconnected. The disconnect call back may be called without * the connectionComplete call back being invoked if, for example the client fails to * connect. * A single response object parameter is passed to the onConnectionLost callback containing the following fields: * <ol> * <li>errorCode * <li>errorMessage * </ol> * @property {function} onMessageDelivered called when a message has been delivered. * All processing that this Client will ever do has been completed. So, for example, * in the case of a Qos=2 message sent by this client, the PubComp flow has been received from the server * and the message has been removed from persistent storage before this callback is invoked. * Parameters passed to the onMessageDelivered callback are: * <ol> * <li>Messaging.Message that was delivered. * </ol> * @property {function} onMessageArrived called when a message has arrived in this Messaging.client. * Parameters passed to the onMessageArrived callback are: * <ol> * <li>Messaging.Message that has arrived. * </ol> */ var Client = function (host, port, clientId) { if (typeof host !== "string") throw new Error(format(ERROR.INVALID_TYPE, [typeof host, "host"])); if (typeof port !== "number" || port < 0) throw new Error(format(ERROR.INVALID_TYPE, [typeof port, "port"])); var clientIdLength = 0; for (var i = 0; i<clientId.length; i++) { var charCode = clientId.charCodeAt(i); if (0xD800 <= charCode && charCode <= 0xDBFF) { i++; // Surrogate pair. } clientIdLength++; } if (typeof clientId !== "string" || clientIdLength < 1 | clientIdLength > 23) throw new Error(format(ERROR.INVALID_ARGUMENT, [clientId, "clientId"])); var client = new ClientImpl(host, port, clientId); this._getHost = function() { return client.host; }; this._setHost = function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }; this._getPort = function() { return client.port; }; this._setPort = function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }; this._getClientId = function() { return client.clientId; }; this._setClientId = function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }; this._getOnConnectionLost = function() { return client.onConnectionLost; }; this._setOnConnectionLost = function(newOnConnectionLost) { if (typeof newOnConnectionLost === "function") client.onConnectionLost = newOnConnectionLost; else throw new Error(format(ERROR.INVALID_TYPE, [typeof newOnConnectionLost, "onConnectionLost"])); }; this._getOnMessageDelivered = function() { return client.onMessageDelivered; }; this._setOnMessageDelivered = function(newOnMessageDelivered) { if (typeof newOnMessageDelivered === "function") client.onMessageDelivered = newOnMessageDelivered; else throw new Error(format(ERROR.INVALID_TYPE, [typeof newOnMessageDelivered, "onMessageDelivered"])); }; this._getOnMessageArrived = function() { return client.onMessageArrived; }; this._setOnMessageArrived = function(newOnMessageArrived) { if (typeof newOnMessageArrived === "function") client.onMessageArrived = newOnMessageArrived; else throw new Error(format(ERROR.INVALID_TYPE, [typeof newOnMessageArrived, "onMessageArrived"])); }; /** * Connect this Messaging client to its server. * * @name Messaging.Client#connect * @function * @param {Object} [connectOptions] attributes used with the connection. * <p> * Properties of the connect options are: * @config {number} [timeout] If the connect has not succeeded within this number of seconds, it is deemed to have failed. * The default is 30 seconds. * @config {string} [userName] Authentication username for this connection. * @config {string} [password] Authentication password for this connection. * @config {Messaging.Message} [willMessage] sent by the server when the client disconnects abnormally. * @config {Number} [keepAliveInterval] the server disconnects this client if there is no activity for this * number of seconds. The default value of 60 seconds is assumed if not set. * @config {boolean} [cleanSession] if true(default) the client and server persistent state is deleted on successful connect. * @config {boolean} [useSSL] if present and true, use an SSL Websocket connection. * @config {object} [invocationContext] passed to the onSuccess callback or onFailure callback. * @config {function} [onSuccess] called when the connect acknowledgement has been received from the server. * A single response object parameter is passed to the onSuccess callback containing the following fields: * <ol> * <li>invocationContext as passed in to the onSuccess method in the connectOptions. * </ol> * @config {function} [onFailure] called when the connect request has failed or timed out. * A single response object parameter is passed to the onFailure callback containing the following fields: * <ol> * <li>invocationContext as passed in to the onFailure method in the connectOptions. * <li>errorCode a number indicating the nature of the error. * <li>errorMessage text describing the error. * </ol> * @config {Array} [hosts] If present this set of hostnames is tried in order in place * of the host and port paramater on the construtor. The hosts and the matching ports are tried one at at time in order until * one of then succeeds. * @config {Array} [ports] If present this set of ports matching the hosts. * @throws {InvalidState} if the client is not in disconnected state. The client must have received connectionLost * or disconnected before calling connect for a second or subsequent time. */ this.connect = function (connectOptions) { connectOptions = connectOptions || {} ; validate(connectOptions, {timeout:"number", userName:"string", password:"string", willMessage:"object", keepAliveInterval:"number", cleanSession:"boolean", useSSL:"boolean", invocationContext:"object", onSuccess:"function", onFailure:"function", hosts:"object", ports:"object"}); // If no keep alive interval is set, assume 60 seconds. if (connectOptions.keepAliveInterval === undefined) connectOptions.keepAliveInterval = 60; if (connectOptions.willMessage) { if (!(connectOptions.willMessage instanceof Message)) throw new Error(format(ERROR.INVALID_TYPE, [connectOptions.willMessage, "connectOptions.willMessage"])); // The will message must have a payload that can be represented as a string. // Cause the willMessage to throw an exception if this is not the case. connectOptions.willMessage.stringPayload; if (typeof connectOptions.willMessage.destinationName === "undefined") throw new Error(format(ERROR.INVALID_TYPE, [typeof connectOptions.willMessage.destinationName, "connectOptions.willMessage.destinationName"])); } if (typeof connectOptions.cleanSession === "undefined") connectOptions.cleanSession = true; if (connectOptions.hosts) { if (!connectOptions.ports) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.ports, "connectOptions.ports"])); if (!(connectOptions.hosts instanceof Array) ) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.hosts, "connectOptions.hosts"])); if (!(connectOptions.ports instanceof Array) ) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.ports, "connectOptions.ports"])); if (connectOptions.hosts.length <1 ) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.hosts, "connectOptions.hosts"])); if (connectOptions.hosts.length != connectOptions.ports.length) throw new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.ports, "connectOptions.ports"])); for (var i = 0; i<connectOptions.hosts.length; i++) { if (typeof connectOptions.hosts[i] !== "string") throw new Error(format(ERROR.INVALID_TYPE, [typeof connectOptions.hosts[i], "connectionstions.hosts["+i+"]"])); if (typeof connectOptions.ports[i] !== "number" || connectOptions.ports[i] < 0) throw new Error(format(ERROR.INVALID_TYPE, [typeof connectOptions.ports[i], "connectionstions.ports["+i+"]"])); } } client.connect(connectOptions); }; /** * Subscribe for messages, request receipt of a copy of messages sent to the destinations described by the filter. * * @name Messaging.Client#subscribe * @function * @param {string} filter describing the destinations to receive messages from. * <br> * @param {object} [subscribeOptions] used to control the subscription, as follows: * <p> * @config {number} [qos] the maiximum qos of any publications sent as a result of making this subscription. * @config {object} [invocationContext] passed to the onSuccess callback or onFailure callback. * @config {function} [onSuccess] called when the subscribe acknowledgement has been received from the server. * A single response object parameter is passed to the onSuccess callback containing the following fields: * <ol> * <li>invocationContext if set in the subscribeOptions. * </ol> * @config {function} [onFailure] called when the subscribe request has failed or timed out. * A single response object parameter is passed to the onFailure callback containing the following fields: * <ol> * <li>invocationContext if set in the subscribeOptions. * <li>errorCode a number indicating the nature of the error. * <li>errorMessage text describing the error. * </ol> * @config {number} [timeout] which if present determines the number of seconds after which the onFailure calback is called * the presence of a timeout does not prevent the onSuccess callback from being called when the MQTT Suback is eventually received. * @throws {InvalidState} if the client is not in connected state. */ this.subscribe = function (filter, subscribeOptions) { if (typeof filter !== "string") throw new Error("Invalid argument:"+filter); subscribeOptions = subscribeOptions || {} ; validate(subscribeOptions, {qos:"number", invocationContext:"object", onSuccess:"function", onFailure:"function", timeout:"number" }); if (subscribeOptions.timeout && !subscribeOptions.onFailure) throw new Error("subscribeOptions.timeout specified with no onFailure callback."); if (typeof subscribeOptions.qos !== "undefined" && !(subscribeOptions.qos === 0 || subscribeOptions.qos === 1 || subscribeOptions.qos === 2 )) throw new Error(format(ERROR.INVALID_ARGUMENT, [subscribeOptions.qos, "subscribeOptions.qos"])); client.subscribe(filter, subscribeOptions); }; /** * Unsubscribe for messages, stop receiving messages sent to destinations described by the filter. * * @name Messaging.Client#unsubscribe * @function * @param {string} filter describing the destinations to receive messages from. * @param {object} [unsubscribeOptions] used to control the subscription, as follows: * <p> * @config {object} [invocationContext] passed to the onSuccess callback or onFailure callback. * @config {function} [onSuccess] called when the unsubscribe acknowledgement has been receive dfrom the server. * A single response object parameter is passed to the onSuccess callback containing the following fields: * <ol> * <li>invocationContext if set in the unsubscribeOptions. * </ol> * @config {function} [onFailure] called when the unsubscribe request has failed or timed out. * A single response object parameter is passed to the onFailure callback containing the following fields: * <ol> * <li>invocationContext if set in the unsubscribeOptions. * <li>errorCode a number indicating the nature of the error. * <li>errorMessage text describing the error. * </ol> * @config {number} [timeout] which if present determines the number of seconds after which the onFailure callback is called, the * presence of a timeout does not prevent the onSuccess callback from being called when the MQTT UnSuback is eventually received. * @throws {InvalidState} if the client is not in connected state. */ this.unsubscribe = function (filter, unsubscribeOptions) { if (typeof filter !== "string") throw new Error("Invalid argument:"+filter); unsubscribeOptions = unsubscribeOptions || {} ; validate(unsubscribeOptions, {invocationContext:"object", onSuccess:"function", onFailure:"function", timeout:"number" }); if (unsubscribeOptions.timeout && !unsubscribeOptions.onFailure) throw new Error("unsubscribeOptions.timeout specified with no onFailure callback."); client.unsubscribe(filter, unsubscribeOptions); }; /** * Send a message to the consumers of the destination in the Message. * * @name Messaging.Client#send * @function * @param {Messaging.Message} message to send. * @throws {InvalidState} if the client is not in connected state. */ this.send = function (message) { if (!(message instanceof Message)) throw new Error("Invalid argument:"+typeof message); if (typeof message.destinationName === "undefined") throw new Error("Invalid parameter Message.destinationName:"+message.destinationName); client.send(message); }; /** * Normal disconnect of this Messaging client from its server. * * @name Messaging.Client#disconnect * @function * @throws {InvalidState} if the client is not in connected or connecting state. */ this.disconnect = function () { client.disconnect(); }; /** * Get the contents of the trace log. * * @name Messaging.Client#getTraceLog * @function * @return {Object[]} tracebuffer containing the time ordered trace records. */ this.getTraceLog = function () { return client.getTraceLog(); } /** * Start tracing. * * @name Messaging.Client#startTrace * @function */ this.startTrace = function () { client.startTrace(); }; /** * Stop tracing. * * @name Messaging.Client#stopTrace * @function */ this.stopTrace = function () { client.stopTrace(); }; }; Client.prototype = { get host() { return this._getHost(); }, set host(newHost) { this._setHost(newHost); }, get port() { return this._getPort(); }, set port(newPort) { this._setPort(newPort); }, get clientId() { return this._getClientId(); }, set clientId(newClientId) { this._setClientId(newClientId); }, get onConnectionLost() { return this._getOnConnectionLost(); }, set onConnectionLost(newOnConnectionLost) { this._setOnConnectionLost(newOnConnectionLost); }, get onMessageDelivered() { return this._getOnMessageDelivered(); }, set onMessageDelivered(newOnMessageDelivered) { this._setOnMessageDelivered(newOnMessageDelivered); }, get onMessageArrived() { return this._getOnMessageArrived(); }, set onMessageArrived(newOnMessageArrived) { this._setOnMessageArrived(newOnMessageArrived); } }; /** * An application message, sent or received. * <p> * Other programming languages, * <a href="/clients/java/doc/javadoc/com/ibm/micro/client/mqttv3/MqttMessage.html"><big>Java</big></a>, * <a href="/clients/c/doc/html/struct_m_q_t_t_client__message.html"><big>C</big></a>. * <p> * All attributes may be null, which implies the default values. * * @name Messaging.Message * @constructor * @param {String|ArrayBuffer} payload The message data to be sent. * <p> * @property {string} payloadString <i>read only</i> The payload as a string if the payload consists of valid UTF-8 characters. * @property {ArrayBuffer} payloadBytes <i>read only</i> The payload as an ArrayBuffer. * <p> * @property {string} destinationName <b>mandatory</b> The name of the destination to which the message is to be sent * (for messages about to be sent) or the name of the destination from which the message has been received. * (for messages received by the onMessage function). * <p> * @property {number} qos The Quality of Service used to deliver the message. * <dl> * <dt>0 Best effort (default). * <dt>1 At least once. * <dt>2 Exactly once. * </dl> * <p> * @property {Boolean} retained If true, the message is to be retained by the server and delivered * to both current and future subscriptions. * If false the server only delivers the message to current subscribers, this is the default for new Messages. * A received message has the retained boolean set to true if the message was published * with the retained boolean set to true * and the subscrption was made after the message has been published. * <p> * @property {Boolean} duplicate <i>read only</i> If true, this message might be a duplicate of one which has already been received. * This is only set on messages received from the server. * */ var Message = function (newPayload) { var payload; if ( typeof newPayload === "string" || newPayload instanceof ArrayBuffer || newPayload instanceof Int8Array || newPayload instanceof Uint8Array || newPayload instanceof Int16Array || newPayload instanceof Uint16Array || newPayload instanceof Int32Array || newPayload instanceof Uint32Array || newPayload instanceof Float32Array || newPayload instanceof Float64Array ) { payload = newPayload; } else { throw (format(ERROR.INVALID_ARGUMENT, [newPayload, "newPayload"])); } this._getPayloadString = function () { if (typeof payload === "string") return payload; else return parseUTF8(payload, 0, payload.length); }; this._getPayloadBytes = function() { if (typeof payload === "string") { var buffer = new ArrayBuffer(UTF8Length(payload)); var byteStream = new Uint8Array(buffer); stringToUTF8(payload, byteStream, 0); return byteStream; } else { return payload; }; }; var destinationName = undefined; this._getDestinationName = function() { return destinationName; }; this._setDestinationName = function(newDestinationName) { if (typeof newDestinationName === "string") destinationName = newDestinationName; else throw new Error(format(ERROR.INVALID_ARGUMENT, [newDestinationName, "newDestinationName"])); }; var qos = 0; this._getQos = function() { return qos; }; this._setQos = function(newQos) { if (newQos === 0 || newQos === 1 || newQos === 2 ) qos = newQos; else throw new Error("Invalid argument:"+newQos); }; var retained = false; this._getRetained = function() { return retained; }; this._setRetained = function(newRetained) { if (typeof newRetained === "boolean") retained = newRetained; else throw new Error(format(ERROR.INVALID_ARGUMENT, [newRetained, "newRetained"])); }; var duplicate = false; this._getDuplicate = function() { return duplicate; }; this._setDuplicate = function(newDuplicate) { duplicate = newDuplicate; }; }; Message.prototype = { get payloadString() { return this._getPayloadString(); }, get payloadBytes() { return this._getPayloadBytes(); }, get destinationName() { return this._getDestinationName(); }, set destinationName(newDestinationName) { this._setDestinationName(newDestinationName); }, get qos() { return this._getQos(); }, set qos(newQos) { this._setQos(newQos); }, get retained() { return this._getRetained(); }, set retained(newRetained) { this._setRetained(newRetained); }, get duplicate() { return this._getDuplicate(); }, set duplicate(newDuplicate) { this._setDuplicate(newDuplicate); } }; // Module contents. return { Client: Client, Message: Message }; })(window);

README.md

# Connected Vehicle Starter Kit ## Introduction The "Connected Vehicle Starter Kit" consists of three applications: 1. A Node.js connected vehicle simulator 2. An OpenLayers HTML5 map application 3. An HTML5 tester application to send commands The applications use IBM IoT Foundation for real-time publish/subscribe messaging, using the MQTT protocol. The simulated devices (vehicles) publish telemetry data frequently (5 msgs/sec) and subscribe to a command topic whereby they accept commands from the tester application (ex. set speed to 60). The Map app subscribes to the vehicle telemetry topic in order to display position and status in real-time. The Tester app allows you to publish control commands to the vehicles and notifications to the Map app. ![Messaging][pic messaging] ## Getting started ### 1. Bluemix If you do not already have an IBM Bluemix account, visit http://www.bluemix.net to sign up for an account. The basic account is free for 30 days, and provides enough compute resources to run this tutorial. Once the account request is submitted, you will receive a confirmation email within 1-2 minutes. ### 2. Internet of Things Foundation - From your Bluemix dashboard, select **Add a Service**. ![pic iot 1] - Choose **Internet of Things** from the service list. ![pic iot 2] - Provide a service name that you will recognize later (ex. iot-trafficsim) — this service represents an **organization** in IoT Foundation, which is a shared space where devices and applications can securely connect and share data. The service name you enter here is just for your reference, you will not collide with other users with the name iot-trafficsim. - Press **Create** to add the service. After the service is loaded, you will see the service information page with instructions and documentation for registering devices. - Click the **Launch** button in the top-right corner of the page to access your IoT organization dashboard. ![pic iot 4] - From the dashboard, you will be able to manually register devices, generate API keys for applications, and invite others to your organization. ### 3. Configure (IoT Foundation) The Connected Vehicle simulator uses IoT Foundation for near real-time messaging between simulated vehicles (devices) and the Map and Tester apps (applications). To facilitate this communication, you first have to register the devices and generate an API key for the applications. #### 3.1 Register devices The vehicle simulator allows you to model multiple vehicles from a single Node.js runtime instance. Each vehicle simulator will be treated as a **device** by IoT Foundation. You will eventually run 3 vehicle simulators, so the first step is to manually register these simulators to obtain access credentials. > REST APIs for device registration with IoT Foundation are also [available](https://developer.ibm.com/iot/recipes/api-documentation/#registerDevice) * From the organization dashboard's Devices tab, select **Add Device**. In the Device Type dropdown, select **Create a device type...** and enter **vehicle** in the field below. Choose a device ID of any length that will be unique to this organization (ex. ABC, DEF, GHI) and select **Continue**. ![pic iot 6] * The next screen will show you credentials for your device. For example: org=o4ze1w type=vehicle id=ABC auth-method=token auth-token=5QK1rWHG9JhDw-rs+S * Save this information in a file as you will need these credentials later. * Now create two more devices and also save the credentials. Note that when creating the first device, create a "type" of **vehicle**, so you can select that from the Device Type dropdown when creating subsequent devices. For example, the other two device credentials may be: org=o4ze1w type=vehicle id=DEF auth-method=token auth-token=Q7QmQ*!jQn6NUF&rA4 org=o4ze1w type=vehicle id=GHI auth-method=token auth-token=4O_FET9iLe(4bK!))z #### 3.2 Generate an API key You next will generate an API key for your organization. An API key provides credentials for any application (i.e. not a device) to connect to IoT Foundation using an MQTT client. * From your organization dashboard, click on the API Keys tab and select **New API Key**. * Copy down the key and token, for example: Key: a-o4ze1w-b7xr3coycy Auth Token: d4QD9Y@LcbrshlCD7q * Again, save the key and token in a file as you will need them later. * On the API Keys tab, you will see a new table row for the key you just created. Add a comment to the key to associate this with the Connected Vehicle application. ![pic iot 8] ### 4. Configure (Starter Kit) * Clone this repository to your local machine. * Choose a globally unique application name for used in Bluemix deployment (ex. **bryancboyd-trafficsim**) * Enter this name for the **host** and **name** fields in [manifest.yml](https://github.com/ibm-messaging/iot-connected-vehicle-starter-kit/blob/master/manifest.yml) and set the number of instances to **3**. applications: - host: bryancboyd-trafficsim disk: 128M name: bryancboyd-trafficsim command: node app.js path: . domain: mybluemix.net memory: 128M instances: 3 * All configuration for IoT Foundation is found in [config/settings.js](https://github.com/ibm-messaging/iot-connected-vehicle-starter-kit/blob/master/config/settings.js). This file stores all device tokens and API keys. * For **iot_deviceType**, enter **vehicle** * For **iot_deviceOrg**, enter your 6-character organization ID (ex: **o4ze1w**) * For **iot_deviceSet**, enter the three device ID and tokens you registered * For **iot_apiKey**, enter the API key your created * For **iot_apiToken**, enter the API key token ### 5. Deploy to Bluemix To deploy the Connected Vehicle application to Bluemix, use the Cloud Foundry [command line tools](https://github.com/cloudfoundry/cli#downloads). ##### Push the application to Bluemix * From the terminal, change to the root directory of this project and type: cf login * Follow the prompts, entering **https://api.ng.bluemix.net** for the API endpoint, and your Bluemix IBM ID email and password as login credentials. If you have more than one Bluemix organization and space available, you will also have to choose these. Next, enter: cf push * IF the application does not start successfully, view the error logs: cf logs <your app name> --recent * Check manifest.yml for errors, such as tabs in place of whitespace. * Now, visit the Map app at your URL: **http://APP_NAME.mybluemix.net**. You will see the simulated vehicles moving across the map. Click on a vehicle to view the telemetry data. ![pic map 1] ##### Increase the vehicle count per simulator Each vehicle simulator can model multiple vehicles. The number of vehicles is controlled by a Bluemix environment variable, which can be set from the Bluemix application dashboard. * In the dashboard, click on the **SDK for Node.js** icon ![pic vehicle count 1] * Add a USER-DEFINED variable **VEHICLE_COUNT**, and select a value of 5. ![pic vehicle count 2] * Notice that the change was applied dynamically and the number of cars on the map increases. ### 6. Use the Tester app The Tester app is used to send commands to the simulated vehicles and the Map app. The vehicle simulator subscribes to commands of type **setProperty** and will dynamically change its own properties, speed, and state. The Map app subscribes to commands of type **addOverlay** and will dynamically display a popup of text over a vehicle. * Open the Map app and Tester app (http://APP_NAME.mybluemix.net/tester) side-by-side, so that you can see both windows. ##### 7.1 **setProperty** API * Select a vehicle, then enter the ID in the second form on the Tester page. * Enter a property of **speed** and a value of 120, and press **Update Property**. An MQTT message will be published from the Tester app (topic and payload on screen), and the vehicle you chose will receive the message and change speed to 120 km/hr. ![pic set property 1] The vehicles simulate a set of **static properties** (location, speed, state, and type) and **custom properties**. The **setProperty** API allows you to dynamically add/change/delete a custom property on a vehicle. * To add a property, simply publish a property that doesn't yet exist. For example, use property **driverWindow** and value **UP**: ![pic set property 2] * To delete a property, update the property with an empty value; the vehicle will cease including the property in its telemetry message. ##### 7.2 **addOverlay** API The Map app subscribes to commands of type **addOverlay**, to allow external applications to display messages on the map over a vehicle. * In the Tester app, use the upper form to display a message over a vehicle, for example: ![pic add overlay 1] ## Next Steps - Geospatial and Node-RED The application can be extended with the Bluemix Geospatial Service and [Node-RED](www.nodered.org). Read Sections 8 and 9 in this [tutorial](http://m2m.demos.ibm.com/dl/iot-connected-vehicle-tutorial.pdf). [MQTT]:http://mqtt.org [Iot Foundation]:http://internetofthings.ibmcloud.com [pic messaging]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/messaging.png [pic iot 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/iot1.png [pic iot 2]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/iot2.png [pic iot 3]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/iot3.png [pic iot 4]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/iot4.png [pic iot 5]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/iot5.png [pic iot 6]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/iot6.png [pic iot 7]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/iot7.png [pic iot 8]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/iot8.png [pic config 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/config1.png [pic map 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/map1.png [pic vehicle count 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/vehicle_count1.png [pic vehicle count 2]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/vehicle_count2.png [pic set property 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/set_property1.png [pic add overlay 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/add_overlay1.png [pic set property 2]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/set_property2.png [pic geospatial 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/geospatial1.png [pic geospatial 2]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/geospatial2.png [pic geospatial 3]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/geospatial3.png [pic geospatial 4]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/geospatial4.png [pic node red 0]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red0.png [pic node red 1 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red1_1.png [pic node red 1 2]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red1_2.png [pic node red 1 3]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red1_3.png [pic node red 2 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red2_1.png [pic node red 2 2]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red2_2.png [pic node red 2 3]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red2_3.png [pic node red 2 4]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red2_4.png [pic node red 3 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red3_1.png [pic node red 3 2]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red3_2.png [pic node red 3 1]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red4_1.png [pic node red 4 2]:https://raw.githubusercontent.com/ibm-messaging/iot-connected-vehicle-starter-kit/master/docs/node_red4_2.png