-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheatmap.html
22 lines (21 loc) · 947 KB
/
heatmap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="data:application/x-javascript,%28function%28%29%20%7B%0A%20%20%2F%2F%20If%20window%2EHTMLWidgets%20is%20already%20defined%2C%20then%20use%20it%3B%20otherwise%20create%20a%0A%20%20%2F%2F%20new%20object%2E%20This%20allows%20preceding%20code%20to%20set%20options%20that%20affect%20the%0A%20%20%2F%2F%20initialization%20process%20%28though%20none%20currently%20exist%29%2E%0A%20%20window%2EHTMLWidgets%20%3D%20window%2EHTMLWidgets%20%7C%7C%20%7B%7D%3B%0A%0A%20%20%2F%2F%20See%20if%20we%27re%20running%20in%20a%20viewer%20pane%2E%20If%20not%2C%20we%27re%20in%20a%20web%20browser%2E%0A%20%20var%20viewerMode%20%3D%20window%2EHTMLWidgets%2EviewerMode%20%3D%0A%20%20%20%20%20%20%2F%5Cbviewer%5Fpane%3D1%5Cb%2F%2Etest%28window%2Elocation%29%3B%0A%0A%20%20%2F%2F%20See%20if%20we%27re%20running%20in%20Shiny%20mode%2E%20If%20not%2C%20it%27s%20a%20static%20document%2E%0A%20%20%2F%2F%20Note%20that%20static%20widgets%20can%20appear%20in%20both%20Shiny%20and%20static%20modes%2C%20but%0A%20%20%2F%2F%20obviously%2C%20Shiny%20widgets%20can%20only%20appear%20in%20Shiny%20apps%2Fdocuments%2E%0A%20%20var%20shinyMode%20%3D%20window%2EHTMLWidgets%2EshinyMode%20%3D%0A%20%20%20%20%20%20typeof%28window%2EShiny%29%20%21%3D%3D%20%22undefined%22%20%26%26%20%21%21window%2EShiny%2EoutputBindings%3B%0A%0A%20%20%2F%2F%20We%20can%27t%20count%20on%20jQuery%20being%20available%2C%20so%20we%20implement%20our%20own%0A%20%20%2F%2F%20version%20if%20necessary%2E%0A%20%20function%20querySelectorAll%28scope%2C%20selector%29%20%7B%0A%20%20%20%20if%20%28typeof%28jQuery%29%20%21%3D%3D%20%22undefined%22%20%26%26%20scope%20instanceof%20jQuery%29%20%7B%0A%20%20%20%20%20%20return%20scope%2Efind%28selector%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28scope%2EquerySelectorAll%29%20%7B%0A%20%20%20%20%20%20return%20scope%2EquerySelectorAll%28selector%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20function%20asArray%28value%29%20%7B%0A%20%20%20%20if%20%28value%20%3D%3D%3D%20null%29%0A%20%20%20%20%20%20return%20%5B%5D%3B%0A%20%20%20%20if%20%28%24%2EisArray%28value%29%29%0A%20%20%20%20%20%20return%20value%3B%0A%20%20%20%20return%20%5Bvalue%5D%3B%0A%20%20%7D%0A%0A%20%20%2F%2F%20Implement%20jQuery%27s%20extend%0A%20%20function%20extend%28target%20%2F%2A%2C%20%2E%2E%2E%20%2A%2F%29%20%7B%0A%20%20%20%20if%20%28arguments%2Elength%20%3D%3D%201%29%20%7B%0A%20%20%20%20%20%20return%20target%3B%0A%20%20%20%20%7D%0A%20%20%20%20for%20%28var%20i%20%3D%201%3B%20i%20%3C%20arguments%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20source%20%3D%20arguments%5Bi%5D%3B%0A%20%20%20%20%20%20for%20%28var%20prop%20in%20source%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28source%2EhasOwnProperty%28prop%29%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20target%5Bprop%5D%20%3D%20source%5Bprop%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20return%20target%3B%0A%20%20%7D%0A%0A%20%20%2F%2F%20IE8%20doesn%27t%20support%20Array%2EforEach%2E%0A%20%20function%20forEach%28values%2C%20callback%2C%20thisArg%29%20%7B%0A%20%20%20%20if%20%28values%2EforEach%29%20%7B%0A%20%20%20%20%20%20values%2EforEach%28callback%2C%20thisArg%29%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20values%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20callback%2Ecall%28thisArg%2C%20values%5Bi%5D%2C%20i%2C%20values%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20%2F%2F%20Replaces%20the%20specified%20method%20with%20the%20return%20value%20of%20funcSource%2E%0A%20%20%2F%2F%0A%20%20%2F%2F%20Note%20that%20funcSource%20should%20not%20BE%20the%20new%20method%2C%20it%20should%20be%20a%20function%0A%20%20%2F%2F%20that%20RETURNS%20the%20new%20method%2E%20funcSource%20receives%20a%20single%20argument%20that%20is%0A%20%20%2F%2F%20the%20overridden%20method%2C%20it%20can%20be%20called%20from%20the%20new%20method%2E%20The%20overridden%0A%20%20%2F%2F%20method%20can%20be%20called%20like%20a%20regular%20function%2C%20it%20has%20the%20target%20permanently%0A%20%20%2F%2F%20bound%20to%20it%20so%20%22this%22%20will%20work%20correctly%2E%0A%20%20function%20overrideMethod%28target%2C%20methodName%2C%20funcSource%29%20%7B%0A%20%20%20%20var%20superFunc%20%3D%20target%5BmethodName%5D%20%7C%7C%20function%28%29%20%7B%7D%3B%0A%20%20%20%20var%20superFuncBound%20%3D%20function%28%29%20%7B%0A%20%20%20%20%20%20return%20superFunc%2Eapply%28target%2C%20arguments%29%3B%0A%20%20%20%20%7D%3B%0A%20%20%20%20target%5BmethodName%5D%20%3D%20funcSource%28superFuncBound%29%3B%0A%20%20%7D%0A%0A%20%20%2F%2F%20Implement%20a%20vague%20facsimilie%20of%20jQuery%27s%20data%20method%0A%20%20function%20elementData%28el%2C%20name%2C%20value%29%20%7B%0A%20%20%20%20if%20%28arguments%2Elength%20%3D%3D%202%29%20%7B%0A%20%20%20%20%20%20return%20el%5B%22htmlwidget%5Fdata%5F%22%20%2B%20name%5D%3B%0A%20%20%20%20%7D%20else%20if%20%28arguments%2Elength%20%3D%3D%203%29%20%7B%0A%20%20%20%20%20%20el%5B%22htmlwidget%5Fdata%5F%22%20%2B%20name%5D%20%3D%20value%3B%0A%20%20%20%20%20%20return%20el%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20throw%20new%20Error%28%22Wrong%20number%20of%20arguments%20for%20elementData%3A%20%22%20%2B%0A%20%20%20%20%20%20%20%20arguments%2Elength%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20%2F%2F%20http%3A%2F%2Fstackoverflow%2Ecom%2Fquestions%2F3446170%2Fescape%2Dstring%2Dfor%2Duse%2Din%2Djavascript%2Dregex%0A%20%20function%20escapeRegExp%28str%29%20%7B%0A%20%20%20%20return%20str%2Ereplace%28%2F%5B%5C%2D%5C%5B%5C%5D%5C%2F%5C%7B%5C%7D%5C%28%5C%29%5C%2A%5C%2B%5C%3F%5C%2E%5C%5C%5C%5E%5C%24%5C%7C%5D%2Fg%2C%20%22%5C%5C%24%26%22%29%3B%0A%20%20%7D%0A%0A%20%20function%20hasClass%28el%2C%20className%29%20%7B%0A%20%20%20%20var%20re%20%3D%20new%20RegExp%28%22%5C%5Cb%22%20%2B%20escapeRegExp%28className%29%20%2B%20%22%5C%5Cb%22%29%3B%0A%20%20%20%20return%20re%2Etest%28el%2EclassName%29%3B%0A%20%20%7D%0A%0A%20%20%2F%2F%20elements%20%2D%20array%20%28or%20array%2Dlike%20object%29%20of%20HTML%20elements%0A%20%20%2F%2F%20className%20%2D%20class%20name%20to%20test%20for%0A%20%20%2F%2F%20include%20%2D%20if%20true%2C%20only%20return%20elements%20with%20given%20className%3B%0A%20%20%2F%2F%20%20%20if%20false%2C%20only%20return%20elements%20%2Awithout%2A%20given%20className%0A%20%20function%20filterByClass%28elements%2C%20className%2C%20include%29%20%7B%0A%20%20%20%20var%20results%20%3D%20%5B%5D%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20elements%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20if%20%28hasClass%28elements%5Bi%5D%2C%20className%29%20%3D%3D%20include%29%0A%20%20%20%20%20%20%20%20results%2Epush%28elements%5Bi%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20return%20results%3B%0A%20%20%7D%0A%0A%20%20function%20on%28obj%2C%20eventName%2C%20func%29%20%7B%0A%20%20%20%20if%20%28obj%2EaddEventListener%29%20%7B%0A%20%20%20%20%20%20obj%2EaddEventListener%28eventName%2C%20func%2C%20false%29%3B%0A%20%20%20%20%7D%20else%20if%20%28obj%2EattachEvent%29%20%7B%0A%20%20%20%20%20%20obj%2EattachEvent%28eventName%2C%20func%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20function%20off%28obj%2C%20eventName%2C%20func%29%20%7B%0A%20%20%20%20if%20%28obj%2EremoveEventListener%29%0A%20%20%20%20%20%20obj%2EremoveEventListener%28eventName%2C%20func%2C%20false%29%3B%0A%20%20%20%20else%20if%20%28obj%2EdetachEvent%29%20%7B%0A%20%20%20%20%20%20obj%2EdetachEvent%28eventName%2C%20func%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20%2F%2F%20Translate%20array%20of%20values%20to%20top%2Fright%2Fbottom%2Fleft%2C%20as%20usual%20with%0A%20%20%2F%2F%20the%20%22padding%22%20CSS%20property%0A%20%20%2F%2F%20https%3A%2F%2Fdeveloper%2Emozilla%2Eorg%2Fen%2DUS%2Fdocs%2FWeb%2FCSS%2Fpadding%0A%20%20function%20unpackPadding%28value%29%20%7B%0A%20%20%20%20if%20%28typeof%28value%29%20%3D%3D%3D%20%22number%22%29%0A%20%20%20%20%20%20value%20%3D%20%5Bvalue%5D%3B%0A%20%20%20%20if%20%28value%2Elength%20%3D%3D%3D%201%29%20%7B%0A%20%20%20%20%20%20return%20%7Btop%3A%20value%5B0%5D%2C%20right%3A%20value%5B0%5D%2C%20bottom%3A%20value%5B0%5D%2C%20left%3A%20value%5B0%5D%7D%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28value%2Elength%20%3D%3D%3D%202%29%20%7B%0A%20%20%20%20%20%20return%20%7Btop%3A%20value%5B0%5D%2C%20right%3A%20value%5B1%5D%2C%20bottom%3A%20value%5B0%5D%2C%20left%3A%20value%5B1%5D%7D%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28value%2Elength%20%3D%3D%3D%203%29%20%7B%0A%20%20%20%20%20%20return%20%7Btop%3A%20value%5B0%5D%2C%20right%3A%20value%5B1%5D%2C%20bottom%3A%20value%5B2%5D%2C%20left%3A%20value%5B1%5D%7D%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28value%2Elength%20%3D%3D%3D%204%29%20%7B%0A%20%20%20%20%20%20return%20%7Btop%3A%20value%5B0%5D%2C%20right%3A%20value%5B1%5D%2C%20bottom%3A%20value%5B2%5D%2C%20left%3A%20value%5B3%5D%7D%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20%2F%2F%20Convert%20an%20unpacked%20padding%20object%20to%20a%20CSS%20value%0A%20%20function%20paddingToCss%28paddingObj%29%20%7B%0A%20%20%20%20return%20paddingObj%2Etop%20%2B%20%22px%20%22%20%2B%20paddingObj%2Eright%20%2B%20%22px%20%22%20%2B%20paddingObj%2Ebottom%20%2B%20%22px%20%22%20%2B%20paddingObj%2Eleft%20%2B%20%22px%22%3B%0A%20%20%7D%0A%0A%20%20%2F%2F%20Makes%20a%20number%20suitable%20for%20CSS%0A%20%20function%20px%28x%29%20%7B%0A%20%20%20%20if%20%28typeof%28x%29%20%3D%3D%3D%20%22number%22%29%0A%20%20%20%20%20%20return%20x%20%2B%20%22px%22%3B%0A%20%20%20%20else%0A%20%20%20%20%20%20return%20x%3B%0A%20%20%7D%0A%0A%20%20%2F%2F%20Retrieves%20runtime%20widget%20sizing%20information%20for%20an%20element%2E%0A%20%20%2F%2F%20The%20return%20value%20is%20either%20null%2C%20or%20an%20object%20with%20fill%2C%20padding%2C%0A%20%20%2F%2F%20defaultWidth%2C%20defaultHeight%20fields%2E%0A%20%20function%20sizingPolicy%28el%29%20%7B%0A%20%20%20%20var%20sizingEl%20%3D%20document%2EquerySelector%28%22script%5Bdata%2Dfor%3D%27%22%20%2B%20el%2Eid%20%2B%20%22%27%5D%5Btype%3D%27application%2Fhtmlwidget%2Dsizing%27%5D%22%29%3B%0A%20%20%20%20if%20%28%21sizingEl%29%0A%20%20%20%20%20%20return%20null%3B%0A%20%20%20%20var%20sp%20%3D%20JSON%2Eparse%28sizingEl%2EtextContent%20%7C%7C%20sizingEl%2Etext%20%7C%7C%20%22%7B%7D%22%29%3B%0A%20%20%20%20if%20%28viewerMode%29%20%7B%0A%20%20%20%20%20%20return%20sp%2Eviewer%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20return%20sp%2Ebrowser%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20function%20initSizing%28el%29%20%7B%0A%20%20%20%20var%20sizing%20%3D%20sizingPolicy%28el%29%3B%0A%20%20%20%20if%20%28%21sizing%29%0A%20%20%20%20%20%20return%3B%0A%0A%20%20%20%20var%20cel%20%3D%20document%2EgetElementById%28%22htmlwidget%5Fcontainer%22%29%3B%0A%20%20%20%20if%20%28%21cel%29%0A%20%20%20%20%20%20return%3B%0A%0A%20%20%20%20if%20%28typeof%28sizing%2Epadding%29%20%21%3D%3D%20%22undefined%22%29%20%7B%0A%20%20%20%20%20%20document%2Ebody%2Estyle%2Emargin%20%3D%20%220%22%3B%0A%20%20%20%20%20%20document%2Ebody%2Estyle%2Epadding%20%3D%20paddingToCss%28unpackPadding%28sizing%2Epadding%29%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20if%20%28sizing%2Efill%29%20%7B%0A%20%20%20%20%20%20document%2Ebody%2Estyle%2Eoverflow%20%3D%20%22hidden%22%3B%0A%20%20%20%20%20%20document%2Ebody%2Estyle%2Ewidth%20%3D%20%22100%25%22%3B%0A%20%20%20%20%20%20document%2Ebody%2Estyle%2Eheight%20%3D%20%22100%25%22%3B%0A%20%20%20%20%20%20document%2EdocumentElement%2Estyle%2Ewidth%20%3D%20%22100%25%22%3B%0A%20%20%20%20%20%20document%2EdocumentElement%2Estyle%2Eheight%20%3D%20%22100%25%22%3B%0A%20%20%20%20%20%20if%20%28cel%29%20%7B%0A%20%20%20%20%20%20%20%20cel%2Estyle%2Eposition%20%3D%20%22absolute%22%3B%0A%20%20%20%20%20%20%20%20var%20pad%20%3D%20unpackPadding%28sizing%2Epadding%29%3B%0A%20%20%20%20%20%20%20%20cel%2Estyle%2Etop%20%3D%20pad%2Etop%20%2B%20%22px%22%3B%0A%20%20%20%20%20%20%20%20cel%2Estyle%2Eright%20%3D%20pad%2Eright%20%2B%20%22px%22%3B%0A%20%20%20%20%20%20%20%20cel%2Estyle%2Ebottom%20%3D%20pad%2Ebottom%20%2B%20%22px%22%3B%0A%20%20%20%20%20%20%20%20cel%2Estyle%2Eleft%20%3D%20pad%2Eleft%20%2B%20%22px%22%3B%0A%20%20%20%20%20%20%20%20el%2Estyle%2Ewidth%20%3D%20%22100%25%22%3B%0A%20%20%20%20%20%20%20%20el%2Estyle%2Eheight%20%3D%20%22100%25%22%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20return%20%7B%0A%20%20%20%20%20%20%20%20getWidth%3A%20function%28%29%20%7B%20return%20cel%2EoffsetWidth%3B%20%7D%2C%0A%20%20%20%20%20%20%20%20getHeight%3A%20function%28%29%20%7B%20return%20cel%2EoffsetHeight%3B%20%7D%0A%20%20%20%20%20%20%7D%3B%0A%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20el%2Estyle%2Ewidth%20%3D%20px%28sizing%2Ewidth%29%3B%0A%20%20%20%20%20%20el%2Estyle%2Eheight%20%3D%20px%28sizing%2Eheight%29%3B%0A%0A%20%20%20%20%20%20return%20%7B%0A%20%20%20%20%20%20%20%20getWidth%3A%20function%28%29%20%7B%20return%20el%2EoffsetWidth%3B%20%7D%2C%0A%20%20%20%20%20%20%20%20getHeight%3A%20function%28%29%20%7B%20return%20el%2EoffsetHeight%3B%20%7D%0A%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20%2F%2F%20Default%20implementations%20for%20methods%0A%20%20var%20defaults%20%3D%20%7B%0A%20%20%20%20find%3A%20function%28scope%29%20%7B%0A%20%20%20%20%20%20return%20querySelectorAll%28scope%2C%20%22%2E%22%20%2B%20this%2Ename%29%3B%0A%20%20%20%20%7D%2C%0A%20%20%20%20renderError%3A%20function%28el%2C%20err%29%20%7B%0A%20%20%20%20%20%20var%20%24el%20%3D%20%24%28el%29%3B%0A%0A%20%20%20%20%20%20this%2EclearError%28el%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Add%20all%20these%20error%20classes%2C%20as%20Shiny%20does%0A%20%20%20%20%20%20var%20errClass%20%3D%20%22shiny%2Doutput%2Derror%22%3B%0A%20%20%20%20%20%20if%20%28err%2Etype%20%21%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20use%20the%20classes%20of%20the%20error%20condition%20as%20CSS%20class%20names%0A%20%20%20%20%20%20%20%20errClass%20%3D%20errClass%20%2B%20%22%20%22%20%2B%20%24%2Emap%28asArray%28err%2Etype%29%2C%20function%28type%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20errClass%20%2B%20%22%2D%22%20%2B%20type%3B%0A%20%20%20%20%20%20%20%20%7D%29%2Ejoin%28%22%20%22%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20errClass%20%3D%20errClass%20%2B%20%22%20htmlwidgets%2Derror%22%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Is%20el%20inline%20or%20block%3F%20If%20inline%20or%20inline%2Dblock%2C%20just%20display%3Anone%20it%0A%20%20%20%20%20%20%2F%2F%20and%20add%20an%20inline%20error%2E%0A%20%20%20%20%20%20var%20display%20%3D%20%24el%2Ecss%28%22display%22%29%3B%0A%20%20%20%20%20%20%24el%2Edata%28%22restore%2Ddisplay%2Dmode%22%2C%20display%29%3B%0A%0A%20%20%20%20%20%20if%20%28display%20%3D%3D%3D%20%22inline%22%20%7C%7C%20display%20%3D%3D%3D%20%22inline%2Dblock%22%29%20%7B%0A%20%20%20%20%20%20%20%20%24el%2Ehide%28%29%3B%0A%20%20%20%20%20%20%20%20if%20%28err%2Emessage%20%21%3D%3D%20%22%22%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20errorSpan%20%3D%20%24%28%22%3Cspan%3E%22%29%2EaddClass%28errClass%29%3B%0A%20%20%20%20%20%20%20%20%20%20errorSpan%2Etext%28err%2Emessage%29%3B%0A%20%20%20%20%20%20%20%20%20%20%24el%2Eafter%28errorSpan%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%20else%20if%20%28display%20%3D%3D%3D%20%22block%22%29%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20If%20block%2C%20add%20an%20error%20just%20after%20the%20el%2C%20set%20visibility%3Anone%20on%20the%0A%20%20%20%20%20%20%20%20%2F%2F%20el%2C%20and%20position%20the%20error%20to%20be%20on%20top%20of%20the%20el%2E%0A%20%20%20%20%20%20%20%20%2F%2F%20Mark%20it%20with%20a%20unique%20ID%20and%20CSS%20class%20so%20we%20can%20remove%20it%20later%2E%0A%20%20%20%20%20%20%20%20%24el%2Ecss%28%22visibility%22%2C%20%22hidden%22%29%3B%0A%20%20%20%20%20%20%20%20if%20%28err%2Emessage%20%21%3D%3D%20%22%22%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20errorDiv%20%3D%20%24%28%22%3Cdiv%3E%22%29%2EaddClass%28errClass%29%2Ecss%28%22position%22%2C%20%22absolute%22%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Ecss%28%22top%22%2C%20el%2EoffsetTop%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Ecss%28%22left%22%2C%20el%2EoffsetLeft%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20setting%20width%20can%20push%20out%20the%20page%20size%2C%20forcing%20otherwise%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20unnecessary%20scrollbars%20to%20appear%20and%20making%20it%20impossible%20for%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20the%20element%20to%20shrink%3B%20so%20use%20max%2Dwidth%20instead%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Ecss%28%22maxWidth%22%2C%20el%2EoffsetWidth%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Ecss%28%22height%22%2C%20el%2EoffsetHeight%29%3B%0A%20%20%20%20%20%20%20%20%20%20errorDiv%2Etext%28err%2Emessage%29%3B%0A%20%20%20%20%20%20%20%20%20%20%24el%2Eafter%28errorDiv%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Really%20dumb%20way%20to%20keep%20the%20size%2Fposition%20of%20the%20error%20in%20sync%20with%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20the%20parent%20element%20as%20the%20window%20is%20resized%20or%20whatever%2E%0A%20%20%20%20%20%20%20%20%20%20var%20intId%20%3D%20setInterval%28function%28%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28%21errorDiv%5B0%5D%2EparentElement%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20clearInterval%28intId%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20errorDiv%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2Ecss%28%22top%22%2C%20el%2EoffsetTop%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2Ecss%28%22left%22%2C%20el%2EoffsetLeft%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2Ecss%28%22maxWidth%22%2C%20el%2EoffsetWidth%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2Ecss%28%22height%22%2C%20el%2EoffsetHeight%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%2C%20500%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%2C%0A%20%20%20%20clearError%3A%20function%28el%29%20%7B%0A%20%20%20%20%20%20var%20%24el%20%3D%20%24%28el%29%3B%0A%20%20%20%20%20%20var%20display%20%3D%20%24el%2Edata%28%22restore%2Ddisplay%2Dmode%22%29%3B%0A%20%20%20%20%20%20%24el%2Edata%28%22restore%2Ddisplay%2Dmode%22%2C%20null%29%3B%0A%0A%20%20%20%20%20%20if%20%28display%20%3D%3D%3D%20%22inline%22%20%7C%7C%20display%20%3D%3D%3D%20%22inline%2Dblock%22%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28display%29%0A%20%20%20%20%20%20%20%20%20%20%24el%2Ecss%28%22display%22%2C%20display%29%3B%0A%20%20%20%20%20%20%20%20%24%28el%2EnextSibling%29%2Efilter%28%22%2Ehtmlwidgets%2Derror%22%29%2Eremove%28%29%3B%0A%20%20%20%20%20%20%7D%20else%20if%20%28display%20%3D%3D%3D%20%22block%22%29%7B%0A%20%20%20%20%20%20%20%20%24el%2Ecss%28%22visibility%22%2C%20%22inherit%22%29%3B%0A%20%20%20%20%20%20%20%20%24%28el%2EnextSibling%29%2Efilter%28%22%2Ehtmlwidgets%2Derror%22%29%2Eremove%28%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%2C%0A%20%20%20%20sizing%3A%20%7B%7D%0A%20%20%7D%3B%0A%0A%20%20%2F%2F%20Called%20by%20widget%20bindings%20to%20register%20a%20new%20type%20of%20widget%2E%20The%20definition%0A%20%20%2F%2F%20object%20can%20contain%20the%20following%20properties%3A%0A%20%20%2F%2F%20%2D%20name%20%28required%29%20%2D%20A%20string%20indicating%20the%20binding%20name%2C%20which%20will%20be%0A%20%20%2F%2F%20%20%20used%20by%20default%20as%20the%20CSS%20classname%20to%20look%20for%2E%0A%20%20%2F%2F%20%2D%20initialize%20%28optional%29%20%2D%20A%20function%28el%29%20that%20will%20be%20called%20once%20per%0A%20%20%2F%2F%20%20%20widget%20element%3B%20if%20a%20value%20is%20returned%2C%20it%20will%20be%20passed%20as%20the%20third%0A%20%20%2F%2F%20%20%20value%20to%20renderValue%2E%0A%20%20%2F%2F%20%2D%20renderValue%20%28required%29%20%2D%20A%20function%28el%2C%20data%2C%20initValue%29%20that%20will%20be%0A%20%20%2F%2F%20%20%20called%20with%20data%2E%20Static%20contexts%20will%20cause%20this%20to%20be%20called%20once%20per%0A%20%20%2F%2F%20%20%20element%3B%20Shiny%20apps%20will%20cause%20this%20to%20be%20called%20multiple%20times%20per%0A%20%20%2F%2F%20%20%20element%2C%20as%20the%20data%20changes%2E%0A%20%20window%2EHTMLWidgets%2Ewidget%20%3D%20function%28definition%29%20%7B%0A%20%20%20%20if%20%28%21definition%2Ename%29%20%7B%0A%20%20%20%20%20%20throw%20new%20Error%28%22Widget%20must%20have%20a%20name%22%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28%21definition%2Etype%29%20%7B%0A%20%20%20%20%20%20throw%20new%20Error%28%22Widget%20must%20have%20a%20type%22%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20%2F%2F%20Currently%20we%20only%20support%20output%20widgets%0A%20%20%20%20if%20%28definition%2Etype%20%21%3D%3D%20%22output%22%29%20%7B%0A%20%20%20%20%20%20throw%20new%20Error%28%22Unrecognized%20widget%20type%20%27%22%20%2B%20definition%2Etype%20%2B%20%22%27%22%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20%2F%2F%20TODO%3A%20Verify%20that%20%2Ename%20is%20a%20valid%20CSS%20classname%0A%20%20%20%20if%20%28%21definition%2ErenderValue%29%20%7B%0A%20%20%20%20%20%20throw%20new%20Error%28%22Widget%20must%20have%20a%20renderValue%20function%22%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20%2F%2F%20For%20static%20rendering%20%28non%2DShiny%29%2C%20use%20a%20simple%20widget%20registration%0A%20%20%20%20%2F%2F%20scheme%2E%20We%20also%20use%20this%20scheme%20for%20Shiny%20apps%2Fdocuments%20that%20also%0A%20%20%20%20%2F%2F%20contain%20static%20widgets%2E%0A%20%20%20%20window%2EHTMLWidgets%2Ewidgets%20%3D%20window%2EHTMLWidgets%2Ewidgets%20%7C%7C%20%5B%5D%3B%0A%20%20%20%20%2F%2F%20Merge%20defaults%20into%20the%20definition%3B%20don%27t%20mutate%20the%20original%20definition%2E%0A%20%20%20%20var%20staticBinding%20%3D%20extend%28%7B%7D%2C%20defaults%2C%20definition%29%3B%0A%20%20%20%20overrideMethod%28staticBinding%2C%20%22find%22%2C%20function%28superfunc%29%20%7B%0A%20%20%20%20%20%20return%20function%28scope%29%20%7B%0A%20%20%20%20%20%20%20%20var%20results%20%3D%20superfunc%28scope%29%3B%0A%20%20%20%20%20%20%20%20%2F%2F%20Filter%20out%20Shiny%20outputs%2C%20we%20only%20want%20the%20static%20kind%0A%20%20%20%20%20%20%20%20return%20filterByClass%28results%2C%20%22html%2Dwidget%2Doutput%22%2C%20false%29%3B%0A%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20window%2EHTMLWidgets%2Ewidgets%2Epush%28staticBinding%29%3B%0A%0A%20%20%20%20if%20%28shinyMode%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20Shiny%20is%20running%2E%20Register%20the%20definition%20as%20an%20output%20binding%2E%0A%0A%20%20%20%20%20%20%2F%2F%20Merge%20defaults%20into%20the%20definition%3B%20don%27t%20mutate%20the%20original%20definition%2E%0A%20%20%20%20%20%20%2F%2F%20The%20base%20object%20is%20a%20Shiny%20output%20binding%20if%20we%27re%20running%20in%20Shiny%20mode%2C%0A%20%20%20%20%20%20%2F%2F%20or%20an%20empty%20object%20if%20we%27re%20not%2E%0A%20%20%20%20%20%20var%20shinyBinding%20%3D%20extend%28new%20Shiny%2EOutputBinding%28%29%2C%20defaults%2C%20definition%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Wrap%20renderValue%20to%20handle%20initialization%2C%20which%20unfortunately%20isn%27t%0A%20%20%20%20%20%20%2F%2F%20supported%20natively%20by%20Shiny%20at%20the%20time%20of%20this%20writing%2E%0A%0A%20%20%20%20%20%20%2F%2F%20NB%3A%20shinyBinding%2Einitialize%20may%20be%20undefined%2C%20as%20it%27s%20optional%2E%0A%0A%20%20%20%20%20%20%2F%2F%20Rename%20initialize%20to%20make%20sure%20it%20isn%27t%20called%20by%20a%20future%20version%0A%20%20%20%20%20%20%2F%2F%20of%20Shiny%20that%20does%20support%20initialize%20directly%2E%0A%20%20%20%20%20%20shinyBinding%2E%5Fhtmlwidgets%5Finitialize%20%3D%20shinyBinding%2Einitialize%3B%0A%20%20%20%20%20%20delete%20shinyBinding%2Einitialize%3B%0A%0A%20%20%20%20%20%20overrideMethod%28shinyBinding%2C%20%22find%22%2C%20function%28superfunc%29%20%7B%0A%20%20%20%20%20%20%20%20return%20function%28scope%29%20%7B%0A%0A%20%20%20%20%20%20%20%20%20%20var%20results%20%3D%20superfunc%28scope%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Only%20return%20elements%20that%20are%20Shiny%20outputs%2C%20not%20static%20ones%0A%20%20%20%20%20%20%20%20%20%20var%20dynamicResults%20%3D%20results%2Efilter%28%22%2Ehtml%2Dwidget%2Doutput%22%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20It%27s%20possible%20that%20whatever%20caused%20Shiny%20to%20think%20there%20might%20be%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20new%20dynamic%20outputs%2C%20also%20caused%20there%20to%20be%20new%20static%20outputs%2E%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Since%20there%20might%20be%20lots%20of%20different%20htmlwidgets%20bindings%2C%20we%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20schedule%20execution%20for%20later%2D%2Dno%20need%20to%20staticRender%20multiple%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20times%2E%0A%20%20%20%20%20%20%20%20%20%20if%20%28results%2Elength%20%21%3D%3D%20dynamicResults%2Elength%29%0A%20%20%20%20%20%20%20%20%20%20%20%20scheduleStaticRender%28%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20return%20dynamicResults%3B%0A%20%20%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20overrideMethod%28shinyBinding%2C%20%22renderValue%22%2C%20function%28superfunc%29%20%7B%0A%20%20%20%20%20%20%20%20return%20function%28el%2C%20data%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Resolve%20strings%20marked%20as%20javascript%20literals%20to%20objects%0A%20%20%20%20%20%20%20%20%20%20if%20%28%21%28data%2Eevals%20instanceof%20Array%29%29%20data%2Eevals%20%3D%20%5Bdata%2Eevals%5D%3B%0A%20%20%20%20%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20data%2Eevals%20%26%26%20i%20%3C%20data%2Eevals%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20window%2EHTMLWidgets%2EevaluateStringMember%28data%2Ex%2C%20data%2Eevals%5Bi%5D%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20if%20%28%21this%2ErenderOnNullValue%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28data%2Ex%20%3D%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20el%2Estyle%2Evisibility%20%3D%20%22hidden%22%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20el%2Estyle%2Evisibility%20%3D%20%22inherit%22%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20if%20%28%21elementData%28el%2C%20%22initialized%22%29%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20initSizing%28el%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20elementData%28el%2C%20%22initialized%22%2C%20true%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28this%2E%5Fhtmlwidgets%5Finitialize%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20result%20%3D%20this%2E%5Fhtmlwidgets%5Finitialize%28el%2C%20el%2EoffsetWidth%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20el%2EoffsetHeight%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20elementData%28el%2C%20%22init%5Fresult%22%2C%20result%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20Shiny%2ErenderDependencies%28data%2Edeps%29%3B%0A%20%20%20%20%20%20%20%20%20%20superfunc%28el%2C%20data%2Ex%2C%20elementData%28el%2C%20%22init%5Fresult%22%29%29%3B%0A%20%20%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20overrideMethod%28shinyBinding%2C%20%22resize%22%2C%20function%28superfunc%29%20%7B%0A%20%20%20%20%20%20%20%20return%20function%28el%2C%20width%2C%20height%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Shiny%20can%20call%20resize%20before%20initialize%2FrenderValue%20have%20been%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20called%2C%20which%20doesn%27t%20make%20sense%20for%20widgets%2E%0A%20%20%20%20%20%20%20%20%20%20if%20%28elementData%28el%2C%20%22initialized%22%29%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20superfunc%28el%2C%20width%2C%20height%2C%20elementData%28el%2C%20%22init%5Fresult%22%29%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20Shiny%2EoutputBindings%2Eregister%28shinyBinding%2C%20shinyBinding%2Ename%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%3B%0A%0A%20%20var%20scheduleStaticRenderTimerId%20%3D%20null%3B%0A%20%20function%20scheduleStaticRender%28%29%20%7B%0A%20%20%20%20if%20%28%21scheduleStaticRenderTimerId%29%20%7B%0A%20%20%20%20%20%20scheduleStaticRenderTimerId%20%3D%20setTimeout%28function%28%29%20%7B%0A%20%20%20%20%20%20%20%20scheduleStaticRenderTimerId%20%3D%20null%3B%0A%20%20%20%20%20%20%20%20window%2EHTMLWidgets%2EstaticRender%28%29%3B%0A%20%20%20%20%20%20%7D%2C%201%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20%2F%2F%20Render%20static%20widgets%20after%20the%20document%20finishes%20loading%0A%20%20%2F%2F%20Statically%20render%20all%20elements%20that%20are%20of%20this%20widget%27s%20class%0A%20%20window%2EHTMLWidgets%2EstaticRender%20%3D%20function%28%29%20%7B%0A%20%20%20%20var%20bindings%20%3D%20window%2EHTMLWidgets%2Ewidgets%20%7C%7C%20%5B%5D%3B%0A%20%20%20%20forEach%28bindings%2C%20function%28binding%29%20%7B%0A%20%20%20%20%20%20var%20matches%20%3D%20binding%2Efind%28document%2EdocumentElement%29%3B%0A%20%20%20%20%20%20forEach%28matches%2C%20function%28el%29%20%7B%0A%20%20%20%20%20%20%20%20var%20sizeObj%20%3D%20initSizing%28el%2C%20binding%29%3B%0A%0A%20%20%20%20%20%20%20%20if%20%28hasClass%28el%2C%20%22html%2Dwidget%2Dstatic%2Dbound%22%29%29%0A%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20el%2EclassName%20%3D%20el%2EclassName%20%2B%20%22%20html%2Dwidget%2Dstatic%2Dbound%22%3B%0A%0A%20%20%20%20%20%20%20%20var%20initResult%3B%0A%20%20%20%20%20%20%20%20if%20%28binding%2Einitialize%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20initResult%20%3D%20binding%2Einitialize%28el%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20sizeObj%20%3F%20sizeObj%2EgetWidth%28%29%20%3A%20el%2EoffsetWidth%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20sizeObj%20%3F%20sizeObj%2EgetHeight%28%29%20%3A%20el%2EoffsetHeight%0A%20%20%20%20%20%20%20%20%20%20%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20%20%20if%20%28binding%2Eresize%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20lastSize%20%3D%20%7B%7D%3B%0A%20%20%20%20%20%20%20%20%20%20var%20resizeHandler%20%3D%20function%28e%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20size%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20w%3A%20sizeObj%20%3F%20sizeObj%2EgetWidth%28%29%20%3A%20el%2EoffsetWidth%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20h%3A%20sizeObj%20%3F%20sizeObj%2EgetHeight%28%29%20%3A%20el%2EoffsetHeight%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28size%2Ew%20%3D%3D%3D%200%20%26%26%20size%2Eh%20%3D%3D%3D%200%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28size%2Ew%20%3D%3D%3D%20lastSize%2Ew%20%26%26%20size%2Eh%20%3D%3D%3D%20lastSize%2Eh%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20lastSize%20%3D%20size%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20binding%2Eresize%28el%2C%20size%2Ew%2C%20size%2Eh%2C%20initResult%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%3B%0A%0A%20%20%20%20%20%20%20%20%20%20on%28window%2C%20%22resize%22%2C%20resizeHandler%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20This%20is%20needed%20for%20cases%20where%20we%27re%20running%20in%20a%20Shiny%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20app%2C%20but%20the%20widget%20itself%20is%20not%20a%20Shiny%20output%2C%20but%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20rather%20a%20simple%20static%20widget%2E%20One%20example%20of%20this%20is%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20an%20rmarkdown%20document%20that%20has%20runtime%3Ashiny%20and%20widget%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20that%20isn%27t%20in%20a%20render%20function%2E%20Shiny%20only%20knows%20to%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20call%20resize%20handlers%20for%20Shiny%20outputs%2C%20not%20for%20static%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20widgets%2C%20so%20we%20do%20it%20ourselves%2E%0A%20%20%20%20%20%20%20%20%20%20if%20%28window%2EjQuery%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20window%2EjQuery%28document%29%2Eon%28%22shown%22%2C%20resizeHandler%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20window%2EjQuery%28document%29%2Eon%28%22hidden%22%2C%20resizeHandler%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20This%20is%20needed%20for%20the%20specific%20case%20of%20ioslides%2C%20which%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20flips%20slides%20between%20display%3Anone%20and%20display%3Ablock%2E%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Ideally%20we%20would%20not%20have%20to%20have%20ioslide%2Dspecific%20code%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20here%2C%20but%20rather%20have%20ioslides%20raise%20a%20generic%20event%2C%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20but%20the%20rmarkdown%20package%20just%20went%20to%20CRAN%20so%20the%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20window%20to%20getting%20that%20fixed%20may%20be%20long%2E%0A%20%20%20%20%20%20%20%20%20%20if%20%28window%2EaddEventListener%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20It%27s%20OK%20to%20limit%20this%20to%20window%2EaddEventListener%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20browsers%20because%20ioslides%20itself%20only%20supports%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20such%20browsers%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20on%28document%2C%20%22slideenter%22%2C%20resizeHandler%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20on%28document%2C%20%22slideleave%22%2C%20resizeHandler%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20%20%20var%20scriptData%20%3D%20document%2EquerySelector%28%22script%5Bdata%2Dfor%3D%27%22%20%2B%20el%2Eid%20%2B%20%22%27%5D%5Btype%3D%27application%2Fjson%27%5D%22%29%3B%0A%20%20%20%20%20%20%20%20if%20%28scriptData%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20data%20%3D%20JSON%2Eparse%28scriptData%2EtextContent%20%7C%7C%20scriptData%2Etext%29%3B%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Resolve%20strings%20marked%20as%20javascript%20literals%20to%20objects%0A%20%20%20%20%20%20%20%20%20%20if%20%28%21%28data%2Eevals%20instanceof%20Array%29%29%20data%2Eevals%20%3D%20%5Bdata%2Eevals%5D%3B%0A%20%20%20%20%20%20%20%20%20%20for%20%28var%20k%20%3D%200%3B%20data%2Eevals%20%26%26%20k%20%3C%20data%2Eevals%2Elength%3B%20k%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20window%2EHTMLWidgets%2EevaluateStringMember%28data%2Ex%2C%20data%2Eevals%5Bk%5D%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20binding%2ErenderValue%28el%2C%20data%2Ex%2C%20initResult%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%0A%0A%20%20%2F%2F%20Wait%20until%20after%20the%20document%20has%20loaded%20to%20render%20the%20widgets%2E%0A%20%20if%20%28document%2EaddEventListener%29%20%7B%0A%20%20%20%20document%2EaddEventListener%28%22DOMContentLoaded%22%2C%20function%28%29%20%7B%0A%20%20%20%20%20%20document%2EremoveEventListener%28%22DOMContentLoaded%22%2C%20arguments%2Ecallee%2C%20false%29%3B%0A%20%20%20%20%20%20window%2EHTMLWidgets%2EstaticRender%28%29%3B%0A%20%20%20%20%7D%2C%20false%29%3B%0A%20%20%7D%20else%20if%20%28document%2EattachEvent%29%20%7B%0A%20%20%20%20document%2EattachEvent%28%22onreadystatechange%22%2C%20function%28%29%20%7B%0A%20%20%20%20%20%20if%20%28document%2EreadyState%20%3D%3D%3D%20%22complete%22%29%20%7B%0A%20%20%20%20%20%20%20%20document%2EdetachEvent%28%22onreadystatechange%22%2C%20arguments%2Ecallee%29%3B%0A%20%20%20%20%20%20%20%20window%2EHTMLWidgets%2EstaticRender%28%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%0A%0A%0A%20%20window%2EHTMLWidgets%2EgetAttachmentUrl%20%3D%20function%28depname%2C%20key%29%20%7B%0A%20%20%20%20%2F%2F%20If%20no%20key%2C%20default%20to%20the%20first%20item%0A%20%20%20%20if%20%28typeof%28key%29%20%3D%3D%3D%20%22undefined%22%29%0A%20%20%20%20%20%20key%20%3D%201%3B%0A%0A%20%20%20%20var%20link%20%3D%20document%2EgetElementById%28depname%20%2B%20%22%2D%22%20%2B%20key%20%2B%20%22%2Dattachment%22%29%3B%0A%20%20%20%20if%20%28%21link%29%20%7B%0A%20%20%20%20%20%20throw%20new%20Error%28%22Attachment%20%22%20%2B%20depname%20%2B%20%22%2F%22%20%2B%20key%20%2B%20%22%20not%20found%20in%20document%22%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20return%20link%2EgetAttribute%28%22href%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20window%2EHTMLWidgets%2EdataframeToD3%20%3D%20function%28df%29%20%7B%0A%20%20%20%20var%20names%20%3D%20%5B%5D%3B%0A%20%20%20%20var%20length%3B%0A%20%20%20%20for%20%28var%20name%20in%20df%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28df%2EhasOwnProperty%28name%29%29%0A%20%20%20%20%20%20%20%20%20%20%20%20names%2Epush%28name%29%3B%0A%20%20%20%20%20%20%20%20if%20%28typeof%28df%5Bname%5D%29%20%21%3D%3D%20%22object%22%20%7C%7C%20typeof%28df%5Bname%5D%2Elength%29%20%3D%3D%3D%20%22undefined%22%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20throw%20new%20Error%28%22All%20fields%20must%20be%20arrays%22%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28typeof%28length%29%20%21%3D%3D%20%22undefined%22%20%26%26%20length%20%21%3D%3D%20df%5Bname%5D%2Elength%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20throw%20new%20Error%28%22All%20fields%20must%20be%20arrays%20of%20the%20same%20length%22%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20length%20%3D%20df%5Bname%5D%2Elength%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20results%20%3D%20%5B%5D%3B%0A%20%20%20%20var%20item%3B%0A%20%20%20%20for%20%28var%20row%20%3D%200%3B%20row%20%3C%20length%3B%20row%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20item%20%3D%20%7B%7D%3B%0A%20%20%20%20%20%20%20%20for%20%28var%20col%20%3D%200%3B%20col%20%3C%20names%2Elength%3B%20col%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20item%5Bnames%5Bcol%5D%5D%20%3D%20df%5Bnames%5Bcol%5D%5D%5Brow%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20results%2Epush%28item%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20return%20results%3B%0A%20%20%7D%3B%0A%0A%20%20window%2EHTMLWidgets%2EtransposeArray2D%20%3D%20function%28array%29%20%7B%0A%20%20%20%20%20%20var%20newArray%20%3D%20array%5B0%5D%2Emap%28function%28col%2C%20i%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20array%2Emap%28function%28row%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20return%20row%5Bi%5D%0A%20%20%20%20%20%20%20%20%20%20%7D%29%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%20%20return%20newArray%3B%0A%20%20%7D%3B%0A%20%20%2F%2F%20Split%20value%20at%20splitChar%2C%20but%20allow%20splitChar%20to%20be%20escaped%0A%20%20%2F%2F%20using%20escapeChar%2E%20Any%20other%20characters%20escaped%20by%20escapeChar%0A%20%20%2F%2F%20will%20be%20included%20as%20usual%20%28including%20escapeChar%20itself%29%2E%0A%20%20function%20splitWithEscape%28value%2C%20splitChar%2C%20escapeChar%29%20%7B%0A%20%20%20%20var%20results%20%3D%20%5B%5D%3B%0A%20%20%20%20var%20escapeMode%20%3D%20false%3B%0A%20%20%20%20var%20currentResult%20%3D%20%22%22%3B%0A%20%20%20%20for%20%28var%20pos%20%3D%200%3B%20pos%20%3C%20value%2Elength%3B%20pos%2B%2B%29%20%7B%0A%20%20%20%20%20%20if%20%28%21escapeMode%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28value%5Bpos%5D%20%3D%3D%3D%20splitChar%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20results%2Epush%28currentResult%29%3B%0A%20%20%20%20%20%20%20%20%20%20currentResult%20%3D%20%22%22%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28value%5Bpos%5D%20%3D%3D%3D%20escapeChar%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20escapeMode%20%3D%20true%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20currentResult%20%2B%3D%20value%5Bpos%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20currentResult%20%2B%3D%20value%5Bpos%5D%3B%0A%20%20%20%20%20%20%20%20escapeMode%20%3D%20false%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28currentResult%20%21%3D%3D%20%22%22%29%20%7B%0A%20%20%20%20%20%20results%2Epush%28currentResult%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20return%20results%3B%0A%20%20%7D%0A%20%20%2F%2F%20Function%20authored%20by%20Yihui%2FJJ%20Allaire%0A%20%20window%2EHTMLWidgets%2EevaluateStringMember%20%3D%20function%28o%2C%20member%29%20%7B%0A%20%20%20%20var%20parts%20%3D%20splitWithEscape%28member%2C%20%27%2E%27%2C%20%27%5C%5C%27%29%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%2C%20l%20%3D%20parts%2Elength%3B%20i%20%3C%20l%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20part%20%3D%20parts%5Bi%5D%3B%0A%20%20%20%20%20%20%2F%2F%20part%20may%20be%20a%20character%20or%20%27numeric%27%20member%20name%0A%20%20%20%20%20%20if%20%28o%20%21%3D%3D%20null%20%26%26%20typeof%20o%20%3D%3D%3D%20%22object%22%20%26%26%20part%20in%20o%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28i%20%3D%3D%20%28l%20%2D%201%29%29%20%7B%20%2F%2F%20if%20we%20are%20at%20the%20end%20of%20the%20line%20then%20evalulate%0A%20%20%20%20%20%20%20%20%20%20if%20%28typeof%20o%5Bpart%5D%20%3D%3D%3D%20%22string%22%29%0A%20%20%20%20%20%20%20%20%20%20%20%20o%5Bpart%5D%20%3D%20eval%28%22%28%22%20%2B%20o%5Bpart%5D%20%2B%20%22%29%22%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20%7B%20%2F%2F%20otherwise%20continue%20to%20next%20embedded%20object%0A%20%20%20%20%20%20%20%20%20%20o%20%3D%20o%5Bpart%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%3B%0A%7D%29%28%29%3B%0A%0A"></script>
<script src="data:application/x-javascript,%2F%2A%21%20jQuery%20v1%2E11%2E1%20%7C%20%28c%29%202005%2C%202014%20jQuery%20Foundation%2C%20Inc%2E%20%7C%20jquery%2Eorg%2Flicense%20%2A%2F%0A%21function%28a%2Cb%29%7B%22object%22%3D%3Dtypeof%20module%26%26%22object%22%3D%3Dtypeof%20module%2Eexports%3Fmodule%2Eexports%3Da%2Edocument%3Fb%28a%2C%210%29%3Afunction%28a%29%7Bif%28%21a%2Edocument%29throw%20new%20Error%28%22jQuery%20requires%20a%20window%20with%20a%20document%22%29%3Breturn%20b%28a%29%7D%3Ab%28a%29%7D%28%22undefined%22%21%3Dtypeof%20window%3Fwindow%3Athis%2Cfunction%28a%2Cb%29%7Bvar%20c%3D%5B%5D%2Cd%3Dc%2Eslice%2Ce%3Dc%2Econcat%2Cf%3Dc%2Epush%2Cg%3Dc%2EindexOf%2Ch%3D%7B%7D%2Ci%3Dh%2EtoString%2Cj%3Dh%2EhasOwnProperty%2Ck%3D%7B%7D%2Cl%3D%221%2E11%2E1%22%2Cm%3Dfunction%28a%2Cb%29%7Breturn%20new%20m%2Efn%2Einit%28a%2Cb%29%7D%2Cn%3D%2F%5E%5B%5Cs%5CuFEFF%5CxA0%5D%2B%7C%5B%5Cs%5CuFEFF%5CxA0%5D%2B%24%2Fg%2Co%3D%2F%5E%2Dms%2D%2F%2Cp%3D%2F%2D%28%5B%5Cda%2Dz%5D%29%2Fgi%2Cq%3Dfunction%28a%2Cb%29%7Breturn%20b%2EtoUpperCase%28%29%7D%3Bm%2Efn%3Dm%2Eprototype%3D%7Bjquery%3Al%2Cconstructor%3Am%2Cselector%3A%22%22%2Clength%3A0%2CtoArray%3Afunction%28%29%7Breturn%20d%2Ecall%28this%29%7D%2Cget%3Afunction%28a%29%7Breturn%20null%21%3Da%3F0%3Ea%3Fthis%5Ba%2Bthis%2Elength%5D%3Athis%5Ba%5D%3Ad%2Ecall%28this%29%7D%2CpushStack%3Afunction%28a%29%7Bvar%20b%3Dm%2Emerge%28this%2Econstructor%28%29%2Ca%29%3Breturn%20b%2EprevObject%3Dthis%2Cb%2Econtext%3Dthis%2Econtext%2Cb%7D%2Ceach%3Afunction%28a%2Cb%29%7Breturn%20m%2Eeach%28this%2Ca%2Cb%29%7D%2Cmap%3Afunction%28a%29%7Breturn%20this%2EpushStack%28m%2Emap%28this%2Cfunction%28b%2Cc%29%7Breturn%20a%2Ecall%28b%2Cc%2Cb%29%7D%29%29%7D%2Cslice%3Afunction%28%29%7Breturn%20this%2EpushStack%28d%2Eapply%28this%2Carguments%29%29%7D%2Cfirst%3Afunction%28%29%7Breturn%20this%2Eeq%280%29%7D%2Clast%3Afunction%28%29%7Breturn%20this%2Eeq%28%2D1%29%7D%2Ceq%3Afunction%28a%29%7Bvar%20b%3Dthis%2Elength%2Cc%3D%2Ba%2B%280%3Ea%3Fb%3A0%29%3Breturn%20this%2EpushStack%28c%3E%3D0%26%26b%3Ec%3F%5Bthis%5Bc%5D%5D%3A%5B%5D%29%7D%2Cend%3Afunction%28%29%7Breturn%20this%2EprevObject%7C%7Cthis%2Econstructor%28null%29%7D%2Cpush%3Af%2Csort%3Ac%2Esort%2Csplice%3Ac%2Esplice%7D%2Cm%2Eextend%3Dm%2Efn%2Eextend%3Dfunction%28%29%7Bvar%20a%2Cb%2Cc%2Cd%2Ce%2Cf%2Cg%3Darguments%5B0%5D%7C%7C%7B%7D%2Ch%3D1%2Ci%3Darguments%2Elength%2Cj%3D%211%3Bfor%28%22boolean%22%3D%3Dtypeof%20g%26%26%28j%3Dg%2Cg%3Darguments%5Bh%5D%7C%7C%7B%7D%2Ch%2B%2B%29%2C%22object%22%3D%3Dtypeof%20g%7C%7Cm%2EisFunction%28g%29%7C%7C%28g%3D%7B%7D%29%2Ch%3D%3D%3Di%26%26%28g%3Dthis%2Ch%2D%2D%29%3Bi%3Eh%3Bh%2B%2B%29if%28null%21%3D%28e%3Darguments%5Bh%5D%29%29for%28d%20in%20e%29a%3Dg%5Bd%5D%2Cc%3De%5Bd%5D%2Cg%21%3D%3Dc%26%26%28j%26%26c%26%26%28m%2EisPlainObject%28c%29%7C%7C%28b%3Dm%2EisArray%28c%29%29%29%3F%28b%3F%28b%3D%211%2Cf%3Da%26%26m%2EisArray%28a%29%3Fa%3A%5B%5D%29%3Af%3Da%26%26m%2EisPlainObject%28a%29%3Fa%3A%7B%7D%2Cg%5Bd%5D%3Dm%2Eextend%28j%2Cf%2Cc%29%29%3Avoid%200%21%3D%3Dc%26%26%28g%5Bd%5D%3Dc%29%29%3Breturn%20g%7D%2Cm%2Eextend%28%7Bexpando%3A%22jQuery%22%2B%28l%2BMath%2Erandom%28%29%29%2Ereplace%28%2F%5CD%2Fg%2C%22%22%29%2CisReady%3A%210%2Cerror%3Afunction%28a%29%7Bthrow%20new%20Error%28a%29%7D%2Cnoop%3Afunction%28%29%7B%7D%2CisFunction%3Afunction%28a%29%7Breturn%22function%22%3D%3D%3Dm%2Etype%28a%29%7D%2CisArray%3AArray%2EisArray%7C%7Cfunction%28a%29%7Breturn%22array%22%3D%3D%3Dm%2Etype%28a%29%7D%2CisWindow%3Afunction%28a%29%7Breturn%20null%21%3Da%26%26a%3D%3Da%2Ewindow%7D%2CisNumeric%3Afunction%28a%29%7Breturn%21m%2EisArray%28a%29%26%26a%2DparseFloat%28a%29%3E%3D0%7D%2CisEmptyObject%3Afunction%28a%29%7Bvar%20b%3Bfor%28b%20in%20a%29return%211%3Breturn%210%7D%2CisPlainObject%3Afunction%28a%29%7Bvar%20b%3Bif%28%21a%7C%7C%22object%22%21%3D%3Dm%2Etype%28a%29%7C%7Ca%2EnodeType%7C%7Cm%2EisWindow%28a%29%29return%211%3Btry%7Bif%28a%2Econstructor%26%26%21j%2Ecall%28a%2C%22constructor%22%29%26%26%21j%2Ecall%28a%2Econstructor%2Eprototype%2C%22isPrototypeOf%22%29%29return%211%7Dcatch%28c%29%7Breturn%211%7Dif%28k%2EownLast%29for%28b%20in%20a%29return%20j%2Ecall%28a%2Cb%29%3Bfor%28b%20in%20a%29%3Breturn%20void%200%3D%3D%3Db%7C%7Cj%2Ecall%28a%2Cb%29%7D%2Ctype%3Afunction%28a%29%7Breturn%20null%3D%3Da%3Fa%2B%22%22%3A%22object%22%3D%3Dtypeof%20a%7C%7C%22function%22%3D%3Dtypeof%20a%3Fh%5Bi%2Ecall%28a%29%5D%7C%7C%22object%22%3Atypeof%20a%7D%2CglobalEval%3Afunction%28b%29%7Bb%26%26m%2Etrim%28b%29%26%26%28a%2EexecScript%7C%7Cfunction%28b%29%7Ba%2Eeval%2Ecall%28a%2Cb%29%7D%29%28b%29%7D%2CcamelCase%3Afunction%28a%29%7Breturn%20a%2Ereplace%28o%2C%22ms%2D%22%29%2Ereplace%28p%2Cq%29%7D%2CnodeName%3Afunction%28a%2Cb%29%7Breturn%20a%2EnodeName%26%26a%2EnodeName%2EtoLowerCase%28%29%3D%3D%3Db%2EtoLowerCase%28%29%7D%2Ceach%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%3D0%2Cf%3Da%2Elength%2Cg%3Dr%28a%29%3Bif%28c%29%7Bif%28g%29%7Bfor%28%3Bf%3Ee%3Be%2B%2B%29if%28d%3Db%2Eapply%28a%5Be%5D%2Cc%29%2Cd%3D%3D%3D%211%29break%7Delse%20for%28e%20in%20a%29if%28d%3Db%2Eapply%28a%5Be%5D%2Cc%29%2Cd%3D%3D%3D%211%29break%7Delse%20if%28g%29%7Bfor%28%3Bf%3Ee%3Be%2B%2B%29if%28d%3Db%2Ecall%28a%5Be%5D%2Ce%2Ca%5Be%5D%29%2Cd%3D%3D%3D%211%29break%7Delse%20for%28e%20in%20a%29if%28d%3Db%2Ecall%28a%5Be%5D%2Ce%2Ca%5Be%5D%29%2Cd%3D%3D%3D%211%29break%3Breturn%20a%7D%2Ctrim%3Afunction%28a%29%7Breturn%20null%3D%3Da%3F%22%22%3A%28a%2B%22%22%29%2Ereplace%28n%2C%22%22%29%7D%2CmakeArray%3Afunction%28a%2Cb%29%7Bvar%20c%3Db%7C%7C%5B%5D%3Breturn%20null%21%3Da%26%26%28r%28Object%28a%29%29%3Fm%2Emerge%28c%2C%22string%22%3D%3Dtypeof%20a%3F%5Ba%5D%3Aa%29%3Af%2Ecall%28c%2Ca%29%29%2Cc%7D%2CinArray%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%3Bif%28b%29%7Bif%28g%29return%20g%2Ecall%28b%2Ca%2Cc%29%3Bfor%28d%3Db%2Elength%2Cc%3Dc%3F0%3Ec%3FMath%2Emax%280%2Cd%2Bc%29%3Ac%3A0%3Bd%3Ec%3Bc%2B%2B%29if%28c%20in%20b%26%26b%5Bc%5D%3D%3D%3Da%29return%20c%7Dreturn%2D1%7D%2Cmerge%3Afunction%28a%2Cb%29%7Bvar%20c%3D%2Bb%2Elength%2Cd%3D0%2Ce%3Da%2Elength%3Bwhile%28c%3Ed%29a%5Be%2B%2B%5D%3Db%5Bd%2B%2B%5D%3Bif%28c%21%3D%3Dc%29while%28void%200%21%3D%3Db%5Bd%5D%29a%5Be%2B%2B%5D%3Db%5Bd%2B%2B%5D%3Breturn%20a%2Elength%3De%2Ca%7D%2Cgrep%3Afunction%28a%2Cb%2Cc%29%7Bfor%28var%20d%2Ce%3D%5B%5D%2Cf%3D0%2Cg%3Da%2Elength%2Ch%3D%21c%3Bg%3Ef%3Bf%2B%2B%29d%3D%21b%28a%5Bf%5D%2Cf%29%2Cd%21%3D%3Dh%26%26e%2Epush%28a%5Bf%5D%29%3Breturn%20e%7D%2Cmap%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%2Cf%3D0%2Cg%3Da%2Elength%2Ch%3Dr%28a%29%2Ci%3D%5B%5D%3Bif%28h%29for%28%3Bg%3Ef%3Bf%2B%2B%29d%3Db%28a%5Bf%5D%2Cf%2Cc%29%2Cnull%21%3Dd%26%26i%2Epush%28d%29%3Belse%20for%28f%20in%20a%29d%3Db%28a%5Bf%5D%2Cf%2Cc%29%2Cnull%21%3Dd%26%26i%2Epush%28d%29%3Breturn%20e%2Eapply%28%5B%5D%2Ci%29%7D%2Cguid%3A1%2Cproxy%3Afunction%28a%2Cb%29%7Bvar%20c%2Ce%2Cf%3Breturn%22string%22%3D%3Dtypeof%20b%26%26%28f%3Da%5Bb%5D%2Cb%3Da%2Ca%3Df%29%2Cm%2EisFunction%28a%29%3F%28c%3Dd%2Ecall%28arguments%2C2%29%2Ce%3Dfunction%28%29%7Breturn%20a%2Eapply%28b%7C%7Cthis%2Cc%2Econcat%28d%2Ecall%28arguments%29%29%29%7D%2Ce%2Eguid%3Da%2Eguid%3Da%2Eguid%7C%7Cm%2Eguid%2B%2B%2Ce%29%3Avoid%200%7D%2Cnow%3Afunction%28%29%7Breturn%2Bnew%20Date%7D%2Csupport%3Ak%7D%29%2Cm%2Eeach%28%22Boolean%20Number%20String%20Function%20Array%20Date%20RegExp%20Object%20Error%22%2Esplit%28%22%20%22%29%2Cfunction%28a%2Cb%29%7Bh%5B%22%5Bobject%20%22%2Bb%2B%22%5D%22%5D%3Db%2EtoLowerCase%28%29%7D%29%3Bfunction%20r%28a%29%7Bvar%20b%3Da%2Elength%2Cc%3Dm%2Etype%28a%29%3Breturn%22function%22%3D%3D%3Dc%7C%7Cm%2EisWindow%28a%29%3F%211%3A1%3D%3D%3Da%2EnodeType%26%26b%3F%210%3A%22array%22%3D%3D%3Dc%7C%7C0%3D%3D%3Db%7C%7C%22number%22%3D%3Dtypeof%20b%26%26b%3E0%26%26b%2D1%20in%20a%7Dvar%20s%3Dfunction%28a%29%7Bvar%20b%2Cc%2Cd%2Ce%2Cf%2Cg%2Ch%2Ci%2Cj%2Ck%2Cl%2Cm%2Cn%2Co%2Cp%2Cq%2Cr%2Cs%2Ct%2Cu%3D%22sizzle%22%2B%2Dnew%20Date%2Cv%3Da%2Edocument%2Cw%3D0%2Cx%3D0%2Cy%3Dgb%28%29%2Cz%3Dgb%28%29%2CA%3Dgb%28%29%2CB%3Dfunction%28a%2Cb%29%7Breturn%20a%3D%3D%3Db%26%26%28l%3D%210%29%2C0%7D%2CC%3D%22undefined%22%2CD%3D1%3C%3C31%2CE%3D%7B%7D%2EhasOwnProperty%2CF%3D%5B%5D%2CG%3DF%2Epop%2CH%3DF%2Epush%2CI%3DF%2Epush%2CJ%3DF%2Eslice%2CK%3DF%2EindexOf%7C%7Cfunction%28a%29%7Bfor%28var%20b%3D0%2Cc%3Dthis%2Elength%3Bc%3Eb%3Bb%2B%2B%29if%28this%5Bb%5D%3D%3D%3Da%29return%20b%3Breturn%2D1%7D%2CL%3D%22checked%7Cselected%7Casync%7Cautofocus%7Cautoplay%7Ccontrols%7Cdefer%7Cdisabled%7Chidden%7Cismap%7Cloop%7Cmultiple%7Copen%7Creadonly%7Crequired%7Cscoped%22%2CM%3D%22%5B%5C%5Cx20%5C%5Ct%5C%5Cr%5C%5Cn%5C%5Cf%5D%22%2CN%3D%22%28%3F%3A%5C%5C%5C%5C%2E%7C%5B%5C%5Cw%2D%5D%7C%5B%5E%5C%5Cx00%2D%5C%5Cxa0%5D%29%2B%22%2CO%3DN%2Ereplace%28%22w%22%2C%22w%23%22%29%2CP%3D%22%5C%5C%5B%22%2BM%2B%22%2A%28%22%2BN%2B%22%29%28%3F%3A%22%2BM%2B%22%2A%28%5B%2A%5E%24%7C%21%7E%5D%3F%3D%29%22%2BM%2B%22%2A%28%3F%3A%27%28%28%3F%3A%5C%5C%5C%5C%2E%7C%5B%5E%5C%5C%5C%5C%27%5D%29%2A%29%27%7C%5C%22%28%28%3F%3A%5C%5C%5C%5C%2E%7C%5B%5E%5C%5C%5C%5C%5C%22%5D%29%2A%29%5C%22%7C%28%22%2BO%2B%22%29%29%7C%29%22%2BM%2B%22%2A%5C%5C%5D%22%2CQ%3D%22%3A%28%22%2BN%2B%22%29%28%3F%3A%5C%5C%28%28%28%27%28%28%3F%3A%5C%5C%5C%5C%2E%7C%5B%5E%5C%5C%5C%5C%27%5D%29%2A%29%27%7C%5C%22%28%28%3F%3A%5C%5C%5C%5C%2E%7C%5B%5E%5C%5C%5C%5C%5C%22%5D%29%2A%29%5C%22%29%7C%28%28%3F%3A%5C%5C%5C%5C%2E%7C%5B%5E%5C%5C%5C%5C%28%29%5B%5C%5C%5D%5D%7C%22%2BP%2B%22%29%2A%29%7C%2E%2A%29%5C%5C%29%7C%29%22%2CR%3Dnew%20RegExp%28%22%5E%22%2BM%2B%22%2B%7C%28%28%3F%3A%5E%7C%5B%5E%5C%5C%5C%5C%5D%29%28%3F%3A%5C%5C%5C%5C%2E%29%2A%29%22%2BM%2B%22%2B%24%22%2C%22g%22%29%2CS%3Dnew%20RegExp%28%22%5E%22%2BM%2B%22%2A%2C%22%2BM%2B%22%2A%22%29%2CT%3Dnew%20RegExp%28%22%5E%22%2BM%2B%22%2A%28%5B%3E%2B%7E%5D%7C%22%2BM%2B%22%29%22%2BM%2B%22%2A%22%29%2CU%3Dnew%20RegExp%28%22%3D%22%2BM%2B%22%2A%28%5B%5E%5C%5C%5D%27%5C%22%5D%2A%3F%29%22%2BM%2B%22%2A%5C%5C%5D%22%2C%22g%22%29%2CV%3Dnew%20RegExp%28Q%29%2CW%3Dnew%20RegExp%28%22%5E%22%2BO%2B%22%24%22%29%2CX%3D%7BID%3Anew%20RegExp%28%22%5E%23%28%22%2BN%2B%22%29%22%29%2CCLASS%3Anew%20RegExp%28%22%5E%5C%5C%2E%28%22%2BN%2B%22%29%22%29%2CTAG%3Anew%20RegExp%28%22%5E%28%22%2BN%2Ereplace%28%22w%22%2C%22w%2A%22%29%2B%22%29%22%29%2CATTR%3Anew%20RegExp%28%22%5E%22%2BP%29%2CPSEUDO%3Anew%20RegExp%28%22%5E%22%2BQ%29%2CCHILD%3Anew%20RegExp%28%22%5E%3A%28only%7Cfirst%7Clast%7Cnth%7Cnth%2Dlast%29%2D%28child%7Cof%2Dtype%29%28%3F%3A%5C%5C%28%22%2BM%2B%22%2A%28even%7Codd%7C%28%28%5B%2B%2D%5D%7C%29%28%5C%5Cd%2A%29n%7C%29%22%2BM%2B%22%2A%28%3F%3A%28%5B%2B%2D%5D%7C%29%22%2BM%2B%22%2A%28%5C%5Cd%2B%29%7C%29%29%22%2BM%2B%22%2A%5C%5C%29%7C%29%22%2C%22i%22%29%2Cbool%3Anew%20RegExp%28%22%5E%28%3F%3A%22%2BL%2B%22%29%24%22%2C%22i%22%29%2CneedsContext%3Anew%20RegExp%28%22%5E%22%2BM%2B%22%2A%5B%3E%2B%7E%5D%7C%3A%28even%7Codd%7Ceq%7Cgt%7Clt%7Cnth%7Cfirst%7Clast%29%28%3F%3A%5C%5C%28%22%2BM%2B%22%2A%28%28%3F%3A%2D%5C%5Cd%29%3F%5C%5Cd%2A%29%22%2BM%2B%22%2A%5C%5C%29%7C%29%28%3F%3D%5B%5E%2D%5D%7C%24%29%22%2C%22i%22%29%7D%2CY%3D%2F%5E%28%3F%3Ainput%7Cselect%7Ctextarea%7Cbutton%29%24%2Fi%2CZ%3D%2F%5Eh%5Cd%24%2Fi%2C%24%3D%2F%5E%5B%5E%7B%5D%2B%5C%7B%5Cs%2A%5C%5Bnative%20%5Cw%2F%2C%5F%3D%2F%5E%28%3F%3A%23%28%5B%5Cw%2D%5D%2B%29%7C%28%5Cw%2B%29%7C%5C%2E%28%5B%5Cw%2D%5D%2B%29%29%24%2F%2Cab%3D%2F%5B%2B%7E%5D%2F%2Cbb%3D%2F%27%7C%5C%5C%2Fg%2Ccb%3Dnew%20RegExp%28%22%5C%5C%5C%5C%28%5B%5C%5Cda%2Df%5D%7B1%2C6%7D%22%2BM%2B%22%3F%7C%28%22%2BM%2B%22%29%7C%2E%29%22%2C%22ig%22%29%2Cdb%3Dfunction%28a%2Cb%2Cc%29%7Bvar%20d%3D%220x%22%2Bb%2D65536%3Breturn%20d%21%3D%3Dd%7C%7Cc%3Fb%3A0%3Ed%3FString%2EfromCharCode%28d%2B65536%29%3AString%2EfromCharCode%28d%3E%3E10%7C55296%2C1023%26d%7C56320%29%7D%3Btry%7BI%2Eapply%28F%3DJ%2Ecall%28v%2EchildNodes%29%2Cv%2EchildNodes%29%2CF%5Bv%2EchildNodes%2Elength%5D%2EnodeType%7Dcatch%28eb%29%7BI%3D%7Bapply%3AF%2Elength%3Ffunction%28a%2Cb%29%7BH%2Eapply%28a%2CJ%2Ecall%28b%29%29%7D%3Afunction%28a%2Cb%29%7Bvar%20c%3Da%2Elength%2Cd%3D0%3Bwhile%28a%5Bc%2B%2B%5D%3Db%5Bd%2B%2B%5D%29%3Ba%2Elength%3Dc%2D1%7D%7D%7Dfunction%20fb%28a%2Cb%2Cd%2Ce%29%7Bvar%20f%2Ch%2Cj%2Ck%2Cl%2Co%2Cr%2Cs%2Cw%2Cx%3Bif%28%28b%3Fb%2EownerDocument%7C%7Cb%3Av%29%21%3D%3Dn%26%26m%28b%29%2Cb%3Db%7C%7Cn%2Cd%3Dd%7C%7C%5B%5D%2C%21a%7C%7C%22string%22%21%3Dtypeof%20a%29return%20d%3Bif%281%21%3D%3D%28k%3Db%2EnodeType%29%26%269%21%3D%3Dk%29return%5B%5D%3Bif%28p%26%26%21e%29%7Bif%28f%3D%5F%2Eexec%28a%29%29if%28j%3Df%5B1%5D%29%7Bif%289%3D%3D%3Dk%29%7Bif%28h%3Db%2EgetElementById%28j%29%2C%21h%7C%7C%21h%2EparentNode%29return%20d%3Bif%28h%2Eid%3D%3D%3Dj%29return%20d%2Epush%28h%29%2Cd%7Delse%20if%28b%2EownerDocument%26%26%28h%3Db%2EownerDocument%2EgetElementById%28j%29%29%26%26t%28b%2Ch%29%26%26h%2Eid%3D%3D%3Dj%29return%20d%2Epush%28h%29%2Cd%7Delse%7Bif%28f%5B2%5D%29return%20I%2Eapply%28d%2Cb%2EgetElementsByTagName%28a%29%29%2Cd%3Bif%28%28j%3Df%5B3%5D%29%26%26c%2EgetElementsByClassName%26%26b%2EgetElementsByClassName%29return%20I%2Eapply%28d%2Cb%2EgetElementsByClassName%28j%29%29%2Cd%7Dif%28c%2Eqsa%26%26%28%21q%7C%7C%21q%2Etest%28a%29%29%29%7Bif%28s%3Dr%3Du%2Cw%3Db%2Cx%3D9%3D%3D%3Dk%26%26a%2C1%3D%3D%3Dk%26%26%22object%22%21%3D%3Db%2EnodeName%2EtoLowerCase%28%29%29%7Bo%3Dg%28a%29%2C%28r%3Db%2EgetAttribute%28%22id%22%29%29%3Fs%3Dr%2Ereplace%28bb%2C%22%5C%5C%24%26%22%29%3Ab%2EsetAttribute%28%22id%22%2Cs%29%2Cs%3D%22%5Bid%3D%27%22%2Bs%2B%22%27%5D%20%22%2Cl%3Do%2Elength%3Bwhile%28l%2D%2D%29o%5Bl%5D%3Ds%2Bqb%28o%5Bl%5D%29%3Bw%3Dab%2Etest%28a%29%26%26ob%28b%2EparentNode%29%7C%7Cb%2Cx%3Do%2Ejoin%28%22%2C%22%29%7Dif%28x%29try%7Breturn%20I%2Eapply%28d%2Cw%2EquerySelectorAll%28x%29%29%2Cd%7Dcatch%28y%29%7B%7Dfinally%7Br%7C%7Cb%2EremoveAttribute%28%22id%22%29%7D%7D%7Dreturn%20i%28a%2Ereplace%28R%2C%22%241%22%29%2Cb%2Cd%2Ce%29%7Dfunction%20gb%28%29%7Bvar%20a%3D%5B%5D%3Bfunction%20b%28c%2Ce%29%7Breturn%20a%2Epush%28c%2B%22%20%22%29%3Ed%2EcacheLength%26%26delete%20b%5Ba%2Eshift%28%29%5D%2Cb%5Bc%2B%22%20%22%5D%3De%7Dreturn%20b%7Dfunction%20hb%28a%29%7Breturn%20a%5Bu%5D%3D%210%2Ca%7Dfunction%20ib%28a%29%7Bvar%20b%3Dn%2EcreateElement%28%22div%22%29%3Btry%7Breturn%21%21a%28b%29%7Dcatch%28c%29%7Breturn%211%7Dfinally%7Bb%2EparentNode%26%26b%2EparentNode%2EremoveChild%28b%29%2Cb%3Dnull%7D%7Dfunction%20jb%28a%2Cb%29%7Bvar%20c%3Da%2Esplit%28%22%7C%22%29%2Ce%3Da%2Elength%3Bwhile%28e%2D%2D%29d%2EattrHandle%5Bc%5Be%5D%5D%3Db%7Dfunction%20kb%28a%2Cb%29%7Bvar%20c%3Db%26%26a%2Cd%3Dc%26%261%3D%3D%3Da%2EnodeType%26%261%3D%3D%3Db%2EnodeType%26%26%28%7Eb%2EsourceIndex%7C%7CD%29%2D%28%7Ea%2EsourceIndex%7C%7CD%29%3Bif%28d%29return%20d%3Bif%28c%29while%28c%3Dc%2EnextSibling%29if%28c%3D%3D%3Db%29return%2D1%3Breturn%20a%3F1%3A%2D1%7Dfunction%20lb%28a%29%7Breturn%20function%28b%29%7Bvar%20c%3Db%2EnodeName%2EtoLowerCase%28%29%3Breturn%22input%22%3D%3D%3Dc%26%26b%2Etype%3D%3D%3Da%7D%7Dfunction%20mb%28a%29%7Breturn%20function%28b%29%7Bvar%20c%3Db%2EnodeName%2EtoLowerCase%28%29%3Breturn%28%22input%22%3D%3D%3Dc%7C%7C%22button%22%3D%3D%3Dc%29%26%26b%2Etype%3D%3D%3Da%7D%7Dfunction%20nb%28a%29%7Breturn%20hb%28function%28b%29%7Breturn%20b%3D%2Bb%2Chb%28function%28c%2Cd%29%7Bvar%20e%2Cf%3Da%28%5B%5D%2Cc%2Elength%2Cb%29%2Cg%3Df%2Elength%3Bwhile%28g%2D%2D%29c%5Be%3Df%5Bg%5D%5D%26%26%28c%5Be%5D%3D%21%28d%5Be%5D%3Dc%5Be%5D%29%29%7D%29%7D%29%7Dfunction%20ob%28a%29%7Breturn%20a%26%26typeof%20a%2EgetElementsByTagName%21%3D%3DC%26%26a%7Dc%3Dfb%2Esupport%3D%7B%7D%2Cf%3Dfb%2EisXML%3Dfunction%28a%29%7Bvar%20b%3Da%26%26%28a%2EownerDocument%7C%7Ca%29%2EdocumentElement%3Breturn%20b%3F%22HTML%22%21%3D%3Db%2EnodeName%3A%211%7D%2Cm%3Dfb%2EsetDocument%3Dfunction%28a%29%7Bvar%20b%2Ce%3Da%3Fa%2EownerDocument%7C%7Ca%3Av%2Cg%3De%2EdefaultView%3Breturn%20e%21%3D%3Dn%26%269%3D%3D%3De%2EnodeType%26%26e%2EdocumentElement%3F%28n%3De%2Co%3De%2EdocumentElement%2Cp%3D%21f%28e%29%2Cg%26%26g%21%3D%3Dg%2Etop%26%26%28g%2EaddEventListener%3Fg%2EaddEventListener%28%22unload%22%2Cfunction%28%29%7Bm%28%29%7D%2C%211%29%3Ag%2EattachEvent%26%26g%2EattachEvent%28%22onunload%22%2Cfunction%28%29%7Bm%28%29%7D%29%29%2Cc%2Eattributes%3Dib%28function%28a%29%7Breturn%20a%2EclassName%3D%22i%22%2C%21a%2EgetAttribute%28%22className%22%29%7D%29%2Cc%2EgetElementsByTagName%3Dib%28function%28a%29%7Breturn%20a%2EappendChild%28e%2EcreateComment%28%22%22%29%29%2C%21a%2EgetElementsByTagName%28%22%2A%22%29%2Elength%7D%29%2Cc%2EgetElementsByClassName%3D%24%2Etest%28e%2EgetElementsByClassName%29%26%26ib%28function%28a%29%7Breturn%20a%2EinnerHTML%3D%22%3Cdiv%20class%3D%27a%27%3E%3C%2Fdiv%3E%3Cdiv%20class%3D%27a%20i%27%3E%3C%2Fdiv%3E%22%2Ca%2EfirstChild%2EclassName%3D%22i%22%2C2%3D%3D%3Da%2EgetElementsByClassName%28%22i%22%29%2Elength%7D%29%2Cc%2EgetById%3Dib%28function%28a%29%7Breturn%20o%2EappendChild%28a%29%2Eid%3Du%2C%21e%2EgetElementsByName%7C%7C%21e%2EgetElementsByName%28u%29%2Elength%7D%29%2Cc%2EgetById%3F%28d%2Efind%2EID%3Dfunction%28a%2Cb%29%7Bif%28typeof%20b%2EgetElementById%21%3D%3DC%26%26p%29%7Bvar%20c%3Db%2EgetElementById%28a%29%3Breturn%20c%26%26c%2EparentNode%3F%5Bc%5D%3A%5B%5D%7D%7D%2Cd%2Efilter%2EID%3Dfunction%28a%29%7Bvar%20b%3Da%2Ereplace%28cb%2Cdb%29%3Breturn%20function%28a%29%7Breturn%20a%2EgetAttribute%28%22id%22%29%3D%3D%3Db%7D%7D%29%3A%28delete%20d%2Efind%2EID%2Cd%2Efilter%2EID%3Dfunction%28a%29%7Bvar%20b%3Da%2Ereplace%28cb%2Cdb%29%3Breturn%20function%28a%29%7Bvar%20c%3Dtypeof%20a%2EgetAttributeNode%21%3D%3DC%26%26a%2EgetAttributeNode%28%22id%22%29%3Breturn%20c%26%26c%2Evalue%3D%3D%3Db%7D%7D%29%2Cd%2Efind%2ETAG%3Dc%2EgetElementsByTagName%3Ffunction%28a%2Cb%29%7Breturn%20typeof%20b%2EgetElementsByTagName%21%3D%3DC%3Fb%2EgetElementsByTagName%28a%29%3Avoid%200%7D%3Afunction%28a%2Cb%29%7Bvar%20c%2Cd%3D%5B%5D%2Ce%3D0%2Cf%3Db%2EgetElementsByTagName%28a%29%3Bif%28%22%2A%22%3D%3D%3Da%29%7Bwhile%28c%3Df%5Be%2B%2B%5D%291%3D%3D%3Dc%2EnodeType%26%26d%2Epush%28c%29%3Breturn%20d%7Dreturn%20f%7D%2Cd%2Efind%2ECLASS%3Dc%2EgetElementsByClassName%26%26function%28a%2Cb%29%7Breturn%20typeof%20b%2EgetElementsByClassName%21%3D%3DC%26%26p%3Fb%2EgetElementsByClassName%28a%29%3Avoid%200%7D%2Cr%3D%5B%5D%2Cq%3D%5B%5D%2C%28c%2Eqsa%3D%24%2Etest%28e%2EquerySelectorAll%29%29%26%26%28ib%28function%28a%29%7Ba%2EinnerHTML%3D%22%3Cselect%20msallowclip%3D%27%27%3E%3Coption%20selected%3D%27%27%3E%3C%2Foption%3E%3C%2Fselect%3E%22%2Ca%2EquerySelectorAll%28%22%5Bmsallowclip%5E%3D%27%27%5D%22%29%2Elength%26%26q%2Epush%28%22%5B%2A%5E%24%5D%3D%22%2BM%2B%22%2A%28%3F%3A%27%27%7C%5C%22%5C%22%29%22%29%2Ca%2EquerySelectorAll%28%22%5Bselected%5D%22%29%2Elength%7C%7Cq%2Epush%28%22%5C%5C%5B%22%2BM%2B%22%2A%28%3F%3Avalue%7C%22%2BL%2B%22%29%22%29%2Ca%2EquerySelectorAll%28%22%3Achecked%22%29%2Elength%7C%7Cq%2Epush%28%22%3Achecked%22%29%7D%29%2Cib%28function%28a%29%7Bvar%20b%3De%2EcreateElement%28%22input%22%29%3Bb%2EsetAttribute%28%22type%22%2C%22hidden%22%29%2Ca%2EappendChild%28b%29%2EsetAttribute%28%22name%22%2C%22D%22%29%2Ca%2EquerySelectorAll%28%22%5Bname%3Dd%5D%22%29%2Elength%26%26q%2Epush%28%22name%22%2BM%2B%22%2A%5B%2A%5E%24%7C%21%7E%5D%3F%3D%22%29%2Ca%2EquerySelectorAll%28%22%3Aenabled%22%29%2Elength%7C%7Cq%2Epush%28%22%3Aenabled%22%2C%22%3Adisabled%22%29%2Ca%2EquerySelectorAll%28%22%2A%2C%3Ax%22%29%2Cq%2Epush%28%22%2C%2E%2A%3A%22%29%7D%29%29%2C%28c%2EmatchesSelector%3D%24%2Etest%28s%3Do%2Ematches%7C%7Co%2EwebkitMatchesSelector%7C%7Co%2EmozMatchesSelector%7C%7Co%2EoMatchesSelector%7C%7Co%2EmsMatchesSelector%29%29%26%26ib%28function%28a%29%7Bc%2EdisconnectedMatch%3Ds%2Ecall%28a%2C%22div%22%29%2Cs%2Ecall%28a%2C%22%5Bs%21%3D%27%27%5D%3Ax%22%29%2Cr%2Epush%28%22%21%3D%22%2CQ%29%7D%29%2Cq%3Dq%2Elength%26%26new%20RegExp%28q%2Ejoin%28%22%7C%22%29%29%2Cr%3Dr%2Elength%26%26new%20RegExp%28r%2Ejoin%28%22%7C%22%29%29%2Cb%3D%24%2Etest%28o%2EcompareDocumentPosition%29%2Ct%3Db%7C%7C%24%2Etest%28o%2Econtains%29%3Ffunction%28a%2Cb%29%7Bvar%20c%3D9%3D%3D%3Da%2EnodeType%3Fa%2EdocumentElement%3Aa%2Cd%3Db%26%26b%2EparentNode%3Breturn%20a%3D%3D%3Dd%7C%7C%21%28%21d%7C%7C1%21%3D%3Dd%2EnodeType%7C%7C%21%28c%2Econtains%3Fc%2Econtains%28d%29%3Aa%2EcompareDocumentPosition%26%2616%26a%2EcompareDocumentPosition%28d%29%29%29%7D%3Afunction%28a%2Cb%29%7Bif%28b%29while%28b%3Db%2EparentNode%29if%28b%3D%3D%3Da%29return%210%3Breturn%211%7D%2CB%3Db%3Ffunction%28a%2Cb%29%7Bif%28a%3D%3D%3Db%29return%20l%3D%210%2C0%3Bvar%20d%3D%21a%2EcompareDocumentPosition%2D%21b%2EcompareDocumentPosition%3Breturn%20d%3Fd%3A%28d%3D%28a%2EownerDocument%7C%7Ca%29%3D%3D%3D%28b%2EownerDocument%7C%7Cb%29%3Fa%2EcompareDocumentPosition%28b%29%3A1%2C1%26d%7C%7C%21c%2EsortDetached%26%26b%2EcompareDocumentPosition%28a%29%3D%3D%3Dd%3Fa%3D%3D%3De%7C%7Ca%2EownerDocument%3D%3D%3Dv%26%26t%28v%2Ca%29%3F%2D1%3Ab%3D%3D%3De%7C%7Cb%2EownerDocument%3D%3D%3Dv%26%26t%28v%2Cb%29%3F1%3Ak%3FK%2Ecall%28k%2Ca%29%2DK%2Ecall%28k%2Cb%29%3A0%3A4%26d%3F%2D1%3A1%29%7D%3Afunction%28a%2Cb%29%7Bif%28a%3D%3D%3Db%29return%20l%3D%210%2C0%3Bvar%20c%2Cd%3D0%2Cf%3Da%2EparentNode%2Cg%3Db%2EparentNode%2Ch%3D%5Ba%5D%2Ci%3D%5Bb%5D%3Bif%28%21f%7C%7C%21g%29return%20a%3D%3D%3De%3F%2D1%3Ab%3D%3D%3De%3F1%3Af%3F%2D1%3Ag%3F1%3Ak%3FK%2Ecall%28k%2Ca%29%2DK%2Ecall%28k%2Cb%29%3A0%3Bif%28f%3D%3D%3Dg%29return%20kb%28a%2Cb%29%3Bc%3Da%3Bwhile%28c%3Dc%2EparentNode%29h%2Eunshift%28c%29%3Bc%3Db%3Bwhile%28c%3Dc%2EparentNode%29i%2Eunshift%28c%29%3Bwhile%28h%5Bd%5D%3D%3D%3Di%5Bd%5D%29d%2B%2B%3Breturn%20d%3Fkb%28h%5Bd%5D%2Ci%5Bd%5D%29%3Ah%5Bd%5D%3D%3D%3Dv%3F%2D1%3Ai%5Bd%5D%3D%3D%3Dv%3F1%3A0%7D%2Ce%29%3An%7D%2Cfb%2Ematches%3Dfunction%28a%2Cb%29%7Breturn%20fb%28a%2Cnull%2Cnull%2Cb%29%7D%2Cfb%2EmatchesSelector%3Dfunction%28a%2Cb%29%7Bif%28%28a%2EownerDocument%7C%7Ca%29%21%3D%3Dn%26%26m%28a%29%2Cb%3Db%2Ereplace%28U%2C%22%3D%27%241%27%5D%22%29%2C%21%28%21c%2EmatchesSelector%7C%7C%21p%7C%7Cr%26%26r%2Etest%28b%29%7C%7Cq%26%26q%2Etest%28b%29%29%29try%7Bvar%20d%3Ds%2Ecall%28a%2Cb%29%3Bif%28d%7C%7Cc%2EdisconnectedMatch%7C%7Ca%2Edocument%26%2611%21%3D%3Da%2Edocument%2EnodeType%29return%20d%7Dcatch%28e%29%7B%7Dreturn%20fb%28b%2Cn%2Cnull%2C%5Ba%5D%29%2Elength%3E0%7D%2Cfb%2Econtains%3Dfunction%28a%2Cb%29%7Breturn%28a%2EownerDocument%7C%7Ca%29%21%3D%3Dn%26%26m%28a%29%2Ct%28a%2Cb%29%7D%2Cfb%2Eattr%3Dfunction%28a%2Cb%29%7B%28a%2EownerDocument%7C%7Ca%29%21%3D%3Dn%26%26m%28a%29%3Bvar%20e%3Dd%2EattrHandle%5Bb%2EtoLowerCase%28%29%5D%2Cf%3De%26%26E%2Ecall%28d%2EattrHandle%2Cb%2EtoLowerCase%28%29%29%3Fe%28a%2Cb%2C%21p%29%3Avoid%200%3Breturn%20void%200%21%3D%3Df%3Ff%3Ac%2Eattributes%7C%7C%21p%3Fa%2EgetAttribute%28b%29%3A%28f%3Da%2EgetAttributeNode%28b%29%29%26%26f%2Especified%3Ff%2Evalue%3Anull%7D%2Cfb%2Eerror%3Dfunction%28a%29%7Bthrow%20new%20Error%28%22Syntax%20error%2C%20unrecognized%20expression%3A%20%22%2Ba%29%7D%2Cfb%2EuniqueSort%3Dfunction%28a%29%7Bvar%20b%2Cd%3D%5B%5D%2Ce%3D0%2Cf%3D0%3Bif%28l%3D%21c%2EdetectDuplicates%2Ck%3D%21c%2EsortStable%26%26a%2Eslice%280%29%2Ca%2Esort%28B%29%2Cl%29%7Bwhile%28b%3Da%5Bf%2B%2B%5D%29b%3D%3D%3Da%5Bf%5D%26%26%28e%3Dd%2Epush%28f%29%29%3Bwhile%28e%2D%2D%29a%2Esplice%28d%5Be%5D%2C1%29%7Dreturn%20k%3Dnull%2Ca%7D%2Ce%3Dfb%2EgetText%3Dfunction%28a%29%7Bvar%20b%2Cc%3D%22%22%2Cd%3D0%2Cf%3Da%2EnodeType%3Bif%28f%29%7Bif%281%3D%3D%3Df%7C%7C9%3D%3D%3Df%7C%7C11%3D%3D%3Df%29%7Bif%28%22string%22%3D%3Dtypeof%20a%2EtextContent%29return%20a%2EtextContent%3Bfor%28a%3Da%2EfirstChild%3Ba%3Ba%3Da%2EnextSibling%29c%2B%3De%28a%29%7Delse%20if%283%3D%3D%3Df%7C%7C4%3D%3D%3Df%29return%20a%2EnodeValue%7Delse%20while%28b%3Da%5Bd%2B%2B%5D%29c%2B%3De%28b%29%3Breturn%20c%7D%2Cd%3Dfb%2Eselectors%3D%7BcacheLength%3A50%2CcreatePseudo%3Ahb%2Cmatch%3AX%2CattrHandle%3A%7B%7D%2Cfind%3A%7B%7D%2Crelative%3A%7B%22%3E%22%3A%7Bdir%3A%22parentNode%22%2Cfirst%3A%210%7D%2C%22%20%22%3A%7Bdir%3A%22parentNode%22%7D%2C%22%2B%22%3A%7Bdir%3A%22previousSibling%22%2Cfirst%3A%210%7D%2C%22%7E%22%3A%7Bdir%3A%22previousSibling%22%7D%7D%2CpreFilter%3A%7BATTR%3Afunction%28a%29%7Breturn%20a%5B1%5D%3Da%5B1%5D%2Ereplace%28cb%2Cdb%29%2Ca%5B3%5D%3D%28a%5B3%5D%7C%7Ca%5B4%5D%7C%7Ca%5B5%5D%7C%7C%22%22%29%2Ereplace%28cb%2Cdb%29%2C%22%7E%3D%22%3D%3D%3Da%5B2%5D%26%26%28a%5B3%5D%3D%22%20%22%2Ba%5B3%5D%2B%22%20%22%29%2Ca%2Eslice%280%2C4%29%7D%2CCHILD%3Afunction%28a%29%7Breturn%20a%5B1%5D%3Da%5B1%5D%2EtoLowerCase%28%29%2C%22nth%22%3D%3D%3Da%5B1%5D%2Eslice%280%2C3%29%3F%28a%5B3%5D%7C%7Cfb%2Eerror%28a%5B0%5D%29%2Ca%5B4%5D%3D%2B%28a%5B4%5D%3Fa%5B5%5D%2B%28a%5B6%5D%7C%7C1%29%3A2%2A%28%22even%22%3D%3D%3Da%5B3%5D%7C%7C%22odd%22%3D%3D%3Da%5B3%5D%29%29%2Ca%5B5%5D%3D%2B%28a%5B7%5D%2Ba%5B8%5D%7C%7C%22odd%22%3D%3D%3Da%5B3%5D%29%29%3Aa%5B3%5D%26%26fb%2Eerror%28a%5B0%5D%29%2Ca%7D%2CPSEUDO%3Afunction%28a%29%7Bvar%20b%2Cc%3D%21a%5B6%5D%26%26a%5B2%5D%3Breturn%20X%2ECHILD%2Etest%28a%5B0%5D%29%3Fnull%3A%28a%5B3%5D%3Fa%5B2%5D%3Da%5B4%5D%7C%7Ca%5B5%5D%7C%7C%22%22%3Ac%26%26V%2Etest%28c%29%26%26%28b%3Dg%28c%2C%210%29%29%26%26%28b%3Dc%2EindexOf%28%22%29%22%2Cc%2Elength%2Db%29%2Dc%2Elength%29%26%26%28a%5B0%5D%3Da%5B0%5D%2Eslice%280%2Cb%29%2Ca%5B2%5D%3Dc%2Eslice%280%2Cb%29%29%2Ca%2Eslice%280%2C3%29%29%7D%7D%2Cfilter%3A%7BTAG%3Afunction%28a%29%7Bvar%20b%3Da%2Ereplace%28cb%2Cdb%29%2EtoLowerCase%28%29%3Breturn%22%2A%22%3D%3D%3Da%3Ffunction%28%29%7Breturn%210%7D%3Afunction%28a%29%7Breturn%20a%2EnodeName%26%26a%2EnodeName%2EtoLowerCase%28%29%3D%3D%3Db%7D%7D%2CCLASS%3Afunction%28a%29%7Bvar%20b%3Dy%5Ba%2B%22%20%22%5D%3Breturn%20b%7C%7C%28b%3Dnew%20RegExp%28%22%28%5E%7C%22%2BM%2B%22%29%22%2Ba%2B%22%28%22%2BM%2B%22%7C%24%29%22%29%29%26%26y%28a%2Cfunction%28a%29%7Breturn%20b%2Etest%28%22string%22%3D%3Dtypeof%20a%2EclassName%26%26a%2EclassName%7C%7Ctypeof%20a%2EgetAttribute%21%3D%3DC%26%26a%2EgetAttribute%28%22class%22%29%7C%7C%22%22%29%7D%29%7D%2CATTR%3Afunction%28a%2Cb%2Cc%29%7Breturn%20function%28d%29%7Bvar%20e%3Dfb%2Eattr%28d%2Ca%29%3Breturn%20null%3D%3De%3F%22%21%3D%22%3D%3D%3Db%3Ab%3F%28e%2B%3D%22%22%2C%22%3D%22%3D%3D%3Db%3Fe%3D%3D%3Dc%3A%22%21%3D%22%3D%3D%3Db%3Fe%21%3D%3Dc%3A%22%5E%3D%22%3D%3D%3Db%3Fc%26%260%3D%3D%3De%2EindexOf%28c%29%3A%22%2A%3D%22%3D%3D%3Db%3Fc%26%26e%2EindexOf%28c%29%3E%2D1%3A%22%24%3D%22%3D%3D%3Db%3Fc%26%26e%2Eslice%28%2Dc%2Elength%29%3D%3D%3Dc%3A%22%7E%3D%22%3D%3D%3Db%3F%28%22%20%22%2Be%2B%22%20%22%29%2EindexOf%28c%29%3E%2D1%3A%22%7C%3D%22%3D%3D%3Db%3Fe%3D%3D%3Dc%7C%7Ce%2Eslice%280%2Cc%2Elength%2B1%29%3D%3D%3Dc%2B%22%2D%22%3A%211%29%3A%210%7D%7D%2CCHILD%3Afunction%28a%2Cb%2Cc%2Cd%2Ce%29%7Bvar%20f%3D%22nth%22%21%3D%3Da%2Eslice%280%2C3%29%2Cg%3D%22last%22%21%3D%3Da%2Eslice%28%2D4%29%2Ch%3D%22of%2Dtype%22%3D%3D%3Db%3Breturn%201%3D%3D%3Dd%26%260%3D%3D%3De%3Ffunction%28a%29%7Breturn%21%21a%2EparentNode%7D%3Afunction%28b%2Cc%2Ci%29%7Bvar%20j%2Ck%2Cl%2Cm%2Cn%2Co%2Cp%3Df%21%3D%3Dg%3F%22nextSibling%22%3A%22previousSibling%22%2Cq%3Db%2EparentNode%2Cr%3Dh%26%26b%2EnodeName%2EtoLowerCase%28%29%2Cs%3D%21i%26%26%21h%3Bif%28q%29%7Bif%28f%29%7Bwhile%28p%29%7Bl%3Db%3Bwhile%28l%3Dl%5Bp%5D%29if%28h%3Fl%2EnodeName%2EtoLowerCase%28%29%3D%3D%3Dr%3A1%3D%3D%3Dl%2EnodeType%29return%211%3Bo%3Dp%3D%22only%22%3D%3D%3Da%26%26%21o%26%26%22nextSibling%22%7Dreturn%210%7Dif%28o%3D%5Bg%3Fq%2EfirstChild%3Aq%2ElastChild%5D%2Cg%26%26s%29%7Bk%3Dq%5Bu%5D%7C%7C%28q%5Bu%5D%3D%7B%7D%29%2Cj%3Dk%5Ba%5D%7C%7C%5B%5D%2Cn%3Dj%5B0%5D%3D%3D%3Dw%26%26j%5B1%5D%2Cm%3Dj%5B0%5D%3D%3D%3Dw%26%26j%5B2%5D%2Cl%3Dn%26%26q%2EchildNodes%5Bn%5D%3Bwhile%28l%3D%2B%2Bn%26%26l%26%26l%5Bp%5D%7C%7C%28m%3Dn%3D0%29%7C%7Co%2Epop%28%29%29if%281%3D%3D%3Dl%2EnodeType%26%26%2B%2Bm%26%26l%3D%3D%3Db%29%7Bk%5Ba%5D%3D%5Bw%2Cn%2Cm%5D%3Bbreak%7D%7Delse%20if%28s%26%26%28j%3D%28b%5Bu%5D%7C%7C%28b%5Bu%5D%3D%7B%7D%29%29%5Ba%5D%29%26%26j%5B0%5D%3D%3D%3Dw%29m%3Dj%5B1%5D%3Belse%20while%28l%3D%2B%2Bn%26%26l%26%26l%5Bp%5D%7C%7C%28m%3Dn%3D0%29%7C%7Co%2Epop%28%29%29if%28%28h%3Fl%2EnodeName%2EtoLowerCase%28%29%3D%3D%3Dr%3A1%3D%3D%3Dl%2EnodeType%29%26%26%2B%2Bm%26%26%28s%26%26%28%28l%5Bu%5D%7C%7C%28l%5Bu%5D%3D%7B%7D%29%29%5Ba%5D%3D%5Bw%2Cm%5D%29%2Cl%3D%3D%3Db%29%29break%3Breturn%20m%2D%3De%2Cm%3D%3D%3Dd%7C%7Cm%25d%3D%3D%3D0%26%26m%2Fd%3E%3D0%7D%7D%7D%2CPSEUDO%3Afunction%28a%2Cb%29%7Bvar%20c%2Ce%3Dd%2Epseudos%5Ba%5D%7C%7Cd%2EsetFilters%5Ba%2EtoLowerCase%28%29%5D%7C%7Cfb%2Eerror%28%22unsupported%20pseudo%3A%20%22%2Ba%29%3Breturn%20e%5Bu%5D%3Fe%28b%29%3Ae%2Elength%3E1%3F%28c%3D%5Ba%2Ca%2C%22%22%2Cb%5D%2Cd%2EsetFilters%2EhasOwnProperty%28a%2EtoLowerCase%28%29%29%3Fhb%28function%28a%2Cc%29%7Bvar%20d%2Cf%3De%28a%2Cb%29%2Cg%3Df%2Elength%3Bwhile%28g%2D%2D%29d%3DK%2Ecall%28a%2Cf%5Bg%5D%29%2Ca%5Bd%5D%3D%21%28c%5Bd%5D%3Df%5Bg%5D%29%7D%29%3Afunction%28a%29%7Breturn%20e%28a%2C0%2Cc%29%7D%29%3Ae%7D%7D%2Cpseudos%3A%7Bnot%3Ahb%28function%28a%29%7Bvar%20b%3D%5B%5D%2Cc%3D%5B%5D%2Cd%3Dh%28a%2Ereplace%28R%2C%22%241%22%29%29%3Breturn%20d%5Bu%5D%3Fhb%28function%28a%2Cb%2Cc%2Ce%29%7Bvar%20f%2Cg%3Dd%28a%2Cnull%2Ce%2C%5B%5D%29%2Ch%3Da%2Elength%3Bwhile%28h%2D%2D%29%28f%3Dg%5Bh%5D%29%26%26%28a%5Bh%5D%3D%21%28b%5Bh%5D%3Df%29%29%7D%29%3Afunction%28a%2Ce%2Cf%29%7Breturn%20b%5B0%5D%3Da%2Cd%28b%2Cnull%2Cf%2Cc%29%2C%21c%2Epop%28%29%7D%7D%29%2Chas%3Ahb%28function%28a%29%7Breturn%20function%28b%29%7Breturn%20fb%28a%2Cb%29%2Elength%3E0%7D%7D%29%2Ccontains%3Ahb%28function%28a%29%7Breturn%20function%28b%29%7Breturn%28b%2EtextContent%7C%7Cb%2EinnerText%7C%7Ce%28b%29%29%2EindexOf%28a%29%3E%2D1%7D%7D%29%2Clang%3Ahb%28function%28a%29%7Breturn%20W%2Etest%28a%7C%7C%22%22%29%7C%7Cfb%2Eerror%28%22unsupported%20lang%3A%20%22%2Ba%29%2Ca%3Da%2Ereplace%28cb%2Cdb%29%2EtoLowerCase%28%29%2Cfunction%28b%29%7Bvar%20c%3Bdo%20if%28c%3Dp%3Fb%2Elang%3Ab%2EgetAttribute%28%22xml%3Alang%22%29%7C%7Cb%2EgetAttribute%28%22lang%22%29%29return%20c%3Dc%2EtoLowerCase%28%29%2Cc%3D%3D%3Da%7C%7C0%3D%3D%3Dc%2EindexOf%28a%2B%22%2D%22%29%3Bwhile%28%28b%3Db%2EparentNode%29%26%261%3D%3D%3Db%2EnodeType%29%3Breturn%211%7D%7D%29%2Ctarget%3Afunction%28b%29%7Bvar%20c%3Da%2Elocation%26%26a%2Elocation%2Ehash%3Breturn%20c%26%26c%2Eslice%281%29%3D%3D%3Db%2Eid%7D%2Croot%3Afunction%28a%29%7Breturn%20a%3D%3D%3Do%7D%2Cfocus%3Afunction%28a%29%7Breturn%20a%3D%3D%3Dn%2EactiveElement%26%26%28%21n%2EhasFocus%7C%7Cn%2EhasFocus%28%29%29%26%26%21%21%28a%2Etype%7C%7Ca%2Ehref%7C%7C%7Ea%2EtabIndex%29%7D%2Cenabled%3Afunction%28a%29%7Breturn%20a%2Edisabled%3D%3D%3D%211%7D%2Cdisabled%3Afunction%28a%29%7Breturn%20a%2Edisabled%3D%3D%3D%210%7D%2Cchecked%3Afunction%28a%29%7Bvar%20b%3Da%2EnodeName%2EtoLowerCase%28%29%3Breturn%22input%22%3D%3D%3Db%26%26%21%21a%2Echecked%7C%7C%22option%22%3D%3D%3Db%26%26%21%21a%2Eselected%7D%2Cselected%3Afunction%28a%29%7Breturn%20a%2EparentNode%26%26a%2EparentNode%2EselectedIndex%2Ca%2Eselected%3D%3D%3D%210%7D%2Cempty%3Afunction%28a%29%7Bfor%28a%3Da%2EfirstChild%3Ba%3Ba%3Da%2EnextSibling%29if%28a%2EnodeType%3C6%29return%211%3Breturn%210%7D%2Cparent%3Afunction%28a%29%7Breturn%21d%2Epseudos%2Eempty%28a%29%7D%2Cheader%3Afunction%28a%29%7Breturn%20Z%2Etest%28a%2EnodeName%29%7D%2Cinput%3Afunction%28a%29%7Breturn%20Y%2Etest%28a%2EnodeName%29%7D%2Cbutton%3Afunction%28a%29%7Bvar%20b%3Da%2EnodeName%2EtoLowerCase%28%29%3Breturn%22input%22%3D%3D%3Db%26%26%22button%22%3D%3D%3Da%2Etype%7C%7C%22button%22%3D%3D%3Db%7D%2Ctext%3Afunction%28a%29%7Bvar%20b%3Breturn%22input%22%3D%3D%3Da%2EnodeName%2EtoLowerCase%28%29%26%26%22text%22%3D%3D%3Da%2Etype%26%26%28null%3D%3D%28b%3Da%2EgetAttribute%28%22type%22%29%29%7C%7C%22text%22%3D%3D%3Db%2EtoLowerCase%28%29%29%7D%2Cfirst%3Anb%28function%28%29%7Breturn%5B0%5D%7D%29%2Clast%3Anb%28function%28a%2Cb%29%7Breturn%5Bb%2D1%5D%7D%29%2Ceq%3Anb%28function%28a%2Cb%2Cc%29%7Breturn%5B0%3Ec%3Fc%2Bb%3Ac%5D%7D%29%2Ceven%3Anb%28function%28a%2Cb%29%7Bfor%28var%20c%3D0%3Bb%3Ec%3Bc%2B%3D2%29a%2Epush%28c%29%3Breturn%20a%7D%29%2Codd%3Anb%28function%28a%2Cb%29%7Bfor%28var%20c%3D1%3Bb%3Ec%3Bc%2B%3D2%29a%2Epush%28c%29%3Breturn%20a%7D%29%2Clt%3Anb%28function%28a%2Cb%2Cc%29%7Bfor%28var%20d%3D0%3Ec%3Fc%2Bb%3Ac%3B%2D%2Dd%3E%3D0%3B%29a%2Epush%28d%29%3Breturn%20a%7D%29%2Cgt%3Anb%28function%28a%2Cb%2Cc%29%7Bfor%28var%20d%3D0%3Ec%3Fc%2Bb%3Ac%3B%2B%2Bd%3Cb%3B%29a%2Epush%28d%29%3Breturn%20a%7D%29%7D%7D%2Cd%2Epseudos%2Enth%3Dd%2Epseudos%2Eeq%3Bfor%28b%20in%7Bradio%3A%210%2Ccheckbox%3A%210%2Cfile%3A%210%2Cpassword%3A%210%2Cimage%3A%210%7D%29d%2Epseudos%5Bb%5D%3Dlb%28b%29%3Bfor%28b%20in%7Bsubmit%3A%210%2Creset%3A%210%7D%29d%2Epseudos%5Bb%5D%3Dmb%28b%29%3Bfunction%20pb%28%29%7B%7Dpb%2Eprototype%3Dd%2Efilters%3Dd%2Epseudos%2Cd%2EsetFilters%3Dnew%20pb%2Cg%3Dfb%2Etokenize%3Dfunction%28a%2Cb%29%7Bvar%20c%2Ce%2Cf%2Cg%2Ch%2Ci%2Cj%2Ck%3Dz%5Ba%2B%22%20%22%5D%3Bif%28k%29return%20b%3F0%3Ak%2Eslice%280%29%3Bh%3Da%2Ci%3D%5B%5D%2Cj%3Dd%2EpreFilter%3Bwhile%28h%29%7B%28%21c%7C%7C%28e%3DS%2Eexec%28h%29%29%29%26%26%28e%26%26%28h%3Dh%2Eslice%28e%5B0%5D%2Elength%29%7C%7Ch%29%2Ci%2Epush%28f%3D%5B%5D%29%29%2Cc%3D%211%2C%28e%3DT%2Eexec%28h%29%29%26%26%28c%3De%2Eshift%28%29%2Cf%2Epush%28%7Bvalue%3Ac%2Ctype%3Ae%5B0%5D%2Ereplace%28R%2C%22%20%22%29%7D%29%2Ch%3Dh%2Eslice%28c%2Elength%29%29%3Bfor%28g%20in%20d%2Efilter%29%21%28e%3DX%5Bg%5D%2Eexec%28h%29%29%7C%7Cj%5Bg%5D%26%26%21%28e%3Dj%5Bg%5D%28e%29%29%7C%7C%28c%3De%2Eshift%28%29%2Cf%2Epush%28%7Bvalue%3Ac%2Ctype%3Ag%2Cmatches%3Ae%7D%29%2Ch%3Dh%2Eslice%28c%2Elength%29%29%3Bif%28%21c%29break%7Dreturn%20b%3Fh%2Elength%3Ah%3Ffb%2Eerror%28a%29%3Az%28a%2Ci%29%2Eslice%280%29%7D%3Bfunction%20qb%28a%29%7Bfor%28var%20b%3D0%2Cc%3Da%2Elength%2Cd%3D%22%22%3Bc%3Eb%3Bb%2B%2B%29d%2B%3Da%5Bb%5D%2Evalue%3Breturn%20d%7Dfunction%20rb%28a%2Cb%2Cc%29%7Bvar%20d%3Db%2Edir%2Ce%3Dc%26%26%22parentNode%22%3D%3D%3Dd%2Cf%3Dx%2B%2B%3Breturn%20b%2Efirst%3Ffunction%28b%2Cc%2Cf%29%7Bwhile%28b%3Db%5Bd%5D%29if%281%3D%3D%3Db%2EnodeType%7C%7Ce%29return%20a%28b%2Cc%2Cf%29%7D%3Afunction%28b%2Cc%2Cg%29%7Bvar%20h%2Ci%2Cj%3D%5Bw%2Cf%5D%3Bif%28g%29%7Bwhile%28b%3Db%5Bd%5D%29if%28%281%3D%3D%3Db%2EnodeType%7C%7Ce%29%26%26a%28b%2Cc%2Cg%29%29return%210%7Delse%20while%28b%3Db%5Bd%5D%29if%281%3D%3D%3Db%2EnodeType%7C%7Ce%29%7Bif%28i%3Db%5Bu%5D%7C%7C%28b%5Bu%5D%3D%7B%7D%29%2C%28h%3Di%5Bd%5D%29%26%26h%5B0%5D%3D%3D%3Dw%26%26h%5B1%5D%3D%3D%3Df%29return%20j%5B2%5D%3Dh%5B2%5D%3Bif%28i%5Bd%5D%3Dj%2Cj%5B2%5D%3Da%28b%2Cc%2Cg%29%29return%210%7D%7D%7Dfunction%20sb%28a%29%7Breturn%20a%2Elength%3E1%3Ffunction%28b%2Cc%2Cd%29%7Bvar%20e%3Da%2Elength%3Bwhile%28e%2D%2D%29if%28%21a%5Be%5D%28b%2Cc%2Cd%29%29return%211%3Breturn%210%7D%3Aa%5B0%5D%7Dfunction%20tb%28a%2Cb%2Cc%29%7Bfor%28var%20d%3D0%2Ce%3Db%2Elength%3Be%3Ed%3Bd%2B%2B%29fb%28a%2Cb%5Bd%5D%2Cc%29%3Breturn%20c%7Dfunction%20ub%28a%2Cb%2Cc%2Cd%2Ce%29%7Bfor%28var%20f%2Cg%3D%5B%5D%2Ch%3D0%2Ci%3Da%2Elength%2Cj%3Dnull%21%3Db%3Bi%3Eh%3Bh%2B%2B%29%28f%3Da%5Bh%5D%29%26%26%28%21c%7C%7Cc%28f%2Cd%2Ce%29%29%26%26%28g%2Epush%28f%29%2Cj%26%26b%2Epush%28h%29%29%3Breturn%20g%7Dfunction%20vb%28a%2Cb%2Cc%2Cd%2Ce%2Cf%29%7Breturn%20d%26%26%21d%5Bu%5D%26%26%28d%3Dvb%28d%29%29%2Ce%26%26%21e%5Bu%5D%26%26%28e%3Dvb%28e%2Cf%29%29%2Chb%28function%28f%2Cg%2Ch%2Ci%29%7Bvar%20j%2Ck%2Cl%2Cm%3D%5B%5D%2Cn%3D%5B%5D%2Co%3Dg%2Elength%2Cp%3Df%7C%7Ctb%28b%7C%7C%22%2A%22%2Ch%2EnodeType%3F%5Bh%5D%3Ah%2C%5B%5D%29%2Cq%3D%21a%7C%7C%21f%26%26b%3Fp%3Aub%28p%2Cm%2Ca%2Ch%2Ci%29%2Cr%3Dc%3Fe%7C%7C%28f%3Fa%3Ao%7C%7Cd%29%3F%5B%5D%3Ag%3Aq%3Bif%28c%26%26c%28q%2Cr%2Ch%2Ci%29%2Cd%29%7Bj%3Dub%28r%2Cn%29%2Cd%28j%2C%5B%5D%2Ch%2Ci%29%2Ck%3Dj%2Elength%3Bwhile%28k%2D%2D%29%28l%3Dj%5Bk%5D%29%26%26%28r%5Bn%5Bk%5D%5D%3D%21%28q%5Bn%5Bk%5D%5D%3Dl%29%29%7Dif%28f%29%7Bif%28e%7C%7Ca%29%7Bif%28e%29%7Bj%3D%5B%5D%2Ck%3Dr%2Elength%3Bwhile%28k%2D%2D%29%28l%3Dr%5Bk%5D%29%26%26j%2Epush%28q%5Bk%5D%3Dl%29%3Be%28null%2Cr%3D%5B%5D%2Cj%2Ci%29%7Dk%3Dr%2Elength%3Bwhile%28k%2D%2D%29%28l%3Dr%5Bk%5D%29%26%26%28j%3De%3FK%2Ecall%28f%2Cl%29%3Am%5Bk%5D%29%3E%2D1%26%26%28f%5Bj%5D%3D%21%28g%5Bj%5D%3Dl%29%29%7D%7Delse%20r%3Dub%28r%3D%3D%3Dg%3Fr%2Esplice%28o%2Cr%2Elength%29%3Ar%29%2Ce%3Fe%28null%2Cg%2Cr%2Ci%29%3AI%2Eapply%28g%2Cr%29%7D%29%7Dfunction%20wb%28a%29%7Bfor%28var%20b%2Cc%2Ce%2Cf%3Da%2Elength%2Cg%3Dd%2Erelative%5Ba%5B0%5D%2Etype%5D%2Ch%3Dg%7C%7Cd%2Erelative%5B%22%20%22%5D%2Ci%3Dg%3F1%3A0%2Ck%3Drb%28function%28a%29%7Breturn%20a%3D%3D%3Db%7D%2Ch%2C%210%29%2Cl%3Drb%28function%28a%29%7Breturn%20K%2Ecall%28b%2Ca%29%3E%2D1%7D%2Ch%2C%210%29%2Cm%3D%5Bfunction%28a%2Cc%2Cd%29%7Breturn%21g%26%26%28d%7C%7Cc%21%3D%3Dj%29%7C%7C%28%28b%3Dc%29%2EnodeType%3Fk%28a%2Cc%2Cd%29%3Al%28a%2Cc%2Cd%29%29%7D%5D%3Bf%3Ei%3Bi%2B%2B%29if%28c%3Dd%2Erelative%5Ba%5Bi%5D%2Etype%5D%29m%3D%5Brb%28sb%28m%29%2Cc%29%5D%3Belse%7Bif%28c%3Dd%2Efilter%5Ba%5Bi%5D%2Etype%5D%2Eapply%28null%2Ca%5Bi%5D%2Ematches%29%2Cc%5Bu%5D%29%7Bfor%28e%3D%2B%2Bi%3Bf%3Ee%3Be%2B%2B%29if%28d%2Erelative%5Ba%5Be%5D%2Etype%5D%29break%3Breturn%20vb%28i%3E1%26%26sb%28m%29%2Ci%3E1%26%26qb%28a%2Eslice%280%2Ci%2D1%29%2Econcat%28%7Bvalue%3A%22%20%22%3D%3D%3Da%5Bi%2D2%5D%2Etype%3F%22%2A%22%3A%22%22%7D%29%29%2Ereplace%28R%2C%22%241%22%29%2Cc%2Ce%3Ei%26%26wb%28a%2Eslice%28i%2Ce%29%29%2Cf%3Ee%26%26wb%28a%3Da%2Eslice%28e%29%29%2Cf%3Ee%26%26qb%28a%29%29%7Dm%2Epush%28c%29%7Dreturn%20sb%28m%29%7Dfunction%20xb%28a%2Cb%29%7Bvar%20c%3Db%2Elength%3E0%2Ce%3Da%2Elength%3E0%2Cf%3Dfunction%28f%2Cg%2Ch%2Ci%2Ck%29%7Bvar%20l%2Cm%2Co%2Cp%3D0%2Cq%3D%220%22%2Cr%3Df%26%26%5B%5D%2Cs%3D%5B%5D%2Ct%3Dj%2Cu%3Df%7C%7Ce%26%26d%2Efind%2ETAG%28%22%2A%22%2Ck%29%2Cv%3Dw%2B%3Dnull%3D%3Dt%3F1%3AMath%2Erandom%28%29%7C%7C%2E1%2Cx%3Du%2Elength%3Bfor%28k%26%26%28j%3Dg%21%3D%3Dn%26%26g%29%3Bq%21%3D%3Dx%26%26null%21%3D%28l%3Du%5Bq%5D%29%3Bq%2B%2B%29%7Bif%28e%26%26l%29%7Bm%3D0%3Bwhile%28o%3Da%5Bm%2B%2B%5D%29if%28o%28l%2Cg%2Ch%29%29%7Bi%2Epush%28l%29%3Bbreak%7Dk%26%26%28w%3Dv%29%7Dc%26%26%28%28l%3D%21o%26%26l%29%26%26p%2D%2D%2Cf%26%26r%2Epush%28l%29%29%7Dif%28p%2B%3Dq%2Cc%26%26q%21%3D%3Dp%29%7Bm%3D0%3Bwhile%28o%3Db%5Bm%2B%2B%5D%29o%28r%2Cs%2Cg%2Ch%29%3Bif%28f%29%7Bif%28p%3E0%29while%28q%2D%2D%29r%5Bq%5D%7C%7Cs%5Bq%5D%7C%7C%28s%5Bq%5D%3DG%2Ecall%28i%29%29%3Bs%3Dub%28s%29%7DI%2Eapply%28i%2Cs%29%2Ck%26%26%21f%26%26s%2Elength%3E0%26%26p%2Bb%2Elength%3E1%26%26fb%2EuniqueSort%28i%29%7Dreturn%20k%26%26%28w%3Dv%2Cj%3Dt%29%2Cr%7D%3Breturn%20c%3Fhb%28f%29%3Af%7Dreturn%20h%3Dfb%2Ecompile%3Dfunction%28a%2Cb%29%7Bvar%20c%2Cd%3D%5B%5D%2Ce%3D%5B%5D%2Cf%3DA%5Ba%2B%22%20%22%5D%3Bif%28%21f%29%7Bb%7C%7C%28b%3Dg%28a%29%29%2Cc%3Db%2Elength%3Bwhile%28c%2D%2D%29f%3Dwb%28b%5Bc%5D%29%2Cf%5Bu%5D%3Fd%2Epush%28f%29%3Ae%2Epush%28f%29%3Bf%3DA%28a%2Cxb%28e%2Cd%29%29%2Cf%2Eselector%3Da%7Dreturn%20f%7D%2Ci%3Dfb%2Eselect%3Dfunction%28a%2Cb%2Ce%2Cf%29%7Bvar%20i%2Cj%2Ck%2Cl%2Cm%2Cn%3D%22function%22%3D%3Dtypeof%20a%26%26a%2Co%3D%21f%26%26g%28a%3Dn%2Eselector%7C%7Ca%29%3Bif%28e%3De%7C%7C%5B%5D%2C1%3D%3D%3Do%2Elength%29%7Bif%28j%3Do%5B0%5D%3Do%5B0%5D%2Eslice%280%29%2Cj%2Elength%3E2%26%26%22ID%22%3D%3D%3D%28k%3Dj%5B0%5D%29%2Etype%26%26c%2EgetById%26%269%3D%3D%3Db%2EnodeType%26%26p%26%26d%2Erelative%5Bj%5B1%5D%2Etype%5D%29%7Bif%28b%3D%28d%2Efind%2EID%28k%2Ematches%5B0%5D%2Ereplace%28cb%2Cdb%29%2Cb%29%7C%7C%5B%5D%29%5B0%5D%2C%21b%29return%20e%3Bn%26%26%28b%3Db%2EparentNode%29%2Ca%3Da%2Eslice%28j%2Eshift%28%29%2Evalue%2Elength%29%7Di%3DX%2EneedsContext%2Etest%28a%29%3F0%3Aj%2Elength%3Bwhile%28i%2D%2D%29%7Bif%28k%3Dj%5Bi%5D%2Cd%2Erelative%5Bl%3Dk%2Etype%5D%29break%3Bif%28%28m%3Dd%2Efind%5Bl%5D%29%26%26%28f%3Dm%28k%2Ematches%5B0%5D%2Ereplace%28cb%2Cdb%29%2Cab%2Etest%28j%5B0%5D%2Etype%29%26%26ob%28b%2EparentNode%29%7C%7Cb%29%29%29%7Bif%28j%2Esplice%28i%2C1%29%2Ca%3Df%2Elength%26%26qb%28j%29%2C%21a%29return%20I%2Eapply%28e%2Cf%29%2Ce%3Bbreak%7D%7D%7Dreturn%28n%7C%7Ch%28a%2Co%29%29%28f%2Cb%2C%21p%2Ce%2Cab%2Etest%28a%29%26%26ob%28b%2EparentNode%29%7C%7Cb%29%2Ce%7D%2Cc%2EsortStable%3Du%2Esplit%28%22%22%29%2Esort%28B%29%2Ejoin%28%22%22%29%3D%3D%3Du%2Cc%2EdetectDuplicates%3D%21%21l%2Cm%28%29%2Cc%2EsortDetached%3Dib%28function%28a%29%7Breturn%201%26a%2EcompareDocumentPosition%28n%2EcreateElement%28%22div%22%29%29%7D%29%2Cib%28function%28a%29%7Breturn%20a%2EinnerHTML%3D%22%3Ca%20href%3D%27%23%27%3E%3C%2Fa%3E%22%2C%22%23%22%3D%3D%3Da%2EfirstChild%2EgetAttribute%28%22href%22%29%7D%29%7C%7Cjb%28%22type%7Chref%7Cheight%7Cwidth%22%2Cfunction%28a%2Cb%2Cc%29%7Breturn%20c%3Fvoid%200%3Aa%2EgetAttribute%28b%2C%22type%22%3D%3D%3Db%2EtoLowerCase%28%29%3F1%3A2%29%7D%29%2Cc%2Eattributes%26%26ib%28function%28a%29%7Breturn%20a%2EinnerHTML%3D%22%3Cinput%2F%3E%22%2Ca%2EfirstChild%2EsetAttribute%28%22value%22%2C%22%22%29%2C%22%22%3D%3D%3Da%2EfirstChild%2EgetAttribute%28%22value%22%29%7D%29%7C%7Cjb%28%22value%22%2Cfunction%28a%2Cb%2Cc%29%7Breturn%20c%7C%7C%22input%22%21%3D%3Da%2EnodeName%2EtoLowerCase%28%29%3Fvoid%200%3Aa%2EdefaultValue%7D%29%2Cib%28function%28a%29%7Breturn%20null%3D%3Da%2EgetAttribute%28%22disabled%22%29%7D%29%7C%7Cjb%28L%2Cfunction%28a%2Cb%2Cc%29%7Bvar%20d%3Breturn%20c%3Fvoid%200%3Aa%5Bb%5D%3D%3D%3D%210%3Fb%2EtoLowerCase%28%29%3A%28d%3Da%2EgetAttributeNode%28b%29%29%26%26d%2Especified%3Fd%2Evalue%3Anull%7D%29%2Cfb%7D%28a%29%3Bm%2Efind%3Ds%2Cm%2Eexpr%3Ds%2Eselectors%2Cm%2Eexpr%5B%22%3A%22%5D%3Dm%2Eexpr%2Epseudos%2Cm%2Eunique%3Ds%2EuniqueSort%2Cm%2Etext%3Ds%2EgetText%2Cm%2EisXMLDoc%3Ds%2EisXML%2Cm%2Econtains%3Ds%2Econtains%3Bvar%20t%3Dm%2Eexpr%2Ematch%2EneedsContext%2Cu%3D%2F%5E%3C%28%5Cw%2B%29%5Cs%2A%5C%2F%3F%3E%28%3F%3A%3C%5C%2F%5C1%3E%7C%29%24%2F%2Cv%3D%2F%5E%2E%5B%5E%3A%23%5C%5B%5C%2E%2C%5D%2A%24%2F%3Bfunction%20w%28a%2Cb%2Cc%29%7Bif%28m%2EisFunction%28b%29%29return%20m%2Egrep%28a%2Cfunction%28a%2Cd%29%7Breturn%21%21b%2Ecall%28a%2Cd%2Ca%29%21%3D%3Dc%7D%29%3Bif%28b%2EnodeType%29return%20m%2Egrep%28a%2Cfunction%28a%29%7Breturn%20a%3D%3D%3Db%21%3D%3Dc%7D%29%3Bif%28%22string%22%3D%3Dtypeof%20b%29%7Bif%28v%2Etest%28b%29%29return%20m%2Efilter%28b%2Ca%2Cc%29%3Bb%3Dm%2Efilter%28b%2Ca%29%7Dreturn%20m%2Egrep%28a%2Cfunction%28a%29%7Breturn%20m%2EinArray%28a%2Cb%29%3E%3D0%21%3D%3Dc%7D%29%7Dm%2Efilter%3Dfunction%28a%2Cb%2Cc%29%7Bvar%20d%3Db%5B0%5D%3Breturn%20c%26%26%28a%3D%22%3Anot%28%22%2Ba%2B%22%29%22%29%2C1%3D%3D%3Db%2Elength%26%261%3D%3D%3Dd%2EnodeType%3Fm%2Efind%2EmatchesSelector%28d%2Ca%29%3F%5Bd%5D%3A%5B%5D%3Am%2Efind%2Ematches%28a%2Cm%2Egrep%28b%2Cfunction%28a%29%7Breturn%201%3D%3D%3Da%2EnodeType%7D%29%29%7D%2Cm%2Efn%2Eextend%28%7Bfind%3Afunction%28a%29%7Bvar%20b%2Cc%3D%5B%5D%2Cd%3Dthis%2Ce%3Dd%2Elength%3Bif%28%22string%22%21%3Dtypeof%20a%29return%20this%2EpushStack%28m%28a%29%2Efilter%28function%28%29%7Bfor%28b%3D0%3Be%3Eb%3Bb%2B%2B%29if%28m%2Econtains%28d%5Bb%5D%2Cthis%29%29return%210%7D%29%29%3Bfor%28b%3D0%3Be%3Eb%3Bb%2B%2B%29m%2Efind%28a%2Cd%5Bb%5D%2Cc%29%3Breturn%20c%3Dthis%2EpushStack%28e%3E1%3Fm%2Eunique%28c%29%3Ac%29%2Cc%2Eselector%3Dthis%2Eselector%3Fthis%2Eselector%2B%22%20%22%2Ba%3Aa%2Cc%7D%2Cfilter%3Afunction%28a%29%7Breturn%20this%2EpushStack%28w%28this%2Ca%7C%7C%5B%5D%2C%211%29%29%7D%2Cnot%3Afunction%28a%29%7Breturn%20this%2EpushStack%28w%28this%2Ca%7C%7C%5B%5D%2C%210%29%29%7D%2Cis%3Afunction%28a%29%7Breturn%21%21w%28this%2C%22string%22%3D%3Dtypeof%20a%26%26t%2Etest%28a%29%3Fm%28a%29%3Aa%7C%7C%5B%5D%2C%211%29%2Elength%7D%7D%29%3Bvar%20x%2Cy%3Da%2Edocument%2Cz%3D%2F%5E%28%3F%3A%5Cs%2A%28%3C%5B%5Cw%5CW%5D%2B%3E%29%5B%5E%3E%5D%2A%7C%23%28%5B%5Cw%2D%5D%2A%29%29%24%2F%2CA%3Dm%2Efn%2Einit%3Dfunction%28a%2Cb%29%7Bvar%20c%2Cd%3Bif%28%21a%29return%20this%3Bif%28%22string%22%3D%3Dtypeof%20a%29%7Bif%28c%3D%22%3C%22%3D%3D%3Da%2EcharAt%280%29%26%26%22%3E%22%3D%3D%3Da%2EcharAt%28a%2Elength%2D1%29%26%26a%2Elength%3E%3D3%3F%5Bnull%2Ca%2Cnull%5D%3Az%2Eexec%28a%29%2C%21c%7C%7C%21c%5B1%5D%26%26b%29return%21b%7C%7Cb%2Ejquery%3F%28b%7C%7Cx%29%2Efind%28a%29%3Athis%2Econstructor%28b%29%2Efind%28a%29%3Bif%28c%5B1%5D%29%7Bif%28b%3Db%20instanceof%20m%3Fb%5B0%5D%3Ab%2Cm%2Emerge%28this%2Cm%2EparseHTML%28c%5B1%5D%2Cb%26%26b%2EnodeType%3Fb%2EownerDocument%7C%7Cb%3Ay%2C%210%29%29%2Cu%2Etest%28c%5B1%5D%29%26%26m%2EisPlainObject%28b%29%29for%28c%20in%20b%29m%2EisFunction%28this%5Bc%5D%29%3Fthis%5Bc%5D%28b%5Bc%5D%29%3Athis%2Eattr%28c%2Cb%5Bc%5D%29%3Breturn%20this%7Dif%28d%3Dy%2EgetElementById%28c%5B2%5D%29%2Cd%26%26d%2EparentNode%29%7Bif%28d%2Eid%21%3D%3Dc%5B2%5D%29return%20x%2Efind%28a%29%3Bthis%2Elength%3D1%2Cthis%5B0%5D%3Dd%7Dreturn%20this%2Econtext%3Dy%2Cthis%2Eselector%3Da%2Cthis%7Dreturn%20a%2EnodeType%3F%28this%2Econtext%3Dthis%5B0%5D%3Da%2Cthis%2Elength%3D1%2Cthis%29%3Am%2EisFunction%28a%29%3F%22undefined%22%21%3Dtypeof%20x%2Eready%3Fx%2Eready%28a%29%3Aa%28m%29%3A%28void%200%21%3D%3Da%2Eselector%26%26%28this%2Eselector%3Da%2Eselector%2Cthis%2Econtext%3Da%2Econtext%29%2Cm%2EmakeArray%28a%2Cthis%29%29%7D%3BA%2Eprototype%3Dm%2Efn%2Cx%3Dm%28y%29%3Bvar%20B%3D%2F%5E%28%3F%3Aparents%7Cprev%28%3F%3AUntil%7CAll%29%29%2F%2CC%3D%7Bchildren%3A%210%2Ccontents%3A%210%2Cnext%3A%210%2Cprev%3A%210%7D%3Bm%2Eextend%28%7Bdir%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%3D%5B%5D%2Ce%3Da%5Bb%5D%3Bwhile%28e%26%269%21%3D%3De%2EnodeType%26%26%28void%200%3D%3D%3Dc%7C%7C1%21%3D%3De%2EnodeType%7C%7C%21m%28e%29%2Eis%28c%29%29%291%3D%3D%3De%2EnodeType%26%26d%2Epush%28e%29%2Ce%3De%5Bb%5D%3Breturn%20d%7D%2Csibling%3Afunction%28a%2Cb%29%7Bfor%28var%20c%3D%5B%5D%3Ba%3Ba%3Da%2EnextSibling%291%3D%3D%3Da%2EnodeType%26%26a%21%3D%3Db%26%26c%2Epush%28a%29%3Breturn%20c%7D%7D%29%2Cm%2Efn%2Eextend%28%7Bhas%3Afunction%28a%29%7Bvar%20b%2Cc%3Dm%28a%2Cthis%29%2Cd%3Dc%2Elength%3Breturn%20this%2Efilter%28function%28%29%7Bfor%28b%3D0%3Bd%3Eb%3Bb%2B%2B%29if%28m%2Econtains%28this%2Cc%5Bb%5D%29%29return%210%7D%29%7D%2Cclosest%3Afunction%28a%2Cb%29%7Bfor%28var%20c%2Cd%3D0%2Ce%3Dthis%2Elength%2Cf%3D%5B%5D%2Cg%3Dt%2Etest%28a%29%7C%7C%22string%22%21%3Dtypeof%20a%3Fm%28a%2Cb%7C%7Cthis%2Econtext%29%3A0%3Be%3Ed%3Bd%2B%2B%29for%28c%3Dthis%5Bd%5D%3Bc%26%26c%21%3D%3Db%3Bc%3Dc%2EparentNode%29if%28c%2EnodeType%3C11%26%26%28g%3Fg%2Eindex%28c%29%3E%2D1%3A1%3D%3D%3Dc%2EnodeType%26%26m%2Efind%2EmatchesSelector%28c%2Ca%29%29%29%7Bf%2Epush%28c%29%3Bbreak%7Dreturn%20this%2EpushStack%28f%2Elength%3E1%3Fm%2Eunique%28f%29%3Af%29%7D%2Cindex%3Afunction%28a%29%7Breturn%20a%3F%22string%22%3D%3Dtypeof%20a%3Fm%2EinArray%28this%5B0%5D%2Cm%28a%29%29%3Am%2EinArray%28a%2Ejquery%3Fa%5B0%5D%3Aa%2Cthis%29%3Athis%5B0%5D%26%26this%5B0%5D%2EparentNode%3Fthis%2Efirst%28%29%2EprevAll%28%29%2Elength%3A%2D1%7D%2Cadd%3Afunction%28a%2Cb%29%7Breturn%20this%2EpushStack%28m%2Eunique%28m%2Emerge%28this%2Eget%28%29%2Cm%28a%2Cb%29%29%29%29%7D%2CaddBack%3Afunction%28a%29%7Breturn%20this%2Eadd%28null%3D%3Da%3Fthis%2EprevObject%3Athis%2EprevObject%2Efilter%28a%29%29%7D%7D%29%3Bfunction%20D%28a%2Cb%29%7Bdo%20a%3Da%5Bb%5D%3Bwhile%28a%26%261%21%3D%3Da%2EnodeType%29%3Breturn%20a%7Dm%2Eeach%28%7Bparent%3Afunction%28a%29%7Bvar%20b%3Da%2EparentNode%3Breturn%20b%26%2611%21%3D%3Db%2EnodeType%3Fb%3Anull%7D%2Cparents%3Afunction%28a%29%7Breturn%20m%2Edir%28a%2C%22parentNode%22%29%7D%2CparentsUntil%3Afunction%28a%2Cb%2Cc%29%7Breturn%20m%2Edir%28a%2C%22parentNode%22%2Cc%29%7D%2Cnext%3Afunction%28a%29%7Breturn%20D%28a%2C%22nextSibling%22%29%7D%2Cprev%3Afunction%28a%29%7Breturn%20D%28a%2C%22previousSibling%22%29%7D%2CnextAll%3Afunction%28a%29%7Breturn%20m%2Edir%28a%2C%22nextSibling%22%29%7D%2CprevAll%3Afunction%28a%29%7Breturn%20m%2Edir%28a%2C%22previousSibling%22%29%7D%2CnextUntil%3Afunction%28a%2Cb%2Cc%29%7Breturn%20m%2Edir%28a%2C%22nextSibling%22%2Cc%29%7D%2CprevUntil%3Afunction%28a%2Cb%2Cc%29%7Breturn%20m%2Edir%28a%2C%22previousSibling%22%2Cc%29%7D%2Csiblings%3Afunction%28a%29%7Breturn%20m%2Esibling%28%28a%2EparentNode%7C%7C%7B%7D%29%2EfirstChild%2Ca%29%7D%2Cchildren%3Afunction%28a%29%7Breturn%20m%2Esibling%28a%2EfirstChild%29%7D%2Ccontents%3Afunction%28a%29%7Breturn%20m%2EnodeName%28a%2C%22iframe%22%29%3Fa%2EcontentDocument%7C%7Ca%2EcontentWindow%2Edocument%3Am%2Emerge%28%5B%5D%2Ca%2EchildNodes%29%7D%7D%2Cfunction%28a%2Cb%29%7Bm%2Efn%5Ba%5D%3Dfunction%28c%2Cd%29%7Bvar%20e%3Dm%2Emap%28this%2Cb%2Cc%29%3Breturn%22Until%22%21%3D%3Da%2Eslice%28%2D5%29%26%26%28d%3Dc%29%2Cd%26%26%22string%22%3D%3Dtypeof%20d%26%26%28e%3Dm%2Efilter%28d%2Ce%29%29%2Cthis%2Elength%3E1%26%26%28C%5Ba%5D%7C%7C%28e%3Dm%2Eunique%28e%29%29%2CB%2Etest%28a%29%26%26%28e%3De%2Ereverse%28%29%29%29%2Cthis%2EpushStack%28e%29%7D%7D%29%3Bvar%20E%3D%2F%5CS%2B%2Fg%2CF%3D%7B%7D%3Bfunction%20G%28a%29%7Bvar%20b%3DF%5Ba%5D%3D%7B%7D%3Breturn%20m%2Eeach%28a%2Ematch%28E%29%7C%7C%5B%5D%2Cfunction%28a%2Cc%29%7Bb%5Bc%5D%3D%210%7D%29%2Cb%7Dm%2ECallbacks%3Dfunction%28a%29%7Ba%3D%22string%22%3D%3Dtypeof%20a%3FF%5Ba%5D%7C%7CG%28a%29%3Am%2Eextend%28%7B%7D%2Ca%29%3Bvar%20b%2Cc%2Cd%2Ce%2Cf%2Cg%2Ch%3D%5B%5D%2Ci%3D%21a%2Eonce%26%26%5B%5D%2Cj%3Dfunction%28l%29%7Bfor%28c%3Da%2Ememory%26%26l%2Cd%3D%210%2Cf%3Dg%7C%7C0%2Cg%3D0%2Ce%3Dh%2Elength%2Cb%3D%210%3Bh%26%26e%3Ef%3Bf%2B%2B%29if%28h%5Bf%5D%2Eapply%28l%5B0%5D%2Cl%5B1%5D%29%3D%3D%3D%211%26%26a%2EstopOnFalse%29%7Bc%3D%211%3Bbreak%7Db%3D%211%2Ch%26%26%28i%3Fi%2Elength%26%26j%28i%2Eshift%28%29%29%3Ac%3Fh%3D%5B%5D%3Ak%2Edisable%28%29%29%7D%2Ck%3D%7Badd%3Afunction%28%29%7Bif%28h%29%7Bvar%20d%3Dh%2Elength%3B%21function%20f%28b%29%7Bm%2Eeach%28b%2Cfunction%28b%2Cc%29%7Bvar%20d%3Dm%2Etype%28c%29%3B%22function%22%3D%3D%3Dd%3Fa%2Eunique%26%26k%2Ehas%28c%29%7C%7Ch%2Epush%28c%29%3Ac%26%26c%2Elength%26%26%22string%22%21%3D%3Dd%26%26f%28c%29%7D%29%7D%28arguments%29%2Cb%3Fe%3Dh%2Elength%3Ac%26%26%28g%3Dd%2Cj%28c%29%29%7Dreturn%20this%7D%2Cremove%3Afunction%28%29%7Breturn%20h%26%26m%2Eeach%28arguments%2Cfunction%28a%2Cc%29%7Bvar%20d%3Bwhile%28%28d%3Dm%2EinArray%28c%2Ch%2Cd%29%29%3E%2D1%29h%2Esplice%28d%2C1%29%2Cb%26%26%28e%3E%3Dd%26%26e%2D%2D%2Cf%3E%3Dd%26%26f%2D%2D%29%7D%29%2Cthis%7D%2Chas%3Afunction%28a%29%7Breturn%20a%3Fm%2EinArray%28a%2Ch%29%3E%2D1%3A%21%28%21h%7C%7C%21h%2Elength%29%7D%2Cempty%3Afunction%28%29%7Breturn%20h%3D%5B%5D%2Ce%3D0%2Cthis%7D%2Cdisable%3Afunction%28%29%7Breturn%20h%3Di%3Dc%3Dvoid%200%2Cthis%7D%2Cdisabled%3Afunction%28%29%7Breturn%21h%7D%2Clock%3Afunction%28%29%7Breturn%20i%3Dvoid%200%2Cc%7C%7Ck%2Edisable%28%29%2Cthis%7D%2Clocked%3Afunction%28%29%7Breturn%21i%7D%2CfireWith%3Afunction%28a%2Cc%29%7Breturn%21h%7C%7Cd%26%26%21i%7C%7C%28c%3Dc%7C%7C%5B%5D%2Cc%3D%5Ba%2Cc%2Eslice%3Fc%2Eslice%28%29%3Ac%5D%2Cb%3Fi%2Epush%28c%29%3Aj%28c%29%29%2Cthis%7D%2Cfire%3Afunction%28%29%7Breturn%20k%2EfireWith%28this%2Carguments%29%2Cthis%7D%2Cfired%3Afunction%28%29%7Breturn%21%21d%7D%7D%3Breturn%20k%7D%2Cm%2Eextend%28%7BDeferred%3Afunction%28a%29%7Bvar%20b%3D%5B%5B%22resolve%22%2C%22done%22%2Cm%2ECallbacks%28%22once%20memory%22%29%2C%22resolved%22%5D%2C%5B%22reject%22%2C%22fail%22%2Cm%2ECallbacks%28%22once%20memory%22%29%2C%22rejected%22%5D%2C%5B%22notify%22%2C%22progress%22%2Cm%2ECallbacks%28%22memory%22%29%5D%5D%2Cc%3D%22pending%22%2Cd%3D%7Bstate%3Afunction%28%29%7Breturn%20c%7D%2Calways%3Afunction%28%29%7Breturn%20e%2Edone%28arguments%29%2Efail%28arguments%29%2Cthis%7D%2Cthen%3Afunction%28%29%7Bvar%20a%3Darguments%3Breturn%20m%2EDeferred%28function%28c%29%7Bm%2Eeach%28b%2Cfunction%28b%2Cf%29%7Bvar%20g%3Dm%2EisFunction%28a%5Bb%5D%29%26%26a%5Bb%5D%3Be%5Bf%5B1%5D%5D%28function%28%29%7Bvar%20a%3Dg%26%26g%2Eapply%28this%2Carguments%29%3Ba%26%26m%2EisFunction%28a%2Epromise%29%3Fa%2Epromise%28%29%2Edone%28c%2Eresolve%29%2Efail%28c%2Ereject%29%2Eprogress%28c%2Enotify%29%3Ac%5Bf%5B0%5D%2B%22With%22%5D%28this%3D%3D%3Dd%3Fc%2Epromise%28%29%3Athis%2Cg%3F%5Ba%5D%3Aarguments%29%7D%29%7D%29%2Ca%3Dnull%7D%29%2Epromise%28%29%7D%2Cpromise%3Afunction%28a%29%7Breturn%20null%21%3Da%3Fm%2Eextend%28a%2Cd%29%3Ad%7D%7D%2Ce%3D%7B%7D%3Breturn%20d%2Epipe%3Dd%2Ethen%2Cm%2Eeach%28b%2Cfunction%28a%2Cf%29%7Bvar%20g%3Df%5B2%5D%2Ch%3Df%5B3%5D%3Bd%5Bf%5B1%5D%5D%3Dg%2Eadd%2Ch%26%26g%2Eadd%28function%28%29%7Bc%3Dh%7D%2Cb%5B1%5Ea%5D%5B2%5D%2Edisable%2Cb%5B2%5D%5B2%5D%2Elock%29%2Ce%5Bf%5B0%5D%5D%3Dfunction%28%29%7Breturn%20e%5Bf%5B0%5D%2B%22With%22%5D%28this%3D%3D%3De%3Fd%3Athis%2Carguments%29%2Cthis%7D%2Ce%5Bf%5B0%5D%2B%22With%22%5D%3Dg%2EfireWith%7D%29%2Cd%2Epromise%28e%29%2Ca%26%26a%2Ecall%28e%2Ce%29%2Ce%7D%2Cwhen%3Afunction%28a%29%7Bvar%20b%3D0%2Cc%3Dd%2Ecall%28arguments%29%2Ce%3Dc%2Elength%2Cf%3D1%21%3D%3De%7C%7Ca%26%26m%2EisFunction%28a%2Epromise%29%3Fe%3A0%2Cg%3D1%3D%3D%3Df%3Fa%3Am%2EDeferred%28%29%2Ch%3Dfunction%28a%2Cb%2Cc%29%7Breturn%20function%28e%29%7Bb%5Ba%5D%3Dthis%2Cc%5Ba%5D%3Darguments%2Elength%3E1%3Fd%2Ecall%28arguments%29%3Ae%2Cc%3D%3D%3Di%3Fg%2EnotifyWith%28b%2Cc%29%3A%2D%2Df%7C%7Cg%2EresolveWith%28b%2Cc%29%7D%7D%2Ci%2Cj%2Ck%3Bif%28e%3E1%29for%28i%3Dnew%20Array%28e%29%2Cj%3Dnew%20Array%28e%29%2Ck%3Dnew%20Array%28e%29%3Be%3Eb%3Bb%2B%2B%29c%5Bb%5D%26%26m%2EisFunction%28c%5Bb%5D%2Epromise%29%3Fc%5Bb%5D%2Epromise%28%29%2Edone%28h%28b%2Ck%2Cc%29%29%2Efail%28g%2Ereject%29%2Eprogress%28h%28b%2Cj%2Ci%29%29%3A%2D%2Df%3Breturn%20f%7C%7Cg%2EresolveWith%28k%2Cc%29%2Cg%2Epromise%28%29%7D%7D%29%3Bvar%20H%3Bm%2Efn%2Eready%3Dfunction%28a%29%7Breturn%20m%2Eready%2Epromise%28%29%2Edone%28a%29%2Cthis%7D%2Cm%2Eextend%28%7BisReady%3A%211%2CreadyWait%3A1%2CholdReady%3Afunction%28a%29%7Ba%3Fm%2EreadyWait%2B%2B%3Am%2Eready%28%210%29%7D%2Cready%3Afunction%28a%29%7Bif%28a%3D%3D%3D%210%3F%21%2D%2Dm%2EreadyWait%3A%21m%2EisReady%29%7Bif%28%21y%2Ebody%29return%20setTimeout%28m%2Eready%29%3Bm%2EisReady%3D%210%2Ca%21%3D%3D%210%26%26%2D%2Dm%2EreadyWait%3E0%7C%7C%28H%2EresolveWith%28y%2C%5Bm%5D%29%2Cm%2Efn%2EtriggerHandler%26%26%28m%28y%29%2EtriggerHandler%28%22ready%22%29%2Cm%28y%29%2Eoff%28%22ready%22%29%29%29%7D%7D%7D%29%3Bfunction%20I%28%29%7By%2EaddEventListener%3F%28y%2EremoveEventListener%28%22DOMContentLoaded%22%2CJ%2C%211%29%2Ca%2EremoveEventListener%28%22load%22%2CJ%2C%211%29%29%3A%28y%2EdetachEvent%28%22onreadystatechange%22%2CJ%29%2Ca%2EdetachEvent%28%22onload%22%2CJ%29%29%7Dfunction%20J%28%29%7B%28y%2EaddEventListener%7C%7C%22load%22%3D%3D%3Devent%2Etype%7C%7C%22complete%22%3D%3D%3Dy%2EreadyState%29%26%26%28I%28%29%2Cm%2Eready%28%29%29%7Dm%2Eready%2Epromise%3Dfunction%28b%29%7Bif%28%21H%29if%28H%3Dm%2EDeferred%28%29%2C%22complete%22%3D%3D%3Dy%2EreadyState%29setTimeout%28m%2Eready%29%3Belse%20if%28y%2EaddEventListener%29y%2EaddEventListener%28%22DOMContentLoaded%22%2CJ%2C%211%29%2Ca%2EaddEventListener%28%22load%22%2CJ%2C%211%29%3Belse%7By%2EattachEvent%28%22onreadystatechange%22%2CJ%29%2Ca%2EattachEvent%28%22onload%22%2CJ%29%3Bvar%20c%3D%211%3Btry%7Bc%3Dnull%3D%3Da%2EframeElement%26%26y%2EdocumentElement%7Dcatch%28d%29%7B%7Dc%26%26c%2EdoScroll%26%26%21function%20e%28%29%7Bif%28%21m%2EisReady%29%7Btry%7Bc%2EdoScroll%28%22left%22%29%7Dcatch%28a%29%7Breturn%20setTimeout%28e%2C50%29%7DI%28%29%2Cm%2Eready%28%29%7D%7D%28%29%7Dreturn%20H%2Epromise%28b%29%7D%3Bvar%20K%3D%22undefined%22%2CL%3Bfor%28L%20in%20m%28k%29%29break%3Bk%2EownLast%3D%220%22%21%3D%3DL%2Ck%2EinlineBlockNeedsLayout%3D%211%2Cm%28function%28%29%7Bvar%20a%2Cb%2Cc%2Cd%3Bc%3Dy%2EgetElementsByTagName%28%22body%22%29%5B0%5D%2Cc%26%26c%2Estyle%26%26%28b%3Dy%2EcreateElement%28%22div%22%29%2Cd%3Dy%2EcreateElement%28%22div%22%29%2Cd%2Estyle%2EcssText%3D%22position%3Aabsolute%3Bborder%3A0%3Bwidth%3A0%3Bheight%3A0%3Btop%3A0%3Bleft%3A%2D9999px%22%2Cc%2EappendChild%28d%29%2EappendChild%28b%29%2Ctypeof%20b%2Estyle%2Ezoom%21%3D%3DK%26%26%28b%2Estyle%2EcssText%3D%22display%3Ainline%3Bmargin%3A0%3Bborder%3A0%3Bpadding%3A1px%3Bwidth%3A1px%3Bzoom%3A1%22%2Ck%2EinlineBlockNeedsLayout%3Da%3D3%3D%3D%3Db%2EoffsetWidth%2Ca%26%26%28c%2Estyle%2Ezoom%3D1%29%29%2Cc%2EremoveChild%28d%29%29%7D%29%2Cfunction%28%29%7Bvar%20a%3Dy%2EcreateElement%28%22div%22%29%3Bif%28null%3D%3Dk%2EdeleteExpando%29%7Bk%2EdeleteExpando%3D%210%3Btry%7Bdelete%20a%2Etest%7Dcatch%28b%29%7Bk%2EdeleteExpando%3D%211%7D%7Da%3Dnull%7D%28%29%2Cm%2EacceptData%3Dfunction%28a%29%7Bvar%20b%3Dm%2EnoData%5B%28a%2EnodeName%2B%22%20%22%29%2EtoLowerCase%28%29%5D%2Cc%3D%2Ba%2EnodeType%7C%7C1%3Breturn%201%21%3D%3Dc%26%269%21%3D%3Dc%3F%211%3A%21b%7C%7Cb%21%3D%3D%210%26%26a%2EgetAttribute%28%22classid%22%29%3D%3D%3Db%7D%3Bvar%20M%3D%2F%5E%28%3F%3A%5C%7B%5B%5Cw%5CW%5D%2A%5C%7D%7C%5C%5B%5B%5Cw%5CW%5D%2A%5C%5D%29%24%2F%2CN%3D%2F%28%5BA%2DZ%5D%29%2Fg%3Bfunction%20O%28a%2Cb%2Cc%29%7Bif%28void%200%3D%3D%3Dc%26%261%3D%3D%3Da%2EnodeType%29%7Bvar%20d%3D%22data%2D%22%2Bb%2Ereplace%28N%2C%22%2D%241%22%29%2EtoLowerCase%28%29%3Bif%28c%3Da%2EgetAttribute%28d%29%2C%22string%22%3D%3Dtypeof%20c%29%7Btry%7Bc%3D%22true%22%3D%3D%3Dc%3F%210%3A%22false%22%3D%3D%3Dc%3F%211%3A%22null%22%3D%3D%3Dc%3Fnull%3A%2Bc%2B%22%22%3D%3D%3Dc%3F%2Bc%3AM%2Etest%28c%29%3Fm%2EparseJSON%28c%29%3Ac%7Dcatch%28e%29%7B%7Dm%2Edata%28a%2Cb%2Cc%29%7Delse%20c%3Dvoid%200%7Dreturn%20c%7Dfunction%20P%28a%29%7Bvar%20b%3Bfor%28b%20in%20a%29if%28%28%22data%22%21%3D%3Db%7C%7C%21m%2EisEmptyObject%28a%5Bb%5D%29%29%26%26%22toJSON%22%21%3D%3Db%29return%211%3Breturn%210%7Dfunction%20Q%28a%2Cb%2Cd%2Ce%29%7Bif%28m%2EacceptData%28a%29%29%7Bvar%20f%2Cg%2Ch%3Dm%2Eexpando%2Ci%3Da%2EnodeType%2Cj%3Di%3Fm%2Ecache%3Aa%2Ck%3Di%3Fa%5Bh%5D%3Aa%5Bh%5D%26%26h%3B%0Aif%28k%26%26j%5Bk%5D%26%26%28e%7C%7Cj%5Bk%5D%2Edata%29%7C%7Cvoid%200%21%3D%3Dd%7C%7C%22string%22%21%3Dtypeof%20b%29return%20k%7C%7C%28k%3Di%3Fa%5Bh%5D%3Dc%2Epop%28%29%7C%7Cm%2Eguid%2B%2B%3Ah%29%2Cj%5Bk%5D%7C%7C%28j%5Bk%5D%3Di%3F%7B%7D%3A%7BtoJSON%3Am%2Enoop%7D%29%2C%28%22object%22%3D%3Dtypeof%20b%7C%7C%22function%22%3D%3Dtypeof%20b%29%26%26%28e%3Fj%5Bk%5D%3Dm%2Eextend%28j%5Bk%5D%2Cb%29%3Aj%5Bk%5D%2Edata%3Dm%2Eextend%28j%5Bk%5D%2Edata%2Cb%29%29%2Cg%3Dj%5Bk%5D%2Ce%7C%7C%28g%2Edata%7C%7C%28g%2Edata%3D%7B%7D%29%2Cg%3Dg%2Edata%29%2Cvoid%200%21%3D%3Dd%26%26%28g%5Bm%2EcamelCase%28b%29%5D%3Dd%29%2C%22string%22%3D%3Dtypeof%20b%3F%28f%3Dg%5Bb%5D%2Cnull%3D%3Df%26%26%28f%3Dg%5Bm%2EcamelCase%28b%29%5D%29%29%3Af%3Dg%2Cf%7D%7Dfunction%20R%28a%2Cb%2Cc%29%7Bif%28m%2EacceptData%28a%29%29%7Bvar%20d%2Ce%2Cf%3Da%2EnodeType%2Cg%3Df%3Fm%2Ecache%3Aa%2Ch%3Df%3Fa%5Bm%2Eexpando%5D%3Am%2Eexpando%3Bif%28g%5Bh%5D%29%7Bif%28b%26%26%28d%3Dc%3Fg%5Bh%5D%3Ag%5Bh%5D%2Edata%29%29%7Bm%2EisArray%28b%29%3Fb%3Db%2Econcat%28m%2Emap%28b%2Cm%2EcamelCase%29%29%3Ab%20in%20d%3Fb%3D%5Bb%5D%3A%28b%3Dm%2EcamelCase%28b%29%2Cb%3Db%20in%20d%3F%5Bb%5D%3Ab%2Esplit%28%22%20%22%29%29%2Ce%3Db%2Elength%3Bwhile%28e%2D%2D%29delete%20d%5Bb%5Be%5D%5D%3Bif%28c%3F%21P%28d%29%3A%21m%2EisEmptyObject%28d%29%29return%7D%28c%7C%7C%28delete%20g%5Bh%5D%2Edata%2CP%28g%5Bh%5D%29%29%29%26%26%28f%3Fm%2EcleanData%28%5Ba%5D%2C%210%29%3Ak%2EdeleteExpando%7C%7Cg%21%3Dg%2Ewindow%3Fdelete%20g%5Bh%5D%3Ag%5Bh%5D%3Dnull%29%7D%7D%7Dm%2Eextend%28%7Bcache%3A%7B%7D%2CnoData%3A%7B%22applet%20%22%3A%210%2C%22embed%20%22%3A%210%2C%22object%20%22%3A%22clsid%3AD27CDB6E%2DAE6D%2D11cf%2D96B8%2D444553540000%22%7D%2ChasData%3Afunction%28a%29%7Breturn%20a%3Da%2EnodeType%3Fm%2Ecache%5Ba%5Bm%2Eexpando%5D%5D%3Aa%5Bm%2Eexpando%5D%2C%21%21a%26%26%21P%28a%29%7D%2Cdata%3Afunction%28a%2Cb%2Cc%29%7Breturn%20Q%28a%2Cb%2Cc%29%7D%2CremoveData%3Afunction%28a%2Cb%29%7Breturn%20R%28a%2Cb%29%7D%2C%5Fdata%3Afunction%28a%2Cb%2Cc%29%7Breturn%20Q%28a%2Cb%2Cc%2C%210%29%7D%2C%5FremoveData%3Afunction%28a%2Cb%29%7Breturn%20R%28a%2Cb%2C%210%29%7D%7D%29%2Cm%2Efn%2Eextend%28%7Bdata%3Afunction%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%2Cf%3Dthis%5B0%5D%2Cg%3Df%26%26f%2Eattributes%3Bif%28void%200%3D%3D%3Da%29%7Bif%28this%2Elength%26%26%28e%3Dm%2Edata%28f%29%2C1%3D%3D%3Df%2EnodeType%26%26%21m%2E%5Fdata%28f%2C%22parsedAttrs%22%29%29%29%7Bc%3Dg%2Elength%3Bwhile%28c%2D%2D%29g%5Bc%5D%26%26%28d%3Dg%5Bc%5D%2Ename%2C0%3D%3D%3Dd%2EindexOf%28%22data%2D%22%29%26%26%28d%3Dm%2EcamelCase%28d%2Eslice%285%29%29%2CO%28f%2Cd%2Ce%5Bd%5D%29%29%29%3Bm%2E%5Fdata%28f%2C%22parsedAttrs%22%2C%210%29%7Dreturn%20e%7Dreturn%22object%22%3D%3Dtypeof%20a%3Fthis%2Eeach%28function%28%29%7Bm%2Edata%28this%2Ca%29%7D%29%3Aarguments%2Elength%3E1%3Fthis%2Eeach%28function%28%29%7Bm%2Edata%28this%2Ca%2Cb%29%7D%29%3Af%3FO%28f%2Ca%2Cm%2Edata%28f%2Ca%29%29%3Avoid%200%7D%2CremoveData%3Afunction%28a%29%7Breturn%20this%2Eeach%28function%28%29%7Bm%2EremoveData%28this%2Ca%29%7D%29%7D%7D%29%2Cm%2Eextend%28%7Bqueue%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%3Breturn%20a%3F%28b%3D%28b%7C%7C%22fx%22%29%2B%22queue%22%2Cd%3Dm%2E%5Fdata%28a%2Cb%29%2Cc%26%26%28%21d%7C%7Cm%2EisArray%28c%29%3Fd%3Dm%2E%5Fdata%28a%2Cb%2Cm%2EmakeArray%28c%29%29%3Ad%2Epush%28c%29%29%2Cd%7C%7C%5B%5D%29%3Avoid%200%7D%2Cdequeue%3Afunction%28a%2Cb%29%7Bb%3Db%7C%7C%22fx%22%3Bvar%20c%3Dm%2Equeue%28a%2Cb%29%2Cd%3Dc%2Elength%2Ce%3Dc%2Eshift%28%29%2Cf%3Dm%2E%5FqueueHooks%28a%2Cb%29%2Cg%3Dfunction%28%29%7Bm%2Edequeue%28a%2Cb%29%7D%3B%22inprogress%22%3D%3D%3De%26%26%28e%3Dc%2Eshift%28%29%2Cd%2D%2D%29%2Ce%26%26%28%22fx%22%3D%3D%3Db%26%26c%2Eunshift%28%22inprogress%22%29%2Cdelete%20f%2Estop%2Ce%2Ecall%28a%2Cg%2Cf%29%29%2C%21d%26%26f%26%26f%2Eempty%2Efire%28%29%7D%2C%5FqueueHooks%3Afunction%28a%2Cb%29%7Bvar%20c%3Db%2B%22queueHooks%22%3Breturn%20m%2E%5Fdata%28a%2Cc%29%7C%7Cm%2E%5Fdata%28a%2Cc%2C%7Bempty%3Am%2ECallbacks%28%22once%20memory%22%29%2Eadd%28function%28%29%7Bm%2E%5FremoveData%28a%2Cb%2B%22queue%22%29%2Cm%2E%5FremoveData%28a%2Cc%29%7D%29%7D%29%7D%7D%29%2Cm%2Efn%2Eextend%28%7Bqueue%3Afunction%28a%2Cb%29%7Bvar%20c%3D2%3Breturn%22string%22%21%3Dtypeof%20a%26%26%28b%3Da%2Ca%3D%22fx%22%2Cc%2D%2D%29%2Carguments%2Elength%3Cc%3Fm%2Equeue%28this%5B0%5D%2Ca%29%3Avoid%200%3D%3D%3Db%3Fthis%3Athis%2Eeach%28function%28%29%7Bvar%20c%3Dm%2Equeue%28this%2Ca%2Cb%29%3Bm%2E%5FqueueHooks%28this%2Ca%29%2C%22fx%22%3D%3D%3Da%26%26%22inprogress%22%21%3D%3Dc%5B0%5D%26%26m%2Edequeue%28this%2Ca%29%7D%29%7D%2Cdequeue%3Afunction%28a%29%7Breturn%20this%2Eeach%28function%28%29%7Bm%2Edequeue%28this%2Ca%29%7D%29%7D%2CclearQueue%3Afunction%28a%29%7Breturn%20this%2Equeue%28a%7C%7C%22fx%22%2C%5B%5D%29%7D%2Cpromise%3Afunction%28a%2Cb%29%7Bvar%20c%2Cd%3D1%2Ce%3Dm%2EDeferred%28%29%2Cf%3Dthis%2Cg%3Dthis%2Elength%2Ch%3Dfunction%28%29%7B%2D%2Dd%7C%7Ce%2EresolveWith%28f%2C%5Bf%5D%29%7D%3B%22string%22%21%3Dtypeof%20a%26%26%28b%3Da%2Ca%3Dvoid%200%29%2Ca%3Da%7C%7C%22fx%22%3Bwhile%28g%2D%2D%29c%3Dm%2E%5Fdata%28f%5Bg%5D%2Ca%2B%22queueHooks%22%29%2Cc%26%26c%2Eempty%26%26%28d%2B%2B%2Cc%2Eempty%2Eadd%28h%29%29%3Breturn%20h%28%29%2Ce%2Epromise%28b%29%7D%7D%29%3Bvar%20S%3D%2F%5B%2B%2D%5D%3F%28%3F%3A%5Cd%2A%5C%2E%7C%29%5Cd%2B%28%3F%3A%5BeE%5D%5B%2B%2D%5D%3F%5Cd%2B%7C%29%2F%2Esource%2CT%3D%5B%22Top%22%2C%22Right%22%2C%22Bottom%22%2C%22Left%22%5D%2CU%3Dfunction%28a%2Cb%29%7Breturn%20a%3Db%7C%7Ca%2C%22none%22%3D%3D%3Dm%2Ecss%28a%2C%22display%22%29%7C%7C%21m%2Econtains%28a%2EownerDocument%2Ca%29%7D%2CV%3Dm%2Eaccess%3Dfunction%28a%2Cb%2Cc%2Cd%2Ce%2Cf%2Cg%29%7Bvar%20h%3D0%2Ci%3Da%2Elength%2Cj%3Dnull%3D%3Dc%3Bif%28%22object%22%3D%3D%3Dm%2Etype%28c%29%29%7Be%3D%210%3Bfor%28h%20in%20c%29m%2Eaccess%28a%2Cb%2Ch%2Cc%5Bh%5D%2C%210%2Cf%2Cg%29%7Delse%20if%28void%200%21%3D%3Dd%26%26%28e%3D%210%2Cm%2EisFunction%28d%29%7C%7C%28g%3D%210%29%2Cj%26%26%28g%3F%28b%2Ecall%28a%2Cd%29%2Cb%3Dnull%29%3A%28j%3Db%2Cb%3Dfunction%28a%2Cb%2Cc%29%7Breturn%20j%2Ecall%28m%28a%29%2Cc%29%7D%29%29%2Cb%29%29for%28%3Bi%3Eh%3Bh%2B%2B%29b%28a%5Bh%5D%2Cc%2Cg%3Fd%3Ad%2Ecall%28a%5Bh%5D%2Ch%2Cb%28a%5Bh%5D%2Cc%29%29%29%3Breturn%20e%3Fa%3Aj%3Fb%2Ecall%28a%29%3Ai%3Fb%28a%5B0%5D%2Cc%29%3Af%7D%2CW%3D%2F%5E%28%3F%3Acheckbox%7Cradio%29%24%2Fi%3B%21function%28%29%7Bvar%20a%3Dy%2EcreateElement%28%22input%22%29%2Cb%3Dy%2EcreateElement%28%22div%22%29%2Cc%3Dy%2EcreateDocumentFragment%28%29%3Bif%28b%2EinnerHTML%3D%22%20%20%3Clink%2F%3E%3Ctable%3E%3C%2Ftable%3E%3Ca%20href%3D%27%2Fa%27%3Ea%3C%2Fa%3E%3Cinput%20type%3D%27checkbox%27%2F%3E%22%2Ck%2EleadingWhitespace%3D3%3D%3D%3Db%2EfirstChild%2EnodeType%2Ck%2Etbody%3D%21b%2EgetElementsByTagName%28%22tbody%22%29%2Elength%2Ck%2EhtmlSerialize%3D%21%21b%2EgetElementsByTagName%28%22link%22%29%2Elength%2Ck%2Ehtml5Clone%3D%22%3C%3Anav%3E%3C%2F%3Anav%3E%22%21%3D%3Dy%2EcreateElement%28%22nav%22%29%2EcloneNode%28%210%29%2EouterHTML%2Ca%2Etype%3D%22checkbox%22%2Ca%2Echecked%3D%210%2Cc%2EappendChild%28a%29%2Ck%2EappendChecked%3Da%2Echecked%2Cb%2EinnerHTML%3D%22%3Ctextarea%3Ex%3C%2Ftextarea%3E%22%2Ck%2EnoCloneChecked%3D%21%21b%2EcloneNode%28%210%29%2ElastChild%2EdefaultValue%2Cc%2EappendChild%28b%29%2Cb%2EinnerHTML%3D%22%3Cinput%20type%3D%27radio%27%20checked%3D%27checked%27%20name%3D%27t%27%2F%3E%22%2Ck%2EcheckClone%3Db%2EcloneNode%28%210%29%2EcloneNode%28%210%29%2ElastChild%2Echecked%2Ck%2EnoCloneEvent%3D%210%2Cb%2EattachEvent%26%26%28b%2EattachEvent%28%22onclick%22%2Cfunction%28%29%7Bk%2EnoCloneEvent%3D%211%7D%29%2Cb%2EcloneNode%28%210%29%2Eclick%28%29%29%2Cnull%3D%3Dk%2EdeleteExpando%29%7Bk%2EdeleteExpando%3D%210%3Btry%7Bdelete%20b%2Etest%7Dcatch%28d%29%7Bk%2EdeleteExpando%3D%211%7D%7D%7D%28%29%2Cfunction%28%29%7Bvar%20b%2Cc%2Cd%3Dy%2EcreateElement%28%22div%22%29%3Bfor%28b%20in%7Bsubmit%3A%210%2Cchange%3A%210%2Cfocusin%3A%210%7D%29c%3D%22on%22%2Bb%2C%28k%5Bb%2B%22Bubbles%22%5D%3Dc%20in%20a%29%7C%7C%28d%2EsetAttribute%28c%2C%22t%22%29%2Ck%5Bb%2B%22Bubbles%22%5D%3Dd%2Eattributes%5Bc%5D%2Eexpando%3D%3D%3D%211%29%3Bd%3Dnull%7D%28%29%3Bvar%20X%3D%2F%5E%28%3F%3Ainput%7Cselect%7Ctextarea%29%24%2Fi%2CY%3D%2F%5Ekey%2F%2CZ%3D%2F%5E%28%3F%3Amouse%7Cpointer%7Ccontextmenu%29%7Cclick%2F%2C%24%3D%2F%5E%28%3F%3Afocusinfocus%7Cfocusoutblur%29%24%2F%2C%5F%3D%2F%5E%28%5B%5E%2E%5D%2A%29%28%3F%3A%5C%2E%28%2E%2B%29%7C%29%24%2F%3Bfunction%20ab%28%29%7Breturn%210%7Dfunction%20bb%28%29%7Breturn%211%7Dfunction%20cb%28%29%7Btry%7Breturn%20y%2EactiveElement%7Dcatch%28a%29%7B%7D%7Dm%2Eevent%3D%7Bglobal%3A%7B%7D%2Cadd%3Afunction%28a%2Cb%2Cc%2Cd%2Ce%29%7Bvar%20f%2Cg%2Ch%2Ci%2Cj%2Ck%2Cl%2Cn%2Co%2Cp%2Cq%2Cr%3Dm%2E%5Fdata%28a%29%3Bif%28r%29%7Bc%2Ehandler%26%26%28i%3Dc%2Cc%3Di%2Ehandler%2Ce%3Di%2Eselector%29%2Cc%2Eguid%7C%7C%28c%2Eguid%3Dm%2Eguid%2B%2B%29%2C%28g%3Dr%2Eevents%29%7C%7C%28g%3Dr%2Eevents%3D%7B%7D%29%2C%28k%3Dr%2Ehandle%29%7C%7C%28k%3Dr%2Ehandle%3Dfunction%28a%29%7Breturn%20typeof%20m%3D%3D%3DK%7C%7Ca%26%26m%2Eevent%2Etriggered%3D%3D%3Da%2Etype%3Fvoid%200%3Am%2Eevent%2Edispatch%2Eapply%28k%2Eelem%2Carguments%29%7D%2Ck%2Eelem%3Da%29%2Cb%3D%28b%7C%7C%22%22%29%2Ematch%28E%29%7C%7C%5B%22%22%5D%2Ch%3Db%2Elength%3Bwhile%28h%2D%2D%29f%3D%5F%2Eexec%28b%5Bh%5D%29%7C%7C%5B%5D%2Co%3Dq%3Df%5B1%5D%2Cp%3D%28f%5B2%5D%7C%7C%22%22%29%2Esplit%28%22%2E%22%29%2Esort%28%29%2Co%26%26%28j%3Dm%2Eevent%2Especial%5Bo%5D%7C%7C%7B%7D%2Co%3D%28e%3Fj%2EdelegateType%3Aj%2EbindType%29%7C%7Co%2Cj%3Dm%2Eevent%2Especial%5Bo%5D%7C%7C%7B%7D%2Cl%3Dm%2Eextend%28%7Btype%3Ao%2CorigType%3Aq%2Cdata%3Ad%2Chandler%3Ac%2Cguid%3Ac%2Eguid%2Cselector%3Ae%2CneedsContext%3Ae%26%26m%2Eexpr%2Ematch%2EneedsContext%2Etest%28e%29%2Cnamespace%3Ap%2Ejoin%28%22%2E%22%29%7D%2Ci%29%2C%28n%3Dg%5Bo%5D%29%7C%7C%28n%3Dg%5Bo%5D%3D%5B%5D%2Cn%2EdelegateCount%3D0%2Cj%2Esetup%26%26j%2Esetup%2Ecall%28a%2Cd%2Cp%2Ck%29%21%3D%3D%211%7C%7C%28a%2EaddEventListener%3Fa%2EaddEventListener%28o%2Ck%2C%211%29%3Aa%2EattachEvent%26%26a%2EattachEvent%28%22on%22%2Bo%2Ck%29%29%29%2Cj%2Eadd%26%26%28j%2Eadd%2Ecall%28a%2Cl%29%2Cl%2Ehandler%2Eguid%7C%7C%28l%2Ehandler%2Eguid%3Dc%2Eguid%29%29%2Ce%3Fn%2Esplice%28n%2EdelegateCount%2B%2B%2C0%2Cl%29%3An%2Epush%28l%29%2Cm%2Eevent%2Eglobal%5Bo%5D%3D%210%29%3Ba%3Dnull%7D%7D%2Cremove%3Afunction%28a%2Cb%2Cc%2Cd%2Ce%29%7Bvar%20f%2Cg%2Ch%2Ci%2Cj%2Ck%2Cl%2Cn%2Co%2Cp%2Cq%2Cr%3Dm%2EhasData%28a%29%26%26m%2E%5Fdata%28a%29%3Bif%28r%26%26%28k%3Dr%2Eevents%29%29%7Bb%3D%28b%7C%7C%22%22%29%2Ematch%28E%29%7C%7C%5B%22%22%5D%2Cj%3Db%2Elength%3Bwhile%28j%2D%2D%29if%28h%3D%5F%2Eexec%28b%5Bj%5D%29%7C%7C%5B%5D%2Co%3Dq%3Dh%5B1%5D%2Cp%3D%28h%5B2%5D%7C%7C%22%22%29%2Esplit%28%22%2E%22%29%2Esort%28%29%2Co%29%7Bl%3Dm%2Eevent%2Especial%5Bo%5D%7C%7C%7B%7D%2Co%3D%28d%3Fl%2EdelegateType%3Al%2EbindType%29%7C%7Co%2Cn%3Dk%5Bo%5D%7C%7C%5B%5D%2Ch%3Dh%5B2%5D%26%26new%20RegExp%28%22%28%5E%7C%5C%5C%2E%29%22%2Bp%2Ejoin%28%22%5C%5C%2E%28%3F%3A%2E%2A%5C%5C%2E%7C%29%22%29%2B%22%28%5C%5C%2E%7C%24%29%22%29%2Ci%3Df%3Dn%2Elength%3Bwhile%28f%2D%2D%29g%3Dn%5Bf%5D%2C%21e%26%26q%21%3D%3Dg%2EorigType%7C%7Cc%26%26c%2Eguid%21%3D%3Dg%2Eguid%7C%7Ch%26%26%21h%2Etest%28g%2Enamespace%29%7C%7Cd%26%26d%21%3D%3Dg%2Eselector%26%26%28%22%2A%2A%22%21%3D%3Dd%7C%7C%21g%2Eselector%29%7C%7C%28n%2Esplice%28f%2C1%29%2Cg%2Eselector%26%26n%2EdelegateCount%2D%2D%2Cl%2Eremove%26%26l%2Eremove%2Ecall%28a%2Cg%29%29%3Bi%26%26%21n%2Elength%26%26%28l%2Eteardown%26%26l%2Eteardown%2Ecall%28a%2Cp%2Cr%2Ehandle%29%21%3D%3D%211%7C%7Cm%2EremoveEvent%28a%2Co%2Cr%2Ehandle%29%2Cdelete%20k%5Bo%5D%29%7Delse%20for%28o%20in%20k%29m%2Eevent%2Eremove%28a%2Co%2Bb%5Bj%5D%2Cc%2Cd%2C%210%29%3Bm%2EisEmptyObject%28k%29%26%26%28delete%20r%2Ehandle%2Cm%2E%5FremoveData%28a%2C%22events%22%29%29%7D%7D%2Ctrigger%3Afunction%28b%2Cc%2Cd%2Ce%29%7Bvar%20f%2Cg%2Ch%2Ci%2Ck%2Cl%2Cn%2Co%3D%5Bd%7C%7Cy%5D%2Cp%3Dj%2Ecall%28b%2C%22type%22%29%3Fb%2Etype%3Ab%2Cq%3Dj%2Ecall%28b%2C%22namespace%22%29%3Fb%2Enamespace%2Esplit%28%22%2E%22%29%3A%5B%5D%3Bif%28h%3Dl%3Dd%3Dd%7C%7Cy%2C3%21%3D%3Dd%2EnodeType%26%268%21%3D%3Dd%2EnodeType%26%26%21%24%2Etest%28p%2Bm%2Eevent%2Etriggered%29%26%26%28p%2EindexOf%28%22%2E%22%29%3E%3D0%26%26%28q%3Dp%2Esplit%28%22%2E%22%29%2Cp%3Dq%2Eshift%28%29%2Cq%2Esort%28%29%29%2Cg%3Dp%2EindexOf%28%22%3A%22%29%3C0%26%26%22on%22%2Bp%2Cb%3Db%5Bm%2Eexpando%5D%3Fb%3Anew%20m%2EEvent%28p%2C%22object%22%3D%3Dtypeof%20b%26%26b%29%2Cb%2EisTrigger%3De%3F2%3A3%2Cb%2Enamespace%3Dq%2Ejoin%28%22%2E%22%29%2Cb%2Enamespace%5Fre%3Db%2Enamespace%3Fnew%20RegExp%28%22%28%5E%7C%5C%5C%2E%29%22%2Bq%2Ejoin%28%22%5C%5C%2E%28%3F%3A%2E%2A%5C%5C%2E%7C%29%22%29%2B%22%28%5C%5C%2E%7C%24%29%22%29%3Anull%2Cb%2Eresult%3Dvoid%200%2Cb%2Etarget%7C%7C%28b%2Etarget%3Dd%29%2Cc%3Dnull%3D%3Dc%3F%5Bb%5D%3Am%2EmakeArray%28c%2C%5Bb%5D%29%2Ck%3Dm%2Eevent%2Especial%5Bp%5D%7C%7C%7B%7D%2Ce%7C%7C%21k%2Etrigger%7C%7Ck%2Etrigger%2Eapply%28d%2Cc%29%21%3D%3D%211%29%29%7Bif%28%21e%26%26%21k%2EnoBubble%26%26%21m%2EisWindow%28d%29%29%7Bfor%28i%3Dk%2EdelegateType%7C%7Cp%2C%24%2Etest%28i%2Bp%29%7C%7C%28h%3Dh%2EparentNode%29%3Bh%3Bh%3Dh%2EparentNode%29o%2Epush%28h%29%2Cl%3Dh%3Bl%3D%3D%3D%28d%2EownerDocument%7C%7Cy%29%26%26o%2Epush%28l%2EdefaultView%7C%7Cl%2EparentWindow%7C%7Ca%29%7Dn%3D0%3Bwhile%28%28h%3Do%5Bn%2B%2B%5D%29%26%26%21b%2EisPropagationStopped%28%29%29b%2Etype%3Dn%3E1%3Fi%3Ak%2EbindType%7C%7Cp%2Cf%3D%28m%2E%5Fdata%28h%2C%22events%22%29%7C%7C%7B%7D%29%5Bb%2Etype%5D%26%26m%2E%5Fdata%28h%2C%22handle%22%29%2Cf%26%26f%2Eapply%28h%2Cc%29%2Cf%3Dg%26%26h%5Bg%5D%2Cf%26%26f%2Eapply%26%26m%2EacceptData%28h%29%26%26%28b%2Eresult%3Df%2Eapply%28h%2Cc%29%2Cb%2Eresult%3D%3D%3D%211%26%26b%2EpreventDefault%28%29%29%3Bif%28b%2Etype%3Dp%2C%21e%26%26%21b%2EisDefaultPrevented%28%29%26%26%28%21k%2E%5Fdefault%7C%7Ck%2E%5Fdefault%2Eapply%28o%2Epop%28%29%2Cc%29%3D%3D%3D%211%29%26%26m%2EacceptData%28d%29%26%26g%26%26d%5Bp%5D%26%26%21m%2EisWindow%28d%29%29%7Bl%3Dd%5Bg%5D%2Cl%26%26%28d%5Bg%5D%3Dnull%29%2Cm%2Eevent%2Etriggered%3Dp%3Btry%7Bd%5Bp%5D%28%29%7Dcatch%28r%29%7B%7Dm%2Eevent%2Etriggered%3Dvoid%200%2Cl%26%26%28d%5Bg%5D%3Dl%29%7Dreturn%20b%2Eresult%7D%7D%2Cdispatch%3Afunction%28a%29%7Ba%3Dm%2Eevent%2Efix%28a%29%3Bvar%20b%2Cc%2Ce%2Cf%2Cg%2Ch%3D%5B%5D%2Ci%3Dd%2Ecall%28arguments%29%2Cj%3D%28m%2E%5Fdata%28this%2C%22events%22%29%7C%7C%7B%7D%29%5Ba%2Etype%5D%7C%7C%5B%5D%2Ck%3Dm%2Eevent%2Especial%5Ba%2Etype%5D%7C%7C%7B%7D%3Bif%28i%5B0%5D%3Da%2Ca%2EdelegateTarget%3Dthis%2C%21k%2EpreDispatch%7C%7Ck%2EpreDispatch%2Ecall%28this%2Ca%29%21%3D%3D%211%29%7Bh%3Dm%2Eevent%2Ehandlers%2Ecall%28this%2Ca%2Cj%29%2Cb%3D0%3Bwhile%28%28f%3Dh%5Bb%2B%2B%5D%29%26%26%21a%2EisPropagationStopped%28%29%29%7Ba%2EcurrentTarget%3Df%2Eelem%2Cg%3D0%3Bwhile%28%28e%3Df%2Ehandlers%5Bg%2B%2B%5D%29%26%26%21a%2EisImmediatePropagationStopped%28%29%29%28%21a%2Enamespace%5Fre%7C%7Ca%2Enamespace%5Fre%2Etest%28e%2Enamespace%29%29%26%26%28a%2EhandleObj%3De%2Ca%2Edata%3De%2Edata%2Cc%3D%28%28m%2Eevent%2Especial%5Be%2EorigType%5D%7C%7C%7B%7D%29%2Ehandle%7C%7Ce%2Ehandler%29%2Eapply%28f%2Eelem%2Ci%29%2Cvoid%200%21%3D%3Dc%26%26%28a%2Eresult%3Dc%29%3D%3D%3D%211%26%26%28a%2EpreventDefault%28%29%2Ca%2EstopPropagation%28%29%29%29%7Dreturn%20k%2EpostDispatch%26%26k%2EpostDispatch%2Ecall%28this%2Ca%29%2Ca%2Eresult%7D%7D%2Chandlers%3Afunction%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%2Cf%2Cg%3D%5B%5D%2Ch%3Db%2EdelegateCount%2Ci%3Da%2Etarget%3Bif%28h%26%26i%2EnodeType%26%26%28%21a%2Ebutton%7C%7C%22click%22%21%3D%3Da%2Etype%29%29for%28%3Bi%21%3Dthis%3Bi%3Di%2EparentNode%7C%7Cthis%29if%281%3D%3D%3Di%2EnodeType%26%26%28i%2Edisabled%21%3D%3D%210%7C%7C%22click%22%21%3D%3Da%2Etype%29%29%7Bfor%28e%3D%5B%5D%2Cf%3D0%3Bh%3Ef%3Bf%2B%2B%29d%3Db%5Bf%5D%2Cc%3Dd%2Eselector%2B%22%20%22%2Cvoid%200%3D%3D%3De%5Bc%5D%26%26%28e%5Bc%5D%3Dd%2EneedsContext%3Fm%28c%2Cthis%29%2Eindex%28i%29%3E%3D0%3Am%2Efind%28c%2Cthis%2Cnull%2C%5Bi%5D%29%2Elength%29%2Ce%5Bc%5D%26%26e%2Epush%28d%29%3Be%2Elength%26%26g%2Epush%28%7Belem%3Ai%2Chandlers%3Ae%7D%29%7Dreturn%20h%3Cb%2Elength%26%26g%2Epush%28%7Belem%3Athis%2Chandlers%3Ab%2Eslice%28h%29%7D%29%2Cg%7D%2Cfix%3Afunction%28a%29%7Bif%28a%5Bm%2Eexpando%5D%29return%20a%3Bvar%20b%2Cc%2Cd%2Ce%3Da%2Etype%2Cf%3Da%2Cg%3Dthis%2EfixHooks%5Be%5D%3Bg%7C%7C%28this%2EfixHooks%5Be%5D%3Dg%3DZ%2Etest%28e%29%3Fthis%2EmouseHooks%3AY%2Etest%28e%29%3Fthis%2EkeyHooks%3A%7B%7D%29%2Cd%3Dg%2Eprops%3Fthis%2Eprops%2Econcat%28g%2Eprops%29%3Athis%2Eprops%2Ca%3Dnew%20m%2EEvent%28f%29%2Cb%3Dd%2Elength%3Bwhile%28b%2D%2D%29c%3Dd%5Bb%5D%2Ca%5Bc%5D%3Df%5Bc%5D%3Breturn%20a%2Etarget%7C%7C%28a%2Etarget%3Df%2EsrcElement%7C%7Cy%29%2C3%3D%3D%3Da%2Etarget%2EnodeType%26%26%28a%2Etarget%3Da%2Etarget%2EparentNode%29%2Ca%2EmetaKey%3D%21%21a%2EmetaKey%2Cg%2Efilter%3Fg%2Efilter%28a%2Cf%29%3Aa%7D%2Cprops%3A%22altKey%20bubbles%20cancelable%20ctrlKey%20currentTarget%20eventPhase%20metaKey%20relatedTarget%20shiftKey%20target%20timeStamp%20view%20which%22%2Esplit%28%22%20%22%29%2CfixHooks%3A%7B%7D%2CkeyHooks%3A%7Bprops%3A%22char%20charCode%20key%20keyCode%22%2Esplit%28%22%20%22%29%2Cfilter%3Afunction%28a%2Cb%29%7Breturn%20null%3D%3Da%2Ewhich%26%26%28a%2Ewhich%3Dnull%21%3Db%2EcharCode%3Fb%2EcharCode%3Ab%2EkeyCode%29%2Ca%7D%7D%2CmouseHooks%3A%7Bprops%3A%22button%20buttons%20clientX%20clientY%20fromElement%20offsetX%20offsetY%20pageX%20pageY%20screenX%20screenY%20toElement%22%2Esplit%28%22%20%22%29%2Cfilter%3Afunction%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%2Cf%3Db%2Ebutton%2Cg%3Db%2EfromElement%3Breturn%20null%3D%3Da%2EpageX%26%26null%21%3Db%2EclientX%26%26%28d%3Da%2Etarget%2EownerDocument%7C%7Cy%2Ce%3Dd%2EdocumentElement%2Cc%3Dd%2Ebody%2Ca%2EpageX%3Db%2EclientX%2B%28e%26%26e%2EscrollLeft%7C%7Cc%26%26c%2EscrollLeft%7C%7C0%29%2D%28e%26%26e%2EclientLeft%7C%7Cc%26%26c%2EclientLeft%7C%7C0%29%2Ca%2EpageY%3Db%2EclientY%2B%28e%26%26e%2EscrollTop%7C%7Cc%26%26c%2EscrollTop%7C%7C0%29%2D%28e%26%26e%2EclientTop%7C%7Cc%26%26c%2EclientTop%7C%7C0%29%29%2C%21a%2ErelatedTarget%26%26g%26%26%28a%2ErelatedTarget%3Dg%3D%3D%3Da%2Etarget%3Fb%2EtoElement%3Ag%29%2Ca%2Ewhich%7C%7Cvoid%200%3D%3D%3Df%7C%7C%28a%2Ewhich%3D1%26f%3F1%3A2%26f%3F3%3A4%26f%3F2%3A0%29%2Ca%7D%7D%2Cspecial%3A%7Bload%3A%7BnoBubble%3A%210%7D%2Cfocus%3A%7Btrigger%3Afunction%28%29%7Bif%28this%21%3D%3Dcb%28%29%26%26this%2Efocus%29try%7Breturn%20this%2Efocus%28%29%2C%211%7Dcatch%28a%29%7B%7D%7D%2CdelegateType%3A%22focusin%22%7D%2Cblur%3A%7Btrigger%3Afunction%28%29%7Breturn%20this%3D%3D%3Dcb%28%29%26%26this%2Eblur%3F%28this%2Eblur%28%29%2C%211%29%3Avoid%200%7D%2CdelegateType%3A%22focusout%22%7D%2Cclick%3A%7Btrigger%3Afunction%28%29%7Breturn%20m%2EnodeName%28this%2C%22input%22%29%26%26%22checkbox%22%3D%3D%3Dthis%2Etype%26%26this%2Eclick%3F%28this%2Eclick%28%29%2C%211%29%3Avoid%200%7D%2C%5Fdefault%3Afunction%28a%29%7Breturn%20m%2EnodeName%28a%2Etarget%2C%22a%22%29%7D%7D%2Cbeforeunload%3A%7BpostDispatch%3Afunction%28a%29%7Bvoid%200%21%3D%3Da%2Eresult%26%26a%2EoriginalEvent%26%26%28a%2EoriginalEvent%2EreturnValue%3Da%2Eresult%29%7D%7D%7D%2Csimulate%3Afunction%28a%2Cb%2Cc%2Cd%29%7Bvar%20e%3Dm%2Eextend%28new%20m%2EEvent%2Cc%2C%7Btype%3Aa%2CisSimulated%3A%210%2CoriginalEvent%3A%7B%7D%7D%29%3Bd%3Fm%2Eevent%2Etrigger%28e%2Cnull%2Cb%29%3Am%2Eevent%2Edispatch%2Ecall%28b%2Ce%29%2Ce%2EisDefaultPrevented%28%29%26%26c%2EpreventDefault%28%29%7D%7D%2Cm%2EremoveEvent%3Dy%2EremoveEventListener%3Ffunction%28a%2Cb%2Cc%29%7Ba%2EremoveEventListener%26%26a%2EremoveEventListener%28b%2Cc%2C%211%29%7D%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%3D%22on%22%2Bb%3Ba%2EdetachEvent%26%26%28typeof%20a%5Bd%5D%3D%3D%3DK%26%26%28a%5Bd%5D%3Dnull%29%2Ca%2EdetachEvent%28d%2Cc%29%29%7D%2Cm%2EEvent%3Dfunction%28a%2Cb%29%7Breturn%20this%20instanceof%20m%2EEvent%3F%28a%26%26a%2Etype%3F%28this%2EoriginalEvent%3Da%2Cthis%2Etype%3Da%2Etype%2Cthis%2EisDefaultPrevented%3Da%2EdefaultPrevented%7C%7Cvoid%200%3D%3D%3Da%2EdefaultPrevented%26%26a%2EreturnValue%3D%3D%3D%211%3Fab%3Abb%29%3Athis%2Etype%3Da%2Cb%26%26m%2Eextend%28this%2Cb%29%2Cthis%2EtimeStamp%3Da%26%26a%2EtimeStamp%7C%7Cm%2Enow%28%29%2Cvoid%28this%5Bm%2Eexpando%5D%3D%210%29%29%3Anew%20m%2EEvent%28a%2Cb%29%7D%2Cm%2EEvent%2Eprototype%3D%7BisDefaultPrevented%3Abb%2CisPropagationStopped%3Abb%2CisImmediatePropagationStopped%3Abb%2CpreventDefault%3Afunction%28%29%7Bvar%20a%3Dthis%2EoriginalEvent%3Bthis%2EisDefaultPrevented%3Dab%2Ca%26%26%28a%2EpreventDefault%3Fa%2EpreventDefault%28%29%3Aa%2EreturnValue%3D%211%29%7D%2CstopPropagation%3Afunction%28%29%7Bvar%20a%3Dthis%2EoriginalEvent%3Bthis%2EisPropagationStopped%3Dab%2Ca%26%26%28a%2EstopPropagation%26%26a%2EstopPropagation%28%29%2Ca%2EcancelBubble%3D%210%29%7D%2CstopImmediatePropagation%3Afunction%28%29%7Bvar%20a%3Dthis%2EoriginalEvent%3Bthis%2EisImmediatePropagationStopped%3Dab%2Ca%26%26a%2EstopImmediatePropagation%26%26a%2EstopImmediatePropagation%28%29%2Cthis%2EstopPropagation%28%29%7D%7D%2Cm%2Eeach%28%7Bmouseenter%3A%22mouseover%22%2Cmouseleave%3A%22mouseout%22%2Cpointerenter%3A%22pointerover%22%2Cpointerleave%3A%22pointerout%22%7D%2Cfunction%28a%2Cb%29%7Bm%2Eevent%2Especial%5Ba%5D%3D%7BdelegateType%3Ab%2CbindType%3Ab%2Chandle%3Afunction%28a%29%7Bvar%20c%2Cd%3Dthis%2Ce%3Da%2ErelatedTarget%2Cf%3Da%2EhandleObj%3Breturn%28%21e%7C%7Ce%21%3D%3Dd%26%26%21m%2Econtains%28d%2Ce%29%29%26%26%28a%2Etype%3Df%2EorigType%2Cc%3Df%2Ehandler%2Eapply%28this%2Carguments%29%2Ca%2Etype%3Db%29%2Cc%7D%7D%7D%29%2Ck%2EsubmitBubbles%7C%7C%28m%2Eevent%2Especial%2Esubmit%3D%7Bsetup%3Afunction%28%29%7Breturn%20m%2EnodeName%28this%2C%22form%22%29%3F%211%3Avoid%20m%2Eevent%2Eadd%28this%2C%22click%2E%5Fsubmit%20keypress%2E%5Fsubmit%22%2Cfunction%28a%29%7Bvar%20b%3Da%2Etarget%2Cc%3Dm%2EnodeName%28b%2C%22input%22%29%7C%7Cm%2EnodeName%28b%2C%22button%22%29%3Fb%2Eform%3Avoid%200%3Bc%26%26%21m%2E%5Fdata%28c%2C%22submitBubbles%22%29%26%26%28m%2Eevent%2Eadd%28c%2C%22submit%2E%5Fsubmit%22%2Cfunction%28a%29%7Ba%2E%5Fsubmit%5Fbubble%3D%210%7D%29%2Cm%2E%5Fdata%28c%2C%22submitBubbles%22%2C%210%29%29%7D%29%7D%2CpostDispatch%3Afunction%28a%29%7Ba%2E%5Fsubmit%5Fbubble%26%26%28delete%20a%2E%5Fsubmit%5Fbubble%2Cthis%2EparentNode%26%26%21a%2EisTrigger%26%26m%2Eevent%2Esimulate%28%22submit%22%2Cthis%2EparentNode%2Ca%2C%210%29%29%7D%2Cteardown%3Afunction%28%29%7Breturn%20m%2EnodeName%28this%2C%22form%22%29%3F%211%3Avoid%20m%2Eevent%2Eremove%28this%2C%22%2E%5Fsubmit%22%29%7D%7D%29%2Ck%2EchangeBubbles%7C%7C%28m%2Eevent%2Especial%2Echange%3D%7Bsetup%3Afunction%28%29%7Breturn%20X%2Etest%28this%2EnodeName%29%3F%28%28%22checkbox%22%3D%3D%3Dthis%2Etype%7C%7C%22radio%22%3D%3D%3Dthis%2Etype%29%26%26%28m%2Eevent%2Eadd%28this%2C%22propertychange%2E%5Fchange%22%2Cfunction%28a%29%7B%22checked%22%3D%3D%3Da%2EoriginalEvent%2EpropertyName%26%26%28this%2E%5Fjust%5Fchanged%3D%210%29%7D%29%2Cm%2Eevent%2Eadd%28this%2C%22click%2E%5Fchange%22%2Cfunction%28a%29%7Bthis%2E%5Fjust%5Fchanged%26%26%21a%2EisTrigger%26%26%28this%2E%5Fjust%5Fchanged%3D%211%29%2Cm%2Eevent%2Esimulate%28%22change%22%2Cthis%2Ca%2C%210%29%7D%29%29%2C%211%29%3Avoid%20m%2Eevent%2Eadd%28this%2C%22beforeactivate%2E%5Fchange%22%2Cfunction%28a%29%7Bvar%20b%3Da%2Etarget%3BX%2Etest%28b%2EnodeName%29%26%26%21m%2E%5Fdata%28b%2C%22changeBubbles%22%29%26%26%28m%2Eevent%2Eadd%28b%2C%22change%2E%5Fchange%22%2Cfunction%28a%29%7B%21this%2EparentNode%7C%7Ca%2EisSimulated%7C%7Ca%2EisTrigger%7C%7Cm%2Eevent%2Esimulate%28%22change%22%2Cthis%2EparentNode%2Ca%2C%210%29%7D%29%2Cm%2E%5Fdata%28b%2C%22changeBubbles%22%2C%210%29%29%7D%29%7D%2Chandle%3Afunction%28a%29%7Bvar%20b%3Da%2Etarget%3Breturn%20this%21%3D%3Db%7C%7Ca%2EisSimulated%7C%7Ca%2EisTrigger%7C%7C%22radio%22%21%3D%3Db%2Etype%26%26%22checkbox%22%21%3D%3Db%2Etype%3Fa%2EhandleObj%2Ehandler%2Eapply%28this%2Carguments%29%3Avoid%200%7D%2Cteardown%3Afunction%28%29%7Breturn%20m%2Eevent%2Eremove%28this%2C%22%2E%5Fchange%22%29%2C%21X%2Etest%28this%2EnodeName%29%7D%7D%29%2Ck%2EfocusinBubbles%7C%7Cm%2Eeach%28%7Bfocus%3A%22focusin%22%2Cblur%3A%22focusout%22%7D%2Cfunction%28a%2Cb%29%7Bvar%20c%3Dfunction%28a%29%7Bm%2Eevent%2Esimulate%28b%2Ca%2Etarget%2Cm%2Eevent%2Efix%28a%29%2C%210%29%7D%3Bm%2Eevent%2Especial%5Bb%5D%3D%7Bsetup%3Afunction%28%29%7Bvar%20d%3Dthis%2EownerDocument%7C%7Cthis%2Ce%3Dm%2E%5Fdata%28d%2Cb%29%3Be%7C%7Cd%2EaddEventListener%28a%2Cc%2C%210%29%2Cm%2E%5Fdata%28d%2Cb%2C%28e%7C%7C0%29%2B1%29%7D%2Cteardown%3Afunction%28%29%7Bvar%20d%3Dthis%2EownerDocument%7C%7Cthis%2Ce%3Dm%2E%5Fdata%28d%2Cb%29%2D1%3Be%3Fm%2E%5Fdata%28d%2Cb%2Ce%29%3A%28d%2EremoveEventListener%28a%2Cc%2C%210%29%2Cm%2E%5FremoveData%28d%2Cb%29%29%7D%7D%7D%29%2Cm%2Efn%2Eextend%28%7Bon%3Afunction%28a%2Cb%2Cc%2Cd%2Ce%29%7Bvar%20f%2Cg%3Bif%28%22object%22%3D%3Dtypeof%20a%29%7B%22string%22%21%3Dtypeof%20b%26%26%28c%3Dc%7C%7Cb%2Cb%3Dvoid%200%29%3Bfor%28f%20in%20a%29this%2Eon%28f%2Cb%2Cc%2Ca%5Bf%5D%2Ce%29%3Breturn%20this%7Dif%28null%3D%3Dc%26%26null%3D%3Dd%3F%28d%3Db%2Cc%3Db%3Dvoid%200%29%3Anull%3D%3Dd%26%26%28%22string%22%3D%3Dtypeof%20b%3F%28d%3Dc%2Cc%3Dvoid%200%29%3A%28d%3Dc%2Cc%3Db%2Cb%3Dvoid%200%29%29%2Cd%3D%3D%3D%211%29d%3Dbb%3Belse%20if%28%21d%29return%20this%3Breturn%201%3D%3D%3De%26%26%28g%3Dd%2Cd%3Dfunction%28a%29%7Breturn%20m%28%29%2Eoff%28a%29%2Cg%2Eapply%28this%2Carguments%29%7D%2Cd%2Eguid%3Dg%2Eguid%7C%7C%28g%2Eguid%3Dm%2Eguid%2B%2B%29%29%2Cthis%2Eeach%28function%28%29%7Bm%2Eevent%2Eadd%28this%2Ca%2Cd%2Cc%2Cb%29%7D%29%7D%2Cone%3Afunction%28a%2Cb%2Cc%2Cd%29%7Breturn%20this%2Eon%28a%2Cb%2Cc%2Cd%2C1%29%7D%2Coff%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%3Bif%28a%26%26a%2EpreventDefault%26%26a%2EhandleObj%29return%20d%3Da%2EhandleObj%2Cm%28a%2EdelegateTarget%29%2Eoff%28d%2Enamespace%3Fd%2EorigType%2B%22%2E%22%2Bd%2Enamespace%3Ad%2EorigType%2Cd%2Eselector%2Cd%2Ehandler%29%2Cthis%3Bif%28%22object%22%3D%3Dtypeof%20a%29%7Bfor%28e%20in%20a%29this%2Eoff%28e%2Cb%2Ca%5Be%5D%29%3Breturn%20this%7Dreturn%28b%3D%3D%3D%211%7C%7C%22function%22%3D%3Dtypeof%20b%29%26%26%28c%3Db%2Cb%3Dvoid%200%29%2Cc%3D%3D%3D%211%26%26%28c%3Dbb%29%2Cthis%2Eeach%28function%28%29%7Bm%2Eevent%2Eremove%28this%2Ca%2Cc%2Cb%29%7D%29%7D%2Ctrigger%3Afunction%28a%2Cb%29%7Breturn%20this%2Eeach%28function%28%29%7Bm%2Eevent%2Etrigger%28a%2Cb%2Cthis%29%7D%29%7D%2CtriggerHandler%3Afunction%28a%2Cb%29%7Bvar%20c%3Dthis%5B0%5D%3Breturn%20c%3Fm%2Eevent%2Etrigger%28a%2Cb%2Cc%2C%210%29%3Avoid%200%7D%7D%29%3Bfunction%20db%28a%29%7Bvar%20b%3Deb%2Esplit%28%22%7C%22%29%2Cc%3Da%2EcreateDocumentFragment%28%29%3Bif%28c%2EcreateElement%29while%28b%2Elength%29c%2EcreateElement%28b%2Epop%28%29%29%3Breturn%20c%7Dvar%20eb%3D%22abbr%7Carticle%7Caside%7Caudio%7Cbdi%7Ccanvas%7Cdata%7Cdatalist%7Cdetails%7Cfigcaption%7Cfigure%7Cfooter%7Cheader%7Chgroup%7Cmark%7Cmeter%7Cnav%7Coutput%7Cprogress%7Csection%7Csummary%7Ctime%7Cvideo%22%2Cfb%3D%2F%20jQuery%5Cd%2B%3D%22%28%3F%3Anull%7C%5Cd%2B%29%22%2Fg%2Cgb%3Dnew%20RegExp%28%22%3C%28%3F%3A%22%2Beb%2B%22%29%5B%5C%5Cs%2F%3E%5D%22%2C%22i%22%29%2Chb%3D%2F%5E%5Cs%2B%2F%2Cib%3D%2F%3C%28%3F%21area%7Cbr%7Ccol%7Cembed%7Chr%7Cimg%7Cinput%7Clink%7Cmeta%7Cparam%29%28%28%5B%5Cw%3A%5D%2B%29%5B%5E%3E%5D%2A%29%5C%2F%3E%2Fgi%2Cjb%3D%2F%3C%28%5B%5Cw%3A%5D%2B%29%2F%2Ckb%3D%2F%3Ctbody%2Fi%2Clb%3D%2F%3C%7C%26%23%3F%5Cw%2B%3B%2F%2Cmb%3D%2F%3C%28%3F%3Ascript%7Cstyle%7Clink%29%2Fi%2Cnb%3D%2Fchecked%5Cs%2A%28%3F%3A%5B%5E%3D%5D%7C%3D%5Cs%2A%2Echecked%2E%29%2Fi%2Cob%3D%2F%5E%24%7C%5C%2F%28%3F%3Ajava%7Cecma%29script%2Fi%2Cpb%3D%2F%5Etrue%5C%2F%28%2E%2A%29%2F%2Cqb%3D%2F%5E%5Cs%2A%3C%21%28%3F%3A%5C%5BCDATA%5C%5B%7C%2D%2D%29%7C%28%3F%3A%5C%5D%5C%5D%7C%2D%2D%29%3E%5Cs%2A%24%2Fg%2Crb%3D%7Boption%3A%5B1%2C%22%3Cselect%20multiple%3D%27multiple%27%3E%22%2C%22%3C%2Fselect%3E%22%5D%2Clegend%3A%5B1%2C%22%3Cfieldset%3E%22%2C%22%3C%2Ffieldset%3E%22%5D%2Carea%3A%5B1%2C%22%3Cmap%3E%22%2C%22%3C%2Fmap%3E%22%5D%2Cparam%3A%5B1%2C%22%3Cobject%3E%22%2C%22%3C%2Fobject%3E%22%5D%2Cthead%3A%5B1%2C%22%3Ctable%3E%22%2C%22%3C%2Ftable%3E%22%5D%2Ctr%3A%5B2%2C%22%3Ctable%3E%3Ctbody%3E%22%2C%22%3C%2Ftbody%3E%3C%2Ftable%3E%22%5D%2Ccol%3A%5B2%2C%22%3Ctable%3E%3Ctbody%3E%3C%2Ftbody%3E%3Ccolgroup%3E%22%2C%22%3C%2Fcolgroup%3E%3C%2Ftable%3E%22%5D%2Ctd%3A%5B3%2C%22%3Ctable%3E%3Ctbody%3E%3Ctr%3E%22%2C%22%3C%2Ftr%3E%3C%2Ftbody%3E%3C%2Ftable%3E%22%5D%2C%5Fdefault%3Ak%2EhtmlSerialize%3F%5B0%2C%22%22%2C%22%22%5D%3A%5B1%2C%22X%3Cdiv%3E%22%2C%22%3C%2Fdiv%3E%22%5D%7D%2Csb%3Ddb%28y%29%2Ctb%3Dsb%2EappendChild%28y%2EcreateElement%28%22div%22%29%29%3Brb%2Eoptgroup%3Drb%2Eoption%2Crb%2Etbody%3Drb%2Etfoot%3Drb%2Ecolgroup%3Drb%2Ecaption%3Drb%2Ethead%2Crb%2Eth%3Drb%2Etd%3Bfunction%20ub%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%3D0%2Cf%3Dtypeof%20a%2EgetElementsByTagName%21%3D%3DK%3Fa%2EgetElementsByTagName%28b%7C%7C%22%2A%22%29%3Atypeof%20a%2EquerySelectorAll%21%3D%3DK%3Fa%2EquerySelectorAll%28b%7C%7C%22%2A%22%29%3Avoid%200%3Bif%28%21f%29for%28f%3D%5B%5D%2Cc%3Da%2EchildNodes%7C%7Ca%3Bnull%21%3D%28d%3Dc%5Be%5D%29%3Be%2B%2B%29%21b%7C%7Cm%2EnodeName%28d%2Cb%29%3Ff%2Epush%28d%29%3Am%2Emerge%28f%2Cub%28d%2Cb%29%29%3Breturn%20void%200%3D%3D%3Db%7C%7Cb%26%26m%2EnodeName%28a%2Cb%29%3Fm%2Emerge%28%5Ba%5D%2Cf%29%3Af%7Dfunction%20vb%28a%29%7BW%2Etest%28a%2Etype%29%26%26%28a%2EdefaultChecked%3Da%2Echecked%29%7Dfunction%20wb%28a%2Cb%29%7Breturn%20m%2EnodeName%28a%2C%22table%22%29%26%26m%2EnodeName%2811%21%3D%3Db%2EnodeType%3Fb%3Ab%2EfirstChild%2C%22tr%22%29%3Fa%2EgetElementsByTagName%28%22tbody%22%29%5B0%5D%7C%7Ca%2EappendChild%28a%2EownerDocument%2EcreateElement%28%22tbody%22%29%29%3Aa%7Dfunction%20xb%28a%29%7Breturn%20a%2Etype%3D%28null%21%3D%3Dm%2Efind%2Eattr%28a%2C%22type%22%29%29%2B%22%2F%22%2Ba%2Etype%2Ca%7Dfunction%20yb%28a%29%7Bvar%20b%3Dpb%2Eexec%28a%2Etype%29%3Breturn%20b%3Fa%2Etype%3Db%5B1%5D%3Aa%2EremoveAttribute%28%22type%22%29%2Ca%7Dfunction%20zb%28a%2Cb%29%7Bfor%28var%20c%2Cd%3D0%3Bnull%21%3D%28c%3Da%5Bd%5D%29%3Bd%2B%2B%29m%2E%5Fdata%28c%2C%22globalEval%22%2C%21b%7C%7Cm%2E%5Fdata%28b%5Bd%5D%2C%22globalEval%22%29%29%7Dfunction%20Ab%28a%2Cb%29%7Bif%281%3D%3D%3Db%2EnodeType%26%26m%2EhasData%28a%29%29%7Bvar%20c%2Cd%2Ce%2Cf%3Dm%2E%5Fdata%28a%29%2Cg%3Dm%2E%5Fdata%28b%2Cf%29%2Ch%3Df%2Eevents%3Bif%28h%29%7Bdelete%20g%2Ehandle%2Cg%2Eevents%3D%7B%7D%3Bfor%28c%20in%20h%29for%28d%3D0%2Ce%3Dh%5Bc%5D%2Elength%3Be%3Ed%3Bd%2B%2B%29m%2Eevent%2Eadd%28b%2Cc%2Ch%5Bc%5D%5Bd%5D%29%7Dg%2Edata%26%26%28g%2Edata%3Dm%2Eextend%28%7B%7D%2Cg%2Edata%29%29%7D%7Dfunction%20Bb%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%3Bif%281%3D%3D%3Db%2EnodeType%29%7Bif%28c%3Db%2EnodeName%2EtoLowerCase%28%29%2C%21k%2EnoCloneEvent%26%26b%5Bm%2Eexpando%5D%29%7Be%3Dm%2E%5Fdata%28b%29%3Bfor%28d%20in%20e%2Eevents%29m%2EremoveEvent%28b%2Cd%2Ce%2Ehandle%29%3Bb%2EremoveAttribute%28m%2Eexpando%29%7D%22script%22%3D%3D%3Dc%26%26b%2Etext%21%3D%3Da%2Etext%3F%28xb%28b%29%2Etext%3Da%2Etext%2Cyb%28b%29%29%3A%22object%22%3D%3D%3Dc%3F%28b%2EparentNode%26%26%28b%2EouterHTML%3Da%2EouterHTML%29%2Ck%2Ehtml5Clone%26%26a%2EinnerHTML%26%26%21m%2Etrim%28b%2EinnerHTML%29%26%26%28b%2EinnerHTML%3Da%2EinnerHTML%29%29%3A%22input%22%3D%3D%3Dc%26%26W%2Etest%28a%2Etype%29%3F%28b%2EdefaultChecked%3Db%2Echecked%3Da%2Echecked%2Cb%2Evalue%21%3D%3Da%2Evalue%26%26%28b%2Evalue%3Da%2Evalue%29%29%3A%22option%22%3D%3D%3Dc%3Fb%2EdefaultSelected%3Db%2Eselected%3Da%2EdefaultSelected%3A%28%22input%22%3D%3D%3Dc%7C%7C%22textarea%22%3D%3D%3Dc%29%26%26%28b%2EdefaultValue%3Da%2EdefaultValue%29%7D%7Dm%2Eextend%28%7Bclone%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%2Cg%2Ch%2Ci%3Dm%2Econtains%28a%2EownerDocument%2Ca%29%3Bif%28k%2Ehtml5Clone%7C%7Cm%2EisXMLDoc%28a%29%7C%7C%21gb%2Etest%28%22%3C%22%2Ba%2EnodeName%2B%22%3E%22%29%3Ff%3Da%2EcloneNode%28%210%29%3A%28tb%2EinnerHTML%3Da%2EouterHTML%2Ctb%2EremoveChild%28f%3Dtb%2EfirstChild%29%29%2C%21%28k%2EnoCloneEvent%26%26k%2EnoCloneChecked%7C%7C1%21%3D%3Da%2EnodeType%26%2611%21%3D%3Da%2EnodeType%7C%7Cm%2EisXMLDoc%28a%29%29%29for%28d%3Dub%28f%29%2Ch%3Dub%28a%29%2Cg%3D0%3Bnull%21%3D%28e%3Dh%5Bg%5D%29%3B%2B%2Bg%29d%5Bg%5D%26%26Bb%28e%2Cd%5Bg%5D%29%3Bif%28b%29if%28c%29for%28h%3Dh%7C%7Cub%28a%29%2Cd%3Dd%7C%7Cub%28f%29%2Cg%3D0%3Bnull%21%3D%28e%3Dh%5Bg%5D%29%3Bg%2B%2B%29Ab%28e%2Cd%5Bg%5D%29%3Belse%20Ab%28a%2Cf%29%3Breturn%20d%3Dub%28f%2C%22script%22%29%2Cd%2Elength%3E0%26%26zb%28d%2C%21i%26%26ub%28a%2C%22script%22%29%29%2Cd%3Dh%3De%3Dnull%2Cf%7D%2CbuildFragment%3Afunction%28a%2Cb%2Cc%2Cd%29%7Bfor%28var%20e%2Cf%2Cg%2Ch%2Ci%2Cj%2Cl%2Cn%3Da%2Elength%2Co%3Ddb%28b%29%2Cp%3D%5B%5D%2Cq%3D0%3Bn%3Eq%3Bq%2B%2B%29if%28f%3Da%5Bq%5D%2Cf%7C%7C0%3D%3D%3Df%29if%28%22object%22%3D%3D%3Dm%2Etype%28f%29%29m%2Emerge%28p%2Cf%2EnodeType%3F%5Bf%5D%3Af%29%3Belse%20if%28lb%2Etest%28f%29%29%7Bh%3Dh%7C%7Co%2EappendChild%28b%2EcreateElement%28%22div%22%29%29%2Ci%3D%28jb%2Eexec%28f%29%7C%7C%5B%22%22%2C%22%22%5D%29%5B1%5D%2EtoLowerCase%28%29%2Cl%3Drb%5Bi%5D%7C%7Crb%2E%5Fdefault%2Ch%2EinnerHTML%3Dl%5B1%5D%2Bf%2Ereplace%28ib%2C%22%3C%241%3E%3C%2F%242%3E%22%29%2Bl%5B2%5D%2Ce%3Dl%5B0%5D%3Bwhile%28e%2D%2D%29h%3Dh%2ElastChild%3Bif%28%21k%2EleadingWhitespace%26%26hb%2Etest%28f%29%26%26p%2Epush%28b%2EcreateTextNode%28hb%2Eexec%28f%29%5B0%5D%29%29%2C%21k%2Etbody%29%7Bf%3D%22table%22%21%3D%3Di%7C%7Ckb%2Etest%28f%29%3F%22%3Ctable%3E%22%21%3D%3Dl%5B1%5D%7C%7Ckb%2Etest%28f%29%3F0%3Ah%3Ah%2EfirstChild%2Ce%3Df%26%26f%2EchildNodes%2Elength%3Bwhile%28e%2D%2D%29m%2EnodeName%28j%3Df%2EchildNodes%5Be%5D%2C%22tbody%22%29%26%26%21j%2EchildNodes%2Elength%26%26f%2EremoveChild%28j%29%7Dm%2Emerge%28p%2Ch%2EchildNodes%29%2Ch%2EtextContent%3D%22%22%3Bwhile%28h%2EfirstChild%29h%2EremoveChild%28h%2EfirstChild%29%3Bh%3Do%2ElastChild%7Delse%20p%2Epush%28b%2EcreateTextNode%28f%29%29%3Bh%26%26o%2EremoveChild%28h%29%2Ck%2EappendChecked%7C%7Cm%2Egrep%28ub%28p%2C%22input%22%29%2Cvb%29%2Cq%3D0%3Bwhile%28f%3Dp%5Bq%2B%2B%5D%29if%28%28%21d%7C%7C%2D1%3D%3D%3Dm%2EinArray%28f%2Cd%29%29%26%26%28g%3Dm%2Econtains%28f%2EownerDocument%2Cf%29%2Ch%3Dub%28o%2EappendChild%28f%29%2C%22script%22%29%2Cg%26%26zb%28h%29%2Cc%29%29%7Be%3D0%3Bwhile%28f%3Dh%5Be%2B%2B%5D%29ob%2Etest%28f%2Etype%7C%7C%22%22%29%26%26c%2Epush%28f%29%7Dreturn%20h%3Dnull%2Co%7D%2CcleanData%3Afunction%28a%2Cb%29%7Bfor%28var%20d%2Ce%2Cf%2Cg%2Ch%3D0%2Ci%3Dm%2Eexpando%2Cj%3Dm%2Ecache%2Cl%3Dk%2EdeleteExpando%2Cn%3Dm%2Eevent%2Especial%3Bnull%21%3D%28d%3Da%5Bh%5D%29%3Bh%2B%2B%29if%28%28b%7C%7Cm%2EacceptData%28d%29%29%26%26%28f%3Dd%5Bi%5D%2Cg%3Df%26%26j%5Bf%5D%29%29%7Bif%28g%2Eevents%29for%28e%20in%20g%2Eevents%29n%5Be%5D%3Fm%2Eevent%2Eremove%28d%2Ce%29%3Am%2EremoveEvent%28d%2Ce%2Cg%2Ehandle%29%3Bj%5Bf%5D%26%26%28delete%20j%5Bf%5D%2Cl%3Fdelete%20d%5Bi%5D%3Atypeof%20d%2EremoveAttribute%21%3D%3DK%3Fd%2EremoveAttribute%28i%29%3Ad%5Bi%5D%3Dnull%2Cc%2Epush%28f%29%29%7D%7D%7D%29%2Cm%2Efn%2Eextend%28%7Btext%3Afunction%28a%29%7Breturn%20V%28this%2Cfunction%28a%29%7Breturn%20void%200%3D%3D%3Da%3Fm%2Etext%28this%29%3Athis%2Eempty%28%29%2Eappend%28%28this%5B0%5D%26%26this%5B0%5D%2EownerDocument%7C%7Cy%29%2EcreateTextNode%28a%29%29%7D%2Cnull%2Ca%2Carguments%2Elength%29%7D%2Cappend%3Afunction%28%29%7Breturn%20this%2EdomManip%28arguments%2Cfunction%28a%29%7Bif%281%3D%3D%3Dthis%2EnodeType%7C%7C11%3D%3D%3Dthis%2EnodeType%7C%7C9%3D%3D%3Dthis%2EnodeType%29%7Bvar%20b%3Dwb%28this%2Ca%29%3Bb%2EappendChild%28a%29%7D%7D%29%7D%2Cprepend%3Afunction%28%29%7Breturn%20this%2EdomManip%28arguments%2Cfunction%28a%29%7Bif%281%3D%3D%3Dthis%2EnodeType%7C%7C11%3D%3D%3Dthis%2EnodeType%7C%7C9%3D%3D%3Dthis%2EnodeType%29%7Bvar%20b%3Dwb%28this%2Ca%29%3Bb%2EinsertBefore%28a%2Cb%2EfirstChild%29%7D%7D%29%7D%2Cbefore%3Afunction%28%29%7Breturn%20this%2EdomManip%28arguments%2Cfunction%28a%29%7Bthis%2EparentNode%26%26this%2EparentNode%2EinsertBefore%28a%2Cthis%29%7D%29%7D%2Cafter%3Afunction%28%29%7Breturn%20this%2EdomManip%28arguments%2Cfunction%28a%29%7Bthis%2EparentNode%26%26this%2EparentNode%2EinsertBefore%28a%2Cthis%2EnextSibling%29%7D%29%7D%2Cremove%3Afunction%28a%2Cb%29%7Bfor%28var%20c%2Cd%3Da%3Fm%2Efilter%28a%2Cthis%29%3Athis%2Ce%3D0%3Bnull%21%3D%28c%3Dd%5Be%5D%29%3Be%2B%2B%29b%7C%7C1%21%3D%3Dc%2EnodeType%7C%7Cm%2EcleanData%28ub%28c%29%29%2Cc%2EparentNode%26%26%28b%26%26m%2Econtains%28c%2EownerDocument%2Cc%29%26%26zb%28ub%28c%2C%22script%22%29%29%2Cc%2EparentNode%2EremoveChild%28c%29%29%3Breturn%20this%7D%2Cempty%3Afunction%28%29%7Bfor%28var%20a%2Cb%3D0%3Bnull%21%3D%28a%3Dthis%5Bb%5D%29%3Bb%2B%2B%29%7B1%3D%3D%3Da%2EnodeType%26%26m%2EcleanData%28ub%28a%2C%211%29%29%3Bwhile%28a%2EfirstChild%29a%2EremoveChild%28a%2EfirstChild%29%3Ba%2Eoptions%26%26m%2EnodeName%28a%2C%22select%22%29%26%26%28a%2Eoptions%2Elength%3D0%29%7Dreturn%20this%7D%2Cclone%3Afunction%28a%2Cb%29%7Breturn%20a%3Dnull%3D%3Da%3F%211%3Aa%2Cb%3Dnull%3D%3Db%3Fa%3Ab%2Cthis%2Emap%28function%28%29%7Breturn%20m%2Eclone%28this%2Ca%2Cb%29%7D%29%7D%2Chtml%3Afunction%28a%29%7Breturn%20V%28this%2Cfunction%28a%29%7Bvar%20b%3Dthis%5B0%5D%7C%7C%7B%7D%2Cc%3D0%2Cd%3Dthis%2Elength%3Bif%28void%200%3D%3D%3Da%29return%201%3D%3D%3Db%2EnodeType%3Fb%2EinnerHTML%2Ereplace%28fb%2C%22%22%29%3Avoid%200%3Bif%28%21%28%22string%22%21%3Dtypeof%20a%7C%7Cmb%2Etest%28a%29%7C%7C%21k%2EhtmlSerialize%26%26gb%2Etest%28a%29%7C%7C%21k%2EleadingWhitespace%26%26hb%2Etest%28a%29%7C%7Crb%5B%28jb%2Eexec%28a%29%7C%7C%5B%22%22%2C%22%22%5D%29%5B1%5D%2EtoLowerCase%28%29%5D%29%29%7Ba%3Da%2Ereplace%28ib%2C%22%3C%241%3E%3C%2F%242%3E%22%29%3Btry%7Bfor%28%3Bd%3Ec%3Bc%2B%2B%29b%3Dthis%5Bc%5D%7C%7C%7B%7D%2C1%3D%3D%3Db%2EnodeType%26%26%28m%2EcleanData%28ub%28b%2C%211%29%29%2Cb%2EinnerHTML%3Da%29%3Bb%3D0%7Dcatch%28e%29%7B%7D%7Db%26%26this%2Eempty%28%29%2Eappend%28a%29%7D%2Cnull%2Ca%2Carguments%2Elength%29%7D%2CreplaceWith%3Afunction%28%29%7Bvar%20a%3Darguments%5B0%5D%3Breturn%20this%2EdomManip%28arguments%2Cfunction%28b%29%7Ba%3Dthis%2EparentNode%2Cm%2EcleanData%28ub%28this%29%29%2Ca%26%26a%2EreplaceChild%28b%2Cthis%29%7D%29%2Ca%26%26%28a%2Elength%7C%7Ca%2EnodeType%29%3Fthis%3Athis%2Eremove%28%29%7D%2Cdetach%3Afunction%28a%29%7Breturn%20this%2Eremove%28a%2C%210%29%7D%2CdomManip%3Afunction%28a%2Cb%29%7Ba%3De%2Eapply%28%5B%5D%2Ca%29%3Bvar%20c%2Cd%2Cf%2Cg%2Ch%2Ci%2Cj%3D0%2Cl%3Dthis%2Elength%2Cn%3Dthis%2Co%3Dl%2D1%2Cp%3Da%5B0%5D%2Cq%3Dm%2EisFunction%28p%29%3Bif%28q%7C%7Cl%3E1%26%26%22string%22%3D%3Dtypeof%20p%26%26%21k%2EcheckClone%26%26nb%2Etest%28p%29%29return%20this%2Eeach%28function%28c%29%7Bvar%20d%3Dn%2Eeq%28c%29%3Bq%26%26%28a%5B0%5D%3Dp%2Ecall%28this%2Cc%2Cd%2Ehtml%28%29%29%29%2Cd%2EdomManip%28a%2Cb%29%7D%29%3Bif%28l%26%26%28i%3Dm%2EbuildFragment%28a%2Cthis%5B0%5D%2EownerDocument%2C%211%2Cthis%29%2Cc%3Di%2EfirstChild%2C1%3D%3D%3Di%2EchildNodes%2Elength%26%26%28i%3Dc%29%2Cc%29%29%7Bfor%28g%3Dm%2Emap%28ub%28i%2C%22script%22%29%2Cxb%29%2Cf%3Dg%2Elength%3Bl%3Ej%3Bj%2B%2B%29d%3Di%2Cj%21%3D%3Do%26%26%28d%3Dm%2Eclone%28d%2C%210%2C%210%29%2Cf%26%26m%2Emerge%28g%2Cub%28d%2C%22script%22%29%29%29%2Cb%2Ecall%28this%5Bj%5D%2Cd%2Cj%29%3Bif%28f%29for%28h%3Dg%5Bg%2Elength%2D1%5D%2EownerDocument%2Cm%2Emap%28g%2Cyb%29%2Cj%3D0%3Bf%3Ej%3Bj%2B%2B%29d%3Dg%5Bj%5D%2Cob%2Etest%28d%2Etype%7C%7C%22%22%29%26%26%21m%2E%5Fdata%28d%2C%22globalEval%22%29%26%26m%2Econtains%28h%2Cd%29%26%26%28d%2Esrc%3Fm%2E%5FevalUrl%26%26m%2E%5FevalUrl%28d%2Esrc%29%3Am%2EglobalEval%28%28d%2Etext%7C%7Cd%2EtextContent%7C%7Cd%2EinnerHTML%7C%7C%22%22%29%2Ereplace%28qb%2C%22%22%29%29%29%3Bi%3Dc%3Dnull%7Dreturn%20this%7D%7D%29%2Cm%2Eeach%28%7BappendTo%3A%22append%22%2CprependTo%3A%22prepend%22%2CinsertBefore%3A%22before%22%2CinsertAfter%3A%22after%22%2CreplaceAll%3A%22replaceWith%22%7D%2Cfunction%28a%2Cb%29%7Bm%2Efn%5Ba%5D%3Dfunction%28a%29%7Bfor%28var%20c%2Cd%3D0%2Ce%3D%5B%5D%2Cg%3Dm%28a%29%2Ch%3Dg%2Elength%2D1%3Bh%3E%3Dd%3Bd%2B%2B%29c%3Dd%3D%3D%3Dh%3Fthis%3Athis%2Eclone%28%210%29%2Cm%28g%5Bd%5D%29%5Bb%5D%28c%29%2Cf%2Eapply%28e%2Cc%2Eget%28%29%29%3Breturn%20this%2EpushStack%28e%29%7D%7D%29%3Bvar%20Cb%2CDb%3D%7B%7D%3Bfunction%20Eb%28b%2Cc%29%7Bvar%20d%2Ce%3Dm%28c%2EcreateElement%28b%29%29%2EappendTo%28c%2Ebody%29%2Cf%3Da%2EgetDefaultComputedStyle%26%26%28d%3Da%2EgetDefaultComputedStyle%28e%5B0%5D%29%29%3Fd%2Edisplay%3Am%2Ecss%28e%5B0%5D%2C%22display%22%29%3Breturn%20e%2Edetach%28%29%2Cf%7Dfunction%20Fb%28a%29%7Bvar%20b%3Dy%2Cc%3DDb%5Ba%5D%3Breturn%20c%7C%7C%28c%3DEb%28a%2Cb%29%2C%22none%22%21%3D%3Dc%26%26c%7C%7C%28Cb%3D%28Cb%7C%7Cm%28%22%3Ciframe%20frameborder%3D%270%27%20width%3D%270%27%20height%3D%270%27%2F%3E%22%29%29%2EappendTo%28b%2EdocumentElement%29%2Cb%3D%28Cb%5B0%5D%2EcontentWindow%7C%7CCb%5B0%5D%2EcontentDocument%29%2Edocument%2Cb%2Ewrite%28%29%2Cb%2Eclose%28%29%2Cc%3DEb%28a%2Cb%29%2CCb%2Edetach%28%29%29%2CDb%5Ba%5D%3Dc%29%2Cc%7D%21function%28%29%7Bvar%20a%3Bk%2EshrinkWrapBlocks%3Dfunction%28%29%7Bif%28null%21%3Da%29return%20a%3Ba%3D%211%3Bvar%20b%2Cc%2Cd%3Breturn%20c%3Dy%2EgetElementsByTagName%28%22body%22%29%5B0%5D%2Cc%26%26c%2Estyle%3F%28b%3Dy%2EcreateElement%28%22div%22%29%2Cd%3Dy%2EcreateElement%28%22div%22%29%2Cd%2Estyle%2EcssText%3D%22position%3Aabsolute%3Bborder%3A0%3Bwidth%3A0%3Bheight%3A0%3Btop%3A0%3Bleft%3A%2D9999px%22%2Cc%2EappendChild%28d%29%2EappendChild%28b%29%2Ctypeof%20b%2Estyle%2Ezoom%21%3D%3DK%26%26%28b%2Estyle%2EcssText%3D%22%2Dwebkit%2Dbox%2Dsizing%3Acontent%2Dbox%3B%2Dmoz%2Dbox%2Dsizing%3Acontent%2Dbox%3Bbox%2Dsizing%3Acontent%2Dbox%3Bdisplay%3Ablock%3Bmargin%3A0%3Bborder%3A0%3Bpadding%3A1px%3Bwidth%3A1px%3Bzoom%3A1%22%2Cb%2EappendChild%28y%2EcreateElement%28%22div%22%29%29%2Estyle%2Ewidth%3D%225px%22%2Ca%3D3%21%3D%3Db%2EoffsetWidth%29%2Cc%2EremoveChild%28d%29%2Ca%29%3Avoid%200%7D%7D%28%29%3Bvar%20Gb%3D%2F%5Emargin%2F%2CHb%3Dnew%20RegExp%28%22%5E%28%22%2BS%2B%22%29%28%3F%21px%29%5Ba%2Dz%25%5D%2B%24%22%2C%22i%22%29%2CIb%2CJb%2CKb%3D%2F%5E%28top%7Cright%7Cbottom%7Cleft%29%24%2F%3Ba%2EgetComputedStyle%3F%28Ib%3Dfunction%28a%29%7Breturn%20a%2EownerDocument%2EdefaultView%2EgetComputedStyle%28a%2Cnull%29%7D%2CJb%3Dfunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%2Cg%2Ch%3Da%2Estyle%3Breturn%20c%3Dc%7C%7CIb%28a%29%2Cg%3Dc%3Fc%2EgetPropertyValue%28b%29%7C%7Cc%5Bb%5D%3Avoid%200%2Cc%26%26%28%22%22%21%3D%3Dg%7C%7Cm%2Econtains%28a%2EownerDocument%2Ca%29%7C%7C%28g%3Dm%2Estyle%28a%2Cb%29%29%2CHb%2Etest%28g%29%26%26Gb%2Etest%28b%29%26%26%28d%3Dh%2Ewidth%2Ce%3Dh%2EminWidth%2Cf%3Dh%2EmaxWidth%2Ch%2EminWidth%3Dh%2EmaxWidth%3Dh%2Ewidth%3Dg%2Cg%3Dc%2Ewidth%2Ch%2Ewidth%3Dd%2Ch%2EminWidth%3De%2Ch%2EmaxWidth%3Df%29%29%2Cvoid%200%3D%3D%3Dg%3Fg%3Ag%2B%22%22%7D%29%3Ay%2EdocumentElement%2EcurrentStyle%26%26%28Ib%3Dfunction%28a%29%7Breturn%20a%2EcurrentStyle%7D%2CJb%3Dfunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%2Cg%2Ch%3Da%2Estyle%3Breturn%20c%3Dc%7C%7CIb%28a%29%2Cg%3Dc%3Fc%5Bb%5D%3Avoid%200%2Cnull%3D%3Dg%26%26h%26%26h%5Bb%5D%26%26%28g%3Dh%5Bb%5D%29%2CHb%2Etest%28g%29%26%26%21Kb%2Etest%28b%29%26%26%28d%3Dh%2Eleft%2Ce%3Da%2EruntimeStyle%2Cf%3De%26%26e%2Eleft%2Cf%26%26%28e%2Eleft%3Da%2EcurrentStyle%2Eleft%29%2Ch%2Eleft%3D%22fontSize%22%3D%3D%3Db%3F%221em%22%3Ag%2Cg%3Dh%2EpixelLeft%2B%22px%22%2Ch%2Eleft%3Dd%2Cf%26%26%28e%2Eleft%3Df%29%29%2Cvoid%200%3D%3D%3Dg%3Fg%3Ag%2B%22%22%7C%7C%22auto%22%7D%29%3Bfunction%20Lb%28a%2Cb%29%7Breturn%7Bget%3Afunction%28%29%7Bvar%20c%3Da%28%29%3Bif%28null%21%3Dc%29return%20c%3Fvoid%20delete%20this%2Eget%3A%28this%2Eget%3Db%29%2Eapply%28this%2Carguments%29%7D%7D%7D%21function%28%29%7Bvar%20b%2Cc%2Cd%2Ce%2Cf%2Cg%2Ch%3Bif%28b%3Dy%2EcreateElement%28%22div%22%29%2Cb%2EinnerHTML%3D%22%20%20%3Clink%2F%3E%3Ctable%3E%3C%2Ftable%3E%3Ca%20href%3D%27%2Fa%27%3Ea%3C%2Fa%3E%3Cinput%20type%3D%27checkbox%27%2F%3E%22%2Cd%3Db%2EgetElementsByTagName%28%22a%22%29%5B0%5D%2Cc%3Dd%26%26d%2Estyle%29%7Bc%2EcssText%3D%22float%3Aleft%3Bopacity%3A%2E5%22%2Ck%2Eopacity%3D%220%2E5%22%3D%3D%3Dc%2Eopacity%2Ck%2EcssFloat%3D%21%21c%2EcssFloat%2Cb%2Estyle%2EbackgroundClip%3D%22content%2Dbox%22%2Cb%2EcloneNode%28%210%29%2Estyle%2EbackgroundClip%3D%22%22%2Ck%2EclearCloneStyle%3D%22content%2Dbox%22%3D%3D%3Db%2Estyle%2EbackgroundClip%2Ck%2EboxSizing%3D%22%22%3D%3D%3Dc%2EboxSizing%7C%7C%22%22%3D%3D%3Dc%2EMozBoxSizing%7C%7C%22%22%3D%3D%3Dc%2EWebkitBoxSizing%2Cm%2Eextend%28k%2C%7BreliableHiddenOffsets%3Afunction%28%29%7Breturn%20null%3D%3Dg%26%26i%28%29%2Cg%7D%2CboxSizingReliable%3Afunction%28%29%7Breturn%20null%3D%3Df%26%26i%28%29%2Cf%7D%2CpixelPosition%3Afunction%28%29%7Breturn%20null%3D%3De%26%26i%28%29%2Ce%7D%2CreliableMarginRight%3Afunction%28%29%7Breturn%20null%3D%3Dh%26%26i%28%29%2Ch%7D%7D%29%3Bfunction%20i%28%29%7Bvar%20b%2Cc%2Cd%2Ci%3Bc%3Dy%2EgetElementsByTagName%28%22body%22%29%5B0%5D%2Cc%26%26c%2Estyle%26%26%28b%3Dy%2EcreateElement%28%22div%22%29%2Cd%3Dy%2EcreateElement%28%22div%22%29%2Cd%2Estyle%2EcssText%3D%22position%3Aabsolute%3Bborder%3A0%3Bwidth%3A0%3Bheight%3A0%3Btop%3A0%3Bleft%3A%2D9999px%22%2Cc%2EappendChild%28d%29%2EappendChild%28b%29%2Cb%2Estyle%2EcssText%3D%22%2Dwebkit%2Dbox%2Dsizing%3Aborder%2Dbox%3B%2Dmoz%2Dbox%2Dsizing%3Aborder%2Dbox%3Bbox%2Dsizing%3Aborder%2Dbox%3Bdisplay%3Ablock%3Bmargin%2Dtop%3A1%25%3Btop%3A1%25%3Bborder%3A1px%3Bpadding%3A1px%3Bwidth%3A4px%3Bposition%3Aabsolute%22%2Ce%3Df%3D%211%2Ch%3D%210%2Ca%2EgetComputedStyle%26%26%28e%3D%221%25%22%21%3D%3D%28a%2EgetComputedStyle%28b%2Cnull%29%7C%7C%7B%7D%29%2Etop%2Cf%3D%224px%22%3D%3D%3D%28a%2EgetComputedStyle%28b%2Cnull%29%7C%7C%7Bwidth%3A%224px%22%7D%29%2Ewidth%2Ci%3Db%2EappendChild%28y%2EcreateElement%28%22div%22%29%29%2Ci%2Estyle%2EcssText%3Db%2Estyle%2EcssText%3D%22%2Dwebkit%2Dbox%2Dsizing%3Acontent%2Dbox%3B%2Dmoz%2Dbox%2Dsizing%3Acontent%2Dbox%3Bbox%2Dsizing%3Acontent%2Dbox%3Bdisplay%3Ablock%3Bmargin%3A0%3Bborder%3A0%3Bpadding%3A0%22%2Ci%2Estyle%2EmarginRight%3Di%2Estyle%2Ewidth%3D%220%22%2Cb%2Estyle%2Ewidth%3D%221px%22%2Ch%3D%21parseFloat%28%28a%2EgetComputedStyle%28i%2Cnull%29%7C%7C%7B%7D%29%2EmarginRight%29%29%2Cb%2EinnerHTML%3D%22%3Ctable%3E%3Ctr%3E%3Ctd%3E%3C%2Ftd%3E%3Ctd%3Et%3C%2Ftd%3E%3C%2Ftr%3E%3C%2Ftable%3E%22%2Ci%3Db%2EgetElementsByTagName%28%22td%22%29%2Ci%5B0%5D%2Estyle%2EcssText%3D%22margin%3A0%3Bborder%3A0%3Bpadding%3A0%3Bdisplay%3Anone%22%2Cg%3D0%3D%3D%3Di%5B0%5D%2EoffsetHeight%2Cg%26%26%28i%5B0%5D%2Estyle%2Edisplay%3D%22%22%2Ci%5B1%5D%2Estyle%2Edisplay%3D%22none%22%2Cg%3D0%3D%3D%3Di%5B0%5D%2EoffsetHeight%29%2Cc%2EremoveChild%28d%29%29%7D%7D%7D%28%29%2Cm%2Eswap%3Dfunction%28a%2Cb%2Cc%2Cd%29%7Bvar%20e%2Cf%2Cg%3D%7B%7D%3Bfor%28f%20in%20b%29g%5Bf%5D%3Da%2Estyle%5Bf%5D%2Ca%2Estyle%5Bf%5D%3Db%5Bf%5D%3Be%3Dc%2Eapply%28a%2Cd%7C%7C%5B%5D%29%3Bfor%28f%20in%20b%29a%2Estyle%5Bf%5D%3Dg%5Bf%5D%3Breturn%20e%7D%3Bvar%20Mb%3D%2Falpha%5C%28%5B%5E%29%5D%2A%5C%29%2Fi%2CNb%3D%2Fopacity%5Cs%2A%3D%5Cs%2A%28%5B%5E%29%5D%2A%29%2F%2COb%3D%2F%5E%28none%7Ctable%28%3F%21%2Dc%5Bea%5D%29%2E%2B%29%2F%2CPb%3Dnew%20RegExp%28%22%5E%28%22%2BS%2B%22%29%28%2E%2A%29%24%22%2C%22i%22%29%2CQb%3Dnew%20RegExp%28%22%5E%28%5B%2B%2D%5D%29%3D%28%22%2BS%2B%22%29%22%2C%22i%22%29%2CRb%3D%7Bposition%3A%22absolute%22%2Cvisibility%3A%22hidden%22%2Cdisplay%3A%22block%22%7D%2CSb%3D%7BletterSpacing%3A%220%22%2CfontWeight%3A%22400%22%7D%2CTb%3D%5B%22Webkit%22%2C%22O%22%2C%22Moz%22%2C%22ms%22%5D%3Bfunction%20Ub%28a%2Cb%29%7Bif%28b%20in%20a%29return%20b%3Bvar%20c%3Db%2EcharAt%280%29%2EtoUpperCase%28%29%2Bb%2Eslice%281%29%2Cd%3Db%2Ce%3DTb%2Elength%3Bwhile%28e%2D%2D%29if%28b%3DTb%5Be%5D%2Bc%2Cb%20in%20a%29return%20b%3Breturn%20d%7Dfunction%20Vb%28a%2Cb%29%7Bfor%28var%20c%2Cd%2Ce%2Cf%3D%5B%5D%2Cg%3D0%2Ch%3Da%2Elength%3Bh%3Eg%3Bg%2B%2B%29d%3Da%5Bg%5D%2Cd%2Estyle%26%26%28f%5Bg%5D%3Dm%2E%5Fdata%28d%2C%22olddisplay%22%29%2Cc%3Dd%2Estyle%2Edisplay%2Cb%3F%28f%5Bg%5D%7C%7C%22none%22%21%3D%3Dc%7C%7C%28d%2Estyle%2Edisplay%3D%22%22%29%2C%22%22%3D%3D%3Dd%2Estyle%2Edisplay%26%26U%28d%29%26%26%28f%5Bg%5D%3Dm%2E%5Fdata%28d%2C%22olddisplay%22%2CFb%28d%2EnodeName%29%29%29%29%3A%28e%3DU%28d%29%2C%28c%26%26%22none%22%21%3D%3Dc%7C%7C%21e%29%26%26m%2E%5Fdata%28d%2C%22olddisplay%22%2Ce%3Fc%3Am%2Ecss%28d%2C%22display%22%29%29%29%29%3Bfor%28g%3D0%3Bh%3Eg%3Bg%2B%2B%29d%3Da%5Bg%5D%2Cd%2Estyle%26%26%28b%26%26%22none%22%21%3D%3Dd%2Estyle%2Edisplay%26%26%22%22%21%3D%3Dd%2Estyle%2Edisplay%7C%7C%28d%2Estyle%2Edisplay%3Db%3Ff%5Bg%5D%7C%7C%22%22%3A%22none%22%29%29%3Breturn%20a%7Dfunction%20Wb%28a%2Cb%2Cc%29%7Bvar%20d%3DPb%2Eexec%28b%29%3Breturn%20d%3FMath%2Emax%280%2Cd%5B1%5D%2D%28c%7C%7C0%29%29%2B%28d%5B2%5D%7C%7C%22px%22%29%3Ab%7Dfunction%20Xb%28a%2Cb%2Cc%2Cd%2Ce%29%7Bfor%28var%20f%3Dc%3D%3D%3D%28d%3F%22border%22%3A%22content%22%29%3F4%3A%22width%22%3D%3D%3Db%3F1%3A0%2Cg%3D0%3B4%3Ef%3Bf%2B%3D2%29%22margin%22%3D%3D%3Dc%26%26%28g%2B%3Dm%2Ecss%28a%2Cc%2BT%5Bf%5D%2C%210%2Ce%29%29%2Cd%3F%28%22content%22%3D%3D%3Dc%26%26%28g%2D%3Dm%2Ecss%28a%2C%22padding%22%2BT%5Bf%5D%2C%210%2Ce%29%29%2C%22margin%22%21%3D%3Dc%26%26%28g%2D%3Dm%2Ecss%28a%2C%22border%22%2BT%5Bf%5D%2B%22Width%22%2C%210%2Ce%29%29%29%3A%28g%2B%3Dm%2Ecss%28a%2C%22padding%22%2BT%5Bf%5D%2C%210%2Ce%29%2C%22padding%22%21%3D%3Dc%26%26%28g%2B%3Dm%2Ecss%28a%2C%22border%22%2BT%5Bf%5D%2B%22Width%22%2C%210%2Ce%29%29%29%3Breturn%20g%7Dfunction%20Yb%28a%2Cb%2Cc%29%7Bvar%20d%3D%210%2Ce%3D%22width%22%3D%3D%3Db%3Fa%2EoffsetWidth%3Aa%2EoffsetHeight%2Cf%3DIb%28a%29%2Cg%3Dk%2EboxSizing%26%26%22border%2Dbox%22%3D%3D%3Dm%2Ecss%28a%2C%22boxSizing%22%2C%211%2Cf%29%3Bif%280%3E%3De%7C%7Cnull%3D%3De%29%7Bif%28e%3DJb%28a%2Cb%2Cf%29%2C%280%3Ee%7C%7Cnull%3D%3De%29%26%26%28e%3Da%2Estyle%5Bb%5D%29%2CHb%2Etest%28e%29%29return%20e%3Bd%3Dg%26%26%28k%2EboxSizingReliable%28%29%7C%7Ce%3D%3D%3Da%2Estyle%5Bb%5D%29%2Ce%3DparseFloat%28e%29%7C%7C0%7Dreturn%20e%2BXb%28a%2Cb%2Cc%7C%7C%28g%3F%22border%22%3A%22content%22%29%2Cd%2Cf%29%2B%22px%22%7Dm%2Eextend%28%7BcssHooks%3A%7Bopacity%3A%7Bget%3Afunction%28a%2Cb%29%7Bif%28b%29%7Bvar%20c%3DJb%28a%2C%22opacity%22%29%3Breturn%22%22%3D%3D%3Dc%3F%221%22%3Ac%7D%7D%7D%7D%2CcssNumber%3A%7BcolumnCount%3A%210%2CfillOpacity%3A%210%2CflexGrow%3A%210%2CflexShrink%3A%210%2CfontWeight%3A%210%2ClineHeight%3A%210%2Copacity%3A%210%2Corder%3A%210%2Corphans%3A%210%2Cwidows%3A%210%2CzIndex%3A%210%2Czoom%3A%210%7D%2CcssProps%3A%7B%22float%22%3Ak%2EcssFloat%3F%22cssFloat%22%3A%22styleFloat%22%7D%2Cstyle%3Afunction%28a%2Cb%2Cc%2Cd%29%7Bif%28a%26%263%21%3D%3Da%2EnodeType%26%268%21%3D%3Da%2EnodeType%26%26a%2Estyle%29%7Bvar%20e%2Cf%2Cg%2Ch%3Dm%2EcamelCase%28b%29%2Ci%3Da%2Estyle%3Bif%28b%3Dm%2EcssProps%5Bh%5D%7C%7C%28m%2EcssProps%5Bh%5D%3DUb%28i%2Ch%29%29%2Cg%3Dm%2EcssHooks%5Bb%5D%7C%7Cm%2EcssHooks%5Bh%5D%2Cvoid%200%3D%3D%3Dc%29return%20g%26%26%22get%22in%20g%26%26void%200%21%3D%3D%28e%3Dg%2Eget%28a%2C%211%2Cd%29%29%3Fe%3Ai%5Bb%5D%3Bif%28f%3Dtypeof%20c%2C%22string%22%3D%3D%3Df%26%26%28e%3DQb%2Eexec%28c%29%29%26%26%28c%3D%28e%5B1%5D%2B1%29%2Ae%5B2%5D%2BparseFloat%28m%2Ecss%28a%2Cb%29%29%2Cf%3D%22number%22%29%2Cnull%21%3Dc%26%26c%3D%3D%3Dc%26%26%28%22number%22%21%3D%3Df%7C%7Cm%2EcssNumber%5Bh%5D%7C%7C%28c%2B%3D%22px%22%29%2Ck%2EclearCloneStyle%7C%7C%22%22%21%3D%3Dc%7C%7C0%21%3D%3Db%2EindexOf%28%22background%22%29%7C%7C%28i%5Bb%5D%3D%22inherit%22%29%2C%21%28g%26%26%22set%22in%20g%26%26void%200%3D%3D%3D%28c%3Dg%2Eset%28a%2Cc%2Cd%29%29%29%29%29try%7Bi%5Bb%5D%3Dc%7Dcatch%28j%29%7B%7D%7D%7D%2Ccss%3Afunction%28a%2Cb%2Cc%2Cd%29%7Bvar%20e%2Cf%2Cg%2Ch%3Dm%2EcamelCase%28b%29%3Breturn%20b%3Dm%2EcssProps%5Bh%5D%7C%7C%28m%2EcssProps%5Bh%5D%3DUb%28a%2Estyle%2Ch%29%29%2Cg%3Dm%2EcssHooks%5Bb%5D%7C%7Cm%2EcssHooks%5Bh%5D%2Cg%26%26%22get%22in%20g%26%26%28f%3Dg%2Eget%28a%2C%210%2Cc%29%29%2Cvoid%200%3D%3D%3Df%26%26%28f%3DJb%28a%2Cb%2Cd%29%29%2C%22normal%22%3D%3D%3Df%26%26b%20in%20Sb%26%26%28f%3DSb%5Bb%5D%29%2C%22%22%3D%3D%3Dc%7C%7Cc%3F%28e%3DparseFloat%28f%29%2Cc%3D%3D%3D%210%7C%7Cm%2EisNumeric%28e%29%3Fe%7C%7C0%3Af%29%3Af%7D%7D%29%2Cm%2Eeach%28%5B%22height%22%2C%22width%22%5D%2Cfunction%28a%2Cb%29%7Bm%2EcssHooks%5Bb%5D%3D%7Bget%3Afunction%28a%2Cc%2Cd%29%7Breturn%20c%3FOb%2Etest%28m%2Ecss%28a%2C%22display%22%29%29%26%260%3D%3D%3Da%2EoffsetWidth%3Fm%2Eswap%28a%2CRb%2Cfunction%28%29%7Breturn%20Yb%28a%2Cb%2Cd%29%7D%29%3AYb%28a%2Cb%2Cd%29%3Avoid%200%7D%2Cset%3Afunction%28a%2Cc%2Cd%29%7Bvar%20e%3Dd%26%26Ib%28a%29%3Breturn%20Wb%28a%2Cc%2Cd%3FXb%28a%2Cb%2Cd%2Ck%2EboxSizing%26%26%22border%2Dbox%22%3D%3D%3Dm%2Ecss%28a%2C%22boxSizing%22%2C%211%2Ce%29%2Ce%29%3A0%29%7D%7D%7D%29%2Ck%2Eopacity%7C%7C%28m%2EcssHooks%2Eopacity%3D%7Bget%3Afunction%28a%2Cb%29%7Breturn%20Nb%2Etest%28%28b%26%26a%2EcurrentStyle%3Fa%2EcurrentStyle%2Efilter%3Aa%2Estyle%2Efilter%29%7C%7C%22%22%29%3F%2E01%2AparseFloat%28RegExp%2E%241%29%2B%22%22%3Ab%3F%221%22%3A%22%22%7D%2Cset%3Afunction%28a%2Cb%29%7Bvar%20c%3Da%2Estyle%2Cd%3Da%2EcurrentStyle%2Ce%3Dm%2EisNumeric%28b%29%3F%22alpha%28opacity%3D%22%2B100%2Ab%2B%22%29%22%3A%22%22%2Cf%3Dd%26%26d%2Efilter%7C%7Cc%2Efilter%7C%7C%22%22%3Bc%2Ezoom%3D1%2C%28b%3E%3D1%7C%7C%22%22%3D%3D%3Db%29%26%26%22%22%3D%3D%3Dm%2Etrim%28f%2Ereplace%28Mb%2C%22%22%29%29%26%26c%2EremoveAttribute%26%26%28c%2EremoveAttribute%28%22filter%22%29%2C%22%22%3D%3D%3Db%7C%7Cd%26%26%21d%2Efilter%29%7C%7C%28c%2Efilter%3DMb%2Etest%28f%29%3Ff%2Ereplace%28Mb%2Ce%29%3Af%2B%22%20%22%2Be%29%7D%7D%29%2Cm%2EcssHooks%2EmarginRight%3DLb%28k%2EreliableMarginRight%2Cfunction%28a%2Cb%29%7Breturn%20b%3Fm%2Eswap%28a%2C%7Bdisplay%3A%22inline%2Dblock%22%7D%2CJb%2C%5Ba%2C%22marginRight%22%5D%29%3Avoid%200%7D%29%2Cm%2Eeach%28%7Bmargin%3A%22%22%2Cpadding%3A%22%22%2Cborder%3A%22Width%22%7D%2Cfunction%28a%2Cb%29%7Bm%2EcssHooks%5Ba%2Bb%5D%3D%7Bexpand%3Afunction%28c%29%7Bfor%28var%20d%3D0%2Ce%3D%7B%7D%2Cf%3D%22string%22%3D%3Dtypeof%20c%3Fc%2Esplit%28%22%20%22%29%3A%5Bc%5D%3B4%3Ed%3Bd%2B%2B%29e%5Ba%2BT%5Bd%5D%2Bb%5D%3Df%5Bd%5D%7C%7Cf%5Bd%2D2%5D%7C%7Cf%5B0%5D%3Breturn%20e%7D%7D%2CGb%2Etest%28a%29%7C%7C%28m%2EcssHooks%5Ba%2Bb%5D%2Eset%3DWb%29%7D%29%2Cm%2Efn%2Eextend%28%7Bcss%3Afunction%28a%2Cb%29%7Breturn%20V%28this%2Cfunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%3D%7B%7D%2Cg%3D0%3Bif%28m%2EisArray%28b%29%29%7Bfor%28d%3DIb%28a%29%2Ce%3Db%2Elength%3Be%3Eg%3Bg%2B%2B%29f%5Bb%5Bg%5D%5D%3Dm%2Ecss%28a%2Cb%5Bg%5D%2C%211%2Cd%29%3Breturn%20f%7Dreturn%20void%200%21%3D%3Dc%3Fm%2Estyle%28a%2Cb%2Cc%29%3Am%2Ecss%28a%2Cb%29%7D%2Ca%2Cb%2Carguments%2Elength%3E1%29%7D%2Cshow%3Afunction%28%29%7Breturn%20Vb%28this%2C%210%29%7D%2Chide%3Afunction%28%29%7Breturn%20Vb%28this%29%7D%2Ctoggle%3Afunction%28a%29%7Breturn%22boolean%22%3D%3Dtypeof%20a%3Fa%3Fthis%2Eshow%28%29%3Athis%2Ehide%28%29%3Athis%2Eeach%28function%28%29%7BU%28this%29%3Fm%28this%29%2Eshow%28%29%3Am%28this%29%2Ehide%28%29%7D%29%7D%7D%29%3Bfunction%20Zb%28a%2Cb%2Cc%2Cd%2Ce%29%7Breturn%20new%20Zb%2Eprototype%2Einit%28a%2Cb%2Cc%2Cd%2Ce%29%7Dm%2ETween%3DZb%2CZb%2Eprototype%3D%7Bconstructor%3AZb%2Cinit%3Afunction%28a%2Cb%2Cc%2Cd%2Ce%2Cf%29%7Bthis%2Eelem%3Da%2Cthis%2Eprop%3Dc%2Cthis%2Eeasing%3De%7C%7C%22swing%22%2Cthis%2Eoptions%3Db%2Cthis%2Estart%3Dthis%2Enow%3Dthis%2Ecur%28%29%2Cthis%2Eend%3Dd%2Cthis%2Eunit%3Df%7C%7C%28m%2EcssNumber%5Bc%5D%3F%22%22%3A%22px%22%29%0A%7D%2Ccur%3Afunction%28%29%7Bvar%20a%3DZb%2EpropHooks%5Bthis%2Eprop%5D%3Breturn%20a%26%26a%2Eget%3Fa%2Eget%28this%29%3AZb%2EpropHooks%2E%5Fdefault%2Eget%28this%29%7D%2Crun%3Afunction%28a%29%7Bvar%20b%2Cc%3DZb%2EpropHooks%5Bthis%2Eprop%5D%3Breturn%20this%2Epos%3Db%3Dthis%2Eoptions%2Eduration%3Fm%2Eeasing%5Bthis%2Eeasing%5D%28a%2Cthis%2Eoptions%2Eduration%2Aa%2C0%2C1%2Cthis%2Eoptions%2Eduration%29%3Aa%2Cthis%2Enow%3D%28this%2Eend%2Dthis%2Estart%29%2Ab%2Bthis%2Estart%2Cthis%2Eoptions%2Estep%26%26this%2Eoptions%2Estep%2Ecall%28this%2Eelem%2Cthis%2Enow%2Cthis%29%2Cc%26%26c%2Eset%3Fc%2Eset%28this%29%3AZb%2EpropHooks%2E%5Fdefault%2Eset%28this%29%2Cthis%7D%7D%2CZb%2Eprototype%2Einit%2Eprototype%3DZb%2Eprototype%2CZb%2EpropHooks%3D%7B%5Fdefault%3A%7Bget%3Afunction%28a%29%7Bvar%20b%3Breturn%20null%3D%3Da%2Eelem%5Ba%2Eprop%5D%7C%7Ca%2Eelem%2Estyle%26%26null%21%3Da%2Eelem%2Estyle%5Ba%2Eprop%5D%3F%28b%3Dm%2Ecss%28a%2Eelem%2Ca%2Eprop%2C%22%22%29%2Cb%26%26%22auto%22%21%3D%3Db%3Fb%3A0%29%3Aa%2Eelem%5Ba%2Eprop%5D%7D%2Cset%3Afunction%28a%29%7Bm%2Efx%2Estep%5Ba%2Eprop%5D%3Fm%2Efx%2Estep%5Ba%2Eprop%5D%28a%29%3Aa%2Eelem%2Estyle%26%26%28null%21%3Da%2Eelem%2Estyle%5Bm%2EcssProps%5Ba%2Eprop%5D%5D%7C%7Cm%2EcssHooks%5Ba%2Eprop%5D%29%3Fm%2Estyle%28a%2Eelem%2Ca%2Eprop%2Ca%2Enow%2Ba%2Eunit%29%3Aa%2Eelem%5Ba%2Eprop%5D%3Da%2Enow%7D%7D%7D%2CZb%2EpropHooks%2EscrollTop%3DZb%2EpropHooks%2EscrollLeft%3D%7Bset%3Afunction%28a%29%7Ba%2Eelem%2EnodeType%26%26a%2Eelem%2EparentNode%26%26%28a%2Eelem%5Ba%2Eprop%5D%3Da%2Enow%29%7D%7D%2Cm%2Eeasing%3D%7Blinear%3Afunction%28a%29%7Breturn%20a%7D%2Cswing%3Afunction%28a%29%7Breturn%2E5%2DMath%2Ecos%28a%2AMath%2EPI%29%2F2%7D%7D%2Cm%2Efx%3DZb%2Eprototype%2Einit%2Cm%2Efx%2Estep%3D%7B%7D%3Bvar%20%24b%2C%5Fb%2Cac%3D%2F%5E%28%3F%3Atoggle%7Cshow%7Chide%29%24%2F%2Cbc%3Dnew%20RegExp%28%22%5E%28%3F%3A%28%5B%2B%2D%5D%29%3D%7C%29%28%22%2BS%2B%22%29%28%5Ba%2Dz%25%5D%2A%29%24%22%2C%22i%22%29%2Ccc%3D%2FqueueHooks%24%2F%2Cdc%3D%5Bic%5D%2Cec%3D%7B%22%2A%22%3A%5Bfunction%28a%2Cb%29%7Bvar%20c%3Dthis%2EcreateTween%28a%2Cb%29%2Cd%3Dc%2Ecur%28%29%2Ce%3Dbc%2Eexec%28b%29%2Cf%3De%26%26e%5B3%5D%7C%7C%28m%2EcssNumber%5Ba%5D%3F%22%22%3A%22px%22%29%2Cg%3D%28m%2EcssNumber%5Ba%5D%7C%7C%22px%22%21%3D%3Df%26%26%2Bd%29%26%26bc%2Eexec%28m%2Ecss%28c%2Eelem%2Ca%29%29%2Ch%3D1%2Ci%3D20%3Bif%28g%26%26g%5B3%5D%21%3D%3Df%29%7Bf%3Df%7C%7Cg%5B3%5D%2Ce%3De%7C%7C%5B%5D%2Cg%3D%2Bd%7C%7C1%3Bdo%20h%3Dh%7C%7C%22%2E5%22%2Cg%2F%3Dh%2Cm%2Estyle%28c%2Eelem%2Ca%2Cg%2Bf%29%3Bwhile%28h%21%3D%3D%28h%3Dc%2Ecur%28%29%2Fd%29%26%261%21%3D%3Dh%26%26%2D%2Di%29%7Dreturn%20e%26%26%28g%3Dc%2Estart%3D%2Bg%7C%7C%2Bd%7C%7C0%2Cc%2Eunit%3Df%2Cc%2Eend%3De%5B1%5D%3Fg%2B%28e%5B1%5D%2B1%29%2Ae%5B2%5D%3A%2Be%5B2%5D%29%2Cc%7D%5D%7D%3Bfunction%20fc%28%29%7Breturn%20setTimeout%28function%28%29%7B%24b%3Dvoid%200%7D%29%2C%24b%3Dm%2Enow%28%29%7Dfunction%20gc%28a%2Cb%29%7Bvar%20c%2Cd%3D%7Bheight%3Aa%7D%2Ce%3D0%3Bfor%28b%3Db%3F1%3A0%3B4%3Ee%3Be%2B%3D2%2Db%29c%3DT%5Be%5D%2Cd%5B%22margin%22%2Bc%5D%3Dd%5B%22padding%22%2Bc%5D%3Da%3Breturn%20b%26%26%28d%2Eopacity%3Dd%2Ewidth%3Da%29%2Cd%7Dfunction%20hc%28a%2Cb%2Cc%29%7Bfor%28var%20d%2Ce%3D%28ec%5Bb%5D%7C%7C%5B%5D%29%2Econcat%28ec%5B%22%2A%22%5D%29%2Cf%3D0%2Cg%3De%2Elength%3Bg%3Ef%3Bf%2B%2B%29if%28d%3De%5Bf%5D%2Ecall%28c%2Cb%2Ca%29%29return%20d%7Dfunction%20ic%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%2Cg%2Ch%2Ci%2Cj%2Cl%2Cn%3Dthis%2Co%3D%7B%7D%2Cp%3Da%2Estyle%2Cq%3Da%2EnodeType%26%26U%28a%29%2Cr%3Dm%2E%5Fdata%28a%2C%22fxshow%22%29%3Bc%2Equeue%7C%7C%28h%3Dm%2E%5FqueueHooks%28a%2C%22fx%22%29%2Cnull%3D%3Dh%2Eunqueued%26%26%28h%2Eunqueued%3D0%2Ci%3Dh%2Eempty%2Efire%2Ch%2Eempty%2Efire%3Dfunction%28%29%7Bh%2Eunqueued%7C%7Ci%28%29%7D%29%2Ch%2Eunqueued%2B%2B%2Cn%2Ealways%28function%28%29%7Bn%2Ealways%28function%28%29%7Bh%2Eunqueued%2D%2D%2Cm%2Equeue%28a%2C%22fx%22%29%2Elength%7C%7Ch%2Eempty%2Efire%28%29%7D%29%7D%29%29%2C1%3D%3D%3Da%2EnodeType%26%26%28%22height%22in%20b%7C%7C%22width%22in%20b%29%26%26%28c%2Eoverflow%3D%5Bp%2Eoverflow%2Cp%2EoverflowX%2Cp%2EoverflowY%5D%2Cj%3Dm%2Ecss%28a%2C%22display%22%29%2Cl%3D%22none%22%3D%3D%3Dj%3Fm%2E%5Fdata%28a%2C%22olddisplay%22%29%7C%7CFb%28a%2EnodeName%29%3Aj%2C%22inline%22%3D%3D%3Dl%26%26%22none%22%3D%3D%3Dm%2Ecss%28a%2C%22float%22%29%26%26%28k%2EinlineBlockNeedsLayout%26%26%22inline%22%21%3D%3DFb%28a%2EnodeName%29%3Fp%2Ezoom%3D1%3Ap%2Edisplay%3D%22inline%2Dblock%22%29%29%2Cc%2Eoverflow%26%26%28p%2Eoverflow%3D%22hidden%22%2Ck%2EshrinkWrapBlocks%28%29%7C%7Cn%2Ealways%28function%28%29%7Bp%2Eoverflow%3Dc%2Eoverflow%5B0%5D%2Cp%2EoverflowX%3Dc%2Eoverflow%5B1%5D%2Cp%2EoverflowY%3Dc%2Eoverflow%5B2%5D%7D%29%29%3Bfor%28d%20in%20b%29if%28e%3Db%5Bd%5D%2Cac%2Eexec%28e%29%29%7Bif%28delete%20b%5Bd%5D%2Cf%3Df%7C%7C%22toggle%22%3D%3D%3De%2Ce%3D%3D%3D%28q%3F%22hide%22%3A%22show%22%29%29%7Bif%28%22show%22%21%3D%3De%7C%7C%21r%7C%7Cvoid%200%3D%3D%3Dr%5Bd%5D%29continue%3Bq%3D%210%7Do%5Bd%5D%3Dr%26%26r%5Bd%5D%7C%7Cm%2Estyle%28a%2Cd%29%7Delse%20j%3Dvoid%200%3Bif%28m%2EisEmptyObject%28o%29%29%22inline%22%3D%3D%3D%28%22none%22%3D%3D%3Dj%3FFb%28a%2EnodeName%29%3Aj%29%26%26%28p%2Edisplay%3Dj%29%3Belse%7Br%3F%22hidden%22in%20r%26%26%28q%3Dr%2Ehidden%29%3Ar%3Dm%2E%5Fdata%28a%2C%22fxshow%22%2C%7B%7D%29%2Cf%26%26%28r%2Ehidden%3D%21q%29%2Cq%3Fm%28a%29%2Eshow%28%29%3An%2Edone%28function%28%29%7Bm%28a%29%2Ehide%28%29%7D%29%2Cn%2Edone%28function%28%29%7Bvar%20b%3Bm%2E%5FremoveData%28a%2C%22fxshow%22%29%3Bfor%28b%20in%20o%29m%2Estyle%28a%2Cb%2Co%5Bb%5D%29%7D%29%3Bfor%28d%20in%20o%29g%3Dhc%28q%3Fr%5Bd%5D%3A0%2Cd%2Cn%29%2Cd%20in%20r%7C%7C%28r%5Bd%5D%3Dg%2Estart%2Cq%26%26%28g%2Eend%3Dg%2Estart%2Cg%2Estart%3D%22width%22%3D%3D%3Dd%7C%7C%22height%22%3D%3D%3Dd%3F1%3A0%29%29%7D%7Dfunction%20jc%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%2Cf%2Cg%3Bfor%28c%20in%20a%29if%28d%3Dm%2EcamelCase%28c%29%2Ce%3Db%5Bd%5D%2Cf%3Da%5Bc%5D%2Cm%2EisArray%28f%29%26%26%28e%3Df%5B1%5D%2Cf%3Da%5Bc%5D%3Df%5B0%5D%29%2Cc%21%3D%3Dd%26%26%28a%5Bd%5D%3Df%2Cdelete%20a%5Bc%5D%29%2Cg%3Dm%2EcssHooks%5Bd%5D%2Cg%26%26%22expand%22in%20g%29%7Bf%3Dg%2Eexpand%28f%29%2Cdelete%20a%5Bd%5D%3Bfor%28c%20in%20f%29c%20in%20a%7C%7C%28a%5Bc%5D%3Df%5Bc%5D%2Cb%5Bc%5D%3De%29%7Delse%20b%5Bd%5D%3De%7Dfunction%20kc%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%3D0%2Cg%3Ddc%2Elength%2Ch%3Dm%2EDeferred%28%29%2Ealways%28function%28%29%7Bdelete%20i%2Eelem%7D%29%2Ci%3Dfunction%28%29%7Bif%28e%29return%211%3Bfor%28var%20b%3D%24b%7C%7Cfc%28%29%2Cc%3DMath%2Emax%280%2Cj%2EstartTime%2Bj%2Eduration%2Db%29%2Cd%3Dc%2Fj%2Eduration%7C%7C0%2Cf%3D1%2Dd%2Cg%3D0%2Ci%3Dj%2Etweens%2Elength%3Bi%3Eg%3Bg%2B%2B%29j%2Etweens%5Bg%5D%2Erun%28f%29%3Breturn%20h%2EnotifyWith%28a%2C%5Bj%2Cf%2Cc%5D%29%2C1%3Ef%26%26i%3Fc%3A%28h%2EresolveWith%28a%2C%5Bj%5D%29%2C%211%29%7D%2Cj%3Dh%2Epromise%28%7Belem%3Aa%2Cprops%3Am%2Eextend%28%7B%7D%2Cb%29%2Copts%3Am%2Eextend%28%210%2C%7BspecialEasing%3A%7B%7D%7D%2Cc%29%2CoriginalProperties%3Ab%2CoriginalOptions%3Ac%2CstartTime%3A%24b%7C%7Cfc%28%29%2Cduration%3Ac%2Eduration%2Ctweens%3A%5B%5D%2CcreateTween%3Afunction%28b%2Cc%29%7Bvar%20d%3Dm%2ETween%28a%2Cj%2Eopts%2Cb%2Cc%2Cj%2Eopts%2EspecialEasing%5Bb%5D%7C%7Cj%2Eopts%2Eeasing%29%3Breturn%20j%2Etweens%2Epush%28d%29%2Cd%7D%2Cstop%3Afunction%28b%29%7Bvar%20c%3D0%2Cd%3Db%3Fj%2Etweens%2Elength%3A0%3Bif%28e%29return%20this%3Bfor%28e%3D%210%3Bd%3Ec%3Bc%2B%2B%29j%2Etweens%5Bc%5D%2Erun%281%29%3Breturn%20b%3Fh%2EresolveWith%28a%2C%5Bj%2Cb%5D%29%3Ah%2ErejectWith%28a%2C%5Bj%2Cb%5D%29%2Cthis%7D%7D%29%2Ck%3Dj%2Eprops%3Bfor%28jc%28k%2Cj%2Eopts%2EspecialEasing%29%3Bg%3Ef%3Bf%2B%2B%29if%28d%3Ddc%5Bf%5D%2Ecall%28j%2Ca%2Ck%2Cj%2Eopts%29%29return%20d%3Breturn%20m%2Emap%28k%2Chc%2Cj%29%2Cm%2EisFunction%28j%2Eopts%2Estart%29%26%26j%2Eopts%2Estart%2Ecall%28a%2Cj%29%2Cm%2Efx%2Etimer%28m%2Eextend%28i%2C%7Belem%3Aa%2Canim%3Aj%2Cqueue%3Aj%2Eopts%2Equeue%7D%29%29%2Cj%2Eprogress%28j%2Eopts%2Eprogress%29%2Edone%28j%2Eopts%2Edone%2Cj%2Eopts%2Ecomplete%29%2Efail%28j%2Eopts%2Efail%29%2Ealways%28j%2Eopts%2Ealways%29%7Dm%2EAnimation%3Dm%2Eextend%28kc%2C%7Btweener%3Afunction%28a%2Cb%29%7Bm%2EisFunction%28a%29%3F%28b%3Da%2Ca%3D%5B%22%2A%22%5D%29%3Aa%3Da%2Esplit%28%22%20%22%29%3Bfor%28var%20c%2Cd%3D0%2Ce%3Da%2Elength%3Be%3Ed%3Bd%2B%2B%29c%3Da%5Bd%5D%2Cec%5Bc%5D%3Dec%5Bc%5D%7C%7C%5B%5D%2Cec%5Bc%5D%2Eunshift%28b%29%7D%2Cprefilter%3Afunction%28a%2Cb%29%7Bb%3Fdc%2Eunshift%28a%29%3Adc%2Epush%28a%29%7D%7D%29%2Cm%2Espeed%3Dfunction%28a%2Cb%2Cc%29%7Bvar%20d%3Da%26%26%22object%22%3D%3Dtypeof%20a%3Fm%2Eextend%28%7B%7D%2Ca%29%3A%7Bcomplete%3Ac%7C%7C%21c%26%26b%7C%7Cm%2EisFunction%28a%29%26%26a%2Cduration%3Aa%2Ceasing%3Ac%26%26b%7C%7Cb%26%26%21m%2EisFunction%28b%29%26%26b%7D%3Breturn%20d%2Eduration%3Dm%2Efx%2Eoff%3F0%3A%22number%22%3D%3Dtypeof%20d%2Eduration%3Fd%2Eduration%3Ad%2Eduration%20in%20m%2Efx%2Espeeds%3Fm%2Efx%2Espeeds%5Bd%2Eduration%5D%3Am%2Efx%2Espeeds%2E%5Fdefault%2C%28null%3D%3Dd%2Equeue%7C%7Cd%2Equeue%3D%3D%3D%210%29%26%26%28d%2Equeue%3D%22fx%22%29%2Cd%2Eold%3Dd%2Ecomplete%2Cd%2Ecomplete%3Dfunction%28%29%7Bm%2EisFunction%28d%2Eold%29%26%26d%2Eold%2Ecall%28this%29%2Cd%2Equeue%26%26m%2Edequeue%28this%2Cd%2Equeue%29%7D%2Cd%7D%2Cm%2Efn%2Eextend%28%7BfadeTo%3Afunction%28a%2Cb%2Cc%2Cd%29%7Breturn%20this%2Efilter%28U%29%2Ecss%28%22opacity%22%2C0%29%2Eshow%28%29%2Eend%28%29%2Eanimate%28%7Bopacity%3Ab%7D%2Ca%2Cc%2Cd%29%7D%2Canimate%3Afunction%28a%2Cb%2Cc%2Cd%29%7Bvar%20e%3Dm%2EisEmptyObject%28a%29%2Cf%3Dm%2Espeed%28b%2Cc%2Cd%29%2Cg%3Dfunction%28%29%7Bvar%20b%3Dkc%28this%2Cm%2Eextend%28%7B%7D%2Ca%29%2Cf%29%3B%28e%7C%7Cm%2E%5Fdata%28this%2C%22finish%22%29%29%26%26b%2Estop%28%210%29%7D%3Breturn%20g%2Efinish%3Dg%2Ce%7C%7Cf%2Equeue%3D%3D%3D%211%3Fthis%2Eeach%28g%29%3Athis%2Equeue%28f%2Equeue%2Cg%29%7D%2Cstop%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%3Dfunction%28a%29%7Bvar%20b%3Da%2Estop%3Bdelete%20a%2Estop%2Cb%28c%29%7D%3Breturn%22string%22%21%3Dtypeof%20a%26%26%28c%3Db%2Cb%3Da%2Ca%3Dvoid%200%29%2Cb%26%26a%21%3D%3D%211%26%26this%2Equeue%28a%7C%7C%22fx%22%2C%5B%5D%29%2Cthis%2Eeach%28function%28%29%7Bvar%20b%3D%210%2Ce%3Dnull%21%3Da%26%26a%2B%22queueHooks%22%2Cf%3Dm%2Etimers%2Cg%3Dm%2E%5Fdata%28this%29%3Bif%28e%29g%5Be%5D%26%26g%5Be%5D%2Estop%26%26d%28g%5Be%5D%29%3Belse%20for%28e%20in%20g%29g%5Be%5D%26%26g%5Be%5D%2Estop%26%26cc%2Etest%28e%29%26%26d%28g%5Be%5D%29%3Bfor%28e%3Df%2Elength%3Be%2D%2D%3B%29f%5Be%5D%2Eelem%21%3D%3Dthis%7C%7Cnull%21%3Da%26%26f%5Be%5D%2Equeue%21%3D%3Da%7C%7C%28f%5Be%5D%2Eanim%2Estop%28c%29%2Cb%3D%211%2Cf%2Esplice%28e%2C1%29%29%3B%28b%7C%7C%21c%29%26%26m%2Edequeue%28this%2Ca%29%7D%29%7D%2Cfinish%3Afunction%28a%29%7Breturn%20a%21%3D%3D%211%26%26%28a%3Da%7C%7C%22fx%22%29%2Cthis%2Eeach%28function%28%29%7Bvar%20b%2Cc%3Dm%2E%5Fdata%28this%29%2Cd%3Dc%5Ba%2B%22queue%22%5D%2Ce%3Dc%5Ba%2B%22queueHooks%22%5D%2Cf%3Dm%2Etimers%2Cg%3Dd%3Fd%2Elength%3A0%3Bfor%28c%2Efinish%3D%210%2Cm%2Equeue%28this%2Ca%2C%5B%5D%29%2Ce%26%26e%2Estop%26%26e%2Estop%2Ecall%28this%2C%210%29%2Cb%3Df%2Elength%3Bb%2D%2D%3B%29f%5Bb%5D%2Eelem%3D%3D%3Dthis%26%26f%5Bb%5D%2Equeue%3D%3D%3Da%26%26%28f%5Bb%5D%2Eanim%2Estop%28%210%29%2Cf%2Esplice%28b%2C1%29%29%3Bfor%28b%3D0%3Bg%3Eb%3Bb%2B%2B%29d%5Bb%5D%26%26d%5Bb%5D%2Efinish%26%26d%5Bb%5D%2Efinish%2Ecall%28this%29%3Bdelete%20c%2Efinish%7D%29%7D%7D%29%2Cm%2Eeach%28%5B%22toggle%22%2C%22show%22%2C%22hide%22%5D%2Cfunction%28a%2Cb%29%7Bvar%20c%3Dm%2Efn%5Bb%5D%3Bm%2Efn%5Bb%5D%3Dfunction%28a%2Cd%2Ce%29%7Breturn%20null%3D%3Da%7C%7C%22boolean%22%3D%3Dtypeof%20a%3Fc%2Eapply%28this%2Carguments%29%3Athis%2Eanimate%28gc%28b%2C%210%29%2Ca%2Cd%2Ce%29%7D%7D%29%2Cm%2Eeach%28%7BslideDown%3Agc%28%22show%22%29%2CslideUp%3Agc%28%22hide%22%29%2CslideToggle%3Agc%28%22toggle%22%29%2CfadeIn%3A%7Bopacity%3A%22show%22%7D%2CfadeOut%3A%7Bopacity%3A%22hide%22%7D%2CfadeToggle%3A%7Bopacity%3A%22toggle%22%7D%7D%2Cfunction%28a%2Cb%29%7Bm%2Efn%5Ba%5D%3Dfunction%28a%2Cc%2Cd%29%7Breturn%20this%2Eanimate%28b%2Ca%2Cc%2Cd%29%7D%7D%29%2Cm%2Etimers%3D%5B%5D%2Cm%2Efx%2Etick%3Dfunction%28%29%7Bvar%20a%2Cb%3Dm%2Etimers%2Cc%3D0%3Bfor%28%24b%3Dm%2Enow%28%29%3Bc%3Cb%2Elength%3Bc%2B%2B%29a%3Db%5Bc%5D%2Ca%28%29%7C%7Cb%5Bc%5D%21%3D%3Da%7C%7Cb%2Esplice%28c%2D%2D%2C1%29%3Bb%2Elength%7C%7Cm%2Efx%2Estop%28%29%2C%24b%3Dvoid%200%7D%2Cm%2Efx%2Etimer%3Dfunction%28a%29%7Bm%2Etimers%2Epush%28a%29%2Ca%28%29%3Fm%2Efx%2Estart%28%29%3Am%2Etimers%2Epop%28%29%7D%2Cm%2Efx%2Einterval%3D13%2Cm%2Efx%2Estart%3Dfunction%28%29%7B%5Fb%7C%7C%28%5Fb%3DsetInterval%28m%2Efx%2Etick%2Cm%2Efx%2Einterval%29%29%7D%2Cm%2Efx%2Estop%3Dfunction%28%29%7BclearInterval%28%5Fb%29%2C%5Fb%3Dnull%7D%2Cm%2Efx%2Espeeds%3D%7Bslow%3A600%2Cfast%3A200%2C%5Fdefault%3A400%7D%2Cm%2Efn%2Edelay%3Dfunction%28a%2Cb%29%7Breturn%20a%3Dm%2Efx%3Fm%2Efx%2Espeeds%5Ba%5D%7C%7Ca%3Aa%2Cb%3Db%7C%7C%22fx%22%2Cthis%2Equeue%28b%2Cfunction%28b%2Cc%29%7Bvar%20d%3DsetTimeout%28b%2Ca%29%3Bc%2Estop%3Dfunction%28%29%7BclearTimeout%28d%29%7D%7D%29%7D%2Cfunction%28%29%7Bvar%20a%2Cb%2Cc%2Cd%2Ce%3Bb%3Dy%2EcreateElement%28%22div%22%29%2Cb%2EsetAttribute%28%22className%22%2C%22t%22%29%2Cb%2EinnerHTML%3D%22%20%20%3Clink%2F%3E%3Ctable%3E%3C%2Ftable%3E%3Ca%20href%3D%27%2Fa%27%3Ea%3C%2Fa%3E%3Cinput%20type%3D%27checkbox%27%2F%3E%22%2Cd%3Db%2EgetElementsByTagName%28%22a%22%29%5B0%5D%2Cc%3Dy%2EcreateElement%28%22select%22%29%2Ce%3Dc%2EappendChild%28y%2EcreateElement%28%22option%22%29%29%2Ca%3Db%2EgetElementsByTagName%28%22input%22%29%5B0%5D%2Cd%2Estyle%2EcssText%3D%22top%3A1px%22%2Ck%2EgetSetAttribute%3D%22t%22%21%3D%3Db%2EclassName%2Ck%2Estyle%3D%2Ftop%2F%2Etest%28d%2EgetAttribute%28%22style%22%29%29%2Ck%2EhrefNormalized%3D%22%2Fa%22%3D%3D%3Dd%2EgetAttribute%28%22href%22%29%2Ck%2EcheckOn%3D%21%21a%2Evalue%2Ck%2EoptSelected%3De%2Eselected%2Ck%2Eenctype%3D%21%21y%2EcreateElement%28%22form%22%29%2Eenctype%2Cc%2Edisabled%3D%210%2Ck%2EoptDisabled%3D%21e%2Edisabled%2Ca%3Dy%2EcreateElement%28%22input%22%29%2Ca%2EsetAttribute%28%22value%22%2C%22%22%29%2Ck%2Einput%3D%22%22%3D%3D%3Da%2EgetAttribute%28%22value%22%29%2Ca%2Evalue%3D%22t%22%2Ca%2EsetAttribute%28%22type%22%2C%22radio%22%29%2Ck%2EradioValue%3D%22t%22%3D%3D%3Da%2Evalue%7D%28%29%3Bvar%20lc%3D%2F%5Cr%2Fg%3Bm%2Efn%2Eextend%28%7Bval%3Afunction%28a%29%7Bvar%20b%2Cc%2Cd%2Ce%3Dthis%5B0%5D%3B%7Bif%28arguments%2Elength%29return%20d%3Dm%2EisFunction%28a%29%2Cthis%2Eeach%28function%28c%29%7Bvar%20e%3B1%3D%3D%3Dthis%2EnodeType%26%26%28e%3Dd%3Fa%2Ecall%28this%2Cc%2Cm%28this%29%2Eval%28%29%29%3Aa%2Cnull%3D%3De%3Fe%3D%22%22%3A%22number%22%3D%3Dtypeof%20e%3Fe%2B%3D%22%22%3Am%2EisArray%28e%29%26%26%28e%3Dm%2Emap%28e%2Cfunction%28a%29%7Breturn%20null%3D%3Da%3F%22%22%3Aa%2B%22%22%7D%29%29%2Cb%3Dm%2EvalHooks%5Bthis%2Etype%5D%7C%7Cm%2EvalHooks%5Bthis%2EnodeName%2EtoLowerCase%28%29%5D%2Cb%26%26%22set%22in%20b%26%26void%200%21%3D%3Db%2Eset%28this%2Ce%2C%22value%22%29%7C%7C%28this%2Evalue%3De%29%29%7D%29%3Bif%28e%29return%20b%3Dm%2EvalHooks%5Be%2Etype%5D%7C%7Cm%2EvalHooks%5Be%2EnodeName%2EtoLowerCase%28%29%5D%2Cb%26%26%22get%22in%20b%26%26void%200%21%3D%3D%28c%3Db%2Eget%28e%2C%22value%22%29%29%3Fc%3A%28c%3De%2Evalue%2C%22string%22%3D%3Dtypeof%20c%3Fc%2Ereplace%28lc%2C%22%22%29%3Anull%3D%3Dc%3F%22%22%3Ac%29%7D%7D%7D%29%2Cm%2Eextend%28%7BvalHooks%3A%7Boption%3A%7Bget%3Afunction%28a%29%7Bvar%20b%3Dm%2Efind%2Eattr%28a%2C%22value%22%29%3Breturn%20null%21%3Db%3Fb%3Am%2Etrim%28m%2Etext%28a%29%29%7D%7D%2Cselect%3A%7Bget%3Afunction%28a%29%7Bfor%28var%20b%2Cc%2Cd%3Da%2Eoptions%2Ce%3Da%2EselectedIndex%2Cf%3D%22select%2Done%22%3D%3D%3Da%2Etype%7C%7C0%3Ee%2Cg%3Df%3Fnull%3A%5B%5D%2Ch%3Df%3Fe%2B1%3Ad%2Elength%2Ci%3D0%3Ee%3Fh%3Af%3Fe%3A0%3Bh%3Ei%3Bi%2B%2B%29if%28c%3Dd%5Bi%5D%2C%21%28%21c%2Eselected%26%26i%21%3D%3De%7C%7C%28k%2EoptDisabled%3Fc%2Edisabled%3Anull%21%3D%3Dc%2EgetAttribute%28%22disabled%22%29%29%7C%7Cc%2EparentNode%2Edisabled%26%26m%2EnodeName%28c%2EparentNode%2C%22optgroup%22%29%29%29%7Bif%28b%3Dm%28c%29%2Eval%28%29%2Cf%29return%20b%3Bg%2Epush%28b%29%7Dreturn%20g%7D%2Cset%3Afunction%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%3Da%2Eoptions%2Cf%3Dm%2EmakeArray%28b%29%2Cg%3De%2Elength%3Bwhile%28g%2D%2D%29if%28d%3De%5Bg%5D%2Cm%2EinArray%28m%2EvalHooks%2Eoption%2Eget%28d%29%2Cf%29%3E%3D0%29try%7Bd%2Eselected%3Dc%3D%210%7Dcatch%28h%29%7Bd%2EscrollHeight%7Delse%20d%2Eselected%3D%211%3Breturn%20c%7C%7C%28a%2EselectedIndex%3D%2D1%29%2Ce%7D%7D%7D%7D%29%2Cm%2Eeach%28%5B%22radio%22%2C%22checkbox%22%5D%2Cfunction%28%29%7Bm%2EvalHooks%5Bthis%5D%3D%7Bset%3Afunction%28a%2Cb%29%7Breturn%20m%2EisArray%28b%29%3Fa%2Echecked%3Dm%2EinArray%28m%28a%29%2Eval%28%29%2Cb%29%3E%3D0%3Avoid%200%7D%7D%2Ck%2EcheckOn%7C%7C%28m%2EvalHooks%5Bthis%5D%2Eget%3Dfunction%28a%29%7Breturn%20null%3D%3D%3Da%2EgetAttribute%28%22value%22%29%3F%22on%22%3Aa%2Evalue%7D%29%7D%29%3Bvar%20mc%2Cnc%2Coc%3Dm%2Eexpr%2EattrHandle%2Cpc%3D%2F%5E%28%3F%3Achecked%7Cselected%29%24%2Fi%2Cqc%3Dk%2EgetSetAttribute%2Crc%3Dk%2Einput%3Bm%2Efn%2Eextend%28%7Battr%3Afunction%28a%2Cb%29%7Breturn%20V%28this%2Cm%2Eattr%2Ca%2Cb%2Carguments%2Elength%3E1%29%7D%2CremoveAttr%3Afunction%28a%29%7Breturn%20this%2Eeach%28function%28%29%7Bm%2EremoveAttr%28this%2Ca%29%7D%29%7D%7D%29%2Cm%2Eextend%28%7Battr%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%3Da%2EnodeType%3Bif%28a%26%263%21%3D%3Df%26%268%21%3D%3Df%26%262%21%3D%3Df%29return%20typeof%20a%2EgetAttribute%3D%3D%3DK%3Fm%2Eprop%28a%2Cb%2Cc%29%3A%281%3D%3D%3Df%26%26m%2EisXMLDoc%28a%29%7C%7C%28b%3Db%2EtoLowerCase%28%29%2Cd%3Dm%2EattrHooks%5Bb%5D%7C%7C%28m%2Eexpr%2Ematch%2Ebool%2Etest%28b%29%3Fnc%3Amc%29%29%2Cvoid%200%3D%3D%3Dc%3Fd%26%26%22get%22in%20d%26%26null%21%3D%3D%28e%3Dd%2Eget%28a%2Cb%29%29%3Fe%3A%28e%3Dm%2Efind%2Eattr%28a%2Cb%29%2Cnull%3D%3De%3Fvoid%200%3Ae%29%3Anull%21%3D%3Dc%3Fd%26%26%22set%22in%20d%26%26void%200%21%3D%3D%28e%3Dd%2Eset%28a%2Cc%2Cb%29%29%3Fe%3A%28a%2EsetAttribute%28b%2Cc%2B%22%22%29%2Cc%29%3Avoid%20m%2EremoveAttr%28a%2Cb%29%29%7D%2CremoveAttr%3Afunction%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%3D0%2Cf%3Db%26%26b%2Ematch%28E%29%3Bif%28f%26%261%3D%3D%3Da%2EnodeType%29while%28c%3Df%5Be%2B%2B%5D%29d%3Dm%2EpropFix%5Bc%5D%7C%7Cc%2Cm%2Eexpr%2Ematch%2Ebool%2Etest%28c%29%3Frc%26%26qc%7C%7C%21pc%2Etest%28c%29%3Fa%5Bd%5D%3D%211%3Aa%5Bm%2EcamelCase%28%22default%2D%22%2Bc%29%5D%3Da%5Bd%5D%3D%211%3Am%2Eattr%28a%2Cc%2C%22%22%29%2Ca%2EremoveAttribute%28qc%3Fc%3Ad%29%7D%2CattrHooks%3A%7Btype%3A%7Bset%3Afunction%28a%2Cb%29%7Bif%28%21k%2EradioValue%26%26%22radio%22%3D%3D%3Db%26%26m%2EnodeName%28a%2C%22input%22%29%29%7Bvar%20c%3Da%2Evalue%3Breturn%20a%2EsetAttribute%28%22type%22%2Cb%29%2Cc%26%26%28a%2Evalue%3Dc%29%2Cb%7D%7D%7D%7D%7D%29%2Cnc%3D%7Bset%3Afunction%28a%2Cb%2Cc%29%7Breturn%20b%3D%3D%3D%211%3Fm%2EremoveAttr%28a%2Cc%29%3Arc%26%26qc%7C%7C%21pc%2Etest%28c%29%3Fa%2EsetAttribute%28%21qc%26%26m%2EpropFix%5Bc%5D%7C%7Cc%2Cc%29%3Aa%5Bm%2EcamelCase%28%22default%2D%22%2Bc%29%5D%3Da%5Bc%5D%3D%210%2Cc%7D%7D%2Cm%2Eeach%28m%2Eexpr%2Ematch%2Ebool%2Esource%2Ematch%28%2F%5Cw%2B%2Fg%29%2Cfunction%28a%2Cb%29%7Bvar%20c%3Doc%5Bb%5D%7C%7Cm%2Efind%2Eattr%3Boc%5Bb%5D%3Drc%26%26qc%7C%7C%21pc%2Etest%28b%29%3Ffunction%28a%2Cb%2Cd%29%7Bvar%20e%2Cf%3Breturn%20d%7C%7C%28f%3Doc%5Bb%5D%2Coc%5Bb%5D%3De%2Ce%3Dnull%21%3Dc%28a%2Cb%2Cd%29%3Fb%2EtoLowerCase%28%29%3Anull%2Coc%5Bb%5D%3Df%29%2Ce%7D%3Afunction%28a%2Cb%2Cc%29%7Breturn%20c%3Fvoid%200%3Aa%5Bm%2EcamelCase%28%22default%2D%22%2Bb%29%5D%3Fb%2EtoLowerCase%28%29%3Anull%7D%7D%29%2Crc%26%26qc%7C%7C%28m%2EattrHooks%2Evalue%3D%7Bset%3Afunction%28a%2Cb%2Cc%29%7Breturn%20m%2EnodeName%28a%2C%22input%22%29%3Fvoid%28a%2EdefaultValue%3Db%29%3Amc%26%26mc%2Eset%28a%2Cb%2Cc%29%7D%7D%29%2Cqc%7C%7C%28mc%3D%7Bset%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%3Da%2EgetAttributeNode%28c%29%3Breturn%20d%7C%7Ca%2EsetAttributeNode%28d%3Da%2EownerDocument%2EcreateAttribute%28c%29%29%2Cd%2Evalue%3Db%2B%3D%22%22%2C%22value%22%3D%3D%3Dc%7C%7Cb%3D%3D%3Da%2EgetAttribute%28c%29%3Fb%3Avoid%200%7D%7D%2Coc%2Eid%3Doc%2Ename%3Doc%2Ecoords%3Dfunction%28a%2Cb%2Cc%29%7Bvar%20d%3Breturn%20c%3Fvoid%200%3A%28d%3Da%2EgetAttributeNode%28b%29%29%26%26%22%22%21%3D%3Dd%2Evalue%3Fd%2Evalue%3Anull%7D%2Cm%2EvalHooks%2Ebutton%3D%7Bget%3Afunction%28a%2Cb%29%7Bvar%20c%3Da%2EgetAttributeNode%28b%29%3Breturn%20c%26%26c%2Especified%3Fc%2Evalue%3Avoid%200%7D%2Cset%3Amc%2Eset%7D%2Cm%2EattrHooks%2Econtenteditable%3D%7Bset%3Afunction%28a%2Cb%2Cc%29%7Bmc%2Eset%28a%2C%22%22%3D%3D%3Db%3F%211%3Ab%2Cc%29%7D%7D%2Cm%2Eeach%28%5B%22width%22%2C%22height%22%5D%2Cfunction%28a%2Cb%29%7Bm%2EattrHooks%5Bb%5D%3D%7Bset%3Afunction%28a%2Cc%29%7Breturn%22%22%3D%3D%3Dc%3F%28a%2EsetAttribute%28b%2C%22auto%22%29%2Cc%29%3Avoid%200%7D%7D%7D%29%29%2Ck%2Estyle%7C%7C%28m%2EattrHooks%2Estyle%3D%7Bget%3Afunction%28a%29%7Breturn%20a%2Estyle%2EcssText%7C%7Cvoid%200%7D%2Cset%3Afunction%28a%2Cb%29%7Breturn%20a%2Estyle%2EcssText%3Db%2B%22%22%7D%7D%29%3Bvar%20sc%3D%2F%5E%28%3F%3Ainput%7Cselect%7Ctextarea%7Cbutton%7Cobject%29%24%2Fi%2Ctc%3D%2F%5E%28%3F%3Aa%7Carea%29%24%2Fi%3Bm%2Efn%2Eextend%28%7Bprop%3Afunction%28a%2Cb%29%7Breturn%20V%28this%2Cm%2Eprop%2Ca%2Cb%2Carguments%2Elength%3E1%29%7D%2CremoveProp%3Afunction%28a%29%7Breturn%20a%3Dm%2EpropFix%5Ba%5D%7C%7Ca%2Cthis%2Eeach%28function%28%29%7Btry%7Bthis%5Ba%5D%3Dvoid%200%2Cdelete%20this%5Ba%5D%7Dcatch%28b%29%7B%7D%7D%29%7D%7D%29%2Cm%2Eextend%28%7BpropFix%3A%7B%22for%22%3A%22htmlFor%22%2C%22class%22%3A%22className%22%7D%2Cprop%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%2Cg%3Da%2EnodeType%3Bif%28a%26%263%21%3D%3Dg%26%268%21%3D%3Dg%26%262%21%3D%3Dg%29return%20f%3D1%21%3D%3Dg%7C%7C%21m%2EisXMLDoc%28a%29%2Cf%26%26%28b%3Dm%2EpropFix%5Bb%5D%7C%7Cb%2Ce%3Dm%2EpropHooks%5Bb%5D%29%2Cvoid%200%21%3D%3Dc%3Fe%26%26%22set%22in%20e%26%26void%200%21%3D%3D%28d%3De%2Eset%28a%2Cc%2Cb%29%29%3Fd%3Aa%5Bb%5D%3Dc%3Ae%26%26%22get%22in%20e%26%26null%21%3D%3D%28d%3De%2Eget%28a%2Cb%29%29%3Fd%3Aa%5Bb%5D%7D%2CpropHooks%3A%7BtabIndex%3A%7Bget%3Afunction%28a%29%7Bvar%20b%3Dm%2Efind%2Eattr%28a%2C%22tabindex%22%29%3Breturn%20b%3FparseInt%28b%2C10%29%3Asc%2Etest%28a%2EnodeName%29%7C%7Ctc%2Etest%28a%2EnodeName%29%26%26a%2Ehref%3F0%3A%2D1%7D%7D%7D%7D%29%2Ck%2EhrefNormalized%7C%7Cm%2Eeach%28%5B%22href%22%2C%22src%22%5D%2Cfunction%28a%2Cb%29%7Bm%2EpropHooks%5Bb%5D%3D%7Bget%3Afunction%28a%29%7Breturn%20a%2EgetAttribute%28b%2C4%29%7D%7D%7D%29%2Ck%2EoptSelected%7C%7C%28m%2EpropHooks%2Eselected%3D%7Bget%3Afunction%28a%29%7Bvar%20b%3Da%2EparentNode%3Breturn%20b%26%26%28b%2EselectedIndex%2Cb%2EparentNode%26%26b%2EparentNode%2EselectedIndex%29%2Cnull%7D%7D%29%2Cm%2Eeach%28%5B%22tabIndex%22%2C%22readOnly%22%2C%22maxLength%22%2C%22cellSpacing%22%2C%22cellPadding%22%2C%22rowSpan%22%2C%22colSpan%22%2C%22useMap%22%2C%22frameBorder%22%2C%22contentEditable%22%5D%2Cfunction%28%29%7Bm%2EpropFix%5Bthis%2EtoLowerCase%28%29%5D%3Dthis%7D%29%2Ck%2Eenctype%7C%7C%28m%2EpropFix%2Eenctype%3D%22encoding%22%29%3Bvar%20uc%3D%2F%5B%5Ct%5Cr%5Cn%5Cf%5D%2Fg%3Bm%2Efn%2Eextend%28%7BaddClass%3Afunction%28a%29%7Bvar%20b%2Cc%2Cd%2Ce%2Cf%2Cg%2Ch%3D0%2Ci%3Dthis%2Elength%2Cj%3D%22string%22%3D%3Dtypeof%20a%26%26a%3Bif%28m%2EisFunction%28a%29%29return%20this%2Eeach%28function%28b%29%7Bm%28this%29%2EaddClass%28a%2Ecall%28this%2Cb%2Cthis%2EclassName%29%29%7D%29%3Bif%28j%29for%28b%3D%28a%7C%7C%22%22%29%2Ematch%28E%29%7C%7C%5B%5D%3Bi%3Eh%3Bh%2B%2B%29if%28c%3Dthis%5Bh%5D%2Cd%3D1%3D%3D%3Dc%2EnodeType%26%26%28c%2EclassName%3F%28%22%20%22%2Bc%2EclassName%2B%22%20%22%29%2Ereplace%28uc%2C%22%20%22%29%3A%22%20%22%29%29%7Bf%3D0%3Bwhile%28e%3Db%5Bf%2B%2B%5D%29d%2EindexOf%28%22%20%22%2Be%2B%22%20%22%29%3C0%26%26%28d%2B%3De%2B%22%20%22%29%3Bg%3Dm%2Etrim%28d%29%2Cc%2EclassName%21%3D%3Dg%26%26%28c%2EclassName%3Dg%29%7Dreturn%20this%7D%2CremoveClass%3Afunction%28a%29%7Bvar%20b%2Cc%2Cd%2Ce%2Cf%2Cg%2Ch%3D0%2Ci%3Dthis%2Elength%2Cj%3D0%3D%3D%3Darguments%2Elength%7C%7C%22string%22%3D%3Dtypeof%20a%26%26a%3Bif%28m%2EisFunction%28a%29%29return%20this%2Eeach%28function%28b%29%7Bm%28this%29%2EremoveClass%28a%2Ecall%28this%2Cb%2Cthis%2EclassName%29%29%7D%29%3Bif%28j%29for%28b%3D%28a%7C%7C%22%22%29%2Ematch%28E%29%7C%7C%5B%5D%3Bi%3Eh%3Bh%2B%2B%29if%28c%3Dthis%5Bh%5D%2Cd%3D1%3D%3D%3Dc%2EnodeType%26%26%28c%2EclassName%3F%28%22%20%22%2Bc%2EclassName%2B%22%20%22%29%2Ereplace%28uc%2C%22%20%22%29%3A%22%22%29%29%7Bf%3D0%3Bwhile%28e%3Db%5Bf%2B%2B%5D%29while%28d%2EindexOf%28%22%20%22%2Be%2B%22%20%22%29%3E%3D0%29d%3Dd%2Ereplace%28%22%20%22%2Be%2B%22%20%22%2C%22%20%22%29%3Bg%3Da%3Fm%2Etrim%28d%29%3A%22%22%2Cc%2EclassName%21%3D%3Dg%26%26%28c%2EclassName%3Dg%29%7Dreturn%20this%7D%2CtoggleClass%3Afunction%28a%2Cb%29%7Bvar%20c%3Dtypeof%20a%3Breturn%22boolean%22%3D%3Dtypeof%20b%26%26%22string%22%3D%3D%3Dc%3Fb%3Fthis%2EaddClass%28a%29%3Athis%2EremoveClass%28a%29%3Athis%2Eeach%28m%2EisFunction%28a%29%3Ffunction%28c%29%7Bm%28this%29%2EtoggleClass%28a%2Ecall%28this%2Cc%2Cthis%2EclassName%2Cb%29%2Cb%29%7D%3Afunction%28%29%7Bif%28%22string%22%3D%3D%3Dc%29%7Bvar%20b%2Cd%3D0%2Ce%3Dm%28this%29%2Cf%3Da%2Ematch%28E%29%7C%7C%5B%5D%3Bwhile%28b%3Df%5Bd%2B%2B%5D%29e%2EhasClass%28b%29%3Fe%2EremoveClass%28b%29%3Ae%2EaddClass%28b%29%7Delse%28c%3D%3D%3DK%7C%7C%22boolean%22%3D%3D%3Dc%29%26%26%28this%2EclassName%26%26m%2E%5Fdata%28this%2C%22%5F%5FclassName%5F%5F%22%2Cthis%2EclassName%29%2Cthis%2EclassName%3Dthis%2EclassName%7C%7Ca%3D%3D%3D%211%3F%22%22%3Am%2E%5Fdata%28this%2C%22%5F%5FclassName%5F%5F%22%29%7C%7C%22%22%29%7D%29%7D%2ChasClass%3Afunction%28a%29%7Bfor%28var%20b%3D%22%20%22%2Ba%2B%22%20%22%2Cc%3D0%2Cd%3Dthis%2Elength%3Bd%3Ec%3Bc%2B%2B%29if%281%3D%3D%3Dthis%5Bc%5D%2EnodeType%26%26%28%22%20%22%2Bthis%5Bc%5D%2EclassName%2B%22%20%22%29%2Ereplace%28uc%2C%22%20%22%29%2EindexOf%28b%29%3E%3D0%29return%210%3Breturn%211%7D%7D%29%2Cm%2Eeach%28%22blur%20focus%20focusin%20focusout%20load%20resize%20scroll%20unload%20click%20dblclick%20mousedown%20mouseup%20mousemove%20mouseover%20mouseout%20mouseenter%20mouseleave%20change%20select%20submit%20keydown%20keypress%20keyup%20error%20contextmenu%22%2Esplit%28%22%20%22%29%2Cfunction%28a%2Cb%29%7Bm%2Efn%5Bb%5D%3Dfunction%28a%2Cc%29%7Breturn%20arguments%2Elength%3E0%3Fthis%2Eon%28b%2Cnull%2Ca%2Cc%29%3Athis%2Etrigger%28b%29%7D%7D%29%2Cm%2Efn%2Eextend%28%7Bhover%3Afunction%28a%2Cb%29%7Breturn%20this%2Emouseenter%28a%29%2Emouseleave%28b%7C%7Ca%29%7D%2Cbind%3Afunction%28a%2Cb%2Cc%29%7Breturn%20this%2Eon%28a%2Cnull%2Cb%2Cc%29%7D%2Cunbind%3Afunction%28a%2Cb%29%7Breturn%20this%2Eoff%28a%2Cnull%2Cb%29%7D%2Cdelegate%3Afunction%28a%2Cb%2Cc%2Cd%29%7Breturn%20this%2Eon%28b%2Ca%2Cc%2Cd%29%7D%2Cundelegate%3Afunction%28a%2Cb%2Cc%29%7Breturn%201%3D%3D%3Darguments%2Elength%3Fthis%2Eoff%28a%2C%22%2A%2A%22%29%3Athis%2Eoff%28b%2Ca%7C%7C%22%2A%2A%22%2Cc%29%7D%7D%29%3Bvar%20vc%3Dm%2Enow%28%29%2Cwc%3D%2F%5C%3F%2F%2Cxc%3D%2F%28%2C%29%7C%28%5C%5B%7C%7B%29%7C%28%7D%7C%5D%29%7C%22%28%3F%3A%5B%5E%22%5C%5C%5Cr%5Cn%5D%7C%5C%5C%5B%22%5C%5C%5C%2Fbfnrt%5D%7C%5C%5Cu%5B%5Cda%2DfA%2DF%5D%7B4%7D%29%2A%22%5Cs%2A%3A%3F%7Ctrue%7Cfalse%7Cnull%7C%2D%3F%28%3F%210%5Cd%29%5Cd%2B%28%3F%3A%5C%2E%5Cd%2B%7C%29%28%3F%3A%5BeE%5D%5B%2B%2D%5D%3F%5Cd%2B%7C%29%2Fg%3Bm%2EparseJSON%3Dfunction%28b%29%7Bif%28a%2EJSON%26%26a%2EJSON%2Eparse%29return%20a%2EJSON%2Eparse%28b%2B%22%22%29%3Bvar%20c%2Cd%3Dnull%2Ce%3Dm%2Etrim%28b%2B%22%22%29%3Breturn%20e%26%26%21m%2Etrim%28e%2Ereplace%28xc%2Cfunction%28a%2Cb%2Ce%2Cf%29%7Breturn%20c%26%26b%26%26%28d%3D0%29%2C0%3D%3D%3Dd%3Fa%3A%28c%3De%7C%7Cb%2Cd%2B%3D%21f%2D%21e%2C%22%22%29%7D%29%29%3FFunction%28%22return%20%22%2Be%29%28%29%3Am%2Eerror%28%22Invalid%20JSON%3A%20%22%2Bb%29%7D%2Cm%2EparseXML%3Dfunction%28b%29%7Bvar%20c%2Cd%3Bif%28%21b%7C%7C%22string%22%21%3Dtypeof%20b%29return%20null%3Btry%7Ba%2EDOMParser%3F%28d%3Dnew%20DOMParser%2Cc%3Dd%2EparseFromString%28b%2C%22text%2Fxml%22%29%29%3A%28c%3Dnew%20ActiveXObject%28%22Microsoft%2EXMLDOM%22%29%2Cc%2Easync%3D%22false%22%2Cc%2EloadXML%28b%29%29%7Dcatch%28e%29%7Bc%3Dvoid%200%7Dreturn%20c%26%26c%2EdocumentElement%26%26%21c%2EgetElementsByTagName%28%22parsererror%22%29%2Elength%7C%7Cm%2Eerror%28%22Invalid%20XML%3A%20%22%2Bb%29%2Cc%7D%3Bvar%20yc%2Czc%2CAc%3D%2F%23%2E%2A%24%2F%2CBc%3D%2F%28%5B%3F%26%5D%29%5F%3D%5B%5E%26%5D%2A%2F%2CCc%3D%2F%5E%28%2E%2A%3F%29%3A%5B%20%5Ct%5D%2A%28%5B%5E%5Cr%5Cn%5D%2A%29%5Cr%3F%24%2Fgm%2CDc%3D%2F%5E%28%3F%3Aabout%7Capp%7Capp%2Dstorage%7C%2E%2B%2Dextension%7Cfile%7Cres%7Cwidget%29%3A%24%2F%2CEc%3D%2F%5E%28%3F%3AGET%7CHEAD%29%24%2F%2CFc%3D%2F%5E%5C%2F%5C%2F%2F%2CGc%3D%2F%5E%28%5B%5Cw%2E%2B%2D%5D%2B%3A%29%28%3F%3A%5C%2F%5C%2F%28%3F%3A%5B%5E%5C%2F%3F%23%5D%2A%40%7C%29%28%5B%5E%5C%2F%3F%23%3A%5D%2A%29%28%3F%3A%3A%28%5Cd%2B%29%7C%29%7C%29%2F%2CHc%3D%7B%7D%2CIc%3D%7B%7D%2CJc%3D%22%2A%2F%22%2Econcat%28%22%2A%22%29%3Btry%7Bzc%3Dlocation%2Ehref%7Dcatch%28Kc%29%7Bzc%3Dy%2EcreateElement%28%22a%22%29%2Czc%2Ehref%3D%22%22%2Czc%3Dzc%2Ehref%7Dyc%3DGc%2Eexec%28zc%2EtoLowerCase%28%29%29%7C%7C%5B%5D%3Bfunction%20Lc%28a%29%7Breturn%20function%28b%2Cc%29%7B%22string%22%21%3Dtypeof%20b%26%26%28c%3Db%2Cb%3D%22%2A%22%29%3Bvar%20d%2Ce%3D0%2Cf%3Db%2EtoLowerCase%28%29%2Ematch%28E%29%7C%7C%5B%5D%3Bif%28m%2EisFunction%28c%29%29while%28d%3Df%5Be%2B%2B%5D%29%22%2B%22%3D%3D%3Dd%2EcharAt%280%29%3F%28d%3Dd%2Eslice%281%29%7C%7C%22%2A%22%2C%28a%5Bd%5D%3Da%5Bd%5D%7C%7C%5B%5D%29%2Eunshift%28c%29%29%3A%28a%5Bd%5D%3Da%5Bd%5D%7C%7C%5B%5D%29%2Epush%28c%29%7D%7Dfunction%20Mc%28a%2Cb%2Cc%2Cd%29%7Bvar%20e%3D%7B%7D%2Cf%3Da%3D%3D%3DIc%3Bfunction%20g%28h%29%7Bvar%20i%3Breturn%20e%5Bh%5D%3D%210%2Cm%2Eeach%28a%5Bh%5D%7C%7C%5B%5D%2Cfunction%28a%2Ch%29%7Bvar%20j%3Dh%28b%2Cc%2Cd%29%3Breturn%22string%22%21%3Dtypeof%20j%7C%7Cf%7C%7Ce%5Bj%5D%3Ff%3F%21%28i%3Dj%29%3Avoid%200%3A%28b%2EdataTypes%2Eunshift%28j%29%2Cg%28j%29%2C%211%29%7D%29%2Ci%7Dreturn%20g%28b%2EdataTypes%5B0%5D%29%7C%7C%21e%5B%22%2A%22%5D%26%26g%28%22%2A%22%29%7Dfunction%20Nc%28a%2Cb%29%7Bvar%20c%2Cd%2Ce%3Dm%2EajaxSettings%2EflatOptions%7C%7C%7B%7D%3Bfor%28d%20in%20b%29void%200%21%3D%3Db%5Bd%5D%26%26%28%28e%5Bd%5D%3Fa%3Ac%7C%7C%28c%3D%7B%7D%29%29%5Bd%5D%3Db%5Bd%5D%29%3Breturn%20c%26%26m%2Eextend%28%210%2Ca%2Cc%29%2Ca%7Dfunction%20Oc%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%2Cg%2Ch%3Da%2Econtents%2Ci%3Da%2EdataTypes%3Bwhile%28%22%2A%22%3D%3D%3Di%5B0%5D%29i%2Eshift%28%29%2Cvoid%200%3D%3D%3De%26%26%28e%3Da%2EmimeType%7C%7Cb%2EgetResponseHeader%28%22Content%2DType%22%29%29%3Bif%28e%29for%28g%20in%20h%29if%28h%5Bg%5D%26%26h%5Bg%5D%2Etest%28e%29%29%7Bi%2Eunshift%28g%29%3Bbreak%7Dif%28i%5B0%5Din%20c%29f%3Di%5B0%5D%3Belse%7Bfor%28g%20in%20c%29%7Bif%28%21i%5B0%5D%7C%7Ca%2Econverters%5Bg%2B%22%20%22%2Bi%5B0%5D%5D%29%7Bf%3Dg%3Bbreak%7Dd%7C%7C%28d%3Dg%29%7Df%3Df%7C%7Cd%7Dreturn%20f%3F%28f%21%3D%3Di%5B0%5D%26%26i%2Eunshift%28f%29%2Cc%5Bf%5D%29%3Avoid%200%7Dfunction%20Pc%28a%2Cb%2Cc%2Cd%29%7Bvar%20e%2Cf%2Cg%2Ch%2Ci%2Cj%3D%7B%7D%2Ck%3Da%2EdataTypes%2Eslice%28%29%3Bif%28k%5B1%5D%29for%28g%20in%20a%2Econverters%29j%5Bg%2EtoLowerCase%28%29%5D%3Da%2Econverters%5Bg%5D%3Bf%3Dk%2Eshift%28%29%3Bwhile%28f%29if%28a%2EresponseFields%5Bf%5D%26%26%28c%5Ba%2EresponseFields%5Bf%5D%5D%3Db%29%2C%21i%26%26d%26%26a%2EdataFilter%26%26%28b%3Da%2EdataFilter%28b%2Ca%2EdataType%29%29%2Ci%3Df%2Cf%3Dk%2Eshift%28%29%29if%28%22%2A%22%3D%3D%3Df%29f%3Di%3Belse%20if%28%22%2A%22%21%3D%3Di%26%26i%21%3D%3Df%29%7Bif%28g%3Dj%5Bi%2B%22%20%22%2Bf%5D%7C%7Cj%5B%22%2A%20%22%2Bf%5D%2C%21g%29for%28e%20in%20j%29if%28h%3De%2Esplit%28%22%20%22%29%2Ch%5B1%5D%3D%3D%3Df%26%26%28g%3Dj%5Bi%2B%22%20%22%2Bh%5B0%5D%5D%7C%7Cj%5B%22%2A%20%22%2Bh%5B0%5D%5D%29%29%7Bg%3D%3D%3D%210%3Fg%3Dj%5Be%5D%3Aj%5Be%5D%21%3D%3D%210%26%26%28f%3Dh%5B0%5D%2Ck%2Eunshift%28h%5B1%5D%29%29%3Bbreak%7Dif%28g%21%3D%3D%210%29if%28g%26%26a%5B%22throws%22%5D%29b%3Dg%28b%29%3Belse%20try%7Bb%3Dg%28b%29%7Dcatch%28l%29%7Breturn%7Bstate%3A%22parsererror%22%2Cerror%3Ag%3Fl%3A%22No%20conversion%20from%20%22%2Bi%2B%22%20to%20%22%2Bf%7D%7D%7Dreturn%7Bstate%3A%22success%22%2Cdata%3Ab%7D%7Dm%2Eextend%28%7Bactive%3A0%2ClastModified%3A%7B%7D%2Cetag%3A%7B%7D%2CajaxSettings%3A%7Burl%3Azc%2Ctype%3A%22GET%22%2CisLocal%3ADc%2Etest%28yc%5B1%5D%29%2Cglobal%3A%210%2CprocessData%3A%210%2Casync%3A%210%2CcontentType%3A%22application%2Fx%2Dwww%2Dform%2Durlencoded%3B%20charset%3DUTF%2D8%22%2Caccepts%3A%7B%22%2A%22%3AJc%2Ctext%3A%22text%2Fplain%22%2Chtml%3A%22text%2Fhtml%22%2Cxml%3A%22application%2Fxml%2C%20text%2Fxml%22%2Cjson%3A%22application%2Fjson%2C%20text%2Fjavascript%22%7D%2Ccontents%3A%7Bxml%3A%2Fxml%2F%2Chtml%3A%2Fhtml%2F%2Cjson%3A%2Fjson%2F%7D%2CresponseFields%3A%7Bxml%3A%22responseXML%22%2Ctext%3A%22responseText%22%2Cjson%3A%22responseJSON%22%7D%2Cconverters%3A%7B%22%2A%20text%22%3AString%2C%22text%20html%22%3A%210%2C%22text%20json%22%3Am%2EparseJSON%2C%22text%20xml%22%3Am%2EparseXML%7D%2CflatOptions%3A%7Burl%3A%210%2Ccontext%3A%210%7D%7D%2CajaxSetup%3Afunction%28a%2Cb%29%7Breturn%20b%3FNc%28Nc%28a%2Cm%2EajaxSettings%29%2Cb%29%3ANc%28m%2EajaxSettings%2Ca%29%7D%2CajaxPrefilter%3ALc%28Hc%29%2CajaxTransport%3ALc%28Ic%29%2Cajax%3Afunction%28a%2Cb%29%7B%22object%22%3D%3Dtypeof%20a%26%26%28b%3Da%2Ca%3Dvoid%200%29%2Cb%3Db%7C%7C%7B%7D%3Bvar%20c%2Cd%2Ce%2Cf%2Cg%2Ch%2Ci%2Cj%2Ck%3Dm%2EajaxSetup%28%7B%7D%2Cb%29%2Cl%3Dk%2Econtext%7C%7Ck%2Cn%3Dk%2Econtext%26%26%28l%2EnodeType%7C%7Cl%2Ejquery%29%3Fm%28l%29%3Am%2Eevent%2Co%3Dm%2EDeferred%28%29%2Cp%3Dm%2ECallbacks%28%22once%20memory%22%29%2Cq%3Dk%2EstatusCode%7C%7C%7B%7D%2Cr%3D%7B%7D%2Cs%3D%7B%7D%2Ct%3D0%2Cu%3D%22canceled%22%2Cv%3D%7BreadyState%3A0%2CgetResponseHeader%3Afunction%28a%29%7Bvar%20b%3Bif%282%3D%3D%3Dt%29%7Bif%28%21j%29%7Bj%3D%7B%7D%3Bwhile%28b%3DCc%2Eexec%28f%29%29j%5Bb%5B1%5D%2EtoLowerCase%28%29%5D%3Db%5B2%5D%7Db%3Dj%5Ba%2EtoLowerCase%28%29%5D%7Dreturn%20null%3D%3Db%3Fnull%3Ab%7D%2CgetAllResponseHeaders%3Afunction%28%29%7Breturn%202%3D%3D%3Dt%3Ff%3Anull%7D%2CsetRequestHeader%3Afunction%28a%2Cb%29%7Bvar%20c%3Da%2EtoLowerCase%28%29%3Breturn%20t%7C%7C%28a%3Ds%5Bc%5D%3Ds%5Bc%5D%7C%7Ca%2Cr%5Ba%5D%3Db%29%2Cthis%7D%2CoverrideMimeType%3Afunction%28a%29%7Breturn%20t%7C%7C%28k%2EmimeType%3Da%29%2Cthis%7D%2CstatusCode%3Afunction%28a%29%7Bvar%20b%3Bif%28a%29if%282%3Et%29for%28b%20in%20a%29q%5Bb%5D%3D%5Bq%5Bb%5D%2Ca%5Bb%5D%5D%3Belse%20v%2Ealways%28a%5Bv%2Estatus%5D%29%3Breturn%20this%7D%2Cabort%3Afunction%28a%29%7Bvar%20b%3Da%7C%7Cu%3Breturn%20i%26%26i%2Eabort%28b%29%2Cx%280%2Cb%29%2Cthis%7D%7D%3Bif%28o%2Epromise%28v%29%2Ecomplete%3Dp%2Eadd%2Cv%2Esuccess%3Dv%2Edone%2Cv%2Eerror%3Dv%2Efail%2Ck%2Eurl%3D%28%28a%7C%7Ck%2Eurl%7C%7Czc%29%2B%22%22%29%2Ereplace%28Ac%2C%22%22%29%2Ereplace%28Fc%2Cyc%5B1%5D%2B%22%2F%2F%22%29%2Ck%2Etype%3Db%2Emethod%7C%7Cb%2Etype%7C%7Ck%2Emethod%7C%7Ck%2Etype%2Ck%2EdataTypes%3Dm%2Etrim%28k%2EdataType%7C%7C%22%2A%22%29%2EtoLowerCase%28%29%2Ematch%28E%29%7C%7C%5B%22%22%5D%2Cnull%3D%3Dk%2EcrossDomain%26%26%28c%3DGc%2Eexec%28k%2Eurl%2EtoLowerCase%28%29%29%2Ck%2EcrossDomain%3D%21%28%21c%7C%7Cc%5B1%5D%3D%3D%3Dyc%5B1%5D%26%26c%5B2%5D%3D%3D%3Dyc%5B2%5D%26%26%28c%5B3%5D%7C%7C%28%22http%3A%22%3D%3D%3Dc%5B1%5D%3F%2280%22%3A%22443%22%29%29%3D%3D%3D%28yc%5B3%5D%7C%7C%28%22http%3A%22%3D%3D%3Dyc%5B1%5D%3F%2280%22%3A%22443%22%29%29%29%29%2Ck%2Edata%26%26k%2EprocessData%26%26%22string%22%21%3Dtypeof%20k%2Edata%26%26%28k%2Edata%3Dm%2Eparam%28k%2Edata%2Ck%2Etraditional%29%29%2CMc%28Hc%2Ck%2Cb%2Cv%29%2C2%3D%3D%3Dt%29return%20v%3Bh%3Dk%2Eglobal%2Ch%26%260%3D%3D%3Dm%2Eactive%2B%2B%26%26m%2Eevent%2Etrigger%28%22ajaxStart%22%29%2Ck%2Etype%3Dk%2Etype%2EtoUpperCase%28%29%2Ck%2EhasContent%3D%21Ec%2Etest%28k%2Etype%29%2Ce%3Dk%2Eurl%2Ck%2EhasContent%7C%7C%28k%2Edata%26%26%28e%3Dk%2Eurl%2B%3D%28wc%2Etest%28e%29%3F%22%26%22%3A%22%3F%22%29%2Bk%2Edata%2Cdelete%20k%2Edata%29%2Ck%2Ecache%3D%3D%3D%211%26%26%28k%2Eurl%3DBc%2Etest%28e%29%3Fe%2Ereplace%28Bc%2C%22%241%5F%3D%22%2Bvc%2B%2B%29%3Ae%2B%28wc%2Etest%28e%29%3F%22%26%22%3A%22%3F%22%29%2B%22%5F%3D%22%2Bvc%2B%2B%29%29%2Ck%2EifModified%26%26%28m%2ElastModified%5Be%5D%26%26v%2EsetRequestHeader%28%22If%2DModified%2DSince%22%2Cm%2ElastModified%5Be%5D%29%2Cm%2Eetag%5Be%5D%26%26v%2EsetRequestHeader%28%22If%2DNone%2DMatch%22%2Cm%2Eetag%5Be%5D%29%29%2C%28k%2Edata%26%26k%2EhasContent%26%26k%2EcontentType%21%3D%3D%211%7C%7Cb%2EcontentType%29%26%26v%2EsetRequestHeader%28%22Content%2DType%22%2Ck%2EcontentType%29%2Cv%2EsetRequestHeader%28%22Accept%22%2Ck%2EdataTypes%5B0%5D%26%26k%2Eaccepts%5Bk%2EdataTypes%5B0%5D%5D%3Fk%2Eaccepts%5Bk%2EdataTypes%5B0%5D%5D%2B%28%22%2A%22%21%3D%3Dk%2EdataTypes%5B0%5D%3F%22%2C%20%22%2BJc%2B%22%3B%20q%3D0%2E01%22%3A%22%22%29%3Ak%2Eaccepts%5B%22%2A%22%5D%29%3Bfor%28d%20in%20k%2Eheaders%29v%2EsetRequestHeader%28d%2Ck%2Eheaders%5Bd%5D%29%3Bif%28k%2EbeforeSend%26%26%28k%2EbeforeSend%2Ecall%28l%2Cv%2Ck%29%3D%3D%3D%211%7C%7C2%3D%3D%3Dt%29%29return%20v%2Eabort%28%29%3Bu%3D%22abort%22%3Bfor%28d%20in%7Bsuccess%3A1%2Cerror%3A1%2Ccomplete%3A1%7D%29v%5Bd%5D%28k%5Bd%5D%29%3Bif%28i%3DMc%28Ic%2Ck%2Cb%2Cv%29%29%7Bv%2EreadyState%3D1%2Ch%26%26n%2Etrigger%28%22ajaxSend%22%2C%5Bv%2Ck%5D%29%2Ck%2Easync%26%26k%2Etimeout%3E0%26%26%28g%3DsetTimeout%28function%28%29%7Bv%2Eabort%28%22timeout%22%29%7D%2Ck%2Etimeout%29%29%3Btry%7Bt%3D1%2Ci%2Esend%28r%2Cx%29%7Dcatch%28w%29%7Bif%28%21%282%3Et%29%29throw%20w%3Bx%28%2D1%2Cw%29%7D%7Delse%20x%28%2D1%2C%22No%20Transport%22%29%3Bfunction%20x%28a%2Cb%2Cc%2Cd%29%7Bvar%20j%2Cr%2Cs%2Cu%2Cw%2Cx%3Db%3B2%21%3D%3Dt%26%26%28t%3D2%2Cg%26%26clearTimeout%28g%29%2Ci%3Dvoid%200%2Cf%3Dd%7C%7C%22%22%2Cv%2EreadyState%3Da%3E0%3F4%3A0%2Cj%3Da%3E%3D200%26%26300%3Ea%7C%7C304%3D%3D%3Da%2Cc%26%26%28u%3DOc%28k%2Cv%2Cc%29%29%2Cu%3DPc%28k%2Cu%2Cv%2Cj%29%2Cj%3F%28k%2EifModified%26%26%28w%3Dv%2EgetResponseHeader%28%22Last%2DModified%22%29%2Cw%26%26%28m%2ElastModified%5Be%5D%3Dw%29%2Cw%3Dv%2EgetResponseHeader%28%22etag%22%29%2Cw%26%26%28m%2Eetag%5Be%5D%3Dw%29%29%2C204%3D%3D%3Da%7C%7C%22HEAD%22%3D%3D%3Dk%2Etype%3Fx%3D%22nocontent%22%3A304%3D%3D%3Da%3Fx%3D%22notmodified%22%3A%28x%3Du%2Estate%2Cr%3Du%2Edata%2Cs%3Du%2Eerror%2Cj%3D%21s%29%29%3A%28s%3Dx%2C%28a%7C%7C%21x%29%26%26%28x%3D%22error%22%2C0%3Ea%26%26%28a%3D0%29%29%29%2Cv%2Estatus%3Da%2Cv%2EstatusText%3D%28b%7C%7Cx%29%2B%22%22%2Cj%3Fo%2EresolveWith%28l%2C%5Br%2Cx%2Cv%5D%29%3Ao%2ErejectWith%28l%2C%5Bv%2Cx%2Cs%5D%29%2Cv%2EstatusCode%28q%29%2Cq%3Dvoid%200%2Ch%26%26n%2Etrigger%28j%3F%22ajaxSuccess%22%3A%22ajaxError%22%2C%5Bv%2Ck%2Cj%3Fr%3As%5D%29%2Cp%2EfireWith%28l%2C%5Bv%2Cx%5D%29%2Ch%26%26%28n%2Etrigger%28%22ajaxComplete%22%2C%5Bv%2Ck%5D%29%2C%2D%2Dm%2Eactive%7C%7Cm%2Eevent%2Etrigger%28%22ajaxStop%22%29%29%29%7Dreturn%20v%7D%2CgetJSON%3Afunction%28a%2Cb%2Cc%29%7Breturn%20m%2Eget%28a%2Cb%2Cc%2C%22json%22%29%7D%2CgetScript%3Afunction%28a%2Cb%29%7Breturn%20m%2Eget%28a%2Cvoid%200%2Cb%2C%22script%22%29%7D%7D%29%2Cm%2Eeach%28%5B%22get%22%2C%22post%22%5D%2Cfunction%28a%2Cb%29%7Bm%5Bb%5D%3Dfunction%28a%2Cc%2Cd%2Ce%29%7Breturn%20m%2EisFunction%28c%29%26%26%28e%3De%7C%7Cd%2Cd%3Dc%2Cc%3Dvoid%200%29%2Cm%2Eajax%28%7Burl%3Aa%2Ctype%3Ab%2CdataType%3Ae%2Cdata%3Ac%2Csuccess%3Ad%7D%29%7D%7D%29%2Cm%2Eeach%28%5B%22ajaxStart%22%2C%22ajaxStop%22%2C%22ajaxComplete%22%2C%22ajaxError%22%2C%22ajaxSuccess%22%2C%22ajaxSend%22%5D%2Cfunction%28a%2Cb%29%7Bm%2Efn%5Bb%5D%3Dfunction%28a%29%7Breturn%20this%2Eon%28b%2Ca%29%7D%7D%29%2Cm%2E%5FevalUrl%3Dfunction%28a%29%7Breturn%20m%2Eajax%28%7Burl%3Aa%2Ctype%3A%22GET%22%2CdataType%3A%22script%22%2Casync%3A%211%2Cglobal%3A%211%2C%22throws%22%3A%210%7D%29%7D%2Cm%2Efn%2Eextend%28%7BwrapAll%3Afunction%28a%29%7Bif%28m%2EisFunction%28a%29%29return%20this%2Eeach%28function%28b%29%7Bm%28this%29%2EwrapAll%28a%2Ecall%28this%2Cb%29%29%7D%29%3Bif%28this%5B0%5D%29%7Bvar%20b%3Dm%28a%2Cthis%5B0%5D%2EownerDocument%29%2Eeq%280%29%2Eclone%28%210%29%3Bthis%5B0%5D%2EparentNode%26%26b%2EinsertBefore%28this%5B0%5D%29%2Cb%2Emap%28function%28%29%7Bvar%20a%3Dthis%3Bwhile%28a%2EfirstChild%26%261%3D%3D%3Da%2EfirstChild%2EnodeType%29a%3Da%2EfirstChild%3Breturn%20a%7D%29%2Eappend%28this%29%7Dreturn%20this%7D%2CwrapInner%3Afunction%28a%29%7Breturn%20this%2Eeach%28m%2EisFunction%28a%29%3Ffunction%28b%29%7Bm%28this%29%2EwrapInner%28a%2Ecall%28this%2Cb%29%29%7D%3Afunction%28%29%7Bvar%20b%3Dm%28this%29%2Cc%3Db%2Econtents%28%29%3Bc%2Elength%3Fc%2EwrapAll%28a%29%3Ab%2Eappend%28a%29%7D%29%7D%2Cwrap%3Afunction%28a%29%7Bvar%20b%3Dm%2EisFunction%28a%29%3Breturn%20this%2Eeach%28function%28c%29%7Bm%28this%29%2EwrapAll%28b%3Fa%2Ecall%28this%2Cc%29%3Aa%29%7D%29%7D%2Cunwrap%3Afunction%28%29%7Breturn%20this%2Eparent%28%29%2Eeach%28function%28%29%7Bm%2EnodeName%28this%2C%22body%22%29%7C%7Cm%28this%29%2EreplaceWith%28this%2EchildNodes%29%7D%29%2Eend%28%29%7D%7D%29%2Cm%2Eexpr%2Efilters%2Ehidden%3Dfunction%28a%29%7Breturn%20a%2EoffsetWidth%3C%3D0%26%26a%2EoffsetHeight%3C%3D0%7C%7C%21k%2EreliableHiddenOffsets%28%29%26%26%22none%22%3D%3D%3D%28a%2Estyle%26%26a%2Estyle%2Edisplay%7C%7Cm%2Ecss%28a%2C%22display%22%29%29%7D%2Cm%2Eexpr%2Efilters%2Evisible%3Dfunction%28a%29%7Breturn%21m%2Eexpr%2Efilters%2Ehidden%28a%29%7D%3Bvar%20Qc%3D%2F%2520%2Fg%2CRc%3D%2F%5C%5B%5C%5D%24%2F%2CSc%3D%2F%5Cr%3F%5Cn%2Fg%2CTc%3D%2F%5E%28%3F%3Asubmit%7Cbutton%7Cimage%7Creset%7Cfile%29%24%2Fi%2CUc%3D%2F%5E%28%3F%3Ainput%7Cselect%7Ctextarea%7Ckeygen%29%2Fi%3Bfunction%20Vc%28a%2Cb%2Cc%2Cd%29%7Bvar%20e%3Bif%28m%2EisArray%28b%29%29m%2Eeach%28b%2Cfunction%28b%2Ce%29%7Bc%7C%7CRc%2Etest%28a%29%3Fd%28a%2Ce%29%3AVc%28a%2B%22%5B%22%2B%28%22object%22%3D%3Dtypeof%20e%3Fb%3A%22%22%29%2B%22%5D%22%2Ce%2Cc%2Cd%29%7D%29%3Belse%20if%28c%7C%7C%22object%22%21%3D%3Dm%2Etype%28b%29%29d%28a%2Cb%29%3Belse%20for%28e%20in%20b%29Vc%28a%2B%22%5B%22%2Be%2B%22%5D%22%2Cb%5Be%5D%2Cc%2Cd%29%7Dm%2Eparam%3Dfunction%28a%2Cb%29%7Bvar%20c%2Cd%3D%5B%5D%2Ce%3Dfunction%28a%2Cb%29%7Bb%3Dm%2EisFunction%28b%29%3Fb%28%29%3Anull%3D%3Db%3F%22%22%3Ab%2Cd%5Bd%2Elength%5D%3DencodeURIComponent%28a%29%2B%22%3D%22%2BencodeURIComponent%28b%29%7D%3Bif%28void%200%3D%3D%3Db%26%26%28b%3Dm%2EajaxSettings%26%26m%2EajaxSettings%2Etraditional%29%2Cm%2EisArray%28a%29%7C%7Ca%2Ejquery%26%26%21m%2EisPlainObject%28a%29%29m%2Eeach%28a%2Cfunction%28%29%7Be%28this%2Ename%2Cthis%2Evalue%29%7D%29%3Belse%20for%28c%20in%20a%29Vc%28c%2Ca%5Bc%5D%2Cb%2Ce%29%3Breturn%20d%2Ejoin%28%22%26%22%29%2Ereplace%28Qc%2C%22%2B%22%29%7D%2Cm%2Efn%2Eextend%28%7Bserialize%3Afunction%28%29%7Breturn%20m%2Eparam%28this%2EserializeArray%28%29%29%7D%2CserializeArray%3Afunction%28%29%7Breturn%20this%2Emap%28function%28%29%7Bvar%20a%3Dm%2Eprop%28this%2C%22elements%22%29%3Breturn%20a%3Fm%2EmakeArray%28a%29%3Athis%7D%29%2Efilter%28function%28%29%7Bvar%20a%3Dthis%2Etype%3Breturn%20this%2Ename%26%26%21m%28this%29%2Eis%28%22%3Adisabled%22%29%26%26Uc%2Etest%28this%2EnodeName%29%26%26%21Tc%2Etest%28a%29%26%26%28this%2Echecked%7C%7C%21W%2Etest%28a%29%29%7D%29%2Emap%28function%28a%2Cb%29%7Bvar%20c%3Dm%28this%29%2Eval%28%29%3Breturn%20null%3D%3Dc%3Fnull%3Am%2EisArray%28c%29%3Fm%2Emap%28c%2Cfunction%28a%29%7Breturn%7Bname%3Ab%2Ename%2Cvalue%3Aa%2Ereplace%28Sc%2C%22%5Cr%5Cn%22%29%7D%7D%29%3A%7Bname%3Ab%2Ename%2Cvalue%3Ac%2Ereplace%28Sc%2C%22%5Cr%5Cn%22%29%7D%7D%29%2Eget%28%29%7D%7D%29%2Cm%2EajaxSettings%2Exhr%3Dvoid%200%21%3D%3Da%2EActiveXObject%3Ffunction%28%29%7Breturn%21this%2EisLocal%26%26%2F%5E%28get%7Cpost%7Chead%7Cput%7Cdelete%7Coptions%29%24%2Fi%2Etest%28this%2Etype%29%26%26Zc%28%29%7C%7C%24c%28%29%7D%3AZc%3Bvar%20Wc%3D0%2CXc%3D%7B%7D%2CYc%3Dm%2EajaxSettings%2Exhr%28%29%3Ba%2EActiveXObject%26%26m%28a%29%2Eon%28%22unload%22%2Cfunction%28%29%7Bfor%28var%20a%20in%20Xc%29Xc%5Ba%5D%28void%200%2C%210%29%7D%29%2Ck%2Ecors%3D%21%21Yc%26%26%22withCredentials%22in%20Yc%2CYc%3Dk%2Eajax%3D%21%21Yc%2CYc%26%26m%2EajaxTransport%28function%28a%29%7Bif%28%21a%2EcrossDomain%7C%7Ck%2Ecors%29%7Bvar%20b%3Breturn%7Bsend%3Afunction%28c%2Cd%29%7Bvar%20e%2Cf%3Da%2Exhr%28%29%2Cg%3D%2B%2BWc%3Bif%28f%2Eopen%28a%2Etype%2Ca%2Eurl%2Ca%2Easync%2Ca%2Eusername%2Ca%2Epassword%29%2Ca%2ExhrFields%29for%28e%20in%20a%2ExhrFields%29f%5Be%5D%3Da%2ExhrFields%5Be%5D%3Ba%2EmimeType%26%26f%2EoverrideMimeType%26%26f%2EoverrideMimeType%28a%2EmimeType%29%2Ca%2EcrossDomain%7C%7Cc%5B%22X%2DRequested%2DWith%22%5D%7C%7C%28c%5B%22X%2DRequested%2DWith%22%5D%3D%22XMLHttpRequest%22%29%3Bfor%28e%20in%20c%29void%200%21%3D%3Dc%5Be%5D%26%26f%2EsetRequestHeader%28e%2Cc%5Be%5D%2B%22%22%29%3Bf%2Esend%28a%2EhasContent%26%26a%2Edata%7C%7Cnull%29%2Cb%3Dfunction%28c%2Ce%29%7Bvar%20h%2Ci%2Cj%3Bif%28b%26%26%28e%7C%7C4%3D%3D%3Df%2EreadyState%29%29if%28delete%20Xc%5Bg%5D%2Cb%3Dvoid%200%2Cf%2Eonreadystatechange%3Dm%2Enoop%2Ce%294%21%3D%3Df%2EreadyState%26%26f%2Eabort%28%29%3Belse%7Bj%3D%7B%7D%2Ch%3Df%2Estatus%2C%22string%22%3D%3Dtypeof%20f%2EresponseText%26%26%28j%2Etext%3Df%2EresponseText%29%3Btry%7Bi%3Df%2EstatusText%7Dcatch%28k%29%7Bi%3D%22%22%7Dh%7C%7C%21a%2EisLocal%7C%7Ca%2EcrossDomain%3F1223%3D%3D%3Dh%26%26%28h%3D204%29%3Ah%3Dj%2Etext%3F200%3A404%7Dj%26%26d%28h%2Ci%2Cj%2Cf%2EgetAllResponseHeaders%28%29%29%7D%2Ca%2Easync%3F4%3D%3D%3Df%2EreadyState%3FsetTimeout%28b%29%3Af%2Eonreadystatechange%3DXc%5Bg%5D%3Db%3Ab%28%29%7D%2Cabort%3Afunction%28%29%7Bb%26%26b%28void%200%2C%210%29%7D%7D%7D%7D%29%3Bfunction%20Zc%28%29%7Btry%7Breturn%20new%20a%2EXMLHttpRequest%7Dcatch%28b%29%7B%7D%7Dfunction%20%24c%28%29%7Btry%7Breturn%20new%20a%2EActiveXObject%28%22Microsoft%2EXMLHTTP%22%29%7Dcatch%28b%29%7B%7D%7Dm%2EajaxSetup%28%7Baccepts%3A%7Bscript%3A%22text%2Fjavascript%2C%20application%2Fjavascript%2C%20application%2Fecmascript%2C%20application%2Fx%2Decmascript%22%7D%2Ccontents%3A%7Bscript%3A%2F%28%3F%3Ajava%7Cecma%29script%2F%7D%2Cconverters%3A%7B%22text%20script%22%3Afunction%28a%29%7Breturn%20m%2EglobalEval%28a%29%2Ca%7D%7D%7D%29%2Cm%2EajaxPrefilter%28%22script%22%2Cfunction%28a%29%7Bvoid%200%3D%3D%3Da%2Ecache%26%26%28a%2Ecache%3D%211%29%2Ca%2EcrossDomain%26%26%28a%2Etype%3D%22GET%22%2Ca%2Eglobal%3D%211%29%7D%29%2Cm%2EajaxTransport%28%22script%22%2Cfunction%28a%29%7Bif%28a%2EcrossDomain%29%7Bvar%20b%2Cc%3Dy%2Ehead%7C%7Cm%28%22head%22%29%5B0%5D%7C%7Cy%2EdocumentElement%3Breturn%7Bsend%3Afunction%28d%2Ce%29%7Bb%3Dy%2EcreateElement%28%22script%22%29%2Cb%2Easync%3D%210%2Ca%2EscriptCharset%26%26%28b%2Echarset%3Da%2EscriptCharset%29%2Cb%2Esrc%3Da%2Eurl%2Cb%2Eonload%3Db%2Eonreadystatechange%3Dfunction%28a%2Cc%29%7B%28c%7C%7C%21b%2EreadyState%7C%7C%2Floaded%7Ccomplete%2F%2Etest%28b%2EreadyState%29%29%26%26%28b%2Eonload%3Db%2Eonreadystatechange%3Dnull%2Cb%2EparentNode%26%26b%2EparentNode%2EremoveChild%28b%29%2Cb%3Dnull%2Cc%7C%7Ce%28200%2C%22success%22%29%29%7D%2Cc%2EinsertBefore%28b%2Cc%2EfirstChild%29%7D%2Cabort%3Afunction%28%29%7Bb%26%26b%2Eonload%28void%200%2C%210%29%7D%7D%7D%7D%29%3Bvar%20%5Fc%3D%5B%5D%2Cad%3D%2F%28%3D%29%5C%3F%28%3F%3D%26%7C%24%29%7C%5C%3F%5C%3F%2F%3Bm%2EajaxSetup%28%7Bjsonp%3A%22callback%22%2CjsonpCallback%3Afunction%28%29%7Bvar%20a%3D%5Fc%2Epop%28%29%7C%7Cm%2Eexpando%2B%22%5F%22%2Bvc%2B%2B%3Breturn%20this%5Ba%5D%3D%210%2Ca%7D%7D%29%2Cm%2EajaxPrefilter%28%22json%20jsonp%22%2Cfunction%28b%2Cc%2Cd%29%7Bvar%20e%2Cf%2Cg%2Ch%3Db%2Ejsonp%21%3D%3D%211%26%26%28ad%2Etest%28b%2Eurl%29%3F%22url%22%3A%22string%22%3D%3Dtypeof%20b%2Edata%26%26%21%28b%2EcontentType%7C%7C%22%22%29%2EindexOf%28%22application%2Fx%2Dwww%2Dform%2Durlencoded%22%29%26%26ad%2Etest%28b%2Edata%29%26%26%22data%22%29%3Breturn%20h%7C%7C%22jsonp%22%3D%3D%3Db%2EdataTypes%5B0%5D%3F%28e%3Db%2EjsonpCallback%3Dm%2EisFunction%28b%2EjsonpCallback%29%3Fb%2EjsonpCallback%28%29%3Ab%2EjsonpCallback%2Ch%3Fb%5Bh%5D%3Db%5Bh%5D%2Ereplace%28ad%2C%22%241%22%2Be%29%3Ab%2Ejsonp%21%3D%3D%211%26%26%28b%2Eurl%2B%3D%28wc%2Etest%28b%2Eurl%29%3F%22%26%22%3A%22%3F%22%29%2Bb%2Ejsonp%2B%22%3D%22%2Be%29%2Cb%2Econverters%5B%22script%20json%22%5D%3Dfunction%28%29%7Breturn%20g%7C%7Cm%2Eerror%28e%2B%22%20was%20not%20called%22%29%2Cg%5B0%5D%7D%2Cb%2EdataTypes%5B0%5D%3D%22json%22%2Cf%3Da%5Be%5D%2Ca%5Be%5D%3Dfunction%28%29%7Bg%3Darguments%7D%2Cd%2Ealways%28function%28%29%7Ba%5Be%5D%3Df%2Cb%5Be%5D%26%26%28b%2EjsonpCallback%3Dc%2EjsonpCallback%2C%5Fc%2Epush%28e%29%29%2Cg%26%26m%2EisFunction%28f%29%26%26f%28g%5B0%5D%29%2Cg%3Df%3Dvoid%200%7D%29%2C%22script%22%29%3Avoid%200%7D%29%2Cm%2EparseHTML%3Dfunction%28a%2Cb%2Cc%29%7Bif%28%21a%7C%7C%22string%22%21%3Dtypeof%20a%29return%20null%3B%22boolean%22%3D%3Dtypeof%20b%26%26%28c%3Db%2Cb%3D%211%29%2Cb%3Db%7C%7Cy%3Bvar%20d%3Du%2Eexec%28a%29%2Ce%3D%21c%26%26%5B%5D%3Breturn%20d%3F%5Bb%2EcreateElement%28d%5B1%5D%29%5D%3A%28d%3Dm%2EbuildFragment%28%5Ba%5D%2Cb%2Ce%29%2Ce%26%26e%2Elength%26%26m%28e%29%2Eremove%28%29%2Cm%2Emerge%28%5B%5D%2Cd%2EchildNodes%29%29%7D%3Bvar%20bd%3Dm%2Efn%2Eload%3Bm%2Efn%2Eload%3Dfunction%28a%2Cb%2Cc%29%7Bif%28%22string%22%21%3Dtypeof%20a%26%26bd%29return%20bd%2Eapply%28this%2Carguments%29%3Bvar%20d%2Ce%2Cf%2Cg%3Dthis%2Ch%3Da%2EindexOf%28%22%20%22%29%3Breturn%20h%3E%3D0%26%26%28d%3Dm%2Etrim%28a%2Eslice%28h%2Ca%2Elength%29%29%2Ca%3Da%2Eslice%280%2Ch%29%29%2Cm%2EisFunction%28b%29%3F%28c%3Db%2Cb%3Dvoid%200%29%3Ab%26%26%22object%22%3D%3Dtypeof%20b%26%26%28f%3D%22POST%22%29%2Cg%2Elength%3E0%26%26m%2Eajax%28%7Burl%3Aa%2Ctype%3Af%2CdataType%3A%22html%22%2Cdata%3Ab%7D%29%2Edone%28function%28a%29%7Be%3Darguments%2Cg%2Ehtml%28d%3Fm%28%22%3Cdiv%3E%22%29%2Eappend%28m%2EparseHTML%28a%29%29%2Efind%28d%29%3Aa%29%7D%29%2Ecomplete%28c%26%26function%28a%2Cb%29%7Bg%2Eeach%28c%2Ce%7C%7C%5Ba%2EresponseText%2Cb%2Ca%5D%29%7D%29%2Cthis%7D%2Cm%2Eexpr%2Efilters%2Eanimated%3Dfunction%28a%29%7Breturn%20m%2Egrep%28m%2Etimers%2Cfunction%28b%29%7Breturn%20a%3D%3D%3Db%2Eelem%7D%29%2Elength%7D%3Bvar%20cd%3Da%2Edocument%2EdocumentElement%3Bfunction%20dd%28a%29%7Breturn%20m%2EisWindow%28a%29%3Fa%3A9%3D%3D%3Da%2EnodeType%3Fa%2EdefaultView%7C%7Ca%2EparentWindow%3A%211%7Dm%2Eoffset%3D%7BsetOffset%3Afunction%28a%2Cb%2Cc%29%7Bvar%20d%2Ce%2Cf%2Cg%2Ch%2Ci%2Cj%2Ck%3Dm%2Ecss%28a%2C%22position%22%29%2Cl%3Dm%28a%29%2Cn%3D%7B%7D%3B%22static%22%3D%3D%3Dk%26%26%28a%2Estyle%2Eposition%3D%22relative%22%29%2Ch%3Dl%2Eoffset%28%29%2Cf%3Dm%2Ecss%28a%2C%22top%22%29%2Ci%3Dm%2Ecss%28a%2C%22left%22%29%2Cj%3D%28%22absolute%22%3D%3D%3Dk%7C%7C%22fixed%22%3D%3D%3Dk%29%26%26m%2EinArray%28%22auto%22%2C%5Bf%2Ci%5D%29%3E%2D1%2Cj%3F%28d%3Dl%2Eposition%28%29%2Cg%3Dd%2Etop%2Ce%3Dd%2Eleft%29%3A%28g%3DparseFloat%28f%29%7C%7C0%2Ce%3DparseFloat%28i%29%7C%7C0%29%2Cm%2EisFunction%28b%29%26%26%28b%3Db%2Ecall%28a%2Cc%2Ch%29%29%2Cnull%21%3Db%2Etop%26%26%28n%2Etop%3Db%2Etop%2Dh%2Etop%2Bg%29%2Cnull%21%3Db%2Eleft%26%26%28n%2Eleft%3Db%2Eleft%2Dh%2Eleft%2Be%29%2C%22using%22in%20b%3Fb%2Eusing%2Ecall%28a%2Cn%29%3Al%2Ecss%28n%29%7D%7D%2Cm%2Efn%2Eextend%28%7Boffset%3Afunction%28a%29%7Bif%28arguments%2Elength%29return%20void%200%3D%3D%3Da%3Fthis%3Athis%2Eeach%28function%28b%29%7Bm%2Eoffset%2EsetOffset%28this%2Ca%2Cb%29%7D%29%3Bvar%20b%2Cc%2Cd%3D%7Btop%3A0%2Cleft%3A0%7D%2Ce%3Dthis%5B0%5D%2Cf%3De%26%26e%2EownerDocument%3Bif%28f%29return%20b%3Df%2EdocumentElement%2Cm%2Econtains%28b%2Ce%29%3F%28typeof%20e%2EgetBoundingClientRect%21%3D%3DK%26%26%28d%3De%2EgetBoundingClientRect%28%29%29%2Cc%3Ddd%28f%29%2C%7Btop%3Ad%2Etop%2B%28c%2EpageYOffset%7C%7Cb%2EscrollTop%29%2D%28b%2EclientTop%7C%7C0%29%2Cleft%3Ad%2Eleft%2B%28c%2EpageXOffset%7C%7Cb%2EscrollLeft%29%2D%28b%2EclientLeft%7C%7C0%29%7D%29%3Ad%7D%2Cposition%3Afunction%28%29%7Bif%28this%5B0%5D%29%7Bvar%20a%2Cb%2Cc%3D%7Btop%3A0%2Cleft%3A0%7D%2Cd%3Dthis%5B0%5D%3Breturn%22fixed%22%3D%3D%3Dm%2Ecss%28d%2C%22position%22%29%3Fb%3Dd%2EgetBoundingClientRect%28%29%3A%28a%3Dthis%2EoffsetParent%28%29%2Cb%3Dthis%2Eoffset%28%29%2Cm%2EnodeName%28a%5B0%5D%2C%22html%22%29%7C%7C%28c%3Da%2Eoffset%28%29%29%2Cc%2Etop%2B%3Dm%2Ecss%28a%5B0%5D%2C%22borderTopWidth%22%2C%210%29%2Cc%2Eleft%2B%3Dm%2Ecss%28a%5B0%5D%2C%22borderLeftWidth%22%2C%210%29%29%2C%7Btop%3Ab%2Etop%2Dc%2Etop%2Dm%2Ecss%28d%2C%22marginTop%22%2C%210%29%2Cleft%3Ab%2Eleft%2Dc%2Eleft%2Dm%2Ecss%28d%2C%22marginLeft%22%2C%210%29%7D%7D%7D%2CoffsetParent%3Afunction%28%29%7Breturn%20this%2Emap%28function%28%29%7Bvar%20a%3Dthis%2EoffsetParent%7C%7Ccd%3Bwhile%28a%26%26%21m%2EnodeName%28a%2C%22html%22%29%26%26%22static%22%3D%3D%3Dm%2Ecss%28a%2C%22position%22%29%29a%3Da%2EoffsetParent%3Breturn%20a%7C%7Ccd%7D%29%7D%7D%29%2Cm%2Eeach%28%7BscrollLeft%3A%22pageXOffset%22%2CscrollTop%3A%22pageYOffset%22%7D%2Cfunction%28a%2Cb%29%7Bvar%20c%3D%2FY%2F%2Etest%28b%29%3Bm%2Efn%5Ba%5D%3Dfunction%28d%29%7Breturn%20V%28this%2Cfunction%28a%2Cd%2Ce%29%7Bvar%20f%3Ddd%28a%29%3Breturn%20void%200%3D%3D%3De%3Ff%3Fb%20in%20f%3Ff%5Bb%5D%3Af%2Edocument%2EdocumentElement%5Bd%5D%3Aa%5Bd%5D%3Avoid%28f%3Ff%2EscrollTo%28c%3Fm%28f%29%2EscrollLeft%28%29%3Ae%2Cc%3Fe%3Am%28f%29%2EscrollTop%28%29%29%3Aa%5Bd%5D%3De%29%7D%2Ca%2Cd%2Carguments%2Elength%2Cnull%29%7D%7D%29%2Cm%2Eeach%28%5B%22top%22%2C%22left%22%5D%2Cfunction%28a%2Cb%29%7Bm%2EcssHooks%5Bb%5D%3DLb%28k%2EpixelPosition%2Cfunction%28a%2Cc%29%7Breturn%20c%3F%28c%3DJb%28a%2Cb%29%2CHb%2Etest%28c%29%3Fm%28a%29%2Eposition%28%29%5Bb%5D%2B%22px%22%3Ac%29%3Avoid%200%7D%29%7D%29%2Cm%2Eeach%28%7BHeight%3A%22height%22%2CWidth%3A%22width%22%7D%2Cfunction%28a%2Cb%29%7Bm%2Eeach%28%7Bpadding%3A%22inner%22%2Ba%2Ccontent%3Ab%2C%22%22%3A%22outer%22%2Ba%7D%2Cfunction%28c%2Cd%29%7Bm%2Efn%5Bd%5D%3Dfunction%28d%2Ce%29%7Bvar%20f%3Darguments%2Elength%26%26%28c%7C%7C%22boolean%22%21%3Dtypeof%20d%29%2Cg%3Dc%7C%7C%28d%3D%3D%3D%210%7C%7Ce%3D%3D%3D%210%3F%22margin%22%3A%22border%22%29%3Breturn%20V%28this%2Cfunction%28b%2Cc%2Cd%29%7Bvar%20e%3Breturn%20m%2EisWindow%28b%29%3Fb%2Edocument%2EdocumentElement%5B%22client%22%2Ba%5D%3A9%3D%3D%3Db%2EnodeType%3F%28e%3Db%2EdocumentElement%2CMath%2Emax%28b%2Ebody%5B%22scroll%22%2Ba%5D%2Ce%5B%22scroll%22%2Ba%5D%2Cb%2Ebody%5B%22offset%22%2Ba%5D%2Ce%5B%22offset%22%2Ba%5D%2Ce%5B%22client%22%2Ba%5D%29%29%3Avoid%200%3D%3D%3Dd%3Fm%2Ecss%28b%2Cc%2Cg%29%3Am%2Estyle%28b%2Cc%2Cd%2Cg%29%7D%2Cb%2Cf%3Fd%3Avoid%200%2Cf%2Cnull%29%7D%7D%29%7D%29%2Cm%2Efn%2Esize%3Dfunction%28%29%7Breturn%20this%2Elength%7D%2Cm%2Efn%2EandSelf%3Dm%2Efn%2EaddBack%2C%22function%22%3D%3Dtypeof%20define%26%26define%2Eamd%26%26define%28%22jquery%22%2C%5B%5D%2Cfunction%28%29%7Breturn%20m%7D%29%3Bvar%20ed%3Da%2EjQuery%2Cfd%3Da%2E%24%3Breturn%20m%2EnoConflict%3Dfunction%28b%29%7Breturn%20a%2E%24%3D%3D%3Dm%26%26%28a%2E%24%3Dfd%29%2Cb%26%26a%2EjQuery%3D%3D%3Dm%26%26%28a%2EjQuery%3Ded%29%2Cm%7D%2Ctypeof%20b%3D%3D%3DK%26%26%28a%2EjQuery%3Da%2E%24%3Dm%29%2Cm%7D%29%3B%0A"></script>
<link href="data:text/css,%2F%2A%20required%20styles%20%2A%2F%0A%0A%2Eleaflet%2Dmap%2Dpane%2C%0A%2Eleaflet%2Dtile%2C%0A%2Eleaflet%2Dmarker%2Dicon%2C%0A%2Eleaflet%2Dmarker%2Dshadow%2C%0A%2Eleaflet%2Dtile%2Dpane%2C%0A%2Eleaflet%2Dtile%2Dcontainer%2C%0A%2Eleaflet%2Doverlay%2Dpane%2C%0A%2Eleaflet%2Dshadow%2Dpane%2C%0A%2Eleaflet%2Dmarker%2Dpane%2C%0A%2Eleaflet%2Dpopup%2Dpane%2C%0A%2Eleaflet%2Doverlay%2Dpane%20svg%2C%0A%2Eleaflet%2Dzoom%2Dbox%2C%0A%2Eleaflet%2Dimage%2Dlayer%2C%0A%2Eleaflet%2Dlayer%20%7B%0A%09position%3A%20absolute%3B%0A%09left%3A%200%3B%0A%09top%3A%200%3B%0A%09%7D%0A%2Eleaflet%2Dcontainer%20%7B%0A%09overflow%3A%20hidden%3B%0A%09%2Dms%2Dtouch%2Daction%3A%20none%3B%0A%09%7D%0A%2Eleaflet%2Dtile%2C%0A%2Eleaflet%2Dmarker%2Dicon%2C%0A%2Eleaflet%2Dmarker%2Dshadow%20%7B%0A%09%2Dwebkit%2Duser%2Dselect%3A%20none%3B%0A%09%20%20%20%2Dmoz%2Duser%2Dselect%3A%20none%3B%0A%09%20%20%20%20%20%20%20%20user%2Dselect%3A%20none%3B%0A%09%2Dwebkit%2Duser%2Ddrag%3A%20none%3B%0A%09%7D%0A%2Eleaflet%2Dmarker%2Dicon%2C%0A%2Eleaflet%2Dmarker%2Dshadow%20%7B%0A%09display%3A%20block%3B%0A%09%7D%0A%2F%2A%20map%20is%20broken%20in%20FF%20if%20you%20have%20max%2Dwidth%3A%20100%25%20on%20tiles%20%2A%2F%0A%2Eleaflet%2Dcontainer%20img%20%7B%0A%09max%2Dwidth%3A%20none%20%21important%3B%0A%09%7D%0A%2F%2A%20stupid%20Android%202%20doesn%27t%20understand%20%22max%2Dwidth%3A%20none%22%20properly%20%2A%2F%0A%2Eleaflet%2Dcontainer%20img%2Eleaflet%2Dimage%2Dlayer%20%7B%0A%09max%2Dwidth%3A%2015000px%20%21important%3B%0A%09%7D%0A%2Eleaflet%2Dtile%20%7B%0A%09filter%3A%20inherit%3B%0A%09visibility%3A%20hidden%3B%0A%09%7D%0A%2Eleaflet%2Dtile%2Dloaded%20%7B%0A%09visibility%3A%20inherit%3B%0A%09%7D%0A%2Eleaflet%2Dzoom%2Dbox%20%7B%0A%09width%3A%200%3B%0A%09height%3A%200%3B%0A%09%7D%0A%2F%2A%20workaround%20for%20https%3A%2F%2Fbugzilla%2Emozilla%2Eorg%2Fshow%5Fbug%2Ecgi%3Fid%3D888319%20%2A%2F%0A%2Eleaflet%2Doverlay%2Dpane%20svg%20%7B%0A%09%2Dmoz%2Duser%2Dselect%3A%20none%3B%0A%09%7D%0A%0A%2Eleaflet%2Dtile%2Dpane%20%20%20%20%7B%20z%2Dindex%3A%202%3B%20%7D%0A%2Eleaflet%2Dobjects%2Dpane%20%7B%20z%2Dindex%3A%203%3B%20%7D%0A%2Eleaflet%2Doverlay%2Dpane%20%7B%20z%2Dindex%3A%204%3B%20%7D%0A%2Eleaflet%2Dshadow%2Dpane%20%20%7B%20z%2Dindex%3A%205%3B%20%7D%0A%2Eleaflet%2Dmarker%2Dpane%20%20%7B%20z%2Dindex%3A%206%3B%20%7D%0A%2Eleaflet%2Dpopup%2Dpane%20%20%20%7B%20z%2Dindex%3A%207%3B%20%7D%0A%0A%2Eleaflet%2Dvml%2Dshape%20%7B%0A%09width%3A%201px%3B%0A%09height%3A%201px%3B%0A%09%7D%0A%2Elvml%20%7B%0A%09behavior%3A%20url%2F%2A%2A%2F%28%23default%23VML%29%3B%0A%09display%3A%20inline%2Dblock%3B%0A%09position%3A%20absolute%3B%0A%09%7D%0A%0A%0A%2F%2A%20control%20positioning%20%2A%2F%0A%0A%2Eleaflet%2Dcontrol%20%7B%0A%09position%3A%20relative%3B%0A%09z%2Dindex%3A%207%3B%0A%09pointer%2Devents%3A%20auto%3B%0A%09%7D%0A%2Eleaflet%2Dtop%2C%0A%2Eleaflet%2Dbottom%20%7B%0A%09position%3A%20absolute%3B%0A%09z%2Dindex%3A%201000%3B%0A%09pointer%2Devents%3A%20none%3B%0A%09%7D%0A%2Eleaflet%2Dtop%20%7B%0A%09top%3A%200%3B%0A%09%7D%0A%2Eleaflet%2Dright%20%7B%0A%09right%3A%200%3B%0A%09%7D%0A%2Eleaflet%2Dbottom%20%7B%0A%09bottom%3A%200%3B%0A%09%7D%0A%2Eleaflet%2Dleft%20%7B%0A%09left%3A%200%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%20%7B%0A%09float%3A%20left%3B%0A%09clear%3A%20both%3B%0A%09%7D%0A%2Eleaflet%2Dright%20%2Eleaflet%2Dcontrol%20%7B%0A%09float%3A%20right%3B%0A%09%7D%0A%2Eleaflet%2Dtop%20%2Eleaflet%2Dcontrol%20%7B%0A%09margin%2Dtop%3A%2010px%3B%0A%09%7D%0A%2Eleaflet%2Dbottom%20%2Eleaflet%2Dcontrol%20%7B%0A%09margin%2Dbottom%3A%2010px%3B%0A%09%7D%0A%2Eleaflet%2Dleft%20%2Eleaflet%2Dcontrol%20%7B%0A%09margin%2Dleft%3A%2010px%3B%0A%09%7D%0A%2Eleaflet%2Dright%20%2Eleaflet%2Dcontrol%20%7B%0A%09margin%2Dright%3A%2010px%3B%0A%09%7D%0A%0A%0A%2F%2A%20zoom%20and%20fade%20animations%20%2A%2F%0A%0A%2Eleaflet%2Dfade%2Danim%20%2Eleaflet%2Dtile%2C%0A%2Eleaflet%2Dfade%2Danim%20%2Eleaflet%2Dpopup%20%7B%0A%09opacity%3A%200%3B%0A%09%2Dwebkit%2Dtransition%3A%20opacity%200%2E2s%20linear%3B%0A%09%20%20%20%2Dmoz%2Dtransition%3A%20opacity%200%2E2s%20linear%3B%0A%09%20%20%20%20%20%2Do%2Dtransition%3A%20opacity%200%2E2s%20linear%3B%0A%09%20%20%20%20%20%20%20%20transition%3A%20opacity%200%2E2s%20linear%3B%0A%09%7D%0A%2Eleaflet%2Dfade%2Danim%20%2Eleaflet%2Dtile%2Dloaded%2C%0A%2Eleaflet%2Dfade%2Danim%20%2Eleaflet%2Dmap%2Dpane%20%2Eleaflet%2Dpopup%20%7B%0A%09opacity%3A%201%3B%0A%09%7D%0A%0A%2Eleaflet%2Dzoom%2Danim%20%2Eleaflet%2Dzoom%2Danimated%20%7B%0A%09%2Dwebkit%2Dtransition%3A%20%2Dwebkit%2Dtransform%200%2E25s%20cubic%2Dbezier%280%2C0%2C0%2E25%2C1%29%3B%0A%09%20%20%20%2Dmoz%2Dtransition%3A%20%20%20%20%2Dmoz%2Dtransform%200%2E25s%20cubic%2Dbezier%280%2C0%2C0%2E25%2C1%29%3B%0A%09%20%20%20%20%20%2Do%2Dtransition%3A%20%20%20%20%20%20%2Do%2Dtransform%200%2E25s%20cubic%2Dbezier%280%2C0%2C0%2E25%2C1%29%3B%0A%09%20%20%20%20%20%20%20%20transition%3A%20%20%20%20%20%20%20%20%20transform%200%2E25s%20cubic%2Dbezier%280%2C0%2C0%2E25%2C1%29%3B%0A%09%7D%0A%2Eleaflet%2Dzoom%2Danim%20%2Eleaflet%2Dtile%2C%0A%2Eleaflet%2Dpan%2Danim%20%2Eleaflet%2Dtile%2C%0A%2Eleaflet%2Dtouching%20%2Eleaflet%2Dzoom%2Danimated%20%7B%0A%09%2Dwebkit%2Dtransition%3A%20none%3B%0A%09%20%20%20%2Dmoz%2Dtransition%3A%20none%3B%0A%09%20%20%20%20%20%2Do%2Dtransition%3A%20none%3B%0A%09%20%20%20%20%20%20%20%20transition%3A%20none%3B%0A%09%7D%0A%0A%2Eleaflet%2Dzoom%2Danim%20%2Eleaflet%2Dzoom%2Dhide%20%7B%0A%09visibility%3A%20hidden%3B%0A%09%7D%0A%0A%0A%2F%2A%20cursors%20%2A%2F%0A%0A%2Eleaflet%2Dclickable%20%7B%0A%09cursor%3A%20pointer%3B%0A%09%7D%0A%2Eleaflet%2Dcontainer%20%7B%0A%09cursor%3A%20%2Dwebkit%2Dgrab%3B%0A%09cursor%3A%20%20%20%20%2Dmoz%2Dgrab%3B%0A%09%7D%0A%2Eleaflet%2Dpopup%2Dpane%2C%0A%2Eleaflet%2Dcontrol%20%7B%0A%09cursor%3A%20auto%3B%0A%09%7D%0A%2Eleaflet%2Ddragging%20%2Eleaflet%2Dcontainer%2C%0A%2Eleaflet%2Ddragging%20%2Eleaflet%2Dclickable%20%7B%0A%09cursor%3A%20move%3B%0A%09cursor%3A%20%2Dwebkit%2Dgrabbing%3B%0A%09cursor%3A%20%20%20%20%2Dmoz%2Dgrabbing%3B%0A%09%7D%0A%0A%0A%2F%2A%20visual%20tweaks%20%2A%2F%0A%0A%2Eleaflet%2Dcontainer%20%7B%0A%09background%3A%20%23ddd%3B%0A%09outline%3A%200%3B%0A%09%7D%0A%2Eleaflet%2Dcontainer%20a%20%7B%0A%09color%3A%20%230078A8%3B%0A%09%7D%0A%2Eleaflet%2Dcontainer%20a%2Eleaflet%2Dactive%20%7B%0A%09outline%3A%202px%20solid%20orange%3B%0A%09%7D%0A%2Eleaflet%2Dzoom%2Dbox%20%7B%0A%09border%3A%202px%20dotted%20%2338f%3B%0A%09background%3A%20rgba%28255%2C255%2C255%2C0%2E5%29%3B%0A%09%7D%0A%0A%0A%2F%2A%20general%20typography%20%2A%2F%0A%2Eleaflet%2Dcontainer%20%7B%0A%09font%3A%2012px%2F1%2E5%20%22Helvetica%20Neue%22%2C%20Arial%2C%20Helvetica%2C%20sans%2Dserif%3B%0A%09%7D%0A%0A%0A%2F%2A%20general%20toolbar%20styles%20%2A%2F%0A%0A%2Eleaflet%2Dbar%20%7B%0A%09box%2Dshadow%3A%200%201px%205px%20rgba%280%2C0%2C0%2C0%2E65%29%3B%0A%09border%2Dradius%3A%204px%3B%0A%09%7D%0A%2Eleaflet%2Dbar%20a%2C%0A%2Eleaflet%2Dbar%20a%3Ahover%20%7B%0A%09background%2Dcolor%3A%20%23fff%3B%0A%09border%2Dbottom%3A%201px%20solid%20%23ccc%3B%0A%09width%3A%2026px%3B%0A%09height%3A%2026px%3B%0A%09line%2Dheight%3A%2026px%3B%0A%09display%3A%20block%3B%0A%09text%2Dalign%3A%20center%3B%0A%09text%2Ddecoration%3A%20none%3B%0A%09color%3A%20black%3B%0A%09%7D%0A%2Eleaflet%2Dbar%20a%2C%0A%2Eleaflet%2Dcontrol%2Dlayers%2Dtoggle%20%7B%0A%09background%2Dposition%3A%2050%25%2050%25%3B%0A%09background%2Drepeat%3A%20no%2Drepeat%3B%0A%09display%3A%20block%3B%0A%09%7D%0A%2Eleaflet%2Dbar%20a%3Ahover%20%7B%0A%09background%2Dcolor%3A%20%23f4f4f4%3B%0A%09%7D%0A%2Eleaflet%2Dbar%20a%3Afirst%2Dchild%20%7B%0A%09border%2Dtop%2Dleft%2Dradius%3A%204px%3B%0A%09border%2Dtop%2Dright%2Dradius%3A%204px%3B%0A%09%7D%0A%2Eleaflet%2Dbar%20a%3Alast%2Dchild%20%7B%0A%09border%2Dbottom%2Dleft%2Dradius%3A%204px%3B%0A%09border%2Dbottom%2Dright%2Dradius%3A%204px%3B%0A%09border%2Dbottom%3A%20none%3B%0A%09%7D%0A%2Eleaflet%2Dbar%20a%2Eleaflet%2Ddisabled%20%7B%0A%09cursor%3A%20default%3B%0A%09background%2Dcolor%3A%20%23f4f4f4%3B%0A%09color%3A%20%23bbb%3B%0A%09%7D%0A%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dbar%20a%20%7B%0A%09width%3A%2030px%3B%0A%09height%3A%2030px%3B%0A%09line%2Dheight%3A%2030px%3B%0A%09%7D%0A%0A%0A%2F%2A%20zoom%20control%20%2A%2F%0A%0A%2Eleaflet%2Dcontrol%2Dzoom%2Din%2C%0A%2Eleaflet%2Dcontrol%2Dzoom%2Dout%20%7B%0A%09font%3A%20bold%2018px%20%27Lucida%20Console%27%2C%20Monaco%2C%20monospace%3B%0A%09text%2Dindent%3A%201px%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dzoom%2Dout%20%7B%0A%09font%2Dsize%3A%2020px%3B%0A%09%7D%0A%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dcontrol%2Dzoom%2Din%20%7B%0A%09font%2Dsize%3A%2022px%3B%0A%09%7D%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dcontrol%2Dzoom%2Dout%20%7B%0A%09font%2Dsize%3A%2024px%3B%0A%09%7D%0A%0A%0A%2F%2A%20layers%20control%20%2A%2F%0A%0A%2Eleaflet%2Dcontrol%2Dlayers%20%7B%0A%09box%2Dshadow%3A%200%201px%205px%20rgba%280%2C0%2C0%2C0%2E4%29%3B%0A%09background%3A%20%23fff%3B%0A%09border%2Dradius%3A%205px%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dlayers%2Dtoggle%20%7B%0A%09background%2Dimage%3A%20url%28data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAVbSURBVEiJrZZfSFt3FMe%2Fv3tvbmLUZleNKSHE%2FLGRiNbGRovTtrA9lcFkpcOnMvawwhhjrb3soQ8djGFhXMQNRqEvY3R9kJVuPpRRWQebcdKYxkaHqcHchKJ2rVo1WhNz%2F%2Fz2UOLUadVuv9fvOedzfuec3x9CKcV%2B1qVLlwgAdHV17cuR7AfU29tb43a73wWAVCr1Q0dHx8T%2FCuru7i5ubGw843K5ms1mMwBgdXUV6XQ6HI1Gb3Z2dj7%2Fz6C%2Bvr6T1dXVp6xWa%2Bl2%2Buzs7PLk5OTP7e3tv70S6Pr1647q6uoOt9vtYRjmpcnouo5UKiVPTk72nj17dmpPIEmS%2BIaGhnaPx3O8tLSU3ahRSotyudzrAGAymf4ghGQ36svLy5osywOxWKxPFMX8jqBbt241ejyed%2Bx2e9nWjPL5fK2iKC2UUiMAEELWDAbDEM%2Fz41ttZ2Zmnsmy%2FOPp06ejm0DXrl2rqK2tPeNyuQ7zPL9pi5qmVaytrZ3Qdf3gdiVhGOYvo9H4O8uyc1sSI%2Bl0enR8fPzmuXPn5sjt27ff8nq9bwiCYNpSJsPa2lqzqqr1AF7eJEDnOG7MaDSGCSHKRmFhYSGXTCZ%2FZd1u93dOp3NJEAS9ICqK4snlcm%2Fpuu4EQHaBAADRdf2gqqo1hJBllmUXCsLjx4%2BL7t69e4Ztamqaffjw4QepVOr5oUOHDKqqvqkoShAAvwfA1sVrmlataVqlqqqzvb29lnA43KwoymeEUoqenp7XdF3vW11dPX7s2DHi9XpfgfHPSiaTuHfvHjWbzQMMw7SfP39%2BkUSj0ZOU0qsA%2FEtLSwiHwygpKUFraysOHDiwL0Amk8Hg4CBWVlbQ3NwMi8UCAHFCyIesw%2BH43uFwuAwGg9lkMsHj8SCfzyMUCkFRFNhsNux2YDVNQzQaRSgUgsvlwtGjR2EyvZitbDbL9Pf3H2YDgcD8xMREk67rCZvN5iSEkLKyMrjdbsiyjJGREVgslh13NzU1hf7%2Bfui6jra2NlitVhBCQCmlo6OjoYGBASWbzX5BKKW4cuWKhRDyk67rJ4LBIFNRUbEeaHZ2FpFIBDabDS0tLSgqKipkiqGhITx58gTBYBBWq3XdZ25uDpFIhLIsO8jzfPuFCxeekTt37rQCuAqgfmVlBfF4HOXl5Thy5Ah4%2FsXgUUoRj8chyzIaGhoAALFYDB6PB36%2FH4S8OAH5fB4PHjzA%2FPw8%2FH4%2FSkpKACAB4CPW6%2FXeqKysrOI4rpjnedjtdmSzWUSjURgMBgiCAEIIrFYrHA4HxsfHsbi4iNbWVtjt9nWILMsYGhpCeXk5ampqYDQaC3AyPDxcSy5evPg2IaTL6XTO%2B3y%2BNkIIAwCKoiCRSEBVVTQ1Ne3Yo0wmg%2BHhYXAcB5%2FPB4PBUJBoMpkclGW5lFJ6mVBKIYpiMYDLHMedCgQCnCAI%2FoL1wsICEokEHA4H6uvr1ydQ13WMjY1hamoKPp8PgiBshE%2Fev38%2FoyjKLwA%2BlyTp%2BabbWxTFOgDfCIKAQCAQ4DiutNCjdDqNp0%2BfIhAIAABGRkZQWVkJl8u1Xj5N01Zjsdjw3NwcBfCxJEl%2FFmL%2F6z0SRZEAeJ8QIvp8vsWqqqqWgpbL5RCPxwEAfr9%2F%2FawAwPT0dDgejxfput4D4FtJkjYF3vGFFUWxHMCXRqPxcDAYtBYXF1dtZ5fNZmcikcijbDY7DuBTSZLmt7Pb9c8gimIbIeQrm82Wqaura2EYxggAlFI1Ho8PTk9PmymlnZIkhV4WZ0%2B%2FIFEUOQCdDMO8V19fn2NZ1hCLxaimaTcAdEuSpO4WY1%2F%2FOlEUnQC%2BBkABfCJJ0qO9%2Bv4NmO9xnZob3WcAAAAASUVORK5CYII%3D%29%3B%0A%09width%3A%2036px%3B%0A%09height%3A%2036px%3B%0A%09%7D%0A%2Eleaflet%2Dretina%20%2Eleaflet%2Dcontrol%2Dlayers%2Dtoggle%20%7B%0A%09background%2Dimage%3A%20url%28data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAYAAADFeBvrAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAbrwAAG68BXhqRHAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAArPSURBVGiB3Zp7TFvXHce%2F916%2FeBhCDInJwDjGBhvjQHi5SclaKRL5Z1Wl%2FrEq%2FWNr11TJmkpMw900pLVrplJ1cadFarp0zdZmmpZpf3SqNrUKfSnKgwI2sQPGBmNjAsUOxCW8bGzfe8%2F%2BSEAkMfa1A5m075%2F2%2Bf3O%2BZ7X595zLkUIwf%2BT6EdRSWdnp7izs1P8KOqitnqE3n%2F%2F%2FQMajeYZAPD7%2FR8fPXr00lbWt2WGTp48qdRoNC%2Fs2bNHXVhYyALA%2FPy86Pr16wG%2F3%2F%2Fhq6%2B%2BGtqKejfdUGdnJ6XT6Q4bDIZWjUaTNLnf76fcbvdlr9d7vqura1MbsKmGTp8%2BXadWqw%2Fv3bu3UCQS8anKsixLX7t2bT4QCJw%2Ffvy4c7PasCmGTpw4Ia%2BqqnrRZDIZSkpK2ExiZ2dnRYODg%2B7R0dE%2Fv%2Fbaa4sP25aHNnT27Nkf6HS6QwaD4aF2TLfbzXu93gtHjhz5z8PkydrQqVOnKtVq9Y%2Fq6uqUubm5GY3KRopEIiKn0xkKBAJ%2FbW9v92WTI2NDnZ2dYoPB8ILRaGwoKyvjsqk0naamphiXyzXgdrs%2F7OrqSmQSm5GhM2fOHNBoNM%2FU1dVJKYoSFEgIEcVisWYAkEql%2FRRFCRpNQgjldDpjfr%2F%2F42PHjglmlyBDJ0%2BeVO7evfsndXV1FatMEaJEIqGOx%2BMHCCFyAKAoalEikVwSi8UBoTnm5%2BdFTqdzYnx8%2FC9C2JXS0CpT9Hr9gcrKypTb8HrxPJ%2B%2FsrJygOf53cn%2Bp2l6XCaTXaJpekloTp%2FPR3s8nkvp2LWhoXfffbderVYfbmhoKEjHlPVtjcVidSzLNhFCUj67URSVEIlENqlU6gQgKD%2FLsvTAwMBCIBA4%2F8orrziS5r3f0IkTJ%2BQ6ne6IyWQy7NixQ%2FCCZFm2NB6PP8Hz%2FHahMQBA0%2FR3EonkokgkCgqNmZmZEQ8ODrq9Xu%2FZ%2B9l1j6EPPvjgKZ1Od6impoYSmpzneVksFtvHcZxBaEwyMQzjlkqlPTRNrwiNGR4eJl6v98JLL73079XfKEIITp06VVlRUfHj%2Bvr6nZkwJR6P6xOJxH5CiCxTA8lEUdSKWCy%2BKpFIPEJjIpGIyOFw3JyYmDjX3t7uo86dO3fUaDQ2lJeXCzbCcdz2WCz2BM%2Fzpdk1PbVomg5KpdKLDMN8JzRmcnJS5HK5Bhi9Xv9RcXHx7V27dqUd6rtMMcfj8YOEkIKHa3bKeuQsy9bwPC9mGCZEUVTaTWNsbKzQbrc%2FRXV0dBAAMYVCcfnpp5%2BeKC4uTmrsfqY8KqVj161bt2SffPJJRTgcbgUgZVpbW3sIIQei0Wij0%2BksmZubW9DpdEsUdWdf4Hk%2BPxqNHmRZtgWA9NFZWZOU4zgdy7LFd0crDgCEEHz66aelX3zxxfcjkUg9gAmapg8zV65c8fX09PwpHo%2FzhJC22dnZ2oGBARQUFCwVFBTUxOPxQ4QQxf%2FAyD0ihBSxLFtDCCFerzdy%2Fvz5PcFg8CAhRAqgSy6XP%2Ffmm2%2BO3LNtd3R0VFEU9R6AgyKRiNfr9fS%2BffsgFj%2BS8420SiQS6Onpgcfj4VmWpQF8SQh5%2BZ133hldLSNaH%2FDss8%2BGGYYJ3Lhxg9jtdnpoaAiTk5NoampCdXX1IzewXiMjI7DZbJifn4dMJqPNZjNRqVQBjuPC68utjhA1MDDwPIDfASgG7vSGw%2BHA2NgYAEClUmH%2F%2Fv0oKip6pEbm5uZw9epV3LhxAwCg1WpRX1%2B%2FftbcAvCLhoaGjwAQyuFwGDmOOwOgNVnCcDiMvr4%2BzM3NQSaTwWg0orm5GTS9tUd6PM%2Bjv78fLpcLKysrKCoqQktLCxSKDZfzZYZhjjFarfYfKpWqmabppAslNzcXWq0WMpkMwWAQU1NTCAQCyM%2FPx7Zt27bEzMTEBD7%2F%2FHP4fD5QFIWGhgaYzWbk5uZuGMNxXPHXX39tYkwm07nh4eGZ3Nxcz%2Fbt27%2BXrDBFUVAoFNBoNIhEIggGg%2FD5fLh9%2BzaUSuWmbRqRSAQXL15EX18flpeXoVKp8OSTT0KpVGIVI8nk8%2Fn6uru7xYuLi3WrHDr07bffmvx%2Bf295eTktkUiSwlMsFkOlUqGkpAQzMzMIBoPwer0AAKVS%2BVBmHA4HvvrqK4RCIeTl5aG1tRU1NTUpO2t5eXn6s88%2BGx4fHzcDmKVp%2BjBFCMEbb7whW1xc%2FBWAXwJgKysrbS0tLY9TFCXaKBnP8xgaGoLb7QbHcSgtLcW%2BffsyNhYKhdDT04NgMAiGYWAwGFBbW5tyjRJC2L6%2Bvis%2Bn68Jd3bqt%2BVy%2BVuvv%2F76yoYcysvLi5nNZmm6Bi4sLMBmsyEUCkEsFkOv1%2BOxxx5LOw0TiQS%2B%2BeYbeDweJBIJKJVKNDU1oaAg9SNiKBRCb28vu7y8LEISDt1jqLu7ezuAt0Oh0IsjIyNUPB5HeXk5mpubIZWmfuqZmJiA3W7HysoKCgsLU7LrPqagsbERFRUVKfPHYjH09%2FdjcnISEokE1dXVUCqV%2FwLQ3tbWNvmAoe7u7ucBnMRdDrEsC6%2FXu5bAZDKhqqoq5eJMxy4BTHlAhBCMjo5icHAQqx2s0%2BkgEq2thiUAvwFwqq2tjaUuXLhQA%2BCPAL6fLOHCwgJcLhcWFxeFsADAg%2Byqra0FAAwNDQllygN55HI5jEZjqil5HcBPmerq6r%2Ft2LFjL8MwOclKSaVSlJWVQSKRIBQKwefzIRqNYufOnRsu3GTsmp6eFswUlmVht9ths9mQSCRQVVUFo9EImWzjF2OO4%2BROp1NPdXR0JAAsaLVat0ajeXzDCNyZxx6PBzdv3kROTg727t0LtVqdKgTRaBR2ux0A0NjYiJycpP22pkAggGvXrq11ml6vT7t%2Bp6en%2B10uVykhpIzq6OhoA%2FAegEqxWOxsamrKl8vllakShMNhDA8Pr1VqNpuRn5%2BfstJ0WlpaQm9v71pn1dTUpJ2S0Wh02mazTUajUTMAH4CXKUIILBaLDMAqh%2BiSkpIre%2FbsaWEYZsN5wfM8%2FH4%2FAoEAKIqCwWCAyWRKuWkkEyEEg4ODcLvdIIRArVZDo9Gk5ZDb7b4yNTW1xiEAb1mt1ns5ZLFYqnBntA5SFDVlNBqDu3btak7VoOXlZXg8HoTDYeTn56OlpUUwXEOhEPr6%2BrC0tASFQgG9Xo%2B8vLyUMeFweNDhcEg5jqsC8CWAl61Wa3IOrTP2HIDfA9iZk5PT29TUVJ6Tk7MrXeNGRkYghF0bMCWlkUQiMWe324cWFhZaAcwA%2BLnVav37%2FeU2PAq2WCyFALoAHAMQLSsrsxkMhpSPQ%2BnYJYApSeX3%2By%2BPjY3VANgG4AyATqvVOp%2BsbNrbB4vF0nw3SQPDMKP19fUxhUJhShWTjF0AMmEKAGBxcdFns9mWEolEHYABAMesVmt%2FqhhB1ykWi4UBcBzAbwHICwoKLjc2NtaKxeINX18JIZicnMTY2Bh4%2Fs6xGk3T0Gq1KC8vT7l5cBwXuX79et%2Fs7OzjAKIAfg3gtNVqTXvBltGFl8ViKQXwBwA%2FBPCdVqsd1mg0Sd90V7XKLgAZMwXAPwH8zGq1Cj7Iz%2BqO1WKxZMyudErGFKvV2p1pnqwvjbNhVzKlYko27Xroa%2F1s2LWqdEzJRpv2JUkm7BLKlGy0qZ%2FGCGFXJkzJRlvyNVYydkkkktxMmZKNtuzzsvvZBYADEEEGTMlGW%2F4B4Dp2ARkyJRv9F9vsxWD%2F43R9AAAAAElFTkSuQmCC%29%3B%0A%09background%2Dsize%3A%2026px%2026px%3B%0A%09%7D%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dcontrol%2Dlayers%2Dtoggle%20%7B%0A%09width%3A%2044px%3B%0A%09height%3A%2044px%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dlayers%20%2Eleaflet%2Dcontrol%2Dlayers%2Dlist%2C%0A%2Eleaflet%2Dcontrol%2Dlayers%2Dexpanded%20%2Eleaflet%2Dcontrol%2Dlayers%2Dtoggle%20%7B%0A%09display%3A%20none%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dlayers%2Dexpanded%20%2Eleaflet%2Dcontrol%2Dlayers%2Dlist%20%7B%0A%09display%3A%20block%3B%0A%09position%3A%20relative%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dlayers%2Dexpanded%20%7B%0A%09padding%3A%206px%2010px%206px%206px%3B%0A%09color%3A%20%23333%3B%0A%09background%3A%20%23fff%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dlayers%2Dselector%20%7B%0A%09margin%2Dtop%3A%202px%3B%0A%09position%3A%20relative%3B%0A%09top%3A%201px%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dlayers%20label%20%7B%0A%09display%3A%20block%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dlayers%2Dseparator%20%7B%0A%09height%3A%200%3B%0A%09border%2Dtop%3A%201px%20solid%20%23ddd%3B%0A%09margin%3A%205px%20%2D10px%205px%20%2D6px%3B%0A%09%7D%0A%0A%0A%2F%2A%20attribution%20and%20scale%20controls%20%2A%2F%0A%0A%2Eleaflet%2Dcontainer%20%2Eleaflet%2Dcontrol%2Dattribution%20%7B%0A%09background%3A%20%23fff%3B%0A%09background%3A%20rgba%28255%2C%20255%2C%20255%2C%200%2E7%29%3B%0A%09margin%3A%200%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dattribution%2C%0A%2Eleaflet%2Dcontrol%2Dscale%2Dline%20%7B%0A%09padding%3A%200%205px%3B%0A%09color%3A%20%23333%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dattribution%20a%20%7B%0A%09text%2Ddecoration%3A%20none%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dattribution%20a%3Ahover%20%7B%0A%09text%2Ddecoration%3A%20underline%3B%0A%09%7D%0A%2Eleaflet%2Dcontainer%20%2Eleaflet%2Dcontrol%2Dattribution%2C%0A%2Eleaflet%2Dcontainer%20%2Eleaflet%2Dcontrol%2Dscale%20%7B%0A%09font%2Dsize%3A%2011px%3B%0A%09%7D%0A%2Eleaflet%2Dleft%20%2Eleaflet%2Dcontrol%2Dscale%20%7B%0A%09margin%2Dleft%3A%205px%3B%0A%09%7D%0A%2Eleaflet%2Dbottom%20%2Eleaflet%2Dcontrol%2Dscale%20%7B%0A%09margin%2Dbottom%3A%205px%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dscale%2Dline%20%7B%0A%09border%3A%202px%20solid%20%23777%3B%0A%09border%2Dtop%3A%20none%3B%0A%09line%2Dheight%3A%201%2E1%3B%0A%09padding%3A%202px%205px%201px%3B%0A%09font%2Dsize%3A%2011px%3B%0A%09white%2Dspace%3A%20nowrap%3B%0A%09overflow%3A%20hidden%3B%0A%09%2Dmoz%2Dbox%2Dsizing%3A%20content%2Dbox%3B%0A%09%20%20%20%20%20box%2Dsizing%3A%20content%2Dbox%3B%0A%0A%09background%3A%20%23fff%3B%0A%09background%3A%20rgba%28255%2C%20255%2C%20255%2C%200%2E5%29%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dscale%2Dline%3Anot%28%3Afirst%2Dchild%29%20%7B%0A%09border%2Dtop%3A%202px%20solid%20%23777%3B%0A%09border%2Dbottom%3A%20none%3B%0A%09margin%2Dtop%3A%20%2D2px%3B%0A%09%7D%0A%2Eleaflet%2Dcontrol%2Dscale%2Dline%3Anot%28%3Afirst%2Dchild%29%3Anot%28%3Alast%2Dchild%29%20%7B%0A%09border%2Dbottom%3A%202px%20solid%20%23777%3B%0A%09%7D%0A%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dcontrol%2Dattribution%2C%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dcontrol%2Dlayers%2C%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dbar%20%7B%0A%09box%2Dshadow%3A%20none%3B%0A%09%7D%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dcontrol%2Dlayers%2C%0A%2Eleaflet%2Dtouch%20%2Eleaflet%2Dbar%20%7B%0A%09border%3A%202px%20solid%20rgba%280%2C0%2C0%2C0%2E2%29%3B%0A%09background%2Dclip%3A%20padding%2Dbox%3B%0A%09%7D%0A%0A%0A%2F%2A%20popup%20%2A%2F%0A%0A%2Eleaflet%2Dpopup%20%7B%0A%09position%3A%20absolute%3B%0A%09text%2Dalign%3A%20center%3B%0A%09%7D%0A%2Eleaflet%2Dpopup%2Dcontent%2Dwrapper%20%7B%0A%09padding%3A%201px%3B%0A%09text%2Dalign%3A%20left%3B%0A%09border%2Dradius%3A%2012px%3B%0A%09%7D%0A%2Eleaflet%2Dpopup%2Dcontent%20%7B%0A%09margin%3A%2013px%2019px%3B%0A%09line%2Dheight%3A%201%2E4%3B%0A%09%7D%0A%2Eleaflet%2Dpopup%2Dcontent%20p%20%7B%0A%09margin%3A%2018px%200%3B%0A%09%7D%0A%2Eleaflet%2Dpopup%2Dtip%2Dcontainer%20%7B%0A%09margin%3A%200%20auto%3B%0A%09width%3A%2040px%3B%0A%09height%3A%2020px%3B%0A%09position%3A%20relative%3B%0A%09overflow%3A%20hidden%3B%0A%09%7D%0A%2Eleaflet%2Dpopup%2Dtip%20%7B%0A%09width%3A%2017px%3B%0A%09height%3A%2017px%3B%0A%09padding%3A%201px%3B%0A%0A%09margin%3A%20%2D10px%20auto%200%3B%0A%0A%09%2Dwebkit%2Dtransform%3A%20rotate%2845deg%29%3B%0A%09%20%20%20%2Dmoz%2Dtransform%3A%20rotate%2845deg%29%3B%0A%09%20%20%20%20%2Dms%2Dtransform%3A%20rotate%2845deg%29%3B%0A%09%20%20%20%20%20%2Do%2Dtransform%3A%20rotate%2845deg%29%3B%0A%09%20%20%20%20%20%20%20%20transform%3A%20rotate%2845deg%29%3B%0A%09%7D%0A%2Eleaflet%2Dpopup%2Dcontent%2Dwrapper%2C%0A%2Eleaflet%2Dpopup%2Dtip%20%7B%0A%09background%3A%20white%3B%0A%0A%09box%2Dshadow%3A%200%203px%2014px%20rgba%280%2C0%2C0%2C0%2E4%29%3B%0A%09%7D%0A%2Eleaflet%2Dcontainer%20a%2Eleaflet%2Dpopup%2Dclose%2Dbutton%20%7B%0A%09position%3A%20absolute%3B%0A%09top%3A%200%3B%0A%09right%3A%200%3B%0A%09padding%3A%204px%204px%200%200%3B%0A%09text%2Dalign%3A%20center%3B%0A%09width%3A%2018px%3B%0A%09height%3A%2014px%3B%0A%09font%3A%2016px%2F14px%20Tahoma%2C%20Verdana%2C%20sans%2Dserif%3B%0A%09color%3A%20%23c3c3c3%3B%0A%09text%2Ddecoration%3A%20none%3B%0A%09font%2Dweight%3A%20bold%3B%0A%09background%3A%20transparent%3B%0A%09%7D%0A%2Eleaflet%2Dcontainer%20a%2Eleaflet%2Dpopup%2Dclose%2Dbutton%3Ahover%20%7B%0A%09color%3A%20%23999%3B%0A%09%7D%0A%2Eleaflet%2Dpopup%2Dscrolled%20%7B%0A%09overflow%3A%20auto%3B%0A%09border%2Dbottom%3A%201px%20solid%20%23ddd%3B%0A%09border%2Dtop%3A%201px%20solid%20%23ddd%3B%0A%09%7D%0A%0A%2Eleaflet%2Doldie%20%2Eleaflet%2Dpopup%2Dcontent%2Dwrapper%20%7B%0A%09zoom%3A%201%3B%0A%09%7D%0A%2Eleaflet%2Doldie%20%2Eleaflet%2Dpopup%2Dtip%20%7B%0A%09width%3A%2024px%3B%0A%09margin%3A%200%20auto%3B%0A%0A%09%2Dms%2Dfilter%3A%20%22progid%3ADXImageTransform%2EMicrosoft%2EMatrix%28M11%3D0%2E70710678%2C%20M12%3D0%2E70710678%2C%20M21%3D%2D0%2E70710678%2C%20M22%3D0%2E70710678%29%22%3B%0A%09filter%3A%20progid%3ADXImageTransform%2EMicrosoft%2EMatrix%28M11%3D0%2E70710678%2C%20M12%3D0%2E70710678%2C%20M21%3D%2D0%2E70710678%2C%20M22%3D0%2E70710678%29%3B%0A%09%7D%0A%2Eleaflet%2Doldie%20%2Eleaflet%2Dpopup%2Dtip%2Dcontainer%20%7B%0A%09margin%2Dtop%3A%20%2D1px%3B%0A%09%7D%0A%0A%2Eleaflet%2Doldie%20%2Eleaflet%2Dcontrol%2Dzoom%2C%0A%2Eleaflet%2Doldie%20%2Eleaflet%2Dcontrol%2Dlayers%2C%0A%2Eleaflet%2Doldie%20%2Eleaflet%2Dpopup%2Dcontent%2Dwrapper%2C%0A%2Eleaflet%2Doldie%20%2Eleaflet%2Dpopup%2Dtip%20%7B%0A%09border%3A%201px%20solid%20%23999%3B%0A%09%7D%0A%0A%0A%2F%2A%20div%20icon%20%2A%2F%0A%0A%2Eleaflet%2Ddiv%2Dicon%20%7B%0A%09background%3A%20%23fff%3B%0A%09border%3A%201px%20solid%20%23666%3B%0A%09%7D%0A" rel="stylesheet" />
<script src="data:application/x-javascript,%2F%2A%0A%20Leaflet%2C%20a%20JavaScript%20library%20for%20mobile%2Dfriendly%20interactive%20maps%2E%20http%3A%2F%2Fleafletjs%2Ecom%0A%20%28c%29%202010%2D2013%2C%20Vladimir%20Agafonkin%0A%20%28c%29%202010%2D2011%2C%20CloudMade%0A%2A%2F%0A%21function%28t%2Ce%2Ci%29%7Bvar%20n%3Dt%2EL%2Co%3D%7B%7D%3Bo%2Eversion%3D%220%2E7%2E3%22%2C%22object%22%3D%3Dtypeof%20module%26%26%22object%22%3D%3Dtypeof%20module%2Eexports%3Fmodule%2Eexports%3Do%3A%22function%22%3D%3Dtypeof%20define%26%26define%2Eamd%26%26define%28o%29%2Co%2EnoConflict%3Dfunction%28%29%7Breturn%20t%2EL%3Dn%2Cthis%7D%2Ct%2EL%3Do%2Co%2EUtil%3D%7Bextend%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%2Co%2Cs%3DArray%2Eprototype%2Eslice%2Ecall%28arguments%2C1%29%3Bfor%28i%3D0%2Cn%3Ds%2Elength%3Bn%3Ei%3Bi%2B%2B%29%7Bo%3Ds%5Bi%5D%7C%7C%7B%7D%3Bfor%28e%20in%20o%29o%2EhasOwnProperty%28e%29%26%26%28t%5Be%5D%3Do%5Be%5D%29%7Dreturn%20t%7D%2Cbind%3Afunction%28t%2Ce%29%7Bvar%20i%3Darguments%2Elength%3E2%3FArray%2Eprototype%2Eslice%2Ecall%28arguments%2C2%29%3Anull%3Breturn%20function%28%29%7Breturn%20t%2Eapply%28e%2Ci%7C%7Carguments%29%7D%7D%2Cstamp%3Afunction%28%29%7Bvar%20t%3D0%2Ce%3D%22%5Fleaflet%5Fid%22%3Breturn%20function%28i%29%7Breturn%20i%5Be%5D%3Di%5Be%5D%7C%7C%2B%2Bt%2Ci%5Be%5D%7D%7D%28%29%2CinvokeEach%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%2Co%3Bif%28%22object%22%3D%3Dtypeof%20t%29%7Bo%3DArray%2Eprototype%2Eslice%2Ecall%28arguments%2C3%29%3Bfor%28n%20in%20t%29e%2Eapply%28i%2C%5Bn%2Ct%5Bn%5D%5D%2Econcat%28o%29%29%3Breturn%210%7Dreturn%211%7D%2ClimitExecByInterval%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%2Co%3Breturn%20function%20s%28%29%7Bvar%20a%3Darguments%3Breturn%20n%3Fvoid%28o%3D%210%29%3A%28n%3D%210%2CsetTimeout%28function%28%29%7Bn%3D%211%2Co%26%26%28s%2Eapply%28i%2Ca%29%2Co%3D%211%29%7D%2Ce%29%2Cvoid%20t%2Eapply%28i%2Ca%29%29%7D%7D%2CfalseFn%3Afunction%28%29%7Breturn%211%7D%2CformatNum%3Afunction%28t%2Ce%29%7Bvar%20i%3DMath%2Epow%2810%2Ce%7C%7C5%29%3Breturn%20Math%2Eround%28t%2Ai%29%2Fi%7D%2Ctrim%3Afunction%28t%29%7Breturn%20t%2Etrim%3Ft%2Etrim%28%29%3At%2Ereplace%28%2F%5E%5Cs%2B%7C%5Cs%2B%24%2Fg%2C%22%22%29%7D%2CsplitWords%3Afunction%28t%29%7Breturn%20o%2EUtil%2Etrim%28t%29%2Esplit%28%2F%5Cs%2B%2F%29%7D%2CsetOptions%3Afunction%28t%2Ce%29%7Breturn%20t%2Eoptions%3Do%2Eextend%28%7B%7D%2Ct%2Eoptions%2Ce%29%2Ct%2Eoptions%7D%2CgetParamString%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%3D%5B%5D%3Bfor%28var%20o%20in%20t%29n%2Epush%28encodeURIComponent%28i%3Fo%2EtoUpperCase%28%29%3Ao%29%2B%22%3D%22%2BencodeURIComponent%28t%5Bo%5D%29%29%3Breturn%28e%26%26%2D1%21%3D%3De%2EindexOf%28%22%3F%22%29%3F%22%26%22%3A%22%3F%22%29%2Bn%2Ejoin%28%22%26%22%29%7D%2Ctemplate%3Afunction%28t%2Ce%29%7Breturn%20t%2Ereplace%28%2F%5C%7B%20%2A%28%5B%5Cw%5F%5D%2B%29%20%2A%5C%7D%2Fg%2Cfunction%28t%2Cn%29%7Bvar%20o%3De%5Bn%5D%3Bif%28o%3D%3D%3Di%29throw%20new%20Error%28%22No%20value%20provided%20for%20variable%20%22%2Bt%29%3Breturn%22function%22%3D%3Dtypeof%20o%26%26%28o%3Do%28e%29%29%2Co%7D%29%7D%2CisArray%3AArray%2EisArray%7C%7Cfunction%28t%29%7Breturn%22%5Bobject%20Array%5D%22%3D%3D%3DObject%2Eprototype%2EtoString%2Ecall%28t%29%7D%2CemptyImageUrl%3A%22data%3Aimage%2Fgif%3Bbase64%2CR0lGODlhAQABAAD%2FACwAAAAAAQABAAACADs%3D%22%7D%2Cfunction%28%29%7Bfunction%20e%28e%29%7Bvar%20i%2Cn%2Co%3D%5B%22webkit%22%2C%22moz%22%2C%22o%22%2C%22ms%22%5D%3Bfor%28i%3D0%3Bi%3Co%2Elength%26%26%21n%3Bi%2B%2B%29n%3Dt%5Bo%5Bi%5D%2Be%5D%3Breturn%20n%7Dfunction%20i%28e%29%7Bvar%20i%3D%2Bnew%20Date%2Co%3DMath%2Emax%280%2C16%2D%28i%2Dn%29%29%3Breturn%20n%3Di%2Bo%2Ct%2EsetTimeout%28e%2Co%29%7Dvar%20n%3D0%2Cs%3Dt%2ErequestAnimationFrame%7C%7Ce%28%22RequestAnimationFrame%22%29%7C%7Ci%2Ca%3Dt%2EcancelAnimationFrame%7C%7Ce%28%22CancelAnimationFrame%22%29%7C%7Ce%28%22CancelRequestAnimationFrame%22%29%7C%7Cfunction%28e%29%7Bt%2EclearTimeout%28e%29%7D%3Bo%2EUtil%2ErequestAnimFrame%3Dfunction%28e%2Cn%2Ca%2Cr%29%7Breturn%20e%3Do%2Ebind%28e%2Cn%29%2Ca%26%26s%3D%3D%3Di%3Fvoid%20e%28%29%3As%2Ecall%28t%2Ce%2Cr%29%7D%2Co%2EUtil%2EcancelAnimFrame%3Dfunction%28e%29%7Be%26%26a%2Ecall%28t%2Ce%29%7D%7D%28%29%2Co%2Eextend%3Do%2EUtil%2Eextend%2Co%2Ebind%3Do%2EUtil%2Ebind%2Co%2Estamp%3Do%2EUtil%2Estamp%2Co%2EsetOptions%3Do%2EUtil%2EsetOptions%2Co%2EClass%3Dfunction%28%29%7B%7D%2Co%2EClass%2Eextend%3Dfunction%28t%29%7Bvar%20e%3Dfunction%28%29%7Bthis%2Einitialize%26%26this%2Einitialize%2Eapply%28this%2Carguments%29%2Cthis%2E%5FinitHooks%26%26this%2EcallInitHooks%28%29%7D%2Ci%3Dfunction%28%29%7B%7D%3Bi%2Eprototype%3Dthis%2Eprototype%3Bvar%20n%3Dnew%20i%3Bn%2Econstructor%3De%2Ce%2Eprototype%3Dn%3Bfor%28var%20s%20in%20this%29this%2EhasOwnProperty%28s%29%26%26%22prototype%22%21%3D%3Ds%26%26%28e%5Bs%5D%3Dthis%5Bs%5D%29%3Bt%2Estatics%26%26%28o%2Eextend%28e%2Ct%2Estatics%29%2Cdelete%20t%2Estatics%29%2Ct%2Eincludes%26%26%28o%2EUtil%2Eextend%2Eapply%28null%2C%5Bn%5D%2Econcat%28t%2Eincludes%29%29%2Cdelete%20t%2Eincludes%29%2Ct%2Eoptions%26%26n%2Eoptions%26%26%28t%2Eoptions%3Do%2Eextend%28%7B%7D%2Cn%2Eoptions%2Ct%2Eoptions%29%29%2Co%2Eextend%28n%2Ct%29%2Cn%2E%5FinitHooks%3D%5B%5D%3Bvar%20a%3Dthis%3Breturn%20e%2E%5F%5Fsuper%5F%5F%3Da%2Eprototype%2Cn%2EcallInitHooks%3Dfunction%28%29%7Bif%28%21this%2E%5FinitHooksCalled%29%7Ba%2Eprototype%2EcallInitHooks%26%26a%2Eprototype%2EcallInitHooks%2Ecall%28this%29%2Cthis%2E%5FinitHooksCalled%3D%210%3Bfor%28var%20t%3D0%2Ce%3Dn%2E%5FinitHooks%2Elength%3Be%3Et%3Bt%2B%2B%29n%2E%5FinitHooks%5Bt%5D%2Ecall%28this%29%7D%7D%2Ce%7D%2Co%2EClass%2Einclude%3Dfunction%28t%29%7Bo%2Eextend%28this%2Eprototype%2Ct%29%7D%2Co%2EClass%2EmergeOptions%3Dfunction%28t%29%7Bo%2Eextend%28this%2Eprototype%2Eoptions%2Ct%29%7D%2Co%2EClass%2EaddInitHook%3Dfunction%28t%29%7Bvar%20e%3DArray%2Eprototype%2Eslice%2Ecall%28arguments%2C1%29%2Ci%3D%22function%22%3D%3Dtypeof%20t%3Ft%3Afunction%28%29%7Bthis%5Bt%5D%2Eapply%28this%2Ce%29%7D%3Bthis%2Eprototype%2E%5FinitHooks%3Dthis%2Eprototype%2E%5FinitHooks%7C%7C%5B%5D%2Cthis%2Eprototype%2E%5FinitHooks%2Epush%28i%29%7D%3Bvar%20s%3D%22%5Fleaflet%5Fevents%22%3Bo%2EMixin%3D%7B%7D%2Co%2EMixin%2EEvents%3D%7BaddEventListener%3Afunction%28t%2Ce%2Ci%29%7Bif%28o%2EUtil%2EinvokeEach%28t%2Cthis%2EaddEventListener%2Cthis%2Ce%2Ci%29%29return%20this%3Bvar%20n%2Ca%2Cr%2Ch%2Cl%2Cu%2Cc%2Cd%3Dthis%5Bs%5D%3Dthis%5Bs%5D%7C%7C%7B%7D%2Cp%3Di%26%26i%21%3D%3Dthis%26%26o%2Estamp%28i%29%3Bfor%28t%3Do%2EUtil%2EsplitWords%28t%29%2Cn%3D0%2Ca%3Dt%2Elength%3Ba%3En%3Bn%2B%2B%29r%3D%7Baction%3Ae%2Ccontext%3Ai%7C%7Cthis%7D%2Ch%3Dt%5Bn%5D%2Cp%3F%28l%3Dh%2B%22%5Fidx%22%2Cu%3Dl%2B%22%5Flen%22%2Cc%3Dd%5Bl%5D%3Dd%5Bl%5D%7C%7C%7B%7D%2Cc%5Bp%5D%7C%7C%28c%5Bp%5D%3D%5B%5D%2Cd%5Bu%5D%3D%28d%5Bu%5D%7C%7C0%29%2B1%29%2Cc%5Bp%5D%2Epush%28r%29%29%3A%28d%5Bh%5D%3Dd%5Bh%5D%7C%7C%5B%5D%2Cd%5Bh%5D%2Epush%28r%29%29%3Breturn%20this%7D%2ChasEventListeners%3Afunction%28t%29%7Bvar%20e%3Dthis%5Bs%5D%3Breturn%21%21e%26%26%28t%20in%20e%26%26e%5Bt%5D%2Elength%3E0%7C%7Ct%2B%22%5Fidx%22in%20e%26%26e%5Bt%2B%22%5Fidx%5Flen%22%5D%3E0%29%7D%2CremoveEventListener%3Afunction%28t%2Ce%2Ci%29%7Bif%28%21this%5Bs%5D%29return%20this%3Bif%28%21t%29return%20this%2EclearAllEventListeners%28%29%3Bif%28o%2EUtil%2EinvokeEach%28t%2Cthis%2EremoveEventListener%2Cthis%2Ce%2Ci%29%29return%20this%3Bvar%20n%2Ca%2Cr%2Ch%2Cl%2Cu%2Cc%2Cd%2Cp%2C%5F%3Dthis%5Bs%5D%2Cm%3Di%26%26i%21%3D%3Dthis%26%26o%2Estamp%28i%29%3Bfor%28t%3Do%2EUtil%2EsplitWords%28t%29%2Cn%3D0%2Ca%3Dt%2Elength%3Ba%3En%3Bn%2B%2B%29if%28r%3Dt%5Bn%5D%2Cu%3Dr%2B%22%5Fidx%22%2Cc%3Du%2B%22%5Flen%22%2Cd%3D%5F%5Bu%5D%2Ce%29%7Bif%28h%3Dm%26%26d%3Fd%5Bm%5D%3A%5F%5Br%5D%29%7Bfor%28l%3Dh%2Elength%2D1%3Bl%3E%3D0%3Bl%2D%2D%29h%5Bl%5D%2Eaction%21%3D%3De%7C%7Ci%26%26h%5Bl%5D%2Econtext%21%3D%3Di%7C%7C%28p%3Dh%2Esplice%28l%2C1%29%2Cp%5B0%5D%2Eaction%3Do%2EUtil%2EfalseFn%29%3Bi%26%26d%26%260%3D%3D%3Dh%2Elength%26%26%28delete%20d%5Bm%5D%2C%5F%5Bc%5D%2D%2D%29%7D%7Delse%20delete%20%5F%5Br%5D%2Cdelete%20%5F%5Bu%5D%2Cdelete%20%5F%5Bc%5D%3Breturn%20this%7D%2CclearAllEventListeners%3Afunction%28%29%7Breturn%20delete%20this%5Bs%5D%2Cthis%7D%2CfireEvent%3Afunction%28t%2Ce%29%7Bif%28%21this%2EhasEventListeners%28t%29%29return%20this%3Bvar%20i%2Cn%2Ca%2Cr%2Ch%2Cl%3Do%2EUtil%2Eextend%28%7B%7D%2Ce%2C%7Btype%3At%2Ctarget%3Athis%7D%29%2Cu%3Dthis%5Bs%5D%3Bif%28u%5Bt%5D%29for%28i%3Du%5Bt%5D%2Eslice%28%29%2Cn%3D0%2Ca%3Di%2Elength%3Ba%3En%3Bn%2B%2B%29i%5Bn%5D%2Eaction%2Ecall%28i%5Bn%5D%2Econtext%2Cl%29%3Br%3Du%5Bt%2B%22%5Fidx%22%5D%3Bfor%28h%20in%20r%29if%28i%3Dr%5Bh%5D%2Eslice%28%29%29for%28n%3D0%2Ca%3Di%2Elength%3Ba%3En%3Bn%2B%2B%29i%5Bn%5D%2Eaction%2Ecall%28i%5Bn%5D%2Econtext%2Cl%29%3Breturn%20this%7D%2CaddOneTimeEventListener%3Afunction%28t%2Ce%2Ci%29%7Bif%28o%2EUtil%2EinvokeEach%28t%2Cthis%2EaddOneTimeEventListener%2Cthis%2Ce%2Ci%29%29return%20this%3Bvar%20n%3Do%2Ebind%28function%28%29%7Bthis%2EremoveEventListener%28t%2Ce%2Ci%29%2EremoveEventListener%28t%2Cn%2Ci%29%7D%2Cthis%29%3Breturn%20this%2EaddEventListener%28t%2Ce%2Ci%29%2EaddEventListener%28t%2Cn%2Ci%29%7D%7D%2Co%2EMixin%2EEvents%2Eon%3Do%2EMixin%2EEvents%2EaddEventListener%2Co%2EMixin%2EEvents%2Eoff%3Do%2EMixin%2EEvents%2EremoveEventListener%2Co%2EMixin%2EEvents%2Eonce%3Do%2EMixin%2EEvents%2EaddOneTimeEventListener%2Co%2EMixin%2EEvents%2Efire%3Do%2EMixin%2EEvents%2EfireEvent%2Cfunction%28%29%7Bvar%20n%3D%22ActiveXObject%22in%20t%2Cs%3Dn%26%26%21e%2EaddEventListener%2Ca%3Dnavigator%2EuserAgent%2EtoLowerCase%28%29%2Cr%3D%2D1%21%3D%3Da%2EindexOf%28%22webkit%22%29%2Ch%3D%2D1%21%3D%3Da%2EindexOf%28%22chrome%22%29%2Cl%3D%2D1%21%3D%3Da%2EindexOf%28%22phantom%22%29%2Cu%3D%2D1%21%3D%3Da%2EindexOf%28%22android%22%29%2Cc%3D%2D1%21%3D%3Da%2Esearch%28%22android%20%5B23%5D%22%29%2Cd%3D%2D1%21%3D%3Da%2EindexOf%28%22gecko%22%29%2Cp%3Dtypeof%20orientation%21%3Di%2B%22%22%2C%5F%3Dt%2Enavigator%26%26t%2Enavigator%2EmsPointerEnabled%26%26t%2Enavigator%2EmsMaxTouchPoints%26%26%21t%2EPointerEvent%2Cm%3Dt%2EPointerEvent%26%26t%2Enavigator%2EpointerEnabled%26%26t%2Enavigator%2EmaxTouchPoints%7C%7C%5F%2Cf%3D%22devicePixelRatio%22in%20t%26%26t%2EdevicePixelRatio%3E1%7C%7C%22matchMedia%22in%20t%26%26t%2EmatchMedia%28%22%28min%2Dresolution%3A144dpi%29%22%29%26%26t%2EmatchMedia%28%22%28min%2Dresolution%3A144dpi%29%22%29%2Ematches%2Cg%3De%2EdocumentElement%2Cv%3Dn%26%26%22transition%22in%20g%2Estyle%2Cy%3D%22WebKitCSSMatrix%22in%20t%26%26%22m11%22in%20new%20t%2EWebKitCSSMatrix%26%26%21c%2CP%3D%22MozPerspective%22in%20g%2Estyle%2CL%3D%22OTransition%22in%20g%2Estyle%2Cx%3D%21t%2EL%5FDISABLE%5F3D%26%26%28v%7C%7Cy%7C%7CP%7C%7CL%29%26%26%21l%2Cw%3D%21t%2EL%5FNO%5FTOUCH%26%26%21l%26%26function%28%29%7Bvar%20t%3D%22ontouchstart%22%3Bif%28m%7C%7Ct%20in%20g%29return%210%3Bvar%20i%3De%2EcreateElement%28%22div%22%29%2Cn%3D%211%3Breturn%20i%2EsetAttribute%3F%28i%2EsetAttribute%28t%2C%22return%3B%22%29%2C%22function%22%3D%3Dtypeof%20i%5Bt%5D%26%26%28n%3D%210%29%2Ci%2EremoveAttribute%28t%29%2Ci%3Dnull%2Cn%29%3A%211%7D%28%29%3Bo%2EBrowser%3D%7Bie%3An%2Cielt9%3As%2Cwebkit%3Ar%2Cgecko%3Ad%26%26%21r%26%26%21t%2Eopera%26%26%21n%2Candroid%3Au%2Candroid23%3Ac%2Cchrome%3Ah%2Cie3d%3Av%2Cwebkit3d%3Ay%2Cgecko3d%3AP%2Copera3d%3AL%2Cany3d%3Ax%2Cmobile%3Ap%2CmobileWebkit%3Ap%26%26r%2CmobileWebkit3d%3Ap%26%26y%2CmobileOpera%3Ap%26%26t%2Eopera%2Ctouch%3Aw%2CmsPointer%3A%5F%2Cpointer%3Am%2Cretina%3Af%7D%7D%28%29%2Co%2EPoint%3Dfunction%28t%2Ce%2Ci%29%7Bthis%2Ex%3Di%3FMath%2Eround%28t%29%3At%2Cthis%2Ey%3Di%3FMath%2Eround%28e%29%3Ae%7D%2Co%2EPoint%2Eprototype%3D%7Bclone%3Afunction%28%29%7Breturn%20new%20o%2EPoint%28this%2Ex%2Cthis%2Ey%29%7D%2Cadd%3Afunction%28t%29%7Breturn%20this%2Eclone%28%29%2E%5Fadd%28o%2Epoint%28t%29%29%7D%2C%5Fadd%3Afunction%28t%29%7Breturn%20this%2Ex%2B%3Dt%2Ex%2Cthis%2Ey%2B%3Dt%2Ey%2Cthis%7D%2Csubtract%3Afunction%28t%29%7Breturn%20this%2Eclone%28%29%2E%5Fsubtract%28o%2Epoint%28t%29%29%7D%2C%5Fsubtract%3Afunction%28t%29%7Breturn%20this%2Ex%2D%3Dt%2Ex%2Cthis%2Ey%2D%3Dt%2Ey%2Cthis%7D%2CdivideBy%3Afunction%28t%29%7Breturn%20this%2Eclone%28%29%2E%5FdivideBy%28t%29%7D%2C%5FdivideBy%3Afunction%28t%29%7Breturn%20this%2Ex%2F%3Dt%2Cthis%2Ey%2F%3Dt%2Cthis%7D%2CmultiplyBy%3Afunction%28t%29%7Breturn%20this%2Eclone%28%29%2E%5FmultiplyBy%28t%29%7D%2C%5FmultiplyBy%3Afunction%28t%29%7Breturn%20this%2Ex%2A%3Dt%2Cthis%2Ey%2A%3Dt%2Cthis%7D%2Cround%3Afunction%28%29%7Breturn%20this%2Eclone%28%29%2E%5Fround%28%29%7D%2C%5Fround%3Afunction%28%29%7Breturn%20this%2Ex%3DMath%2Eround%28this%2Ex%29%2Cthis%2Ey%3DMath%2Eround%28this%2Ey%29%2Cthis%7D%2Cfloor%3Afunction%28%29%7Breturn%20this%2Eclone%28%29%2E%5Ffloor%28%29%7D%2C%5Ffloor%3Afunction%28%29%7Breturn%20this%2Ex%3DMath%2Efloor%28this%2Ex%29%2Cthis%2Ey%3DMath%2Efloor%28this%2Ey%29%2Cthis%7D%2CdistanceTo%3Afunction%28t%29%7Bt%3Do%2Epoint%28t%29%3Bvar%20e%3Dt%2Ex%2Dthis%2Ex%2Ci%3Dt%2Ey%2Dthis%2Ey%3Breturn%20Math%2Esqrt%28e%2Ae%2Bi%2Ai%29%7D%2Cequals%3Afunction%28t%29%7Breturn%20t%3Do%2Epoint%28t%29%2Ct%2Ex%3D%3D%3Dthis%2Ex%26%26t%2Ey%3D%3D%3Dthis%2Ey%7D%2Ccontains%3Afunction%28t%29%7Breturn%20t%3Do%2Epoint%28t%29%2CMath%2Eabs%28t%2Ex%29%3C%3DMath%2Eabs%28this%2Ex%29%26%26Math%2Eabs%28t%2Ey%29%3C%3DMath%2Eabs%28this%2Ey%29%7D%2CtoString%3Afunction%28%29%7Breturn%22Point%28%22%2Bo%2EUtil%2EformatNum%28this%2Ex%29%2B%22%2C%20%22%2Bo%2EUtil%2EformatNum%28this%2Ey%29%2B%22%29%22%7D%7D%2Co%2Epoint%3Dfunction%28t%2Ce%2Cn%29%7Breturn%20t%20instanceof%20o%2EPoint%3Ft%3Ao%2EUtil%2EisArray%28t%29%3Fnew%20o%2EPoint%28t%5B0%5D%2Ct%5B1%5D%29%3At%3D%3D%3Di%7C%7Cnull%3D%3D%3Dt%3Ft%3Anew%20o%2EPoint%28t%2Ce%2Cn%29%7D%2Co%2EBounds%3Dfunction%28t%2Ce%29%7Bif%28t%29for%28var%20i%3De%3F%5Bt%2Ce%5D%3At%2Cn%3D0%2Co%3Di%2Elength%3Bo%3En%3Bn%2B%2B%29this%2Eextend%28i%5Bn%5D%29%7D%2Co%2EBounds%2Eprototype%3D%7Bextend%3Afunction%28t%29%7Breturn%20t%3Do%2Epoint%28t%29%2Cthis%2Emin%7C%7Cthis%2Emax%3F%28this%2Emin%2Ex%3DMath%2Emin%28t%2Ex%2Cthis%2Emin%2Ex%29%2Cthis%2Emax%2Ex%3DMath%2Emax%28t%2Ex%2Cthis%2Emax%2Ex%29%2Cthis%2Emin%2Ey%3DMath%2Emin%28t%2Ey%2Cthis%2Emin%2Ey%29%2Cthis%2Emax%2Ey%3DMath%2Emax%28t%2Ey%2Cthis%2Emax%2Ey%29%29%3A%28this%2Emin%3Dt%2Eclone%28%29%2Cthis%2Emax%3Dt%2Eclone%28%29%29%2Cthis%7D%2CgetCenter%3Afunction%28t%29%7Breturn%20new%20o%2EPoint%28%28this%2Emin%2Ex%2Bthis%2Emax%2Ex%29%2F2%2C%28this%2Emin%2Ey%2Bthis%2Emax%2Ey%29%2F2%2Ct%29%7D%2CgetBottomLeft%3Afunction%28%29%7Breturn%20new%20o%2EPoint%28this%2Emin%2Ex%2Cthis%2Emax%2Ey%29%7D%2CgetTopRight%3Afunction%28%29%7Breturn%20new%20o%2EPoint%28this%2Emax%2Ex%2Cthis%2Emin%2Ey%29%7D%2CgetSize%3Afunction%28%29%7Breturn%20this%2Emax%2Esubtract%28this%2Emin%29%7D%2Ccontains%3Afunction%28t%29%7Bvar%20e%2Ci%3Breturn%20t%3D%22number%22%3D%3Dtypeof%20t%5B0%5D%7C%7Ct%20instanceof%20o%2EPoint%3Fo%2Epoint%28t%29%3Ao%2Ebounds%28t%29%2Ct%20instanceof%20o%2EBounds%3F%28e%3Dt%2Emin%2Ci%3Dt%2Emax%29%3Ae%3Di%3Dt%2Ce%2Ex%3E%3Dthis%2Emin%2Ex%26%26i%2Ex%3C%3Dthis%2Emax%2Ex%26%26e%2Ey%3E%3Dthis%2Emin%2Ey%26%26i%2Ey%3C%3Dthis%2Emax%2Ey%7D%2Cintersects%3Afunction%28t%29%7Bt%3Do%2Ebounds%28t%29%3Bvar%20e%3Dthis%2Emin%2Ci%3Dthis%2Emax%2Cn%3Dt%2Emin%2Cs%3Dt%2Emax%2Ca%3Ds%2Ex%3E%3De%2Ex%26%26n%2Ex%3C%3Di%2Ex%2Cr%3Ds%2Ey%3E%3De%2Ey%26%26n%2Ey%3C%3Di%2Ey%3Breturn%20a%26%26r%7D%2CisValid%3Afunction%28%29%7Breturn%21%28%21this%2Emin%7C%7C%21this%2Emax%29%7D%7D%2Co%2Ebounds%3Dfunction%28t%2Ce%29%7Breturn%21t%7C%7Ct%20instanceof%20o%2EBounds%3Ft%3Anew%20o%2EBounds%28t%2Ce%29%7D%2Co%2ETransformation%3Dfunction%28t%2Ce%2Ci%2Cn%29%7Bthis%2E%5Fa%3Dt%2Cthis%2E%5Fb%3De%2Cthis%2E%5Fc%3Di%2Cthis%2E%5Fd%3Dn%7D%2Co%2ETransformation%2Eprototype%3D%7Btransform%3Afunction%28t%2Ce%29%7Breturn%20this%2E%5Ftransform%28t%2Eclone%28%29%2Ce%29%7D%2C%5Ftransform%3Afunction%28t%2Ce%29%7Breturn%20e%3De%7C%7C1%2Ct%2Ex%3De%2A%28this%2E%5Fa%2At%2Ex%2Bthis%2E%5Fb%29%2Ct%2Ey%3De%2A%28this%2E%5Fc%2At%2Ey%2Bthis%2E%5Fd%29%2Ct%7D%2Cuntransform%3Afunction%28t%2Ce%29%7Breturn%20e%3De%7C%7C1%2Cnew%20o%2EPoint%28%28t%2Ex%2Fe%2Dthis%2E%5Fb%29%2Fthis%2E%5Fa%2C%28t%2Ey%2Fe%2Dthis%2E%5Fd%29%2Fthis%2E%5Fc%29%7D%7D%2Co%2EDomUtil%3D%7Bget%3Afunction%28t%29%7Breturn%22string%22%3D%3Dtypeof%20t%3Fe%2EgetElementById%28t%29%3At%7D%2CgetStyle%3Afunction%28t%2Ci%29%7Bvar%20n%3Dt%2Estyle%5Bi%5D%3Bif%28%21n%26%26t%2EcurrentStyle%26%26%28n%3Dt%2EcurrentStyle%5Bi%5D%29%2C%28%21n%7C%7C%22auto%22%3D%3D%3Dn%29%26%26e%2EdefaultView%29%7Bvar%20o%3De%2EdefaultView%2EgetComputedStyle%28t%2Cnull%29%3Bn%3Do%3Fo%5Bi%5D%3Anull%7Dreturn%22auto%22%3D%3D%3Dn%3Fnull%3An%7D%2CgetViewportOffset%3Afunction%28t%29%7Bvar%20i%2Cn%3D0%2Cs%3D0%2Ca%3Dt%2Cr%3De%2Ebody%2Ch%3De%2EdocumentElement%3Bdo%7Bif%28n%2B%3Da%2EoffsetTop%7C%7C0%2Cs%2B%3Da%2EoffsetLeft%7C%7C0%2Cn%2B%3DparseInt%28o%2EDomUtil%2EgetStyle%28a%2C%22borderTopWidth%22%29%2C10%29%7C%7C0%2Cs%2B%3DparseInt%28o%2EDomUtil%2EgetStyle%28a%2C%22borderLeftWidth%22%29%2C10%29%7C%7C0%2Ci%3Do%2EDomUtil%2EgetStyle%28a%2C%22position%22%29%2Ca%2EoffsetParent%3D%3D%3Dr%26%26%22absolute%22%3D%3D%3Di%29break%3Bif%28%22fixed%22%3D%3D%3Di%29%7Bn%2B%3Dr%2EscrollTop%7C%7Ch%2EscrollTop%7C%7C0%2Cs%2B%3Dr%2EscrollLeft%7C%7Ch%2EscrollLeft%7C%7C0%3Bbreak%7Dif%28%22relative%22%3D%3D%3Di%26%26%21a%2EoffsetLeft%29%7Bvar%20l%3Do%2EDomUtil%2EgetStyle%28a%2C%22width%22%29%2Cu%3Do%2EDomUtil%2EgetStyle%28a%2C%22max%2Dwidth%22%29%2Cc%3Da%2EgetBoundingClientRect%28%29%3B%28%22none%22%21%3D%3Dl%7C%7C%22none%22%21%3D%3Du%29%26%26%28s%2B%3Dc%2Eleft%2Ba%2EclientLeft%29%2Cn%2B%3Dc%2Etop%2B%28r%2EscrollTop%7C%7Ch%2EscrollTop%7C%7C0%29%3Bbreak%7Da%3Da%2EoffsetParent%7Dwhile%28a%29%3Ba%3Dt%3Bdo%7Bif%28a%3D%3D%3Dr%29break%3Bn%2D%3Da%2EscrollTop%7C%7C0%2Cs%2D%3Da%2EscrollLeft%7C%7C0%2Ca%3Da%2EparentNode%7Dwhile%28a%29%3Breturn%20new%20o%2EPoint%28s%2Cn%29%7D%2CdocumentIsLtr%3Afunction%28%29%7Breturn%20o%2EDomUtil%2E%5FdocIsLtrCached%7C%7C%28o%2EDomUtil%2E%5FdocIsLtrCached%3D%210%2Co%2EDomUtil%2E%5FdocIsLtr%3D%22ltr%22%3D%3D%3Do%2EDomUtil%2EgetStyle%28e%2Ebody%2C%22direction%22%29%29%2Co%2EDomUtil%2E%5FdocIsLtr%7D%2Ccreate%3Afunction%28t%2Ci%2Cn%29%7Bvar%20o%3De%2EcreateElement%28t%29%3Breturn%20o%2EclassName%3Di%2Cn%26%26n%2EappendChild%28o%29%2Co%7D%2ChasClass%3Afunction%28t%2Ce%29%7Bif%28t%2EclassList%21%3D%3Di%29return%20t%2EclassList%2Econtains%28e%29%3Bvar%20n%3Do%2EDomUtil%2E%5FgetClass%28t%29%3Breturn%20n%2Elength%3E0%26%26new%20RegExp%28%22%28%5E%7C%5C%5Cs%29%22%2Be%2B%22%28%5C%5Cs%7C%24%29%22%29%2Etest%28n%29%7D%2CaddClass%3Afunction%28t%2Ce%29%7Bif%28t%2EclassList%21%3D%3Di%29for%28var%20n%3Do%2EUtil%2EsplitWords%28e%29%2Cs%3D0%2Ca%3Dn%2Elength%3Ba%3Es%3Bs%2B%2B%29t%2EclassList%2Eadd%28n%5Bs%5D%29%3Belse%20if%28%21o%2EDomUtil%2EhasClass%28t%2Ce%29%29%7Bvar%20r%3Do%2EDomUtil%2E%5FgetClass%28t%29%3Bo%2EDomUtil%2E%5FsetClass%28t%2C%28r%3Fr%2B%22%20%22%3A%22%22%29%2Be%29%7D%7D%2CremoveClass%3Afunction%28t%2Ce%29%7Bt%2EclassList%21%3D%3Di%3Ft%2EclassList%2Eremove%28e%29%3Ao%2EDomUtil%2E%5FsetClass%28t%2Co%2EUtil%2Etrim%28%28%22%20%22%2Bo%2EDomUtil%2E%5FgetClass%28t%29%2B%22%20%22%29%2Ereplace%28%22%20%22%2Be%2B%22%20%22%2C%22%20%22%29%29%29%7D%2C%5FsetClass%3Afunction%28t%2Ce%29%7Bt%2EclassName%2EbaseVal%3D%3D%3Di%3Ft%2EclassName%3De%3At%2EclassName%2EbaseVal%3De%7D%2C%5FgetClass%3Afunction%28t%29%7Breturn%20t%2EclassName%2EbaseVal%3D%3D%3Di%3Ft%2EclassName%3At%2EclassName%2EbaseVal%7D%2CsetOpacity%3Afunction%28t%2Ce%29%7Bif%28%22opacity%22in%20t%2Estyle%29t%2Estyle%2Eopacity%3De%3Belse%20if%28%22filter%22in%20t%2Estyle%29%7Bvar%20i%3D%211%2Cn%3D%22DXImageTransform%2EMicrosoft%2EAlpha%22%3Btry%7Bi%3Dt%2Efilters%2Eitem%28n%29%7Dcatch%28o%29%7Bif%281%3D%3D%3De%29return%7De%3DMath%2Eround%28100%2Ae%29%2Ci%3F%28i%2EEnabled%3D100%21%3D%3De%2Ci%2EOpacity%3De%29%3At%2Estyle%2Efilter%2B%3D%22%20progid%3A%22%2Bn%2B%22%28opacity%3D%22%2Be%2B%22%29%22%7D%7D%2CtestProp%3Afunction%28t%29%7Bfor%28var%20i%3De%2EdocumentElement%2Estyle%2Cn%3D0%3Bn%3Ct%2Elength%3Bn%2B%2B%29if%28t%5Bn%5Din%20i%29return%20t%5Bn%5D%3Breturn%211%7D%2CgetTranslateString%3Afunction%28t%29%7Bvar%20e%3Do%2EBrowser%2Ewebkit3d%2Ci%3D%22translate%22%2B%28e%3F%223d%22%3A%22%22%29%2B%22%28%22%2Cn%3D%28e%3F%22%2C0%22%3A%22%22%29%2B%22%29%22%3Breturn%20i%2Bt%2Ex%2B%22px%2C%22%2Bt%2Ey%2B%22px%22%2Bn%7D%2CgetScaleString%3Afunction%28t%2Ce%29%7Bvar%20i%3Do%2EDomUtil%2EgetTranslateString%28e%2Eadd%28e%2EmultiplyBy%28%2D1%2At%29%29%29%2Cn%3D%22%20scale%28%22%2Bt%2B%22%29%20%22%3Breturn%20i%2Bn%7D%2CsetPosition%3Afunction%28t%2Ce%2Ci%29%7Bt%2E%5Fleaflet%5Fpos%3De%2C%21i%26%26o%2EBrowser%2Eany3d%3Ft%2Estyle%5Bo%2EDomUtil%2ETRANSFORM%5D%3Do%2EDomUtil%2EgetTranslateString%28e%29%3A%28t%2Estyle%2Eleft%3De%2Ex%2B%22px%22%2Ct%2Estyle%2Etop%3De%2Ey%2B%22px%22%29%7D%2CgetPosition%3Afunction%28t%29%7Breturn%20t%2E%5Fleaflet%5Fpos%7D%7D%2Co%2EDomUtil%2ETRANSFORM%3Do%2EDomUtil%2EtestProp%28%5B%22transform%22%2C%22WebkitTransform%22%2C%22OTransform%22%2C%22MozTransform%22%2C%22msTransform%22%5D%29%2Co%2EDomUtil%2ETRANSITION%3Do%2EDomUtil%2EtestProp%28%5B%22webkitTransition%22%2C%22transition%22%2C%22OTransition%22%2C%22MozTransition%22%2C%22msTransition%22%5D%29%2Co%2EDomUtil%2ETRANSITION%5FEND%3D%22webkitTransition%22%3D%3D%3Do%2EDomUtil%2ETRANSITION%7C%7C%22OTransition%22%3D%3D%3Do%2EDomUtil%2ETRANSITION%3Fo%2EDomUtil%2ETRANSITION%2B%22End%22%3A%22transitionend%22%2Cfunction%28%29%7Bif%28%22onselectstart%22in%20e%29o%2Eextend%28o%2EDomUtil%2C%7BdisableTextSelection%3Afunction%28%29%7Bo%2EDomEvent%2Eon%28t%2C%22selectstart%22%2Co%2EDomEvent%2EpreventDefault%29%7D%2CenableTextSelection%3Afunction%28%29%7Bo%2EDomEvent%2Eoff%28t%2C%22selectstart%22%2Co%2EDomEvent%2EpreventDefault%29%7D%7D%29%3Belse%7Bvar%20i%3Do%2EDomUtil%2EtestProp%28%5B%22userSelect%22%2C%22WebkitUserSelect%22%2C%22OUserSelect%22%2C%22MozUserSelect%22%2C%22msUserSelect%22%5D%29%3Bo%2Eextend%28o%2EDomUtil%2C%7BdisableTextSelection%3Afunction%28%29%7Bif%28i%29%7Bvar%20t%3De%2EdocumentElement%2Estyle%3Bthis%2E%5FuserSelect%3Dt%5Bi%5D%2Ct%5Bi%5D%3D%22none%22%7D%7D%2CenableTextSelection%3Afunction%28%29%7Bi%26%26%28e%2EdocumentElement%2Estyle%5Bi%5D%3Dthis%2E%5FuserSelect%2Cdelete%20this%2E%5FuserSelect%29%7D%7D%29%7Do%2Eextend%28o%2EDomUtil%2C%7BdisableImageDrag%3Afunction%28%29%7Bo%2EDomEvent%2Eon%28t%2C%22dragstart%22%2Co%2EDomEvent%2EpreventDefault%29%7D%2CenableImageDrag%3Afunction%28%29%7Bo%2EDomEvent%2Eoff%28t%2C%22dragstart%22%2Co%2EDomEvent%2EpreventDefault%29%7D%7D%29%7D%28%29%2Co%2ELatLng%3Dfunction%28t%2Ce%2Cn%29%7Bif%28t%3DparseFloat%28t%29%2Ce%3DparseFloat%28e%29%2CisNaN%28t%29%7C%7CisNaN%28e%29%29throw%20new%20Error%28%22Invalid%20LatLng%20object%3A%20%28%22%2Bt%2B%22%2C%20%22%2Be%2B%22%29%22%29%3Bthis%2Elat%3Dt%2Cthis%2Elng%3De%2Cn%21%3D%3Di%26%26%28this%2Ealt%3DparseFloat%28n%29%29%7D%2Co%2Eextend%28o%2ELatLng%2C%7BDEG%5FTO%5FRAD%3AMath%2EPI%2F180%2CRAD%5FTO%5FDEG%3A180%2FMath%2EPI%2CMAX%5FMARGIN%3A1e%2D9%7D%29%2Co%2ELatLng%2Eprototype%3D%7Bequals%3Afunction%28t%29%7Bif%28%21t%29return%211%3Bt%3Do%2ElatLng%28t%29%3Bvar%20e%3DMath%2Emax%28Math%2Eabs%28this%2Elat%2Dt%2Elat%29%2CMath%2Eabs%28this%2Elng%2Dt%2Elng%29%29%3Breturn%20e%3C%3Do%2ELatLng%2EMAX%5FMARGIN%7D%2CtoString%3Afunction%28t%29%7Breturn%22LatLng%28%22%2Bo%2EUtil%2EformatNum%28this%2Elat%2Ct%29%2B%22%2C%20%22%2Bo%2EUtil%2EformatNum%28this%2Elng%2Ct%29%2B%22%29%22%7D%2CdistanceTo%3Afunction%28t%29%7Bt%3Do%2ElatLng%28t%29%3Bvar%20e%3D6378137%2Ci%3Do%2ELatLng%2EDEG%5FTO%5FRAD%2Cn%3D%28t%2Elat%2Dthis%2Elat%29%2Ai%2Cs%3D%28t%2Elng%2Dthis%2Elng%29%2Ai%2Ca%3Dthis%2Elat%2Ai%2Cr%3Dt%2Elat%2Ai%2Ch%3DMath%2Esin%28n%2F2%29%2Cl%3DMath%2Esin%28s%2F2%29%2Cu%3Dh%2Ah%2Bl%2Al%2AMath%2Ecos%28a%29%2AMath%2Ecos%28r%29%3Breturn%202%2Ae%2AMath%2Eatan2%28Math%2Esqrt%28u%29%2CMath%2Esqrt%281%2Du%29%29%7D%2Cwrap%3Afunction%28t%2Ce%29%7Bvar%20i%3Dthis%2Elng%3Breturn%20t%3Dt%7C%7C%2D180%2Ce%3De%7C%7C180%2Ci%3D%28i%2Be%29%25%28e%2Dt%29%2B%28t%3Ei%7C%7Ci%3D%3D%3De%3Fe%3At%29%2Cnew%20o%2ELatLng%28this%2Elat%2Ci%29%7D%7D%2Co%2ElatLng%3Dfunction%28t%2Ce%29%7Breturn%20t%20instanceof%20o%2ELatLng%3Ft%3Ao%2EUtil%2EisArray%28t%29%3F%22number%22%3D%3Dtypeof%20t%5B0%5D%7C%7C%22string%22%3D%3Dtypeof%20t%5B0%5D%3Fnew%20o%2ELatLng%28t%5B0%5D%2Ct%5B1%5D%2Ct%5B2%5D%29%3Anull%3At%3D%3D%3Di%7C%7Cnull%3D%3D%3Dt%3Ft%3A%22object%22%3D%3Dtypeof%20t%26%26%22lat%22in%20t%3Fnew%20o%2ELatLng%28t%2Elat%2C%22lng%22in%20t%3Ft%2Elng%3At%2Elon%29%3Ae%3D%3D%3Di%3Fnull%3Anew%20o%2ELatLng%28t%2Ce%29%7D%2Co%2ELatLngBounds%3Dfunction%28t%2Ce%29%7Bif%28t%29for%28var%20i%3De%3F%5Bt%2Ce%5D%3At%2Cn%3D0%2Co%3Di%2Elength%3Bo%3En%3Bn%2B%2B%29this%2Eextend%28i%5Bn%5D%29%7D%2Co%2ELatLngBounds%2Eprototype%3D%7Bextend%3Afunction%28t%29%7Bif%28%21t%29return%20this%3Bvar%20e%3Do%2ElatLng%28t%29%3Breturn%20t%3Dnull%21%3D%3De%3Fe%3Ao%2ElatLngBounds%28t%29%2Ct%20instanceof%20o%2ELatLng%3Fthis%2E%5FsouthWest%7C%7Cthis%2E%5FnorthEast%3F%28this%2E%5FsouthWest%2Elat%3DMath%2Emin%28t%2Elat%2Cthis%2E%5FsouthWest%2Elat%29%2Cthis%2E%5FsouthWest%2Elng%3DMath%2Emin%28t%2Elng%2Cthis%2E%5FsouthWest%2Elng%29%2Cthis%2E%5FnorthEast%2Elat%3DMath%2Emax%28t%2Elat%2Cthis%2E%5FnorthEast%2Elat%29%2Cthis%2E%5FnorthEast%2Elng%3DMath%2Emax%28t%2Elng%2Cthis%2E%5FnorthEast%2Elng%29%29%3A%28this%2E%5FsouthWest%3Dnew%20o%2ELatLng%28t%2Elat%2Ct%2Elng%29%2Cthis%2E%5FnorthEast%3Dnew%20o%2ELatLng%28t%2Elat%2Ct%2Elng%29%29%3At%20instanceof%20o%2ELatLngBounds%26%26%28this%2Eextend%28t%2E%5FsouthWest%29%2Cthis%2Eextend%28t%2E%5FnorthEast%29%29%2Cthis%7D%2Cpad%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5FsouthWest%2Ci%3Dthis%2E%5FnorthEast%2Cn%3DMath%2Eabs%28e%2Elat%2Di%2Elat%29%2At%2Cs%3DMath%2Eabs%28e%2Elng%2Di%2Elng%29%2At%3Breturn%20new%20o%2ELatLngBounds%28new%20o%2ELatLng%28e%2Elat%2Dn%2Ce%2Elng%2Ds%29%2Cnew%20o%2ELatLng%28i%2Elat%2Bn%2Ci%2Elng%2Bs%29%29%7D%2CgetCenter%3Afunction%28%29%7Breturn%20new%20o%2ELatLng%28%28this%2E%5FsouthWest%2Elat%2Bthis%2E%5FnorthEast%2Elat%29%2F2%2C%28this%2E%5FsouthWest%2Elng%2Bthis%2E%5FnorthEast%2Elng%29%2F2%29%7D%2CgetSouthWest%3Afunction%28%29%7Breturn%20this%2E%5FsouthWest%7D%2CgetNorthEast%3Afunction%28%29%7Breturn%20this%2E%5FnorthEast%7D%2CgetNorthWest%3Afunction%28%29%7Breturn%20new%20o%2ELatLng%28this%2EgetNorth%28%29%2Cthis%2EgetWest%28%29%29%7D%2CgetSouthEast%3Afunction%28%29%7Breturn%20new%20o%2ELatLng%28this%2EgetSouth%28%29%2Cthis%2EgetEast%28%29%29%7D%2CgetWest%3Afunction%28%29%7Breturn%20this%2E%5FsouthWest%2Elng%7D%2CgetSouth%3Afunction%28%29%7Breturn%20this%2E%5FsouthWest%2Elat%7D%2CgetEast%3Afunction%28%29%7Breturn%20this%2E%5FnorthEast%2Elng%7D%2CgetNorth%3Afunction%28%29%7Breturn%20this%2E%5FnorthEast%2Elat%7D%2Ccontains%3Afunction%28t%29%7Bt%3D%22number%22%3D%3Dtypeof%20t%5B0%5D%7C%7Ct%20instanceof%20o%2ELatLng%3Fo%2ElatLng%28t%29%3Ao%2ElatLngBounds%28t%29%3Bvar%20e%2Ci%2Cn%3Dthis%2E%5FsouthWest%2Cs%3Dthis%2E%5FnorthEast%3Breturn%20t%20instanceof%20o%2ELatLngBounds%3F%28e%3Dt%2EgetSouthWest%28%29%2Ci%3Dt%2EgetNorthEast%28%29%29%3Ae%3Di%3Dt%2Ce%2Elat%3E%3Dn%2Elat%26%26i%2Elat%3C%3Ds%2Elat%26%26e%2Elng%3E%3Dn%2Elng%26%26i%2Elng%3C%3Ds%2Elng%7D%2Cintersects%3Afunction%28t%29%7Bt%3Do%2ElatLngBounds%28t%29%3Bvar%20e%3Dthis%2E%5FsouthWest%2Ci%3Dthis%2E%5FnorthEast%2Cn%3Dt%2EgetSouthWest%28%29%2Cs%3Dt%2EgetNorthEast%28%29%2Ca%3Ds%2Elat%3E%3De%2Elat%26%26n%2Elat%3C%3Di%2Elat%2Cr%3Ds%2Elng%3E%3De%2Elng%26%26n%2Elng%3C%3Di%2Elng%3Breturn%20a%26%26r%7D%2CtoBBoxString%3Afunction%28%29%7Breturn%5Bthis%2EgetWest%28%29%2Cthis%2EgetSouth%28%29%2Cthis%2EgetEast%28%29%2Cthis%2EgetNorth%28%29%5D%2Ejoin%28%22%2C%22%29%7D%2Cequals%3Afunction%28t%29%7Breturn%20t%3F%28t%3Do%2ElatLngBounds%28t%29%2Cthis%2E%5FsouthWest%2Eequals%28t%2EgetSouthWest%28%29%29%26%26this%2E%5FnorthEast%2Eequals%28t%2EgetNorthEast%28%29%29%29%3A%211%7D%2CisValid%3Afunction%28%29%7Breturn%21%28%21this%2E%5FsouthWest%7C%7C%21this%2E%5FnorthEast%29%7D%7D%2Co%2ElatLngBounds%3Dfunction%28t%2Ce%29%7Breturn%21t%7C%7Ct%20instanceof%20o%2ELatLngBounds%3Ft%3Anew%20o%2ELatLngBounds%28t%2Ce%29%7D%2Co%2EProjection%3D%7B%7D%2Co%2EProjection%2ESphericalMercator%3D%7BMAX%5FLATITUDE%3A85%2E0511287798%2Cproject%3Afunction%28t%29%7Bvar%20e%3Do%2ELatLng%2EDEG%5FTO%5FRAD%2Ci%3Dthis%2EMAX%5FLATITUDE%2Cn%3DMath%2Emax%28Math%2Emin%28i%2Ct%2Elat%29%2C%2Di%29%2Cs%3Dt%2Elng%2Ae%2Ca%3Dn%2Ae%3Breturn%20a%3DMath%2Elog%28Math%2Etan%28Math%2EPI%2F4%2Ba%2F2%29%29%2Cnew%20o%2EPoint%28s%2Ca%29%7D%2Cunproject%3Afunction%28t%29%7Bvar%20e%3Do%2ELatLng%2ERAD%5FTO%5FDEG%2Ci%3Dt%2Ex%2Ae%2Cn%3D%282%2AMath%2Eatan%28Math%2Eexp%28t%2Ey%29%29%2DMath%2EPI%2F2%29%2Ae%3Breturn%20new%20o%2ELatLng%28n%2Ci%29%7D%7D%2Co%2EProjection%2ELonLat%3D%7Bproject%3Afunction%28t%29%7Breturn%20new%20o%2EPoint%28t%2Elng%2Ct%2Elat%29%7D%2Cunproject%3Afunction%28t%29%7Breturn%20new%20o%2ELatLng%28t%2Ey%2Ct%2Ex%29%7D%7D%2Co%2ECRS%3D%7BlatLngToPoint%3Afunction%28t%2Ce%29%7Bvar%20i%3Dthis%2Eprojection%2Eproject%28t%29%2Cn%3Dthis%2Escale%28e%29%3Breturn%20this%2Etransformation%2E%5Ftransform%28i%2Cn%29%7D%2CpointToLatLng%3Afunction%28t%2Ce%29%7Bvar%20i%3Dthis%2Escale%28e%29%2Cn%3Dthis%2Etransformation%2Euntransform%28t%2Ci%29%3Breturn%20this%2Eprojection%2Eunproject%28n%29%7D%2Cproject%3Afunction%28t%29%7Breturn%20this%2Eprojection%2Eproject%28t%29%7D%2Cscale%3Afunction%28t%29%7Breturn%20256%2AMath%2Epow%282%2Ct%29%7D%2CgetSize%3Afunction%28t%29%7Bvar%20e%3Dthis%2Escale%28t%29%3Breturn%20o%2Epoint%28e%2Ce%29%7D%7D%2Co%2ECRS%2ESimple%3Do%2Eextend%28%7B%7D%2Co%2ECRS%2C%7Bprojection%3Ao%2EProjection%2ELonLat%2Ctransformation%3Anew%20o%2ETransformation%281%2C0%2C%2D1%2C0%29%2Cscale%3Afunction%28t%29%7Breturn%20Math%2Epow%282%2Ct%29%7D%7D%29%2Co%2ECRS%2EEPSG3857%3Do%2Eextend%28%7B%7D%2Co%2ECRS%2C%7Bcode%3A%22EPSG%3A3857%22%2Cprojection%3Ao%2EProjection%2ESphericalMercator%2Ctransformation%3Anew%20o%2ETransformation%28%2E5%2FMath%2EPI%2C%2E5%2C%2D%2E5%2FMath%2EPI%2C%2E5%29%2Cproject%3Afunction%28t%29%7Bvar%20e%3Dthis%2Eprojection%2Eproject%28t%29%2Ci%3D6378137%3Breturn%20e%2EmultiplyBy%28i%29%7D%7D%29%2Co%2ECRS%2EEPSG900913%3Do%2Eextend%28%7B%7D%2Co%2ECRS%2EEPSG3857%2C%7Bcode%3A%22EPSG%3A900913%22%7D%29%2Co%2ECRS%2EEPSG4326%3Do%2Eextend%28%7B%7D%2Co%2ECRS%2C%7Bcode%3A%22EPSG%3A4326%22%2Cprojection%3Ao%2EProjection%2ELonLat%2Ctransformation%3Anew%20o%2ETransformation%281%2F360%2C%2E5%2C%2D1%2F360%2C%2E5%29%7D%29%2Co%2EMap%3Do%2EClass%2Eextend%28%7Bincludes%3Ao%2EMixin%2EEvents%2Coptions%3A%7Bcrs%3Ao%2ECRS%2EEPSG3857%2CfadeAnimation%3Ao%2EDomUtil%2ETRANSITION%26%26%21o%2EBrowser%2Eandroid23%2CtrackResize%3A%210%2CmarkerZoomAnimation%3Ao%2EDomUtil%2ETRANSITION%26%26o%2EBrowser%2Eany3d%7D%2Cinitialize%3Afunction%28t%2Ce%29%7Be%3Do%2EsetOptions%28this%2Ce%29%2Cthis%2E%5FinitContainer%28t%29%2Cthis%2E%5FinitLayout%28%29%2Cthis%2E%5FonResize%3Do%2Ebind%28this%2E%5FonResize%2Cthis%29%2Cthis%2E%5FinitEvents%28%29%2Ce%2EmaxBounds%26%26this%2EsetMaxBounds%28e%2EmaxBounds%29%2Ce%2Ecenter%26%26e%2Ezoom%21%3D%3Di%26%26this%2EsetView%28o%2ElatLng%28e%2Ecenter%29%2Ce%2Ezoom%2C%7Breset%3A%210%7D%29%2Cthis%2E%5Fhandlers%3D%5B%5D%2Cthis%2E%5Flayers%3D%7B%7D%2Cthis%2E%5FzoomBoundLayers%3D%7B%7D%2Cthis%2E%5FtileLayersNum%3D0%2Cthis%2EcallInitHooks%28%29%2Cthis%2E%5FaddLayers%28e%2Elayers%29%7D%2CsetView%3Afunction%28t%2Ce%29%7Breturn%20e%3De%3D%3D%3Di%3Fthis%2EgetZoom%28%29%3Ae%2Cthis%2E%5FresetView%28o%2ElatLng%28t%29%2Cthis%2E%5FlimitZoom%28e%29%29%2Cthis%7D%2CsetZoom%3Afunction%28t%2Ce%29%7Breturn%20this%2E%5Floaded%3Fthis%2EsetView%28this%2EgetCenter%28%29%2Ct%2C%7Bzoom%3Ae%7D%29%3A%28this%2E%5Fzoom%3Dthis%2E%5FlimitZoom%28t%29%2Cthis%29%7D%2CzoomIn%3Afunction%28t%2Ce%29%7Breturn%20this%2EsetZoom%28this%2E%5Fzoom%2B%28t%7C%7C1%29%2Ce%29%7D%2CzoomOut%3Afunction%28t%2Ce%29%7Breturn%20this%2EsetZoom%28this%2E%5Fzoom%2D%28t%7C%7C1%29%2Ce%29%7D%2CsetZoomAround%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%3Dthis%2EgetZoomScale%28e%29%2Cs%3Dthis%2EgetSize%28%29%2EdivideBy%282%29%2Ca%3Dt%20instanceof%20o%2EPoint%3Ft%3Athis%2ElatLngToContainerPoint%28t%29%2Cr%3Da%2Esubtract%28s%29%2EmultiplyBy%281%2D1%2Fn%29%2Ch%3Dthis%2EcontainerPointToLatLng%28s%2Eadd%28r%29%29%3Breturn%20this%2EsetView%28h%2Ce%2C%7Bzoom%3Ai%7D%29%7D%2CfitBounds%3Afunction%28t%2Ce%29%7Be%3De%7C%7C%7B%7D%2Ct%3Dt%2EgetBounds%3Ft%2EgetBounds%28%29%3Ao%2ElatLngBounds%28t%29%3Bvar%20i%3Do%2Epoint%28e%2EpaddingTopLeft%7C%7Ce%2Epadding%7C%7C%5B0%2C0%5D%29%2Cn%3Do%2Epoint%28e%2EpaddingBottomRight%7C%7Ce%2Epadding%7C%7C%5B0%2C0%5D%29%2Cs%3Dthis%2EgetBoundsZoom%28t%2C%211%2Ci%2Eadd%28n%29%29%2Ca%3Dn%2Esubtract%28i%29%2EdivideBy%282%29%2Cr%3Dthis%2Eproject%28t%2EgetSouthWest%28%29%2Cs%29%2Ch%3Dthis%2Eproject%28t%2EgetNorthEast%28%29%2Cs%29%2Cl%3Dthis%2Eunproject%28r%2Eadd%28h%29%2EdivideBy%282%29%2Eadd%28a%29%2Cs%29%3Breturn%20s%3De%26%26e%2EmaxZoom%3FMath%2Emin%28e%2EmaxZoom%2Cs%29%3As%2Cthis%2EsetView%28l%2Cs%2Ce%29%7D%2CfitWorld%3Afunction%28t%29%7Breturn%20this%2EfitBounds%28%5B%5B%2D90%2C%2D180%5D%2C%5B90%2C180%5D%5D%2Ct%29%7D%2CpanTo%3Afunction%28t%2Ce%29%7Breturn%20this%2EsetView%28t%2Cthis%2E%5Fzoom%2C%7Bpan%3Ae%7D%29%7D%2CpanBy%3Afunction%28t%29%7Breturn%20this%2Efire%28%22movestart%22%29%2Cthis%2E%5FrawPanBy%28o%2Epoint%28t%29%29%2Cthis%2Efire%28%22move%22%29%2Cthis%2Efire%28%22moveend%22%29%7D%2CsetMaxBounds%3Afunction%28t%29%7Breturn%20t%3Do%2ElatLngBounds%28t%29%2Cthis%2Eoptions%2EmaxBounds%3Dt%2Ct%3F%28this%2E%5Floaded%26%26this%2E%5FpanInsideMaxBounds%28%29%2Cthis%2Eon%28%22moveend%22%2Cthis%2E%5FpanInsideMaxBounds%2Cthis%29%29%3Athis%2Eoff%28%22moveend%22%2Cthis%2E%5FpanInsideMaxBounds%2Cthis%29%7D%2CpanInsideBounds%3Afunction%28t%2Ce%29%7Bvar%20i%3Dthis%2EgetCenter%28%29%2Cn%3Dthis%2E%5FlimitCenter%28i%2Cthis%2E%5Fzoom%2Ct%29%3Breturn%20i%2Eequals%28n%29%3Fthis%3Athis%2EpanTo%28n%2Ce%29%7D%2CaddLayer%3Afunction%28t%29%7Bvar%20e%3Do%2Estamp%28t%29%3Breturn%20this%2E%5Flayers%5Be%5D%3Fthis%3A%28this%2E%5Flayers%5Be%5D%3Dt%2C%21t%2Eoptions%7C%7CisNaN%28t%2Eoptions%2EmaxZoom%29%26%26isNaN%28t%2Eoptions%2EminZoom%29%7C%7C%28this%2E%5FzoomBoundLayers%5Be%5D%3Dt%2Cthis%2E%5FupdateZoomLevels%28%29%29%2Cthis%2Eoptions%2EzoomAnimation%26%26o%2ETileLayer%26%26t%20instanceof%20o%2ETileLayer%26%26%28this%2E%5FtileLayersNum%2B%2B%2Cthis%2E%5FtileLayersToLoad%2B%2B%2Ct%2Eon%28%22load%22%2Cthis%2E%5FonTileLayerLoad%2Cthis%29%29%2Cthis%2E%5Floaded%26%26this%2E%5FlayerAdd%28t%29%2Cthis%29%7D%2CremoveLayer%3Afunction%28t%29%7Bvar%20e%3Do%2Estamp%28t%29%3Breturn%20this%2E%5Flayers%5Be%5D%3F%28this%2E%5Floaded%26%26t%2EonRemove%28this%29%2Cdelete%20this%2E%5Flayers%5Be%5D%2Cthis%2E%5Floaded%26%26this%2Efire%28%22layerremove%22%2C%7Blayer%3At%7D%29%2Cthis%2E%5FzoomBoundLayers%5Be%5D%26%26%28delete%20this%2E%5FzoomBoundLayers%5Be%5D%2Cthis%2E%5FupdateZoomLevels%28%29%29%2Cthis%2Eoptions%2EzoomAnimation%26%26o%2ETileLayer%26%26t%20instanceof%20o%2ETileLayer%26%26%28this%2E%5FtileLayersNum%2D%2D%2Cthis%2E%5FtileLayersToLoad%2D%2D%2Ct%2Eoff%28%22load%22%2Cthis%2E%5FonTileLayerLoad%2Cthis%29%29%2Cthis%29%3Athis%7D%2ChasLayer%3Afunction%28t%29%7Breturn%20t%3Fo%2Estamp%28t%29in%20this%2E%5Flayers%3A%211%7D%2CeachLayer%3Afunction%28t%2Ce%29%7Bfor%28var%20i%20in%20this%2E%5Flayers%29t%2Ecall%28e%2Cthis%2E%5Flayers%5Bi%5D%29%3Breturn%20this%7D%2CinvalidateSize%3Afunction%28t%29%7Bif%28%21this%2E%5Floaded%29return%20this%3Bt%3Do%2Eextend%28%7Banimate%3A%211%2Cpan%3A%210%7D%2Ct%3D%3D%3D%210%3F%7Banimate%3A%210%7D%3At%29%3Bvar%20e%3Dthis%2EgetSize%28%29%3Bthis%2E%5FsizeChanged%3D%210%2Cthis%2E%5FinitialCenter%3Dnull%3Bvar%20i%3Dthis%2EgetSize%28%29%2Cn%3De%2EdivideBy%282%29%2Eround%28%29%2Cs%3Di%2EdivideBy%282%29%2Eround%28%29%2Ca%3Dn%2Esubtract%28s%29%3Breturn%20a%2Ex%7C%7Ca%2Ey%3F%28t%2Eanimate%26%26t%2Epan%3Fthis%2EpanBy%28a%29%3A%28t%2Epan%26%26this%2E%5FrawPanBy%28a%29%2Cthis%2Efire%28%22move%22%29%2Ct%2EdebounceMoveend%3F%28clearTimeout%28this%2E%5FsizeTimer%29%2Cthis%2E%5FsizeTimer%3DsetTimeout%28o%2Ebind%28this%2Efire%2Cthis%2C%22moveend%22%29%2C200%29%29%3Athis%2Efire%28%22moveend%22%29%29%2Cthis%2Efire%28%22resize%22%2C%7BoldSize%3Ae%2CnewSize%3Ai%7D%29%29%3Athis%7D%2CaddHandler%3Afunction%28t%2Ce%29%7Bif%28%21e%29return%20this%3Bvar%20i%3Dthis%5Bt%5D%3Dnew%20e%28this%29%3Breturn%20this%2E%5Fhandlers%2Epush%28i%29%2Cthis%2Eoptions%5Bt%5D%26%26i%2Eenable%28%29%2Cthis%7D%2Cremove%3Afunction%28%29%7Bthis%2E%5Floaded%26%26this%2Efire%28%22unload%22%29%2Cthis%2E%5FinitEvents%28%22off%22%29%3Btry%7Bdelete%20this%2E%5Fcontainer%2E%5Fleaflet%7Dcatch%28t%29%7Bthis%2E%5Fcontainer%2E%5Fleaflet%3Di%7Dreturn%20this%2E%5FclearPanes%28%29%2Cthis%2E%5FclearControlPos%26%26this%2E%5FclearControlPos%28%29%2Cthis%2E%5FclearHandlers%28%29%2Cthis%7D%2CgetCenter%3Afunction%28%29%7Breturn%20this%2E%5FcheckIfLoaded%28%29%2Cthis%2E%5FinitialCenter%26%26%21this%2E%5Fmoved%28%29%3Fthis%2E%5FinitialCenter%3Athis%2ElayerPointToLatLng%28this%2E%5FgetCenterLayerPoint%28%29%29%7D%2CgetZoom%3Afunction%28%29%7Breturn%20this%2E%5Fzoom%7D%2CgetBounds%3Afunction%28%29%7Bvar%20t%3Dthis%2EgetPixelBounds%28%29%2Ce%3Dthis%2Eunproject%28t%2EgetBottomLeft%28%29%29%2Ci%3Dthis%2Eunproject%28t%2EgetTopRight%28%29%29%3Breturn%20new%20o%2ELatLngBounds%28e%2Ci%29%7D%2CgetMinZoom%3Afunction%28%29%7Breturn%20this%2Eoptions%2EminZoom%3D%3D%3Di%3Fthis%2E%5FlayersMinZoom%3D%3D%3Di%3F0%3Athis%2E%5FlayersMinZoom%3Athis%2Eoptions%2EminZoom%7D%2CgetMaxZoom%3Afunction%28%29%7Breturn%20this%2Eoptions%2EmaxZoom%3D%3D%3Di%3Fthis%2E%5FlayersMaxZoom%3D%3D%3Di%3F1%2F0%3Athis%2E%5FlayersMaxZoom%3Athis%2Eoptions%2EmaxZoom%7D%2CgetBoundsZoom%3Afunction%28t%2Ce%2Ci%29%7Bt%3Do%2ElatLngBounds%28t%29%3Bvar%20n%2Cs%3Dthis%2EgetMinZoom%28%29%2D%28e%3F1%3A0%29%2Ca%3Dthis%2EgetMaxZoom%28%29%2Cr%3Dthis%2EgetSize%28%29%2Ch%3Dt%2EgetNorthWest%28%29%2Cl%3Dt%2EgetSouthEast%28%29%2Cu%3D%210%3Bi%3Do%2Epoint%28i%7C%7C%5B0%2C0%5D%29%3Bdo%20s%2B%2B%2Cn%3Dthis%2Eproject%28l%2Cs%29%2Esubtract%28this%2Eproject%28h%2Cs%29%29%2Eadd%28i%29%2Cu%3De%3Fn%2Ex%3Cr%2Ex%7C%7Cn%2Ey%3Cr%2Ey%3Ar%2Econtains%28n%29%3Bwhile%28u%26%26a%3E%3Ds%29%3Breturn%20u%26%26e%3Fnull%3Ae%3Fs%3As%2D1%7D%2CgetSize%3Afunction%28%29%7Breturn%28%21this%2E%5Fsize%7C%7Cthis%2E%5FsizeChanged%29%26%26%28this%2E%5Fsize%3Dnew%20o%2EPoint%28this%2E%5Fcontainer%2EclientWidth%2Cthis%2E%5Fcontainer%2EclientHeight%29%2Cthis%2E%5FsizeChanged%3D%211%29%2Cthis%2E%5Fsize%2Eclone%28%29%7D%2CgetPixelBounds%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FgetTopLeftPoint%28%29%3Breturn%20new%20o%2EBounds%28t%2Ct%2Eadd%28this%2EgetSize%28%29%29%29%7D%2CgetPixelOrigin%3Afunction%28%29%7Breturn%20this%2E%5FcheckIfLoaded%28%29%2Cthis%2E%5FinitialTopLeftPoint%7D%2CgetPanes%3Afunction%28%29%7Breturn%20this%2E%5Fpanes%7D%2CgetContainer%3Afunction%28%29%7Breturn%20this%2E%5Fcontainer%7D%2CgetZoomScale%3Afunction%28t%29%7Bvar%20e%3Dthis%2Eoptions%2Ecrs%3Breturn%20e%2Escale%28t%29%2Fe%2Escale%28this%2E%5Fzoom%29%7D%2CgetScaleZoom%3Afunction%28t%29%7Breturn%20this%2E%5Fzoom%2BMath%2Elog%28t%29%2FMath%2ELN2%7D%2Cproject%3Afunction%28t%2Ce%29%7Breturn%20e%3De%3D%3D%3Di%3Fthis%2E%5Fzoom%3Ae%2Cthis%2Eoptions%2Ecrs%2ElatLngToPoint%28o%2ElatLng%28t%29%2Ce%29%7D%2Cunproject%3Afunction%28t%2Ce%29%7Breturn%20e%3De%3D%3D%3Di%3Fthis%2E%5Fzoom%3Ae%2Cthis%2Eoptions%2Ecrs%2EpointToLatLng%28o%2Epoint%28t%29%2Ce%29%7D%2ClayerPointToLatLng%3Afunction%28t%29%7Bvar%20e%3Do%2Epoint%28t%29%2Eadd%28this%2EgetPixelOrigin%28%29%29%3Breturn%20this%2Eunproject%28e%29%7D%2ClatLngToLayerPoint%3Afunction%28t%29%7Bvar%20e%3Dthis%2Eproject%28o%2ElatLng%28t%29%29%2E%5Fround%28%29%3Breturn%20e%2E%5Fsubtract%28this%2EgetPixelOrigin%28%29%29%7D%2CcontainerPointToLayerPoint%3Afunction%28t%29%7Breturn%20o%2Epoint%28t%29%2Esubtract%28this%2E%5FgetMapPanePos%28%29%29%7D%2ClayerPointToContainerPoint%3Afunction%28t%29%7Breturn%20o%2Epoint%28t%29%2Eadd%28this%2E%5FgetMapPanePos%28%29%29%7D%2CcontainerPointToLatLng%3Afunction%28t%29%7Bvar%20e%3Dthis%2EcontainerPointToLayerPoint%28o%2Epoint%28t%29%29%3Breturn%20this%2ElayerPointToLatLng%28e%29%7D%2ClatLngToContainerPoint%3Afunction%28t%29%7Breturn%20this%2ElayerPointToContainerPoint%28this%2ElatLngToLayerPoint%28o%2ElatLng%28t%29%29%29%7D%2CmouseEventToContainerPoint%3Afunction%28t%29%7Breturn%20o%2EDomEvent%2EgetMousePosition%28t%2Cthis%2E%5Fcontainer%29%7D%2CmouseEventToLayerPoint%3Afunction%28t%29%7Breturn%20this%2EcontainerPointToLayerPoint%28this%2EmouseEventToContainerPoint%28t%29%29%7D%2CmouseEventToLatLng%3Afunction%28t%29%7Breturn%20this%2ElayerPointToLatLng%28this%2EmouseEventToLayerPoint%28t%29%29%7D%2C%5FinitContainer%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fcontainer%3Do%2EDomUtil%2Eget%28t%29%3Bif%28%21e%29throw%20new%20Error%28%22Map%20container%20not%20found%2E%22%29%3Bif%28e%2E%5Fleaflet%29throw%20new%20Error%28%22Map%20container%20is%20already%20initialized%2E%22%29%3Be%2E%5Fleaflet%3D%210%7D%2C%5FinitLayout%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fcontainer%3Bo%2EDomUtil%2EaddClass%28t%2C%22leaflet%2Dcontainer%22%2B%28o%2EBrowser%2Etouch%3F%22%20leaflet%2Dtouch%22%3A%22%22%29%2B%28o%2EBrowser%2Eretina%3F%22%20leaflet%2Dretina%22%3A%22%22%29%2B%28o%2EBrowser%2Eielt9%3F%22%20leaflet%2Doldie%22%3A%22%22%29%2B%28this%2Eoptions%2EfadeAnimation%3F%22%20leaflet%2Dfade%2Danim%22%3A%22%22%29%29%3Bvar%20e%3Do%2EDomUtil%2EgetStyle%28t%2C%22position%22%29%3B%22absolute%22%21%3D%3De%26%26%22relative%22%21%3D%3De%26%26%22fixed%22%21%3D%3De%26%26%28t%2Estyle%2Eposition%3D%22relative%22%29%2Cthis%2E%5FinitPanes%28%29%2Cthis%2E%5FinitControlPos%26%26this%2E%5FinitControlPos%28%29%7D%2C%5FinitPanes%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fpanes%3D%7B%7D%3Bthis%2E%5FmapPane%3Dt%2EmapPane%3Dthis%2E%5FcreatePane%28%22leaflet%2Dmap%2Dpane%22%2Cthis%2E%5Fcontainer%29%2Cthis%2E%5FtilePane%3Dt%2EtilePane%3Dthis%2E%5FcreatePane%28%22leaflet%2Dtile%2Dpane%22%2Cthis%2E%5FmapPane%29%2Ct%2EobjectsPane%3Dthis%2E%5FcreatePane%28%22leaflet%2Dobjects%2Dpane%22%2Cthis%2E%5FmapPane%29%2Ct%2EshadowPane%3Dthis%2E%5FcreatePane%28%22leaflet%2Dshadow%2Dpane%22%29%2Ct%2EoverlayPane%3Dthis%2E%5FcreatePane%28%22leaflet%2Doverlay%2Dpane%22%29%2Ct%2EmarkerPane%3Dthis%2E%5FcreatePane%28%22leaflet%2Dmarker%2Dpane%22%29%2Ct%2EpopupPane%3Dthis%2E%5FcreatePane%28%22leaflet%2Dpopup%2Dpane%22%29%3Bvar%20e%3D%22%20leaflet%2Dzoom%2Dhide%22%3Bthis%2Eoptions%2EmarkerZoomAnimation%7C%7C%28o%2EDomUtil%2EaddClass%28t%2EmarkerPane%2Ce%29%2Co%2EDomUtil%2EaddClass%28t%2EshadowPane%2Ce%29%2Co%2EDomUtil%2EaddClass%28t%2EpopupPane%2Ce%29%29%7D%2C%5FcreatePane%3Afunction%28t%2Ce%29%7Breturn%20o%2EDomUtil%2Ecreate%28%22div%22%2Ct%2Ce%7C%7Cthis%2E%5Fpanes%2EobjectsPane%29%7D%2C%5FclearPanes%3Afunction%28%29%7Bthis%2E%5Fcontainer%2EremoveChild%28this%2E%5FmapPane%29%7D%2C%5FaddLayers%3Afunction%28t%29%7Bt%3Dt%3Fo%2EUtil%2EisArray%28t%29%3Ft%3A%5Bt%5D%3A%5B%5D%3Bfor%28var%20e%3D0%2Ci%3Dt%2Elength%3Bi%3Ee%3Be%2B%2B%29this%2EaddLayer%28t%5Be%5D%29%7D%2C%5FresetView%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bvar%20s%3Dthis%2E%5Fzoom%21%3D%3De%3Bn%7C%7C%28this%2Efire%28%22movestart%22%29%2Cs%26%26this%2Efire%28%22zoomstart%22%29%29%2Cthis%2E%5Fzoom%3De%2Cthis%2E%5FinitialCenter%3Dt%2Cthis%2E%5FinitialTopLeftPoint%3Dthis%2E%5FgetNewTopLeftPoint%28t%29%2Ci%3Fthis%2E%5FinitialTopLeftPoint%2E%5Fadd%28this%2E%5FgetMapPanePos%28%29%29%3Ao%2EDomUtil%2EsetPosition%28this%2E%5FmapPane%2Cnew%20o%2EPoint%280%2C0%29%29%2Cthis%2E%5FtileLayersToLoad%3Dthis%2E%5FtileLayersNum%3Bvar%20a%3D%21this%2E%5Floaded%3Bthis%2E%5Floaded%3D%210%2Cthis%2Efire%28%22viewreset%22%2C%7Bhard%3A%21i%7D%29%2Ca%26%26%28this%2Efire%28%22load%22%29%2Cthis%2EeachLayer%28this%2E%5FlayerAdd%2Cthis%29%29%2Cthis%2Efire%28%22move%22%29%2C%28s%7C%7Cn%29%26%26this%2Efire%28%22zoomend%22%29%2Cthis%2Efire%28%22moveend%22%2C%7Bhard%3A%21i%7D%29%7D%2C%5FrawPanBy%3Afunction%28t%29%7Bo%2EDomUtil%2EsetPosition%28this%2E%5FmapPane%2Cthis%2E%5FgetMapPanePos%28%29%2Esubtract%28t%29%29%7D%2C%5FgetZoomSpan%3Afunction%28%29%7Breturn%20this%2EgetMaxZoom%28%29%2Dthis%2EgetMinZoom%28%29%7D%2C%5FupdateZoomLevels%3Afunction%28%29%7Bvar%20t%2Ce%3D1%2F0%2Cn%3D%2D1%2F0%2Co%3Dthis%2E%5FgetZoomSpan%28%29%3Bfor%28t%20in%20this%2E%5FzoomBoundLayers%29%7Bvar%20s%3Dthis%2E%5FzoomBoundLayers%5Bt%5D%3BisNaN%28s%2Eoptions%2EminZoom%29%7C%7C%28e%3DMath%2Emin%28e%2Cs%2Eoptions%2EminZoom%29%29%2CisNaN%28s%2Eoptions%2EmaxZoom%29%7C%7C%28n%3DMath%2Emax%28n%2Cs%2Eoptions%2EmaxZoom%29%29%7Dt%3D%3D%3Di%3Fthis%2E%5FlayersMaxZoom%3Dthis%2E%5FlayersMinZoom%3Di%3A%28this%2E%5FlayersMaxZoom%3Dn%2Cthis%2E%5FlayersMinZoom%3De%29%2Co%21%3D%3Dthis%2E%5FgetZoomSpan%28%29%26%26this%2Efire%28%22zoomlevelschange%22%29%7D%2C%5FpanInsideMaxBounds%3Afunction%28%29%7Bthis%2EpanInsideBounds%28this%2Eoptions%2EmaxBounds%29%7D%2C%5FcheckIfLoaded%3Afunction%28%29%7Bif%28%21this%2E%5Floaded%29throw%20new%20Error%28%22Set%20map%20center%20and%20zoom%20first%2E%22%29%7D%2C%5FinitEvents%3Afunction%28e%29%7Bif%28o%2EDomEvent%29%7Be%3De%7C%7C%22on%22%2Co%2EDomEvent%5Be%5D%28this%2E%5Fcontainer%2C%22click%22%2Cthis%2E%5FonMouseClick%2Cthis%29%3Bvar%20i%2Cn%2Cs%3D%5B%22dblclick%22%2C%22mousedown%22%2C%22mouseup%22%2C%22mouseenter%22%2C%22mouseleave%22%2C%22mousemove%22%2C%22contextmenu%22%5D%3Bfor%28i%3D0%2Cn%3Ds%2Elength%3Bn%3Ei%3Bi%2B%2B%29o%2EDomEvent%5Be%5D%28this%2E%5Fcontainer%2Cs%5Bi%5D%2Cthis%2E%5FfireMouseEvent%2Cthis%29%3Bthis%2Eoptions%2EtrackResize%26%26o%2EDomEvent%5Be%5D%28t%2C%22resize%22%2Cthis%2E%5FonResize%2Cthis%29%7D%7D%2C%5FonResize%3Afunction%28%29%7Bo%2EUtil%2EcancelAnimFrame%28this%2E%5FresizeRequest%29%2Cthis%2E%5FresizeRequest%3Do%2EUtil%2ErequestAnimFrame%28function%28%29%7Bthis%2EinvalidateSize%28%7BdebounceMoveend%3A%210%7D%29%7D%2Cthis%2C%211%2Cthis%2E%5Fcontainer%29%7D%2C%5FonMouseClick%3Afunction%28t%29%7B%21this%2E%5Floaded%7C%7C%21t%2E%5Fsimulated%26%26%28this%2Edragging%26%26this%2Edragging%2Emoved%28%29%7C%7Cthis%2EboxZoom%26%26this%2EboxZoom%2Emoved%28%29%29%7C%7Co%2EDomEvent%2E%5Fskipped%28t%29%7C%7C%28this%2Efire%28%22preclick%22%29%2Cthis%2E%5FfireMouseEvent%28t%29%29%7D%2C%5FfireMouseEvent%3Afunction%28t%29%7Bif%28this%2E%5Floaded%26%26%21o%2EDomEvent%2E%5Fskipped%28t%29%29%7Bvar%20e%3Dt%2Etype%3Bif%28e%3D%22mouseenter%22%3D%3D%3De%3F%22mouseover%22%3A%22mouseleave%22%3D%3D%3De%3F%22mouseout%22%3Ae%2Cthis%2EhasEventListeners%28e%29%29%7B%22contextmenu%22%3D%3D%3De%26%26o%2EDomEvent%2EpreventDefault%28t%29%3Bvar%20i%3Dthis%2EmouseEventToContainerPoint%28t%29%2Cn%3Dthis%2EcontainerPointToLayerPoint%28i%29%2Cs%3Dthis%2ElayerPointToLatLng%28n%29%3Bthis%2Efire%28e%2C%7Blatlng%3As%2ClayerPoint%3An%2CcontainerPoint%3Ai%2CoriginalEvent%3At%7D%29%7D%7D%7D%2C%5FonTileLayerLoad%3Afunction%28%29%7Bthis%2E%5FtileLayersToLoad%2D%2D%2Cthis%2E%5FtileLayersNum%26%26%21this%2E%5FtileLayersToLoad%26%26this%2Efire%28%22tilelayersload%22%29%7D%2C%5FclearHandlers%3Afunction%28%29%7Bfor%28var%20t%3D0%2Ce%3Dthis%2E%5Fhandlers%2Elength%3Be%3Et%3Bt%2B%2B%29this%2E%5Fhandlers%5Bt%5D%2Edisable%28%29%7D%2CwhenReady%3Afunction%28t%2Ce%29%7Breturn%20this%2E%5Floaded%3Ft%2Ecall%28e%7C%7Cthis%2Cthis%29%3Athis%2Eon%28%22load%22%2Ct%2Ce%29%2Cthis%7D%2C%5FlayerAdd%3Afunction%28t%29%7Bt%2EonAdd%28this%29%2Cthis%2Efire%28%22layeradd%22%2C%7Blayer%3At%7D%29%7D%2C%5FgetMapPanePos%3Afunction%28%29%7Breturn%20o%2EDomUtil%2EgetPosition%28this%2E%5FmapPane%29%7D%2C%5Fmoved%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FgetMapPanePos%28%29%3Breturn%20t%26%26%21t%2Eequals%28%5B0%2C0%5D%29%7D%2C%5FgetTopLeftPoint%3Afunction%28%29%7Breturn%20this%2EgetPixelOrigin%28%29%2Esubtract%28this%2E%5FgetMapPanePos%28%29%29%7D%2C%5FgetNewTopLeftPoint%3Afunction%28t%2Ce%29%7Bvar%20i%3Dthis%2EgetSize%28%29%2E%5FdivideBy%282%29%3Breturn%20this%2Eproject%28t%2Ce%29%2E%5Fsubtract%28i%29%2E%5Fround%28%29%7D%2C%5FlatLngToNewLayerPoint%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%3Dthis%2E%5FgetNewTopLeftPoint%28i%2Ce%29%2Eadd%28this%2E%5FgetMapPanePos%28%29%29%3Breturn%20this%2Eproject%28t%2Ce%29%2E%5Fsubtract%28n%29%7D%2C%5FgetCenterLayerPoint%3Afunction%28%29%7Breturn%20this%2EcontainerPointToLayerPoint%28this%2EgetSize%28%29%2E%5FdivideBy%282%29%29%7D%2C%5FgetCenterOffset%3Afunction%28t%29%7Breturn%20this%2ElatLngToLayerPoint%28t%29%2Esubtract%28this%2E%5FgetCenterLayerPoint%28%29%29%7D%2C%5FlimitCenter%3Afunction%28t%2Ce%2Ci%29%7Bif%28%21i%29return%20t%3Bvar%20n%3Dthis%2Eproject%28t%2Ce%29%2Cs%3Dthis%2EgetSize%28%29%2EdivideBy%282%29%2Ca%3Dnew%20o%2EBounds%28n%2Esubtract%28s%29%2Cn%2Eadd%28s%29%29%2Cr%3Dthis%2E%5FgetBoundsOffset%28a%2Ci%2Ce%29%3Breturn%20this%2Eunproject%28n%2Eadd%28r%29%2Ce%29%7D%2C%5FlimitOffset%3Afunction%28t%2Ce%29%7Bif%28%21e%29return%20t%3Bvar%20i%3Dthis%2EgetPixelBounds%28%29%2Cn%3Dnew%20o%2EBounds%28i%2Emin%2Eadd%28t%29%2Ci%2Emax%2Eadd%28t%29%29%3Breturn%20t%2Eadd%28this%2E%5FgetBoundsOffset%28n%2Ce%29%29%7D%2C%5FgetBoundsOffset%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%3Dthis%2Eproject%28e%2EgetNorthWest%28%29%2Ci%29%2Esubtract%28t%2Emin%29%2Cs%3Dthis%2Eproject%28e%2EgetSouthEast%28%29%2Ci%29%2Esubtract%28t%2Emax%29%2Ca%3Dthis%2E%5Frebound%28n%2Ex%2C%2Ds%2Ex%29%2Cr%3Dthis%2E%5Frebound%28n%2Ey%2C%2Ds%2Ey%29%3Breturn%20new%20o%2EPoint%28a%2Cr%29%7D%2C%5Frebound%3Afunction%28t%2Ce%29%7Breturn%20t%2Be%3E0%3FMath%2Eround%28t%2De%29%2F2%3AMath%2Emax%280%2CMath%2Eceil%28t%29%29%2DMath%2Emax%280%2CMath%2Efloor%28e%29%29%7D%2C%5FlimitZoom%3Afunction%28t%29%7Bvar%20e%3Dthis%2EgetMinZoom%28%29%2Ci%3Dthis%2EgetMaxZoom%28%29%3Breturn%20Math%2Emax%28e%2CMath%2Emin%28i%2Ct%29%29%7D%7D%29%2Co%2Emap%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2EMap%28t%2Ce%29%7D%2Co%2EProjection%2EMercator%3D%7BMAX%5FLATITUDE%3A85%2E0840591556%2CR%5FMINOR%3A6356752%2E314245179%2CR%5FMAJOR%3A6378137%2Cproject%3Afunction%28t%29%7Bvar%20e%3Do%2ELatLng%2EDEG%5FTO%5FRAD%2Ci%3Dthis%2EMAX%5FLATITUDE%2Cn%3DMath%2Emax%28Math%2Emin%28i%2Ct%2Elat%29%2C%2Di%29%2Cs%3Dthis%2ER%5FMAJOR%2Ca%3Dthis%2ER%5FMINOR%2Cr%3Dt%2Elng%2Ae%2As%2Ch%3Dn%2Ae%2Cl%3Da%2Fs%2Cu%3DMath%2Esqrt%281%2Dl%2Al%29%2Cc%3Du%2AMath%2Esin%28h%29%3Bc%3DMath%2Epow%28%281%2Dc%29%2F%281%2Bc%29%2C%2E5%2Au%29%3Bvar%20d%3DMath%2Etan%28%2E5%2A%28%2E5%2AMath%2EPI%2Dh%29%29%2Fc%3Breturn%20h%3D%2Ds%2AMath%2Elog%28d%29%2Cnew%20o%2EPoint%28r%2Ch%29%7D%2Cunproject%3Afunction%28t%29%7Bfor%28var%20e%2Ci%3Do%2ELatLng%2ERAD%5FTO%5FDEG%2Cn%3Dthis%2ER%5FMAJOR%2Cs%3Dthis%2ER%5FMINOR%2Ca%3Dt%2Ex%2Ai%2Fn%2Cr%3Ds%2Fn%2Ch%3DMath%2Esqrt%281%2Dr%2Ar%29%2Cl%3DMath%2Eexp%28%2Dt%2Ey%2Fn%29%2Cu%3DMath%2EPI%2F2%2D2%2AMath%2Eatan%28l%29%2Cc%3D15%2Cd%3D1e%2D7%2Cp%3Dc%2C%5F%3D%2E1%3BMath%2Eabs%28%5F%29%3Ed%26%26%2D%2Dp%3E0%3B%29e%3Dh%2AMath%2Esin%28u%29%2C%5F%3DMath%2EPI%2F2%2D2%2AMath%2Eatan%28l%2AMath%2Epow%28%281%2De%29%2F%281%2Be%29%2C%2E5%2Ah%29%29%2Du%2Cu%2B%3D%5F%3B%0Areturn%20new%20o%2ELatLng%28u%2Ai%2Ca%29%7D%7D%2Co%2ECRS%2EEPSG3395%3Do%2Eextend%28%7B%7D%2Co%2ECRS%2C%7Bcode%3A%22EPSG%3A3395%22%2Cprojection%3Ao%2EProjection%2EMercator%2Ctransformation%3Afunction%28%29%7Bvar%20t%3Do%2EProjection%2EMercator%2Ce%3Dt%2ER%5FMAJOR%2Ci%3D%2E5%2F%28Math%2EPI%2Ae%29%3Breturn%20new%20o%2ETransformation%28i%2C%2E5%2C%2Di%2C%2E5%29%7D%28%29%7D%29%2Co%2ETileLayer%3Do%2EClass%2Eextend%28%7Bincludes%3Ao%2EMixin%2EEvents%2Coptions%3A%7BminZoom%3A0%2CmaxZoom%3A18%2CtileSize%3A256%2Csubdomains%3A%22abc%22%2CerrorTileUrl%3A%22%22%2Cattribution%3A%22%22%2CzoomOffset%3A0%2Copacity%3A1%2CunloadInvisibleTiles%3Ao%2EBrowser%2Emobile%2CupdateWhenIdle%3Ao%2EBrowser%2Emobile%7D%2Cinitialize%3Afunction%28t%2Ce%29%7Be%3Do%2EsetOptions%28this%2Ce%29%2Ce%2EdetectRetina%26%26o%2EBrowser%2Eretina%26%26e%2EmaxZoom%3E0%26%26%28e%2EtileSize%3DMath%2Efloor%28e%2EtileSize%2F2%29%2Ce%2EzoomOffset%2B%2B%2Ce%2EminZoom%3E0%26%26e%2EminZoom%2D%2D%2Cthis%2Eoptions%2EmaxZoom%2D%2D%29%2Ce%2Ebounds%26%26%28e%2Ebounds%3Do%2ElatLngBounds%28e%2Ebounds%29%29%2Cthis%2E%5Furl%3Dt%3Bvar%20i%3Dthis%2Eoptions%2Esubdomains%3B%22string%22%3D%3Dtypeof%20i%26%26%28this%2Eoptions%2Esubdomains%3Di%2Esplit%28%22%22%29%29%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%2Cthis%2E%5Fanimated%3Dt%2E%5FzoomAnimated%2Cthis%2E%5FinitContainer%28%29%2Ct%2Eon%28%7Bviewreset%3Athis%2E%5Freset%2Cmoveend%3Athis%2E%5Fupdate%7D%2Cthis%29%2Cthis%2E%5Fanimated%26%26t%2Eon%28%7Bzoomanim%3Athis%2E%5FanimateZoom%2Czoomend%3Athis%2E%5FendZoomAnim%7D%2Cthis%29%2Cthis%2Eoptions%2EupdateWhenIdle%7C%7C%28this%2E%5FlimitedUpdate%3Do%2EUtil%2ElimitExecByInterval%28this%2E%5Fupdate%2C150%2Cthis%29%2Ct%2Eon%28%22move%22%2Cthis%2E%5FlimitedUpdate%2Cthis%29%29%2Cthis%2E%5Freset%28%29%2Cthis%2E%5Fupdate%28%29%7D%2CaddTo%3Afunction%28t%29%7Breturn%20t%2EaddLayer%28this%29%2Cthis%7D%2ConRemove%3Afunction%28t%29%7Bthis%2E%5Fcontainer%2EparentNode%2EremoveChild%28this%2E%5Fcontainer%29%2Ct%2Eoff%28%7Bviewreset%3Athis%2E%5Freset%2Cmoveend%3Athis%2E%5Fupdate%7D%2Cthis%29%2Cthis%2E%5Fanimated%26%26t%2Eoff%28%7Bzoomanim%3Athis%2E%5FanimateZoom%2Czoomend%3Athis%2E%5FendZoomAnim%7D%2Cthis%29%2Cthis%2Eoptions%2EupdateWhenIdle%7C%7Ct%2Eoff%28%22move%22%2Cthis%2E%5FlimitedUpdate%2Cthis%29%2Cthis%2E%5Fcontainer%3Dnull%2Cthis%2E%5Fmap%3Dnull%7D%2CbringToFront%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2E%5Fpanes%2EtilePane%3Breturn%20this%2E%5Fcontainer%26%26%28t%2EappendChild%28this%2E%5Fcontainer%29%2Cthis%2E%5FsetAutoZIndex%28t%2CMath%2Emax%29%29%2Cthis%7D%2CbringToBack%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2E%5Fpanes%2EtilePane%3Breturn%20this%2E%5Fcontainer%26%26%28t%2EinsertBefore%28this%2E%5Fcontainer%2Ct%2EfirstChild%29%2Cthis%2E%5FsetAutoZIndex%28t%2CMath%2Emin%29%29%2Cthis%7D%2CgetAttribution%3Afunction%28%29%7Breturn%20this%2Eoptions%2Eattribution%7D%2CgetContainer%3Afunction%28%29%7Breturn%20this%2E%5Fcontainer%7D%2CsetOpacity%3Afunction%28t%29%7Breturn%20this%2Eoptions%2Eopacity%3Dt%2Cthis%2E%5Fmap%26%26this%2E%5FupdateOpacity%28%29%2Cthis%7D%2CsetZIndex%3Afunction%28t%29%7Breturn%20this%2Eoptions%2EzIndex%3Dt%2Cthis%2E%5FupdateZIndex%28%29%2Cthis%7D%2CsetUrl%3Afunction%28t%2Ce%29%7Breturn%20this%2E%5Furl%3Dt%2Ce%7C%7Cthis%2Eredraw%28%29%2Cthis%7D%2Credraw%3Afunction%28%29%7Breturn%20this%2E%5Fmap%26%26%28this%2E%5Freset%28%7Bhard%3A%210%7D%29%2Cthis%2E%5Fupdate%28%29%29%2Cthis%7D%2C%5FupdateZIndex%3Afunction%28%29%7Bthis%2E%5Fcontainer%26%26this%2Eoptions%2EzIndex%21%3D%3Di%26%26%28this%2E%5Fcontainer%2Estyle%2EzIndex%3Dthis%2Eoptions%2EzIndex%29%7D%2C%5FsetAutoZIndex%3Afunction%28t%2Ce%29%7Bvar%20i%2Cn%2Co%2Cs%3Dt%2Echildren%2Ca%3D%2De%281%2F0%2C%2D1%2F0%29%3Bfor%28n%3D0%2Co%3Ds%2Elength%3Bo%3En%3Bn%2B%2B%29s%5Bn%5D%21%3D%3Dthis%2E%5Fcontainer%26%26%28i%3DparseInt%28s%5Bn%5D%2Estyle%2EzIndex%2C10%29%2CisNaN%28i%29%7C%7C%28a%3De%28a%2Ci%29%29%29%3Bthis%2Eoptions%2EzIndex%3Dthis%2E%5Fcontainer%2Estyle%2EzIndex%3D%28isFinite%28a%29%3Fa%3A0%29%2Be%281%2C%2D1%29%7D%2C%5FupdateOpacity%3Afunction%28%29%7Bvar%20t%2Ce%3Dthis%2E%5Ftiles%3Bif%28o%2EBrowser%2Eielt9%29for%28t%20in%20e%29o%2EDomUtil%2EsetOpacity%28e%5Bt%5D%2Cthis%2Eoptions%2Eopacity%29%3Belse%20o%2EDomUtil%2EsetOpacity%28this%2E%5Fcontainer%2Cthis%2Eoptions%2Eopacity%29%7D%2C%5FinitContainer%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2E%5Fpanes%2EtilePane%3Bif%28%21this%2E%5Fcontainer%29%7Bif%28this%2E%5Fcontainer%3Do%2EDomUtil%2Ecreate%28%22div%22%2C%22leaflet%2Dlayer%22%29%2Cthis%2E%5FupdateZIndex%28%29%2Cthis%2E%5Fanimated%29%7Bvar%20e%3D%22leaflet%2Dtile%2Dcontainer%22%3Bthis%2E%5FbgBuffer%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2Cthis%2E%5Fcontainer%29%2Cthis%2E%5FtileContainer%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2Cthis%2E%5Fcontainer%29%7Delse%20this%2E%5FtileContainer%3Dthis%2E%5Fcontainer%3Bt%2EappendChild%28this%2E%5Fcontainer%29%2Cthis%2Eoptions%2Eopacity%3C1%26%26this%2E%5FupdateOpacity%28%29%7D%7D%2C%5Freset%3Afunction%28t%29%7Bfor%28var%20e%20in%20this%2E%5Ftiles%29this%2Efire%28%22tileunload%22%2C%7Btile%3Athis%2E%5Ftiles%5Be%5D%7D%29%3Bthis%2E%5Ftiles%3D%7B%7D%2Cthis%2E%5FtilesToLoad%3D0%2Cthis%2Eoptions%2EreuseTiles%26%26%28this%2E%5FunusedTiles%3D%5B%5D%29%2Cthis%2E%5FtileContainer%2EinnerHTML%3D%22%22%2Cthis%2E%5Fanimated%26%26t%26%26t%2Ehard%26%26this%2E%5FclearBgBuffer%28%29%2Cthis%2E%5FinitContainer%28%29%7D%2C%5FgetTileSize%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2Ce%3Dt%2EgetZoom%28%29%2Bthis%2Eoptions%2EzoomOffset%2Ci%3Dthis%2Eoptions%2EmaxNativeZoom%2Cn%3Dthis%2Eoptions%2EtileSize%3Breturn%20i%26%26e%3Ei%26%26%28n%3DMath%2Eround%28t%2EgetZoomScale%28e%29%2Ft%2EgetZoomScale%28i%29%2An%29%29%2Cn%7D%2C%5Fupdate%3Afunction%28%29%7Bif%28this%2E%5Fmap%29%7Bvar%20t%3Dthis%2E%5Fmap%2Ce%3Dt%2EgetPixelBounds%28%29%2Ci%3Dt%2EgetZoom%28%29%2Cn%3Dthis%2E%5FgetTileSize%28%29%3Bif%28%21%28i%3Ethis%2Eoptions%2EmaxZoom%7C%7Ci%3Cthis%2Eoptions%2EminZoom%29%29%7Bvar%20s%3Do%2Ebounds%28e%2Emin%2EdivideBy%28n%29%2E%5Ffloor%28%29%2Ce%2Emax%2EdivideBy%28n%29%2E%5Ffloor%28%29%29%3Bthis%2E%5FaddTilesFromCenterOut%28s%29%2C%28this%2Eoptions%2EunloadInvisibleTiles%7C%7Cthis%2Eoptions%2EreuseTiles%29%26%26this%2E%5FremoveOtherTiles%28s%29%7D%7D%7D%2C%5FaddTilesFromCenterOut%3Afunction%28t%29%7Bvar%20i%2Cn%2Cs%2Ca%3D%5B%5D%2Cr%3Dt%2EgetCenter%28%29%3Bfor%28i%3Dt%2Emin%2Ey%3Bi%3C%3Dt%2Emax%2Ey%3Bi%2B%2B%29for%28n%3Dt%2Emin%2Ex%3Bn%3C%3Dt%2Emax%2Ex%3Bn%2B%2B%29s%3Dnew%20o%2EPoint%28n%2Ci%29%2Cthis%2E%5FtileShouldBeLoaded%28s%29%26%26a%2Epush%28s%29%3Bvar%20h%3Da%2Elength%3Bif%280%21%3D%3Dh%29%7Ba%2Esort%28function%28t%2Ce%29%7Breturn%20t%2EdistanceTo%28r%29%2De%2EdistanceTo%28r%29%7D%29%3Bvar%20l%3De%2EcreateDocumentFragment%28%29%3Bfor%28this%2E%5FtilesToLoad%7C%7Cthis%2Efire%28%22loading%22%29%2Cthis%2E%5FtilesToLoad%2B%3Dh%2Cn%3D0%3Bh%3En%3Bn%2B%2B%29this%2E%5FaddTile%28a%5Bn%5D%2Cl%29%3Bthis%2E%5FtileContainer%2EappendChild%28l%29%7D%7D%2C%5FtileShouldBeLoaded%3Afunction%28t%29%7Bif%28t%2Ex%2B%22%3A%22%2Bt%2Ey%20in%20this%2E%5Ftiles%29return%211%3Bvar%20e%3Dthis%2Eoptions%3Bif%28%21e%2EcontinuousWorld%29%7Bvar%20i%3Dthis%2E%5FgetWrapTileNum%28%29%3Bif%28e%2EnoWrap%26%26%28t%2Ex%3C0%7C%7Ct%2Ex%3E%3Di%2Ex%29%7C%7Ct%2Ey%3C0%7C%7Ct%2Ey%3E%3Di%2Ey%29return%211%7Dif%28e%2Ebounds%29%7Bvar%20n%3De%2EtileSize%2Co%3Dt%2EmultiplyBy%28n%29%2Cs%3Do%2Eadd%28%5Bn%2Cn%5D%29%2Ca%3Dthis%2E%5Fmap%2Eunproject%28o%29%2Cr%3Dthis%2E%5Fmap%2Eunproject%28s%29%3Bif%28e%2EcontinuousWorld%7C%7Ce%2EnoWrap%7C%7C%28a%3Da%2Ewrap%28%29%2Cr%3Dr%2Ewrap%28%29%29%2C%21e%2Ebounds%2Eintersects%28%5Ba%2Cr%5D%29%29return%211%7Dreturn%210%7D%2C%5FremoveOtherTiles%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%2Co%3Bfor%28o%20in%20this%2E%5Ftiles%29e%3Do%2Esplit%28%22%3A%22%29%2Ci%3DparseInt%28e%5B0%5D%2C10%29%2Cn%3DparseInt%28e%5B1%5D%2C10%29%2C%28i%3Ct%2Emin%2Ex%7C%7Ci%3Et%2Emax%2Ex%7C%7Cn%3Ct%2Emin%2Ey%7C%7Cn%3Et%2Emax%2Ey%29%26%26this%2E%5FremoveTile%28o%29%7D%2C%5FremoveTile%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Ftiles%5Bt%5D%3Bthis%2Efire%28%22tileunload%22%2C%7Btile%3Ae%2Curl%3Ae%2Esrc%7D%29%2Cthis%2Eoptions%2EreuseTiles%3F%28o%2EDomUtil%2EremoveClass%28e%2C%22leaflet%2Dtile%2Dloaded%22%29%2Cthis%2E%5FunusedTiles%2Epush%28e%29%29%3Ae%2EparentNode%3D%3D%3Dthis%2E%5FtileContainer%26%26this%2E%5FtileContainer%2EremoveChild%28e%29%2Co%2EBrowser%2Eandroid%7C%7C%28e%2Eonload%3Dnull%2Ce%2Esrc%3Do%2EUtil%2EemptyImageUrl%29%2Cdelete%20this%2E%5Ftiles%5Bt%5D%7D%2C%5FaddTile%3Afunction%28t%2Ce%29%7Bvar%20i%3Dthis%2E%5FgetTilePos%28t%29%2Cn%3Dthis%2E%5FgetTile%28%29%3Bo%2EDomUtil%2EsetPosition%28n%2Ci%2Co%2EBrowser%2Echrome%29%2Cthis%2E%5Ftiles%5Bt%2Ex%2B%22%3A%22%2Bt%2Ey%5D%3Dn%2Cthis%2E%5FloadTile%28n%2Ct%29%2Cn%2EparentNode%21%3D%3Dthis%2E%5FtileContainer%26%26e%2EappendChild%28n%29%7D%2C%5FgetZoomForUrl%3Afunction%28%29%7Bvar%20t%3Dthis%2Eoptions%2Ce%3Dthis%2E%5Fmap%2EgetZoom%28%29%3Breturn%20t%2EzoomReverse%26%26%28e%3Dt%2EmaxZoom%2De%29%2Ce%2B%3Dt%2EzoomOffset%2Ct%2EmaxNativeZoom%3FMath%2Emin%28e%2Ct%2EmaxNativeZoom%29%3Ae%7D%2C%5FgetTilePos%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%2EgetPixelOrigin%28%29%2Ci%3Dthis%2E%5FgetTileSize%28%29%3Breturn%20t%2EmultiplyBy%28i%29%2Esubtract%28e%29%7D%2CgetTileUrl%3Afunction%28t%29%7Breturn%20o%2EUtil%2Etemplate%28this%2E%5Furl%2Co%2Eextend%28%7Bs%3Athis%2E%5FgetSubdomain%28t%29%2Cz%3At%2Ez%2Cx%3At%2Ex%2Cy%3At%2Ey%7D%2Cthis%2Eoptions%29%29%7D%2C%5FgetWrapTileNum%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2Eoptions%2Ecrs%2Ce%3Dt%2EgetSize%28this%2E%5Fmap%2EgetZoom%28%29%29%3Breturn%20e%2EdivideBy%28this%2E%5FgetTileSize%28%29%29%2E%5Ffloor%28%29%7D%2C%5FadjustTilePoint%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5FgetWrapTileNum%28%29%3Bthis%2Eoptions%2EcontinuousWorld%7C%7Cthis%2Eoptions%2EnoWrap%7C%7C%28t%2Ex%3D%28t%2Ex%25e%2Ex%2Be%2Ex%29%25e%2Ex%29%2Cthis%2Eoptions%2Etms%26%26%28t%2Ey%3De%2Ey%2Dt%2Ey%2D1%29%2Ct%2Ez%3Dthis%2E%5FgetZoomForUrl%28%29%7D%2C%5FgetSubdomain%3Afunction%28t%29%7Bvar%20e%3DMath%2Eabs%28t%2Ex%2Bt%2Ey%29%25this%2Eoptions%2Esubdomains%2Elength%3Breturn%20this%2Eoptions%2Esubdomains%5Be%5D%7D%2C%5FgetTile%3Afunction%28%29%7Bif%28this%2Eoptions%2EreuseTiles%26%26this%2E%5FunusedTiles%2Elength%3E0%29%7Bvar%20t%3Dthis%2E%5FunusedTiles%2Epop%28%29%3Breturn%20this%2E%5FresetTile%28t%29%2Ct%7Dreturn%20this%2E%5FcreateTile%28%29%7D%2C%5FresetTile%3Afunction%28%29%7B%7D%2C%5FcreateTile%3Afunction%28%29%7Bvar%20t%3Do%2EDomUtil%2Ecreate%28%22img%22%2C%22leaflet%2Dtile%22%29%3Breturn%20t%2Estyle%2Ewidth%3Dt%2Estyle%2Eheight%3Dthis%2E%5FgetTileSize%28%29%2B%22px%22%2Ct%2Egalleryimg%3D%22no%22%2Ct%2Eonselectstart%3Dt%2Eonmousemove%3Do%2EUtil%2EfalseFn%2Co%2EBrowser%2Eielt9%26%26this%2Eoptions%2Eopacity%21%3D%3Di%26%26o%2EDomUtil%2EsetOpacity%28t%2Cthis%2Eoptions%2Eopacity%29%2Co%2EBrowser%2EmobileWebkit3d%26%26%28t%2Estyle%2EWebkitBackfaceVisibility%3D%22hidden%22%29%2Ct%7D%2C%5FloadTile%3Afunction%28t%2Ce%29%7Bt%2E%5Flayer%3Dthis%2Ct%2Eonload%3Dthis%2E%5FtileOnLoad%2Ct%2Eonerror%3Dthis%2E%5FtileOnError%2Cthis%2E%5FadjustTilePoint%28e%29%2Ct%2Esrc%3Dthis%2EgetTileUrl%28e%29%2Cthis%2Efire%28%22tileloadstart%22%2C%7Btile%3At%2Curl%3At%2Esrc%7D%29%7D%2C%5FtileLoaded%3Afunction%28%29%7Bthis%2E%5FtilesToLoad%2D%2D%2Cthis%2E%5Fanimated%26%26o%2EDomUtil%2EaddClass%28this%2E%5FtileContainer%2C%22leaflet%2Dzoom%2Danimated%22%29%2Cthis%2E%5FtilesToLoad%7C%7C%28this%2Efire%28%22load%22%29%2Cthis%2E%5Fanimated%26%26%28clearTimeout%28this%2E%5FclearBgBufferTimer%29%2Cthis%2E%5FclearBgBufferTimer%3DsetTimeout%28o%2Ebind%28this%2E%5FclearBgBuffer%2Cthis%29%2C500%29%29%29%7D%2C%5FtileOnLoad%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Flayer%3Bthis%2Esrc%21%3D%3Do%2EUtil%2EemptyImageUrl%26%26%28o%2EDomUtil%2EaddClass%28this%2C%22leaflet%2Dtile%2Dloaded%22%29%2Ct%2Efire%28%22tileload%22%2C%7Btile%3Athis%2Curl%3Athis%2Esrc%7D%29%29%2Ct%2E%5FtileLoaded%28%29%7D%2C%5FtileOnError%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Flayer%3Bt%2Efire%28%22tileerror%22%2C%7Btile%3Athis%2Curl%3Athis%2Esrc%7D%29%3Bvar%20e%3Dt%2Eoptions%2EerrorTileUrl%3Be%26%26%28this%2Esrc%3De%29%2Ct%2E%5FtileLoaded%28%29%7D%7D%29%2Co%2EtileLayer%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2ETileLayer%28t%2Ce%29%7D%2Co%2ETileLayer%2EWMS%3Do%2ETileLayer%2Eextend%28%7BdefaultWmsParams%3A%7Bservice%3A%22WMS%22%2Crequest%3A%22GetMap%22%2Cversion%3A%221%2E1%2E1%22%2Clayers%3A%22%22%2Cstyles%3A%22%22%2Cformat%3A%22image%2Fjpeg%22%2Ctransparent%3A%211%7D%2Cinitialize%3Afunction%28t%2Ce%29%7Bthis%2E%5Furl%3Dt%3Bvar%20i%3Do%2Eextend%28%7B%7D%2Cthis%2EdefaultWmsParams%29%2Cn%3De%2EtileSize%7C%7Cthis%2Eoptions%2EtileSize%3Bi%2Ewidth%3Di%2Eheight%3De%2EdetectRetina%26%26o%2EBrowser%2Eretina%3F2%2An%3An%3Bfor%28var%20s%20in%20e%29this%2Eoptions%2EhasOwnProperty%28s%29%7C%7C%22crs%22%3D%3D%3Ds%7C%7C%28i%5Bs%5D%3De%5Bs%5D%29%3Bthis%2EwmsParams%3Di%2Co%2EsetOptions%28this%2Ce%29%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fcrs%3Dthis%2Eoptions%2Ecrs%7C%7Ct%2Eoptions%2Ecrs%2Cthis%2E%5FwmsVersion%3DparseFloat%28this%2EwmsParams%2Eversion%29%3Bvar%20e%3Dthis%2E%5FwmsVersion%3E%3D1%2E3%3F%22crs%22%3A%22srs%22%3Bthis%2EwmsParams%5Be%5D%3Dthis%2E%5Fcrs%2Ecode%2Co%2ETileLayer%2Eprototype%2EonAdd%2Ecall%28this%2Ct%29%7D%2CgetTileUrl%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%2Ci%3Dthis%2Eoptions%2EtileSize%2Cn%3Dt%2EmultiplyBy%28i%29%2Cs%3Dn%2Eadd%28%5Bi%2Ci%5D%29%2Ca%3Dthis%2E%5Fcrs%2Eproject%28e%2Eunproject%28n%2Ct%2Ez%29%29%2Cr%3Dthis%2E%5Fcrs%2Eproject%28e%2Eunproject%28s%2Ct%2Ez%29%29%2Ch%3Dthis%2E%5FwmsVersion%3E%3D1%2E3%26%26this%2E%5Fcrs%3D%3D%3Do%2ECRS%2EEPSG4326%3F%5Br%2Ey%2Ca%2Ex%2Ca%2Ey%2Cr%2Ex%5D%2Ejoin%28%22%2C%22%29%3A%5Ba%2Ex%2Cr%2Ey%2Cr%2Ex%2Ca%2Ey%5D%2Ejoin%28%22%2C%22%29%2Cl%3Do%2EUtil%2Etemplate%28this%2E%5Furl%2C%7Bs%3Athis%2E%5FgetSubdomain%28t%29%7D%29%3Breturn%20l%2Bo%2EUtil%2EgetParamString%28this%2EwmsParams%2Cl%2C%210%29%2B%22%26BBOX%3D%22%2Bh%7D%2CsetParams%3Afunction%28t%2Ce%29%7Breturn%20o%2Eextend%28this%2EwmsParams%2Ct%29%2Ce%7C%7Cthis%2Eredraw%28%29%2Cthis%7D%7D%29%2Co%2EtileLayer%2Ewms%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2ETileLayer%2EWMS%28t%2Ce%29%7D%2Co%2ETileLayer%2ECanvas%3Do%2ETileLayer%2Eextend%28%7Boptions%3A%7Basync%3A%211%7D%2Cinitialize%3Afunction%28t%29%7Bo%2EsetOptions%28this%2Ct%29%7D%2Credraw%3Afunction%28%29%7Bthis%2E%5Fmap%26%26%28this%2E%5Freset%28%7Bhard%3A%210%7D%29%2Cthis%2E%5Fupdate%28%29%29%3Bfor%28var%20t%20in%20this%2E%5Ftiles%29this%2E%5FredrawTile%28this%2E%5Ftiles%5Bt%5D%29%3Breturn%20this%7D%2C%5FredrawTile%3Afunction%28t%29%7Bthis%2EdrawTile%28t%2Ct%2E%5FtilePoint%2Cthis%2E%5Fmap%2E%5Fzoom%29%7D%2C%5FcreateTile%3Afunction%28%29%7Bvar%20t%3Do%2EDomUtil%2Ecreate%28%22canvas%22%2C%22leaflet%2Dtile%22%29%3Breturn%20t%2Ewidth%3Dt%2Eheight%3Dthis%2Eoptions%2EtileSize%2Ct%2Eonselectstart%3Dt%2Eonmousemove%3Do%2EUtil%2EfalseFn%2Ct%7D%2C%5FloadTile%3Afunction%28t%2Ce%29%7Bt%2E%5Flayer%3Dthis%2Ct%2E%5FtilePoint%3De%2Cthis%2E%5FredrawTile%28t%29%2Cthis%2Eoptions%2Easync%7C%7Cthis%2EtileDrawn%28t%29%7D%2CdrawTile%3Afunction%28%29%7B%7D%2CtileDrawn%3Afunction%28t%29%7Bthis%2E%5FtileOnLoad%2Ecall%28t%29%7D%7D%29%2Co%2EtileLayer%2Ecanvas%3Dfunction%28t%29%7Breturn%20new%20o%2ETileLayer%2ECanvas%28t%29%7D%2Co%2EImageOverlay%3Do%2EClass%2Eextend%28%7Bincludes%3Ao%2EMixin%2EEvents%2Coptions%3A%7Bopacity%3A1%7D%2Cinitialize%3Afunction%28t%2Ce%2Ci%29%7Bthis%2E%5Furl%3Dt%2Cthis%2E%5Fbounds%3Do%2ElatLngBounds%28e%29%2Co%2EsetOptions%28this%2Ci%29%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%2Cthis%2E%5Fimage%7C%7Cthis%2E%5FinitImage%28%29%2Ct%2E%5Fpanes%2EoverlayPane%2EappendChild%28this%2E%5Fimage%29%2Ct%2Eon%28%22viewreset%22%2Cthis%2E%5Freset%2Cthis%29%2Ct%2Eoptions%2EzoomAnimation%26%26o%2EBrowser%2Eany3d%26%26t%2Eon%28%22zoomanim%22%2Cthis%2E%5FanimateZoom%2Cthis%29%2Cthis%2E%5Freset%28%29%7D%2ConRemove%3Afunction%28t%29%7Bt%2EgetPanes%28%29%2EoverlayPane%2EremoveChild%28this%2E%5Fimage%29%2Ct%2Eoff%28%22viewreset%22%2Cthis%2E%5Freset%2Cthis%29%2Ct%2Eoptions%2EzoomAnimation%26%26t%2Eoff%28%22zoomanim%22%2Cthis%2E%5FanimateZoom%2Cthis%29%7D%2CaddTo%3Afunction%28t%29%7Breturn%20t%2EaddLayer%28this%29%2Cthis%7D%2CsetOpacity%3Afunction%28t%29%7Breturn%20this%2Eoptions%2Eopacity%3Dt%2Cthis%2E%5FupdateOpacity%28%29%2Cthis%7D%2CbringToFront%3Afunction%28%29%7Breturn%20this%2E%5Fimage%26%26this%2E%5Fmap%2E%5Fpanes%2EoverlayPane%2EappendChild%28this%2E%5Fimage%29%2Cthis%7D%2CbringToBack%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2E%5Fpanes%2EoverlayPane%3Breturn%20this%2E%5Fimage%26%26t%2EinsertBefore%28this%2E%5Fimage%2Ct%2EfirstChild%29%2Cthis%7D%2CsetUrl%3Afunction%28t%29%7Bthis%2E%5Furl%3Dt%2Cthis%2E%5Fimage%2Esrc%3Dthis%2E%5Furl%7D%2CgetAttribution%3Afunction%28%29%7Breturn%20this%2Eoptions%2Eattribution%7D%2C%5FinitImage%3Afunction%28%29%7Bthis%2E%5Fimage%3Do%2EDomUtil%2Ecreate%28%22img%22%2C%22leaflet%2Dimage%2Dlayer%22%29%2Cthis%2E%5Fmap%2Eoptions%2EzoomAnimation%26%26o%2EBrowser%2Eany3d%3Fo%2EDomUtil%2EaddClass%28this%2E%5Fimage%2C%22leaflet%2Dzoom%2Danimated%22%29%3Ao%2EDomUtil%2EaddClass%28this%2E%5Fimage%2C%22leaflet%2Dzoom%2Dhide%22%29%2Cthis%2E%5FupdateOpacity%28%29%2Co%2Eextend%28this%2E%5Fimage%2C%7Bgalleryimg%3A%22no%22%2Conselectstart%3Ao%2EUtil%2EfalseFn%2Conmousemove%3Ao%2EUtil%2EfalseFn%2Conload%3Ao%2Ebind%28this%2E%5FonImageLoad%2Cthis%29%2Csrc%3Athis%2E%5Furl%7D%29%7D%2C%5FanimateZoom%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%2Ci%3Dthis%2E%5Fimage%2Cn%3De%2EgetZoomScale%28t%2Ezoom%29%2Cs%3Dthis%2E%5Fbounds%2EgetNorthWest%28%29%2Ca%3Dthis%2E%5Fbounds%2EgetSouthEast%28%29%2Cr%3De%2E%5FlatLngToNewLayerPoint%28s%2Ct%2Ezoom%2Ct%2Ecenter%29%2Ch%3De%2E%5FlatLngToNewLayerPoint%28a%2Ct%2Ezoom%2Ct%2Ecenter%29%2E%5Fsubtract%28r%29%2Cl%3Dr%2E%5Fadd%28h%2E%5FmultiplyBy%28%2E5%2A%281%2D1%2Fn%29%29%29%3Bi%2Estyle%5Bo%2EDomUtil%2ETRANSFORM%5D%3Do%2EDomUtil%2EgetTranslateString%28l%29%2B%22%20scale%28%22%2Bn%2B%22%29%20%22%7D%2C%5Freset%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fimage%2Ce%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28this%2E%5Fbounds%2EgetNorthWest%28%29%29%2Ci%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28this%2E%5Fbounds%2EgetSouthEast%28%29%29%2E%5Fsubtract%28e%29%3Bo%2EDomUtil%2EsetPosition%28t%2Ce%29%2Ct%2Estyle%2Ewidth%3Di%2Ex%2B%22px%22%2Ct%2Estyle%2Eheight%3Di%2Ey%2B%22px%22%7D%2C%5FonImageLoad%3Afunction%28%29%7Bthis%2Efire%28%22load%22%29%7D%2C%5FupdateOpacity%3Afunction%28%29%7Bo%2EDomUtil%2EsetOpacity%28this%2E%5Fimage%2Cthis%2Eoptions%2Eopacity%29%7D%7D%29%2Co%2EimageOverlay%3Dfunction%28t%2Ce%2Ci%29%7Breturn%20new%20o%2EImageOverlay%28t%2Ce%2Ci%29%7D%2Co%2EIcon%3Do%2EClass%2Eextend%28%7Boptions%3A%7BclassName%3A%22%22%7D%2Cinitialize%3Afunction%28t%29%7Bo%2EsetOptions%28this%2Ct%29%7D%2CcreateIcon%3Afunction%28t%29%7Breturn%20this%2E%5FcreateIcon%28%22icon%22%2Ct%29%7D%2CcreateShadow%3Afunction%28t%29%7Breturn%20this%2E%5FcreateIcon%28%22shadow%22%2Ct%29%7D%2C%5FcreateIcon%3Afunction%28t%2Ce%29%7Bvar%20i%3Dthis%2E%5FgetIconUrl%28t%29%3Bif%28%21i%29%7Bif%28%22icon%22%3D%3D%3Dt%29throw%20new%20Error%28%22iconUrl%20not%20set%20in%20Icon%20options%20%28see%20the%20docs%29%2E%22%29%3Breturn%20null%7Dvar%20n%3Breturn%20n%3De%26%26%22IMG%22%3D%3D%3De%2EtagName%3Fthis%2E%5FcreateImg%28i%2Ce%29%3Athis%2E%5FcreateImg%28i%29%2Cthis%2E%5FsetIconStyles%28n%2Ct%29%2Cn%7D%2C%5FsetIconStyles%3Afunction%28t%2Ce%29%7Bvar%20i%2Cn%3Dthis%2Eoptions%2Cs%3Do%2Epoint%28n%5Be%2B%22Size%22%5D%29%3Bi%3Do%2Epoint%28%22shadow%22%3D%3D%3De%3Fn%2EshadowAnchor%7C%7Cn%2EiconAnchor%3An%2EiconAnchor%29%2C%21i%26%26s%26%26%28i%3Ds%2EdivideBy%282%2C%210%29%29%2Ct%2EclassName%3D%22leaflet%2Dmarker%2D%22%2Be%2B%22%20%22%2Bn%2EclassName%2Ci%26%26%28t%2Estyle%2EmarginLeft%3D%2Di%2Ex%2B%22px%22%2Ct%2Estyle%2EmarginTop%3D%2Di%2Ey%2B%22px%22%29%2Cs%26%26%28t%2Estyle%2Ewidth%3Ds%2Ex%2B%22px%22%2Ct%2Estyle%2Eheight%3Ds%2Ey%2B%22px%22%29%7D%2C%5FcreateImg%3Afunction%28t%2Ci%29%7Breturn%20i%3Di%7C%7Ce%2EcreateElement%28%22img%22%29%2Ci%2Esrc%3Dt%2Ci%7D%2C%5FgetIconUrl%3Afunction%28t%29%7Breturn%20o%2EBrowser%2Eretina%26%26this%2Eoptions%5Bt%2B%22RetinaUrl%22%5D%3Fthis%2Eoptions%5Bt%2B%22RetinaUrl%22%5D%3Athis%2Eoptions%5Bt%2B%22Url%22%5D%7D%7D%29%2Co%2Eicon%3Dfunction%28t%29%7Breturn%20new%20o%2EIcon%28t%29%7D%2Co%2EIcon%2EDefault%3Do%2EIcon%2Eextend%28%7Boptions%3A%7BiconSize%3A%5B25%2C41%5D%2CiconAnchor%3A%5B12%2C41%5D%2CpopupAnchor%3A%5B1%2C%2D34%5D%2CshadowSize%3A%5B41%2C41%5D%7D%2C%5FgetIconUrl%3Afunction%28t%29%7Bvar%20e%3Dt%2B%22Url%22%3Bif%28this%2Eoptions%5Be%5D%29return%20this%2Eoptions%5Be%5D%3Bo%2EBrowser%2Eretina%26%26%22icon%22%3D%3D%3Dt%26%26%28t%2B%3D%22%2D2x%22%29%3Bvar%20i%3Do%2EIcon%2EDefault%2EimagePath%3Bif%28%21i%29throw%20new%20Error%28%22Couldn%27t%20autodetect%20L%2EIcon%2EDefault%2EimagePath%2C%20set%20it%20manually%2E%22%29%3Breturn%20i%2B%22%2Fmarker%2D%22%2Bt%2B%22%2Epng%22%7D%7D%29%2Co%2EIcon%2EDefault%2EimagePath%3Dfunction%28%29%7Bvar%20t%2Ci%2Cn%2Co%2Cs%2Ca%3De%2EgetElementsByTagName%28%22script%22%29%2Cr%3D%2F%5B%5C%2F%5E%5Dleaflet%5B%5C%2D%5C%2E%5F%5D%3F%28%5B%5Cw%5C%2D%5C%2E%5F%5D%2A%29%5C%2Ejs%5C%3F%3F%2F%3Bfor%28t%3D0%2Ci%3Da%2Elength%3Bi%3Et%3Bt%2B%2B%29if%28n%3Da%5Bt%5D%2Esrc%2Co%3Dn%2Ematch%28r%29%29return%20s%3Dn%2Esplit%28r%29%5B0%5D%2C%28s%3Fs%2B%22%2F%22%3A%22%22%29%2B%22images%22%7D%28%29%2Co%2EMarker%3Do%2EClass%2Eextend%28%7Bincludes%3Ao%2EMixin%2EEvents%2Coptions%3A%7Bicon%3Anew%20o%2EIcon%2EDefault%2Ctitle%3A%22%22%2Calt%3A%22%22%2Cclickable%3A%210%2Cdraggable%3A%211%2Ckeyboard%3A%210%2CzIndexOffset%3A0%2Copacity%3A1%2CriseOnHover%3A%211%2CriseOffset%3A250%7D%2Cinitialize%3Afunction%28t%2Ce%29%7Bo%2EsetOptions%28this%2Ce%29%2Cthis%2E%5Flatlng%3Do%2ElatLng%28t%29%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%2Ct%2Eon%28%22viewreset%22%2Cthis%2Eupdate%2Cthis%29%2Cthis%2E%5FinitIcon%28%29%2Cthis%2Eupdate%28%29%2Cthis%2Efire%28%22add%22%29%2Ct%2Eoptions%2EzoomAnimation%26%26t%2Eoptions%2EmarkerZoomAnimation%26%26t%2Eon%28%22zoomanim%22%2Cthis%2E%5FanimateZoom%2Cthis%29%7D%2CaddTo%3Afunction%28t%29%7Breturn%20t%2EaddLayer%28this%29%2Cthis%7D%2ConRemove%3Afunction%28t%29%7Bthis%2Edragging%26%26this%2Edragging%2Edisable%28%29%2Cthis%2E%5FremoveIcon%28%29%2Cthis%2E%5FremoveShadow%28%29%2Cthis%2Efire%28%22remove%22%29%2Ct%2Eoff%28%7Bviewreset%3Athis%2Eupdate%2Czoomanim%3Athis%2E%5FanimateZoom%7D%2Cthis%29%2Cthis%2E%5Fmap%3Dnull%7D%2CgetLatLng%3Afunction%28%29%7Breturn%20this%2E%5Flatlng%7D%2CsetLatLng%3Afunction%28t%29%7Breturn%20this%2E%5Flatlng%3Do%2ElatLng%28t%29%2Cthis%2Eupdate%28%29%2Cthis%2Efire%28%22move%22%2C%7Blatlng%3Athis%2E%5Flatlng%7D%29%7D%2CsetZIndexOffset%3Afunction%28t%29%7Breturn%20this%2Eoptions%2EzIndexOffset%3Dt%2Cthis%2Eupdate%28%29%2Cthis%7D%2CsetIcon%3Afunction%28t%29%7Breturn%20this%2Eoptions%2Eicon%3Dt%2Cthis%2E%5Fmap%26%26%28this%2E%5FinitIcon%28%29%2Cthis%2Eupdate%28%29%29%2Cthis%2E%5Fpopup%26%26this%2EbindPopup%28this%2E%5Fpopup%29%2Cthis%7D%2Cupdate%3Afunction%28%29%7Bif%28this%2E%5Ficon%29%7Bvar%20t%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28this%2E%5Flatlng%29%2Eround%28%29%3Bthis%2E%5FsetPos%28t%29%7Dreturn%20this%7D%2C%5FinitIcon%3Afunction%28%29%7Bvar%20t%3Dthis%2Eoptions%2Ce%3Dthis%2E%5Fmap%2Ci%3De%2Eoptions%2EzoomAnimation%26%26e%2Eoptions%2EmarkerZoomAnimation%2Cn%3Di%3F%22leaflet%2Dzoom%2Danimated%22%3A%22leaflet%2Dzoom%2Dhide%22%2Cs%3Dt%2Eicon%2EcreateIcon%28this%2E%5Ficon%29%2Ca%3D%211%3Bs%21%3D%3Dthis%2E%5Ficon%26%26%28this%2E%5Ficon%26%26this%2E%5FremoveIcon%28%29%2Ca%3D%210%2Ct%2Etitle%26%26%28s%2Etitle%3Dt%2Etitle%29%2Ct%2Ealt%26%26%28s%2Ealt%3Dt%2Ealt%29%29%2Co%2EDomUtil%2EaddClass%28s%2Cn%29%2Ct%2Ekeyboard%26%26%28s%2EtabIndex%3D%220%22%29%2Cthis%2E%5Ficon%3Ds%2Cthis%2E%5FinitInteraction%28%29%2Ct%2EriseOnHover%26%26o%2EDomEvent%2Eon%28s%2C%22mouseover%22%2Cthis%2E%5FbringToFront%2Cthis%29%2Eon%28s%2C%22mouseout%22%2Cthis%2E%5FresetZIndex%2Cthis%29%3Bvar%20r%3Dt%2Eicon%2EcreateShadow%28this%2E%5Fshadow%29%2Ch%3D%211%3Br%21%3D%3Dthis%2E%5Fshadow%26%26%28this%2E%5FremoveShadow%28%29%2Ch%3D%210%29%2Cr%26%26o%2EDomUtil%2EaddClass%28r%2Cn%29%2Cthis%2E%5Fshadow%3Dr%2Ct%2Eopacity%3C1%26%26this%2E%5FupdateOpacity%28%29%3Bvar%20l%3Dthis%2E%5Fmap%2E%5Fpanes%3Ba%26%26l%2EmarkerPane%2EappendChild%28this%2E%5Ficon%29%2Cr%26%26h%26%26l%2EshadowPane%2EappendChild%28this%2E%5Fshadow%29%7D%2C%5FremoveIcon%3Afunction%28%29%7Bthis%2Eoptions%2EriseOnHover%26%26o%2EDomEvent%2Eoff%28this%2E%5Ficon%2C%22mouseover%22%2Cthis%2E%5FbringToFront%29%2Eoff%28this%2E%5Ficon%2C%22mouseout%22%2Cthis%2E%5FresetZIndex%29%2Cthis%2E%5Fmap%2E%5Fpanes%2EmarkerPane%2EremoveChild%28this%2E%5Ficon%29%2Cthis%2E%5Ficon%3Dnull%7D%2C%5FremoveShadow%3Afunction%28%29%7Bthis%2E%5Fshadow%26%26this%2E%5Fmap%2E%5Fpanes%2EshadowPane%2EremoveChild%28this%2E%5Fshadow%29%2Cthis%2E%5Fshadow%3Dnull%7D%2C%5FsetPos%3Afunction%28t%29%7Bo%2EDomUtil%2EsetPosition%28this%2E%5Ficon%2Ct%29%2Cthis%2E%5Fshadow%26%26o%2EDomUtil%2EsetPosition%28this%2E%5Fshadow%2Ct%29%2Cthis%2E%5FzIndex%3Dt%2Ey%2Bthis%2Eoptions%2EzIndexOffset%2Cthis%2E%5FresetZIndex%28%29%7D%2C%5FupdateZIndex%3Afunction%28t%29%7Bthis%2E%5Ficon%2Estyle%2EzIndex%3Dthis%2E%5FzIndex%2Bt%7D%2C%5FanimateZoom%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%2E%5FlatLngToNewLayerPoint%28this%2E%5Flatlng%2Ct%2Ezoom%2Ct%2Ecenter%29%2Eround%28%29%3Bthis%2E%5FsetPos%28e%29%7D%2C%5FinitInteraction%3Afunction%28%29%7Bif%28this%2Eoptions%2Eclickable%29%7Bvar%20t%3Dthis%2E%5Ficon%2Ce%3D%5B%22dblclick%22%2C%22mousedown%22%2C%22mouseover%22%2C%22mouseout%22%2C%22contextmenu%22%5D%3Bo%2EDomUtil%2EaddClass%28t%2C%22leaflet%2Dclickable%22%29%2Co%2EDomEvent%2Eon%28t%2C%22click%22%2Cthis%2E%5FonMouseClick%2Cthis%29%2Co%2EDomEvent%2Eon%28t%2C%22keypress%22%2Cthis%2E%5FonKeyPress%2Cthis%29%3Bfor%28var%20i%3D0%3Bi%3Ce%2Elength%3Bi%2B%2B%29o%2EDomEvent%2Eon%28t%2Ce%5Bi%5D%2Cthis%2E%5FfireMouseEvent%2Cthis%29%3Bo%2EHandler%2EMarkerDrag%26%26%28this%2Edragging%3Dnew%20o%2EHandler%2EMarkerDrag%28this%29%2Cthis%2Eoptions%2Edraggable%26%26this%2Edragging%2Eenable%28%29%29%7D%7D%2C%5FonMouseClick%3Afunction%28t%29%7Bvar%20e%3Dthis%2Edragging%26%26this%2Edragging%2Emoved%28%29%3B%28this%2EhasEventListeners%28t%2Etype%29%7C%7Ce%29%26%26o%2EDomEvent%2EstopPropagation%28t%29%2Ce%7C%7C%28this%2Edragging%26%26this%2Edragging%2E%5Fenabled%7C%7C%21this%2E%5Fmap%2Edragging%7C%7C%21this%2E%5Fmap%2Edragging%2Emoved%28%29%29%26%26this%2Efire%28t%2Etype%2C%7BoriginalEvent%3At%2Clatlng%3Athis%2E%5Flatlng%7D%29%7D%2C%5FonKeyPress%3Afunction%28t%29%7B13%3D%3D%3Dt%2EkeyCode%26%26this%2Efire%28%22click%22%2C%7BoriginalEvent%3At%2Clatlng%3Athis%2E%5Flatlng%7D%29%7D%2C%5FfireMouseEvent%3Afunction%28t%29%7Bthis%2Efire%28t%2Etype%2C%7BoriginalEvent%3At%2Clatlng%3Athis%2E%5Flatlng%7D%29%2C%22contextmenu%22%3D%3D%3Dt%2Etype%26%26this%2EhasEventListeners%28t%2Etype%29%26%26o%2EDomEvent%2EpreventDefault%28t%29%2C%22mousedown%22%21%3D%3Dt%2Etype%3Fo%2EDomEvent%2EstopPropagation%28t%29%3Ao%2EDomEvent%2EpreventDefault%28t%29%7D%2CsetOpacity%3Afunction%28t%29%7Breturn%20this%2Eoptions%2Eopacity%3Dt%2Cthis%2E%5Fmap%26%26this%2E%5FupdateOpacity%28%29%2Cthis%7D%2C%5FupdateOpacity%3Afunction%28%29%7Bo%2EDomUtil%2EsetOpacity%28this%2E%5Ficon%2Cthis%2Eoptions%2Eopacity%29%2Cthis%2E%5Fshadow%26%26o%2EDomUtil%2EsetOpacity%28this%2E%5Fshadow%2Cthis%2Eoptions%2Eopacity%29%7D%2C%5FbringToFront%3Afunction%28%29%7Bthis%2E%5FupdateZIndex%28this%2Eoptions%2EriseOffset%29%7D%2C%5FresetZIndex%3Afunction%28%29%7Bthis%2E%5FupdateZIndex%280%29%7D%7D%29%2Co%2Emarker%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2EMarker%28t%2Ce%29%7D%2Co%2EDivIcon%3Do%2EIcon%2Eextend%28%7Boptions%3A%7BiconSize%3A%5B12%2C12%5D%2CclassName%3A%22leaflet%2Ddiv%2Dicon%22%2Chtml%3A%211%7D%2CcreateIcon%3Afunction%28t%29%7Bvar%20i%3Dt%26%26%22DIV%22%3D%3D%3Dt%2EtagName%3Ft%3Ae%2EcreateElement%28%22div%22%29%2Cn%3Dthis%2Eoptions%3Breturn%20i%2EinnerHTML%3Dn%2Ehtml%21%3D%3D%211%3Fn%2Ehtml%3A%22%22%2Cn%2EbgPos%26%26%28i%2Estyle%2EbackgroundPosition%3D%2Dn%2EbgPos%2Ex%2B%22px%20%22%2B%2Dn%2EbgPos%2Ey%2B%22px%22%29%2Cthis%2E%5FsetIconStyles%28i%2C%22icon%22%29%2Ci%7D%2CcreateShadow%3Afunction%28%29%7Breturn%20null%7D%7D%29%2Co%2EdivIcon%3Dfunction%28t%29%7Breturn%20new%20o%2EDivIcon%28t%29%7D%2Co%2EMap%2EmergeOptions%28%7BclosePopupOnClick%3A%210%7D%29%2Co%2EPopup%3Do%2EClass%2Eextend%28%7Bincludes%3Ao%2EMixin%2EEvents%2Coptions%3A%7BminWidth%3A50%2CmaxWidth%3A300%2CautoPan%3A%210%2CcloseButton%3A%210%2Coffset%3A%5B0%2C7%5D%2CautoPanPadding%3A%5B5%2C5%5D%2CkeepInView%3A%211%2CclassName%3A%22%22%2CzoomAnimation%3A%210%7D%2Cinitialize%3Afunction%28t%2Ce%29%7Bo%2EsetOptions%28this%2Ct%29%2Cthis%2E%5Fsource%3De%2Cthis%2E%5Fanimated%3Do%2EBrowser%2Eany3d%26%26this%2Eoptions%2EzoomAnimation%2Cthis%2E%5FisOpen%3D%211%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%2Cthis%2E%5Fcontainer%7C%7Cthis%2E%5FinitLayout%28%29%3Bvar%20e%3Dt%2Eoptions%2EfadeAnimation%3Be%26%26o%2EDomUtil%2EsetOpacity%28this%2E%5Fcontainer%2C0%29%2Ct%2E%5Fpanes%2EpopupPane%2EappendChild%28this%2E%5Fcontainer%29%2Ct%2Eon%28this%2E%5FgetEvents%28%29%2Cthis%29%2Cthis%2Eupdate%28%29%2Ce%26%26o%2EDomUtil%2EsetOpacity%28this%2E%5Fcontainer%2C1%29%2Cthis%2Efire%28%22open%22%29%2Ct%2Efire%28%22popupopen%22%2C%7Bpopup%3Athis%7D%29%2Cthis%2E%5Fsource%26%26this%2E%5Fsource%2Efire%28%22popupopen%22%2C%7Bpopup%3Athis%7D%29%7D%2CaddTo%3Afunction%28t%29%7Breturn%20t%2EaddLayer%28this%29%2Cthis%7D%2CopenOn%3Afunction%28t%29%7Breturn%20t%2EopenPopup%28this%29%2Cthis%7D%2ConRemove%3Afunction%28t%29%7Bt%2E%5Fpanes%2EpopupPane%2EremoveChild%28this%2E%5Fcontainer%29%2Co%2EUtil%2EfalseFn%28this%2E%5Fcontainer%2EoffsetWidth%29%2Ct%2Eoff%28this%2E%5FgetEvents%28%29%2Cthis%29%2Ct%2Eoptions%2EfadeAnimation%26%26o%2EDomUtil%2EsetOpacity%28this%2E%5Fcontainer%2C0%29%2Cthis%2E%5Fmap%3Dnull%2Cthis%2Efire%28%22close%22%29%2Ct%2Efire%28%22popupclose%22%2C%7Bpopup%3Athis%7D%29%2Cthis%2E%5Fsource%26%26this%2E%5Fsource%2Efire%28%22popupclose%22%2C%7Bpopup%3Athis%7D%29%7D%2CgetLatLng%3Afunction%28%29%7Breturn%20this%2E%5Flatlng%7D%2CsetLatLng%3Afunction%28t%29%7Breturn%20this%2E%5Flatlng%3Do%2ElatLng%28t%29%2Cthis%2E%5Fmap%26%26%28this%2E%5FupdatePosition%28%29%2Cthis%2E%5FadjustPan%28%29%29%2Cthis%7D%2CgetContent%3Afunction%28%29%7Breturn%20this%2E%5Fcontent%7D%2CsetContent%3Afunction%28t%29%7Breturn%20this%2E%5Fcontent%3Dt%2Cthis%2Eupdate%28%29%2Cthis%7D%2Cupdate%3Afunction%28%29%7Bthis%2E%5Fmap%26%26%28this%2E%5Fcontainer%2Estyle%2Evisibility%3D%22hidden%22%2Cthis%2E%5FupdateContent%28%29%2Cthis%2E%5FupdateLayout%28%29%2Cthis%2E%5FupdatePosition%28%29%2Cthis%2E%5Fcontainer%2Estyle%2Evisibility%3D%22%22%2Cthis%2E%5FadjustPan%28%29%29%7D%2C%5FgetEvents%3Afunction%28%29%7Bvar%20t%3D%7Bviewreset%3Athis%2E%5FupdatePosition%7D%3Breturn%20this%2E%5Fanimated%26%26%28t%2Ezoomanim%3Dthis%2E%5FzoomAnimation%29%2C%28%22closeOnClick%22in%20this%2Eoptions%3Fthis%2Eoptions%2EcloseOnClick%3Athis%2E%5Fmap%2Eoptions%2EclosePopupOnClick%29%26%26%28t%2Epreclick%3Dthis%2E%5Fclose%29%2Cthis%2Eoptions%2EkeepInView%26%26%28t%2Emoveend%3Dthis%2E%5FadjustPan%29%2Ct%7D%2C%5Fclose%3Afunction%28%29%7Bthis%2E%5Fmap%26%26this%2E%5Fmap%2EclosePopup%28this%29%7D%2C%5FinitLayout%3Afunction%28%29%7Bvar%20t%2Ce%3D%22leaflet%2Dpopup%22%2Ci%3De%2B%22%20%22%2Bthis%2Eoptions%2EclassName%2B%22%20leaflet%2Dzoom%2D%22%2B%28this%2E%5Fanimated%3F%22animated%22%3A%22hide%22%29%2Cn%3Dthis%2E%5Fcontainer%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ci%29%3Bthis%2Eoptions%2EcloseButton%26%26%28t%3Dthis%2E%5FcloseButton%3Do%2EDomUtil%2Ecreate%28%22a%22%2Ce%2B%22%2Dclose%2Dbutton%22%2Cn%29%2Ct%2Ehref%3D%22%23close%22%2Ct%2EinnerHTML%3D%22%26%23215%3B%22%2Co%2EDomEvent%2EdisableClickPropagation%28t%29%2Co%2EDomEvent%2Eon%28t%2C%22click%22%2Cthis%2E%5FonCloseButtonClick%2Cthis%29%29%3Bvar%20s%3Dthis%2E%5Fwrapper%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2B%22%2Dcontent%2Dwrapper%22%2Cn%29%3Bo%2EDomEvent%2EdisableClickPropagation%28s%29%2Cthis%2E%5FcontentNode%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2B%22%2Dcontent%22%2Cs%29%2Co%2EDomEvent%2EdisableScrollPropagation%28this%2E%5FcontentNode%29%2Co%2EDomEvent%2Eon%28s%2C%22contextmenu%22%2Co%2EDomEvent%2EstopPropagation%29%2Cthis%2E%5FtipContainer%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2B%22%2Dtip%2Dcontainer%22%2Cn%29%2Cthis%2E%5Ftip%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2B%22%2Dtip%22%2Cthis%2E%5FtipContainer%29%7D%2C%5FupdateContent%3Afunction%28%29%7Bif%28this%2E%5Fcontent%29%7Bif%28%22string%22%3D%3Dtypeof%20this%2E%5Fcontent%29this%2E%5FcontentNode%2EinnerHTML%3Dthis%2E%5Fcontent%3Belse%7Bfor%28%3Bthis%2E%5FcontentNode%2EhasChildNodes%28%29%3B%29this%2E%5FcontentNode%2EremoveChild%28this%2E%5FcontentNode%2EfirstChild%29%3Bthis%2E%5FcontentNode%2EappendChild%28this%2E%5Fcontent%29%7Dthis%2Efire%28%22contentupdate%22%29%7D%7D%2C%5FupdateLayout%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FcontentNode%2Ce%3Dt%2Estyle%3Be%2Ewidth%3D%22%22%2Ce%2EwhiteSpace%3D%22nowrap%22%3Bvar%20i%3Dt%2EoffsetWidth%3Bi%3DMath%2Emin%28i%2Cthis%2Eoptions%2EmaxWidth%29%2Ci%3DMath%2Emax%28i%2Cthis%2Eoptions%2EminWidth%29%2Ce%2Ewidth%3Di%2B1%2B%22px%22%2Ce%2EwhiteSpace%3D%22%22%2Ce%2Eheight%3D%22%22%3Bvar%20n%3Dt%2EoffsetHeight%2Cs%3Dthis%2Eoptions%2EmaxHeight%2Ca%3D%22leaflet%2Dpopup%2Dscrolled%22%3Bs%26%26n%3Es%3F%28e%2Eheight%3Ds%2B%22px%22%2Co%2EDomUtil%2EaddClass%28t%2Ca%29%29%3Ao%2EDomUtil%2EremoveClass%28t%2Ca%29%2Cthis%2E%5FcontainerWidth%3Dthis%2E%5Fcontainer%2EoffsetWidth%7D%2C%5FupdatePosition%3Afunction%28%29%7Bif%28this%2E%5Fmap%29%7Bvar%20t%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28this%2E%5Flatlng%29%2Ce%3Dthis%2E%5Fanimated%2Ci%3Do%2Epoint%28this%2Eoptions%2Eoffset%29%3Be%26%26o%2EDomUtil%2EsetPosition%28this%2E%5Fcontainer%2Ct%29%2Cthis%2E%5FcontainerBottom%3D%2Di%2Ey%2D%28e%3F0%3At%2Ey%29%2Cthis%2E%5FcontainerLeft%3D%2DMath%2Eround%28this%2E%5FcontainerWidth%2F2%29%2Bi%2Ex%2B%28e%3F0%3At%2Ex%29%2Cthis%2E%5Fcontainer%2Estyle%2Ebottom%3Dthis%2E%5FcontainerBottom%2B%22px%22%2Cthis%2E%5Fcontainer%2Estyle%2Eleft%3Dthis%2E%5FcontainerLeft%2B%22px%22%7D%7D%2C%5FzoomAnimation%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%2E%5FlatLngToNewLayerPoint%28this%2E%5Flatlng%2Ct%2Ezoom%2Ct%2Ecenter%29%3Bo%2EDomUtil%2EsetPosition%28this%2E%5Fcontainer%2Ce%29%7D%2C%5FadjustPan%3Afunction%28%29%7Bif%28this%2Eoptions%2EautoPan%29%7Bvar%20t%3Dthis%2E%5Fmap%2Ce%3Dthis%2E%5Fcontainer%2EoffsetHeight%2Ci%3Dthis%2E%5FcontainerWidth%2Cn%3Dnew%20o%2EPoint%28this%2E%5FcontainerLeft%2C%2De%2Dthis%2E%5FcontainerBottom%29%3Bthis%2E%5Fanimated%26%26n%2E%5Fadd%28o%2EDomUtil%2EgetPosition%28this%2E%5Fcontainer%29%29%3Bvar%20s%3Dt%2ElayerPointToContainerPoint%28n%29%2Ca%3Do%2Epoint%28this%2Eoptions%2EautoPanPadding%29%2Cr%3Do%2Epoint%28this%2Eoptions%2EautoPanPaddingTopLeft%7C%7Ca%29%2Ch%3Do%2Epoint%28this%2Eoptions%2EautoPanPaddingBottomRight%7C%7Ca%29%2Cl%3Dt%2EgetSize%28%29%2Cu%3D0%2Cc%3D0%3Bs%2Ex%2Bi%2Bh%2Ex%3El%2Ex%26%26%28u%3Ds%2Ex%2Bi%2Dl%2Ex%2Bh%2Ex%29%2Cs%2Ex%2Du%2Dr%2Ex%3C0%26%26%28u%3Ds%2Ex%2Dr%2Ex%29%2Cs%2Ey%2Be%2Bh%2Ey%3El%2Ey%26%26%28c%3Ds%2Ey%2Be%2Dl%2Ey%2Bh%2Ey%29%2Cs%2Ey%2Dc%2Dr%2Ey%3C0%26%26%28c%3Ds%2Ey%2Dr%2Ey%29%2C%28u%7C%7Cc%29%26%26t%2Efire%28%22autopanstart%22%29%2EpanBy%28%5Bu%2Cc%5D%29%7D%7D%2C%5FonCloseButtonClick%3Afunction%28t%29%7Bthis%2E%5Fclose%28%29%2Co%2EDomEvent%2Estop%28t%29%7D%7D%29%2Co%2Epopup%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2EPopup%28t%2Ce%29%7D%2Co%2EMap%2Einclude%28%7BopenPopup%3Afunction%28t%2Ce%2Ci%29%7Bif%28this%2EclosePopup%28%29%2C%21%28t%20instanceof%20o%2EPopup%29%29%7Bvar%20n%3Dt%3Bt%3Dnew%20o%2EPopup%28i%29%2EsetLatLng%28e%29%2EsetContent%28n%29%7Dreturn%20t%2E%5FisOpen%3D%210%2Cthis%2E%5Fpopup%3Dt%2Cthis%2EaddLayer%28t%29%7D%2CclosePopup%3Afunction%28t%29%7Breturn%20t%26%26t%21%3D%3Dthis%2E%5Fpopup%7C%7C%28t%3Dthis%2E%5Fpopup%2Cthis%2E%5Fpopup%3Dnull%29%2Ct%26%26%28this%2EremoveLayer%28t%29%2Ct%2E%5FisOpen%3D%211%29%2Cthis%7D%7D%29%2Co%2EMarker%2Einclude%28%7BopenPopup%3Afunction%28%29%7Breturn%20this%2E%5Fpopup%26%26this%2E%5Fmap%26%26%21this%2E%5Fmap%2EhasLayer%28this%2E%5Fpopup%29%26%26%28this%2E%5Fpopup%2EsetLatLng%28this%2E%5Flatlng%29%2Cthis%2E%5Fmap%2EopenPopup%28this%2E%5Fpopup%29%29%2Cthis%7D%2CclosePopup%3Afunction%28%29%7Breturn%20this%2E%5Fpopup%26%26this%2E%5Fpopup%2E%5Fclose%28%29%2Cthis%7D%2CtogglePopup%3Afunction%28%29%7Breturn%20this%2E%5Fpopup%26%26%28this%2E%5Fpopup%2E%5FisOpen%3Fthis%2EclosePopup%28%29%3Athis%2EopenPopup%28%29%29%2Cthis%7D%2CbindPopup%3Afunction%28t%2Ce%29%7Bvar%20i%3Do%2Epoint%28this%2Eoptions%2Eicon%2Eoptions%2EpopupAnchor%7C%7C%5B0%2C0%5D%29%3Breturn%20i%3Di%2Eadd%28o%2EPopup%2Eprototype%2Eoptions%2Eoffset%29%2Ce%26%26e%2Eoffset%26%26%28i%3Di%2Eadd%28e%2Eoffset%29%29%2Ce%3Do%2Eextend%28%7Boffset%3Ai%7D%2Ce%29%2Cthis%2E%5FpopupHandlersAdded%7C%7C%28this%2Eon%28%22click%22%2Cthis%2EtogglePopup%2Cthis%29%2Eon%28%22remove%22%2Cthis%2EclosePopup%2Cthis%29%2Eon%28%22move%22%2Cthis%2E%5FmovePopup%2Cthis%29%2Cthis%2E%5FpopupHandlersAdded%3D%210%29%2Ct%20instanceof%20o%2EPopup%3F%28o%2EsetOptions%28t%2Ce%29%2Cthis%2E%5Fpopup%3Dt%29%3Athis%2E%5Fpopup%3Dnew%20o%2EPopup%28e%2Cthis%29%2EsetContent%28t%29%2Cthis%7D%2CsetPopupContent%3Afunction%28t%29%7Breturn%20this%2E%5Fpopup%26%26this%2E%5Fpopup%2EsetContent%28t%29%2Cthis%7D%2CunbindPopup%3Afunction%28%29%7Breturn%20this%2E%5Fpopup%26%26%28this%2E%5Fpopup%3Dnull%2Cthis%2Eoff%28%22click%22%2Cthis%2EtogglePopup%2Cthis%29%2Eoff%28%22remove%22%2Cthis%2EclosePopup%2Cthis%29%2Eoff%28%22move%22%2Cthis%2E%5FmovePopup%2Cthis%29%2Cthis%2E%5FpopupHandlersAdded%3D%211%29%2Cthis%7D%2CgetPopup%3Afunction%28%29%7Breturn%20this%2E%5Fpopup%7D%2C%5FmovePopup%3Afunction%28t%29%7Bthis%2E%5Fpopup%2EsetLatLng%28t%2Elatlng%29%7D%7D%29%2Co%2ELayerGroup%3Do%2EClass%2Eextend%28%7Binitialize%3Afunction%28t%29%7Bthis%2E%5Flayers%3D%7B%7D%3Bvar%20e%2Ci%3Bif%28t%29for%28e%3D0%2Ci%3Dt%2Elength%3Bi%3Ee%3Be%2B%2B%29this%2EaddLayer%28t%5Be%5D%29%7D%2CaddLayer%3Afunction%28t%29%7Bvar%20e%3Dthis%2EgetLayerId%28t%29%3Breturn%20this%2E%5Flayers%5Be%5D%3Dt%2Cthis%2E%5Fmap%26%26this%2E%5Fmap%2EaddLayer%28t%29%2Cthis%7D%2CremoveLayer%3Afunction%28t%29%7Bvar%20e%3Dt%20in%20this%2E%5Flayers%3Ft%3Athis%2EgetLayerId%28t%29%3Breturn%20this%2E%5Fmap%26%26this%2E%5Flayers%5Be%5D%26%26this%2E%5Fmap%2EremoveLayer%28this%2E%5Flayers%5Be%5D%29%2Cdelete%20this%2E%5Flayers%5Be%5D%2Cthis%7D%2ChasLayer%3Afunction%28t%29%7Breturn%20t%3Ft%20in%20this%2E%5Flayers%7C%7Cthis%2EgetLayerId%28t%29in%20this%2E%5Flayers%3A%211%7D%2CclearLayers%3Afunction%28%29%7Breturn%20this%2EeachLayer%28this%2EremoveLayer%2Cthis%29%2Cthis%7D%2Cinvoke%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%3DArray%2Eprototype%2Eslice%2Ecall%28arguments%2C1%29%3Bfor%28e%20in%20this%2E%5Flayers%29i%3Dthis%2E%5Flayers%5Be%5D%2Ci%5Bt%5D%26%26i%5Bt%5D%2Eapply%28i%2Cn%29%3Breturn%20this%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%2Cthis%2EeachLayer%28t%2EaddLayer%2Ct%29%7D%2ConRemove%3Afunction%28t%29%7Bthis%2EeachLayer%28t%2EremoveLayer%2Ct%29%2Cthis%2E%5Fmap%3Dnull%7D%2CaddTo%3Afunction%28t%29%7Breturn%20t%2EaddLayer%28this%29%2Cthis%7D%2CeachLayer%3Afunction%28t%2Ce%29%7Bfor%28var%20i%20in%20this%2E%5Flayers%29t%2Ecall%28e%2Cthis%2E%5Flayers%5Bi%5D%29%3Breturn%20this%7D%2CgetLayer%3Afunction%28t%29%7Breturn%20this%2E%5Flayers%5Bt%5D%7D%2CgetLayers%3Afunction%28%29%7Bvar%20t%3D%5B%5D%3Bfor%28var%20e%20in%20this%2E%5Flayers%29t%2Epush%28this%2E%5Flayers%5Be%5D%29%3Breturn%20t%7D%2CsetZIndex%3Afunction%28t%29%7Breturn%20this%2Einvoke%28%22setZIndex%22%2Ct%29%7D%2CgetLayerId%3Afunction%28t%29%7Breturn%20o%2Estamp%28t%29%7D%7D%29%2Co%2ElayerGroup%3Dfunction%28t%29%7Breturn%20new%20o%2ELayerGroup%28t%29%7D%2Co%2EFeatureGroup%3Do%2ELayerGroup%2Eextend%28%7Bincludes%3Ao%2EMixin%2EEvents%2Cstatics%3A%7BEVENTS%3A%22click%20dblclick%20mouseover%20mouseout%20mousemove%20contextmenu%20popupopen%20popupclose%22%7D%2CaddLayer%3Afunction%28t%29%7Breturn%20this%2EhasLayer%28t%29%3Fthis%3A%28%22on%22in%20t%26%26t%2Eon%28o%2EFeatureGroup%2EEVENTS%2Cthis%2E%5FpropagateEvent%2Cthis%29%2Co%2ELayerGroup%2Eprototype%2EaddLayer%2Ecall%28this%2Ct%29%2Cthis%2E%5FpopupContent%26%26t%2EbindPopup%26%26t%2EbindPopup%28this%2E%5FpopupContent%2Cthis%2E%5FpopupOptions%29%2Cthis%2Efire%28%22layeradd%22%2C%7Blayer%3At%7D%29%29%7D%2CremoveLayer%3Afunction%28t%29%7Breturn%20this%2EhasLayer%28t%29%3F%28t%20in%20this%2E%5Flayers%26%26%28t%3Dthis%2E%5Flayers%5Bt%5D%29%2Ct%2Eoff%28o%2EFeatureGroup%2EEVENTS%2Cthis%2E%5FpropagateEvent%2Cthis%29%2Co%2ELayerGroup%2Eprototype%2EremoveLayer%2Ecall%28this%2Ct%29%2Cthis%2E%5FpopupContent%26%26this%2Einvoke%28%22unbindPopup%22%29%2Cthis%2Efire%28%22layerremove%22%2C%7Blayer%3At%7D%29%29%3Athis%7D%2CbindPopup%3Afunction%28t%2Ce%29%7Breturn%20this%2E%5FpopupContent%3Dt%2Cthis%2E%5FpopupOptions%3De%2Cthis%2Einvoke%28%22bindPopup%22%2Ct%2Ce%29%7D%2CopenPopup%3Afunction%28t%29%7Bfor%28var%20e%20in%20this%2E%5Flayers%29%7Bthis%2E%5Flayers%5Be%5D%2EopenPopup%28t%29%3Bbreak%7Dreturn%20this%7D%2CsetStyle%3Afunction%28t%29%7Breturn%20this%2Einvoke%28%22setStyle%22%2Ct%29%7D%2CbringToFront%3Afunction%28%29%7Breturn%20this%2Einvoke%28%22bringToFront%22%29%7D%2CbringToBack%3Afunction%28%29%7Breturn%20this%2Einvoke%28%22bringToBack%22%29%7D%2CgetBounds%3Afunction%28%29%7Bvar%20t%3Dnew%20o%2ELatLngBounds%3Breturn%20this%2EeachLayer%28function%28e%29%7Bt%2Eextend%28e%20instanceof%20o%2EMarker%3Fe%2EgetLatLng%28%29%3Ae%2EgetBounds%28%29%29%7D%29%2Ct%7D%2C%5FpropagateEvent%3Afunction%28t%29%7Bt%3Do%2Eextend%28%7Blayer%3At%2Etarget%2Ctarget%3Athis%7D%2Ct%29%2Cthis%2Efire%28t%2Etype%2Ct%29%7D%7D%29%2Co%2EfeatureGroup%3Dfunction%28t%29%7Breturn%20new%20o%2EFeatureGroup%28t%29%7D%2Co%2EPath%3Do%2EClass%2Eextend%28%7Bincludes%3A%5Bo%2EMixin%2EEvents%5D%2Cstatics%3A%7BCLIP%5FPADDING%3Afunction%28%29%7Bvar%20e%3Do%2EBrowser%2Emobile%3F1280%3A2e3%2Ci%3D%28e%2FMath%2Emax%28t%2EouterWidth%2Ct%2EouterHeight%29%2D1%29%2F2%3Breturn%20Math%2Emax%280%2CMath%2Emin%28%2E5%2Ci%29%29%7D%28%29%7D%2Coptions%3A%7Bstroke%3A%210%2Ccolor%3A%22%230033ff%22%2CdashArray%3Anull%2ClineCap%3Anull%2ClineJoin%3Anull%2Cweight%3A5%2Copacity%3A%2E5%2Cfill%3A%211%2CfillColor%3Anull%2CfillOpacity%3A%2E2%2Cclickable%3A%210%7D%2Cinitialize%3Afunction%28t%29%7Bo%2EsetOptions%28this%2Ct%29%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%2Cthis%2E%5Fcontainer%7C%7C%28this%2E%5FinitElements%28%29%2Cthis%2E%5FinitEvents%28%29%29%2Cthis%2EprojectLatlngs%28%29%2Cthis%2E%5FupdatePath%28%29%2Cthis%2E%5Fcontainer%26%26this%2E%5Fmap%2E%5FpathRoot%2EappendChild%28this%2E%5Fcontainer%29%2Cthis%2Efire%28%22add%22%29%2Ct%2Eon%28%7Bviewreset%3Athis%2EprojectLatlngs%2Cmoveend%3Athis%2E%5FupdatePath%7D%2Cthis%29%7D%2CaddTo%3Afunction%28t%29%7Breturn%20t%2EaddLayer%28this%29%2Cthis%7D%2ConRemove%3Afunction%28t%29%7Bt%2E%5FpathRoot%2EremoveChild%28this%2E%5Fcontainer%29%2Cthis%2Efire%28%22remove%22%29%2Cthis%2E%5Fmap%3Dnull%2Co%2EBrowser%2Evml%26%26%28this%2E%5Fcontainer%3Dnull%2Cthis%2E%5Fstroke%3Dnull%2Cthis%2E%5Ffill%3Dnull%29%2Ct%2Eoff%28%7Bviewreset%3Athis%2EprojectLatlngs%2Cmoveend%3Athis%2E%5FupdatePath%7D%2Cthis%29%7D%2CprojectLatlngs%3Afunction%28%29%7B%7D%2CsetStyle%3Afunction%28t%29%7Breturn%20o%2EsetOptions%28this%2Ct%29%2Cthis%2E%5Fcontainer%26%26this%2E%5FupdateStyle%28%29%2Cthis%7D%2Credraw%3Afunction%28%29%7Breturn%20this%2E%5Fmap%26%26%28this%2EprojectLatlngs%28%29%2Cthis%2E%5FupdatePath%28%29%29%2Cthis%7D%7D%29%2Co%2EMap%2Einclude%28%7B%5FupdatePathViewport%3Afunction%28%29%7Bvar%20t%3Do%2EPath%2ECLIP%5FPADDING%2Ce%3Dthis%2EgetSize%28%29%2Ci%3Do%2EDomUtil%2EgetPosition%28this%2E%5FmapPane%29%2Cn%3Di%2EmultiplyBy%28%2D1%29%2E%5Fsubtract%28e%2EmultiplyBy%28t%29%2E%5Fround%28%29%29%2Cs%3Dn%2Eadd%28e%2EmultiplyBy%281%2B2%2At%29%2E%5Fround%28%29%29%3Bthis%2E%5FpathViewport%3Dnew%20o%2EBounds%28n%2Cs%29%7D%7D%29%2Co%2EPath%2ESVG%5FNS%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%2Co%2EBrowser%2Esvg%3D%21%28%21e%2EcreateElementNS%7C%7C%21e%2EcreateElementNS%28o%2EPath%2ESVG%5FNS%2C%22svg%22%29%2EcreateSVGRect%29%2Co%2EPath%3Do%2EPath%2Eextend%28%7Bstatics%3A%7BSVG%3Ao%2EBrowser%2Esvg%7D%2CbringToFront%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2E%5FpathRoot%2Ce%3Dthis%2E%5Fcontainer%3Breturn%20e%26%26t%2ElastChild%21%3D%3De%26%26t%2EappendChild%28e%29%2Cthis%7D%2CbringToBack%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2E%5FpathRoot%2Ce%3Dthis%2E%5Fcontainer%2Ci%3Dt%2EfirstChild%3Breturn%20e%26%26i%21%3D%3De%26%26t%2EinsertBefore%28e%2Ci%29%2Cthis%7D%2CgetPathString%3Afunction%28%29%7B%7D%2C%5FcreateElement%3Afunction%28t%29%7Breturn%20e%2EcreateElementNS%28o%2EPath%2ESVG%5FNS%2Ct%29%7D%2C%5FinitElements%3Afunction%28%29%7Bthis%2E%5Fmap%2E%5FinitPathRoot%28%29%2Cthis%2E%5FinitPath%28%29%2Cthis%2E%5FinitStyle%28%29%7D%2C%5FinitPath%3Afunction%28%29%7Bthis%2E%5Fcontainer%3Dthis%2E%5FcreateElement%28%22g%22%29%2Cthis%2E%5Fpath%3Dthis%2E%5FcreateElement%28%22path%22%29%2Cthis%2Eoptions%2EclassName%26%26o%2EDomUtil%2EaddClass%28this%2E%5Fpath%2Cthis%2Eoptions%2EclassName%29%2Cthis%2E%5Fcontainer%2EappendChild%28this%2E%5Fpath%29%7D%2C%5FinitStyle%3Afunction%28%29%7Bthis%2Eoptions%2Estroke%26%26%28this%2E%5Fpath%2EsetAttribute%28%22stroke%2Dlinejoin%22%2C%22round%22%29%2Cthis%2E%5Fpath%2EsetAttribute%28%22stroke%2Dlinecap%22%2C%22round%22%29%29%2Cthis%2Eoptions%2Efill%26%26this%2E%5Fpath%2EsetAttribute%28%22fill%2Drule%22%2C%22evenodd%22%29%2Cthis%2Eoptions%2EpointerEvents%26%26this%2E%5Fpath%2EsetAttribute%28%22pointer%2Devents%22%2Cthis%2Eoptions%2EpointerEvents%29%2Cthis%2Eoptions%2Eclickable%7C%7Cthis%2Eoptions%2EpointerEvents%7C%7Cthis%2E%5Fpath%2EsetAttribute%28%22pointer%2Devents%22%2C%22none%22%29%2Cthis%2E%5FupdateStyle%28%29%7D%2C%5FupdateStyle%3Afunction%28%29%7Bthis%2Eoptions%2Estroke%3F%28this%2E%5Fpath%2EsetAttribute%28%22stroke%22%2Cthis%2Eoptions%2Ecolor%29%2Cthis%2E%5Fpath%2EsetAttribute%28%22stroke%2Dopacity%22%2Cthis%2Eoptions%2Eopacity%29%2Cthis%2E%5Fpath%2EsetAttribute%28%22stroke%2Dwidth%22%2Cthis%2Eoptions%2Eweight%29%2Cthis%2Eoptions%2EdashArray%3Fthis%2E%5Fpath%2EsetAttribute%28%22stroke%2Ddasharray%22%2Cthis%2Eoptions%2EdashArray%29%3Athis%2E%5Fpath%2EremoveAttribute%28%22stroke%2Ddasharray%22%29%2Cthis%2Eoptions%2ElineCap%26%26this%2E%5Fpath%2EsetAttribute%28%22stroke%2Dlinecap%22%2Cthis%2Eoptions%2ElineCap%29%2Cthis%2Eoptions%2ElineJoin%26%26this%2E%5Fpath%2EsetAttribute%28%22stroke%2Dlinejoin%22%2Cthis%2Eoptions%2ElineJoin%29%29%3Athis%2E%5Fpath%2EsetAttribute%28%22stroke%22%2C%22none%22%29%2Cthis%2Eoptions%2Efill%3F%28this%2E%5Fpath%2EsetAttribute%28%22fill%22%2Cthis%2Eoptions%2EfillColor%7C%7Cthis%2Eoptions%2Ecolor%29%2Cthis%2E%5Fpath%2EsetAttribute%28%22fill%2Dopacity%22%2Cthis%2Eoptions%2EfillOpacity%29%29%3Athis%2E%5Fpath%2EsetAttribute%28%22fill%22%2C%22none%22%29%7D%2C%5FupdatePath%3Afunction%28%29%7Bvar%20t%3Dthis%2EgetPathString%28%29%3Bt%7C%7C%28t%3D%22M0%200%22%29%2Cthis%2E%5Fpath%2EsetAttribute%28%22d%22%2Ct%29%7D%2C%5FinitEvents%3Afunction%28%29%7Bif%28this%2Eoptions%2Eclickable%29%7B%28o%2EBrowser%2Esvg%7C%7C%21o%2EBrowser%2Evml%29%26%26o%2EDomUtil%2EaddClass%28this%2E%5Fpath%2C%22leaflet%2Dclickable%22%29%2Co%2EDomEvent%2Eon%28this%2E%5Fcontainer%2C%22click%22%2Cthis%2E%5FonMouseClick%2Cthis%29%3Bfor%28var%20t%3D%5B%22dblclick%22%2C%22mousedown%22%2C%22mouseover%22%2C%22mouseout%22%2C%22mousemove%22%2C%22contextmenu%22%5D%2Ce%3D0%3Be%3Ct%2Elength%3Be%2B%2B%29o%2EDomEvent%2Eon%28this%2E%5Fcontainer%2Ct%5Be%5D%2Cthis%2E%5FfireMouseEvent%2Cthis%29%7D%7D%2C%5FonMouseClick%3Afunction%28t%29%7Bthis%2E%5Fmap%2Edragging%26%26this%2E%5Fmap%2Edragging%2Emoved%28%29%7C%7Cthis%2E%5FfireMouseEvent%28t%29%7D%2C%5FfireMouseEvent%3Afunction%28t%29%7Bif%28this%2EhasEventListeners%28t%2Etype%29%29%7Bvar%20e%3Dthis%2E%5Fmap%2Ci%3De%2EmouseEventToContainerPoint%28t%29%2Cn%3De%2EcontainerPointToLayerPoint%28i%29%2Cs%3De%2ElayerPointToLatLng%28n%29%3Bthis%2Efire%28t%2Etype%2C%7Blatlng%3As%2ClayerPoint%3An%2CcontainerPoint%3Ai%2CoriginalEvent%3At%7D%29%2C%22contextmenu%22%3D%3D%3Dt%2Etype%26%26o%2EDomEvent%2EpreventDefault%28t%29%2C%22mousemove%22%21%3D%3Dt%2Etype%26%26o%2EDomEvent%2EstopPropagation%28t%29%7D%7D%7D%29%2Co%2EMap%2Einclude%28%7B%5FinitPathRoot%3Afunction%28%29%7Bthis%2E%5FpathRoot%7C%7C%28this%2E%5FpathRoot%3Do%2EPath%2Eprototype%2E%5FcreateElement%28%22svg%22%29%2Cthis%2E%5Fpanes%2EoverlayPane%2EappendChild%28this%2E%5FpathRoot%29%2Cthis%2Eoptions%2EzoomAnimation%26%26o%2EBrowser%2Eany3d%3F%28o%2EDomUtil%2EaddClass%28this%2E%5FpathRoot%2C%22leaflet%2Dzoom%2Danimated%22%29%2Cthis%2Eon%28%7Bzoomanim%3Athis%2E%5FanimatePathZoom%2Czoomend%3Athis%2E%5FendPathZoom%7D%29%29%3Ao%2EDomUtil%2EaddClass%28this%2E%5FpathRoot%2C%22leaflet%2Dzoom%2Dhide%22%29%2Cthis%2Eon%28%22moveend%22%2Cthis%2E%5FupdateSvgViewport%29%2Cthis%2E%5FupdateSvgViewport%28%29%29%0A%7D%2C%5FanimatePathZoom%3Afunction%28t%29%7Bvar%20e%3Dthis%2EgetZoomScale%28t%2Ezoom%29%2Ci%3Dthis%2E%5FgetCenterOffset%28t%2Ecenter%29%2E%5FmultiplyBy%28%2De%29%2E%5Fadd%28this%2E%5FpathViewport%2Emin%29%3Bthis%2E%5FpathRoot%2Estyle%5Bo%2EDomUtil%2ETRANSFORM%5D%3Do%2EDomUtil%2EgetTranslateString%28i%29%2B%22%20scale%28%22%2Be%2B%22%29%20%22%2Cthis%2E%5FpathZooming%3D%210%7D%2C%5FendPathZoom%3Afunction%28%29%7Bthis%2E%5FpathZooming%3D%211%7D%2C%5FupdateSvgViewport%3Afunction%28%29%7Bif%28%21this%2E%5FpathZooming%29%7Bthis%2E%5FupdatePathViewport%28%29%3Bvar%20t%3Dthis%2E%5FpathViewport%2Ce%3Dt%2Emin%2Ci%3Dt%2Emax%2Cn%3Di%2Ex%2De%2Ex%2Cs%3Di%2Ey%2De%2Ey%2Ca%3Dthis%2E%5FpathRoot%2Cr%3Dthis%2E%5Fpanes%2EoverlayPane%3Bo%2EBrowser%2EmobileWebkit%26%26r%2EremoveChild%28a%29%2Co%2EDomUtil%2EsetPosition%28a%2Ce%29%2Ca%2EsetAttribute%28%22width%22%2Cn%29%2Ca%2EsetAttribute%28%22height%22%2Cs%29%2Ca%2EsetAttribute%28%22viewBox%22%2C%5Be%2Ex%2Ce%2Ey%2Cn%2Cs%5D%2Ejoin%28%22%20%22%29%29%2Co%2EBrowser%2EmobileWebkit%26%26r%2EappendChild%28a%29%7D%7D%7D%29%2Co%2EPath%2Einclude%28%7BbindPopup%3Afunction%28t%2Ce%29%7Breturn%20t%20instanceof%20o%2EPopup%3Fthis%2E%5Fpopup%3Dt%3A%28%28%21this%2E%5Fpopup%7C%7Ce%29%26%26%28this%2E%5Fpopup%3Dnew%20o%2EPopup%28e%2Cthis%29%29%2Cthis%2E%5Fpopup%2EsetContent%28t%29%29%2Cthis%2E%5FpopupHandlersAdded%7C%7C%28this%2Eon%28%22click%22%2Cthis%2E%5FopenPopup%2Cthis%29%2Eon%28%22remove%22%2Cthis%2EclosePopup%2Cthis%29%2Cthis%2E%5FpopupHandlersAdded%3D%210%29%2Cthis%7D%2CunbindPopup%3Afunction%28%29%7Breturn%20this%2E%5Fpopup%26%26%28this%2E%5Fpopup%3Dnull%2Cthis%2Eoff%28%22click%22%2Cthis%2E%5FopenPopup%29%2Eoff%28%22remove%22%2Cthis%2EclosePopup%29%2Cthis%2E%5FpopupHandlersAdded%3D%211%29%2Cthis%7D%2CopenPopup%3Afunction%28t%29%7Breturn%20this%2E%5Fpopup%26%26%28t%3Dt%7C%7Cthis%2E%5Flatlng%7C%7Cthis%2E%5Flatlngs%5BMath%2Efloor%28this%2E%5Flatlngs%2Elength%2F2%29%5D%2Cthis%2E%5FopenPopup%28%7Blatlng%3At%7D%29%29%2Cthis%7D%2CclosePopup%3Afunction%28%29%7Breturn%20this%2E%5Fpopup%26%26this%2E%5Fpopup%2E%5Fclose%28%29%2Cthis%7D%2C%5FopenPopup%3Afunction%28t%29%7Bthis%2E%5Fpopup%2EsetLatLng%28t%2Elatlng%29%2Cthis%2E%5Fmap%2EopenPopup%28this%2E%5Fpopup%29%7D%7D%29%2Co%2EBrowser%2Evml%3D%21o%2EBrowser%2Esvg%26%26function%28%29%7Btry%7Bvar%20t%3De%2EcreateElement%28%22div%22%29%3Bt%2EinnerHTML%3D%27%3Cv%3Ashape%20adj%3D%221%22%2F%3E%27%3Bvar%20i%3Dt%2EfirstChild%3Breturn%20i%2Estyle%2Ebehavior%3D%22url%28%23default%23VML%29%22%2Ci%26%26%22object%22%3D%3Dtypeof%20i%2Eadj%7Dcatch%28n%29%7Breturn%211%7D%7D%28%29%2Co%2EPath%3Do%2EBrowser%2Esvg%7C%7C%21o%2EBrowser%2Evml%3Fo%2EPath%3Ao%2EPath%2Eextend%28%7Bstatics%3A%7BVML%3A%210%2CCLIP%5FPADDING%3A%2E02%7D%2C%5FcreateElement%3Afunction%28%29%7Btry%7Breturn%20e%2Enamespaces%2Eadd%28%22lvml%22%2C%22urn%3Aschemas%2Dmicrosoft%2Dcom%3Avml%22%29%2Cfunction%28t%29%7Breturn%20e%2EcreateElement%28%22%3Clvml%3A%22%2Bt%2B%27%20class%3D%22lvml%22%3E%27%29%7D%7Dcatch%28t%29%7Breturn%20function%28t%29%7Breturn%20e%2EcreateElement%28%22%3C%22%2Bt%2B%27%20xmlns%3D%22urn%3Aschemas%2Dmicrosoft%2Ecom%3Avml%22%20class%3D%22lvml%22%3E%27%29%7D%7D%7D%28%29%2C%5FinitPath%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fcontainer%3Dthis%2E%5FcreateElement%28%22shape%22%29%3Bo%2EDomUtil%2EaddClass%28t%2C%22leaflet%2Dvml%2Dshape%22%2B%28this%2Eoptions%2EclassName%3F%22%20%22%2Bthis%2Eoptions%2EclassName%3A%22%22%29%29%2Cthis%2Eoptions%2Eclickable%26%26o%2EDomUtil%2EaddClass%28t%2C%22leaflet%2Dclickable%22%29%2Ct%2Ecoordsize%3D%221%201%22%2Cthis%2E%5Fpath%3Dthis%2E%5FcreateElement%28%22path%22%29%2Ct%2EappendChild%28this%2E%5Fpath%29%2Cthis%2E%5Fmap%2E%5FpathRoot%2EappendChild%28t%29%7D%2C%5FinitStyle%3Afunction%28%29%7Bthis%2E%5FupdateStyle%28%29%7D%2C%5FupdateStyle%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fstroke%2Ce%3Dthis%2E%5Ffill%2Ci%3Dthis%2Eoptions%2Cn%3Dthis%2E%5Fcontainer%3Bn%2Estroked%3Di%2Estroke%2Cn%2Efilled%3Di%2Efill%2Ci%2Estroke%3F%28t%7C%7C%28t%3Dthis%2E%5Fstroke%3Dthis%2E%5FcreateElement%28%22stroke%22%29%2Ct%2Eendcap%3D%22round%22%2Cn%2EappendChild%28t%29%29%2Ct%2Eweight%3Di%2Eweight%2B%22px%22%2Ct%2Ecolor%3Di%2Ecolor%2Ct%2Eopacity%3Di%2Eopacity%2Ct%2EdashStyle%3Di%2EdashArray%3Fo%2EUtil%2EisArray%28i%2EdashArray%29%3Fi%2EdashArray%2Ejoin%28%22%20%22%29%3Ai%2EdashArray%2Ereplace%28%2F%28%20%2A%2C%20%2A%29%2Fg%2C%22%20%22%29%3A%22%22%2Ci%2ElineCap%26%26%28t%2Eendcap%3Di%2ElineCap%2Ereplace%28%22butt%22%2C%22flat%22%29%29%2Ci%2ElineJoin%26%26%28t%2Ejoinstyle%3Di%2ElineJoin%29%29%3At%26%26%28n%2EremoveChild%28t%29%2Cthis%2E%5Fstroke%3Dnull%29%2Ci%2Efill%3F%28e%7C%7C%28e%3Dthis%2E%5Ffill%3Dthis%2E%5FcreateElement%28%22fill%22%29%2Cn%2EappendChild%28e%29%29%2Ce%2Ecolor%3Di%2EfillColor%7C%7Ci%2Ecolor%2Ce%2Eopacity%3Di%2EfillOpacity%29%3Ae%26%26%28n%2EremoveChild%28e%29%2Cthis%2E%5Ffill%3Dnull%29%7D%2C%5FupdatePath%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fcontainer%2Estyle%3Bt%2Edisplay%3D%22none%22%2Cthis%2E%5Fpath%2Ev%3Dthis%2EgetPathString%28%29%2B%22%20%22%2Ct%2Edisplay%3D%22%22%7D%7D%29%2Co%2EMap%2Einclude%28o%2EBrowser%2Esvg%7C%7C%21o%2EBrowser%2Evml%3F%7B%7D%3A%7B%5FinitPathRoot%3Afunction%28%29%7Bif%28%21this%2E%5FpathRoot%29%7Bvar%20t%3Dthis%2E%5FpathRoot%3De%2EcreateElement%28%22div%22%29%3Bt%2EclassName%3D%22leaflet%2Dvml%2Dcontainer%22%2Cthis%2E%5Fpanes%2EoverlayPane%2EappendChild%28t%29%2Cthis%2Eon%28%22moveend%22%2Cthis%2E%5FupdatePathViewport%29%2Cthis%2E%5FupdatePathViewport%28%29%7D%7D%7D%29%2Co%2EBrowser%2Ecanvas%3Dfunction%28%29%7Breturn%21%21e%2EcreateElement%28%22canvas%22%29%2EgetContext%7D%28%29%2Co%2EPath%3Do%2EPath%2ESVG%26%26%21t%2EL%5FPREFER%5FCANVAS%7C%7C%21o%2EBrowser%2Ecanvas%3Fo%2EPath%3Ao%2EPath%2Eextend%28%7Bstatics%3A%7BCANVAS%3A%210%2CSVG%3A%211%7D%2Credraw%3Afunction%28%29%7Breturn%20this%2E%5Fmap%26%26%28this%2EprojectLatlngs%28%29%2Cthis%2E%5FrequestUpdate%28%29%29%2Cthis%7D%2CsetStyle%3Afunction%28t%29%7Breturn%20o%2EsetOptions%28this%2Ct%29%2Cthis%2E%5Fmap%26%26%28this%2E%5FupdateStyle%28%29%2Cthis%2E%5FrequestUpdate%28%29%29%2Cthis%7D%2ConRemove%3Afunction%28t%29%7Bt%2Eoff%28%22viewreset%22%2Cthis%2EprojectLatlngs%2Cthis%29%2Eoff%28%22moveend%22%2Cthis%2E%5FupdatePath%2Cthis%29%2Cthis%2Eoptions%2Eclickable%26%26%28this%2E%5Fmap%2Eoff%28%22click%22%2Cthis%2E%5FonClick%2Cthis%29%2Cthis%2E%5Fmap%2Eoff%28%22mousemove%22%2Cthis%2E%5FonMouseMove%2Cthis%29%29%2Cthis%2E%5FrequestUpdate%28%29%2Cthis%2Efire%28%22remove%22%29%2Cthis%2E%5Fmap%3Dnull%7D%2C%5FrequestUpdate%3Afunction%28%29%7Bthis%2E%5Fmap%26%26%21o%2EPath%2E%5FupdateRequest%26%26%28o%2EPath%2E%5FupdateRequest%3Do%2EUtil%2ErequestAnimFrame%28this%2E%5FfireMapMoveEnd%2Cthis%2E%5Fmap%29%29%7D%2C%5FfireMapMoveEnd%3Afunction%28%29%7Bo%2EPath%2E%5FupdateRequest%3Dnull%2Cthis%2Efire%28%22moveend%22%29%7D%2C%5FinitElements%3Afunction%28%29%7Bthis%2E%5Fmap%2E%5FinitPathRoot%28%29%2Cthis%2E%5Fctx%3Dthis%2E%5Fmap%2E%5FcanvasCtx%7D%2C%5FupdateStyle%3Afunction%28%29%7Bvar%20t%3Dthis%2Eoptions%3Bt%2Estroke%26%26%28this%2E%5Fctx%2ElineWidth%3Dt%2Eweight%2Cthis%2E%5Fctx%2EstrokeStyle%3Dt%2Ecolor%29%2Ct%2Efill%26%26%28this%2E%5Fctx%2EfillStyle%3Dt%2EfillColor%7C%7Ct%2Ecolor%29%7D%2C%5FdrawPath%3Afunction%28%29%7Bvar%20t%2Ce%2Ci%2Cn%2Cs%2Ca%3Bfor%28this%2E%5Fctx%2EbeginPath%28%29%2Ct%3D0%2Ci%3Dthis%2E%5Fparts%2Elength%3Bi%3Et%3Bt%2B%2B%29%7Bfor%28e%3D0%2Cn%3Dthis%2E%5Fparts%5Bt%5D%2Elength%3Bn%3Ee%3Be%2B%2B%29s%3Dthis%2E%5Fparts%5Bt%5D%5Be%5D%2Ca%3D%280%3D%3D%3De%3F%22move%22%3A%22line%22%29%2B%22To%22%2Cthis%2E%5Fctx%5Ba%5D%28s%2Ex%2Cs%2Ey%29%3Bthis%20instanceof%20o%2EPolygon%26%26this%2E%5Fctx%2EclosePath%28%29%7D%7D%2C%5FcheckIfEmpty%3Afunction%28%29%7Breturn%21this%2E%5Fparts%2Elength%7D%2C%5FupdatePath%3Afunction%28%29%7Bif%28%21this%2E%5FcheckIfEmpty%28%29%29%7Bvar%20t%3Dthis%2E%5Fctx%2Ce%3Dthis%2Eoptions%3Bthis%2E%5FdrawPath%28%29%2Ct%2Esave%28%29%2Cthis%2E%5FupdateStyle%28%29%2Ce%2Efill%26%26%28t%2EglobalAlpha%3De%2EfillOpacity%2Ct%2Efill%28%29%29%2Ce%2Estroke%26%26%28t%2EglobalAlpha%3De%2Eopacity%2Ct%2Estroke%28%29%29%2Ct%2Erestore%28%29%7D%7D%2C%5FinitEvents%3Afunction%28%29%7Bthis%2Eoptions%2Eclickable%26%26%28this%2E%5Fmap%2Eon%28%22mousemove%22%2Cthis%2E%5FonMouseMove%2Cthis%29%2Cthis%2E%5Fmap%2Eon%28%22click%22%2Cthis%2E%5FonClick%2Cthis%29%29%7D%2C%5FonClick%3Afunction%28t%29%7Bthis%2E%5FcontainsPoint%28t%2ElayerPoint%29%26%26this%2Efire%28%22click%22%2Ct%29%7D%2C%5FonMouseMove%3Afunction%28t%29%7Bthis%2E%5Fmap%26%26%21this%2E%5Fmap%2E%5FanimatingZoom%26%26%28this%2E%5FcontainsPoint%28t%2ElayerPoint%29%3F%28this%2E%5Fctx%2Ecanvas%2Estyle%2Ecursor%3D%22pointer%22%2Cthis%2E%5FmouseInside%3D%210%2Cthis%2Efire%28%22mouseover%22%2Ct%29%29%3Athis%2E%5FmouseInside%26%26%28this%2E%5Fctx%2Ecanvas%2Estyle%2Ecursor%3D%22%22%2Cthis%2E%5FmouseInside%3D%211%2Cthis%2Efire%28%22mouseout%22%2Ct%29%29%29%7D%7D%29%2Co%2EMap%2Einclude%28o%2EPath%2ESVG%26%26%21t%2EL%5FPREFER%5FCANVAS%7C%7C%21o%2EBrowser%2Ecanvas%3F%7B%7D%3A%7B%5FinitPathRoot%3Afunction%28%29%7Bvar%20t%2Ci%3Dthis%2E%5FpathRoot%3Bi%7C%7C%28i%3Dthis%2E%5FpathRoot%3De%2EcreateElement%28%22canvas%22%29%2Ci%2Estyle%2Eposition%3D%22absolute%22%2Ct%3Dthis%2E%5FcanvasCtx%3Di%2EgetContext%28%222d%22%29%2Ct%2ElineCap%3D%22round%22%2Ct%2ElineJoin%3D%22round%22%2Cthis%2E%5Fpanes%2EoverlayPane%2EappendChild%28i%29%2Cthis%2Eoptions%2EzoomAnimation%26%26%28this%2E%5FpathRoot%2EclassName%3D%22leaflet%2Dzoom%2Danimated%22%2Cthis%2Eon%28%22zoomanim%22%2Cthis%2E%5FanimatePathZoom%29%2Cthis%2Eon%28%22zoomend%22%2Cthis%2E%5FendPathZoom%29%29%2Cthis%2Eon%28%22moveend%22%2Cthis%2E%5FupdateCanvasViewport%29%2Cthis%2E%5FupdateCanvasViewport%28%29%29%7D%2C%5FupdateCanvasViewport%3Afunction%28%29%7Bif%28%21this%2E%5FpathZooming%29%7Bthis%2E%5FupdatePathViewport%28%29%3Bvar%20t%3Dthis%2E%5FpathViewport%2Ce%3Dt%2Emin%2Ci%3Dt%2Emax%2Esubtract%28e%29%2Cn%3Dthis%2E%5FpathRoot%3Bo%2EDomUtil%2EsetPosition%28n%2Ce%29%2Cn%2Ewidth%3Di%2Ex%2Cn%2Eheight%3Di%2Ey%2Cn%2EgetContext%28%222d%22%29%2Etranslate%28%2De%2Ex%2C%2De%2Ey%29%7D%7D%7D%29%2Co%2ELineUtil%3D%7Bsimplify%3Afunction%28t%2Ce%29%7Bif%28%21e%7C%7C%21t%2Elength%29return%20t%2Eslice%28%29%3Bvar%20i%3De%2Ae%3Breturn%20t%3Dthis%2E%5FreducePoints%28t%2Ci%29%2Ct%3Dthis%2E%5FsimplifyDP%28t%2Ci%29%7D%2CpointToSegmentDistance%3Afunction%28t%2Ce%2Ci%29%7Breturn%20Math%2Esqrt%28this%2E%5FsqClosestPointOnSegment%28t%2Ce%2Ci%2C%210%29%29%7D%2CclosestPointOnSegment%3Afunction%28t%2Ce%2Ci%29%7Breturn%20this%2E%5FsqClosestPointOnSegment%28t%2Ce%2Ci%29%7D%2C%5FsimplifyDP%3Afunction%28t%2Ce%29%7Bvar%20n%3Dt%2Elength%2Co%3Dtypeof%20Uint8Array%21%3Di%2B%22%22%3FUint8Array%3AArray%2Cs%3Dnew%20o%28n%29%3Bs%5B0%5D%3Ds%5Bn%2D1%5D%3D1%2Cthis%2E%5FsimplifyDPStep%28t%2Cs%2Ce%2C0%2Cn%2D1%29%3Bvar%20a%2Cr%3D%5B%5D%3Bfor%28a%3D0%3Bn%3Ea%3Ba%2B%2B%29s%5Ba%5D%26%26r%2Epush%28t%5Ba%5D%29%3Breturn%20r%7D%2C%5FsimplifyDPStep%3Afunction%28t%2Ce%2Ci%2Cn%2Co%29%7Bvar%20s%2Ca%2Cr%2Ch%3D0%3Bfor%28a%3Dn%2B1%3Bo%2D1%3E%3Da%3Ba%2B%2B%29r%3Dthis%2E%5FsqClosestPointOnSegment%28t%5Ba%5D%2Ct%5Bn%5D%2Ct%5Bo%5D%2C%210%29%2Cr%3Eh%26%26%28s%3Da%2Ch%3Dr%29%3Bh%3Ei%26%26%28e%5Bs%5D%3D1%2Cthis%2E%5FsimplifyDPStep%28t%2Ce%2Ci%2Cn%2Cs%29%2Cthis%2E%5FsimplifyDPStep%28t%2Ce%2Ci%2Cs%2Co%29%29%7D%2C%5FreducePoints%3Afunction%28t%2Ce%29%7Bfor%28var%20i%3D%5Bt%5B0%5D%5D%2Cn%3D1%2Co%3D0%2Cs%3Dt%2Elength%3Bs%3En%3Bn%2B%2B%29this%2E%5FsqDist%28t%5Bn%5D%2Ct%5Bo%5D%29%3Ee%26%26%28i%2Epush%28t%5Bn%5D%29%2Co%3Dn%29%3Breturn%20s%2D1%3Eo%26%26i%2Epush%28t%5Bs%2D1%5D%29%2Ci%7D%2CclipSegment%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bvar%20o%2Cs%2Ca%2Cr%3Dn%3Fthis%2E%5FlastCode%3Athis%2E%5FgetBitCode%28t%2Ci%29%2Ch%3Dthis%2E%5FgetBitCode%28e%2Ci%29%3Bfor%28this%2E%5FlastCode%3Dh%3B%3B%29%7Bif%28%21%28r%7Ch%29%29return%5Bt%2Ce%5D%3Bif%28r%26h%29return%211%3Bo%3Dr%7C%7Ch%2Cs%3Dthis%2E%5FgetEdgeIntersection%28t%2Ce%2Co%2Ci%29%2Ca%3Dthis%2E%5FgetBitCode%28s%2Ci%29%2Co%3D%3D%3Dr%3F%28t%3Ds%2Cr%3Da%29%3A%28e%3Ds%2Ch%3Da%29%7D%7D%2C%5FgetEdgeIntersection%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bvar%20s%3De%2Ex%2Dt%2Ex%2Ca%3De%2Ey%2Dt%2Ey%2Cr%3Dn%2Emin%2Ch%3Dn%2Emax%3Breturn%208%26i%3Fnew%20o%2EPoint%28t%2Ex%2Bs%2A%28h%2Ey%2Dt%2Ey%29%2Fa%2Ch%2Ey%29%3A4%26i%3Fnew%20o%2EPoint%28t%2Ex%2Bs%2A%28r%2Ey%2Dt%2Ey%29%2Fa%2Cr%2Ey%29%3A2%26i%3Fnew%20o%2EPoint%28h%2Ex%2Ct%2Ey%2Ba%2A%28h%2Ex%2Dt%2Ex%29%2Fs%29%3A1%26i%3Fnew%20o%2EPoint%28r%2Ex%2Ct%2Ey%2Ba%2A%28r%2Ex%2Dt%2Ex%29%2Fs%29%3Avoid%200%7D%2C%5FgetBitCode%3Afunction%28t%2Ce%29%7Bvar%20i%3D0%3Breturn%20t%2Ex%3Ce%2Emin%2Ex%3Fi%7C%3D1%3At%2Ex%3Ee%2Emax%2Ex%26%26%28i%7C%3D2%29%2Ct%2Ey%3Ce%2Emin%2Ey%3Fi%7C%3D4%3At%2Ey%3Ee%2Emax%2Ey%26%26%28i%7C%3D8%29%2Ci%7D%2C%5FsqDist%3Afunction%28t%2Ce%29%7Bvar%20i%3De%2Ex%2Dt%2Ex%2Cn%3De%2Ey%2Dt%2Ey%3Breturn%20i%2Ai%2Bn%2An%7D%2C%5FsqClosestPointOnSegment%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bvar%20s%2Ca%3De%2Ex%2Cr%3De%2Ey%2Ch%3Di%2Ex%2Da%2Cl%3Di%2Ey%2Dr%2Cu%3Dh%2Ah%2Bl%2Al%3Breturn%20u%3E0%26%26%28s%3D%28%28t%2Ex%2Da%29%2Ah%2B%28t%2Ey%2Dr%29%2Al%29%2Fu%2Cs%3E1%3F%28a%3Di%2Ex%2Cr%3Di%2Ey%29%3As%3E0%26%26%28a%2B%3Dh%2As%2Cr%2B%3Dl%2As%29%29%2Ch%3Dt%2Ex%2Da%2Cl%3Dt%2Ey%2Dr%2Cn%3Fh%2Ah%2Bl%2Al%3Anew%20o%2EPoint%28a%2Cr%29%7D%7D%2Co%2EPolyline%3Do%2EPath%2Eextend%28%7Binitialize%3Afunction%28t%2Ce%29%7Bo%2EPath%2Eprototype%2Einitialize%2Ecall%28this%2Ce%29%2Cthis%2E%5Flatlngs%3Dthis%2E%5FconvertLatLngs%28t%29%7D%2Coptions%3A%7BsmoothFactor%3A1%2CnoClip%3A%211%7D%2CprojectLatlngs%3Afunction%28%29%7Bthis%2E%5ForiginalPoints%3D%5B%5D%3Bfor%28var%20t%3D0%2Ce%3Dthis%2E%5Flatlngs%2Elength%3Be%3Et%3Bt%2B%2B%29this%2E%5ForiginalPoints%5Bt%5D%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28this%2E%5Flatlngs%5Bt%5D%29%7D%2CgetPathString%3Afunction%28%29%7Bfor%28var%20t%3D0%2Ce%3Dthis%2E%5Fparts%2Elength%2Ci%3D%22%22%3Be%3Et%3Bt%2B%2B%29i%2B%3Dthis%2E%5FgetPathPartStr%28this%2E%5Fparts%5Bt%5D%29%3Breturn%20i%7D%2CgetLatLngs%3Afunction%28%29%7Breturn%20this%2E%5Flatlngs%7D%2CsetLatLngs%3Afunction%28t%29%7Breturn%20this%2E%5Flatlngs%3Dthis%2E%5FconvertLatLngs%28t%29%2Cthis%2Eredraw%28%29%7D%2CaddLatLng%3Afunction%28t%29%7Breturn%20this%2E%5Flatlngs%2Epush%28o%2ElatLng%28t%29%29%2Cthis%2Eredraw%28%29%7D%2CspliceLatLngs%3Afunction%28%29%7Bvar%20t%3D%5B%5D%2Esplice%2Eapply%28this%2E%5Flatlngs%2Carguments%29%3Breturn%20this%2E%5FconvertLatLngs%28this%2E%5Flatlngs%2C%210%29%2Cthis%2Eredraw%28%29%2Ct%7D%2CclosestLayerPoint%3Afunction%28t%29%7Bfor%28var%20e%2Ci%2Cn%3D1%2F0%2Cs%3Dthis%2E%5Fparts%2Ca%3Dnull%2Cr%3D0%2Ch%3Ds%2Elength%3Bh%3Er%3Br%2B%2B%29for%28var%20l%3Ds%5Br%5D%2Cu%3D1%2Cc%3Dl%2Elength%3Bc%3Eu%3Bu%2B%2B%29%7Be%3Dl%5Bu%2D1%5D%2Ci%3Dl%5Bu%5D%3Bvar%20d%3Do%2ELineUtil%2E%5FsqClosestPointOnSegment%28t%2Ce%2Ci%2C%210%29%3Bn%3Ed%26%26%28n%3Dd%2Ca%3Do%2ELineUtil%2E%5FsqClosestPointOnSegment%28t%2Ce%2Ci%29%29%7Dreturn%20a%26%26%28a%2Edistance%3DMath%2Esqrt%28n%29%29%2Ca%7D%2CgetBounds%3Afunction%28%29%7Breturn%20new%20o%2ELatLngBounds%28this%2EgetLatLngs%28%29%29%7D%2C%5FconvertLatLngs%3Afunction%28t%2Ce%29%7Bvar%20i%2Cn%2Cs%3De%3Ft%3A%5B%5D%3Bfor%28i%3D0%2Cn%3Dt%2Elength%3Bn%3Ei%3Bi%2B%2B%29%7Bif%28o%2EUtil%2EisArray%28t%5Bi%5D%29%26%26%22number%22%21%3Dtypeof%20t%5Bi%5D%5B0%5D%29return%3Bs%5Bi%5D%3Do%2ElatLng%28t%5Bi%5D%29%7Dreturn%20s%7D%2C%5FinitEvents%3Afunction%28%29%7Bo%2EPath%2Eprototype%2E%5FinitEvents%2Ecall%28this%29%7D%2C%5FgetPathPartStr%3Afunction%28t%29%7Bfor%28var%20e%2Ci%3Do%2EPath%2EVML%2Cn%3D0%2Cs%3Dt%2Elength%2Ca%3D%22%22%3Bs%3En%3Bn%2B%2B%29e%3Dt%5Bn%5D%2Ci%26%26e%2E%5Fround%28%29%2Ca%2B%3D%28n%3F%22L%22%3A%22M%22%29%2Be%2Ex%2B%22%20%22%2Be%2Ey%3Breturn%20a%7D%2C%5FclipPoints%3Afunction%28%29%7Bvar%20t%2Ce%2Ci%2Cn%3Dthis%2E%5ForiginalPoints%2Cs%3Dn%2Elength%3Bif%28this%2Eoptions%2EnoClip%29return%20void%28this%2E%5Fparts%3D%5Bn%5D%29%3Bthis%2E%5Fparts%3D%5B%5D%3Bvar%20a%3Dthis%2E%5Fparts%2Cr%3Dthis%2E%5Fmap%2E%5FpathViewport%2Ch%3Do%2ELineUtil%3Bfor%28t%3D0%2Ce%3D0%3Bs%2D1%3Et%3Bt%2B%2B%29i%3Dh%2EclipSegment%28n%5Bt%5D%2Cn%5Bt%2B1%5D%2Cr%2Ct%29%2Ci%26%26%28a%5Be%5D%3Da%5Be%5D%7C%7C%5B%5D%2Ca%5Be%5D%2Epush%28i%5B0%5D%29%2C%28i%5B1%5D%21%3D%3Dn%5Bt%2B1%5D%7C%7Ct%3D%3D%3Ds%2D2%29%26%26%28a%5Be%5D%2Epush%28i%5B1%5D%29%2Ce%2B%2B%29%29%7D%2C%5FsimplifyPoints%3Afunction%28%29%7Bfor%28var%20t%3Dthis%2E%5Fparts%2Ce%3Do%2ELineUtil%2Ci%3D0%2Cn%3Dt%2Elength%3Bn%3Ei%3Bi%2B%2B%29t%5Bi%5D%3De%2Esimplify%28t%5Bi%5D%2Cthis%2Eoptions%2EsmoothFactor%29%7D%2C%5FupdatePath%3Afunction%28%29%7Bthis%2E%5Fmap%26%26%28this%2E%5FclipPoints%28%29%2Cthis%2E%5FsimplifyPoints%28%29%2Co%2EPath%2Eprototype%2E%5FupdatePath%2Ecall%28this%29%29%7D%7D%29%2Co%2Epolyline%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2EPolyline%28t%2Ce%29%7D%2Co%2EPolyUtil%3D%7B%7D%2Co%2EPolyUtil%2EclipPolygon%3Dfunction%28t%2Ce%29%7Bvar%20i%2Cn%2Cs%2Ca%2Cr%2Ch%2Cl%2Cu%2Cc%2Cd%3D%5B1%2C4%2C2%2C8%5D%2Cp%3Do%2ELineUtil%3Bfor%28n%3D0%2Cl%3Dt%2Elength%3Bl%3En%3Bn%2B%2B%29t%5Bn%5D%2E%5Fcode%3Dp%2E%5FgetBitCode%28t%5Bn%5D%2Ce%29%3Bfor%28a%3D0%3B4%3Ea%3Ba%2B%2B%29%7Bfor%28u%3Dd%5Ba%5D%2Ci%3D%5B%5D%2Cn%3D0%2Cl%3Dt%2Elength%2Cs%3Dl%2D1%3Bl%3En%3Bs%3Dn%2B%2B%29r%3Dt%5Bn%5D%2Ch%3Dt%5Bs%5D%2Cr%2E%5Fcode%26u%3Fh%2E%5Fcode%26u%7C%7C%28c%3Dp%2E%5FgetEdgeIntersection%28h%2Cr%2Cu%2Ce%29%2Cc%2E%5Fcode%3Dp%2E%5FgetBitCode%28c%2Ce%29%2Ci%2Epush%28c%29%29%3A%28h%2E%5Fcode%26u%26%26%28c%3Dp%2E%5FgetEdgeIntersection%28h%2Cr%2Cu%2Ce%29%2Cc%2E%5Fcode%3Dp%2E%5FgetBitCode%28c%2Ce%29%2Ci%2Epush%28c%29%29%2Ci%2Epush%28r%29%29%3Bt%3Di%7Dreturn%20t%7D%2Co%2EPolygon%3Do%2EPolyline%2Eextend%28%7Boptions%3A%7Bfill%3A%210%7D%2Cinitialize%3Afunction%28t%2Ce%29%7Bo%2EPolyline%2Eprototype%2Einitialize%2Ecall%28this%2Ct%2Ce%29%2Cthis%2E%5FinitWithHoles%28t%29%7D%2C%5FinitWithHoles%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%3Bif%28t%26%26o%2EUtil%2EisArray%28t%5B0%5D%29%26%26%22number%22%21%3Dtypeof%20t%5B0%5D%5B0%5D%29for%28this%2E%5Flatlngs%3Dthis%2E%5FconvertLatLngs%28t%5B0%5D%29%2Cthis%2E%5Fholes%3Dt%2Eslice%281%29%2Ce%3D0%2Ci%3Dthis%2E%5Fholes%2Elength%3Bi%3Ee%3Be%2B%2B%29n%3Dthis%2E%5Fholes%5Be%5D%3Dthis%2E%5FconvertLatLngs%28this%2E%5Fholes%5Be%5D%29%2Cn%5B0%5D%2Eequals%28n%5Bn%2Elength%2D1%5D%29%26%26n%2Epop%28%29%3Bt%3Dthis%2E%5Flatlngs%2Ct%2Elength%3E%3D2%26%26t%5B0%5D%2Eequals%28t%5Bt%2Elength%2D1%5D%29%26%26t%2Epop%28%29%7D%2CprojectLatlngs%3Afunction%28%29%7Bif%28o%2EPolyline%2Eprototype%2EprojectLatlngs%2Ecall%28this%29%2Cthis%2E%5FholePoints%3D%5B%5D%2Cthis%2E%5Fholes%29%7Bvar%20t%2Ce%2Ci%2Cn%3Bfor%28t%3D0%2Ci%3Dthis%2E%5Fholes%2Elength%3Bi%3Et%3Bt%2B%2B%29for%28this%2E%5FholePoints%5Bt%5D%3D%5B%5D%2Ce%3D0%2Cn%3Dthis%2E%5Fholes%5Bt%5D%2Elength%3Bn%3Ee%3Be%2B%2B%29this%2E%5FholePoints%5Bt%5D%5Be%5D%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28this%2E%5Fholes%5Bt%5D%5Be%5D%29%7D%7D%2CsetLatLngs%3Afunction%28t%29%7Breturn%20t%26%26o%2EUtil%2EisArray%28t%5B0%5D%29%26%26%22number%22%21%3Dtypeof%20t%5B0%5D%5B0%5D%3F%28this%2E%5FinitWithHoles%28t%29%2Cthis%2Eredraw%28%29%29%3Ao%2EPolyline%2Eprototype%2EsetLatLngs%2Ecall%28this%2Ct%29%7D%2C%5FclipPoints%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5ForiginalPoints%2Ce%3D%5B%5D%3Bif%28this%2E%5Fparts%3D%5Bt%5D%2Econcat%28this%2E%5FholePoints%29%2C%21this%2Eoptions%2EnoClip%29%7Bfor%28var%20i%3D0%2Cn%3Dthis%2E%5Fparts%2Elength%3Bn%3Ei%3Bi%2B%2B%29%7Bvar%20s%3Do%2EPolyUtil%2EclipPolygon%28this%2E%5Fparts%5Bi%5D%2Cthis%2E%5Fmap%2E%5FpathViewport%29%3Bs%2Elength%26%26e%2Epush%28s%29%7Dthis%2E%5Fparts%3De%7D%7D%2C%5FgetPathPartStr%3Afunction%28t%29%7Bvar%20e%3Do%2EPolyline%2Eprototype%2E%5FgetPathPartStr%2Ecall%28this%2Ct%29%3Breturn%20e%2B%28o%2EBrowser%2Esvg%3F%22z%22%3A%22x%22%29%7D%7D%29%2Co%2Epolygon%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2EPolygon%28t%2Ce%29%7D%2Cfunction%28%29%7Bfunction%20t%28t%29%7Breturn%20o%2EFeatureGroup%2Eextend%28%7Binitialize%3Afunction%28t%2Ce%29%7Bthis%2E%5Flayers%3D%7B%7D%2Cthis%2E%5Foptions%3De%2Cthis%2EsetLatLngs%28t%29%7D%2CsetLatLngs%3Afunction%28e%29%7Bvar%20i%3D0%2Cn%3De%2Elength%3Bfor%28this%2EeachLayer%28function%28t%29%7Bn%3Ei%3Ft%2EsetLatLngs%28e%5Bi%2B%2B%5D%29%3Athis%2EremoveLayer%28t%29%7D%2Cthis%29%3Bn%3Ei%3B%29this%2EaddLayer%28new%20t%28e%5Bi%2B%2B%5D%2Cthis%2E%5Foptions%29%29%3Breturn%20this%7D%2CgetLatLngs%3Afunction%28%29%7Bvar%20t%3D%5B%5D%3Breturn%20this%2EeachLayer%28function%28e%29%7Bt%2Epush%28e%2EgetLatLngs%28%29%29%7D%29%2Ct%7D%7D%29%7Do%2EMultiPolyline%3Dt%28o%2EPolyline%29%2Co%2EMultiPolygon%3Dt%28o%2EPolygon%29%2Co%2EmultiPolyline%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2EMultiPolyline%28t%2Ce%29%7D%2Co%2EmultiPolygon%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2EMultiPolygon%28t%2Ce%29%7D%7D%28%29%2Co%2ERectangle%3Do%2EPolygon%2Eextend%28%7Binitialize%3Afunction%28t%2Ce%29%7Bo%2EPolygon%2Eprototype%2Einitialize%2Ecall%28this%2Cthis%2E%5FboundsToLatLngs%28t%29%2Ce%29%7D%2CsetBounds%3Afunction%28t%29%7Bthis%2EsetLatLngs%28this%2E%5FboundsToLatLngs%28t%29%29%7D%2C%5FboundsToLatLngs%3Afunction%28t%29%7Breturn%20t%3Do%2ElatLngBounds%28t%29%2C%5Bt%2EgetSouthWest%28%29%2Ct%2EgetNorthWest%28%29%2Ct%2EgetNorthEast%28%29%2Ct%2EgetSouthEast%28%29%5D%7D%7D%29%2Co%2Erectangle%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2ERectangle%28t%2Ce%29%7D%2Co%2ECircle%3Do%2EPath%2Eextend%28%7Binitialize%3Afunction%28t%2Ce%2Ci%29%7Bo%2EPath%2Eprototype%2Einitialize%2Ecall%28this%2Ci%29%2Cthis%2E%5Flatlng%3Do%2ElatLng%28t%29%2Cthis%2E%5FmRadius%3De%7D%2Coptions%3A%7Bfill%3A%210%7D%2CsetLatLng%3Afunction%28t%29%7Breturn%20this%2E%5Flatlng%3Do%2ElatLng%28t%29%2Cthis%2Eredraw%28%29%7D%2CsetRadius%3Afunction%28t%29%7Breturn%20this%2E%5FmRadius%3Dt%2Cthis%2Eredraw%28%29%7D%2CprojectLatlngs%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FgetLngRadius%28%29%2Ce%3Dthis%2E%5Flatlng%2Ci%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28%5Be%2Elat%2Ce%2Elng%2Dt%5D%29%3Bthis%2E%5Fpoint%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28e%29%2Cthis%2E%5Fradius%3DMath%2Emax%28this%2E%5Fpoint%2Ex%2Di%2Ex%2C1%29%7D%2CgetBounds%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FgetLngRadius%28%29%2Ce%3Dthis%2E%5FmRadius%2F40075017%2A360%2Ci%3Dthis%2E%5Flatlng%3Breturn%20new%20o%2ELatLngBounds%28%5Bi%2Elat%2De%2Ci%2Elng%2Dt%5D%2C%5Bi%2Elat%2Be%2Ci%2Elng%2Bt%5D%29%7D%2CgetLatLng%3Afunction%28%29%7Breturn%20this%2E%5Flatlng%7D%2CgetPathString%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fpoint%2Ce%3Dthis%2E%5Fradius%3Breturn%20this%2E%5FcheckIfEmpty%28%29%3F%22%22%3Ao%2EBrowser%2Esvg%3F%22M%22%2Bt%2Ex%2B%22%2C%22%2B%28t%2Ey%2De%29%2B%22A%22%2Be%2B%22%2C%22%2Be%2B%22%2C0%2C1%2C1%2C%22%2B%28t%2Ex%2D%2E1%29%2B%22%2C%22%2B%28t%2Ey%2De%29%2B%22%20z%22%3A%28t%2E%5Fround%28%29%2Ce%3DMath%2Eround%28e%29%2C%22AL%20%22%2Bt%2Ex%2B%22%2C%22%2Bt%2Ey%2B%22%20%22%2Be%2B%22%2C%22%2Be%2B%22%200%2C23592600%22%29%7D%2CgetRadius%3Afunction%28%29%7Breturn%20this%2E%5FmRadius%7D%2C%5FgetLatRadius%3Afunction%28%29%7Breturn%20this%2E%5FmRadius%2F40075017%2A360%7D%2C%5FgetLngRadius%3Afunction%28%29%7Breturn%20this%2E%5FgetLatRadius%28%29%2FMath%2Ecos%28o%2ELatLng%2EDEG%5FTO%5FRAD%2Athis%2E%5Flatlng%2Elat%29%7D%2C%5FcheckIfEmpty%3Afunction%28%29%7Bif%28%21this%2E%5Fmap%29return%211%3Bvar%20t%3Dthis%2E%5Fmap%2E%5FpathViewport%2Ce%3Dthis%2E%5Fradius%2Ci%3Dthis%2E%5Fpoint%3Breturn%20i%2Ex%2De%3Et%2Emax%2Ex%7C%7Ci%2Ey%2De%3Et%2Emax%2Ey%7C%7Ci%2Ex%2Be%3Ct%2Emin%2Ex%7C%7Ci%2Ey%2Be%3Ct%2Emin%2Ey%7D%7D%29%2Co%2Ecircle%3Dfunction%28t%2Ce%2Ci%29%7Breturn%20new%20o%2ECircle%28t%2Ce%2Ci%29%7D%2Co%2ECircleMarker%3Do%2ECircle%2Eextend%28%7Boptions%3A%7Bradius%3A10%2Cweight%3A2%7D%2Cinitialize%3Afunction%28t%2Ce%29%7Bo%2ECircle%2Eprototype%2Einitialize%2Ecall%28this%2Ct%2Cnull%2Ce%29%2Cthis%2E%5Fradius%3Dthis%2Eoptions%2Eradius%7D%2CprojectLatlngs%3Afunction%28%29%7Bthis%2E%5Fpoint%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28this%2E%5Flatlng%29%7D%2C%5FupdateStyle%3Afunction%28%29%7Bo%2ECircle%2Eprototype%2E%5FupdateStyle%2Ecall%28this%29%2Cthis%2EsetRadius%28this%2Eoptions%2Eradius%29%7D%2CsetLatLng%3Afunction%28t%29%7Breturn%20o%2ECircle%2Eprototype%2EsetLatLng%2Ecall%28this%2Ct%29%2Cthis%2E%5Fpopup%26%26this%2E%5Fpopup%2E%5FisOpen%26%26this%2E%5Fpopup%2EsetLatLng%28t%29%2Cthis%7D%2CsetRadius%3Afunction%28t%29%7Breturn%20this%2Eoptions%2Eradius%3Dthis%2E%5Fradius%3Dt%2Cthis%2Eredraw%28%29%7D%2CgetRadius%3Afunction%28%29%7Breturn%20this%2E%5Fradius%7D%7D%29%2Co%2EcircleMarker%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2ECircleMarker%28t%2Ce%29%7D%2Co%2EPolyline%2Einclude%28o%2EPath%2ECANVAS%3F%7B%5FcontainsPoint%3Afunction%28t%2Ce%29%7Bvar%20i%2Cn%2Cs%2Ca%2Cr%2Ch%2Cl%2Cu%3Dthis%2Eoptions%2Eweight%2F2%3Bfor%28o%2EBrowser%2Etouch%26%26%28u%2B%3D10%29%2Ci%3D0%2Ca%3Dthis%2E%5Fparts%2Elength%3Ba%3Ei%3Bi%2B%2B%29for%28l%3Dthis%2E%5Fparts%5Bi%5D%2Cn%3D0%2Cr%3Dl%2Elength%2Cs%3Dr%2D1%3Br%3En%3Bs%3Dn%2B%2B%29if%28%28e%7C%7C0%21%3D%3Dn%29%26%26%28h%3Do%2ELineUtil%2EpointToSegmentDistance%28t%2Cl%5Bs%5D%2Cl%5Bn%5D%29%2Cu%3E%3Dh%29%29return%210%3Breturn%211%7D%7D%3A%7B%7D%29%2Co%2EPolygon%2Einclude%28o%2EPath%2ECANVAS%3F%7B%5FcontainsPoint%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%2Cs%2Ca%2Cr%2Ch%2Cl%2Cu%3D%211%3Bif%28o%2EPolyline%2Eprototype%2E%5FcontainsPoint%2Ecall%28this%2Ct%2C%210%29%29return%210%3Bfor%28s%3D0%2Ch%3Dthis%2E%5Fparts%2Elength%3Bh%3Es%3Bs%2B%2B%29for%28e%3Dthis%2E%5Fparts%5Bs%5D%2Ca%3D0%2Cl%3De%2Elength%2Cr%3Dl%2D1%3Bl%3Ea%3Br%3Da%2B%2B%29i%3De%5Ba%5D%2Cn%3De%5Br%5D%2Ci%2Ey%3Et%2Ey%21%3Dn%2Ey%3Et%2Ey%26%26t%2Ex%3C%28n%2Ex%2Di%2Ex%29%2A%28t%2Ey%2Di%2Ey%29%2F%28n%2Ey%2Di%2Ey%29%2Bi%2Ex%26%26%28u%3D%21u%29%3Breturn%20u%7D%7D%3A%7B%7D%29%2Co%2ECircle%2Einclude%28o%2EPath%2ECANVAS%3F%7B%5FdrawPath%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fpoint%3Bthis%2E%5Fctx%2EbeginPath%28%29%2Cthis%2E%5Fctx%2Earc%28t%2Ex%2Ct%2Ey%2Cthis%2E%5Fradius%2C0%2C2%2AMath%2EPI%2C%211%29%7D%2C%5FcontainsPoint%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fpoint%2Ci%3Dthis%2Eoptions%2Estroke%3Fthis%2Eoptions%2Eweight%2F2%3A0%3Breturn%20t%2EdistanceTo%28e%29%3C%3Dthis%2E%5Fradius%2Bi%7D%7D%3A%7B%7D%29%2Co%2ECircleMarker%2Einclude%28o%2EPath%2ECANVAS%3F%7B%5FupdateStyle%3Afunction%28%29%7Bo%2EPath%2Eprototype%2E%5FupdateStyle%2Ecall%28this%29%7D%7D%3A%7B%7D%29%2Co%2EGeoJSON%3Do%2EFeatureGroup%2Eextend%28%7Binitialize%3Afunction%28t%2Ce%29%7Bo%2EsetOptions%28this%2Ce%29%2Cthis%2E%5Flayers%3D%7B%7D%2Ct%26%26this%2EaddData%28t%29%7D%2CaddData%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%2Cs%3Do%2EUtil%2EisArray%28t%29%3Ft%3At%2Efeatures%3Bif%28s%29%7Bfor%28e%3D0%2Ci%3Ds%2Elength%3Bi%3Ee%3Be%2B%2B%29n%3Ds%5Be%5D%2C%28n%2Egeometries%7C%7Cn%2Egeometry%7C%7Cn%2Efeatures%7C%7Cn%2Ecoordinates%29%26%26this%2EaddData%28s%5Be%5D%29%3Breturn%20this%7Dvar%20a%3Dthis%2Eoptions%3Bif%28%21a%2Efilter%7C%7Ca%2Efilter%28t%29%29%7Bvar%20r%3Do%2EGeoJSON%2EgeometryToLayer%28t%2Ca%2EpointToLayer%2Ca%2EcoordsToLatLng%2Ca%29%3Breturn%20r%2Efeature%3Do%2EGeoJSON%2EasFeature%28t%29%2Cr%2EdefaultOptions%3Dr%2Eoptions%2Cthis%2EresetStyle%28r%29%2Ca%2EonEachFeature%26%26a%2EonEachFeature%28t%2Cr%29%2Cthis%2EaddLayer%28r%29%7D%7D%2CresetStyle%3Afunction%28t%29%7Bvar%20e%3Dthis%2Eoptions%2Estyle%3Be%26%26%28o%2EUtil%2Eextend%28t%2Eoptions%2Ct%2EdefaultOptions%29%2Cthis%2E%5FsetLayerStyle%28t%2Ce%29%29%7D%2CsetStyle%3Afunction%28t%29%7Bthis%2EeachLayer%28function%28e%29%7Bthis%2E%5FsetLayerStyle%28e%2Ct%29%7D%2Cthis%29%7D%2C%5FsetLayerStyle%3Afunction%28t%2Ce%29%7B%22function%22%3D%3Dtypeof%20e%26%26%28e%3De%28t%2Efeature%29%29%2Ct%2EsetStyle%26%26t%2EsetStyle%28e%29%7D%7D%29%2Co%2Eextend%28o%2EGeoJSON%2C%7BgeometryToLayer%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bvar%20s%2Ca%2Cr%2Ch%2Cl%3D%22Feature%22%3D%3D%3Dt%2Etype%3Ft%2Egeometry%3At%2Cu%3Dl%2Ecoordinates%2Cc%3D%5B%5D%3Bswitch%28i%3Di%7C%7Cthis%2EcoordsToLatLng%2Cl%2Etype%29%7Bcase%22Point%22%3Areturn%20s%3Di%28u%29%2Ce%3Fe%28t%2Cs%29%3Anew%20o%2EMarker%28s%29%3Bcase%22MultiPoint%22%3Afor%28r%3D0%2Ch%3Du%2Elength%3Bh%3Er%3Br%2B%2B%29s%3Di%28u%5Br%5D%29%2Cc%2Epush%28e%3Fe%28t%2Cs%29%3Anew%20o%2EMarker%28s%29%29%3Breturn%20new%20o%2EFeatureGroup%28c%29%3Bcase%22LineString%22%3Areturn%20a%3Dthis%2EcoordsToLatLngs%28u%2C0%2Ci%29%2Cnew%20o%2EPolyline%28a%2Cn%29%3Bcase%22Polygon%22%3Aif%282%3D%3D%3Du%2Elength%26%26%21u%5B1%5D%2Elength%29throw%20new%20Error%28%22Invalid%20GeoJSON%20object%2E%22%29%3Breturn%20a%3Dthis%2EcoordsToLatLngs%28u%2C1%2Ci%29%2Cnew%20o%2EPolygon%28a%2Cn%29%3Bcase%22MultiLineString%22%3Areturn%20a%3Dthis%2EcoordsToLatLngs%28u%2C1%2Ci%29%2Cnew%20o%2EMultiPolyline%28a%2Cn%29%3Bcase%22MultiPolygon%22%3Areturn%20a%3Dthis%2EcoordsToLatLngs%28u%2C2%2Ci%29%2Cnew%20o%2EMultiPolygon%28a%2Cn%29%3Bcase%22GeometryCollection%22%3Afor%28r%3D0%2Ch%3Dl%2Egeometries%2Elength%3Bh%3Er%3Br%2B%2B%29c%2Epush%28this%2EgeometryToLayer%28%7Bgeometry%3Al%2Egeometries%5Br%5D%2Ctype%3A%22Feature%22%2Cproperties%3At%2Eproperties%7D%2Ce%2Ci%2Cn%29%29%3Breturn%20new%20o%2EFeatureGroup%28c%29%3Bdefault%3Athrow%20new%20Error%28%22Invalid%20GeoJSON%20object%2E%22%29%7D%7D%2CcoordsToLatLng%3Afunction%28t%29%7Breturn%20new%20o%2ELatLng%28t%5B1%5D%2Ct%5B0%5D%2Ct%5B2%5D%29%7D%2CcoordsToLatLngs%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%2Co%2Cs%2Ca%3D%5B%5D%3Bfor%28o%3D0%2Cs%3Dt%2Elength%3Bs%3Eo%3Bo%2B%2B%29n%3De%3Fthis%2EcoordsToLatLngs%28t%5Bo%5D%2Ce%2D1%2Ci%29%3A%28i%7C%7Cthis%2EcoordsToLatLng%29%28t%5Bo%5D%29%2Ca%2Epush%28n%29%3Breturn%20a%7D%2ClatLngToCoords%3Afunction%28t%29%7Bvar%20e%3D%5Bt%2Elng%2Ct%2Elat%5D%3Breturn%20t%2Ealt%21%3D%3Di%26%26e%2Epush%28t%2Ealt%29%2Ce%7D%2ClatLngsToCoords%3Afunction%28t%29%7Bfor%28var%20e%3D%5B%5D%2Ci%3D0%2Cn%3Dt%2Elength%3Bn%3Ei%3Bi%2B%2B%29e%2Epush%28o%2EGeoJSON%2ElatLngToCoords%28t%5Bi%5D%29%29%3Breturn%20e%7D%2CgetFeature%3Afunction%28t%2Ce%29%7Breturn%20t%2Efeature%3Fo%2Eextend%28%7B%7D%2Ct%2Efeature%2C%7Bgeometry%3Ae%7D%29%3Ao%2EGeoJSON%2EasFeature%28e%29%7D%2CasFeature%3Afunction%28t%29%7Breturn%22Feature%22%3D%3D%3Dt%2Etype%3Ft%3A%7Btype%3A%22Feature%22%2Cproperties%3A%7B%7D%2Cgeometry%3At%7D%7D%7D%29%3Bvar%20a%3D%7BtoGeoJSON%3Afunction%28%29%7Breturn%20o%2EGeoJSON%2EgetFeature%28this%2C%7Btype%3A%22Point%22%2Ccoordinates%3Ao%2EGeoJSON%2ElatLngToCoords%28this%2EgetLatLng%28%29%29%7D%29%7D%7D%3Bo%2EMarker%2Einclude%28a%29%2Co%2ECircle%2Einclude%28a%29%2Co%2ECircleMarker%2Einclude%28a%29%2Co%2EPolyline%2Einclude%28%7BtoGeoJSON%3Afunction%28%29%7Breturn%20o%2EGeoJSON%2EgetFeature%28this%2C%7Btype%3A%22LineString%22%2Ccoordinates%3Ao%2EGeoJSON%2ElatLngsToCoords%28this%2EgetLatLngs%28%29%29%7D%29%7D%7D%29%2Co%2EPolygon%2Einclude%28%7BtoGeoJSON%3Afunction%28%29%7Bvar%20t%2Ce%2Ci%2Cn%3D%5Bo%2EGeoJSON%2ElatLngsToCoords%28this%2EgetLatLngs%28%29%29%5D%3Bif%28n%5B0%5D%2Epush%28n%5B0%5D%5B0%5D%29%2Cthis%2E%5Fholes%29for%28t%3D0%2Ce%3Dthis%2E%5Fholes%2Elength%3Be%3Et%3Bt%2B%2B%29i%3Do%2EGeoJSON%2ElatLngsToCoords%28this%2E%5Fholes%5Bt%5D%29%2Ci%2Epush%28i%5B0%5D%29%2Cn%2Epush%28i%29%3Breturn%20o%2EGeoJSON%2EgetFeature%28this%2C%7Btype%3A%22Polygon%22%2Ccoordinates%3An%7D%29%7D%7D%29%2Cfunction%28%29%7Bfunction%20t%28t%29%7Breturn%20function%28%29%7Bvar%20e%3D%5B%5D%3Breturn%20this%2EeachLayer%28function%28t%29%7Be%2Epush%28t%2EtoGeoJSON%28%29%2Egeometry%2Ecoordinates%29%7D%29%2Co%2EGeoJSON%2EgetFeature%28this%2C%7Btype%3At%2Ccoordinates%3Ae%7D%29%7D%7Do%2EMultiPolyline%2Einclude%28%7BtoGeoJSON%3At%28%22MultiLineString%22%29%7D%29%2Co%2EMultiPolygon%2Einclude%28%7BtoGeoJSON%3At%28%22MultiPolygon%22%29%7D%29%2Co%2ELayerGroup%2Einclude%28%7BtoGeoJSON%3Afunction%28%29%7Bvar%20e%2Ci%3Dthis%2Efeature%26%26this%2Efeature%2Egeometry%2Cn%3D%5B%5D%3Bif%28i%26%26%22MultiPoint%22%3D%3D%3Di%2Etype%29return%20t%28%22MultiPoint%22%29%2Ecall%28this%29%3Bvar%20s%3Di%26%26%22GeometryCollection%22%3D%3D%3Di%2Etype%3Breturn%20this%2EeachLayer%28function%28t%29%7Bt%2EtoGeoJSON%26%26%28e%3Dt%2EtoGeoJSON%28%29%2Cn%2Epush%28s%3Fe%2Egeometry%3Ao%2EGeoJSON%2EasFeature%28e%29%29%29%7D%29%2Cs%3Fo%2EGeoJSON%2EgetFeature%28this%2C%7Bgeometries%3An%2Ctype%3A%22GeometryCollection%22%7D%29%3A%7Btype%3A%22FeatureCollection%22%2Cfeatures%3An%7D%7D%7D%29%7D%28%29%2Co%2EgeoJson%3Dfunction%28t%2Ce%29%7Breturn%20new%20o%2EGeoJSON%28t%2Ce%29%7D%2Co%2EDomEvent%3D%7BaddListener%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bvar%20s%2Ca%2Cr%2Ch%3Do%2Estamp%28i%29%2Cl%3D%22%5Fleaflet%5F%22%2Be%2Bh%3Breturn%20t%5Bl%5D%3Fthis%3A%28s%3Dfunction%28e%29%7Breturn%20i%2Ecall%28n%7C%7Ct%2Ce%7C%7Co%2EDomEvent%2E%5FgetEvent%28%29%29%7D%2Co%2EBrowser%2Epointer%26%260%3D%3D%3De%2EindexOf%28%22touch%22%29%3Fthis%2EaddPointerListener%28t%2Ce%2Cs%2Ch%29%3A%28o%2EBrowser%2Etouch%26%26%22dblclick%22%3D%3D%3De%26%26this%2EaddDoubleTapListener%26%26this%2EaddDoubleTapListener%28t%2Cs%2Ch%29%2C%22addEventListener%22in%20t%3F%22mousewheel%22%3D%3D%3De%3F%28t%2EaddEventListener%28%22DOMMouseScroll%22%2Cs%2C%211%29%2Ct%2EaddEventListener%28e%2Cs%2C%211%29%29%3A%22mouseenter%22%3D%3D%3De%7C%7C%22mouseleave%22%3D%3D%3De%3F%28a%3Ds%2Cr%3D%22mouseenter%22%3D%3D%3De%3F%22mouseover%22%3A%22mouseout%22%2Cs%3Dfunction%28e%29%7Breturn%20o%2EDomEvent%2E%5FcheckMouse%28t%2Ce%29%3Fa%28e%29%3Avoid%200%7D%2Ct%2EaddEventListener%28r%2Cs%2C%211%29%29%3A%22click%22%3D%3D%3De%26%26o%2EBrowser%2Eandroid%3F%28a%3Ds%2Cs%3Dfunction%28t%29%7Breturn%20o%2EDomEvent%2E%5FfilterClick%28t%2Ca%29%7D%2Ct%2EaddEventListener%28e%2Cs%2C%211%29%29%3At%2EaddEventListener%28e%2Cs%2C%211%29%3A%22attachEvent%22in%20t%26%26t%2EattachEvent%28%22on%22%2Be%2Cs%29%2Ct%5Bl%5D%3Ds%2Cthis%29%29%7D%2CremoveListener%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%3Do%2Estamp%28i%29%2Cs%3D%22%5Fleaflet%5F%22%2Be%2Bn%2Ca%3Dt%5Bs%5D%3Breturn%20a%3F%28o%2EBrowser%2Epointer%26%260%3D%3D%3De%2EindexOf%28%22touch%22%29%3Fthis%2EremovePointerListener%28t%2Ce%2Cn%29%3Ao%2EBrowser%2Etouch%26%26%22dblclick%22%3D%3D%3De%26%26this%2EremoveDoubleTapListener%3Fthis%2EremoveDoubleTapListener%28t%2Cn%29%3A%22removeEventListener%22in%20t%3F%22mousewheel%22%3D%3D%3De%3F%28t%2EremoveEventListener%28%22DOMMouseScroll%22%2Ca%2C%211%29%2Ct%2EremoveEventListener%28e%2Ca%2C%211%29%29%3A%22mouseenter%22%3D%3D%3De%7C%7C%22mouseleave%22%3D%3D%3De%3Ft%2EremoveEventListener%28%22mouseenter%22%3D%3D%3De%3F%22mouseover%22%3A%22mouseout%22%2Ca%2C%211%29%3At%2EremoveEventListener%28e%2Ca%2C%211%29%3A%22detachEvent%22in%20t%26%26t%2EdetachEvent%28%22on%22%2Be%2Ca%29%2Ct%5Bs%5D%3Dnull%2Cthis%29%3Athis%7D%2CstopPropagation%3Afunction%28t%29%7Breturn%20t%2EstopPropagation%3Ft%2EstopPropagation%28%29%3At%2EcancelBubble%3D%210%2Co%2EDomEvent%2E%5Fskipped%28t%29%2Cthis%7D%2CdisableScrollPropagation%3Afunction%28t%29%7Bvar%20e%3Do%2EDomEvent%2EstopPropagation%3Breturn%20o%2EDomEvent%2Eon%28t%2C%22mousewheel%22%2Ce%29%2Eon%28t%2C%22MozMousePixelScroll%22%2Ce%29%7D%2CdisableClickPropagation%3Afunction%28t%29%7Bfor%28var%20e%3Do%2EDomEvent%2EstopPropagation%2Ci%3Do%2EDraggable%2ESTART%2Elength%2D1%3Bi%3E%3D0%3Bi%2D%2D%29o%2EDomEvent%2Eon%28t%2Co%2EDraggable%2ESTART%5Bi%5D%2Ce%29%3Breturn%20o%2EDomEvent%2Eon%28t%2C%22click%22%2Co%2EDomEvent%2E%5FfakeStop%29%2Eon%28t%2C%22dblclick%22%2Ce%29%7D%2CpreventDefault%3Afunction%28t%29%7Breturn%20t%2EpreventDefault%3Ft%2EpreventDefault%28%29%3At%2EreturnValue%3D%211%2Cthis%7D%2Cstop%3Afunction%28t%29%7Breturn%20o%2EDomEvent%2EpreventDefault%28t%29%2EstopPropagation%28t%29%7D%2CgetMousePosition%3Afunction%28t%2Ce%29%7Bif%28%21e%29return%20new%20o%2EPoint%28t%2EclientX%2Ct%2EclientY%29%3Bvar%20i%3De%2EgetBoundingClientRect%28%29%3Breturn%20new%20o%2EPoint%28t%2EclientX%2Di%2Eleft%2De%2EclientLeft%2Ct%2EclientY%2Di%2Etop%2De%2EclientTop%29%7D%2CgetWheelDelta%3Afunction%28t%29%7Bvar%20e%3D0%3Breturn%20t%2EwheelDelta%26%26%28e%3Dt%2EwheelDelta%2F120%29%2Ct%2Edetail%26%26%28e%3D%2Dt%2Edetail%2F3%29%2Ce%7D%2C%5FskipEvents%3A%7B%7D%2C%5FfakeStop%3Afunction%28t%29%7Bo%2EDomEvent%2E%5FskipEvents%5Bt%2Etype%5D%3D%210%7D%2C%5Fskipped%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5FskipEvents%5Bt%2Etype%5D%3Breturn%20this%2E%5FskipEvents%5Bt%2Etype%5D%3D%211%2Ce%7D%2C%5FcheckMouse%3Afunction%28t%2Ce%29%7Bvar%20i%3De%2ErelatedTarget%3Bif%28%21i%29return%210%3Btry%7Bfor%28%3Bi%26%26i%21%3D%3Dt%3B%29i%3Di%2EparentNode%7Dcatch%28n%29%7Breturn%211%7Dreturn%20i%21%3D%3Dt%7D%2C%5FgetEvent%3Afunction%28%29%7Bvar%20e%3Dt%2Eevent%3Bif%28%21e%29for%28var%20i%3Darguments%2Ecallee%2Ecaller%3Bi%26%26%28e%3Di%2Earguments%5B0%5D%2C%21e%7C%7Ct%2EEvent%21%3D%3De%2Econstructor%29%3B%29i%3Di%2Ecaller%3Breturn%20e%7D%2C%5FfilterClick%3Afunction%28t%2Ce%29%7Bvar%20i%3Dt%2EtimeStamp%7C%7Ct%2EoriginalEvent%2EtimeStamp%2Cn%3Do%2EDomEvent%2E%5FlastClick%26%26i%2Do%2EDomEvent%2E%5FlastClick%3Breturn%20n%26%26n%3E100%26%26500%3En%7C%7Ct%2Etarget%2E%5FsimulatedClick%26%26%21t%2E%5Fsimulated%3Fvoid%20o%2EDomEvent%2Estop%28t%29%3A%28o%2EDomEvent%2E%5FlastClick%3Di%2Ce%28t%29%29%7D%7D%2Co%2EDomEvent%2Eon%3Do%2EDomEvent%2EaddListener%2Co%2EDomEvent%2Eoff%3Do%2EDomEvent%2EremoveListener%2Co%2EDraggable%3Do%2EClass%2Eextend%28%7Bincludes%3Ao%2EMixin%2EEvents%2Cstatics%3A%7BSTART%3Ao%2EBrowser%2Etouch%3F%5B%22touchstart%22%2C%22mousedown%22%5D%3A%5B%22mousedown%22%5D%2CEND%3A%7Bmousedown%3A%22mouseup%22%2Ctouchstart%3A%22touchend%22%2Cpointerdown%3A%22touchend%22%2CMSPointerDown%3A%22touchend%22%7D%2CMOVE%3A%7Bmousedown%3A%22mousemove%22%2Ctouchstart%3A%22touchmove%22%2Cpointerdown%3A%22touchmove%22%2CMSPointerDown%3A%22touchmove%22%7D%7D%2Cinitialize%3Afunction%28t%2Ce%29%7Bthis%2E%5Felement%3Dt%2Cthis%2E%5FdragStartTarget%3De%7C%7Ct%7D%2Cenable%3Afunction%28%29%7Bif%28%21this%2E%5Fenabled%29%7Bfor%28var%20t%3Do%2EDraggable%2ESTART%2Elength%2D1%3Bt%3E%3D0%3Bt%2D%2D%29o%2EDomEvent%2Eon%28this%2E%5FdragStartTarget%2Co%2EDraggable%2ESTART%5Bt%5D%2Cthis%2E%5FonDown%2Cthis%29%3Bthis%2E%5Fenabled%3D%210%7D%7D%2Cdisable%3Afunction%28%29%7Bif%28this%2E%5Fenabled%29%7Bfor%28var%20t%3Do%2EDraggable%2ESTART%2Elength%2D1%3Bt%3E%3D0%3Bt%2D%2D%29o%2EDomEvent%2Eoff%28this%2E%5FdragStartTarget%2Co%2EDraggable%2ESTART%5Bt%5D%2Cthis%2E%5FonDown%2Cthis%29%3Bthis%2E%5Fenabled%3D%211%2Cthis%2E%5Fmoved%3D%211%7D%7D%2C%5FonDown%3Afunction%28t%29%7Bif%28this%2E%5Fmoved%3D%211%2C%21%28t%2EshiftKey%7C%7C1%21%3D%3Dt%2Ewhich%26%261%21%3D%3Dt%2Ebutton%26%26%21t%2Etouches%7C%7C%28o%2EDomEvent%2EstopPropagation%28t%29%2Co%2EDraggable%2E%5Fdisabled%7C%7C%28o%2EDomUtil%2EdisableImageDrag%28%29%2Co%2EDomUtil%2EdisableTextSelection%28%29%2Cthis%2E%5Fmoving%29%29%29%29%7Bvar%20i%3Dt%2Etouches%3Ft%2Etouches%5B0%5D%3At%3Bthis%2E%5FstartPoint%3Dnew%20o%2EPoint%28i%2EclientX%2Ci%2EclientY%29%2Cthis%2E%5FstartPos%3Dthis%2E%5FnewPos%3Do%2EDomUtil%2EgetPosition%28this%2E%5Felement%29%2Co%2EDomEvent%2Eon%28e%2Co%2EDraggable%2EMOVE%5Bt%2Etype%5D%2Cthis%2E%5FonMove%2Cthis%29%2Eon%28e%2Co%2EDraggable%2EEND%5Bt%2Etype%5D%2Cthis%2E%5FonUp%2Cthis%29%7D%7D%2C%5FonMove%3Afunction%28t%29%7Bif%28t%2Etouches%26%26t%2Etouches%2Elength%3E1%29return%20void%28this%2E%5Fmoved%3D%210%29%3Bvar%20i%3Dt%2Etouches%26%261%3D%3D%3Dt%2Etouches%2Elength%3Ft%2Etouches%5B0%5D%3At%2Cn%3Dnew%20o%2EPoint%28i%2EclientX%2Ci%2EclientY%29%2Cs%3Dn%2Esubtract%28this%2E%5FstartPoint%29%3B%28s%2Ex%7C%7Cs%2Ey%29%26%26%28o%2EBrowser%2Etouch%26%26Math%2Eabs%28s%2Ex%29%2BMath%2Eabs%28s%2Ey%29%3C3%7C%7C%28o%2EDomEvent%2EpreventDefault%28t%29%2Cthis%2E%5Fmoved%7C%7C%28this%2Efire%28%22dragstart%22%29%2Cthis%2E%5Fmoved%3D%210%2Cthis%2E%5FstartPos%3Do%2EDomUtil%2EgetPosition%28this%2E%5Felement%29%2Esubtract%28s%29%2Co%2EDomUtil%2EaddClass%28e%2Ebody%2C%22leaflet%2Ddragging%22%29%2Cthis%2E%5FlastTarget%3Dt%2Etarget%7C%7Ct%2EsrcElement%2Co%2EDomUtil%2EaddClass%28this%2E%5FlastTarget%2C%22leaflet%2Ddrag%2Dtarget%22%29%29%2Cthis%2E%5FnewPos%3Dthis%2E%5FstartPos%2Eadd%28s%29%2Cthis%2E%5Fmoving%3D%210%2Co%2EUtil%2EcancelAnimFrame%28this%2E%5FanimRequest%29%2Cthis%2E%5FanimRequest%3Do%2EUtil%2ErequestAnimFrame%28this%2E%5FupdatePosition%2Cthis%2C%210%2Cthis%2E%5FdragStartTarget%29%29%29%7D%2C%5FupdatePosition%3Afunction%28%29%7Bthis%2Efire%28%22predrag%22%29%2Co%2EDomUtil%2EsetPosition%28this%2E%5Felement%2Cthis%2E%5FnewPos%29%2Cthis%2Efire%28%22drag%22%29%7D%2C%5FonUp%3Afunction%28%29%7Bo%2EDomUtil%2EremoveClass%28e%2Ebody%2C%22leaflet%2Ddragging%22%29%2Cthis%2E%5FlastTarget%26%26%28o%2EDomUtil%2EremoveClass%28this%2E%5FlastTarget%2C%22leaflet%2Ddrag%2Dtarget%22%29%2Cthis%2E%5FlastTarget%3Dnull%29%3Bfor%28var%20t%20in%20o%2EDraggable%2EMOVE%29o%2EDomEvent%2Eoff%28e%2Co%2EDraggable%2EMOVE%5Bt%5D%2Cthis%2E%5FonMove%29%2Eoff%28e%2Co%2EDraggable%2EEND%5Bt%5D%2Cthis%2E%5FonUp%29%3Bo%2EDomUtil%2EenableImageDrag%28%29%2Co%2EDomUtil%2EenableTextSelection%28%29%2Cthis%2E%5Fmoved%26%26this%2E%5Fmoving%26%26%28o%2EUtil%2EcancelAnimFrame%28this%2E%5FanimRequest%29%2Cthis%2Efire%28%22dragend%22%2C%7Bdistance%3Athis%2E%5FnewPos%2EdistanceTo%28this%2E%5FstartPos%29%7D%29%29%2Cthis%2E%5Fmoving%3D%211%7D%7D%29%2Co%2EHandler%3Do%2EClass%2Eextend%28%7Binitialize%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%7D%2Cenable%3Afunction%28%29%7Bthis%2E%5Fenabled%7C%7C%28this%2E%5Fenabled%3D%210%2Cthis%2EaddHooks%28%29%29%7D%2Cdisable%3Afunction%28%29%7Bthis%2E%5Fenabled%26%26%28this%2E%5Fenabled%3D%211%2Cthis%2EremoveHooks%28%29%29%7D%2Cenabled%3Afunction%28%29%7Breturn%21%21this%2E%5Fenabled%7D%7D%29%2Co%2EMap%2EmergeOptions%28%7Bdragging%3A%210%2Cinertia%3A%21o%2EBrowser%2Eandroid23%2CinertiaDeceleration%3A3400%2CinertiaMaxSpeed%3A1%2F0%2CinertiaThreshold%3Ao%2EBrowser%2Etouch%3F32%3A18%2CeaseLinearity%3A%2E25%2CworldCopyJump%3A%211%7D%29%2Co%2EMap%2EDrag%3Do%2EHandler%2Eextend%28%7BaddHooks%3Afunction%28%29%7Bif%28%21this%2E%5Fdraggable%29%7Bvar%20t%3Dthis%2E%5Fmap%3Bthis%2E%5Fdraggable%3Dnew%20o%2EDraggable%28t%2E%5FmapPane%2Ct%2E%5Fcontainer%29%2Cthis%2E%5Fdraggable%2Eon%28%7Bdragstart%3Athis%2E%5FonDragStart%2Cdrag%3Athis%2E%5FonDrag%2Cdragend%3Athis%2E%5FonDragEnd%7D%2Cthis%29%2Ct%2Eoptions%2EworldCopyJump%26%26%28this%2E%5Fdraggable%2Eon%28%22predrag%22%2Cthis%2E%5FonPreDrag%2Cthis%29%2Ct%2Eon%28%22viewreset%22%2Cthis%2E%5FonViewReset%2Cthis%29%2Ct%2EwhenReady%28this%2E%5FonViewReset%2Cthis%29%29%7Dthis%2E%5Fdraggable%2Eenable%28%29%7D%2CremoveHooks%3Afunction%28%29%7Bthis%2E%5Fdraggable%2Edisable%28%29%7D%2Cmoved%3Afunction%28%29%7Breturn%20this%2E%5Fdraggable%26%26this%2E%5Fdraggable%2E%5Fmoved%7D%2C%5FonDragStart%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%3Bt%2E%5FpanAnim%26%26t%2E%5FpanAnim%2Estop%28%29%2Ct%2Efire%28%22movestart%22%29%2Efire%28%22dragstart%22%29%2Ct%2Eoptions%2Einertia%26%26%28this%2E%5Fpositions%3D%5B%5D%2Cthis%2E%5Ftimes%3D%5B%5D%29%7D%2C%5FonDrag%3Afunction%28%29%7Bif%28this%2E%5Fmap%2Eoptions%2Einertia%29%7Bvar%20t%3Dthis%2E%5FlastTime%3D%2Bnew%20Date%2Ce%3Dthis%2E%5FlastPos%3Dthis%2E%5Fdraggable%2E%5FnewPos%3Bthis%2E%5Fpositions%2Epush%28e%29%2Cthis%2E%5Ftimes%2Epush%28t%29%2Ct%2Dthis%2E%5Ftimes%5B0%5D%3E200%26%26%28this%2E%5Fpositions%2Eshift%28%29%2Cthis%2E%5Ftimes%2Eshift%28%29%29%7Dthis%2E%5Fmap%2Efire%28%22move%22%29%2Efire%28%22drag%22%29%7D%2C%5FonViewReset%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2EgetSize%28%29%2E%5FdivideBy%282%29%2Ce%3Dthis%2E%5Fmap%2ElatLngToLayerPoint%28%5B0%2C0%5D%29%3Bthis%2E%5FinitialWorldOffset%3De%2Esubtract%28t%29%2Ex%2Cthis%2E%5FworldWidth%3Dthis%2E%5Fmap%2Eproject%28%5B0%2C180%5D%29%2Ex%7D%2C%5FonPreDrag%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FworldWidth%2Ce%3DMath%2Eround%28t%2F2%29%2Ci%3Dthis%2E%5FinitialWorldOffset%2Cn%3Dthis%2E%5Fdraggable%2E%5FnewPos%2Ex%2Co%3D%28n%2De%2Bi%29%25t%2Be%2Di%2Cs%3D%28n%2Be%2Bi%29%25t%2De%2Di%2Ca%3DMath%2Eabs%28o%2Bi%29%3CMath%2Eabs%28s%2Bi%29%3Fo%3As%3Bthis%2E%5Fdraggable%2E%5FnewPos%2Ex%3Da%7D%2C%5FonDragEnd%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%2Ci%3De%2Eoptions%2Cn%3D%2Bnew%20Date%2Dthis%2E%5FlastTime%2Cs%3D%21i%2Einertia%7C%7Cn%3Ei%2EinertiaThreshold%7C%7C%21this%2E%5Fpositions%5B0%5D%3Bif%28e%2Efire%28%22dragend%22%2Ct%29%2Cs%29e%2Efire%28%22moveend%22%29%3Belse%7Bvar%20a%3Dthis%2E%5FlastPos%2Esubtract%28this%2E%5Fpositions%5B0%5D%29%2Cr%3D%28this%2E%5FlastTime%2Bn%2Dthis%2E%5Ftimes%5B0%5D%29%2F1e3%2Ch%3Di%2EeaseLinearity%2Cl%3Da%2EmultiplyBy%28h%2Fr%29%2Cu%3Dl%2EdistanceTo%28%5B0%2C0%5D%29%2Cc%3DMath%2Emin%28i%2EinertiaMaxSpeed%2Cu%29%2Cd%3Dl%2EmultiplyBy%28c%2Fu%29%2Cp%3Dc%2F%28i%2EinertiaDeceleration%2Ah%29%2C%5F%3Dd%2EmultiplyBy%28%2Dp%2F2%29%2Eround%28%29%3B%5F%2Ex%26%26%5F%2Ey%3F%28%5F%3De%2E%5FlimitOffset%28%5F%2Ce%2Eoptions%2EmaxBounds%29%2Co%2EUtil%2ErequestAnimFrame%28function%28%29%7Be%2EpanBy%28%5F%2C%7Bduration%3Ap%2CeaseLinearity%3Ah%2CnoMoveStart%3A%210%7D%29%7D%29%29%3Ae%2Efire%28%22moveend%22%29%7D%7D%7D%29%2Co%2EMap%2EaddInitHook%28%22addHandler%22%2C%22dragging%22%2Co%2EMap%2EDrag%29%2Co%2EMap%2EmergeOptions%28%7BdoubleClickZoom%3A%210%7D%29%2Co%2EMap%2EDoubleClickZoom%3Do%2EHandler%2Eextend%28%7BaddHooks%3Afunction%28%29%7Bthis%2E%5Fmap%2Eon%28%22dblclick%22%2Cthis%2E%5FonDoubleClick%2Cthis%29%7D%2CremoveHooks%3Afunction%28%29%7Bthis%2E%5Fmap%2Eoff%28%22dblclick%22%2Cthis%2E%5FonDoubleClick%2Cthis%29%7D%2C%5FonDoubleClick%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%2Ci%3De%2EgetZoom%28%29%2B%28t%2EoriginalEvent%2EshiftKey%3F%2D1%3A1%29%3B%22center%22%3D%3D%3De%2Eoptions%2EdoubleClickZoom%3Fe%2EsetZoom%28i%29%3Ae%2EsetZoomAround%28t%2EcontainerPoint%2Ci%29%7D%7D%29%2Co%2EMap%2EaddInitHook%28%22addHandler%22%2C%22doubleClickZoom%22%2Co%2EMap%2EDoubleClickZoom%29%2Co%2EMap%2EmergeOptions%28%7BscrollWheelZoom%3A%210%7D%29%2Co%2EMap%2EScrollWheelZoom%3Do%2EHandler%2Eextend%28%7BaddHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eon%28this%2E%5Fmap%2E%5Fcontainer%2C%22mousewheel%22%2Cthis%2E%5FonWheelScroll%2Cthis%29%2Co%2EDomEvent%2Eon%28this%2E%5Fmap%2E%5Fcontainer%2C%22MozMousePixelScroll%22%2Co%2EDomEvent%2EpreventDefault%29%2Cthis%2E%5Fdelta%3D0%7D%2CremoveHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eoff%28this%2E%5Fmap%2E%5Fcontainer%2C%22mousewheel%22%2Cthis%2E%5FonWheelScroll%29%2Co%2EDomEvent%2Eoff%28this%2E%5Fmap%2E%5Fcontainer%2C%22MozMousePixelScroll%22%2Co%2EDomEvent%2EpreventDefault%29%7D%2C%5FonWheelScroll%3Afunction%28t%29%7Bvar%20e%3Do%2EDomEvent%2EgetWheelDelta%28t%29%3Bthis%2E%5Fdelta%2B%3De%2Cthis%2E%5FlastMousePos%3Dthis%2E%5Fmap%2EmouseEventToContainerPoint%28t%29%2Cthis%2E%5FstartTime%7C%7C%28this%2E%5FstartTime%3D%2Bnew%20Date%29%3Bvar%20i%3DMath%2Emax%2840%2D%28%2Bnew%20Date%2Dthis%2E%5FstartTime%29%2C0%29%3BclearTimeout%28this%2E%5Ftimer%29%2Cthis%2E%5Ftimer%3DsetTimeout%28o%2Ebind%28this%2E%5FperformZoom%2Cthis%29%2Ci%29%2Co%2EDomEvent%2EpreventDefault%28t%29%2Co%2EDomEvent%2EstopPropagation%28t%29%7D%2C%5FperformZoom%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2Ce%3Dthis%2E%5Fdelta%2Ci%3Dt%2EgetZoom%28%29%3Be%3De%3E0%3FMath%2Eceil%28e%29%3AMath%2Efloor%28e%29%2Ce%3DMath%2Emax%28Math%2Emin%28e%2C4%29%2C%2D4%29%2Ce%3Dt%2E%5FlimitZoom%28i%2Be%29%2Di%2Cthis%2E%5Fdelta%3D0%2Cthis%2E%5FstartTime%3Dnull%2Ce%26%26%28%22center%22%3D%3D%3Dt%2Eoptions%2EscrollWheelZoom%3Ft%2EsetZoom%28i%2Be%29%3At%2EsetZoomAround%28this%2E%5FlastMousePos%2Ci%2Be%29%29%7D%7D%29%2Co%2EMap%2EaddInitHook%28%22addHandler%22%2C%22scrollWheelZoom%22%2Co%2EMap%2EScrollWheelZoom%29%2Co%2Eextend%28o%2EDomEvent%2C%7B%5Ftouchstart%3Ao%2EBrowser%2EmsPointer%3F%22MSPointerDown%22%3Ao%2EBrowser%2Epointer%3F%22pointerdown%22%3A%22touchstart%22%2C%5Ftouchend%3Ao%2EBrowser%2EmsPointer%3F%22MSPointerUp%22%3Ao%2EBrowser%2Epointer%3F%22pointerup%22%3A%22touchend%22%2CaddDoubleTapListener%3Afunction%28t%2Ci%2Cn%29%7Bfunction%20s%28t%29%7Bvar%20e%3Bif%28o%2EBrowser%2Epointer%3F%28%5F%2Epush%28t%2EpointerId%29%2Ce%3D%5F%2Elength%29%3Ae%3Dt%2Etouches%2Elength%2C%21%28e%3E1%29%29%7Bvar%20i%3DDate%2Enow%28%29%2Cn%3Di%2D%28r%7C%7Ci%29%3Bh%3Dt%2Etouches%3Ft%2Etouches%5B0%5D%3At%2Cl%3Dn%3E0%26%26u%3E%3Dn%2Cr%3Di%7D%7Dfunction%20a%28t%29%7Bif%28o%2EBrowser%2Epointer%29%7Bvar%20e%3D%5F%2EindexOf%28t%2EpointerId%29%3Bif%28%2D1%3D%3D%3De%29return%3B%5F%2Esplice%28e%2C1%29%7Dif%28l%29%7Bif%28o%2EBrowser%2Epointer%29%7Bvar%20n%2Cs%3D%7B%7D%3Bfor%28var%20a%20in%20h%29n%3Dh%5Ba%5D%2Cs%5Ba%5D%3D%22function%22%3D%3Dtypeof%20n%3Fn%2Ebind%28h%29%3An%3Bh%3Ds%7Dh%2Etype%3D%22dblclick%22%2Ci%28h%29%2Cr%3Dnull%7D%7Dvar%20r%2Ch%2Cl%3D%211%2Cu%3D250%2Cc%3D%22%5Fleaflet%5F%22%2Cd%3Dthis%2E%5Ftouchstart%2Cp%3Dthis%2E%5Ftouchend%2C%5F%3D%5B%5D%3Bt%5Bc%2Bd%2Bn%5D%3Ds%2Ct%5Bc%2Bp%2Bn%5D%3Da%3Bvar%20m%3Do%2EBrowser%2Epointer%3Fe%2EdocumentElement%3At%3Breturn%20t%2EaddEventListener%28d%2Cs%2C%211%29%2Cm%2EaddEventListener%28p%2Ca%2C%211%29%2Co%2EBrowser%2Epointer%26%26m%2EaddEventListener%28o%2EDomEvent%2EPOINTER%5FCANCEL%2Ca%2C%211%29%2Cthis%7D%2CremoveDoubleTapListener%3Afunction%28t%2Ci%29%7Bvar%20n%3D%22%5Fleaflet%5F%22%3Breturn%20t%2EremoveEventListener%28this%2E%5Ftouchstart%2Ct%5Bn%2Bthis%2E%5Ftouchstart%2Bi%5D%2C%211%29%2C%28o%2EBrowser%2Epointer%3Fe%2EdocumentElement%3At%29%2EremoveEventListener%28this%2E%5Ftouchend%2Ct%5Bn%2Bthis%2E%5Ftouchend%2Bi%5D%2C%211%29%2Co%2EBrowser%2Epointer%26%26e%2EdocumentElement%2EremoveEventListener%28o%2EDomEvent%2EPOINTER%5FCANCEL%2Ct%5Bn%2Bthis%2E%5Ftouchend%2Bi%5D%2C%211%29%2Cthis%7D%7D%29%2Co%2Eextend%28o%2EDomEvent%2C%7BPOINTER%5FDOWN%3Ao%2EBrowser%2EmsPointer%3F%22MSPointerDown%22%3A%22pointerdown%22%2CPOINTER%5FMOVE%3Ao%2EBrowser%2EmsPointer%3F%22MSPointerMove%22%3A%22pointermove%22%2CPOINTER%5FUP%3Ao%2EBrowser%2EmsPointer%3F%22MSPointerUp%22%3A%22pointerup%22%2CPOINTER%5FCANCEL%3Ao%2EBrowser%2EmsPointer%3F%22MSPointerCancel%22%3A%22pointercancel%22%2C%5Fpointers%3A%5B%5D%2C%5FpointerDocumentListener%3A%211%2CaddPointerListener%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bswitch%28e%29%7Bcase%22touchstart%22%3Areturn%20this%2EaddPointerListenerStart%28t%2Ce%2Ci%2Cn%29%3Bcase%22touchend%22%3Areturn%20this%2EaddPointerListenerEnd%28t%2Ce%2Ci%2Cn%29%3Bcase%22touchmove%22%3Areturn%20this%2EaddPointerListenerMove%28t%2Ce%2Ci%2Cn%29%3Bdefault%3Athrow%22Unknown%20touch%20event%20type%22%7D%7D%2CaddPointerListenerStart%3Afunction%28t%2Ci%2Cn%2Cs%29%7Bvar%20a%3D%22%5Fleaflet%5F%22%2Cr%3Dthis%2E%5Fpointers%2Ch%3Dfunction%28t%29%7Bo%2EDomEvent%2EpreventDefault%28t%29%3Bfor%28var%20e%3D%211%2Ci%3D0%3Bi%3Cr%2Elength%3Bi%2B%2B%29if%28r%5Bi%5D%2EpointerId%3D%3D%3Dt%2EpointerId%29%7Be%3D%210%3B%0Abreak%7De%7C%7Cr%2Epush%28t%29%2Ct%2Etouches%3Dr%2Eslice%28%29%2Ct%2EchangedTouches%3D%5Bt%5D%2Cn%28t%29%7D%3Bif%28t%5Ba%2B%22touchstart%22%2Bs%5D%3Dh%2Ct%2EaddEventListener%28this%2EPOINTER%5FDOWN%2Ch%2C%211%29%2C%21this%2E%5FpointerDocumentListener%29%7Bvar%20l%3Dfunction%28t%29%7Bfor%28var%20e%3D0%3Be%3Cr%2Elength%3Be%2B%2B%29if%28r%5Be%5D%2EpointerId%3D%3D%3Dt%2EpointerId%29%7Br%2Esplice%28e%2C1%29%3Bbreak%7D%7D%3Be%2EdocumentElement%2EaddEventListener%28this%2EPOINTER%5FUP%2Cl%2C%211%29%2Ce%2EdocumentElement%2EaddEventListener%28this%2EPOINTER%5FCANCEL%2Cl%2C%211%29%2Cthis%2E%5FpointerDocumentListener%3D%210%7Dreturn%20this%7D%2CaddPointerListenerMove%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bfunction%20o%28t%29%7Bif%28t%2EpointerType%21%3D%3Dt%2EMSPOINTER%5FTYPE%5FMOUSE%26%26%22mouse%22%21%3D%3Dt%2EpointerType%7C%7C0%21%3D%3Dt%2Ebuttons%29%7Bfor%28var%20e%3D0%3Be%3Ca%2Elength%3Be%2B%2B%29if%28a%5Be%5D%2EpointerId%3D%3D%3Dt%2EpointerId%29%7Ba%5Be%5D%3Dt%3Bbreak%7Dt%2Etouches%3Da%2Eslice%28%29%2Ct%2EchangedTouches%3D%5Bt%5D%2Ci%28t%29%7D%7Dvar%20s%3D%22%5Fleaflet%5F%22%2Ca%3Dthis%2E%5Fpointers%3Breturn%20t%5Bs%2B%22touchmove%22%2Bn%5D%3Do%2Ct%2EaddEventListener%28this%2EPOINTER%5FMOVE%2Co%2C%211%29%2Cthis%7D%2CaddPointerListenerEnd%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bvar%20o%3D%22%5Fleaflet%5F%22%2Cs%3Dthis%2E%5Fpointers%2Ca%3Dfunction%28t%29%7Bfor%28var%20e%3D0%3Be%3Cs%2Elength%3Be%2B%2B%29if%28s%5Be%5D%2EpointerId%3D%3D%3Dt%2EpointerId%29%7Bs%2Esplice%28e%2C1%29%3Bbreak%7Dt%2Etouches%3Ds%2Eslice%28%29%2Ct%2EchangedTouches%3D%5Bt%5D%2Ci%28t%29%7D%3Breturn%20t%5Bo%2B%22touchend%22%2Bn%5D%3Da%2Ct%2EaddEventListener%28this%2EPOINTER%5FUP%2Ca%2C%211%29%2Ct%2EaddEventListener%28this%2EPOINTER%5FCANCEL%2Ca%2C%211%29%2Cthis%7D%2CremovePointerListener%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%3D%22%5Fleaflet%5F%22%2Co%3Dt%5Bn%2Be%2Bi%5D%3Bswitch%28e%29%7Bcase%22touchstart%22%3At%2EremoveEventListener%28this%2EPOINTER%5FDOWN%2Co%2C%211%29%3Bbreak%3Bcase%22touchmove%22%3At%2EremoveEventListener%28this%2EPOINTER%5FMOVE%2Co%2C%211%29%3Bbreak%3Bcase%22touchend%22%3At%2EremoveEventListener%28this%2EPOINTER%5FUP%2Co%2C%211%29%2Ct%2EremoveEventListener%28this%2EPOINTER%5FCANCEL%2Co%2C%211%29%7Dreturn%20this%7D%7D%29%2Co%2EMap%2EmergeOptions%28%7BtouchZoom%3Ao%2EBrowser%2Etouch%26%26%21o%2EBrowser%2Eandroid23%2CbounceAtZoomLimits%3A%210%7D%29%2Co%2EMap%2ETouchZoom%3Do%2EHandler%2Eextend%28%7BaddHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eon%28this%2E%5Fmap%2E%5Fcontainer%2C%22touchstart%22%2Cthis%2E%5FonTouchStart%2Cthis%29%7D%2CremoveHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eoff%28this%2E%5Fmap%2E%5Fcontainer%2C%22touchstart%22%2Cthis%2E%5FonTouchStart%2Cthis%29%7D%2C%5FonTouchStart%3Afunction%28t%29%7Bvar%20i%3Dthis%2E%5Fmap%3Bif%28t%2Etouches%26%262%3D%3D%3Dt%2Etouches%2Elength%26%26%21i%2E%5FanimatingZoom%26%26%21this%2E%5Fzooming%29%7Bvar%20n%3Di%2EmouseEventToLayerPoint%28t%2Etouches%5B0%5D%29%2Cs%3Di%2EmouseEventToLayerPoint%28t%2Etouches%5B1%5D%29%2Ca%3Di%2E%5FgetCenterLayerPoint%28%29%3Bthis%2E%5FstartCenter%3Dn%2Eadd%28s%29%2E%5FdivideBy%282%29%2Cthis%2E%5FstartDist%3Dn%2EdistanceTo%28s%29%2Cthis%2E%5Fmoved%3D%211%2Cthis%2E%5Fzooming%3D%210%2Cthis%2E%5FcenterOffset%3Da%2Esubtract%28this%2E%5FstartCenter%29%2Ci%2E%5FpanAnim%26%26i%2E%5FpanAnim%2Estop%28%29%2Co%2EDomEvent%2Eon%28e%2C%22touchmove%22%2Cthis%2E%5FonTouchMove%2Cthis%29%2Eon%28e%2C%22touchend%22%2Cthis%2E%5FonTouchEnd%2Cthis%29%2Co%2EDomEvent%2EpreventDefault%28t%29%7D%7D%2C%5FonTouchMove%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%3Bif%28t%2Etouches%26%262%3D%3D%3Dt%2Etouches%2Elength%26%26this%2E%5Fzooming%29%7Bvar%20i%3De%2EmouseEventToLayerPoint%28t%2Etouches%5B0%5D%29%2Cn%3De%2EmouseEventToLayerPoint%28t%2Etouches%5B1%5D%29%3Bthis%2E%5Fscale%3Di%2EdistanceTo%28n%29%2Fthis%2E%5FstartDist%2Cthis%2E%5Fdelta%3Di%2E%5Fadd%28n%29%2E%5FdivideBy%282%29%2E%5Fsubtract%28this%2E%5FstartCenter%29%2C1%21%3D%3Dthis%2E%5Fscale%26%26%28e%2Eoptions%2EbounceAtZoomLimits%7C%7C%21%28e%2EgetZoom%28%29%3D%3D%3De%2EgetMinZoom%28%29%26%26this%2E%5Fscale%3C1%7C%7Ce%2EgetZoom%28%29%3D%3D%3De%2EgetMaxZoom%28%29%26%26this%2E%5Fscale%3E1%29%29%26%26%28this%2E%5Fmoved%7C%7C%28o%2EDomUtil%2EaddClass%28e%2E%5FmapPane%2C%22leaflet%2Dtouching%22%29%2Ce%2Efire%28%22movestart%22%29%2Efire%28%22zoomstart%22%29%2Cthis%2E%5Fmoved%3D%210%29%2Co%2EUtil%2EcancelAnimFrame%28this%2E%5FanimRequest%29%2Cthis%2E%5FanimRequest%3Do%2EUtil%2ErequestAnimFrame%28this%2E%5FupdateOnMove%2Cthis%2C%210%2Cthis%2E%5Fmap%2E%5Fcontainer%29%2Co%2EDomEvent%2EpreventDefault%28t%29%29%7D%7D%2C%5FupdateOnMove%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2Ce%3Dthis%2E%5FgetScaleOrigin%28%29%2Ci%3Dt%2ElayerPointToLatLng%28e%29%2Cn%3Dt%2EgetScaleZoom%28this%2E%5Fscale%29%3Bt%2E%5FanimateZoom%28i%2Cn%2Cthis%2E%5FstartCenter%2Cthis%2E%5Fscale%2Cthis%2E%5Fdelta%2C%211%2C%210%29%7D%2C%5FonTouchEnd%3Afunction%28%29%7Bif%28%21this%2E%5Fmoved%7C%7C%21this%2E%5Fzooming%29return%20void%28this%2E%5Fzooming%3D%211%29%3Bvar%20t%3Dthis%2E%5Fmap%3Bthis%2E%5Fzooming%3D%211%2Co%2EDomUtil%2EremoveClass%28t%2E%5FmapPane%2C%22leaflet%2Dtouching%22%29%2Co%2EUtil%2EcancelAnimFrame%28this%2E%5FanimRequest%29%2Co%2EDomEvent%2Eoff%28e%2C%22touchmove%22%2Cthis%2E%5FonTouchMove%29%2Eoff%28e%2C%22touchend%22%2Cthis%2E%5FonTouchEnd%29%3Bvar%20i%3Dthis%2E%5FgetScaleOrigin%28%29%2Cn%3Dt%2ElayerPointToLatLng%28i%29%2Cs%3Dt%2EgetZoom%28%29%2Ca%3Dt%2EgetScaleZoom%28this%2E%5Fscale%29%2Ds%2Cr%3Da%3E0%3FMath%2Eceil%28a%29%3AMath%2Efloor%28a%29%2Ch%3Dt%2E%5FlimitZoom%28s%2Br%29%2Cl%3Dt%2EgetZoomScale%28h%29%2Fthis%2E%5Fscale%3Bt%2E%5FanimateZoom%28n%2Ch%2Ci%2Cl%29%7D%2C%5FgetScaleOrigin%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FcenterOffset%2Esubtract%28this%2E%5Fdelta%29%2EdivideBy%28this%2E%5Fscale%29%3Breturn%20this%2E%5FstartCenter%2Eadd%28t%29%7D%7D%29%2Co%2EMap%2EaddInitHook%28%22addHandler%22%2C%22touchZoom%22%2Co%2EMap%2ETouchZoom%29%2Co%2EMap%2EmergeOptions%28%7Btap%3A%210%2CtapTolerance%3A15%7D%29%2Co%2EMap%2ETap%3Do%2EHandler%2Eextend%28%7BaddHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eon%28this%2E%5Fmap%2E%5Fcontainer%2C%22touchstart%22%2Cthis%2E%5FonDown%2Cthis%29%7D%2CremoveHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eoff%28this%2E%5Fmap%2E%5Fcontainer%2C%22touchstart%22%2Cthis%2E%5FonDown%2Cthis%29%7D%2C%5FonDown%3Afunction%28t%29%7Bif%28t%2Etouches%29%7Bif%28o%2EDomEvent%2EpreventDefault%28t%29%2Cthis%2E%5FfireClick%3D%210%2Ct%2Etouches%2Elength%3E1%29return%20this%2E%5FfireClick%3D%211%2Cvoid%20clearTimeout%28this%2E%5FholdTimeout%29%3Bvar%20i%3Dt%2Etouches%5B0%5D%2Cn%3Di%2Etarget%3Bthis%2E%5FstartPos%3Dthis%2E%5FnewPos%3Dnew%20o%2EPoint%28i%2EclientX%2Ci%2EclientY%29%2Cn%2EtagName%26%26%22a%22%3D%3D%3Dn%2EtagName%2EtoLowerCase%28%29%26%26o%2EDomUtil%2EaddClass%28n%2C%22leaflet%2Dactive%22%29%2Cthis%2E%5FholdTimeout%3DsetTimeout%28o%2Ebind%28function%28%29%7Bthis%2E%5FisTapValid%28%29%26%26%28this%2E%5FfireClick%3D%211%2Cthis%2E%5FonUp%28%29%2Cthis%2E%5FsimulateEvent%28%22contextmenu%22%2Ci%29%29%7D%2Cthis%29%2C1e3%29%2Co%2EDomEvent%2Eon%28e%2C%22touchmove%22%2Cthis%2E%5FonMove%2Cthis%29%2Eon%28e%2C%22touchend%22%2Cthis%2E%5FonUp%2Cthis%29%7D%7D%2C%5FonUp%3Afunction%28t%29%7Bif%28clearTimeout%28this%2E%5FholdTimeout%29%2Co%2EDomEvent%2Eoff%28e%2C%22touchmove%22%2Cthis%2E%5FonMove%2Cthis%29%2Eoff%28e%2C%22touchend%22%2Cthis%2E%5FonUp%2Cthis%29%2Cthis%2E%5FfireClick%26%26t%26%26t%2EchangedTouches%29%7Bvar%20i%3Dt%2EchangedTouches%5B0%5D%2Cn%3Di%2Etarget%3Bn%26%26n%2EtagName%26%26%22a%22%3D%3D%3Dn%2EtagName%2EtoLowerCase%28%29%26%26o%2EDomUtil%2EremoveClass%28n%2C%22leaflet%2Dactive%22%29%2Cthis%2E%5FisTapValid%28%29%26%26this%2E%5FsimulateEvent%28%22click%22%2Ci%29%7D%7D%2C%5FisTapValid%3Afunction%28%29%7Breturn%20this%2E%5FnewPos%2EdistanceTo%28this%2E%5FstartPos%29%3C%3Dthis%2E%5Fmap%2Eoptions%2EtapTolerance%7D%2C%5FonMove%3Afunction%28t%29%7Bvar%20e%3Dt%2Etouches%5B0%5D%3Bthis%2E%5FnewPos%3Dnew%20o%2EPoint%28e%2EclientX%2Ce%2EclientY%29%7D%2C%5FsimulateEvent%3Afunction%28i%2Cn%29%7Bvar%20o%3De%2EcreateEvent%28%22MouseEvents%22%29%3Bo%2E%5Fsimulated%3D%210%2Cn%2Etarget%2E%5FsimulatedClick%3D%210%2Co%2EinitMouseEvent%28i%2C%210%2C%210%2Ct%2C1%2Cn%2EscreenX%2Cn%2EscreenY%2Cn%2EclientX%2Cn%2EclientY%2C%211%2C%211%2C%211%2C%211%2C0%2Cnull%29%2Cn%2Etarget%2EdispatchEvent%28o%29%7D%7D%29%2Co%2EBrowser%2Etouch%26%26%21o%2EBrowser%2Epointer%26%26o%2EMap%2EaddInitHook%28%22addHandler%22%2C%22tap%22%2Co%2EMap%2ETap%29%2Co%2EMap%2EmergeOptions%28%7BboxZoom%3A%210%7D%29%2Co%2EMap%2EBoxZoom%3Do%2EHandler%2Eextend%28%7Binitialize%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%2Cthis%2E%5Fcontainer%3Dt%2E%5Fcontainer%2Cthis%2E%5Fpane%3Dt%2E%5Fpanes%2EoverlayPane%2Cthis%2E%5Fmoved%3D%211%7D%2CaddHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eon%28this%2E%5Fcontainer%2C%22mousedown%22%2Cthis%2E%5FonMouseDown%2Cthis%29%7D%2CremoveHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eoff%28this%2E%5Fcontainer%2C%22mousedown%22%2Cthis%2E%5FonMouseDown%29%2Cthis%2E%5Fmoved%3D%211%7D%2Cmoved%3Afunction%28%29%7Breturn%20this%2E%5Fmoved%7D%2C%5FonMouseDown%3Afunction%28t%29%7Breturn%20this%2E%5Fmoved%3D%211%2C%21t%2EshiftKey%7C%7C1%21%3D%3Dt%2Ewhich%26%261%21%3D%3Dt%2Ebutton%3F%211%3A%28o%2EDomUtil%2EdisableTextSelection%28%29%2Co%2EDomUtil%2EdisableImageDrag%28%29%2Cthis%2E%5FstartLayerPoint%3Dthis%2E%5Fmap%2EmouseEventToLayerPoint%28t%29%2Cvoid%20o%2EDomEvent%2Eon%28e%2C%22mousemove%22%2Cthis%2E%5FonMouseMove%2Cthis%29%2Eon%28e%2C%22mouseup%22%2Cthis%2E%5FonMouseUp%2Cthis%29%2Eon%28e%2C%22keydown%22%2Cthis%2E%5FonKeyDown%2Cthis%29%29%7D%2C%5FonMouseMove%3Afunction%28t%29%7Bthis%2E%5Fmoved%7C%7C%28this%2E%5Fbox%3Do%2EDomUtil%2Ecreate%28%22div%22%2C%22leaflet%2Dzoom%2Dbox%22%2Cthis%2E%5Fpane%29%2Co%2EDomUtil%2EsetPosition%28this%2E%5Fbox%2Cthis%2E%5FstartLayerPoint%29%2Cthis%2E%5Fcontainer%2Estyle%2Ecursor%3D%22crosshair%22%2Cthis%2E%5Fmap%2Efire%28%22boxzoomstart%22%29%29%3Bvar%20e%3Dthis%2E%5FstartLayerPoint%2Ci%3Dthis%2E%5Fbox%2Cn%3Dthis%2E%5Fmap%2EmouseEventToLayerPoint%28t%29%2Cs%3Dn%2Esubtract%28e%29%2Ca%3Dnew%20o%2EPoint%28Math%2Emin%28n%2Ex%2Ce%2Ex%29%2CMath%2Emin%28n%2Ey%2Ce%2Ey%29%29%3Bo%2EDomUtil%2EsetPosition%28i%2Ca%29%2Cthis%2E%5Fmoved%3D%210%2Ci%2Estyle%2Ewidth%3DMath%2Emax%280%2CMath%2Eabs%28s%2Ex%29%2D4%29%2B%22px%22%2Ci%2Estyle%2Eheight%3DMath%2Emax%280%2CMath%2Eabs%28s%2Ey%29%2D4%29%2B%22px%22%7D%2C%5Ffinish%3Afunction%28%29%7Bthis%2E%5Fmoved%26%26%28this%2E%5Fpane%2EremoveChild%28this%2E%5Fbox%29%2Cthis%2E%5Fcontainer%2Estyle%2Ecursor%3D%22%22%29%2Co%2EDomUtil%2EenableTextSelection%28%29%2Co%2EDomUtil%2EenableImageDrag%28%29%2Co%2EDomEvent%2Eoff%28e%2C%22mousemove%22%2Cthis%2E%5FonMouseMove%29%2Eoff%28e%2C%22mouseup%22%2Cthis%2E%5FonMouseUp%29%2Eoff%28e%2C%22keydown%22%2Cthis%2E%5FonKeyDown%29%7D%2C%5FonMouseUp%3Afunction%28t%29%7Bthis%2E%5Ffinish%28%29%3Bvar%20e%3Dthis%2E%5Fmap%2Ci%3De%2EmouseEventToLayerPoint%28t%29%3Bif%28%21this%2E%5FstartLayerPoint%2Eequals%28i%29%29%7Bvar%20n%3Dnew%20o%2ELatLngBounds%28e%2ElayerPointToLatLng%28this%2E%5FstartLayerPoint%29%2Ce%2ElayerPointToLatLng%28i%29%29%3Be%2EfitBounds%28n%29%2Ce%2Efire%28%22boxzoomend%22%2C%7BboxZoomBounds%3An%7D%29%7D%7D%2C%5FonKeyDown%3Afunction%28t%29%7B27%3D%3D%3Dt%2EkeyCode%26%26this%2E%5Ffinish%28%29%7D%7D%29%2Co%2EMap%2EaddInitHook%28%22addHandler%22%2C%22boxZoom%22%2Co%2EMap%2EBoxZoom%29%2Co%2EMap%2EmergeOptions%28%7Bkeyboard%3A%210%2CkeyboardPanOffset%3A80%2CkeyboardZoomOffset%3A1%7D%29%2Co%2EMap%2EKeyboard%3Do%2EHandler%2Eextend%28%7BkeyCodes%3A%7Bleft%3A%5B37%5D%2Cright%3A%5B39%5D%2Cdown%3A%5B40%5D%2Cup%3A%5B38%5D%2CzoomIn%3A%5B187%2C107%2C61%2C171%5D%2CzoomOut%3A%5B189%2C109%2C173%5D%7D%2Cinitialize%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%2Cthis%2E%5FsetPanOffset%28t%2Eoptions%2EkeyboardPanOffset%29%2Cthis%2E%5FsetZoomOffset%28t%2Eoptions%2EkeyboardZoomOffset%29%7D%2CaddHooks%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2E%5Fcontainer%3B%2D1%3D%3D%3Dt%2EtabIndex%26%26%28t%2EtabIndex%3D%220%22%29%2Co%2EDomEvent%2Eon%28t%2C%22focus%22%2Cthis%2E%5FonFocus%2Cthis%29%2Eon%28t%2C%22blur%22%2Cthis%2E%5FonBlur%2Cthis%29%2Eon%28t%2C%22mousedown%22%2Cthis%2E%5FonMouseDown%2Cthis%29%2Cthis%2E%5Fmap%2Eon%28%22focus%22%2Cthis%2E%5FaddHooks%2Cthis%29%2Eon%28%22blur%22%2Cthis%2E%5FremoveHooks%2Cthis%29%7D%2CremoveHooks%3Afunction%28%29%7Bthis%2E%5FremoveHooks%28%29%3Bvar%20t%3Dthis%2E%5Fmap%2E%5Fcontainer%3Bo%2EDomEvent%2Eoff%28t%2C%22focus%22%2Cthis%2E%5FonFocus%2Cthis%29%2Eoff%28t%2C%22blur%22%2Cthis%2E%5FonBlur%2Cthis%29%2Eoff%28t%2C%22mousedown%22%2Cthis%2E%5FonMouseDown%2Cthis%29%2Cthis%2E%5Fmap%2Eoff%28%22focus%22%2Cthis%2E%5FaddHooks%2Cthis%29%2Eoff%28%22blur%22%2Cthis%2E%5FremoveHooks%2Cthis%29%7D%2C%5FonMouseDown%3Afunction%28%29%7Bif%28%21this%2E%5Ffocused%29%7Bvar%20i%3De%2Ebody%2Cn%3De%2EdocumentElement%2Co%3Di%2EscrollTop%7C%7Cn%2EscrollTop%2Cs%3Di%2EscrollLeft%7C%7Cn%2EscrollLeft%3Bthis%2E%5Fmap%2E%5Fcontainer%2Efocus%28%29%2Ct%2EscrollTo%28s%2Co%29%7D%7D%2C%5FonFocus%3Afunction%28%29%7Bthis%2E%5Ffocused%3D%210%2Cthis%2E%5Fmap%2Efire%28%22focus%22%29%7D%2C%5FonBlur%3Afunction%28%29%7Bthis%2E%5Ffocused%3D%211%2Cthis%2E%5Fmap%2Efire%28%22blur%22%29%7D%2C%5FsetPanOffset%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%3Dthis%2E%5FpanKeys%3D%7B%7D%2Co%3Dthis%2EkeyCodes%3Bfor%28e%3D0%2Ci%3Do%2Eleft%2Elength%3Bi%3Ee%3Be%2B%2B%29n%5Bo%2Eleft%5Be%5D%5D%3D%5B%2D1%2At%2C0%5D%3Bfor%28e%3D0%2Ci%3Do%2Eright%2Elength%3Bi%3Ee%3Be%2B%2B%29n%5Bo%2Eright%5Be%5D%5D%3D%5Bt%2C0%5D%3Bfor%28e%3D0%2Ci%3Do%2Edown%2Elength%3Bi%3Ee%3Be%2B%2B%29n%5Bo%2Edown%5Be%5D%5D%3D%5B0%2Ct%5D%3Bfor%28e%3D0%2Ci%3Do%2Eup%2Elength%3Bi%3Ee%3Be%2B%2B%29n%5Bo%2Eup%5Be%5D%5D%3D%5B0%2C%2D1%2At%5D%7D%2C%5FsetZoomOffset%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%3Dthis%2E%5FzoomKeys%3D%7B%7D%2Co%3Dthis%2EkeyCodes%3Bfor%28e%3D0%2Ci%3Do%2EzoomIn%2Elength%3Bi%3Ee%3Be%2B%2B%29n%5Bo%2EzoomIn%5Be%5D%5D%3Dt%3Bfor%28e%3D0%2Ci%3Do%2EzoomOut%2Elength%3Bi%3Ee%3Be%2B%2B%29n%5Bo%2EzoomOut%5Be%5D%5D%3D%2Dt%7D%2C%5FaddHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eon%28e%2C%22keydown%22%2Cthis%2E%5FonKeyDown%2Cthis%29%7D%2C%5FremoveHooks%3Afunction%28%29%7Bo%2EDomEvent%2Eoff%28e%2C%22keydown%22%2Cthis%2E%5FonKeyDown%2Cthis%29%7D%2C%5FonKeyDown%3Afunction%28t%29%7Bvar%20e%3Dt%2EkeyCode%2Ci%3Dthis%2E%5Fmap%3Bif%28e%20in%20this%2E%5FpanKeys%29%7Bif%28i%2E%5FpanAnim%26%26i%2E%5FpanAnim%2E%5FinProgress%29return%3Bi%2EpanBy%28this%2E%5FpanKeys%5Be%5D%29%2Ci%2Eoptions%2EmaxBounds%26%26i%2EpanInsideBounds%28i%2Eoptions%2EmaxBounds%29%7Delse%7Bif%28%21%28e%20in%20this%2E%5FzoomKeys%29%29return%3Bi%2EsetZoom%28i%2EgetZoom%28%29%2Bthis%2E%5FzoomKeys%5Be%5D%29%7Do%2EDomEvent%2Estop%28t%29%7D%7D%29%2Co%2EMap%2EaddInitHook%28%22addHandler%22%2C%22keyboard%22%2Co%2EMap%2EKeyboard%29%2Co%2EHandler%2EMarkerDrag%3Do%2EHandler%2Eextend%28%7Binitialize%3Afunction%28t%29%7Bthis%2E%5Fmarker%3Dt%7D%2CaddHooks%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmarker%2E%5Ficon%3Bthis%2E%5Fdraggable%7C%7C%28this%2E%5Fdraggable%3Dnew%20o%2EDraggable%28t%2Ct%29%29%2Cthis%2E%5Fdraggable%2Eon%28%22dragstart%22%2Cthis%2E%5FonDragStart%2Cthis%29%2Eon%28%22drag%22%2Cthis%2E%5FonDrag%2Cthis%29%2Eon%28%22dragend%22%2Cthis%2E%5FonDragEnd%2Cthis%29%2Cthis%2E%5Fdraggable%2Eenable%28%29%2Co%2EDomUtil%2EaddClass%28this%2E%5Fmarker%2E%5Ficon%2C%22leaflet%2Dmarker%2Ddraggable%22%29%7D%2CremoveHooks%3Afunction%28%29%7Bthis%2E%5Fdraggable%2Eoff%28%22dragstart%22%2Cthis%2E%5FonDragStart%2Cthis%29%2Eoff%28%22drag%22%2Cthis%2E%5FonDrag%2Cthis%29%2Eoff%28%22dragend%22%2Cthis%2E%5FonDragEnd%2Cthis%29%2Cthis%2E%5Fdraggable%2Edisable%28%29%2Co%2EDomUtil%2EremoveClass%28this%2E%5Fmarker%2E%5Ficon%2C%22leaflet%2Dmarker%2Ddraggable%22%29%7D%2Cmoved%3Afunction%28%29%7Breturn%20this%2E%5Fdraggable%26%26this%2E%5Fdraggable%2E%5Fmoved%7D%2C%5FonDragStart%3Afunction%28%29%7Bthis%2E%5Fmarker%2EclosePopup%28%29%2Efire%28%22movestart%22%29%2Efire%28%22dragstart%22%29%7D%2C%5FonDrag%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmarker%2Ce%3Dt%2E%5Fshadow%2Ci%3Do%2EDomUtil%2EgetPosition%28t%2E%5Ficon%29%2Cn%3Dt%2E%5Fmap%2ElayerPointToLatLng%28i%29%3Be%26%26o%2EDomUtil%2EsetPosition%28e%2Ci%29%2Ct%2E%5Flatlng%3Dn%2Ct%2Efire%28%22move%22%2C%7Blatlng%3An%7D%29%2Efire%28%22drag%22%29%7D%2C%5FonDragEnd%3Afunction%28t%29%7Bthis%2E%5Fmarker%2Efire%28%22moveend%22%29%2Efire%28%22dragend%22%2Ct%29%7D%7D%29%2Co%2EControl%3Do%2EClass%2Eextend%28%7Boptions%3A%7Bposition%3A%22topright%22%7D%2Cinitialize%3Afunction%28t%29%7Bo%2EsetOptions%28this%2Ct%29%7D%2CgetPosition%3Afunction%28%29%7Breturn%20this%2Eoptions%2Eposition%7D%2CsetPosition%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Fmap%3Breturn%20e%26%26e%2EremoveControl%28this%29%2Cthis%2Eoptions%2Eposition%3Dt%2Ce%26%26e%2EaddControl%28this%29%2Cthis%7D%2CgetContainer%3Afunction%28%29%7Breturn%20this%2E%5Fcontainer%7D%2CaddTo%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%3Bvar%20e%3Dthis%2E%5Fcontainer%3Dthis%2EonAdd%28t%29%2Ci%3Dthis%2EgetPosition%28%29%2Cn%3Dt%2E%5FcontrolCorners%5Bi%5D%3Breturn%20o%2EDomUtil%2EaddClass%28e%2C%22leaflet%2Dcontrol%22%29%2C%2D1%21%3D%3Di%2EindexOf%28%22bottom%22%29%3Fn%2EinsertBefore%28e%2Cn%2EfirstChild%29%3An%2EappendChild%28e%29%2Cthis%7D%2CremoveFrom%3Afunction%28t%29%7Bvar%20e%3Dthis%2EgetPosition%28%29%2Ci%3Dt%2E%5FcontrolCorners%5Be%5D%3Breturn%20i%2EremoveChild%28this%2E%5Fcontainer%29%2Cthis%2E%5Fmap%3Dnull%2Cthis%2EonRemove%26%26this%2EonRemove%28t%29%2Cthis%7D%2C%5FrefocusOnMap%3Afunction%28%29%7Bthis%2E%5Fmap%26%26this%2E%5Fmap%2EgetContainer%28%29%2Efocus%28%29%7D%7D%29%2Co%2Econtrol%3Dfunction%28t%29%7Breturn%20new%20o%2EControl%28t%29%7D%2Co%2EMap%2Einclude%28%7BaddControl%3Afunction%28t%29%7Breturn%20t%2EaddTo%28this%29%2Cthis%7D%2CremoveControl%3Afunction%28t%29%7Breturn%20t%2EremoveFrom%28this%29%2Cthis%7D%2C%5FinitControlPos%3Afunction%28%29%7Bfunction%20t%28t%2Cs%29%7Bvar%20a%3Di%2Bt%2B%22%20%22%2Bi%2Bs%3Be%5Bt%2Bs%5D%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ca%2Cn%29%7Dvar%20e%3Dthis%2E%5FcontrolCorners%3D%7B%7D%2Ci%3D%22leaflet%2D%22%2Cn%3Dthis%2E%5FcontrolContainer%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ci%2B%22control%2Dcontainer%22%2Cthis%2E%5Fcontainer%29%3Bt%28%22top%22%2C%22left%22%29%2Ct%28%22top%22%2C%22right%22%29%2Ct%28%22bottom%22%2C%22left%22%29%2Ct%28%22bottom%22%2C%22right%22%29%7D%2C%5FclearControlPos%3Afunction%28%29%7Bthis%2E%5Fcontainer%2EremoveChild%28this%2E%5FcontrolContainer%29%7D%7D%29%2Co%2EControl%2EZoom%3Do%2EControl%2Eextend%28%7Boptions%3A%7Bposition%3A%22topleft%22%2CzoomInText%3A%22%2B%22%2CzoomInTitle%3A%22Zoom%20in%22%2CzoomOutText%3A%22%2D%22%2CzoomOutTitle%3A%22Zoom%20out%22%7D%2ConAdd%3Afunction%28t%29%7Bvar%20e%3D%22leaflet%2Dcontrol%2Dzoom%22%2Ci%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2B%22%20leaflet%2Dbar%22%29%3Breturn%20this%2E%5Fmap%3Dt%2Cthis%2E%5FzoomInButton%3Dthis%2E%5FcreateButton%28this%2Eoptions%2EzoomInText%2Cthis%2Eoptions%2EzoomInTitle%2Ce%2B%22%2Din%22%2Ci%2Cthis%2E%5FzoomIn%2Cthis%29%2Cthis%2E%5FzoomOutButton%3Dthis%2E%5FcreateButton%28this%2Eoptions%2EzoomOutText%2Cthis%2Eoptions%2EzoomOutTitle%2Ce%2B%22%2Dout%22%2Ci%2Cthis%2E%5FzoomOut%2Cthis%29%2Cthis%2E%5FupdateDisabled%28%29%2Ct%2Eon%28%22zoomend%20zoomlevelschange%22%2Cthis%2E%5FupdateDisabled%2Cthis%29%2Ci%7D%2ConRemove%3Afunction%28t%29%7Bt%2Eoff%28%22zoomend%20zoomlevelschange%22%2Cthis%2E%5FupdateDisabled%2Cthis%29%7D%2C%5FzoomIn%3Afunction%28t%29%7Bthis%2E%5Fmap%2EzoomIn%28t%2EshiftKey%3F3%3A1%29%7D%2C%5FzoomOut%3Afunction%28t%29%7Bthis%2E%5Fmap%2EzoomOut%28t%2EshiftKey%3F3%3A1%29%7D%2C%5FcreateButton%3Afunction%28t%2Ce%2Ci%2Cn%2Cs%2Ca%29%7Bvar%20r%3Do%2EDomUtil%2Ecreate%28%22a%22%2Ci%2Cn%29%3Br%2EinnerHTML%3Dt%2Cr%2Ehref%3D%22%23%22%2Cr%2Etitle%3De%3Bvar%20h%3Do%2EDomEvent%2EstopPropagation%3Breturn%20o%2EDomEvent%2Eon%28r%2C%22click%22%2Ch%29%2Eon%28r%2C%22mousedown%22%2Ch%29%2Eon%28r%2C%22dblclick%22%2Ch%29%2Eon%28r%2C%22click%22%2Co%2EDomEvent%2EpreventDefault%29%2Eon%28r%2C%22click%22%2Cs%2Ca%29%2Eon%28r%2C%22click%22%2Cthis%2E%5FrefocusOnMap%2Ca%29%2Cr%7D%2C%5FupdateDisabled%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2Ce%3D%22leaflet%2Ddisabled%22%3Bo%2EDomUtil%2EremoveClass%28this%2E%5FzoomInButton%2Ce%29%2Co%2EDomUtil%2EremoveClass%28this%2E%5FzoomOutButton%2Ce%29%2Ct%2E%5Fzoom%3D%3D%3Dt%2EgetMinZoom%28%29%26%26o%2EDomUtil%2EaddClass%28this%2E%5FzoomOutButton%2Ce%29%2Ct%2E%5Fzoom%3D%3D%3Dt%2EgetMaxZoom%28%29%26%26o%2EDomUtil%2EaddClass%28this%2E%5FzoomInButton%2Ce%29%7D%7D%29%2Co%2EMap%2EmergeOptions%28%7BzoomControl%3A%210%7D%29%2Co%2EMap%2EaddInitHook%28function%28%29%7Bthis%2Eoptions%2EzoomControl%26%26%28this%2EzoomControl%3Dnew%20o%2EControl%2EZoom%2Cthis%2EaddControl%28this%2EzoomControl%29%29%7D%29%2Co%2Econtrol%2Ezoom%3Dfunction%28t%29%7Breturn%20new%20o%2EControl%2EZoom%28t%29%7D%2Co%2EControl%2EAttribution%3Do%2EControl%2Eextend%28%7Boptions%3A%7Bposition%3A%22bottomright%22%2Cprefix%3A%27%3Ca%20href%3D%22http%3A%2F%2Fleafletjs%2Ecom%22%20title%3D%22A%20JS%20library%20for%20interactive%20maps%22%3ELeaflet%3C%2Fa%3E%27%7D%2Cinitialize%3Afunction%28t%29%7Bo%2EsetOptions%28this%2Ct%29%2Cthis%2E%5Fattributions%3D%7B%7D%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fcontainer%3Do%2EDomUtil%2Ecreate%28%22div%22%2C%22leaflet%2Dcontrol%2Dattribution%22%29%2Co%2EDomEvent%2EdisableClickPropagation%28this%2E%5Fcontainer%29%3Bfor%28var%20e%20in%20t%2E%5Flayers%29t%2E%5Flayers%5Be%5D%2EgetAttribution%26%26this%2EaddAttribution%28t%2E%5Flayers%5Be%5D%2EgetAttribution%28%29%29%3Breturn%20t%2Eon%28%22layeradd%22%2Cthis%2E%5FonLayerAdd%2Cthis%29%2Eon%28%22layerremove%22%2Cthis%2E%5FonLayerRemove%2Cthis%29%2Cthis%2E%5Fupdate%28%29%2Cthis%2E%5Fcontainer%7D%2ConRemove%3Afunction%28t%29%7Bt%2Eoff%28%22layeradd%22%2Cthis%2E%5FonLayerAdd%29%2Eoff%28%22layerremove%22%2Cthis%2E%5FonLayerRemove%29%7D%2CsetPrefix%3Afunction%28t%29%7Breturn%20this%2Eoptions%2Eprefix%3Dt%2Cthis%2E%5Fupdate%28%29%2Cthis%7D%2CaddAttribution%3Afunction%28t%29%7Breturn%20t%3F%28this%2E%5Fattributions%5Bt%5D%7C%7C%28this%2E%5Fattributions%5Bt%5D%3D0%29%2Cthis%2E%5Fattributions%5Bt%5D%2B%2B%2Cthis%2E%5Fupdate%28%29%2Cthis%29%3Avoid%200%7D%2CremoveAttribution%3Afunction%28t%29%7Breturn%20t%3F%28this%2E%5Fattributions%5Bt%5D%26%26%28this%2E%5Fattributions%5Bt%5D%2D%2D%2Cthis%2E%5Fupdate%28%29%29%2Cthis%29%3Avoid%200%7D%2C%5Fupdate%3Afunction%28%29%7Bif%28this%2E%5Fmap%29%7Bvar%20t%3D%5B%5D%3Bfor%28var%20e%20in%20this%2E%5Fattributions%29this%2E%5Fattributions%5Be%5D%26%26t%2Epush%28e%29%3Bvar%20i%3D%5B%5D%3Bthis%2Eoptions%2Eprefix%26%26i%2Epush%28this%2Eoptions%2Eprefix%29%2Ct%2Elength%26%26i%2Epush%28t%2Ejoin%28%22%2C%20%22%29%29%2Cthis%2E%5Fcontainer%2EinnerHTML%3Di%2Ejoin%28%22%20%7C%20%22%29%7D%7D%2C%5FonLayerAdd%3Afunction%28t%29%7Bt%2Elayer%2EgetAttribution%26%26this%2EaddAttribution%28t%2Elayer%2EgetAttribution%28%29%29%7D%2C%5FonLayerRemove%3Afunction%28t%29%7Bt%2Elayer%2EgetAttribution%26%26this%2EremoveAttribution%28t%2Elayer%2EgetAttribution%28%29%29%7D%7D%29%2Co%2EMap%2EmergeOptions%28%7BattributionControl%3A%210%7D%29%2Co%2EMap%2EaddInitHook%28function%28%29%7Bthis%2Eoptions%2EattributionControl%26%26%28this%2EattributionControl%3D%28new%20o%2EControl%2EAttribution%29%2EaddTo%28this%29%29%7D%29%2Co%2Econtrol%2Eattribution%3Dfunction%28t%29%7Breturn%20new%20o%2EControl%2EAttribution%28t%29%7D%2Co%2EControl%2EScale%3Do%2EControl%2Eextend%28%7Boptions%3A%7Bposition%3A%22bottomleft%22%2CmaxWidth%3A100%2Cmetric%3A%210%2Cimperial%3A%210%2CupdateWhenIdle%3A%211%7D%2ConAdd%3Afunction%28t%29%7Bthis%2E%5Fmap%3Dt%3Bvar%20e%3D%22leaflet%2Dcontrol%2Dscale%22%2Ci%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%29%2Cn%3Dthis%2Eoptions%3Breturn%20this%2E%5FaddScales%28n%2Ce%2Ci%29%2Ct%2Eon%28n%2EupdateWhenIdle%3F%22moveend%22%3A%22move%22%2Cthis%2E%5Fupdate%2Cthis%29%2Ct%2EwhenReady%28this%2E%5Fupdate%2Cthis%29%2Ci%7D%2ConRemove%3Afunction%28t%29%7Bt%2Eoff%28this%2Eoptions%2EupdateWhenIdle%3F%22moveend%22%3A%22move%22%2Cthis%2E%5Fupdate%2Cthis%29%7D%2C%5FaddScales%3Afunction%28t%2Ce%2Ci%29%7Bt%2Emetric%26%26%28this%2E%5FmScale%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2B%22%2Dline%22%2Ci%29%29%2Ct%2Eimperial%26%26%28this%2E%5FiScale%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ce%2B%22%2Dline%22%2Ci%29%29%7D%2C%5Fupdate%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%2EgetBounds%28%29%2Ce%3Dt%2EgetCenter%28%29%2Elat%2Ci%3D6378137%2AMath%2EPI%2AMath%2Ecos%28e%2AMath%2EPI%2F180%29%2Cn%3Di%2A%28t%2EgetNorthEast%28%29%2Elng%2Dt%2EgetSouthWest%28%29%2Elng%29%2F180%2Co%3Dthis%2E%5Fmap%2EgetSize%28%29%2Cs%3Dthis%2Eoptions%2Ca%3D0%3Bo%2Ex%3E0%26%26%28a%3Dn%2A%28s%2EmaxWidth%2Fo%2Ex%29%29%2Cthis%2E%5FupdateScales%28s%2Ca%29%7D%2C%5FupdateScales%3Afunction%28t%2Ce%29%7Bt%2Emetric%26%26e%26%26this%2E%5FupdateMetric%28e%29%2Ct%2Eimperial%26%26e%26%26this%2E%5FupdateImperial%28e%29%7D%2C%5FupdateMetric%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5FgetRoundNum%28t%29%3Bthis%2E%5FmScale%2Estyle%2Ewidth%3Dthis%2E%5FgetScaleWidth%28e%2Ft%29%2B%22px%22%2Cthis%2E%5FmScale%2EinnerHTML%3D1e3%3Ee%3Fe%2B%22%20m%22%3Ae%2F1e3%2B%22%20km%22%7D%2C%5FupdateImperial%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%2Co%3D3%2E2808399%2At%2Cs%3Dthis%2E%5FiScale%3Bo%3E5280%3F%28e%3Do%2F5280%2Ci%3Dthis%2E%5FgetRoundNum%28e%29%2Cs%2Estyle%2Ewidth%3Dthis%2E%5FgetScaleWidth%28i%2Fe%29%2B%22px%22%2Cs%2EinnerHTML%3Di%2B%22%20mi%22%29%3A%28n%3Dthis%2E%5FgetRoundNum%28o%29%2Cs%2Estyle%2Ewidth%3Dthis%2E%5FgetScaleWidth%28n%2Fo%29%2B%22px%22%2Cs%2EinnerHTML%3Dn%2B%22%20ft%22%29%7D%2C%5FgetScaleWidth%3Afunction%28t%29%7Breturn%20Math%2Eround%28this%2Eoptions%2EmaxWidth%2At%29%2D10%7D%2C%5FgetRoundNum%3Afunction%28t%29%7Bvar%20e%3DMath%2Epow%2810%2C%28Math%2Efloor%28t%29%2B%22%22%29%2Elength%2D1%29%2Ci%3Dt%2Fe%3Breturn%20i%3Di%3E%3D10%3F10%3Ai%3E%3D5%3F5%3Ai%3E%3D3%3F3%3Ai%3E%3D2%3F2%3A1%2Ce%2Ai%7D%7D%29%2Co%2Econtrol%2Escale%3Dfunction%28t%29%7Breturn%20new%20o%2EControl%2EScale%28t%29%7D%2Co%2EControl%2ELayers%3Do%2EControl%2Eextend%28%7Boptions%3A%7Bcollapsed%3A%210%2Cposition%3A%22topright%22%2CautoZIndex%3A%210%7D%2Cinitialize%3Afunction%28t%2Ce%2Ci%29%7Bo%2EsetOptions%28this%2Ci%29%2Cthis%2E%5Flayers%3D%7B%7D%2Cthis%2E%5FlastZIndex%3D0%2Cthis%2E%5FhandlingClick%3D%211%3Bfor%28var%20n%20in%20t%29this%2E%5FaddLayer%28t%5Bn%5D%2Cn%29%3Bfor%28n%20in%20e%29this%2E%5FaddLayer%28e%5Bn%5D%2Cn%2C%210%29%7D%2ConAdd%3Afunction%28t%29%7Breturn%20this%2E%5FinitLayout%28%29%2Cthis%2E%5Fupdate%28%29%2Ct%2Eon%28%22layeradd%22%2Cthis%2E%5FonLayerChange%2Cthis%29%2Eon%28%22layerremove%22%2Cthis%2E%5FonLayerChange%2Cthis%29%2Cthis%2E%5Fcontainer%7D%2ConRemove%3Afunction%28t%29%7Bt%2Eoff%28%22layeradd%22%2Cthis%2E%5FonLayerChange%2Cthis%29%2Eoff%28%22layerremove%22%2Cthis%2E%5FonLayerChange%2Cthis%29%7D%2CaddBaseLayer%3Afunction%28t%2Ce%29%7Breturn%20this%2E%5FaddLayer%28t%2Ce%29%2Cthis%2E%5Fupdate%28%29%2Cthis%7D%2CaddOverlay%3Afunction%28t%2Ce%29%7Breturn%20this%2E%5FaddLayer%28t%2Ce%2C%210%29%2Cthis%2E%5Fupdate%28%29%2Cthis%7D%2CremoveLayer%3Afunction%28t%29%7Bvar%20e%3Do%2Estamp%28t%29%3Breturn%20delete%20this%2E%5Flayers%5Be%5D%2Cthis%2E%5Fupdate%28%29%2Cthis%7D%2C%5FinitLayout%3Afunction%28%29%7Bvar%20t%3D%22leaflet%2Dcontrol%2Dlayers%22%2Ce%3Dthis%2E%5Fcontainer%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ct%29%3Be%2EsetAttribute%28%22aria%2Dhaspopup%22%2C%210%29%2Co%2EBrowser%2Etouch%3Fo%2EDomEvent%2Eon%28e%2C%22click%22%2Co%2EDomEvent%2EstopPropagation%29%3Ao%2EDomEvent%2EdisableClickPropagation%28e%29%2EdisableScrollPropagation%28e%29%3Bvar%20i%3Dthis%2E%5Fform%3Do%2EDomUtil%2Ecreate%28%22form%22%2Ct%2B%22%2Dlist%22%29%3Bif%28this%2Eoptions%2Ecollapsed%29%7Bo%2EBrowser%2Eandroid%7C%7Co%2EDomEvent%2Eon%28e%2C%22mouseover%22%2Cthis%2E%5Fexpand%2Cthis%29%2Eon%28e%2C%22mouseout%22%2Cthis%2E%5Fcollapse%2Cthis%29%3Bvar%20n%3Dthis%2E%5FlayersLink%3Do%2EDomUtil%2Ecreate%28%22a%22%2Ct%2B%22%2Dtoggle%22%2Ce%29%3Bn%2Ehref%3D%22%23%22%2Cn%2Etitle%3D%22Layers%22%2Co%2EBrowser%2Etouch%3Fo%2EDomEvent%2Eon%28n%2C%22click%22%2Co%2EDomEvent%2Estop%29%2Eon%28n%2C%22click%22%2Cthis%2E%5Fexpand%2Cthis%29%3Ao%2EDomEvent%2Eon%28n%2C%22focus%22%2Cthis%2E%5Fexpand%2Cthis%29%2Co%2EDomEvent%2Eon%28i%2C%22click%22%2Cfunction%28%29%7BsetTimeout%28o%2Ebind%28this%2E%5FonInputClick%2Cthis%29%2C0%29%7D%2Cthis%29%2Cthis%2E%5Fmap%2Eon%28%22click%22%2Cthis%2E%5Fcollapse%2Cthis%29%7Delse%20this%2E%5Fexpand%28%29%3Bthis%2E%5FbaseLayersList%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ct%2B%22%2Dbase%22%2Ci%29%2Cthis%2E%5Fseparator%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ct%2B%22%2Dseparator%22%2Ci%29%2Cthis%2E%5FoverlaysList%3Do%2EDomUtil%2Ecreate%28%22div%22%2Ct%2B%22%2Doverlays%22%2Ci%29%2Ce%2EappendChild%28i%29%7D%2C%5FaddLayer%3Afunction%28t%2Ce%2Ci%29%7Bvar%20n%3Do%2Estamp%28t%29%3Bthis%2E%5Flayers%5Bn%5D%3D%7Blayer%3At%2Cname%3Ae%2Coverlay%3Ai%7D%2Cthis%2Eoptions%2EautoZIndex%26%26t%2EsetZIndex%26%26%28this%2E%5FlastZIndex%2B%2B%2Ct%2EsetZIndex%28this%2E%5FlastZIndex%29%29%7D%2C%5Fupdate%3Afunction%28%29%7Bif%28this%2E%5Fcontainer%29%7Bthis%2E%5FbaseLayersList%2EinnerHTML%3D%22%22%2Cthis%2E%5FoverlaysList%2EinnerHTML%3D%22%22%3Bvar%20t%2Ce%2Ci%3D%211%2Cn%3D%211%3Bfor%28t%20in%20this%2E%5Flayers%29e%3Dthis%2E%5Flayers%5Bt%5D%2Cthis%2E%5FaddItem%28e%29%2Cn%3Dn%7C%7Ce%2Eoverlay%2Ci%3Di%7C%7C%21e%2Eoverlay%3Bthis%2E%5Fseparator%2Estyle%2Edisplay%3Dn%26%26i%3F%22%22%3A%22none%22%7D%7D%2C%5FonLayerChange%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5Flayers%5Bo%2Estamp%28t%2Elayer%29%5D%3Bif%28e%29%7Bthis%2E%5FhandlingClick%7C%7Cthis%2E%5Fupdate%28%29%3Bvar%20i%3De%2Eoverlay%3F%22layeradd%22%3D%3D%3Dt%2Etype%3F%22overlayadd%22%3A%22overlayremove%22%3A%22layeradd%22%3D%3D%3Dt%2Etype%3F%22baselayerchange%22%3Anull%3Bi%26%26this%2E%5Fmap%2Efire%28i%2Ce%29%7D%7D%2C%5FcreateRadioElement%3Afunction%28t%2Ci%29%7Bvar%20n%3D%27%3Cinput%20type%3D%22radio%22%20class%3D%22leaflet%2Dcontrol%2Dlayers%2Dselector%22%20name%3D%22%27%2Bt%2B%27%22%27%3Bi%26%26%28n%2B%3D%27%20checked%3D%22checked%22%27%29%2Cn%2B%3D%22%2F%3E%22%3Bvar%20o%3De%2EcreateElement%28%22div%22%29%3Breturn%20o%2EinnerHTML%3Dn%2Co%2EfirstChild%7D%2C%5FaddItem%3Afunction%28t%29%7Bvar%20i%2Cn%3De%2EcreateElement%28%22label%22%29%2Cs%3Dthis%2E%5Fmap%2EhasLayer%28t%2Elayer%29%3Bt%2Eoverlay%3F%28i%3De%2EcreateElement%28%22input%22%29%2Ci%2Etype%3D%22checkbox%22%2Ci%2EclassName%3D%22leaflet%2Dcontrol%2Dlayers%2Dselector%22%2Ci%2EdefaultChecked%3Ds%29%3Ai%3Dthis%2E%5FcreateRadioElement%28%22leaflet%2Dbase%2Dlayers%22%2Cs%29%2Ci%2ElayerId%3Do%2Estamp%28t%2Elayer%29%2Co%2EDomEvent%2Eon%28i%2C%22click%22%2Cthis%2E%5FonInputClick%2Cthis%29%3Bvar%20a%3De%2EcreateElement%28%22span%22%29%3Ba%2EinnerHTML%3D%22%20%22%2Bt%2Ename%2Cn%2EappendChild%28i%29%2Cn%2EappendChild%28a%29%3Bvar%20r%3Dt%2Eoverlay%3Fthis%2E%5FoverlaysList%3Athis%2E%5FbaseLayersList%3Breturn%20r%2EappendChild%28n%29%2Cn%7D%2C%5FonInputClick%3Afunction%28%29%7Bvar%20t%2Ce%2Ci%2Cn%3Dthis%2E%5Fform%2EgetElementsByTagName%28%22input%22%29%2Co%3Dn%2Elength%3Bfor%28this%2E%5FhandlingClick%3D%210%2Ct%3D0%3Bo%3Et%3Bt%2B%2B%29e%3Dn%5Bt%5D%2Ci%3Dthis%2E%5Flayers%5Be%2ElayerId%5D%2Ce%2Echecked%26%26%21this%2E%5Fmap%2EhasLayer%28i%2Elayer%29%3Fthis%2E%5Fmap%2EaddLayer%28i%2Elayer%29%3A%21e%2Echecked%26%26this%2E%5Fmap%2EhasLayer%28i%2Elayer%29%26%26this%2E%5Fmap%2EremoveLayer%28i%2Elayer%29%3Bthis%2E%5FhandlingClick%3D%211%2Cthis%2E%5FrefocusOnMap%28%29%7D%2C%5Fexpand%3Afunction%28%29%7Bo%2EDomUtil%2EaddClass%28this%2E%5Fcontainer%2C%22leaflet%2Dcontrol%2Dlayers%2Dexpanded%22%29%7D%2C%5Fcollapse%3Afunction%28%29%7Bthis%2E%5Fcontainer%2EclassName%3Dthis%2E%5Fcontainer%2EclassName%2Ereplace%28%22%20leaflet%2Dcontrol%2Dlayers%2Dexpanded%22%2C%22%22%29%7D%7D%29%2Co%2Econtrol%2Elayers%3Dfunction%28t%2Ce%2Ci%29%7Breturn%20new%20o%2EControl%2ELayers%28t%2Ce%2Ci%29%7D%2Co%2EPosAnimation%3Do%2EClass%2Eextend%28%7Bincludes%3Ao%2EMixin%2EEvents%2Crun%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bthis%2Estop%28%29%2Cthis%2E%5Fel%3Dt%2Cthis%2E%5FinProgress%3D%210%2Cthis%2E%5FnewPos%3De%2Cthis%2Efire%28%22start%22%29%2Ct%2Estyle%5Bo%2EDomUtil%2ETRANSITION%5D%3D%22all%20%22%2B%28i%7C%7C%2E25%29%2B%22s%20cubic%2Dbezier%280%2C0%2C%22%2B%28n%7C%7C%2E5%29%2B%22%2C1%29%22%2Co%2EDomEvent%2Eon%28t%2Co%2EDomUtil%2ETRANSITION%5FEND%2Cthis%2E%5FonTransitionEnd%2Cthis%29%2Co%2EDomUtil%2EsetPosition%28t%2Ce%29%2Co%2EUtil%2EfalseFn%28t%2EoffsetWidth%29%2Cthis%2E%5FstepTimer%3DsetInterval%28o%2Ebind%28this%2E%5FonStep%2Cthis%29%2C50%29%7D%2Cstop%3Afunction%28%29%7Bthis%2E%5FinProgress%26%26%28o%2EDomUtil%2EsetPosition%28this%2E%5Fel%2Cthis%2E%5FgetPos%28%29%29%2Cthis%2E%5FonTransitionEnd%28%29%2Co%2EUtil%2EfalseFn%28this%2E%5Fel%2EoffsetWidth%29%29%7D%2C%5FonStep%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FgetPos%28%29%3Breturn%20t%3F%28this%2E%5Fel%2E%5Fleaflet%5Fpos%3Dt%2Cvoid%20this%2Efire%28%22step%22%29%29%3Avoid%20this%2E%5FonTransitionEnd%28%29%7D%2C%5FtransformRe%3A%2F%28%5B%2D%2B%5D%3F%28%3F%3A%5Cd%2A%5C%2E%29%3F%5Cd%2B%29%5CD%2A%2C%20%28%5B%2D%2B%5D%3F%28%3F%3A%5Cd%2A%5C%2E%29%3F%5Cd%2B%29%5CD%2A%5C%29%2F%2C%5FgetPos%3Afunction%28%29%7Bvar%20e%2Ci%2Cn%2Cs%3Dthis%2E%5Fel%2Ca%3Dt%2EgetComputedStyle%28s%29%3Bif%28o%2EBrowser%2Eany3d%29%7Bif%28n%3Da%5Bo%2EDomUtil%2ETRANSFORM%5D%2Ematch%28this%2E%5FtransformRe%29%2C%21n%29return%3Be%3DparseFloat%28n%5B1%5D%29%2Ci%3DparseFloat%28n%5B2%5D%29%7Delse%20e%3DparseFloat%28a%2Eleft%29%2Ci%3DparseFloat%28a%2Etop%29%3Breturn%20new%20o%2EPoint%28e%2Ci%2C%210%29%7D%2C%5FonTransitionEnd%3Afunction%28%29%7Bo%2EDomEvent%2Eoff%28this%2E%5Fel%2Co%2EDomUtil%2ETRANSITION%5FEND%2Cthis%2E%5FonTransitionEnd%2Cthis%29%2Cthis%2E%5FinProgress%26%26%28this%2E%5FinProgress%3D%211%2Cthis%2E%5Fel%2Estyle%5Bo%2EDomUtil%2ETRANSITION%5D%3D%22%22%2Cthis%2E%5Fel%2E%5Fleaflet%5Fpos%3Dthis%2E%5FnewPos%2CclearInterval%28this%2E%5FstepTimer%29%2Cthis%2Efire%28%22step%22%29%2Efire%28%22end%22%29%29%7D%7D%29%2Co%2EMap%2Einclude%28%7BsetView%3Afunction%28t%2Ce%2Cn%29%7Bif%28e%3De%3D%3D%3Di%3Fthis%2E%5Fzoom%3Athis%2E%5FlimitZoom%28e%29%2Ct%3Dthis%2E%5FlimitCenter%28o%2ElatLng%28t%29%2Ce%2Cthis%2Eoptions%2EmaxBounds%29%2Cn%3Dn%7C%7C%7B%7D%2Cthis%2E%5FpanAnim%26%26this%2E%5FpanAnim%2Estop%28%29%2Cthis%2E%5Floaded%26%26%21n%2Ereset%26%26n%21%3D%3D%210%29%7Bn%2Eanimate%21%3D%3Di%26%26%28n%2Ezoom%3Do%2Eextend%28%7Banimate%3An%2Eanimate%7D%2Cn%2Ezoom%29%2Cn%2Epan%3Do%2Eextend%28%7Banimate%3An%2Eanimate%7D%2Cn%2Epan%29%29%3Bvar%20s%3Dthis%2E%5Fzoom%21%3D%3De%3Fthis%2E%5FtryAnimatedZoom%26%26this%2E%5FtryAnimatedZoom%28t%2Ce%2Cn%2Ezoom%29%3Athis%2E%5FtryAnimatedPan%28t%2Cn%2Epan%29%3Bif%28s%29return%20clearTimeout%28this%2E%5FsizeTimer%29%2Cthis%7Dreturn%20this%2E%5FresetView%28t%2Ce%29%2Cthis%7D%2CpanBy%3Afunction%28t%2Ce%29%7Bif%28t%3Do%2Epoint%28t%29%2Eround%28%29%2Ce%3De%7C%7C%7B%7D%2C%21t%2Ex%26%26%21t%2Ey%29return%20this%3Bif%28this%2E%5FpanAnim%7C%7C%28this%2E%5FpanAnim%3Dnew%20o%2EPosAnimation%2Cthis%2E%5FpanAnim%2Eon%28%7Bstep%3Athis%2E%5FonPanTransitionStep%2Cend%3Athis%2E%5FonPanTransitionEnd%7D%2Cthis%29%29%2Ce%2EnoMoveStart%7C%7Cthis%2Efire%28%22movestart%22%29%2Ce%2Eanimate%21%3D%3D%211%29%7Bo%2EDomUtil%2EaddClass%28this%2E%5FmapPane%2C%22leaflet%2Dpan%2Danim%22%29%3Bvar%20i%3Dthis%2E%5FgetMapPanePos%28%29%2Esubtract%28t%29%3Bthis%2E%5FpanAnim%2Erun%28this%2E%5FmapPane%2Ci%2Ce%2Eduration%7C%7C%2E25%2Ce%2EeaseLinearity%29%7Delse%20this%2E%5FrawPanBy%28t%29%2Cthis%2Efire%28%22move%22%29%2Efire%28%22moveend%22%29%3Breturn%20this%7D%2C%5FonPanTransitionStep%3Afunction%28%29%7Bthis%2Efire%28%22move%22%29%7D%2C%5FonPanTransitionEnd%3Afunction%28%29%7Bo%2EDomUtil%2EremoveClass%28this%2E%5FmapPane%2C%22leaflet%2Dpan%2Danim%22%29%2Cthis%2Efire%28%22moveend%22%29%7D%2C%5FtryAnimatedPan%3Afunction%28t%2Ce%29%7Bvar%20i%3Dthis%2E%5FgetCenterOffset%28t%29%2E%5Ffloor%28%29%3Breturn%28e%26%26e%2Eanimate%29%3D%3D%3D%210%7C%7Cthis%2EgetSize%28%29%2Econtains%28i%29%3F%28this%2EpanBy%28i%2Ce%29%2C%210%29%3A%211%7D%7D%29%2Co%2EPosAnimation%3Do%2EDomUtil%2ETRANSITION%3Fo%2EPosAnimation%3Ao%2EPosAnimation%2Eextend%28%7Brun%3Afunction%28t%2Ce%2Ci%2Cn%29%7Bthis%2Estop%28%29%2Cthis%2E%5Fel%3Dt%2Cthis%2E%5FinProgress%3D%210%2Cthis%2E%5Fduration%3Di%7C%7C%2E25%2Cthis%2E%5FeaseOutPower%3D1%2FMath%2Emax%28n%7C%7C%2E5%2C%2E2%29%2Cthis%2E%5FstartPos%3Do%2EDomUtil%2EgetPosition%28t%29%2Cthis%2E%5Foffset%3De%2Esubtract%28this%2E%5FstartPos%29%2Cthis%2E%5FstartTime%3D%2Bnew%20Date%2Cthis%2Efire%28%22start%22%29%2Cthis%2E%5Fanimate%28%29%7D%2Cstop%3Afunction%28%29%7Bthis%2E%5FinProgress%26%26%28this%2E%5Fstep%28%29%2Cthis%2E%5Fcomplete%28%29%29%7D%2C%5Fanimate%3Afunction%28%29%7Bthis%2E%5FanimId%3Do%2EUtil%2ErequestAnimFrame%28this%2E%5Fanimate%2Cthis%29%2Cthis%2E%5Fstep%28%29%7D%2C%5Fstep%3Afunction%28%29%7Bvar%20t%3D%2Bnew%20Date%2Dthis%2E%5FstartTime%2Ce%3D1e3%2Athis%2E%5Fduration%3Be%3Et%3Fthis%2E%5FrunFrame%28this%2E%5FeaseOut%28t%2Fe%29%29%3A%28this%2E%5FrunFrame%281%29%2Cthis%2E%5Fcomplete%28%29%29%7D%2C%5FrunFrame%3Afunction%28t%29%7Bvar%20e%3Dthis%2E%5FstartPos%2Eadd%28this%2E%5Foffset%2EmultiplyBy%28t%29%29%3Bo%2EDomUtil%2EsetPosition%28this%2E%5Fel%2Ce%29%2Cthis%2Efire%28%22step%22%29%7D%2C%5Fcomplete%3Afunction%28%29%7Bo%2EUtil%2EcancelAnimFrame%28this%2E%5FanimId%29%2Cthis%2E%5FinProgress%3D%211%2Cthis%2Efire%28%22end%22%29%7D%2C%5FeaseOut%3Afunction%28t%29%7Breturn%201%2DMath%2Epow%281%2Dt%2Cthis%2E%5FeaseOutPower%29%7D%7D%29%2Co%2EMap%2EmergeOptions%28%7BzoomAnimation%3A%210%2CzoomAnimationThreshold%3A4%7D%29%2Co%2EDomUtil%2ETRANSITION%26%26o%2EMap%2EaddInitHook%28function%28%29%7Bthis%2E%5FzoomAnimated%3Dthis%2Eoptions%2EzoomAnimation%26%26o%2EDomUtil%2ETRANSITION%26%26o%2EBrowser%2Eany3d%26%26%21o%2EBrowser%2Eandroid23%26%26%21o%2EBrowser%2EmobileOpera%2Cthis%2E%5FzoomAnimated%26%26o%2EDomEvent%2Eon%28this%2E%5FmapPane%2Co%2EDomUtil%2ETRANSITION%5FEND%2Cthis%2E%5FcatchTransitionEnd%2Cthis%29%7D%29%2Co%2EMap%2Einclude%28o%2EDomUtil%2ETRANSITION%3F%7B%5FcatchTransitionEnd%3Afunction%28t%29%7Bthis%2E%5FanimatingZoom%26%26t%2EpropertyName%2EindexOf%28%22transform%22%29%3E%3D0%26%26this%2E%5FonZoomTransitionEnd%28%29%7D%2C%5FnothingToAnimate%3Afunction%28%29%7Breturn%21this%2E%5Fcontainer%2EgetElementsByClassName%28%22leaflet%2Dzoom%2Danimated%22%29%2Elength%7D%2C%5FtryAnimatedZoom%3Afunction%28t%2Ce%2Ci%29%7Bif%28this%2E%5FanimatingZoom%29return%210%3Bif%28i%3Di%7C%7C%7B%7D%2C%21this%2E%5FzoomAnimated%7C%7Ci%2Eanimate%3D%3D%3D%211%7C%7Cthis%2E%5FnothingToAnimate%28%29%7C%7CMath%2Eabs%28e%2Dthis%2E%5Fzoom%29%3Ethis%2Eoptions%2EzoomAnimationThreshold%29return%211%3Bvar%20n%3Dthis%2EgetZoomScale%28e%29%2Co%3Dthis%2E%5FgetCenterOffset%28t%29%2E%5FdivideBy%281%2D1%2Fn%29%2Cs%3Dthis%2E%5FgetCenterLayerPoint%28%29%2E%5Fadd%28o%29%3Breturn%20i%2Eanimate%3D%3D%3D%210%7C%7Cthis%2EgetSize%28%29%2Econtains%28o%29%3F%28this%2Efire%28%22movestart%22%29%2Efire%28%22zoomstart%22%29%2Cthis%2E%5FanimateZoom%28t%2Ce%2Cs%2Cn%2Cnull%2C%210%29%2C%210%29%3A%211%7D%2C%5FanimateZoom%3Afunction%28t%2Ce%2Ci%2Cn%2Cs%2Ca%2Cr%29%7Br%7C%7C%28this%2E%5FanimatingZoom%3D%210%29%2Co%2EDomUtil%2EaddClass%28this%2E%5FmapPane%2C%22leaflet%2Dzoom%2Danim%22%29%2Cthis%2E%5FanimateToCenter%3Dt%2Cthis%2E%5FanimateToZoom%3De%2Co%2EDraggable%26%26%28o%2EDraggable%2E%5Fdisabled%3D%210%29%2Co%2EUtil%2ErequestAnimFrame%28function%28%29%7Bthis%2Efire%28%22zoomanim%22%2C%7Bcenter%3At%2Czoom%3Ae%2Corigin%3Ai%2Cscale%3An%2Cdelta%3As%2Cbackwards%3Aa%7D%29%7D%2Cthis%29%7D%2C%5FonZoomTransitionEnd%3Afunction%28%29%7Bthis%2E%5FanimatingZoom%3D%211%2Co%2EDomUtil%2EremoveClass%28this%2E%5FmapPane%2C%22leaflet%2Dzoom%2Danim%22%29%2Cthis%2E%5FresetView%28this%2E%5FanimateToCenter%2Cthis%2E%5FanimateToZoom%2C%210%2C%210%29%2Co%2EDraggable%26%26%28o%2EDraggable%2E%5Fdisabled%3D%211%29%7D%7D%3A%7B%7D%29%2Co%2ETileLayer%2Einclude%28%7B%5FanimateZoom%3Afunction%28t%29%7Bthis%2E%5Fanimating%7C%7C%28this%2E%5Fanimating%3D%210%2Cthis%2E%5FprepareBgBuffer%28%29%29%3Bvar%20e%3Dthis%2E%5FbgBuffer%2Ci%3Do%2EDomUtil%2ETRANSFORM%2Cn%3Dt%2Edelta%3Fo%2EDomUtil%2EgetTranslateString%28t%2Edelta%29%3Ae%2Estyle%5Bi%5D%2Cs%3Do%2EDomUtil%2EgetScaleString%28t%2Escale%2Ct%2Eorigin%29%3Be%2Estyle%5Bi%5D%3Dt%2Ebackwards%3Fs%2B%22%20%22%2Bn%3An%2B%22%20%22%2Bs%7D%2C%5FendZoomAnim%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FtileContainer%2Ce%3Dthis%2E%5FbgBuffer%3Bt%2Estyle%2Evisibility%3D%22%22%2Ct%2EparentNode%2EappendChild%28t%29%2Co%2EUtil%2EfalseFn%28e%2EoffsetWidth%29%2Cthis%2E%5Fanimating%3D%211%7D%2C%5FclearBgBuffer%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5Fmap%3B%21t%7C%7Ct%2E%5FanimatingZoom%7C%7Ct%2EtouchZoom%2E%5Fzooming%7C%7C%28this%2E%5FbgBuffer%2EinnerHTML%3D%22%22%2Cthis%2E%5FbgBuffer%2Estyle%5Bo%2EDomUtil%2ETRANSFORM%5D%3D%22%22%29%7D%2C%5FprepareBgBuffer%3Afunction%28%29%7Bvar%20t%3Dthis%2E%5FtileContainer%2Ce%3Dthis%2E%5FbgBuffer%2Ci%3Dthis%2E%5FgetLoadedTilesPercentage%28e%29%2Cn%3Dthis%2E%5FgetLoadedTilesPercentage%28t%29%3Breturn%20e%26%26i%3E%2E5%26%26%2E5%3En%3F%28t%2Estyle%2Evisibility%3D%22hidden%22%2Cvoid%20this%2E%5FstopLoadingImages%28t%29%29%3A%28e%2Estyle%2Evisibility%3D%22hidden%22%2Ce%2Estyle%5Bo%2EDomUtil%2ETRANSFORM%5D%3D%22%22%2Cthis%2E%5FtileContainer%3De%2Ce%3Dthis%2E%5FbgBuffer%3Dt%2Cthis%2E%5FstopLoadingImages%28e%29%2Cvoid%20clearTimeout%28this%2E%5FclearBgBufferTimer%29%29%7D%2C%5FgetLoadedTilesPercentage%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%3Dt%2EgetElementsByTagName%28%22img%22%29%2Co%3D0%3Bfor%28e%3D0%2Ci%3Dn%2Elength%3Bi%3Ee%3Be%2B%2B%29n%5Be%5D%2Ecomplete%26%26o%2B%2B%3Breturn%20o%2Fi%7D%2C%5FstopLoadingImages%3Afunction%28t%29%7Bvar%20e%2Ci%2Cn%2Cs%3DArray%2Eprototype%2Eslice%2Ecall%28t%2EgetElementsByTagName%28%22img%22%29%29%3Bfor%28e%3D0%2Ci%3Ds%2Elength%3Bi%3Ee%3Be%2B%2B%29n%3Ds%5Be%5D%2Cn%2Ecomplete%7C%7C%28n%2Eonload%3Do%2EUtil%2EfalseFn%2Cn%2Eonerror%3Do%2EUtil%2EfalseFn%2Cn%2Esrc%3Do%2EUtil%2EemptyImageUrl%2Cn%2EparentNode%2EremoveChild%28n%29%29%7D%7D%29%2Co%2EMap%2Einclude%28%7B%5FdefaultLocateOptions%3A%7Bwatch%3A%211%2CsetView%3A%211%2CmaxZoom%3A1%2F0%2Ctimeout%3A1e4%2CmaximumAge%3A0%2CenableHighAccuracy%3A%211%7D%2Clocate%3Afunction%28t%29%7Bif%28t%3Dthis%2E%5FlocateOptions%3Do%2Eextend%28this%2E%5FdefaultLocateOptions%2Ct%29%2C%21navigator%2Egeolocation%29return%20this%2E%5FhandleGeolocationError%28%7Bcode%3A0%2Cmessage%3A%22Geolocation%20not%20supported%2E%22%7D%29%2Cthis%3Bvar%20e%3Do%2Ebind%28this%2E%5FhandleGeolocationResponse%2Cthis%29%2Ci%3Do%2Ebind%28this%2E%5FhandleGeolocationError%2Cthis%29%3Breturn%20t%2Ewatch%3Fthis%2E%5FlocationWatchId%3Dnavigator%2Egeolocation%2EwatchPosition%28e%2Ci%2Ct%29%3Anavigator%2Egeolocation%2EgetCurrentPosition%28e%2Ci%2Ct%29%2Cthis%7D%2CstopLocate%3Afunction%28%29%7Breturn%20navigator%2Egeolocation%26%26navigator%2Egeolocation%2EclearWatch%28this%2E%5FlocationWatchId%29%2Cthis%2E%5FlocateOptions%26%26%28this%2E%5FlocateOptions%2EsetView%3D%211%29%2Cthis%7D%2C%5FhandleGeolocationError%3Afunction%28t%29%7Bvar%20e%3Dt%2Ecode%2Ci%3Dt%2Emessage%7C%7C%281%3D%3D%3De%3F%22permission%20denied%22%3A2%3D%3D%3De%3F%22position%20unavailable%22%3A%22timeout%22%29%3Bthis%2E%5FlocateOptions%2EsetView%26%26%21this%2E%5Floaded%26%26this%2EfitWorld%28%29%2Cthis%2Efire%28%22locationerror%22%2C%7Bcode%3Ae%2Cmessage%3A%22Geolocation%20error%3A%20%22%2Bi%2B%22%2E%22%7D%29%7D%2C%5FhandleGeolocationResponse%3Afunction%28t%29%7Bvar%20e%3Dt%2Ecoords%2Elatitude%2Ci%3Dt%2Ecoords%2Elongitude%2Cn%3Dnew%20o%2ELatLng%28e%2Ci%29%2Cs%3D180%2At%2Ecoords%2Eaccuracy%2F40075017%2Ca%3Ds%2FMath%2Ecos%28o%2ELatLng%2EDEG%5FTO%5FRAD%2Ae%29%2Cr%3Do%2ElatLngBounds%28%5Be%2Ds%2Ci%2Da%5D%2C%5Be%2Bs%2Ci%2Ba%5D%29%2Ch%3Dthis%2E%5FlocateOptions%3Bif%28h%2EsetView%29%7Bvar%20l%3DMath%2Emin%28this%2EgetBoundsZoom%28r%29%2Ch%2EmaxZoom%29%3Bthis%2EsetView%28n%2Cl%29%7Dvar%20u%3D%7Blatlng%3An%2Cbounds%3Ar%2Ctimestamp%3At%2Etimestamp%7D%3Bfor%28var%20c%20in%20t%2Ecoords%29%22number%22%3D%3Dtypeof%20t%2Ecoords%5Bc%5D%26%26%28u%5Bc%5D%3Dt%2Ecoords%5Bc%5D%29%3Bthis%2Efire%28%22locationfound%22%2Cu%29%7D%7D%29%7D%28window%2Cdocument%29%3B"></script>
<link href="data:text/css,%2F%2A%20Work%20around%20CSS%20properties%20introduced%20on%20img%20by%20bootstrap%20%2A%2F%0Aimg%2Eleaflet%2Dtile%20%7B%0A%20%20padding%3A%200%3B%0A%20%20margin%3A%200%3B%0A%20%20border%2Dradius%3A%200%3B%0A%20%20border%3A%20none%3B%0A%7D%0A%2Einfo%20%7B%0A%20%20%20%20padding%3A%206px%208px%3B%0A%20%20%20%20font%3A%2014px%2F16px%20Arial%2C%20Helvetica%2C%20sans%2Dserif%3B%0A%20%20%20%20background%3A%20white%3B%0A%20%20%20%20background%3A%20rgba%28255%2C255%2C255%2C0%2E8%29%3B%0A%20%20%20%20box%2Dshadow%3A%200%200%2015px%20rgba%280%2C0%2C0%2C0%2E2%29%3B%0A%20%20%20%20border%2Dradius%3A%205px%3B%0A%7D%0A%2Elegend%20%7B%0A%20%20%20%20line%2Dheight%3A%2018px%3B%0A%20%20%20%20color%3A%20%23555%3B%0A%7D%0A%2Elegend%20svg%20text%20%7B%0A%20%20%20%20fill%3A%20%23555%3B%0A%7D%0A%2Elegend%20svg%20line%20%7B%0A%20%20%20%20stroke%3A%20%23555%3B%0A%7D%0A%2Elegend%20i%20%7B%0A%20%20%20%20width%3A%2018px%3B%0A%20%20%20%20height%3A%2018px%3B%0A%20%20%20%20float%3A%20left%3B%0A%20%20%20%20margin%2Dright%3A%208px%3B%0A%20%20%20%20opacity%3A%200%2E7%3B%0A%7D%0A" rel="stylesheet" />
<script src="data:application/x-javascript,function%20recycle%28values%2C%20length%2C%20inPlace%29%20%7B%0A%20%20if%20%28length%20%3D%3D%3D%200%20%26%26%20%21inPlace%29%0A%20%20%20%20return%20%5B%5D%3B%0A%0A%20%20if%20%28%21%28values%20instanceof%20Array%29%29%20%7B%0A%20%20%20%20if%20%28inPlace%29%20%7B%0A%20%20%20%20%20%20throw%20new%20Error%28%22Can%27t%20do%20in%2Dplace%20recycling%20of%20a%20non%2DArray%20value%22%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20values%20%3D%20%5Bvalues%5D%3B%0A%20%20%7D%0A%20%20if%20%28typeof%28length%29%20%3D%3D%3D%20%27undefined%27%29%0A%20%20%20%20length%20%3D%20values%2Elength%3B%0A%0A%20%20var%20dest%20%3D%20inPlace%20%3F%20values%20%3A%20%5B%5D%3B%0A%20%20var%20origLength%20%3D%20values%2Elength%3B%0A%20%20while%20%28dest%2Elength%20%3C%20length%29%20%7B%0A%20%20%20%20dest%2Epush%28values%5Bdest%2Elength%20%25%20origLength%5D%29%3B%0A%20%20%7D%0A%20%20if%20%28dest%2Elength%20%3E%20length%29%20%7B%0A%20%20%20%20dest%2Esplice%28length%2C%20dest%2Elength%20%2D%20length%29%3B%0A%20%20%7D%0A%20%20return%20dest%3B%0A%7D%0A%0Afunction%20asArray%28value%29%20%7B%0A%20%20if%20%28value%20instanceof%20Array%29%0A%20%20%20%20return%20value%3B%0A%20%20else%0A%20%20%20%20return%20%5Bvalue%5D%3B%0A%7D%0A%0Avar%20dataframe%20%3D%20%28function%28%29%20%7B%0A%20%20var%20exports%20%3D%20%7B%7D%3B%0A%0A%20%20var%20DataFrame%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2Ecolumns%20%3D%20%5B%5D%3B%0A%20%20%20%20this%2Ecolnames%20%3D%20%5B%5D%3B%0A%20%20%20%20this%2Ecolstrict%20%3D%20%5B%5D%3B%0A%0A%20%20%20%20this%2EeffectiveLength%20%3D%200%3B%0A%20%20%20%20this%2Ecolindices%20%3D%20%7B%7D%3B%0A%20%20%7D%3B%0A%0A%20%20DataFrame%2Eprototype%2E%5FupdateCachedProperties%20%3D%20function%28%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20this%2EeffectiveLength%20%3D%200%3B%0A%20%20%20%20this%2Ecolindices%20%3D%20%7B%7D%3B%0A%0A%20%20%20%20%24%2Eeach%28this%2Ecolumns%2C%20function%28i%2C%20column%29%20%7B%0A%20%20%20%20%20%20self%2EeffectiveLength%20%3D%20Math%2Emax%28self%2EeffectiveLength%2C%20column%2Elength%29%3B%0A%20%20%20%20%20%20self%2Ecolindices%5Bself%2Ecolnames%5Bi%5D%5D%20%3D%20i%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20DataFrame%2Eprototype%2E%5FcolIndex%20%3D%20function%28colname%29%20%7B%0A%20%20%20%20var%20index%20%3D%20this%2Ecolindices%5Bcolname%5D%3B%0A%20%20%20%20if%20%28typeof%28index%29%20%3D%3D%3D%20%27undefined%27%29%0A%20%20%20%20%20%20return%20%2D1%3B%0A%20%20%20%20return%20index%3B%0A%20%20%7D%3B%0A%0A%20%20DataFrame%2Eprototype%2Ecol%20%3D%20function%28name%2C%20values%2C%20strict%29%20%7B%0A%20%20%20%20if%20%28typeof%28name%29%20%21%3D%3D%20%27string%27%29%0A%20%20%20%20%20%20throw%20new%20Error%28%27Invalid%20column%20name%20%22%27%20%2B%20name%20%2B%20%27%22%27%29%3B%0A%0A%20%20%20%20var%20index%20%3D%20this%2E%5FcolIndex%28name%29%3B%0A%0A%20%20%20%20if%20%28arguments%2Elength%20%3D%3D%3D%201%29%20%7B%0A%20%20%20%20%20%20if%20%28index%20%3C%200%29%0A%20%20%20%20%20%20%20%20return%20null%3B%0A%20%20%20%20%20%20else%0A%20%20%20%20%20%20%20%20return%20recycle%28this%2Ecolumns%5Bindex%5D%2C%20this%2EeffectiveLength%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20if%20%28index%20%3C%200%29%20%7B%0A%20%20%20%20%20%20index%20%3D%20this%2Ecolnames%2Elength%3B%0A%20%20%20%20%20%20this%2Ecolnames%2Epush%28name%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20this%2Ecolumns%5Bindex%5D%20%3D%20asArray%28values%29%3B%0A%20%20%20%20this%2Ecolstrict%5Bindex%5D%20%3D%20%21%21strict%3B%0A%0A%20%20%20%20%2F%2F%20TODO%3A%20Validate%20strictness%20%28ensure%20lengths%20match%20up%20with%20other%20stricts%29%0A%0A%20%20%20%20this%2E%5FupdateCachedProperties%28%29%3B%0A%0A%20%20%20%20return%20this%3B%0A%20%20%7D%3B%0A%0A%20%20DataFrame%2Eprototype%2Ecbind%20%3D%20function%28obj%2C%20strict%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%2C%20name%3B%0A%20%20%20%20%24%2Eeach%28obj%2C%20function%28name%2C%20coldata%29%20%7B%0A%20%20%20%20%20%20self%2Ecol%28name%2C%20coldata%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20return%20this%3B%0A%20%20%7D%3B%0A%0A%20%20DataFrame%2Eprototype%2Eget%20%3D%20function%28row%2C%20col%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%0A%20%20%20%20if%20%28row%20%3E%20this%2EeffectiveLength%29%0A%20%20%20%20%20%20throw%20new%20Error%28%27Row%20argument%20was%20out%20of%20bounds%3A%20%27%20%2B%20row%20%2B%20%27%20%3E%20%27%20%2B%20this%2EeffectiveLength%29%3B%0A%0A%20%20%20%20var%20colIndex%20%3D%20%2D1%3B%0A%20%20%20%20if%20%28typeof%28col%29%20%3D%3D%3D%20%27undefined%27%29%20%7B%0A%20%20%20%20%20%20var%20rowData%20%3D%20%7B%7D%3B%0A%20%20%20%20%20%20%24%2Eeach%28this%2Ecolnames%2C%20function%28i%2C%20name%29%20%7B%0A%20%20%20%20%20%20%20%20rowData%5Bname%5D%20%3D%20self%2Ecolumns%5Bi%5D%5Brow%20%25%20self%2Ecolumns%5Bi%5D%2Elength%5D%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%20%20return%20rowData%3B%0A%20%20%20%20%7D%20else%20if%20%28typeof%28col%29%20%3D%3D%3D%20%27string%27%29%20%7B%0A%20%20%20%20%20%20colIndex%20%3D%20this%2E%5FcolIndex%28col%29%3B%0A%20%20%20%20%7D%20else%20if%20%28typeof%28col%29%20%3D%3D%3D%20%27number%27%29%20%7B%0A%20%20%20%20%20%20colIndex%20%3D%20col%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28colIndex%20%3C%200%20%7C%7C%20colIndex%20%3E%20this%2Ecolumns%2Elength%29%0A%20%20%20%20%20%20throw%20new%20Error%28%27Unknown%20column%20index%3A%20%27%20%2B%20col%29%3B%0A%0A%20%20%20%20return%20this%2Ecolumns%5BcolIndex%5D%5Brow%20%25%20this%2Ecolumns%5BcolIndex%5D%2Elength%5D%3B%0A%20%20%7D%3B%0A%0A%20%20DataFrame%2Eprototype%2Enrow%20%3D%20function%28%29%20%7B%0A%20%20%20%20return%20this%2EeffectiveLength%3B%0A%20%20%7D%3B%0A%0A%20%20function%20test%28%29%20%7B%0A%20%20%20%20var%20df%20%3D%20new%20DataFrame%28%29%3B%0A%20%20%20%20df%2Ecol%28%22speed%22%2C%20%5B4%2C%204%2C%207%2C%207%2C%208%2C%209%2C%2010%2C%2010%2C%2010%2C%2011%2C%2011%2C%2012%2C%2012%2C%2012%2C%2012%2C%2013%2C%2013%2C%2013%2C%2013%2C%2014%2C%2014%2C%2014%2C%2014%2C%2015%2C%2015%2C%2015%2C%2016%2C%2016%2C%2017%2C%2017%2C%2017%2C%2018%2C%2018%2C%2018%2C%2018%2C%2019%2C%2019%2C%2019%2C%2020%2C%2020%2C%2020%2C%2020%2C%2020%2C%2022%2C%2023%2C%2024%2C%2024%2C%2024%2C%2024%2C%2025%5D%29%0A%20%20%20%20%20%20%2Ecol%28%22dist%22%2C%20%5B2%2C%2010%2C%204%2C%2022%2C%2016%2C%2010%2C%2018%2C%2026%2C%2034%2C%2017%2C%2028%2C%2014%2C%2020%2C%2024%2C%2028%2C%2026%2C%2034%2C%2034%2C%2046%2C%2026%2C%2036%2C%2060%2C%2080%2C%2020%2C%2026%2C%2054%2C%2032%2C%2040%2C%2032%2C%2040%2C%2050%2C%2042%2C%2056%2C%2076%2C%2084%2C%2036%2C%2046%2C%2068%2C%2032%2C%2048%2C%2052%2C%2056%2C%2064%2C%2066%2C%2054%2C%2070%2C%2092%2C%2093%2C%20120%2C%2085%5D%29%0A%20%20%20%20%20%20%2Ecol%28%22color%22%2C%20%5B%22yellow%22%2C%20%22red%22%5D%29%0A%20%20%20%20%20%20%2Ecbind%28%7B%0A%20%20%20%20%20%20%20%20%22Make%22%20%3A%20%5B%22Toyota%22%2C%20%22Cadillac%22%2C%20%22BMW%22%5D%2C%0A%20%20%20%20%20%20%20%20%22Model%22%20%3A%20%5B%22Corolla%22%2C%20%22CTS%22%2C%20%22435i%22%5D%0A%20%20%20%20%20%20%7D%29%0A%20%20%20%20%3B%0A%20%20%20%20console%2Elog%28df%2Eget%289%2C%20%22speed%22%29%29%3B%0A%20%20%20%20console%2Elog%28df%2Eget%289%2C%20%22dist%22%29%29%3B%0A%20%20%20%20console%2Elog%28df%2Eget%289%2C%20%22color%22%29%29%3B%0A%20%20%20%20console%2Elog%28df%2Eget%289%2C%20%22Make%22%29%29%3B%0A%20%20%20%20console%2Elog%28df%2Eget%289%2C%20%22Model%22%29%29%3B%0A%20%20%20%20console%2Elog%28df%2Eget%289%29%29%3B%0A%0A%20%20%7D%0A%0A%20%20return%20%7B%0A%20%20%20%20create%3A%20function%28%29%20%7B%0A%20%20%20%20%20%20return%20new%20DataFrame%28%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%3B%0A%0A%7D%29%28%29%3B%0A%0A%28function%28%29%20%7B%0A%20%20%2F%2F%20This%20class%20simulates%20a%20mipmap%2C%20which%20shrinks%20images%20by%20powers%20of%20two%2E%20This%0A%20%20%2F%2F%20stepwise%20reduction%20results%20in%20%22pixel%2Dperfect%20downscaling%22%20%28where%20every%0A%20%20%2F%2F%20pixel%20of%20the%20original%20image%20has%20some%20contribution%20to%20the%20downscaled%20image%29%0A%20%20%2F%2F%20as%20opposed%20to%20a%20single%2Dstep%20downscaling%20which%20will%20discard%20a%20lot%20of%20data%0A%20%20%2F%2F%20%28and%20with%20sparse%20images%20at%20small%20scales%20can%20give%20very%20surprising%20results%29%2E%0A%20%20function%20Mipmapper%28img%29%20%7B%0A%20%20%20%20this%2E%5Flayers%20%3D%20%5Bimg%5D%3B%0A%20%20%7D%0A%20%20%2F%2F%20The%20various%20functions%20on%20this%20class%20take%20a%20callback%20function%20BUT%20MAY%20OR%20MAY%0A%20%20%2F%2F%20NOT%20actually%20behave%20asynchronously%2E%0A%20%20Mipmapper%2Eprototype%2EgetBySize%20%3D%20function%28desiredWidth%2C%20desiredHeight%2C%20callback%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20var%20i%20%3D%200%3B%0A%20%20%20%20var%20lastImg%20%3D%20this%2E%5Flayers%5B0%5D%3B%0A%20%20%20%20function%20testNext%28%29%20%7B%0A%20%20%20%20%20%20self%2EgetByIndex%28i%2C%20function%28img%29%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20If%20current%20image%20is%20invalid%20%28i%2Ee%2E%20too%20small%20to%20be%20rendered%29%20or%0A%20%20%20%20%20%20%20%20%2F%2F%20it%27s%20smaller%20than%20what%20we%20wanted%2C%20return%20the%20last%20known%20good%20image%2E%0A%20%20%20%20%20%20%20%20if%20%28%21img%20%7C%7C%20img%2Ewidth%20%3C%20desiredWidth%20%7C%7C%20img%2Eheight%20%3C%20desiredHeight%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20callback%28lastImg%29%3B%0A%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20lastImg%20%3D%20img%3B%0A%20%20%20%20%20%20%20%20%20%20i%2B%2B%3B%0A%20%20%20%20%20%20%20%20%20%20testNext%28%29%3B%0A%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20testNext%28%29%3B%0A%20%20%7D%3B%0A%20%20Mipmapper%2Eprototype%2EgetByIndex%20%3D%20function%28i%2C%20callback%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20if%20%28this%2E%5Flayers%5Bi%5D%29%20%7B%0A%20%20%20%20%20%20callback%28this%2E%5Flayers%5Bi%5D%29%3B%0A%20%20%20%20%20%20return%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20this%2EgetByIndex%28i%2D1%2C%20function%28prevImg%29%20%7B%0A%20%20%20%20%20%20if%20%28%21prevImg%29%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20prevImg%20could%20not%20be%20calculated%20%28too%20small%2C%20possibly%29%0A%20%20%20%20%20%20%20%20callback%28null%29%3B%0A%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20if%20%28prevImg%2Ewidth%20%3C%202%20%7C%7C%20prevImg%2Eheight%20%3C%202%29%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20Can%27t%20reduce%20this%20image%20any%20further%0A%20%20%20%20%20%20%20%20callback%28null%29%3B%0A%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%2F%2F%20If%20reduce%20ever%20becomes%20truly%20asynchronous%2C%20we%20should%20stuff%20a%20promise%20or%0A%20%20%20%20%20%20%2F%2F%20something%20into%20self%2E%5Flayers%5Bi%5D%20before%20calling%20self%2Ereduce%28%29%2C%20to%20prevent%0A%20%20%20%20%20%20%2F%2F%20redundant%20reduce%20operations%20from%20happening%2E%0A%20%20%20%20%20%20self%2Ereduce%28prevImg%2C%20function%28reducedImg%29%20%7B%0A%20%20%20%20%20%20%20%20self%2E%5Flayers%5Bi%5D%20%3D%20reducedImg%3B%0A%20%20%20%20%20%20%20%20callback%28reducedImg%29%3B%0A%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%20%20Mipmapper%2Eprototype%2Ereduce%20%3D%20function%28img%2C%20callback%29%20%7B%0A%20%20%20%20%20%20var%20imgDataCanvas%20%3D%20document%2EcreateElement%28%22canvas%22%29%3B%0A%20%20%20%20%20%20imgDataCanvas%2Ewidth%20%3D%20Math%2Eceil%28img%2Ewidth%20%2F%202%29%3B%0A%20%20%20%20%20%20imgDataCanvas%2Eheight%20%3D%20Math%2Eceil%28img%2Eheight%20%2F%202%29%3B%0A%20%20%20%20%20%20imgDataCanvas%2Estyle%2Edisplay%20%3D%20%22none%22%3B%0A%20%20%20%20%20%20document%2Ebody%2EappendChild%28imgDataCanvas%29%3B%0A%20%20%20%20%20%20try%20%7B%0A%20%20%20%20%20%20%20%20var%20imgDataCtx%20%3D%20imgDataCanvas%2EgetContext%28%222d%22%29%3B%0A%20%20%20%20%20%20%20%20imgDataCtx%2EdrawImage%28img%2C%200%2C%200%2C%20img%2Ewidth%2F2%2C%20img%2Eheight%2F2%29%3B%0A%20%20%20%20%20%20%20%20callback%28imgDataCanvas%29%3B%0A%20%20%20%20%20%20%7D%20finally%20%7B%0A%20%20%20%20%20%20%20%20document%2Ebody%2EremoveChild%28imgDataCanvas%29%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%7D%3B%0A%0A%20%20function%20LayerManager%28map%29%20%7B%0A%20%20%20%20this%2E%5Fmap%20%3D%20map%3B%0A%0A%20%20%20%20%2F%2F%20BEGIN%20layer%20indices%0A%0A%20%20%20%20%2F%2F%20%7B%3Cgroupname%3E%3A%20%7B%3Cstamp%3E%3A%20layer%7D%7D%0A%20%20%20%20this%2E%5FbyGroup%20%3D%20%7B%7D%3B%0A%20%20%20%20%2F%2F%20%7B%3CcategoryName%3E%3A%20%7B%3Cstamp%3E%3A%20layer%7D%7D%0A%20%20%20%20this%2E%5FbyCategory%20%3D%20%7B%7D%3B%0A%20%20%20%20%2F%2F%20%7B%3CcategoryName%5FlayerId%3E%3A%20layer%7D%0A%20%20%20%20this%2E%5FbyLayerId%20%3D%20%7B%7D%3B%0A%20%20%20%20%2F%2F%20%7B%3Cstamp%3E%3A%20%7B%0A%20%20%20%20%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%22group%22%3A%20%3Cgroupname%3E%2C%0A%20%20%20%20%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%22layerId%22%3A%20%3ClayerId%3E%2C%0A%20%20%20%20%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%22category%22%3A%20%3Ccategory%3E%2C%0A%20%20%20%20%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%22container%22%3A%20%3Ccontainer%3E%0A%20%20%20%20%2F%2F%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%2F%2F%20%7D%0A%20%20%20%20this%2E%5FbyStamp%20%3D%20%7B%7D%3B%0A%0A%20%20%20%20%2F%2F%20END%20layer%20indices%0A%0A%20%20%20%20%2F%2F%20%7B%3CcategoryName%3E%3A%20L%2ElayerGroup%7D%0A%20%20%20%20this%2E%5FcategoryContainers%20%3D%20%7B%7D%3B%0A%20%20%20%20%2F%2F%20%7B%3CgroupName%3E%3A%20L%2ElayerGroup%7D%0A%20%20%20%20this%2E%5FgroupContainers%20%3D%20%7B%7D%3B%0A%20%20%7D%0A%20%20LayerManager%2Eprototype%2EaddLayer%20%3D%20function%28layer%2C%20category%2C%20layerId%2C%20group%29%20%7B%0A%20%20%20%20%2F%2F%20Was%20a%20group%20provided%3F%0A%20%20%20%20var%20hasId%20%3D%20typeof%28layerId%29%20%3D%3D%3D%20%22string%22%3B%0A%20%20%20%20var%20grouped%20%3D%20typeof%28group%29%20%3D%3D%3D%20%22string%22%3B%0A%0A%20%20%20%20var%20stamp%20%3D%20L%2EUtil%2Estamp%28layer%29%3B%0A%0A%20%20%20%20%2F%2F%20This%20will%20be%20the%20default%20layer%20group%20to%20add%20the%20layer%20to%2E%0A%20%20%20%20%2F%2F%20We%20may%20overwrite%20this%20var%20before%20using%20it%20%28i%2Ee%2E%20if%20a%20group%20is%20assigned%29%2E%0A%20%20%20%20%2F%2F%20This%20one%20liner%20creates%20the%20%5FcategoryContainers%5Bcategory%5D%20entry%20if%20it%0A%20%20%20%20%2F%2F%20doesn%27t%20already%20exist%2E%0A%20%20%20%20var%20container%20%3D%20this%2E%5FcategoryContainers%5Bcategory%5D%20%3D%0A%20%20%20%20%20%20%20%20this%2E%5FcategoryContainers%5Bcategory%5D%20%7C%7C%20L%2ElayerGroup%28%29%2EaddTo%28this%2E%5Fmap%29%3B%0A%0A%20%20%20%20var%20oldLayer%20%3D%20null%3B%0A%20%20%20%20if%20%28hasId%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20First%2C%20remove%20any%20layer%20with%20the%20same%20category%20and%20layerId%0A%20%20%20%20%20%20var%20prefixedLayerId%20%3D%20this%2E%5FlayerIdKey%28category%2C%20layerId%29%3B%0A%20%20%20%20%20%20oldLayer%20%3D%20this%2E%5FbyLayerId%5BprefixedLayerId%5D%3B%0A%20%20%20%20%20%20if%20%28oldLayer%29%20%7B%0A%20%20%20%20%20%20%20%20this%2E%5FremoveLayer%28oldLayer%29%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20%2F%2F%20Update%20layerId%20index%0A%20%20%20%20%20%20this%2E%5FbyLayerId%5BprefixedLayerId%5D%20%3D%20layer%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20%2F%2F%20Update%20group%20index%0A%20%20%20%20if%20%28grouped%29%20%7B%0A%20%20%20%20%20%20this%2E%5FbyGroup%5Bgroup%5D%20%3D%20this%2E%5FbyGroup%5Bgroup%5D%20%7C%7C%20%7B%7D%3B%0A%20%20%20%20%20%20this%2E%5FbyGroup%5Bgroup%5D%5Bstamp%5D%20%3D%20layer%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Since%20a%20group%20is%20assigned%2C%20don%27t%20add%20the%20layer%20to%20the%20category%27s%20layer%0A%20%20%20%20%20%20%2F%2F%20group%3B%20instead%2C%20use%20the%20group%27s%20layer%20group%2E%0A%20%20%20%20%20%20%2F%2F%20This%20one%20liner%20creates%20the%20%5FgroupContainers%5Bgroup%5D%20entry%20if%20it%20doesn%27t%0A%20%20%20%20%20%20%2F%2F%20already%20exist%2E%0A%20%20%20%20%20%20container%20%3D%20this%2EgetLayerGroup%28group%2C%20true%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20%2F%2F%20Update%20category%20index%0A%20%20%20%20this%2E%5FbyCategory%5Bcategory%5D%20%3D%20this%2E%5FbyCategory%5Bcategory%5D%20%7C%7C%20%7B%7D%3B%0A%20%20%20%20this%2E%5FbyCategory%5Bcategory%5D%5Bstamp%5D%20%3D%20layer%3B%0A%0A%20%20%20%20%2F%2F%20Update%20stamp%20index%0A%20%20%20%20this%2E%5FbyStamp%5Bstamp%5D%20%3D%20%7B%0A%20%20%20%20%20%20layer%3A%20layer%2C%0A%20%20%20%20%20%20group%3A%20group%2C%0A%20%20%20%20%20%20layerId%3A%20layerId%2C%0A%20%20%20%20%20%20category%3A%20category%2C%0A%20%20%20%20%20%20container%3A%20container%0A%20%20%20%20%7D%3B%0A%0A%20%20%20%20%2F%2F%20Add%20to%20container%0A%20%20%20%20container%2EaddLayer%28layer%29%3B%0A%0A%20%20%20%20return%20oldLayer%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2EgetLayer%20%3D%20function%28category%2C%20layerId%29%20%7B%0A%20%20%20%20return%20this%2E%5FbyLayerId%5Bthis%2E%5FlayerIdKey%28category%2C%20layerId%29%5D%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2EremoveLayer%20%3D%20function%28category%2C%20layerId%29%20%7B%0A%20%20%20%20%2F%2F%20Find%20layer%20info%0A%20%20%20%20var%20layer%20%3D%20this%2E%5FbyLayerId%5Bthis%2E%5FlayerIdKey%28category%2C%20layerId%29%5D%3B%0A%20%20%20%20if%20%28%21layer%29%20%7B%0A%20%20%20%20%20%20return%20false%3B%0A%20%20%20%20%7D%0A%20%20%20%20this%2E%5FremoveLayer%28layer%29%3B%0A%20%20%20%20return%20true%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2EclearLayers%20%3D%20function%28category%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%0A%20%20%20%20%2F%2F%20Find%20all%20layers%20in%20%5FbyCategory%5Bcategory%5D%0A%20%20%20%20var%20catTable%20%3D%20this%2E%5FbyCategory%5Bcategory%5D%3B%0A%20%20%20%20if%20%28%21catTable%29%20%7B%0A%20%20%20%20%20%20return%20false%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20%2F%2F%20Remove%20all%20layers%2E%20Make%20copy%20of%20keys%20to%20avoid%20mutating%20the%20collection%0A%20%20%20%20%2F%2F%20behind%20the%20iterator%20you%27re%20accessing%2E%0A%20%20%20%20var%20stamps%20%3D%20%5B%5D%3B%0A%20%20%20%20%24%2Eeach%28catTable%2C%20function%28k%2C%20v%29%20%7B%0A%20%20%20%20%20%20stamps%2Epush%28k%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20%24%2Eeach%28stamps%2C%20function%28i%2C%20stamp%29%20%7B%0A%20%20%20%20%20%20self%2E%5FremoveLayer%28stamp%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2EgetLayerGroup%20%3D%20function%28group%2C%20ensureExists%29%20%7B%0A%20%20%20%20var%20g%20%3D%20this%2E%5FgroupContainers%5Bgroup%5D%3B%0A%20%20%20%20if%20%28ensureExists%20%26%26%20%21g%29%20%7B%0A%20%20%20%20%20%20this%2E%5FbyGroup%5Bgroup%5D%20%3D%20this%2E%5FbyGroup%5Bgroup%5D%20%7C%7C%20%7B%7D%3B%0A%20%20%20%20%20%20g%20%3D%20this%2E%5FgroupContainers%5Bgroup%5D%20%3D%20L%2ElayerGroup%28%29%3B%0A%20%20%20%20%20%20g%2Egroupname%20%3D%20group%3B%0A%20%20%20%20%20%20g%2EaddTo%28this%2E%5Fmap%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20return%20g%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2EgetGroupNameFromLayerGroup%20%3D%20function%28layerGroup%29%20%7B%0A%20%20%20%20return%20layerGroup%2Egroupname%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2EgetVisibleGroups%20%3D%20function%28%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20var%20result%20%3D%20%5B%5D%3B%0A%20%20%20%20%24%2Eeach%28this%2E%5FgroupContainers%2C%20function%28k%2C%20v%29%20%7B%0A%20%20%20%20%20%20if%20%28self%2E%5Fmap%2EhasLayer%28v%29%29%20%7B%0A%20%20%20%20%20%20%20%20result%2Epush%28k%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20return%20result%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2EclearGroup%20%3D%20function%28group%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%0A%20%20%20%20%2F%2F%20Find%20all%20layers%20in%20%5FbyGroup%5Bgroup%5D%0A%20%20%20%20var%20groupTable%20%3D%20this%2E%5FbyGroup%5Bgroup%5D%3B%0A%20%20%20%20if%20%28%21groupTable%29%20%7B%0A%20%20%20%20%20%20return%20false%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20%2F%2F%20Remove%20all%20layers%2E%20Make%20copy%20of%20keys%20to%20avoid%20mutating%20the%20collection%0A%20%20%20%20%2F%2F%20behind%20the%20iterator%20you%27re%20accessing%2E%0A%20%20%20%20var%20stamps%20%3D%20%5B%5D%3B%0A%20%20%20%20%24%2Eeach%28groupTable%2C%20function%28k%2C%20v%29%20%7B%0A%20%20%20%20%20%20stamps%2Epush%28k%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20%24%2Eeach%28stamps%2C%20function%28i%2C%20stamp%29%20%7B%0A%20%20%20%20%20%20self%2E%5FremoveLayer%28stamp%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2Eclear%20%3D%20function%28%29%20%7B%0A%20%20%20%20function%20clearLayerGroup%28key%2C%20layerGroup%29%20%7B%0A%20%20%20%20%20%20layerGroup%2EclearLayers%28%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20%2F%2F%20Clear%20all%20indices%20and%20layerGroups%0A%20%20%20%20this%2E%5FbyGroup%20%3D%20%7B%7D%3B%0A%20%20%20%20this%2E%5FbyCategory%20%3D%20%7B%7D%3B%0A%20%20%20%20this%2E%5FbyLayerId%20%3D%20%7B%7D%3B%0A%20%20%20%20this%2E%5FbyStamp%20%3D%20%7B%7D%3B%0A%20%20%20%20%24%2Eeach%28this%2E%5FcategoryContainers%2C%20clearLayerGroup%29%3B%0A%20%20%20%20this%2E%5FcategoryContainers%20%3D%20%7B%7D%3B%0A%20%20%20%20%24%2Eeach%28this%2E%5FgroupContainers%2C%20clearLayerGroup%29%3B%0A%20%20%20%20this%2E%5FgroupContainers%20%3D%20%7B%7D%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2E%5FremoveLayer%20%3D%20function%28layer%29%20%7B%0A%20%20%20%20var%20stamp%3B%0A%20%20%20%20if%20%28typeof%28layer%29%20%3D%3D%3D%20%22string%22%29%20%7B%0A%20%20%20%20%20%20stamp%20%3D%20layer%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20stamp%20%3D%20L%2EUtil%2Estamp%28layer%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20layerInfo%20%3D%20this%2E%5FbyStamp%5Bstamp%5D%3B%0A%20%20%20%20if%20%28%21layerInfo%29%20%7B%0A%20%20%20%20%20%20return%20false%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20layerInfo%2Econtainer%2EremoveLayer%28stamp%29%3B%0A%20%20%20%20if%20%28typeof%28layerInfo%2Egroup%29%20%3D%3D%3D%20%22string%22%29%20%7B%0A%20%20%20%20%20%20delete%20this%2E%5FbyGroup%5BlayerInfo%2Egroup%5D%5Bstamp%5D%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28typeof%28layerInfo%2ElayerId%29%20%3D%3D%3D%20%22string%22%29%20%7B%0A%20%20%20%20%20%20delete%20this%2E%5FbyLayerId%5Bthis%2E%5FlayerIdKey%28layerInfo%2Ecategory%2C%20layerInfo%2ElayerId%29%5D%3B%0A%20%20%20%20%7D%0A%20%20%20%20delete%20this%2E%5FbyCategory%5BlayerInfo%2Ecategory%5D%5Bstamp%5D%3B%0A%20%20%20%20delete%20this%2E%5FbyStamp%5Bstamp%5D%3B%0A%20%20%7D%3B%0A%20%20LayerManager%2Eprototype%2E%5FlayerIdKey%20%3D%20function%28category%2C%20layerId%29%20%7B%0A%20%20%20%20return%20category%20%2B%20%22%5Cn%22%20%2B%20layerId%3B%0A%20%20%7D%3B%0A%0A%20%20function%20ControlStore%28map%29%20%7B%0A%20%20%20%20this%2E%5FcontrolsNoId%20%3D%20%5B%5D%3B%0A%20%20%20%20this%2E%5FcontrolsById%20%3D%20%7B%7D%3B%0A%20%20%20%20this%2E%5Fmap%20%3D%20map%0A%20%20%7D%0A%0A%20%20ControlStore%2Eprototype%2Eadd%20%3D%20function%28control%2C%20id%2C%20html%29%20%7B%0A%20%20%20%20if%20%28typeof%28id%29%20%21%3D%3D%20%27undefined%27%20%26%26%20id%20%21%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20if%20%28this%2E%5FcontrolsById%5Bid%5D%29%20%7B%0A%20%20%20%20%20%20%20%20this%2E%5Fmap%2EremoveControl%28this%2E%5FcontrolsById%5Bid%5D%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20this%2E%5FcontrolsById%5Bid%5D%20%3D%20control%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20this%2E%5FcontrolsNoId%2Epush%28control%29%0A%20%20%20%20%7D%0A%20%20%20%20this%2E%5Fmap%2EaddControl%28control%29%3B%0A%20%20%7D%3B%0A%0A%20%20ControlStore%2Eprototype%2Eremove%20%3D%20function%28id%29%20%7B%0A%20%20%20%20if%20%28this%2E%5FcontrolsById%5Bid%5D%29%20%7B%0A%20%20%20%20%20%20var%20control%20%3D%20this%2E%5FcontrolsById%5Bid%5D%3B%0A%20%20%20%20%20%20this%2E%5Fmap%2EremoveControl%28control%29%3B%0A%20%20%20%20%20%20delete%20this%2E%5FcontrolsById%5Bid%5D%3B%0A%20%20%20%20%7D%0A%20%20%7D%3B%0A%0A%20%20ControlStore%2Eprototype%2Eclear%20%3D%20function%28%29%20%7B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20this%2E%5FcontrolsNoId%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20control%20%3D%20this%2E%5FcontrolsNoId%5Bi%5D%3B%0A%20%20%20%20%20%20this%2E%5Fmap%2EremoveControl%28control%29%3B%0A%20%20%20%20%7D%3B%0A%20%20%20%20this%2E%5FcontrolsNoId%20%3D%20%5B%5D%3B%0A%0A%20%20%20%20for%20%28var%20key%20in%20this%2E%5FcontrolsById%29%20%7B%0A%20%20%20%20%20%20var%20control%20%3D%20this%2E%5FcontrolsById%5Bkey%5D%3B%0A%20%20%20%20%20%20this%2E%5Fmap%2EremoveControl%28control%29%0A%20%20%20%20%7D%0A%20%20%20%20this%2E%5FcontrolsById%20%3D%20%7B%7D%0A%20%20%7D%0A%0A%20%20function%20ClusterLayerStore%28group%29%20%7B%0A%20%20%20%20this%2E%5Flayers%20%3D%20%7B%7D%3B%0A%20%20%20%20this%2E%5Fgroup%20%3D%20group%3B%0A%20%20%7D%0A%0A%20%20ClusterLayerStore%2Eprototype%2Eadd%20%3D%20function%28layer%2C%20id%29%20%7B%0A%20%20%20%20if%20%28typeof%28id%29%20%21%3D%3D%20%27undefined%27%20%26%26%20id%20%21%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20if%20%28this%2E%5Flayers%5Bid%5D%29%20%7B%0A%20%20%20%20%20%20%20%20this%2E%5Fgroup%2EremoveLayer%28this%2E%5Flayers%5Bid%5D%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20this%2E%5Flayers%5Bid%5D%20%3D%20layer%3B%0A%20%20%20%20%7D%0A%20%20%20%20this%2E%5Fgroup%2EaddLayer%28layer%29%3B%0A%20%20%7D%3B%0A%0A%20%20ClusterLayerStore%2Eprototype%2Eremove%20%3D%20function%28id%29%20%7B%0A%20%20%20%20if%20%28typeof%28id%29%20%3D%3D%3D%20%27undefined%27%20%7C%7C%20id%20%3D%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20return%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20id%20%3D%20asArray%28id%29%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20id%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20if%20%28this%2E%5Flayers%5Bid%5Bi%5D%5D%29%20%7B%0A%20%20%20%20%20%20%20%20this%2E%5Fgroup%2EremoveLayer%28this%2E%5Flayers%5Bid%5Bi%5D%5D%29%3B%0A%20%20%20%20%20%20%20%20delete%20this%2E%5Flayers%5Bid%5Bi%5D%5D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%3B%0A%0A%20%20ClusterLayerStore%2Eprototype%2Eclear%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2E%5Flayers%20%3D%20%7B%7D%3B%0A%20%20%20%20this%2E%5Fgroup%2EclearLayers%28%29%3B%0A%20%20%7D%3B%0A%0A%20%20function%20mouseHandler%28mapId%2C%20layerId%2C%20group%2C%20eventName%2C%20extraInfo%29%20%7B%0A%20%20%20%20return%20function%28e%29%20%7B%0A%20%20%20%20%20%20if%20%28%21HTMLWidgets%2EshinyMode%29%20return%3B%0A%0A%20%20%20%20%20%20var%20eventInfo%20%3D%20%24%2Eextend%28%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20id%3A%20layerId%2C%0A%20%20%20%20%20%20%20%20%20%20%27%2Enonce%27%3A%20Math%2Erandom%28%29%20%20%2F%2F%20force%20reactivity%0A%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20group%20%21%3D%3D%20null%20%3F%20%7Bgroup%3A%20group%7D%20%3A%20null%2C%0A%20%20%20%20%20%20%20%20e%2Etarget%2EgetLatLng%20%3F%20e%2Etarget%2EgetLatLng%28%29%20%3A%20e%2Elatlng%2C%0A%20%20%20%20%20%20%20%20extraInfo%0A%20%20%20%20%20%20%29%3B%0A%0A%20%20%20%20%20%20Shiny%2EonInputChange%28mapId%20%2B%20%27%5F%27%20%2B%20eventName%2C%20eventInfo%29%3B%0A%20%20%20%20%7D%3B%0A%20%20%7D%0A%0A%20%20%2F%2F%20Send%20updated%20bounds%20back%20to%20app%2E%20Takes%20a%20leaflet%20event%20object%20as%20input%2E%0A%20%20function%20updateBounds%28map%29%20%7B%0A%20%20%20%20var%20id%20%3D%20map%2EgetContainer%28%29%2Eid%3B%0A%20%20%20%20var%20bounds%20%3D%20map%2EgetBounds%28%29%3B%0A%0A%20%20%20%20Shiny%2EonInputChange%28id%20%2B%20%27%5Fbounds%27%2C%20%7B%0A%20%20%20%20%20%20north%3A%20bounds%2EgetNorthEast%28%29%2Elat%2C%0A%20%20%20%20%20%20east%3A%20bounds%2EgetNorthEast%28%29%2Elng%2C%0A%20%20%20%20%20%20south%3A%20bounds%2EgetSouthWest%28%29%2Elat%2C%0A%20%20%20%20%20%20west%3A%20bounds%2EgetSouthWest%28%29%2Elng%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20Shiny%2EonInputChange%28id%20%2B%20%27%5Fzoom%27%2C%20map%2EgetZoom%28%29%29%3B%0A%20%20%7D%0A%0A%20%20window%2ELeafletWidget%20%3D%20%7B%7D%3B%0A%20%20var%20methods%20%3D%20window%2ELeafletWidget%2Emethods%20%3D%20%7B%7D%3B%0A%0A%20%20methods%2EclearGroup%20%3D%20function%28group%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20%24%2Eeach%28asArray%28group%29%2C%20function%28i%2C%20v%29%20%7B%0A%20%20%20%20%20%20self%2ElayerManager%2EclearGroup%28v%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EsetView%20%3D%20function%28center%2C%20zoom%2C%20options%29%20%7B%0A%20%20%20%20this%2EsetView%28center%2C%20zoom%2C%20options%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EfitBounds%20%3D%20function%28lat1%2C%20lng1%2C%20lat2%2C%20lng2%29%20%7B%0A%20%20%20%20this%2EfitBounds%28%5B%0A%20%20%20%20%20%20%5Blat1%2C%20lng1%5D%2C%20%5Blat2%2C%20lng2%5D%0A%20%20%20%20%5D%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EsetMaxBounds%20%3D%20function%28lat1%2C%20lng1%2C%20lat2%2C%20lng2%29%20%7B%0A%20%20%20%20this%2EsetMaxBounds%28%5B%0A%20%20%20%20%20%20%5Blat1%2C%20lng1%5D%2C%20%5Blat2%2C%20lng2%5D%0A%20%20%20%20%5D%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddPopups%20%3D%20function%28lat%2C%20lng%2C%20popup%2C%20layerId%2C%20group%2C%20options%29%20%7B%0A%20%20%20%20var%20df%20%3D%20dataframe%2Ecreate%28%29%0A%20%20%20%20%20%20%2Ecol%28%27lat%27%2C%20lat%29%0A%20%20%20%20%20%20%2Ecol%28%27lng%27%2C%20lng%29%0A%20%20%20%20%20%20%2Ecol%28%27popup%27%2C%20popup%29%0A%20%20%20%20%20%20%2Ecol%28%27layerId%27%2C%20layerId%29%0A%20%20%20%20%20%20%2Ecol%28%27group%27%2C%20group%29%0A%20%20%20%20%20%20%2Ecbind%28options%29%3B%0A%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20df%2Enrow%28%29%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%28function%28%29%20%7B%0A%20%20%20%20%20%20%20%20var%20popup%20%3D%20L%2Epopup%28df%2Eget%28i%29%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2EsetLatLng%28%5Bdf%2Eget%28i%2C%20%27lat%27%29%2C%20df%2Eget%28i%2C%20%27lng%27%29%5D%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2EsetContent%28df%2Eget%28i%2C%20%27popup%27%29%29%3B%0A%20%20%20%20%20%20%20%20var%20thisId%20%3D%20df%2Eget%28i%2C%20%27layerId%27%29%3B%0A%20%20%20%20%20%20%20%20var%20thisGroup%20%3D%20df%2Eget%28i%2C%20%27group%27%29%3B%0A%20%20%20%20%20%20%20%20this%2ElayerManager%2EaddLayer%28popup%2C%20%22popup%22%2C%20thisId%2C%20thisGroup%29%3B%0A%20%20%20%20%20%20%20%20popup%2Eon%28%27click%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20%27popup%5Fclick%27%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20popup%2Eon%28%27mouseover%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20%27popup%5Fmouseover%27%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20popup%2Eon%28%27mouseout%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20%27popup%5Fmouseout%27%29%2C%20this%29%3B%0A%20%20%20%20%20%20%7D%29%2Ecall%28this%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%3B%0A%0A%20%20methods%2EremovePopup%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EremoveLayer%28%22popup%22%2C%20layerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EclearPopups%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EclearLayers%28%22popup%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddTiles%20%3D%20function%28urlTemplate%2C%20layerId%2C%20group%2C%20options%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EaddLayer%28L%2EtileLayer%28urlTemplate%2C%20options%29%2C%20%22tile%22%2C%20layerId%2C%20group%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveTiles%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EremoveLayer%28%22tile%22%2C%20layerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EclearTiles%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EclearLayers%28%22tile%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddWMSTiles%20%3D%20function%28baseUrl%2C%20layerId%2C%20group%2C%20options%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EaddLayer%28L%2EtileLayer%2Ewms%28baseUrl%2C%20options%29%2C%20%22tile%22%2C%20layerId%2C%20group%29%3B%0A%20%20%7D%3B%0A%0A%20%20%2F%2F%20Given%3A%0A%20%20%2F%2F%20%20%20%7Bdata%3A%20%5B%22a%22%2C%20%22b%22%2C%20%22c%22%5D%2C%20index%3A%20%5B0%2C%201%2C%200%2C%202%5D%7D%0A%20%20%2F%2F%20returns%3A%0A%20%20%2F%2F%20%20%20%5B%22a%22%2C%20%22b%22%2C%20%22a%22%2C%20%22c%22%5D%0A%20%20function%20unpackStrings%28iconset%29%20%7B%0A%20%20%20%20if%20%28%21iconset%29%20%7B%0A%20%20%20%20%20%20return%20iconset%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28typeof%28iconset%2Eindex%29%20%3D%3D%3D%20%27undefined%27%29%20%7B%0A%20%20%20%20%20%20return%20iconset%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20iconset%2Edata%20%3D%20asArray%28iconset%2Edata%29%3B%0A%20%20%20%20iconset%2Eindex%20%3D%20asArray%28iconset%2Eindex%29%3B%0A%0A%20%20%20%20return%20%24%2Emap%28iconset%2Eindex%2C%20function%28e%2C%20i%29%20%7B%0A%20%20%20%20%20%20return%20iconset%2Edata%5Be%5D%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%0A%0A%20%20function%20addMarkers%28map%2C%20df%2C%20group%2C%20clusterOptions%2C%20clusterId%2C%20markerFunc%29%20%7B%0A%20%20%20%20%28function%28%29%20%7B%0A%20%20%20%20%20%20var%20clusterGroup%20%3D%20this%2ElayerManager%2EgetLayer%28%22cluster%22%2C%20clusterId%29%2C%0A%20%20%20%20%20%20%20%20%20%20cluster%20%3D%20clusterOptions%20%21%3D%3D%20null%3B%0A%20%20%20%20%20%20if%20%28cluster%20%26%26%20%21clusterGroup%29%20%7B%0A%20%20%20%20%20%20%20%20clusterGroup%20%3D%20L%2EmarkerClusterGroup%28clusterOptions%29%3B%0A%20%20%20%20%20%20%20%20clusterGroup%2EclusterLayerStore%20%3D%20new%20ClusterLayerStore%28clusterGroup%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20var%20extraInfo%20%3D%20cluster%20%3F%20%7B%20clusterId%3A%20clusterId%20%7D%20%3A%20%7B%7D%3B%0A%0A%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20df%2Enrow%28%29%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20%28function%28%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20marker%20%3D%20markerFunc%28df%2C%20i%29%3B%0A%20%20%20%20%20%20%20%20%20%20var%20thisId%20%3D%20df%2Eget%28i%2C%20%27layerId%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20var%20thisGroup%20%3D%20cluster%20%3F%20null%20%3A%20df%2Eget%28i%2C%20%27group%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28cluster%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20clusterGroup%2EclusterLayerStore%2Eadd%28marker%2C%20thisId%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20this%2ElayerManager%2EaddLayer%28marker%2C%20%22marker%22%2C%20thisId%2C%20thisGroup%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20var%20popup%20%3D%20df%2Eget%28i%2C%20%27popup%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28popup%20%21%3D%3D%20null%29%20marker%2EbindPopup%28popup%29%3B%0A%20%20%20%20%20%20%20%20%20%20marker%2Eon%28%27click%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20%27marker%5Fclick%27%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20%20%20marker%2Eon%28%27mouseover%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20%27marker%5Fmouseover%27%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20%20%20marker%2Eon%28%27mouseout%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20%27marker%5Fmouseout%27%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20%7D%29%2Ecall%28this%29%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20if%20%28cluster%29%20%7B%0A%20%20%20%20%20%20%20%20this%2ElayerManager%2EaddLayer%28clusterGroup%2C%20%22cluster%22%2C%20clusterId%2C%20group%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%2Ecall%28map%29%3B%0A%20%20%7D%0A%0A%20%20methods%2EaddMarkers%20%3D%20function%28lat%2C%20lng%2C%20icon%2C%20layerId%2C%20group%2C%20options%2C%20popup%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20clusterOptions%2C%20clusterId%29%20%7B%0A%20%20%20%20if%20%28icon%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20Unpack%20icons%0A%20%20%20%20%20%20icon%2EiconUrl%20%20%20%20%20%20%20%20%20%3D%20unpackStrings%28icon%2EiconUrl%29%3B%0A%20%20%20%20%20%20icon%2EiconRetinaUrl%20%20%20%3D%20unpackStrings%28icon%2EiconRetinaUrl%29%3B%0A%20%20%20%20%20%20icon%2EshadowUrl%20%20%20%20%20%20%20%3D%20unpackStrings%28icon%2EshadowUrl%29%3B%0A%20%20%20%20%20%20icon%2EshadowRetinaUrl%20%3D%20unpackStrings%28icon%2EshadowRetinaUrl%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20This%20cbinds%20the%20icon%20URLs%20and%20any%20other%20icon%20options%3B%20they%27re%20all%0A%20%20%20%20%20%20%2F%2F%20present%20on%20the%20icon%20object%2E%0A%20%20%20%20%20%20var%20icondf%20%3D%20dataframe%2Ecreate%28%29%2Ecbind%28icon%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Constructs%20an%20icon%20from%20a%20specified%20row%20of%20the%20icon%20dataframe%2E%0A%20%20%20%20%20%20var%20getIcon%20%3D%20function%28i%29%20%7B%0A%20%20%20%20%20%20%20%20var%20opts%20%3D%20icondf%2Eget%28i%29%3B%0A%20%20%20%20%20%20%20%20if%20%28%21opts%2EiconUrl%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20new%20L%2EIcon%2EDefault%28%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20%20%20%2F%2F%20Composite%20options%20%28like%20points%20or%20sizes%29%20are%20passed%20from%20R%20with%20each%0A%20%20%20%20%20%20%20%20%2F%2F%20individual%20component%20as%20its%20own%20option%2E%20We%20need%20to%20combine%20them%20now%0A%20%20%20%20%20%20%20%20%2F%2F%20into%20their%20composite%20form%2E%0A%20%20%20%20%20%20%20%20if%20%28opts%2EiconWidth%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20opts%2EiconSize%20%3D%20%5Bopts%2EiconWidth%2C%20opts%2EiconHeight%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20if%20%28opts%2EshadowWidth%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20opts%2EshadowSize%20%3D%20%5Bopts%2EshadowWidth%2C%20opts%2EshadowHeight%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20if%20%28opts%2EiconAnchorX%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20opts%2EiconAnchor%20%3D%20%5Bopts%2EiconAnchorX%2C%20opts%2EiconAnchorY%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20if%20%28opts%2EshadowAnchorX%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20opts%2EshadowAnchor%20%3D%20%5Bopts%2EshadowAnchorX%2C%20opts%2EshadowAnchorY%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20if%20%28opts%2EpopupAnchorX%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20opts%2EpopupAnchor%20%3D%20%5Bopts%2EpopupAnchorX%2C%20opts%2EpopupAnchorY%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20%20%20return%20new%20L%2EIcon%28opts%29%3B%0A%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20df%20%3D%20dataframe%2Ecreate%28%29%0A%20%20%20%20%20%20%2Ecol%28%27lat%27%2C%20lat%29%0A%20%20%20%20%20%20%2Ecol%28%27lng%27%2C%20lng%29%0A%20%20%20%20%20%20%2Ecol%28%27layerId%27%2C%20layerId%29%0A%20%20%20%20%20%20%2Ecol%28%27group%27%2C%20group%29%0A%20%20%20%20%20%20%2Ecol%28%27popup%27%2C%20popup%29%0A%20%20%20%20%20%20%2Ecbind%28options%29%3B%0A%0A%20%20%20%20if%20%28icon%29%20icondf%2EeffectiveLength%20%3D%20df%2Enrow%28%29%3B%0A%0A%20%20%20%20addMarkers%28this%2C%20df%2C%20group%2C%20clusterOptions%2C%20clusterId%2C%20function%28df%2C%20i%29%20%7B%0A%20%20%20%20%20%20var%20options%20%3D%20df%2Eget%28i%29%3B%0A%20%20%20%20%20%20if%20%28icon%29%20options%2Eicon%20%3D%20getIcon%28i%29%3B%0A%20%20%20%20%20%20return%20L%2Emarker%28%5Bdf%2Eget%28i%2C%20%27lat%27%29%2C%20df%2Eget%28i%2C%20%27lng%27%29%5D%2C%20options%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20addLayers%20%3D%20function%28map%2C%20category%2C%20df%2C%20layerFunc%29%20%7B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20df%2Enrow%28%29%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%28function%28%29%20%7B%0A%20%20%20%20%20%20%20%20var%20layer%20%3D%20layerFunc%28df%2C%20i%29%3B%0A%20%20%20%20%20%20%20%20var%20thisId%20%3D%20df%2Eget%28i%2C%20%27layerId%27%29%3B%0A%20%20%20%20%20%20%20%20var%20thisGroup%20%3D%20df%2Eget%28i%2C%20%27group%27%29%3B%0A%20%20%20%20%20%20%20%20this%2ElayerManager%2EaddLayer%28layer%2C%20category%2C%20thisId%2C%20thisGroup%29%3B%0A%20%20%20%20%20%20%20%20if%20%28layer%2EbindPopup%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20popup%20%3D%20df%2Eget%28i%2C%20%27popup%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28popup%20%21%3D%3D%20null%29%20layer%2EbindPopup%28popup%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20layer%2Eon%28%27click%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20category%20%2B%20%27%5Fclick%27%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20layer%2Eon%28%27mouseover%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20category%20%2B%20%27%5Fmouseover%27%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20layer%2Eon%28%27mouseout%27%2C%20mouseHandler%28this%2Eid%2C%20thisId%2C%20thisGroup%2C%20category%20%2B%20%27%5Fmouseout%27%29%2C%20this%29%3B%0A%20%20%20%20%20%20%7D%29%2Ecall%28map%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20methods%2EaddCircles%20%3D%20function%28lat%2C%20lng%2C%20radius%2C%20layerId%2C%20group%2C%20options%2C%20popup%29%20%7B%0A%20%20%20%20var%20df%20%3D%20dataframe%2Ecreate%28%29%0A%20%20%20%20%20%20%2Ecol%28%27lat%27%2C%20lat%29%0A%20%20%20%20%20%20%2Ecol%28%27lng%27%2C%20lng%29%0A%20%20%20%20%20%20%2Ecol%28%27radius%27%2C%20radius%29%0A%20%20%20%20%20%20%2Ecol%28%27layerId%27%2C%20layerId%29%0A%20%20%20%20%20%20%2Ecol%28%27group%27%2C%20group%29%0A%20%20%20%20%20%20%2Ecol%28%27popup%27%2C%20popup%29%0A%20%20%20%20%20%20%2Ecbind%28options%29%3B%0A%0A%20%20%20%20addLayers%28this%2C%20%22shape%22%2C%20df%2C%20function%28df%2C%20i%29%20%7B%0A%20%20%20%20%20%20return%20L%2Ecircle%28%5Bdf%2Eget%28i%2C%20%27lat%27%29%2C%20df%2Eget%28i%2C%20%27lng%27%29%5D%2C%20df%2Eget%28i%2C%20%27radius%27%29%2C%20df%2Eget%28i%29%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddCircleMarkers%20%3D%20function%28lat%2C%20lng%2C%20radius%2C%20layerId%2C%20group%2C%20options%2C%20clusterOptions%2C%20clusterId%2C%20popup%29%20%7B%0A%20%20%20%20var%20df%20%3D%20dataframe%2Ecreate%28%29%0A%20%20%20%20%20%20%2Ecol%28%27lat%27%2C%20lat%29%0A%20%20%20%20%20%20%2Ecol%28%27lng%27%2C%20lng%29%0A%20%20%20%20%20%20%2Ecol%28%27radius%27%2C%20radius%29%0A%20%20%20%20%20%20%2Ecol%28%27layerId%27%2C%20layerId%29%0A%20%20%20%20%20%20%2Ecol%28%27group%27%2C%20group%29%0A%20%20%20%20%20%20%2Ecol%28%27popup%27%2C%20popup%29%0A%20%20%20%20%20%20%2Ecbind%28options%29%3B%0A%0A%20%20%20%20addMarkers%28this%2C%20df%2C%20group%2C%20clusterOptions%2C%20clusterId%2C%20function%28df%2C%20i%29%20%7B%0A%20%20%20%20%20%20return%20L%2EcircleMarker%28%5Bdf%2Eget%28i%2C%20%27lat%27%29%2C%20df%2Eget%28i%2C%20%27lng%27%29%5D%2C%20df%2Eget%28i%29%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20%2F%2A%0A%20%20%20%2A%20%40param%20lat%20Array%20of%20arrays%20of%20latitude%20coordinates%20for%20polylines%0A%20%20%20%2A%20%40param%20lng%20Array%20of%20arrays%20of%20longitude%20coordinates%20for%20polylines%0A%20%20%20%2A%2F%0A%20%20methods%2EaddPolylines%20%3D%20function%28polygons%2C%20layerId%2C%20group%2C%20options%2C%20popup%29%20%7B%0A%20%20%20%20var%20df%20%3D%20dataframe%2Ecreate%28%29%0A%20%20%20%20%20%20%2Ecol%28%27shapes%27%2C%20polygons%29%0A%20%20%20%20%20%20%2Ecol%28%27layerId%27%2C%20layerId%29%0A%20%20%20%20%20%20%2Ecol%28%27group%27%2C%20group%29%0A%20%20%20%20%20%20%2Ecol%28%27popup%27%2C%20popup%29%0A%20%20%20%20%20%20%2Ecbind%28options%29%3B%0A%0A%20%20%20%20addLayers%28this%2C%20%22shape%22%2C%20df%2C%20function%28df%2C%20i%29%20%7B%0A%20%20%20%20%20%20%20%20var%20shape%20%3D%20df%2Eget%28i%2C%20%27shapes%27%29%5B0%5D%3B%0A%20%20%20%20%20%20%20%20shape%20%3D%20HTMLWidgets%2EdataframeToD3%28shape%29%3B%0A%20%20%20%20%20%20%20%20return%20L%2Epolyline%28shape%2C%20df%2Eget%28i%29%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveMarker%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EremoveLayer%28%22marker%22%2C%20layerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EclearMarkers%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EclearLayers%28%22marker%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveMarkerCluster%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EremoveLayer%28%22cluster%22%2C%20layerId%29%3B%0A%20%20%7D%0A%0A%20%20methods%2EremoveMarkerFromCluster%20%3D%20function%28layerId%2C%20clusterId%29%20%7B%0A%20%20%20%20var%20cluster%20%3D%20this%2ElayerManager%2EgetLayer%28%22cluster%22%2C%20clusterId%29%3B%0A%20%20%20%20if%20%28%21cluster%29%20return%3B%0A%20%20%20%20cluster%2EclusterLayerStore%2Eremove%28layerId%29%3B%0A%20%20%7D%0A%0A%20%20methods%2EclearMarkerClusters%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EclearLayers%28%22cluster%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveShape%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EremoveLayer%28%22shape%22%2C%20layerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EclearShapes%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EclearLayers%28%22shape%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddRectangles%20%3D%20function%28lat1%2C%20lng1%2C%20lat2%2C%20lng2%2C%20layerId%2C%20group%2C%20options%2C%20popup%29%20%7B%0A%20%20%20%20var%20df%20%3D%20dataframe%2Ecreate%28%29%0A%20%20%20%20%20%20%2Ecol%28%27lat1%27%2C%20lat1%29%0A%20%20%20%20%20%20%2Ecol%28%27lng1%27%2C%20lng1%29%0A%20%20%20%20%20%20%2Ecol%28%27lat2%27%2C%20lat2%29%0A%20%20%20%20%20%20%2Ecol%28%27lng2%27%2C%20lng2%29%0A%20%20%20%20%20%20%2Ecol%28%27layerId%27%2C%20layerId%29%0A%20%20%20%20%20%20%2Ecol%28%27group%27%2C%20group%29%0A%20%20%20%20%20%20%2Ecol%28%27popup%27%2C%20popup%29%0A%20%20%20%20%20%20%2Ecbind%28options%29%3B%0A%0A%20%20%20%20addLayers%28this%2C%20%22shape%22%2C%20df%2C%20function%28df%2C%20i%29%20%7B%0A%20%20%20%20%20%20return%20L%2Erectangle%28%5B%0A%20%20%20%20%20%20%20%20%20%20%5Bdf%2Eget%28i%2C%20%27lat1%27%29%2C%20df%2Eget%28i%2C%20%27lng1%27%29%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%5Bdf%2Eget%28i%2C%20%27lat2%27%29%2C%20df%2Eget%28i%2C%20%27lng2%27%29%5D%0A%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20df%2Eget%28i%29%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20%2F%2A%0A%20%20%20%2A%20%40param%20lat%20Array%20of%20arrays%20of%20latitude%20coordinates%20for%20polygons%0A%20%20%20%2A%20%40param%20lng%20Array%20of%20arrays%20of%20longitude%20coordinates%20for%20polygons%0A%20%20%20%2A%2F%0A%20%20methods%2EaddPolygons%20%3D%20function%28polygons%2C%20layerId%2C%20group%2C%20options%2C%20popup%29%20%7B%0A%20%20%20%20var%20df%20%3D%20dataframe%2Ecreate%28%29%0A%20%20%20%20%20%20%2Ecol%28%27shapes%27%2C%20polygons%29%0A%20%20%20%20%20%20%2Ecol%28%27layerId%27%2C%20layerId%29%0A%20%20%20%20%20%20%2Ecol%28%27group%27%2C%20group%29%0A%20%20%20%20%20%20%2Ecol%28%27popup%27%2C%20popup%29%0A%20%20%20%20%20%20%2Ecbind%28options%29%3B%0A%0A%20%20%20%20addLayers%28this%2C%20%22shape%22%2C%20df%2C%20function%28df%2C%20i%29%20%7B%0A%20%20%20%20%20%20var%20shapes%20%3D%20df%2Eget%28i%2C%20%27shapes%27%29%3B%0A%20%20%20%20%20%20for%20%28var%20j%20%3D%200%3B%20j%20%3C%20shapes%2Elength%3B%20j%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20shapes%5Bj%5D%20%3D%20HTMLWidgets%2EdataframeToD3%28shapes%5Bj%5D%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20return%20L%2Epolygon%28shapes%2C%20df%2Eget%28i%29%29%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddGeoJSON%20%3D%20function%28data%2C%20layerId%2C%20group%2C%20style%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20if%20%28typeof%28data%29%20%3D%3D%3D%20%22string%22%29%20%7B%0A%20%20%20%20%20%20data%20%3D%20JSON%2Eparse%28data%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20globalStyle%20%3D%20%24%2Eextend%28%7B%7D%2C%20style%2C%20data%2Estyle%20%7C%7C%20%7B%7D%29%3B%0A%0A%20%20%20%20var%20gjlayer%20%3D%20L%2EgeoJson%28data%2C%20%7B%0A%20%20%20%20%20%20style%3A%20function%28feature%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28feature%2Estyle%20%7C%7C%20feature%2Eproperties%2Estyle%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20%24%2Eextend%28%7B%7D%2C%20globalStyle%2C%20feature%2Estyle%2C%20feature%2Eproperties%2Estyle%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20globalStyle%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20onEachFeature%3A%20function%28feature%2C%20layer%29%20%7B%0A%20%20%20%20%20%20%20%20var%20extraInfo%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%20%20featureId%3A%20feature%2Eid%2C%0A%20%20%20%20%20%20%20%20%20%20properties%3A%20feature%2Eproperties%0A%20%20%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%20%20%20%20var%20popup%20%3D%20feature%2Eproperties%2Epopup%3B%0A%20%20%20%20%20%20%20%20if%20%28typeof%20popup%20%21%3D%3D%20%27undefined%27%20%26%26%20popup%20%21%3D%3D%20null%29%20layer%2EbindPopup%28popup%29%3B%0A%20%20%20%20%20%20%20%20layer%2Eon%28%22click%22%2C%20mouseHandler%28self%2Eid%2C%20layerId%2C%20group%2C%20%22geojson%5Fclick%22%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20layer%2Eon%28%22mouseover%22%2C%20mouseHandler%28self%2Eid%2C%20layerId%2C%20group%2C%20%22geojson%5Fmouseover%22%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20layer%2Eon%28%22mouseout%22%2C%20mouseHandler%28self%2Eid%2C%20layerId%2C%20group%2C%20%22geojson%5Fmouseout%22%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20this%2ElayerManager%2EaddLayer%28gjlayer%2C%20%22geojson%22%2C%20layerId%2C%20group%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveGeoJSON%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EremoveLayer%28%22geojson%22%2C%20layerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EclearGeoJSON%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EclearLayers%28%22geojson%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddTopoJSON%20%3D%20function%28data%2C%20layerId%2C%20group%2C%20style%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20if%20%28typeof%28data%29%20%3D%3D%3D%20%22string%22%29%20%7B%0A%20%20%20%20%20%20data%20%3D%20JSON%2Eparse%28data%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20globalStyle%20%3D%20%24%2Eextend%28%7B%7D%2C%20style%2C%20data%2Estyle%20%7C%7C%20%7B%7D%29%3B%0A%0A%20%20%20%20var%20gjlayer%20%3D%20L%2EgeoJson%28null%2C%20%7B%0A%20%20%20%20%20%20style%3A%20function%28feature%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28feature%2Estyle%20%7C%7C%20feature%2Eproperties%2Estyle%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20%24%2Eextend%28%7B%7D%2C%20globalStyle%2C%20feature%2Estyle%2C%20feature%2Eproperties%2Estyle%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20globalStyle%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20onEachFeature%3A%20function%28feature%2C%20layer%29%20%7B%0A%20%20%20%20%20%20%20%20var%20extraInfo%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%20%20featureId%3A%20feature%2Eid%2C%0A%20%20%20%20%20%20%20%20%20%20properties%3A%20feature%2Eproperties%0A%20%20%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%20%20%20%20var%20popup%20%3D%20feature%2Eproperties%2Epopup%3B%0A%20%20%20%20%20%20%20%20if%20%28typeof%20popup%20%21%3D%3D%20%27undefined%27%20%26%26%20popup%20%21%3D%3D%20null%29%20layer%2EbindPopup%28popup%29%3B%0A%20%20%20%20%20%20%20%20layer%2Eon%28%22click%22%2C%20mouseHandler%28self%2Eid%2C%20layerId%2C%20group%2C%20%22topojson%5Fclick%22%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20layer%2Eon%28%22mouseover%22%2C%20mouseHandler%28self%2Eid%2C%20layerId%2C%20group%2C%20%22topojson%5Fmouseover%22%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%20%20layer%2Eon%28%22mouseout%22%2C%20mouseHandler%28self%2Eid%2C%20layerId%2C%20group%2C%20%22topojson%5Fmouseout%22%2C%20extraInfo%29%2C%20this%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20omnivore%2Etopojson%2Eparse%28data%2C%20null%2C%20gjlayer%29%3B%0A%20%20%20%20this%2ElayerManager%2EaddLayer%28gjlayer%2C%20%22topojson%22%2C%20layerId%2C%20group%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveTopoJSON%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EremoveLayer%28%22topojson%22%2C%20layerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EclearTopoJSON%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EclearLayers%28%22topojson%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddControl%20%3D%20function%28html%2C%20position%2C%20layerId%2C%20classes%29%20%7B%0A%20%20%20%20function%20onAdd%28map%29%20%7B%0A%20%20%20%20%20%20var%20div%20%3D%20L%2EDomUtil%2Ecreate%28%27div%27%2C%20classes%29%3B%0A%20%20%20%20%20%20if%20%28typeof%20layerId%20%21%3D%3D%20%27undefined%27%20%26%26%20layerId%20%21%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20div%2EsetAttribute%28%27id%27%2C%20layerId%29%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20this%2E%5Fdiv%20%3D%20div%3B%0A%0A%20%20%20%20%20%20%2F%2F%20It%27s%20possible%20for%20window%2EShiny%20to%20be%20true%20but%20Shiny%2EinitializeInputs%20to%0A%20%20%20%20%20%20%2F%2F%20not%20be%2C%20when%20a%20static%20leaflet%20widget%20is%20included%20as%20part%20of%20the%20shiny%0A%20%20%20%20%20%20%2F%2F%20UI%20directly%20%28not%20through%20leafletOutput%20or%20uiOutput%29%2E%20In%20this%20case%20we%0A%20%20%20%20%20%20%2F%2F%20don%27t%20do%20the%20normal%20Shiny%20stuff%20as%20that%20will%20all%20happen%20when%20Shiny%0A%20%20%20%20%20%20%2F%2F%20itself%20loads%20and%20binds%20the%20entire%20doc%2E%0A%0A%20%20%20%20%20%20if%20%28window%2EShiny%20%26%26%20Shiny%2EinitializeInputs%29%20%7B%0A%20%20%20%20%20%20%20%20Shiny%2ErenderHtml%28html%2C%20this%2E%5Fdiv%29%3B%0A%20%20%20%20%20%20%20%20Shiny%2EinitializeInputs%28this%2E%5Fdiv%29%3B%0A%20%20%20%20%20%20%20%20Shiny%2EbindAll%28this%2E%5Fdiv%29%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20this%2E%5Fdiv%2EinnerHTML%20%3D%20html%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20return%20this%2E%5Fdiv%3B%0A%20%20%20%20%7D%0A%20%20%20%20function%20onRemove%28map%29%20%7B%0A%20%20%20%20%20%20if%20%28window%2EShiny%20%26%26%20Shiny%2EunbindAll%29%20%7B%0A%20%20%20%20%20%20%20%20Shiny%2EunbindAll%28this%2E%5Fdiv%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20var%20Control%20%3D%20L%2EControl%2Eextend%28%7B%0A%20%20%20%20%20%20options%3A%20%7Bposition%3A%20position%7D%2C%0A%20%20%20%20%20%20onAdd%3A%20onAdd%2C%0A%20%20%20%20%20%20onRemove%3A%20onRemove%0A%20%20%20%20%7D%29%0A%20%20%20%20this%2Econtrols%2Eadd%28new%20Control%2C%20layerId%2C%20html%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveControl%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2Econtrols%2Eremove%28layerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EclearControls%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2Econtrols%2Eclear%28%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddLegend%20%3D%20function%28options%29%20%7B%0A%20%20%20%20var%20legend%20%3D%20L%2Econtrol%28%7Bposition%3A%20options%2Eposition%7D%29%3B%0A%20%20%20%20var%20gradSpan%3B%0A%0A%20%20%20%20legend%2EonAdd%20%3D%20function%20%28map%29%20%7B%0A%20%20%20%20%20%20var%20div%20%3D%20L%2EDomUtil%2Ecreate%28%27div%27%2C%20options%2EclassName%29%2C%0A%20%20%20%20%20%20%20%20%20%20colors%20%3D%20options%2Ecolors%2C%0A%20%20%20%20%20%20%20%20%20%20labels%20%3D%20options%2Elabels%2C%0A%20%20%20%20%20%20%20%20%20%20legendHTML%20%3D%20%27%27%3B%0A%20%20%20%20%20%20if%20%28options%2Etype%20%3D%3D%3D%20%27numeric%27%29%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20%23%20Formatting%20constants%2E%0A%20%20%20%20%20%20%20%20var%20singleBinHeight%20%3D%2020%3B%20%20%2F%2F%20The%20distance%20between%20tick%20marks%2C%20in%20px%0A%20%20%20%20%20%20%20%20var%20vMargin%20%3D%208%3B%20%2F%2F%20If%201st%20tick%20mark%20starts%20at%20top%20of%20gradient%2C%20how%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20many%20extra%20px%20are%20needed%20for%20the%20top%20half%20of%20the%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%201st%20label%3F%20%28ditto%20for%20last%20tick%20mark%2Flabel%29%0A%20%20%20%20%20%20%20%20var%20tickWidth%20%3D%204%3B%20%20%20%20%20%2F%2F%20How%20wide%20should%20tick%20marks%20be%2C%20in%20px%3F%0A%20%20%20%20%20%20%20%20var%20labelPadding%20%3D%206%3B%20%20%2F%2F%20How%20much%20distance%20to%20reserve%20for%20tick%20mark%3F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20%28Must%20be%20%3E%3D%20tickWidth%29%0A%0A%20%20%20%20%20%20%20%20%2F%2F%20%23%20Derived%20formatting%20parameters%2E%0A%0A%20%20%20%20%20%20%20%20%2F%2F%20What%27s%20the%20height%20of%20a%20single%20bin%2C%20in%20percentage%20%28of%20gradient%20height%29%3F%0A%20%20%20%20%20%20%20%20%2F%2F%20It%20might%20not%20just%20be%201%2F%28n%2D1%29%2C%20if%20the%20gradient%20extends%20past%20the%20tick%0A%20%20%20%20%20%20%20%20%2F%2F%20marks%20%28which%20can%20be%20the%20case%20for%20pretty%20cut%20points%29%2E%0A%20%20%20%20%20%20%20%20var%20singleBinPct%20%3D%20%28options%2Eextra%2Ep%5Fn%20%2D%20options%2Eextra%2Ep%5F1%29%20%2F%20%28labels%2Elength%20%2D%201%29%3B%0A%20%20%20%20%20%20%20%20%2F%2F%20Each%20bin%20is%20%60singleBinHeight%60%20high%2E%20How%20tall%20is%20the%20gradient%3F%0A%20%20%20%20%20%20%20%20var%20totalHeight%20%3D%20%281%20%2F%20singleBinPct%29%20%2A%20singleBinHeight%20%2B%201%3B%0A%20%20%20%20%20%20%20%20%2F%2F%20How%20far%20should%20the%20first%20tick%20be%20shifted%20down%2C%20relative%20to%20the%20top%0A%20%20%20%20%20%20%20%20%2F%2F%20of%20the%20gradient%3F%0A%20%20%20%20%20%20%20%20var%20tickOffset%20%3D%20%28singleBinHeight%20%2F%20singleBinPct%29%20%2A%20options%2Eextra%2Ep%5F1%3B%0A%0A%20%20%20%20%20%20%20%20gradSpan%20%3D%20%24%28%27%3Cspan%2F%3E%27%29%2Ecss%28%7B%0A%20%20%20%20%20%20%20%20%20%20%27background%27%3A%20%27linear%2Dgradient%28%27%20%2B%20colors%20%2B%20%27%29%27%2C%0A%20%20%20%20%20%20%20%20%20%20%27opacity%27%3A%20options%2Eopacity%2C%0A%20%20%20%20%20%20%20%20%20%20%27height%27%3A%20totalHeight%20%2B%20%27px%27%2C%0A%20%20%20%20%20%20%20%20%20%20%27width%27%3A%20%2718px%27%2C%0A%20%20%20%20%20%20%20%20%20%20%27display%27%3A%20%27block%27%2C%0A%20%20%20%20%20%20%20%20%20%20%27margin%2Dtop%27%3A%20vMargin%20%2B%20%27px%27%0A%20%20%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%20%20%20%20var%20leftDiv%20%3D%20%24%28%27%3Cdiv%2F%3E%27%29%2Ecss%28%27float%27%2C%20%27left%27%29%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20rightDiv%20%3D%20%24%28%27%3Cdiv%2F%3E%27%29%2Ecss%28%27float%27%2C%20%27left%27%29%3B%0A%20%20%20%20%20%20%20%20leftDiv%2Eappend%28gradSpan%29%3B%0A%20%20%20%20%20%20%20%20%24%28div%29%2Eappend%28leftDiv%29%2Eappend%28rightDiv%29%0A%20%20%20%20%20%20%20%20%20%20%2Eappend%28%24%28%22%3Cbr%20clear%3D%27both%27%2F%3E%22%29%29%3B%0A%0A%20%20%20%20%20%20%20%20%2F%2F%20Have%20to%20attach%20the%20div%20to%20the%20body%20at%20this%20early%20point%2C%20so%20that%20the%0A%20%20%20%20%20%20%20%20%2F%2F%20svg%20text%20getComputedTextLength%28%29%20actually%20works%2C%20below%2E%0A%20%20%20%20%20%20%20%20document%2Ebody%2EappendChild%28div%29%3B%0A%0A%20%20%20%20%20%20%20%20var%20ns%20%3D%20%27http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%27%3B%0A%20%20%20%20%20%20%20%20var%20svg%20%3D%20document%2EcreateElementNS%28ns%2C%20%27svg%27%29%3B%0A%20%20%20%20%20%20%20%20rightDiv%2Eappend%28svg%29%3B%0A%20%20%20%20%20%20%20%20var%20g%20%3D%20document%2EcreateElementNS%28ns%2C%20%27g%27%29%3B%0A%20%20%20%20%20%20%20%20%24%28g%29%2Eattr%28%22transform%22%2C%20%22translate%280%2C%20%22%20%2B%20vMargin%20%2B%20%22%29%22%29%3B%0A%20%20%20%20%20%20%20%20svg%2EappendChild%28g%29%3B%0A%0A%20%20%20%20%20%20%20%20%2F%2F%20max%20label%20width%20needed%20to%20set%20width%20of%20svg%2C%20and%20right%2Djustify%20text%0A%20%20%20%20%20%20%20%20var%20maxLblWidth%20%3D%200%3B%0A%0A%20%20%20%20%20%20%20%20%2F%2F%20Create%20tick%20marks%20and%20labels%0A%20%20%20%20%20%20%20%20%24%2Eeach%28labels%2C%20function%28i%2C%20label%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20y%20%3D%20tickOffset%20%2B%20i%2AsingleBinHeight%20%2B%200%2E5%3B%0A%0A%20%20%20%20%20%20%20%20%20%20var%20thisLabel%20%3D%20document%2EcreateElementNS%28ns%2C%20%27text%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20%24%28thisLabel%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Etext%28labels%5Bi%5D%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27y%27%2C%20y%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27dx%27%2C%20labelPadding%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27dy%27%2C%20%270%2E5ex%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20g%2EappendChild%28thisLabel%29%3B%0A%20%20%20%20%20%20%20%20%20%20maxLblWidth%20%3D%20Math%2Emax%28maxLblWidth%2C%20thisLabel%2EgetComputedTextLength%28%29%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20var%20thisTick%20%3D%20document%2EcreateElementNS%28ns%2C%20%27line%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20%24%28thisTick%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27x1%27%2C%200%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27x2%27%2C%20tickWidth%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27y1%27%2C%20y%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27y2%27%2C%20y%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27stroke%2Dwidth%27%2C%201%29%3B%0A%20%20%20%20%20%20%20%20%20%20g%2EappendChild%28thisTick%29%3B%0A%20%20%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20%20%20%2F%2F%20Now%20that%20we%20know%20the%20max%20label%20width%2C%20we%20can%20right%2Djustify%0A%20%20%20%20%20%20%20%20%24%28svg%29%2Efind%28%27text%27%29%0A%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27dx%27%2C%20labelPadding%20%2B%20maxLblWidth%29%0A%20%20%20%20%20%20%20%20%20%20%2Eattr%28%27text%2Danchor%27%2C%20%27end%27%29%3B%0A%20%20%20%20%20%20%20%20%2F%2F%20Final%20size%20for%20%3Csvg%3E%0A%20%20%20%20%20%20%20%20%24%28svg%29%2Ecss%28%7B%0A%20%20%20%20%20%20%20%20%20%20width%3A%20%28maxLblWidth%20%2B%20labelPadding%29%20%2B%20%22px%22%2C%0A%20%20%20%20%20%20%20%20%20%20height%3A%20totalHeight%20%2B%20vMargin%2A2%20%2B%20%22px%22%0A%20%20%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20%20%20if%20%28options%2Ena%5Fcolor%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%24%28div%29%2Eappend%28%27%3Cdiv%3E%3Ci%20style%3D%22background%3A%27%20%2B%20options%2Ena%5Fcolor%20%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%27%22%3E%3C%2Fi%3E%20%27%20%2B%20options%2Ena%5Flabel%20%2B%20%27%3C%2Fdiv%3E%27%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28options%2Ena%5Fcolor%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20colors%2Epush%28options%2Ena%5Fcolor%29%3B%0A%20%20%20%20%20%20%20%20%20%20labels%2Epush%28options%2Ena%5Flabel%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20colors%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20legendHTML%20%2B%3D%20%27%3Ci%20style%3D%22background%3A%27%20%2B%20colors%5Bi%5D%20%2B%20%27%3Bopacity%3A%27%20%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20options%2Eopacity%20%2B%20%27%22%3E%3C%2Fi%3E%20%27%20%2B%20labels%5Bi%5D%20%2B%20%27%3Cbr%2F%3E%27%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20div%2EinnerHTML%20%3D%20legendHTML%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20if%20%28options%2Etitle%29%0A%20%20%20%20%20%20%20%20%24%28div%29%2Eprepend%28%27%3Cdiv%20style%3D%22margin%2Dbottom%3A3px%22%3E%3Cstrong%3E%27%20%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20options%2Etitle%20%2B%20%27%3C%2Fstrong%3E%3C%2Fdiv%3E%27%29%3B%0A%20%20%20%20%20%20return%20div%3B%0A%20%20%20%20%7D%3B%0A%0A%20%20%20%20this%2Econtrols%2Eadd%28legend%2C%20options%2ElayerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddLayersControl%20%3D%20function%28baseGroups%2C%20overlayGroups%2C%20options%29%20%7B%0A%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%0A%20%20%20%20%2F%2F%20Only%20allow%20one%20layers%20control%20at%20a%20time%0A%20%20%20%20methods%2EremoveLayersControl%2Ecall%28this%29%3B%0A%0A%20%20%20%20var%20firstLayer%20%3D%20true%3B%0A%20%20%20%20var%20base%20%3D%20%7B%7D%3B%0A%20%20%20%20%24%2Eeach%28asArray%28baseGroups%29%2C%20function%28i%2C%20g%29%20%7B%0A%20%20%20%20%20%20var%20layer%20%3D%20self%2ElayerManager%2EgetLayerGroup%28g%2C%20true%29%3B%0A%20%20%20%20%20%20if%20%28layer%29%20%7B%0A%20%20%20%20%20%20%20%20base%5Bg%5D%20%3D%20layer%3B%0A%0A%20%20%20%20%20%20%20%20%2F%2F%20Check%20if%20%3E1%20base%20layers%20are%20visible%3B%20if%20so%2C%20hide%20all%20but%20the%20first%20one%0A%20%20%20%20%20%20%20%20if%20%28self%2EhasLayer%28layer%29%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20if%20%28firstLayer%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20firstLayer%20%3D%20false%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20self%2EremoveLayer%28layer%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20var%20overlay%20%3D%20%7B%7D%3B%0A%20%20%20%20%24%2Eeach%28asArray%28overlayGroups%29%2C%20function%28i%2C%20g%29%20%7B%0A%20%20%20%20%20%20var%20layer%20%3D%20self%2ElayerManager%2EgetLayerGroup%28g%2C%20true%29%3B%0A%20%20%20%20%20%20if%20%28layer%29%20%7B%0A%20%20%20%20%20%20%20%20overlay%5Bg%5D%20%3D%20layer%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20var%20layersControl%20%3D%20L%2Econtrol%2Elayers%28base%2C%20overlay%2C%20options%29%2EaddTo%28this%29%3B%0A%20%20%20%20this%2EcurrentLayersControl%20%3D%20layersControl%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveLayersControl%20%3D%20function%28%29%20%7B%0A%20%20%20%20if%20%28this%2EcurrentLayersControl%29%20%7B%0A%20%20%20%20%20%20this%2EcurrentLayersControl%2EremoveFrom%28this%29%3B%0A%20%20%20%20%20%20this%2EcurrentLayersControl%20%3D%20null%3B%0A%20%20%20%20%7D%0A%20%20%7D%3B%0A%0A%20%20methods%2EhideGroup%20%3D%20function%28group%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20%24%2Eeach%28asArray%28group%29%2C%20function%28i%2C%20g%29%20%7B%0A%20%20%20%20%20%20var%20layer%20%3D%20self%2ElayerManager%2EgetLayerGroup%28g%2C%20true%29%3B%0A%20%20%20%20%20%20if%20%28layer%29%20%7B%0A%20%20%20%20%20%20%20%20self%2EremoveLayer%28layer%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EshowGroup%20%3D%20function%28group%29%20%7B%0A%20%20%20%20var%20self%20%3D%20this%3B%0A%20%20%20%20%24%2Eeach%28asArray%28group%29%2C%20function%28i%2C%20g%29%20%7B%0A%20%20%20%20%20%20var%20layer%20%3D%20self%2ElayerManager%2EgetLayerGroup%28g%2C%20true%29%3B%0A%20%20%20%20%20%20if%20%28layer%29%20%7B%0A%20%20%20%20%20%20%20%20self%2EaddLayer%28layer%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EaddRasterImage%20%3D%20function%28uri%2C%20bounds%2C%20opacity%2C%20attribution%2C%20layerId%2C%20group%29%20%7B%0A%20%20%20%20%2F%2F%20uri%20is%20a%20data%20URI%20containing%20an%20image%2E%20We%20want%20to%20paint%20this%20image%20as%20a%0A%20%20%20%20%2F%2F%20layer%20at%20%28top%2Dleft%29%20bounds%5B0%5D%20to%20%28bottom%2Dright%29%20bounds%5B1%5D%2E%0A%0A%20%20%20%20%2F%2F%20We%20can%27t%20simply%20use%20ImageOverlay%2C%20as%20it%20uses%20bilinear%20scaling%20which%20looks%0A%20%20%20%20%2F%2F%20awful%20as%20you%20zoom%20in%20%28and%20sometimes%20shifts%20positions%20or%20disappears%29%2E%0A%20%20%20%20%2F%2F%20Instead%2C%20we%27ll%20use%20a%20TileLayer%2ECanvas%20to%20draw%20pieces%20of%20the%20image%2E%0A%0A%20%20%20%20%2F%2F%20First%2C%20some%20helper%20functions%2E%0A%0A%20%20%20%20%2F%2F%20degree2tile%20converts%20latitude%2C%20longitude%2C%20and%20zoom%20to%20x%20and%20y%20tile%0A%20%20%20%20%2F%2F%20numbers%2E%20The%20tile%20numbers%20returned%20can%20be%20non%2Dintegral%2C%20as%20there%27s%20no%0A%20%20%20%20%2F%2F%20reason%20to%20expect%20that%20the%20lat%2Flng%20inputs%20are%20exactly%20on%20the%20border%20of%20two%0A%20%20%20%20%2F%2F%20tiles%2E%0A%20%20%20%20%2F%2F%0A%20%20%20%20%2F%2F%20We%27ll%20use%20this%20to%20convert%20the%20bounds%20we%20got%20from%20the%20server%2C%20into%20coords%0A%20%20%20%20%2F%2F%20in%20tile%2Dspace%20at%20a%20given%20zoom%20level%2E%20Note%20that%20once%20we%20do%20the%20conversion%2C%0A%20%20%20%20%2F%2F%20we%20don%27t%20to%20do%20any%20more%20trigonometry%20to%20convert%20between%20pixel%20coordinates%0A%20%20%20%20%2F%2F%20and%20tile%20coordinates%3B%20the%20source%20image%20pixel%20coords%2C%20destination%20canvas%0A%20%20%20%20%2F%2F%20pixel%20coords%2C%20and%20tile%20coords%20all%20can%20be%20scaled%20linearly%2E%0A%20%20%20%20function%20degree2tile%28lat%2C%20lng%2C%20zoom%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20See%20http%3A%2F%2Fwiki%2Eopenstreetmap%2Eorg%2Fwiki%2FSlippy%5Fmap%5Ftilenames%0A%20%20%20%20%20%20var%20latRad%20%3D%20lat%20%2A%20Math%2EPI%20%2F%20180%3B%0A%20%20%20%20%20%20var%20n%20%3D%20Math%2Epow%282%2C%20zoom%29%3B%0A%20%20%20%20%20%20var%20x%20%3D%20%28lng%20%2B%20180%29%20%2F%20360%20%2A%20n%0A%20%20%20%20%20%20var%20y%20%3D%20%281%20%2D%20Math%2Elog%28Math%2Etan%28latRad%29%20%2B%20%281%20%2F%20Math%2Ecos%28latRad%29%29%29%20%2F%20Math%2EPI%29%20%2F%202%20%2A%20n%0A%20%20%20%20%20%20return%20%7Bx%3A%20x%2C%20y%3A%20y%7D%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20%2F%2F%20Given%20a%20range%20%5Bfrom%2Cto%29%20and%20either%20one%20or%20two%20numbers%2C%20returns%20true%20if%0A%20%20%20%20%2F%2F%20there%20is%20any%20overlap%20between%20%5Bx%2Cx1%29%20and%20the%20range%2D%2Dor%20if%20x1%20is%20omitted%2C%0A%20%20%20%20%2F%2F%20then%20returns%20true%20if%20x%20is%20within%20%5Bfrom%2Cto%29%2E%0A%20%20%20%20function%20overlap%28from%2C%20to%2C%20x%2C%20%2F%2A%20optional%20%2A%2F%20x1%29%20%7B%0A%20%20%20%20%20%20if%20%28arguments%2Elength%20%3D%3D%203%29%0A%20%20%20%20%20%20%20%20x1%20%3D%20x%3B%0A%20%20%20%20%20%20return%20x%20%3C%20to%20%26%26%20x1%20%3E%3D%20from%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20function%20getCanvasSmoothingProperty%28ctx%29%20%7B%0A%20%20%20%20%20%20var%20candidates%20%3D%20%5B%22imageSmoothingEnabled%22%2C%20%22mozImageSmoothingEnabled%22%2C%0A%20%20%20%20%20%20%20%20%20%20%22webkitImageSmoothingEnabled%22%2C%20%22msImageSmoothingEnabled%22%5D%3B%0A%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20candidates%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28typeof%28ctx%5Bcandidates%5Bi%5D%5D%29%20%21%3D%3D%20%22undefined%22%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20candidates%5Bi%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20return%20null%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20%2F%2F%20Our%20general%20strategy%20is%20to%3A%0A%20%20%20%20%2F%2F%201%2E%20Load%20the%20data%20URI%20in%20an%20Image%28%29%20object%2C%20so%20we%20can%20get%20its%20pixel%0A%20%20%20%20%2F%2F%20%20%20%20dimensions%20and%20the%20underlying%20image%20data%2E%20%28We%20could%20have%20done%20this%0A%20%20%20%20%2F%2F%20%20%20%20by%20not%20encoding%20as%20PNG%20at%20all%20but%20just%20send%20an%20array%20of%20RGBA%20values%0A%20%20%20%20%2F%2F%20%20%20%20from%20the%20server%2C%20but%20that%20would%20inflate%20the%20JSON%20too%20much%2E%29%0A%20%20%20%20%2F%2F%202%2E%20Create%20a%20hidden%20canvas%20that%20we%20use%20just%20to%20extract%20the%20image%20data%0A%20%20%20%20%2F%2F%20%20%20%20from%20the%20Image%20%28using%20Context2D%2EgetImageData%28%29%29%2E%0A%20%20%20%20%2F%2F%203%2E%20Create%20a%20TileLayer%2ECanvas%20and%20add%20it%20to%20the%20map%2E%0A%0A%20%20%20%20%2F%2F%20We%20want%20to%20synchronously%20create%20and%20attach%20the%20TileLayer%2ECanvas%20%28so%20an%0A%20%20%20%20%2F%2F%20immediate%20call%20to%20clearRasters%28%29%20will%20be%20respected%2C%20for%20example%29%2C%20but%0A%20%20%20%20%2F%2F%20Image%20loads%20its%20data%20asynchronously%2E%20Fortunately%20we%20can%20resolve%20this%0A%20%20%20%20%2F%2F%20by%20putting%20TileLayer%2ECanvas%20into%20async%20mode%2C%20which%20will%20let%20us%20create%0A%20%20%20%20%2F%2F%20and%20attach%20the%20layer%20but%20have%20it%20wait%20until%20the%20image%20is%20loaded%20before%0A%20%20%20%20%2F%2F%20it%20actually%20draws%20anything%2E%0A%0A%20%20%20%20%2F%2F%20These%20are%20the%20variables%20that%20we%20will%20populate%20once%20the%20image%20is%20loaded%2E%0A%20%20%20%20var%20imgData%20%3D%20null%3B%20%2F%2F%201d%20row%2Dmajor%20array%2C%20four%20%5B0%2D255%5D%20integers%20per%20pixel%0A%20%20%20%20var%20imgDataMipMapper%20%3D%20null%3B%0A%20%20%20%20var%20w%20%3D%20null%3B%20%20%20%20%20%20%20%2F%2F%20image%20width%20in%20pixels%0A%20%20%20%20var%20h%20%3D%20null%3B%20%20%20%20%20%20%20%2F%2F%20image%20height%20in%20pixels%0A%0A%20%20%20%20%2F%2F%20We%27ll%20use%20this%20array%20to%20store%20callbacks%20that%20need%20to%20be%20invoked%20once%0A%20%20%20%20%2F%2F%20imgData%2C%20w%2C%20and%20h%20have%20been%20resolved%2E%0A%20%20%20%20var%20imgDataCallbacks%20%3D%20%5B%5D%3B%0A%0A%20%20%20%20%2F%2F%20Consumers%20of%20imgData%2C%20w%2C%20and%20h%20can%20call%20this%20to%20be%20notified%20when%20data%0A%20%20%20%20%2F%2F%20is%20available%2E%20Unlike%20most%20async%2Fpromise%2Dbased%20APIs%2C%20the%20callback%20will%0A%20%20%20%20%2F%2F%20be%20invoked%20immediately%2Fsynchronously%20if%20the%20data%20is%20already%20available%2E%0A%20%20%20%20function%20getImageData%28callback%29%20%7B%0A%20%20%20%20%20%20if%20%28imgData%20%21%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20callback%28imgData%2C%20w%2C%20h%2C%20imgDataMipMapper%29%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20imgDataCallbacks%2Epush%28callback%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20img%20%3D%20new%20Image%28%29%3B%0A%20%20%20%20img%2Eonload%20%3D%20function%28%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20Save%20size%0A%20%20%20%20%20%20w%20%3D%20img%2Ewidth%3B%0A%20%20%20%20%20%20h%20%3D%20img%2Eheight%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Create%20a%20dummy%20canvas%20to%20extract%20the%20image%20data%0A%20%20%20%20%20%20var%20imgDataCanvas%20%3D%20document%2EcreateElement%28%22canvas%22%29%3B%0A%20%20%20%20%20%20imgDataCanvas%2Ewidth%20%3D%20w%3B%0A%20%20%20%20%20%20imgDataCanvas%2Eheight%20%3D%20h%3B%0A%20%20%20%20%20%20imgDataCanvas%2Estyle%2Edisplay%20%3D%20%22none%22%3B%0A%20%20%20%20%20%20document%2Ebody%2EappendChild%28imgDataCanvas%29%3B%0A%0A%20%20%20%20%20%20var%20imgDataCtx%20%3D%20imgDataCanvas%2EgetContext%28%222d%22%29%3B%0A%20%20%20%20%20%20imgDataCtx%2EdrawImage%28img%2C%200%2C%200%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Save%20the%20image%20data%2E%0A%20%20%20%20%20%20imgData%20%3D%20imgDataCtx%2EgetImageData%280%2C%200%2C%20w%2C%20h%29%2Edata%3B%0A%20%20%20%20%20%20imgDataMipMapper%20%3D%20new%20Mipmapper%28img%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Done%20with%20the%20canvas%2C%20remove%20it%20from%20the%20page%20so%20it%20can%20be%20gc%27d%2E%0A%20%20%20%20%20%20document%2Ebody%2EremoveChild%28imgDataCanvas%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Alert%20any%20getImageData%20callers%20who%20are%20waiting%2E%0A%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20imgDataCallbacks%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20imgDataCallbacks%5Bi%5D%28imgData%2C%20w%2C%20h%2C%20imgDataMipMapper%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20imgDataCallbacks%20%3D%20%5B%5D%3B%0A%20%20%20%20%7D%3B%0A%20%20%20%20img%2Esrc%20%3D%20uri%3B%0A%0A%20%20%20%20var%20canvasTiles%20%3D%20L%2EtileLayer%2Ecanvas%28%7B%0A%20%20%20%20%20%20opacity%3A%20opacity%2C%0A%20%20%20%20%20%20attribution%3A%20attribution%2C%0A%20%20%20%20%20%20detectRetina%3A%20true%2C%0A%20%20%20%20%20%20async%3A%20true%0A%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20canvasTiles%2EdrawTile%20%3D%20function%28canvas%2C%20tilePoint%2C%20zoom%29%20%7B%0A%20%20%20%20%20%20getImageData%28function%28imgData%2C%20w%2C%20h%2C%20mipmapper%29%20%7B%0A%20%20%20%20%20%20%20%20try%20%7B%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20The%20Context2D%20we%27ll%20being%20drawing%20onto%2E%20It%27s%20always%20256x256%2E%0A%20%20%20%20%20%20%20%20%20%20var%20ctx%20%3D%20canvas%2EgetContext%28%272d%27%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Convert%20our%20image%20data%27s%20top%2Dleft%20and%20bottom%2Dright%20locations%20into%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20x%2Fy%20tile%20coordinates%2E%20This%20is%20essentially%20doing%20a%20spherical%20mercator%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20projection%2C%20then%20multiplying%20by%202%5Ezoom%2E%0A%20%20%20%20%20%20%20%20%20%20var%20topLeft%20%3D%20degree2tile%28bounds%5B0%5D%5B0%5D%2C%20bounds%5B0%5D%5B1%5D%2C%20zoom%29%3B%0A%20%20%20%20%20%20%20%20%20%20var%20bottomRight%20%3D%20degree2tile%28bounds%5B1%5D%5B0%5D%2C%20bounds%5B1%5D%5B1%5D%2C%20zoom%29%3B%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20The%20size%20of%20the%20image%20in%20x%2Fy%20tile%20coordinates%2E%0A%20%20%20%20%20%20%20%20%20%20var%20extent%20%3D%20%7Bx%3A%20bottomRight%2Ex%20%2D%20topLeft%2Ex%2C%20y%3A%20bottomRight%2Ey%20%2D%20topLeft%2Ey%7D%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Short%20circuit%20if%20tile%20is%20totally%20disjoint%20from%20image%2E%0A%20%20%20%20%20%20%20%20%20%20if%20%28%21overlap%28tilePoint%2Ex%2C%20tilePoint%2Ex%20%2B%201%2C%20topLeft%2Ex%2C%20bottomRight%2Ex%29%29%0A%20%20%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28%21overlap%28tilePoint%2Ey%2C%20tilePoint%2Ey%20%2B%201%2C%20topLeft%2Ey%2C%20bottomRight%2Ey%29%29%0A%20%20%20%20%20%20%20%20%20%20%20%20return%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20The%20linear%20resolution%20of%20the%20tile%20we%27re%20drawing%20is%20always%20256px%20per%20tile%20unit%2E%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20If%20the%20linear%20resolution%20%28in%20either%20direction%29%20of%20the%20image%20is%20less%20than%20256px%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20per%20tile%20unit%2C%20then%20use%20nearest%20neighbor%3B%20otherwise%2C%20use%20the%20canvas%27s%20built%2Din%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20scaling%2E%0A%20%20%20%20%20%20%20%20%20%20var%20imgRes%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20x%3A%20w%20%2F%20extent%2Ex%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20y%3A%20h%20%2F%20extent%2Ey%0A%20%20%20%20%20%20%20%20%20%20%7D%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20We%20can%20do%20the%20actual%20drawing%20in%20one%20of%20three%20ways%3A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%2D%20Call%20drawImage%28%29%2E%20This%20is%20easy%20and%20fast%2C%20and%20results%20in%20smooth%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20interpolation%20%28bilinear%3F%29%2E%20This%20is%20what%20we%20want%20when%20we%20are%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20reducing%20the%20image%20from%20its%20native%20size%2E%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%2D%20Call%20drawImage%28%29%20with%20imageSmoothingEnabled%3Dfalse%2E%20This%20is%20easy%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20and%20fast%20and%20gives%20us%20nearest%2Dneighbor%20interpolation%2C%20which%20is%20what%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20we%20want%20when%20enlarging%20the%20image%2E%20However%2C%20it%27s%20unsupported%20on%20many%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20browsers%20%28including%20QtWebkit%29%2E%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%2D%20Do%20a%20manual%20nearest%2Dneighbor%20interpolation%2E%20This%20is%20what%20we%27ll%20fall%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20back%20to%20when%20enlarging%2C%20and%20imageSmoothingEnabled%20isn%27t%20supported%2E%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20In%20theory%20it%27s%20slower%2C%20but%20still%20pretty%20fast%20on%20my%20machine%2C%20and%20the%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20results%20look%20the%20same%20AFAICT%2E%0A%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Is%20imageSmoothingEnabled%20supported%3F%20If%20so%2C%20we%20can%20let%20canvas%20do%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20nearest%2Dneighbor%20interpolation%20for%20us%2E%0A%20%20%20%20%20%20%20%20%20%20var%20smoothingProperty%20%3D%20getCanvasSmoothingProperty%28ctx%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20if%20%28smoothingProperty%20%7C%7C%20imgRes%2Ex%20%3E%3D%20256%20%26%26%20imgRes%2Ey%20%3E%3D%20256%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Use%20built%2Din%20scaling%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Turn%20off%20anti%2Daliasing%20if%20necessary%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28smoothingProperty%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20ctx%5BsmoothingProperty%5D%20%3D%20imgRes%2Ex%20%3E%3D%20256%20%26%26%20imgRes%2Ey%20%3E%3D%20256%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Don%27t%20necessarily%20draw%20with%20the%20full%2Dsize%20image%3B%20if%20we%27re%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20downscaling%2C%20use%20the%20mipmapper%20to%20get%20a%20pre%2Ddownscaled%20image%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20%28see%20comments%20on%20Mipmapper%20class%20for%20why%20this%20matters%29%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20mipmapper%2EgetBySize%28extent%2Ex%2A256%2C%20extent%2Ey%2A256%2C%20function%28mip%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20It%27s%20possible%20that%20the%20image%20will%20go%20off%20the%20edge%20of%20the%20canvas%2D%2D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20that%27s%20OK%2C%20the%20canvas%20should%20clip%20appropriately%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20ctx%2EdrawImage%28mip%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Convert%20abs%20tile%20coords%20to%20rel%20tile%20coords%2C%20then%20%2A256%20to%20convert%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20to%20rel%20pixel%20coords%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28topLeft%2Ex%20%2D%20tilePoint%2Ex%29%20%2A%20256%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28topLeft%2Ey%20%2D%20tilePoint%2Ey%29%20%2A%20256%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Always%20draw%20the%20whole%20thing%20and%20let%20canvas%20clip%3B%20so%20we%20can%20just%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20convert%20from%20size%20in%20tile%20coords%20straight%20to%20pixels%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20extent%2Ex%20%2A%20256%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20extent%2Ey%20%2A%20256%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Use%20manual%20nearest%2Dneighbor%20interpolation%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Calculate%20the%20source%20image%20pixel%20coordinates%20that%20correspond%20with%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20the%20top%2Dleft%20and%20bottom%2Dright%20of%20this%20tile%2E%20%28If%20the%20source%20image%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20only%20partially%20overlaps%20the%20tile%2C%20we%20use%20max%2Fmin%20to%20limit%20the%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20sourceStart%2FEnd%20to%20only%20reflect%20the%20overlapping%20portion%2E%29%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20sourceStart%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20x%3A%20Math%2Emax%280%2C%20Math%2Efloor%28%28tilePoint%2Ex%20%2D%20topLeft%2Ex%29%20%2A%20imgRes%2Ex%29%29%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20y%3A%20Math%2Emax%280%2C%20Math%2Efloor%28%28tilePoint%2Ey%20%2D%20topLeft%2Ey%29%20%2A%20imgRes%2Ey%29%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20sourceEnd%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20x%3A%20Math%2Emin%28w%2C%20Math%2Eceil%28%28tilePoint%2Ex%20%2B%201%20%2D%20topLeft%2Ex%29%20%2A%20imgRes%2Ex%29%29%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20y%3A%20Math%2Emin%28h%2C%20Math%2Eceil%28%28tilePoint%2Ey%20%2B%201%20%2D%20topLeft%2Ey%29%20%2A%20imgRes%2Ey%29%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20The%20size%2C%20in%20dest%20pixels%2C%20that%20each%20source%20pixel%20should%20occupy%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20This%20might%20be%20greater%20or%20less%20than%201%20%28e%2Eg%2E%20if%20x%20and%20y%20resolution%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20are%20very%20different%29%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20pixelSize%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20x%3A%20256%20%2F%20imgRes%2Ex%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20y%3A%20256%20%2F%20imgRes%2Ey%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20For%20each%20pixel%20in%20the%20source%20image%20that%20overlaps%20the%20tile%2E%2E%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20for%20%28var%20row%20%3D%20sourceStart%2Ey%3B%20row%20%3C%20sourceEnd%2Ey%3B%20row%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20for%20%28var%20col%20%3D%20sourceStart%2Ex%3B%20col%20%3C%20sourceEnd%2Ex%3B%20col%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20%2E%2E%2Eextract%20the%20pixel%20data%2E%2E%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20i%20%3D%20%28%28row%20%2A%20w%29%20%2B%20col%29%20%2A%204%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20r%20%3D%20imgData%5Bi%5D%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20g%20%3D%20imgData%5Bi%2B1%5D%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20b%20%3D%20imgData%5Bi%2B2%5D%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20a%20%3D%20imgData%5Bi%2B3%5D%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20ctx%2EfillStyle%20%3D%20%22rgba%28%22%20%2B%20%5Br%2Cg%2Cb%2Ca%2F255%5D%2Ejoin%28%22%2C%22%29%20%2B%20%22%29%22%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20%2E%2E%2Ecalculate%20the%20corresponding%20pixel%20coord%20in%20the%20dest%20image%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20where%20it%20should%20be%20drawn%2E%2E%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20pixelPos%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20x%3A%20%28%28%28col%20%2F%20imgRes%2Ex%29%20%2B%20topLeft%2Ex%29%20%2D%20tilePoint%2Ex%29%20%2A%20256%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20y%3A%20%28%28%28row%20%2F%20imgRes%2Ey%29%20%2B%20topLeft%2Ey%29%20%2D%20tilePoint%2Ey%29%20%2A%20256%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20%2E%2E%2Eand%20draw%20a%20rectangle%20there%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20ctx%2EfillRect%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Math%2Eround%28pixelPos%2Ex%29%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Math%2Eround%28pixelPos%2Ey%29%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Looks%20crazy%2C%20but%20this%20is%20necessary%20to%20prevent%20rounding%20from%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20causing%20overlap%20between%20this%20rect%20and%20its%20neighbors%2E%20The%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20minuend%20is%20the%20location%20of%20the%20next%20pixel%2C%20while%20the%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20subtrahend%20is%20the%20position%20of%20the%20current%20pixel%20%28to%20turn%20an%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20absolute%20coordinate%20to%20a%20width%2Fheight%29%2E%20Yes%2C%20I%20had%20to%20look%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20up%20minuend%20and%20subtrahend%2E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Math%2Eround%28pixelPos%2Ex%20%2B%20pixelSize%2Ex%29%20%2D%20Math%2Eround%28pixelPos%2Ex%29%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Math%2Eround%28pixelPos%2Ey%20%2B%20pixelSize%2Ey%29%20%2D%20Math%2Eround%28pixelPos%2Ey%29%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%20finally%20%7B%0A%20%20%20%20%20%20%20%20%20%20canvasTiles%2EtileDrawn%28canvas%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%3B%0A%0A%20%20%20%20this%2ElayerManager%2EaddLayer%28canvasTiles%2C%20%22image%22%2C%20layerId%2C%20group%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EremoveImage%20%3D%20function%28layerId%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EremoveLayer%28%22image%22%2C%20layerId%29%3B%0A%20%20%7D%3B%0A%0A%20%20methods%2EclearImages%20%3D%20function%28%29%20%7B%0A%20%20%20%20this%2ElayerManager%2EclearLayers%28%22image%22%29%3B%0A%20%20%7D%3B%0A%0A%20%20function%20preventUnintendedZoomOnScroll%28map%29%20%7B%0A%20%20%20%20%2F%2F%20Prevent%20unwanted%20scroll%20capturing%2E%20Similar%20in%20purpose%20to%0A%20%20%20%20%2F%2F%20https%3A%2F%2Fgithub%2Ecom%2FCliffCloud%2FLeaflet%2ESleep%20but%20with%20a%0A%20%20%20%20%2F%2F%20different%20set%20of%20heuristics%2E%0A%0A%20%20%20%20%2F%2F%20The%20basic%20idea%20is%20that%20when%20a%20mousewheel%2FDOMMouseScroll%0A%20%20%20%20%2F%2F%20event%20is%20seen%2C%20we%20disable%20scroll%20wheel%20zooming%20until%20the%0A%20%20%20%20%2F%2F%20user%20moves%20their%20mouse%20cursor%20or%20clicks%20on%20the%20map%2E%20This%0A%20%20%20%20%2F%2F%20is%20slightly%20trickier%20than%20just%20listening%20for%20mousemove%2C%0A%20%20%20%20%2F%2F%20because%20mousemove%20is%20fired%20when%20the%20page%20is%20scrolled%2C%0A%20%20%20%20%2F%2F%20even%20if%20the%20user%20did%20not%20physically%20move%20the%20mouse%2E%20We%0A%20%20%20%20%2F%2F%20handle%20this%20by%20examining%20the%20mousemove%20event%27s%20screenX%0A%20%20%20%20%2F%2F%20and%20screenY%20properties%3B%20if%20they%20change%2C%20we%20know%20it%27s%20a%0A%20%20%20%20%2F%2F%20%22true%22%20move%2E%0A%0A%20%20%20%20%2F%2F%20lastScreen%20can%20never%20be%20null%2C%20but%20its%20x%20and%20y%20can%2E%0A%20%20%20%20var%20lastScreen%20%3D%20%7Bx%3A%20null%2C%20y%3A%20null%7D%3B%0A%20%20%20%20%24%28document%29%2Eon%28%22mousewheel%20DOMMouseScroll%22%2C%20%22%2A%22%2C%20function%28e%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20Disable%20zooming%20%28until%20the%20mouse%20moves%20or%20click%29%0A%20%20%20%20%20%20map%2EscrollWheelZoom%2Edisable%28%29%3B%0A%20%20%20%20%20%20%2F%2F%20Any%20mousemove%20events%20at%20this%20screen%20position%20will%20be%20ignored%2E%0A%20%20%20%20%20%20lastScreen%20%3D%20%7Bx%3A%20e%2EoriginalEvent%2EscreenX%2C%20y%3A%20e%2EoriginalEvent%2EscreenY%7D%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20%24%28document%29%2Eon%28%22mousemove%22%2C%20%22%2A%22%2C%20function%28e%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20Did%20the%20mouse%20really%20move%3F%0A%20%20%20%20%20%20if%20%28lastScreen%2Ex%20%21%3D%3D%20null%20%26%26%20e%2EscreenX%20%21%3D%3D%20lastScreen%2Ex%20%7C%7C%20e%2EscreenY%20%21%3D%3D%20lastScreen%2Ey%29%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20It%20really%20moved%2E%20Enable%20zooming%2E%0A%20%20%20%20%20%20%20%20map%2EscrollWheelZoom%2Eenable%28%29%3B%0A%20%20%20%20%20%20%20%20lastScreen%20%3D%20%7Bx%3A%20null%2C%20y%3A%20null%7D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20%24%28document%29%2Eon%28%22mousedown%22%2C%20%22%2Eleaflet%22%2C%20function%28e%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20Clicking%20always%20enables%20zooming%2E%0A%20%20%20%20%20%20map%2EscrollWheelZoom%2Eenable%28%29%3B%0A%20%20%20%20%20%20lastScreen%20%3D%20%7Bx%3A%20null%2C%20y%3A%20null%7D%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%7D%0A%0A%20%20HTMLWidgets%2Ewidget%28%7B%0A%20%20%20%20name%3A%20%22leaflet%22%2C%0A%20%20%20%20type%3A%20%22output%22%2C%0A%20%20%20%20initialize%3A%20function%28el%2C%20width%2C%20height%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20hard%2Dcoding%20center%2Fzoom%20here%20for%20a%20non%2Dempty%20initial%20view%2C%20since%20there%0A%20%20%20%20%20%20%2F%2F%20is%20no%20way%20for%20htmlwidgets%20to%20pass%20initial%20params%20to%20initialize%28%29%0A%20%20%20%20%20%20var%20map%20%3D%20L%2Emap%28el%2C%20%7B%0A%20%20%20%20%20%20%20%20center%3A%20%5B51%2E505%2C%20%2D0%2E09%5D%2C%0A%20%20%20%20%20%20%20%20zoom%3A%2013%0A%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20preventUnintendedZoomOnScroll%28map%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Store%20some%20state%20in%20the%20map%20object%0A%20%20%20%20%20%20map%2Eleafletr%20%3D%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20Has%20the%20map%20ever%20rendered%20successfully%3F%0A%20%20%20%20%20%20%20%20hasRendered%3A%20false%2C%0A%20%20%20%20%20%20%20%20%2F%2F%20Data%20to%20be%20rendered%20when%20resize%20is%20called%20with%20area%20%21%3D%200%0A%20%20%20%20%20%20%20%20pendingRenderData%3A%20null%0A%20%20%20%20%20%20%7D%3B%0A%0A%20%20%20%20%20%20if%20%28%21HTMLWidgets%2EshinyMode%29%20return%20map%3B%0A%0A%20%20%20%20%20%20%2F%2F%20The%20map%20is%20rendered%20staticly%20%28no%20output%20binding%2C%20so%20no%20this%2EgetId%28%29%29%0A%20%20%20%20%20%20if%20%28typeof%20this%2EgetId%20%3D%3D%3D%20%27undefined%27%29%20return%20map%3B%0A%0A%20%20%20%20%20%20map%2Eid%20%3D%20this%2EgetId%28el%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Store%20the%20map%20on%20the%20element%20so%20we%20can%20find%20it%20later%20by%20ID%0A%20%20%20%20%20%20%24%28el%29%2Edata%28%22leaflet%2Dmap%22%2C%20map%29%3B%0A%0A%20%20%20%20%20%20%2F%2F%20When%20the%20map%20is%20clicked%2C%20send%20the%20coordinates%20back%20to%20the%20app%0A%20%20%20%20%20%20map%2Eon%28%27click%27%2C%20function%28e%29%20%7B%0A%20%20%20%20%20%20%20%20Shiny%2EonInputChange%28map%2Eid%20%2B%20%27%5Fclick%27%2C%20%7B%0A%20%20%20%20%20%20%20%20%20%20lat%3A%20e%2Elatlng%2Elat%2C%0A%20%20%20%20%20%20%20%20%20%20lng%3A%20e%2Elatlng%2Elng%2C%0A%20%20%20%20%20%20%20%20%20%20%27%2Enonce%27%3A%20Math%2Erandom%28%29%20%2F%2F%20Force%20reactivity%20if%20lat%2Flng%20hasn%27t%20changed%0A%20%20%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20var%20groupTimerId%20%3D%20null%3B%0A%0A%20%20%20%20%20%20map%0A%20%20%20%20%20%20%20%20%2Eon%28%27moveend%27%2C%20function%28e%29%20%7B%20updateBounds%28e%2Etarget%29%3B%20%7D%29%0A%20%20%20%20%20%20%20%20%2Eon%28%27layeradd%20layerremove%27%2C%20function%28e%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20If%20the%20layer%20that%27s%20coming%20or%20going%20is%20a%20group%20we%20created%2C%20tell%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20the%20server%2E%0A%20%20%20%20%20%20%20%20%20%20if%20%28map%2ElayerManager%2EgetGroupNameFromLayerGroup%28e%2Elayer%29%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20But%20to%20avoid%20chattiness%2C%20coalesce%20events%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28groupTimerId%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20clearTimeout%28groupTimerId%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20groupTimerId%20%3D%20null%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20groupTimerId%20%3D%20setTimeout%28function%28%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20groupTimerId%20%3D%20null%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20Shiny%2EonInputChange%28map%2Eid%20%2B%20%27%5Fgroups%27%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20map%2ElayerManager%2EgetVisibleGroups%28%29%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%20100%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%29%3B%0A%0A%20%20%20%20%20%20return%20map%3B%0A%20%20%20%20%7D%2C%0A%20%20%20%20renderValue%3A%20function%28el%2C%20data%2C%20map%29%20%7B%0A%20%20%20%20%20%20%2F%2F%20Leaflet%20does%20not%20behave%20well%20when%20you%20set%20up%20a%20bunch%20of%20layers%20when%0A%20%20%20%20%20%20%2F%2F%20the%20map%20is%20not%20visible%20%28width%2Fheight%20%3D%3D%200%29%2E%20Popups%20get%20misaligned%0A%20%20%20%20%20%20%2F%2F%20relative%20to%20their%20owning%20markers%2C%20and%20the%20fitBounds%20calculations%0A%20%20%20%20%20%20%2F%2F%20are%20off%2E%20Therefore%20we%20wait%20until%20the%20map%20is%20actually%20showing%20to%0A%20%20%20%20%20%20%2F%2F%20render%20the%20value%20%28we%20rely%20on%20the%20resize%28%29%20callback%20being%20invoked%0A%20%20%20%20%20%20%2F%2F%20at%20the%20appropriate%20time%29%2E%0A%20%20%20%20%20%20%2F%2F%0A%20%20%20%20%20%20%2F%2F%20There%20may%20be%20an%20issue%20with%20leafletProxy%28%29%20calls%20being%20made%20while%0A%20%20%20%20%20%20%2F%2F%20the%20map%20is%20not%20being%20viewed%2D%2Dnot%20sure%20what%20the%20right%20solution%20is%0A%20%20%20%20%20%20%2F%2F%20there%2E%0A%20%20%20%20%20%20if%20%28el%2EoffsetWidth%20%3D%3D%3D%200%20%7C%7C%20el%2EoffsetHeight%20%3D%3D%3D%200%29%20%7B%0A%20%20%20%20%20%20%20%20map%2Eleafletr%2EpendingRenderData%20%3D%20data%3B%0A%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20map%2Eleafletr%2EpendingRenderData%20%3D%20null%3B%0A%0A%20%20%20%20%20%20%2F%2F%20Merge%20data%20options%20into%20defaults%0A%20%20%20%20%20%20var%20options%20%3D%20%24%2Eextend%28%7B%20zoomToLimits%3A%20%22always%22%20%7D%2C%20data%2Eoptions%29%3B%0A%0A%20%20%20%20%20%20if%20%28%21map%2ElayerManager%29%20%7B%0A%20%20%20%20%20%20%20%20map%2Econtrols%20%3D%20new%20ControlStore%28map%29%3B%0A%20%20%20%20%20%20%20%20map%2ElayerManager%20%3D%20new%20LayerManager%28map%29%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20map%2Econtrols%2Eclear%28%29%3B%0A%20%20%20%20%20%20%20%20map%2ElayerManager%2Eclear%28%29%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20var%20explicitView%20%3D%20false%3B%0A%20%20%20%20%20%20if%20%28data%2EsetView%29%20%7B%0A%20%20%20%20%20%20%20%20explicitView%20%3D%20true%3B%0A%20%20%20%20%20%20%20%20map%2EsetView%2Eapply%28map%2C%20data%2EsetView%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20if%20%28data%2EfitBounds%29%20%7B%0A%20%20%20%20%20%20%20%20explicitView%20%3D%20true%3B%0A%20%20%20%20%20%20%20%20methods%2EfitBounds%2Eapply%28map%2C%20data%2EfitBounds%29%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20%2F%2F%20Returns%20true%20if%20the%20zoomToLimits%20option%20says%20that%20the%20map%20should%20be%0A%20%20%20%20%20%20%2F%2F%20zoomed%20to%20map%20elements%2E%0A%20%20%20%20%20%20function%20needsZoom%28%29%20%7B%0A%20%20%20%20%20%20%20%20return%20options%2EzoomToLimits%20%3D%3D%3D%20%22always%22%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28options%2EzoomToLimits%20%3D%3D%3D%20%22first%22%20%26%26%20%21map%2Eleafletr%2EhasRendered%29%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20if%20%28%21explicitView%20%26%26%20needsZoom%28%29%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28data%2Elimits%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20Use%20the%20natural%20limits%20of%20what%27s%20being%20drawn%20on%20the%20map%0A%20%20%20%20%20%20%20%20%20%20%2F%2F%20If%20the%20size%20of%20the%20bounding%20box%20is%200%2C%20leaflet%20gets%20all%20weird%0A%20%20%20%20%20%20%20%20%20%20var%20pad%20%3D%200%2E006%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28data%2Elimits%2Elat%5B0%5D%20%3D%3D%3D%20data%2Elimits%2Elat%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20data%2Elimits%2Elat%5B0%5D%20%3D%20data%2Elimits%2Elat%5B0%5D%20%2D%20pad%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20data%2Elimits%2Elat%5B1%5D%20%3D%20data%2Elimits%2Elat%5B1%5D%20%2B%20pad%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20if%20%28data%2Elimits%2Elng%5B0%5D%20%3D%3D%3D%20data%2Elimits%2Elng%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20data%2Elimits%2Elng%5B0%5D%20%3D%20data%2Elimits%2Elng%5B0%5D%20%2D%20pad%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20data%2Elimits%2Elng%5B1%5D%20%3D%20data%2Elimits%2Elng%5B1%5D%20%2B%20pad%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20map%2EfitBounds%28%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%5B%20data%2Elimits%2Elat%5B0%5D%2C%20data%2Elimits%2Elng%5B0%5D%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%5B%20data%2Elimits%2Elat%5B1%5D%2C%20data%2Elimits%2Elng%5B1%5D%20%5D%0A%20%20%20%20%20%20%20%20%20%20%5D%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20map%2EfitWorld%28%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20data%2Ecalls%20%26%26%20i%20%3C%20data%2Ecalls%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20%20%20var%20call%20%3D%20data%2Ecalls%5Bi%5D%3B%0A%20%20%20%20%20%20%20%20if%20%28methods%5Bcall%2Emethod%5D%29%0A%20%20%20%20%20%20%20%20%20%20methods%5Bcall%2Emethod%5D%2Eapply%28map%2C%20call%2Eargs%29%3B%0A%20%20%20%20%20%20%20%20else%0A%20%20%20%20%20%20%20%20%20%20console%2Elog%28%22Unknown%20method%20%22%20%2B%20call%2Emethod%29%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20map%2Eleafletr%2EhasRendered%20%3D%20true%3B%0A%0A%20%20%20%20%20%20if%20%28%21HTMLWidgets%2EshinyMode%29%20return%3B%0A%0A%20%20%20%20%20%20setTimeout%28function%28%29%20%7B%20updateBounds%28map%29%3B%20%7D%2C%201%29%3B%0A%20%20%20%20%7D%2C%0A%20%20%20%20resize%3A%20function%28el%2C%20width%2C%20height%2C%20map%29%20%7B%0A%20%20%20%20%20%20map%2EinvalidateSize%28%29%3B%0A%20%20%20%20%20%20if%20%28map%2Eleafletr%2EpendingRenderData%29%20%7B%0A%20%20%20%20%20%20%20%20this%2ErenderValue%28el%2C%20map%2Eleafletr%2EpendingRenderData%2C%20map%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%29%3B%0A%0A%20%20if%20%28%21HTMLWidgets%2EshinyMode%29%20return%3B%0A%0A%20%20Shiny%2EaddCustomMessageHandler%28%27leaflet%2Dcalls%27%2C%20function%28data%29%20%7B%0A%20%20%20%20var%20id%20%3D%20data%2Eid%3B%0A%20%20%20%20var%20el%20%3D%20document%2EgetElementById%28id%29%3B%0A%20%20%20%20var%20map%20%3D%20el%20%3F%20%24%28el%29%2Edata%28%27leaflet%2Dmap%27%29%20%3A%20null%3B%0A%20%20%20%20if%20%28%21map%29%20%7B%0A%20%20%20%20%20%20console%2Elog%28%22Couldn%27t%20find%20map%20with%20id%20%22%20%2B%20id%29%3B%0A%20%20%20%20%20%20return%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20data%2Ecalls%2Elength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20call%20%3D%20data%2Ecalls%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28call%2Edependencies%29%20%7B%0A%20%20%20%20%20%20%20%20Shiny%2ErenderDependencies%28call%2Edependencies%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20if%20%28methods%5Bcall%2Emethod%5D%29%0A%20%20%20%20%20%20%20%20methods%5Bcall%2Emethod%5D%2Eapply%28map%2C%20call%2Eargs%29%3B%0A%20%20%20%20%20%20else%0A%20%20%20%20%20%20%20%20console%2Elog%28%22Unknown%20method%20%22%20%2B%20call%2Emethod%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%29%3B%0A%0A%7D%29%28%29%3B%0A%0A%0A%0A%2F%2F%20In%20RMarkdown%27s%20self%2Dcontained%20mode%2C%20we%20don%27t%20have%20a%20way%20to%20carry%20around%20the%0A%2F%2F%20images%20that%20Leaflet%20needs%20but%20doesn%27t%20load%20into%20the%20page%2E%20Instead%2C%20we%27ll%20set%0A%2F%2F%20data%20URIs%20for%20the%20default%20marker%2C%20and%20let%20any%20others%20be%20loaded%20via%20CDN%2E%0Aif%20%28typeof%28L%2EIcon%2EDefault%2EimagePath%29%20%3D%3D%3D%20%22undefined%22%29%20%7B%0A%20%20L%2EIcon%2EDefault%2EimagePath%20%3D%20%22http%3A%2F%2Fcdn%2Eleafletjs%2Ecom%2Fleaflet%2D0%2E7%2E3%2Fimages%22%3B%0A%0A%20%20if%20%28L%2EBrowser%2Eretina%29%20%7B%0A%20%20%20%20L%2EIcon%2EDefault%2Eprototype%2Eoptions%2EiconUrl%20%3D%20%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAADIAAABSCAYAAAAWy4frAAAPiElEQVR42t1bCVCU5xkmbabtZJJOO%2Bl0mhgT0yQe0WXZgz2570NB8I6J6UzaTBoORRFEruVGDhWUPRAQRFFREDnVxCtEBRb24DBNE3Waaatpkmluo4m%2Bfd9v999olGVBDu3OPLj%2B%2F%2Fs%2B7%2FW93%2Ff9%2F%2F6%2FEwA4%2FT9g3AlFOUeeUGR2uMqzOyJk2R2x0qyOAmnmkS3SrCPrZJlHlsqzjypcs49OX1Jf%2F%2FP7KhD885A0u10my2ovQscvybI6wEF8ivI7pFntAV6qkw9PWSBK1bEnZRltm2WZ7R8h4FbI0VG33GPgXXgCAra%2BA4EIn8KT4JH%2FFigoiJ%2FIIz6TZbVVKLLan5u0QESqlkckWW3p0sy2bxDAgZwO13TDytoB%2BNPe9%2Bzild2DEFGuB7%2FNpzDodriF55o0o7XIRXXoNxMaiCSj9VU09C8EENxyj0C4thterh2EV%2BveuwOr6s7Dy3ssoO93k3llzxBE6PTgkXcMOF7EJ9KMtqjR9JFDQnNV9b%2BQqlqqEECQZ7TBgu1nYdXuIXgVneSwYtcgRFb1Q1iFGULLzRCsM90GOrZghxkiKvthec0grLpFlxCu6cKh1w6cHUSbctPhx8YlEElu4%2BNSVfNpBBACtpyGlbsGmBOElRhMBDofgk4GobOjQXC5CRZiUC%2FVDtn4qLrBJZ3A2cNg%2BnE4P31PgSDBbImq5UNJejMQFqi7cCicZ3iZBTAAQVoTBI4DKKCVGBDHH6nrBRlWxWr7sljVIhlTIDLVoRkS1eH%2FSNIPgzyzFRZV9NnG%2B%2BLqQcyoGQLQgfFEIFYpcueAzc6SSiMOtTYgH9CXr%2BWpTbxRBeKlqn9UktZkRoACZ5PlO81YgfMM4RX9EKAxTSjCdvTjELPYW17dD8rsdiBfEBclSY2POxQIHnlIknroEAJk6U2wpMLISF%2FaNQShWAV%2FtWlSEIK2VqBNsr200gRyGmLokyS18cTdFtA7AnFNbcxAACGMrQtDLAjqBT%2B1cVJBNsk2%2BbBQ1wOcX5K0xs12A8GyzXRNafgeAYFb3mEkrBI4I%2FmWGUeNQI1lyp2PoO9j4aDKcH4Ebe0E8g3xgyylcc6wgbimNjSSoFtWK1sTqLRh2BM%2BSOgIfDGLJL8IG3ZZjUX%2FViyvGYLFOwdZn%2FljYI7yzsee4TjcsV%2FIR3FqQ%2BtdAxEnNSjFyQeBEK7pgRVodEnVIPhsNzqEYK0ZluFsRnq3YjH22KJyA6z4yTmSpZ5zlH8RTvWkt1CrB85PYUqjzx2BuG6sPyfeeAA8sjtwphhiCFSbwXub0S7ISPiOAZvO4h048xSfBM%2BcDpDieCZOggSz6JHdBv5FJ3CN6LPJR1QMgO9204h2aALgdDxzjlp4kw8YaHKyBSJJPigWb6wHQiRmbxkKL0QDXkhgD94YxGKsGskTQkvfxVnlIHBcBNfkegziwB3HAnHDuGynRXcp%2FutXZhrRHiWM5CPLjbdwHVDYAhFt3J8rTtoPbpktSDrE4INZ8iw12kUYEpPs4kozeOW0A3EQIovbYcfxITj798vwxbfX4Or1H8B46ROo7fwbvKY9bpNzy2hmiSOOyMrBEe2RT5x%2F7tjHxCFK2l%2F4YyBJ%2B95HQABmibKzEJvRs9RgF4FqE5MleGS3AumLN%2B6D4lYjfIeOD%2Fe5eROg7sz7oEg7wHRk6Y3Yi%2F2MJwT7bCS75BvJBuGsSvqID1ggaHyeaAMeQERgyajBg3BG8SgxDAsvJFxUOcBkg7d0Ml3XjfuhCyvg6Ofix1%2BAl6qB6fpueotxsckFh5A92%2BQbydHw4vymGJxEG%2BrWiRL3goJWcSwvwbPECO5bDcMiRGNmchS4a1I9kP62DhOM9tPad4npEhaUdTPOsPJ%2Bu7bJN85PpaqJ6YoT6xKcRIl1pQjwxIukxXhyIY57N1Swh7DyASbrm38MSHdRUStc%2B%2F4GjOUTV32acbhlNjNO6pWR7FPTk6xX3lGmK0ys0zrhn0Zhwh7wK3ibnVyg6we3LQa7WFQxyGSpiqRbe%2Fo8jPXTe%2BEK4xDjECHOxdYRYc8%2B%2BUhyfgXHma5w%2FZ5mJ%2BH63T3ChN3Y6O%2FguMcxj8NGicLDgYyQ3CKcnsUbMBuoa7j48ZgD%2BerqdczqbsYTpulj3LSu2POBfCQ58pn0EH1OwoTafwvX1%2BJV2VmIxEwHlJlBsdkwLHy2mZjcgjI9kJ4Ynbh6%2FXu4l09YfhPjCsSJg7hpIbbng%2F92M5Mjn0kPcdlJGF%2F7JQJCSrsgAseeHzoqL%2B4bFnSe5EJKzgHpeaTsg3v9rCrtYFz%2BhScZdzAGYs8HX84H9Jn0KAYnQfyuIQT4Y5mo0akiMhQeDh44tEguXGcE0iP845MvxxzEjRs3QZ5Ux3hCtnUxbqq6PR%2F8cRdAcuSz1YfzGEhNm2BdDfjkvw0LcTYKokCK%2BoaFAolIjiDFBYl02%2FoujDmQC1c%2BZxzC%2BBoIp2t35HXHPrDnA%2FlIcuQz6SKOOAnWVqsRbHscjidDNf0gRWF7CNX2M1l3VTOQbmpd55gDqT01xDhkmBTiJMhGsB%2BisdrPbGe6wrU15RjIzkQEyHB3GqYbYCAiSeHwCMBmI7mAYiwt6grX7QT9h5dHHcQ%2FP%2FsKlEm7GYd37lHGGaLut2tbirD5iT6TriCuKsVJsLrCwyWuih2Yj%2FunMC2VFlfsgr5hodxsZHIEZVoTkP787APw7TXHZy%2Fac%2F25rJ3pSpP24tRrZnyeW012bbtZbS9AefKZ%2Bb6mMtjJS6V6GP%2FzOR3wK%2BpkQn7bzHbJCCRDsqFlBpz%2BdjHCV7a2wMUr%2Fx0xiM%2B%2Bugprq45bnFhbhdNoF%2BMKLOt32C75SvqIb7xUO3%2FFdr%2F8uMqDLmsqwU3VipH2QzA2k3hTr11ICnqZHMn7F%2BHCFIfZQQ5JfDVUvW1mzv708%2FV316FV%2FwF4Je9hsgSv3GOMYz71Jg6bkezS0CN5N1WLhSOussW2jResrnzNZXUFm5PnW0nl2CciVLQHebHBJh9U0g1S3GYQD4eQjH2QWH0C0utw15DXAEIybD0nxoUsYPMZmz4N59HYE%2BK0SzyC2Mo3bIHw4zTT%2BKt33ESAX%2FFZCMWovUtMIMzvHRFKJA9G%2BVAGvJ7IPsKGC3HdDYI4qnwzhJQZmQ5l2AODcMSWb6mJ6fgWn%2BH4bsxbWzX9tmt2l9Xl7fzYcpwJGhl5MI5XESoL8kaGKB9XWww8xOoYIXBrD3hvOgnK9BbEYdypHsctSBcGYLbJ%2BFMvbupz2AanJ01uAPLVJab88B03H1xidKH8WB0TCCq1KNEM4YgRDm7FRlys%2Bm8L6G6gJLmPkpuqxhJU0st8JF8FMeV%2BdwTipFL9zDlGewmB1wYdzJh%2FqRlccntHDcqevBCv6NBZ3xIz%2BCGP5xYTKIoMIMZzo%2BUTIAK3WRKgULUB%2BegcrTs%2F7A06XpQ20Tlai%2BO4mm0DKLuSAgPwkWgqIcOkkC%2BBOBRdVlcC%2BciL0kUNG4jodd3vnKM13yHAK%2F8UBG6nTBrBOUc%2FpfDBRZJ88cg9DuQbL1rzxdw3yx61exPbOUazi4Rd8VqYMhBIwyunF5yz9VMCUV6vxQ%2BECJcH8s05SlMy4t145xi1jAkjfIu7GIESxzYPSacC1Gfkg3fhGbD6ddMlVvuCQz%2F0oHAfKclSmiAAK0JN75zdC%2FOy9JMKanKyTxBvOGAJJEbd4fAvVrxo9UukxMfZwbu4hwWiKDLCXCSfTNAUTba9Cs5x1SD4OBwIm4qjNQOkKE1uBH%2BaQkssVZmbqZ8UCLAvyS5BnLDf2hvaE6P%2BMZQfpYngsuBd2A1%2BW7EqBUZ4MUM%2FKXAvMjGbHvm23gCXaI1yTD9Po7KezWBJB8EXp0ACD0s%2BJ6NnQkGzJGdPlFDHBdI%2B5t%2FZ%2BdGaQC4bHpvOgg%2BuznJcIGereiYUykIjs%2BWW22mrBi9WLbqnJx9wlugkIlHifvBGcgLNKLPQ4ESA%2BpCzI4jfwy2Ajff8CAduWzy4rLjnnWEGqFdmpfdMCKgaZEOZc5qrxg3nWM28cXmohhetPcqqsn4veG02MczDmWVmWs%2B4wjmr18YvWFfLBVI3bk8HubxZ5spVRZHTyQzJsSovoPHxhAKrQdyKrFNcED%2Fwo8pnjuvzWrgHayJyIY5bz2ITw1ycJp9P7R4X8LDCHK%2FL2l0sEH60tmrcHzzjRet4tM9hVck%2BxQzKNxnGLRDqO%2BKUZZ7gqnHdZY1mxoQ8QUfjlYwI1taCBy5YBKrKcynd9wTqNwufEfhrqq17Ko16wh4FpPFK45ZtKDNOgnshZjDfAH9M7r4nyPONjEua%2FhZXjav8NzTTJvThTF6UppJtF%2BJqwA2NE15U6eFZdGgsmJvRyziUeBXIX7PT2huazRP%2BlKkgavszeM18jW0oVcfBrYCqYoRnN3aPGlw1iMM17ai1Gtqvnd%2FQ%2FH5SnvvF7f12ljkcz0psUmWBpSoz0LnRgKpBugq6L8CuxSkQde6kPcAsWqN7Ao1%2ByzaUacdAsckI0jwDPJPU5TBmbOxi%2FUW64pQOrjc%2B5%2F1V%2FdtJfRIbrw0KWFVWV%2BHw6GNDZE6aHp7e0OUQ5qTrmY48rw%2F4sRWW3ojSpk36I%2BWzo7Y%2F7hyl%2BZJtXVI7WJ%2B45hrgacz29A32QTISrCDpiJLbuWp8Oiuh8jGYiof8eTHqDEtVKkCGmZVZqzI9scsuSIZkZXTfKnYHt8NNmLK3FaQxpb9GJz5jVcHMclWhrD%2BVeHfQsJLkWqohTGrlqnFZ9LrukSl97YIXpU5kVcHMSvDKTppnhNmY8WkJXXcFnSMZSY6e3cO1ruKxU%2F7%2BCGUSnbnCti4bWjHbOAvlGOApdPrJ9beDjtE5khFsaOaq8dHzMaW%2FvC%2Fe6KGMWm4flYMku4cNnVmpPej8udtA1aBzrll47RGjs%2FaG%2BvX75tUkyihl1lKVZnDFrIuy%2B2AaOv9EvAX0nY7ROZeEJq4aF%2Bg3zPvqHStejOYvlvGuA1FmNxtCM1P18AcMgjALv9MxYWaX9WcBktWuuu9eFqPM4mbvAzbEEg5h9tHpLIOtP%2Bg7HeMnNHLVeG%2FJkvF7YWxc33jDqqy0ZhoEKovzM1P0DPSdjtFvG5ZVXLP0vn19z3KrVTvIHF3fYHHeCvruHN%2FAbdNN3PO69%2B17iLgzjrRux8El%2FSwIMg0M9P3HG9HqsPv%2BhUrrJXEvczj%2BAAbRx%2BAcX88F0v1AvBnKAnlTG8Rln5%2F6LuLHW5%2FzorT%2BD0wg1qq8y5xfu88CSyCnH5h3dW%2FZGXve8uOMZRWP0no8cIFY7%2BYfswURrT36QL09ffsMppHYegW%2FP7CBWHvlMOGBe5%2F9jtdjY7R8wkTb%2BR9meZA6n2oJWAAAAABJRU5ErkJggg%3D%3D%22%3B%0A%20%20%7D%20else%20%7B%0A%20%20%20%20L%2EIcon%2EDefault%2Eprototype%2Eoptions%2EiconUrl%20%3D%20%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAGmklEQVRYw7VXeUyTZxjvNnfELFuyIzOabermMZEeQC%2FOclkO49CpOHXOLJl%2FCAURuYbQi3KLgEhbrhZ1aDwmaoGqKII6odATmH%2FscDFbdC7LvFqOCc%2Be95s2VG50X%2FLLm%2Ff4%2FZ7neY%2Fne18aANCmAr5E%2FxZf1uDOkTcGcWR6hl9247tT5U7Y6SNvWsKT63P58qbfeLJG8M5qcgTknrvvrdDbsT7Ml%2Btv82X6vVxJE33aRmgSyYtcWVMqX97Yv2JvW39UhRE2HuyBL%2Bt%2BgK1116ly06EeWFNlAmHxlQE0OMiV6mQCScusKRlhS3QLeVJdl1%2B23h5dY4FNB3thrbYboqptEFlphTC1hSpJnbRvxP4NWgsE5Jyz86QNNi%2F5qSUTGuFk1gu54tN9wuK2wc3o%2BWc13RCmsoBwEqzGcZsxsvCSy%2F9wJKf7UWf1mEY8JWfewc67UUoDbDjQC%2BFqK4QqLVMGGR9d2wurKzqBk3nqIT%2F9zLxRRjgZ9bqQgub%2BDdoeCC03Q8j%2B0QhFhBHR%2FeP3U%2FzCln7Uu%2BhihJ1%2BbBNffLIvmkyP0gpBZWYXhKussK6mBz5HT6M1Nqpcp%2BmBCPXosYQfrekGvrjewd59%2FGvKCE7TbK%2F04%2FZV5QZYVWmDwH1mF3xa2Q3ra3DBC5vBT1oP7PTj4C0%2BCcL8c7C2CtejqhuCnuIQHaKHzvcRfZpnylFfXsYJx3pNLwhKzRAwAhEqG0SpusBHfAKkxw3w4627MPhoCH798z7s0ZnBJ%2FMEJbZSbXPhER2ih7p2ok%2FzSj2cEJDd4CAe%2B5WYnBCgR2uruyEw6zRoW6%2FDWJ%2FOeAP8pd%2FBGtzOZKpG8oke0SX6GMmRk6GFlyAc59K32OTEinILRJRchah8HQwND8N435Z9Z0FY1EqtxUg%2B0SO6RJ%2FmmXz4VuS%2BDpxXC3gXmZwIL7dBSH4zKE50wESf8qwVgrP1EIlTO5JP9Igu0aexdh28F1lmAEGJGfh7jE6ElyM5Rw%2FFDcYJjWhbeiBYoYNIpc2FT%2FSILivp0F1ipDWk4BIEo2VuodEJUifhbiltnNBIXPUFCMpthtAyqws%2FBPlEF%2FVbaIxErdxPphsU7rcCp8DohC%2BGvBIPJS%2FtW2jtvTmmAeuNO8BNOYQeG8G%2F2OzCJ3q%2BsoYB5i6NhMaKr17FSal7GIHheuV3uSCY8qYVuEm1cOzqdWr7ku%2FR0BDoTT%2BDT%2BohCM6%2FCCvKLKO4RI%2BdXPeAuaMqksaKrZ7L3FE5FIFbkIceeOZ2OcHO6wIhTkNo0ffgjRGxEqogXHYUPHfWAC%2FlADpwGcLRY3aeK4%2FoRGCKYcZXPVoeX%2FkelVYY8dUGf8V5EBRbgJXT5QIPhP9ePJi428JKOiEYhYXFBqou2Guh%2Bp%2FmEB1%2FRfMw6rY7cxcjTrneI1FrDyuzUSRm9miwEJx8E%2FgUmqlyvHGkneiwErR21F3tNOK5Tf0yXaT%2BO7DgCvALTUBXdM4YhC%2FIawPU%2B2PduqMvuaR6eoxSwUk75ggqsYJ7VicsnwGIkZBSXKOUww73WGXyqP%2BJ2%2Fb9c%2Bgi1YAg%2Fxpwck3gJuucNrh5JvDPvQr0WFXf0piyt8f8%2FWI0hV4pRxxkQZdJDfDJNOAmM0Ag8jyT6hz0WGXWuP94Yh2jcfjmXAGvHCMslRimDHYuHuDsy2QtHuIavznhbYURq5R57KpzBBRZKPJi8eQg48h4j8SDdowifdIrEVdU%2BgbO6QNvRRt4ZBthUaZhUnjlYObNagV3keoeru3rU7rcuceqU1mJBxy%2BBWZYlNEBH%2B0eH4vRiB%2BOYybU2hnblYlTvkHinM4m54YnxSyaZYSF6R3jwgP7udKLGIX6r%2FlbNa9N6y5MFynjWDtrHd75ZvTYAPO%2F6RgF0k76mQla3FGq7dO%2BcH8sKn0Vo7nDllwAhqwLPkxrHwWmHJOo%2BAKJ4rab5OgrM7rVu8eWb2Pu0Dh4eDgXoOfvp7Y7QeqknRmvcTBEyq9m%2FHQQSCSz6LHq3z0yzsNySRfMS253wl2KyRDbcZPcfJKjZmSEOjcxyi%2BY8dUOtsIEH6R2wNykdqrkYJ0RV92H0W58pkfQk7cKevsLK10Py8SdMGfXNXATY%2BpPbyJR%2FET6n9nIfztNtZYRV9XniQu9IA2vOVgy4ir7GCLVmmd%2BzjkH0eAF9Po6K61pmCXHxU5rHMYd1ftc3owjwRSVRzLjKvqZEty6cRUD7jGqiOdu5HG6MdHjNcNYGqfDm5YRzLBBCCDl%2F2bk8a8gdbqcfwECu62Fg%2FHrggAAAABJRU5ErkJggg%3D%3D%22%3B%0A%20%20%7D%0A%7D%0A"></script>
<script src="data:application/x-javascript,%28function%20%28%29%20%7B%0A%09%27use%20strict%27%3B%0A%0A%09L%2ETileLayer%2EProvider%20%3D%20L%2ETileLayer%2Eextend%28%7B%0A%09%09initialize%3A%20function%20%28arg%2C%20options%29%20%7B%0A%09%09%09var%20providers%20%3D%20L%2ETileLayer%2EProvider%2Eproviders%3B%0A%0A%09%09%09var%20parts%20%3D%20arg%2Esplit%28%27%2E%27%29%3B%0A%0A%09%09%09var%20providerName%20%3D%20parts%5B0%5D%3B%0A%09%09%09var%20variantName%20%3D%20parts%5B1%5D%3B%0A%0A%09%09%09if%20%28%21providers%5BproviderName%5D%29%20%7B%0A%09%09%09%09throw%20%27No%20such%20provider%20%28%27%20%2B%20providerName%20%2B%20%27%29%27%3B%0A%09%09%09%7D%0A%0A%09%09%09var%20provider%20%3D%20%7B%0A%09%09%09%09url%3A%20providers%5BproviderName%5D%2Eurl%2C%0A%09%09%09%09options%3A%20providers%5BproviderName%5D%2Eoptions%0A%09%09%09%7D%3B%0A%0A%09%09%09%2F%2F%20overwrite%20values%20in%20provider%20from%20variant%2E%0A%09%09%09if%20%28variantName%20%26%26%20%27variants%27%20in%20providers%5BproviderName%5D%29%20%7B%0A%09%09%09%09if%20%28%21%28variantName%20in%20providers%5BproviderName%5D%2Evariants%29%29%20%7B%0A%09%09%09%09%09throw%20%27No%20such%20variant%20of%20%27%20%2B%20providerName%20%2B%20%27%20%28%27%20%2B%20variantName%20%2B%20%27%29%27%3B%0A%09%09%09%09%7D%0A%09%09%09%09var%20variant%20%3D%20providers%5BproviderName%5D%2Evariants%5BvariantName%5D%3B%0A%09%09%09%09var%20variantOptions%3B%0A%09%09%09%09if%20%28typeof%20variant%20%3D%3D%3D%20%27string%27%29%20%7B%0A%09%09%09%09%09variantOptions%20%3D%20%7B%0A%09%09%09%09%09%09variant%3A%20variant%0A%09%09%09%09%09%7D%3B%0A%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09variantOptions%20%3D%20variant%2Eoptions%3B%0A%09%09%09%09%7D%0A%09%09%09%09provider%20%3D%20%7B%0A%09%09%09%09%09url%3A%20variant%2Eurl%20%7C%7C%20provider%2Eurl%2C%0A%09%09%09%09%09options%3A%20L%2EUtil%2Eextend%28%7B%7D%2C%20provider%2Eoptions%2C%20variantOptions%29%0A%09%09%09%09%7D%3B%0A%09%09%09%7D%20else%20if%20%28typeof%20provider%2Eurl%20%3D%3D%3D%20%27function%27%29%20%7B%0A%09%09%09%09provider%2Eurl%20%3D%20provider%2Eurl%28parts%2Esplice%281%2C%20parts%2Elength%20%2D%201%29%2Ejoin%28%27%2E%27%29%29%3B%0A%09%09%09%7D%0A%0A%09%09%09var%20forceHTTP%20%3D%20window%2Elocation%2Eprotocol%20%3D%3D%3D%20%27file%3A%27%20%7C%7C%20provider%2Eoptions%2EforceHTTP%3B%0A%09%09%09if%20%28provider%2Eurl%2EindexOf%28%27%2F%2F%27%29%20%3D%3D%3D%200%20%26%26%20forceHTTP%29%20%7B%0A%09%09%09%09provider%2Eurl%20%3D%20%27http%3A%27%20%2B%20provider%2Eurl%3B%0A%09%09%09%7D%0A%0A%09%09%09%2F%2F%20replace%20attribution%20placeholders%20with%20their%20values%20from%20toplevel%20provider%20attribution%2C%0A%09%09%09%2F%2F%20recursively%0A%09%09%09var%20attributionReplacer%20%3D%20function%20%28attr%29%20%7B%0A%09%09%09%09if%20%28attr%2EindexOf%28%27%7Battribution%2E%27%29%20%3D%3D%3D%20%2D1%29%20%7B%0A%09%09%09%09%09return%20attr%3B%0A%09%09%09%09%7D%0A%09%09%09%09return%20attr%2Ereplace%28%2F%5C%7Battribution%2E%28%5Cw%2A%29%5C%7D%2F%2C%0A%09%09%09%09%09function%20%28match%2C%20attributionName%29%20%7B%0A%09%09%09%09%09%09return%20attributionReplacer%28providers%5BattributionName%5D%2Eoptions%2Eattribution%29%3B%0A%09%09%09%09%09%7D%0A%09%09%09%09%29%3B%0A%09%09%09%7D%3B%0A%09%09%09provider%2Eoptions%2Eattribution%20%3D%20attributionReplacer%28provider%2Eoptions%2Eattribution%29%3B%0A%0A%09%09%09%2F%2F%20Compute%20final%20options%20combining%20provider%20options%20with%20any%20user%20overrides%0A%09%09%09var%20layerOpts%20%3D%20L%2EUtil%2Eextend%28%7B%7D%2C%20provider%2Eoptions%2C%20options%29%3B%0A%09%09%09L%2ETileLayer%2Eprototype%2Einitialize%2Ecall%28this%2C%20provider%2Eurl%2C%20layerOpts%29%3B%0A%09%09%7D%0A%09%7D%29%3B%0A%0A%09%2F%2A%2A%0A%09%20%2A%20Definition%20of%20providers%2E%0A%09%20%2A%20see%20http%3A%2F%2Fleafletjs%2Ecom%2Freference%2Ehtml%23tilelayer%20for%20options%20in%20the%20options%20map%2E%0A%09%20%2A%2F%0A%0A%09L%2ETileLayer%2EProvider%2Eproviders%20%3D%20%7B%0A%09%09OpenStreetMap%3A%20%7B%0A%09%09%09url%3A%20%27%2F%2F%7Bs%7D%2Etile%2Eopenstreetmap%2Eorg%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27%26copy%3B%20%3Ca%20href%3D%22http%3A%2F%2Fwww%2Eopenstreetmap%2Eorg%2Fcopyright%22%3EOpenStreetMap%3C%2Fa%3E%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09Mapnik%3A%20%7B%7D%2C%0A%09%09%09%09BlackAndWhite%3A%20%7B%0A%09%09%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Etiles%2Ewmflabs%2Eorg%2Fbw%2Dmapnik%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%0A%09%09%09%09%7D%2C%0A%09%09%09%09DE%3A%20%7B%0A%09%09%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Etile%2Eopenstreetmap%2Ede%2Ftiles%2Fosmde%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%0A%09%09%09%09%7D%2C%0A%09%09%09%09HOT%3A%20%7B%0A%09%09%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Etile%2Eopenstreetmap%2Efr%2Fhot%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09attribution%3A%20%27%7Battribution%2EOpenStreetMap%7D%2C%20Tiles%20courtesy%20of%20%3Ca%20href%3D%22http%3A%2F%2Fhot%2Eopenstreetmap%2Eorg%2F%22%20target%3D%22%5Fblank%22%3EHumanitarian%20OpenStreetMap%20Team%3C%2Fa%3E%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09OpenSeaMap%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2Ftiles%2Eopenseamap%2Eorg%2Fseamark%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%20%27Map%20data%3A%20%26copy%3B%20%3Ca%20href%3D%22http%3A%2F%2Fwww%2Eopenseamap%2Eorg%22%3EOpenSeaMap%3C%2Fa%3E%20contributors%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09OpenTopoMap%3A%20%7B%0A%09%09%09url%3A%20%27%2F%2F%7Bs%7D%2Etile%2Eopentopomap%2Eorg%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09maxZoom%3A%2016%2C%0A%09%09%09%09attribution%3A%20%27Map%20data%3A%20%7Battribution%2EOpenStreetMap%7D%2C%20%3Ca%20href%3D%22http%3A%2F%2Fviewfinderpanoramas%2Eorg%22%3ESRTM%3C%2Fa%3E%20%7C%20Map%20style%3A%20%26copy%3B%20%3Ca%20href%3D%22https%3A%2F%2Fopentopomap%2Eorg%22%3EOpenTopoMap%3C%2Fa%3E%20%28%3Ca%20href%3D%22https%3A%2F%2Fcreativecommons%2Eorg%2Flicenses%2Fby%2Dsa%2F3%2E0%2F%22%3ECC%2DBY%2DSA%3C%2Fa%3E%29%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09Thunderforest%3A%20%7B%0A%09%09%09url%3A%20%27%2F%2F%7Bs%7D%2Etile%2Ethunderforest%2Ecom%2F%7Bvariant%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27%26copy%3B%20%3Ca%20href%3D%22http%3A%2F%2Fwww%2Eopencyclemap%2Eorg%22%3EOpenCycleMap%3C%2Fa%3E%2C%20%7Battribution%2EOpenStreetMap%7D%27%2C%0A%09%09%09%09variant%3A%20%27cycle%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09OpenCycleMap%3A%20%27cycle%27%2C%0A%09%09%09%09Transport%3A%20%27transport%27%2C%0A%09%09%09%09TransportDark%3A%20%27transport%2Ddark%27%2C%0A%09%09%09%09Landscape%3A%20%27landscape%27%2C%0A%09%09%09%09Outdoors%3A%20%27outdoors%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09OpenMapSurfer%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2Fopenmapsurfer%2Euni%2Dhd%2Ede%2Ftiles%2F%7Bvariant%7D%2Fx%3D%7Bx%7D%26y%3D%7By%7D%26z%3D%7Bz%7D%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09minZoom%3A%200%2C%0A%09%09%09%09maxZoom%3A%2020%2C%0A%09%09%09%09variant%3A%20%27roads%27%2C%0A%09%09%09%09attribution%3A%20%27Imagery%20from%20%3Ca%20href%3D%22http%3A%2F%2Fgiscience%2Euni%2Dhd%2Ede%2F%22%3EGIScience%20Research%20Group%20%40%20University%20of%20Heidelberg%3C%2Fa%3E%20%26mdash%3B%20Map%20data%20%7Battribution%2EOpenStreetMap%7D%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09Roads%3A%20%27roads%27%2C%0A%09%09%09%09AdminBounds%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27adminb%27%2C%0A%09%09%09%09%09%09maxZoom%3A%2019%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09Grayscale%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27roadsg%27%2C%0A%09%09%09%09%09%09maxZoom%3A%2019%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09Hydda%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Etile%2Eopenstreetmap%2Ese%2Fhydda%2F%7Bvariant%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09minZoom%3A%200%2C%0A%09%09%09%09maxZoom%3A%2018%2C%0A%09%09%09%09variant%3A%20%27full%27%2C%0A%09%09%09%09attribution%3A%20%27Tiles%20courtesy%20of%20%3Ca%20href%3D%22http%3A%2F%2Fopenstreetmap%2Ese%2F%22%20target%3D%22%5Fblank%22%3EOpenStreetMap%20Sweden%3C%2Fa%3E%20%26mdash%3B%20Map%20data%20%7Battribution%2EOpenStreetMap%7D%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09Full%3A%20%27full%27%2C%0A%09%09%09%09Base%3A%20%27base%27%2C%0A%09%09%09%09RoadsAndLabels%3A%20%27roads%5Fand%5Flabels%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09MapQuestOpen%3A%20%7B%0A%09%09%09%2F%2A%20Mapquest%20does%20support%20https%2C%20but%20with%20a%20different%20subdomain%3A%0A%09%09%09%20%2A%20https%3A%2F%2Fotile%7Bs%7D%2Ds%2Emqcdn%2Ecom%2Ftiles%2F1%2E0%2E0%2F%7Btype%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2E%7Bext%7D%0A%09%09%09%20%2A%20which%20makes%20implementing%20protocol%20relativity%20impossible%2E%0A%09%09%09%20%2A%2F%0A%09%09%09url%3A%20%27http%3A%2F%2Fotile%7Bs%7D%2Emqcdn%2Ecom%2Ftiles%2F1%2E0%2E0%2F%7Btype%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2E%7Bext%7D%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09type%3A%20%27map%27%2C%0A%09%09%09%09ext%3A%20%27jpg%27%2C%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27Tiles%20Courtesy%20of%20%3Ca%20href%3D%22http%3A%2F%2Fwww%2Emapquest%2Ecom%2F%22%3EMapQuest%3C%2Fa%3E%20%26mdash%3B%20%27%20%2B%0A%09%09%09%09%09%27Map%20data%20%7Battribution%2EOpenStreetMap%7D%27%2C%0A%09%09%09%09subdomains%3A%20%271234%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09OSM%3A%20%7B%7D%2C%0A%09%09%09%09Aerial%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09type%3A%20%27sat%27%2C%0A%09%09%09%09%09%09attribution%3A%0A%09%09%09%09%09%09%09%27Tiles%20Courtesy%20of%20%3Ca%20href%3D%22http%3A%2F%2Fwww%2Emapquest%2Ecom%2F%22%3EMapQuest%3C%2Fa%3E%20%26mdash%3B%20%27%20%2B%0A%09%09%09%09%09%09%09%27Portions%20Courtesy%20NASA%2FJPL%2DCaltech%20and%20U%2ES%2E%20Depart%2E%20of%20Agriculture%2C%20Farm%20Service%20Agency%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09HybridOverlay%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09type%3A%20%27hyb%27%2C%0A%09%09%09%09%09%09ext%3A%20%27png%27%2C%0A%09%09%09%09%09%09opacity%3A%200%2E9%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09MapBox%3A%20%7B%0A%09%09%09url%3A%20function%20%28id%29%20%7B%0A%09%09%09%09return%20%27%2F%2F%7Bs%7D%2Etiles%2Emapbox%2Ecom%2Fv3%2F%27%20%2B%20id%20%2B%20%27%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%3B%0A%09%09%09%7D%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27Imagery%20from%20%3Ca%20href%3D%22http%3A%2F%2Fmapbox%2Ecom%2Fabout%2Fmaps%2F%22%3EMapBox%3C%2Fa%3E%20%26mdash%3B%20%27%20%2B%0A%09%09%09%09%09%27Map%20data%20%7Battribution%2EOpenStreetMap%7D%27%2C%0A%09%09%09%09subdomains%3A%20%27abcd%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09Stamen%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Etile%2Estamen%2Ecom%2F%7Bvariant%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2E%7Bext%7D%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27Map%20tiles%20by%20%3Ca%20href%3D%22http%3A%2F%2Fstamen%2Ecom%22%3EStamen%20Design%3C%2Fa%3E%2C%20%27%20%2B%0A%09%09%09%09%09%27%3Ca%20href%3D%22http%3A%2F%2Fcreativecommons%2Eorg%2Flicenses%2Fby%2F3%2E0%22%3ECC%20BY%203%2E0%3C%2Fa%3E%20%26mdash%3B%20%27%20%2B%0A%09%09%09%09%09%27Map%20data%20%7Battribution%2EOpenStreetMap%7D%27%2C%0A%09%09%09%09subdomains%3A%20%27abcd%27%2C%0A%09%09%09%09minZoom%3A%200%2C%0A%09%09%09%09maxZoom%3A%2020%2C%0A%09%09%09%09variant%3A%20%27toner%27%2C%0A%09%09%09%09ext%3A%20%27png%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09Toner%3A%20%27toner%27%2C%0A%09%09%09%09TonerBackground%3A%20%27toner%2Dbackground%27%2C%0A%09%09%09%09TonerHybrid%3A%20%27toner%2Dhybrid%27%2C%0A%09%09%09%09TonerLines%3A%20%27toner%2Dlines%27%2C%0A%09%09%09%09TonerLabels%3A%20%27toner%2Dlabels%27%2C%0A%09%09%09%09TonerLite%3A%20%27toner%2Dlite%27%2C%0A%09%09%09%09Watercolor%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27watercolor%27%2C%0A%09%09%09%09%09%09minZoom%3A%201%2C%0A%09%09%09%09%09%09maxZoom%3A%2016%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09Terrain%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27terrain%27%2C%0A%09%09%09%09%09%09minZoom%3A%204%2C%0A%09%09%09%09%09%09maxZoom%3A%2018%2C%0A%09%09%09%09%09%09bounds%3A%20%5B%5B22%2C%20%2D132%5D%2C%20%5B70%2C%20%2D56%5D%5D%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09TerrainBackground%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27terrain%2Dbackground%27%2C%0A%09%09%09%09%09%09minZoom%3A%204%2C%0A%09%09%09%09%09%09maxZoom%3A%2018%2C%0A%09%09%09%09%09%09bounds%3A%20%5B%5B22%2C%20%2D132%5D%2C%20%5B70%2C%20%2D56%5D%5D%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09TopOSMRelief%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27toposm%2Dcolor%2Drelief%27%2C%0A%09%09%09%09%09%09ext%3A%20%27jpg%27%2C%0A%09%09%09%09%09%09bounds%3A%20%5B%5B22%2C%20%2D132%5D%2C%20%5B51%2C%20%2D56%5D%5D%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09TopOSMFeatures%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27toposm%2Dfeatures%27%2C%0A%09%09%09%09%09%09bounds%3A%20%5B%5B22%2C%20%2D132%5D%2C%20%5B51%2C%20%2D56%5D%5D%2C%0A%09%09%09%09%09%09opacity%3A%200%2E9%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09Esri%3A%20%7B%0A%09%09%09url%3A%20%27%2F%2Fserver%2Earcgisonline%2Ecom%2FArcGIS%2Frest%2Fservices%2F%7Bvariant%7D%2FMapServer%2Ftile%2F%7Bz%7D%2F%7By%7D%2F%7Bx%7D%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09variant%3A%20%27World%5FStreet%5FMap%27%2C%0A%09%09%09%09attribution%3A%20%27Tiles%20%26copy%3B%20Esri%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09WorldStreetMap%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09attribution%3A%0A%09%09%09%09%09%09%09%27%7Battribution%2EEsri%7D%20%26mdash%3B%20%27%20%2B%0A%09%09%09%09%09%09%09%27Source%3A%20Esri%2C%20DeLorme%2C%20NAVTEQ%2C%20USGS%2C%20Intermap%2C%20iPC%2C%20NRCAN%2C%20Esri%20Japan%2C%20METI%2C%20Esri%20China%20%28Hong%20Kong%29%2C%20Esri%20%28Thailand%29%2C%20TomTom%2C%202012%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09DeLorme%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27Specialty%2FDeLorme%5FWorld%5FBase%5FMap%27%2C%0A%09%09%09%09%09%09minZoom%3A%201%2C%0A%09%09%09%09%09%09maxZoom%3A%2011%2C%0A%09%09%09%09%09%09attribution%3A%20%27%7Battribution%2EEsri%7D%20%26mdash%3B%20Copyright%3A%20%26copy%3B2012%20DeLorme%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09WorldTopoMap%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27World%5FTopo%5FMap%27%2C%0A%09%09%09%09%09%09attribution%3A%0A%09%09%09%09%09%09%09%27%7Battribution%2EEsri%7D%20%26mdash%3B%20%27%20%2B%0A%09%09%09%09%09%09%09%27Esri%2C%20DeLorme%2C%20NAVTEQ%2C%20TomTom%2C%20Intermap%2C%20iPC%2C%20USGS%2C%20FAO%2C%20NPS%2C%20NRCAN%2C%20GeoBase%2C%20Kadaster%20NL%2C%20Ordnance%20Survey%2C%20Esri%20Japan%2C%20METI%2C%20Esri%20China%20%28Hong%20Kong%29%2C%20and%20the%20GIS%20User%20Community%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09WorldImagery%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27World%5FImagery%27%2C%0A%09%09%09%09%09%09attribution%3A%0A%09%09%09%09%09%09%09%27%7Battribution%2EEsri%7D%20%26mdash%3B%20%27%20%2B%0A%09%09%09%09%09%09%09%27Source%3A%20Esri%2C%20i%2Dcubed%2C%20USDA%2C%20USGS%2C%20AEX%2C%20GeoEye%2C%20Getmapping%2C%20Aerogrid%2C%20IGN%2C%20IGP%2C%20UPR%2DEGP%2C%20and%20the%20GIS%20User%20Community%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09WorldTerrain%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27World%5FTerrain%5FBase%27%2C%0A%09%09%09%09%09%09maxZoom%3A%2013%2C%0A%09%09%09%09%09%09attribution%3A%0A%09%09%09%09%09%09%09%27%7Battribution%2EEsri%7D%20%26mdash%3B%20%27%20%2B%0A%09%09%09%09%09%09%09%27Source%3A%20USGS%2C%20Esri%2C%20TANA%2C%20DeLorme%2C%20and%20NPS%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09WorldShadedRelief%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27World%5FShaded%5FRelief%27%2C%0A%09%09%09%09%09%09maxZoom%3A%2013%2C%0A%09%09%09%09%09%09attribution%3A%20%27%7Battribution%2EEsri%7D%20%26mdash%3B%20Source%3A%20Esri%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09WorldPhysical%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27World%5FPhysical%5FMap%27%2C%0A%09%09%09%09%09%09maxZoom%3A%208%2C%0A%09%09%09%09%09%09attribution%3A%20%27%7Battribution%2EEsri%7D%20%26mdash%3B%20Source%3A%20US%20National%20Park%20Service%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09OceanBasemap%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27Ocean%5FBasemap%27%2C%0A%09%09%09%09%09%09maxZoom%3A%2013%2C%0A%09%09%09%09%09%09attribution%3A%20%27%7Battribution%2EEsri%7D%20%26mdash%3B%20Sources%3A%20GEBCO%2C%20NOAA%2C%20CHS%2C%20OSU%2C%20UNH%2C%20CSUMB%2C%20National%20Geographic%2C%20DeLorme%2C%20NAVTEQ%2C%20and%20Esri%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09NatGeoWorldMap%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27NatGeo%5FWorld%5FMap%27%2C%0A%09%09%09%09%09%09maxZoom%3A%2016%2C%0A%09%09%09%09%09%09attribution%3A%20%27%7Battribution%2EEsri%7D%20%26mdash%3B%20National%20Geographic%2C%20Esri%2C%20DeLorme%2C%20NAVTEQ%2C%20UNEP%2DWCMC%2C%20USGS%2C%20NASA%2C%20ESA%2C%20METI%2C%20NRCAN%2C%20GEBCO%2C%20NOAA%2C%20iPC%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09WorldGrayCanvas%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27Canvas%2FWorld%5FLight%5FGray%5FBase%27%2C%0A%09%09%09%09%09%09maxZoom%3A%2016%2C%0A%09%09%09%09%09%09attribution%3A%20%27%7Battribution%2EEsri%7D%20%26mdash%3B%20Esri%2C%20DeLorme%2C%20NAVTEQ%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09OpenWeatherMap%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Etile%2Eopenweathermap%2Eorg%2Fmap%2F%7Bvariant%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%20%27Map%20data%20%26copy%3B%20%3Ca%20href%3D%22http%3A%2F%2Fopenweathermap%2Eorg%22%3EOpenWeatherMap%3C%2Fa%3E%27%2C%0A%09%09%09%09opacity%3A%200%2E5%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09Clouds%3A%20%27clouds%27%2C%0A%09%09%09%09CloudsClassic%3A%20%27clouds%5Fcls%27%2C%0A%09%09%09%09Precipitation%3A%20%27precipitation%27%2C%0A%09%09%09%09PrecipitationClassic%3A%20%27precipitation%5Fcls%27%2C%0A%09%09%09%09Rain%3A%20%27rain%27%2C%0A%09%09%09%09RainClassic%3A%20%27rain%5Fcls%27%2C%0A%09%09%09%09Pressure%3A%20%27pressure%27%2C%0A%09%09%09%09PressureContour%3A%20%27pressure%5Fcntr%27%2C%0A%09%09%09%09Wind%3A%20%27wind%27%2C%0A%09%09%09%09Temperature%3A%20%27temp%27%2C%0A%09%09%09%09Snow%3A%20%27snow%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09HERE%3A%20%7B%0A%09%09%09%2F%2A%0A%09%09%09%20%2A%20HERE%20maps%2C%20formerly%20Nokia%20maps%2E%0A%09%09%09%20%2A%20These%20basemaps%20are%20free%2C%20but%20you%20need%20an%20API%20key%2E%20Please%20sign%20up%20at%0A%09%09%09%20%2A%20http%3A%2F%2Fdeveloper%2Ehere%2Ecom%2Fgetting%2Dstarted%0A%09%09%09%20%2A%0A%09%09%09%20%2A%20Note%20that%20the%20base%20urls%20contain%20%27%2Ecit%27%20whichs%20is%20HERE%27s%0A%09%09%09%20%2A%20%27Customer%20Integration%20Testing%27%20environment%2E%20Please%20remove%20for%20production%0A%09%09%09%20%2A%20envirionments%2E%0A%09%09%09%20%2A%2F%0A%09%09%09url%3A%0A%09%09%09%09%27%2F%2F%7Bs%7D%2E%7Bbase%7D%2Emaps%2Ecit%2Eapi%2Ehere%2Ecom%2Fmaptile%2F2%2E1%2F%27%20%2B%0A%09%09%09%09%27maptile%2F%7BmapID%7D%2F%7Bvariant%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2F256%2Fpng8%3F%27%20%2B%0A%09%09%09%09%27app%5Fid%3D%7Bapp%5Fid%7D%26app%5Fcode%3D%7Bapp%5Fcode%7D%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27Map%20%26copy%3B%201987%2D2014%20%3Ca%20href%3D%22http%3A%2F%2Fdeveloper%2Ehere%2Ecom%22%3EHERE%3C%2Fa%3E%27%2C%0A%09%09%09%09subdomains%3A%20%271234%27%2C%0A%09%09%09%09mapID%3A%20%27newest%27%2C%0A%09%09%09%09%27app%5Fid%27%3A%20%27%3Cinsert%20your%20app%5Fid%20here%3E%27%2C%0A%09%09%09%09%27app%5Fcode%27%3A%20%27%3Cinsert%20your%20app%5Fcode%20here%3E%27%2C%0A%09%09%09%09base%3A%20%27base%27%2C%0A%09%09%09%09variant%3A%20%27normal%2Eday%27%2C%0A%09%09%09%09minZoom%3A%200%2C%0A%09%09%09%09maxZoom%3A%2020%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09normalDay%3A%20%27normal%2Eday%27%2C%0A%09%09%09%09normalDayCustom%3A%20%27normal%2Eday%2Ecustom%27%2C%0A%09%09%09%09normalDayGrey%3A%20%27normal%2Eday%2Egrey%27%2C%0A%09%09%09%09normalDayMobile%3A%20%27normal%2Eday%2Emobile%27%2C%0A%09%09%09%09normalDayGreyMobile%3A%20%27normal%2Eday%2Egrey%2Emobile%27%2C%0A%09%09%09%09normalDayTransit%3A%20%27normal%2Eday%2Etransit%27%2C%0A%09%09%09%09normalDayTransitMobile%3A%20%27normal%2Eday%2Etransit%2Emobile%27%2C%0A%09%09%09%09normalNight%3A%20%27normal%2Enight%27%2C%0A%09%09%09%09normalNightMobile%3A%20%27normal%2Enight%2Emobile%27%2C%0A%09%09%09%09normalNightGrey%3A%20%27normal%2Enight%2Egrey%27%2C%0A%09%09%09%09normalNightGreyMobile%3A%20%27normal%2Enight%2Egrey%2Emobile%27%2C%0A%0A%09%09%09%09carnavDayGrey%3A%20%27carnav%2Eday%2Egrey%27%2C%0A%09%09%09%09hybridDay%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09base%3A%20%27aerial%27%2C%0A%09%09%09%09%09%09variant%3A%20%27hybrid%2Eday%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09hybridDayMobile%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09base%3A%20%27aerial%27%2C%0A%09%09%09%09%09%09variant%3A%20%27hybrid%2Eday%2Emobile%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09pedestrianDay%3A%20%27pedestrian%2Eday%27%2C%0A%09%09%09%09pedestrianNight%3A%20%27pedestrian%2Enight%27%2C%0A%09%09%09%09satelliteDay%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09base%3A%20%27aerial%27%2C%0A%09%09%09%09%09%09variant%3A%20%27satellite%2Eday%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09terrainDay%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09base%3A%20%27aerial%27%2C%0A%09%09%09%09%09%09variant%3A%20%27terrain%2Eday%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09terrainDayMobile%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09base%3A%20%27aerial%27%2C%0A%09%09%09%09%09%09variant%3A%20%27terrain%2Eday%2Emobile%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09Acetate%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2Fa%7Bs%7D%2Eacetate%2Egeoiq%2Ecom%2Ftiles%2F%7Bvariant%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27%26copy%3B2012%20Esri%20%26%20Stamen%2C%20Data%20from%20OSM%20and%20Natural%20Earth%27%2C%0A%09%09%09%09subdomains%3A%20%270123%27%2C%0A%09%09%09%09minZoom%3A%202%2C%0A%09%09%09%09maxZoom%3A%2018%2C%0A%09%09%09%09variant%3A%20%27acetate%2Dbase%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09basemap%3A%20%27acetate%2Dbase%27%2C%0A%09%09%09%09terrain%3A%20%27terrain%27%2C%0A%09%09%09%09all%3A%20%27acetate%2Dhillshading%27%2C%0A%09%09%09%09foreground%3A%20%27acetate%2Dfg%27%2C%0A%09%09%09%09roads%3A%20%27acetate%2Droads%27%2C%0A%09%09%09%09labels%3A%20%27acetate%2Dlabels%27%2C%0A%09%09%09%09hillshading%3A%20%27hillshading%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09FreeMapSK%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Efreemap%2Esk%2FT%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Ejpeg%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09minZoom%3A%208%2C%0A%09%09%09%09maxZoom%3A%2016%2C%0A%09%09%09%09subdomains%3A%20%5B%27t1%27%2C%20%27t2%27%2C%20%27t3%27%2C%20%27t4%27%5D%2C%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27%7Battribution%2EOpenStreetMap%7D%2C%20vizualization%20CC%2DBy%2DSA%202%2E0%20%3Ca%20href%3D%22http%3A%2F%2Ffreemap%2Esk%22%3EFreemap%2Esk%3C%2Fa%3E%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09MtbMap%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2Ftile%2Emtbmap%2Ecz%2Fmtbmap%5Ftiles%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27%7Battribution%2EOpenStreetMap%7D%20%26amp%3B%20USGS%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09CartoDB%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Ebasemaps%2Ecartocdn%2Ecom%2F%7Bvariant%7D%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%20%27%7Battribution%2EOpenStreetMap%7D%20%26copy%3B%20%3Ca%20href%3D%22http%3A%2F%2Fcartodb%2Ecom%2Fattributions%22%3ECartoDB%3C%2Fa%3E%27%2C%0A%09%09%09%09subdomains%3A%20%27abcd%27%2C%0A%09%09%09%09minZoom%3A%200%2C%0A%09%09%09%09maxZoom%3A%2018%2C%0A%09%09%09%09variant%3A%20%27light%5Fall%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09Positron%3A%20%27light%5Fall%27%2C%0A%09%09%09%09PositronNoLabels%3A%20%27light%5Fnolabels%27%2C%0A%09%09%09%09DarkMatter%3A%20%27dark%5Fall%27%2C%0A%09%09%09%09DarkMatterNoLabels%3A%20%27dark%5Fnolabels%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09HikeBike%3A%20%7B%0A%09%09%09url%3A%20%27http%3A%2F%2F%7Bs%7D%2Etiles%2Ewmflabs%2Eorg%2Fhikebike%2F%7Bz%7D%2F%7Bx%7D%2F%7By%7D%2Epng%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%20%27%7Battribution%2EOpenStreetMap%7D%27%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09BasemapAT%3A%20%7B%0A%09%09%09url%3A%20%27%2F%2Fmaps%7Bs%7D%2Ewien%2Egv%2Eat%2Fbasemap%2F%7Bvariant%7D%2Fnormal%2Fgoogle3857%2F%7Bz%7D%2F%7By%7D%2F%7Bx%7D%2E%7Bformat%7D%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%20%27Datenquelle%3A%20%3Ca%20href%3D%22www%2Ebasemap%2Eat%22%3Ebasemap%2Eat%3C%2Fa%3E%27%2C%0A%09%09%09%09subdomains%3A%20%5B%27%27%2C%20%271%27%2C%20%272%27%2C%20%273%27%2C%20%274%27%5D%2C%0A%09%09%09%09bounds%3A%20%5B%5B46%2E358770%2C%208%2E782379%5D%2C%20%5B49%2E037872%2C%2017%2E189532%5D%5D%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09basemap%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27geolandbasemap%27%2C%0A%09%09%09%09%09%09format%3A%20%27jpeg%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09highdpi%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27bmaphidpi%27%2C%0A%09%09%09%09%09%09format%3A%20%27jpeg%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09grau%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27bmapgrau%27%2C%0A%09%09%09%09%09%09format%3A%20%27png%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09overlay%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27bmapoverlay%27%2C%0A%09%09%09%09%09%09format%3A%20%27png%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09orthofoto%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27bmaporthofoto30cm%27%2C%0A%09%09%09%09%09%09format%3A%20%27jpeg%27%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D%2C%0A%09%09NASAGIBS%3A%20%7B%0A%09%09%09url%3A%20%27%2F%2Fmap1%2Evis%2Eearthdata%2Enasa%2Egov%2Fwmts%2Dwebmerc%2F%7Bvariant%7D%2Fdefault%2F%7Btime%7D%2F%7Btilematrixset%7D%7BmaxZoom%7D%2F%7Bz%7D%2F%7By%7D%2F%7Bx%7D%2E%7Bformat%7D%27%2C%0A%09%09%09options%3A%20%7B%0A%09%09%09%09attribution%3A%0A%09%09%09%09%09%27Imagery%20provided%20by%20services%20from%20the%20Global%20Imagery%20Browse%20Services%20%28GIBS%29%2C%20operated%20by%20the%20NASA%2FGSFC%2FEarth%20Science%20Data%20and%20Information%20System%20%27%20%2B%0A%09%09%09%09%09%27%28%3Ca%20href%3D%22https%3A%2F%2Fearthdata%2Enasa%2Egov%22%3EESDIS%3C%2Fa%3E%29%20with%20funding%20provided%20by%20NASA%2FHQ%2E%27%2C%0A%09%09%09%09bounds%3A%20%5B%5B%2D85%2E0511287776%2C%20%2D179%2E999999975%5D%2C%20%5B85%2E0511287776%2C%20179%2E999999975%5D%5D%2C%0A%09%09%09%09minZoom%3A%201%2C%0A%09%09%09%09maxZoom%3A%209%2C%0A%09%09%09%09format%3A%20%27jpg%27%2C%0A%09%09%09%09time%3A%20%27%27%2C%0A%09%09%09%09tilematrixset%3A%20%27GoogleMapsCompatible%5FLevel%27%0A%09%09%09%7D%2C%0A%09%09%09variants%3A%20%7B%0A%09%09%09%09ModisTerraTrueColorCR%3A%20%27MODIS%5FTerra%5FCorrectedReflectance%5FTrueColor%27%2C%0A%09%09%09%09ModisTerraBands367CR%3A%20%27MODIS%5FTerra%5FCorrectedReflectance%5FBands367%27%2C%0A%09%09%09%09ViirsEarthAtNight2012%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27VIIRS%5FCityLights%5F2012%27%2C%0A%09%09%09%09%09%09maxZoom%3A%208%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09ModisTerraLSTDay%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27MODIS%5FTerra%5FLand%5FSurface%5FTemp%5FDay%27%2C%0A%09%09%09%09%09%09format%3A%20%27png%27%2C%0A%09%09%09%09%09%09maxZoom%3A%207%2C%0A%09%09%09%09%09%09opacity%3A%200%2E75%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09ModisTerraSnowCover%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27MODIS%5FTerra%5FSnow%5FCover%27%2C%0A%09%09%09%09%09%09format%3A%20%27png%27%2C%0A%09%09%09%09%09%09maxZoom%3A%208%2C%0A%09%09%09%09%09%09opacity%3A%200%2E75%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09ModisTerraAOD%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27MODIS%5FTerra%5FAerosol%27%2C%0A%09%09%09%09%09%09format%3A%20%27png%27%2C%0A%09%09%09%09%09%09maxZoom%3A%206%2C%0A%09%09%09%09%09%09opacity%3A%200%2E75%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%2C%0A%09%09%09%09ModisTerraChlorophyll%3A%20%7B%0A%09%09%09%09%09options%3A%20%7B%0A%09%09%09%09%09%09variant%3A%20%27MODIS%5FTerra%5FChlorophyll%5FA%27%2C%0A%09%09%09%09%09%09format%3A%20%27png%27%2C%0A%09%09%09%09%09%09maxZoom%3A%207%2C%0A%09%09%09%09%09%09opacity%3A%200%2E75%0A%09%09%09%09%09%7D%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D%0A%09%7D%3B%0A%0A%09L%2EtileLayer%2Eprovider%20%3D%20function%20%28provider%2C%20options%29%20%7B%0A%09%09return%20new%20L%2ETileLayer%2EProvider%28provider%2C%20options%29%3B%0A%09%7D%3B%0A%7D%28%29%29%3B%0A"></script>
<script src="data:application/x-javascript,LeafletWidget%2Emethods%2EaddProviderTiles%20%3D%20function%28provider%2C%20layerId%2C%20group%2C%20options%29%20%7B%0A%20%20this%2ElayerManager%2EaddLayer%28L%2EtileLayer%2Eprovider%28provider%2C%20options%29%2C%20%22tile%22%2C%20layerId%2C%20group%29%3B%0A%7D%3B%0A"></script>
</head>
<body style="background-color:white;">
<div id="htmlwidget_container">
<div id="htmlwidget-3600" style="width:100%;height:400px;" class="leaflet"></div>
</div>
<script type="application/json" data-for="htmlwidget-3600">{"x":{"calls":[{"method":"addPolygons","args":[[[{"lng":[-122.508568866028,-123.059414672293,-122.904976063988,-122.508568866028,-121.789518118415,-120.478315705314,-118.697651792611,-118.448062544601,-116.513688175881,-116.417809383887,-114.387556223174,-113.166367480506,-112.35730306246,-111.811775282455,-111.375011252177,-111.808515443917,-112.35730306246,-113.821031451161,-114.387556223174,-116.417809383887,-118.448062544601,-119.909688014409,-120.478315705314,-122.281167444691,-122.508568866028],"lat":[33.3942216790532,33.7899518748192,34.3186411919032,34.5466802963192,34.8473305089872,35.1871763184959,35.3760198260712,35.4036180737503,35.3760198260712,35.3749089068392,35.1349686998234,34.8473305089872,34.5651688052032,34.3186411919032,33.7899518748192,33.2612625577351,33.0662733771905,32.7325732406511,32.6540287645468,32.5357144062383,32.5813409549763,32.7325732406511,32.8088368805749,33.2612625577351,33.3942216790532]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-104.236290419605,-104.661762657449,-105.185335329854,-104.588984603126,-104.236290419605,-102.206037258892,-101.947805858229,-100.175784098178,-98.1455309374646,-97.356228454972,-96.115277776751,-94.3643950597495,-94.0850246160374,-93.547273186099,-93.9132248787329,-94.0850246160374,-95.8801955969628,-96.115277776751,-98.1455309374646,-100.175784098178,-102.206037258892,-102.543455897039,-104.236290419605],"lat":[18.8457177329394,18.9866509964663,19.5153403135504,20.0440296306344,20.1555538498949,20.5531099466251,20.5727189477184,20.6798289693448,20.6443250860599,20.5727189477184,20.4340146800829,20.0440296306344,19.8870389952562,19.5153403135504,18.9866509964663,18.9233191934334,18.4579616793823,18.4207414471965,18.2539070511723,18.250986597264,18.4069350129796,18.4579616793823,18.8457177329394]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-87.9942651338966,-88.0768824570419,-88.971100257116,-89.3853946843091,-89.2018619783341,-88.4495651220613,-87.9942651338966,-87.1306360255692,-85.9640119731829,-85.051047142096,-83.9337588124694,-81.9110667945813,-81.9035056517558,-79.8732524910421,-77.8429993303286,-75.8127461696149,-73.7824930089013,-72.0006475826812,-71.7522398481877,-70.6109499686952,-69.7219866874741,-69.4632007186638,-68.3007254932431,-67.6917335267605,-67.1675169211988,-66.276780142476,-65.7546723176697,-65.6614803660469,-65.5835323301296,-65.6614803660469,-65.7904797560509,-66.3666980579815,-67.4561870229311,-67.6917335267605,-69.0995709185842,-69.7219866874741,-71.7004757711332,-71.7522398481877,-73.7824930089013,-75.8127461696149,-77.8429993303286,-79.8732524910421,-81.6898614107701,-81.9035056517558,-83.9337588124694,-84.0112633811358,-85.4169096118246,-85.9640119731829,-86.3294675816399,-87.1844438049692,-87.9942651338966],"lat":[41.150078998486,41.1916023139956,41.7202916310796,42.2489809481636,42.7776702652477,43.3063595823317,43.4899749747139,43.8350488994157,44.1450770370091,44.3637382164997,44.5761731746704,44.8924275335838,44.8935803991289,45.1477368065814,45.3153482317069,45.3738267215094,45.2559824855784,44.8924275335838,44.8256280502881,44.3637382164997,43.9654960938098,43.8350488994157,43.3063595823317,43.0321496336244,42.7776702652477,42.2489809481636,41.7202916310796,41.4173506001628,41.1916023139956,41.0185720735151,40.6629129969115,40.1342236798275,39.6055343627435,39.521666822719,39.0768450456594,38.9167142560514,38.5481557285754,38.5383657468138,38.2743651038784,38.1539317286878,38.152726358987,38.2819316955178,38.5481557285754,38.5818272441991,39.0553471530906,39.0768450456594,39.6055343627435,39.9398057879596,40.1342236798275,40.6629129969115,41.150078998486]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-77.8429993303286,-79.3972305742321,-78.5318400751131,-77.8429993303286,-75.8127461696149,-75.3369783788567,-74.4916938814546,-75.8127461696149,-77.8429993303286],"lat":[-12.5695158850367,-12.2060187114914,-11.6773293944074,-11.5819532470073,-11.6032530145226,-11.6773293944074,-12.2060187114914,-12.5530865409929,-12.5695158850367]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-77.8429993303286,-78.0442426484807,-79.4974017642899,-79.8728130610053,-79.4536180269577,-78.2212142744776,-77.8429993303286,-75.8127461696149,-73.7824930089013,-71.7522398481877,-71.1072524687816,-69.7219866874741,-69.6914953661619,-69.316479559525,-69.7219866874741,-69.8045057979986,-71.5568198291816,-71.7522398481877,-73.7824930089013,-75.8127461696149,-77.8429993303286],"lat":[3.61137549775654,3.65466080102949,4.18335011811352,4.71203943519754,5.24072875228157,5.7694180693656,5.87636202045219,6.16442651061294,6.17164281951159,5.92670172024127,5.7694180693656,5.25595705000875,5.24072875228157,4.71203943519754,4.25847386716968,4.18335011811352,3.65466080102949,3.61642477311582,3.40340196415395,3.3948427764524,3.61137549775654]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-73.7824930089013,-75.1588954144371,-75.6472091307105,-74.7968983032624,-73.7824930089013,-71.7522398481877,-69.7219866874741,-67.6917335267605,-65.6614803660469,-65.3375989919973,-63.6312272053332,-63.5428632556881,-62.5478900239459,-63.6312272053332,-63.7376952336025,-65.6614803660469,-67.6917335267605,-69.7219866874741,-71.7522398481877,-72.9594249025565,-73.7824930089013],"lat":[-34.2757441224091,-33.8822807119366,-33.3535913948526,-32.8249020777685,-32.5898029345327,-32.3529622179944,-32.3195765690458,-32.4578110543895,-32.7610485270381,-32.8249020777685,-33.3304992476094,-33.3535913948526,-33.8822807119366,-34.3845589904097,-34.4109700290206,-34.5585521982114,-34.6436946776458,-34.6517673674733,-34.5554133031871,-34.4109700290206,-34.2757441224091]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-47.3892019196244,-47.7039660756026,-47.3892019196244,-45.3589487589107,-44.5568420279409,-45.3589487589107,-47.3892019196244],"lat":[-23.4570312443399,-23.308494370256,-23.2042553900185,-23.0976819177528,-23.308494370256,-23.5641024876098,-23.4570312443399]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-6.78413870535218,-6.98533334909381,-7.02858594109181,-6.78413870535218,-5.31101885669818,-4.75388554463854,-2.72363238392495,-0.693379223211309,0.208036771929623,0.863770455813075,-0.180643975873781,-0.693379223211309,-2.72363238392495,-4.75388554463854,-6.78413870535218],"lat":[40.0513501238949,40.1342236798275,40.6629129969115,40.7669329137996,41.1916023139956,41.2779264697013,41.4127188781585,41.3431112938022,41.1916023139956,40.6629129969115,40.1342236798275,40.015118458597,39.7376054545082,39.6990099147279,40.0513501238949]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-4.75388554463854,-5.18464231271577,-5.15384971104647,-4.75388554463854,-4.57170011167145,-3.00265906946969,-2.72363238392495,-0.693379223211309,1.33687393750228,3.36712709821592,5.3973802589295,7.42763341964314,8.40789695695289,9.45788658035673,11.4881397410704,13.518392901784,14.582274692575,15.5486460624976,16.7247851363313,17.5788992232112,17.7840230173211,18.8685827534242,19.6091523839248,21.6394055446384,22.6862283997423,23.669658705352,25.6999118660656,26.7249284017911,27.7301650267792,29.4656178366431,29.7529846744903,28.3242956324286,27.7301650267792,26.504122135504,25.6999118660656,25.0741303854159,24.2657344741952,24.1271894305148,24.4290005578552,25.1581295989191,25.6999118660656,26.1003761851922,26.9502387405933,26.9722703258617,25.6999118660656,25.2537606875137,23.669658705352,23.4415765390334,22.6318048102827,22.8492794873795,23.669658705352,24.1144817348771,25.6999118660656,27.0497559533151,27.7301650267792,29.7604181874929,31.7906713482064,33.8209245089201,34.5475576600572,35.8511776696337,37.2670989780018,37.8814308303473,38.6932315918689,39.7231690188123,39.9116839910609,41.5265624971712,41.9419371517745,43.9721903124881,45.8523106921178,46.0024434732017,48.0326966339154,50.0629497946289,52.0932029553426,54.1234561160562,56.1537092767698,58.1839624374834,60.214215598197,62.2444687589106,62.8739516840838,64.2747219196243,65.9431598016701,66.3049750803378,67.3661986550865,67.974862341012,68.0302940496811,67.5309188806,66.3049750803378,66.2452369049138,64.2747219196243,64.2678786205604,62.2444687589106,61.6635120113809,60.214215598197,58.796536262952,58.1839624374834,56.2877308608056,56.1537092767698,54.1234561160562,54.0191826990975,52.0932029553426,51.266339531721,50.0629497946289,48.0326966339154,47.9657579047671,46.0024434732017,45.7574157828588,44.8971872961849,44.9874244206294,45.6270487133795,46.0024434732017,46.2021291424733,46.330454727781,46.0469984400835,46.0024434732017,45.6072771330186,45.4298848599322,45.7541574725391,46.0024434732017,46.4046118576602,46.9925623789676,47.233021762376,46.8945493819241,46.0024434732017,45.5416328515514,43.9721903124881,41.9419371517745,41.5097937235586,39.9116839910609,37.8814308303473,36.7903456979201,36.4016055786916,36.5109792670864,36.4044188872991,35.8511776696337,35.7443834503795,34.1413092867436,33.8209245089201,31.7906713482064,29.7604181874929,27.7301650267792,25.6999118660656,24.1941421549502,23.669658705352,22.310195658515,21.6394055446384,20.9849816617451,20.0742813301942,19.6091523839248,19.4904009796115,19.0928972532402,18.8003875178198,18.3859992401224,17.7010973822666,17.5788992232112,16.4228861000821,15.5486460624976,14.1516416729719,13.518392901784,11.4881397410704,10.8016728896951,9.64383996509951,9.45788658035673,9.41257072922589,8.60286012477543,7.42763341964314,5.79983212740405,5.3973802589295,3.36712709821592,2.91309121761633,1.33687393750228,1.01015012720536,-0.149892985284195,-0.693379223211309,-1.17524540312585,-2.39701742622478,-2.72363238392495,-3.70647981188935,-4.69394430554461,-4.75388554463854],"lat":[51.3010864671453,51.7653886556761,52.2940779727602,52.6875191629208,52.8227672898442,53.3514566069282,53.4114099147094,53.6148033457397,53.6428192268548,53.5902329019578,53.5033079490147,53.4024947210892,53.3514566069282,53.2912136382606,53.154608872502,52.962868679945,52.8227672898442,52.6086177554944,52.2940779727602,51.8476654123965,51.7653886556761,51.2366993385921,50.9742523485053,51.0371217869935,51.2366993385921,51.3331089978876,51.610216054468,51.7653886556761,51.9227794206627,52.2940779727602,52.8227672898442,53.3514566069282,53.5168696664017,53.8801459240123,54.1914616111246,54.4088352410963,54.9375245581803,55.4662138752643,55.9949031923484,56.5235925094324,56.7994505496949,57.0522818265164,57.5809711436005,58.1096604606845,58.511603516108,58.6383497777685,59.0939567431543,59.1670390948526,59.6957284119366,60.2244177290206,60.577931635249,60.7531070461046,61.0977128665508,61.2817963631887,61.3646750939279,61.4924608768177,61.4988139123965,61.3752871349343,61.2817963631887,61.0877475297329,60.7531070461046,60.5309594556681,60.2244177290206,59.6957284119366,59.6210654296452,59.1670390948526,59.1097987565687,58.8633721019258,58.6383497777685,58.6254028747769,58.4665468655851,58.3334511384671,58.2802646923884,58.3103945103148,58.3634697483955,58.3790229057005,58.3258713932345,58.1842342829943,58.1096604606845,57.9239802783644,57.5809711436005,57.4631940325928,57.0522818265164,56.5235925094324,55.9949031923484,55.4662138752643,54.9609086425348,54.9375245581803,54.4104666350561,54.4088352410963,53.9865306269641,53.8801459240123,53.6048275505485,53.3514566069282,53.2225233891037,52.8227672898442,52.7895214923665,52.3160272132673,52.2940779727602,51.9045925182806,51.7653886556761,51.5694711010621,51.2485539848263,51.2366993385921,50.7806293967326,50.7080100215081,50.1793207044241,49.65063138734,49.121942070256,48.7900068215999,48.593252753172,48.064563436088,47.5358741190039,47.4821230993665,47.0071848019199,46.4784954848359,45.9498061677518,45.757574140495,45.4211168506678,44.8924275335838,44.3637382164997,43.8350488994157,43.4513648284365,43.3063595823317,43.0163875824975,42.8044704111002,42.7776702652477,42.6566636380789,42.4696288718309,42.2489809481636,41.7202916310796,41.1916023139956,40.6629129969115,40.2132604173068,40.1342236798275,39.6055343627435,39.5318330739486,39.2295106404253,39.1018129638759,39.1153148385916,39.2966072183824,39.6055343627435,39.7205998520858,40.1342236798275,40.3997812197556,40.6629129969115,41.1916023139956,41.632900756298,41.7202916310796,42.2489809481636,42.7776702652477,43.3063595823317,43.8350488994157,43.908438927788,44.3637382164997,44.6600738436721,44.8924275335838,45.0227902009527,45.2958037752005,45.4211168506678,45.9498061677518,46.3346630891708,46.4784954848359,47.0071848019199,47.1969815256346,47.5358741190039,47.5867876576941,47.9557725677571,48.064563436088,48.4816607035793,48.593252753172,49.121942070256,49.3888324014913,49.65063138734,50.1793207044241,50.2998449040009,50.7080100215081,51.2366993385921,51.3010864671453]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[17.5788992232112,16.8479026844784,17.5788992232112,17.6724785660179,18.9902880114227,19.6091523839248,21.6394055446384,23.669658705352,24.3588809674118,25.6999118660656,26.4421144030228,26.7238107224433,25.6999118660656,24.2471305261073,23.669658705352,21.6394055446384,19.6091523839248,17.7492089438611,17.5788992232112],"lat":[47.0540356706201,47.5358741190039,47.9953475228238,48.064563436088,48.593252753172,48.8367145763975,48.9842316779763,48.7291442318942,48.593252753172,48.2839661275508,48.064563436088,47.5358741190039,47.2283764262377,47.0071848019199,46.9597795295914,46.8818657845306,46.8845990853385,47.0071848019199,47.0540356706201]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[27.7301650267792,27.2844239012322,26.5717923825536,26.2808725336621,26.3471411094452,26.7898253341469,27.6990010367101,27.7301650267792,29.0435068452415,29.7604181874929,31.3522787036501,31.7906713482064,33.8209245089201,35.8511776696337,37.8814308303473,38.8989370529485,39.9116839910609,41.3090818965786,41.9419371517745,42.6443493519916,43.3465436670586,43.5242707755058,43.2001698295605,42.2816136086667,41.9419371517745,40.7617346638793,39.9116839910609,38.490811277579,37.8814308303473,35.8511776696337,33.8209245089201,31.7906713482064,29.7604181874929,28.6633194221495,27.7301650267792],"lat":[30.4102239690142,30.617815972315,31.146505289399,31.675194606483,32.2038839235671,32.7325732406511,33.2612625577351,33.2748107569375,33.7899518748192,34.0024019446843,34.3186411919032,34.3998410617959,34.5963565698908,34.6153884929915,34.4747327607771,34.3186411919032,34.1557964586763,33.7899518748192,33.5618664472027,33.2612625577351,32.7325732406511,32.2038839235671,31.675194606483,31.146505289399,31.0169742758595,30.617815972315,30.3818612559388,30.089126655231,29.9597985362975,29.6820859689776,29.563690385974,29.5959333059442,29.8274402267864,30.089126655231,30.4102239690142]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[50.0629497946289,49.4357586920915,48.5564808472803,48.6712374994106,49.8418147586055,50.0629497946289,52.0932029553426,53.6989765713885,54.1234561160562,56.1537092767698,56.7404887186023,58.1839624374834,60.214215598197,60.5672278897812,61.6627127391283,61.7113135995893,60.7724795340324,60.214215598197,58.1839624374834,58.0650197892968,56.1537092767698,54.1234561160562,52.0932029553426,52.0672095744447,50.0629497946289],"lat":[24.1000312290156,24.2735441673066,24.8022334843907,25.3309228014747,25.8596121185587,25.9146203746196,26.2649024278826,26.3883014356427,26.418479128905,26.4263225465227,26.3883014356427,26.2872650243085,25.9488081055602,25.8596121185587,25.3309228014747,24.8022334843907,24.2735441673066,24.1197159703121,23.7550261045331,23.7448548502226,23.6012952177398,23.5971353548592,23.74131258852,23.7448548502226,24.1000312290156]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[82.5470003660467,82.0294696869731,81.0606478907546,82.5046174472039,82.5470003660467,84.5772535267603,86.5650134498436,86.607506687474,87.1919356499517,86.607506687474,85.9687681189704,84.5772535267603,82.5470003660467],"lat":[54.3128004319674,54.4088352410963,54.9375245581803,55.4662138752643,55.4723065642487,55.5877105895256,55.4662138752643,55.4549614099857,54.9375245581803,54.5950228144528,54.4088352410963,54.2317147092471,54.3128004319674]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[102.849531973183,101.622841298839,102.280053433212,102.849531973183,104.158203733341,104.879785133896,105.409889282064,104.879785133896,102.849531973183],"lat":[1.24067227647609,1.53990353269337,2.0685928497774,2.15407877782407,2.0685928497774,1.93085019348928,1.53990353269337,1.33893342215545,1.24067227647609]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[102.849531973183,102.246384460379,101.453829027345,101.796146963659,102.849531973183,103.753942464427,104.879785133896,106.91003829461,107.865595374126,108.940291455324,110.946474002888,110.970544616037,113.000797776751,113.678134612132,115.031050937464,117.061304098178,118.172570917083,119.091557258892,121.121810419605,121.454626207409,121.121810419605,121.121390843594,119.821624259215,119.091557258892,118.3802994973,117.116069473743,117.061304098178,115.912747834179,115.127397722094,115.031050937464,114.270039750266,113.367790346941,113.000797776751,112.077139707035,110.970544616037,110.892478026023,110.263129981212,110.446766773833,110.970544616037,111.624651538333,113.000797776751,114.681713662463,115.031050937464,117.061304098178,119.091557258892,121.121810419605,121.273670499702,123.152063580319,124.271129460187,125.182316741033,127.137475301124,127.212569901746,129.24282306246,131.273076223173,131.560340168096,133.303329383887,135.240995879669,135.333582544601,137.363835705314,138.14904941873,139.394088866028,141.025664953275,141.424342026741,143.454595187455,144.103347759875,145.484848348169,146.35198569037,147.515101508882,147.641227295268,148.298257131566,148.256367601055,147.515101508882,147.490816530187,146.071248895477,145.484848348169,143.502315712747,143.454595187455,141.424342026741,139.394088866028,139.122884989587,137.363835705314,135.333582544601,133.303329383887,132.606118474185,131.273076223173,130.762078802079,130.581231201568,130.395195509138,129.828476427185,129.24282306246,128.71599288376,127.212569901746,126.847873903698,125.182316741033,123.731449027508,123.152063580319,121.121810419605,119.091557258892,117.061304098178,115.031050937464,113.000797776751,110.970544616037,108.940291455324,106.91003829461,104.879785133896,104.411025833408,102.849531973183],"lat":[29.3759606089102,29.5604373381469,30.089126655231,30.617815972315,30.9520418806477,31.146505289399,31.3050065631805,31.5375170820459,31.675194606483,31.8265462785051,32.2038839235671,32.208489215404,32.619818489507,32.7325732406511,32.9516377235858,33.1744956786796,33.2612625577351,33.3822528624255,33.7044624149549,33.7899518748192,34.317835332606,34.3186411919032,34.8473305089872,35.1161560724991,35.3760198260712,35.9047091431553,35.9314089746514,36.4333984602393,36.9620877773233,37.0428843099444,37.4907770944073,38.0194664114914,38.1959660074522,38.5481557285754,39.0425400995026,39.0768450456594,39.6055343627435,40.1342236798275,40.3917557665724,40.6629129969115,40.9697459821725,41.1916023139956,41.2329841233177,41.3536692142888,41.3532847327775,41.2123916916225,41.1916023139956,40.9162911402248,40.6629129969115,40.4985735340549,40.1342236798275,40.1261832639929,39.911589336641,39.6487451705212,39.6055343627435,39.4033931108643,39.0768450456594,39.0613070995456,38.6980237896674,38.5481557285754,38.3144797136034,38.0194664114914,37.9551804558794,37.6210981610518,37.4907770944073,37.1969048567623,36.9620877773233,36.4870426041077,36.4333984602393,35.9047091431553,35.3760198260712,34.8660577965553,34.8473305089872,34.3186411919032,34.1727631611262,33.7899518748192,33.7813508616038,33.4779077495207,33.2812189547167,33.2612625577351,33.0860675292185,32.931677846413,32.788964752422,32.7325732406511,32.438224476429,32.2038839235671,31.675194606483,31.146505289399,30.617815972315,30.3422822631855,30.089126655231,29.6448863344752,29.5604373381469,29.2203549876135,29.0317480210629,28.9398311316334,28.7271241103791,28.606676319533,28.5430873496591,28.5155644871558,28.5120988946427,28.5327297459485,28.5936114997374,28.7212332195699,28.9499481864193,29.0317480210629,29.3759606089102]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[106.91003829461,106.853286718077,105.682262091215,105.30130962375,105.492810039571,106.296686480277,106.91003829461,107.817848696219,108.940291455324,110.112209196569,110.970544616037,112.731969253365,113.000797776751,115.031050937464,115.490645278438,117.061304098178,119.091557258892,121.121810419605,123.152063580319,125.108736126625,125.182316741033,126.734351000594,127.212569901746,127.240639375301,127.212569901746,127.026736178826,126.380533722524,125.521944852873,125.182316741033,124.653459030955,123.605098896911,123.152063580319,122.063624496555,121.121810419605,119.327336741843,119.091557258892,117.061304098178,115.031050937464,113.000797776751,110.970544616037,109.235023545292,108.940291455324,106.91003829461],"lat":[21.6133181238769,21.6300975818865,22.1587868989705,22.6874762160545,23.2161655331386,23.7448548502226,23.9795696494487,24.2735441673066,24.5604038270695,24.8022334843907,24.9894965278573,25.3309228014747,25.3908207637353,25.7906936639515,25.8596121185587,26.1107462160394,26.2671481324667,26.2826681713957,26.1579413460329,25.8596121185587,25.844487890928,25.3309228014747,24.8336180928245,24.8022334843907,24.7402023858459,24.2735441673066,23.7448548502226,23.2161655331386,23.0310696753503,22.6874762160545,22.1587868989705,21.998215533706,21.6300975818865,21.4064148071199,21.1014082648025,21.0648730788615,20.8493600668251,20.7568991802082,20.7633473143409,20.8777681993251,21.1014082648025,21.1429275360322,21.6133181238769]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFFA00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[-79.8732524910421,-80.4917481068147,-81.0645285751695,-81.1369120968967,-80.9177691279595,-80.5566022488106,-79.9988012464031,-79.8732524910421,-77.8429993303286,-75.8127461696149,-74.2960390534097,-73.7824930089013,-71.7756652543813,-71.7522398481877,-70.3884406885565,-69.7219866874741,-69.6991514686175,-69.7219866874741,-69.7860882386102,-70.6561340074753,-71.7522398481877,-72.6866249572169,-73.7824930089013,-75.8127461696149,-77.8429993303286,-78.8276517528726,-79.8732524910421],"lat":[39.8875616887445,40.1342236798275,40.6629129969115,41.1916023139956,41.7202916310796,42.2489809481636,42.7776702652477,42.834849785511,43.1814423205523,43.0490261097019,42.7776702652477,42.7107650224126,42.2489809481636,42.2437822179152,41.7202916310796,41.2149134597922,41.1916023139956,41.0414431673343,40.6629129969115,40.1342236798275,39.7885684626706,39.6055343627435,39.4412174869662,39.3388642926067,39.4461290007777,39.6055343627435,39.8875616887445]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFD600","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[27.7301650267792,27.5686812654322,27.0430298458647,27.1931155723823,27.7301650267792,27.9129136371085,29.0568656091092,29.7604181874929,30.7619589402039,31.7906713482064,33.1288193413323,33.8209245089201,35.8511776696337,37.8814308303473,39.9116839910609,41.9419371517745,42.7464650149312,43.9721903124881,46.0024434732017,47.3998408331703,48.0326966339154,50.0629497946289,50.5944287487925,52.0932029553426,53.4421395880692,54.1234561160562,55.3913824891023,54.8999137193607,54.1234561160562,53.5791450123186,52.0932029553426,51.887940935856,50.0629497946289,49.9390275214019,48.0326966339154,47.3571108944714,46.0024434732017,43.9721903124881,42.5035621546615,41.9419371517745,39.9116839910609,37.8814308303473,37.8797820492124,35.8511776696337,33.8209245089201,33.4556993501114,31.7906713482064,30.6084694492619,29.7604181874929,28.6557808363536,27.7301650267792],"lat":[54.863550637971,54.9375245581803,55.4662138752643,55.9949031923484,56.3667962090722,56.5235925094324,57.0522818265164,57.3041033725461,57.5809711436005,57.9019900224268,58.1096604606845,58.2968956803463,58.4376758813777,58.4214814888419,58.3390486689631,58.1927572910498,58.1096604606845,58.0146253589282,57.7833378873425,57.5809711436005,57.4758814296297,57.1246830081426,57.0522818265164,56.7157719748134,56.5235925094324,56.2517855269424,55.9949031923484,55.4662138752643,55.2438881485221,54.9375245581803,54.4937067122038,54.4088352410963,53.9140698143619,53.8801459240123,53.4620230854576,53.3514566069282,53.1288120450758,52.9064850786291,52.8227672898442,52.7728592911112,52.7106392091146,52.8224948654769,52.8227672898442,52.9686079319251,53.2693881439442,53.3514566069282,53.6077174231495,53.8801459240123,54.0845704720445,54.4088352410963,54.863550637971]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFD600","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[29.7604181874929,29.0810205485265,29.7082322109981,29.7604181874929,30.4368633069664,31.7906713482064,32.6237418979654,31.7906713482064,29.7604181874929],"lat":[59.5354186257584,59.6957284119366,60.2244177290206,60.2315009465673,60.2244177290206,60.1635146179647,59.6957284119366,59.4593257579814,59.5354186257584]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFD600","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[31.7906713482064,31.7045796346831,30.5328015477096,30.3617892843095,31.0255943940794,31.7906713482064,33.0538041904939,33.8209245089201,35.8511776696337,37.2990517012195,37.8814308303473,39.1643137368449,39.6112952301034,39.0350457799018,37.8814308303473,37.1406685033135,35.8511776696337,33.8209245089201,31.7906713482064],"lat":[31.1237771770078,31.146505289399,31.675194606483,32.2038839235671,32.7325732406511,33.0069848124201,33.2612625577351,33.3744469589694,33.4181018879836,33.2612625577351,33.1721730746451,32.7325732406511,32.2038839235671,31.675194606483,31.2875220521273,31.146505289399,30.9580531647439,30.8960339687735,31.1237771770078]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFD600","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[110.970544616037,109.78043772225,109.106942801133,109.591671674015,110.970544616037,111.228169564622,113.000797776751,114.472170872331,115.031050937464,117.061304098178,119.091557258892,121.121810419605,121.282569828469,121.347956536668,121.121810419605,121.074335754734,120.48089903385,119.292320672642,119.091557258892,117.061304098178,115.836955971785,115.031050937464,113.000797776751,112.704469906083,110.970544616037],"lat":[21.8525820817054,22.1587868989705,22.6874762160545,23.2161655331386,23.6838479701716,23.7448548502226,24.0761453504131,24.2735441673066,24.3596935366704,24.5840670872583,24.7004678096901,24.3744156856317,24.2735441673066,23.7448548502226,23.3161100383423,23.2161655331386,22.6874762160545,22.1587868989705,22.1058937170155,21.7309172153815,21.6300975818865,21.576623845568,21.6026102209823,21.6300975818865,21.8525820817054]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFD600","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[113.000797776751,112.941184760408,113.000797776751,113.237290325754,114.464475924996,115.031050937464,116.990940998051,117.061304098178,119.091557258892,121.121810419605,123.152063580319,124.739727035779,125.182316741033,126.325106195669,126.620725604787,126.006512186661,125.182316741033,124.154269891806,123.152063580319,121.121810419605,119.091557258892,117.061304098178,115.031050937464,114.167814082082,113.000797776751],"lat":[30.5877073389563,30.617815972315,30.6910790541432,31.146505289399,31.675194606483,31.814707383741,32.2038839235671,32.214549553509,32.4136439118949,32.4811092523849,32.4159028921752,32.2038839235671,32.1120278576938,31.675194606483,31.146505289399,30.617815972315,30.3373890228191,30.089126655231,29.9164924363299,29.7281195525542,29.676386358589,29.7459491284989,29.9543041978621,30.089126655231,30.5877073389563]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFD600","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[117.061304098178,116.912383254783,116.981383437158,117.061304098178,119.091557258892,121.121810419605,122.590844159185,123.152063580319,125.182316741033,127.212569901746,129.24282306246,130.441954495929,131.273076223173,133.303329383887,134.007105050322,135.333582544601,136.385112848074,137.363835705314,138.828661290985,139.394088866028,141.424342026741,141.854317351202,143.454595187455,144.008333763932,144.951577712271,144.944218263648,143.99002178021,143.454595187455,141.739399034638,141.424342026741,139.394088866028,137.363835705314,136.111953834882,135.333582544601,133.303329383887,131.273076223173,130.554484986276,129.24282306246,127.212569901746,126.353088341538,125.182316741033,124.114899906304,123.152063580319,122.168524024308,121.121810419605,120.447476318728,119.141878854331,119.091557258892,118.163723486627,117.637625175559,117.376675184327,117.190715486757,117.061304098178],"lat":[38.8551348903887,39.0768450456594,39.6055343627435,39.6328326488302,39.802478216822,39.710538604582,39.6055343627435,39.5833694947307,39.4879212032696,39.3773079618263,39.217520664744,39.0768450456594,38.990240521611,38.6824674326547,38.5481557285754,38.2553116946978,38.0194664114914,37.7825617756011,37.4907770944073,37.3855782391465,37.0435886235294,36.9620877773233,36.5951812289161,36.4333984602393,35.9047091431553,35.3760198260712,34.8473305089872,34.6952587117549,34.3186411919032,34.2645261099484,34.0073676275383,33.847115543489,33.7899518748192,33.7476571336186,33.7072117568609,33.7431310973034,33.7899518748192,33.8709210269716,34.1297146590126,34.3186411919032,34.5578639747442,34.8473305089872,35.0871751854839,35.3760198260712,35.6840466640045,35.9047091431553,36.4333984602393,36.4625058877002,36.9620877773233,37.4907770944073,38.0194664114914,38.5481557285754,38.8551348903887]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFD600","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[29.7604181874929,29.4591631884725,28.8175993464719,28.911643177544,29.7282651049853,29.7604181874929,31.2039839208677,31.7906713482064,33.8209245089201,33.9789221058253,35.8511776696337,37.8814308303473,39.9116839910609,41.9419371517745,43.253143602493,43.9721903124881,46.0024434732017,46.7076906805133,48.0326966339154,48.5139196016459,49.3728316210129,49.38961137547,48.6730232244339,48.0326966339154,47.2214711976955,46.0024434732017,44.620805219165,43.9721903124881,41.9419371517745,39.9116839910609,37.8814308303473,35.8511776696337,33.8209245089201,33.6050832233626,31.7906713482064,30.8935346804834,29.7604181874929],"lat":[54.8180787759047,54.9375245581803,55.4662138752643,55.9949031923484,56.5235925094324,56.5363662756011,57.0522818265164,57.210859072996,57.565560205899,57.5809711436005,57.7994548214002,57.8739667188995,57.8458042040998,57.7233753002958,57.5809711436005,57.5065241686196,57.1884126760898,57.0522818265164,56.6602540240649,56.5235925094324,55.9949031923484,55.4662138752643,54.9375245581803,54.7049654279489,54.4088352410963,54.1156856617364,53.8801459240123,53.7765397050718,53.5630020877231,53.4774300979219,53.4881100290845,53.5970247270973,53.8412515558639,53.8801459240123,54.1869460175049,54.4088352410963,54.8180787759047]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFB200","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[119.091557258892,118.316364574586,119.091557258892,121.121810419605,122.334440453333,121.121810419605,119.091557258892],"lat":[30.7586529386047,31.146505289399,31.3685179948806,31.4743819787849,31.146505289399,30.7237043305979,30.7586529386047]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFB200","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[121.121810419605,120.368083085624,119.929139517778,120.090201085556,121.121810419605,121.170732047272,123.152063580319,125.182316741033,127.212569901746,129.24282306246,130.77649740595,131.273076223173,133.303329383887,133.540808875266,135.333582544601,135.413799807694,137.363835705314,137.638645554283,139.394088866028,140.421815621407,141.424342026741,141.962754628245,142.007591524858,141.424342026741,140.495266551893,139.394088866028,137.363835705314,135.333582544601,133.303329383887,131.273076223173,129.24282306246,128.188360104019,127.212569901746,125.354729510232,125.182316741033,123.152063580319,123.099202561582,121.433537358152,121.121810419605],"lat":[36.5803830786385,36.9620877773233,37.4907770944073,38.0194664114914,38.5341895315106,38.5481557285754,38.8440504685495,38.9133624490051,38.8734020817069,38.7372017812071,38.5481557285754,38.4787904991134,38.073652221844,38.0194664114914,37.5102853404522,37.4907770944073,37.0129752869857,36.9620877773233,36.6321350688992,36.4333984602393,36.1210332977233,35.9047091431553,35.3760198260712,35.1328444200654,34.8473305089872,34.6642466976678,34.4593298966856,34.3650937892601,34.3696132465044,34.4722860316315,34.6796518453667,34.8473305089872,34.9987987761033,35.3760198260712,35.4073918159868,35.8895294383018,35.9047091431553,36.4333984602393,36.5803830786385]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FFB200","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[31.7906713482064,31.0046823607669,30.2611777483909,30.3319572835693,31.2092938972707,31.7906713482064,33.1892046084335,33.8209245089201,35.8511776696337,37.8814308303473,39.9116839910609,41.9419371517745,43.9721903124881,44.1831998192219,46.0024434732017,46.2833354833322,47.1862540552464,47.1696905607509,46.2983399674125,46.0024434732017,44.4370911888869,43.9721903124881,41.9419371517745,39.9116839910609,37.8814308303473,35.8511776696337,33.8209245089201,32.8892440413997,31.7906713482064],"lat":[54.6798661258093,54.9375245581803,55.4662138752643,55.9949031923484,56.5235925094324,56.7124458140283,57.0522818265164,57.1768242419154,57.4135954627628,57.5012966340741,57.4815594180015,57.3541254857763,57.0889087463529,57.0522818265164,56.6036449900261,56.5235925094324,55.9949031923484,55.4662138752643,54.9375245581803,54.8410903543389,54.4088352410963,54.3163820192654,54.0379448177967,53.9163626076423,53.9051475878335,53.9992087839316,54.2306491961588,54.4088352410963,54.6798661258093]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FF8E00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[123.152063580319,122.389399742822,122.006611995938,122.664761496618,123.152063580319,125.182316741033,127.212569901746,129.24282306246,130.970703740254,131.273076223173,132.887390145073,133.303329383887,134.265785116246,135.333582544601,135.93181037042,137.363835705314,137.891650716223,137.825946102335,137.363835705314,135.333582544601,133.303329383887,131.273076223173,129.976505012413,129.24282306246,127.212569901746,126.133648683308,125.182316741033,123.708945024792,123.152063580319],"lat":[36.6249475834835,36.9620877773233,37.4907770944073,38.0194664114914,38.1534323521413,38.408048180751,38.4251666469961,38.2793068326121,38.0194664114914,37.9511002413139,37.4907770944073,37.3064597504959,36.9620877773233,36.5706873185477,36.4333984602393,36.0385235922228,35.9047091431553,35.3760198260712,35.2899423853853,35.1254304203463,35.1300370396812,35.2456254499163,35.3760198260712,35.4465854601922,35.7103064634318,35.9047091431553,36.0667843368718,36.4333984602393,36.6249475834835]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FF8E00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[31.7906713482064,31.5276126887844,31.5932710196177,31.7906713482064,32.6664762305049,33.8209245089201,35.4949977651589,35.8511776696337,37.8814308303473,39.9116839910609,41.5666328893745,41.9419371517745,43.9721903124881,44.5051255411296,45.5118311509595,45.4779105740681,44.4566225941309,43.9721903124881,41.9419371517745,41.7971458236971,39.9116839910609,37.8814308303473,35.8511776696337,35.1538899479672,33.8209245089201,32.4831314093853,31.7906713482064],"lat":[55.3046008838695,55.4662138752643,55.9949031923484,56.1034385014869,56.5235925094324,56.8092135274018,57.0522818265164,57.0979268875011,57.2121618503379,57.1854047491139,57.0522818265164,57.0174941863668,56.6570012477001,56.5235925094324,55.9949031923484,55.4662138752643,54.9375245581803,54.8061760091872,54.4234147433082,54.4088352410963,54.2409697931039,54.2101573204459,54.3200784364902,54.4088352410963,54.6029415694951,54.9375245581803,55.3046008838695]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FF6B00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[125.182316741033,124.734360318506,124.428733393567,125.182316741033,127.212569901746,129.24282306246,130.19821594175,131.212407548797,130.610709235743,129.24282306246,127.212569901746,127.017833486849,125.182316741033],"lat":[36.808664286229,36.9620877773233,37.4907770944073,37.7520144614701,37.9154054261329,37.7061257035052,37.4907770944073,36.9620877773233,36.4333984602393,36.3005910417221,36.4016662865437,36.4333984602393,36.808664286229]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FF6B00","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[33.8209245089201,32.7815177936706,32.8385131530709,33.8209245089201,34.1895308122005,35.8511776696337,37.8814308303473,39.9116839910609,41.9419371517745,42.7389305027748,43.9721903124881,44.0422574149169,43.9939151858943,43.9721903124881,42.6615856074575,41.9419371517745,39.9116839910609,37.8814308303473,35.8511776696337,33.9886769232085,33.8209245089201],"lat":[54.9884173383788,55.4662138752643,55.9949031923484,56.4162802267561,56.5235925094324,56.7958065812354,56.926452923662,56.8901359926367,56.67622914636,56.5235925094324,56.0289772180329,55.9949031923484,55.4662138752643,55.4558078544987,54.9375245581803,54.7905403736113,54.5586059930652,54.5109864705402,54.63297757032,54.9375245581803,54.9884173383788]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FF4700","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[35.8511776696337,34.0937703592777,34.1541278167959,35.8511776696337,36.2084717803623,37.8814308303473,39.9116839910609,40.534224537866,41.9419371517745,42.5479265685431,42.497051098041,41.9419371517745,40.4596054572736,39.9116839910609,37.8814308303473,35.9246895290526,35.8511776696337],"lat":[54.9457157118565,55.4662138752643,55.9949031923484,56.4815216868764,56.5235925094324,56.6449815671054,56.5955906244072,56.5235925094324,56.2185323433046,55.9949031923484,55.4662138752643,55.2642021613929,54.9375245581803,54.86877648783,54.8040043229008,54.9375245581803,54.9457157118565]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FF2300","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addPolygons","args":[[[{"lng":[35.8511776696337,35.7093236822201,35.7470740301567,35.8511776696337,37.8814308303473,39.9116839910609,40.6991093795397,40.6438454473348,39.9116839910609,37.8814308303473,35.8511776696337],"lat":[55.4242004276784,55.4662138752643,55.9949031923484,56.0247542637429,56.2748047104259,56.1708455255065,55.9949031923484,55.4662138752643,55.3006496136105,55.18063093772,55.4242004276784]}]],null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":true,"color":"#03F","weight":1,"opacity":0.5,"fill":true,"fillColor":"#FF0000","fillOpacity":0.5,"dashArray":null,"smoothFactor":1,"noClip":false},null]},{"method":"addCircles","args":[[52.086858,52.3527822,51.1066409,52.4011748,52.1797059,50.109151,49.1929541,50.08482,50.0580015,48.7626249,50.0825778,50.0740267,50.0891861,45.8750077,47.1921259,46.4780255,47.3719146,46.4780255,47.9775783,46.5942528,48.2095605,38.716125,59.9139494,60.2837249,59.3356521,59.3044071,57.5135231,51.2170249,38.7501309,37.028081,55.6575539,55.679761,47.4938179,47.4789216,47.464458,47.503532,46.0717412,52.2301084,54.5393568,52.2012208,51.7498249,38.753447,49.2409281,49.0425326,47.7431689,51.1995012,53.1536204,41.7176924,51.1351492,51.532001,53.7127633,55.883361,53.107461,53.92211,44.8559164,47.0053601,49.6097453,38.7501309,40.272131,37.48232,41.3012968,41.0199076,41.3863794,41.1405269,38.75333,45.4852079,44.7237489,45.4560713,45.0877573,41.764114,41.9066258,45.5918303,43.9856572,41.7175875,41.971711,45.5760889,43.2286325,45.885942,44.4325554,41.0130469,47.9775783,50.0740267,48.3298034,54.8976539,49.229712,50.6346361,48.32759,43.293419,45.7615628,50.928381,48.5827938,48.8691311,43.7013747,48.9531713,43.6025127,48.6898313,48.8564343,43.417367,45.7418282,48.8370364,48.8289271,53.415763,50.795065,56.1494827,53.03029,49.2305772,52.5244903,49.5739222,47.7656164,48.5362549,52.5408846,48.1598175,49.4508619,50.1141146,52.5036767,53.5506899,52.4291638,49.573794,50.9383906,50.9367067,48.13604,52.5225471,48.9885475,50.6888182,48.2753384,54.8153664,40.5671753,40.4535735,41.6510463,41.6452376,41.6706588,40.4176834,40.4468,39.4708481,40.4245905,40.4976776,40.4947514,40.4763604,41.60901,40.4137529,40.2991027,40.4462241,40.301038,41.60901,59.4027512,59.4027512,55.7280072,53.5070646,52.4784064,51.5140917,54.7285334,51.1281757,51.5137565,51.5135976,53.3764777,53.4061432,53.4039503,51.508194,51.869447,51.543077,51.4930383,53.4826041,41.230743,40.3456629,40.258538,37.386398,41.3815268,41.3882079,40.4231819,52.5232481,51.1994851,52.3664045,52.3093388,38.659614,41.1801123,41.215793,39.6338312,43.2683617,43.2964788,43.294381,54.714619,56.9518062,48.176228,41.3863794,51.4901771,37.957463,37.9296479,37.922907,37.9590529,38.0109696,38.023576,37.9763799,37.989365,38.006223,35.1668408,35.14884,34.914269,34.9143352,48.8623348,38.7501309,37.1288911,52.3093388,53.3498053,48.6088738,39.472227,53.413853,52.2997868,51.453601,51.4126426,53.342896,51.513247,59.3092761,41.3012968,38.7660462,53.712343,38.7540395,54.815471,53.3764777,53.263725,53.7967537,55.8247235,54.9747834,51.5571339,48.87572,51.438271,51.5126736,51.4902482,51.5135763,51.5564678,51.236143,51.40373,45.467558,51.4609727,52.5100232,51.7522936,43.3064626,48.959153,43.4215182,51.4391631,53.2171253,51.917693,51.4393529,51.5848716,52.0764809,52.0915427,51.9822886,51.9501452,52.1544229,52.378324,47.0054252,48.9913196,51.3396815,49.0108263,52.2573732,52.4029819,52.1797059,50.0320692,53.194278,66.082851,43.0977618,35.907757,38.9462202,41.7582758,43.3546922,40.56711,37.566535,37.566535,32.1679321,33.8637405,33.4001344,29.5936492,36.204824,36.204824,34.0931603,39.1307186,42.1572628,50.4505,40.6331249,41.8526229,40.7503676,26.1960319,30.3594122,33.6558659,45.4781169,41.691722,36.778261,37.705736,28.4475452,43.7033541,39.1258348,32.236036,-35.675147,33.07173,55.7320705,43.0876421,37.2521321,41.3903722,1.352083,36.746805,28.5521524,42.3473272,32.656186,3.0738379,47.4750137,35.7088306,26.1892512,52.4010733,51.0989844,33.383123,29.2707637,26.1892512,42.6242077,33.347566,28.5398381,28.554645,33.9263432,33.8975601,42.5161208,39.4147491,34.2509687,44.4226633,46.771811,44.504148,-33.7703548,1.2993784,-37.7979405,-37.7870855,44.4199549,47.16663,53.2503079,55.863555,51.577863,47.229241,55.572235,1.2996492,30.5655981,1.334807,36.074507,42.5176793,34.006156,57.6272392,55.423806,56.3023384,55.846367,42.8349541,40.1616374,40.6601883,38.7886387,44.1543646,44.9441882,-37.8865803,-27.5313059,44.4150552,-33.846152,1.3065642,35.6699682,57.9931927,1.3174445,38.9830345,18.4064056,55.7091749,40.2243495,39.3606991,40.2369254,55.679831,56.050485,58.050062,55.982686,52.5122417,26.4362393,44.3952306,44.898537,33.1314542,45.7667292,26.1531617,-37.7734423,45.643213,-37.9708736,-37.8253793,44.2030374,51.837561,56.7888713,55.104335,44.4308883,39.4329402,50.6420402,54.8217435,32.5439081,46.2015526,1.3330647,54.7527793,29.996689,51.5303507,32.8741204,55.980749,41.8003181,56.8290891,56.236931,54.9640355,-33.8701158,-28.004695,45.1562098,54.7527793,33.9252,-27.9313635,44.374859,25.955167,55.689735,42.8246326,28.3881533,54.1608758,56.9007299,1.3039637,48.0934009,32.2391079,48.0942886,43.4310925,18.4387465,46.0807099,55.028572,1.2959723,40.4406248,53.6222555,57.6272392,55.7141765,36.1630111,54.9921163,-37.813951,-27.502998,45.6593264,57.679278,45.2459438,53.220613,68.9049682,44.427732,1.3051592,29.4255911,44.4317046,44.029976,32.6786512,54.9921163,35.4619123,-31.9478025,55.117136,55.982686,33.7843344,55.789911,1.3199825,40.7632099,57.6272392,56.3023384,42.8349541,54.717483,29.7755219,45.0648243,18.4400116,59.4061425,59.9219939,59.820002,48.4839158,54.631775,55.7085458,33.896299,14.528925,55.670305,43.9120535,55.771195,55.771195,45.8132498,39.883642,24.170719,45.772899,38.3587833,36.9219161,40.9380201,40.7541887,41.0089988,35.5099498,34.8579067,38.341447,28.4688057,35.6613587,34.0059677,35.6613587,38.6405454,44.56231,54.1819854,45.0261477,56.313552,55.891749,32.0152866,44.993702,14.607493,55.8129166,55.780915,44.109159,41.118373,37.7657295,39.8905545,0.410252,42.9709593,35.8101879,26.1590251,33.983,59.8300874,52.592258,43.590927,40.7504076,35.8625353,40.9919149,55.56535,56.118676,44.993702,51.2032209,34.0730062,56.0369139,55.055555,40.8968972,51.5424438,14.850748,55.6116674,55.689735,32.0012763,41.0718384,46.087773,25.4478898,36.9662257,35.0597124,34.7122845,59.8264728,51.777479,39.9576228,33.5876049,41.013333,42.5161208,44.993702,41.066883,43.1592297,55.75157,45.8034915,41.054455,55.73068,59.9119882,37.4323341,46.087773,40.7461591,18.423224,43.5383635,59.848528,55.828798,41.0666249,59.9119882,52.272881,40.995341,43.0656845,35.9834709,34.6037506,51.645711,55.163587,25.0461278,34.6736482,34.3931856,45.772899,39.8792222,45.8034915,34.7503905,40.9387419,18.1789741,55.640905,45.5392862,36.1791283,55.737077,59.8477295,41.0359094,38.2752383,24.1524822,36.2930054,34.7040116,35.4346713,35.3805111,14.551841,36.5601256,38.7322615,42.362374,38.332201,32.3408045,47.4899303,33.8850629,35.6585555,33.5339643,53.3804654,53.553444,39.9399022,57.118783,56.795822,55.163587,52.98,55.633433,55.7926601,41.0131718,51.4839324,54.995497,59.8585559,60.036943,41.062684,31.9495986,32.005876,33.8861557,54.631889,34.4079029,54.777285,35.6250135,35.8610087,54.369188,60.0529384,54.7135581,55.825172,56.13753,56.243695,45.0672512,55.7085458,40.9777454,39.8507147,40.9826096,55.000862,59.927157,55.800054,31.7718163,43.0940656,34.6248466,31.9557224,33.2872923,51.5053799,52.6053687,51.668465,53.217206,55.7892806,53.209338,32.9275759,68.888404,54.710284,57.993273,48.692412,41.049428,41.0633529,39.979477,39.900545,60.002195,57.808855,60.058501,54.3066691,40.9909685,31.9933489,35.029435,39.908453,55.648992,35.3070492,33.9267,53.128102,31.9599421,55.6917679,38.6786338,55.792423,56.390693,55.0566719,41.0586534,53.7607854,32.0127848,40.9972647,54.0153116,55.789548,41.108362,60.0114128,55.160634,56.020283,40.977746,54.3066691,60.0014719,41.0394194,61.2376272,31.9376412,56.0419152,35.6141884,33.9267,54.6746021,56.633886,53.0697086,52.0318565,54.191968,45.0256296,54.316607,51.694265,55.548552,33.9653559,56.3461026,29.5315338,56.265641,25.2048493,34.7173455,55.56535,51.705856,59.8689419,38.4493616,45.0114655,33.8886,59.908601,55.739116,41.0216379,54.6746021,53.016581,45.0113417,29.5315338,55.844889,54.1819854,54.192041,48.3960551,45.0113417,19.3978437,19.3978437,19.3172634,19.6013234,19.3769129,25.7007099,19.2962196,19.2860487,19.359979,18.9355614,19.6887994,32.9689168,32.197303,48.749197,22.2856649,22.297459,31.7516011,44.88011,55.606648,55.8632055,55.846367,32.7858205,56.8768626,56.342799,62.142988,19.6022861,19.5258124,19.3172634,33.852922,17.9659463,19.3172634,19.3233425,19.6563184,21.1439089,55.1608544,54.7108388,55.8628023,58.00765,32.8017693,31.9903016,33.8744365,19.359979,61.791287,19.293918,22.308798,54.5151883,33.8727524,56.3393412,29.550333,20.72963,20.4819038,32.0696896,19.44916,59.893904,19.3027734,19.5212305,19.3629185,53.201511,19.2994158,19.3079572,54.981258,45.0340801,54.6343421,19.250505,32.2809563,32.0932324,61.7913158,32.1705469,22.2969091,20.6480639,51.5424438,19.3769129,32.1122669,19.3849717,60.091374,22.29713,19.3079572,19.4286725,53.3540996,31.2419877,56.4931371,25.6326575,51.2278868,54.192041,19.4265331,3.1487063,54.192041,31.893767,31.987624,22.290231,56.4589417,22.307523,33.772204,31.8991912,53.1971523,19.386729,32.095728,32.0260067,56.307021,21.0172597,19.2578142,19.3612111,31.8091441,20.4819038,3.1487063,56.8235224,32.8433479,22.379925,22.310472,20.7090848,32.0747446,32.696235,45.0133989,32.7896683,55.171175,47.260553,48.7603607,45.100607,55.707191,58.5987306,51.7408617,54.9850659,55.7096916,45.10038,25.4110762,47.2309054,55.0843509,55.8094849,55.773215,47.289877,45.048272,52.7277968,59.6048926,54.5990461,59.8314429,59.202955,60.943943,44.88011,48.6368499,52.723624,1.3057331,13.747408,13.758368,13.8951584,55.8105321,14.653493,-36.9208552,55.41999,48.799464,57.117156,59.864176,1.302707,54.6746021,57.7407605,52.726921,54.5990461,55.6669126,55.9144319,59.8314429,50.632845,13.648604,13.903549,56.1069739,54.9239,35.6909515,55.6785022,-43.5439074,56.840707,57.113915,55.780043,45.103121,54.7573154,8.9872765,53.325861,45.0400561,44.2326061,56.22591,59.8830076,55.190565,56.8235224,7.09118,53.2074698,47.2805717,56.1816737,13.7513584,33.383123,-41.1827871,43.3089608,52.5040954,55.61056,57.117595,56.2324456,62.142988,9.0473919,45.039432,54.7115554,55.6669126,48.6368499,14.551551,13.974935,63.5633618,54.917504,13.746824,47.2309054,57.910246,52.274332,52.5040954,55.7572509,55.2042766,55.797018,8.9908611,1.2993784,50.632845,48.658994,63.5633618,13.817192,55.7442218,13.7343876,-43.530931,44.0387058,41.0355429,55.6636334,47.204017,55.6073657,-36.8710428,8.9908611,3.157187,3.117578,1.609201,61.261489,55.7515387,44.035829,60.939456,56.3393412,43.478506,59.8830076,44.194586,56.1493526,3.105094,43.6060604,55.92175,56.863556,54.7497072,55.0465062,32.8741204,39.3109808,35.507861,38.9832918,20.650428,33.9803716,26.1515773,39.1257925,33.6524019,34.0840472,3.157165,53.220259,-37.0082476,56.965945,56.3181561,59.197134,57.0060161,55.658264,55.92175,51.837642,58.0071777,42.5176793,55.653544,41.0480289,27.5362778,37.3165573,59.197314,55.766876,3.118191,36.1638289,32.5438005,40.7240227,5.4346665,54.3066691,56.3181561,37.784219,55.7554837,53.2204748,55.5823788,40.7281465,55.654275,55.9094694,50.281269,55.9094694,39.3603115,30.5669991,56.8174962,41.7154051,29.9219929,38.1438849,25.7904746,19.4289173,53.334748,61.277504,55.657836,56.816452,54.7947827,61.690008,55.586568,48.0935599,50.281269,33.7033109,52.6053687,41.8980056,41.8003339,43.446017,35.8340418,40.2366156,29.8260234,39.4156345,43.6060604,43.117717,56.8174962,-33.5170528,61.261489,51.7408635,55.92175,21.3952308,59.8830076,55.974901,54.7932709,33.7841874,61.689854,44.044331,35.0814314,55.7482787,36.0549772,29.737703,31.9126143,39.6191841,54.9850659,25.6494453,40.2243495,33.1314542,43.6060604,26.1632363,29.996689,25.9569187,55.0465062,38.9896311,45.5589959,37.6552101,37.6083223,37.3784377,40.6601883,38.7948488,38.6764518,29.750742,25.7780788,-34.5887962,-33.5170528,56.8768626,45.3072489,3.4648248,-37.9094,38.9167846,37.5112348,37.5649903,29.9485469,18.2356249,40.757229,39.4351833,34.1202797,-27.3841199,25.0360141,7.0996603,45.6737941,33.846335,22.3331228,37.5258693,37.4919298,36.102866,-33.3702868,34.017714,34.0059677,40.9152551,33.2872923,-35.016506,54.192041,6.23317,41.29152,41.8994093,37.4969255,40.7344368,-34.170644,40.7255941,32.2450146,22.3105489,38.2953023,19.3610238,20.8784845,39.5322749,-33.8846114,-36.7802751,55.9094694,22.292016,37.6145502,3.139003,40.725563,37.6606606,-37.9693931,22.2804155,30.375237,40.6826571,-37.8122187,35.6585696,30.380673,22.295224,25.119801,39.8924677,55.038648,45.0400561,56.135461,51.8103655,56.8290891,22.337034,24.1301619,59.9269531,2.192572,1.285362,41.024976,24.453884,55.6919136,51.1322975,55.891749,59.9119882,1.3618958,1.462924,55.7482787,56.023334,41.0799347,22.3105489,56.8558742,59.848615,55.1150737,55.7446,55.171175,33.8886,37.698891,39.900613,55.028658,54.7527793,45.0133989,59.8300874,55.846367,46.3598975,33.8943497,1.283024,37.4016455,2.969803,58.5988414,59.093932,54.9921163,56.236931,43.478506,54.6746021,52.726921,55.7572509,56.8768626,55.73068,55.657836,53.34288,47.289877,55.3556942,55.3831775,56.050485,55.982686,24.1553523,54.9921163,25.0523038,22.6878238,51.84511,52.921565,55.0843509,59.893734,25.0648581,54.7573154,-33.8946,55.747742,26.0556,56.840707,55.038648,58.0093483,55.164862,57.697777,54.9921163,25.044372,55.691963,51.666198,59.945923,25.041211,25.0130279,55.7069469,48.7252719,42.8349541,57.117276,58.0071777,25.049298,-26.109064,-29.810705,-25.7824,55.319667,24.1584265,51.666198,54.9850659,60.090111,54.7497072,43.0324985,55.153447,57.0060161,48.7715209,43.9052058,22.6699973,50.5786865,22.6193366,55.8094224,55.7446,-33.949468,55.654275,-25.7889,43.115937,-33.9881985,24.9627266,51.7408617,52.5122417,55.7096916,63.1952971,56.8290891,60.002195,45.01,25.1218264,45.0396685,55.677951,25.0360141,53.510739,-26.1209,56.8235224,55.799331,55.7069469,24.1734846,56.3393412,36.2930054,50.600157,58.59783,52.2670887,50.2676777,22.6878238,57.134732,-33.8816,25.0516518,44.035829,-26.11017,-25.8228,-33.95847,-26.1141,25.0407774,25.0188735,-25.8579765,-26.14646,26.43618,25.036018,41.3017237,40.0238479,60.011288,35.3070492,44.5037605,41.0315151,42.3497697,39.4038642,52.2853234,-26.0186,54.621475,32.0732811,-29.7260405,-33.8946,39.1068098,39.7946881,41.0022708,60.00845,42.206283,35.9034513,35.3805111,55.62001,39.2153109,40.914763,41.3178296,33.9252914,25.064243,25.0432925,32.808657,28.4763129,24.1734846,35.029435,38.9169854,40.7578756,51.317261,53.34288,44.6068215,38.9228296,40.0890849,52.4291638,34.2157313,59.8786526,-33.907835,25.0601673,45.2450868,55.8530455,24.153917,-33.8946,42.2200925,56.050485,44.0234051,22.6699973,38.8639404,-26.1803935,58.0093483,53.518531,42.091565,39.6070289,41.4868524,22.633664,40.7662263,51.737908,59.921619,22.653347,25.0417138,28.3871017,54.9640355,55.7271366,45.1561405,36.8489027,34.0522342,-33.907835,56.514965,54.6731698,68.9049682,47.289877,52.7594024,55.2042766,59.7390845,55.8232492,55.7446,48.7603607,45.0691029,54.5151883,55.845491,53.0697086,38.3660696,57.918783,51.72496,42.6224659,54.5144353,55.661275,55.7424215,54.7108388,54.1902401,51.7777009,55.1634264,56.118676,59.202944,52.313801,56.176773,53.326473,43.6054151,55.8297923,54.63308,57.7407605,51.103442,55.6958725,43.2474635,52.0288915,34.3578094,55.8055854,52.5452129,61.7913158,52.065615,56.8743422,55.797967,56.3393412,55.659212,44.5610246,55.4343695,45.5431738,60.0114128,56.1284142,53.760531,50.9392285,54.7373097,43.0980888,53.541946,35.1520738,56.863556,54.30651,54.192041,52.273019,28.4634348,53.3575234,55.603896,56.0370326,51.4901771,41.1385211,48.474188,55.56535,56.3181561,37.021759,48.6368499,62.142988,55.7806115,56.2324456,53.4016841,52.5040954,60.058501,68.9049682,56.8174962,53.7221523,56.3023384,48.292839,33.1272074,50.281269,59.4061425,54.631889,54.584002,51.829564,45.0114655,47.2309054,47.229641,57.6272392,43.6060604,59.8314429,59.8830076,40.914763,42.481127,45.891486,45.8926893,43.8231966,57.0060161,57.6272392,43.5742153,43.0875123,43.6567455,48.8608454,37.3842358,61.277504,40.7453656,53.2204748,55.876003,55.7554837,45.0340801,52.0883649,56.8290891,59.9279246,44.2242034,59.3169233,43.6046518,25.6443825,43.6060604,51.837642,42.8118056,44.268062,46.2584082,53.4835945,44.0121945,45.335262,60.9396,57.117156,43.5752357,40.4305832,49.2806363,55.7442218,40.7344472,40.8900807,24.333143,55.92175,40.582418,55.92175,35.7050479,45.629999,43.653609,44.4786636,42.6104302,55.385771,44.1986138,49.280685,48.7603607,43.613751,50.0630588,49.1990557,43.7817038,35.8377024,45.569902,53.2631699,44.5074364,45.4276794,43.4098366,43.6490502,43.5081413,28.4501555,40.303128,44.268062,37.6137944,33.8754722,45.885942,36.1272241,50.995151,45.4981887,42.2394496,43.0875123,40.3950656,51.2032209,44.1988368,53.522493,49.8261712,44.1986138,47.1045233,51.7210717,36.1626638,51.161401,53.4434443,45.8750077,49.1919618,22.2996,43.5058146,43.2588774,45.5727612,53.2164671,42.7054225,48.919311,43.253826,48.73585828,46.4853037,53.4442051,46.4617484,50.4083604,38.2062338,49.8278582,-22.9709569,50.2891028,50.2891028,51.1176033,51.2075561,49.1208129,45.4997257,43.592977,49.8011724,49.432935,50.4113181,50.6259003,36.6443532,42.8983715,48.0306524,44.6488582,43.5752357,50.0653582,43.8227846,51.1322975,51.1322975,42.2394496,53.2123361,42.317301,36.3407465,43.3641165,47.1005532,-16.137161,43.8905381,45.0113848,49.4424974,48.4665735,43.633402,46.4160707,51.220351,43.6111459,51.1443333,43.233961,40.7646382,34.9845485,-12.8807697,48.5687099,47.811342,43.273466,38.2569438,50.26570527,50.4938036,50.029599,50.2891028,39.9416152,43.2328469,50.2891028,38.337998,54.866299,48.5294163,49.8094032,47.2961054,51.8195731,49.23360795,50.442115,-23.5204343,50.027419,37.4158732,53.2123361,42.394505,53.2123361,51.1288147,37.5078215,37.4975424,37.4773244,-34.5636073,-34.6675402,37.7696173,37.5249367,35.0993215,50.4938036,50.0019261,47.9903597,46.411165,46.8987105,57.12332,43.426177,50.3959,-8.11916,40.1616983,-23.5725984,-8.0379795,-34.67565,37.5646847,37.5250382,-34.5955222,50.507139,37.4814638,48.267779,35.1568526,35.3161,50.487665,37.5667733,48.902472,48.5294163,50.027233,-3.0801542,55.164862,-20.3126487,-23.3142662,37.5387765,35.8668017,-9.6487174,-34.6033294,-34.6033294,37.6916551,35.1698426,50.493749,35.1569892,37.5154709,35.3208702,50.500233,48.4075808,46.4160708,50.4318241,50.5786865,50.493749,50.027233,37.5171482,-21.2134293,50.4130579,-5.8112936,56.176773,-19.9747556,37.6275628,-23.4341323,-32.901813,-34.5752085,-23.5444012,50.378202,35.2313852,37.5634661,46.4699985,35.096715,50.493749,37.5249367,-34.545737,50.4130579,46.6728406,-3.0953202,37.7696173,50.0653582,-32.886353,-15.8335067,-12.9780024,37.5628867,-34.5896201,35.8713713,-34.545737,55.4268626,50.487903,-23.622708,50.5498689,37.5249367,48.4665735,37.5634661,56.854096,49.974683,-34.5636073,-25.4777952,48.42139404,-23.625799,-22.8476033,56.1509477,-30.0844939,42.6951435,-23.5614415,42.1395499,42.6701775,42.6604822,-19.8347579,-33.5698349,-33.3705254,-33.3575796,-33.4540615,-8.0878136,-20.4526575,-19.8903026,-23.6046699,10.7719839,29.57572519,-23.579776,42.5299913,-30.0119314,42.6435217,-33.5170528,42.1579802,-23.5215236,-23.504654,-23.6098009,-25.4347824,-23.5584536,-22.9823016,43.2188727,-22.8318859,-36.8244179,43.2186599,-33.3662202,43.2120266,31.9812174,-33.5197642,-22.9571438,-33.0088544,-23.5643458,-23.4763373,-23.5788055,-34.6275142,43.2191001,-23.109166,-23.5620579,-33.4178073,-33.4813538,42.4379101,-33.4287369,45.068996,-33.3662202,-22.9218019,42.4984,-33.4563339,-22.9783536,-19.9539051,-18.8824014,-22.7459466,42.6918831,-23.6478281,42.516499,42.4280117,-33.4388095,-33.3484873,-30.028504,42.145135,-23.4687866,45.068996,-22.893747,36.3519528,-36.7802354,-29.9121849,-23.0059792,42.6378165,-23.7156837,23.9329877,55.65338,-34.5956088,-34.6040352,54.1767318,37.2413127,37.5240129,51.4910407,52.5061898,51.5319787,55.633433,54.9969375,48.53549,55.761743,50.42604,48.002467,48.5064215,35.1687032,55.0430601,37.517007,-34.5925238,-32.8865527,37.4969255,37.4919298,50.1143519,51.9357179,57.6272392,25.2048493,49.4502011,-34.6387396,35.1687032,55.7892806,-34.5467019,49.7725684,-34.619437,56.3066532,50.812842,47.9087851,37.2739292,37.5171482,37.5649903,47.260878,52.5046473,53.5527051,37.5387765,55.4516294,-34.674675,53.2631699,55.6598302,50.449718,-34.453295,-34.601825,36.606133,37.517007,55.982686,37.5649903,48.7809751,49.573794,52.2301084,50.504988,50.9383707,49.4424974,49.98968054,53.415763,37.5041299,-34.453295,54.7230577,-34.5990679,35.1851191,35.8712295,37.4784537,50.0287104,48.7626249,37.5583398,51.2254173,50.3670085,50.029664,55.7926601,52.5199026,51.8694853,44.7362145,53.5296272,60.939612,55.8827321,50.493749,40.093324,34.2147347,45.642044,37.5649903,61.261489,40.9212286,44.021647,44.2485744,43.0980709,41.0032696,41.140693,43.0656845,36.6188557,33.1262516,57.117276,40.0378755,45.0396685,37.4905756,40.9181658,43.2449336,40.8887069,40.3379396,34.5493576,32.6618932,30.3818632,36.6443532,27.5367306,14.423466,42.0381377,35.6598219,42.3455999,40.4128084,56.8235224,34.8471756,35.1624767,45.0691029,44.9587207,43.6060604,34.215571,38.1503113,41.3317251,41.6911734,34.3578142,35.6278192,35.8340418,35.0838062,40.5053047,40.916986,35.8035334,40.9283729,42.1216838,40.585792,31.5915207,33.7508024,14.5513427,39.1068098,40.2120096,41.7322959,56.2324456,41.0483786,38.3365032,28.3487857,52.2670887,48.658994,42.1535056,40.0266779,33.6781863,41.6573335,40.1616983,34.3929939,35.6613587,35.7276091,29.9219929,42.294368,34.25181,41.3166228,40.7381975,38.2614381,40.5811976,40.272131,38.3657009,48.4571653,38.7336894,35.4526845,30.4291575,32.7025502,30.2133036,42.0364053,40.025686,37.3179793,41.7142943,14.7090471,30.375237,32.8402323,26.4947043,59.4442511,40.2957865,42.9549633,35.5114231,27.6360355,28.4741672,36.0549772,36.358129,41.2891184,36.0817807,43.3655278,43.1175814,39.7882236,40.7269252,35.1661957,37.0243823,35.3689981,32.0156033,33.347566,29.8260234,39.6062307,35.3700689,25.9569187,35.8804169,37.504481,37.5560736,35.1851191,37.5086154,37.3850076,25.7907872,32.6651379,49.77347685,50.6259003,55.789943,49.43279,48.5687099,-33.0088544,-29.9127192,46.97314,43.202442,32.2751259,13.747404,37.440941,42.3899294,27.6360355,35.5383725,38.643967,46.4853037,-33.4021934,41.0991904,35.6722289,46.4816471,13.8576318,43.0915903,35.1708105,48.62026,37.5012056,39.7848289,36.9918456,49.59596965,43.202442,50.7456297,13.720849,49.23360795,48.73585828,46.4837715,37.2413127,44.8148405,47.909505,26.7245866,37.5025175,35.2245588,35.6856706,37.517007,39.730932,49.126859,32.9648359,50.26570527,41.9011061,34.0757276,37.447201,35.201492,35.1597624,35.2114828,49.8382735,28.4459749,-36.7802751,36.8196847,-33.4563339,48.932945,49.5512615,48.267779,35.0991428,37.2422526,35.5420121,33.5903547,35.5751463,-33.629183,-33.3908715,-32.9839647,-33.4534104,37.4939126,48.497541,48.6967632,58.0093483,46.96665,36.6452801,-33.4512748,34.6451655,48.5692307,19.4547978,37.5101935,55.823604,-33.3908715,55.6193697,55.171175,46.7513129,48.7252719,47.84890767,37.5101935,19.1320043,35.6092298,37.4562557,37.4939126,49.2114439,37.4939126,55.8232492,55.6193697,55.171175,47.1005532,-33.5098218,37.64,-33.4534104,-36.8829075,53.541978,35.1615305,37.5101935,33.5875716,55.603702,48.021039,55.737738,56.1284142,48.0306524,46.3596834,35.1412828,-33.5197642,48.5294163,-33.4527276,36.3699872,37.2422526,35.652661,-33.5176132,-33.130571,46.4780255,55.7096916,-23.6460605,46.3598975,60.937188,53.760531,37.5387765,43.428441,4.6170804,55.73068,50.600157,55.604182,3.4616007,6.197312,51.5424438,55.8129166,54.9640355,53.3575234,54.8994355,57.744461,3.3743339,11.0146745,4.618307,35.2245588,36.3502842,37.6083223,38.017361,35.096715,37.3746488,37.5171482,37.504277,4.629182,55.164862,55.3831775,45.005103,55.891749,4.7632404,4.694368,55.68691,10.9881188,56.8768626,47.290631,52.065615,4.5747572,37.504277,4.6631756,47.289877,6.1987984,35.6894875,37.5667733,37.5268253,35.1568526,37.5112348,37.4859712,36.3209817,55.6252836,55.915476,4.62027,55.171175,4.7194745,25.231492,51.666198,55.612177,3.4648248,37.698891,6.2339524,4.700906,37.3456011,3.3693758,55.8919374,35.1698426,37.5041299,37.5607939,54.632797,55.7442218,7.1256299,63.1952971,55.350371,55.7920321,55.659252,4.666256,3.374198,4.644658,55.604063,36.3209817,55.677971,37.5154709,53.34288,37.5288539,10.4141298,6.22926,37.5249367,35.8344854,4.8065763,51.7408617,4.591724,55.78604,55.7446,36.8004515,37.6552101,37.3249213,56.850327,37.5832041,55.1634264,51.829564,55.6958725,58.529596,56.3023384,37.3908351,37.447201,35.1851191,4.666809,7.1262244,37.7186336,37.5609008,4.7621834,37.0578034,53.2377569,55.90438,37.4969255,54.119802,55.652759,56.8743422,61.788126,37.5609008,37.440941,55.0606303,55.818891,55.1150737,55.8503343,59.949565,59.893904,59.9462,30.0721166,55.74753,30.100799,30.0914339,22.2774116,22.2995981,22.299845,27.8636854,60.002195,31.245709,25.1181203,57.697777,66.0817429,59.9269531,43.481176,34.6937378,53.334748,59.908405,61.2428014,56.8290891,60.058501,55.319667,59.853736,55.818891,51.666198,40.547102,22.296451,30.0603083,22.3147404,30.0263112,35.7057557,25.234197,57.117276,25.251362,30.0669281,30.088449,30.0637697,59.9279246,52.2853234,37.6145502,54.1902401,24.458718,35.3525002,61.003337,59.853407,51.666198,59.9335176,45.0340801,55.846301,30.0632199,51.5424438,33.5913576,31.26167,61.2428014,22.281572,25.325264,30.0843769,34.6803304,25.072656,31.168703,30.072455,25.072656,35.8662831,35.096715,60.007694,59.405711,60.036943,24.4892004,55.8503343,55.583978,44.099269,55.818891,44.563257,60.058501,43.115937,54.6342985,47.260156,30.0357731,24.470133,25.289474,34.65276,22.2774116,30.074265,25.2048493,59.8689419,60.058501,55.583681,55.8503343,54.6342985,51.810677,22.2969091,59.8585559,59.9189451,56.8768626,22.337057,25.2201819,59.9219939,30.1347013,25.2601012,25.297438,24.221144,54.717483,24.495924,30.0994786,22.3231251,27.908583,30.0610462,25.198518,36.158946,32.5377008,45.0396685,24.160237,31.9772088,31.805482,25.216319,59.093932,43.6060604,31.9570632,56.2324456,54.7373097,53.4016841,43.032884,58.0071777,31.9749561,55.385771,43.0316812,54.630541,59.8513198,45.0114655,31.864478,32.0753462,58.5987306,48.4903011,55.7561327,56.307789,53.510739,54.7497072,25.683032,56.0369139,31.958307,52.2670887,54.9921163,59.9279246,32.0130335,37.6677307,31.2502427,54.8981394,39.4154639,54.630541,52.594077,58.0093483,45.013119,52.5122417,57.9081348,57.6272392,59.211393,31.990729,55.038648,24.2221028,64.562405,32.815543,29.5563389,55.0435262,55.4365295,50.2676777,55.657836,59.925563,56.1068626,54.186336,51.810677,57.134732,64.535661,31.974174,32.2751993,69.3573551,59.1270789,48.658994,54.7527793,54.7221584,55.0843509,53.430362,31.9674446,44.56231,52.921565,56.832648,57.576789,53.0697086,58.604096,52.2670887,43.9120535,69.3572935,55.817196,55.677834,55.752403,52.4291638,51.7144331,55.0278032,55.7482787,56.3065995,55.819771,45.347355,22.692391,34.0913491,31.22415846,39.91408869,39.91641,32.044069,43.2328469,55.7899945,55.613265,56.982544,55.817196,55.752327,59.818459,55.038648,43.6054151,42.206261,55.7446675,26.7250093,39.92536,40.2051899,49.8839383,45.3072489,31.31841239,39.909369,51.1443333,51.220351,47.2806956,50.2891028,59.818486,55.633433,40.7355333,32.2011871,55.6919136,37.2413127,55.6919136,31.23693518,30.702606,43.1592297,45.4986516,59.093932,51.8195731,55.613265,55.789548,55.752104,58.5987306,56.3065995,43.478506,43.1590038,54.8988537,51.8103655,53.7228468,39.909868,45.6737941,34.6912688,31.21554487,39.906578,31.868217,39.9266458,55.7069469,29.522521,55.406256,53.2123361,56.982544,51.1322975,51.7210717,55.765053,45.675114,55.613265,54.9803124,23.12596013,45.5727612,39.909502,39.96994778,38.268215,22.8617484,51.7408617,56.135461,50.552642,43.633402,56.982544,55.6124263,55.611998,31.27018804,28.13331012,6.1974819,30.5794251,31.231314,30.71985881,29.60139859,39.897704,28.195785,39.909821,22.501855,31.57661547,35.6894875,35.855839,31.24274765,39.968258,35.6894875,56.2324456,51.7583388,55.659699,55.76191,31.04886117,29.858775,3.476621,30.71985881,31.152008,41.84282553,36.66208025,22.544286186,26.5418462,37.0197314,31.235419,41.0608158,35.8663137,30.60328317,31.340122,55.7770407,37.5086154,55.897757,57.148952,31.23007799,55.7045399,23.9329877,56.8235224,40.2532141,55.790661,31.1865275,39.911482,28.32419058,37.7186336,31.21805268,55.7572,55.622605,57.5914511,22.80057728,54.180807,48.514923,36.606133,35.9946133,41.0608158,31.4353346,39.87722133,55.7899945,31.301488,24.0329435,31.868217,31.284838637,36.613792,30.27430737,55.7560449,55.8656656,51.5308464,30.387409,35.4437078,40.035513,4.666809,29.62976,39.921584,29.869152,32.076627,34.259,39.37678035,23.9329877,39.89778212,31.16567632,40.011025,57.1597976,31.183177,37.5012056,35.1412828,55.779868,55.846367,57.0060161,32.1993745,57.917887,31.21944346,53.230627,56.8290891,47.2008,47.289877,57.1407789,55.828798,56.3489311,31.31963494,31.22698858,29.57753146,55.8297923,45.0396685,55.7446,56.8532245,48.7715209,54.992154,22.532937776,23.9329877,43.590099,55.846241,31.868217,55.78647,56.050485,51.6641957,48.474188,52.5452129,54.621475,54.7108388,47.229641,55.153447,22.25500987,55.3556942,51.737908,52.0288915,55.7806115,61.69836,53.233408,56.0129588,30.657896968,31.3612603,58.59783,66.1137504,52.2670232,51.844052,56.863556,56.022671,55.7482787,44.03552,49.1745134,61.247185,40.2051899,25.04052581,-33.0088544,53.203211,30.65471846,52.7594024,53.308335,52.2849822,45.0340801,51.7930463,54.721319,51.72496,53.0592281,66.0860352,66.0860352,46.4617484,55.586568,45.013293,43.6060604,44.2165025,55.585228,68.9049682,35.1569892,57.5135231,49.573794,25.4517163,42.0364053,51.136872,51.5303728,53.101005,53.923886,40.7508592,36.2031513,42.3945144,44.8159532,34.9852585,35.1680872,32.6651379,32.664889,43.6884112,47.9042514,50.6902792,50.6397212,49.4508875,1.301189,1.3343302,40.2167484,-29.9144443,55.7554837,45.0256296,47.217463,47.217498,55.999351,55.999351,55.9871526,36.358129,33.4064854,25.0403729,35.3407172,39.160478,40.640592,32.8452442,-27.4138571,34.1111586,34.1433257,32.7099235,24.9661973,24.1584265,50.3955592,53.275134,53.275268,-33.8527,30.0145674,30.074198,28.00649819,-34.9462689,55.613265,44.435113,55.817196,55.646084,51.2302533,51.2302533,51.2302533,53.691383,59.9332506,40.12798,57.6272392,47.6561682,44.051113,44.725446,55.910811,55.82362,55.6908665,55.6908665,64.5324932,44.051052,56.226505,53.1406774,68.9138754,61.7759012,53.1915619,53.1406774,68.9138754,68.9138754,61.7759012,61.7759012,56.310213,59.987555,59.987502,64.5324932,56.33973,53.121745,47.707075,50.2676777,41.80273387,7.100007,33.6175617,55.66375,55.7546378,55.7982572,55.731018,55.767149,55.809267,55.783519,55.7283,19.3623782,35.6072668,51.2824777,55.8810224,49.6056993,55.722289,54.7527793,3.3736408,55.664521,31.193229668,22.61130192,34.362849706,29.54021213,37.5387765,55.912778,52.7242305,53.1915619,52.7242305,52.7242305,40.4170149,37.4838158,37.4838158,37.3910885,59.907498,46.2978831,56.8200503,55.7926601,68.9567011,68.95686,55.9094694,55.9094694,55.8304307,54.5396389,51.813144,55.7384966,55.765053,56.8091154,54.0051974,43.16522,54.7595743,55.9969475,51.5371656,56.2398428,49.59362,53.1112159,55.915476,55.916586,58.0394632,55.6919136,55.915476,61.0067059,56.4880744,56.488517,56.4880744,55.4003,55.915476,55.910811,56.4880744,56.4880744,43.231836,43.231836,43.231836,24.488618,24.222506,41.0063277,19.3623782,-30.049779,25.0130279,3.133333,49.789723,55.8633273,-26.1296,50.438869,50.438737,39.9507014,29.514531,23.0356266,55.827247,29.558179,56.4754576,31.25716159,48.4379747,31.1787821,22.5813105,30.575806647,31.491266,38.583305892,22.22581273,22.28179,55.823287,47.5262613,55.8536306,56.332049,56.7356675,54.710023,1.333711,55.968241,45.3612239,25.9584869,44.9791992,38.648087,54.9628507,44.588432,44.588432,44.9509336,44.496125,44.9808752,44.495369,39.91880616,23.03351975,32.015833,25.072656,32.9594891,29.7572694,45.5318596,33.755711,39.9602601,42.6485255,42.205743,48.776631,-33.4021934,41.1087288,39.9465565,56.6280965,50.552577,1.3007914,30.65470522,30.65402494,30.603444,29.55539492,23.13185969,25.792517,25.182021,24.086102,25.2048493,25.9569187,14.5208778,14.631798,51.3555526,35.1922755,35.1924205,47.483801,45.0465622,47.9599575,3.4766973,4.809292,6.199731,10.4104367,10.4104367,4.7632404,17.9924462,-33.3315694,-33.3662202,-33.629183,55.7601567,53.7823027,53.7823027,53.782453,64.5419321,64.5419322,52.01095,57.0646693,52.5199344,39.9154528,31.226466,27.998971,31.186069,41.827795,35.93217367,43.891966,52.51016,2.779756,3.1535593,3.1542668,30.0238219,25.0522566,44.4413432,44.4308883,44.4308883,25.0629017,31.7764198,55.0430601,24.373319,24.470133,30.0224338,42.3387569,47.6738299,59.564349,54.2160078,23.152989,30.584449594,32.041416,55.7366395,28.4977823,26.1645918,38.475479,33.8237412,35.1085027,40.6826465,32.7686156,48.7852756,32.87457,43.5756976,40.0232553,32.9538336,34.9850414,30.6241011,29.8256207,40.7646382,34.4187756,34.0963766,38.337998,37.7280817,49.1919884,54.2976034,52.1943735,43.7948616,45.4785803,39.90529472,31.23179273,28.556187022,40.754177,48.8620216,32.279157,51.5161804,49.230574,33.5897604,53.2166919,43.5179467,14.442338,13.8711637,-33.7772096,50.552613,55.771248,55.772484,52.2749064,52.2749064,52.2749064,-33.8706274,-37.6811574,31.72707202,31.22956736,22.60328626,31.2174093,32.049497,14.1876712,1.3501627,1.3014083,25.251966,31.10720863,22.6558624,30.268405,32.1003382,51.5767436,35.138055,51.5767436,-33.4178073,-33.4653138,-34.0351017,35.8863967,55.7384966,57.6453198,61.23829,31.74993713,30.75329086,23.082683,40.5535541,32.2917333,48.514923,55.7370404,31.81034756,23.03594265,31.224476,19.4035873,37.540812,62.032402,39.91510883,39.91529,30.8040982,47.1030335,40.7399709,39.7848289,22.295234,32.0228845,45.101133,1.3147967,29.57057404,4.629067,7.1256299,37.2653782,35.4475073,-12.1120003,-12.0141933,55.7446675,22.2861883,22.2818,22.3811558,-16.3888908,-6.7782134,-13.5226168,-12.0646333,-12.117001,-12.1013902,-12.0852822,-12.0852822,-12.1319412,-11.9965903,-12.1120003,-12.0898612,-12.0808616,-5.181534,-5.1853642,-8.1030538,-8.1321925,-12.0565529,-12.0739448,-12.056685,-12.089118,37.695222,-12.0669774,-12.0188042,-12.0851976,-11.9965903,-6.7774774,-12.0858307,11.993848,-12.0896618,-12.0767174,-8.10253,35.6913264,35.6913264,35.896594,35.8597471,22.3811558,44.4280379,54.0428846,52.2114369,22.6193366,60.091683,45.892531,44.60298,34.6910634,35.456039,35.4578921,35.7123868,34.805489,-36.8289406,-29.9724108,-33.4845397,-33.6004819,-33.4178073,51.5320764,25.0855055,8.9844528,-8.0957419,28.188468,-12.0141933,-16.4174965,19.3954588,19.359979,19.3613832,40.5479013,40.6104056,25.3462553,33.9854088,33.7505051,30.2133036,32.3755783,29.7755219,42.8096661,33.8613892,37.6995673,28.1919576,37.750277,27.9312172,40.6902662,39.9428798,34.1909679,34.1455979,40.2533137,28.5378649,39.97917288,31.10778595,28.2637737,36.39993,22.59792865,32.5368718,4.647638,4.695239,40.517669,40.272131,33.8886219,25.264035,25.158776,30.00289673,40.64658,14.603365,14.549809,31.9219927,13.9888135,13.7776465,13.7302961,31.13005485,26.5418462,22.8617484,30.3479023,22.61821145,38.912876,39.127516,38.1539723,23.02251368,46.7295863,42.9564555,26.4947043,37.4213377,37.42,44.8043202,37.438777,49.8046835,35.8948748,44.8155493,44.8155493,9.028971,-33.4021934,6.3404874,22.6144461,34.805489,36.6894706,41.0003579,26.4947043,32.0012763,35.1511471,41.6911734,33.6207555,31.9600816,48.4571761,35.0809411,32.8402323,32.3408045,35.8035331,42.1229868,68.966667,56.828918,55.7614179,55.766876,56.828918,55.1713134,56.829044,42.091565,37.0216699,35.6441039,44.0233919,31.2000924,40.2164085,40.9279761,-12.0065387,-12.0892836,-11.9938486,-12.1654716,-12.1654716,-12.1654716,18.439205,18.3748396,29.35199,30.0210268,53.7266683,33.1254065,35.2195797,37.6677307,33.7155747,39.0345614,43.5756976,36.0735226,29.5483167,50.9528663,49.2819007,43.7247752,45.71551734,44.2155496,45.163825,46.5182694,54.1939213,54.1939213,31.21958947,25.0388485,41.808488,68.956945,29.5322417,55.7617547,33.1253677,31.19603631,22.582407,41.736087,43.3089608,35.6662574,37.09024,30.6317454,31.23822,30.64793487,40.14480723,44.6329773,37.5112348,1.355385,1.356295,10.3921989,45.4823658,33.7847782,48.0942886,34.2146721,29.9250717,43.7760621,37.3850076,37.0298431,37.4905936,37.5460906,37.5266192,37.3865155,35.1698426,1.283949,1.26503,41.878114,44.5074364,37.5792928,35.8758942,35.2114828,37.534795,35.096715,37.5667733,37.5589519,37.6317504,37.3902172,37.246823,35.544405,37.5154709,37.4760194,37.5221163,37.5121084,37.4836008,35.1687032,36.7216443,37.7370009,35.1674808,37.4506559,37.3350602,37.5600808,37.522018,39.940331,-33.3341315,6.2086393,37.8233334,37.6033543,49.8839383,4.647638,25.044372,25.0329694,25.0388485,24.1524822,35.6595885,25.267171,37.7000992,30.3799313,32.3757322,33.131195,27.5366767,54.717483,35.6659463,52.2678856,52.2678856,52.227488,22.396428,55.328818,40.003861,29.558694,18.72415353,31.34505821,31.194809,31.23657185,31.32362446,37.4791134,36.6831768,31.9376412,-33.0102801,35.8333532,43.2449336,38.808603,47.6062095,38.2568296,28.3867053,42.7130994,40.977746,41.0494765,28.4742617,29.9250717,37.0250971,39.1073196,45.2450868,26.1531617,42.3455999,43.0977618,38.7336894,30.3799313,41.140693,42.5161208,34.8465348,29.8249513,36.6447835,37.0057816,41.2891184,33.1261575,33.9252,33.7843344,40.7645196,36.074507,41.3166228,40.1616374,40.025686,40.916986,42.0381377,45.1562098,34.006156,34.2147347,37.4905756,29.997361,43.087502,44.2680158,43.4097115,34.6708374,38.9830345,46.2584082,43.6135192,40.762358,34.4169198,39.760061,6.2271607,6.1615289,45.5468389,43.0977618,39.784791,32.6196384,46.2626838,37.09024,37.5043161,25.118107,25.2048493,45.24585,31.2513847,32.954418,35.1570356,53.4434281,59.370045,23.00590752,30.36150723,45.87592846,38.4293075,41.0808887,-33.9345198,-26.0155,-26.0155,-26.0155,-33.8496,-33.9881985,-29.8132,26.0556,35.7509385,23.1335653,-9.1023675,-12.0551778,-14.0423249,-33.4527746,46.7508638,44.1989412,-12.1968425,-11.1085721,-14.8318504,54.6342985,45.6707651,44.9704625,44.5074364,46.579971,39.971564,25.0528564,25.0329694,24.1848198,5.438604,5.4180009,31.949542,4.676557,19.3608803,19.3608803,43.2186599,42.6534794,42.6918831,42.6918831,31.23227174,-22.984304,34.8613441,35.3379406,35.6278192,35.3379406,55.8182446,56.8237034,39.910420998,30.646393,29.60785088,45.6631264,39.008297,19.91642509,34.21592215,-23.5725984,38.7336894,40.7578756,56.8237034,14.382546,10.7731883,40.10481495,55.603635,32.0732397,29.5688075,42.981671,54.7687956,13.8117152,26.43618,13.746461,54.7687956,37.2580107,55.6710469,55.6710469,35.6490163,41.770121,39.909571,44.970622,44.969247,55.7620983,45.2459438,8.986299,-12.0551778,38.91599104,-12.2858634,-37.8862881,55.804184,46.3589457,55.611998,55.7899945,-27.3201232,-37.7329747,35.6698717,8.7628144,10.4599315,2.94974,3.4650511,35.5179093,-37.0257427,53.3263218,59.793627,4.1221761,31.21596201,31.234966,55.1453927,55.190701,5.3314233,42.6431288,35.4647664,25.2048493,40.7238345,4.453482,4.6464765,4.6669451,37.5391091,33.5897604,38.906814,31.20707247,30.65000241,-29.813244,52.5046473,22.72182629,40.7560544,22.2832297,22.2811176,24.48248828,30.525403,31.224235,48.5356188,37.4934539,31.242846,14.5350368,55.663096,55.663096,14.554729,14.576332,40.9859857,31.57566426,30.50504512,22.2950689,22.2780222,39.848045,40.856896,40.4198775,35.1687066,35.7140142,35.003563,33.5903547,-33.7968656,55.764393,55.7933661,55.7306721,22.2821814,37.5041299,35.1549453,35.86846,35.6278192,29.972873,31.9376412,35.6808059,35.8187981,-25.7824,-33.3691569,9.0505158,5.333756,17.9924462,-33.4813538,40.992748,45.725724,35.6742637,33.58981,35.6856706,34.7040116,34.3931856,43.0274312,38.229011,43.0274312,38.229011,22.72455409,39.0627865,34.365039754,31.11522823,23.065939,10.7605866,31.22578787,23.11007684,4.7467673,35.9215394,35.5395869,37.5563512,35.4606,-12.1437855,31.892773,-13.4398938,25.251966,25.2048493,24.453884,-12.1542654,-8.1016915,-6.777776,-9.9208,-12.030346,-8.1016915,-11.9374143,23.18033466,31.14021442,39.12153797,13.717486,49.0378427,26.587155,30.699156,39.894107087,31.228234,39.910948,14.4081327,49.0378427,43.7767555,-34.5636073,-32.886353,33.9909344,33.7826672,39.2281865,39.795262,34.016464,34.1347001,41.0973773,33.8328003,40.8229535,33.6505291,32.7024837,33.7841874,30.3788147,4.5747572,4.595894,4.732715,4.5697539,4.7254677,48.856614,48.856614,48.856614,48.8609024,52.5247386,45.4653525,40.4198131,45.128353,33.8937913,39.4715663,43.82913785,30.62788272,32.465677,31.7516832,32.7906617,55.7482787,55.7482787,55.7279873,55.7279873,55.6773593,55.769683,55.712337,40.4171196,40.4176834,44.4193659,13.8036116,33.8937913,33.8533302,40.4160786,40.5670815,38.6597303,-28.0319666,-36.850638,55.845203,31.38905789,41.80155867,31.19448782,48.6900553,29.60840392,24.98511784,29.66364593,31.21093642,40.22949869,24.967047,42.1841964,42.1841964,39.4358484,34.3578142,40.2359932,40.2599564,33.7844058,34.9361057,38.7336894,38.7952682,39.94961683,55.6689351,-26.1791,55.850674,55.585688,30.57006922,23.17510645,31.83852345,56.8290891,51.513925,35.1687032,40.98601,-22.9976527,33.896203,52.5226536,52.5237287,51.5204327,52.5200066,-26.1791,-26.1055,40.901975,36.6940249,41.3021139,37.0843914,41.3850639,48.8911448,31.27897,45.626074,47.0924356,49.8605064,51.5539727,55.769683,25.3223269,22.396428,22.2774116,22.2831409,26.25383844,39.89163001,32.789711,31.15489382,29.550333,-8.11916,-22.6805205,19.4028556,19.4874562,19.6306682,49.1981561,49.0376189,43.8254468,-36.9793643,24.68950432,29.5728405,-28.1680861,24.9883624,23.11420335,29.32029162,32.140557528,22.5966941,14.0313906,-8.0957419,30.65476676,37.3955689,37.3955689,31.9488972,31.768319,31.197297,44.725061,31.9270062,30.55685002,24.51645604,25.017219,29.949427,28.1888478,36.074507,28.26899,25.03710451,59.925371,55.6797255,54.7573154,59.868939,59.8689419,37.4969255,55.822919,32.440934,31.9660553,42.6791779,31.626879,-34.5811051,30.24959962,41.0332703,41.0521025,39.84,32.773663,45.5315263,37.5000966,37.5674247,10.7896558,31.48701735,39.80565677,22.52814084,-26.2041028,22.396428,-12.0852822,22.556835,37.0222654,25.97133501,40.9858227,23.117663,35.6250135,37.555588,34.0728012,23.10164424,35.6690682,29.55778995,37.5041299,37.5041299,6.196708,35.6626729,35.6894875,35.6950453,35.5990595,35.6914283,35.6894875,35.6894875,32.8023477,34.690083,34.6937378,35.6894875,25.4375387,-12.046374,35.6250135,34.6451655,35.712384,25.0417142,-33.5110776,-12.0852822,25.0435349,24.3243178,-33.4488897,41.6352246,47.8574663,46.9620241,49.573794,4.6668663,-34.6033294,6.1329366,52.5231417,-33.924741,22.4013411,19.3027734,24.913352,32.1705469,31.9730015,32.0692075,-26.1939473,54.650613,54.650563,22.38524,43.8907422,-34.5987647,24.453884,33.8861557,33.8937913,1.3644202,44.4193659,44.4193659,44.6329773,45.6322361,25.25312,25.125703,25.2048493,55.279619,24.495924,25.25312,25.216319,36.8968908,24.9822,25.2048493,24.2991738,30.0444196,30.0444196,45.1638289,44.4267674,44.4267674,44.4267674,41.0082376,41.0082376,39.9333635,41.0082376,41.0082376,41.0082376,41.0082376,41.0082376,40.7654408,41.0082376,38.4718076,39.9333635,39.6532976,41.0082376,41.0082376,41.0082376,28.5048,28.656417,28.5426165,50.4450619,50.4450619,43.202442,-23.5725984,33.569159,30.4245292,34.054347,33.5464482,33.985996,33.5687931,33.712259,33.591456,33.591456,55.6908665,33.2249487,33.5861517,33.5446644,33.5941786,33.572511,33.9834969,43.4447064,23.684897,23.684897,23.684897,23.684897,23.684897,43.8667278,-37.9578565,14.5545186,41.3067226,19.3721563,33.8985435,25.2048493,40.757777,49.5739222,37.5273268,14.583155,31.10052436,39.90657791,13.8052069,25.0356839,1.26503,-23.4297662,-22.8491652,22.6229613,24.1477358,24.1380896,25.0158516,31.79262152,30.24890271,37.3955689,10.8230989,13.7467903,37.4957382,50.1146242,25.2048493,52.5100232,52.2573732,31.9730015,18.23852956,-8.1016915,-12.1119594,40.03016689,38.513698,4.7194804,3.4516467,4.8087174,4.1513822,6.3404691,31.22964785,20.01515958,43.866067,30.70260559,55.791125,24.453884,39.971155,24.1510229,25.0527485,35.7509385,-33.5197642,25.0428106,31.21300388,51.2003078,36.9918456,25.6901911,39.9507014,32.2788581,31.792244,32.1705613,43.2481979,56.832383,55.804376,55.7472883,43.2631393,43.2631393,43.2631393,55.7926601,24.1514825,25.07591,37.6391558,37.6327471,37.6327471,41.3042929,51.50871,37.5392646,-38.7349423,38.912495,-29.8586804,31.229839927,37.566535,11.0200193,11.0200193,31.5928238,33.9823994,31.63434,35.7813874,19.0759837,35.7813874,4.7217781,4.7217781,4.7217781,6.208498,34.395253078,26.5771768,39.97306329,29.88310304,36.3497174,13.6713992,13.8472905,55.75792,28.7040592,48.4903011,41.909168,55.7926467,47.4899303,28.7040592,28.7040592,28.56721,42.1354079,42.6977082,42.1354079,42.6977082,42.6977082,41.0082376,32.084041,36.8968908,38.3356763,41.0082376,32.881225,45.6579755,31.6035092,31.892773,44.4267674,44.4267674,32.699635,44.4267674,32.0852999,32.699635,25.3566762,25.2048493,25.6741343,33.5731104,-26.1083,-33.924741,-29.8586804,-26.1939473,-26.1939473,-29.8586804,-26.1939473,28.6178,28.6618976,28.7040592,28.7040592,32.7940463,42.5135363,31.1992879,28.195785,29.57694271,30.67574297,11.0104262,11.0021,4.6231992,41.0747478,40.7647209,32.084041,32.832154,32.9265298,41.9091185,25.6901911,-33.518537,-33.4488897,39.909821,23.11007684,30.778177,26.650622,41.73677,23.118358,31.216471,31.316808,30.628251,-26.1083,25.2048493,9.050098,9.011742,-12.117001,37.5633413,6.232915,37.5171482,37.5633413,-22.9218019,-23.5266159,-22.893747,-26.1803935,48.8785419,50.4450619,4.65211,4.651891,4.7109886,51.5217064,4.1513822,4.8087174,19.4326077,19.4326077,19.4326077,19.383021,19.376938,19.4326077,55.771256,48.7715209,47.2596574,47.2370837,60.09055,1.2058837,-28.0362683,-37.6500963,-27.513157,30.71092259,31.810202564,27.96265741,35.0160601,31.21700957,26.60325479,-33.8688197,31.9453666,29.532086,29.5320522,31.9453666,-36.8484597,22.61258486,30.33090272,31.34241309,22.25549835,30.02776956,39.77074532,50.0768126,39.929242,39.027095,13.7481136,64.524484,35.6721142,41.1178218,35.8762055,35.8762055,35.8762055,30.30530482,41.808472427,31.27962131,31.36575377,55.7472883,37.0885046,31.7769937,31.15524002,35.8775938,37.3798877,37.2801554,37.5538892,37.566535,25.0356839,25.0438099,25.0329694,46.56741194,41.79462442,52.265528,52.2657214,55.038648,-27.3784662,-37.5873477,35.907757,35.907757,33.5875443,45.4654351,19.0759837,1.2058482,3.4648248,4.7194745,-33.9345835,42.6454107,24.4892004,31.7743099,19.0759837,19.0759837,28.7040592,19.0759837,28.7040592,29.5654393,29.77251407,39.91665421,35.3070492,36.2930054,35.7248237,30.3324978,43.8787326,29.551843,29.60022246,22.512296,37.951662277,41.764605978,32.0380771,30.267487644,25.2048493,22.2802473,45.4215296,51.0486151,49.2827291,37.5589687,39.91520642,31.26382719,22.92382665,22.48351253,23.032829,30.57150804,37.5738228,45.7940381,-32.8919611,-34.5813019,43.0977618,-34.6275142,59.9523048,60.602947,52.3862615,51.5073509,35.9834709,59.972929,43.402147,55.820936,55.769683,55.818002,50.1264112,35.0038611,-26.1803935,-25.274398,-33.4488897,30.49332361,34.290877369,13.7563309,14.8866729,59.927848,42.3444763,28.4676201,35.6736797,28.4676201,27.9653771,34.28581142,25.2048493,55.7314573,55.7331778,25.2048493,28.19059332,31.89667424,23.14104594,34.4117273,44.1786858,32.04141582,31.13074625,30.48840457,31.216736,49.191967,51.2031812,45.891486,43.6429123,31.156528,-11.9915731,25.0334929,-12.0494818,40.12793866,22.698065,45.73577788,29.584428,30.35547039,39.852989,29.57394952,30.810253,38.7501309,31.17040334,55.7736765,-35.675147,41.0702286,55.769683,55.769683,6.246386,24.472213,23.109696,31.78486839,31.01449217,41.8980056,25.786696,34.0590031,32.281691,44.0723588,37.9768188,53.4946321,48.223864,47.3690279,46.4760307,-29.7259365,29.869152,22.3179137,26.1531617,3.1568055,41.1385211,30.5082551,35.5330472,35.1814464,35.6278192,35.6104826,35.1814464,34.664577,35.6877186,34.7028186,34.7034172,55.720334,55.720334,22.5402463,35.6602362,33.58981,31.9453666,25.0329694,25.271658,25.2048493,55.771195,56.899788,28.7040592,40.814884,45.5375454,10.7718159,-36.8484597,56.309169,39.914353,37.8074728,31.2409885,22.535944,39.899684,30.275628,31.210292,25.079414,30.657365,30.301142,39.941175,39.941175,29.594865,30.525403,31.194982,28.955575,30.243596,31.923127,34.675132,23.132688,30.2451658,29.892221,31.375207,18.285432,36.083994,24.76355,24.819073,36.692678,37.5658244,31.097467,39.122391,29.527642,31.692848,28.288214,30.293645,23.150455,27.920224,29.620567,31.140447,28.287993,26.620873,28.2,28.589111,43.836272,31.1375081,30.407248,34.500066,40.047279,38.0710067,40.04073,43.767489,45.87592846,24.917868,28.070433,39.827526,30.244693,34.396109,31.812539,23.005398,23.101443,29.5881066,55.719861,-34.674675,29.57278883,36.204824,31.315978,57.744529,55.663602,34.26953414,30.54989581,35.7088306,22.299843,22.299843,-36.8449659,37.695222,37.695222,37.695222,-12.0833534,55.769683,31.2946367,30.2732461,43.2259743,37.9590529,25.2048493,-25.274398,39.909052691,38.988608,26.540907,43.9411689,22.92017587,-38.416097,-38.416097,39.909868,30.72135583,29.46112238,27.696306,18.9240725,19.1322971,19.4326077,30.22833472,30.630329,34.344488,37.7201696,56.313554,55.727767,47.9759053,22.99937116,36.506074,30.477414,14.5532989,28.703037,28.57424431,-37.9101501,30.0789147,49.0425326,51.5204327,45.8131212,24.920175,48.687316,50.412352,25.0500396,29.59536277,23.132916,39.921584,29.85301471,48.7626249,13.7597834,34.6037506,39.8976871,35.4647664,48.53709,22.2804155,22.2950689,22.3821058,22.3821058,30.3044676,31.30097138,28.214957,14.619793,24.4888055,38.8868774,48.8609632,42.733883,13.696299,13.6523487,40.2366156,41.669267,19.3917957,39.791814,39.92536,31.195986,34.20967581,31.159353,31.162949,-16.3891732,25.9572851,22.616353,43.580618,39.826991,41.0480289,25.0287024,25.0287024,35.6796367,56.832389,55.719159,48.73455,56.33495,29.7760483,54.181909,47.212163,53.277773,8.537981,54.703895,56.820971,55.6982689,56.326179,55.81479,59.941577,54.180563,47.22846,53.19521,48.704735,54.71088,55.755826,59.941356,19.2587597,19.2983941,48.8732737,53.3066108,54.33154,46.080867,22.2804155,37.3920475,37.0457857,37.504532,37.608409,25.0329694,25.0329694,25.0329694,35.1698426,37.5792928,35.2662188,35.2047825,37.5618718,37.5166478,37.5403439,37.6583599,37.3837928,52.5122417,37.5590624,37.5609015,37.3990244,37.246823,37.5154709,37.4927685,37.5221163,37.4635798,34.0723668,35.1687032,37.7351371,35.5315127,37.3249213,37.5600808,37.522018,37.6218905,37.3866256,37.5084321,37.5678305,37.4094099,37.4659121,35.3576315,36.3567201,37.3456556,37.4997257,37.5628905,36.3502842,33.8727524,48.8691311,48.9488212,-36.9793643,31.235461,10.8230989,10.8230989,35.6613587,31.9879093,34.0723668,35.6877186,34.664577,34.7028186,34.702864,35.6736272,35.6602362,33.59053,34.0723668,-23.5004517,-23.5465775,25.198518,45.7741904,40.4167754,41.6488226,36.656744,40.5672623,43.653226,34.073005,28.7040592,1.26503,30.0444196,22.3688543,55.621443,50.412352,50.028508,19.0759837,50.509714,55.909932,50.509478,10.8230989,1.352083,18.220833,55.621821,50.412338,50.29372,2.9606306,24.453884,25.2048493,57.513345,34.1230021,33.8937913,40.4204381,40.814314,41.0082376,39.9333635,1.3506758,43.653226,36.0206547,4.1305523,36.0206547,36.3414309,34.4098207,22.396428,22.396428,14.2483685,43.8231966,25.2048493,19.5091242,19.4078457,20.5887932,22.451483,40.995341,25.270546,25.2048493,-23.5467007,55.729343,-23.5466296,31.9453666,40.5573636,35.8340418,45.0529822,49.5744685,-26.2041028,-26.115397,36.1505449,36.1505449,55.736454,31.890267,32.96916,10.8230989,14.058324,44.5422573,51.8638045,44.4207857,51.5073509,-35.3264967,-33.9081355,24.453884,19.6567367,19.4397762,31.9453666,34.4345947,28.7040592,45.0465622,54.971688,49.8999063,49.1979806,55.4518187,51.8638045,50.028084,55.909266,55.891437,55.793661,45.6579755,1.3348154,1.3043349,-12.0463731,-25.8777033,-25.40435,40.002121,31.768319,10.8230989,25.2308017,-23.5459474,34.6261437,35.8101879,25.0169826,24.1531885,35.75361,-23.4543395,-23.6530286,39.6062505,34.0724558,41.0152357,32.7035785,-33.5219455,-38.7520607,45.4514357,49.1041779,36.944113,37.2242358,3.1450867,3.139003,50.453863,50.453863,-26.2041028,36.9662257,33.4064854,35.3407172,35.7169448,34.8579067,31.5924901,33.5876438,38.2584745,35.6104826,35.6613587,35.0597124,35.4346713,35.0294155,31.8935644,31.9453666,53.2415041,56.8618601,56.8587214,59.132333,50.5997134,57.0050671,46.482526,41.5775233,59.9342802,32.0852999,54.7387621,50.25465,55.755826,42.3600825,1.3059065,1.302707,1.350644,36.944113,32.0852999,-33.481547,22.396428,45.8940717,-33.4488897,-38.7359018,45.8940717,19.4326077,25.0329694,31.9453666,34.4345947,2.9606306,6.1750543,25.3462553,34.690083,43.0620958,52.589394,33.1412124,35.8101879,33.5948578,36.962572],[21.0221579,16.887914,16.9407785,16.9281885,21.0044544,19.845926,16.6103082,14.4256755,14.4907811,16.0621257,14.4224156,14.539281,14.4287219,8.9796594,8.4482124,6.3956219,8.5432137,6.3956219,16.8486818,14.2775512,16.3722252,-9.1403927,10.7414272,24.9753313,18.0630704,18.0939507,12.0754701,4.400969,-8.9388554,-7.945063,12.2853144,12.5811172,19.0527412,19.0674804,18.889821,19.061284,18.2317525,21.0026871,18.4510433,20.8946991,19.44099,-9.185945,6.1776768,11.3419474,8.9722189,5.9886089,-6.9166309,12.4453221,0.8754928,-3.577854,-1.3356137,-3.521561,-1.311821,-1.076834,-0.5623546,11.5056342,5.8086233,-8.9388554,-3.693468,-5.95031,-8.7064829,14.3248951,2.171936,-8.6366443,-9.187984,9.2160159,8.8578329,9.1806342,10.8566103,12.952405,12.4779048,9.2447974,11.218069,12.4444245,12.540334,10.1196246,11.7981068,13.3422291,11.6069819,14.3210891,16.8486818,14.539281,4.104969,23.9111129,6.181443,3.0642183,4.1098655,5.3784817,4.8559895,1.806652,7.747034,2.3096951,7.2678294,2.6655061,1.4436926,7.4990482,2.3605785,5.355766,4.8162608,8.0860313,1.9723746,-2.135182,-1.106,-3.7416245,8.80412,7.4036021,13.4076185,10.91697,12.9066569,9.2800277,12.9781989,11.5795734,11.0706416,8.6820545,13.3372294,9.9999832,10.7929636,10.9163554,6.941662,6.9519379,11.57161,5.4402769,2.2066178,3.1825966,4.0840401,-1.374724,-3.6080827,-3.6864384,-0.8815782,-0.8849612,-0.8897861,-3.7049581,-3.6945,-0.3713513,-3.6748099,-3.6611092,-3.8689976,-3.7025823,-0.88769,-3.7263968,-3.9281234,-3.5340758,-3.777102,-0.88769,24.7166509,24.7166509,24.3659131,-1.1209214,-1.89589,-0.1513459,-6.2293397,-2.7419557,-0.1278298,-0.1385979,-2.1378979,-2.9850822,-2.9877693,-0.222115,0.570681,-0.007467,-0.1692134,-2.2425113,-0.05777,-3.7981931,-0.748246,-6.028287,2.1759727,2.1692814,-3.7004821,5.4403219,5.9880787,4.8877451,4.9440836,-9.17535,-8.6545188,16.548251,2.7321047,5.3941153,5.3784179,5.477278,25.2980859,24.1219583,17.1462151,2.171936,6.8811002,23.704417,23.70982,23.930107,23.6876163,23.8106407,23.7308856,23.729072,23.90775,23.776783,33.3549618,33.3727477,33.6307999,33.6349392,2.3447356,-8.9388554,-8.2784832,4.9440836,-6.2603097,2.4471659,-0.3912159,-2.133873,21.0257838,-0.9713884,-0.3034615,-6.2610423,-0.1471834,18.0227693,-8.7064829,-9.0982214,-1.337065,-9.1881688,-1.383062,-2.1378979,-2.880714,-1.5452805,-4.3484925,-1.6150013,-0.2823138,2.3254796,0.272144,-0.1248365,-0.1619703,-0.139752,-0.2839429,-0.5735239,0.016433,8.4611829,-0.3034854,13.3796958,-1.257583,5.3651968,1.855947,5.3594753,0.2701772,6.5675915,4.4765365,5.4778998,4.7770215,4.3095709,5.1157616,5.9099747,4.5534777,5.3867572,4.6325069,11.5058793,2.5232805,12.3792896,12.0979666,20.9845828,16.9146127,21.0044544,14.4909962,50.247064,76.631386,-78.9754715,127.766922,-94.7451661,-88.2122966,-80.318477,-3.60803,126.9779692,126.9779692,-95.6691277,-118.2610826,-111.9583028,-95.6214404,138.252924,138.252924,-118.3783347,-84.5149797,-71.0640337,30.523,-89.3985283,-87.6119577,-73.8456118,-98.2801963,-97.6965483,-84.5083023,-122.7762143,-92.0049403,-119.4179324,-122.4200457,-81.3880972,-79.6379294,-94.8241035,17.655029,-71.542969,-117.0659848,37.6144318,-79.1204567,-121.863377,2.1665982,103.819836,-95.973124,-81.4811004,-71.0866421,-117.065741,101.5183469,19.0492481,139.7600967,-98.2115884,16.9284192,17.0366461,-111.964485,-94.8304338,-98.2115884,-83.9991991,-84.1230327,-81.4014088,-81.2037697,-118.1653749,-83.9613458,-87.9500072,-104.872852,-83.4735576,26.1790953,23.6297732,26.0813065,151.2661042,103.8478027,144.9843467,145.1259904,26.1260506,27.5942673,34.332019,37.546021,45.971096,39.628632,37.608658,103.8542702,-97.6903305,103.746939,-79.2660193,-87.949284,-118.1516239,39.8693454,37.505384,38.1330574,37.3580736,132.8864207,-74.4174029,-74.1713372,-90.4132318,28.6075696,26.0164094,145.0824062,152.9482384,26.0801301,151.0447065,103.8320626,139.709008,56.2094206,103.8435719,-76.1594172,-66.1614183,37.5956129,-74.0948707,-74.4361153,-75.571449,37.889439,92.9033518,38.833534,37.174843,85.1737835,-81.7746935,26.1231594,37.32785,-96.6628932,21.2285552,-80.3216515,144.8893441,25.5918016,145.0888386,144.9488899,28.6304329,107.593807,60.6488331,82.960827,26.052093,-84.3390545,36.5719357,56.0857628,-117.04444,21.289091,103.7432852,56.0218588,-95.7573375,46.0631258,-80.0181733,37.302901,-88.2739212,60.5989643,43.462689,82.9361856,151.2089158,153.4095259,-122.8782898,56.0218588,-116.8106785,153.3877568,26.121185,44.434169,37.603108,-71.5018896,-81.4892916,45.1503218,60.6140016,103.8513784,-122.1876843,-80.8204632,-122.1891958,39.935059,-66.5407146,23.5843138,82.36396,103.8586054,-79.9958864,55.9016196,39.8693454,84.9143716,-115.1583136,73.3100914,144.965047,153.101627,25.6079072,39.793771,-93.6685672,50.263434,33.0914908,26.093354,103.9050673,-95.0560331,26.1020431,43.126969,-97.0545496,73.3100914,-97.6479396,115.8474237,36.593309,37.174843,-78.7742585,37.74914,103.8438568,-73.3059881,39.8693454,38.1330574,132.8864207,20.5004646,-95.8093454,41.9303006,-66.5397385,56.8059609,30.355076,30.316475,135.0937053,39.698124,37.6565779,35.484413,121.057522,37.552331,42.7190492,37.619903,37.619903,15.9720748,32.825994,45.774074,15.9447556,27.1362371,30.7849175,29.3231511,29.9459505,28.8962236,139.4707844,135.1905102,140.8371656,-81.4525018,139.7301149,-118.1525208,139.7301149,-77.2948597,38.0777998,45.180322,41.9348872,43.8916993,37.748746,34.8010698,41.078637,120.97291,38.4302538,49.213188,15.239344,28.996499,27.421375,32.9337461,0.284841,141.4712745,139.3802147,127.6569557,35.6174,30.3787322,39.525385,16.573757,29.9485788,139.9706982,28.7975316,37.556029,40.352466,41.078637,-113.9930715,-117.5517081,92.9348314,82.936948,29.2241498,46.0146729,120.875293,37.6017346,37.603108,-81.2845693,28.923751,15.912664,-80.4792237,139.9915522,136.1001831,135.5935683,30.3796686,55.1432839,32.6932808,130.3951854,28.824939,-87.9500072,41.078637,28.999124,-79.1754871,37.714846,16.11338,28.8697613,37.737424,30.446392,-121.8995741,15.912664,-73.6188519,-66.074381,-116.1598103,30.148837,49.0930048,29.0167792,30.446392,104.290059,28.9097374,141.3630421,140.2369789,133.7620842,39.124923,61.414932,121.515325,135.4977411,132.4595643,15.9447556,32.6842058,16.11338,137.8422547,29.3222214,-67.150041,37.5306561,-122.3873133,-86.3060547,37.654207,30.2040974,28.8143365,140.9898577,120.6849139,139.6048892,135.5004816,139.9352931,139.6475606,121.021938,136.6542052,31.1252135,-71.1609397,27.134366,-90.8411221,-121.7960122,130.8827559,140.0554988,-112.2657155,58.9798491,49.327354,32.6550374,65.576591,60.580676,61.414932,36.11,37.6243399,37.5901102,28.5506158,46.1294111,73.250791,30.248689,30.415146,28.989413,35.9348252,35.8727141,35.4833361,39.698679,135.2948118,32.05024,139.7751123,139.8642124,48.58716,30.3347035,55.9939716,49.152628,47.277807,43.8642209,38.9735154,37.6565779,28.8716234,32.8475168,29.0969034,82.961541,30.361324,38.9713926,-106.3801382,131.9027506,135.0481888,35.8654534,-111.9733833,45.9512355,39.5789777,39.1822824,50.1490741,37.6783149,50.170989,35.3245784,33.09722,20.541796,56.247235,44.4927377,28.895953,28.9922165,32.817741,32.691178,30.2727,28.365528,30.338184,48.3600502,29.0905445,35.8616351,136.7257996,32.777215,51.845462,138.9650778,35.5879,45.02444,35.8824475,37.8966663,-90.6623009,49.101944,61.92993,82.9356794,28.8971139,87.1006836,36.0572539,28.8862581,38.2863243,37.75257,29.0263468,30.397839,61.383926,93.009857,28.873027,48.3600502,30.2477713,28.8777357,73.4470362,35.8874813,92.9132406,139.3773164,35.5879,55.928746,47.884858,158.6154405,113.5055781,37.688415,39.0462414,48.387467,39.27417,37.5424999,35.6268368,30.5614642,35.0009159,43.913163,55.2707828,135.3644131,37.556029,36.1670441,30.3506892,27.2151664,39.1221652,35.4955,30.483655,52.4037055,29.1223673,55.928746,36.160185,39.1219267,35.0031046,37.659798,45.180322,37.619135,135.1059481,39.1219267,-99.2823755,-99.2823755,-99.3254361,-99.2018749,-99.0955917,-100.3603333,-99.6465649,-99.2051871,-99.1701514,-99.1925414,-101.1575078,35.5474181,34.877858,44.497171,114.2174133,114.173641,35.1873157,37.339225,37.536188,37.6020458,37.3580736,35.5402427,53.2045102,37.515808,65.4380581,-99.1918088,-99.2277106,-99.3254361,35.537732,-92.9399901,-99.3254361,-99.0495864,-101.1638365,-86.8217347,61.4025507,20.5087854,37.6015962,56.242877,35.0524538,34.774205,35.4881249,-99.1701514,34.3642207,-99.1810689,114.189073,36.2522471,35.4949423,43.9565218,34.956746,-103.4004924,-103.4971056,34.7717219,-99.1521204,30.514719,-99.123176,-99.2282645,-99.0089666,50.109563,-99.1367292,-99.2137956,73.376755,39.0500729,39.68856,-99.613006,34.8611988,34.8654928,34.3644354,34.9286636,114.168055,-103.3206691,46.0146729,-99.0955917,34.7958357,-99.0826465,30.378438,114.168724,-99.2137956,-99.1616682,83.7702632,34.8123116,84.9481884,-100.2883406,58.47573,37.619135,-99.0350986,101.7131118,37.619135,34.807116,34.91314,113.94168,84.9651986,114.259065,35.469082,35.0074145,45.0190638,-99.2521745,34.7731158,34.795226,44.073866,-89.58382,-99.0349891,-99.2721805,34.6556394,-103.4971056,101.7131118,60.5050579,35.0908414,114.187471,114.225156,-103.4138588,34.7910421,35.300145,38.9292594,35.0078759,61.355505,39.720911,44.4965881,38.983577,37.5895796,49.6494297,39.3685267,82.896925,37.6221057,38.983813,56.2482277,39.6097094,38.8006711,37.4646113,37.65738,39.846464,41.982776,41.4538262,60.5790643,36.2616464,30.3446756,39.81348,76.635055,37.339225,44.4346029,41.435412,103.8314536,100.540227,100.56624,100.5544736,37.8307555,121.033486,174.7860298,37.547879,44.604598,65.5491935,30.470409,103.834289,55.928746,40.9173962,41.4451904,36.2616464,37.5132177,37.8657948,30.3446756,36.571566,100.679859,100.52691,47.2811009,73.473228,139.7019497,37.2679481,172.5238386,60.618745,65.571186,37.601248,38.984006,56.0354511,-79.5073765,50.307126,38.9713923,42.0527679,44.071362,30.3696641,61.303348,60.5050579,125.611285,50.1981829,39.7182184,36.9881197,100.5219042,-111.964485,174.82495,45.7008291,103.8375931,37.333476,65.549214,44.0567935,65.4380582,-79.4644498,38.974446,20.4925047,37.5132177,44.4346029,121.051695,100.6208991,53.6670551,37.42698,100.534938,39.6097094,60.093568,104.286829,103.8375931,37.6590638,61.3265594,37.618231,-79.5534664,103.8478027,36.571566,44.439182,53.6670551,100.5611088,37.5087277,100.5640418,172.597599,42.8702716,28.982484,37.5112707,39.723628,37.7338276,174.7773919,-79.5534664,101.71122,101.677194,103.621453,73.4608511,38.0120188,43.065059,76.597115,43.9565217,43.576602,30.3696641,43.130419,40.3865185,101.596049,39.7322586,37.7078873,60.630858,56.0002158,60.110124,-80.0181733,-85.963264,-78.3145442,-76.1597096,-103.4017811,-84.0828161,-80.3206555,-94.8243608,-117.7468442,-118.3640549,101.711224,44.9435635,174.7850358,41.0248887,43.9250351,39.859027,40.9873617,37.845114,37.7078873,107.653111,56.2604569,-87.949284,37.620833,-75.3123669,-82.5084159,-76.7355728,39.859107,37.380546,101.67621,-115.1568419,-117.0424192,-73.9998584,100.3146284,48.3600502,43.9250351,-122.406176,37.614391,44.9516836,37.6704351,-111.5515256,37.843748,37.5404449,127.5125,37.5404449,-74.4380856,-97.690339,60.5373285,-86.9049903,-81.4155071,-92.6272767,-80.1413006,-99.2042468,83.776967,73.365047,37.846042,60.585792,32.0580223,50.804207,37.724562,-122.1877764,127.5125,-117.892183,39.5789777,-87.6232355,-88.2739325,-89.781345,-83.5699135,-75.5705805,-97.9855982,-104.8732477,39.7322586,-70.728795,60.5373285,-70.7178874,73.4608511,39.3685142,37.7078873,-158.0143084,30.3696641,37.9059839,32.0532989,-78.7736115,50.804421,42.881397,-81.7130599,37.5371678,-115.1691065,-95.4644579,-106.5864401,-83.60264,82.896925,-100.3352567,-74.0948707,-96.6628932,39.7322586,-97.8880668,-95.7573375,-80.1430982,60.110124,-76.5486052,-122.6933793,127.0611517,127.0287626,127.1143136,-74.1713372,-77.0014573,-90.6614603,-95.3622312,-80.1329613,-58.410981,-70.7178874,53.2045102,-75.9199172,-76.5013409,145.1578736,-77.2237264,127.0980274,126.981369,-90.0766253,-66.0339702,-73.8356575,-84.3366653,-84.5265343,153.0214118,121.5672349,-73.1073641,-73.9193989,-84.3635778,114.1873368,126.964413,126.831681,-115.17251,-70.5076359,-118.4982423,-118.1525208,-74.0582628,-111.9733833,138.5440993,37.619135,-75.60418,-72.5328871,-87.6266473,127.0532731,-73.8699596,-70.730581,-73.9996131,-80.8328179,114.1711561,-122.3026058,-99.2760128,-156.6811092,-119.7193472,151.200737,-73.0586356,37.5404449,114.196579,127.0305098,101.686855,-73.9963173,126.77199,145.1044516,114.1843429,-87.682475,-73.9752822,144.9634114,139.745484,-86.3537549,114.172922,56.328233,32.8132515,82.911973,38.9713923,47.2407,55.0882421,60.5989643,114.174864,55.8023118,30.3589114,102.250454,103.8450211,29.1033064,54.3773438,37.5276619,71.4033994,37.748746,30.446392,103.989967,103.763386,37.5371678,92.801988,28.7839274,114.1711561,35.8656757,30.148848,36.5915002,37.566102,61.355505,35.4955,127.3843049,32.814848,82.936461,56.0218588,38.9292594,30.3787322,37.3580737,48.0553059,35.553978,103.859498,126.9229027,101.713196,49.650389,37.923515,73.3100914,43.462689,43.576602,55.928746,41.4451904,37.6590638,53.2045102,37.737424,37.846042,83.679433,39.846464,86.0653248,36.7280835,92.9033518,37.174843,120.6616454,73.3100914,121.5211048,120.3092282,55.120069,36.011034,38.8006711,30.517205,121.5219341,56.0354511,18.5105,37.707585,28.0929,60.618745,82.911973,56.2354624,61.404483,39.758293,73.3100914,121.5508932,37.5281019,39.1919049,30.473918,121.5432512,121.4669529,37.5922153,44.537767,132.8864207,65.5496908,56.2604569,121.517004,28.056156,30.990396,28.275,38.671658,120.6576972,39.191905,82.8969249,30.381649,56.0002158,44.6836136,37.459342,40.9873617,44.8017904,42.7150335,120.302775,36.5822852,120.2960446,37.4643242,37.566102,25.576099,37.843748,28.3074,131.886121,18.4885093,121.2238236,39.3685267,85.1737835,37.6221057,75.4461481,60.5989643,30.2727,38.92,121.5365866,38.973202,37.466637,121.5672349,49.457192,27.9569,60.5050579,38.437508,37.5922153,120.6400971,43.9565217,139.6048892,36.589016,49.607249,104.2259819,127.5369227,120.3092282,65.494124,18.5084,121.5177652,43.065059,28.143773,28.3124,18.70071,27.896,121.5474906,121.5334441,28.1858612,28.041,-81.7746859,121.566575,-81.3431276,-76.1945845,30.397289,138.9650778,-73.0797466,-73.7585505,-71.0809088,-76.5987395,104.2878055,28.0108,39.7827698,34.7883038,31.0660742,18.5105,-77.538337,-77.2008824,-81.9957076,30.2626089,-71.126994,-78.9431065,139.6475606,37.5070481,-76.8612159,-74.075323,-74.125158,-116.810667,121.57476,121.4675116,35.075575,-81.4500433,120.6400971,136.7257996,-77.2224392,-73.9824244,37.899601,83.679433,40.1092033,-77.072565,-75.3855588,10.7929636,-119.0614057,30.2838354,18.4168136,121.5749756,-93.6661165,38.4420743,120.646406,18.5105,-71.0226617,92.9033518,-71.1133371,120.302775,-77.0601179,28.117173,56.2354624,49.272219,-71.267706,-77.7346928,-71.3148176,120.2860821,-73.9634233,36.1922844,30.467768,120.318792,121.5509032,-81.4921601,82.9361856,52.3899914,-122.878519,-76.2879503,-118.2436849,18.4168136,84.973161,55.9297316,33.0914908,39.846464,41.4370951,61.3265594,30.6227177,37.4982905,37.566102,44.4965881,38.9727324,36.2522471,37.661141,158.6154405,-121.9537176,59.943303,36.176727,-83.9978302,36.2545753,37.879749,49.2017046,20.5087854,45.1769172,19.4389512,61.4314184,40.352466,39.813351,104.235688,40.45926,50.305506,39.7499284,49.1183979,39.773295,40.9173962,17.0316714,37.6656839,-83.779767,47.7832249,-84.0478658,38.9792305,103.8887372,34.3644354,113.497245,53.2790811,37.986058,43.9565217,37.4297,38.0805317,65.2994616,-122.3889759,30.397839,40.4029557,87.149743,6.9418493,55.9525295,-78.9787318,49.39017,-80.8321452,60.630858,48.359609,37.619135,104.29113,-81.4532037,83.6982022,37.4908761,92.934821,6.8811002,-80.1569006,135.0598749,37.556029,43.9250351,-121.5609395,44.4346029,65.4380582,49.21542,44.0567935,58.9792248,103.8375931,30.338184,33.0914908,60.5373285,91.4451358,38.1330574,17.564488,-117.3212914,127.5125,56.8059609,39.698679,36.251954,107.583997,39.1221652,39.6097094,39.715093,39.8693454,39.7322586,30.3446756,30.3696641,-74.075323,-71.216752,-74.1475839,-74.1494027,-79.533821,40.9873618,39.8693454,-79.8308201,-79.1205055,-79.380484,2.3417008,127.1228624,73.365047,-73.6025937,44.9516836,37.3320473,37.614391,39.0500729,-106.6452601,60.5989643,30.3592782,42.0472559,18.0718043,-72.5559236,-80.3394789,39.7322586,107.653111,23.2151501,-76.5025605,-63.1804585,-2.240698,-79.4488627,-72.651954,76.597082,65.5491935,-79.8296052,-3.7160189,-123.1205491,37.5087277,-73.8709686,-74.2615039,54.523869,37.7078873,-74.1659155,37.7078873,139.7492367,-73.846192,-79.380075,26.1019507,23.3303411,37.545353,-79.651108,-123.120449,44.4965881,-79.6968418,19.9399172,-122.977263,-79.6236619,-78.6758944,-73.750558,-2.8838736,26.082589,-74.1104617,-80.3951779,-79.3942659,-80.5544353,-81.4007649,-3.7392387,-76.5025605,127.0296497,-84.3279069,13.3422291,-115.1715512,-114.074264,-73.5743749,-83.0140573,-79.1205055,-3.6756276,-113.9930715,-79.6509411,-113.624205,-97.2052898,-79.651108,51.9132569,75.3093877,-86.7816016,71.428623,-113.4835149,8.9796594,-122.9488485,114.168482,-80.5553534,76.9303493,-73.4037596,63.6288805,-83.3067734,24.714507,76.936595,37.58714274,30.7334161,-113.4814011,30.7418828,30.65507144,-85.3520379,-97.2028837,-43.3725154,57.1931666,57.1931666,-114.1339778,51.3681515,-122.6629778,-73.706172,-79.568902,73.0880556,26.983584,80.2571848,26.2002149,-93.2639536,71.3979891,37.787627,-63.6184029,-79.8296052,36.1948173,-79.5335526,71.4033994,71.4033994,-83.0140573,63.6385279,69.589709,127.3894914,-73.7016216,37.5247036,-48.5988553,-78.8799489,78.3473546,32.0599548,35.0506224,51.163897,30.7108011,51.388959,-79.69248,71.4113051,76.777318,-73.305368,-118.9413974,-38.3131068,39.3159324,35.1887205,76.947909,-122.6498966,28.6851579,30.4978393,36.327398,57.1931666,-75.1506217,76.8785836,57.1931666,-75.1064745,69.137859,35.030787,23.9980911,-122.2457319,68.3669879,28.47108543,30.436484,-46.7753617,36.331127,-121.8975344,63.6385279,-71.079594,63.6385279,71.4620339,127.0222585,127.0579688,126.8877548,-58.6973117,-58.368353,126.696253,126.9252845,129.0271458,30.4978393,36.30852968,37.8002617,30.7261174,142.743045,65.563147,39.927683,30.63218,-34.9047719,-74.4173516,-46.6957864,-34.8717823,-58.368375,126.9930059,127.0400909,-58.3875499,30.498432,127.0603253,25.927885,129.0566466,129.1755366,30.501188,126.8025118,24.71421,35.030787,36.33087,-60.0244208,61.404483,-40.2881193,-51.2137207,127.0710831,128.5954133,-35.7153261,-58.4107886,-58.4107886,126.7662654,129.1311016,30.5612821,129.050479,126.9066823,129.2378277,30.500456,35.0001207,30.7108011,30.3563267,36.5822852,30.5612821,36.33087,126.9055629,-47.8160158,30.5206834,-35.2062356,40.45926,-43.9447772,127.0252507,-46.5372315,-68.797781,-58.4042867,-46.6543537,30.4494381,129.0873745,126.9815063,30.7294679,129.0367482,30.5612821,126.9252845,-58.488341,30.5206834,32.6440342,-60.013211,126.696253,36.1948173,-68.8388959,-47.9552839,-38.4547378,126.9932746,-58.425941,128.7264838,-58.488341,65.2811467,30.507429,-46.698664,137.0072496,126.9252845,35.0506224,126.9815063,35.864287,36.30397,-58.6973117,-49.2919018,35.0630191,-46.580486,-47.0635857,101.6191528,-51.2452975,23.3211647,-46.5603583,24.7291337,23.2688211,23.3830128,-43.9404857,-70.5566897,-70.5067775,-70.5152664,-70.6042999,-34.8912371,-54.6222719,-43.9680163,-46.6627466,106.7043912,106.53303623,-46.5943069,27.459867,-51.1607565,23.4010126,-70.7178874,24.7344673,-46.6239827,-46.833809,-46.6679243,-49.3167788,-46.6793629,-43.2166874,27.9683438,-43.3440059,-73.0453133,27.8982363,-70.6785295,27.9235519,35.8655626,-70.6024624,-43.1767233,-71.5485614,-46.6672792,-46.6837047,-46.6406856,-58.3785035,27.8887789,-47.0079878,-46.67028,-70.6078063,-70.7518532,25.6323194,-70.5407235,20.136034,-70.6785295,-43.2353639,27.4721083,-70.7663971,-43.2202716,-44.0225021,-41.9656246,-47.638795,23.3535311,-46.7042315,27.4539385,25.6571276,-70.6545998,-70.7289368,-51.1678541,24.7486933,-46.521548,20.136034,-47.024258,127.3782049,-73.0587082,-71.258673,-43.3174066,23.3705863,-46.54911,114.0599571,37.646268,-58.3954144,-58.4109385,16.201415,127.6125556,127.0301604,6.8818559,13.3740486,4.4289353,37.6243399,-3.0602778,9.28329,37.566722,30.51699,37.798703,32.2641696,129.1297466,82.9221053,126.9041419,-58.4058467,-68.8383387,127.0532731,126.831681,8.6814498,15.5114227,39.8693454,55.2707828,11.0746889,-58.5216448,129.1297466,37.6783149,-58.4494591,9.579755,-58.439422,44.0785452,-0.1021894,33.3916337,127.1501805,126.9055629,126.981369,39.723675,13.336935,9.9904658,127.0710831,11.7855632,-58.4606142,-2.8838736,37.8788733,30.472448,-58.72943,-58.375215,127.4803653,126.9041419,37.174843,126.981369,9.1808582,10.9163554,21.0026871,30.471517,6.9564284,32.0599548,36.23207062,-2.135182,127.0030692,-58.72943,-6.2214512,-58.375216,128.8299232,128.5958528,126.858315,19.9492124,16.0621257,126.9431336,6.7746808,30.457413,36.327629,37.5901102,13.4147948,0.5732505,8.8363391,49.3963383,76.597769,-3.5194053,30.5612821,-74.9582345,-119.0572673,9.155688,126.981369,73.4608511,-72.714681,-71.1110748,-84.2289029,-78.9788418,-81.9961894,-80.1574505,141.3630421,-121.9045418,-117.3211879,65.5496908,-76.3055144,38.973202,126.9249911,-74.0762757,-83.7758064,-74.2593816,-75.9549753,-114.3678646,-16.9521759,-86.3581374,-93.2639536,-82.5079571,121.029698,-71.3526391,139.699265,-71.5454099,-104.9940509,60.5050579,-117.0844289,-114.5758899,38.9727324,-124.0105628,39.7322586,-119.0619241,-92.6179621,-74.1213172,-92.0037329,-84.0479479,139.7735683,-83.5699135,-81.7103009,-74.8553734,-72.7094703,-83.5786955,-73.8535172,-88.4262702,-74.619214,130.5554327,-78.957084,121.0215101,-77.538337,-8.4424699,-85.0033735,44.0567935,-75.3130663,-75.0849058,-81.4880294,104.2259819,44.439182,-71.0656168,-76.2225688,-97.157046,-70.2586638,-74.4173516,132.4587366,139.7301149,139.7123081,-81.4155071,-73.2344344,-83.470642,-74.1303333,-73.6143576,140.875386,-74.1647604,-3.693468,-121.9565562,-122.3363001,-75.1399365,139.6304952,-89.0988847,-96.283827,-90.9532721,-71.350801,-76.2198771,-76.7354159,-86.9043738,121.0235363,-87.682475,-116.708297,-81.9738704,18.0728756,-76.6465636,-76.9230484,-78.3102857,-80.5228438,-81.4489332,-115.1691065,138.6354725,-72.4293689,140.1113842,-73.6985868,-70.7281653,-88.2672604,-74.0383528,136.9067844,-121.5666351,-80.7222273,-97.0945658,-84.1230327,-97.9855982,-77.7327168,-80.7239298,-80.1430982,139.8249215,126.760952,126.9357977,128.8299232,127.0597808,127.1231651,-80.1406353,-115.5075792,24.01096076,26.2002149,37.533863,26.98386,39.3159324,-71.5485614,-71.2582656,31.993732,76.891881,-90.1529279,100.540238,126.701426,-87.9593224,-80.5228438,129.3382442,-121.1878005,30.7334161,-70.5782494,-96.2510996,139.7214446,30.7380755,100.5380594,-88.7630678,-80.9709609,22.29728,126.8827953,-75.0528629,127.0836477,34.49048817,76.891881,25.323684,100.726878,28.47108543,37.58714274,30.7375039,127.6125556,-93.2151887,33.3980504,-80.0867536,126.7753575,128.6818319,139.9901567,126.9041419,-105.161597,33.4012377,-97.0424136,28.6851579,-87.6263582,-117.5501019,126.701233,128.5734241,126.8803477,129.0776055,24.0315455,-81.3945022,-73.0586356,127.1543899,-70.7663971,24.7460068,25.595626,25.927885,129.0322656,127.4000798,129.3495549,130.4017155,139.6598589,-70.7135192,-70.5462877,-71.5004758,-70.5706135,127.1552677,135.097689,44.5010321,56.2354624,32.001778,127.4300165,-70.5434691,135.5137544,39.3160869,-99.2190198,127.0585824,37.497478,-70.5462877,37.5095344,61.355505,36.7888274,44.537767,35.12154892,127.0585824,-98.2674427,139.6693831,126.7052062,127.1552677,33.8328908,127.1552677,37.4982905,37.5095344,61.355505,37.5247036,-70.6081031,126.75,-70.5706135,-73.1401705,49.390138,126.9071515,127.0585824,130.3976353,37.491196,37.801813,37.485782,40.4029557,37.787627,48.0554596,129.0586225,-70.6024624,35.030787,-70.6822586,127.3459548,127.4000798,140.0320147,-70.5980841,-71.5633732,6.3956219,37.6221057,-70.400822,48.0553059,76.5958229,87.149743,127.0710831,39.9209453,-74.0868486,37.7374241,36.589016,37.489004,-76.5169098,-75.558936,46.0146729,38.4302538,82.9361856,83.6982022,52.2738117,41.013447,-76.5393347,-74.8278388,-74.135945,128.6818319,127.4366222,127.0287626,127.0685928,129.0367482,127.1182617,126.9055629,126.7620249,-74.114305,61.404483,36.7280835,41.9259289,37.748746,-74.0451975,-74.085859,37.858875,-74.8119015,53.2045102,39.8465235,113.497245,-74.1121483,126.7620249,-74.1312278,39.846464,-75.574589,139.6917064,126.8025118,126.8749782,129.0566466,127.0980274,126.9815356,127.4089694,37.7610021,37.760804,-74.0710084,61.355505,-74.0368259,55.425225,39.191905,37.732821,-76.5013409,127.3843049,-75.5694177,-74.044699,127.9274613,-76.5273842,37.7276428,129.1311016,127.0030692,126.9790435,39.772789,37.5087277,-73.1184446,75.4461481,86.133512,37.5759106,37.430047,-74.055404,-76.539436,-74.064424,37.490393,127.4089694,37.467064,126.9066823,83.679433,126.9640447,-75.5301561,-75.570659,126.9252845,127.1219267,-75.6833726,39.3685267,-74.12412,37.665089,37.566102,127.1046804,127.0611517,127.1081315,53.213011,127.0539444,61.4314184,107.583997,37.6656839,31.270712,38.1330574,126.9517348,126.701233,128.8299232,-74.053191,-73.1201541,126.6918139,126.9809889,-74.0453516,126.9026345,34.3568771,37.544927,127.0532731,37.532587,37.442086,53.2790811,34.3758539,126.9809889,126.701426,82.9142212,37.34725,36.5915002,37.4429706,30.303663,30.514719,30.474216,31.2181304,37.708159,31.2871168,31.2706662,114.1753694,114.1684829,114.172691,34.3074043,30.2727,29.965746,55.2005828,39.758293,76.6690106,30.3589114,43.606467,135.5021651,83.776967,30.482482,73.3699525,60.5989643,30.338184,38.671658,30.3683634,37.34725,39.1919049,22.98418,114.171077,31.4994893,114.2164395,31.2319377,139.5814793,55.308127,65.5496908,55.344936,31.3364152,31.3371724,31.1978527,30.3592782,104.2878055,127.0305098,45.1769172,54.321782,137.183202,69.017695,30.340384,39.191905,30.3293659,39.0500729,37.663517,31.025245,46.0146729,130.4148783,31.48198,73.3699525,114.185988,55.392976,31.2219763,33.0434203,55.400833,29.932259,31.347921,55.400833,128.5907443,129.0367482,30.259957,56.8036012,30.415146,54.3618751,37.4429706,37.911968,39.079386,37.34725,38.078712,30.338184,131.886121,39.6887935,39.720373,31.4603921,54.372758,55.393658,32.996868,114.1753694,31.301947,55.2707828,30.3506892,30.338184,37.908477,37.4429706,39.6887935,107.661583,114.168055,30.248689,30.3389542,53.2045102,114.174868,55.4053089,30.355076,31.2429196,55.3326755,55.372282,55.772025,20.5004646,54.383226,31.2757358,114.2144298,34.323953,31.3321818,55.279619,-86.798997,35.852009,38.973202,55.807462,35.8373789,34.758983,55.407795,37.923515,39.7322586,35.860719,44.0567935,55.9525295,58.9792248,44.6797132,56.2604569,35.863232,37.545353,44.6799071,39.73893,30.320377,39.1221652,34.816387,34.7753948,49.6494297,135.0821852,37.6156287,44.074059,49.457192,56.0002158,55.781637,92.9348314,35.862632,104.2259819,73.3100914,30.3592782,34.797938,126.7510438,34.7718754,38.0803698,-104.873549,39.73893,39.566586,56.2354624,38.929983,85.1737835,59.9594118,39.8693454,39.848452,35.865995,82.911973,55.779881,39.825406,35.050963,34.9511013,82.9223574,65.335031,127.5369227,37.846042,30.320381,54.2374318,45.183159,107.661583,65.494124,40.525743,35.8839725,-90.1528696,88.1808816,37.9083149,44.439182,56.0218588,55.9976397,38.8006711,58.9734314,35.9177805,38.0777998,36.011034,60.582217,39.843125,158.6154405,49.681629,104.2259819,42.7190492,88.180609,37.38694,37.466936,37.887858,10.7929636,39.1662557,82.9420782,37.5371678,44.0796014,37.387426,-75.807461,114.228034,-117.7501932,121.44923083,116.37455283,116.452018,118.784544,76.8785836,37.5308701,37.60779,40.981791,37.38694,37.886796,30.316593,82.911973,39.7499284,-71.1264,37.5658937,-80.0853926,116.517872,123.5189217,-97.1988147,-75.9199172,120.71549515,116.412377,71.4113051,51.388959,39.7185384,57.1931666,30.316851,37.6243399,-73.9918869,110.1998582,37.5276619,127.6125556,37.5276619,121.50017135,104.045418,-79.1754871,-73.5740432,37.923515,68.3669879,37.60779,37.75257,37.887762,49.6494297,44.0796014,43.576602,-79.1710964,38.0792391,55.0882421,91.4458056,116.478412,-73.9193989,135.1830706,121.4585202,116.226279,122.2470663,116.4551641,37.5922153,106.571543,43.84294,63.6385279,40.981791,71.4033994,75.3093877,37.844652,-73.917852,37.60779,82.8978966,113.26911003,-73.4037596,116.417023,116.49089046,140.8693558,114.627296,39.3685267,47.2407,36.568824,51.163897,40.981791,37.6078435,37.6052196,121.55801898,113.03495608,-75.5590433,114.29157593,121.555404,104.03542925,106.51303449,116.419456,112.997404,116.458709,113.923158,120.298819,139.6917064,128.6063962,121.44144327,116.461295,139.6917064,44.0567935,36.1887596,37.749787,37.56682,121.77098203,121.448863,-76.527667,104.03574039,121.430971,123.61835075,117.02243065,114.01304195,103.6702502,140.1210169,121.475551,117.5146251,128.5918474,103.94471151,120.821756,37.5390942,127.0597808,37.66662,65.560222,121.45927017,37.3829281,114.0599571,60.5050579,118.0656116,37.528617,121.53591173,116.37457308,112.86108812,126.6918139,121.45937993,37.658261,37.606029,39.8672607,108.24642505,37.605157,44.542499,127.4803653,140.2295937,117.5146251,104.8927952,116.48608224,37.5308701,121.513723,109.621646,122.2470663,121.125566337,117.004601,120.16091707,37.6150251,37.7048709,46.0294714,114.370631,139.6380256,116.503578,-74.053191,106.5647,116.438947,121.557993,118.762402,108.946333,117.01830154,114.0599571,116.41797592,121.34115126,116.595657,65.5501502,121.436877,126.8827953,129.0586225,37.6710922,37.3580737,40.9873617,130.1768326,59.978582,121.46539594,50.178033,60.5989643,38.905886,39.846464,65.5750339,49.0930048,43.8690439,120.71584661,121.52478525,106.53293485,49.1183979,38.973202,37.566102,60.5507413,44.8017904,82.912356,114.054004253,114.0599571,39.722363,37.662491,122.2470663,49.124256,92.9033518,39.2027048,135.0598749,103.8887372,39.7827698,20.5087854,39.715093,37.459342,113.58025407,86.0653248,36.1922844,47.7832249,49.21542,50.80176,50.200553,92.8568261,104.079934478,115.0825728,49.607249,76.6737362,104.3086452,55.117964,60.630858,92.799061,37.5371678,43.06521,-123.151974,73.4049707,123.5189217,102.70942809,-71.5485614,44.9962102,104.07639888,41.4370951,34.302005,104.2889395,39.0500729,55.1263425,20.506382,36.176727,158.6317898,76.6447589,76.6447589,30.7418828,37.724562,38.929718,39.7322586,42.0447156,37.724058,33.0914908,129.050479,12.0754701,10.9163554,-80.4734427,-71.350801,0.8785829,-3.5743678,-1.3310082,-1.0701706,-73.9833243,-86.6928228,-71.0795769,-93.2152472,-118.9417375,-80.9702321,-115.5075792,-97.1385464,-70.7936719,33.3583386,3.1804497,3.0647812,11.0740923,103.838314,103.7428132,-80.21259,-71.2582157,37.614391,39.0462414,38.898462,38.898557,37.254674,37.254674,37.2021514,138.6354725,130.5116369,121.57824,137.1652289,117.396855,-8.6523205,-117.2743533,153.0808868,-117.5309199,-118.3981004,-117.1603216,121.5440447,120.6576972,30.6327862,34.31658,34.315878,18.6975,31.4207273,31.3439032,120.66453561,138.5205156,37.60779,25.9817724,37.38694,37.668112,58.4806919,58.4806919,58.4806919,88.052826,30.4381628,116.656168,39.8693454,26.266758,43.033967,37.763071,37.396452,37.498283,37.3030403,37.3030403,40.5288348,43.03387,44.070823,50.1740927,33.0958803,34.3108633,50.188137,50.1740927,33.0958803,33.0958803,34.3108633,34.3108633,38.132109,30.353888,30.353716,40.5288348,38.124825,48.398409,40.216258,127.5369227,123.46848272,-73.1073621,-117.6182904,37.549038,37.6090163,37.5203208,37.615763,37.568066,37.126589,37.6265069,37.438564,-99.2725075,140.1062907,37.5228343,37.4498255,5.8113605,37.547477,56.0218588,-76.5412683,37.627498,120.612234297,114.032257211,109.064865765,106.516348776,127.0710831,37.58514,41.4572465,50.188137,41.4572465,41.4572465,-3.7043036,126.9302315,126.9302315,127.1195934,30.300715,44.2864667,35.8881084,37.5901102,33.0725192,33.069406,37.5404449,37.5404449,49.0660806,36.2671815,55.182655,37.4107393,37.844652,60.7675225,86.7047667,131.907119,83.1051063,93.0233011,81.2156909,90.4721654,11.00409,8.7482378,37.760804,37.759079,56.1912346,37.5276619,37.760804,69.0391754,84.9806005,84.978506,84.9806005,86.118331,37.760804,37.396452,84.9806005,84.9806005,76.927723,76.927723,76.927723,54.608788,55.781877,29.0546158,-99.2725075,-51.2284706,121.4669529,101.686827,73.104547,37.4340606,27.9732,30.52335,30.523393,-75.1602185,106.518165,113.1784019,38.227117,106.57613,53.8145059,121.57890455,135.1055222,120.4890618,113.9090366,114.287808398,120.2779695,106.302129061,113.51143905,114.185563,37.3164209,42.2026579,48.5646375,36.7127849,37.1601592,20.4426211,103.861134,37.9395444,9.2194699,-80.1452444,-93.2754022,-121.5210313,73.3844303,33.4893015,33.4893015,34.1018396,34.168199,34.1370394,34.166933,116.69997304,113.18732446,34.787384,55.400833,-117.2653146,-95.3691379,-122.6668196,-84.3883717,-83.0092803,-73.7547335,-71.1224359,44.77526,-70.5782494,29.0171157,32.7695007,47.9302061,36.569229,103.8449976,104.08480612,104.08406917,104.068852,106.57619234,113.32514766,55.967475,55.236249,55.830056,55.2707828,-80.1430982,121.0155,121.082572,33.1027168,129.2122007,129.2119416,-0.627766,5.0571034,0.2249068,-76.5276054,-75.681047,-75.5557266,-75.551584,-75.551584,-74.0451975,-66.6116218,-70.7048188,-70.6785295,-70.7135192,37.6246119,87.1305184,87.1305184,87.1289977,40.5350681,40.5350681,47.796743,53.9975045,13.4146665,116.360968,121.461492,120.684378,121.457501,123.37581648,120.17088987,125.319815,13.383,101.677221,101.7113219,101.7062344,-97.8862425,121.6037326,26.1511638,26.052093,26.052093,121.5758964,34.6641534,82.9221053,54.537924,54.372758,31.0897255,-83.3708966,-117.2065503,150.7954911,49.6260488,113.3823545,114.348793629,118.780763,37.6059969,-81.3103466,-97.8872124,-121.4494524,-117.8380483,-106.573237,-73.434651,-117.1485343,-122.4894159,-80.016829,-89.782399,-76.1947733,-96.612844,-82.0230593,-96.3026469,-97.9868889,-73.305368,-118.5617421,-84.1749459,-75.1064745,-122.4770808,-122.9487798,-113.5253848,-106.6428156,-79.6270534,-73.8074236,116.63998101,121.37833379,121.268414339,-73.984596,2.3469709,34.847068,7.457612,6.182426,130.4112286,34.4180269,16.4824645,120.996315,100.4637375,151.1213976,36.568942,37.620159,37.677029,76.9892371,76.9892371,76.9892371,151.2075286,145.0707585,119.94203531,121.51621697,114.0459916,121.4064302,118.788337,121.1250825,103.8728779,103.9052872,55.332803,121.38561525,113.8644225,120.164006,34.8267718,45.9733967,-90.0511071,45.9733968,-70.6078063,-70.5972667,151.1002001,138.3082899,37.4107393,39.9546187,46.6421295,119.94555138,103.9221866,114.414705,-3.8924496,34.8624251,44.542499,37.6067711,119.00399601,113.77977699,121.475441,-99.1542205,126.89069,129.713113,116.41190458,116.412334,108.4024734,51.8898618,-73.6135758,-75.0528629,114.172958,34.7969959,24.3629919,103.8946028,106.49653894,-74.116986,-73.1184446,126.9959828,139.6423446,-77.011053,-77.0604229,37.5658937,114.216937,114.155615,114.1878073,-71.5495113,-79.832955,-71.9491987,-75.2072689,-77.0370839,-76.970967,-76.9773321,-76.9773321,-77.0306289,-77.0628583,-77.011053,-77.0526686,-77.0730865,-80.6220193,-80.6422463,-79.0490567,-79.031753,-77.1015547,-77.0511038,-77.0373429,-77.0050256,-97.426766,-77.0469581,-77.1078165,-76.9751199,-77.0628583,-79.8328474,-76.9773227,-77.0619171,-77.052561,-77.0827821,-79.04827,139.6995166,139.6995166,139.6353983,139.5483014,114.1878073,26.0344427,9.9783933,7.1977132,120.2960446,30.380411,-74.1493599,-75.6981584,135.1930864,139.389133,139.6316608,139.414987,135.5344664,-73.0646627,-71.3008983,-70.6292439,-70.5772793,-70.6078063,4.4299333,121.3783989,-79.5116164,-79.0409002,-82.3908656,-77.0604229,-71.5141574,-99.0204308,-99.1701514,-99.2775726,-74.3348845,-73.9208363,55.4209317,-118.395087,-78.958115,-90.9532721,-111.1015508,-95.8093454,-85.6712027,-118.0932017,-121.8449497,-82.3915434,-122.2028616,-82.3258785,-73.9849313,-75.0258385,-118.6042808,-118.2578027,-74.2993604,-81.4027414,116.31525041,121.37836923,113.0789344,120.697207,114.04682918,35.8690835,-74.101711,-74.08626,-3.889784,-3.693468,35.5179351,55.286797,55.404455,106.25752719,22.921505,120.973537,121.050814,34.8623641,100.617475,100.4757614,100.5687571,120.64503287,103.6702502,114.627296,120.4035474,114.0548239,121.586781,117.216646,-121.300859,113.78964118,-122.978614,-76.9215918,-81.9738704,126.891192,127.12,20.4100429,-5.885862,73.1093826,139.63609,20.4372149,20.4372149,-79.5354637,-70.5782494,-75.5426032,120.3067782,135.5344664,136.8812873,-81.9859318,-81.9738704,-81.2845693,-114.5757487,-92.0037329,-97.1506584,-97.1161422,-122.3363087,-81.7118102,-116.708297,-90.8411221,-83.5786815,-88.426603,33.083,60.598703,37.6178219,37.380546,60.598703,61.3557036,60.598827,-71.267706,-121.5606372,140.0371394,-71.1133706,29.9187387,-80.2116242,-73.8543579,-77.0605555,-77.0525421,-77.0619169,-76.9552324,-76.9552324,-76.9552324,-66.5432478,-65.8997491,-98.437149,-95.5274127,-127.6476205,-117.3304473,128.5866064,126.7510438,-78.8821815,-95.6848034,-89.782399,-79.2685525,-98.5085661,-114.0671879,-123.1180043,-79.4553801,126.75969683,28.6052153,26.8168965,24.523868,37.6360435,37.6360435,121.41690259,121.5668016,123.434757,33.067596,34.9404278,37.6211251,-117.3304124,121.76467318,113.08635,123.446723,45.7008291,139.7059892,-95.712891,104.06820874,121.485372,103.99660166,117.09474182,22.6726832,127.0980274,103.989148,103.986923,-75.4805125,9.1869574,-78.7745153,-122.1891958,-119.0663902,-81.4173774,-79.2575963,127.1231651,127.0827947,126.7562452,126.8717032,127.0028684,127.0911209,129.1311016,103.858846,103.8221469,-87.629798,26.082589,127.0479007,128.5963119,129.0776055,127.0785946,129.0367482,126.8025118,126.9922251,127.0718746,126.9504391,126.9660494,129.3318295,126.9066823,127.1386673,127.0331574,127.0273526,127.0124412,129.1297466,127.3034189,127.035432,126.8800883,126.6674354,127.0611832,127.0075262,126.909527,116.432194,-70.7124288,-75.5711347,127.1385288,126.7709573,-97.1988147,-74.101711,121.5508932,121.5654177,121.5668016,120.6849139,139.6986289,55.317351,-121.8436231,-86.3513395,-111.1012331,-96.6606861,-82.5072,20.5004646,139.7050837,104.2890408,104.2890408,104.303951,114.109497,86.124645,116.4201603,106.580583,110.29409861,121.37245153,121.31522,121.49935529,120.75842232,126.6517496,137.3314583,35.8874813,-71.5466357,-83.5721085,-83.7758064,-104.5,-122.3320708,-122.6500244,-81.4940902,23.2488279,28.873027,-75.3132422,-81.4489503,-81.4173774,-121.5669431,-77.5382843,-93.6661165,-80.3216515,-71.5454099,-78.9754715,-75.1399365,-86.3513395,-80.1574505,-87.9500072,-117.0854289,-97.9845466,-93.2643893,-121.5682751,-72.4293689,-117.3213976,-116.8106785,-78.7742585,-73.3069363,-79.2660193,-74.1303333,-74.4174029,-76.2198771,-72.7094703,-71.3526391,-122.8782898,-118.1516239,-119.0572673,126.9249911,-95.7564593,-79.1204876,-76.5029454,-80.3952591,135.5014825,-76.1594172,-63.1804585,-79.6966967,-73.9791676,-119.676347,-86.163801,-75.5758418,-75.6056045,-94.1524377,-78.9754715,-75.0525723,35.3122421,-63.1700392,-95.712891,127.0250435,55.200608,55.2707828,-93.669246,34.7720932,35.182313,129.0630291,-113.4834518,18.00503,113.22878418,120.05856903,126.5612469,27.2087595,28.8771629,18.4713008,28.1068,28.1068,28.1068,18.8105,18.4885093,30.9908,28.0929,139.8046755,113.3234623,-78.5579225,-76.9659565,-75.700814,-70.6824627,23.5325163,28.6092689,-77.0116455,-77.6129694,-74.9377438,39.6887935,25.6200192,25.9611708,26.082589,26.913978,116.448301,121.5202136,121.5654177,120.6314948,100.3102962,100.340385,34.80438,-74.057005,-99.1904343,-99.1904343,27.8982363,23.3357683,23.3535311,23.3535311,121.412056,-43.2091001,135.6774993,139.3560477,139.7735683,139.3560477,37.4907929,60.5045463,116.373587609,103.9855906,106.29368015,9.69458,121.628233,110.33179403,108.99190715,-46.6957864,-75.1399365,-73.9824244,60.5045463,107.9790821,106.7009194,116.54195202,37.491438,34.7816829,34.9566083,47.496295,32.082153,100.6204566,-81.7746859,100.531563,32.082153,127.6481601,37.4386556,37.4386556,140.0442545,123.435983,116.375668,34.076061,34.078947,37.6571301,-93.6685672,-79.510866,-76.9659565,121.63672024,-76.87516,145.082649,37.392323,48.0697375,37.6052196,37.5308701,153.0413416,144.9065235,139.76401,-75.8729221,-73.2431541,-75.288084,-76.5016463,139.5663144,174.8998284,83.6908148,30.330196,-73.6411103,121.45852187,121.477562,61.4518826,61.2707569,-72.3999266,23.339577,139.6179987,55.2707828,-74.0000589,-75.240906,-74.1090289,-74.0550775,127.2146082,130.4112286,121.609091,121.4075001,104.11476906,30.990822,13.336935,114.07475342,-73.9784469,114.155354,114.1853991,118.1207069,114.354711,121.445628,9.2911466,126.7195964,121.471769,121.0351887,37.481119,37.481119,121.0244452,120.983206,29.1791294,120.3013424,114.2066253,114.1668661,114.2404905,32.833049,29.282793,-3.7011186,136.9102506,139.4078431,135.7323137,130.4017155,151.1839782,37.844684,37.750968,37.6095609,114.1856492,127.0030692,129.0597401,128.6934002,139.7735683,31.0140931,35.8874813,139.7402946,128.5389044,28.275,-70.6753899,-79.4503025,100.306691,-66.6116218,-70.7518532,28.905447,21.202728,139.7637618,130.4204315,139.9901567,135.5004816,132.4595643,141.4090651,140.887772,141.4090651,140.887772,114.24864997,117.6305579,109.176022936,121.56864349,113.157394,106.655498,121.44682074,113.24094074,-74.0448436,128.6373616,129.3358538,126.923885,128.2132,-77.0008221,34.811272,-76.1351116,55.332803,55.2707828,54.3773438,-76.9496448,-79.0101524,-79.8336168,-76.2410507,-77.0684454,-79.0101524,-77.0722178,113.26956471,121.65851288,117.1973015,100.509751,-123.0853249,106.76153,104.031397,116.460416712,121.526516,116.459371,121.0414667,-123.0853249,-79.2590081,-58.6973117,-68.8388959,-118.4662542,-117.8929285,-77.2857697,-77.2009737,-118.496531,-118.0515879,-73.9565905,-118.350778,-73.4106588,-117.7442124,-96.2838224,-78.7736115,-86.3526003,-74.1121483,-74.071498,-74.0665,-74.1388979,-74.1253855,2.3522219,2.3522219,2.3522219,2.3484877,13.4076977,9.1955958,-3.7012777,7.7373741,35.5017767,-0.488575,87.43128742,104.15040255,34.993029,35.187302,35.534115,37.5371678,37.5371678,37.4763011,37.4763011,37.4673811,37.426356,37.553165,-3.7043397,-3.7049581,26.1473421,100.6141002,35.5017767,35.5369976,-3.7081719,-3.6091102,-9.2285873,153.4309763,174.764903,37.659739,121.35817189,123.43343468,121.43736015,7.4992433,106.50822783,102.67882847,116.08167169,121.40352268,116.19006857,102.742188,-71.1329685,-71.1329685,-84.3376508,-84.0479479,-75.5701091,-82.9241344,-78.7707948,-89.9916306,-75.1399365,-77.0008077,116.47504219,37.5863359,28.2383,37.364539,37.722387,104.06387789,113.26823119,117.11721867,60.5989643,-0.1521936,129.1297466,29.0992335,-43.357963,35.483028,5.4403023,5.4373439,-0.0736815,13.404954,28.2383,28.1068,14.332644,-6.160694,-8.7057136,-8.0215073,2.1734035,2.238182,120.628545,5.159356,8.3592108,18.2638543,12.1929428,37.426356,55.5136433,114.109497,114.1753694,114.1544369,119.40834815,116.64484137,35.007822,121.3506733,34.9566,-34.9047719,-43.2903136,-99.1539332,-99.1525129,-99.1246049,-123.141209,-123.0852783,-79.5384264,174.7837717,118.13949667,106.53387178,153.5419606,102.7669184,113.3324479,104.77162501,118.722781538,114.30939315,122.1130909,-79.0409002,104.07620186,126.660035,126.660035,34.8027876,35.21371,121.437018,37.763018,118.8215014,114.33848225,118.16235148,121.2123543,-90.0627999,-82.3917947,-79.2660193,112.68827453,102.70934312,30.321758,37.4788616,56.0354511,30.349666,30.3506892,127.0532731,37.497757,34.894197,35.9109616,23.2862969,34.582292,-58.4284202,120.16389142,28.9252063,28.9012875,32.83,-96.8,-122.6667872,126.8893137,126.9830123,122.9897118,120.30099591,116.45958333,114.02693908,28.0473051,114.109497,-76.9773321,114.070119,-121.5635016,119.2665499,29.1001493,113.326118,139.7751123,126.923089,-117.5514191,113.27300105,139.7061419,106.46106057,127.0030692,127.0030692,-75.5591811,139.7018739,139.6917064,139.8136683,139.6130065,139.7009592,139.6917064,139.6917064,130.7092132,135.1955112,135.5021651,139.6917064,81.832259,-77.0427934,139.7751123,135.5137544,139.4150564,121.551082,-70.6098821,-76.9773321,121.507313,120.6998433,-70.6692655,-0.9830617,21.1285465,9.5541967,10.9163554,-74.0526851,-58.4107886,102.2574168,5.4383709,18.4241074,-97.9291316,-99.123176,55.010303,34.9286636,34.7925013,34.786733,28.0273914,39.635832,39.635521,114.204538,-78.8798701,-58.3749537,54.3773438,35.4833361,35.5017767,103.9915308,26.1473421,26.1473421,22.6726832,25.6394831,55.302197,56.302207,55.2707828,55.120296,54.383226,55.302197,55.407795,30.7133233,55.4029,55.2707828,54.6972774,31.2357116,31.2357116,26.8168785,26.1025384,26.1025384,26.1025384,28.9783589,28.9783589,32.8597419,28.9783589,28.9783589,28.9783589,28.9783589,28.9783589,29.9408089,28.9783589,27.1588277,32.8597419,27.8903423,28.9783589,28.9783589,28.9783589,77.097,77.434559,77.1557526,30.520617,30.520617,76.891881,-46.6957864,-7.625826,-9.589288,-4.9727288,-7.6022734,5.0021277,-7.6433674,-7.3437457,-7.678103,-7.678103,37.3030403,-8.5022715,-7.5849167,-7.6405404,-7.6160493,-7.614562,6.8577879,39.9074102,-109.7007018,-109.7007018,-109.7007018,-109.7007018,-109.7007018,-79.2881438,145.0517256,121.0253796,2.0255934,-99.0695933,35.505433,55.2707828,-74.0025907,10.91697,127.0274265,121.051699,121.41106603,116.2262792,100.5674031,121.56681,103.8221469,-47.1296933,-43.3211127,120.3037772,120.6736482,120.6845642,121.3049144,119.97420013,120.21260025,126.660035,106.6296638,100.5350573,126.9888355,8.681533,55.2707828,13.3796958,20.9845828,34.7925013,109.62839398,-79.0101524,-77.011595,116.33261383,106.25591815,-74.0368042,-76.5319854,-75.690601,-73.6376905,-75.5425991,121.46294767,110.34861541,125.295905,104.0454181,37.586221,54.3773438,116.435962,120.6579846,121.5206836,139.8046755,-70.6024624,121.5077243,121.56243381,5.9865345,127.0836477,-80.3132992,-75.1602185,34.8467674,34.638949,34.9286565,76.9362084,60.617194,37.618114,37.5819175,76.9262031,76.9262031,76.9262031,37.5901102,120.662956,55.131275,126.9191713,126.9225018,126.9225018,2.0222907,-0.221153,127.2148919,-72.6108163,121.58632093,31.0218404,121.46256605,126.9779692,-74.8700762,-74.8700762,-7.9858938,-6.8291978,-8.007319,-5.8406922,72.8776559,-5.8406922,-74.0746531,-74.0746531,-74.0746531,-75.5553642,108.731820923,106.71305103,116.29520509,121.55759716,127.371909,100.6167097,100.6552774,37.658493,77.1024902,135.0821852,-87.67593,37.6126488,-121.7960122,77.1024902,77.1024902,77.32109,24.7452904,23.3218675,24.7452904,23.3218675,23.3218675,28.9783589,34.887762,30.7133233,27.1344444,28.9783589,35.24064,25.6011977,34.7717488,34.811272,26.1025384,26.1025384,35.303546,26.1025384,34.7817676,35.303546,55.3879987,55.2707828,55.9804173,-7.5898434,28.0531,18.4241074,31.0218404,28.0273914,28.0273914,31.0218404,28.0273914,77.2795,77.2273958,77.1024902,77.1024902,34.989571,14.1198949,121.313862,112.997404,106.57316108,103.97381703,-74.830319,-74.8076935,-74.13867,28.9860881,-74.0624162,34.887762,35.088407,35.3213221,-87.6761045,-80.311141,-70.599537,-70.6692655,116.458709,113.24094074,106.055001,119.537881,123.450987,113.241462,121.414636,120.676941,104.008667,28.0531,55.2707828,-79.452615,-79.4654363,-77.0370839,126.9811458,-75.604123,126.9055629,126.9811458,-43.2353639,-46.681081,-47.024258,28.117173,2.3642198,30.520617,-74.126648,-74.12633,-74.072092,-0.0722893,-73.6376905,-75.690601,-99.133208,-99.133208,-99.133208,-99.079343,-99.0956003,-99.133208,37.620295,44.8017904,39.7213163,39.7141929,30.379074,-77.285787,153.4278405,144.9529136,152.95342,104.06630537,117.288917047,120.6040583,126.7107572,121.4225223,106.72103498,151.2092955,35.9283716,35.0062821,35.0063209,35.9283716,174.7633315,114.13805006,114.06193231,120.61287384,113.52411957,120.55502251,116.16289972,14.5392566,116.627229,117.218655,100.5192148,40.602536,139.7708253,29.0430833,128.6285973,128.6285973,128.6285973,120.3478406,123.377109823,121.44406336,121.06177842,37.5819175,-8.0370774,117.2560309,121.22730868,128.6289061,126.8031025,127.114659,127.0857152,126.9779692,121.56681,121.506118,121.5654177,125.13689179,123.3725567,104.226458,104.2268765,82.911973,152.9807267,145.0978442,127.766922,127.766922,130.3975174,9.1958777,72.8776559,-77.2607772,-76.5013409,-74.0368259,18.4722604,23.3925806,54.3618751,35.2214359,72.8776559,72.8776559,77.1024902,72.8776559,77.1024902,34.9600504,121.54540898,116.51683624,138.9650778,139.6048892,140.2695466,120.2157855,87.58326251,106.578256,106.49171548,113.924169,114.396668017,123.433854485,118.8466101,120.163941627,55.2707828,114.1843094,-75.6971931,-114.0708459,-123.1207375,126.9437359,116.41174458,121.49884501,113.35869452,113.915546877,113.15676875,103.98625637,14.4797388,16.1513359,-68.8575194,-58.4285744,-78.9754715,-58.3785035,11.046938,27.8405559,4.7258958,-0.1277583,140.2369789,30.222533,39.955172,49.162199,37.426356,37.441431,14.2807345,135.766788,28.117173,133.775136,-70.6692655,114.41439214,108.829202309,100.5017651,120.8678329,30.359951,-71.0289878,-81.4528384,139.7624127,-81.4528384,120.6318632,108.9217345,55.2707828,37.603449,37.6014362,55.2707828,113.03142936,117.23508093,113.41322802,132.3976117,28.6466869,118.78076286,121.36319648,114.65959358,121.415108,-122.9488422,-113.9925638,-74.1475839,-79.3854024,121.227095,-77.0642918,121.564101,-77.1111538,116.65626474,113.970256,126.56432665,106.593334,120.23007798,116.397172,106.23790191,103.841988,-8.9388554,121.3689261,37.6054691,-71.542969,28.9986957,37.426356,37.426356,-75.554228,118.11075,113.143436,119.85055465,121.41957527,-87.6232355,-80.377607,-118.418866,34.861416,12.5264165,23.7288541,10.0040294,16.37819,8.5260736,6.3949727,31.0661436,121.557993,114.1687442,-80.3216515,101.7132345,-80.1569006,-97.678896,139.6959016,136.906398,139.7735683,139.6299511,136.906398,135.5005943,139.7021464,135.4985323,135.5001927,37.379965,37.379965,113.9232894,139.7003114,130.4204315,35.9283716,121.5654177,55.371422,55.2707828,37.619903,60.613224,77.1024902,29.3128762,-122.7078005,106.7044175,174.7633315,43.987132,116.411905,112.5308418,121.5561733,114.064949,116.417656,120.127708,121.476984,102.733052,104.066187,120.129713,116.352277,116.352277,106.521276,114.354711,121.437112,106.932859,120.215846,120.961689,113.500583,113.229396,120.0370949,121.654527,120.635155,109.492952,103.689967,110.492268,118.572854,117.237485,121.2006141,121.349599,117.178795,106.511853,117.288525,112.921277,120.225437,113.194907,120.812109,106.475723,121.679537,112.903082,106.6227877,113.207502,115.807658,87.516153,120.6399702,120.304986,108.947184,116.431724,114.4784165,116.414425,125.445907,126.5612469,102.575425,112.992452,116.323081,120.214513,108.730408,119.003491,113.228176,113.2726,-95.629012,37.380217,-58.4606142,106.53350064,138.252924,120.677776,41.013726,37.511042,108.9738063,104.04539093,139.7600967,114.1726895,114.1726895,174.7707111,-97.426766,-97.426766,-97.426766,-77.0142934,37.426356,120.55560338,120.1611489,11.8012691,23.6876163,55.2707828,133.775136,116.375378341,121.588421,106.779131,125.3287888,113.34615834,-63.616672,-63.616672,116.478412,103.82799621,106.62311677,106.905859,-99.1981795,-98.2686534,-99.133208,120.19104764,114.283826,109.045495,112.72426281,43.891355,37.476135,16.8519314,113.34963541,103.677032,114.461433,121.0566974,115.806851,115.773156,145.1583655,120.02731329,11.3419474,-0.0736815,15.9724449,102.576668,44.485382,30.522316,55.1995458,106.52066474,113.32512,116.438947,121.62180376,16.0621257,100.5379965,133.7620842,116.41939113,139.6179987,9.28828,114.1843429,114.1668661,114.1890229,114.1890229,120.141153,121.5134263,112.988198,121.056625,118.04849339,121.65309776,2.3484652,25.48583,100.751818,100.7857626,-75.5705805,-72.892655,-99.1890584,116.339842,116.517872,121.764361,108.89120469,121.113361,121.507421,-71.5494275,-80.1433931,113.859707,39.720233,116.323022,-75.3123669,121.5769572,121.5769572,139.7414921,60.573375,37.543549,44.548289,43.965826,-95.8084296,45.203628,39.733783,50.237717,-80.782127,20.528306,60.636877,37.5511998,44.006075,49.106544,30.326462,45.18504,39.744846,50.102972,44.519111,20.510713,37.6172999,30.326258,-99.6197264,-99.1359426,2.3297826,-113.5898222,-6.276626,15.9164404,114.1843429,127.1034429,127.0044311,126.76092,127.028752,121.5654177,121.5654177,121.5654177,129.1311016,127.0479007,129.0220107,129.0817835,127.0792222,127.1112653,126.9926782,126.8320201,127.1221765,85.1737835,126.8312839,126.9924937,126.9638445,126.9660494,126.9066823,127.1461478,127.0331574,127.1144779,-118.343881,129.1297466,127.0578697,129.3280513,127.1081315,127.0075262,126.909527,126.7554191,127.1198556,126.8887332,126.991672,126.6783088,126.9928921,128.8384426,127.3656306,127.9327999,127.1036047,127.1897938,127.4366222,35.4949423,2.3096951,2.6892341,174.7837717,121.474642,106.6296638,106.6296638,139.7301149,35.8956346,-118.343881,139.7021464,135.5005943,135.4985323,135.498324,139.7624549,139.7003114,130.4210556,-118.343881,-46.8486943,-46.638631,55.279619,15.9477003,-3.7037902,-0.8890853,-4.4785967,-3.6092069,-79.3831843,-117.5516905,77.1024902,103.8221469,31.2357116,114.1206598,37.713739,30.522316,36.331331,72.8776559,30.498478,37.541383,30.498433,106.6296638,103.819836,-66.590149,37.71369,30.522359,30.33408,-75.2929128,54.3773438,55.2707828,12.075315,35.6519282,35.5017767,-3.7017506,29.3193,28.9783589,32.8597419,103.8721662,-79.3831843,-115.086354,-73.623746,-115.086354,138.6380481,132.3999839,114.109497,114.109497,121.0633043,-79.533821,55.2707828,-99.2197248,-99.0761423,-100.3898881,114.170912,28.9097376,55.3241467,55.2707828,-46.6387014,37.599226,-46.6387818,35.9283716,22.9790376,-83.5699135,20.0960004,10.9160676,28.0473051,28.144782,-95.9916448,-95.9916448,37.593012,35.010397,35.54495,106.6296638,108.277199,26.0687678,-2.2429073,7.8550281,-0.1277583,149.1761545,150.9218257,54.3773438,-99.2062952,-99.1563969,35.9283716,35.8361633,77.1024902,5.0571034,73.285837,-97.1390336,-123.141394,11.7842704,-2.2429073,36.331546,37.539844,37.748628,37.939097,25.6011977,103.7468395,103.8361743,-77.042754,28.1647919,28.15138,-75.6988684,35.21371,106.6296638,55.3123802,-46.6387932,135.047525,139.3802147,121.4627868,120.666891,-95.370972,-46.5336678,-46.7105358,22.44161,-118.3437521,14.2977433,35.3186256,-70.7328715,-72.6059776,-73.4619103,-122.6603519,-94.77356,-95.7083131,101.6072453,101.686855,30.434247,30.434247,28.0473051,139.9915522,130.5116369,137.1652289,140.2895424,135.1905102,130.5557466,130.3966742,140.87705,139.6299511,139.7301149,136.1001831,139.9352931,136.7257579,34.8083875,35.9283716,50.2212463,53.2324284,35.9175965,37.9091811,36.5982621,40.9766453,30.7233095,1.6176879,30.3350986,34.7817676,55.9720554,28.6586669,37.6172999,-71.0588801,103.8314983,103.834289,103.871806,-94.77356,34.7817676,-70.751564,114.109497,-74.157934,-70.6692655,-72.5903739,-74.157934,-99.133208,121.5654177,35.9283716,35.8361633,-75.2929128,-75.5923316,55.4209317,135.1955112,141.3543763,39.616738,-117.3205123,139.3802147,130.3211515,139.9943875],2,null,null,{"lineCap":null,"lineJoin":null,"clickable":true,"pointerEvents":null,"className":"","stroke":false,"color":"#03F","weight":5,"opacity":0.5,"fill":true,"fillColor":"#03F","fillOpacity":0.8,"dashArray":null},["Latitude: 52.086858<br></br>Longitude: 21.0221579","Latitude: 52.3527822<br></br>Longitude: 16.887914","Latitude: 51.1066409<br></br>Longitude: 16.9407785","Latitude: 52.4011748<br></br>Longitude: 16.9281885","Latitude: 52.1797059<br></br>Longitude: 21.0044544","Latitude: 50.109151<br></br>Longitude: 19.845926","Latitude: 49.1929541<br></br>Longitude: 16.6103082","Latitude: 50.08482<br></br>Longitude: 14.4256755","Latitude: 50.0580015<br></br>Longitude: 14.4907811","Latitude: 48.7626249<br></br>Longitude: 16.0621257","Latitude: 50.0825778<br></br>Longitude: 14.4224156","Latitude: 50.0740267<br></br>Longitude: 14.539281","Latitude: 50.0891861<br></br>Longitude: 14.4287219","Latitude: 45.8750077<br></br>Longitude: 8.9796594","Latitude: 47.1921259<br></br>Longitude: 8.4482124","Latitude: 46.4780255<br></br>Longitude: 6.3956219","Latitude: 47.3719146<br></br>Longitude: 8.5432137","Latitude: 46.4780255<br></br>Longitude: 6.3956219","Latitude: 47.9775783<br></br>Longitude: 16.8486818","Latitude: 46.5942528<br></br>Longitude: 14.2775512","Latitude: 48.2095605<br></br>Longitude: 16.3722252","Latitude: 38.716125<br></br>Longitude: -9.1403927","Latitude: 59.9139494<br></br>Longitude: 10.7414272","Latitude: 60.2837249<br></br>Longitude: 24.9753313","Latitude: 59.3356521<br></br>Longitude: 18.0630704","Latitude: 59.3044071<br></br>Longitude: 18.0939507","Latitude: 57.5135231<br></br>Longitude: 12.0754701","Latitude: 51.2170249<br></br>Longitude: 4.400969","Latitude: 38.7501309<br></br>Longitude: -8.9388554","Latitude: 37.028081<br></br>Longitude: -7.945063","Latitude: 55.6575539<br></br>Longitude: 12.2853144","Latitude: 55.679761<br></br>Longitude: 12.5811172","Latitude: 47.4938179<br></br>Longitude: 19.0527412","Latitude: 47.4789216<br></br>Longitude: 19.0674804","Latitude: 47.464458<br></br>Longitude: 18.889821","Latitude: 47.503532<br></br>Longitude: 19.061284","Latitude: 46.0717412<br></br>Longitude: 18.2317525","Latitude: 52.2301084<br></br>Longitude: 21.0026871","Latitude: 54.5393568<br></br>Longitude: 18.4510433","Latitude: 52.2012208<br></br>Longitude: 20.8946991","Latitude: 51.7498249<br></br>Longitude: 19.44099","Latitude: 38.753447<br></br>Longitude: -9.185945","Latitude: 49.2409281<br></br>Longitude: 6.1776768","Latitude: 49.0425326<br></br>Longitude: 11.3419474","Latitude: 47.7431689<br></br>Longitude: 8.9722189","Latitude: 51.1995012<br></br>Longitude: 5.9886089","Latitude: 53.1536204<br></br>Longitude: -6.9166309","Latitude: 41.7176924<br></br>Longitude: 12.4453221","Latitude: 51.1351492<br></br>Longitude: 0.8754928","Latitude: 51.532001<br></br>Longitude: -3.577854","Latitude: 53.7127633<br></br>Longitude: -1.3356137","Latitude: 55.883361<br></br>Longitude: -3.521561","Latitude: 53.107461<br></br>Longitude: -1.311821","Latitude: 53.92211<br></br>Longitude: -1.076834","Latitude: 44.8559164<br></br>Longitude: -0.5623546","Latitude: 47.0053601<br></br>Longitude: 11.5056342","Latitude: 49.6097453<br></br>Longitude: 5.8086233","Latitude: 38.7501309<br></br>Longitude: -8.9388554","Latitude: 40.272131<br></br>Longitude: -3.693468","Latitude: 37.48232<br></br>Longitude: -5.95031","Latitude: 41.3012968<br></br>Longitude: -8.7064829","Latitude: 41.0199076<br></br>Longitude: 14.3248951","Latitude: 41.3863794<br></br>Longitude: 2.171936","Latitude: 41.1405269<br></br>Longitude: -8.6366443","Latitude: 38.75333<br></br>Longitude: -9.187984","Latitude: 45.4852079<br></br>Longitude: 9.2160159","Latitude: 44.7237489<br></br>Longitude: 8.8578329","Latitude: 45.4560713<br></br>Longitude: 9.1806342","Latitude: 45.0877573<br></br>Longitude: 10.8566103","Latitude: 41.764114<br></br>Longitude: 12.952405","Latitude: 41.9066258<br></br>Longitude: 12.4779048","Latitude: 45.5918303<br></br>Longitude: 9.2447974","Latitude: 43.9856572<br></br>Longitude: 11.218069","Latitude: 41.7175875<br></br>Longitude: 12.4444245","Latitude: 41.971711<br></br>Longitude: 12.540334","Latitude: 45.5760889<br></br>Longitude: 10.1196246","Latitude: 43.2286325<br></br>Longitude: 11.7981068","Latitude: 45.885942<br></br>Longitude: 13.3422291","Latitude: 44.4325554<br></br>Longitude: 11.6069819","Latitude: 41.0130469<br></br>Longitude: 14.3210891","Latitude: 47.9775783<br></br>Longitude: 16.8486818","Latitude: 50.0740267<br></br>Longitude: 14.539281","Latitude: 48.3298034<br></br>Longitude: 4.104969","Latitude: 54.8976539<br></br>Longitude: 23.9111129","Latitude: 49.229712<br></br>Longitude: 6.181443","Latitude: 50.6346361<br></br>Longitude: 3.0642183","Latitude: 48.32759<br></br>Longitude: 4.1098655","Latitude: 43.293419<br></br>Longitude: 5.3784817","Latitude: 45.7615628<br></br>Longitude: 4.8559895","Latitude: 50.928381<br></br>Longitude: 1.806652","Latitude: 48.5827938<br></br>Longitude: 7.747034","Latitude: 48.8691311<br></br>Longitude: 2.3096951","Latitude: 43.7013747<br></br>Longitude: 7.2678294","Latitude: 48.9531713<br></br>Longitude: 2.6655061","Latitude: 43.6025127<br></br>Longitude: 1.4436926","Latitude: 48.6898313<br></br>Longitude: 7.4990482","Latitude: 48.8564343<br></br>Longitude: 2.3605785","Latitude: 43.417367<br></br>Longitude: 5.355766","Latitude: 45.7418282<br></br>Longitude: 4.8162608","Latitude: 48.8370364<br></br>Longitude: 8.0860313","Latitude: 48.8289271<br></br>Longitude: 1.9723746","Latitude: 53.415763<br></br>Longitude: -2.135182","Latitude: 50.795065<br></br>Longitude: -1.106","Latitude: 56.1494827<br></br>Longitude: -3.7416245","Latitude: 53.03029<br></br>Longitude: 8.80412","Latitude: 49.2305772<br></br>Longitude: 7.4036021","Latitude: 52.5244903<br></br>Longitude: 13.4076185","Latitude: 49.5739222<br></br>Longitude: 10.91697","Latitude: 47.7656164<br></br>Longitude: 12.9066569","Latitude: 48.5362549<br></br>Longitude: 9.2800277","Latitude: 52.5408846<br></br>Longitude: 12.9781989","Latitude: 48.1598175<br></br>Longitude: 11.5795734","Latitude: 49.4508619<br></br>Longitude: 11.0706416","Latitude: 50.1141146<br></br>Longitude: 8.6820545","Latitude: 52.5036767<br></br>Longitude: 13.3372294","Latitude: 53.5506899<br></br>Longitude: 9.9999832","Latitude: 52.4291638<br></br>Longitude: 10.7929636","Latitude: 49.573794<br></br>Longitude: 10.9163554","Latitude: 50.9383906<br></br>Longitude: 6.941662","Latitude: 50.9367067<br></br>Longitude: 6.9519379","Latitude: 48.13604<br></br>Longitude: 11.57161","Latitude: 52.5225471<br></br>Longitude: 5.4402769","Latitude: 48.9885475<br></br>Longitude: 2.2066178","Latitude: 50.6888182<br></br>Longitude: 3.1825966","Latitude: 48.2753384<br></br>Longitude: 4.0840401","Latitude: 54.8153664<br></br>Longitude: -1.374724","Latitude: 40.5671753<br></br>Longitude: -3.6080827","Latitude: 40.4535735<br></br>Longitude: -3.6864384","Latitude: 41.6510463<br></br>Longitude: -0.8815782","Latitude: 41.6452376<br></br>Longitude: -0.8849612","Latitude: 41.6706588<br></br>Longitude: -0.8897861","Latitude: 40.4176834<br></br>Longitude: -3.7049581","Latitude: 40.4468<br></br>Longitude: -3.6945","Latitude: 39.4708481<br></br>Longitude: -0.3713513","Latitude: 40.4245905<br></br>Longitude: -3.6748099","Latitude: 40.4976776<br></br>Longitude: -3.6611092","Latitude: 40.4947514<br></br>Longitude: -3.8689976","Latitude: 40.4763604<br></br>Longitude: -3.7025823","Latitude: 41.60901<br></br>Longitude: -0.88769","Latitude: 40.4137529<br></br>Longitude: -3.7263968","Latitude: 40.2991027<br></br>Longitude: -3.9281234","Latitude: 40.4462241<br></br>Longitude: -3.5340758","Latitude: 40.301038<br></br>Longitude: -3.777102","Latitude: 41.60901<br></br>Longitude: -0.88769","Latitude: 59.4027512<br></br>Longitude: 24.7166509","Latitude: 59.4027512<br></br>Longitude: 24.7166509","Latitude: 55.7280072<br></br>Longitude: 24.3659131","Latitude: 53.5070646<br></br>Longitude: -1.1209214","Latitude: 52.4784064<br></br>Longitude: -1.89589","Latitude: 51.5140917<br></br>Longitude: -0.1513459","Latitude: 54.7285334<br></br>Longitude: -6.2293397","Latitude: 51.1281757<br></br>Longitude: -2.7419557","Latitude: 51.5137565<br></br>Longitude: -0.1278298","Latitude: 51.5135976<br></br>Longitude: -0.1385979","Latitude: 53.3764777<br></br>Longitude: -2.1378979","Latitude: 53.4061432<br></br>Longitude: -2.9850822","Latitude: 53.4039503<br></br>Longitude: -2.9877693","Latitude: 51.508194<br></br>Longitude: -0.222115","Latitude: 51.869447<br></br>Longitude: 0.570681","Latitude: 51.543077<br></br>Longitude: -0.007467","Latitude: 51.4930383<br></br>Longitude: -0.1692134","Latitude: 53.4826041<br></br>Longitude: -2.2425113","Latitude: 41.230743<br></br>Longitude: -0.05777","Latitude: 40.3456629<br></br>Longitude: -3.7981931","Latitude: 40.258538<br></br>Longitude: -0.748246","Latitude: 37.386398<br></br>Longitude: -6.028287","Latitude: 41.3815268<br></br>Longitude: 2.1759727","Latitude: 41.3882079<br></br>Longitude: 2.1692814","Latitude: 40.4231819<br></br>Longitude: -3.7004821","Latitude: 52.5232481<br></br>Longitude: 5.4403219","Latitude: 51.1994851<br></br>Longitude: 5.9880787","Latitude: 52.3664045<br></br>Longitude: 4.8877451","Latitude: 52.3093388<br></br>Longitude: 4.9440836","Latitude: 38.659614<br></br>Longitude: -9.17535","Latitude: 41.1801123<br></br>Longitude: -8.6545188","Latitude: 41.215793<br></br>Longitude: 16.548251","Latitude: 39.6338312<br></br>Longitude: 2.7321047","Latitude: 43.2683617<br></br>Longitude: 5.3941153","Latitude: 43.2964788<br></br>Longitude: 5.3784179","Latitude: 43.294381<br></br>Longitude: 5.477278","Latitude: 54.714619<br></br>Longitude: 25.2980859","Latitude: 56.9518062<br></br>Longitude: 24.1219583","Latitude: 48.176228<br></br>Longitude: 17.1462151","Latitude: 41.3863794<br></br>Longitude: 2.171936","Latitude: 51.4901771<br></br>Longitude: 6.8811002","Latitude: 37.957463<br></br>Longitude: 23.704417","Latitude: 37.9296479<br></br>Longitude: 23.70982","Latitude: 37.922907<br></br>Longitude: 23.930107","Latitude: 37.9590529<br></br>Longitude: 23.6876163","Latitude: 38.0109696<br></br>Longitude: 23.8106407","Latitude: 38.023576<br></br>Longitude: 23.7308856","Latitude: 37.9763799<br></br>Longitude: 23.729072","Latitude: 37.989365<br></br>Longitude: 23.90775","Latitude: 38.006223<br></br>Longitude: 23.776783","Latitude: 35.1668408<br></br>Longitude: 33.3549618","Latitude: 35.14884<br></br>Longitude: 33.3727477","Latitude: 34.914269<br></br>Longitude: 33.6307999","Latitude: 34.9143352<br></br>Longitude: 33.6349392","Latitude: 48.8623348<br></br>Longitude: 2.3447356","Latitude: 38.7501309<br></br>Longitude: -8.9388554","Latitude: 37.1288911<br></br>Longitude: -8.2784832","Latitude: 52.3093388<br></br>Longitude: 4.9440836","Latitude: 53.3498053<br></br>Longitude: -6.2603097","Latitude: 48.6088738<br></br>Longitude: 2.4471659","Latitude: 39.472227<br></br>Longitude: -0.3912159","Latitude: 53.413853<br></br>Longitude: -2.133873","Latitude: 52.2997868<br></br>Longitude: 21.0257838","Latitude: 51.453601<br></br>Longitude: -0.9713884","Latitude: 51.4126426<br></br>Longitude: -0.3034615","Latitude: 53.342896<br></br>Longitude: -6.2610423","Latitude: 51.513247<br></br>Longitude: -0.1471834","Latitude: 59.3092761<br></br>Longitude: 18.0227693","Latitude: 41.3012968<br></br>Longitude: -8.7064829","Latitude: 38.7660462<br></br>Longitude: -9.0982214","Latitude: 53.712343<br></br>Longitude: -1.337065","Latitude: 38.7540395<br></br>Longitude: -9.1881688","Latitude: 54.815471<br></br>Longitude: -1.383062","Latitude: 53.3764777<br></br>Longitude: -2.1378979","Latitude: 53.263725<br></br>Longitude: -2.880714","Latitude: 53.7967537<br></br>Longitude: -1.5452805","Latitude: 55.8247235<br></br>Longitude: -4.3484925","Latitude: 54.9747834<br></br>Longitude: -1.6150013","Latitude: 51.5571339<br></br>Longitude: -0.2823138","Latitude: 48.87572<br></br>Longitude: 2.3254796","Latitude: 51.438271<br></br>Longitude: 0.272144","Latitude: 51.5126736<br></br>Longitude: -0.1248365","Latitude: 51.4902482<br></br>Longitude: -0.1619703","Latitude: 51.5135763<br></br>Longitude: -0.139752","Latitude: 51.5564678<br></br>Longitude: -0.2839429","Latitude: 51.236143<br></br>Longitude: -0.5735239","Latitude: 51.40373<br></br>Longitude: 0.016433","Latitude: 45.467558<br></br>Longitude: 8.4611829","Latitude: 51.4609727<br></br>Longitude: -0.3034854","Latitude: 52.5100232<br></br>Longitude: 13.3796958","Latitude: 51.7522936<br></br>Longitude: -1.257583","Latitude: 43.3064626<br></br>Longitude: 5.3651968","Latitude: 48.959153<br></br>Longitude: 1.855947","Latitude: 43.4215182<br></br>Longitude: 5.3594753","Latitude: 51.4391631<br></br>Longitude: 0.2701772","Latitude: 53.2171253<br></br>Longitude: 6.5675915","Latitude: 51.917693<br></br>Longitude: 4.4765365","Latitude: 51.4393529<br></br>Longitude: 5.4778998","Latitude: 51.5848716<br></br>Longitude: 4.7770215","Latitude: 52.0764809<br></br>Longitude: 4.3095709","Latitude: 52.0915427<br></br>Longitude: 5.1157616","Latitude: 51.9822886<br></br>Longitude: 5.9099747","Latitude: 51.9501452<br></br>Longitude: 4.5534777","Latitude: 52.1544229<br></br>Longitude: 5.3867572","Latitude: 52.378324<br></br>Longitude: 4.6325069","Latitude: 47.0054252<br></br>Longitude: 11.5058793","Latitude: 48.9913196<br></br>Longitude: 2.5232805","Latitude: 51.3396815<br></br>Longitude: 12.3792896","Latitude: 49.0108263<br></br>Longitude: 12.0979666","Latitude: 52.2573732<br></br>Longitude: 20.9845828","Latitude: 52.4029819<br></br>Longitude: 16.9146127","Latitude: 52.1797059<br></br>Longitude: 21.0044544","Latitude: 50.0320692<br></br>Longitude: 14.4909962","Latitude: 53.194278<br></br>Longitude: 50.247064","Latitude: 66.082851<br></br>Longitude: 76.631386","Latitude: 43.0977618<br></br>Longitude: -78.9754715","Latitude: 35.907757<br></br>Longitude: 127.766922","Latitude: 38.9462202<br></br>Longitude: -94.7451661","Latitude: 41.7582758<br></br>Longitude: -88.2122966","Latitude: 43.3546922<br></br>Longitude: -80.318477","Latitude: 40.56711<br></br>Longitude: -3.60803","Latitude: 37.566535<br></br>Longitude: 126.9779692","Latitude: 37.566535<br></br>Longitude: 126.9779692","Latitude: 32.1679321<br></br>Longitude: -95.6691277","Latitude: 33.8637405<br></br>Longitude: -118.2610826","Latitude: 33.4001344<br></br>Longitude: -111.9583028","Latitude: 29.5936492<br></br>Longitude: -95.6214404","Latitude: 36.204824<br></br>Longitude: 138.252924","Latitude: 36.204824<br></br>Longitude: 138.252924","Latitude: 34.0931603<br></br>Longitude: -118.3783347","Latitude: 39.1307186<br></br>Longitude: -84.5149797","Latitude: 42.1572628<br></br>Longitude: -71.0640337","Latitude: 50.4505<br></br>Longitude: 30.523","Latitude: 40.6331249<br></br>Longitude: -89.3985283","Latitude: 41.8526229<br></br>Longitude: -87.6119577","Latitude: 40.7503676<br></br>Longitude: -73.8456118","Latitude: 26.1960319<br></br>Longitude: -98.2801963","Latitude: 30.3594122<br></br>Longitude: -97.6965483","Latitude: 33.6558659<br></br>Longitude: -84.5083023","Latitude: 45.4781169<br></br>Longitude: -122.7762143","Latitude: 41.691722<br></br>Longitude: -92.0049403","Latitude: 36.778261<br></br>Longitude: -119.4179324","Latitude: 37.705736<br></br>Longitude: -122.4200457","Latitude: 28.4475452<br></br>Longitude: -81.3880972","Latitude: 43.7033541<br></br>Longitude: -79.6379294","Latitude: 39.1258348<br></br>Longitude: -94.8241035","Latitude: 32.236036<br></br>Longitude: 17.655029","Latitude: -35.675147<br></br>Longitude: -71.542969","Latitude: 33.07173<br></br>Longitude: -117.0659848","Latitude: 55.7320705<br></br>Longitude: 37.6144318","Latitude: 43.0876421<br></br>Longitude: -79.1204567","Latitude: 37.2521321<br></br>Longitude: -121.863377","Latitude: 41.3903722<br></br>Longitude: 2.1665982","Latitude: 1.352083<br></br>Longitude: 103.819836","Latitude: 36.746805<br></br>Longitude: -95.973124","Latitude: 28.5521524<br></br>Longitude: -81.4811004","Latitude: 42.3473272<br></br>Longitude: -71.0866421","Latitude: 32.656186<br></br>Longitude: -117.065741","Latitude: 3.0738379<br></br>Longitude: 101.5183469","Latitude: 47.4750137<br></br>Longitude: 19.0492481","Latitude: 35.7088306<br></br>Longitude: 139.7600967","Latitude: 26.1892512<br></br>Longitude: -98.2115884","Latitude: 52.4010733<br></br>Longitude: 16.9284192","Latitude: 51.0989844<br></br>Longitude: 17.0366461","Latitude: 33.383123<br></br>Longitude: -111.964485","Latitude: 29.2707637<br></br>Longitude: -94.8304338","Latitude: 26.1892512<br></br>Longitude: -98.2115884","Latitude: 42.6242077<br></br>Longitude: -83.9991991","Latitude: 33.347566<br></br>Longitude: -84.1230327","Latitude: 28.5398381<br></br>Longitude: -81.4014088","Latitude: 28.554645<br></br>Longitude: -81.2037697","Latitude: 33.9263432<br></br>Longitude: -118.1653749","Latitude: 33.8975601<br></br>Longitude: -83.9613458","Latitude: 42.5161208<br></br>Longitude: -87.9500072","Latitude: 39.4147491<br></br>Longitude: -104.872852","Latitude: 34.2509687<br></br>Longitude: -83.4735576","Latitude: 44.4226633<br></br>Longitude: 26.1790953","Latitude: 46.771811<br></br>Longitude: 23.6297732","Latitude: 44.504148<br></br>Longitude: 26.0813065","Latitude: -33.7703548<br></br>Longitude: 151.2661042","Latitude: 1.2993784<br></br>Longitude: 103.8478027","Latitude: -37.7979405<br></br>Longitude: 144.9843467","Latitude: -37.7870855<br></br>Longitude: 145.1259904","Latitude: 44.4199549<br></br>Longitude: 26.1260506","Latitude: 47.16663<br></br>Longitude: 27.5942673","Latitude: 53.2503079<br></br>Longitude: 34.332019","Latitude: 55.863555<br></br>Longitude: 37.546021","Latitude: 51.577863<br></br>Longitude: 45.971096","Latitude: 47.229241<br></br>Longitude: 39.628632","Latitude: 55.572235<br></br>Longitude: 37.608658","Latitude: 1.2996492<br></br>Longitude: 103.8542702","Latitude: 30.5655981<br></br>Longitude: -97.6903305","Latitude: 1.334807<br></br>Longitude: 103.746939","Latitude: 36.074507<br></br>Longitude: -79.2660193","Latitude: 42.5176793<br></br>Longitude: -87.949284","Latitude: 34.006156<br></br>Longitude: -118.1516239","Latitude: 57.6272392<br></br>Longitude: 39.8693454","Latitude: 55.423806<br></br>Longitude: 37.505384","Latitude: 56.3023384<br></br>Longitude: 38.1330574","Latitude: 55.846367<br></br>Longitude: 37.3580736","Latitude: 42.8349541<br></br>Longitude: 132.8864207","Latitude: 40.1616374<br></br>Longitude: -74.4174029","Latitude: 40.6601883<br></br>Longitude: -74.1713372","Latitude: 38.7886387<br></br>Longitude: -90.4132318","Latitude: 44.1543646<br></br>Longitude: 28.6075696","Latitude: 44.9441882<br></br>Longitude: 26.0164094","Latitude: -37.8865803<br></br>Longitude: 145.0824062","Latitude: -27.5313059<br></br>Longitude: 152.9482384","Latitude: 44.4150552<br></br>Longitude: 26.0801301","Latitude: -33.846152<br></br>Longitude: 151.0447065","Latitude: 1.3065642<br></br>Longitude: 103.8320626","Latitude: 35.6699682<br></br>Longitude: 139.709008","Latitude: 57.9931927<br></br>Longitude: 56.2094206","Latitude: 1.3174445<br></br>Longitude: 103.8435719","Latitude: 38.9830345<br></br>Longitude: -76.1594172","Latitude: 18.4064056<br></br>Longitude: -66.1614183","Latitude: 55.7091749<br></br>Longitude: 37.5956129","Latitude: 40.2243495<br></br>Longitude: -74.0948707","Latitude: 39.3606991<br></br>Longitude: -74.4361153","Latitude: 40.2369254<br></br>Longitude: -75.571449","Latitude: 55.679831<br></br>Longitude: 37.889439","Latitude: 56.050485<br></br>Longitude: 92.9033518","Latitude: 58.050062<br></br>Longitude: 38.833534","Latitude: 55.982686<br></br>Longitude: 37.174843","Latitude: 52.5122417<br></br>Longitude: 85.1737835","Latitude: 26.4362393<br></br>Longitude: -81.7746935","Latitude: 44.3952306<br></br>Longitude: 26.1231594","Latitude: 44.898537<br></br>Longitude: 37.32785","Latitude: 33.1314542<br></br>Longitude: -96.6628932","Latitude: 45.7667292<br></br>Longitude: 21.2285552","Latitude: 26.1531617<br></br>Longitude: -80.3216515","Latitude: -37.7734423<br></br>Longitude: 144.8893441","Latitude: 45.643213<br></br>Longitude: 25.5918016","Latitude: -37.9708736<br></br>Longitude: 145.0888386","Latitude: -37.8253793<br></br>Longitude: 144.9488899","Latitude: 44.2030374<br></br>Longitude: 28.6304329","Latitude: 51.837561<br></br>Longitude: 107.593807","Latitude: 56.7888713<br></br>Longitude: 60.6488331","Latitude: 55.104335<br></br>Longitude: 82.960827","Latitude: 44.4308883<br></br>Longitude: 26.052093","Latitude: 39.4329402<br></br>Longitude: -84.3390545","Latitude: 50.6420402<br></br>Longitude: 36.5719357","Latitude: 54.8217435<br></br>Longitude: 56.0857628","Latitude: 32.5439081<br></br>Longitude: -117.04444","Latitude: 46.2015526<br></br>Longitude: 21.289091","Latitude: 1.3330647<br></br>Longitude: 103.7432852","Latitude: 54.7527793<br></br>Longitude: 56.0218588","Latitude: 29.996689<br></br>Longitude: -95.7573375","Latitude: 51.5303507<br></br>Longitude: 46.0631258","Latitude: 32.8741204<br></br>Longitude: -80.0181733","Latitude: 55.980749<br></br>Longitude: 37.302901","Latitude: 41.8003181<br></br>Longitude: -88.2739212","Latitude: 56.8290891<br></br>Longitude: 60.5989643","Latitude: 56.236931<br></br>Longitude: 43.462689","Latitude: 54.9640355<br></br>Longitude: 82.9361856","Latitude: -33.8701158<br></br>Longitude: 151.2089158","Latitude: -28.004695<br></br>Longitude: 153.4095259","Latitude: 45.1562098<br></br>Longitude: -122.8782898","Latitude: 54.7527793<br></br>Longitude: 56.0218588","Latitude: 33.9252<br></br>Longitude: -116.8106785","Latitude: -27.9313635<br></br>Longitude: 153.3877568","Latitude: 44.374859<br></br>Longitude: 26.121185","Latitude: 25.955167<br></br>Longitude: 44.434169","Latitude: 55.689735<br></br>Longitude: 37.603108","Latitude: 42.8246326<br></br>Longitude: -71.5018896","Latitude: 28.3881533<br></br>Longitude: -81.4892916","Latitude: 54.1608758<br></br>Longitude: 45.1503218","Latitude: 56.9007299<br></br>Longitude: 60.6140016","Latitude: 1.3039637<br></br>Longitude: 103.8513784","Latitude: 48.0934009<br></br>Longitude: -122.1876843","Latitude: 32.2391079<br></br>Longitude: -80.8204632","Latitude: 48.0942886<br></br>Longitude: -122.1891958","Latitude: 43.4310925<br></br>Longitude: 39.935059","Latitude: 18.4387465<br></br>Longitude: -66.5407146","Latitude: 46.0807099<br></br>Longitude: 23.5843138","Latitude: 55.028572<br></br>Longitude: 82.36396","Latitude: 1.2959723<br></br>Longitude: 103.8586054","Latitude: 40.4406248<br></br>Longitude: -79.9958864","Latitude: 53.6222555<br></br>Longitude: 55.9016196","Latitude: 57.6272392<br></br>Longitude: 39.8693454","Latitude: 55.7141765<br></br>Longitude: 84.9143716","Latitude: 36.1630111<br></br>Longitude: -115.1583136","Latitude: 54.9921163<br></br>Longitude: 73.3100914","Latitude: -37.813951<br></br>Longitude: 144.965047","Latitude: -27.502998<br></br>Longitude: 153.101627","Latitude: 45.6593264<br></br>Longitude: 25.6079072","Latitude: 57.679278<br></br>Longitude: 39.793771","Latitude: 45.2459438<br></br>Longitude: -93.6685672","Latitude: 53.220613<br></br>Longitude: 50.263434","Latitude: 68.9049682<br></br>Longitude: 33.0914908","Latitude: 44.427732<br></br>Longitude: 26.093354","Latitude: 1.3051592<br></br>Longitude: 103.9050673","Latitude: 29.4255911<br></br>Longitude: -95.0560331","Latitude: 44.4317046<br></br>Longitude: 26.1020431","Latitude: 44.029976<br></br>Longitude: 43.126969","Latitude: 32.6786512<br></br>Longitude: -97.0545496","Latitude: 54.9921163<br></br>Longitude: 73.3100914","Latitude: 35.4619123<br></br>Longitude: -97.6479396","Latitude: -31.9478025<br></br>Longitude: 115.8474237","Latitude: 55.117136<br></br>Longitude: 36.593309","Latitude: 55.982686<br></br>Longitude: 37.174843","Latitude: 33.7843344<br></br>Longitude: -78.7742585","Latitude: 55.789911<br></br>Longitude: 37.74914","Latitude: 1.3199825<br></br>Longitude: 103.8438568","Latitude: 40.7632099<br></br>Longitude: -73.3059881","Latitude: 57.6272392<br></br>Longitude: 39.8693454","Latitude: 56.3023384<br></br>Longitude: 38.1330574","Latitude: 42.8349541<br></br>Longitude: 132.8864207","Latitude: 54.717483<br></br>Longitude: 20.5004646","Latitude: 29.7755219<br></br>Longitude: -95.8093454","Latitude: 45.0648243<br></br>Longitude: 41.9303006","Latitude: 18.4400116<br></br>Longitude: -66.5397385","Latitude: 59.4061425<br></br>Longitude: 56.8059609","Latitude: 59.9219939<br></br>Longitude: 30.355076","Latitude: 59.820002<br></br>Longitude: 30.316475","Latitude: 48.4839158<br></br>Longitude: 135.0937053","Latitude: 54.631775<br></br>Longitude: 39.698124","Latitude: 55.7085458<br></br>Longitude: 37.6565779","Latitude: 33.896299<br></br>Longitude: 35.484413","Latitude: 14.528925<br></br>Longitude: 121.057522","Latitude: 55.670305<br></br>Longitude: 37.552331","Latitude: 43.9120535<br></br>Longitude: 42.7190492","Latitude: 55.771195<br></br>Longitude: 37.619903","Latitude: 55.771195<br></br>Longitude: 37.619903","Latitude: 45.8132498<br></br>Longitude: 15.9720748","Latitude: 39.883642<br></br>Longitude: 32.825994","Latitude: 24.170719<br></br>Longitude: 45.774074","Latitude: 45.772899<br></br>Longitude: 15.9447556","Latitude: 38.3587833<br></br>Longitude: 27.1362371","Latitude: 36.9219161<br></br>Longitude: 30.7849175","Latitude: 40.9380201<br></br>Longitude: 29.3231511","Latitude: 40.7541887<br></br>Longitude: 29.9459505","Latitude: 41.0089988<br></br>Longitude: 28.8962236","Latitude: 35.5099498<br></br>Longitude: 139.4707844","Latitude: 34.8579067<br></br>Longitude: 135.1905102","Latitude: 38.341447<br></br>Longitude: 140.8371656","Latitude: 28.4688057<br></br>Longitude: -81.4525018","Latitude: 35.6613587<br></br>Longitude: 139.7301149","Latitude: 34.0059677<br></br>Longitude: -118.1525208","Latitude: 35.6613587<br></br>Longitude: 139.7301149","Latitude: 38.6405454<br></br>Longitude: -77.2948597","Latitude: 44.56231<br></br>Longitude: 38.0777998","Latitude: 54.1819854<br></br>Longitude: 45.180322","Latitude: 45.0261477<br></br>Longitude: 41.9348872","Latitude: 56.313552<br></br>Longitude: 43.8916993","Latitude: 55.891749<br></br>Longitude: 37.748746","Latitude: 32.0152866<br></br>Longitude: 34.8010698","Latitude: 44.993702<br></br>Longitude: 41.078637","Latitude: 14.607493<br></br>Longitude: 120.97291","Latitude: 55.8129166<br></br>Longitude: 38.4302538","Latitude: 55.780915<br></br>Longitude: 49.213188","Latitude: 44.109159<br></br>Longitude: 15.239344","Latitude: 41.118373<br></br>Longitude: 28.996499","Latitude: 37.7657295<br></br>Longitude: 27.421375","Latitude: 39.8905545<br></br>Longitude: 32.9337461","Latitude: 0.410252<br></br>Longitude: 0.284841","Latitude: 42.9709593<br></br>Longitude: 141.4712745","Latitude: 35.8101879<br></br>Longitude: 139.3802147","Latitude: 26.1590251<br></br>Longitude: 127.6569557","Latitude: 33.983<br></br>Longitude: 35.6174","Latitude: 59.8300874<br></br>Longitude: 30.3787322","Latitude: 52.592258<br></br>Longitude: 39.525385","Latitude: 43.590927<br></br>Longitude: 16.573757","Latitude: 40.7504076<br></br>Longitude: 29.9485788","Latitude: 35.8625353<br></br>Longitude: 139.9706982","Latitude: 40.9919149<br></br>Longitude: 28.7975316","Latitude: 55.56535<br></br>Longitude: 37.556029","Latitude: 56.118676<br></br>Longitude: 40.352466","Latitude: 44.993702<br></br>Longitude: 41.078637","Latitude: 51.2032209<br></br>Longitude: -113.9930715","Latitude: 34.0730062<br></br>Longitude: -117.5517081","Latitude: 56.0369139<br></br>Longitude: 92.9348314","Latitude: 55.055555<br></br>Longitude: 82.936948","Latitude: 40.8968972<br></br>Longitude: 29.2241498","Latitude: 51.5424438<br></br>Longitude: 46.0146729","Latitude: 14.850748<br></br>Longitude: 120.875293","Latitude: 55.6116674<br></br>Longitude: 37.6017346","Latitude: 55.689735<br></br>Longitude: 37.603108","Latitude: 32.0012763<br></br>Longitude: -81.2845693","Latitude: 41.0718384<br></br>Longitude: 28.923751","Latitude: 46.087773<br></br>Longitude: 15.912664","Latitude: 25.4478898<br></br>Longitude: -80.4792237","Latitude: 36.9662257<br></br>Longitude: 139.9915522","Latitude: 35.0597124<br></br>Longitude: 136.1001831","Latitude: 34.7122845<br></br>Longitude: 135.5935683","Latitude: 59.8264728<br></br>Longitude: 30.3796686","Latitude: 51.777479<br></br>Longitude: 55.1432839","Latitude: 39.9576228<br></br>Longitude: 32.6932808","Latitude: 33.5876049<br></br>Longitude: 130.3951854","Latitude: 41.013333<br></br>Longitude: 28.824939","Latitude: 42.5161208<br></br>Longitude: -87.9500072","Latitude: 44.993702<br></br>Longitude: 41.078637","Latitude: 41.066883<br></br>Longitude: 28.999124","Latitude: 43.1592297<br></br>Longitude: -79.1754871","Latitude: 55.75157<br></br>Longitude: 37.714846","Latitude: 45.8034915<br></br>Longitude: 16.11338","Latitude: 41.054455<br></br>Longitude: 28.8697613","Latitude: 55.73068<br></br>Longitude: 37.737424","Latitude: 59.9119882<br></br>Longitude: 30.446392","Latitude: 37.4323341<br></br>Longitude: -121.8995741","Latitude: 46.087773<br></br>Longitude: 15.912664","Latitude: 40.7461591<br></br>Longitude: -73.6188519","Latitude: 18.423224<br></br>Longitude: -66.074381","Latitude: 43.5383635<br></br>Longitude: -116.1598103","Latitude: 59.848528<br></br>Longitude: 30.148837","Latitude: 55.828798<br></br>Longitude: 49.0930048","Latitude: 41.0666249<br></br>Longitude: 29.0167792","Latitude: 59.9119882<br></br>Longitude: 30.446392","Latitude: 52.272881<br></br>Longitude: 104.290059","Latitude: 40.995341<br></br>Longitude: 28.9097374","Latitude: 43.0656845<br></br>Longitude: 141.3630421","Latitude: 35.9834709<br></br>Longitude: 140.2369789","Latitude: 34.6037506<br></br>Longitude: 133.7620842","Latitude: 51.645711<br></br>Longitude: 39.124923","Latitude: 55.163587<br></br>Longitude: 61.414932","Latitude: 25.0461278<br></br>Longitude: 121.515325","Latitude: 34.6736482<br></br>Longitude: 135.4977411","Latitude: 34.3931856<br></br>Longitude: 132.4595643","Latitude: 45.772899<br></br>Longitude: 15.9447556","Latitude: 39.8792222<br></br>Longitude: 32.6842058","Latitude: 45.8034915<br></br>Longitude: 16.11338","Latitude: 34.7503905<br></br>Longitude: 137.8422547","Latitude: 40.9387419<br></br>Longitude: 29.3222214","Latitude: 18.1789741<br></br>Longitude: -67.150041","Latitude: 55.640905<br></br>Longitude: 37.5306561","Latitude: 45.5392862<br></br>Longitude: -122.3873133","Latitude: 36.1791283<br></br>Longitude: -86.3060547","Latitude: 55.737077<br></br>Longitude: 37.654207","Latitude: 59.8477295<br></br>Longitude: 30.2040974","Latitude: 41.0359094<br></br>Longitude: 28.8143365","Latitude: 38.2752383<br></br>Longitude: 140.9898577","Latitude: 24.1524822<br></br>Longitude: 120.6849139","Latitude: 36.2930054<br></br>Longitude: 139.6048892","Latitude: 34.7040116<br></br>Longitude: 135.5004816","Latitude: 35.4346713<br></br>Longitude: 139.9352931","Latitude: 35.3805111<br></br>Longitude: 139.6475606","Latitude: 14.551841<br></br>Longitude: 121.021938","Latitude: 36.5601256<br></br>Longitude: 136.6542052","Latitude: 38.7322615<br></br>Longitude: 31.1252135","Latitude: 42.362374<br></br>Longitude: -71.1609397","Latitude: 38.332201<br></br>Longitude: 27.134366","Latitude: 32.3408045<br></br>Longitude: -90.8411221","Latitude: 47.4899303<br></br>Longitude: -121.7960122","Latitude: 33.8850629<br></br>Longitude: 130.8827559","Latitude: 35.6585555<br></br>Longitude: 140.0554988","Latitude: 33.5339643<br></br>Longitude: -112.2657155","Latitude: 53.3804654<br></br>Longitude: 58.9798491","Latitude: 53.553444<br></br>Longitude: 49.327354","Latitude: 39.9399022<br></br>Longitude: 32.6550374","Latitude: 57.118783<br></br>Longitude: 65.576591","Latitude: 56.795822<br></br>Longitude: 60.580676","Latitude: 55.163587<br></br>Longitude: 61.414932","Latitude: 52.98<br></br>Longitude: 36.11","Latitude: 55.633433<br></br>Longitude: 37.6243399","Latitude: 55.7926601<br></br>Longitude: 37.5901102","Latitude: 41.0131718<br></br>Longitude: 28.5506158","Latitude: 51.4839324<br></br>Longitude: 46.1294111","Latitude: 54.995497<br></br>Longitude: 73.250791","Latitude: 59.8585559<br></br>Longitude: 30.248689","Latitude: 60.036943<br></br>Longitude: 30.415146","Latitude: 41.062684<br></br>Longitude: 28.989413","Latitude: 31.9495986<br></br>Longitude: 35.9348252","Latitude: 32.005876<br></br>Longitude: 35.8727141","Latitude: 33.8861557<br></br>Longitude: 35.4833361","Latitude: 54.631889<br></br>Longitude: 39.698679","Latitude: 34.4079029<br></br>Longitude: 135.2948118","Latitude: 54.777285<br></br>Longitude: 32.05024","Latitude: 35.6250135<br></br>Longitude: 139.7751123","Latitude: 35.8610087<br></br>Longitude: 139.8642124","Latitude: 54.369188<br></br>Longitude: 48.58716","Latitude: 60.0529384<br></br>Longitude: 30.3347035","Latitude: 54.7135581<br></br>Longitude: 55.9939716","Latitude: 55.825172<br></br>Longitude: 49.152628","Latitude: 56.13753<br></br>Longitude: 47.277807","Latitude: 56.243695<br></br>Longitude: 43.8642209","Latitude: 45.0672512<br></br>Longitude: 38.9735154","Latitude: 55.7085458<br></br>Longitude: 37.6565779","Latitude: 40.9777454<br></br>Longitude: 28.8716234","Latitude: 39.8507147<br></br>Longitude: 32.8475168","Latitude: 40.9826096<br></br>Longitude: 29.0969034","Latitude: 55.000862<br></br>Longitude: 82.961541","Latitude: 59.927157<br></br>Longitude: 30.361324","Latitude: 55.800054<br></br>Longitude: 38.9713926","Latitude: 31.7718163<br></br>Longitude: -106.3801382","Latitude: 43.0940656<br></br>Longitude: 131.9027506","Latitude: 34.6248466<br></br>Longitude: 135.0481888","Latitude: 31.9557224<br></br>Longitude: 35.8654534","Latitude: 33.2872923<br></br>Longitude: -111.9733833","Latitude: 51.5053799<br></br>Longitude: 45.9512355","Latitude: 52.6053687<br></br>Longitude: 39.5789777","Latitude: 51.668465<br></br>Longitude: 39.1822824","Latitude: 53.217206<br></br>Longitude: 50.1490741","Latitude: 55.7892806<br></br>Longitude: 37.6783149","Latitude: 53.209338<br></br>Longitude: 50.170989","Latitude: 32.9275759<br></br>Longitude: 35.3245784","Latitude: 68.888404<br></br>Longitude: 33.09722","Latitude: 54.710284<br></br>Longitude: 20.541796","Latitude: 57.993273<br></br>Longitude: 56.247235","Latitude: 48.692412<br></br>Longitude: 44.4927377","Latitude: 41.049428<br></br>Longitude: 28.895953","Latitude: 41.0633529<br></br>Longitude: 28.9922165","Latitude: 39.979477<br></br>Longitude: 32.817741","Latitude: 39.900545<br></br>Longitude: 32.691178","Latitude: 60.002195<br></br>Longitude: 30.2727","Latitude: 57.808855<br></br>Longitude: 28.365528","Latitude: 60.058501<br></br>Longitude: 30.338184","Latitude: 54.3066691<br></br>Longitude: 48.3600502","Latitude: 40.9909685<br></br>Longitude: 29.0905445","Latitude: 31.9933489<br></br>Longitude: 35.8616351","Latitude: 35.029435<br></br>Longitude: 136.7257996","Latitude: 39.908453<br></br>Longitude: 32.777215","Latitude: 55.648992<br></br>Longitude: 51.845462","Latitude: 35.3070492<br></br>Longitude: 138.9650778","Latitude: 33.9267<br></br>Longitude: 35.5879","Latitude: 53.128102<br></br>Longitude: 45.02444","Latitude: 31.9599421<br></br>Longitude: 35.8824475","Latitude: 55.6917679<br></br>Longitude: 37.8966663","Latitude: 38.6786338<br></br>Longitude: -90.6623009","Latitude: 55.792423<br></br>Longitude: 49.101944","Latitude: 56.390693<br></br>Longitude: 61.92993","Latitude: 55.0566719<br></br>Longitude: 82.9356794","Latitude: 41.0586534<br></br>Longitude: 28.8971139","Latitude: 53.7607854<br></br>Longitude: 87.1006836","Latitude: 32.0127848<br></br>Longitude: 36.0572539","Latitude: 40.9972647<br></br>Longitude: 28.8862581","Latitude: 54.0153116<br></br>Longitude: 38.2863243","Latitude: 55.789548<br></br>Longitude: 37.75257","Latitude: 41.108362<br></br>Longitude: 29.0263468","Latitude: 60.0114128<br></br>Longitude: 30.397839","Latitude: 55.160634<br></br>Longitude: 61.383926","Latitude: 56.020283<br></br>Longitude: 93.009857","Latitude: 40.977746<br></br>Longitude: 28.873027","Latitude: 54.3066691<br></br>Longitude: 48.3600502","Latitude: 60.0014719<br></br>Longitude: 30.2477713","Latitude: 41.0394194<br></br>Longitude: 28.8777357","Latitude: 61.2376272<br></br>Longitude: 73.4470362","Latitude: 31.9376412<br></br>Longitude: 35.8874813","Latitude: 56.0419152<br></br>Longitude: 92.9132406","Latitude: 35.6141884<br></br>Longitude: 139.3773164","Latitude: 33.9267<br></br>Longitude: 35.5879","Latitude: 54.6746021<br></br>Longitude: 55.928746","Latitude: 56.633886<br></br>Longitude: 47.884858","Latitude: 53.0697086<br></br>Longitude: 158.6154405","Latitude: 52.0318565<br></br>Longitude: 113.5055781","Latitude: 54.191968<br></br>Longitude: 37.688415","Latitude: 45.0256296<br></br>Longitude: 39.0462414","Latitude: 54.316607<br></br>Longitude: 48.387467","Latitude: 51.694265<br></br>Longitude: 39.27417","Latitude: 55.548552<br></br>Longitude: 37.5424999","Latitude: 33.9653559<br></br>Longitude: 35.6268368","Latitude: 56.3461026<br></br>Longitude: 30.5614642","Latitude: 29.5315338<br></br>Longitude: 35.0009159","Latitude: 56.265641<br></br>Longitude: 43.913163","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 34.7173455<br></br>Longitude: 135.3644131","Latitude: 55.56535<br></br>Longitude: 37.556029","Latitude: 51.705856<br></br>Longitude: 36.1670441","Latitude: 59.8689419<br></br>Longitude: 30.3506892","Latitude: 38.4493616<br></br>Longitude: 27.2151664","Latitude: 45.0114655<br></br>Longitude: 39.1221652","Latitude: 33.8886<br></br>Longitude: 35.4955","Latitude: 59.908601<br></br>Longitude: 30.483655","Latitude: 55.739116<br></br>Longitude: 52.4037055","Latitude: 41.0216379<br></br>Longitude: 29.1223673","Latitude: 54.6746021<br></br>Longitude: 55.928746","Latitude: 53.016581<br></br>Longitude: 36.160185","Latitude: 45.0113417<br></br>Longitude: 39.1219267","Latitude: 29.5315338<br></br>Longitude: 35.0031046","Latitude: 55.844889<br></br>Longitude: 37.659798","Latitude: 54.1819854<br></br>Longitude: 45.180322","Latitude: 54.192041<br></br>Longitude: 37.619135","Latitude: 48.3960551<br></br>Longitude: 135.1059481","Latitude: 45.0113417<br></br>Longitude: 39.1219267","Latitude: 19.3978437<br></br>Longitude: -99.2823755","Latitude: 19.3978437<br></br>Longitude: -99.2823755","Latitude: 19.3172634<br></br>Longitude: -99.3254361","Latitude: 19.6013234<br></br>Longitude: -99.2018749","Latitude: 19.3769129<br></br>Longitude: -99.0955917","Latitude: 25.7007099<br></br>Longitude: -100.3603333","Latitude: 19.2962196<br></br>Longitude: -99.6465649","Latitude: 19.2860487<br></br>Longitude: -99.2051871","Latitude: 19.359979<br></br>Longitude: -99.1701514","Latitude: 18.9355614<br></br>Longitude: -99.1925414","Latitude: 19.6887994<br></br>Longitude: -101.1575078","Latitude: 32.9689168<br></br>Longitude: 35.5474181","Latitude: 32.197303<br></br>Longitude: 34.877858","Latitude: 48.749197<br></br>Longitude: 44.497171","Latitude: 22.2856649<br></br>Longitude: 114.2174133","Latitude: 22.297459<br></br>Longitude: 114.173641","Latitude: 31.7516011<br></br>Longitude: 35.1873157","Latitude: 44.88011<br></br>Longitude: 37.339225","Latitude: 55.606648<br></br>Longitude: 37.536188","Latitude: 55.8632055<br></br>Longitude: 37.6020458","Latitude: 55.846367<br></br>Longitude: 37.3580736","Latitude: 32.7858205<br></br>Longitude: 35.5402427","Latitude: 56.8768626<br></br>Longitude: 53.2045102","Latitude: 56.342799<br></br>Longitude: 37.515808","Latitude: 62.142988<br></br>Longitude: 65.4380581","Latitude: 19.6022861<br></br>Longitude: -99.1918088","Latitude: 19.5258124<br></br>Longitude: -99.2277106","Latitude: 19.3172634<br></br>Longitude: -99.3254361","Latitude: 33.852922<br></br>Longitude: 35.537732","Latitude: 17.9659463<br></br>Longitude: -92.9399901","Latitude: 19.3172634<br></br>Longitude: -99.3254361","Latitude: 19.3233425<br></br>Longitude: -99.0495864","Latitude: 19.6563184<br></br>Longitude: -101.1638365","Latitude: 21.1439089<br></br>Longitude: -86.8217347","Latitude: 55.1608544<br></br>Longitude: 61.4025507","Latitude: 54.7108388<br></br>Longitude: 20.5087854","Latitude: 55.8628023<br></br>Longitude: 37.6015962","Latitude: 58.00765<br></br>Longitude: 56.242877","Latitude: 32.8017693<br></br>Longitude: 35.0524538","Latitude: 31.9903016<br></br>Longitude: 34.774205","Latitude: 33.8744365<br></br>Longitude: 35.4881249","Latitude: 19.359979<br></br>Longitude: -99.1701514","Latitude: 61.791287<br></br>Longitude: 34.3642207","Latitude: 19.293918<br></br>Longitude: -99.1810689","Latitude: 22.308798<br></br>Longitude: 114.189073","Latitude: 54.5151883<br></br>Longitude: 36.2522471","Latitude: 33.8727524<br></br>Longitude: 35.4949423","Latitude: 56.3393412<br></br>Longitude: 43.9565218","Latitude: 29.550333<br></br>Longitude: 34.956746","Latitude: 20.72963<br></br>Longitude: -103.4004924","Latitude: 20.4819038<br></br>Longitude: -103.4971056","Latitude: 32.0696896<br></br>Longitude: 34.7717219","Latitude: 19.44916<br></br>Longitude: -99.1521204","Latitude: 59.893904<br></br>Longitude: 30.514719","Latitude: 19.3027734<br></br>Longitude: -99.123176","Latitude: 19.5212305<br></br>Longitude: -99.2282645","Latitude: 19.3629185<br></br>Longitude: -99.0089666","Latitude: 53.201511<br></br>Longitude: 50.109563","Latitude: 19.2994158<br></br>Longitude: -99.1367292","Latitude: 19.3079572<br></br>Longitude: -99.2137956","Latitude: 54.981258<br></br>Longitude: 73.376755","Latitude: 45.0340801<br></br>Longitude: 39.0500729","Latitude: 54.6343421<br></br>Longitude: 39.68856","Latitude: 19.250505<br></br>Longitude: -99.613006","Latitude: 32.2809563<br></br>Longitude: 34.8611988","Latitude: 32.0932324<br></br>Longitude: 34.8654928","Latitude: 61.7913158<br></br>Longitude: 34.3644354","Latitude: 32.1705469<br></br>Longitude: 34.9286636","Latitude: 22.2969091<br></br>Longitude: 114.168055","Latitude: 20.6480639<br></br>Longitude: -103.3206691","Latitude: 51.5424438<br></br>Longitude: 46.0146729","Latitude: 19.3769129<br></br>Longitude: -99.0955917","Latitude: 32.1122669<br></br>Longitude: 34.7958357","Latitude: 19.3849717<br></br>Longitude: -99.0826465","Latitude: 60.091374<br></br>Longitude: 30.378438","Latitude: 22.29713<br></br>Longitude: 114.168724","Latitude: 19.3079572<br></br>Longitude: -99.2137956","Latitude: 19.4286725<br></br>Longitude: -99.1616682","Latitude: 53.3540996<br></br>Longitude: 83.7702632","Latitude: 31.2419877<br></br>Longitude: 34.8123116","Latitude: 56.4931371<br></br>Longitude: 84.9481884","Latitude: 25.6326575<br></br>Longitude: -100.2883406","Latitude: 51.2278868<br></br>Longitude: 58.47573","Latitude: 54.192041<br></br>Longitude: 37.619135","Latitude: 19.4265331<br></br>Longitude: -99.0350986","Latitude: 3.1487063<br></br>Longitude: 101.7131118","Latitude: 54.192041<br></br>Longitude: 37.619135","Latitude: 31.893767<br></br>Longitude: 34.807116","Latitude: 31.987624<br></br>Longitude: 34.91314","Latitude: 22.290231<br></br>Longitude: 113.94168","Latitude: 56.4589417<br></br>Longitude: 84.9651986","Latitude: 22.307523<br></br>Longitude: 114.259065","Latitude: 33.772204<br></br>Longitude: 35.469082","Latitude: 31.8991912<br></br>Longitude: 35.0074145","Latitude: 53.1971523<br></br>Longitude: 45.0190638","Latitude: 19.386729<br></br>Longitude: -99.2521745","Latitude: 32.095728<br></br>Longitude: 34.7731158","Latitude: 32.0260067<br></br>Longitude: 34.795226","Latitude: 56.307021<br></br>Longitude: 44.073866","Latitude: 21.0172597<br></br>Longitude: -89.58382","Latitude: 19.2578142<br></br>Longitude: -99.0349891","Latitude: 19.3612111<br></br>Longitude: -99.2721805","Latitude: 31.8091441<br></br>Longitude: 34.6556394","Latitude: 20.4819038<br></br>Longitude: -103.4971056","Latitude: 3.1487063<br></br>Longitude: 101.7131118","Latitude: 56.8235224<br></br>Longitude: 60.5050579","Latitude: 32.8433479<br></br>Longitude: 35.0908414","Latitude: 22.379925<br></br>Longitude: 114.187471","Latitude: 22.310472<br></br>Longitude: 114.225156","Latitude: 20.7090848<br></br>Longitude: -103.4138588","Latitude: 32.0747446<br></br>Longitude: 34.7910421","Latitude: 32.696235<br></br>Longitude: 35.300145","Latitude: 45.0133989<br></br>Longitude: 38.9292594","Latitude: 32.7896683<br></br>Longitude: 35.0078759","Latitude: 55.171175<br></br>Longitude: 61.355505","Latitude: 47.260553<br></br>Longitude: 39.720911","Latitude: 48.7603607<br></br>Longitude: 44.4965881","Latitude: 45.100607<br></br>Longitude: 38.983577","Latitude: 55.707191<br></br>Longitude: 37.5895796","Latitude: 58.5987306<br></br>Longitude: 49.6494297","Latitude: 51.7408617<br></br>Longitude: 39.3685267","Latitude: 54.9850659<br></br>Longitude: 82.896925","Latitude: 55.7096916<br></br>Longitude: 37.6221057","Latitude: 45.10038<br></br>Longitude: 38.983813","Latitude: 25.4110762<br></br>Longitude: 56.2482277","Latitude: 47.2309054<br></br>Longitude: 39.6097094","Latitude: 55.0843509<br></br>Longitude: 38.8006711","Latitude: 55.8094849<br></br>Longitude: 37.4646113","Latitude: 55.773215<br></br>Longitude: 37.65738","Latitude: 47.289877<br></br>Longitude: 39.846464","Latitude: 45.048272<br></br>Longitude: 41.982776","Latitude: 52.7277968<br></br>Longitude: 41.4538262","Latitude: 59.6048926<br></br>Longitude: 60.5790643","Latitude: 54.5990461<br></br>Longitude: 36.2616464","Latitude: 59.8314429<br></br>Longitude: 30.3446756","Latitude: 59.202955<br></br>Longitude: 39.81348","Latitude: 60.943943<br></br>Longitude: 76.635055","Latitude: 44.88011<br></br>Longitude: 37.339225","Latitude: 48.6368499<br></br>Longitude: 44.4346029","Latitude: 52.723624<br></br>Longitude: 41.435412","Latitude: 1.3057331<br></br>Longitude: 103.8314536","Latitude: 13.747408<br></br>Longitude: 100.540227","Latitude: 13.758368<br></br>Longitude: 100.56624","Latitude: 13.8951584<br></br>Longitude: 100.5544736","Latitude: 55.8105321<br></br>Longitude: 37.8307555","Latitude: 14.653493<br></br>Longitude: 121.033486","Latitude: -36.9208552<br></br>Longitude: 174.7860298","Latitude: 55.41999<br></br>Longitude: 37.547879","Latitude: 48.799464<br></br>Longitude: 44.604598","Latitude: 57.117156<br></br>Longitude: 65.5491935","Latitude: 59.864176<br></br>Longitude: 30.470409","Latitude: 1.302707<br></br>Longitude: 103.834289","Latitude: 54.6746021<br></br>Longitude: 55.928746","Latitude: 57.7407605<br></br>Longitude: 40.9173962","Latitude: 52.726921<br></br>Longitude: 41.4451904","Latitude: 54.5990461<br></br>Longitude: 36.2616464","Latitude: 55.6669126<br></br>Longitude: 37.5132177","Latitude: 55.9144319<br></br>Longitude: 37.8657948","Latitude: 59.8314429<br></br>Longitude: 30.3446756","Latitude: 50.632845<br></br>Longitude: 36.571566","Latitude: 13.648604<br></br>Longitude: 100.679859","Latitude: 13.903549<br></br>Longitude: 100.52691","Latitude: 56.1069739<br></br>Longitude: 47.2811009","Latitude: 54.9239<br></br>Longitude: 73.473228","Latitude: 35.6909515<br></br>Longitude: 139.7019497","Latitude: 55.6785022<br></br>Longitude: 37.2679481","Latitude: -43.5439074<br></br>Longitude: 172.5238386","Latitude: 56.840707<br></br>Longitude: 60.618745","Latitude: 57.113915<br></br>Longitude: 65.571186","Latitude: 55.780043<br></br>Longitude: 37.601248","Latitude: 45.103121<br></br>Longitude: 38.984006","Latitude: 54.7573154<br></br>Longitude: 56.0354511","Latitude: 8.9872765<br></br>Longitude: -79.5073765","Latitude: 53.325861<br></br>Longitude: 50.307126","Latitude: 45.0400561<br></br>Longitude: 38.9713923","Latitude: 44.2326061<br></br>Longitude: 42.0527679","Latitude: 56.22591<br></br>Longitude: 44.071362","Latitude: 59.8830076<br></br>Longitude: 30.3696641","Latitude: 55.190565<br></br>Longitude: 61.303348","Latitude: 56.8235224<br></br>Longitude: 60.5050579","Latitude: 7.09118<br></br>Longitude: 125.611285","Latitude: 53.2074698<br></br>Longitude: 50.1981829","Latitude: 47.2805717<br></br>Longitude: 39.7182184","Latitude: 56.1816737<br></br>Longitude: 36.9881197","Latitude: 13.7513584<br></br>Longitude: 100.5219042","Latitude: 33.383123<br></br>Longitude: -111.964485","Latitude: -41.1827871<br></br>Longitude: 174.82495","Latitude: 43.3089608<br></br>Longitude: 45.7008291","Latitude: 52.5040954<br></br>Longitude: 103.8375931","Latitude: 55.61056<br></br>Longitude: 37.333476","Latitude: 57.117595<br></br>Longitude: 65.549214","Latitude: 56.2324456<br></br>Longitude: 44.0567935","Latitude: 62.142988<br></br>Longitude: 65.4380582","Latitude: 9.0473919<br></br>Longitude: -79.4644498","Latitude: 45.039432<br></br>Longitude: 38.974446","Latitude: 54.7115554<br></br>Longitude: 20.4925047","Latitude: 55.6669126<br></br>Longitude: 37.5132177","Latitude: 48.6368499<br></br>Longitude: 44.4346029","Latitude: 14.551551<br></br>Longitude: 121.051695","Latitude: 13.974935<br></br>Longitude: 100.6208991","Latitude: 63.5633618<br></br>Longitude: 53.6670551","Latitude: 54.917504<br></br>Longitude: 37.42698","Latitude: 13.746824<br></br>Longitude: 100.534938","Latitude: 47.2309054<br></br>Longitude: 39.6097094","Latitude: 57.910246<br></br>Longitude: 60.093568","Latitude: 52.274332<br></br>Longitude: 104.286829","Latitude: 52.5040954<br></br>Longitude: 103.8375931","Latitude: 55.7572509<br></br>Longitude: 37.6590638","Latitude: 55.2042766<br></br>Longitude: 61.3265594","Latitude: 55.797018<br></br>Longitude: 37.618231","Latitude: 8.9908611<br></br>Longitude: -79.5534664","Latitude: 1.2993784<br></br>Longitude: 103.8478027","Latitude: 50.632845<br></br>Longitude: 36.571566","Latitude: 48.658994<br></br>Longitude: 44.439182","Latitude: 63.5633618<br></br>Longitude: 53.6670551","Latitude: 13.817192<br></br>Longitude: 100.5611088","Latitude: 55.7442218<br></br>Longitude: 37.5087277","Latitude: 13.7343876<br></br>Longitude: 100.5640418","Latitude: -43.530931<br></br>Longitude: 172.597599","Latitude: 44.0387058<br></br>Longitude: 42.8702716","Latitude: 41.0355429<br></br>Longitude: 28.982484","Latitude: 55.6636334<br></br>Longitude: 37.5112707","Latitude: 47.204017<br></br>Longitude: 39.723628","Latitude: 55.6073657<br></br>Longitude: 37.7338276","Latitude: -36.8710428<br></br>Longitude: 174.7773919","Latitude: 8.9908611<br></br>Longitude: -79.5534664","Latitude: 3.157187<br></br>Longitude: 101.71122","Latitude: 3.117578<br></br>Longitude: 101.677194","Latitude: 1.609201<br></br>Longitude: 103.621453","Latitude: 61.261489<br></br>Longitude: 73.4608511","Latitude: 55.7515387<br></br>Longitude: 38.0120188","Latitude: 44.035829<br></br>Longitude: 43.065059","Latitude: 60.939456<br></br>Longitude: 76.597115","Latitude: 56.3393412<br></br>Longitude: 43.9565217","Latitude: 43.478506<br></br>Longitude: 43.576602","Latitude: 59.8830076<br></br>Longitude: 30.3696641","Latitude: 44.194586<br></br>Longitude: 43.130419","Latitude: 56.1493526<br></br>Longitude: 40.3865185","Latitude: 3.105094<br></br>Longitude: 101.596049","Latitude: 43.6060604<br></br>Longitude: 39.7322586","Latitude: 55.92175<br></br>Longitude: 37.7078873","Latitude: 56.863556<br></br>Longitude: 60.630858","Latitude: 54.7497072<br></br>Longitude: 56.0002158","Latitude: 55.0465062<br></br>Longitude: 60.110124","Latitude: 32.8741204<br></br>Longitude: -80.0181733","Latitude: 39.3109808<br></br>Longitude: -85.963264","Latitude: 35.507861<br></br>Longitude: -78.3145442","Latitude: 38.9832918<br></br>Longitude: -76.1597096","Latitude: 20.650428<br></br>Longitude: -103.4017811","Latitude: 33.9803716<br></br>Longitude: -84.0828161","Latitude: 26.1515773<br></br>Longitude: -80.3206555","Latitude: 39.1257925<br></br>Longitude: -94.8243608","Latitude: 33.6524019<br></br>Longitude: -117.7468442","Latitude: 34.0840472<br></br>Longitude: -118.3640549","Latitude: 3.157165<br></br>Longitude: 101.711224","Latitude: 53.220259<br></br>Longitude: 44.9435635","Latitude: -37.0082476<br></br>Longitude: 174.7850358","Latitude: 56.965945<br></br>Longitude: 41.0248887","Latitude: 56.3181561<br></br>Longitude: 43.9250351","Latitude: 59.197134<br></br>Longitude: 39.859027","Latitude: 57.0060161<br></br>Longitude: 40.9873617","Latitude: 55.658264<br></br>Longitude: 37.845114","Latitude: 55.92175<br></br>Longitude: 37.7078873","Latitude: 51.837642<br></br>Longitude: 107.653111","Latitude: 58.0071777<br></br>Longitude: 56.2604569","Latitude: 42.5176793<br></br>Longitude: -87.949284","Latitude: 55.653544<br></br>Longitude: 37.620833","Latitude: 41.0480289<br></br>Longitude: -75.3123669","Latitude: 27.5362778<br></br>Longitude: -82.5084159","Latitude: 37.3165573<br></br>Longitude: -76.7355728","Latitude: 59.197314<br></br>Longitude: 39.859107","Latitude: 55.766876<br></br>Longitude: 37.380546","Latitude: 3.118191<br></br>Longitude: 101.67621","Latitude: 36.1638289<br></br>Longitude: -115.1568419","Latitude: 32.5438005<br></br>Longitude: -117.0424192","Latitude: 40.7240227<br></br>Longitude: -73.9998584","Latitude: 5.4346665<br></br>Longitude: 100.3146284","Latitude: 54.3066691<br></br>Longitude: 48.3600502","Latitude: 56.3181561<br></br>Longitude: 43.9250351","Latitude: 37.784219<br></br>Longitude: -122.406176","Latitude: 55.7554837<br></br>Longitude: 37.614391","Latitude: 53.2204748<br></br>Longitude: 44.9516836","Latitude: 55.5823788<br></br>Longitude: 37.6704351","Latitude: 40.7281465<br></br>Longitude: -111.5515256","Latitude: 55.654275<br></br>Longitude: 37.843748","Latitude: 55.9094694<br></br>Longitude: 37.5404449","Latitude: 50.281269<br></br>Longitude: 127.5125","Latitude: 55.9094694<br></br>Longitude: 37.5404449","Latitude: 39.3603115<br></br>Longitude: -74.4380856","Latitude: 30.5669991<br></br>Longitude: -97.690339","Latitude: 56.8174962<br></br>Longitude: 60.5373285","Latitude: 41.7154051<br></br>Longitude: -86.9049903","Latitude: 29.9219929<br></br>Longitude: -81.4155071","Latitude: 38.1438849<br></br>Longitude: -92.6272767","Latitude: 25.7904746<br></br>Longitude: -80.1413006","Latitude: 19.4289173<br></br>Longitude: -99.2042468","Latitude: 53.334748<br></br>Longitude: 83.776967","Latitude: 61.277504<br></br>Longitude: 73.365047","Latitude: 55.657836<br></br>Longitude: 37.846042","Latitude: 56.816452<br></br>Longitude: 60.585792","Latitude: 54.7947827<br></br>Longitude: 32.0580223","Latitude: 61.690008<br></br>Longitude: 50.804207","Latitude: 55.586568<br></br>Longitude: 37.724562","Latitude: 48.0935599<br></br>Longitude: -122.1877764","Latitude: 50.281269<br></br>Longitude: 127.5125","Latitude: 33.7033109<br></br>Longitude: -117.892183","Latitude: 52.6053687<br></br>Longitude: 39.5789777","Latitude: 41.8980056<br></br>Longitude: -87.6232355","Latitude: 41.8003339<br></br>Longitude: -88.2739325","Latitude: 43.446017<br></br>Longitude: -89.781345","Latitude: 35.8340418<br></br>Longitude: -83.5699135","Latitude: 40.2366156<br></br>Longitude: -75.5705805","Latitude: 29.8260234<br></br>Longitude: -97.9855982","Latitude: 39.4156345<br></br>Longitude: -104.8732477","Latitude: 43.6060604<br></br>Longitude: 39.7322586","Latitude: 43.117717<br></br>Longitude: -70.728795","Latitude: 56.8174962<br></br>Longitude: 60.5373285","Latitude: -33.5170528<br></br>Longitude: -70.7178874","Latitude: 61.261489<br></br>Longitude: 73.4608511","Latitude: 51.7408635<br></br>Longitude: 39.3685142","Latitude: 55.92175<br></br>Longitude: 37.7078873","Latitude: 21.3952308<br></br>Longitude: -158.0143084","Latitude: 59.8830076<br></br>Longitude: 30.3696641","Latitude: 55.974901<br></br>Longitude: 37.9059839","Latitude: 54.7932709<br></br>Longitude: 32.0532989","Latitude: 33.7841874<br></br>Longitude: -78.7736115","Latitude: 61.689854<br></br>Longitude: 50.804421","Latitude: 44.044331<br></br>Longitude: 42.881397","Latitude: 35.0814314<br></br>Longitude: -81.7130599","Latitude: 55.7482787<br></br>Longitude: 37.5371678","Latitude: 36.0549772<br></br>Longitude: -115.1691065","Latitude: 29.737703<br></br>Longitude: -95.4644579","Latitude: 31.9126143<br></br>Longitude: -106.5864401","Latitude: 39.6191841<br></br>Longitude: -83.60264","Latitude: 54.9850659<br></br>Longitude: 82.896925","Latitude: 25.6494453<br></br>Longitude: -100.3352567","Latitude: 40.2243495<br></br>Longitude: -74.0948707","Latitude: 33.1314542<br></br>Longitude: -96.6628932","Latitude: 43.6060604<br></br>Longitude: 39.7322586","Latitude: 26.1632363<br></br>Longitude: -97.8880668","Latitude: 29.996689<br></br>Longitude: -95.7573375","Latitude: 25.9569187<br></br>Longitude: -80.1430982","Latitude: 55.0465062<br></br>Longitude: 60.110124","Latitude: 38.9896311<br></br>Longitude: -76.5486052","Latitude: 45.5589959<br></br>Longitude: -122.6933793","Latitude: 37.6552101<br></br>Longitude: 127.0611517","Latitude: 37.6083223<br></br>Longitude: 127.0287626","Latitude: 37.3784377<br></br>Longitude: 127.1143136","Latitude: 40.6601883<br></br>Longitude: -74.1713372","Latitude: 38.7948488<br></br>Longitude: -77.0014573","Latitude: 38.6764518<br></br>Longitude: -90.6614603","Latitude: 29.750742<br></br>Longitude: -95.3622312","Latitude: 25.7780788<br></br>Longitude: -80.1329613","Latitude: -34.5887962<br></br>Longitude: -58.410981","Latitude: -33.5170528<br></br>Longitude: -70.7178874","Latitude: 56.8768626<br></br>Longitude: 53.2045102","Latitude: 45.3072489<br></br>Longitude: -75.9199172","Latitude: 3.4648248<br></br>Longitude: -76.5013409","Latitude: -37.9094<br></br>Longitude: 145.1578736","Latitude: 38.9167846<br></br>Longitude: -77.2237264","Latitude: 37.5112348<br></br>Longitude: 127.0980274","Latitude: 37.5649903<br></br>Longitude: 126.981369","Latitude: 29.9485469<br></br>Longitude: -90.0766253","Latitude: 18.2356249<br></br>Longitude: -66.0339702","Latitude: 40.757229<br></br>Longitude: -73.8356575","Latitude: 39.4351833<br></br>Longitude: -84.3366653","Latitude: 34.1202797<br></br>Longitude: -84.5265343","Latitude: -27.3841199<br></br>Longitude: 153.0214118","Latitude: 25.0360141<br></br>Longitude: 121.5672349","Latitude: 7.0996603<br></br>Longitude: -73.1073641","Latitude: 45.6737941<br></br>Longitude: -73.9193989","Latitude: 33.846335<br></br>Longitude: -84.3635778","Latitude: 22.3331228<br></br>Longitude: 114.1873368","Latitude: 37.5258693<br></br>Longitude: 126.964413","Latitude: 37.4919298<br></br>Longitude: 126.831681","Latitude: 36.102866<br></br>Longitude: -115.17251","Latitude: -33.3702868<br></br>Longitude: -70.5076359","Latitude: 34.017714<br></br>Longitude: -118.4982423","Latitude: 34.0059677<br></br>Longitude: -118.1525208","Latitude: 40.9152551<br></br>Longitude: -74.0582628","Latitude: 33.2872923<br></br>Longitude: -111.9733833","Latitude: -35.016506<br></br>Longitude: 138.5440993","Latitude: 54.192041<br></br>Longitude: 37.619135","Latitude: 6.23317<br></br>Longitude: -75.60418","Latitude: 41.29152<br></br>Longitude: -72.5328871","Latitude: 41.8994093<br></br>Longitude: -87.6266473","Latitude: 37.4969255<br></br>Longitude: 127.0532731","Latitude: 40.7344368<br></br>Longitude: -73.8699596","Latitude: -34.170644<br></br>Longitude: -70.730581","Latitude: 40.7255941<br></br>Longitude: -73.9996131","Latitude: 32.2450146<br></br>Longitude: -80.8328179","Latitude: 22.3105489<br></br>Longitude: 114.1711561","Latitude: 38.2953023<br></br>Longitude: -122.3026058","Latitude: 19.3610238<br></br>Longitude: -99.2760128","Latitude: 20.8784845<br></br>Longitude: -156.6811092","Latitude: 39.5322749<br></br>Longitude: -119.7193472","Latitude: -33.8846114<br></br>Longitude: 151.200737","Latitude: -36.7802751<br></br>Longitude: -73.0586356","Latitude: 55.9094694<br></br>Longitude: 37.5404449","Latitude: 22.292016<br></br>Longitude: 114.196579","Latitude: 37.6145502<br></br>Longitude: 127.0305098","Latitude: 3.139003<br></br>Longitude: 101.686855","Latitude: 40.725563<br></br>Longitude: -73.9963173","Latitude: 37.6606606<br></br>Longitude: 126.77199","Latitude: -37.9693931<br></br>Longitude: 145.1044516","Latitude: 22.2804155<br></br>Longitude: 114.1843429","Latitude: 30.375237<br></br>Longitude: -87.682475","Latitude: 40.6826571<br></br>Longitude: -73.9752822","Latitude: -37.8122187<br></br>Longitude: 144.9634114","Latitude: 35.6585696<br></br>Longitude: 139.745484","Latitude: 30.380673<br></br>Longitude: -86.3537549","Latitude: 22.295224<br></br>Longitude: 114.172922","Latitude: 25.119801<br></br>Longitude: 56.328233","Latitude: 39.8924677<br></br>Longitude: 32.8132515","Latitude: 55.038648<br></br>Longitude: 82.911973","Latitude: 45.0400561<br></br>Longitude: 38.9713923","Latitude: 56.135461<br></br>Longitude: 47.2407","Latitude: 51.8103655<br></br>Longitude: 55.0882421","Latitude: 56.8290891<br></br>Longitude: 60.5989643","Latitude: 22.337034<br></br>Longitude: 114.174864","Latitude: 24.1301619<br></br>Longitude: 55.8023118","Latitude: 59.9269531<br></br>Longitude: 30.3589114","Latitude: 2.192572<br></br>Longitude: 102.250454","Latitude: 1.285362<br></br>Longitude: 103.8450211","Latitude: 41.024976<br></br>Longitude: 29.1033064","Latitude: 24.453884<br></br>Longitude: 54.3773438","Latitude: 55.6919136<br></br>Longitude: 37.5276619","Latitude: 51.1322975<br></br>Longitude: 71.4033994","Latitude: 55.891749<br></br>Longitude: 37.748746","Latitude: 59.9119882<br></br>Longitude: 30.446392","Latitude: 1.3618958<br></br>Longitude: 103.989967","Latitude: 1.462924<br></br>Longitude: 103.763386","Latitude: 55.7482787<br></br>Longitude: 37.5371678","Latitude: 56.023334<br></br>Longitude: 92.801988","Latitude: 41.0799347<br></br>Longitude: 28.7839274","Latitude: 22.3105489<br></br>Longitude: 114.1711561","Latitude: 56.8558742<br></br>Longitude: 35.8656757","Latitude: 59.848615<br></br>Longitude: 30.148848","Latitude: 55.1150737<br></br>Longitude: 36.5915002","Latitude: 55.7446<br></br>Longitude: 37.566102","Latitude: 55.171175<br></br>Longitude: 61.355505","Latitude: 33.8886<br></br>Longitude: 35.4955","Latitude: 37.698891<br></br>Longitude: 127.3843049","Latitude: 39.900613<br></br>Longitude: 32.814848","Latitude: 55.028658<br></br>Longitude: 82.936461","Latitude: 54.7527793<br></br>Longitude: 56.0218588","Latitude: 45.0133989<br></br>Longitude: 38.9292594","Latitude: 59.8300874<br></br>Longitude: 30.3787322","Latitude: 55.846367<br></br>Longitude: 37.3580737","Latitude: 46.3598975<br></br>Longitude: 48.0553059","Latitude: 33.8943497<br></br>Longitude: 35.553978","Latitude: 1.283024<br></br>Longitude: 103.859498","Latitude: 37.4016455<br></br>Longitude: 126.9229027","Latitude: 2.969803<br></br>Longitude: 101.713196","Latitude: 58.5988414<br></br>Longitude: 49.650389","Latitude: 59.093932<br></br>Longitude: 37.923515","Latitude: 54.9921163<br></br>Longitude: 73.3100914","Latitude: 56.236931<br></br>Longitude: 43.462689","Latitude: 43.478506<br></br>Longitude: 43.576602","Latitude: 54.6746021<br></br>Longitude: 55.928746","Latitude: 52.726921<br></br>Longitude: 41.4451904","Latitude: 55.7572509<br></br>Longitude: 37.6590638","Latitude: 56.8768626<br></br>Longitude: 53.2045102","Latitude: 55.73068<br></br>Longitude: 37.737424","Latitude: 55.657836<br></br>Longitude: 37.846042","Latitude: 53.34288<br></br>Longitude: 83.679433","Latitude: 47.289877<br></br>Longitude: 39.846464","Latitude: 55.3556942<br></br>Longitude: 86.0653248","Latitude: 55.3831775<br></br>Longitude: 36.7280835","Latitude: 56.050485<br></br>Longitude: 92.9033518","Latitude: 55.982686<br></br>Longitude: 37.174843","Latitude: 24.1553523<br></br>Longitude: 120.6616454","Latitude: 54.9921163<br></br>Longitude: 73.3100914","Latitude: 25.0523038<br></br>Longitude: 121.5211048","Latitude: 22.6878238<br></br>Longitude: 120.3092282","Latitude: 51.84511<br></br>Longitude: 55.120069","Latitude: 52.921565<br></br>Longitude: 36.011034","Latitude: 55.0843509<br></br>Longitude: 38.8006711","Latitude: 59.893734<br></br>Longitude: 30.517205","Latitude: 25.0648581<br></br>Longitude: 121.5219341","Latitude: 54.7573154<br></br>Longitude: 56.0354511","Latitude: -33.8946<br></br>Longitude: 18.5105","Latitude: 55.747742<br></br>Longitude: 37.707585","Latitude: 26.0556<br></br>Longitude: 28.0929","Latitude: 56.840707<br></br>Longitude: 60.618745","Latitude: 55.038648<br></br>Longitude: 82.911973","Latitude: 58.0093483<br></br>Longitude: 56.2354624","Latitude: 55.164862<br></br>Longitude: 61.404483","Latitude: 57.697777<br></br>Longitude: 39.758293","Latitude: 54.9921163<br></br>Longitude: 73.3100914","Latitude: 25.044372<br></br>Longitude: 121.5508932","Latitude: 55.691963<br></br>Longitude: 37.5281019","Latitude: 51.666198<br></br>Longitude: 39.1919049","Latitude: 59.945923<br></br>Longitude: 30.473918","Latitude: 25.041211<br></br>Longitude: 121.5432512","Latitude: 25.0130279<br></br>Longitude: 121.4669529","Latitude: 55.7069469<br></br>Longitude: 37.5922153","Latitude: 48.7252719<br></br>Longitude: 44.537767","Latitude: 42.8349541<br></br>Longitude: 132.8864207","Latitude: 57.117276<br></br>Longitude: 65.5496908","Latitude: 58.0071777<br></br>Longitude: 56.2604569","Latitude: 25.049298<br></br>Longitude: 121.517004","Latitude: -26.109064<br></br>Longitude: 28.056156","Latitude: -29.810705<br></br>Longitude: 30.990396","Latitude: -25.7824<br></br>Longitude: 28.275","Latitude: 55.319667<br></br>Longitude: 38.671658","Latitude: 24.1584265<br></br>Longitude: 120.6576972","Latitude: 51.666198<br></br>Longitude: 39.191905","Latitude: 54.9850659<br></br>Longitude: 82.8969249","Latitude: 60.090111<br></br>Longitude: 30.381649","Latitude: 54.7497072<br></br>Longitude: 56.0002158","Latitude: 43.0324985<br></br>Longitude: 44.6836136","Latitude: 55.153447<br></br>Longitude: 37.459342","Latitude: 57.0060161<br></br>Longitude: 40.9873617","Latitude: 48.7715209<br></br>Longitude: 44.8017904","Latitude: 43.9052058<br></br>Longitude: 42.7150335","Latitude: 22.6699973<br></br>Longitude: 120.302775","Latitude: 50.5786865<br></br>Longitude: 36.5822852","Latitude: 22.6193366<br></br>Longitude: 120.2960446","Latitude: 55.8094224<br></br>Longitude: 37.4643242","Latitude: 55.7446<br></br>Longitude: 37.566102","Latitude: -33.949468<br></br>Longitude: 25.576099","Latitude: 55.654275<br></br>Longitude: 37.843748","Latitude: -25.7889<br></br>Longitude: 28.3074","Latitude: 43.115937<br></br>Longitude: 131.886121","Latitude: -33.9881985<br></br>Longitude: 18.4885093","Latitude: 24.9627266<br></br>Longitude: 121.2238236","Latitude: 51.7408617<br></br>Longitude: 39.3685267","Latitude: 52.5122417<br></br>Longitude: 85.1737835","Latitude: 55.7096916<br></br>Longitude: 37.6221057","Latitude: 63.1952971<br></br>Longitude: 75.4461481","Latitude: 56.8290891<br></br>Longitude: 60.5989643","Latitude: 60.002195<br></br>Longitude: 30.2727","Latitude: 45.01<br></br>Longitude: 38.92","Latitude: 25.1218264<br></br>Longitude: 121.5365866","Latitude: 45.0396685<br></br>Longitude: 38.973202","Latitude: 55.677951<br></br>Longitude: 37.466637","Latitude: 25.0360141<br></br>Longitude: 121.5672349","Latitude: 53.510739<br></br>Longitude: 49.457192","Latitude: -26.1209<br></br>Longitude: 27.9569","Latitude: 56.8235224<br></br>Longitude: 60.5050579","Latitude: 55.799331<br></br>Longitude: 38.437508","Latitude: 55.7069469<br></br>Longitude: 37.5922153","Latitude: 24.1734846<br></br>Longitude: 120.6400971","Latitude: 56.3393412<br></br>Longitude: 43.9565217","Latitude: 36.2930054<br></br>Longitude: 139.6048892","Latitude: 50.600157<br></br>Longitude: 36.589016","Latitude: 58.59783<br></br>Longitude: 49.607249","Latitude: 52.2670887<br></br>Longitude: 104.2259819","Latitude: 50.2676777<br></br>Longitude: 127.5369227","Latitude: 22.6878238<br></br>Longitude: 120.3092282","Latitude: 57.134732<br></br>Longitude: 65.494124","Latitude: -33.8816<br></br>Longitude: 18.5084","Latitude: 25.0516518<br></br>Longitude: 121.5177652","Latitude: 44.035829<br></br>Longitude: 43.065059","Latitude: -26.11017<br></br>Longitude: 28.143773","Latitude: -25.8228<br></br>Longitude: 28.3124","Latitude: -33.95847<br></br>Longitude: 18.70071","Latitude: -26.1141<br></br>Longitude: 27.896","Latitude: 25.0407774<br></br>Longitude: 121.5474906","Latitude: 25.0188735<br></br>Longitude: 121.5334441","Latitude: -25.8579765<br></br>Longitude: 28.1858612","Latitude: -26.14646<br></br>Longitude: 28.041","Latitude: 26.43618<br></br>Longitude: -81.7746859","Latitude: 25.036018<br></br>Longitude: 121.566575","Latitude: 41.3017237<br></br>Longitude: -81.3431276","Latitude: 40.0238479<br></br>Longitude: -76.1945845","Latitude: 60.011288<br></br>Longitude: 30.397289","Latitude: 35.3070492<br></br>Longitude: 138.9650778","Latitude: 44.5037605<br></br>Longitude: -73.0797466","Latitude: 41.0315151<br></br>Longitude: -73.7585505","Latitude: 42.3497697<br></br>Longitude: -71.0809088","Latitude: 39.4038642<br></br>Longitude: -76.5987395","Latitude: 52.2853234<br></br>Longitude: 104.2878055","Latitude: -26.0186<br></br>Longitude: 28.0108","Latitude: 54.621475<br></br>Longitude: 39.7827698","Latitude: 32.0732811<br></br>Longitude: 34.7883038","Latitude: -29.7260405<br></br>Longitude: 31.0660742","Latitude: -33.8946<br></br>Longitude: 18.5105","Latitude: 39.1068098<br></br>Longitude: -77.538337","Latitude: 39.7946881<br></br>Longitude: -77.2008824","Latitude: 41.0022708<br></br>Longitude: -81.9957076","Latitude: 60.00845<br></br>Longitude: 30.2626089","Latitude: 42.206283<br></br>Longitude: -71.126994","Latitude: 35.9034513<br></br>Longitude: -78.9431065","Latitude: 35.3805111<br></br>Longitude: 139.6475606","Latitude: 55.62001<br></br>Longitude: 37.5070481","Latitude: 39.2153109<br></br>Longitude: -76.8612159","Latitude: 40.914763<br></br>Longitude: -74.075323","Latitude: 41.3178296<br></br>Longitude: -74.125158","Latitude: 33.9252914<br></br>Longitude: -116.810667","Latitude: 25.064243<br></br>Longitude: 121.57476","Latitude: 25.0432925<br></br>Longitude: 121.4675116","Latitude: 32.808657<br></br>Longitude: 35.075575","Latitude: 28.4763129<br></br>Longitude: -81.4500433","Latitude: 24.1734846<br></br>Longitude: 120.6400971","Latitude: 35.029435<br></br>Longitude: 136.7257996","Latitude: 38.9169854<br></br>Longitude: -77.2224392","Latitude: 40.7578756<br></br>Longitude: -73.9824244","Latitude: 51.317261<br></br>Longitude: 37.899601","Latitude: 53.34288<br></br>Longitude: 83.679433","Latitude: 44.6068215<br></br>Longitude: 40.1092033","Latitude: 38.9228296<br></br>Longitude: -77.072565","Latitude: 40.0890849<br></br>Longitude: -75.3855588","Latitude: 52.4291638<br></br>Longitude: 10.7929636","Latitude: 34.2157313<br></br>Longitude: -119.0614057","Latitude: 59.8786526<br></br>Longitude: 30.2838354","Latitude: -33.907835<br></br>Longitude: 18.4168136","Latitude: 25.0601673<br></br>Longitude: 121.5749756","Latitude: 45.2450868<br></br>Longitude: -93.6661165","Latitude: 55.8530455<br></br>Longitude: 38.4420743","Latitude: 24.153917<br></br>Longitude: 120.646406","Latitude: -33.8946<br></br>Longitude: 18.5105","Latitude: 42.2200925<br></br>Longitude: -71.0226617","Latitude: 56.050485<br></br>Longitude: 92.9033518","Latitude: 44.0234051<br></br>Longitude: -71.1133371","Latitude: 22.6699973<br></br>Longitude: 120.302775","Latitude: 38.8639404<br></br>Longitude: -77.0601179","Latitude: -26.1803935<br></br>Longitude: 28.117173","Latitude: 58.0093483<br></br>Longitude: 56.2354624","Latitude: 53.518531<br></br>Longitude: 49.272219","Latitude: 42.091565<br></br>Longitude: -71.267706","Latitude: 39.6070289<br></br>Longitude: -77.7346928","Latitude: 41.4868524<br></br>Longitude: -71.3148176","Latitude: 22.633664<br></br>Longitude: 120.2860821","Latitude: 40.7662263<br></br>Longitude: -73.9634233","Latitude: 51.737908<br></br>Longitude: 36.1922844","Latitude: 59.921619<br></br>Longitude: 30.467768","Latitude: 22.653347<br></br>Longitude: 120.318792","Latitude: 25.0417138<br></br>Longitude: 121.5509032","Latitude: 28.3871017<br></br>Longitude: -81.4921601","Latitude: 54.9640355<br></br>Longitude: 82.9361856","Latitude: 55.7271366<br></br>Longitude: 52.3899914","Latitude: 45.1561405<br></br>Longitude: -122.878519","Latitude: 36.8489027<br></br>Longitude: -76.2879503","Latitude: 34.0522342<br></br>Longitude: -118.2436849","Latitude: -33.907835<br></br>Longitude: 18.4168136","Latitude: 56.514965<br></br>Longitude: 84.973161","Latitude: 54.6731698<br></br>Longitude: 55.9297316","Latitude: 68.9049682<br></br>Longitude: 33.0914908","Latitude: 47.289877<br></br>Longitude: 39.846464","Latitude: 52.7594024<br></br>Longitude: 41.4370951","Latitude: 55.2042766<br></br>Longitude: 61.3265594","Latitude: 59.7390845<br></br>Longitude: 30.6227177","Latitude: 55.8232492<br></br>Longitude: 37.4982905","Latitude: 55.7446<br></br>Longitude: 37.566102","Latitude: 48.7603607<br></br>Longitude: 44.4965881","Latitude: 45.0691029<br></br>Longitude: 38.9727324","Latitude: 54.5151883<br></br>Longitude: 36.2522471","Latitude: 55.845491<br></br>Longitude: 37.661141","Latitude: 53.0697086<br></br>Longitude: 158.6154405","Latitude: 38.3660696<br></br>Longitude: -121.9537176","Latitude: 57.918783<br></br>Longitude: 59.943303","Latitude: 51.72496<br></br>Longitude: 36.176727","Latitude: 42.6224659<br></br>Longitude: -83.9978302","Latitude: 54.5144353<br></br>Longitude: 36.2545753","Latitude: 55.661275<br></br>Longitude: 37.879749","Latitude: 55.7424215<br></br>Longitude: 49.2017046","Latitude: 54.7108388<br></br>Longitude: 20.5087854","Latitude: 54.1902401<br></br>Longitude: 45.1769172","Latitude: 51.7777009<br></br>Longitude: 19.4389512","Latitude: 55.1634264<br></br>Longitude: 61.4314184","Latitude: 56.118676<br></br>Longitude: 40.352466","Latitude: 59.202944<br></br>Longitude: 39.813351","Latitude: 52.313801<br></br>Longitude: 104.235688","Latitude: 56.176773<br></br>Longitude: 40.45926","Latitude: 53.326473<br></br>Longitude: 50.305506","Latitude: 43.6054151<br></br>Longitude: 39.7499284","Latitude: 55.8297923<br></br>Longitude: 49.1183979","Latitude: 54.63308<br></br>Longitude: 39.773295","Latitude: 57.7407605<br></br>Longitude: 40.9173962","Latitude: 51.103442<br></br>Longitude: 17.0316714","Latitude: 55.6958725<br></br>Longitude: 37.6656839","Latitude: 43.2474635<br></br>Longitude: -83.779767","Latitude: 52.0288915<br></br>Longitude: 47.7832249","Latitude: 34.3578094<br></br>Longitude: -84.0478658","Latitude: 55.8055854<br></br>Longitude: 38.9792305","Latitude: 52.5452129<br></br>Longitude: 103.8887372","Latitude: 61.7913158<br></br>Longitude: 34.3644354","Latitude: 52.065615<br></br>Longitude: 113.497245","Latitude: 56.8743422<br></br>Longitude: 53.2790811","Latitude: 55.797967<br></br>Longitude: 37.986058","Latitude: 56.3393412<br></br>Longitude: 43.9565217","Latitude: 55.659212<br></br>Longitude: 37.4297","Latitude: 44.5610246<br></br>Longitude: 38.0805317","Latitude: 55.4343695<br></br>Longitude: 65.2994616","Latitude: 45.5431738<br></br>Longitude: -122.3889759","Latitude: 60.0114128<br></br>Longitude: 30.397839","Latitude: 56.1284142<br></br>Longitude: 40.4029557","Latitude: 53.760531<br></br>Longitude: 87.149743","Latitude: 50.9392285<br></br>Longitude: 6.9418493","Latitude: 54.7373097<br></br>Longitude: 55.9525295","Latitude: 43.0980888<br></br>Longitude: -78.9787318","Latitude: 53.541946<br></br>Longitude: 49.39017","Latitude: 35.1520738<br></br>Longitude: -80.8321452","Latitude: 56.863556<br></br>Longitude: 60.630858","Latitude: 54.30651<br></br>Longitude: 48.359609","Latitude: 54.192041<br></br>Longitude: 37.619135","Latitude: 52.273019<br></br>Longitude: 104.29113","Latitude: 28.4634348<br></br>Longitude: -81.4532037","Latitude: 53.3575234<br></br>Longitude: 83.6982022","Latitude: 55.603896<br></br>Longitude: 37.4908761","Latitude: 56.0370326<br></br>Longitude: 92.934821","Latitude: 51.4901771<br></br>Longitude: 6.8811002","Latitude: 41.1385211<br></br>Longitude: -80.1569006","Latitude: 48.474188<br></br>Longitude: 135.0598749","Latitude: 55.56535<br></br>Longitude: 37.556029","Latitude: 56.3181561<br></br>Longitude: 43.9250351","Latitude: 37.021759<br></br>Longitude: -121.5609395","Latitude: 48.6368499<br></br>Longitude: 44.4346029","Latitude: 62.142988<br></br>Longitude: 65.4380582","Latitude: 55.7806115<br></br>Longitude: 49.21542","Latitude: 56.2324456<br></br>Longitude: 44.0567935","Latitude: 53.4016841<br></br>Longitude: 58.9792248","Latitude: 52.5040954<br></br>Longitude: 103.8375931","Latitude: 60.058501<br></br>Longitude: 30.338184","Latitude: 68.9049682<br></br>Longitude: 33.0914908","Latitude: 56.8174962<br></br>Longitude: 60.5373285","Latitude: 53.7221523<br></br>Longitude: 91.4451358","Latitude: 56.3023384<br></br>Longitude: 38.1330574","Latitude: 48.292839<br></br>Longitude: 17.564488","Latitude: 33.1272074<br></br>Longitude: -117.3212914","Latitude: 50.281269<br></br>Longitude: 127.5125","Latitude: 59.4061425<br></br>Longitude: 56.8059609","Latitude: 54.631889<br></br>Longitude: 39.698679","Latitude: 54.584002<br></br>Longitude: 36.251954","Latitude: 51.829564<br></br>Longitude: 107.583997","Latitude: 45.0114655<br></br>Longitude: 39.1221652","Latitude: 47.2309054<br></br>Longitude: 39.6097094","Latitude: 47.229641<br></br>Longitude: 39.715093","Latitude: 57.6272392<br></br>Longitude: 39.8693454","Latitude: 43.6060604<br></br>Longitude: 39.7322586","Latitude: 59.8314429<br></br>Longitude: 30.3446756","Latitude: 59.8830076<br></br>Longitude: 30.3696641","Latitude: 40.914763<br></br>Longitude: -74.075323","Latitude: 42.481127<br></br>Longitude: -71.216752","Latitude: 45.891486<br></br>Longitude: -74.1475839","Latitude: 45.8926893<br></br>Longitude: -74.1494027","Latitude: 43.8231966<br></br>Longitude: -79.533821","Latitude: 57.0060161<br></br>Longitude: 40.9873618","Latitude: 57.6272392<br></br>Longitude: 39.8693454","Latitude: 43.5742153<br></br>Longitude: -79.8308201","Latitude: 43.0875123<br></br>Longitude: -79.1205055","Latitude: 43.6567455<br></br>Longitude: -79.380484","Latitude: 48.8608454<br></br>Longitude: 2.3417008","Latitude: 37.3842358<br></br>Longitude: 127.1228624","Latitude: 61.277504<br></br>Longitude: 73.365047","Latitude: 40.7453656<br></br>Longitude: -73.6025937","Latitude: 53.2204748<br></br>Longitude: 44.9516836","Latitude: 55.876003<br></br>Longitude: 37.3320473","Latitude: 55.7554837<br></br>Longitude: 37.614391","Latitude: 45.0340801<br></br>Longitude: 39.0500729","Latitude: 52.0883649<br></br>Longitude: -106.6452601","Latitude: 56.8290891<br></br>Longitude: 60.5989643","Latitude: 59.9279246<br></br>Longitude: 30.3592782","Latitude: 44.2242034<br></br>Longitude: 42.0472559","Latitude: 59.3169233<br></br>Longitude: 18.0718043","Latitude: 43.6046518<br></br>Longitude: -72.5559236","Latitude: 25.6443825<br></br>Longitude: -80.3394789","Latitude: 43.6060604<br></br>Longitude: 39.7322586","Latitude: 51.837642<br></br>Longitude: 107.653111","Latitude: 42.8118056<br></br>Longitude: 23.2151501","Latitude: 44.268062<br></br>Longitude: -76.5025605","Latitude: 46.2584082<br></br>Longitude: -63.1804585","Latitude: 53.4835945<br></br>Longitude: -2.240698","Latitude: 44.0121945<br></br>Longitude: -79.4488627","Latitude: 45.335262<br></br>Longitude: -72.651954","Latitude: 60.9396<br></br>Longitude: 76.597082","Latitude: 57.117156<br></br>Longitude: 65.5491935","Latitude: 43.5752357<br></br>Longitude: -79.8296052","Latitude: 40.4305832<br></br>Longitude: -3.7160189","Latitude: 49.2806363<br></br>Longitude: -123.1205491","Latitude: 55.7442218<br></br>Longitude: 37.5087277","Latitude: 40.7344472<br></br>Longitude: -73.8709686","Latitude: 40.8900807<br></br>Longitude: -74.2615039","Latitude: 24.333143<br></br>Longitude: 54.523869","Latitude: 55.92175<br></br>Longitude: 37.7078873","Latitude: 40.582418<br></br>Longitude: -74.1659155","Latitude: 55.92175<br></br>Longitude: 37.7078873","Latitude: 35.7050479<br></br>Longitude: 139.7492367","Latitude: 45.629999<br></br>Longitude: -73.846192","Latitude: 43.653609<br></br>Longitude: -79.380075","Latitude: 44.4786636<br></br>Longitude: 26.1019507","Latitude: 42.6104302<br></br>Longitude: 23.3303411","Latitude: 55.385771<br></br>Longitude: 37.545353","Latitude: 44.1986138<br></br>Longitude: -79.651108","Latitude: 49.280685<br></br>Longitude: -123.120449","Latitude: 48.7603607<br></br>Longitude: 44.4965881","Latitude: 43.613751<br></br>Longitude: -79.6968418","Latitude: 50.0630588<br></br>Longitude: 19.9399172","Latitude: 49.1990557<br></br>Longitude: -122.977263","Latitude: 43.7817038<br></br>Longitude: -79.6236619","Latitude: 35.8377024<br></br>Longitude: -78.6758944","Latitude: 45.569902<br></br>Longitude: -73.750558","Latitude: 53.2631699<br></br>Longitude: -2.8838736","Latitude: 44.5074364<br></br>Longitude: 26.082589","Latitude: 45.4276794<br></br>Longitude: -74.1104617","Latitude: 43.4098366<br></br>Longitude: -80.3951779","Latitude: 43.6490502<br></br>Longitude: -79.3942659","Latitude: 43.5081413<br></br>Longitude: -80.5544353","Latitude: 28.4501555<br></br>Longitude: -81.4007649","Latitude: 40.303128<br></br>Longitude: -3.7392387","Latitude: 44.268062<br></br>Longitude: -76.5025605","Latitude: 37.6137944<br></br>Longitude: 127.0296497","Latitude: 33.8754722<br></br>Longitude: -84.3279069","Latitude: 45.885942<br></br>Longitude: 13.3422291","Latitude: 36.1272241<br></br>Longitude: -115.1715512","Latitude: 50.995151<br></br>Longitude: -114.074264","Latitude: 45.4981887<br></br>Longitude: -73.5743749","Latitude: 42.2394496<br></br>Longitude: -83.0140573","Latitude: 43.0875123<br></br>Longitude: -79.1205055","Latitude: 40.3950656<br></br>Longitude: -3.6756276","Latitude: 51.2032209<br></br>Longitude: -113.9930715","Latitude: 44.1988368<br></br>Longitude: -79.6509411","Latitude: 53.522493<br></br>Longitude: -113.624205","Latitude: 49.8261712<br></br>Longitude: -97.2052898","Latitude: 44.1986138<br></br>Longitude: -79.651108","Latitude: 47.1045233<br></br>Longitude: 51.9132569","Latitude: 51.7210717<br></br>Longitude: 75.3093877","Latitude: 36.1626638<br></br>Longitude: -86.7816016","Latitude: 51.161401<br></br>Longitude: 71.428623","Latitude: 53.4434443<br></br>Longitude: -113.4835149","Latitude: 45.8750077<br></br>Longitude: 8.9796594","Latitude: 49.1919618<br></br>Longitude: -122.9488485","Latitude: 22.2996<br></br>Longitude: 114.168482","Latitude: 43.5058146<br></br>Longitude: -80.5553534","Latitude: 43.2588774<br></br>Longitude: 76.9303493","Latitude: 45.5727612<br></br>Longitude: -73.4037596","Latitude: 53.2164671<br></br>Longitude: 63.6288805","Latitude: 42.7054225<br></br>Longitude: -83.3067734","Latitude: 48.919311<br></br>Longitude: 24.714507","Latitude: 43.253826<br></br>Longitude: 76.936595","Latitude: 48.73585828<br></br>Longitude: 37.58714274","Latitude: 46.4853037<br></br>Longitude: 30.7334161","Latitude: 53.4442051<br></br>Longitude: -113.4814011","Latitude: 46.4617484<br></br>Longitude: 30.7418828","Latitude: 50.4083604<br></br>Longitude: 30.65507144","Latitude: 38.2062338<br></br>Longitude: -85.3520379","Latitude: 49.8278582<br></br>Longitude: -97.2028837","Latitude: -22.9709569<br></br>Longitude: -43.3725154","Latitude: 50.2891028<br></br>Longitude: 57.1931666","Latitude: 50.2891028<br></br>Longitude: 57.1931666","Latitude: 51.1176033<br></br>Longitude: -114.1339778","Latitude: 51.2075561<br></br>Longitude: 51.3681515","Latitude: 49.1208129<br></br>Longitude: -122.6629778","Latitude: 45.4997257<br></br>Longitude: -73.706172","Latitude: 43.592977<br></br>Longitude: -79.568902","Latitude: 49.8011724<br></br>Longitude: 73.0880556","Latitude: 49.432935<br></br>Longitude: 26.983584","Latitude: 50.4113181<br></br>Longitude: 80.2571848","Latitude: 50.6259003<br></br>Longitude: 26.2002149","Latitude: 36.6443532<br></br>Longitude: -93.2639536","Latitude: 42.8983715<br></br>Longitude: 71.3979891","Latitude: 48.0306524<br></br>Longitude: 37.787627","Latitude: 44.6488582<br></br>Longitude: -63.6184029","Latitude: 43.5752357<br></br>Longitude: -79.8296052","Latitude: 50.0653582<br></br>Longitude: 36.1948173","Latitude: 43.8227846<br></br>Longitude: -79.5335526","Latitude: 51.1322975<br></br>Longitude: 71.4033994","Latitude: 51.1322975<br></br>Longitude: 71.4033994","Latitude: 42.2394496<br></br>Longitude: -83.0140573","Latitude: 53.2123361<br></br>Longitude: 63.6385279","Latitude: 42.317301<br></br>Longitude: 69.589709","Latitude: 36.3407465<br></br>Longitude: 127.3894914","Latitude: 43.3641165<br></br>Longitude: -73.7016216","Latitude: 47.1005532<br></br>Longitude: 37.5247036","Latitude: -16.137161<br></br>Longitude: -48.5988553","Latitude: 43.8905381<br></br>Longitude: -78.8799489","Latitude: 45.0113848<br></br>Longitude: 78.3473546","Latitude: 49.4424974<br></br>Longitude: 32.0599548","Latitude: 48.4665735<br></br>Longitude: 35.0506224","Latitude: 43.633402<br></br>Longitude: 51.163897","Latitude: 46.4160707<br></br>Longitude: 30.7108011","Latitude: 51.220351<br></br>Longitude: 51.388959","Latitude: 43.6111459<br></br>Longitude: -79.69248","Latitude: 51.1443333<br></br>Longitude: 71.4113051","Latitude: 43.233961<br></br>Longitude: 76.777318","Latitude: 40.7646382<br></br>Longitude: -73.305368","Latitude: 34.9845485<br></br>Longitude: -118.9413974","Latitude: -12.8807697<br></br>Longitude: -38.3131068","Latitude: 48.5687099<br></br>Longitude: 39.3159324","Latitude: 47.811342<br></br>Longitude: 35.1887205","Latitude: 43.273466<br></br>Longitude: 76.947909","Latitude: 38.2569438<br></br>Longitude: -122.6498966","Latitude: 50.26570527<br></br>Longitude: 28.6851579","Latitude: 50.4938036<br></br>Longitude: 30.4978393","Latitude: 50.029599<br></br>Longitude: 36.327398","Latitude: 50.2891028<br></br>Longitude: 57.1931666","Latitude: 39.9416152<br></br>Longitude: -75.1506217","Latitude: 43.2328469<br></br>Longitude: 76.8785836","Latitude: 50.2891028<br></br>Longitude: 57.1931666","Latitude: 38.337998<br></br>Longitude: -75.1064745","Latitude: 54.866299<br></br>Longitude: 69.137859","Latitude: 48.5294163<br></br>Longitude: 35.030787","Latitude: 49.8094032<br></br>Longitude: 23.9980911","Latitude: 47.2961054<br></br>Longitude: -122.2457319","Latitude: 51.8195731<br></br>Longitude: 68.3669879","Latitude: 49.23360795<br></br>Longitude: 28.47108543","Latitude: 50.442115<br></br>Longitude: 30.436484","Latitude: -23.5204343<br></br>Longitude: -46.7753617","Latitude: 50.027419<br></br>Longitude: 36.331127","Latitude: 37.4158732<br></br>Longitude: -121.8975344","Latitude: 53.2123361<br></br>Longitude: 63.6385279","Latitude: 42.394505<br></br>Longitude: -71.079594","Latitude: 53.2123361<br></br>Longitude: 63.6385279","Latitude: 51.1288147<br></br>Longitude: 71.4620339","Latitude: 37.5078215<br></br>Longitude: 127.0222585","Latitude: 37.4975424<br></br>Longitude: 127.0579688","Latitude: 37.4773244<br></br>Longitude: 126.8877548","Latitude: -34.5636073<br></br>Longitude: -58.6973117","Latitude: -34.6675402<br></br>Longitude: -58.368353","Latitude: 37.7696173<br></br>Longitude: 126.696253","Latitude: 37.5249367<br></br>Longitude: 126.9252845","Latitude: 35.0993215<br></br>Longitude: 129.0271458","Latitude: 50.4938036<br></br>Longitude: 30.4978393","Latitude: 50.0019261<br></br>Longitude: 36.30852968","Latitude: 47.9903597<br></br>Longitude: 37.8002617","Latitude: 46.411165<br></br>Longitude: 30.7261174","Latitude: 46.8987105<br></br>Longitude: 142.743045","Latitude: 57.12332<br></br>Longitude: 65.563147","Latitude: 43.426177<br></br>Longitude: 39.927683","Latitude: 50.3959<br></br>Longitude: 30.63218","Latitude: -8.11916<br></br>Longitude: -34.9047719","Latitude: 40.1616983<br></br>Longitude: -74.4173516","Latitude: -23.5725984<br></br>Longitude: -46.6957864","Latitude: -8.0379795<br></br>Longitude: -34.8717823","Latitude: -34.67565<br></br>Longitude: -58.368375","Latitude: 37.5646847<br></br>Longitude: 126.9930059","Latitude: 37.5250382<br></br>Longitude: 127.0400909","Latitude: -34.5955222<br></br>Longitude: -58.3875499","Latitude: 50.507139<br></br>Longitude: 30.498432","Latitude: 37.4814638<br></br>Longitude: 127.0603253","Latitude: 48.267779<br></br>Longitude: 25.927885","Latitude: 35.1568526<br></br>Longitude: 129.0566466","Latitude: 35.3161<br></br>Longitude: 129.1755366","Latitude: 50.487665<br></br>Longitude: 30.501188","Latitude: 37.5667733<br></br>Longitude: 126.8025118","Latitude: 48.902472<br></br>Longitude: 24.71421","Latitude: 48.5294163<br></br>Longitude: 35.030787","Latitude: 50.027233<br></br>Longitude: 36.33087","Latitude: -3.0801542<br></br>Longitude: -60.0244208","Latitude: 55.164862<br></br>Longitude: 61.404483","Latitude: -20.3126487<br></br>Longitude: -40.2881193","Latitude: -23.3142662<br></br>Longitude: -51.2137207","Latitude: 37.5387765<br></br>Longitude: 127.0710831","Latitude: 35.8668017<br></br>Longitude: 128.5954133","Latitude: -9.6487174<br></br>Longitude: -35.7153261","Latitude: -34.6033294<br></br>Longitude: -58.4107886","Latitude: -34.6033294<br></br>Longitude: -58.4107886","Latitude: 37.6916551<br></br>Longitude: 126.7662654","Latitude: 35.1698426<br></br>Longitude: 129.1311016","Latitude: 50.493749<br></br>Longitude: 30.5612821","Latitude: 35.1569892<br></br>Longitude: 129.050479","Latitude: 37.5154709<br></br>Longitude: 126.9066823","Latitude: 35.3208702<br></br>Longitude: 129.2378277","Latitude: 50.500233<br></br>Longitude: 30.500456","Latitude: 48.4075808<br></br>Longitude: 35.0001207","Latitude: 46.4160708<br></br>Longitude: 30.7108011","Latitude: 50.4318241<br></br>Longitude: 30.3563267","Latitude: 50.5786865<br></br>Longitude: 36.5822852","Latitude: 50.493749<br></br>Longitude: 30.5612821","Latitude: 50.027233<br></br>Longitude: 36.33087","Latitude: 37.5171482<br></br>Longitude: 126.9055629","Latitude: -21.2134293<br></br>Longitude: -47.8160158","Latitude: 50.4130579<br></br>Longitude: 30.5206834","Latitude: -5.8112936<br></br>Longitude: -35.2062356","Latitude: 56.176773<br></br>Longitude: 40.45926","Latitude: -19.9747556<br></br>Longitude: -43.9447772","Latitude: 37.6275628<br></br>Longitude: 127.0252507","Latitude: -23.4341323<br></br>Longitude: -46.5372315","Latitude: -32.901813<br></br>Longitude: -68.797781","Latitude: -34.5752085<br></br>Longitude: -58.4042867","Latitude: -23.5444012<br></br>Longitude: -46.6543537","Latitude: 50.378202<br></br>Longitude: 30.4494381","Latitude: 35.2313852<br></br>Longitude: 129.0873745","Latitude: 37.5634661<br></br>Longitude: 126.9815063","Latitude: 46.4699985<br></br>Longitude: 30.7294679","Latitude: 35.096715<br></br>Longitude: 129.0367482","Latitude: 50.493749<br></br>Longitude: 30.5612821","Latitude: 37.5249367<br></br>Longitude: 126.9252845","Latitude: -34.545737<br></br>Longitude: -58.488341","Latitude: 50.4130579<br></br>Longitude: 30.5206834","Latitude: 46.6728406<br></br>Longitude: 32.6440342","Latitude: -3.0953202<br></br>Longitude: -60.013211","Latitude: 37.7696173<br></br>Longitude: 126.696253","Latitude: 50.0653582<br></br>Longitude: 36.1948173","Latitude: -32.886353<br></br>Longitude: -68.8388959","Latitude: -15.8335067<br></br>Longitude: -47.9552839","Latitude: -12.9780024<br></br>Longitude: -38.4547378","Latitude: 37.5628867<br></br>Longitude: 126.9932746","Latitude: -34.5896201<br></br>Longitude: -58.425941","Latitude: 35.8713713<br></br>Longitude: 128.7264838","Latitude: -34.545737<br></br>Longitude: -58.488341","Latitude: 55.4268626<br></br>Longitude: 65.2811467","Latitude: 50.487903<br></br>Longitude: 30.507429","Latitude: -23.622708<br></br>Longitude: -46.698664","Latitude: 50.5498689<br></br>Longitude: 137.0072496","Latitude: 37.5249367<br></br>Longitude: 126.9252845","Latitude: 48.4665735<br></br>Longitude: 35.0506224","Latitude: 37.5634661<br></br>Longitude: 126.9815063","Latitude: 56.854096<br></br>Longitude: 35.864287","Latitude: 49.974683<br></br>Longitude: 36.30397","Latitude: -34.5636073<br></br>Longitude: -58.6973117","Latitude: -25.4777952<br></br>Longitude: -49.2919018","Latitude: 48.42139404<br></br>Longitude: 35.0630191","Latitude: -23.625799<br></br>Longitude: -46.580486","Latitude: -22.8476033<br></br>Longitude: -47.0635857","Latitude: 56.1509477<br></br>Longitude: 101.6191528","Latitude: -30.0844939<br></br>Longitude: -51.2452975","Latitude: 42.6951435<br></br>Longitude: 23.3211647","Latitude: -23.5614415<br></br>Longitude: -46.5603583","Latitude: 42.1395499<br></br>Longitude: 24.7291337","Latitude: 42.6701775<br></br>Longitude: 23.2688211","Latitude: 42.6604822<br></br>Longitude: 23.3830128","Latitude: -19.8347579<br></br>Longitude: -43.9404857","Latitude: -33.5698349<br></br>Longitude: -70.5566897","Latitude: -33.3705254<br></br>Longitude: -70.5067775","Latitude: -33.3575796<br></br>Longitude: -70.5152664","Latitude: -33.4540615<br></br>Longitude: -70.6042999","Latitude: -8.0878136<br></br>Longitude: -34.8912371","Latitude: -20.4526575<br></br>Longitude: -54.6222719","Latitude: -19.8903026<br></br>Longitude: -43.9680163","Latitude: -23.6046699<br></br>Longitude: -46.6627466","Latitude: 10.7719839<br></br>Longitude: 106.7043912","Latitude: 29.57572519<br></br>Longitude: 106.53303623","Latitude: -23.579776<br></br>Longitude: -46.5943069","Latitude: 42.5299913<br></br>Longitude: 27.459867","Latitude: -30.0119314<br></br>Longitude: -51.1607565","Latitude: 42.6435217<br></br>Longitude: 23.4010126","Latitude: -33.5170528<br></br>Longitude: -70.7178874","Latitude: 42.1579802<br></br>Longitude: 24.7344673","Latitude: -23.5215236<br></br>Longitude: -46.6239827","Latitude: -23.504654<br></br>Longitude: -46.833809","Latitude: -23.6098009<br></br>Longitude: -46.6679243","Latitude: -25.4347824<br></br>Longitude: -49.3167788","Latitude: -23.5584536<br></br>Longitude: -46.6793629","Latitude: -22.9823016<br></br>Longitude: -43.2166874","Latitude: 43.2188727<br></br>Longitude: 27.9683438","Latitude: -22.8318859<br></br>Longitude: -43.3440059","Latitude: -36.8244179<br></br>Longitude: -73.0453133","Latitude: 43.2186599<br></br>Longitude: 27.8982363","Latitude: -33.3662202<br></br>Longitude: -70.6785295","Latitude: 43.2120266<br></br>Longitude: 27.9235519","Latitude: 31.9812174<br></br>Longitude: 35.8655626","Latitude: -33.5197642<br></br>Longitude: -70.6024624","Latitude: -22.9571438<br></br>Longitude: -43.1767233","Latitude: -33.0088544<br></br>Longitude: -71.5485614","Latitude: -23.5643458<br></br>Longitude: -46.6672792","Latitude: -23.4763373<br></br>Longitude: -46.6837047","Latitude: -23.5788055<br></br>Longitude: -46.6406856","Latitude: -34.6275142<br></br>Longitude: -58.3785035","Latitude: 43.2191001<br></br>Longitude: 27.8887789","Latitude: -23.109166<br></br>Longitude: -47.0079878","Latitude: -23.5620579<br></br>Longitude: -46.67028","Latitude: -33.4178073<br></br>Longitude: -70.6078063","Latitude: -33.4813538<br></br>Longitude: -70.7518532","Latitude: 42.4379101<br></br>Longitude: 25.6323194","Latitude: -33.4287369<br></br>Longitude: -70.5407235","Latitude: 45.068996<br></br>Longitude: 20.136034","Latitude: -33.3662202<br></br>Longitude: -70.6785295","Latitude: -22.9218019<br></br>Longitude: -43.2353639","Latitude: 42.4984<br></br>Longitude: 27.4721083","Latitude: -33.4563339<br></br>Longitude: -70.7663971","Latitude: -22.9783536<br></br>Longitude: -43.2202716","Latitude: -19.9539051<br></br>Longitude: -44.0225021","Latitude: -18.8824014<br></br>Longitude: -41.9656246","Latitude: -22.7459466<br></br>Longitude: -47.638795","Latitude: 42.6918831<br></br>Longitude: 23.3535311","Latitude: -23.6478281<br></br>Longitude: -46.7042315","Latitude: 42.516499<br></br>Longitude: 27.4539385","Latitude: 42.4280117<br></br>Longitude: 25.6571276","Latitude: -33.4388095<br></br>Longitude: -70.6545998","Latitude: -33.3484873<br></br>Longitude: -70.7289368","Latitude: -30.028504<br></br>Longitude: -51.1678541","Latitude: 42.145135<br></br>Longitude: 24.7486933","Latitude: -23.4687866<br></br>Longitude: -46.521548","Latitude: 45.068996<br></br>Longitude: 20.136034","Latitude: -22.893747<br></br>Longitude: -47.024258","Latitude: 36.3519528<br></br>Longitude: 127.3782049","Latitude: -36.7802354<br></br>Longitude: -73.0587082","Latitude: -29.9121849<br></br>Longitude: -71.258673","Latitude: -23.0059792<br></br>Longitude: -43.3174066","Latitude: 42.6378165<br></br>Longitude: 23.3705863","Latitude: -23.7156837<br></br>Longitude: -46.54911","Latitude: 23.9329877<br></br>Longitude: 114.0599571","Latitude: 55.65338<br></br>Longitude: 37.646268","Latitude: -34.5956088<br></br>Longitude: -58.3954144","Latitude: -34.6040352<br></br>Longitude: -58.4109385","Latitude: 54.1767318<br></br>Longitude: 16.201415","Latitude: 37.2413127<br></br>Longitude: 127.6125556","Latitude: 37.5240129<br></br>Longitude: 127.0301604","Latitude: 51.4910407<br></br>Longitude: 6.8818559","Latitude: 52.5061898<br></br>Longitude: 13.3740486","Latitude: 51.5319787<br></br>Longitude: 4.4289353","Latitude: 55.633433<br></br>Longitude: 37.6243399","Latitude: 54.9969375<br></br>Longitude: -3.0602778","Latitude: 48.53549<br></br>Longitude: 9.28329","Latitude: 55.761743<br></br>Longitude: 37.566722","Latitude: 50.42604<br></br>Longitude: 30.51699","Latitude: 48.002467<br></br>Longitude: 37.798703","Latitude: 48.5064215<br></br>Longitude: 32.2641696","Latitude: 35.1687032<br></br>Longitude: 129.1297466","Latitude: 55.0430601<br></br>Longitude: 82.9221053","Latitude: 37.517007<br></br>Longitude: 126.9041419","Latitude: -34.5925238<br></br>Longitude: -58.4058467","Latitude: -32.8865527<br></br>Longitude: -68.8383387","Latitude: 37.4969255<br></br>Longitude: 127.0532731","Latitude: 37.4919298<br></br>Longitude: 126.831681","Latitude: 50.1143519<br></br>Longitude: 8.6814498","Latitude: 51.9357179<br></br>Longitude: 15.5114227","Latitude: 57.6272392<br></br>Longitude: 39.8693454","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 49.4502011<br></br>Longitude: 11.0746889","Latitude: -34.6387396<br></br>Longitude: -58.5216448","Latitude: 35.1687032<br></br>Longitude: 129.1297466","Latitude: 55.7892806<br></br>Longitude: 37.6783149","Latitude: -34.5467019<br></br>Longitude: -58.4494591","Latitude: 49.7725684<br></br>Longitude: 9.579755","Latitude: -34.619437<br></br>Longitude: -58.439422","Latitude: 56.3066532<br></br>Longitude: 44.0785452","Latitude: 50.812842<br></br>Longitude: -0.1021894","Latitude: 47.9087851<br></br>Longitude: 33.3916337","Latitude: 37.2739292<br></br>Longitude: 127.1501805","Latitude: 37.5171482<br></br>Longitude: 126.9055629","Latitude: 37.5649903<br></br>Longitude: 126.981369","Latitude: 47.260878<br></br>Longitude: 39.723675","Latitude: 52.5046473<br></br>Longitude: 13.336935","Latitude: 53.5527051<br></br>Longitude: 9.9904658","Latitude: 37.5387765<br></br>Longitude: 127.0710831","Latitude: 55.4516294<br></br>Longitude: 11.7855632","Latitude: -34.674675<br></br>Longitude: -58.4606142","Latitude: 53.2631699<br></br>Longitude: -2.8838736","Latitude: 55.6598302<br></br>Longitude: 37.8788733","Latitude: 50.449718<br></br>Longitude: 30.472448","Latitude: -34.453295<br></br>Longitude: -58.72943","Latitude: -34.601825<br></br>Longitude: -58.375215","Latitude: 36.606133<br></br>Longitude: 127.4803653","Latitude: 37.517007<br></br>Longitude: 126.9041419","Latitude: 55.982686<br></br>Longitude: 37.174843","Latitude: 37.5649903<br></br>Longitude: 126.981369","Latitude: 48.7809751<br></br>Longitude: 9.1808582","Latitude: 49.573794<br></br>Longitude: 10.9163554","Latitude: 52.2301084<br></br>Longitude: 21.0026871","Latitude: 50.504988<br></br>Longitude: 30.471517","Latitude: 50.9383707<br></br>Longitude: 6.9564284","Latitude: 49.4424974<br></br>Longitude: 32.0599548","Latitude: 49.98968054<br></br>Longitude: 36.23207062","Latitude: 53.415763<br></br>Longitude: -2.135182","Latitude: 37.5041299<br></br>Longitude: 127.0030692","Latitude: -34.453295<br></br>Longitude: -58.72943","Latitude: 54.7230577<br></br>Longitude: -6.2214512","Latitude: -34.5990679<br></br>Longitude: -58.375216","Latitude: 35.1851191<br></br>Longitude: 128.8299232","Latitude: 35.8712295<br></br>Longitude: 128.5958528","Latitude: 37.4784537<br></br>Longitude: 126.858315","Latitude: 50.0287104<br></br>Longitude: 19.9492124","Latitude: 48.7626249<br></br>Longitude: 16.0621257","Latitude: 37.5583398<br></br>Longitude: 126.9431336","Latitude: 51.2254173<br></br>Longitude: 6.7746808","Latitude: 50.3670085<br></br>Longitude: 30.457413","Latitude: 50.029664<br></br>Longitude: 36.327629","Latitude: 55.7926601<br></br>Longitude: 37.5901102","Latitude: 52.5199026<br></br>Longitude: 13.4147948","Latitude: 51.8694853<br></br>Longitude: 0.5732505","Latitude: 44.7362145<br></br>Longitude: 8.8363391","Latitude: 53.5296272<br></br>Longitude: 49.3963383","Latitude: 60.939612<br></br>Longitude: 76.597769","Latitude: 55.8827321<br></br>Longitude: -3.5194053","Latitude: 50.493749<br></br>Longitude: 30.5612821","Latitude: 40.093324<br></br>Longitude: -74.9582345","Latitude: 34.2147347<br></br>Longitude: -119.0572673","Latitude: 45.642044<br></br>Longitude: 9.155688","Latitude: 37.5649903<br></br>Longitude: 126.981369","Latitude: 61.261489<br></br>Longitude: 73.4608511","Latitude: 40.9212286<br></br>Longitude: -72.714681","Latitude: 44.021647<br></br>Longitude: -71.1110748","Latitude: 44.2485744<br></br>Longitude: -84.2289029","Latitude: 43.0980709<br></br>Longitude: -78.9788418","Latitude: 41.0032696<br></br>Longitude: -81.9961894","Latitude: 41.140693<br></br>Longitude: -80.1574505","Latitude: 43.0656845<br></br>Longitude: 141.3630421","Latitude: 36.6188557<br></br>Longitude: -121.9045418","Latitude: 33.1262516<br></br>Longitude: -117.3211879","Latitude: 57.117276<br></br>Longitude: 65.5496908","Latitude: 40.0378755<br></br>Longitude: -76.3055144","Latitude: 45.0396685<br></br>Longitude: 38.973202","Latitude: 37.4905756<br></br>Longitude: 126.9249911","Latitude: 40.9181658<br></br>Longitude: -74.0762757","Latitude: 43.2449336<br></br>Longitude: -83.7758064","Latitude: 40.8887069<br></br>Longitude: -74.2593816","Latitude: 40.3379396<br></br>Longitude: -75.9549753","Latitude: 34.5493576<br></br>Longitude: -114.3678646","Latitude: 32.6618932<br></br>Longitude: -16.9521759","Latitude: 30.3818632<br></br>Longitude: -86.3581374","Latitude: 36.6443532<br></br>Longitude: -93.2639536","Latitude: 27.5367306<br></br>Longitude: -82.5079571","Latitude: 14.423466<br></br>Longitude: 121.029698","Latitude: 42.0381377<br></br>Longitude: -71.3526391","Latitude: 35.6598219<br></br>Longitude: 139.699265","Latitude: 42.3455999<br></br>Longitude: -71.5454099","Latitude: 40.4128084<br></br>Longitude: -104.9940509","Latitude: 56.8235224<br></br>Longitude: 60.5050579","Latitude: 34.8471756<br></br>Longitude: -117.0844289","Latitude: 35.1624767<br></br>Longitude: -114.5758899","Latitude: 45.0691029<br></br>Longitude: 38.9727324","Latitude: 44.9587207<br></br>Longitude: -124.0105628","Latitude: 43.6060604<br></br>Longitude: 39.7322586","Latitude: 34.215571<br></br>Longitude: -119.0619241","Latitude: 38.1503113<br></br>Longitude: -92.6179621","Latitude: 41.3317251<br></br>Longitude: -74.1213172","Latitude: 41.6911734<br></br>Longitude: -92.0037329","Latitude: 34.3578142<br></br>Longitude: -84.0479479","Latitude: 35.6278192<br></br>Longitude: 139.7735683","Latitude: 35.8340418<br></br>Longitude: -83.5699135","Latitude: 35.0838062<br></br>Longitude: -81.7103009","Latitude: 40.5053047<br></br>Longitude: -74.8553734","Latitude: 40.916986<br></br>Longitude: -72.7094703","Latitude: 35.8035334<br></br>Longitude: -83.5786955","Latitude: 40.9283729<br></br>Longitude: -73.8535172","Latitude: 42.1216838<br></br>Longitude: -88.4262702","Latitude: 40.585792<br></br>Longitude: -74.619214","Latitude: 31.5915207<br></br>Longitude: 130.5554327","Latitude: 33.7508024<br></br>Longitude: -78.957084","Latitude: 14.5513427<br></br>Longitude: 121.0215101","Latitude: 39.1068098<br></br>Longitude: -77.538337","Latitude: 40.2120096<br></br>Longitude: -8.4424699","Latitude: 41.7322959<br></br>Longitude: -85.0033735","Latitude: 56.2324456<br></br>Longitude: 44.0567935","Latitude: 41.0483786<br></br>Longitude: -75.3130663","Latitude: 38.3365032<br></br>Longitude: -75.0849058","Latitude: 28.3487857<br></br>Longitude: -81.4880294","Latitude: 52.2670887<br></br>Longitude: 104.2259819","Latitude: 48.658994<br></br>Longitude: 44.439182","Latitude: 42.1535056<br></br>Longitude: -71.0656168","Latitude: 40.0266779<br></br>Longitude: -76.2225688","Latitude: 33.6781863<br></br>Longitude: -97.157046","Latitude: 41.6573335<br></br>Longitude: -70.2586638","Latitude: 40.1616983<br></br>Longitude: -74.4173516","Latitude: 34.3929939<br></br>Longitude: 132.4587366","Latitude: 35.6613587<br></br>Longitude: 139.7301149","Latitude: 35.7276091<br></br>Longitude: 139.7123081","Latitude: 29.9219929<br></br>Longitude: -81.4155071","Latitude: 42.294368<br></br>Longitude: -73.2344344","Latitude: 34.25181<br></br>Longitude: -83.470642","Latitude: 41.3166228<br></br>Longitude: -74.1303333","Latitude: 40.7381975<br></br>Longitude: -73.6143576","Latitude: 38.2614381<br></br>Longitude: 140.875386","Latitude: 40.5811976<br></br>Longitude: -74.1647604","Latitude: 40.272131<br></br>Longitude: -3.693468","Latitude: 38.3657009<br></br>Longitude: -121.9565562","Latitude: 48.4571653<br></br>Longitude: -122.3363001","Latitude: 38.7336894<br></br>Longitude: -75.1399365","Latitude: 35.4526845<br></br>Longitude: 139.6304952","Latitude: 30.4291575<br></br>Longitude: -89.0988847","Latitude: 32.7025502<br></br>Longitude: -96.283827","Latitude: 30.2133036<br></br>Longitude: -90.9532721","Latitude: 42.0364053<br></br>Longitude: -71.350801","Latitude: 40.025686<br></br>Longitude: -76.2198771","Latitude: 37.3179793<br></br>Longitude: -76.7354159","Latitude: 41.7142943<br></br>Longitude: -86.9043738","Latitude: 14.7090471<br></br>Longitude: 121.0235363","Latitude: 30.375237<br></br>Longitude: -87.682475","Latitude: 32.8402323<br></br>Longitude: -116.708297","Latitude: 26.4947043<br></br>Longitude: -81.9738704","Latitude: 59.4442511<br></br>Longitude: 18.0728756","Latitude: 40.2957865<br></br>Longitude: -76.6465636","Latitude: 42.9549633<br></br>Longitude: -76.9230484","Latitude: 35.5114231<br></br>Longitude: -78.3102857","Latitude: 27.6360355<br></br>Longitude: -80.5228438","Latitude: 28.4741672<br></br>Longitude: -81.4489332","Latitude: 36.0549772<br></br>Longitude: -115.1691065","Latitude: 36.358129<br></br>Longitude: 138.6354725","Latitude: 41.2891184<br></br>Longitude: -72.4293689","Latitude: 36.0817807<br></br>Longitude: 140.1113842","Latitude: 43.3655278<br></br>Longitude: -73.6985868","Latitude: 43.1175814<br></br>Longitude: -70.7281653","Latitude: 39.7882236<br></br>Longitude: -88.2672604","Latitude: 40.7269252<br></br>Longitude: -74.0383528","Latitude: 35.1661957<br></br>Longitude: 136.9067844","Latitude: 37.0243823<br></br>Longitude: -121.5666351","Latitude: 35.3689981<br></br>Longitude: -80.7222273","Latitude: 32.0156033<br></br>Longitude: -97.0945658","Latitude: 33.347566<br></br>Longitude: -84.1230327","Latitude: 29.8260234<br></br>Longitude: -97.9855982","Latitude: 39.6062307<br></br>Longitude: -77.7327168","Latitude: 35.3700689<br></br>Longitude: -80.7239298","Latitude: 25.9569187<br></br>Longitude: -80.1430982","Latitude: 35.8804169<br></br>Longitude: 139.8249215","Latitude: 37.504481<br></br>Longitude: 126.760952","Latitude: 37.5560736<br></br>Longitude: 126.9357977","Latitude: 35.1851191<br></br>Longitude: 128.8299232","Latitude: 37.5086154<br></br>Longitude: 127.0597808","Latitude: 37.3850076<br></br>Longitude: 127.1231651","Latitude: 25.7907872<br></br>Longitude: -80.1406353","Latitude: 32.6651379<br></br>Longitude: -115.5075792","Latitude: 49.77347685<br></br>Longitude: 24.01096076","Latitude: 50.6259003<br></br>Longitude: 26.2002149","Latitude: 55.789943<br></br>Longitude: 37.533863","Latitude: 49.43279<br></br>Longitude: 26.98386","Latitude: 48.5687099<br></br>Longitude: 39.3159324","Latitude: -33.0088544<br></br>Longitude: -71.5485614","Latitude: -29.9127192<br></br>Longitude: -71.2582656","Latitude: 46.97314<br></br>Longitude: 31.993732","Latitude: 43.202442<br></br>Longitude: 76.891881","Latitude: 32.2751259<br></br>Longitude: -90.1529279","Latitude: 13.747404<br></br>Longitude: 100.540238","Latitude: 37.440941<br></br>Longitude: 126.701426","Latitude: 42.3899294<br></br>Longitude: -87.9593224","Latitude: 27.6360355<br></br>Longitude: -80.5228438","Latitude: 35.5383725<br></br>Longitude: 129.3382442","Latitude: 38.643967<br></br>Longitude: -121.1878005","Latitude: 46.4853037<br></br>Longitude: 30.7334161","Latitude: -33.4021934<br></br>Longitude: -70.5782494","Latitude: 41.0991904<br></br>Longitude: -96.2510996","Latitude: 35.6722289<br></br>Longitude: 139.7214446","Latitude: 46.4816471<br></br>Longitude: 30.7380755","Latitude: 13.8576318<br></br>Longitude: 100.5380594","Latitude: 43.0915903<br></br>Longitude: -88.7630678","Latitude: 35.1708105<br></br>Longitude: -80.9709609","Latitude: 48.62026<br></br>Longitude: 22.29728","Latitude: 37.5012056<br></br>Longitude: 126.8827953","Latitude: 39.7848289<br></br>Longitude: -75.0528629","Latitude: 36.9918456<br></br>Longitude: 127.0836477","Latitude: 49.59596965<br></br>Longitude: 34.49048817","Latitude: 43.202442<br></br>Longitude: 76.891881","Latitude: 50.7456297<br></br>Longitude: 25.323684","Latitude: 13.720849<br></br>Longitude: 100.726878","Latitude: 49.23360795<br></br>Longitude: 28.47108543","Latitude: 48.73585828<br></br>Longitude: 37.58714274","Latitude: 46.4837715<br></br>Longitude: 30.7375039","Latitude: 37.2413127<br></br>Longitude: 127.6125556","Latitude: 44.8148405<br></br>Longitude: -93.2151887","Latitude: 47.909505<br></br>Longitude: 33.3980504","Latitude: 26.7245866<br></br>Longitude: -80.0867536","Latitude: 37.5025175<br></br>Longitude: 126.7753575","Latitude: 35.2245588<br></br>Longitude: 128.6818319","Latitude: 35.6856706<br></br>Longitude: 139.9901567","Latitude: 37.517007<br></br>Longitude: 126.9041419","Latitude: 39.730932<br></br>Longitude: -105.161597","Latitude: 49.126859<br></br>Longitude: 33.4012377","Latitude: 32.9648359<br></br>Longitude: -97.0424136","Latitude: 50.26570527<br></br>Longitude: 28.6851579","Latitude: 41.9011061<br></br>Longitude: -87.6263582","Latitude: 34.0757276<br></br>Longitude: -117.5501019","Latitude: 37.447201<br></br>Longitude: 126.701233","Latitude: 35.201492<br></br>Longitude: 128.5734241","Latitude: 35.1597624<br></br>Longitude: 126.8803477","Latitude: 35.2114828<br></br>Longitude: 129.0776055","Latitude: 49.8382735<br></br>Longitude: 24.0315455","Latitude: 28.4459749<br></br>Longitude: -81.3945022","Latitude: -36.7802751<br></br>Longitude: -73.0586356","Latitude: 36.8196847<br></br>Longitude: 127.1543899","Latitude: -33.4563339<br></br>Longitude: -70.7663971","Latitude: 48.932945<br></br>Longitude: 24.7460068","Latitude: 49.5512615<br></br>Longitude: 25.595626","Latitude: 48.267779<br></br>Longitude: 25.927885","Latitude: 35.0991428<br></br>Longitude: 129.0322656","Latitude: 37.2422526<br></br>Longitude: 127.4000798","Latitude: 35.5420121<br></br>Longitude: 129.3495549","Latitude: 33.5903547<br></br>Longitude: 130.4017155","Latitude: 35.5751463<br></br>Longitude: 139.6598589","Latitude: -33.629183<br></br>Longitude: -70.7135192","Latitude: -33.3908715<br></br>Longitude: -70.5462877","Latitude: -32.9839647<br></br>Longitude: -71.5004758","Latitude: -33.4534104<br></br>Longitude: -70.5706135","Latitude: 37.4939126<br></br>Longitude: 127.1552677","Latitude: 48.497541<br></br>Longitude: 135.097689","Latitude: 48.6967632<br></br>Longitude: 44.5010321","Latitude: 58.0093483<br></br>Longitude: 56.2354624","Latitude: 46.96665<br></br>Longitude: 32.001778","Latitude: 36.6452801<br></br>Longitude: 127.4300165","Latitude: -33.4512748<br></br>Longitude: -70.5434691","Latitude: 34.6451655<br></br>Longitude: 135.5137544","Latitude: 48.5692307<br></br>Longitude: 39.3160869","Latitude: 19.4547978<br></br>Longitude: -99.2190198","Latitude: 37.5101935<br></br>Longitude: 127.0585824","Latitude: 55.823604<br></br>Longitude: 37.497478","Latitude: -33.3908715<br></br>Longitude: -70.5462877","Latitude: 55.6193697<br></br>Longitude: 37.5095344","Latitude: 55.171175<br></br>Longitude: 61.355505","Latitude: 46.7513129<br></br>Longitude: 36.7888274","Latitude: 48.7252719<br></br>Longitude: 44.537767","Latitude: 47.84890767<br></br>Longitude: 35.12154892","Latitude: 37.5101935<br></br>Longitude: 127.0585824","Latitude: 19.1320043<br></br>Longitude: -98.2674427","Latitude: 35.6092298<br></br>Longitude: 139.6693831","Latitude: 37.4562557<br></br>Longitude: 126.7052062","Latitude: 37.4939126<br></br>Longitude: 127.1552677","Latitude: 49.2114439<br></br>Longitude: 33.8328908","Latitude: 37.4939126<br></br>Longitude: 127.1552677","Latitude: 55.8232492<br></br>Longitude: 37.4982905","Latitude: 55.6193697<br></br>Longitude: 37.5095344","Latitude: 55.171175<br></br>Longitude: 61.355505","Latitude: 47.1005532<br></br>Longitude: 37.5247036","Latitude: -33.5098218<br></br>Longitude: -70.6081031","Latitude: 37.64<br></br>Longitude: 126.75","Latitude: -33.4534104<br></br>Longitude: -70.5706135","Latitude: -36.8829075<br></br>Longitude: -73.1401705","Latitude: 53.541978<br></br>Longitude: 49.390138","Latitude: 35.1615305<br></br>Longitude: 126.9071515","Latitude: 37.5101935<br></br>Longitude: 127.0585824","Latitude: 33.5875716<br></br>Longitude: 130.3976353","Latitude: 55.603702<br></br>Longitude: 37.491196","Latitude: 48.021039<br></br>Longitude: 37.801813","Latitude: 55.737738<br></br>Longitude: 37.485782","Latitude: 56.1284142<br></br>Longitude: 40.4029557","Latitude: 48.0306524<br></br>Longitude: 37.787627","Latitude: 46.3596834<br></br>Longitude: 48.0554596","Latitude: 35.1412828<br></br>Longitude: 129.0586225","Latitude: -33.5197642<br></br>Longitude: -70.6024624","Latitude: 48.5294163<br></br>Longitude: 35.030787","Latitude: -33.4527276<br></br>Longitude: -70.6822586","Latitude: 36.3699872<br></br>Longitude: 127.3459548","Latitude: 37.2422526<br></br>Longitude: 127.4000798","Latitude: 35.652661<br></br>Longitude: 140.0320147","Latitude: -33.5176132<br></br>Longitude: -70.5980841","Latitude: -33.130571<br></br>Longitude: -71.5633732","Latitude: 46.4780255<br></br>Longitude: 6.3956219","Latitude: 55.7096916<br></br>Longitude: 37.6221057","Latitude: -23.6460605<br></br>Longitude: -70.400822","Latitude: 46.3598975<br></br>Longitude: 48.0553059","Latitude: 60.937188<br></br>Longitude: 76.5958229","Latitude: 53.760531<br></br>Longitude: 87.149743","Latitude: 37.5387765<br></br>Longitude: 127.0710831","Latitude: 43.428441<br></br>Longitude: 39.9209453","Latitude: 4.6170804<br></br>Longitude: -74.0868486","Latitude: 55.73068<br></br>Longitude: 37.7374241","Latitude: 50.600157<br></br>Longitude: 36.589016","Latitude: 55.604182<br></br>Longitude: 37.489004","Latitude: 3.4616007<br></br>Longitude: -76.5169098","Latitude: 6.197312<br></br>Longitude: -75.558936","Latitude: 51.5424438<br></br>Longitude: 46.0146729","Latitude: 55.8129166<br></br>Longitude: 38.4302538","Latitude: 54.9640355<br></br>Longitude: 82.9361856","Latitude: 53.3575234<br></br>Longitude: 83.6982022","Latitude: 54.8994355<br></br>Longitude: 52.2738117","Latitude: 57.744461<br></br>Longitude: 41.013447","Latitude: 3.3743339<br></br>Longitude: -76.5393347","Latitude: 11.0146745<br></br>Longitude: -74.8278388","Latitude: 4.618307<br></br>Longitude: -74.135945","Latitude: 35.2245588<br></br>Longitude: 128.6818319","Latitude: 36.3502842<br></br>Longitude: 127.4366222","Latitude: 37.6083223<br></br>Longitude: 127.0287626","Latitude: 38.017361<br></br>Longitude: 127.0685928","Latitude: 35.096715<br></br>Longitude: 129.0367482","Latitude: 37.3746488<br></br>Longitude: 127.1182617","Latitude: 37.5171482<br></br>Longitude: 126.9055629","Latitude: 37.504277<br></br>Longitude: 126.7620249","Latitude: 4.629182<br></br>Longitude: -74.114305","Latitude: 55.164862<br></br>Longitude: 61.404483","Latitude: 55.3831775<br></br>Longitude: 36.7280835","Latitude: 45.005103<br></br>Longitude: 41.9259289","Latitude: 55.891749<br></br>Longitude: 37.748746","Latitude: 4.7632404<br></br>Longitude: -74.0451975","Latitude: 4.694368<br></br>Longitude: -74.085859","Latitude: 55.68691<br></br>Longitude: 37.858875","Latitude: 10.9881188<br></br>Longitude: -74.8119015","Latitude: 56.8768626<br></br>Longitude: 53.2045102","Latitude: 47.290631<br></br>Longitude: 39.8465235","Latitude: 52.065615<br></br>Longitude: 113.497245","Latitude: 4.5747572<br></br>Longitude: -74.1121483","Latitude: 37.504277<br></br>Longitude: 126.7620249","Latitude: 4.6631756<br></br>Longitude: -74.1312278","Latitude: 47.289877<br></br>Longitude: 39.846464","Latitude: 6.1987984<br></br>Longitude: -75.574589","Latitude: 35.6894875<br></br>Longitude: 139.6917064","Latitude: 37.5667733<br></br>Longitude: 126.8025118","Latitude: 37.5268253<br></br>Longitude: 126.8749782","Latitude: 35.1568526<br></br>Longitude: 129.0566466","Latitude: 37.5112348<br></br>Longitude: 127.0980274","Latitude: 37.4859712<br></br>Longitude: 126.9815356","Latitude: 36.3209817<br></br>Longitude: 127.4089694","Latitude: 55.6252836<br></br>Longitude: 37.7610021","Latitude: 55.915476<br></br>Longitude: 37.760804","Latitude: 4.62027<br></br>Longitude: -74.0710084","Latitude: 55.171175<br></br>Longitude: 61.355505","Latitude: 4.7194745<br></br>Longitude: -74.0368259","Latitude: 25.231492<br></br>Longitude: 55.425225","Latitude: 51.666198<br></br>Longitude: 39.191905","Latitude: 55.612177<br></br>Longitude: 37.732821","Latitude: 3.4648248<br></br>Longitude: -76.5013409","Latitude: 37.698891<br></br>Longitude: 127.3843049","Latitude: 6.2339524<br></br>Longitude: -75.5694177","Latitude: 4.700906<br></br>Longitude: -74.044699","Latitude: 37.3456011<br></br>Longitude: 127.9274613","Latitude: 3.3693758<br></br>Longitude: -76.5273842","Latitude: 55.8919374<br></br>Longitude: 37.7276428","Latitude: 35.1698426<br></br>Longitude: 129.1311016","Latitude: 37.5041299<br></br>Longitude: 127.0030692","Latitude: 37.5607939<br></br>Longitude: 126.9790435","Latitude: 54.632797<br></br>Longitude: 39.772789","Latitude: 55.7442218<br></br>Longitude: 37.5087277","Latitude: 7.1256299<br></br>Longitude: -73.1184446","Latitude: 63.1952971<br></br>Longitude: 75.4461481","Latitude: 55.350371<br></br>Longitude: 86.133512","Latitude: 55.7920321<br></br>Longitude: 37.5759106","Latitude: 55.659252<br></br>Longitude: 37.430047","Latitude: 4.666256<br></br>Longitude: -74.055404","Latitude: 3.374198<br></br>Longitude: -76.539436","Latitude: 4.644658<br></br>Longitude: -74.064424","Latitude: 55.604063<br></br>Longitude: 37.490393","Latitude: 36.3209817<br></br>Longitude: 127.4089694","Latitude: 55.677971<br></br>Longitude: 37.467064","Latitude: 37.5154709<br></br>Longitude: 126.9066823","Latitude: 53.34288<br></br>Longitude: 83.679433","Latitude: 37.5288539<br></br>Longitude: 126.9640447","Latitude: 10.4141298<br></br>Longitude: -75.5301561","Latitude: 6.22926<br></br>Longitude: -75.570659","Latitude: 37.5249367<br></br>Longitude: 126.9252845","Latitude: 35.8344854<br></br>Longitude: 127.1219267","Latitude: 4.8065763<br></br>Longitude: -75.6833726","Latitude: 51.7408617<br></br>Longitude: 39.3685267","Latitude: 4.591724<br></br>Longitude: -74.12412","Latitude: 55.78604<br></br>Longitude: 37.665089","Latitude: 55.7446<br></br>Longitude: 37.566102","Latitude: 36.8004515<br></br>Longitude: 127.1046804","Latitude: 37.6552101<br></br>Longitude: 127.0611517","Latitude: 37.3249213<br></br>Longitude: 127.1081315","Latitude: 56.850327<br></br>Longitude: 53.213011","Latitude: 37.5832041<br></br>Longitude: 127.0539444","Latitude: 55.1634264<br></br>Longitude: 61.4314184","Latitude: 51.829564<br></br>Longitude: 107.583997","Latitude: 55.6958725<br></br>Longitude: 37.6656839","Latitude: 58.529596<br></br>Longitude: 31.270712","Latitude: 56.3023384<br></br>Longitude: 38.1330574","Latitude: 37.3908351<br></br>Longitude: 126.9517348","Latitude: 37.447201<br></br>Longitude: 126.701233","Latitude: 35.1851191<br></br>Longitude: 128.8299232","Latitude: 4.666809<br></br>Longitude: -74.053191","Latitude: 7.1262244<br></br>Longitude: -73.1201541","Latitude: 37.7186336<br></br>Longitude: 126.6918139","Latitude: 37.5609008<br></br>Longitude: 126.9809889","Latitude: 4.7621834<br></br>Longitude: -74.0453516","Latitude: 37.0578034<br></br>Longitude: 126.9026345","Latitude: 53.2377569<br></br>Longitude: 34.3568771","Latitude: 55.90438<br></br>Longitude: 37.544927","Latitude: 37.4969255<br></br>Longitude: 127.0532731","Latitude: 54.119802<br></br>Longitude: 37.532587","Latitude: 55.652759<br></br>Longitude: 37.442086","Latitude: 56.8743422<br></br>Longitude: 53.2790811","Latitude: 61.788126<br></br>Longitude: 34.3758539","Latitude: 37.5609008<br></br>Longitude: 126.9809889","Latitude: 37.440941<br></br>Longitude: 126.701426","Latitude: 55.0606303<br></br>Longitude: 82.9142212","Latitude: 55.818891<br></br>Longitude: 37.34725","Latitude: 55.1150737<br></br>Longitude: 36.5915002","Latitude: 55.8503343<br></br>Longitude: 37.4429706","Latitude: 59.949565<br></br>Longitude: 30.303663","Latitude: 59.893904<br></br>Longitude: 30.514719","Latitude: 59.9462<br></br>Longitude: 30.474216","Latitude: 30.0721166<br></br>Longitude: 31.2181304","Latitude: 55.74753<br></br>Longitude: 37.708159","Latitude: 30.100799<br></br>Longitude: 31.2871168","Latitude: 30.0914339<br></br>Longitude: 31.2706662","Latitude: 22.2774116<br></br>Longitude: 114.1753694","Latitude: 22.2995981<br></br>Longitude: 114.1684829","Latitude: 22.299845<br></br>Longitude: 114.172691","Latitude: 27.8636854<br></br>Longitude: 34.3074043","Latitude: 60.002195<br></br>Longitude: 30.2727","Latitude: 31.245709<br></br>Longitude: 29.965746","Latitude: 25.1181203<br></br>Longitude: 55.2005828","Latitude: 57.697777<br></br>Longitude: 39.758293","Latitude: 66.0817429<br></br>Longitude: 76.6690106","Latitude: 59.9269531<br></br>Longitude: 30.3589114","Latitude: 43.481176<br></br>Longitude: 43.606467","Latitude: 34.6937378<br></br>Longitude: 135.5021651","Latitude: 53.334748<br></br>Longitude: 83.776967","Latitude: 59.908405<br></br>Longitude: 30.482482","Latitude: 61.2428014<br></br>Longitude: 73.3699525","Latitude: 56.8290891<br></br>Longitude: 60.5989643","Latitude: 60.058501<br></br>Longitude: 30.338184","Latitude: 55.319667<br></br>Longitude: 38.671658","Latitude: 59.853736<br></br>Longitude: 30.3683634","Latitude: 55.818891<br></br>Longitude: 37.34725","Latitude: 51.666198<br></br>Longitude: 39.1919049","Latitude: 40.547102<br></br>Longitude: 22.98418","Latitude: 22.296451<br></br>Longitude: 114.171077","Latitude: 30.0603083<br></br>Longitude: 31.4994893","Latitude: 22.3147404<br></br>Longitude: 114.2164395","Latitude: 30.0263112<br></br>Longitude: 31.2319377","Latitude: 35.7057557<br></br>Longitude: 139.5814793","Latitude: 25.234197<br></br>Longitude: 55.308127","Latitude: 57.117276<br></br>Longitude: 65.5496908","Latitude: 25.251362<br></br>Longitude: 55.344936","Latitude: 30.0669281<br></br>Longitude: 31.3364152","Latitude: 30.088449<br></br>Longitude: 31.3371724","Latitude: 30.0637697<br></br>Longitude: 31.1978527","Latitude: 59.9279246<br></br>Longitude: 30.3592782","Latitude: 52.2853234<br></br>Longitude: 104.2878055","Latitude: 37.6145502<br></br>Longitude: 127.0305098","Latitude: 54.1902401<br></br>Longitude: 45.1769172","Latitude: 24.458718<br></br>Longitude: 54.321782","Latitude: 35.3525002<br></br>Longitude: 137.183202","Latitude: 61.003337<br></br>Longitude: 69.017695","Latitude: 59.853407<br></br>Longitude: 30.340384","Latitude: 51.666198<br></br>Longitude: 39.191905","Latitude: 59.9335176<br></br>Longitude: 30.3293659","Latitude: 45.0340801<br></br>Longitude: 39.0500729","Latitude: 55.846301<br></br>Longitude: 37.663517","Latitude: 30.0632199<br></br>Longitude: 31.025245","Latitude: 51.5424438<br></br>Longitude: 46.0146729","Latitude: 33.5913576<br></br>Longitude: 130.4148783","Latitude: 31.26167<br></br>Longitude: 31.48198","Latitude: 61.2428014<br></br>Longitude: 73.3699525","Latitude: 22.281572<br></br>Longitude: 114.185988","Latitude: 25.325264<br></br>Longitude: 55.392976","Latitude: 30.0843769<br></br>Longitude: 31.2219763","Latitude: 34.6803304<br></br>Longitude: 33.0434203","Latitude: 25.072656<br></br>Longitude: 55.400833","Latitude: 31.168703<br></br>Longitude: 29.932259","Latitude: 30.072455<br></br>Longitude: 31.347921","Latitude: 25.072656<br></br>Longitude: 55.400833","Latitude: 35.8662831<br></br>Longitude: 128.5907443","Latitude: 35.096715<br></br>Longitude: 129.0367482","Latitude: 60.007694<br></br>Longitude: 30.259957","Latitude: 59.405711<br></br>Longitude: 56.8036012","Latitude: 60.036943<br></br>Longitude: 30.415146","Latitude: 24.4892004<br></br>Longitude: 54.3618751","Latitude: 55.8503343<br></br>Longitude: 37.4429706","Latitude: 55.583978<br></br>Longitude: 37.911968","Latitude: 44.099269<br></br>Longitude: 39.079386","Latitude: 55.818891<br></br>Longitude: 37.34725","Latitude: 44.563257<br></br>Longitude: 38.078712","Latitude: 60.058501<br></br>Longitude: 30.338184","Latitude: 43.115937<br></br>Longitude: 131.886121","Latitude: 54.6342985<br></br>Longitude: 39.6887935","Latitude: 47.260156<br></br>Longitude: 39.720373","Latitude: 30.0357731<br></br>Longitude: 31.4603921","Latitude: 24.470133<br></br>Longitude: 54.372758","Latitude: 25.289474<br></br>Longitude: 55.393658","Latitude: 34.65276<br></br>Longitude: 32.996868","Latitude: 22.2774116<br></br>Longitude: 114.1753694","Latitude: 30.074265<br></br>Longitude: 31.301947","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 59.8689419<br></br>Longitude: 30.3506892","Latitude: 60.058501<br></br>Longitude: 30.338184","Latitude: 55.583681<br></br>Longitude: 37.908477","Latitude: 55.8503343<br></br>Longitude: 37.4429706","Latitude: 54.6342985<br></br>Longitude: 39.6887935","Latitude: 51.810677<br></br>Longitude: 107.661583","Latitude: 22.2969091<br></br>Longitude: 114.168055","Latitude: 59.8585559<br></br>Longitude: 30.248689","Latitude: 59.9189451<br></br>Longitude: 30.3389542","Latitude: 56.8768626<br></br>Longitude: 53.2045102","Latitude: 22.337057<br></br>Longitude: 114.174868","Latitude: 25.2201819<br></br>Longitude: 55.4053089","Latitude: 59.9219939<br></br>Longitude: 30.355076","Latitude: 30.1347013<br></br>Longitude: 31.2429196","Latitude: 25.2601012<br></br>Longitude: 55.3326755","Latitude: 25.297438<br></br>Longitude: 55.372282","Latitude: 24.221144<br></br>Longitude: 55.772025","Latitude: 54.717483<br></br>Longitude: 20.5004646","Latitude: 24.495924<br></br>Longitude: 54.383226","Latitude: 30.0994786<br></br>Longitude: 31.2757358","Latitude: 22.3231251<br></br>Longitude: 114.2144298","Latitude: 27.908583<br></br>Longitude: 34.323953","Latitude: 30.0610462<br></br>Longitude: 31.3321818","Latitude: 25.198518<br></br>Longitude: 55.279619","Latitude: 36.158946<br></br>Longitude: -86.798997","Latitude: 32.5377008<br></br>Longitude: 35.852009","Latitude: 45.0396685<br></br>Longitude: 38.973202","Latitude: 24.160237<br></br>Longitude: 55.807462","Latitude: 31.9772088<br></br>Longitude: 35.8373789","Latitude: 31.805482<br></br>Longitude: 34.758983","Latitude: 25.216319<br></br>Longitude: 55.407795","Latitude: 59.093932<br></br>Longitude: 37.923515","Latitude: 43.6060604<br></br>Longitude: 39.7322586","Latitude: 31.9570632<br></br>Longitude: 35.860719","Latitude: 56.2324456<br></br>Longitude: 44.0567935","Latitude: 54.7373097<br></br>Longitude: 55.9525295","Latitude: 53.4016841<br></br>Longitude: 58.9792248","Latitude: 43.032884<br></br>Longitude: 44.6797132","Latitude: 58.0071777<br></br>Longitude: 56.2604569","Latitude: 31.9749561<br></br>Longitude: 35.863232","Latitude: 55.385771<br></br>Longitude: 37.545353","Latitude: 43.0316812<br></br>Longitude: 44.6799071","Latitude: 54.630541<br></br>Longitude: 39.73893","Latitude: 59.8513198<br></br>Longitude: 30.320377","Latitude: 45.0114655<br></br>Longitude: 39.1221652","Latitude: 31.864478<br></br>Longitude: 34.816387","Latitude: 32.0753462<br></br>Longitude: 34.7753948","Latitude: 58.5987306<br></br>Longitude: 49.6494297","Latitude: 48.4903011<br></br>Longitude: 135.0821852","Latitude: 55.7561327<br></br>Longitude: 37.6156287","Latitude: 56.307789<br></br>Longitude: 44.074059","Latitude: 53.510739<br></br>Longitude: 49.457192","Latitude: 54.7497072<br></br>Longitude: 56.0002158","Latitude: 25.683032<br></br>Longitude: 55.781637","Latitude: 56.0369139<br></br>Longitude: 92.9348314","Latitude: 31.958307<br></br>Longitude: 35.862632","Latitude: 52.2670887<br></br>Longitude: 104.2259819","Latitude: 54.9921163<br></br>Longitude: 73.3100914","Latitude: 59.9279246<br></br>Longitude: 30.3592782","Latitude: 32.0130335<br></br>Longitude: 34.797938","Latitude: 37.6677307<br></br>Longitude: 126.7510438","Latitude: 31.2502427<br></br>Longitude: 34.7718754","Latitude: 54.8981394<br></br>Longitude: 38.0803698","Latitude: 39.4154639<br></br>Longitude: -104.873549","Latitude: 54.630541<br></br>Longitude: 39.73893","Latitude: 52.594077<br></br>Longitude: 39.566586","Latitude: 58.0093483<br></br>Longitude: 56.2354624","Latitude: 45.013119<br></br>Longitude: 38.929983","Latitude: 52.5122417<br></br>Longitude: 85.1737835","Latitude: 57.9081348<br></br>Longitude: 59.9594118","Latitude: 57.6272392<br></br>Longitude: 39.8693454","Latitude: 59.211393<br></br>Longitude: 39.848452","Latitude: 31.990729<br></br>Longitude: 35.865995","Latitude: 55.038648<br></br>Longitude: 82.911973","Latitude: 24.2221028<br></br>Longitude: 55.779881","Latitude: 64.562405<br></br>Longitude: 39.825406","Latitude: 32.815543<br></br>Longitude: 35.050963","Latitude: 29.5563389<br></br>Longitude: 34.9511013","Latitude: 55.0435262<br></br>Longitude: 82.9223574","Latitude: 55.4365295<br></br>Longitude: 65.335031","Latitude: 50.2676777<br></br>Longitude: 127.5369227","Latitude: 55.657836<br></br>Longitude: 37.846042","Latitude: 59.925563<br></br>Longitude: 30.320381","Latitude: 56.1068626<br></br>Longitude: 54.2374318","Latitude: 54.186336<br></br>Longitude: 45.183159","Latitude: 51.810677<br></br>Longitude: 107.661583","Latitude: 57.134732<br></br>Longitude: 65.494124","Latitude: 64.535661<br></br>Longitude: 40.525743","Latitude: 31.974174<br></br>Longitude: 35.8839725","Latitude: 32.2751993<br></br>Longitude: -90.1528696","Latitude: 69.3573551<br></br>Longitude: 88.1808816","Latitude: 59.1270789<br></br>Longitude: 37.9083149","Latitude: 48.658994<br></br>Longitude: 44.439182","Latitude: 54.7527793<br></br>Longitude: 56.0218588","Latitude: 54.7221584<br></br>Longitude: 55.9976397","Latitude: 55.0843509<br></br>Longitude: 38.8006711","Latitude: 53.430362<br></br>Longitude: 58.9734314","Latitude: 31.9674446<br></br>Longitude: 35.9177805","Latitude: 44.56231<br></br>Longitude: 38.0777998","Latitude: 52.921565<br></br>Longitude: 36.011034","Latitude: 56.832648<br></br>Longitude: 60.582217","Latitude: 57.576789<br></br>Longitude: 39.843125","Latitude: 53.0697086<br></br>Longitude: 158.6154405","Latitude: 58.604096<br></br>Longitude: 49.681629","Latitude: 52.2670887<br></br>Longitude: 104.2259819","Latitude: 43.9120535<br></br>Longitude: 42.7190492","Latitude: 69.3572935<br></br>Longitude: 88.180609","Latitude: 55.817196<br></br>Longitude: 37.38694","Latitude: 55.677834<br></br>Longitude: 37.466936","Latitude: 55.752403<br></br>Longitude: 37.887858","Latitude: 52.4291638<br></br>Longitude: 10.7929636","Latitude: 51.7144331<br></br>Longitude: 39.1662557","Latitude: 55.0278032<br></br>Longitude: 82.9420782","Latitude: 55.7482787<br></br>Longitude: 37.5371678","Latitude: 56.3065995<br></br>Longitude: 44.0796014","Latitude: 55.819771<br></br>Longitude: 37.387426","Latitude: 45.347355<br></br>Longitude: -75.807461","Latitude: 22.692391<br></br>Longitude: 114.228034","Latitude: 34.0913491<br></br>Longitude: -117.7501932","Latitude: 31.22415846<br></br>Longitude: 121.44923083","Latitude: 39.91408869<br></br>Longitude: 116.37455283","Latitude: 39.91641<br></br>Longitude: 116.452018","Latitude: 32.044069<br></br>Longitude: 118.784544","Latitude: 43.2328469<br></br>Longitude: 76.8785836","Latitude: 55.7899945<br></br>Longitude: 37.5308701","Latitude: 55.613265<br></br>Longitude: 37.60779","Latitude: 56.982544<br></br>Longitude: 40.981791","Latitude: 55.817196<br></br>Longitude: 37.38694","Latitude: 55.752327<br></br>Longitude: 37.886796","Latitude: 59.818459<br></br>Longitude: 30.316593","Latitude: 55.038648<br></br>Longitude: 82.911973","Latitude: 43.6054151<br></br>Longitude: 39.7499284","Latitude: 42.206261<br></br>Longitude: -71.1264","Latitude: 55.7446675<br></br>Longitude: 37.5658937","Latitude: 26.7250093<br></br>Longitude: -80.0853926","Latitude: 39.92536<br></br>Longitude: 116.517872","Latitude: 40.2051899<br></br>Longitude: 123.5189217","Latitude: 49.8839383<br></br>Longitude: -97.1988147","Latitude: 45.3072489<br></br>Longitude: -75.9199172","Latitude: 31.31841239<br></br>Longitude: 120.71549515","Latitude: 39.909369<br></br>Longitude: 116.412377","Latitude: 51.1443333<br></br>Longitude: 71.4113051","Latitude: 51.220351<br></br>Longitude: 51.388959","Latitude: 47.2806956<br></br>Longitude: 39.7185384","Latitude: 50.2891028<br></br>Longitude: 57.1931666","Latitude: 59.818486<br></br>Longitude: 30.316851","Latitude: 55.633433<br></br>Longitude: 37.6243399","Latitude: 40.7355333<br></br>Longitude: -73.9918869","Latitude: 32.2011871<br></br>Longitude: 110.1998582","Latitude: 55.6919136<br></br>Longitude: 37.5276619","Latitude: 37.2413127<br></br>Longitude: 127.6125556","Latitude: 55.6919136<br></br>Longitude: 37.5276619","Latitude: 31.23693518<br></br>Longitude: 121.50017135","Latitude: 30.702606<br></br>Longitude: 104.045418","Latitude: 43.1592297<br></br>Longitude: -79.1754871","Latitude: 45.4986516<br></br>Longitude: -73.5740432","Latitude: 59.093932<br></br>Longitude: 37.923515","Latitude: 51.8195731<br></br>Longitude: 68.3669879","Latitude: 55.613265<br></br>Longitude: 37.60779","Latitude: 55.789548<br></br>Longitude: 37.75257","Latitude: 55.752104<br></br>Longitude: 37.887762","Latitude: 58.5987306<br></br>Longitude: 49.6494297","Latitude: 56.3065995<br></br>Longitude: 44.0796014","Latitude: 43.478506<br></br>Longitude: 43.576602","Latitude: 43.1590038<br></br>Longitude: -79.1710964","Latitude: 54.8988537<br></br>Longitude: 38.0792391","Latitude: 51.8103655<br></br>Longitude: 55.0882421","Latitude: 53.7228468<br></br>Longitude: 91.4458056","Latitude: 39.909868<br></br>Longitude: 116.478412","Latitude: 45.6737941<br></br>Longitude: -73.9193989","Latitude: 34.6912688<br></br>Longitude: 135.1830706","Latitude: 31.21554487<br></br>Longitude: 121.4585202","Latitude: 39.906578<br></br>Longitude: 116.226279","Latitude: 31.868217<br></br>Longitude: 122.2470663","Latitude: 39.9266458<br></br>Longitude: 116.4551641","Latitude: 55.7069469<br></br>Longitude: 37.5922153","Latitude: 29.522521<br></br>Longitude: 106.571543","Latitude: 55.406256<br></br>Longitude: 43.84294","Latitude: 53.2123361<br></br>Longitude: 63.6385279","Latitude: 56.982544<br></br>Longitude: 40.981791","Latitude: 51.1322975<br></br>Longitude: 71.4033994","Latitude: 51.7210717<br></br>Longitude: 75.3093877","Latitude: 55.765053<br></br>Longitude: 37.844652","Latitude: 45.675114<br></br>Longitude: -73.917852","Latitude: 55.613265<br></br>Longitude: 37.60779","Latitude: 54.9803124<br></br>Longitude: 82.8978966","Latitude: 23.12596013<br></br>Longitude: 113.26911003","Latitude: 45.5727612<br></br>Longitude: -73.4037596","Latitude: 39.909502<br></br>Longitude: 116.417023","Latitude: 39.96994778<br></br>Longitude: 116.49089046","Latitude: 38.268215<br></br>Longitude: 140.8693558","Latitude: 22.8617484<br></br>Longitude: 114.627296","Latitude: 51.7408617<br></br>Longitude: 39.3685267","Latitude: 56.135461<br></br>Longitude: 47.2407","Latitude: 50.552642<br></br>Longitude: 36.568824","Latitude: 43.633402<br></br>Longitude: 51.163897","Latitude: 56.982544<br></br>Longitude: 40.981791","Latitude: 55.6124263<br></br>Longitude: 37.6078435","Latitude: 55.611998<br></br>Longitude: 37.6052196","Latitude: 31.27018804<br></br>Longitude: 121.55801898","Latitude: 28.13331012<br></br>Longitude: 113.03495608","Latitude: 6.1974819<br></br>Longitude: -75.5590433","Latitude: 30.5794251<br></br>Longitude: 114.29157593","Latitude: 31.231314<br></br>Longitude: 121.555404","Latitude: 30.71985881<br></br>Longitude: 104.03542925","Latitude: 29.60139859<br></br>Longitude: 106.51303449","Latitude: 39.897704<br></br>Longitude: 116.419456","Latitude: 28.195785<br></br>Longitude: 112.997404","Latitude: 39.909821<br></br>Longitude: 116.458709","Latitude: 22.501855<br></br>Longitude: 113.923158","Latitude: 31.57661547<br></br>Longitude: 120.298819","Latitude: 35.6894875<br></br>Longitude: 139.6917064","Latitude: 35.855839<br></br>Longitude: 128.6063962","Latitude: 31.24274765<br></br>Longitude: 121.44144327","Latitude: 39.968258<br></br>Longitude: 116.461295","Latitude: 35.6894875<br></br>Longitude: 139.6917064","Latitude: 56.2324456<br></br>Longitude: 44.0567935","Latitude: 51.7583388<br></br>Longitude: 36.1887596","Latitude: 55.659699<br></br>Longitude: 37.749787","Latitude: 55.76191<br></br>Longitude: 37.56682","Latitude: 31.04886117<br></br>Longitude: 121.77098203","Latitude: 29.858775<br></br>Longitude: 121.448863","Latitude: 3.476621<br></br>Longitude: -76.527667","Latitude: 30.71985881<br></br>Longitude: 104.03574039","Latitude: 31.152008<br></br>Longitude: 121.430971","Latitude: 41.84282553<br></br>Longitude: 123.61835075","Latitude: 36.66208025<br></br>Longitude: 117.02243065","Latitude: 22.544286186<br></br>Longitude: 114.01304195","Latitude: 26.5418462<br></br>Longitude: 103.6702502","Latitude: 37.0197314<br></br>Longitude: 140.1210169","Latitude: 31.235419<br></br>Longitude: 121.475551","Latitude: 41.0608158<br></br>Longitude: 117.5146251","Latitude: 35.8663137<br></br>Longitude: 128.5918474","Latitude: 30.60328317<br></br>Longitude: 103.94471151","Latitude: 31.340122<br></br>Longitude: 120.821756","Latitude: 55.7770407<br></br>Longitude: 37.5390942","Latitude: 37.5086154<br></br>Longitude: 127.0597808","Latitude: 55.897757<br></br>Longitude: 37.66662","Latitude: 57.148952<br></br>Longitude: 65.560222","Latitude: 31.23007799<br></br>Longitude: 121.45927017","Latitude: 55.7045399<br></br>Longitude: 37.3829281","Latitude: 23.9329877<br></br>Longitude: 114.0599571","Latitude: 56.8235224<br></br>Longitude: 60.5050579","Latitude: 40.2532141<br></br>Longitude: 118.0656116","Latitude: 55.790661<br></br>Longitude: 37.528617","Latitude: 31.1865275<br></br>Longitude: 121.53591173","Latitude: 39.911482<br></br>Longitude: 116.37457308","Latitude: 28.32419058<br></br>Longitude: 112.86108812","Latitude: 37.7186336<br></br>Longitude: 126.6918139","Latitude: 31.21805268<br></br>Longitude: 121.45937993","Latitude: 55.7572<br></br>Longitude: 37.658261","Latitude: 55.622605<br></br>Longitude: 37.606029","Latitude: 57.5914511<br></br>Longitude: 39.8672607","Latitude: 22.80057728<br></br>Longitude: 108.24642505","Latitude: 54.180807<br></br>Longitude: 37.605157","Latitude: 48.514923<br></br>Longitude: 44.542499","Latitude: 36.606133<br></br>Longitude: 127.4803653","Latitude: 35.9946133<br></br>Longitude: 140.2295937","Latitude: 41.0608158<br></br>Longitude: 117.5146251","Latitude: 31.4353346<br></br>Longitude: 104.8927952","Latitude: 39.87722133<br></br>Longitude: 116.48608224","Latitude: 55.7899945<br></br>Longitude: 37.5308701","Latitude: 31.301488<br></br>Longitude: 121.513723","Latitude: 24.0329435<br></br>Longitude: 109.621646","Latitude: 31.868217<br></br>Longitude: 122.2470663","Latitude: 31.284838637<br></br>Longitude: 121.125566337","Latitude: 36.613792<br></br>Longitude: 117.004601","Latitude: 30.27430737<br></br>Longitude: 120.16091707","Latitude: 55.7560449<br></br>Longitude: 37.6150251","Latitude: 55.8656656<br></br>Longitude: 37.7048709","Latitude: 51.5308464<br></br>Longitude: 46.0294714","Latitude: 30.387409<br></br>Longitude: 114.370631","Latitude: 35.4437078<br></br>Longitude: 139.6380256","Latitude: 40.035513<br></br>Longitude: 116.503578","Latitude: 4.666809<br></br>Longitude: -74.053191","Latitude: 29.62976<br></br>Longitude: 106.5647","Latitude: 39.921584<br></br>Longitude: 116.438947","Latitude: 29.869152<br></br>Longitude: 121.557993","Latitude: 32.076627<br></br>Longitude: 118.762402","Latitude: 34.259<br></br>Longitude: 108.946333","Latitude: 39.37678035<br></br>Longitude: 117.01830154","Latitude: 23.9329877<br></br>Longitude: 114.0599571","Latitude: 39.89778212<br></br>Longitude: 116.41797592","Latitude: 31.16567632<br></br>Longitude: 121.34115126","Latitude: 40.011025<br></br>Longitude: 116.595657","Latitude: 57.1597976<br></br>Longitude: 65.5501502","Latitude: 31.183177<br></br>Longitude: 121.436877","Latitude: 37.5012056<br></br>Longitude: 126.8827953","Latitude: 35.1412828<br></br>Longitude: 129.0586225","Latitude: 55.779868<br></br>Longitude: 37.6710922","Latitude: 55.846367<br></br>Longitude: 37.3580737","Latitude: 57.0060161<br></br>Longitude: 40.9873617","Latitude: 32.1993745<br></br>Longitude: 130.1768326","Latitude: 57.917887<br></br>Longitude: 59.978582","Latitude: 31.21944346<br></br>Longitude: 121.46539594","Latitude: 53.230627<br></br>Longitude: 50.178033","Latitude: 56.8290891<br></br>Longitude: 60.5989643","Latitude: 47.2008<br></br>Longitude: 38.905886","Latitude: 47.289877<br></br>Longitude: 39.846464","Latitude: 57.1407789<br></br>Longitude: 65.5750339","Latitude: 55.828798<br></br>Longitude: 49.0930048","Latitude: 56.3489311<br></br>Longitude: 43.8690439","Latitude: 31.31963494<br></br>Longitude: 120.71584661","Latitude: 31.22698858<br></br>Longitude: 121.52478525","Latitude: 29.57753146<br></br>Longitude: 106.53293485","Latitude: 55.8297923<br></br>Longitude: 49.1183979","Latitude: 45.0396685<br></br>Longitude: 38.973202","Latitude: 55.7446<br></br>Longitude: 37.566102","Latitude: 56.8532245<br></br>Longitude: 60.5507413","Latitude: 48.7715209<br></br>Longitude: 44.8017904","Latitude: 54.992154<br></br>Longitude: 82.912356","Latitude: 22.532937776<br></br>Longitude: 114.054004253","Latitude: 23.9329877<br></br>Longitude: 114.0599571","Latitude: 43.590099<br></br>Longitude: 39.722363","Latitude: 55.846241<br></br>Longitude: 37.662491","Latitude: 31.868217<br></br>Longitude: 122.2470663","Latitude: 55.78647<br></br>Longitude: 49.124256","Latitude: 56.050485<br></br>Longitude: 92.9033518","Latitude: 51.6641957<br></br>Longitude: 39.2027048","Latitude: 48.474188<br></br>Longitude: 135.0598749","Latitude: 52.5452129<br></br>Longitude: 103.8887372","Latitude: 54.621475<br></br>Longitude: 39.7827698","Latitude: 54.7108388<br></br>Longitude: 20.5087854","Latitude: 47.229641<br></br>Longitude: 39.715093","Latitude: 55.153447<br></br>Longitude: 37.459342","Latitude: 22.25500987<br></br>Longitude: 113.58025407","Latitude: 55.3556942<br></br>Longitude: 86.0653248","Latitude: 51.737908<br></br>Longitude: 36.1922844","Latitude: 52.0288915<br></br>Longitude: 47.7832249","Latitude: 55.7806115<br></br>Longitude: 49.21542","Latitude: 61.69836<br></br>Longitude: 50.80176","Latitude: 53.233408<br></br>Longitude: 50.200553","Latitude: 56.0129588<br></br>Longitude: 92.8568261","Latitude: 30.657896968<br></br>Longitude: 104.079934478","Latitude: 31.3612603<br></br>Longitude: 115.0825728","Latitude: 58.59783<br></br>Longitude: 49.607249","Latitude: 66.1137504<br></br>Longitude: 76.6737362","Latitude: 52.2670232<br></br>Longitude: 104.3086452","Latitude: 51.844052<br></br>Longitude: 55.117964","Latitude: 56.863556<br></br>Longitude: 60.630858","Latitude: 56.022671<br></br>Longitude: 92.799061","Latitude: 55.7482787<br></br>Longitude: 37.5371678","Latitude: 44.03552<br></br>Longitude: 43.06521","Latitude: 49.1745134<br></br>Longitude: -123.151974","Latitude: 61.247185<br></br>Longitude: 73.4049707","Latitude: 40.2051899<br></br>Longitude: 123.5189217","Latitude: 25.04052581<br></br>Longitude: 102.70942809","Latitude: -33.0088544<br></br>Longitude: -71.5485614","Latitude: 53.203211<br></br>Longitude: 44.9962102","Latitude: 30.65471846<br></br>Longitude: 104.07639888","Latitude: 52.7594024<br></br>Longitude: 41.4370951","Latitude: 53.308335<br></br>Longitude: 34.302005","Latitude: 52.2849822<br></br>Longitude: 104.2889395","Latitude: 45.0340801<br></br>Longitude: 39.0500729","Latitude: 51.7930463<br></br>Longitude: 55.1263425","Latitude: 54.721319<br></br>Longitude: 20.506382","Latitude: 51.72496<br></br>Longitude: 36.176727","Latitude: 53.0592281<br></br>Longitude: 158.6317898","Latitude: 66.0860352<br></br>Longitude: 76.6447589","Latitude: 66.0860352<br></br>Longitude: 76.6447589","Latitude: 46.4617484<br></br>Longitude: 30.7418828","Latitude: 55.586568<br></br>Longitude: 37.724562","Latitude: 45.013293<br></br>Longitude: 38.929718","Latitude: 43.6060604<br></br>Longitude: 39.7322586","Latitude: 44.2165025<br></br>Longitude: 42.0447156","Latitude: 55.585228<br></br>Longitude: 37.724058","Latitude: 68.9049682<br></br>Longitude: 33.0914908","Latitude: 35.1569892<br></br>Longitude: 129.050479","Latitude: 57.5135231<br></br>Longitude: 12.0754701","Latitude: 49.573794<br></br>Longitude: 10.9163554","Latitude: 25.4517163<br></br>Longitude: -80.4734427","Latitude: 42.0364053<br></br>Longitude: -71.350801","Latitude: 51.136872<br></br>Longitude: 0.8785829","Latitude: 51.5303728<br></br>Longitude: -3.5743678","Latitude: 53.101005<br></br>Longitude: -1.3310082","Latitude: 53.923886<br></br>Longitude: -1.0701706","Latitude: 40.7508592<br></br>Longitude: -73.9833243","Latitude: 36.2031513<br></br>Longitude: -86.6928228","Latitude: 42.3945144<br></br>Longitude: -71.0795769","Latitude: 44.8159532<br></br>Longitude: -93.2152472","Latitude: 34.9852585<br></br>Longitude: -118.9417375","Latitude: 35.1680872<br></br>Longitude: -80.9702321","Latitude: 32.6651379<br></br>Longitude: -115.5075792","Latitude: 32.664889<br></br>Longitude: -97.1385464","Latitude: 43.6884112<br></br>Longitude: -70.7936719","Latitude: 47.9042514<br></br>Longitude: 33.3583386","Latitude: 50.6902792<br></br>Longitude: 3.1804497","Latitude: 50.6397212<br></br>Longitude: 3.0647812","Latitude: 49.4508875<br></br>Longitude: 11.0740923","Latitude: 1.301189<br></br>Longitude: 103.838314","Latitude: 1.3343302<br></br>Longitude: 103.7428132","Latitude: 40.2167484<br></br>Longitude: -80.21259","Latitude: -29.9144443<br></br>Longitude: -71.2582157","Latitude: 55.7554837<br></br>Longitude: 37.614391","Latitude: 45.0256296<br></br>Longitude: 39.0462414","Latitude: 47.217463<br></br>Longitude: 38.898462","Latitude: 47.217498<br></br>Longitude: 38.898557","Latitude: 55.999351<br></br>Longitude: 37.254674","Latitude: 55.999351<br></br>Longitude: 37.254674","Latitude: 55.9871526<br></br>Longitude: 37.2021514","Latitude: 36.358129<br></br>Longitude: 138.6354725","Latitude: 33.4064854<br></br>Longitude: 130.5116369","Latitude: 25.0403729<br></br>Longitude: 121.57824","Latitude: 35.3407172<br></br>Longitude: 137.1652289","Latitude: 39.160478<br></br>Longitude: 117.396855","Latitude: 40.640592<br></br>Longitude: -8.6523205","Latitude: 32.8452442<br></br>Longitude: -117.2743533","Latitude: -27.4138571<br></br>Longitude: 153.0808868","Latitude: 34.1111586<br></br>Longitude: -117.5309199","Latitude: 34.1433257<br></br>Longitude: -118.3981004","Latitude: 32.7099235<br></br>Longitude: -117.1603216","Latitude: 24.9661973<br></br>Longitude: 121.5440447","Latitude: 24.1584265<br></br>Longitude: 120.6576972","Latitude: 50.3955592<br></br>Longitude: 30.6327862","Latitude: 53.275134<br></br>Longitude: 34.31658","Latitude: 53.275268<br></br>Longitude: 34.315878","Latitude: -33.8527<br></br>Longitude: 18.6975","Latitude: 30.0145674<br></br>Longitude: 31.4207273","Latitude: 30.074198<br></br>Longitude: 31.3439032","Latitude: 28.00649819<br></br>Longitude: 120.66453561","Latitude: -34.9462689<br></br>Longitude: 138.5205156","Latitude: 55.613265<br></br>Longitude: 37.60779","Latitude: 44.435113<br></br>Longitude: 25.9817724","Latitude: 55.817196<br></br>Longitude: 37.38694","Latitude: 55.646084<br></br>Longitude: 37.668112","Latitude: 51.2302533<br></br>Longitude: 58.4806919","Latitude: 51.2302533<br></br>Longitude: 58.4806919","Latitude: 51.2302533<br></br>Longitude: 58.4806919","Latitude: 53.691383<br></br>Longitude: 88.052826","Latitude: 59.9332506<br></br>Longitude: 30.4381628","Latitude: 40.12798<br></br>Longitude: 116.656168","Latitude: 57.6272392<br></br>Longitude: 39.8693454","Latitude: 47.6561682<br></br>Longitude: 26.266758","Latitude: 44.051113<br></br>Longitude: 43.033967","Latitude: 44.725446<br></br>Longitude: 37.763071","Latitude: 55.910811<br></br>Longitude: 37.396452","Latitude: 55.82362<br></br>Longitude: 37.498283","Latitude: 55.6908665<br></br>Longitude: 37.3030403","Latitude: 55.6908665<br></br>Longitude: 37.3030403","Latitude: 64.5324932<br></br>Longitude: 40.5288348","Latitude: 44.051052<br></br>Longitude: 43.03387","Latitude: 56.226505<br></br>Longitude: 44.070823","Latitude: 53.1406774<br></br>Longitude: 50.1740927","Latitude: 68.9138754<br></br>Longitude: 33.0958803","Latitude: 61.7759012<br></br>Longitude: 34.3108633","Latitude: 53.1915619<br></br>Longitude: 50.188137","Latitude: 53.1406774<br></br>Longitude: 50.1740927","Latitude: 68.9138754<br></br>Longitude: 33.0958803","Latitude: 68.9138754<br></br>Longitude: 33.0958803","Latitude: 61.7759012<br></br>Longitude: 34.3108633","Latitude: 61.7759012<br></br>Longitude: 34.3108633","Latitude: 56.310213<br></br>Longitude: 38.132109","Latitude: 59.987555<br></br>Longitude: 30.353888","Latitude: 59.987502<br></br>Longitude: 30.353716","Latitude: 64.5324932<br></br>Longitude: 40.5288348","Latitude: 56.33973<br></br>Longitude: 38.124825","Latitude: 53.121745<br></br>Longitude: 48.398409","Latitude: 47.707075<br></br>Longitude: 40.216258","Latitude: 50.2676777<br></br>Longitude: 127.5369227","Latitude: 41.80273387<br></br>Longitude: 123.46848272","Latitude: 7.100007<br></br>Longitude: -73.1073621","Latitude: 33.6175617<br></br>Longitude: -117.6182904","Latitude: 55.66375<br></br>Longitude: 37.549038","Latitude: 55.7546378<br></br>Longitude: 37.6090163","Latitude: 55.7982572<br></br>Longitude: 37.5203208","Latitude: 55.731018<br></br>Longitude: 37.615763","Latitude: 55.767149<br></br>Longitude: 37.568066","Latitude: 55.809267<br></br>Longitude: 37.126589","Latitude: 55.783519<br></br>Longitude: 37.6265069","Latitude: 55.7283<br></br>Longitude: 37.438564","Latitude: 19.3623782<br></br>Longitude: -99.2725075","Latitude: 35.6072668<br></br>Longitude: 140.1062907","Latitude: 51.2824777<br></br>Longitude: 37.5228343","Latitude: 55.8810224<br></br>Longitude: 37.4498255","Latitude: 49.6056993<br></br>Longitude: 5.8113605","Latitude: 55.722289<br></br>Longitude: 37.547477","Latitude: 54.7527793<br></br>Longitude: 56.0218588","Latitude: 3.3736408<br></br>Longitude: -76.5412683","Latitude: 55.664521<br></br>Longitude: 37.627498","Latitude: 31.193229668<br></br>Longitude: 120.612234297","Latitude: 22.61130192<br></br>Longitude: 114.032257211","Latitude: 34.362849706<br></br>Longitude: 109.064865765","Latitude: 29.54021213<br></br>Longitude: 106.516348776","Latitude: 37.5387765<br></br>Longitude: 127.0710831","Latitude: 55.912778<br></br>Longitude: 37.58514","Latitude: 52.7242305<br></br>Longitude: 41.4572465","Latitude: 53.1915619<br></br>Longitude: 50.188137","Latitude: 52.7242305<br></br>Longitude: 41.4572465","Latitude: 52.7242305<br></br>Longitude: 41.4572465","Latitude: 40.4170149<br></br>Longitude: -3.7043036","Latitude: 37.4838158<br></br>Longitude: 126.9302315","Latitude: 37.4838158<br></br>Longitude: 126.9302315","Latitude: 37.3910885<br></br>Longitude: 127.1195934","Latitude: 59.907498<br></br>Longitude: 30.300715","Latitude: 46.2978831<br></br>Longitude: 44.2864667","Latitude: 56.8200503<br></br>Longitude: 35.8881084","Latitude: 55.7926601<br></br>Longitude: 37.5901102","Latitude: 68.9567011<br></br>Longitude: 33.0725192","Latitude: 68.95686<br></br>Longitude: 33.069406","Latitude: 55.9094694<br></br>Longitude: 37.5404449","Latitude: 55.9094694<br></br>Longitude: 37.5404449","Latitude: 55.8304307<br></br>Longitude: 49.0660806","Latitude: 54.5396389<br></br>Longitude: 36.2671815","Latitude: 51.813144<br></br>Longitude: 55.182655","Latitude: 55.7384966<br></br>Longitude: 37.4107393","Latitude: 55.765053<br></br>Longitude: 37.844652","Latitude: 56.8091154<br></br>Longitude: 60.7675225","Latitude: 54.0051974<br></br>Longitude: 86.7047667","Latitude: 43.16522<br></br>Longitude: 131.907119","Latitude: 54.7595743<br></br>Longitude: 83.1051063","Latitude: 55.9969475<br></br>Longitude: 93.0233011","Latitude: 51.5371656<br></br>Longitude: 81.2156909","Latitude: 56.2398428<br></br>Longitude: 90.4721654","Latitude: 49.59362<br></br>Longitude: 11.00409","Latitude: 53.1112159<br></br>Longitude: 8.7482378","Latitude: 55.915476<br></br>Longitude: 37.760804","Latitude: 55.916586<br></br>Longitude: 37.759079","Latitude: 58.0394632<br></br>Longitude: 56.1912346","Latitude: 55.6919136<br></br>Longitude: 37.5276619","Latitude: 55.915476<br></br>Longitude: 37.760804","Latitude: 61.0067059<br></br>Longitude: 69.0391754","Latitude: 56.4880744<br></br>Longitude: 84.9806005","Latitude: 56.488517<br></br>Longitude: 84.978506","Latitude: 56.4880744<br></br>Longitude: 84.9806005","Latitude: 55.4003<br></br>Longitude: 86.118331","Latitude: 55.915476<br></br>Longitude: 37.760804","Latitude: 55.910811<br></br>Longitude: 37.396452","Latitude: 56.4880744<br></br>Longitude: 84.9806005","Latitude: 56.4880744<br></br>Longitude: 84.9806005","Latitude: 43.231836<br></br>Longitude: 76.927723","Latitude: 43.231836<br></br>Longitude: 76.927723","Latitude: 43.231836<br></br>Longitude: 76.927723","Latitude: 24.488618<br></br>Longitude: 54.608788","Latitude: 24.222506<br></br>Longitude: 55.781877","Latitude: 41.0063277<br></br>Longitude: 29.0546158","Latitude: 19.3623782<br></br>Longitude: -99.2725075","Latitude: -30.049779<br></br>Longitude: -51.2284706","Latitude: 25.0130279<br></br>Longitude: 121.4669529","Latitude: 3.133333<br></br>Longitude: 101.686827","Latitude: 49.789723<br></br>Longitude: 73.104547","Latitude: 55.8633273<br></br>Longitude: 37.4340606","Latitude: -26.1296<br></br>Longitude: 27.9732","Latitude: 50.438869<br></br>Longitude: 30.52335","Latitude: 50.438737<br></br>Longitude: 30.523393","Latitude: 39.9507014<br></br>Longitude: -75.1602185","Latitude: 29.514531<br></br>Longitude: 106.518165","Latitude: 23.0356266<br></br>Longitude: 113.1784019","Latitude: 55.827247<br></br>Longitude: 38.227117","Latitude: 29.558179<br></br>Longitude: 106.57613","Latitude: 56.4754576<br></br>Longitude: 53.8145059","Latitude: 31.25716159<br></br>Longitude: 121.57890455","Latitude: 48.4379747<br></br>Longitude: 135.1055222","Latitude: 31.1787821<br></br>Longitude: 120.4890618","Latitude: 22.5813105<br></br>Longitude: 113.9090366","Latitude: 30.575806647<br></br>Longitude: 114.287808398","Latitude: 31.491266<br></br>Longitude: 120.2779695","Latitude: 38.583305892<br></br>Longitude: 106.302129061","Latitude: 22.22581273<br></br>Longitude: 113.51143905","Latitude: 22.28179<br></br>Longitude: 114.185563","Latitude: 55.823287<br></br>Longitude: 37.3164209","Latitude: 47.5262613<br></br>Longitude: 42.2026579","Latitude: 55.8536306<br></br>Longitude: 48.5646375","Latitude: 56.332049<br></br>Longitude: 36.7127849","Latitude: 56.7356675<br></br>Longitude: 37.1601592","Latitude: 54.710023<br></br>Longitude: 20.4426211","Latitude: 1.333711<br></br>Longitude: 103.861134","Latitude: 55.968241<br></br>Longitude: 37.9395444","Latitude: 45.3612239<br></br>Longitude: 9.2194699","Latitude: 25.9584869<br></br>Longitude: -80.1452444","Latitude: 44.9791992<br></br>Longitude: -93.2754022","Latitude: 38.648087<br></br>Longitude: -121.5210313","Latitude: 54.9628507<br></br>Longitude: 73.3844303","Latitude: 44.588432<br></br>Longitude: 33.4893015","Latitude: 44.588432<br></br>Longitude: 33.4893015","Latitude: 44.9509336<br></br>Longitude: 34.1018396","Latitude: 44.496125<br></br>Longitude: 34.168199","Latitude: 44.9808752<br></br>Longitude: 34.1370394","Latitude: 44.495369<br></br>Longitude: 34.166933","Latitude: 39.91880616<br></br>Longitude: 116.69997304","Latitude: 23.03351975<br></br>Longitude: 113.18732446","Latitude: 32.015833<br></br>Longitude: 34.787384","Latitude: 25.072656<br></br>Longitude: 55.400833","Latitude: 32.9594891<br></br>Longitude: -117.2653146","Latitude: 29.7572694<br></br>Longitude: -95.3691379","Latitude: 45.5318596<br></br>Longitude: -122.6668196","Latitude: 33.755711<br></br>Longitude: -84.3883717","Latitude: 39.9602601<br></br>Longitude: -83.0092803","Latitude: 42.6485255<br></br>Longitude: -73.7547335","Latitude: 42.205743<br></br>Longitude: -71.1224359","Latitude: 48.776631<br></br>Longitude: 44.77526","Latitude: -33.4021934<br></br>Longitude: -70.5782494","Latitude: 41.1087288<br></br>Longitude: 29.0171157","Latitude: 39.9465565<br></br>Longitude: 32.7695007","Latitude: 56.6280965<br></br>Longitude: 47.9302061","Latitude: 50.552577<br></br>Longitude: 36.569229","Latitude: 1.3007914<br></br>Longitude: 103.8449976","Latitude: 30.65470522<br></br>Longitude: 104.08480612","Latitude: 30.65402494<br></br>Longitude: 104.08406917","Latitude: 30.603444<br></br>Longitude: 104.068852","Latitude: 29.55539492<br></br>Longitude: 106.57619234","Latitude: 23.13185969<br></br>Longitude: 113.32514766","Latitude: 25.792517<br></br>Longitude: 55.967475","Latitude: 25.182021<br></br>Longitude: 55.236249","Latitude: 24.086102<br></br>Longitude: 55.830056","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 25.9569187<br></br>Longitude: -80.1430982","Latitude: 14.5208778<br></br>Longitude: 121.0155","Latitude: 14.631798<br></br>Longitude: 121.082572","Latitude: 51.3555526<br></br>Longitude: 33.1027168","Latitude: 35.1922755<br></br>Longitude: 129.2122007","Latitude: 35.1924205<br></br>Longitude: 129.2119416","Latitude: 47.483801<br></br>Longitude: -0.627766","Latitude: 45.0465622<br></br>Longitude: 5.0571034","Latitude: 47.9599575<br></br>Longitude: 0.2249068","Latitude: 3.4766973<br></br>Longitude: -76.5276054","Latitude: 4.809292<br></br>Longitude: -75.681047","Latitude: 6.199731<br></br>Longitude: -75.5557266","Latitude: 10.4104367<br></br>Longitude: -75.551584","Latitude: 10.4104367<br></br>Longitude: -75.551584","Latitude: 4.7632404<br></br>Longitude: -74.0451975","Latitude: 17.9924462<br></br>Longitude: -66.6116218","Latitude: -33.3315694<br></br>Longitude: -70.7048188","Latitude: -33.3662202<br></br>Longitude: -70.6785295","Latitude: -33.629183<br></br>Longitude: -70.7135192","Latitude: 55.7601567<br></br>Longitude: 37.6246119","Latitude: 53.7823027<br></br>Longitude: 87.1305184","Latitude: 53.7823027<br></br>Longitude: 87.1305184","Latitude: 53.782453<br></br>Longitude: 87.1289977","Latitude: 64.5419321<br></br>Longitude: 40.5350681","Latitude: 64.5419322<br></br>Longitude: 40.5350681","Latitude: 52.01095<br></br>Longitude: 47.796743","Latitude: 57.0646693<br></br>Longitude: 53.9975045","Latitude: 52.5199344<br></br>Longitude: 13.4146665","Latitude: 39.9154528<br></br>Longitude: 116.360968","Latitude: 31.226466<br></br>Longitude: 121.461492","Latitude: 27.998971<br></br>Longitude: 120.684378","Latitude: 31.186069<br></br>Longitude: 121.457501","Latitude: 41.827795<br></br>Longitude: 123.37581648","Latitude: 35.93217367<br></br>Longitude: 120.17088987","Latitude: 43.891966<br></br>Longitude: 125.319815","Latitude: 52.51016<br></br>Longitude: 13.383","Latitude: 2.779756<br></br>Longitude: 101.677221","Latitude: 3.1535593<br></br>Longitude: 101.7113219","Latitude: 3.1542668<br></br>Longitude: 101.7062344","Latitude: 30.0238219<br></br>Longitude: -97.8862425","Latitude: 25.0522566<br></br>Longitude: 121.6037326","Latitude: 44.4413432<br></br>Longitude: 26.1511638","Latitude: 44.4308883<br></br>Longitude: 26.052093","Latitude: 44.4308883<br></br>Longitude: 26.052093","Latitude: 25.0629017<br></br>Longitude: 121.5758964","Latitude: 31.7764198<br></br>Longitude: 34.6641534","Latitude: 55.0430601<br></br>Longitude: 82.9221053","Latitude: 24.373319<br></br>Longitude: 54.537924","Latitude: 24.470133<br></br>Longitude: 54.372758","Latitude: 30.0224338<br></br>Longitude: 31.0897255","Latitude: 42.3387569<br></br>Longitude: -83.3708966","Latitude: 47.6738299<br></br>Longitude: -117.2065503","Latitude: 59.564349<br></br>Longitude: 150.7954911","Latitude: 54.2160078<br></br>Longitude: 49.6260488","Latitude: 23.152989<br></br>Longitude: 113.3823545","Latitude: 30.584449594<br></br>Longitude: 114.348793629","Latitude: 32.041416<br></br>Longitude: 118.780763","Latitude: 55.7366395<br></br>Longitude: 37.6059969","Latitude: 28.4977823<br></br>Longitude: -81.3103466","Latitude: 26.1645918<br></br>Longitude: -97.8872124","Latitude: 38.475479<br></br>Longitude: -121.4494524","Latitude: 33.8237412<br></br>Longitude: -117.8380483","Latitude: 35.1085027<br></br>Longitude: -106.573237","Latitude: 40.6826465<br></br>Longitude: -73.434651","Latitude: 32.7686156<br></br>Longitude: -117.1485343","Latitude: 48.7852756<br></br>Longitude: -122.4894159","Latitude: 32.87457<br></br>Longitude: -80.016829","Latitude: 43.5756976<br></br>Longitude: -89.782399","Latitude: 40.0232553<br></br>Longitude: -76.1947733","Latitude: 32.9538336<br></br>Longitude: -96.612844","Latitude: 34.9850414<br></br>Longitude: -82.0230593","Latitude: 30.6241011<br></br>Longitude: -96.3026469","Latitude: 29.8256207<br></br>Longitude: -97.9868889","Latitude: 40.7646382<br></br>Longitude: -73.305368","Latitude: 34.4187756<br></br>Longitude: -118.5617421","Latitude: 34.0963766<br></br>Longitude: -84.1749459","Latitude: 38.337998<br></br>Longitude: -75.1064745","Latitude: 37.7280817<br></br>Longitude: -122.4770808","Latitude: 49.1919884<br></br>Longitude: -122.9487798","Latitude: 54.2976034<br></br>Longitude: -113.5253848","Latitude: 52.1943735<br></br>Longitude: -106.6428156","Latitude: 43.7948616<br></br>Longitude: -79.6270534","Latitude: 45.4785803<br></br>Longitude: -73.8074236","Latitude: 39.90529472<br></br>Longitude: 116.63998101","Latitude: 31.23179273<br></br>Longitude: 121.37833379","Latitude: 28.556187022<br></br>Longitude: 121.268414339","Latitude: 40.754177<br></br>Longitude: -73.984596","Latitude: 48.8620216<br></br>Longitude: 2.3469709","Latitude: 32.279157<br></br>Longitude: 34.847068","Latitude: 51.5161804<br></br>Longitude: 7.457612","Latitude: 49.230574<br></br>Longitude: 6.182426","Latitude: 33.5897604<br></br>Longitude: 130.4112286","Latitude: 53.2166919<br></br>Longitude: 34.4180269","Latitude: 43.5179467<br></br>Longitude: 16.4824645","Latitude: 14.442338<br></br>Longitude: 120.996315","Latitude: 13.8711637<br></br>Longitude: 100.4637375","Latitude: -33.7772096<br></br>Longitude: 151.1213976","Latitude: 50.552613<br></br>Longitude: 36.568942","Latitude: 55.771248<br></br>Longitude: 37.620159","Latitude: 55.772484<br></br>Longitude: 37.677029","Latitude: 52.2749064<br></br>Longitude: 76.9892371","Latitude: 52.2749064<br></br>Longitude: 76.9892371","Latitude: 52.2749064<br></br>Longitude: 76.9892371","Latitude: -33.8706274<br></br>Longitude: 151.2075286","Latitude: -37.6811574<br></br>Longitude: 145.0707585","Latitude: 31.72707202<br></br>Longitude: 119.94203531","Latitude: 31.22956736<br></br>Longitude: 121.51621697","Latitude: 22.60328626<br></br>Longitude: 114.0459916","Latitude: 31.2174093<br></br>Longitude: 121.4064302","Latitude: 32.049497<br></br>Longitude: 118.788337","Latitude: 14.1876712<br></br>Longitude: 121.1250825","Latitude: 1.3501627<br></br>Longitude: 103.8728779","Latitude: 1.3014083<br></br>Longitude: 103.9052872","Latitude: 25.251966<br></br>Longitude: 55.332803","Latitude: 31.10720863<br></br>Longitude: 121.38561525","Latitude: 22.6558624<br></br>Longitude: 113.8644225","Latitude: 30.268405<br></br>Longitude: 120.164006","Latitude: 32.1003382<br></br>Longitude: 34.8267718","Latitude: 51.5767436<br></br>Longitude: 45.9733967","Latitude: 35.138055<br></br>Longitude: -90.0511071","Latitude: 51.5767436<br></br>Longitude: 45.9733968","Latitude: -33.4178073<br></br>Longitude: -70.6078063","Latitude: -33.4653138<br></br>Longitude: -70.5972667","Latitude: -34.0351017<br></br>Longitude: 151.1002001","Latitude: 35.8863967<br></br>Longitude: 138.3082899","Latitude: 55.7384966<br></br>Longitude: 37.4107393","Latitude: 57.6453198<br></br>Longitude: 39.9546187","Latitude: 61.23829<br></br>Longitude: 46.6421295","Latitude: 31.74993713<br></br>Longitude: 119.94555138","Latitude: 30.75329086<br></br>Longitude: 103.9221866","Latitude: 23.082683<br></br>Longitude: 114.414705","Latitude: 40.5535541<br></br>Longitude: -3.8924496","Latitude: 32.2917333<br></br>Longitude: 34.8624251","Latitude: 48.514923<br></br>Longitude: 44.542499","Latitude: 55.7370404<br></br>Longitude: 37.6067711","Latitude: 31.81034756<br></br>Longitude: 119.00399601","Latitude: 23.03594265<br></br>Longitude: 113.77977699","Latitude: 31.224476<br></br>Longitude: 121.475441","Latitude: 19.4035873<br></br>Longitude: -99.1542205","Latitude: 37.540812<br></br>Longitude: 126.89069","Latitude: 62.032402<br></br>Longitude: 129.713113","Latitude: 39.91510883<br></br>Longitude: 116.41190458","Latitude: 39.91529<br></br>Longitude: 116.412334","Latitude: 30.8040982<br></br>Longitude: 108.4024734","Latitude: 47.1030335<br></br>Longitude: 51.8898618","Latitude: 40.7399709<br></br>Longitude: -73.6135758","Latitude: 39.7848289<br></br>Longitude: -75.0528629","Latitude: 22.295234<br></br>Longitude: 114.172958","Latitude: 32.0228845<br></br>Longitude: 34.7969959","Latitude: 45.101133<br></br>Longitude: 24.3629919","Latitude: 1.3147967<br></br>Longitude: 103.8946028","Latitude: 29.57057404<br></br>Longitude: 106.49653894","Latitude: 4.629067<br></br>Longitude: -74.116986","Latitude: 7.1256299<br></br>Longitude: -73.1184446","Latitude: 37.2653782<br></br>Longitude: 126.9959828","Latitude: 35.4475073<br></br>Longitude: 139.6423446","Latitude: -12.1120003<br></br>Longitude: -77.011053","Latitude: -12.0141933<br></br>Longitude: -77.0604229","Latitude: 55.7446675<br></br>Longitude: 37.5658937","Latitude: 22.2861883<br></br>Longitude: 114.216937","Latitude: 22.2818<br></br>Longitude: 114.155615","Latitude: 22.3811558<br></br>Longitude: 114.1878073","Latitude: -16.3888908<br></br>Longitude: -71.5495113","Latitude: -6.7782134<br></br>Longitude: -79.832955","Latitude: -13.5226168<br></br>Longitude: -71.9491987","Latitude: -12.0646333<br></br>Longitude: -75.2072689","Latitude: -12.117001<br></br>Longitude: -77.0370839","Latitude: -12.1013902<br></br>Longitude: -76.970967","Latitude: -12.0852822<br></br>Longitude: -76.9773321","Latitude: -12.0852822<br></br>Longitude: -76.9773321","Latitude: -12.1319412<br></br>Longitude: -77.0306289","Latitude: -11.9965903<br></br>Longitude: -77.0628583","Latitude: -12.1120003<br></br>Longitude: -77.011053","Latitude: -12.0898612<br></br>Longitude: -77.0526686","Latitude: -12.0808616<br></br>Longitude: -77.0730865","Latitude: -5.181534<br></br>Longitude: -80.6220193","Latitude: -5.1853642<br></br>Longitude: -80.6422463","Latitude: -8.1030538<br></br>Longitude: -79.0490567","Latitude: -8.1321925<br></br>Longitude: -79.031753","Latitude: -12.0565529<br></br>Longitude: -77.1015547","Latitude: -12.0739448<br></br>Longitude: -77.0511038","Latitude: -12.056685<br></br>Longitude: -77.0373429","Latitude: -12.089118<br></br>Longitude: -77.0050256","Latitude: 37.695222<br></br>Longitude: -97.426766","Latitude: -12.0669774<br></br>Longitude: -77.0469581","Latitude: -12.0188042<br></br>Longitude: -77.1078165","Latitude: -12.0851976<br></br>Longitude: -76.9751199","Latitude: -11.9965903<br></br>Longitude: -77.0628583","Latitude: -6.7774774<br></br>Longitude: -79.8328474","Latitude: -12.0858307<br></br>Longitude: -76.9773227","Latitude: 11.993848<br></br>Longitude: -77.0619171","Latitude: -12.0896618<br></br>Longitude: -77.052561","Latitude: -12.0767174<br></br>Longitude: -77.0827821","Latitude: -8.10253<br></br>Longitude: -79.04827","Latitude: 35.6913264<br></br>Longitude: 139.6995166","Latitude: 35.6913264<br></br>Longitude: 139.6995166","Latitude: 35.896594<br></br>Longitude: 139.6353983","Latitude: 35.8597471<br></br>Longitude: 139.5483014","Latitude: 22.3811558<br></br>Longitude: 114.1878073","Latitude: 44.4280379<br></br>Longitude: 26.0344427","Latitude: 54.0428846<br></br>Longitude: 9.9783933","Latitude: 52.2114369<br></br>Longitude: 7.1977132","Latitude: 22.6193366<br></br>Longitude: 120.2960446","Latitude: 60.091683<br></br>Longitude: 30.380411","Latitude: 45.892531<br></br>Longitude: -74.1493599","Latitude: 44.60298<br></br>Longitude: -75.6981584","Latitude: 34.6910634<br></br>Longitude: 135.1930864","Latitude: 35.456039<br></br>Longitude: 139.389133","Latitude: 35.4578921<br></br>Longitude: 139.6316608","Latitude: 35.7123868<br></br>Longitude: 139.414987","Latitude: 34.805489<br></br>Longitude: 135.5344664","Latitude: -36.8289406<br></br>Longitude: -73.0646627","Latitude: -29.9724108<br></br>Longitude: -71.3008983","Latitude: -33.4845397<br></br>Longitude: -70.6292439","Latitude: -33.6004819<br></br>Longitude: -70.5772793","Latitude: -33.4178073<br></br>Longitude: -70.6078063","Latitude: 51.5320764<br></br>Longitude: 4.4299333","Latitude: 25.0855055<br></br>Longitude: 121.3783989","Latitude: 8.9844528<br></br>Longitude: -79.5116164","Latitude: -8.0957419<br></br>Longitude: -79.0409002","Latitude: 28.188468<br></br>Longitude: -82.3908656","Latitude: -12.0141933<br></br>Longitude: -77.0604229","Latitude: -16.4174965<br></br>Longitude: -71.5141574","Latitude: 19.3954588<br></br>Longitude: -99.0204308","Latitude: 19.359979<br></br>Longitude: -99.1701514","Latitude: 19.3613832<br></br>Longitude: -99.2775726","Latitude: 40.5479013<br></br>Longitude: -74.3348845","Latitude: 40.6104056<br></br>Longitude: -73.9208363","Latitude: 25.3462553<br></br>Longitude: 55.4209317","Latitude: 33.9854088<br></br>Longitude: -118.395087","Latitude: 33.7505051<br></br>Longitude: -78.958115","Latitude: 30.2133036<br></br>Longitude: -90.9532721","Latitude: 32.3755783<br></br>Longitude: -111.1015508","Latitude: 29.7755219<br></br>Longitude: -95.8093454","Latitude: 42.8096661<br></br>Longitude: -85.6712027","Latitude: 33.8613892<br></br>Longitude: -118.0932017","Latitude: 37.6995673<br></br>Longitude: -121.8449497","Latitude: 28.1919576<br></br>Longitude: -82.3915434","Latitude: 37.750277<br></br>Longitude: -122.2028616","Latitude: 27.9312172<br></br>Longitude: -82.3258785","Latitude: 40.6902662<br></br>Longitude: -73.9849313","Latitude: 39.9428798<br></br>Longitude: -75.0258385","Latitude: 34.1909679<br></br>Longitude: -118.6042808","Latitude: 34.1455979<br></br>Longitude: -118.2578027","Latitude: 40.2533137<br></br>Longitude: -74.2993604","Latitude: 28.5378649<br></br>Longitude: -81.4027414","Latitude: 39.97917288<br></br>Longitude: 116.31525041","Latitude: 31.10778595<br></br>Longitude: 121.37836923","Latitude: 28.2637737<br></br>Longitude: 113.0789344","Latitude: 36.39993<br></br>Longitude: 120.697207","Latitude: 22.59792865<br></br>Longitude: 114.04682918","Latitude: 32.5368718<br></br>Longitude: 35.8690835","Latitude: 4.647638<br></br>Longitude: -74.101711","Latitude: 4.695239<br></br>Longitude: -74.08626","Latitude: 40.517669<br></br>Longitude: -3.889784","Latitude: 40.272131<br></br>Longitude: -3.693468","Latitude: 33.8886219<br></br>Longitude: 35.5179351","Latitude: 25.264035<br></br>Longitude: 55.286797","Latitude: 25.158776<br></br>Longitude: 55.404455","Latitude: 30.00289673<br></br>Longitude: 106.25752719","Latitude: 40.64658<br></br>Longitude: 22.921505","Latitude: 14.603365<br></br>Longitude: 120.973537","Latitude: 14.549809<br></br>Longitude: 121.050814","Latitude: 31.9219927<br></br>Longitude: 34.8623641","Latitude: 13.9888135<br></br>Longitude: 100.617475","Latitude: 13.7776465<br></br>Longitude: 100.4757614","Latitude: 13.7302961<br></br>Longitude: 100.5687571","Latitude: 31.13005485<br></br>Longitude: 120.64503287","Latitude: 26.5418462<br></br>Longitude: 103.6702502","Latitude: 22.8617484<br></br>Longitude: 114.627296","Latitude: 30.3479023<br></br>Longitude: 120.4035474","Latitude: 22.61821145<br></br>Longitude: 114.0548239","Latitude: 38.912876<br></br>Longitude: 121.586781","Latitude: 39.127516<br></br>Longitude: 117.216646","Latitude: 38.1539723<br></br>Longitude: -121.300859","Latitude: 23.02251368<br></br>Longitude: 113.78964118","Latitude: 46.7295863<br></br>Longitude: -122.978614","Latitude: 42.9564555<br></br>Longitude: -76.9215918","Latitude: 26.4947043<br></br>Longitude: -81.9738704","Latitude: 37.4213377<br></br>Longitude: 126.891192","Latitude: 37.42<br></br>Longitude: 127.12","Latitude: 44.8043202<br></br>Longitude: 20.4100429","Latitude: 37.438777<br></br>Longitude: -5.885862","Latitude: 49.8046835<br></br>Longitude: 73.1093826","Latitude: 35.8948748<br></br>Longitude: 139.63609","Latitude: 44.8155493<br></br>Longitude: 20.4372149","Latitude: 44.8155493<br></br>Longitude: 20.4372149","Latitude: 9.028971<br></br>Longitude: -79.5354637","Latitude: -33.4021934<br></br>Longitude: -70.5782494","Latitude: 6.3404874<br></br>Longitude: -75.5426032","Latitude: 22.6144461<br></br>Longitude: 120.3067782","Latitude: 34.805489<br></br>Longitude: 135.5344664","Latitude: 36.6894706<br></br>Longitude: 136.8812873","Latitude: 41.0003579<br></br>Longitude: -81.9859318","Latitude: 26.4947043<br></br>Longitude: -81.9738704","Latitude: 32.0012763<br></br>Longitude: -81.2845693","Latitude: 35.1511471<br></br>Longitude: -114.5757487","Latitude: 41.6911734<br></br>Longitude: -92.0037329","Latitude: 33.6207555<br></br>Longitude: -97.1506584","Latitude: 31.9600816<br></br>Longitude: -97.1161422","Latitude: 48.4571761<br></br>Longitude: -122.3363087","Latitude: 35.0809411<br></br>Longitude: -81.7118102","Latitude: 32.8402323<br></br>Longitude: -116.708297","Latitude: 32.3408045<br></br>Longitude: -90.8411221","Latitude: 35.8035331<br></br>Longitude: -83.5786815","Latitude: 42.1229868<br></br>Longitude: -88.426603","Latitude: 68.966667<br></br>Longitude: 33.083","Latitude: 56.828918<br></br>Longitude: 60.598703","Latitude: 55.7614179<br></br>Longitude: 37.6178219","Latitude: 55.766876<br></br>Longitude: 37.380546","Latitude: 56.828918<br></br>Longitude: 60.598703","Latitude: 55.1713134<br></br>Longitude: 61.3557036","Latitude: 56.829044<br></br>Longitude: 60.598827","Latitude: 42.091565<br></br>Longitude: -71.267706","Latitude: 37.0216699<br></br>Longitude: -121.5606372","Latitude: 35.6441039<br></br>Longitude: 140.0371394","Latitude: 44.0233919<br></br>Longitude: -71.1133706","Latitude: 31.2000924<br></br>Longitude: 29.9187387","Latitude: 40.2164085<br></br>Longitude: -80.2116242","Latitude: 40.9279761<br></br>Longitude: -73.8543579","Latitude: -12.0065387<br></br>Longitude: -77.0605555","Latitude: -12.0892836<br></br>Longitude: -77.0525421","Latitude: -11.9938486<br></br>Longitude: -77.0619169","Latitude: -12.1654716<br></br>Longitude: -76.9552324","Latitude: -12.1654716<br></br>Longitude: -76.9552324","Latitude: -12.1654716<br></br>Longitude: -76.9552324","Latitude: 18.439205<br></br>Longitude: -66.5432478","Latitude: 18.3748396<br></br>Longitude: -65.8997491","Latitude: 29.35199<br></br>Longitude: -98.437149","Latitude: 30.0210268<br></br>Longitude: -95.5274127","Latitude: 53.7266683<br></br>Longitude: -127.6476205","Latitude: 33.1254065<br></br>Longitude: -117.3304473","Latitude: 35.2195797<br></br>Longitude: 128.5866064","Latitude: 37.6677307<br></br>Longitude: 126.7510438","Latitude: 33.7155747<br></br>Longitude: -78.8821815","Latitude: 39.0345614<br></br>Longitude: -95.6848034","Latitude: 43.5756976<br></br>Longitude: -89.782399","Latitude: 36.0735226<br></br>Longitude: -79.2685525","Latitude: 29.5483167<br></br>Longitude: -98.5085661","Latitude: 50.9528663<br></br>Longitude: -114.0671879","Latitude: 49.2819007<br></br>Longitude: -123.1180043","Latitude: 43.7247752<br></br>Longitude: -79.4553801","Latitude: 45.71551734<br></br>Longitude: 126.75969683","Latitude: 44.2155496<br></br>Longitude: 28.6052153","Latitude: 45.163825<br></br>Longitude: 26.8168965","Latitude: 46.5182694<br></br>Longitude: 24.523868","Latitude: 54.1939213<br></br>Longitude: 37.6360435","Latitude: 54.1939213<br></br>Longitude: 37.6360435","Latitude: 31.21958947<br></br>Longitude: 121.41690259","Latitude: 25.0388485<br></br>Longitude: 121.5668016","Latitude: 41.808488<br></br>Longitude: 123.434757","Latitude: 68.956945<br></br>Longitude: 33.067596","Latitude: 29.5322417<br></br>Longitude: 34.9404278","Latitude: 55.7617547<br></br>Longitude: 37.6211251","Latitude: 33.1253677<br></br>Longitude: -117.3304124","Latitude: 31.19603631<br></br>Longitude: 121.76467318","Latitude: 22.582407<br></br>Longitude: 113.08635","Latitude: 41.736087<br></br>Longitude: 123.446723","Latitude: 43.3089608<br></br>Longitude: 45.7008291","Latitude: 35.6662574<br></br>Longitude: 139.7059892","Latitude: 37.09024<br></br>Longitude: -95.712891","Latitude: 30.6317454<br></br>Longitude: 104.06820874","Latitude: 31.23822<br></br>Longitude: 121.485372","Latitude: 30.64793487<br></br>Longitude: 103.99660166","Latitude: 40.14480723<br></br>Longitude: 117.09474182","Latitude: 44.6329773<br></br>Longitude: 22.6726832","Latitude: 37.5112348<br></br>Longitude: 127.0980274","Latitude: 1.355385<br></br>Longitude: 103.989148","Latitude: 1.356295<br></br>Longitude: 103.986923","Latitude: 10.3921989<br></br>Longitude: -75.4805125","Latitude: 45.4823658<br></br>Longitude: 9.1869574","Latitude: 33.7847782<br></br>Longitude: -78.7745153","Latitude: 48.0942886<br></br>Longitude: -122.1891958","Latitude: 34.2146721<br></br>Longitude: -119.0663902","Latitude: 29.9250717<br></br>Longitude: -81.4173774","Latitude: 43.7760621<br></br>Longitude: -79.2575963","Latitude: 37.3850076<br></br>Longitude: 127.1231651","Latitude: 37.0298431<br></br>Longitude: 127.0827947","Latitude: 37.4905936<br></br>Longitude: 126.7562452","Latitude: 37.5460906<br></br>Longitude: 126.8717032","Latitude: 37.5266192<br></br>Longitude: 127.0028684","Latitude: 37.3865155<br></br>Longitude: 127.0911209","Latitude: 35.1698426<br></br>Longitude: 129.1311016","Latitude: 1.283949<br></br>Longitude: 103.858846","Latitude: 1.26503<br></br>Longitude: 103.8221469","Latitude: 41.878114<br></br>Longitude: -87.629798","Latitude: 44.5074364<br></br>Longitude: 26.082589","Latitude: 37.5792928<br></br>Longitude: 127.0479007","Latitude: 35.8758942<br></br>Longitude: 128.5963119","Latitude: 35.2114828<br></br>Longitude: 129.0776055","Latitude: 37.534795<br></br>Longitude: 127.0785946","Latitude: 35.096715<br></br>Longitude: 129.0367482","Latitude: 37.5667733<br></br>Longitude: 126.8025118","Latitude: 37.5589519<br></br>Longitude: 126.9922251","Latitude: 37.6317504<br></br>Longitude: 127.0718746","Latitude: 37.3902172<br></br>Longitude: 126.9504391","Latitude: 37.246823<br></br>Longitude: 126.9660494","Latitude: 35.544405<br></br>Longitude: 129.3318295","Latitude: 37.5154709<br></br>Longitude: 126.9066823","Latitude: 37.4760194<br></br>Longitude: 127.1386673","Latitude: 37.5221163<br></br>Longitude: 127.0331574","Latitude: 37.5121084<br></br>Longitude: 127.0273526","Latitude: 37.4836008<br></br>Longitude: 127.0124412","Latitude: 35.1687032<br></br>Longitude: 129.1297466","Latitude: 36.7216443<br></br>Longitude: 127.3034189","Latitude: 37.7370009<br></br>Longitude: 127.035432","Latitude: 35.1674808<br></br>Longitude: 126.8800883","Latitude: 37.4506559<br></br>Longitude: 126.6674354","Latitude: 37.3350602<br></br>Longitude: 127.0611832","Latitude: 37.5600808<br></br>Longitude: 127.0075262","Latitude: 37.522018<br></br>Longitude: 126.909527","Latitude: 39.940331<br></br>Longitude: 116.432194","Latitude: -33.3341315<br></br>Longitude: -70.7124288","Latitude: 6.2086393<br></br>Longitude: -75.5711347","Latitude: 37.8233334<br></br>Longitude: 127.1385288","Latitude: 37.6033543<br></br>Longitude: 126.7709573","Latitude: 49.8839383<br></br>Longitude: -97.1988147","Latitude: 4.647638<br></br>Longitude: -74.101711","Latitude: 25.044372<br></br>Longitude: 121.5508932","Latitude: 25.0329694<br></br>Longitude: 121.5654177","Latitude: 25.0388485<br></br>Longitude: 121.5668016","Latitude: 24.1524822<br></br>Longitude: 120.6849139","Latitude: 35.6595885<br></br>Longitude: 139.6986289","Latitude: 25.267171<br></br>Longitude: 55.317351","Latitude: 37.7000992<br></br>Longitude: -121.8436231","Latitude: 30.3799313<br></br>Longitude: -86.3513395","Latitude: 32.3757322<br></br>Longitude: -111.1012331","Latitude: 33.131195<br></br>Longitude: -96.6606861","Latitude: 27.5366767<br></br>Longitude: -82.5072","Latitude: 54.717483<br></br>Longitude: 20.5004646","Latitude: 35.6659463<br></br>Longitude: 139.7050837","Latitude: 52.2678856<br></br>Longitude: 104.2890408","Latitude: 52.2678856<br></br>Longitude: 104.2890408","Latitude: 52.227488<br></br>Longitude: 104.303951","Latitude: 22.396428<br></br>Longitude: 114.109497","Latitude: 55.328818<br></br>Longitude: 86.124645","Latitude: 40.003861<br></br>Longitude: 116.4201603","Latitude: 29.558694<br></br>Longitude: 106.580583","Latitude: 18.72415353<br></br>Longitude: 110.29409861","Latitude: 31.34505821<br></br>Longitude: 121.37245153","Latitude: 31.194809<br></br>Longitude: 121.31522","Latitude: 31.23657185<br></br>Longitude: 121.49935529","Latitude: 31.32362446<br></br>Longitude: 120.75842232","Latitude: 37.4791134<br></br>Longitude: 126.6517496","Latitude: 36.6831768<br></br>Longitude: 137.3314583","Latitude: 31.9376412<br></br>Longitude: 35.8874813","Latitude: -33.0102801<br></br>Longitude: -71.5466357","Latitude: 35.8333532<br></br>Longitude: -83.5721085","Latitude: 43.2449336<br></br>Longitude: -83.7758064","Latitude: 38.808603<br></br>Longitude: -104.5","Latitude: 47.6062095<br></br>Longitude: -122.3320708","Latitude: 38.2568296<br></br>Longitude: -122.6500244","Latitude: 28.3867053<br></br>Longitude: -81.4940902","Latitude: 42.7130994<br></br>Longitude: 23.2488279","Latitude: 40.977746<br></br>Longitude: 28.873027","Latitude: 41.0494765<br></br>Longitude: -75.3132422","Latitude: 28.4742617<br></br>Longitude: -81.4489503","Latitude: 29.9250717<br></br>Longitude: -81.4173774","Latitude: 37.0250971<br></br>Longitude: -121.5669431","Latitude: 39.1073196<br></br>Longitude: -77.5382843","Latitude: 45.2450868<br></br>Longitude: -93.6661165","Latitude: 26.1531617<br></br>Longitude: -80.3216515","Latitude: 42.3455999<br></br>Longitude: -71.5454099","Latitude: 43.0977618<br></br>Longitude: -78.9754715","Latitude: 38.7336894<br></br>Longitude: -75.1399365","Latitude: 30.3799313<br></br>Longitude: -86.3513395","Latitude: 41.140693<br></br>Longitude: -80.1574505","Latitude: 42.5161208<br></br>Longitude: -87.9500072","Latitude: 34.8465348<br></br>Longitude: -117.0854289","Latitude: 29.8249513<br></br>Longitude: -97.9845466","Latitude: 36.6447835<br></br>Longitude: -93.2643893","Latitude: 37.0057816<br></br>Longitude: -121.5682751","Latitude: 41.2891184<br></br>Longitude: -72.4293689","Latitude: 33.1261575<br></br>Longitude: -117.3213976","Latitude: 33.9252<br></br>Longitude: -116.8106785","Latitude: 33.7843344<br></br>Longitude: -78.7742585","Latitude: 40.7645196<br></br>Longitude: -73.3069363","Latitude: 36.074507<br></br>Longitude: -79.2660193","Latitude: 41.3166228<br></br>Longitude: -74.1303333","Latitude: 40.1616374<br></br>Longitude: -74.4174029","Latitude: 40.025686<br></br>Longitude: -76.2198771","Latitude: 40.916986<br></br>Longitude: -72.7094703","Latitude: 42.0381377<br></br>Longitude: -71.3526391","Latitude: 45.1562098<br></br>Longitude: -122.8782898","Latitude: 34.006156<br></br>Longitude: -118.1516239","Latitude: 34.2147347<br></br>Longitude: -119.0572673","Latitude: 37.4905756<br></br>Longitude: 126.9249911","Latitude: 29.997361<br></br>Longitude: -95.7564593","Latitude: 43.087502<br></br>Longitude: -79.1204876","Latitude: 44.2680158<br></br>Longitude: -76.5029454","Latitude: 43.4097115<br></br>Longitude: -80.3952591","Latitude: 34.6708374<br></br>Longitude: 135.5014825","Latitude: 38.9830345<br></br>Longitude: -76.1594172","Latitude: 46.2584082<br></br>Longitude: -63.1804585","Latitude: 43.6135192<br></br>Longitude: -79.6966967","Latitude: 40.762358<br></br>Longitude: -73.9791676","Latitude: 34.4169198<br></br>Longitude: -119.676347","Latitude: 39.760061<br></br>Longitude: -86.163801","Latitude: 6.2271607<br></br>Longitude: -75.5758418","Latitude: 6.1615289<br></br>Longitude: -75.6056045","Latitude: 45.5468389<br></br>Longitude: -94.1524377","Latitude: 43.0977618<br></br>Longitude: -78.9754715","Latitude: 39.784791<br></br>Longitude: -75.0525723","Latitude: 32.6196384<br></br>Longitude: 35.3122421","Latitude: 46.2626838<br></br>Longitude: -63.1700392","Latitude: 37.09024<br></br>Longitude: -95.712891","Latitude: 37.5043161<br></br>Longitude: 127.0250435","Latitude: 25.118107<br></br>Longitude: 55.200608","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 45.24585<br></br>Longitude: -93.669246","Latitude: 31.2513847<br></br>Longitude: 34.7720932","Latitude: 32.954418<br></br>Longitude: 35.182313","Latitude: 35.1570356<br></br>Longitude: 129.0630291","Latitude: 53.4434281<br></br>Longitude: -113.4834518","Latitude: 59.370045<br></br>Longitude: 18.00503","Latitude: 23.00590752<br></br>Longitude: 113.22878418","Latitude: 30.36150723<br></br>Longitude: 120.05856903","Latitude: 45.87592846<br></br>Longitude: 126.5612469","Latitude: 38.4293075<br></br>Longitude: 27.2087595","Latitude: 41.0808887<br></br>Longitude: 28.8771629","Latitude: -33.9345198<br></br>Longitude: 18.4713008","Latitude: -26.0155<br></br>Longitude: 28.1068","Latitude: -26.0155<br></br>Longitude: 28.1068","Latitude: -26.0155<br></br>Longitude: 28.1068","Latitude: -33.8496<br></br>Longitude: 18.8105","Latitude: -33.9881985<br></br>Longitude: 18.4885093","Latitude: -29.8132<br></br>Longitude: 30.9908","Latitude: 26.0556<br></br>Longitude: 28.0929","Latitude: 35.7509385<br></br>Longitude: 139.8046755","Latitude: 23.1335653<br></br>Longitude: 113.3234623","Latitude: -9.1023675<br></br>Longitude: -78.5579225","Latitude: -12.0551778<br></br>Longitude: -76.9659565","Latitude: -14.0423249<br></br>Longitude: -75.700814","Latitude: -33.4527746<br></br>Longitude: -70.6824627","Latitude: 46.7508638<br></br>Longitude: 23.5325163","Latitude: 44.1989412<br></br>Longitude: 28.6092689","Latitude: -12.1968425<br></br>Longitude: -77.0116455","Latitude: -11.1085721<br></br>Longitude: -77.6129694","Latitude: -14.8318504<br></br>Longitude: -74.9377438","Latitude: 54.6342985<br></br>Longitude: 39.6887935","Latitude: 45.6707651<br></br>Longitude: 25.6200192","Latitude: 44.9704625<br></br>Longitude: 25.9611708","Latitude: 44.5074364<br></br>Longitude: 26.082589","Latitude: 46.579971<br></br>Longitude: 26.913978","Latitude: 39.971564<br></br>Longitude: 116.448301","Latitude: 25.0528564<br></br>Longitude: 121.5202136","Latitude: 25.0329694<br></br>Longitude: 121.5654177","Latitude: 24.1848198<br></br>Longitude: 120.6314948","Latitude: 5.438604<br></br>Longitude: 100.3102962","Latitude: 5.4180009<br></br>Longitude: 100.340385","Latitude: 31.949542<br></br>Longitude: 34.80438","Latitude: 4.676557<br></br>Longitude: -74.057005","Latitude: 19.3608803<br></br>Longitude: -99.1904343","Latitude: 19.3608803<br></br>Longitude: -99.1904343","Latitude: 43.2186599<br></br>Longitude: 27.8982363","Latitude: 42.6534794<br></br>Longitude: 23.3357683","Latitude: 42.6918831<br></br>Longitude: 23.3535311","Latitude: 42.6918831<br></br>Longitude: 23.3535311","Latitude: 31.23227174<br></br>Longitude: 121.412056","Latitude: -22.984304<br></br>Longitude: -43.2091001","Latitude: 34.8613441<br></br>Longitude: 135.6774993","Latitude: 35.3379406<br></br>Longitude: 139.3560477","Latitude: 35.6278192<br></br>Longitude: 139.7735683","Latitude: 35.3379406<br></br>Longitude: 139.3560477","Latitude: 55.8182446<br></br>Longitude: 37.4907929","Latitude: 56.8237034<br></br>Longitude: 60.5045463","Latitude: 39.910420998<br></br>Longitude: 116.373587609","Latitude: 30.646393<br></br>Longitude: 103.9855906","Latitude: 29.60785088<br></br>Longitude: 106.29368015","Latitude: 45.6631264<br></br>Longitude: 9.69458","Latitude: 39.008297<br></br>Longitude: 121.628233","Latitude: 19.91642509<br></br>Longitude: 110.33179403","Latitude: 34.21592215<br></br>Longitude: 108.99190715","Latitude: -23.5725984<br></br>Longitude: -46.6957864","Latitude: 38.7336894<br></br>Longitude: -75.1399365","Latitude: 40.7578756<br></br>Longitude: -73.9824244","Latitude: 56.8237034<br></br>Longitude: 60.5045463","Latitude: 14.382546<br></br>Longitude: 107.9790821","Latitude: 10.7731883<br></br>Longitude: 106.7009194","Latitude: 40.10481495<br></br>Longitude: 116.54195202","Latitude: 55.603635<br></br>Longitude: 37.491438","Latitude: 32.0732397<br></br>Longitude: 34.7816829","Latitude: 29.5688075<br></br>Longitude: 34.9566083","Latitude: 42.981671<br></br>Longitude: 47.496295","Latitude: 54.7687956<br></br>Longitude: 32.082153","Latitude: 13.8117152<br></br>Longitude: 100.6204566","Latitude: 26.43618<br></br>Longitude: -81.7746859","Latitude: 13.746461<br></br>Longitude: 100.531563","Latitude: 54.7687956<br></br>Longitude: 32.082153","Latitude: 37.2580107<br></br>Longitude: 127.6481601","Latitude: 55.6710469<br></br>Longitude: 37.4386556","Latitude: 55.6710469<br></br>Longitude: 37.4386556","Latitude: 35.6490163<br></br>Longitude: 140.0442545","Latitude: 41.770121<br></br>Longitude: 123.435983","Latitude: 39.909571<br></br>Longitude: 116.375668","Latitude: 44.970622<br></br>Longitude: 34.076061","Latitude: 44.969247<br></br>Longitude: 34.078947","Latitude: 55.7620983<br></br>Longitude: 37.6571301","Latitude: 45.2459438<br></br>Longitude: -93.6685672","Latitude: 8.986299<br></br>Longitude: -79.510866","Latitude: -12.0551778<br></br>Longitude: -76.9659565","Latitude: 38.91599104<br></br>Longitude: 121.63672024","Latitude: -12.2858634<br></br>Longitude: -76.87516","Latitude: -37.8862881<br></br>Longitude: 145.082649","Latitude: 55.804184<br></br>Longitude: 37.392323","Latitude: 46.3589457<br></br>Longitude: 48.0697375","Latitude: 55.611998<br></br>Longitude: 37.6052196","Latitude: 55.7899945<br></br>Longitude: 37.5308701","Latitude: -27.3201232<br></br>Longitude: 153.0413416","Latitude: -37.7329747<br></br>Longitude: 144.9065235","Latitude: 35.6698717<br></br>Longitude: 139.76401","Latitude: 8.7628144<br></br>Longitude: -75.8729221","Latitude: 10.4599315<br></br>Longitude: -73.2431541","Latitude: 2.94974<br></br>Longitude: -75.288084","Latitude: 3.4650511<br></br>Longitude: -76.5016463","Latitude: 35.5179093<br></br>Longitude: 139.5663144","Latitude: -37.0257427<br></br>Longitude: 174.8998284","Latitude: 53.3263218<br></br>Longitude: 83.6908148","Latitude: 59.793627<br></br>Longitude: 30.330196","Latitude: 4.1221761<br></br>Longitude: -73.6411103","Latitude: 31.21596201<br></br>Longitude: 121.45852187","Latitude: 31.234966<br></br>Longitude: 121.477562","Latitude: 55.1453927<br></br>Longitude: 61.4518826","Latitude: 55.190701<br></br>Longitude: 61.2707569","Latitude: 5.3314233<br></br>Longitude: -72.3999266","Latitude: 42.6431288<br></br>Longitude: 23.339577","Latitude: 35.4647664<br></br>Longitude: 139.6179987","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 40.7238345<br></br>Longitude: -74.0000589","Latitude: 4.453482<br></br>Longitude: -75.240906","Latitude: 4.6464765<br></br>Longitude: -74.1090289","Latitude: 4.6669451<br></br>Longitude: -74.0550775","Latitude: 37.5391091<br></br>Longitude: 127.2146082","Latitude: 33.5897604<br></br>Longitude: 130.4112286","Latitude: 38.906814<br></br>Longitude: 121.609091","Latitude: 31.20707247<br></br>Longitude: 121.4075001","Latitude: 30.65000241<br></br>Longitude: 104.11476906","Latitude: -29.813244<br></br>Longitude: 30.990822","Latitude: 52.5046473<br></br>Longitude: 13.336935","Latitude: 22.72182629<br></br>Longitude: 114.07475342","Latitude: 40.7560544<br></br>Longitude: -73.9784469","Latitude: 22.2832297<br></br>Longitude: 114.155354","Latitude: 22.2811176<br></br>Longitude: 114.1853991","Latitude: 24.48248828<br></br>Longitude: 118.1207069","Latitude: 30.525403<br></br>Longitude: 114.354711","Latitude: 31.224235<br></br>Longitude: 121.445628","Latitude: 48.5356188<br></br>Longitude: 9.2911466","Latitude: 37.4934539<br></br>Longitude: 126.7195964","Latitude: 31.242846<br></br>Longitude: 121.471769","Latitude: 14.5350368<br></br>Longitude: 121.0351887","Latitude: 55.663096<br></br>Longitude: 37.481119","Latitude: 55.663096<br></br>Longitude: 37.481119","Latitude: 14.554729<br></br>Longitude: 121.0244452","Latitude: 14.576332<br></br>Longitude: 120.983206","Latitude: 40.9859857<br></br>Longitude: 29.1791294","Latitude: 31.57566426<br></br>Longitude: 120.3013424","Latitude: 30.50504512<br></br>Longitude: 114.2066253","Latitude: 22.2950689<br></br>Longitude: 114.1668661","Latitude: 22.2780222<br></br>Longitude: 114.2404905","Latitude: 39.848045<br></br>Longitude: 32.833049","Latitude: 40.856896<br></br>Longitude: 29.282793","Latitude: 40.4198775<br></br>Longitude: -3.7011186","Latitude: 35.1687066<br></br>Longitude: 136.9102506","Latitude: 35.7140142<br></br>Longitude: 139.4078431","Latitude: 35.003563<br></br>Longitude: 135.7323137","Latitude: 33.5903547<br></br>Longitude: 130.4017155","Latitude: -33.7968656<br></br>Longitude: 151.1839782","Latitude: 55.764393<br></br>Longitude: 37.844684","Latitude: 55.7933661<br></br>Longitude: 37.750968","Latitude: 55.7306721<br></br>Longitude: 37.6095609","Latitude: 22.2821814<br></br>Longitude: 114.1856492","Latitude: 37.5041299<br></br>Longitude: 127.0030692","Latitude: 35.1549453<br></br>Longitude: 129.0597401","Latitude: 35.86846<br></br>Longitude: 128.6934002","Latitude: 35.6278192<br></br>Longitude: 139.7735683","Latitude: 29.972873<br></br>Longitude: 31.0140931","Latitude: 31.9376412<br></br>Longitude: 35.8874813","Latitude: 35.6808059<br></br>Longitude: 139.7402946","Latitude: 35.8187981<br></br>Longitude: 128.5389044","Latitude: -25.7824<br></br>Longitude: 28.275","Latitude: -33.3691569<br></br>Longitude: -70.6753899","Latitude: 9.0505158<br></br>Longitude: -79.4503025","Latitude: 5.333756<br></br>Longitude: 100.306691","Latitude: 17.9924462<br></br>Longitude: -66.6116218","Latitude: -33.4813538<br></br>Longitude: -70.7518532","Latitude: 40.992748<br></br>Longitude: 28.905447","Latitude: 45.725724<br></br>Longitude: 21.202728","Latitude: 35.6742637<br></br>Longitude: 139.7637618","Latitude: 33.58981<br></br>Longitude: 130.4204315","Latitude: 35.6856706<br></br>Longitude: 139.9901567","Latitude: 34.7040116<br></br>Longitude: 135.5004816","Latitude: 34.3931856<br></br>Longitude: 132.4595643","Latitude: 43.0274312<br></br>Longitude: 141.4090651","Latitude: 38.229011<br></br>Longitude: 140.887772","Latitude: 43.0274312<br></br>Longitude: 141.4090651","Latitude: 38.229011<br></br>Longitude: 140.887772","Latitude: 22.72455409<br></br>Longitude: 114.24864997","Latitude: 39.0627865<br></br>Longitude: 117.6305579","Latitude: 34.365039754<br></br>Longitude: 109.176022936","Latitude: 31.11522823<br></br>Longitude: 121.56864349","Latitude: 23.065939<br></br>Longitude: 113.157394","Latitude: 10.7605866<br></br>Longitude: 106.655498","Latitude: 31.22578787<br></br>Longitude: 121.44682074","Latitude: 23.11007684<br></br>Longitude: 113.24094074","Latitude: 4.7467673<br></br>Longitude: -74.0448436","Latitude: 35.9215394<br></br>Longitude: 128.6373616","Latitude: 35.5395869<br></br>Longitude: 129.3358538","Latitude: 37.5563512<br></br>Longitude: 126.923885","Latitude: 35.4606<br></br>Longitude: 128.2132","Latitude: -12.1437855<br></br>Longitude: -77.0008221","Latitude: 31.892773<br></br>Longitude: 34.811272","Latitude: -13.4398938<br></br>Longitude: -76.1351116","Latitude: 25.251966<br></br>Longitude: 55.332803","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 24.453884<br></br>Longitude: 54.3773438","Latitude: -12.1542654<br></br>Longitude: -76.9496448","Latitude: -8.1016915<br></br>Longitude: -79.0101524","Latitude: -6.777776<br></br>Longitude: -79.8336168","Latitude: -9.9208<br></br>Longitude: -76.2410507","Latitude: -12.030346<br></br>Longitude: -77.0684454","Latitude: -8.1016915<br></br>Longitude: -79.0101524","Latitude: -11.9374143<br></br>Longitude: -77.0722178","Latitude: 23.18033466<br></br>Longitude: 113.26956471","Latitude: 31.14021442<br></br>Longitude: 121.65851288","Latitude: 39.12153797<br></br>Longitude: 117.1973015","Latitude: 13.717486<br></br>Longitude: 100.509751","Latitude: 49.0378427<br></br>Longitude: -123.0853249","Latitude: 26.587155<br></br>Longitude: 106.76153","Latitude: 30.699156<br></br>Longitude: 104.031397","Latitude: 39.894107087<br></br>Longitude: 116.460416712","Latitude: 31.228234<br></br>Longitude: 121.526516","Latitude: 39.910948<br></br>Longitude: 116.459371","Latitude: 14.4081327<br></br>Longitude: 121.0414667","Latitude: 49.0378427<br></br>Longitude: -123.0853249","Latitude: 43.7767555<br></br>Longitude: -79.2590081","Latitude: -34.5636073<br></br>Longitude: -58.6973117","Latitude: -32.886353<br></br>Longitude: -68.8388959","Latitude: 33.9909344<br></br>Longitude: -118.4662542","Latitude: 33.7826672<br></br>Longitude: -117.8929285","Latitude: 39.2281865<br></br>Longitude: -77.2857697","Latitude: 39.795262<br></br>Longitude: -77.2009737","Latitude: 34.016464<br></br>Longitude: -118.496531","Latitude: 34.1347001<br></br>Longitude: -118.0515879","Latitude: 41.0973773<br></br>Longitude: -73.9565905","Latitude: 33.8328003<br></br>Longitude: -118.350778","Latitude: 40.8229535<br></br>Longitude: -73.4106588","Latitude: 33.6505291<br></br>Longitude: -117.7442124","Latitude: 32.7024837<br></br>Longitude: -96.2838224","Latitude: 33.7841874<br></br>Longitude: -78.7736115","Latitude: 30.3788147<br></br>Longitude: -86.3526003","Latitude: 4.5747572<br></br>Longitude: -74.1121483","Latitude: 4.595894<br></br>Longitude: -74.071498","Latitude: 4.732715<br></br>Longitude: -74.0665","Latitude: 4.5697539<br></br>Longitude: -74.1388979","Latitude: 4.7254677<br></br>Longitude: -74.1253855","Latitude: 48.856614<br></br>Longitude: 2.3522219","Latitude: 48.856614<br></br>Longitude: 2.3522219","Latitude: 48.856614<br></br>Longitude: 2.3522219","Latitude: 48.8609024<br></br>Longitude: 2.3484877","Latitude: 52.5247386<br></br>Longitude: 13.4076977","Latitude: 45.4653525<br></br>Longitude: 9.1955958","Latitude: 40.4198131<br></br>Longitude: -3.7012777","Latitude: 45.128353<br></br>Longitude: 7.7373741","Latitude: 33.8937913<br></br>Longitude: 35.5017767","Latitude: 39.4715663<br></br>Longitude: -0.488575","Latitude: 43.82913785<br></br>Longitude: 87.43128742","Latitude: 30.62788272<br></br>Longitude: 104.15040255","Latitude: 32.465677<br></br>Longitude: 34.993029","Latitude: 31.7516832<br></br>Longitude: 35.187302","Latitude: 32.7906617<br></br>Longitude: 35.534115","Latitude: 55.7482787<br></br>Longitude: 37.5371678","Latitude: 55.7482787<br></br>Longitude: 37.5371678","Latitude: 55.7279873<br></br>Longitude: 37.4763011","Latitude: 55.7279873<br></br>Longitude: 37.4763011","Latitude: 55.6773593<br></br>Longitude: 37.4673811","Latitude: 55.769683<br></br>Longitude: 37.426356","Latitude: 55.712337<br></br>Longitude: 37.553165","Latitude: 40.4171196<br></br>Longitude: -3.7043397","Latitude: 40.4176834<br></br>Longitude: -3.7049581","Latitude: 44.4193659<br></br>Longitude: 26.1473421","Latitude: 13.8036116<br></br>Longitude: 100.6141002","Latitude: 33.8937913<br></br>Longitude: 35.5017767","Latitude: 33.8533302<br></br>Longitude: 35.5369976","Latitude: 40.4160786<br></br>Longitude: -3.7081719","Latitude: 40.5670815<br></br>Longitude: -3.6091102","Latitude: 38.6597303<br></br>Longitude: -9.2285873","Latitude: -28.0319666<br></br>Longitude: 153.4309763","Latitude: -36.850638<br></br>Longitude: 174.764903","Latitude: 55.845203<br></br>Longitude: 37.659739","Latitude: 31.38905789<br></br>Longitude: 121.35817189","Latitude: 41.80155867<br></br>Longitude: 123.43343468","Latitude: 31.19448782<br></br>Longitude: 121.43736015","Latitude: 48.6900553<br></br>Longitude: 7.4992433","Latitude: 29.60840392<br></br>Longitude: 106.50822783","Latitude: 24.98511784<br></br>Longitude: 102.67882847","Latitude: 29.66364593<br></br>Longitude: 116.08167169","Latitude: 31.21093642<br></br>Longitude: 121.40352268","Latitude: 40.22949869<br></br>Longitude: 116.19006857","Latitude: 24.967047<br></br>Longitude: 102.742188","Latitude: 42.1841964<br></br>Longitude: -71.1329685","Latitude: 42.1841964<br></br>Longitude: -71.1329685","Latitude: 39.4358484<br></br>Longitude: -84.3376508","Latitude: 34.3578142<br></br>Longitude: -84.0479479","Latitude: 40.2359932<br></br>Longitude: -75.5701091","Latitude: 40.2599564<br></br>Longitude: -82.9241344","Latitude: 33.7844058<br></br>Longitude: -78.7707948","Latitude: 34.9361057<br></br>Longitude: -89.9916306","Latitude: 38.7336894<br></br>Longitude: -75.1399365","Latitude: 38.7952682<br></br>Longitude: -77.0008077","Latitude: 39.94961683<br></br>Longitude: 116.47504219","Latitude: 55.6689351<br></br>Longitude: 37.5863359","Latitude: -26.1791<br></br>Longitude: 28.2383","Latitude: 55.850674<br></br>Longitude: 37.364539","Latitude: 55.585688<br></br>Longitude: 37.722387","Latitude: 30.57006922<br></br>Longitude: 104.06387789","Latitude: 23.17510645<br></br>Longitude: 113.26823119","Latitude: 31.83852345<br></br>Longitude: 117.11721867","Latitude: 56.8290891<br></br>Longitude: 60.5989643","Latitude: 51.513925<br></br>Longitude: -0.1521936","Latitude: 35.1687032<br></br>Longitude: 129.1297466","Latitude: 40.98601<br></br>Longitude: 29.0992335","Latitude: -22.9976527<br></br>Longitude: -43.357963","Latitude: 33.896203<br></br>Longitude: 35.483028","Latitude: 52.5226536<br></br>Longitude: 5.4403023","Latitude: 52.5237287<br></br>Longitude: 5.4373439","Latitude: 51.5204327<br></br>Longitude: -0.0736815","Latitude: 52.5200066<br></br>Longitude: 13.404954","Latitude: -26.1791<br></br>Longitude: 28.2383","Latitude: -26.1055<br></br>Longitude: 28.1068","Latitude: 40.901975<br></br>Longitude: 14.332644","Latitude: 36.6940249<br></br>Longitude: -6.160694","Latitude: 41.3021139<br></br>Longitude: -8.7057136","Latitude: 37.0843914<br></br>Longitude: -8.0215073","Latitude: 41.3850639<br></br>Longitude: 2.1734035","Latitude: 48.8911448<br></br>Longitude: 2.238182","Latitude: 31.27897<br></br>Longitude: 120.628545","Latitude: 45.626074<br></br>Longitude: 5.159356","Latitude: 47.0924356<br></br>Longitude: 8.3592108","Latitude: 49.8605064<br></br>Longitude: 18.2638543","Latitude: 51.5539727<br></br>Longitude: 12.1929428","Latitude: 55.769683<br></br>Longitude: 37.426356","Latitude: 25.3223269<br></br>Longitude: 55.5136433","Latitude: 22.396428<br></br>Longitude: 114.109497","Latitude: 22.2774116<br></br>Longitude: 114.1753694","Latitude: 22.2831409<br></br>Longitude: 114.1544369","Latitude: 26.25383844<br></br>Longitude: 119.40834815","Latitude: 39.89163001<br></br>Longitude: 116.64484137","Latitude: 32.789711<br></br>Longitude: 35.007822","Latitude: 31.15489382<br></br>Longitude: 121.3506733","Latitude: 29.550333<br></br>Longitude: 34.9566","Latitude: -8.11916<br></br>Longitude: -34.9047719","Latitude: -22.6805205<br></br>Longitude: -43.2903136","Latitude: 19.4028556<br></br>Longitude: -99.1539332","Latitude: 19.4874562<br></br>Longitude: -99.1525129","Latitude: 19.6306682<br></br>Longitude: -99.1246049","Latitude: 49.1981561<br></br>Longitude: -123.141209","Latitude: 49.0376189<br></br>Longitude: -123.0852783","Latitude: 43.8254468<br></br>Longitude: -79.5384264","Latitude: -36.9793643<br></br>Longitude: 174.7837717","Latitude: 24.68950432<br></br>Longitude: 118.13949667","Latitude: 29.5728405<br></br>Longitude: 106.53387178","Latitude: -28.1680861<br></br>Longitude: 153.5419606","Latitude: 24.9883624<br></br>Longitude: 102.7669184","Latitude: 23.11420335<br></br>Longitude: 113.3324479","Latitude: 29.32029162<br></br>Longitude: 104.77162501","Latitude: 32.140557528<br></br>Longitude: 118.722781538","Latitude: 22.5966941<br></br>Longitude: 114.30939315","Latitude: 14.0313906<br></br>Longitude: 122.1130909","Latitude: -8.0957419<br></br>Longitude: -79.0409002","Latitude: 30.65476676<br></br>Longitude: 104.07620186","Latitude: 37.3955689<br></br>Longitude: 126.660035","Latitude: 37.3955689<br></br>Longitude: 126.660035","Latitude: 31.9488972<br></br>Longitude: 34.8027876","Latitude: 31.768319<br></br>Longitude: 35.21371","Latitude: 31.197297<br></br>Longitude: 121.437018","Latitude: 44.725061<br></br>Longitude: 37.763018","Latitude: 31.9270062<br></br>Longitude: 118.8215014","Latitude: 30.55685002<br></br>Longitude: 114.33848225","Latitude: 24.51645604<br></br>Longitude: 118.16235148","Latitude: 25.017219<br></br>Longitude: 121.2123543","Latitude: 29.949427<br></br>Longitude: -90.0627999","Latitude: 28.1888478<br></br>Longitude: -82.3917947","Latitude: 36.074507<br></br>Longitude: -79.2660193","Latitude: 28.26899<br></br>Longitude: 112.68827453","Latitude: 25.03710451<br></br>Longitude: 102.70934312","Latitude: 59.925371<br></br>Longitude: 30.321758","Latitude: 55.6797255<br></br>Longitude: 37.4788616","Latitude: 54.7573154<br></br>Longitude: 56.0354511","Latitude: 59.868939<br></br>Longitude: 30.349666","Latitude: 59.8689419<br></br>Longitude: 30.3506892","Latitude: 37.4969255<br></br>Longitude: 127.0532731","Latitude: 55.822919<br></br>Longitude: 37.497757","Latitude: 32.440934<br></br>Longitude: 34.894197","Latitude: 31.9660553<br></br>Longitude: 35.9109616","Latitude: 42.6791779<br></br>Longitude: 23.2862969","Latitude: 31.626879<br></br>Longitude: 34.582292","Latitude: -34.5811051<br></br>Longitude: -58.4284202","Latitude: 30.24959962<br></br>Longitude: 120.16389142","Latitude: 41.0332703<br></br>Longitude: 28.9252063","Latitude: 41.0521025<br></br>Longitude: 28.9012875","Latitude: 39.84<br></br>Longitude: 32.83","Latitude: 32.773663<br></br>Longitude: -96.8","Latitude: 45.5315263<br></br>Longitude: -122.6667872","Latitude: 37.5000966<br></br>Longitude: 126.8893137","Latitude: 37.5674247<br></br>Longitude: 126.9830123","Latitude: 10.7896558<br></br>Longitude: 122.9897118","Latitude: 31.48701735<br></br>Longitude: 120.30099591","Latitude: 39.80565677<br></br>Longitude: 116.45958333","Latitude: 22.52814084<br></br>Longitude: 114.02693908","Latitude: -26.2041028<br></br>Longitude: 28.0473051","Latitude: 22.396428<br></br>Longitude: 114.109497","Latitude: -12.0852822<br></br>Longitude: -76.9773321","Latitude: 22.556835<br></br>Longitude: 114.070119","Latitude: 37.0222654<br></br>Longitude: -121.5635016","Latitude: 25.97133501<br></br>Longitude: 119.2665499","Latitude: 40.9858227<br></br>Longitude: 29.1001493","Latitude: 23.117663<br></br>Longitude: 113.326118","Latitude: 35.6250135<br></br>Longitude: 139.7751123","Latitude: 37.555588<br></br>Longitude: 126.923089","Latitude: 34.0728012<br></br>Longitude: -117.5514191","Latitude: 23.10164424<br></br>Longitude: 113.27300105","Latitude: 35.6690682<br></br>Longitude: 139.7061419","Latitude: 29.55778995<br></br>Longitude: 106.46106057","Latitude: 37.5041299<br></br>Longitude: 127.0030692","Latitude: 37.5041299<br></br>Longitude: 127.0030692","Latitude: 6.196708<br></br>Longitude: -75.5591811","Latitude: 35.6626729<br></br>Longitude: 139.7018739","Latitude: 35.6894875<br></br>Longitude: 139.6917064","Latitude: 35.6950453<br></br>Longitude: 139.8136683","Latitude: 35.5990595<br></br>Longitude: 139.6130065","Latitude: 35.6914283<br></br>Longitude: 139.7009592","Latitude: 35.6894875<br></br>Longitude: 139.6917064","Latitude: 35.6894875<br></br>Longitude: 139.6917064","Latitude: 32.8023477<br></br>Longitude: 130.7092132","Latitude: 34.690083<br></br>Longitude: 135.1955112","Latitude: 34.6937378<br></br>Longitude: 135.5021651","Latitude: 35.6894875<br></br>Longitude: 139.6917064","Latitude: 25.4375387<br></br>Longitude: 81.832259","Latitude: -12.046374<br></br>Longitude: -77.0427934","Latitude: 35.6250135<br></br>Longitude: 139.7751123","Latitude: 34.6451655<br></br>Longitude: 135.5137544","Latitude: 35.712384<br></br>Longitude: 139.4150564","Latitude: 25.0417142<br></br>Longitude: 121.551082","Latitude: -33.5110776<br></br>Longitude: -70.6098821","Latitude: -12.0852822<br></br>Longitude: -76.9773321","Latitude: 25.0435349<br></br>Longitude: 121.507313","Latitude: 24.3243178<br></br>Longitude: 120.6998433","Latitude: -33.4488897<br></br>Longitude: -70.6692655","Latitude: 41.6352246<br></br>Longitude: -0.9830617","Latitude: 47.8574663<br></br>Longitude: 21.1285465","Latitude: 46.9620241<br></br>Longitude: 9.5541967","Latitude: 49.573794<br></br>Longitude: 10.9163554","Latitude: 4.6668663<br></br>Longitude: -74.0526851","Latitude: -34.6033294<br></br>Longitude: -58.4107886","Latitude: 6.1329366<br></br>Longitude: 102.2574168","Latitude: 52.5231417<br></br>Longitude: 5.4383709","Latitude: -33.924741<br></br>Longitude: 18.4241074","Latitude: 22.4013411<br></br>Longitude: -97.9291316","Latitude: 19.3027734<br></br>Longitude: -99.123176","Latitude: 24.913352<br></br>Longitude: 55.010303","Latitude: 32.1705469<br></br>Longitude: 34.9286636","Latitude: 31.9730015<br></br>Longitude: 34.7925013","Latitude: 32.0692075<br></br>Longitude: 34.786733","Latitude: -26.1939473<br></br>Longitude: 28.0273914","Latitude: 54.650613<br></br>Longitude: 39.635832","Latitude: 54.650563<br></br>Longitude: 39.635521","Latitude: 22.38524<br></br>Longitude: 114.204538","Latitude: 43.8907422<br></br>Longitude: -78.8798701","Latitude: -34.5987647<br></br>Longitude: -58.3749537","Latitude: 24.453884<br></br>Longitude: 54.3773438","Latitude: 33.8861557<br></br>Longitude: 35.4833361","Latitude: 33.8937913<br></br>Longitude: 35.5017767","Latitude: 1.3644202<br></br>Longitude: 103.9915308","Latitude: 44.4193659<br></br>Longitude: 26.1473421","Latitude: 44.4193659<br></br>Longitude: 26.1473421","Latitude: 44.6329773<br></br>Longitude: 22.6726832","Latitude: 45.6322361<br></br>Longitude: 25.6394831","Latitude: 25.25312<br></br>Longitude: 55.302197","Latitude: 25.125703<br></br>Longitude: 56.302207","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 55.279619<br></br>Longitude: 55.120296","Latitude: 24.495924<br></br>Longitude: 54.383226","Latitude: 25.25312<br></br>Longitude: 55.302197","Latitude: 25.216319<br></br>Longitude: 55.407795","Latitude: 36.8968908<br></br>Longitude: 30.7133233","Latitude: 24.9822<br></br>Longitude: 55.4029","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 24.2991738<br></br>Longitude: 54.6972774","Latitude: 30.0444196<br></br>Longitude: 31.2357116","Latitude: 30.0444196<br></br>Longitude: 31.2357116","Latitude: 45.1638289<br></br>Longitude: 26.8168785","Latitude: 44.4267674<br></br>Longitude: 26.1025384","Latitude: 44.4267674<br></br>Longitude: 26.1025384","Latitude: 44.4267674<br></br>Longitude: 26.1025384","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 39.9333635<br></br>Longitude: 32.8597419","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 40.7654408<br></br>Longitude: 29.9408089","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 38.4718076<br></br>Longitude: 27.1588277","Latitude: 39.9333635<br></br>Longitude: 32.8597419","Latitude: 39.6532976<br></br>Longitude: 27.8903423","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 28.5048<br></br>Longitude: 77.097","Latitude: 28.656417<br></br>Longitude: 77.434559","Latitude: 28.5426165<br></br>Longitude: 77.1557526","Latitude: 50.4450619<br></br>Longitude: 30.520617","Latitude: 50.4450619<br></br>Longitude: 30.520617","Latitude: 43.202442<br></br>Longitude: 76.891881","Latitude: -23.5725984<br></br>Longitude: -46.6957864","Latitude: 33.569159<br></br>Longitude: -7.625826","Latitude: 30.4245292<br></br>Longitude: -9.589288","Latitude: 34.054347<br></br>Longitude: -4.9727288","Latitude: 33.5464482<br></br>Longitude: -7.6022734","Latitude: 33.985996<br></br>Longitude: 5.0021277","Latitude: 33.5687931<br></br>Longitude: -7.6433674","Latitude: 33.712259<br></br>Longitude: -7.3437457","Latitude: 33.591456<br></br>Longitude: -7.678103","Latitude: 33.591456<br></br>Longitude: -7.678103","Latitude: 55.6908665<br></br>Longitude: 37.3030403","Latitude: 33.2249487<br></br>Longitude: -8.5022715","Latitude: 33.5861517<br></br>Longitude: -7.5849167","Latitude: 33.5446644<br></br>Longitude: -7.6405404","Latitude: 33.5941786<br></br>Longitude: -7.6160493","Latitude: 33.572511<br></br>Longitude: -7.614562","Latitude: 33.9834969<br></br>Longitude: 6.8577879","Latitude: 43.4447064<br></br>Longitude: 39.9074102","Latitude: 23.684897<br></br>Longitude: -109.7007018","Latitude: 23.684897<br></br>Longitude: -109.7007018","Latitude: 23.684897<br></br>Longitude: -109.7007018","Latitude: 23.684897<br></br>Longitude: -109.7007018","Latitude: 23.684897<br></br>Longitude: -109.7007018","Latitude: 43.8667278<br></br>Longitude: -79.2881438","Latitude: -37.9578565<br></br>Longitude: 145.0517256","Latitude: 14.5545186<br></br>Longitude: 121.0253796","Latitude: 41.3067226<br></br>Longitude: 2.0255934","Latitude: 19.3721563<br></br>Longitude: -99.0695933","Latitude: 33.8985435<br></br>Longitude: 35.505433","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 40.757777<br></br>Longitude: -74.0025907","Latitude: 49.5739222<br></br>Longitude: 10.91697","Latitude: 37.5273268<br></br>Longitude: 127.0274265","Latitude: 14.583155<br></br>Longitude: 121.051699","Latitude: 31.10052436<br></br>Longitude: 121.41106603","Latitude: 39.90657791<br></br>Longitude: 116.2262792","Latitude: 13.8052069<br></br>Longitude: 100.5674031","Latitude: 25.0356839<br></br>Longitude: 121.56681","Latitude: 1.26503<br></br>Longitude: 103.8221469","Latitude: -23.4297662<br></br>Longitude: -47.1296933","Latitude: -22.8491652<br></br>Longitude: -43.3211127","Latitude: 22.6229613<br></br>Longitude: 120.3037772","Latitude: 24.1477358<br></br>Longitude: 120.6736482","Latitude: 24.1380896<br></br>Longitude: 120.6845642","Latitude: 25.0158516<br></br>Longitude: 121.3049144","Latitude: 31.79262152<br></br>Longitude: 119.97420013","Latitude: 30.24890271<br></br>Longitude: 120.21260025","Latitude: 37.3955689<br></br>Longitude: 126.660035","Latitude: 10.8230989<br></br>Longitude: 106.6296638","Latitude: 13.7467903<br></br>Longitude: 100.5350573","Latitude: 37.4957382<br></br>Longitude: 126.9888355","Latitude: 50.1146242<br></br>Longitude: 8.681533","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 52.5100232<br></br>Longitude: 13.3796958","Latitude: 52.2573732<br></br>Longitude: 20.9845828","Latitude: 31.9730015<br></br>Longitude: 34.7925013","Latitude: 18.23852956<br></br>Longitude: 109.62839398","Latitude: -8.1016915<br></br>Longitude: -79.0101524","Latitude: -12.1119594<br></br>Longitude: -77.011595","Latitude: 40.03016689<br></br>Longitude: 116.33261383","Latitude: 38.513698<br></br>Longitude: 106.25591815","Latitude: 4.7194804<br></br>Longitude: -74.0368042","Latitude: 3.4516467<br></br>Longitude: -76.5319854","Latitude: 4.8087174<br></br>Longitude: -75.690601","Latitude: 4.1513822<br></br>Longitude: -73.6376905","Latitude: 6.3404691<br></br>Longitude: -75.5425991","Latitude: 31.22964785<br></br>Longitude: 121.46294767","Latitude: 20.01515958<br></br>Longitude: 110.34861541","Latitude: 43.866067<br></br>Longitude: 125.295905","Latitude: 30.70260559<br></br>Longitude: 104.0454181","Latitude: 55.791125<br></br>Longitude: 37.586221","Latitude: 24.453884<br></br>Longitude: 54.3773438","Latitude: 39.971155<br></br>Longitude: 116.435962","Latitude: 24.1510229<br></br>Longitude: 120.6579846","Latitude: 25.0527485<br></br>Longitude: 121.5206836","Latitude: 35.7509385<br></br>Longitude: 139.8046755","Latitude: -33.5197642<br></br>Longitude: -70.6024624","Latitude: 25.0428106<br></br>Longitude: 121.5077243","Latitude: 31.21300388<br></br>Longitude: 121.56243381","Latitude: 51.2003078<br></br>Longitude: 5.9865345","Latitude: 36.9918456<br></br>Longitude: 127.0836477","Latitude: 25.6901911<br></br>Longitude: -80.3132992","Latitude: 39.9507014<br></br>Longitude: -75.1602185","Latitude: 32.2788581<br></br>Longitude: 34.8467674","Latitude: 31.792244<br></br>Longitude: 34.638949","Latitude: 32.1705613<br></br>Longitude: 34.9286565","Latitude: 43.2481979<br></br>Longitude: 76.9362084","Latitude: 56.832383<br></br>Longitude: 60.617194","Latitude: 55.804376<br></br>Longitude: 37.618114","Latitude: 55.7472883<br></br>Longitude: 37.5819175","Latitude: 43.2631393<br></br>Longitude: 76.9262031","Latitude: 43.2631393<br></br>Longitude: 76.9262031","Latitude: 43.2631393<br></br>Longitude: 76.9262031","Latitude: 55.7926601<br></br>Longitude: 37.5901102","Latitude: 24.1514825<br></br>Longitude: 120.662956","Latitude: 25.07591<br></br>Longitude: 55.131275","Latitude: 37.6391558<br></br>Longitude: 126.9191713","Latitude: 37.6327471<br></br>Longitude: 126.9225018","Latitude: 37.6327471<br></br>Longitude: 126.9225018","Latitude: 41.3042929<br></br>Longitude: 2.0222907","Latitude: 51.50871<br></br>Longitude: -0.221153","Latitude: 37.5392646<br></br>Longitude: 127.2148919","Latitude: -38.7349423<br></br>Longitude: -72.6108163","Latitude: 38.912495<br></br>Longitude: 121.58632093","Latitude: -29.8586804<br></br>Longitude: 31.0218404","Latitude: 31.229839927<br></br>Longitude: 121.46256605","Latitude: 37.566535<br></br>Longitude: 126.9779692","Latitude: 11.0200193<br></br>Longitude: -74.8700762","Latitude: 11.0200193<br></br>Longitude: -74.8700762","Latitude: 31.5928238<br></br>Longitude: -7.9858938","Latitude: 33.9823994<br></br>Longitude: -6.8291978","Latitude: 31.63434<br></br>Longitude: -8.007319","Latitude: 35.7813874<br></br>Longitude: -5.8406922","Latitude: 19.0759837<br></br>Longitude: 72.8776559","Latitude: 35.7813874<br></br>Longitude: -5.8406922","Latitude: 4.7217781<br></br>Longitude: -74.0746531","Latitude: 4.7217781<br></br>Longitude: -74.0746531","Latitude: 4.7217781<br></br>Longitude: -74.0746531","Latitude: 6.208498<br></br>Longitude: -75.5553642","Latitude: 34.395253078<br></br>Longitude: 108.731820923","Latitude: 26.5771768<br></br>Longitude: 106.71305103","Latitude: 39.97306329<br></br>Longitude: 116.29520509","Latitude: 29.88310304<br></br>Longitude: 121.55759716","Latitude: 36.3497174<br></br>Longitude: 127.371909","Latitude: 13.6713992<br></br>Longitude: 100.6167097","Latitude: 13.8472905<br></br>Longitude: 100.6552774","Latitude: 55.75792<br></br>Longitude: 37.658493","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 48.4903011<br></br>Longitude: 135.0821852","Latitude: 41.909168<br></br>Longitude: -87.67593","Latitude: 55.7926467<br></br>Longitude: 37.6126488","Latitude: 47.4899303<br></br>Longitude: -121.7960122","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 28.56721<br></br>Longitude: 77.32109","Latitude: 42.1354079<br></br>Longitude: 24.7452904","Latitude: 42.6977082<br></br>Longitude: 23.3218675","Latitude: 42.1354079<br></br>Longitude: 24.7452904","Latitude: 42.6977082<br></br>Longitude: 23.3218675","Latitude: 42.6977082<br></br>Longitude: 23.3218675","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 32.084041<br></br>Longitude: 34.887762","Latitude: 36.8968908<br></br>Longitude: 30.7133233","Latitude: 38.3356763<br></br>Longitude: 27.1344444","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 32.881225<br></br>Longitude: 35.24064","Latitude: 45.6579755<br></br>Longitude: 25.6011977","Latitude: 31.6035092<br></br>Longitude: 34.7717488","Latitude: 31.892773<br></br>Longitude: 34.811272","Latitude: 44.4267674<br></br>Longitude: 26.1025384","Latitude: 44.4267674<br></br>Longitude: 26.1025384","Latitude: 32.699635<br></br>Longitude: 35.303546","Latitude: 44.4267674<br></br>Longitude: 26.1025384","Latitude: 32.0852999<br></br>Longitude: 34.7817676","Latitude: 32.699635<br></br>Longitude: 35.303546","Latitude: 25.3566762<br></br>Longitude: 55.3879987","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 25.6741343<br></br>Longitude: 55.9804173","Latitude: 33.5731104<br></br>Longitude: -7.5898434","Latitude: -26.1083<br></br>Longitude: 28.0531","Latitude: -33.924741<br></br>Longitude: 18.4241074","Latitude: -29.8586804<br></br>Longitude: 31.0218404","Latitude: -26.1939473<br></br>Longitude: 28.0273914","Latitude: -26.1939473<br></br>Longitude: 28.0273914","Latitude: -29.8586804<br></br>Longitude: 31.0218404","Latitude: -26.1939473<br></br>Longitude: 28.0273914","Latitude: 28.6178<br></br>Longitude: 77.2795","Latitude: 28.6618976<br></br>Longitude: 77.2273958","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 32.7940463<br></br>Longitude: 34.989571","Latitude: 42.5135363<br></br>Longitude: 14.1198949","Latitude: 31.1992879<br></br>Longitude: 121.313862","Latitude: 28.195785<br></br>Longitude: 112.997404","Latitude: 29.57694271<br></br>Longitude: 106.57316108","Latitude: 30.67574297<br></br>Longitude: 103.97381703","Latitude: 11.0104262<br></br>Longitude: -74.830319","Latitude: 11.0021<br></br>Longitude: -74.8076935","Latitude: 4.6231992<br></br>Longitude: -74.13867","Latitude: 41.0747478<br></br>Longitude: 28.9860881","Latitude: 40.7647209<br></br>Longitude: -74.0624162","Latitude: 32.084041<br></br>Longitude: 34.887762","Latitude: 32.832154<br></br>Longitude: 35.088407","Latitude: 32.9265298<br></br>Longitude: 35.3213221","Latitude: 41.9091185<br></br>Longitude: -87.6761045","Latitude: 25.6901911<br></br>Longitude: -80.311141","Latitude: -33.518537<br></br>Longitude: -70.599537","Latitude: -33.4488897<br></br>Longitude: -70.6692655","Latitude: 39.909821<br></br>Longitude: 116.458709","Latitude: 23.11007684<br></br>Longitude: 113.24094074","Latitude: 30.778177<br></br>Longitude: 106.055001","Latitude: 26.650622<br></br>Longitude: 119.537881","Latitude: 41.73677<br></br>Longitude: 123.450987","Latitude: 23.118358<br></br>Longitude: 113.241462","Latitude: 31.216471<br></br>Longitude: 121.414636","Latitude: 31.316808<br></br>Longitude: 120.676941","Latitude: 30.628251<br></br>Longitude: 104.008667","Latitude: -26.1083<br></br>Longitude: 28.0531","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 9.050098<br></br>Longitude: -79.452615","Latitude: 9.011742<br></br>Longitude: -79.4654363","Latitude: -12.117001<br></br>Longitude: -77.0370839","Latitude: 37.5633413<br></br>Longitude: 126.9811458","Latitude: 6.232915<br></br>Longitude: -75.604123","Latitude: 37.5171482<br></br>Longitude: 126.9055629","Latitude: 37.5633413<br></br>Longitude: 126.9811458","Latitude: -22.9218019<br></br>Longitude: -43.2353639","Latitude: -23.5266159<br></br>Longitude: -46.681081","Latitude: -22.893747<br></br>Longitude: -47.024258","Latitude: -26.1803935<br></br>Longitude: 28.117173","Latitude: 48.8785419<br></br>Longitude: 2.3642198","Latitude: 50.4450619<br></br>Longitude: 30.520617","Latitude: 4.65211<br></br>Longitude: -74.126648","Latitude: 4.651891<br></br>Longitude: -74.12633","Latitude: 4.7109886<br></br>Longitude: -74.072092","Latitude: 51.5217064<br></br>Longitude: -0.0722893","Latitude: 4.1513822<br></br>Longitude: -73.6376905","Latitude: 4.8087174<br></br>Longitude: -75.690601","Latitude: 19.4326077<br></br>Longitude: -99.133208","Latitude: 19.4326077<br></br>Longitude: -99.133208","Latitude: 19.4326077<br></br>Longitude: -99.133208","Latitude: 19.383021<br></br>Longitude: -99.079343","Latitude: 19.376938<br></br>Longitude: -99.0956003","Latitude: 19.4326077<br></br>Longitude: -99.133208","Latitude: 55.771256<br></br>Longitude: 37.620295","Latitude: 48.7715209<br></br>Longitude: 44.8017904","Latitude: 47.2596574<br></br>Longitude: 39.7213163","Latitude: 47.2370837<br></br>Longitude: 39.7141929","Latitude: 60.09055<br></br>Longitude: 30.379074","Latitude: 1.2058837<br></br>Longitude: -77.285787","Latitude: -28.0362683<br></br>Longitude: 153.4278405","Latitude: -37.6500963<br></br>Longitude: 144.9529136","Latitude: -27.513157<br></br>Longitude: 152.95342","Latitude: 30.71092259<br></br>Longitude: 104.06630537","Latitude: 31.810202564<br></br>Longitude: 117.288917047","Latitude: 27.96265741<br></br>Longitude: 120.6040583","Latitude: 35.0160601<br></br>Longitude: 126.7107572","Latitude: 31.21700957<br></br>Longitude: 121.4225223","Latitude: 26.60325479<br></br>Longitude: 106.72103498","Latitude: -33.8688197<br></br>Longitude: 151.2092955","Latitude: 31.9453666<br></br>Longitude: 35.9283716","Latitude: 29.532086<br></br>Longitude: 35.0062821","Latitude: 29.5320522<br></br>Longitude: 35.0063209","Latitude: 31.9453666<br></br>Longitude: 35.9283716","Latitude: -36.8484597<br></br>Longitude: 174.7633315","Latitude: 22.61258486<br></br>Longitude: 114.13805006","Latitude: 30.33090272<br></br>Longitude: 114.06193231","Latitude: 31.34241309<br></br>Longitude: 120.61287384","Latitude: 22.25549835<br></br>Longitude: 113.52411957","Latitude: 30.02776956<br></br>Longitude: 120.55502251","Latitude: 39.77074532<br></br>Longitude: 116.16289972","Latitude: 50.0768126<br></br>Longitude: 14.5392566","Latitude: 39.929242<br></br>Longitude: 116.627229","Latitude: 39.027095<br></br>Longitude: 117.218655","Latitude: 13.7481136<br></br>Longitude: 100.5192148","Latitude: 64.524484<br></br>Longitude: 40.602536","Latitude: 35.6721142<br></br>Longitude: 139.7708253","Latitude: 41.1178218<br></br>Longitude: 29.0430833","Latitude: 35.8762055<br></br>Longitude: 128.6285973","Latitude: 35.8762055<br></br>Longitude: 128.6285973","Latitude: 35.8762055<br></br>Longitude: 128.6285973","Latitude: 30.30530482<br></br>Longitude: 120.3478406","Latitude: 41.808472427<br></br>Longitude: 123.377109823","Latitude: 31.27962131<br></br>Longitude: 121.44406336","Latitude: 31.36575377<br></br>Longitude: 121.06177842","Latitude: 55.7472883<br></br>Longitude: 37.5819175","Latitude: 37.0885046<br></br>Longitude: -8.0370774","Latitude: 31.7769937<br></br>Longitude: 117.2560309","Latitude: 31.15524002<br></br>Longitude: 121.22730868","Latitude: 35.8775938<br></br>Longitude: 128.6289061","Latitude: 37.3798877<br></br>Longitude: 126.8031025","Latitude: 37.2801554<br></br>Longitude: 127.114659","Latitude: 37.5538892<br></br>Longitude: 127.0857152","Latitude: 37.566535<br></br>Longitude: 126.9779692","Latitude: 25.0356839<br></br>Longitude: 121.56681","Latitude: 25.0438099<br></br>Longitude: 121.506118","Latitude: 25.0329694<br></br>Longitude: 121.5654177","Latitude: 46.56741194<br></br>Longitude: 125.13689179","Latitude: 41.79462442<br></br>Longitude: 123.3725567","Latitude: 52.265528<br></br>Longitude: 104.226458","Latitude: 52.2657214<br></br>Longitude: 104.2268765","Latitude: 55.038648<br></br>Longitude: 82.911973","Latitude: -27.3784662<br></br>Longitude: 152.9807267","Latitude: -37.5873477<br></br>Longitude: 145.0978442","Latitude: 35.907757<br></br>Longitude: 127.766922","Latitude: 35.907757<br></br>Longitude: 127.766922","Latitude: 33.5875443<br></br>Longitude: 130.3975174","Latitude: 45.4654351<br></br>Longitude: 9.1958777","Latitude: 19.0759837<br></br>Longitude: 72.8776559","Latitude: 1.2058482<br></br>Longitude: -77.2607772","Latitude: 3.4648248<br></br>Longitude: -76.5013409","Latitude: 4.7194745<br></br>Longitude: -74.0368259","Latitude: -33.9345835<br></br>Longitude: 18.4722604","Latitude: 42.6454107<br></br>Longitude: 23.3925806","Latitude: 24.4892004<br></br>Longitude: 54.3618751","Latitude: 31.7743099<br></br>Longitude: 35.2214359","Latitude: 19.0759837<br></br>Longitude: 72.8776559","Latitude: 19.0759837<br></br>Longitude: 72.8776559","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 19.0759837<br></br>Longitude: 72.8776559","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 29.5654393<br></br>Longitude: 34.9600504","Latitude: 29.77251407<br></br>Longitude: 121.54540898","Latitude: 39.91665421<br></br>Longitude: 116.51683624","Latitude: 35.3070492<br></br>Longitude: 138.9650778","Latitude: 36.2930054<br></br>Longitude: 139.6048892","Latitude: 35.7248237<br></br>Longitude: 140.2695466","Latitude: 30.3324978<br></br>Longitude: 120.2157855","Latitude: 43.8787326<br></br>Longitude: 87.58326251","Latitude: 29.551843<br></br>Longitude: 106.578256","Latitude: 29.60022246<br></br>Longitude: 106.49171548","Latitude: 22.512296<br></br>Longitude: 113.924169","Latitude: 37.951662277<br></br>Longitude: 114.396668017","Latitude: 41.764605978<br></br>Longitude: 123.433854485","Latitude: 32.0380771<br></br>Longitude: 118.8466101","Latitude: 30.267487644<br></br>Longitude: 120.163941627","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 22.2802473<br></br>Longitude: 114.1843094","Latitude: 45.4215296<br></br>Longitude: -75.6971931","Latitude: 51.0486151<br></br>Longitude: -114.0708459","Latitude: 49.2827291<br></br>Longitude: -123.1207375","Latitude: 37.5589687<br></br>Longitude: 126.9437359","Latitude: 39.91520642<br></br>Longitude: 116.41174458","Latitude: 31.26382719<br></br>Longitude: 121.49884501","Latitude: 22.92382665<br></br>Longitude: 113.35869452","Latitude: 22.48351253<br></br>Longitude: 113.915546877","Latitude: 23.032829<br></br>Longitude: 113.15676875","Latitude: 30.57150804<br></br>Longitude: 103.98625637","Latitude: 37.5738228<br></br>Longitude: 14.4797388","Latitude: 45.7940381<br></br>Longitude: 16.1513359","Latitude: -32.8919611<br></br>Longitude: -68.8575194","Latitude: -34.5813019<br></br>Longitude: -58.4285744","Latitude: 43.0977618<br></br>Longitude: -78.9754715","Latitude: -34.6275142<br></br>Longitude: -58.3785035","Latitude: 59.9523048<br></br>Longitude: 11.046938","Latitude: 60.602947<br></br>Longitude: 27.8405559","Latitude: 52.3862615<br></br>Longitude: 4.7258958","Latitude: 51.5073509<br></br>Longitude: -0.1277583","Latitude: 35.9834709<br></br>Longitude: 140.2369789","Latitude: 59.972929<br></br>Longitude: 30.222533","Latitude: 43.402147<br></br>Longitude: 39.955172","Latitude: 55.820936<br></br>Longitude: 49.162199","Latitude: 55.769683<br></br>Longitude: 37.426356","Latitude: 55.818002<br></br>Longitude: 37.441431","Latitude: 50.1264112<br></br>Longitude: 14.2807345","Latitude: 35.0038611<br></br>Longitude: 135.766788","Latitude: -26.1803935<br></br>Longitude: 28.117173","Latitude: -25.274398<br></br>Longitude: 133.775136","Latitude: -33.4488897<br></br>Longitude: -70.6692655","Latitude: 30.49332361<br></br>Longitude: 114.41439214","Latitude: 34.290877369<br></br>Longitude: 108.829202309","Latitude: 13.7563309<br></br>Longitude: 100.5017651","Latitude: 14.8866729<br></br>Longitude: 120.8678329","Latitude: 59.927848<br></br>Longitude: 30.359951","Latitude: 42.3444763<br></br>Longitude: -71.0289878","Latitude: 28.4676201<br></br>Longitude: -81.4528384","Latitude: 35.6736797<br></br>Longitude: 139.7624127","Latitude: 28.4676201<br></br>Longitude: -81.4528384","Latitude: 27.9653771<br></br>Longitude: 120.6318632","Latitude: 34.28581142<br></br>Longitude: 108.9217345","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 55.7314573<br></br>Longitude: 37.603449","Latitude: 55.7331778<br></br>Longitude: 37.6014362","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 28.19059332<br></br>Longitude: 113.03142936","Latitude: 31.89667424<br></br>Longitude: 117.23508093","Latitude: 23.14104594<br></br>Longitude: 113.41322802","Latitude: 34.4117273<br></br>Longitude: 132.3976117","Latitude: 44.1786858<br></br>Longitude: 28.6466869","Latitude: 32.04141582<br></br>Longitude: 118.78076286","Latitude: 31.13074625<br></br>Longitude: 121.36319648","Latitude: 30.48840457<br></br>Longitude: 114.65959358","Latitude: 31.216736<br></br>Longitude: 121.415108","Latitude: 49.191967<br></br>Longitude: -122.9488422","Latitude: 51.2031812<br></br>Longitude: -113.9925638","Latitude: 45.891486<br></br>Longitude: -74.1475839","Latitude: 43.6429123<br></br>Longitude: -79.3854024","Latitude: 31.156528<br></br>Longitude: 121.227095","Latitude: -11.9915731<br></br>Longitude: -77.0642918","Latitude: 25.0334929<br></br>Longitude: 121.564101","Latitude: -12.0494818<br></br>Longitude: -77.1111538","Latitude: 40.12793866<br></br>Longitude: 116.65626474","Latitude: 22.698065<br></br>Longitude: 113.970256","Latitude: 45.73577788<br></br>Longitude: 126.56432665","Latitude: 29.584428<br></br>Longitude: 106.593334","Latitude: 30.35547039<br></br>Longitude: 120.23007798","Latitude: 39.852989<br></br>Longitude: 116.397172","Latitude: 29.57394952<br></br>Longitude: 106.23790191","Latitude: 30.810253<br></br>Longitude: 103.841988","Latitude: 38.7501309<br></br>Longitude: -8.9388554","Latitude: 31.17040334<br></br>Longitude: 121.3689261","Latitude: 55.7736765<br></br>Longitude: 37.6054691","Latitude: -35.675147<br></br>Longitude: -71.542969","Latitude: 41.0702286<br></br>Longitude: 28.9986957","Latitude: 55.769683<br></br>Longitude: 37.426356","Latitude: 55.769683<br></br>Longitude: 37.426356","Latitude: 6.246386<br></br>Longitude: -75.554228","Latitude: 24.472213<br></br>Longitude: 118.11075","Latitude: 23.109696<br></br>Longitude: 113.143436","Latitude: 31.78486839<br></br>Longitude: 119.85055465","Latitude: 31.01449217<br></br>Longitude: 121.41957527","Latitude: 41.8980056<br></br>Longitude: -87.6232355","Latitude: 25.786696<br></br>Longitude: -80.377607","Latitude: 34.0590031<br></br>Longitude: -118.418866","Latitude: 32.281691<br></br>Longitude: 34.861416","Latitude: 44.0723588<br></br>Longitude: 12.5264165","Latitude: 37.9768188<br></br>Longitude: 23.7288541","Latitude: 53.4946321<br></br>Longitude: 10.0040294","Latitude: 48.223864<br></br>Longitude: 16.37819","Latitude: 47.3690279<br></br>Longitude: 8.5260736","Latitude: 46.4760307<br></br>Longitude: 6.3949727","Latitude: -29.7259365<br></br>Longitude: 31.0661436","Latitude: 29.869152<br></br>Longitude: 121.557993","Latitude: 22.3179137<br></br>Longitude: 114.1687442","Latitude: 26.1531617<br></br>Longitude: -80.3216515","Latitude: 3.1568055<br></br>Longitude: 101.7132345","Latitude: 41.1385211<br></br>Longitude: -80.1569006","Latitude: 30.5082551<br></br>Longitude: -97.678896","Latitude: 35.5330472<br></br>Longitude: 139.6959016","Latitude: 35.1814464<br></br>Longitude: 136.906398","Latitude: 35.6278192<br></br>Longitude: 139.7735683","Latitude: 35.6104826<br></br>Longitude: 139.6299511","Latitude: 35.1814464<br></br>Longitude: 136.906398","Latitude: 34.664577<br></br>Longitude: 135.5005943","Latitude: 35.6877186<br></br>Longitude: 139.7021464","Latitude: 34.7028186<br></br>Longitude: 135.4985323","Latitude: 34.7034172<br></br>Longitude: 135.5001927","Latitude: 55.720334<br></br>Longitude: 37.379965","Latitude: 55.720334<br></br>Longitude: 37.379965","Latitude: 22.5402463<br></br>Longitude: 113.9232894","Latitude: 35.6602362<br></br>Longitude: 139.7003114","Latitude: 33.58981<br></br>Longitude: 130.4204315","Latitude: 31.9453666<br></br>Longitude: 35.9283716","Latitude: 25.0329694<br></br>Longitude: 121.5654177","Latitude: 25.271658<br></br>Longitude: 55.371422","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 55.771195<br></br>Longitude: 37.619903","Latitude: 56.899788<br></br>Longitude: 60.613224","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 40.814884<br></br>Longitude: 29.3128762","Latitude: 45.5375454<br></br>Longitude: -122.7078005","Latitude: 10.7718159<br></br>Longitude: 106.7044175","Latitude: -36.8484597<br></br>Longitude: 174.7633315","Latitude: 56.309169<br></br>Longitude: 43.987132","Latitude: 39.914353<br></br>Longitude: 116.411905","Latitude: 37.8074728<br></br>Longitude: 112.5308418","Latitude: 31.2409885<br></br>Longitude: 121.5561733","Latitude: 22.535944<br></br>Longitude: 114.064949","Latitude: 39.899684<br></br>Longitude: 116.417656","Latitude: 30.275628<br></br>Longitude: 120.127708","Latitude: 31.210292<br></br>Longitude: 121.476984","Latitude: 25.079414<br></br>Longitude: 102.733052","Latitude: 30.657365<br></br>Longitude: 104.066187","Latitude: 30.301142<br></br>Longitude: 120.129713","Latitude: 39.941175<br></br>Longitude: 116.352277","Latitude: 39.941175<br></br>Longitude: 116.352277","Latitude: 29.594865<br></br>Longitude: 106.521276","Latitude: 30.525403<br></br>Longitude: 114.354711","Latitude: 31.194982<br></br>Longitude: 121.437112","Latitude: 28.955575<br></br>Longitude: 106.932859","Latitude: 30.243596<br></br>Longitude: 120.215846","Latitude: 31.923127<br></br>Longitude: 120.961689","Latitude: 34.675132<br></br>Longitude: 113.500583","Latitude: 23.132688<br></br>Longitude: 113.229396","Latitude: 30.2451658<br></br>Longitude: 120.0370949","Latitude: 29.892221<br></br>Longitude: 121.654527","Latitude: 31.375207<br></br>Longitude: 120.635155","Latitude: 18.285432<br></br>Longitude: 109.492952","Latitude: 36.083994<br></br>Longitude: 103.689967","Latitude: 24.76355<br></br>Longitude: 110.492268","Latitude: 24.819073<br></br>Longitude: 118.572854","Latitude: 36.692678<br></br>Longitude: 117.237485","Latitude: 37.5658244<br></br>Longitude: 121.2006141","Latitude: 31.097467<br></br>Longitude: 121.349599","Latitude: 39.122391<br></br>Longitude: 117.178795","Latitude: 29.527642<br></br>Longitude: 106.511853","Latitude: 31.692848<br></br>Longitude: 117.288525","Latitude: 28.288214<br></br>Longitude: 112.921277","Latitude: 30.293645<br></br>Longitude: 120.225437","Latitude: 23.150455<br></br>Longitude: 113.194907","Latitude: 27.920224<br></br>Longitude: 120.812109","Latitude: 29.620567<br></br>Longitude: 106.475723","Latitude: 31.140447<br></br>Longitude: 121.679537","Latitude: 28.287993<br></br>Longitude: 112.903082","Latitude: 26.620873<br></br>Longitude: 106.6227877","Latitude: 28.2<br></br>Longitude: 113.207502","Latitude: 28.589111<br></br>Longitude: 115.807658","Latitude: 43.836272<br></br>Longitude: 87.516153","Latitude: 31.1375081<br></br>Longitude: 120.6399702","Latitude: 30.407248<br></br>Longitude: 120.304986","Latitude: 34.500066<br></br>Longitude: 108.947184","Latitude: 40.047279<br></br>Longitude: 116.431724","Latitude: 38.0710067<br></br>Longitude: 114.4784165","Latitude: 40.04073<br></br>Longitude: 116.414425","Latitude: 43.767489<br></br>Longitude: 125.445907","Latitude: 45.87592846<br></br>Longitude: 126.5612469","Latitude: 24.917868<br></br>Longitude: 102.575425","Latitude: 28.070433<br></br>Longitude: 112.992452","Latitude: 39.827526<br></br>Longitude: 116.323081","Latitude: 30.244693<br></br>Longitude: 120.214513","Latitude: 34.396109<br></br>Longitude: 108.730408","Latitude: 31.812539<br></br>Longitude: 119.003491","Latitude: 23.005398<br></br>Longitude: 113.228176","Latitude: 23.101443<br></br>Longitude: 113.2726","Latitude: 29.5881066<br></br>Longitude: -95.629012","Latitude: 55.719861<br></br>Longitude: 37.380217","Latitude: -34.674675<br></br>Longitude: -58.4606142","Latitude: 29.57278883<br></br>Longitude: 106.53350064","Latitude: 36.204824<br></br>Longitude: 138.252924","Latitude: 31.315978<br></br>Longitude: 120.677776","Latitude: 57.744529<br></br>Longitude: 41.013726","Latitude: 55.663602<br></br>Longitude: 37.511042","Latitude: 34.26953414<br></br>Longitude: 108.9738063","Latitude: 30.54989581<br></br>Longitude: 104.04539093","Latitude: 35.7088306<br></br>Longitude: 139.7600967","Latitude: 22.299843<br></br>Longitude: 114.1726895","Latitude: 22.299843<br></br>Longitude: 114.1726895","Latitude: -36.8449659<br></br>Longitude: 174.7707111","Latitude: 37.695222<br></br>Longitude: -97.426766","Latitude: 37.695222<br></br>Longitude: -97.426766","Latitude: 37.695222<br></br>Longitude: -97.426766","Latitude: -12.0833534<br></br>Longitude: -77.0142934","Latitude: 55.769683<br></br>Longitude: 37.426356","Latitude: 31.2946367<br></br>Longitude: 120.55560338","Latitude: 30.2732461<br></br>Longitude: 120.1611489","Latitude: 43.2259743<br></br>Longitude: 11.8012691","Latitude: 37.9590529<br></br>Longitude: 23.6876163","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: -25.274398<br></br>Longitude: 133.775136","Latitude: 39.909052691<br></br>Longitude: 116.375378341","Latitude: 38.988608<br></br>Longitude: 121.588421","Latitude: 26.540907<br></br>Longitude: 106.779131","Latitude: 43.9411689<br></br>Longitude: 125.3287888","Latitude: 22.92017587<br></br>Longitude: 113.34615834","Latitude: -38.416097<br></br>Longitude: -63.616672","Latitude: -38.416097<br></br>Longitude: -63.616672","Latitude: 39.909868<br></br>Longitude: 116.478412","Latitude: 30.72135583<br></br>Longitude: 103.82799621","Latitude: 29.46112238<br></br>Longitude: 106.62311677","Latitude: 27.696306<br></br>Longitude: 106.905859","Latitude: 18.9240725<br></br>Longitude: -99.1981795","Latitude: 19.1322971<br></br>Longitude: -98.2686534","Latitude: 19.4326077<br></br>Longitude: -99.133208","Latitude: 30.22833472<br></br>Longitude: 120.19104764","Latitude: 30.630329<br></br>Longitude: 114.283826","Latitude: 34.344488<br></br>Longitude: 109.045495","Latitude: 37.7201696<br></br>Longitude: 112.72426281","Latitude: 56.313554<br></br>Longitude: 43.891355","Latitude: 55.727767<br></br>Longitude: 37.476135","Latitude: 47.9759053<br></br>Longitude: 16.8519314","Latitude: 22.99937116<br></br>Longitude: 113.34963541","Latitude: 36.506074<br></br>Longitude: 103.677032","Latitude: 30.477414<br></br>Longitude: 114.461433","Latitude: 14.5532989<br></br>Longitude: 121.0566974","Latitude: 28.703037<br></br>Longitude: 115.806851","Latitude: 28.57424431<br></br>Longitude: 115.773156","Latitude: -37.9101501<br></br>Longitude: 145.1583655","Latitude: 30.0789147<br></br>Longitude: 120.02731329","Latitude: 49.0425326<br></br>Longitude: 11.3419474","Latitude: 51.5204327<br></br>Longitude: -0.0736815","Latitude: 45.8131212<br></br>Longitude: 15.9724449","Latitude: 24.920175<br></br>Longitude: 102.576668","Latitude: 48.687316<br></br>Longitude: 44.485382","Latitude: 50.412352<br></br>Longitude: 30.522316","Latitude: 25.0500396<br></br>Longitude: 55.1995458","Latitude: 29.59536277<br></br>Longitude: 106.52066474","Latitude: 23.132916<br></br>Longitude: 113.32512","Latitude: 39.921584<br></br>Longitude: 116.438947","Latitude: 29.85301471<br></br>Longitude: 121.62180376","Latitude: 48.7626249<br></br>Longitude: 16.0621257","Latitude: 13.7597834<br></br>Longitude: 100.5379965","Latitude: 34.6037506<br></br>Longitude: 133.7620842","Latitude: 39.8976871<br></br>Longitude: 116.41939113","Latitude: 35.4647664<br></br>Longitude: 139.6179987","Latitude: 48.53709<br></br>Longitude: 9.28828","Latitude: 22.2804155<br></br>Longitude: 114.1843429","Latitude: 22.2950689<br></br>Longitude: 114.1668661","Latitude: 22.3821058<br></br>Longitude: 114.1890229","Latitude: 22.3821058<br></br>Longitude: 114.1890229","Latitude: 30.3044676<br></br>Longitude: 120.141153","Latitude: 31.30097138<br></br>Longitude: 121.5134263","Latitude: 28.214957<br></br>Longitude: 112.988198","Latitude: 14.619793<br></br>Longitude: 121.056625","Latitude: 24.4888055<br></br>Longitude: 118.04849339","Latitude: 38.8868774<br></br>Longitude: 121.65309776","Latitude: 48.8609632<br></br>Longitude: 2.3484652","Latitude: 42.733883<br></br>Longitude: 25.48583","Latitude: 13.696299<br></br>Longitude: 100.751818","Latitude: 13.6523487<br></br>Longitude: 100.7857626","Latitude: 40.2366156<br></br>Longitude: -75.5705805","Latitude: 41.669267<br></br>Longitude: -72.892655","Latitude: 19.3917957<br></br>Longitude: -99.1890584","Latitude: 39.791814<br></br>Longitude: 116.339842","Latitude: 39.92536<br></br>Longitude: 116.517872","Latitude: 31.195986<br></br>Longitude: 121.764361","Latitude: 34.20967581<br></br>Longitude: 108.89120469","Latitude: 31.159353<br></br>Longitude: 121.113361","Latitude: 31.162949<br></br>Longitude: 121.507421","Latitude: -16.3891732<br></br>Longitude: -71.5494275","Latitude: 25.9572851<br></br>Longitude: -80.1433931","Latitude: 22.616353<br></br>Longitude: 113.859707","Latitude: 43.580618<br></br>Longitude: 39.720233","Latitude: 39.826991<br></br>Longitude: 116.323022","Latitude: 41.0480289<br></br>Longitude: -75.3123669","Latitude: 25.0287024<br></br>Longitude: 121.5769572","Latitude: 25.0287024<br></br>Longitude: 121.5769572","Latitude: 35.6796367<br></br>Longitude: 139.7414921","Latitude: 56.832389<br></br>Longitude: 60.573375","Latitude: 55.719159<br></br>Longitude: 37.543549","Latitude: 48.73455<br></br>Longitude: 44.548289","Latitude: 56.33495<br></br>Longitude: 43.965826","Latitude: 29.7760483<br></br>Longitude: -95.8084296","Latitude: 54.181909<br></br>Longitude: 45.203628","Latitude: 47.212163<br></br>Longitude: 39.733783","Latitude: 53.277773<br></br>Longitude: 50.237717","Latitude: 8.537981<br></br>Longitude: -80.782127","Latitude: 54.703895<br></br>Longitude: 20.528306","Latitude: 56.820971<br></br>Longitude: 60.636877","Latitude: 55.6982689<br></br>Longitude: 37.5511998","Latitude: 56.326179<br></br>Longitude: 44.006075","Latitude: 55.81479<br></br>Longitude: 49.106544","Latitude: 59.941577<br></br>Longitude: 30.326462","Latitude: 54.180563<br></br>Longitude: 45.18504","Latitude: 47.22846<br></br>Longitude: 39.744846","Latitude: 53.19521<br></br>Longitude: 50.102972","Latitude: 48.704735<br></br>Longitude: 44.519111","Latitude: 54.71088<br></br>Longitude: 20.510713","Latitude: 55.755826<br></br>Longitude: 37.6172999","Latitude: 59.941356<br></br>Longitude: 30.326258","Latitude: 19.2587597<br></br>Longitude: -99.6197264","Latitude: 19.2983941<br></br>Longitude: -99.1359426","Latitude: 48.8732737<br></br>Longitude: 2.3297826","Latitude: 53.3066108<br></br>Longitude: -113.5898222","Latitude: 54.33154<br></br>Longitude: -6.276626","Latitude: 46.080867<br></br>Longitude: 15.9164404","Latitude: 22.2804155<br></br>Longitude: 114.1843429","Latitude: 37.3920475<br></br>Longitude: 127.1034429","Latitude: 37.0457857<br></br>Longitude: 127.0044311","Latitude: 37.504532<br></br>Longitude: 126.76092","Latitude: 37.608409<br></br>Longitude: 127.028752","Latitude: 25.0329694<br></br>Longitude: 121.5654177","Latitude: 25.0329694<br></br>Longitude: 121.5654177","Latitude: 25.0329694<br></br>Longitude: 121.5654177","Latitude: 35.1698426<br></br>Longitude: 129.1311016","Latitude: 37.5792928<br></br>Longitude: 127.0479007","Latitude: 35.2662188<br></br>Longitude: 129.0220107","Latitude: 35.2047825<br></br>Longitude: 129.0817835","Latitude: 37.5618718<br></br>Longitude: 127.0792222","Latitude: 37.5166478<br></br>Longitude: 127.1112653","Latitude: 37.5403439<br></br>Longitude: 126.9926782","Latitude: 37.6583599<br></br>Longitude: 126.8320201","Latitude: 37.3837928<br></br>Longitude: 127.1221765","Latitude: 52.5122417<br></br>Longitude: 85.1737835","Latitude: 37.5590624<br></br>Longitude: 126.8312839","Latitude: 37.5609015<br></br>Longitude: 126.9924937","Latitude: 37.3990244<br></br>Longitude: 126.9638445","Latitude: 37.246823<br></br>Longitude: 126.9660494","Latitude: 37.5154709<br></br>Longitude: 126.9066823","Latitude: 37.4927685<br></br>Longitude: 127.1461478","Latitude: 37.5221163<br></br>Longitude: 127.0331574","Latitude: 37.4635798<br></br>Longitude: 127.1144779","Latitude: 34.0723668<br></br>Longitude: -118.343881","Latitude: 35.1687032<br></br>Longitude: 129.1297466","Latitude: 37.7351371<br></br>Longitude: 127.0578697","Latitude: 35.5315127<br></br>Longitude: 129.3280513","Latitude: 37.3249213<br></br>Longitude: 127.1081315","Latitude: 37.5600808<br></br>Longitude: 127.0075262","Latitude: 37.522018<br></br>Longitude: 126.909527","Latitude: 37.6218905<br></br>Longitude: 126.7554191","Latitude: 37.3866256<br></br>Longitude: 127.1198556","Latitude: 37.5084321<br></br>Longitude: 126.8887332","Latitude: 37.5678305<br></br>Longitude: 126.991672","Latitude: 37.4094099<br></br>Longitude: 126.6783088","Latitude: 37.4659121<br></br>Longitude: 126.9928921","Latitude: 35.3576315<br></br>Longitude: 128.8384426","Latitude: 36.3567201<br></br>Longitude: 127.3656306","Latitude: 37.3456556<br></br>Longitude: 127.9327999","Latitude: 37.4997257<br></br>Longitude: 127.1036047","Latitude: 37.5628905<br></br>Longitude: 127.1897938","Latitude: 36.3502842<br></br>Longitude: 127.4366222","Latitude: 33.8727524<br></br>Longitude: 35.4949423","Latitude: 48.8691311<br></br>Longitude: 2.3096951","Latitude: 48.9488212<br></br>Longitude: 2.6892341","Latitude: -36.9793643<br></br>Longitude: 174.7837717","Latitude: 31.235461<br></br>Longitude: 121.474642","Latitude: 10.8230989<br></br>Longitude: 106.6296638","Latitude: 10.8230989<br></br>Longitude: 106.6296638","Latitude: 35.6613587<br></br>Longitude: 139.7301149","Latitude: 31.9879093<br></br>Longitude: 35.8956346","Latitude: 34.0723668<br></br>Longitude: -118.343881","Latitude: 35.6877186<br></br>Longitude: 139.7021464","Latitude: 34.664577<br></br>Longitude: 135.5005943","Latitude: 34.7028186<br></br>Longitude: 135.4985323","Latitude: 34.702864<br></br>Longitude: 135.498324","Latitude: 35.6736272<br></br>Longitude: 139.7624549","Latitude: 35.6602362<br></br>Longitude: 139.7003114","Latitude: 33.59053<br></br>Longitude: 130.4210556","Latitude: 34.0723668<br></br>Longitude: -118.343881","Latitude: -23.5004517<br></br>Longitude: -46.8486943","Latitude: -23.5465775<br></br>Longitude: -46.638631","Latitude: 25.198518<br></br>Longitude: 55.279619","Latitude: 45.7741904<br></br>Longitude: 15.9477003","Latitude: 40.4167754<br></br>Longitude: -3.7037902","Latitude: 41.6488226<br></br>Longitude: -0.8890853","Latitude: 36.656744<br></br>Longitude: -4.4785967","Latitude: 40.5672623<br></br>Longitude: -3.6092069","Latitude: 43.653226<br></br>Longitude: -79.3831843","Latitude: 34.073005<br></br>Longitude: -117.5516905","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 1.26503<br></br>Longitude: 103.8221469","Latitude: 30.0444196<br></br>Longitude: 31.2357116","Latitude: 22.3688543<br></br>Longitude: 114.1206598","Latitude: 55.621443<br></br>Longitude: 37.713739","Latitude: 50.412352<br></br>Longitude: 30.522316","Latitude: 50.028508<br></br>Longitude: 36.331331","Latitude: 19.0759837<br></br>Longitude: 72.8776559","Latitude: 50.509714<br></br>Longitude: 30.498478","Latitude: 55.909932<br></br>Longitude: 37.541383","Latitude: 50.509478<br></br>Longitude: 30.498433","Latitude: 10.8230989<br></br>Longitude: 106.6296638","Latitude: 1.352083<br></br>Longitude: 103.819836","Latitude: 18.220833<br></br>Longitude: -66.590149","Latitude: 55.621821<br></br>Longitude: 37.71369","Latitude: 50.412338<br></br>Longitude: 30.522359","Latitude: 50.29372<br></br>Longitude: 30.33408","Latitude: 2.9606306<br></br>Longitude: -75.2929128","Latitude: 24.453884<br></br>Longitude: 54.3773438","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 57.513345<br></br>Longitude: 12.075315","Latitude: 34.1230021<br></br>Longitude: 35.6519282","Latitude: 33.8937913<br></br>Longitude: 35.5017767","Latitude: 40.4204381<br></br>Longitude: -3.7017506","Latitude: 40.814314<br></br>Longitude: 29.3193","Latitude: 41.0082376<br></br>Longitude: 28.9783589","Latitude: 39.9333635<br></br>Longitude: 32.8597419","Latitude: 1.3506758<br></br>Longitude: 103.8721662","Latitude: 43.653226<br></br>Longitude: -79.3831843","Latitude: 36.0206547<br></br>Longitude: -115.086354","Latitude: 4.1305523<br></br>Longitude: -73.623746","Latitude: 36.0206547<br></br>Longitude: -115.086354","Latitude: 36.3414309<br></br>Longitude: 138.6380481","Latitude: 34.4098207<br></br>Longitude: 132.3999839","Latitude: 22.396428<br></br>Longitude: 114.109497","Latitude: 22.396428<br></br>Longitude: 114.109497","Latitude: 14.2483685<br></br>Longitude: 121.0633043","Latitude: 43.8231966<br></br>Longitude: -79.533821","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: 19.5091242<br></br>Longitude: -99.2197248","Latitude: 19.4078457<br></br>Longitude: -99.0761423","Latitude: 20.5887932<br></br>Longitude: -100.3898881","Latitude: 22.451483<br></br>Longitude: 114.170912","Latitude: 40.995341<br></br>Longitude: 28.9097376","Latitude: 25.270546<br></br>Longitude: 55.3241467","Latitude: 25.2048493<br></br>Longitude: 55.2707828","Latitude: -23.5467007<br></br>Longitude: -46.6387014","Latitude: 55.729343<br></br>Longitude: 37.599226","Latitude: -23.5466296<br></br>Longitude: -46.6387818","Latitude: 31.9453666<br></br>Longitude: 35.9283716","Latitude: 40.5573636<br></br>Longitude: 22.9790376","Latitude: 35.8340418<br></br>Longitude: -83.5699135","Latitude: 45.0529822<br></br>Longitude: 20.0960004","Latitude: 49.5744685<br></br>Longitude: 10.9160676","Latitude: -26.2041028<br></br>Longitude: 28.0473051","Latitude: -26.115397<br></br>Longitude: 28.144782","Latitude: 36.1505449<br></br>Longitude: -95.9916448","Latitude: 36.1505449<br></br>Longitude: -95.9916448","Latitude: 55.736454<br></br>Longitude: 37.593012","Latitude: 31.890267<br></br>Longitude: 35.010397","Latitude: 32.96916<br></br>Longitude: 35.54495","Latitude: 10.8230989<br></br>Longitude: 106.6296638","Latitude: 14.058324<br></br>Longitude: 108.277199","Latitude: 44.5422573<br></br>Longitude: 26.0687678","Latitude: 51.8638045<br></br>Longitude: -2.2429073","Latitude: 44.4207857<br></br>Longitude: 7.8550281","Latitude: 51.5073509<br></br>Longitude: -0.1277583","Latitude: -35.3264967<br></br>Longitude: 149.1761545","Latitude: -33.9081355<br></br>Longitude: 150.9218257","Latitude: 24.453884<br></br>Longitude: 54.3773438","Latitude: 19.6567367<br></br>Longitude: -99.2062952","Latitude: 19.4397762<br></br>Longitude: -99.1563969","Latitude: 31.9453666<br></br>Longitude: 35.9283716","Latitude: 34.4345947<br></br>Longitude: 35.8361633","Latitude: 28.7040592<br></br>Longitude: 77.1024902","Latitude: 45.0465622<br></br>Longitude: 5.0571034","Latitude: 54.971688<br></br>Longitude: 73.285837","Latitude: 49.8999063<br></br>Longitude: -97.1390336","Latitude: 49.1979806<br></br>Longitude: -123.141394","Latitude: 55.4518187<br></br>Longitude: 11.7842704","Latitude: 51.8638045<br></br>Longitude: -2.2429073","Latitude: 50.028084<br></br>Longitude: 36.331546","Latitude: 55.909266<br></br>Longitude: 37.539844","Latitude: 55.891437<br></br>Longitude: 37.748628","Latitude: 55.793661<br></br>Longitude: 37.939097","Latitude: 45.6579755<br></br>Longitude: 25.6011977","Latitude: 1.3348154<br></br>Longitude: 103.7468395","Latitude: 1.3043349<br></br>Longitude: 103.8361743","Latitude: -12.0463731<br></br>Longitude: -77.042754","Latitude: -25.8777033<br></br>Longitude: 28.1647919","Latitude: -25.40435<br></br>Longitude: 28.15138","Latitude: 40.002121<br></br>Longitude: -75.6988684","Latitude: 31.768319<br></br>Longitude: 35.21371","Latitude: 10.8230989<br></br>Longitude: 106.6296638","Latitude: 25.2308017<br></br>Longitude: 55.3123802","Latitude: -23.5459474<br></br>Longitude: -46.6387932","Latitude: 34.6261437<br></br>Longitude: 135.047525","Latitude: 35.8101879<br></br>Longitude: 139.3802147","Latitude: 25.0169826<br></br>Longitude: 121.4627868","Latitude: 24.1531885<br></br>Longitude: 120.666891","Latitude: 35.75361<br></br>Longitude: -95.370972","Latitude: -23.4543395<br></br>Longitude: -46.5336678","Latitude: -23.6530286<br></br>Longitude: -46.7105358","Latitude: 39.6062505<br></br>Longitude: 22.44161","Latitude: 34.0724558<br></br>Longitude: -118.3437521","Latitude: 41.0152357<br></br>Longitude: 14.2977433","Latitude: 32.7035785<br></br>Longitude: 35.3186256","Latitude: -33.5219455<br></br>Longitude: -70.7328715","Latitude: -38.7520607<br></br>Longitude: -72.6059776","Latitude: 45.4514357<br></br>Longitude: -73.4619103","Latitude: 49.1041779<br></br>Longitude: -122.6603519","Latitude: 36.944113<br></br>Longitude: -94.77356","Latitude: 37.2242358<br></br>Longitude: -95.7083131","Latitude: 3.1450867<br></br>Longitude: 101.6072453","Latitude: 3.139003<br></br>Longitude: 101.686855","Latitude: 50.453863<br></br>Longitude: 30.434247","Latitude: 50.453863<br></br>Longitude: 30.434247","Latitude: -26.2041028<br></br>Longitude: 28.0473051","Latitude: 36.9662257<br></br>Longitude: 139.9915522","Latitude: 33.4064854<br></br>Longitude: 130.5116369","Latitude: 35.3407172<br></br>Longitude: 137.1652289","Latitude: 35.7169448<br></br>Longitude: 140.2895424","Latitude: 34.8579067<br></br>Longitude: 135.1905102","Latitude: 31.5924901<br></br>Longitude: 130.5557466","Latitude: 33.5876438<br></br>Longitude: 130.3966742","Latitude: 38.2584745<br></br>Longitude: 140.87705","Latitude: 35.6104826<br></br>Longitude: 139.6299511","Latitude: 35.6613587<br></br>Longitude: 139.7301149","Latitude: 35.0597124<br></br>Longitude: 136.1001831","Latitude: 35.4346713<br></br>Longitude: 139.9352931","Latitude: 35.0294155<br></br>Longitude: 136.7257579","Latitude: 31.8935644<br></br>Longitude: 34.8083875","Latitude: 31.9453666<br></br>Longitude: 35.9283716","Latitude: 53.2415041<br></br>Longitude: 50.2212463","Latitude: 56.8618601<br></br>Longitude: 53.2324284","Latitude: 56.8587214<br></br>Longitude: 35.9175965","Latitude: 59.132333<br></br>Longitude: 37.9091811","Latitude: 50.5997134<br></br>Longitude: 36.5982621","Latitude: 57.0050671<br></br>Longitude: 40.9766453","Latitude: 46.482526<br></br>Longitude: 30.7233095","Latitude: 41.5775233<br></br>Longitude: 1.6176879","Latitude: 59.9342802<br></br>Longitude: 30.3350986","Latitude: 32.0852999<br></br>Longitude: 34.7817676","Latitude: 54.7387621<br></br>Longitude: 55.9720554","Latitude: 50.25465<br></br>Longitude: 28.6586669","Latitude: 55.755826<br></br>Longitude: 37.6172999","Latitude: 42.3600825<br></br>Longitude: -71.0588801","Latitude: 1.3059065<br></br>Longitude: 103.8314983","Latitude: 1.302707<br></br>Longitude: 103.834289","Latitude: 1.350644<br></br>Longitude: 103.871806","Latitude: 36.944113<br></br>Longitude: -94.77356","Latitude: 32.0852999<br></br>Longitude: 34.7817676","Latitude: -33.481547<br></br>Longitude: -70.751564","Latitude: 22.396428<br></br>Longitude: 114.109497","Latitude: 45.8940717<br></br>Longitude: -74.157934","Latitude: -33.4488897<br></br>Longitude: -70.6692655","Latitude: -38.7359018<br></br>Longitude: -72.5903739","Latitude: 45.8940717<br></br>Longitude: -74.157934","Latitude: 19.4326077<br></br>Longitude: -99.133208","Latitude: 25.0329694<br></br>Longitude: 121.5654177","Latitude: 31.9453666<br></br>Longitude: 35.9283716","Latitude: 34.4345947<br></br>Longitude: 35.8361633","Latitude: 2.9606306<br></br>Longitude: -75.2929128","Latitude: 6.1750543<br></br>Longitude: -75.5923316","Latitude: 25.3462553<br></br>Longitude: 55.4209317","Latitude: 34.690083<br></br>Longitude: 135.1955112","Latitude: 43.0620958<br></br>Longitude: 141.3543763","Latitude: 52.589394<br></br>Longitude: 39.616738","Latitude: 33.1412124<br></br>Longitude: -117.3205123","Latitude: 35.8101879<br></br>Longitude: 139.3802147","Latitude: 33.5948578<br></br>Longitude: 130.3211515","Latitude: 36.962572<br></br>Longitude: 139.9943875"]]},{"method":"clearTiles","args":[]},{"method":"addProviderTiles","args":["OpenStreetMap.Mapnik",null,null,{"errorTileUrl":"","noWrap":false,"zIndex":null,"unloadInvisibleTiles":null,"updateWhenIdle":null,"detectRetina":false,"reuseTiles":false}]}],"limits":{"lat":[-43.5439074,69.3573551],"lng":[-158.0143084,174.8998284]}},"evals":[]}</script>
<script type="application/htmlwidget-sizing" data-for="htmlwidget-3600">{"viewer":{"width":"100%","height":400,"padding":0,"fill":true},"browser":{"width":"100%","height":400,"padding":0,"fill":true}}</script>
</body>
</html>