Skip to content

Instantly share code, notes, and snippets.

@timelyportfolio
Last active October 21, 2015 02:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timelyportfolio/e2effb970b3cbe2f4e84 to your computer and use it in GitHub Desktop.
Save timelyportfolio/e2effb970b3cbe2f4e84 to your computer and use it in GitHub Desktop.
tmap with interactivity and pan/zoom
<!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%2F%20svg%2Dpan%2Dzoom%20v3%2E2%2E3%0A%2F%2F%20https%3A%2F%2Fgithub%2Ecom%2Fariutta%2Fsvg%2Dpan%2Dzoom%0A%21function%20t%28e%2Co%2Cn%29%7Bfunction%20i%28r%2Ca%29%7Bif%28%21o%5Br%5D%29%7Bif%28%21e%5Br%5D%29%7Bvar%20l%3D%22function%22%3D%3Dtypeof%20require%26%26require%3Bif%28%21a%26%26l%29return%20l%28r%2C%210%29%3Bif%28s%29return%20s%28r%2C%210%29%3Bvar%20u%3Dnew%20Error%28%22Cannot%20find%20module%20%27%22%2Br%2B%22%27%22%29%3Bthrow%20u%2Ecode%3D%22MODULE%5FNOT%5FFOUND%22%2Cu%7Dvar%20h%3Do%5Br%5D%3D%7Bexports%3A%7B%7D%7D%3Be%5Br%5D%5B0%5D%2Ecall%28h%2Eexports%2Cfunction%28t%29%7Bvar%20o%3De%5Br%5D%5B1%5D%5Bt%5D%3Breturn%20i%28o%3Fo%3At%29%7D%2Ch%2Ch%2Eexports%2Ct%2Ce%2Co%2Cn%29%7Dreturn%20o%5Br%5D%2Eexports%7Dfor%28var%20s%3D%22function%22%3D%3Dtypeof%20require%26%26require%2Cr%3D0%3Br%3Cn%2Elength%3Br%2B%2B%29i%28n%5Br%5D%29%3Breturn%20i%7D%28%7B1%3A%5Bfunction%28t%2Ce%29%7Bvar%20o%3Dt%28%22%2E%2Fsvg%2Dpan%2Dzoom%2Ejs%22%29%3B%21function%28t%29%7B%22function%22%3D%3Dtypeof%20define%26%26define%2Eamd%3Fdefine%28%22svg%2Dpan%2Dzoom%22%2Cfunction%28%29%7Breturn%20o%7D%29%3A%22undefined%22%21%3Dtypeof%20e%26%26e%2Eexports%26%26%28e%2Eexports%3Do%2Ct%2EsvgPanZoom%3Do%29%7D%28window%2Cdocument%29%7D%2C%7B%22%2E%2Fsvg%2Dpan%2Dzoom%2Ejs%22%3A4%7D%5D%2C2%3A%5Bfunction%28t%2Ce%29%7Bvar%20o%3Dt%28%22%2E%2Fsvg%2Dutilities%22%29%3Be%2Eexports%3D%7Benable%3Afunction%28t%29%7Bvar%20e%3Dt%2Esvg%2EquerySelector%28%22defs%22%29%3Be%7C%7C%28e%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22defs%22%29%2Ct%2Esvg%2EappendChild%28e%29%29%3Bvar%20n%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22style%22%29%3Bn%2EsetAttribute%28%22type%22%2C%22text%2Fcss%22%29%2Cn%2EtextContent%3D%22%2Esvg%2Dpan%2Dzoom%2Dcontrol%20%7B%20cursor%3A%20pointer%3B%20fill%3A%20black%3B%20fill%2Dopacity%3A%200%2E333%3B%20%7D%20%2Esvg%2Dpan%2Dzoom%2Dcontrol%3Ahover%20%7B%20fill%2Dopacity%3A%200%2E8%3B%20%7D%20%2Esvg%2Dpan%2Dzoom%2Dcontrol%2Dbackground%20%7B%20fill%3A%20white%3B%20fill%2Dopacity%3A%200%2E5%3B%20%7D%20%2Esvg%2Dpan%2Dzoom%2Dcontrol%2Dbackground%20%7B%20fill%2Dopacity%3A%200%2E8%3B%20%7D%22%2Ce%2EappendChild%28n%29%3Bvar%20i%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22g%22%29%3Bi%2EsetAttribute%28%22id%22%2C%22svg%2Dpan%2Dzoom%2Dcontrols%22%29%2Ci%2EsetAttribute%28%22transform%22%2C%22translate%28%22%2B%28t%2Ewidth%2D70%29%2B%22%20%22%2B%28t%2Eheight%2D76%29%2B%22%29%20scale%280%2E75%29%22%29%2Ci%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%22%29%2Ci%2EappendChild%28this%2E%5FcreateZoomIn%28t%29%29%2Ci%2EappendChild%28this%2E%5FcreateZoomReset%28t%29%29%2Ci%2EappendChild%28this%2E%5FcreateZoomOut%28t%29%29%2Ct%2Esvg%2EappendChild%28i%29%2Ct%2EcontrolIcons%3Di%7D%2C%5FcreateZoomIn%3Afunction%28t%29%7Bvar%20e%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22g%22%29%3Be%2EsetAttribute%28%22id%22%2C%22svg%2Dpan%2Dzoom%2Dzoom%2Din%22%29%2Ce%2EsetAttribute%28%22transform%22%2C%22translate%2830%2E5%205%29%20scale%280%2E015%29%22%29%2Ce%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%22%29%2Ce%2EaddEventListener%28%22click%22%2Cfunction%28%29%7Bt%2EgetPublicInstance%28%29%2EzoomIn%28%29%7D%2C%211%29%2Ce%2EaddEventListener%28%22touchstart%22%2Cfunction%28%29%7Bt%2EgetPublicInstance%28%29%2EzoomIn%28%29%7D%2C%211%29%3Bvar%20n%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22rect%22%29%3Bn%2EsetAttribute%28%22x%22%2C%220%22%29%2Cn%2EsetAttribute%28%22y%22%2C%220%22%29%2Cn%2EsetAttribute%28%22width%22%2C%221500%22%29%2Cn%2EsetAttribute%28%22height%22%2C%221400%22%29%2Cn%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%2Dbackground%22%29%2Ce%2EappendChild%28n%29%3Bvar%20i%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22path%22%29%3Breturn%20i%2EsetAttribute%28%22d%22%2C%22M1280%20576v128q0%2026%20%2D19%2045t%2D45%2019h%2D320v320q0%2026%20%2D19%2045t%2D45%2019h%2D128q%2D26%200%20%2D45%20%2D19t%2D19%20%2D45v%2D320h%2D320q%2D26%200%20%2D45%20%2D19t%2D19%20%2D45v%2D128q0%20%2D26%2019%20%2D45t45%20%2D19h320v%2D320q0%20%2D26%2019%20%2D45t45%20%2D19h128q26%200%2045%2019t19%2045v320h320q26%200%2045%2019t19%2045zM1536%201120v%2D960%20q0%20%2D119%20%2D84%2E5%20%2D203%2E5t%2D203%2E5%20%2D84%2E5h%2D960q%2D119%200%20%2D203%2E5%2084%2E5t%2D84%2E5%20203%2E5v960q0%20119%2084%2E5%20203%2E5t203%2E5%2084%2E5h960q119%200%20203%2E5%20%2D84%2E5t84%2E5%20%2D203%2E5z%22%29%2Ci%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%2Delement%22%29%2Ce%2EappendChild%28i%29%2Ce%7D%2C%5FcreateZoomReset%3Afunction%28t%29%7Bvar%20e%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22g%22%29%3Be%2EsetAttribute%28%22id%22%2C%22svg%2Dpan%2Dzoom%2Dreset%2Dpan%2Dzoom%22%29%2Ce%2EsetAttribute%28%22transform%22%2C%22translate%285%2035%29%20scale%280%2E4%29%22%29%2Ce%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%22%29%2Ce%2EaddEventListener%28%22click%22%2Cfunction%28%29%7Bt%2EgetPublicInstance%28%29%2Ereset%28%29%7D%2C%211%29%2Ce%2EaddEventListener%28%22touchstart%22%2Cfunction%28%29%7Bt%2EgetPublicInstance%28%29%2Ereset%28%29%7D%2C%211%29%3Bvar%20n%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22rect%22%29%3Bn%2EsetAttribute%28%22x%22%2C%222%22%29%2Cn%2EsetAttribute%28%22y%22%2C%222%22%29%2Cn%2EsetAttribute%28%22width%22%2C%22182%22%29%2Cn%2EsetAttribute%28%22height%22%2C%2258%22%29%2Cn%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%2Dbackground%22%29%2Ce%2EappendChild%28n%29%3Bvar%20i%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22path%22%29%3Bi%2EsetAttribute%28%22d%22%2C%22M33%2E051%2C20%2E632c%2D0%2E742%2D0%2E406%2D1%2E854%2D0%2E609%2D3%2E338%2D0%2E609h%2D7%2E969v9%2E281h7%2E769c1%2E543%2C0%2C2%2E701%2D0%2E188%2C3%2E473%2D0%2E562c1%2E365%2D0%2E656%2C2%2E048%2D1%2E953%2C2%2E048%2D3%2E891C35%2E032%2C22%2E757%2C34%2E372%2C21%2E351%2C33%2E051%2C20%2E632z%22%29%2Ci%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%2Delement%22%29%2Ce%2EappendChild%28i%29%3Bvar%20s%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22path%22%29%3Breturn%20s%2EsetAttribute%28%22d%22%2C%22M170%2E231%2C0%2E5H15%2E847C7%2E102%2C0%2E5%2C0%2E5%2C5%2E708%2C0%2E5%2C11%2E84v38%2E861C0%2E5%2C56%2E833%2C7%2E102%2C61%2E5%2C15%2E847%2C61%2E5h154%2E384c8%2E745%2C0%2C15%2E269%2D4%2E667%2C15%2E269%2D10%2E798V11%2E84C185%2E5%2C5%2E708%2C178%2E976%2C0%2E5%2C170%2E231%2C0%2E5z%20M42%2E837%2C48%2E569h%2D7%2E969c%2D0%2E219%2D0%2E766%2D0%2E375%2D1%2E383%2D0%2E469%2D1%2E852c%2D0%2E188%2D0%2E969%2D0%2E289%2D1%2E961%2D0%2E305%2D2%2E977l%2D0%2E047%2D3%2E211c%2D0%2E03%2D2%2E203%2D0%2E41%2D3%2E672%2D1%2E142%2D4%2E406c%2D0%2E732%2D0%2E734%2D2%2E103%2D1%2E102%2D4%2E113%2D1%2E102h%2D7%2E05v13%2E547h%2D7%2E055V14%2E022h16%2E524c2%2E361%2C0%2E047%2C4%2E178%2C0%2E344%2C5%2E45%2C0%2E891c1%2E272%2C0%2E547%2C2%2E351%2C1%2E352%2C3%2E234%2C2%2E414c0%2E731%2C0%2E875%2C1%2E31%2C1%2E844%2C1%2E737%2C2%2E906s0%2E64%2C2%2E273%2C0%2E64%2C3%2E633c0%2C1%2E641%2D0%2E414%2C3%2E254%2D1%2E242%2C4%2E84s%2D2%2E195%2C2%2E707%2D4%2E102%2C3%2E363c1%2E594%2C0%2E641%2C2%2E723%2C1%2E551%2C3%2E387%2C2%2E73s0%2E996%2C2%2E98%2C0%2E996%2C5%2E402v2%2E32c0%2C1%2E578%2C0%2E063%2C2%2E648%2C0%2E19%2C3%2E211c0%2E19%2C0%2E891%2C0%2E635%2C1%2E547%2C1%2E333%2C1%2E969V48%2E569z%20M75%2E579%2C48%2E569h%2D26%2E18V14%2E022h25%2E336v6%2E117H56%2E454v7%2E336h16%2E781v6H56%2E454v8%2E883h19%2E125V48%2E569z%20M104%2E497%2C46%2E331c%2D2%2E44%2C2%2E086%2D5%2E887%2C3%2E129%2D10%2E34%2C3%2E129c%2D4%2E548%2C0%2D8%2E125%2D1%2E027%2D10%2E731%2D3%2E082s%2D3%2E909%2D4%2E879%2D3%2E909%2D8%2E473h6%2E891c0%2E224%2C1%2E578%2C0%2E662%2C2%2E758%2C1%2E316%2C3%2E539c1%2E196%2C1%2E422%2C3%2E246%2C2%2E133%2C6%2E15%2C2%2E133c1%2E739%2C0%2C3%2E151%2D0%2E188%2C4%2E236%2D0%2E562c2%2E058%2D0%2E719%2C3%2E087%2D2%2E055%2C3%2E087%2D4%2E008c0%2D1%2E141%2D0%2E504%2D2%2E023%2D1%2E512%2D2%2E648c%2D1%2E008%2D0%2E609%2D2%2E607%2D1%2E148%2D4%2E796%2D1%2E617l%2D3%2E74%2D0%2E82c%2D3%2E676%2D0%2E812%2D6%2E201%2D1%2E695%2D7%2E576%2D2%2E648c%2D2%2E328%2D1%2E594%2D3%2E492%2D4%2E086%2D3%2E492%2D7%2E477c0%2D3%2E094%2C1%2E139%2D5%2E664%2C3%2E417%2D7%2E711s5%2E623%2D3%2E07%2C10%2E036%2D3%2E07c3%2E685%2C0%2C6%2E829%2C0%2E965%2C9%2E431%2C2%2E895c2%2E602%2C1%2E93%2C3%2E966%2C4%2E73%2C4%2E093%2C8%2E402h%2D6%2E938c%2D0%2E128%2D2%2E078%2D1%2E057%2D3%2E555%2D2%2E787%2D4%2E43c%2D1%2E154%2D0%2E578%2D2%2E587%2D0%2E867%2D4%2E301%2D0%2E867c%2D1%2E907%2C0%2D3%2E428%2C0%2E375%2D4%2E565%2C1%2E125c%2D1%2E138%2C0%2E75%2D1%2E706%2C1%2E797%2D1%2E706%2C3%2E141c0%2C1%2E234%2C0%2E561%2C2%2E156%2C1%2E682%2C2%2E766c0%2E721%2C0%2E406%2C2%2E25%2C0%2E883%2C4%2E589%2C1%2E43l6%2E063%2C1%2E43c2%2E657%2C0%2E625%2C4%2E648%2C1%2E461%2C5%2E975%2C2%2E508c2%2E059%2C1%2E625%2C3%2E089%2C3%2E977%2C3%2E089%2C7%2E055C108%2E157%2C41%2E624%2C106%2E937%2C44%2E245%2C104%2E497%2C46%2E331z%20M139%2E61%2C48%2E569h%2D26%2E18V14%2E022h25%2E336v6%2E117h%2D18%2E281v7%2E336h16%2E781v6h%2D16%2E781v8%2E883h19%2E125V48%2E569z%20M170%2E337%2C20%2E14h%2D10%2E336v28%2E43h%2D7%2E266V20%2E14h%2D10%2E383v%2D6%2E117h27%2E984V20%2E14z%22%29%2Cs%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%2Delement%22%29%2Ce%2EappendChild%28s%29%2Ce%7D%2C%5FcreateZoomOut%3Afunction%28t%29%7Bvar%20e%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22g%22%29%3Be%2EsetAttribute%28%22id%22%2C%22svg%2Dpan%2Dzoom%2Dzoom%2Dout%22%29%2Ce%2EsetAttribute%28%22transform%22%2C%22translate%2830%2E5%2070%29%20scale%280%2E015%29%22%29%2Ce%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%22%29%2Ce%2EaddEventListener%28%22click%22%2Cfunction%28%29%7Bt%2EgetPublicInstance%28%29%2EzoomOut%28%29%7D%2C%211%29%2Ce%2EaddEventListener%28%22touchstart%22%2Cfunction%28%29%7Bt%2EgetPublicInstance%28%29%2EzoomOut%28%29%7D%2C%211%29%3Bvar%20n%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22rect%22%29%3Bn%2EsetAttribute%28%22x%22%2C%220%22%29%2Cn%2EsetAttribute%28%22y%22%2C%220%22%29%2Cn%2EsetAttribute%28%22width%22%2C%221500%22%29%2Cn%2EsetAttribute%28%22height%22%2C%221400%22%29%2Cn%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%2Dbackground%22%29%2Ce%2EappendChild%28n%29%3Bvar%20i%3Ddocument%2EcreateElementNS%28o%2EsvgNS%2C%22path%22%29%3Breturn%20i%2EsetAttribute%28%22d%22%2C%22M1280%20576v128q0%2026%20%2D19%2045t%2D45%2019h%2D896q%2D26%200%20%2D45%20%2D19t%2D19%20%2D45v%2D128q0%20%2D26%2019%20%2D45t45%20%2D19h896q26%200%2045%2019t19%2045zM1536%201120v%2D960q0%20%2D119%20%2D84%2E5%20%2D203%2E5t%2D203%2E5%20%2D84%2E5h%2D960q%2D119%200%20%2D203%2E5%2084%2E5t%2D84%2E5%20203%2E5v960q0%20119%2084%2E5%20203%2E5t203%2E5%2084%2E5h960q119%200%20203%2E5%20%2D84%2E5%20t84%2E5%20%2D203%2E5z%22%29%2Ci%2EsetAttribute%28%22class%22%2C%22svg%2Dpan%2Dzoom%2Dcontrol%2Delement%22%29%2Ce%2EappendChild%28i%29%2Ce%7D%2Cdisable%3Afunction%28t%29%7Bt%2EcontrolIcons%26%26%28t%2EcontrolIcons%2EparentNode%2EremoveChild%28t%2EcontrolIcons%29%2Ct%2EcontrolIcons%3Dnull%29%7D%7D%7D%2C%7B%22%2E%2Fsvg%2Dutilities%22%3A5%7D%5D%2C3%3A%5Bfunction%28t%2Ce%29%7Bvar%20o%3Dt%28%22%2E%2Fsvg%2Dutilities%22%29%2Cn%3Dt%28%22%2E%2Futilities%22%29%2Ci%3Dfunction%28t%2Ce%29%7Bthis%2Einit%28t%2Ce%29%7D%3Bi%2Eprototype%2Einit%3Dfunction%28t%2Ce%29%7Bthis%2Eviewport%3Dt%2Cthis%2Eoptions%3De%2Cthis%2EoriginalState%3D%7Bzoom%3A1%2Cx%3A0%2Cy%3A0%7D%2Cthis%2EactiveState%3D%7Bzoom%3A1%2Cx%3A0%2Cy%3A0%7D%2Cthis%2EupdateCTMCached%3Dn%2Eproxy%28this%2EupdateCTM%2Cthis%29%2Cthis%2ErequestAnimationFrame%3Dn%2EcreateRequestAnimationFrame%28this%2Eoptions%2ErefreshRate%29%2Cthis%2EviewBox%3D%7Bx%3A0%2Cy%3A0%2Cwidth%3A0%2Cheight%3A0%7D%2Cthis%2EcacheViewBox%28%29%2Cthis%2EprocessCTM%28%29%2Cthis%2EupdateCTM%28%29%7D%2Ci%2Eprototype%2EcacheViewBox%3Dfunction%28%29%7Bvar%20t%3Dthis%2Eoptions%2Esvg%2EgetAttribute%28%22viewBox%22%29%3Bif%28t%29%7Bvar%20e%3Dt%2Esplit%28%2F%5B%5Cs%5C%2C%5D%2F%29%2Efilter%28function%28t%29%7Breturn%20t%7D%29%2Emap%28parseFloat%29%3Bthis%2EviewBox%2Ex%3De%5B0%5D%2Cthis%2EviewBox%2Ey%3De%5B1%5D%2Cthis%2EviewBox%2Ewidth%3De%5B2%5D%2Cthis%2EviewBox%2Eheight%3De%5B3%5D%3Bvar%20o%3DMath%2Emin%28this%2Eoptions%2Ewidth%2Fthis%2EviewBox%2Ewidth%2Cthis%2Eoptions%2Eheight%2Fthis%2EviewBox%2Eheight%29%3Bthis%2EactiveState%2Ezoom%3Do%2Cthis%2EactiveState%2Ex%3D%28this%2Eoptions%2Ewidth%2Dthis%2EviewBox%2Ewidth%2Ao%29%2F2%2Cthis%2EactiveState%2Ey%3D%28this%2Eoptions%2Eheight%2Dthis%2EviewBox%2Eheight%2Ao%29%2F2%2Cthis%2EupdateCTMOnNextFrame%28%29%2Cthis%2Eoptions%2Esvg%2EremoveAttribute%28%22viewBox%22%29%7Delse%7Bvar%20n%3Dthis%2Eviewport%2EgetBBox%28%29%3Bthis%2EviewBox%2Ex%3Dn%2Ex%2Cthis%2EviewBox%2Ey%3Dn%2Ey%2Cthis%2EviewBox%2Ewidth%3Dn%2Ewidth%2Cthis%2EviewBox%2Eheight%3Dn%2Eheight%7D%7D%2Ci%2Eprototype%2ErecacheViewBox%3Dfunction%28%29%7Bvar%20t%3Dthis%2Eviewport%2EgetBoundingClientRect%28%29%2Ce%3Dt%2Ewidth%2Fthis%2EgetZoom%28%29%2Co%3Dt%2Eheight%2Fthis%2EgetZoom%28%29%3Bthis%2EviewBox%2Ex%3D0%2Cthis%2EviewBox%2Ey%3D0%2Cthis%2EviewBox%2Ewidth%3De%2Cthis%2EviewBox%2Eheight%3Do%7D%2Ci%2Eprototype%2EgetViewBox%3Dfunction%28%29%7Breturn%20n%2Eextend%28%7B%7D%2Cthis%2EviewBox%29%7D%2Ci%2Eprototype%2EprocessCTM%3Dfunction%28%29%7Bvar%20t%3Dthis%2EgetCTM%28%29%3Bif%28this%2Eoptions%2Efit%7C%7Cthis%2Eoptions%2Econtain%29%7Bvar%20e%3Be%3Dthis%2Eoptions%2Efit%3FMath%2Emin%28this%2Eoptions%2Ewidth%2Fthis%2EviewBox%2Ewidth%2Cthis%2Eoptions%2Eheight%2Fthis%2EviewBox%2Eheight%29%3AMath%2Emax%28this%2Eoptions%2Ewidth%2Fthis%2EviewBox%2Ewidth%2Cthis%2Eoptions%2Eheight%2Fthis%2EviewBox%2Eheight%29%2Ct%2Ea%3De%2Ct%2Ed%3De%2Ct%2Ee%3D%2Dthis%2EviewBox%2Ex%2Ae%2Ct%2Ef%3D%2Dthis%2EviewBox%2Ey%2Ae%7Dif%28this%2Eoptions%2Ecenter%29%7Bvar%20o%3D%2E5%2A%28this%2Eoptions%2Ewidth%2D%28this%2EviewBox%2Ewidth%2B2%2Athis%2EviewBox%2Ex%29%2At%2Ea%29%2Cn%3D%2E5%2A%28this%2Eoptions%2Eheight%2D%28this%2EviewBox%2Eheight%2B2%2Athis%2EviewBox%2Ey%29%2At%2Ea%29%3Bt%2Ee%3Do%2Ct%2Ef%3Dn%7Dthis%2EoriginalState%2Ezoom%3Dt%2Ea%2Cthis%2EoriginalState%2Ex%3Dt%2Ee%2Cthis%2EoriginalState%2Ey%3Dt%2Ef%2Cthis%2EsetCTM%28t%29%7D%2Ci%2Eprototype%2EgetOriginalState%3Dfunction%28%29%7Breturn%20n%2Eextend%28%7B%7D%2Cthis%2EoriginalState%29%7D%2Ci%2Eprototype%2EgetState%3Dfunction%28%29%7Breturn%20n%2Eextend%28%7B%7D%2Cthis%2EactiveState%29%7D%2Ci%2Eprototype%2EgetZoom%3Dfunction%28%29%7Breturn%20this%2EactiveState%2Ezoom%7D%2Ci%2Eprototype%2EgetRelativeZoom%3Dfunction%28%29%7Breturn%20this%2EactiveState%2Ezoom%2Fthis%2EoriginalState%2Ezoom%7D%2Ci%2Eprototype%2EcomputeRelativeZoom%3Dfunction%28t%29%7Breturn%20t%2Fthis%2EoriginalState%2Ezoom%7D%2Ci%2Eprototype%2EgetPan%3Dfunction%28%29%7Breturn%7Bx%3Athis%2EactiveState%2Ex%2Cy%3Athis%2EactiveState%2Ey%7D%7D%2Ci%2Eprototype%2EgetCTM%3Dfunction%28%29%7Bvar%20t%3Dthis%2Eoptions%2Esvg%2EcreateSVGMatrix%28%29%3Breturn%20t%2Ea%3Dthis%2EactiveState%2Ezoom%2Ct%2Eb%3D0%2Ct%2Ec%3D0%2Ct%2Ed%3Dthis%2EactiveState%2Ezoom%2Ct%2Ee%3Dthis%2EactiveState%2Ex%2Ct%2Ef%3Dthis%2EactiveState%2Ey%2Ct%7D%2Ci%2Eprototype%2EsetCTM%3Dfunction%28t%29%7Bvar%20e%3Dthis%2EisZoomDifferent%28t%29%2Co%3Dthis%2EisPanDifferent%28t%29%3Bif%28e%7C%7Co%29%7Bif%28e%26%26this%2Eoptions%2EbeforeZoom%28this%2EgetRelativeZoom%28%29%2Cthis%2EcomputeRelativeZoom%28t%2Ea%29%29%3D%3D%3D%211%26%26%28t%2Ea%3Dt%2Ed%3Dthis%2EactiveState%2Ezoom%2Ce%3D%211%29%2Co%29%7Bvar%20i%3Dthis%2Eoptions%2EbeforePan%28this%2EgetPan%28%29%2C%7Bx%3At%2Ee%2Cy%3At%2Ef%7D%29%2Cs%3D%211%2Cr%3D%211%3Bi%3D%3D%3D%211%3F%28t%2Ee%3Dthis%2EgetPan%28%29%2Ex%2Ct%2Ef%3Dthis%2EgetPan%28%29%2Ey%2Cs%3Dr%3D%210%29%3An%2EisObject%28i%29%26%26%28i%2Ex%3D%3D%3D%211%3F%28t%2Ee%3Dthis%2EgetPan%28%29%2Ex%2Cs%3D%210%29%3An%2EisNumber%28i%2Ex%29%26%26%28t%2Ee%3Di%2Ex%29%2Ci%2Ey%3D%3D%3D%211%3F%28t%2Ef%3Dthis%2EgetPan%28%29%2Ey%2Cr%3D%210%29%3An%2EisNumber%28i%2Ey%29%26%26%28t%2Ef%3Di%2Ey%29%29%2Cs%26%26r%26%26%28o%3D%211%29%7D%28e%7C%7Co%29%26%26%28this%2EupdateCache%28t%29%2Cthis%2EupdateCTMOnNextFrame%28%29%2Ce%26%26this%2Eoptions%2EonZoom%28this%2EgetRelativeZoom%28%29%29%2Co%26%26this%2Eoptions%2EonPan%28this%2EgetPan%28%29%29%29%7D%7D%2Ci%2Eprototype%2EisZoomDifferent%3Dfunction%28t%29%7Breturn%20this%2EactiveState%2Ezoom%21%3D%3Dt%2Ea%7D%2Ci%2Eprototype%2EisPanDifferent%3Dfunction%28t%29%7Breturn%20this%2EactiveState%2Ex%21%3D%3Dt%2Ee%7C%7Cthis%2EactiveState%2Ey%21%3D%3Dt%2Ef%7D%2Ci%2Eprototype%2EupdateCache%3Dfunction%28t%29%7Bthis%2EactiveState%2Ezoom%3Dt%2Ea%2Cthis%2EactiveState%2Ex%3Dt%2Ee%2Cthis%2EactiveState%2Ey%3Dt%2Ef%7D%2Ci%2Eprototype%2EpendingUpdate%3D%211%2Ci%2Eprototype%2EupdateCTMOnNextFrame%3Dfunction%28%29%7Bthis%2EpendingUpdate%7C%7C%28this%2EpendingUpdate%3D%210%2Cthis%2ErequestAnimationFrame%2Ecall%28window%2Cthis%2EupdateCTMCached%29%29%7D%2Ci%2Eprototype%2EupdateCTM%3Dfunction%28%29%7Bo%2EsetCTM%28this%2Eviewport%2Cthis%2EgetCTM%28%29%2Cthis%2Edefs%29%2Cthis%2EpendingUpdate%3D%211%7D%2Ce%2Eexports%3Dfunction%28t%2Ce%29%7Breturn%20new%20i%28t%2Ce%29%7D%7D%2C%7B%22%2E%2Fsvg%2Dutilities%22%3A5%2C%22%2E%2Futilities%22%3A7%7D%5D%2C4%3A%5Bfunction%28t%2Ce%29%7Bvar%20o%3Dt%28%22%2E%2Funiwheel%22%29%2Cn%3Dt%28%22%2E%2Fcontrol%2Dicons%22%29%2Ci%3Dt%28%22%2E%2Futilities%22%29%2Cs%3Dt%28%22%2E%2Fsvg%2Dutilities%22%29%2Cr%3Dt%28%22%2E%2Fshadow%2Dviewport%22%29%2Ca%3Dfunction%28t%2Ce%29%7Bthis%2Einit%28t%2Ce%29%7D%2Cl%3D%7BviewportSelector%3A%22%2Esvg%2Dpan%2Dzoom%5Fviewport%22%2CpanEnabled%3A%210%2CcontrolIconsEnabled%3A%211%2CzoomEnabled%3A%210%2CdblClickZoomEnabled%3A%210%2CmouseWheelZoomEnabled%3A%210%2CpreventMouseEventsDefault%3A%210%2CzoomScaleSensitivity%3A%2E1%2CminZoom%3A%2E5%2CmaxZoom%3A10%2Cfit%3A%210%2Ccontain%3A%211%2Ccenter%3A%210%2CrefreshRate%3A%22auto%22%2CbeforeZoom%3Anull%2ConZoom%3Anull%2CbeforePan%3Anull%2ConPan%3Anull%2CcustomEventsHandler%3Anull%7D%3Ba%2Eprototype%2Einit%3Dfunction%28t%2Ce%29%7Bvar%20o%3Dthis%3Bthis%2Esvg%3Dt%2Cthis%2Edefs%3Dt%2EquerySelector%28%22defs%22%29%2Cs%2EsetupSvgAttributes%28this%2Esvg%29%2Cthis%2Eoptions%3Di%2Eextend%28i%2Eextend%28%7B%7D%2Cl%29%2Ce%29%2Cthis%2Estate%3D%22none%22%3Bvar%20a%3Ds%2EgetBoundingClientRectNormalized%28t%29%3Bthis%2Ewidth%3Da%2Ewidth%2Cthis%2Eheight%3Da%2Eheight%2Cthis%2Eviewport%3Dr%28s%2EgetOrCreateViewport%28this%2Esvg%2Cthis%2Eoptions%2EviewportSelector%29%2C%7Bsvg%3Athis%2Esvg%2Cwidth%3Athis%2Ewidth%2Cheight%3Athis%2Eheight%2Cfit%3Athis%2Eoptions%2Efit%2Ccontain%3Athis%2Eoptions%2Econtain%2Ccenter%3Athis%2Eoptions%2Ecenter%2CrefreshRate%3Athis%2Eoptions%2ErefreshRate%2CbeforeZoom%3Afunction%28t%2Ce%29%7Breturn%20o%2Eviewport%26%26o%2Eoptions%2EbeforeZoom%3Fo%2Eoptions%2EbeforeZoom%28t%2Ce%29%3Avoid%200%7D%2ConZoom%3Afunction%28t%29%7Breturn%20o%2Eviewport%26%26o%2Eoptions%2EonZoom%3Fo%2Eoptions%2EonZoom%28t%29%3Avoid%200%7D%2CbeforePan%3Afunction%28t%2Ce%29%7Breturn%20o%2Eviewport%26%26o%2Eoptions%2EbeforePan%3Fo%2Eoptions%2EbeforePan%28t%2Ce%29%3Avoid%200%7D%2ConPan%3Afunction%28t%29%7Breturn%20o%2Eviewport%26%26o%2Eoptions%2EonPan%3Fo%2Eoptions%2EonPan%28t%29%3Avoid%200%7D%7D%29%3Bvar%20u%3Dthis%2EgetPublicInstance%28%29%3Bu%2EsetBeforeZoom%28this%2Eoptions%2EbeforeZoom%29%2Cu%2EsetOnZoom%28this%2Eoptions%2EonZoom%29%2Cu%2EsetBeforePan%28this%2Eoptions%2EbeforePan%29%2Cu%2EsetOnPan%28this%2Eoptions%2EonPan%29%2Cthis%2Eoptions%2EcontrolIconsEnabled%26%26n%2Eenable%28this%29%2Cthis%2ElastMouseWheelEventTime%3DDate%2Enow%28%29%2Cthis%2EsetupHandlers%28%29%7D%2Ca%2Eprototype%2EsetupHandlers%3Dfunction%28%29%7Bvar%20t%3Dthis%2Ce%3Dnull%3Bif%28this%2EeventListeners%3D%7Bmousedown%3Afunction%28e%29%7Breturn%20t%2EhandleMouseDown%28e%2Cnull%29%7D%2Ctouchstart%3Afunction%28o%29%7Bvar%20n%3Dt%2EhandleMouseDown%28o%2Ce%29%3Breturn%20e%3Do%2Cn%7D%2Cmouseup%3Afunction%28e%29%7Breturn%20t%2EhandleMouseUp%28e%29%7D%2Ctouchend%3Afunction%28e%29%7Breturn%20t%2EhandleMouseUp%28e%29%7D%2Cmousemove%3Afunction%28e%29%7Breturn%20t%2EhandleMouseMove%28e%29%7D%2Ctouchmove%3Afunction%28e%29%7Breturn%20t%2EhandleMouseMove%28e%29%7D%2Cmouseleave%3Afunction%28e%29%7Breturn%20t%2EhandleMouseUp%28e%29%7D%2Ctouchleave%3Afunction%28e%29%7Breturn%20t%2EhandleMouseUp%28e%29%7D%2Ctouchcancel%3Afunction%28e%29%7Breturn%20t%2EhandleMouseUp%28e%29%7D%7D%2Cnull%21%3Dthis%2Eoptions%2EcustomEventsHandler%29%7Bthis%2Eoptions%2EcustomEventsHandler%2Einit%28%7BsvgElement%3Athis%2Esvg%2Cinstance%3Athis%2EgetPublicInstance%28%29%7D%29%3Bvar%20o%3Dthis%2Eoptions%2EcustomEventsHandler%2EhaltEventListeners%3Bif%28o%26%26o%2Elength%29for%28var%20n%3Do%2Elength%2D1%3Bn%3E%3D0%3Bn%2D%2D%29this%2EeventListeners%2EhasOwnProperty%28o%5Bn%5D%29%26%26delete%20this%2EeventListeners%5Bo%5Bn%5D%5D%7Dfor%28var%20i%20in%20this%2EeventListeners%29this%2Esvg%2EaddEventListener%28i%2Cthis%2EeventListeners%5Bi%5D%2C%211%29%3Bthis%2Eoptions%2EmouseWheelZoomEnabled%26%26%28this%2Eoptions%2EmouseWheelZoomEnabled%3D%211%2Cthis%2EenableMouseWheelZoom%28%29%29%7D%2Ca%2Eprototype%2EenableMouseWheelZoom%3Dfunction%28%29%7Bif%28%21this%2Eoptions%2EmouseWheelZoomEnabled%29%7Bvar%20t%3Dthis%3Bthis%2EwheelListener%3Dfunction%28e%29%7Breturn%20t%2EhandleMouseWheel%28e%29%7D%2Co%2Eon%28this%2Esvg%2Cthis%2EwheelListener%2C%211%29%2Cthis%2Eoptions%2EmouseWheelZoomEnabled%3D%210%7D%7D%2Ca%2Eprototype%2EdisableMouseWheelZoom%3Dfunction%28%29%7Bthis%2Eoptions%2EmouseWheelZoomEnabled%26%26%28o%2Eoff%28this%2Esvg%2Cthis%2EwheelListener%2C%211%29%2Cthis%2Eoptions%2EmouseWheelZoomEnabled%3D%211%29%7D%2Ca%2Eprototype%2EhandleMouseWheel%3Dfunction%28t%29%7Bif%28this%2Eoptions%2EzoomEnabled%26%26%22none%22%3D%3D%3Dthis%2Estate%29%7Bthis%2Eoptions%2EpreventMouseEventsDefault%26%26%28t%2EpreventDefault%3Ft%2EpreventDefault%28%29%3At%2EreturnValue%3D%211%29%3Bvar%20e%3Dt%2EdeltaY%7C%7C1%2Co%3DDate%2Enow%28%29%2Dthis%2ElastMouseWheelEventTime%2Cn%3D3%2BMath%2Emax%280%2C30%2Do%29%3Bthis%2ElastMouseWheelEventTime%3DDate%2Enow%28%29%2C%22deltaMode%22in%20t%26%260%3D%3D%3Dt%2EdeltaMode%26%26t%2EwheelDelta%26%26%28e%3D0%3D%3D%3Dt%2EdeltaY%3F0%3AMath%2Eabs%28t%2EwheelDelta%29%2Ft%2EdeltaY%29%2Ce%3De%3E%2D%2E3%26%26%2E3%3Ee%3Fe%3A%28e%3E0%3F1%3A%2D1%29%2AMath%2Elog%28Math%2Eabs%28e%29%2B10%29%2Fn%3Bvar%20i%3Dthis%2Esvg%2EgetScreenCTM%28%29%2Einverse%28%29%2Cr%3Ds%2EgetEventPoint%28t%2Cthis%2Esvg%29%2EmatrixTransform%28i%29%2Ca%3DMath%2Epow%281%2Bthis%2Eoptions%2EzoomScaleSensitivity%2C%2D1%2Ae%29%3Bthis%2EzoomAtPoint%28a%2Cr%29%7D%7D%2Ca%2Eprototype%2EzoomAtPoint%3Dfunction%28t%2Ce%2Co%29%7Bvar%20n%3Dthis%2Eviewport%2EgetOriginalState%28%29%3Bo%3F%28t%3DMath%2Emax%28this%2Eoptions%2EminZoom%2An%2Ezoom%2CMath%2Emin%28this%2Eoptions%2EmaxZoom%2An%2Ezoom%2Ct%29%29%2Ct%2F%3Dthis%2EgetZoom%28%29%29%3Athis%2EgetZoom%28%29%2At%3Cthis%2Eoptions%2EminZoom%2An%2Ezoom%3Ft%3Dthis%2Eoptions%2EminZoom%2An%2Ezoom%2Fthis%2EgetZoom%28%29%3Athis%2EgetZoom%28%29%2At%3Ethis%2Eoptions%2EmaxZoom%2An%2Ezoom%26%26%28t%3Dthis%2Eoptions%2EmaxZoom%2An%2Ezoom%2Fthis%2EgetZoom%28%29%29%3Bvar%20i%3Dthis%2Eviewport%2EgetCTM%28%29%2Cs%3De%2EmatrixTransform%28i%2Einverse%28%29%29%2Cr%3Dthis%2Esvg%2EcreateSVGMatrix%28%29%2Etranslate%28s%2Ex%2Cs%2Ey%29%2Escale%28t%29%2Etranslate%28%2Ds%2Ex%2C%2Ds%2Ey%29%2Ca%3Di%2Emultiply%28r%29%3Ba%2Ea%21%3D%3Di%2Ea%26%26this%2Eviewport%2EsetCTM%28a%29%7D%2Ca%2Eprototype%2Ezoom%3Dfunction%28t%2Ce%29%7Bthis%2EzoomAtPoint%28t%2Cs%2EgetSvgCenterPoint%28this%2Esvg%2Cthis%2Ewidth%2Cthis%2Eheight%29%2Ce%29%7D%2Ca%2Eprototype%2EpublicZoom%3Dfunction%28t%2Ce%29%7Be%26%26%28t%3Dthis%2EcomputeFromRelativeZoom%28t%29%29%2Cthis%2Ezoom%28t%2Ce%29%7D%2Ca%2Eprototype%2EpublicZoomAtPoint%3Dfunction%28t%2Ce%2Co%29%7Bif%28o%26%26%28t%3Dthis%2EcomputeFromRelativeZoom%28t%29%29%2C%21%28%22SVGPoint%22%21%3D%3Di%2EgetType%28e%29%26%26%22x%22in%20e%26%26%22y%22in%20e%29%29throw%20new%20Error%28%22Given%20point%20is%20invalid%22%29%3Be%3Ds%2EcreateSVGPoint%28this%2Esvg%2Ce%2Ex%2Ce%2Ey%29%2Cthis%2EzoomAtPoint%28t%2Ce%2Co%29%7D%2Ca%2Eprototype%2EgetZoom%3Dfunction%28%29%7Breturn%20this%2Eviewport%2EgetZoom%28%29%7D%2Ca%2Eprototype%2EgetRelativeZoom%3Dfunction%28%29%7Breturn%20this%2Eviewport%2EgetRelativeZoom%28%29%7D%2Ca%2Eprototype%2EcomputeFromRelativeZoom%3Dfunction%28t%29%7Breturn%20t%2Athis%2Eviewport%2EgetOriginalState%28%29%2Ezoom%7D%2Ca%2Eprototype%2EresetZoom%3Dfunction%28%29%7Bvar%20t%3Dthis%2Eviewport%2EgetOriginalState%28%29%3Bthis%2Ezoom%28t%2Ezoom%2C%210%29%7D%2Ca%2Eprototype%2EresetPan%3Dfunction%28%29%7Bthis%2Epan%28this%2Eviewport%2EgetOriginalState%28%29%29%7D%2Ca%2Eprototype%2Ereset%3Dfunction%28%29%7Bthis%2EresetZoom%28%29%2Cthis%2EresetPan%28%29%7D%2Ca%2Eprototype%2EhandleDblClick%3Dfunction%28t%29%7Bif%28this%2Eoptions%2EpreventMouseEventsDefault%26%26%28t%2EpreventDefault%3Ft%2EpreventDefault%28%29%3At%2EreturnValue%3D%211%29%2Cthis%2Eoptions%2EcontrolIconsEnabled%29%7Bvar%20e%3Dt%2Etarget%2EgetAttribute%28%22class%22%29%7C%7C%22%22%3Bif%28e%2EindexOf%28%22svg%2Dpan%2Dzoom%2Dcontrol%22%29%3E%2D1%29return%211%7Dvar%20o%3Bo%3Dt%2EshiftKey%3F1%2F%282%2A%281%2Bthis%2Eoptions%2EzoomScaleSensitivity%29%29%3A2%2A%281%2Bthis%2Eoptions%2EzoomScaleSensitivity%29%3Bvar%20n%3Ds%2EgetEventPoint%28t%2Cthis%2Esvg%29%2EmatrixTransform%28this%2Esvg%2EgetScreenCTM%28%29%2Einverse%28%29%29%3Bthis%2EzoomAtPoint%28o%2Cn%29%7D%2Ca%2Eprototype%2EhandleMouseDown%3Dfunction%28t%2Ce%29%7Bthis%2Eoptions%2EpreventMouseEventsDefault%26%26%28t%2EpreventDefault%3Ft%2EpreventDefault%28%29%3At%2EreturnValue%3D%211%29%2Ci%2EmouseAndTouchNormalize%28t%2Cthis%2Esvg%29%2Cthis%2Eoptions%2EdblClickZoomEnabled%26%26i%2EisDblClick%28t%2Ce%29%3Fthis%2EhandleDblClick%28t%29%3A%28this%2Estate%3D%22pan%22%2Cthis%2EfirstEventCTM%3Dthis%2Eviewport%2EgetCTM%28%29%2Cthis%2EstateOrigin%3Ds%2EgetEventPoint%28t%2Cthis%2Esvg%29%2EmatrixTransform%28this%2EfirstEventCTM%2Einverse%28%29%29%29%7D%2Ca%2Eprototype%2EhandleMouseMove%3Dfunction%28t%29%7Bif%28this%2Eoptions%2EpreventMouseEventsDefault%26%26%28t%2EpreventDefault%3Ft%2EpreventDefault%28%29%3At%2EreturnValue%3D%211%29%2C%22pan%22%3D%3D%3Dthis%2Estate%26%26this%2Eoptions%2EpanEnabled%29%7Bvar%20e%3Ds%2EgetEventPoint%28t%2Cthis%2Esvg%29%2EmatrixTransform%28this%2EfirstEventCTM%2Einverse%28%29%29%2Co%3Dthis%2EfirstEventCTM%2Etranslate%28e%2Ex%2Dthis%2EstateOrigin%2Ex%2Ce%2Ey%2Dthis%2EstateOrigin%2Ey%29%3Bthis%2Eviewport%2EsetCTM%28o%29%7D%7D%2Ca%2Eprototype%2EhandleMouseUp%3Dfunction%28t%29%7Bthis%2Eoptions%2EpreventMouseEventsDefault%26%26%28t%2EpreventDefault%3Ft%2EpreventDefault%28%29%3At%2EreturnValue%3D%211%29%2C%22pan%22%3D%3D%3Dthis%2Estate%26%26%28this%2Estate%3D%22none%22%29%7D%2Ca%2Eprototype%2Efit%3Dfunction%28%29%7Bvar%20t%3Dthis%2Eviewport%2EgetViewBox%28%29%2Ce%3DMath%2Emin%28this%2Ewidth%2Ft%2Ewidth%2Cthis%2Eheight%2Ft%2Eheight%29%3Bthis%2Ezoom%28e%2C%210%29%7D%2Ca%2Eprototype%2Econtain%3Dfunction%28%29%7Bvar%20t%3Dthis%2Eviewport%2EgetViewBox%28%29%2Ce%3DMath%2Emax%28this%2Ewidth%2Ft%2Ewidth%2Cthis%2Eheight%2Ft%2Eheight%29%3Bthis%2Ezoom%28e%2C%210%29%7D%2Ca%2Eprototype%2Ecenter%3Dfunction%28%29%7Bvar%20t%3Dthis%2Eviewport%2EgetViewBox%28%29%2Ce%3D%2E5%2A%28this%2Ewidth%2D%28t%2Ewidth%2B2%2At%2Ex%29%2Athis%2EgetZoom%28%29%29%2Co%3D%2E5%2A%28this%2Eheight%2D%28t%2Eheight%2B2%2At%2Ey%29%2Athis%2EgetZoom%28%29%29%3Bthis%2EgetPublicInstance%28%29%2Epan%28%7Bx%3Ae%2Cy%3Ao%7D%29%7D%2Ca%2Eprototype%2EupdateBBox%3Dfunction%28%29%7Bthis%2Eviewport%2ErecacheViewBox%28%29%7D%2Ca%2Eprototype%2Epan%3Dfunction%28t%29%7Bvar%20e%3Dthis%2Eviewport%2EgetCTM%28%29%3Be%2Ee%3Dt%2Ex%2Ce%2Ef%3Dt%2Ey%2Cthis%2Eviewport%2EsetCTM%28e%29%7D%2Ca%2Eprototype%2EpanBy%3Dfunction%28t%29%7Bvar%20e%3Dthis%2Eviewport%2EgetCTM%28%29%3Be%2Ee%2B%3Dt%2Ex%2Ce%2Ef%2B%3Dt%2Ey%2Cthis%2Eviewport%2EsetCTM%28e%29%7D%2Ca%2Eprototype%2EgetPan%3Dfunction%28%29%7Bvar%20t%3Dthis%2Eviewport%2EgetState%28%29%3Breturn%7Bx%3At%2Ex%2Cy%3At%2Ey%7D%7D%2Ca%2Eprototype%2Eresize%3Dfunction%28%29%7Bvar%20t%3Ds%2EgetBoundingClientRectNormalized%28this%2Esvg%29%3Bthis%2Ewidth%3Dt%2Ewidth%2Cthis%2Eheight%3Dt%2Eheight%2Cthis%2Eoptions%2EcontrolIconsEnabled%26%26%28this%2EgetPublicInstance%28%29%2EdisableControlIcons%28%29%2Cthis%2EgetPublicInstance%28%29%2EenableControlIcons%28%29%29%7D%2Ca%2Eprototype%2Edestroy%3Dfunction%28%29%7Bvar%20t%3Dthis%3Bthis%2EbeforeZoom%3Dnull%2Cthis%2EonZoom%3Dnull%2Cthis%2EbeforePan%3Dnull%2Cthis%2EonPan%3Dnull%2Cnull%21%3Dthis%2Eoptions%2EcustomEventsHandler%26%26this%2Eoptions%2EcustomEventsHandler%2Edestroy%28%7BsvgElement%3Athis%2Esvg%2Cinstance%3Athis%2EgetPublicInstance%28%29%7D%29%3Bfor%28var%20e%20in%20this%2EeventListeners%29this%2Esvg%2EremoveEventListener%28e%2Cthis%2EeventListeners%5Be%5D%2C%211%29%3Bthis%2EdisableMouseWheelZoom%28%29%2Cthis%2EgetPublicInstance%28%29%2EdisableControlIcons%28%29%2Cthis%2Ereset%28%29%2Cu%3Du%2Efilter%28function%28e%29%7Breturn%20e%2Esvg%21%3D%3Dt%2Esvg%7D%29%2Cdelete%20this%2Eoptions%2Cdelete%20this%2EpublicInstance%2Cdelete%20this%2Epi%2Cthis%2EgetPublicInstance%3Dfunction%28%29%7Breturn%20null%7D%7D%2Ca%2Eprototype%2EgetPublicInstance%3Dfunction%28%29%7Bvar%20t%3Dthis%3Breturn%20this%2EpublicInstance%7C%7C%28this%2EpublicInstance%3Dthis%2Epi%3D%7BenablePan%3Afunction%28%29%7Breturn%20t%2Eoptions%2EpanEnabled%3D%210%2Ct%2Epi%7D%2CdisablePan%3Afunction%28%29%7Breturn%20t%2Eoptions%2EpanEnabled%3D%211%2Ct%2Epi%7D%2CisPanEnabled%3Afunction%28%29%7Breturn%21%21t%2Eoptions%2EpanEnabled%7D%2Cpan%3Afunction%28e%29%7Breturn%20t%2Epan%28e%29%2Ct%2Epi%7D%2CpanBy%3Afunction%28e%29%7Breturn%20t%2EpanBy%28e%29%2Ct%2Epi%7D%2CgetPan%3Afunction%28%29%7Breturn%20t%2EgetPan%28%29%7D%2CsetBeforePan%3Afunction%28e%29%7Breturn%20t%2Eoptions%2EbeforePan%3Dnull%3D%3D%3De%3Fnull%3Ai%2Eproxy%28e%2Ct%2EpublicInstance%29%2Ct%2Epi%7D%2CsetOnPan%3Afunction%28e%29%7Breturn%20t%2Eoptions%2EonPan%3Dnull%3D%3D%3De%3Fnull%3Ai%2Eproxy%28e%2Ct%2EpublicInstance%29%2Ct%2Epi%7D%2CenableZoom%3Afunction%28%29%7Breturn%20t%2Eoptions%2EzoomEnabled%3D%210%2Ct%2Epi%7D%2CdisableZoom%3Afunction%28%29%7Breturn%20t%2Eoptions%2EzoomEnabled%3D%211%2Ct%2Epi%7D%2CisZoomEnabled%3Afunction%28%29%7Breturn%21%21t%2Eoptions%2EzoomEnabled%7D%2CenableControlIcons%3Afunction%28%29%7Breturn%20t%2Eoptions%2EcontrolIconsEnabled%7C%7C%28t%2Eoptions%2EcontrolIconsEnabled%3D%210%2Cn%2Eenable%28t%29%29%2Ct%2Epi%7D%2CdisableControlIcons%3Afunction%28%29%7Breturn%20t%2Eoptions%2EcontrolIconsEnabled%26%26%28t%2Eoptions%2EcontrolIconsEnabled%3D%211%2Cn%2Edisable%28t%29%29%2Ct%2Epi%7D%2CisControlIconsEnabled%3Afunction%28%29%7Breturn%21%21t%2Eoptions%2EcontrolIconsEnabled%7D%2CenableDblClickZoom%3Afunction%28%29%7Breturn%20t%2Eoptions%2EdblClickZoomEnabled%3D%210%2Ct%2Epi%7D%2CdisableDblClickZoom%3Afunction%28%29%7Breturn%20t%2Eoptions%2EdblClickZoomEnabled%3D%211%2Ct%2Epi%7D%2CisDblClickZoomEnabled%3Afunction%28%29%7Breturn%21%21t%2Eoptions%2EdblClickZoomEnabled%7D%2CenableMouseWheelZoom%3Afunction%28%29%7Breturn%20t%2EenableMouseWheelZoom%28%29%2Ct%2Epi%7D%2CdisableMouseWheelZoom%3Afunction%28%29%7Breturn%20t%2EdisableMouseWheelZoom%28%29%2Ct%2Epi%7D%2CisMouseWheelZoomEnabled%3Afunction%28%29%7Breturn%21%21t%2Eoptions%2EmouseWheelZoomEnabled%7D%2CsetZoomScaleSensitivity%3Afunction%28e%29%7Breturn%20t%2Eoptions%2EzoomScaleSensitivity%3De%2Ct%2Epi%7D%2CsetMinZoom%3Afunction%28e%29%7Breturn%20t%2Eoptions%2EminZoom%3De%2Ct%2Epi%7D%2CsetMaxZoom%3Afunction%28e%29%7Breturn%20t%2Eoptions%2EmaxZoom%3De%2Ct%2Epi%7D%2CsetBeforeZoom%3Afunction%28e%29%7Breturn%20t%2Eoptions%2EbeforeZoom%3Dnull%3D%3D%3De%3Fnull%3Ai%2Eproxy%28e%2Ct%2EpublicInstance%29%2Ct%2Epi%7D%2CsetOnZoom%3Afunction%28e%29%7Breturn%20t%2Eoptions%2EonZoom%3Dnull%3D%3D%3De%3Fnull%3Ai%2Eproxy%28e%2Ct%2EpublicInstance%29%2Ct%2Epi%7D%2Czoom%3Afunction%28e%29%7Breturn%20t%2EpublicZoom%28e%2C%210%29%2Ct%2Epi%7D%2CzoomBy%3Afunction%28e%29%7Breturn%20t%2EpublicZoom%28e%2C%211%29%2Ct%2Epi%7D%2CzoomAtPoint%3Afunction%28e%2Co%29%7Breturn%20t%2EpublicZoomAtPoint%28e%2Co%2C%210%29%2Ct%2Epi%7D%2CzoomAtPointBy%3Afunction%28e%2Co%29%7Breturn%20t%2EpublicZoomAtPoint%28e%2Co%2C%211%29%2Ct%2Epi%7D%2CzoomIn%3Afunction%28%29%7Breturn%20this%2EzoomBy%281%2Bt%2Eoptions%2EzoomScaleSensitivity%29%2Ct%2Epi%7D%2CzoomOut%3Afunction%28%29%7Breturn%20this%2EzoomBy%281%2F%281%2Bt%2Eoptions%2EzoomScaleSensitivity%29%29%2Ct%2Epi%7D%2CgetZoom%3Afunction%28%29%7Breturn%20t%2EgetRelativeZoom%28%29%7D%2CresetZoom%3Afunction%28%29%7Breturn%20t%2EresetZoom%28%29%2Ct%2Epi%7D%2CresetPan%3Afunction%28%29%7Breturn%20t%2EresetPan%28%29%2Ct%2Epi%7D%2Creset%3Afunction%28%29%7Breturn%20t%2Ereset%28%29%2Ct%2Epi%7D%2Cfit%3Afunction%28%29%7Breturn%20t%2Efit%28%29%2Ct%2Epi%7D%2Ccontain%3Afunction%28%29%7Breturn%20t%2Econtain%28%29%2Ct%2Epi%7D%2Ccenter%3Afunction%28%29%7Breturn%20t%2Ecenter%28%29%2Ct%2Epi%7D%2CupdateBBox%3Afunction%28%29%7Breturn%20t%2EupdateBBox%28%29%2Ct%2Epi%7D%2Cresize%3Afunction%28%29%7Breturn%20t%2Eresize%28%29%2Ct%2Epi%7D%2CgetSizes%3Afunction%28%29%7Breturn%7Bwidth%3At%2Ewidth%2Cheight%3At%2Eheight%2CrealZoom%3At%2EgetZoom%28%29%2CviewBox%3At%2Eviewport%2EgetViewBox%28%29%7D%7D%2Cdestroy%3Afunction%28%29%7Breturn%20t%2Edestroy%28%29%2Ct%2Epi%7D%7D%29%2Cthis%2EpublicInstance%7D%3Bvar%20u%3D%5B%5D%2Ch%3Dfunction%28t%2Ce%29%7Bvar%20o%3Di%2EgetSvg%28t%29%3Bif%28null%3D%3D%3Do%29return%20null%3Bfor%28var%20n%3Du%2Elength%2D1%3Bn%3E%3D0%3Bn%2D%2D%29if%28u%5Bn%5D%2Esvg%3D%3D%3Do%29return%20u%5Bn%5D%2Einstance%2EgetPublicInstance%28%29%3Breturn%20u%2Epush%28%7Bsvg%3Ao%2Cinstance%3Anew%20a%28o%2Ce%29%7D%29%2Cu%5Bu%2Elength%2D1%5D%2Einstance%2EgetPublicInstance%28%29%7D%3Be%2Eexports%3Dh%7D%2C%7B%22%2E%2Fcontrol%2Dicons%22%3A2%2C%22%2E%2Fshadow%2Dviewport%22%3A3%2C%22%2E%2Fsvg%2Dutilities%22%3A5%2C%22%2E%2Funiwheel%22%3A6%2C%22%2E%2Futilities%22%3A7%7D%5D%2C5%3A%5Bfunction%28t%2Ce%29%7Bvar%20o%3Dt%28%22%2E%2Futilities%22%29%2Cn%3D%22unknown%22%3Bdocument%2EdocumentMode%26%26%28n%3D%22ie%22%29%2Ce%2Eexports%3D%7BsvgNS%3A%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%2CxmlNS%3A%22http%3A%2F%2Fwww%2Ew3%2Eorg%2FXML%2F1998%2Fnamespace%22%2CxmlnsNS%3A%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fxmlns%2F%22%2CxlinkNS%3A%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F1999%2Fxlink%22%2CevNS%3A%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2001%2Fxml%2Devents%22%2CgetBoundingClientRectNormalized%3Afunction%28t%29%7Bif%28t%2EclientWidth%26%26t%2EclientHeight%29return%7Bwidth%3At%2EclientWidth%2Cheight%3At%2EclientHeight%7D%3Bif%28t%2EgetBoundingClientRect%28%29%29return%20t%2EgetBoundingClientRect%28%29%3Bthrow%20new%20Error%28%22Cannot%20get%20BoundingClientRect%20for%20SVG%2E%22%29%7D%2CgetOrCreateViewport%3Afunction%28t%2Ce%29%7Bvar%20n%3Dnull%3Bif%28n%3Do%2EisElement%28e%29%3Fe%3At%2EquerySelector%28e%29%2C%21n%29%7Bvar%20i%3DArray%2Eprototype%2Eslice%2Ecall%28t%2EchildNodes%7C%7Ct%2Echildren%29%2Efilter%28function%28t%29%7Breturn%22defs%22%21%3D%3Dt%2EnodeName%26%26%22%23text%22%21%3D%3Dt%2EnodeName%7D%29%3B1%3D%3D%3Di%2Elength%26%26%22g%22%3D%3D%3Di%5B0%5D%2EnodeName%26%26null%3D%3D%3Di%5B0%5D%2EgetAttribute%28%22transform%22%29%26%26%28n%3Di%5B0%5D%29%7Dif%28%21n%29%7Bvar%20s%3D%22viewport%2D%22%2B%28new%20Date%29%2EtoISOString%28%29%2Ereplace%28%2F%5CD%2Fg%2C%22%22%29%3Bn%3Ddocument%2EcreateElementNS%28this%2EsvgNS%2C%22g%22%29%2Cn%2EsetAttribute%28%22id%22%2Cs%29%3Bvar%20r%3Dt%2EchildNodes%7C%7Ct%2Echildren%3Bif%28r%26%26r%2Elength%3E0%29for%28var%20a%3Dr%2Elength%3Ba%3E0%3Ba%2D%2D%29%22defs%22%21%3D%3Dr%5Br%2Elength%2Da%5D%2EnodeName%26%26n%2EappendChild%28r%5Br%2Elength%2Da%5D%29%3Bt%2EappendChild%28n%29%7Dvar%20l%3D%5B%5D%3Breturn%20n%2EgetAttribute%28%22class%22%29%26%26%28l%3Dn%2EgetAttribute%28%22class%22%29%2Esplit%28%22%20%22%29%29%2C%7El%2EindexOf%28%22svg%2Dpan%2Dzoom%5Fviewport%22%29%7C%7C%28l%2Epush%28%22svg%2Dpan%2Dzoom%5Fviewport%22%29%2Cn%2EsetAttribute%28%22class%22%2Cl%2Ejoin%28%22%20%22%29%29%29%2Cn%7D%2CsetupSvgAttributes%3Afunction%28t%29%7Bif%28t%2EsetAttribute%28%22xmlns%22%2Cthis%2EsvgNS%29%2Ct%2EsetAttributeNS%28this%2ExmlnsNS%2C%22xmlns%3Axlink%22%2Cthis%2ExlinkNS%29%2Ct%2EsetAttributeNS%28this%2ExmlnsNS%2C%22xmlns%3Aev%22%2Cthis%2EevNS%29%2Cnull%21%3D%3Dt%2EparentNode%29%7Bvar%20e%3Dt%2EgetAttribute%28%22style%22%29%7C%7C%22%22%3B%2D1%3D%3D%3De%2EtoLowerCase%28%29%2EindexOf%28%22overflow%22%29%26%26t%2EsetAttribute%28%22style%22%2C%22overflow%3A%20hidden%3B%20%22%2Be%29%7D%7D%2CinternetExplorerRedisplayInterval%3A300%2CrefreshDefsGlobal%3Ao%2Ethrottle%28function%28%29%7Bfor%28var%20t%3Ddocument%2EquerySelectorAll%28%22defs%22%29%2Ce%3Dt%2Elength%2Co%3D0%3Be%3Eo%3Bo%2B%2B%29%7Bvar%20n%3Dt%5Bo%5D%3Bn%2EparentNode%2EinsertBefore%28n%2Cn%29%7D%7D%2Cthis%2EinternetExplorerRedisplayInterval%29%2CsetCTM%3Afunction%28t%2Ce%2Co%29%7Bvar%20i%3Dthis%2Cs%3D%22matrix%28%22%2Be%2Ea%2B%22%2C%22%2Be%2Eb%2B%22%2C%22%2Be%2Ec%2B%22%2C%22%2Be%2Ed%2B%22%2C%22%2Be%2Ee%2B%22%2C%22%2Be%2Ef%2B%22%29%22%3Bt%2EsetAttributeNS%28null%2C%22transform%22%2Cs%29%2C%22ie%22%3D%3D%3Dn%26%26o%26%26%28o%2EparentNode%2EinsertBefore%28o%2Co%29%2Cwindow%2EsetTimeout%28function%28%29%7Bi%2ErefreshDefsGlobal%28%29%7D%2Ci%2EinternetExplorerRedisplayInterval%29%29%7D%2CgetEventPoint%3Afunction%28t%2Ce%29%7Bvar%20n%3De%2EcreateSVGPoint%28%29%3Breturn%20o%2EmouseAndTouchNormalize%28t%2Ce%29%2Cn%2Ex%3Dt%2EclientX%2Cn%2Ey%3Dt%2EclientY%2Cn%7D%2CgetSvgCenterPoint%3Afunction%28t%2Ce%2Co%29%7Breturn%20this%2EcreateSVGPoint%28t%2Ce%2F2%2Co%2F2%29%7D%2CcreateSVGPoint%3Afunction%28t%2Ce%2Co%29%7Bvar%20n%3Dt%2EcreateSVGPoint%28%29%3Breturn%20n%2Ex%3De%2Cn%2Ey%3Do%2Cn%7D%7D%7D%2C%7B%22%2E%2Futilities%22%3A7%7D%5D%2C6%3A%5Bfunction%28t%2Ce%29%7Be%2Eexports%3Dfunction%28%29%7Bfunction%20t%28t%2Ce%2Co%29%7Bvar%20n%3Dfunction%28t%29%7B%21t%26%26%28t%3Dwindow%2Eevent%29%3Bvar%20o%3D%7BoriginalEvent%3At%2Ctarget%3At%2Etarget%7C%7Ct%2EsrcElement%2Ctype%3A%22wheel%22%2CdeltaMode%3A%22MozMousePixelScroll%22%3D%3Dt%2Etype%3F0%3A1%2CdeltaX%3A0%2CdelatZ%3A0%2CpreventDefault%3Afunction%28%29%7Bt%2EpreventDefault%3Ft%2EpreventDefault%28%29%3At%2EreturnValue%3D%211%7D%7D%3Breturn%22mousewheel%22%3D%3Du%3F%28o%2EdeltaY%3D%2D1%2F40%2At%2EwheelDelta%2Ct%2EwheelDeltaX%26%26%28o%2EdeltaX%3D%2D1%2F40%2At%2EwheelDeltaX%29%29%3Ao%2EdeltaY%3Dt%2Edetail%2Ce%28o%29%7D%3Breturn%20c%2Epush%28%7Belement%3At%2Cfn%3An%2Ccapture%3Ao%7D%29%2Cn%7Dfunction%20e%28t%2Ce%29%7Bfor%28var%20o%3D0%3Bo%3Cc%2Elength%3Bo%2B%2B%29if%28c%5Bo%5D%2Eelement%3D%3D%3Dt%26%26c%5Bo%5D%2Ecapture%3D%3D%3De%29return%20c%5Bo%5D%2Efn%3Breturn%20function%28%29%7B%7D%7Dfunction%20o%28t%2Ce%29%7Bfor%28var%20o%3D0%3Bo%3Cc%2Elength%3Bo%2B%2B%29if%28c%5Bo%5D%2Eelement%3D%3D%3Dt%26%26c%5Bo%5D%2Ecapture%3D%3D%3De%29return%20c%2Esplice%28o%2C1%29%7Dfunction%20n%28e%2Co%2Cn%2Ci%29%7Bvar%20s%3Bs%3D%22wheel%22%3D%3D%3Du%3Fn%3At%28e%2Cn%2Ci%29%2Ce%5Ba%5D%28h%2Bo%2Cs%2Ci%7C%7C%211%29%7Dfunction%20i%28t%2Cn%2Ci%2Cs%29%7Bcb%3D%22wheel%22%3D%3D%3Du%3Fi%3Ae%28t%2Cs%29%2Ct%5Bl%5D%28h%2Bn%2Ccb%2Cs%7C%7C%211%29%2Co%28t%2Cs%29%7Dfunction%20s%28t%2Ce%2Co%29%7Bn%28t%2Cu%2Ce%2Co%29%2C%22DOMMouseScroll%22%3D%3Du%26%26n%28t%2C%22MozMousePixelScroll%22%2Ce%2Co%29%7Dfunction%20r%28t%2Ce%2Co%29%7Bi%28t%2Cu%2Ce%2Co%29%2C%22DOMMouseScroll%22%3D%3Du%26%26i%28t%2C%22MozMousePixelScroll%22%2Ce%2Co%29%7Dvar%20a%2Cl%2Cu%2Ch%3D%22%22%2Cc%3D%5B%5D%3Breturn%20window%2EaddEventListener%3F%28a%3D%22addEventListener%22%2Cl%3D%22removeEventListener%22%29%3A%28a%3D%22attachEvent%22%2Cl%3D%22detachEvent%22%2Ch%3D%22on%22%29%2Cu%3D%22onwheel%22in%20document%2EcreateElement%28%22div%22%29%3F%22wheel%22%3Avoid%200%21%3D%3Ddocument%2Eonmousewheel%3F%22mousewheel%22%3A%22DOMMouseScroll%22%2C%7Bon%3As%2Coff%3Ar%7D%7D%28%29%7D%2C%7B%7D%5D%2C7%3A%5Bfunction%28t%2Ce%29%7Bfunction%20o%28t%29%7Breturn%20function%28e%29%7Bwindow%2EsetTimeout%28e%2Ct%29%7D%7De%2Eexports%3D%7Bextend%3Afunction%28t%2Ce%29%7Bt%3Dt%7C%7C%7B%7D%3Bfor%28var%20o%20in%20e%29t%5Bo%5D%3Dthis%2EisObject%28e%5Bo%5D%29%3Fthis%2Eextend%28t%5Bo%5D%2Ce%5Bo%5D%29%3Ae%5Bo%5D%3Breturn%20t%7D%2CisElement%3Afunction%28t%29%7Breturn%20t%20instanceof%20HTMLElement%7C%7Ct%20instanceof%20SVGElement%7C%7Ct%20instanceof%20SVGSVGElement%7C%7Ct%26%26%22object%22%3D%3Dtypeof%20t%26%26null%21%3D%3Dt%26%261%3D%3D%3Dt%2EnodeType%26%26%22string%22%3D%3Dtypeof%20t%2EnodeName%7D%2CisObject%3Afunction%28t%29%7Breturn%22%5Bobject%20Object%5D%22%3D%3D%3DObject%2Eprototype%2EtoString%2Ecall%28t%29%7D%2CisNumber%3Afunction%28t%29%7Breturn%21isNaN%28parseFloat%28t%29%29%26%26isFinite%28t%29%7D%2CgetSvg%3Afunction%28t%29%7Bvar%20e%2Co%3Bif%28this%2EisElement%28t%29%29e%3Dt%3Belse%7Bif%28%21%28%22string%22%3D%3Dtypeof%20t%7C%7Ct%20instanceof%20String%29%29throw%20new%20Error%28%22Provided%20selector%20is%20not%20an%20HTML%20object%20nor%20String%22%29%3Bif%28e%3Ddocument%2EquerySelector%28t%29%2C%21e%29throw%20new%20Error%28%22Provided%20selector%20did%20not%20find%20any%20elements%2E%20Selector%3A%20%22%2Bt%29%7Dif%28%22svg%22%3D%3D%3De%2EtagName%2EtoLowerCase%28%29%29o%3De%3Belse%20if%28%22object%22%3D%3D%3De%2EtagName%2EtoLowerCase%28%29%29o%3De%2EcontentDocument%2EdocumentElement%3Belse%7Bif%28%22embed%22%21%3D%3De%2EtagName%2EtoLowerCase%28%29%29throw%20new%20Error%28%22img%22%3D%3D%3De%2EtagName%2EtoLowerCase%28%29%3F%27Cannot%20script%20an%20SVG%20in%20an%20%22img%22%20element%2E%20Please%20use%20an%20%22object%22%20element%20or%20an%20in%2Dline%20SVG%2E%27%3A%22Cannot%20get%20SVG%2E%22%29%3Bo%3De%2EgetSVGDocument%28%29%2EdocumentElement%7Dreturn%20o%7D%2Cproxy%3Afunction%28t%2Ce%29%7Breturn%20function%28%29%7Breturn%20t%2Eapply%28e%2Carguments%29%7D%7D%2CgetType%3Afunction%28t%29%7Breturn%20Object%2Eprototype%2EtoString%2Eapply%28t%29%2Ereplace%28%2F%5E%5C%5Bobject%5Cs%2F%2C%22%22%29%2Ereplace%28%2F%5C%5D%24%2F%2C%22%22%29%7D%2CmouseAndTouchNormalize%3Afunction%28t%2Ce%29%7Bif%28void%200%3D%3D%3Dt%2EclientX%7C%7Cnull%3D%3D%3Dt%2EclientX%29if%28t%2EclientX%3D0%2Ct%2EclientY%3D0%2Cvoid%200%21%3D%3Dt%2EchangedTouches%26%26t%2EchangedTouches%2Elength%29%7Bif%28void%200%21%3D%3Dt%2EchangedTouches%5B0%5D%2EclientX%29t%2EclientX%3Dt%2EchangedTouches%5B0%5D%2EclientX%2Ct%2EclientY%3Dt%2EchangedTouches%5B0%5D%2EclientY%3Belse%20if%28void%200%21%3D%3Dt%2EchangedTouches%5B0%5D%2EpageX%29%7Bvar%20o%3De%2EgetBoundingClientRect%28%29%3Bt%2EclientX%3Dt%2EchangedTouches%5B0%5D%2EpageX%2Do%2Eleft%2Ct%2EclientY%3Dt%2EchangedTouches%5B0%5D%2EpageY%2Do%2Etop%7D%7Delse%20void%200%21%3D%3Dt%2EoriginalEvent%26%26void%200%21%3D%3Dt%2EoriginalEvent%2EclientX%26%26%28t%2EclientX%3Dt%2EoriginalEvent%2EclientX%2Ct%2EclientY%3Dt%2EoriginalEvent%2EclientY%29%7D%2CisDblClick%3Afunction%28t%2Ce%29%7Bif%282%3D%3D%3Dt%2Edetail%29return%210%3Bif%28void%200%21%3D%3De%26%26null%21%3D%3De%29%7Bvar%20o%3Dt%2EtimeStamp%2De%2EtimeStamp%2Cn%3DMath%2Esqrt%28Math%2Epow%28t%2EclientX%2De%2EclientX%2C2%29%2BMath%2Epow%28t%2EclientY%2De%2EclientY%2C2%29%29%3Breturn%20250%3Eo%26%2610%3En%7Dreturn%211%7D%2Cnow%3ADate%2Enow%7C%7Cfunction%28%29%7Breturn%28new%20Date%29%2EgetTime%28%29%7D%2Cthrottle%3Afunction%28t%2Ce%2Co%29%7Bvar%20n%2Ci%2Cs%2Cr%3Dthis%2Ca%3Dnull%2Cl%3D0%3Bo%7C%7C%28o%3D%7B%7D%29%3Bvar%20u%3Dfunction%28%29%7Bl%3Do%2Eleading%3D%3D%3D%211%3F0%3Ar%2Enow%28%29%2Ca%3Dnull%2Cs%3Dt%2Eapply%28n%2Ci%29%2Ca%7C%7C%28n%3Di%3Dnull%29%7D%3Breturn%20function%28%29%7Bvar%20h%3Dr%2Enow%28%29%3Bl%7C%7Co%2Eleading%21%3D%3D%211%7C%7C%28l%3Dh%29%3Bvar%20c%3De%2D%28h%2Dl%29%3Breturn%20n%3Dthis%2Ci%3Darguments%2C0%3E%3Dc%7C%7Cc%3Ee%3F%28clearTimeout%28a%29%2Ca%3Dnull%2Cl%3Dh%2Cs%3Dt%2Eapply%28n%2Ci%29%2Ca%7C%7C%28n%3Di%3Dnull%29%29%3Aa%7C%7Co%2Etrailing%3D%3D%3D%211%7C%7C%28a%3DsetTimeout%28u%2Cc%29%29%2Cs%7D%7D%2CcreateRequestAnimationFrame%3Afunction%28t%29%7Bvar%20e%3Dnull%3Breturn%22auto%22%21%3D%3Dt%26%2660%3Et%26%26t%3E1%26%26%28e%3DMath%2Efloor%281e3%2Ft%29%29%2Cnull%3D%3D%3De%3Fwindow%2ErequestAnimationFrame%7C%7Co%2833%29%3Ao%28e%29%7D%7D%7D%2C%7B%7D%5D%7D%2C%7B%7D%2C%5B1%5D%29%3B%0A"></script>
<script src="data:application/x-javascript,HTMLWidgets%2Ewidget%28%7B%0A%0A%20%20name%3A%20%27svgPanZoom%27%2C%0A%0A%20%20type%3A%20%27output%27%2C%0A%0A%20%20initialize%3A%20function%28el%2C%20width%2C%20height%29%20%7B%0A%0A%20%20%20%20return%20%7B%0A%20%20%20%20%20%20%2F%2F%20TODO%3A%20add%20instance%20fields%20as%20required%0A%20%20%20%20%7D%0A%0A%20%20%7D%2C%0A%0A%20%20renderValue%3A%20function%28el%2C%20x%2C%20instance%29%20%7B%0A%20%20%20%20%2F%2F%20set%20innerHTML%20equal%20to%20the%20SVG%20provided%20by%20R%20as%20x%2Esvg%0A%20%20%20%20%2F%2F%20%20for%20better%20robustness%2C%20create%20DOM%20element%20separately%0A%20%20%20%20%2F%2F%20%20and%20add%20to%20the%20htmlwidgets%20container%20el%0A%20%20%20%20el%2EinnerHTML%20%3D%20x%2Esvg%3B%0A%0A%20%20%20%20var%20svg%20%3D%20el%2EgetElementsByTagName%28%22svg%22%29%5B0%5D%0A%0A%20%20%20%20%2F%2F%20use%20this%20to%20sort%20of%20make%20our%20diagram%20responsive%0A%20%20%20%20%2F%2F%20%20or%20at%20a%20minimum%20fit%20within%20the%20bounds%20set%20by%20htmlwidgets%0A%20%20%20%20%2F%2F%20%20for%20the%20parent%20container%0A%20%20%20%20function%20makeResponsive%28el%29%7B%0A%20%20%20%20%20%20%20var%20svg%20%3D%20el%2EgetElementsByTagName%28%22svg%22%29%5B0%5D%3B%0A%20%20%20%20%20%20%20if%28svg%29%7B%0A%20%20%20%20%20%20%20%20if%28svg%2Ewidth%29%20%7Bsvg%2EremoveAttribute%28%22width%22%29%7D%3B%0A%20%20%20%20%20%20%20%20if%28svg%2Eheight%29%20%7Bsvg%2EremoveAttribute%28%22height%22%29%7D%3B%0A%20%20%20%20%20%20%20%20svg%2Estyle%2Ewidth%20%3D%20%22100%25%22%3B%0A%20%20%20%20%20%20%20%20svg%2Estyle%2Eheight%20%3D%20%22100%25%22%3B%0A%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%3B%0A%0A%20%20%20%20makeResponsive%28el%29%3B%0A%0A%20%20%20%20instance%2EzoomWidget%20%3D%20svgPanZoom%28svg%2C%20x%2Econfig%29%3B%0A%0A%20%20%20%20%2F%2F%20add%20back%20viewBox%20that%20svgPanZoom%20removes%20to%20fill%20the%20container%0A%20%20%20%20svg%2EsetAttribute%28%0A%20%20%20%20%20%20%27viewBox%27%2C%0A%20%20%20%20%20%20%5B%270%27%2C%270%27%2Csvg%2EgetClientRects%28%29%5B0%5D%2Ewidth%2Csvg%2EgetClientRects%28%29%5B0%5D%2Eheight%5D%2Ejoin%28%27%20%27%29%0A%20%20%20%20%29%0A%0A%20%20%20%20%2F%2F%20set%20up%20a%20container%20for%20tasks%20to%20perform%20after%20completion%0A%20%20%20%20%2F%2F%20%20one%20example%20would%20be%20add%20callbacks%20for%20event%20handling%0A%20%20%20%20%2F%2F%20%20styling%0A%20%20%20%20if%20%28%21%28typeof%20x%2Etasks%20%3D%3D%3D%20%22undefined%22%29%20%29%7B%0A%20%20%20%20%20%20if%20%28%20%28typeof%20x%2Etasks%2Elength%20%3D%3D%3D%20%22undefined%22%29%20%7C%7C%0A%20%20%20%20%20%20%20%28typeof%20x%2Etasks%20%3D%3D%3D%20%22function%22%20%29%20%29%20%7B%0A%20%20%20%20%20%20%20%20%20%2F%2F%20handle%20a%20function%20not%20enclosed%20in%20array%0A%20%20%20%20%20%20%20%20%20%2F%2F%20should%20be%20able%20to%20remove%20once%20using%20jsonlite%0A%20%20%20%20%20%20%20%20%20x%2Etasks%20%3D%20%5Bx%2Etasks%5D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20x%2Etasks%2Emap%28function%28t%29%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20for%20each%20tasks%20call%20the%20task%20with%20el%20supplied%20as%20%60this%60%0A%20%20%20%20%20%20%20%20t%2Ecall%28%7Bel%3Ael%2CzoomWidget%3Ainstance%2EzoomWidget%7D%29%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20%2F%2F%20%20use%20expando%20property%20so%20we%20can%20access%20later%0A%20%20%20%20%2F%2F%20%20%20%20somewhere%20saw%20where%20expando%20can%20cause%20memory%20leak%20in%20IE%0A%20%20%20%20%2F%2F%20%20%20%20could%20also%20set%20in%20HTMLWidgets%2Ewidgets%5Bx%5D%20where%20matches%20el%0A%20%20%20%20el%2EzoomWidget%20%3D%20instance%2EzoomWidget%3B%0A%0A%20%20%7D%2C%0A%0A%20%20resize%3A%20function%28el%2C%20width%2C%20height%2C%20instance%29%20%7B%0A%0A%20%20%7D%0A%0A%7D%29%3B%0A"></script>
</head>
<body style="background-color:white;">
<div id="htmlwidget_container">
<div id="htmlwidget-440" style="width:600px;height:400px;" class="svgPanZoom"></div>
</div>
<script type="application/json" data-for="htmlwidget-440">{"x":{"svg":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"653px\" height=\"346px\" viewBox=\"0 0 653 346\" version=\"1.1\">\n <metadata xmlns:gridsvg=\"http://www.stat.auckland.ac.nz/~paul/R/gridSVG/\">\n <gridsvg:generator name=\"gridSVG\" version=\"1.4-0\" time=\"2015-08-07 15:46:30\"/>\n <gridsvg:argument name=\"name\" value=\"\"/>\n <gridsvg:argument name=\"exportCoords\" value=\"none\"/>\n <gridsvg:argument name=\"exportMappings\" value=\"none\"/>\n <gridsvg:argument name=\"exportJS\" value=\"none\"/>\n <gridsvg:argument name=\"res\" value=\"72\"/>\n <gridsvg:argument name=\"prefix\" value=\"\"/>\n <gridsvg:argument name=\"addClasses\" value=\"FALSE\"/>\n <gridsvg:argument name=\"indent\" value=\"TRUE\"/>\n <gridsvg:argument name=\"htmlWrapper\" value=\"FALSE\"/>\n <gridsvg:argument name=\"usePaths\" value=\"vpPaths\"/>\n <gridsvg:argument name=\"uniqueNames\" value=\"TRUE\"/>\n <gridsvg:separator name=\"id.sep\" value=\".\"/>\n <gridsvg:separator name=\"gPath.sep\" value=\"::\"/>\n <gridsvg:separator name=\"vpPath.sep\" value=\"::\"/>\n </metadata>\n <g transform=\"translate(0, 346) scale(1, -1)\">\n <g id=\"gridSVG\" fill=\"rgb(255,255,255)\" stroke=\"rgb(0,0,0)\" stroke-dasharray=\"none\" stroke-width=\"0.75\" font-size=\"12\" font-family=\"Helvetica, Arial, FreeSans, Liberation Sans, Nimbus Sans L, sans-serif\" opacity=\"1\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-miterlimit=\"10\" stroke-opacity=\"1\" fill-opacity=\"1\" font-weight=\"normal\" font-style=\"normal\">\n <g id=\"multiples_grid.1\">\n <defs>\n <clipPath id=\"multiples_grid::multiple_1.1.clipPath\">\n <rect x=\"0\" y=\"0\" width=\"652.99\" height=\"346\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1.1\">\n <g id=\"multiples_grid::multiple_1::maingrid.1\">\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp.1.clipPath\">\n <rect x=\"13.06\" y=\"20.35\" width=\"626.87\" height=\"305.29\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp.1\"/>\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::mapFrame.1.clipPath\">\n <rect x=\"13.06\" y=\"20.35\" width=\"626.87\" height=\"305.29\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n </g>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp.2\">\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp.3.clipPath\">\n <rect x=\"13.06\" y=\"20.35\" width=\"626.87\" height=\"305.29\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp.3\">\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend.1\">\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid.1\">\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.33.1.clipPath\">\n <rect x=\"20.26\" y=\"185.04\" width=\"188.06\" height=\"19.01\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.33.1\"/>\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.34.1.clipPath\">\n <rect x=\"20.26\" y=\"140.69\" width=\"188.06\" height=\"44.35\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.34.1\"/>\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.35.1.clipPath\">\n <rect x=\"20.26\" y=\"137.52\" width=\"188.06\" height=\"3.17\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.35.1\"/>\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.36.1.clipPath\">\n <rect x=\"20.26\" y=\"118.52\" width=\"188.06\" height=\"19.01\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.36.1\"/>\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.37.1.clipPath\">\n <rect x=\"20.26\" y=\"94.08\" width=\"188.06\" height=\"24.43\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.37.1\"/>\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.38.1.clipPath\">\n <rect x=\"20.26\" y=\"90.91\" width=\"188.06\" height=\"3.17\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.38.1\"/>\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.39.1.clipPath\">\n <rect x=\"20.26\" y=\"71.91\" width=\"188.06\" height=\"19.01\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.39.1\"/>\n <defs>\n <clipPath id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.40.1.clipPath\">\n <rect x=\"20.26\" y=\"27.55\" width=\"188.06\" height=\"44.35\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.40.1\"/>\n </g>\n </g>\n </g>\n </g>\n </g>\n <g id=\"multiples_grid::multiples_grid.1\">\n <g id=\"GRID.gTree.694.1\">\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1.1.clipPath\">\n <rect x=\"0\" y=\"0\" width=\"652.99\" height=\"346\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1.1\">\n <g id=\"multiple_1.1\">\n <g id=\"BG.1\">\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid.1\">\n <g id=\"outer_map.1\">\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp.1.clipPath\">\n <rect x=\"13.06\" y=\"20.35\" width=\"626.87\" height=\"305.29\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp.1\">\n <g id=\"aspvp.1\">\n <g transform=\"scale(1,-1)\">\n <g class=\"map_viewport\">\n <g id=\"mapElements.1\" transform=\"scale(1,-1)\">\n <g id=\"GRID.gTree.669.1\">\n <g id=\"tm_polygons_1_1_1.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_1.1.1\" points=\"453.13,253.32 453.56,252.73 452.74,252.51 452.06,252.13 450.37,251.89 448.85,251.47 448.18,250.58 448.76,249.71 449.19,248.69 448.64,247.82 448.89,247.02 448.64,246.27 447.16,246.34 448.08,244.96 447.21,244.43 446.83,243.17 447.19,241.9 446.7,241.31 446.08,241.51 444.95,241.23 444.9,240.64 443.73,240.64 443.09,239.44 443.38,237.63 441.5,236.74 440.37,236.92 440.14,236.45 439.15,236.73 437.63,236.41 434.8,237.5 435.88,239.43 435.51,240.8 434.26,241.16 433.89,242.5 433.06,244.17 433.5,245.32 432.76,245.62 432.88,247.14 432.97,249.71 434.71,248.93 435.81,249.2 435.92,250.13 437.06,250.44 437.78,251.06 437.7,252.69 438.89,253.08 438.96,253.8 439.81,253.26 440.28,253.2 441.13,253.19 442.39,252.76 442.92,252.51 443.85,253.16 444.47,252.77 444.72,253.7 445.64,253.66 445.79,253.95 445.74,254.76 446.2,255.46 447.14,255.01 447.15,254.39 447.63,254.3 447.94,252.6 448.72,251.93 449.14,252.36 449.76,252.56 450.47,253.47 451.56,253.32 453.13,253.32\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_2.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_2.1.1\" points=\"366.13,156.16 366.52,154.43 366.99,153.04 367.36,152.29 367.98,151.08 369.08,151.27 369.63,151.59 370.54,151.26 370.79,151.84 371.23,153.2 372.26,153.29 372.35,153.69 373.2,153.7 373.04,152.86 375.05,152.88 375.06,151.42 375.38,150.53 375.12,149.13 375.21,147.71 375.75,146.85 375.6,144.1 376.02,144.32 376.73,144.26 377.76,144.61 378.51,144.47 378.67,143.75 378.46,142.64 378.72,141.56 378.45,140.7 378.57,139.9 375.14,139.93 374.86,132.66 375.91,130.8 376.92,129.38 373.89,128.46 369.95,128.78 368.86,129.86 362.23,129.76 361.98,129.61 361.03,130.63 359.97,130.7 358.99,130.31 358.2,129.88 358.07,131.31 358.33,133.31 358.93,135.4 359.03,136.38 359.59,138.44 360,139.38 360.97,140.88 361.51,141.91 361.71,143.61 361.64,144.92 361.15,145.75 360.73,147.15 360.34,148.53 360.43,149.02 360.95,149.93 360.47,152.17 360.14,153.73 359.32,155.2 359.48,155.65 360.17,155.96 360.65,155.92 361.23,156.2 366.13,156.16\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_2.1.2\" points=\"359.68,156.61 359.25,156.37 358.82,158.12 359.5,159.12 360,159.51 360.62,158.71 360.01,158.23 359.74,157.63 359.68,156.61\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_3.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_3.1.1\" points=\"368.23,263.73 368.36,263.37 368.74,263.54 369.1,263.02 369.47,262.82 369.64,262.12 369.64,262.12 369.51,261.45 369.79,260.62 370.45,260.14 370.47,259.62 370.01,259.34 369.97,258.7 369.35,257.74 369.09,257.87 369.02,258.31 368.13,258.97 367.93,259.91 367.95,261.25 368.1,261.85 367.82,262.16 367.82,262.16 367.67,262.78 368.23,263.73\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_4.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_4.1.1\" points=\"428.84,228.6 429.28,226.86 428.47,226.85 428.52,225.42 428.84,225.11 428.17,224.68 428.27,223.78 427.91,222.86 427.97,221.97 427.7,221.5 422.73,222.62 421.87,224.86 421.75,225.37 422.02,225.48 422.15,224.87 423.37,225.22 424.7,225.16 425.68,225.1 426.59,226.58 427.61,227.99 428.44,229.34 428.84,228.6\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_5.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_5.1.1\" points=\"234.2,119.15 235.36,117.54 235.76,119.33 237.61,119.24 237.93,118.76 241.36,115.15 242.71,114.81 244.89,113.18 246.65,112.32 247.01,111.36 245.91,108.04 247.6,107.45 249.43,107.12 250.64,107.47 251.85,109.13 251.85,111.06 252.59,111.48 253.55,110.22 253.75,108.48 252.58,107.28 251.64,106.4 250.16,104.3 248.52,101.38 248.42,99.68 248.38,97.51 248.77,95.41 248.52,94.95 248.66,93.6 248.76,92.52 251.07,90.75 251.14,89.33 252.28,88.44 252.41,87.45 251.5,84.85 249.5,83.78 246.57,83.36 244.86,83.56 245.47,82.37 245.54,80.89 246.07,79.9 245.36,79.21 243.9,78.94 242.27,79.65 241.83,79.14 242.58,77.2 243.75,76.62 244.39,77.23 245.12,76.22 243.93,75.62 243.09,74.43 243.46,72.52 243.43,71.51 242.06,71.51 241.23,70.55 241.28,69.15 243.16,67.8 244.67,67.43 244.74,65.8 243.43,64.78 243.29,62.69 242.28,61.99 242.03,61.17 243.23,59.37 244.57,58.37 243.95,58.46 242.55,58.73 239.09,58.96 238.08,59.96 237.54,61.27 236.66,61.15 235.89,61.79 234.98,63.67 235.75,64.45 235.75,65.6 235.23,66.51 235.4,68.07 235.05,70.53 234.5,71.63 235.02,71.99 234.62,72.7 233.81,73.08 234.03,73.87 233.13,74.6 232.06,76.82 232.53,77.21 231.55,79.59 231.3,81.61 231.2,83.39 231.9,84.11 230.91,86.08 230.41,87.94 231.23,89.28 230.77,90.99 231.18,93.01 230.74,94.93 230.25,95.31 228.75,98.94 229.26,101.13 228.71,103.2 228.9,105.15 229.57,107.18 230.46,108.53 229.84,109.38 230.05,110.09 229.42,113.74 231,114.83 231.22,117.13 230.95,117.68 232.02,119.69 234.2,119.15\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_5.1.2\" points=\"250.28,53.61 249.03,53.53 248.07,54.1 247.23,54.15 245.78,54.15 244.11,57.88 244.98,57.1 246.22,55.84 248.44,54.84 250.53,54.43 250.28,53.61\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_6.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_6.1.1\" points=\"409.32,256.03 408.78,255.97 407.96,257.13 407.91,257.44 407.24,257.43 406.7,257.96 406.4,257.91 405.7,258.49 404.49,258.98 404.47,259.94 404.08,260.63 406.1,260.93 406.51,260.42 407.14,260.08 406.93,259.59 407.86,258.91 407.55,258.28 408.29,257.74 409.03,257.42 409.32,256.03\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_7.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_7.1.1\" points=\"265.97,40.18 265.6,39.89 264.55,40.1 263.61,39.97 262.94,39.65 262.25,39.31 261.89,38.92 262.05,38.4 262.43,37.92 263.29,37.49 262.65,37.19 261.57,37.09 261.2,36.67 260.77,36.27 260.4,35.74 260.55,35.28 261.35,34.79 262.26,34.41 263.45,34.13 264.63,33.76 265.46,33.31 266.05,32.88 266.74,32.44 267.59,32.07 268.26,31.66 269.25,30.67 269.92,30.28 270.37,29.88 271.08,29.48 271.41,28.96 271.18,28.56 270.85,28.24 269.52,28.11 269.37,27.79 269.04,27.48 267.78,27.15 266.51,27.01 265.39,26.82 264.17,26.63 263.77,26.28 262.1,26.25 260.17,26.28 258.58,26.22 256.78,26.22 257.6,25.89 259.43,25.75 260.93,25.53 262.01,25.25 261.22,25.01 259.31,25.09 258.14,24.89 258.61,24.59 259.07,24.3 260.69,24.07 261.39,23.82 263.15,23.57 265.47,23.47 267.61,23.3 269.41,23.1 271.58,22.91 274.22,22.82 276.93,22.66 278.92,22.5 281.08,22.32 282.51,22.08 283.36,21.89 284.17,22.07 285.47,22.22 286.86,22.38 288.66,22.52 290.16,22.67 292.59,22.69 295.1,22.61 297.25,22.48 297.57,22.72 298.73,22.89 301.22,22.9 303.04,23.03 304.78,23.16 306.78,23.25 308.9,23.36 310.32,23.52 309.44,23.75 308.83,23.99 308.65,24.25 306.69,24.22 304.67,24.11 302.67,24.11 302.17,24.37 301.87,24.92 302.22,25.09 303.58,25.27 305.22,25.45 306.35,25.69 307.49,25.92 308.26,26.25 309.65,26.4 311.03,26.51 311.74,26.58 313.38,26.62 314.91,26.73 316.17,26.9 317.4,27.11 318.52,27.32 319.94,27.61 320.82,27.91 321.77,28.19 322,28.56 320.78,28.79 321.07,29.19 321.74,29.5 322.86,29.7 324.04,29.94 325.13,30.26 325.95,30.67 326.43,31.17 327.22,31.47 328.6,31.4 329.2,31.05 330.57,31 330.57,31.4 331.12,31.83 332.37,31.72 332.69,31.32 334.07,31.26 335.54,31.45 336.97,31.58 338.28,31.51 338.78,31.07 340.03,31.43 341.21,31.62 342.52,31.77 343.81,31.92 345.01,32.18 346.31,32.35 347.34,32.6 348.08,33 348.92,32.71 350.15,32.86 350.92,32.33 351.52,31.94 352.87,32.16 353.46,32.6 354.7,32.91 356.22,32.84 356.59,32.42 357.63,32.84 358.92,32.97 360.3,33.02 361.53,33 362.8,32.86 364.04,32.79 364.48,32.42 365.13,32.09 366.46,32.29 367.84,32.33 369.16,32.33 370.46,32.35 371.67,32.51 372.95,32.64 374.09,32.95 375.27,33.15 376.51,33.27 377.53,33.58 378.43,34.23 379.26,34.62 380.42,34.44 380.71,34.02 381.6,33.74 382.87,33.83 383.51,33.42 384.24,33.13 385.57,33.4 386.22,33.9 387.39,34.11 388.81,34.51 390.06,34.67 391.57,34.9 392.64,35.17 393.77,35.45 394.85,35.72 395.9,35.57 397.22,36.01 398.18,36.35 399.3,36.32 400.46,36.62 400.94,37.06 402.15,37.41 403.29,37.67 404.63,37.87 405.81,37.97 406.85,37.89 407.92,37.77 408.69,37.41 408.48,36.87 409.28,36.45 409.79,36.1 411.14,35.96 411.71,35.62 412.46,35.28 413.56,35.21 414.69,35.45 416.08,35.96 417.02,35.69 418.09,35.55 419.11,35.4 420.2,35.31 421.4,35.31 421.37,34.06 421.07,33.76 420.49,33.24 419.11,32.95 417.83,32.53 417.61,32.09 418.92,32.11 418.37,31.68 417.41,31.28 416.46,30.84 417.01,30.51 418.22,30.41 419.71,30.59 420.75,31 421.53,31.4 422.49,31.75 423.52,32.07 424.19,32.46 425.32,33.02 426.16,33.13 427.53,33.17 428.83,33.31 430.2,33.49 431.21,33.95 431.96,34.39 433.19,34.83 434.64,35.14 435.87,35.38 436.9,35.79 437.78,36.01 438.83,36.2 439.92,36.08 441.12,36.2 442.44,36.35 443.69,36.27 444.9,36.62 446.31,37.47 446.43,37.11 446.44,36.52 447.21,36.27 448.27,36.18 449.58,36.32 450.71,36.23 451.82,36.2 452.7,36.32 453.64,36.25 454.28,35.98 455.54,36.15 456.84,36.15 458.14,36.32 459.2,36.15 460.46,36.57 461.54,36.99 462.75,37.34 465.3,38.3 465.91,38.12 466.46,37.77 466.77,37.31 467.44,36.54 468.6,36.52 469.71,36.52 471.19,36.67 472.7,36.84 474.11,37.19 475.39,37.57 476.81,37.62 478.05,37.89 478.71,37.64 478.84,37.24 479.21,36.84 480.6,36.89 481.02,36.57 482.06,36.25 483.41,36.13 484.79,36.23 486.25,36.62 487.58,37.01 488.81,37.11 489.67,36.94 490.76,36.82 492.17,37.01 493.27,37.01 494.17,36.89 495.11,36.77 496.52,36.99 498.1,37.19 499.41,37.24 500.79,37.24 502.09,37.36 503.33,37.47 504.56,38.1 505.35,38.64 505.62,38.28 505.02,37.69 504.66,37.16 504.54,36.74 505.23,36.52 506.72,36.59 508.34,36.62 509.55,36.69 511.14,36.69 512.31,36.72 513.83,36.67 515.02,36.57 515.25,36.18 514.26,35.72 514.44,35.36 515.24,35.07 516.05,34.76 517.21,34.55 518.48,34.37 519.35,34.18 520.65,34.16 522.14,34.55 522.59,34.23 522.8,33.86 523.32,33.58 524.52,33.47 525.61,33.33 525.29,32.88 526.07,32.62 526.14,32.22 527.06,32.05 528.44,32.07 529.55,32.01 530.97,32.03 532.16,31.94 533.12,31.79 533.73,31.53 534.43,31.32 534.5,31 533.38,30.59 531.88,30.22 530.23,29.76 528.93,29.41 527.35,29 525.49,28.84 523.94,28.5 521.96,28.3 520.47,27.93 518.76,27.59 517.17,27.3 515.67,26.94 514.44,26.62 513.17,26.23 512.22,25.92 511.79,25.61 511.03,25.31 510.58,25.04 512.15,24.94 511.38,24.62 509.1,24.5 506.94,24.35 504.89,24.32 502.51,23.92 501.07,23.61 499.64,23.37 498.1,23.14 498.52,22.94 497.89,22.7 497.7,22.49 497.94,22.31 498.4,22.15 498.94,21.99 500.22,21.84 499.24,21.61 501.31,21.52 501.26,21.49 501.05,21.37 504.43,21.47 505.59,21.34 506.42,21.25 495.57,20.35 460.79,20.35 426,20.35 391.22,20.35 356.43,20.35 321.64,20.35 286.86,20.35 252.07,20.35 217.29,20.35 182.5,20.35 171.65,21.25 171.73,21.25 170.7,21.48 173.38,21.35 173.38,21.36 173.37,21.5 173.53,21.49 173.66,21.49 176.32,21.32 176.22,21.49 176.26,21.51 178.49,21.59 180.09,21.49 180.89,21.44 183.29,21.3 186.69,21.21 189.69,21.09 193.92,21.01 195.8,21.11 200.25,21.04 203.31,20.93 204.95,21.03 206.8,21.13 205.79,21.3 202.02,21.32 198.38,21.41 196.54,21.58 193.42,21.68 192.37,21.88 191.63,22.09 191,22.28 189.73,22.5 187.37,22.65 185.69,22.86 183.32,23.04 185.89,23.01 187.78,23.1 190.07,22.9 191.09,23.08 191.8,23.31 191.78,23.52 190.42,23.79 188.43,23.98 186.21,24.18 183.96,24.22 181.77,24.32 179.53,24.39 177.92,24.66 175.78,24.89 174.06,25.16 170.84,26.07 171.6,25.99 173.35,25.73 174.84,25.81 176.18,25.92 178.11,25.58 179.54,25.65 180.42,25.83 181.1,26.05 181.52,26.33 182.9,26.41 182,26.73 180.77,27.06 180.28,27.37 181.29,27.53 182.67,27.23 183.89,27.41 184.59,27.64 186.11,27.66 187.37,27.75 188.34,27.97 189.07,28.17 189.96,28.37 190.94,28.32 191.86,28.24 193.22,28.37 195.04,28.21 196.51,28.22 197.69,28.35 199.37,28.26 201.19,28.17 202.65,28.21 204.28,28.19 205.95,28.17 207.39,28.21 207.97,28.49 209.03,28.64 210.8,28.43 211.81,28.6 212.39,28.94 213.65,28.64 214.65,28.3 215.94,27.99 216.57,28.26 218.52,27.91 220.19,27.8 221.91,27.55 223.35,27.61 224.45,27.77 226.16,27.73 227.86,27.61 229.63,27.45 229.53,27.84 228.31,28.15 227.22,28.49 225.67,28.56 224.46,28.92 223.64,29.29 222.08,30.04 223.15,29.9 224.72,29.84 226.09,29.9 227.64,29.74 229.22,29.44 230.23,29.09 231.82,29.04 233.06,29.17 234.31,29.37 235.52,29.48 236.99,29.25 238.37,29.33 238.31,30.1 239.81,29.64 241.34,29.46 242.62,29.56 244.04,29.17 245.56,29.13 247.06,29.02 248.65,28.81 249.07,29.17 249.08,29.52 250.66,29.13 252.08,29.23 253.46,29.02 254.61,28.69 255.98,28.79 256.89,29 257.74,29.25 258.94,29.39 260.4,29.5 261.68,29.64 262.56,29.86 262.91,30.18 262.74,30.63 262.2,31.07 261.45,31.49 260.66,31.92 259.91,32.35 259.27,32.75 258.81,33.2 258.54,33.65 258.74,34.09 258.81,34.58 258.63,35.05 257.99,35.57 257.48,36.06 257.65,36.62 258.05,36.99 258.5,37.47 259.06,37.87 259.79,38.25 259.9,38.82 260.35,39.18 260.91,39.52 262.05,39.6 262.58,40.02 263.3,40.29 264.23,40.45 264.94,40.8 265.42,41.23 266.31,41.39 267.24,41.04 267.02,40.58 265.97,40.18\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_7.1.2\" points=\"291.92,25.14 293.51,24.82 294.39,24.37 294.82,24.07 295.23,23.72 293.9,23.52 292.47,23.36 290.77,23.21 288.85,23.09 286.44,23.12 284.83,23.33 284.64,23.6 286.55,23.78 287.14,24 287.42,24.3 287.57,24.57 287.92,24.83 288.26,25.14 288.26,25.14 288.79,25.14 290.18,25.31 291.92,25.14\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_7.1.3\" points=\"278.83,23.72 279.04,23.38 279.21,23.1 276.98,23.19 274.81,23.15 273.2,23.36 273.15,23.38 272.28,23.57 274.59,23.55 276.86,23.48 277.18,23.75 277.36,23.99 278.83,23.72\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_7.1.4\" points=\"260.14,31.81 260.73,31.32 260.92,30.9 260.99,30.5 259.8,30.36 258.74,30.16 257.24,30.18 257.37,30.59 256.19,30.44 255.07,30.3 253.88,30.61 253.36,31.04 254.18,31.46 254.18,31.46 254.85,31.59 256.22,31.55 256.02,32.11 255.7,32.52 254.85,33.44 255.04,33.99 255.98,34.17 256.97,33.74 257.61,33.31 258.56,32.79 259.38,32.31 260.14,31.81\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_7.1.5\" points=\"226.38,30.75 227.82,30.61 228.9,30.73 230.38,30.14 229.38,30.22 228.07,30.18 226.62,30.22 225.18,30.16 223.73,30.36 222.51,30.79 222.51,30.79 222.95,30.98 224.61,30.84 226.38,30.75\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_7.1.6\" points=\"203.92,29.15 205.64,29 206.66,29.17 206.66,28.82 206.08,28.58 204.4,28.65 202.64,29 202.64,29 202.26,29.33 203.92,29.15\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_7.1.7\" points=\"199.03,29.17 201.48,28.79 200.75,28.82 199.13,28.92 197.07,29.19 197.07,29.19 197.47,29.4 199.03,29.17\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_7.1.8\" points=\"176.69,24.08 175.1,23.99 172.81,24.23 171.26,24.49 171.07,24.53 169.67,24.73 169.67,24.73 169.3,25.01 171.65,24.89 173.51,24.66 175.22,24.4 176.69,24.08\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_8.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_8.1.1\" points=\"438.37,62.97 436.16,62.85 436.49,63.8 436.98,64.54 437.22,64.91 437.92,64.34 439.17,64.12 439.09,63.78 438.37,62.97\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_9.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_9.1.1\" points=\"575.02,137.95 575.29,136.15 576.5,137.01 576.87,136.05 577.49,135.15 577.12,134.14 577.07,132.19 577.08,131.05 577.43,130.78 577.43,128.84 577,127.67 577.15,126.14 578.62,124.96 579.49,123.89 580.31,122.91 579.95,122.37 580.48,120.97 580.4,118.56 581.19,119.04 581.55,118.08 582.05,118.42 581.58,116.07 582.28,114.72 582.74,113.87 583.37,112.09 583.18,110.33 582.76,109.09 582.13,107.75 582.16,105.91 581.29,104 580.6,103 579.35,101.1 578.84,99.88 577.84,98.36 576.25,96.44 574.6,95.41 573.24,93.8 572.21,92.77 570.84,90.98 569.71,89.96 568.51,88.43 567.55,87.02 567.27,86.38 566,85.68 564.26,85.61 562.39,84.78 561.26,84.01 559.85,83.15 559.1,84.03 558.38,84.38 559.19,85.43 558.15,85.05 556.02,83.6 555.01,84.14 554.33,84.46 553.54,84.6 552.39,85.18 552.07,86.43 552.58,87.97 552.74,89 552.4,89.83 551.04,90.08 552.03,91.08 552.37,92.61 550.95,91.18 549.4,90.8 550.74,91.95 551.53,93.14 552.59,94.16 553.15,95.71 551.1,93.93 549.81,93.22 548.47,91.57 547.66,92.42 548.2,93.52 547.89,95.03 547.41,95.82 547.91,96.3 546.44,97.58 545.36,97.64 544.27,98.66 541.4,98.46 539.08,97.71 537.03,97.01 535.6,97.15 533.53,96.07 531.99,95.58 531.25,94.49 530.34,93.64 529.01,93.59 527.96,93.41 526.74,93.78 525.54,93.56 524.44,93.46 523.08,92.36 522.67,92.45 521.66,91.86 520.66,91.21 519.57,91.29 518.54,91.29 517.42,92.61 516.74,93 517.23,94.2 518.1,94.48 518.54,94.96 518.77,95.71 519.48,97.17 519.75,98.42 519.66,100.56 519.8,101.78 520.26,103 520.07,104.4 520.23,105.03 519.79,105.89 520.09,107.58 519.67,109.31 519.71,110.24 520.15,109.29 520.16,111.32 520.78,110.68 521.02,109.84 521.3,110.96 520.97,112.68 521,113.38 520.79,114.03 521.29,115.31 521.75,115.86 522.24,116.96 522.37,118.26 523.4,119.86 523.14,118.17 524.17,119.7 525.65,120.44 526.65,121.4 528.07,122.22 528.84,122.39 529.23,122.12 530.69,122.95 531.72,123.2 532.08,123.69 532.55,123.9 533.44,123.84 535.28,124.5 536.38,125.5 537.04,126.71 538.23,127.85 538.48,128.76 538.76,129.99 540.25,131.92 540.58,129.96 541.36,130.41 540.98,131.48 541.69,132.59 542.32,132.09 542.83,133.83 543.91,134.95 544.45,135.85 545.34,136.24 545.47,136.88 546.15,136.61 546.27,137.19 547.04,137.51 547.89,137.82 548.93,136.77 549.62,135.42 550.65,135.4 551.65,135.19 551.52,136.44 552.6,138.28 553.43,138.88 553.26,139.45 554.17,140.76 555.28,141.57 556.09,141.3 557.53,141.73 557.66,142.91 556.56,143.67 557.48,144 558.5,143.43 559.25,142.49 560.55,141.9 561.05,142.13 561.98,141.43 563.03,142.08 563.62,141.88 564.07,142.33 564.66,141.19 564.04,139.96 563.27,139.03 562.69,138.95 562.73,138.04 562.06,136.89 561.28,135.77 561.28,135.12 562.36,133.86 563.48,133.13 564.17,132.35 565.08,131 565.54,131 566.27,130.42 566.37,129.72 567.76,128.95 569.01,129.73 569.59,130.95 570.13,131.95 570.59,133.2 571.44,135.02 571.41,136.12 571.65,136.79 571.69,138.1 572.19,139.83 572.58,140.29 572.45,141.06 573.03,142.28 573.52,143.54 573.66,144.2 574.39,145.07 574.7,143.94 574.61,142.49 574.98,142.21 574.9,141.25 575.31,140.08 575.22,138.78 575.02,137.95\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_9.1.2\" points=\"556.4,79.67 557.43,78.99 558.41,79.26 559.81,79.64 560.62,79.51 559.25,77.19 558.31,76.52 557.13,74.98 556.97,75.5 555.04,74.17 554.81,74.27 553.95,74.33 554.12,75.97 554.74,77.25 554.94,78.94 555.53,79.84 556.4,79.67\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_10.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_10.1.1\" points=\"363.2,274.75 363.1,274.52 363.3,273.9 363.26,273.15 362.46,273.15 362.77,272.76 362.39,271.58 362.14,271.26 360.88,271.22 360.19,270.8 358.98,270.94 356.89,271.42 356.52,272.06 355.12,271.74 354.97,271.39 354.08,271.65 353.35,271.7 352.68,272.04 352.88,272.48 352.8,272.81 353.23,272.91 353.99,272.4 354.16,272.88 355.43,272.81 356.44,273.13 357.13,273.08 357.6,272.7 357.71,273.01 357.43,274.2 357.93,274.43 358.37,275.25 359.47,274.68 360.21,275.41 360.7,275.54 361.85,275 362.51,275.09 363.2,274.75\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_11.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_11.1.1\" points=\"409.69,260.88 410.38,260.74 410.53,261.24 411.26,262.03 411.26,262.03 412.26,261 413.31,259.61 414.02,259.52 414.59,258.99 413.39,258.83 413.44,257.29 413.32,256.59 412.85,256.12 413.08,255.13 412.72,255.03 411.58,256.08 411.92,257.07 411.36,257.65 410.82,257.5 409.32,256.03 409.03,257.42 408.29,257.74 407.55,258.28 407.86,258.91 406.93,259.59 407.14,260.08 406.51,260.42 406.1,260.93 406.4,261.25 407.62,260.69 408.45,260.57 408.61,260.8 407.67,261.86 408,262.13 408.43,262.06 409.69,260.88\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_11.1.2\" points=\"406.7,257.96 407.24,257.43 407.91,257.44 407.96,257.13 408.78,255.97 407.7,256.24 406.77,257.16 406.4,257.91 406.7,257.96\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_12.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_12.1.1\" points=\"389.78,163.31 390.13,162.78 390.14,162.02 389.73,161.54 389.07,160.32 388.45,159.48 388.28,159.45 388.29,159.55 387.7,161.77 387.69,162.18 387.28,163.24 388.29,163.05 388.8,164.38 389.69,164.23 389.69,164.23 389.78,163.31\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_13.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_13.1.1\" points=\"345.98,279.83 346.89,279.07 347.67,278.67 347.55,277.48 347.19,277.41 347.07,276.42 345.81,277.23 345.09,277.09 344.08,277.92 343.42,278.63 342.77,278.65 342.55,279.27 343.67,279.61 343.67,279.61 344.69,279.47 345.98,279.83\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_14.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_14.1.1\" points=\"344.99,196.93 344.93,196.17 345.31,194.8 344.99,193.87 345.16,193.25 344.36,191.82 343.86,191.11 343.55,189.65 343.59,188.17 343.5,184.43 342.13,184.16 341.72,185.76 341.79,191.09 341.46,191.56 341.39,192.7 340.82,193.51 340.31,194.19 340.52,195.4 341.09,195.66 341.42,196.67 342.23,196.89 342.59,197.58 343.14,198.25 343.73,198.26 344.99,196.93\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_15.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_15.1.1\" points=\"339.65,204.43 339.52,203.32 339.74,202.28 340.67,200.78 340.72,199.67 342.62,199.15 342.59,197.58 342.23,196.89 341.42,196.67 341.09,195.66 340.52,195.4 339.08,195.45 338.31,195.64 337.78,195.26 337.05,195.43 334.18,195.32 334.14,194.01 334.36,192.28 333.23,192.87 332.46,192.78 331.88,192.2 331.14,192.69 330.85,193.45 330.11,193.96 330.01,195.3 330.46,196.27 330.43,197.05 331.75,198.96 332,200.54 332.45,201.1 333.24,200.79 333.93,201.25 334.16,201.84 335.44,202.87 335.75,203.58 337.29,204.53 338.19,204.86 338.6,204.42 339.65,204.43\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_16.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_16.1.1\" points=\"488.6,220.48 488.86,218.88 488.23,219.22 488.65,217.42 487.99,218.59 487.69,219.73 487.19,220.8 486.27,222.09 484.77,222.18 485.09,221.27 484.81,220.03 484.04,220.48 483.88,220.07 483.38,220.32 482.72,220.52 482.13,222.35 481.26,224.01 481.28,225.34 480.18,225.93 480.37,226.73 481.2,227.55 479.81,228.71 480.06,230.19 481.52,229.25 482.31,229.14 482.77,227.62 484.36,227.32 485.83,227.35 486.83,226.98 486.48,225.11 485.79,224.99 485.54,223.73 486.65,222.58 486.63,224 487.08,224 488.6,220.48\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_17.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_17.1.1\" points=\"381.02,265.68 380.36,264.89 379.99,263.52 380.61,262.41 379.3,262.67 377.86,262.06 377.95,261.09 376.61,260.91 375.49,261.59 374.35,261.05 373.25,261.11 373.01,262.4 372.21,263.02 372.43,263.29 372.24,263.52 372.43,264.13 372.93,264.73 372.13,265.56 371.92,266.26 372.24,266.69 372.74,265.9 373.3,266.04 374.46,265.75 376.63,265.65 377.3,266.13 378.97,266.57 380.13,265.88 381.02,265.68\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_18.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_18.1.1\" points=\"216.49,230.51 215.92,228.96 215.68,229.24 215.92,230.38 215.37,231.24 215.42,231.49 216.49,230.51\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_18.1.2\" points=\"215.18,230.49 213.38,230.14 213.42,230.94 214.2,231.12 215.24,231.05 215.18,230.49\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_18.1.3\" points=\"214.52,224.3 214.11,224.19 213.92,225.46 213.43,226.1 214.03,227.49 214.49,227.4 214.73,225.58 214.52,224.3\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_19.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_19.1.1\" points=\"363.8,268.57 365.08,268.26 366.08,268.28 366.78,267.87 366.78,267.87 367.31,267.87 367.02,267.04 367.79,266.31 367.66,265.42 367.32,265.33 367.06,265.16 366.62,264.71 366.49,263.66 365.13,264.38 364.51,265.18 363.91,265.61 363.18,266.32 362.82,266.91 362.03,267.79 362.28,268.57 362.84,268.14 363.12,268.53 363.8,268.57\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_20.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_20.1.1\" points=\"378.41,287.27 378.68,286.87 379.35,287.06 380.75,286.67 381.05,285.91 380.85,285.47 381.93,284.38 382.55,284.08 382.53,283.78 383.52,283.48 384.01,283.04 383.55,282.67 382.42,282.73 382.19,282.57 382.63,282.01 383.18,280.91 383.18,280.91 382.01,280.81 381.65,280.43 381.72,279.56 381.14,279.73 379.89,279.65 379.45,280.05 378.98,279.75 378.42,280 377.31,280.04 375.69,280.45 374.26,280.59 373.19,280.55 372.5,280.08 371.84,280.01 371.7,280.78 371.16,281.57 371.94,281.92 371.85,282.6 371.37,283.24 371.2,283.98 372.52,283.97 373.9,284.59 374.06,285.52 375.08,286.05 374.82,286.78 375.59,287.05 376.91,287.67 378.41,287.27\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_21.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_21.1.1\" points=\"193.42,206.61 192.93,206.61 193.39,209.18 193.66,210.98 193.69,211.31 193.9,211.41 194.16,211.15 194.94,212.51 195.25,212.54 195.21,212.21 195.52,212.2 195.4,211.58 195,210.6 195.1,210.25 194.82,209.44 194.89,209.23 194.55,208.08 194.15,207.48 193.85,207.4 193.42,206.61\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_22.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_22.1.1\" points=\"244.7,123.4 244.6,124.09 242.97,125.24 241.46,125.27 238.7,124.61 238.14,122.64 238.24,121.44 237.93,118.76 237.61,119.24 235.76,119.33 235.36,117.54 234.2,119.15 232.02,119.69 230.95,117.68 229.83,117.38 228.78,120.45 227.58,122.96 227.83,125.13 226.86,126.08 226.46,127.71 225.49,129.25 226.26,131.7 225.37,133.61 225.67,134.38 225.3,135.23 225.84,136.37 225.7,138.32 225.65,139.93 225.95,140.71 224.26,144.41 225.5,144.22 226.35,144.27 226.67,144.96 228.06,145.9 228.87,146.77 231.02,147.16 230.94,145.43 231.2,144.54 231.16,143 233.09,140.93 234.97,140.56 235.67,139.7 236.82,139.24 237.55,138.58 238.58,138.6 239.59,137.92 239.76,136.6 240.13,135.93 240.23,134.94 239.75,134.9 240.61,132.25 243.75,132.16 243.62,130.84 243.88,129.95 244.83,129.31 245.34,127.91 245.22,126.13 244.87,125.14 245.16,123.86 244.7,123.4\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_23.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_23.1.1\" points=\"245.04,174.28 245.94,174.09 246.1,174.57 245.82,175.03 246,175.71 246.66,175.5 247.45,175.74 248.4,175.24 249.12,174.76 249.64,175.4 250.01,175.3 250.23,174.64 251.03,174.81 251.68,175.69 252.21,177.41 253.23,179.54 253.79,179.65 254.18,178.36 255.07,174.29 255.95,173.9 255.99,172.29 254.73,170.38 255.25,169.67 258.19,169.31 258.25,166.97 259.51,168.5 261.61,167.66 264.38,166.24 265.2,164.87 264.94,163.58 266.86,164.3 270.11,163.07 272.59,163.16 275.07,161.23 277.23,158.62 278.52,157.95 279.94,157.86 280.55,157.12 281.17,154.16 281.47,152.76 280.91,148.93 280.11,147.42 277.89,144.21 276.94,141.6 275.8,139.61 275.39,139.57 275.01,137.88 275.34,133.6 275.09,130.09 275.01,128.6 274.55,127.71 274.46,124.69 273.03,121.76 272.94,119.46 271.71,118.49 271.45,117.16 269.7,117.17 267.25,116.32 266.21,115.33 264.48,114.69 262.78,112.93 261.67,110.76 261.63,109.13 262.04,107.93 262.02,105.74 261.8,104.69 260.85,103.51 259.65,99.75 258.53,98.07 257.62,97.08 257.24,95.09 256.42,93.89 255.79,95.08 256.31,96.07 255.17,97.5 253.75,98.67 251.92,100.03 251.35,99.96 249.5,101.61 248.52,101.38 250.16,104.3 251.64,106.4 252.58,107.28 253.75,108.48 253.55,110.22 252.59,111.48 251.85,111.06 252.01,112.33 252.06,113.63 251.92,114.84 251.29,115.24 250.73,114.88 250.12,114.98 249.83,115.83 249.44,117.86 249.07,118.52 247.91,119.13 247.3,118.69 245.55,119.12 245.32,122.15 244.7,123.4 245.16,123.86 244.87,125.14 245.22,126.13 245.34,127.91 244.83,129.31 243.88,129.95 243.62,130.84 243.75,132.16 240.61,132.25 239.75,134.9 240.23,134.94 240.13,135.93 239.76,136.6 239.59,137.92 238.58,138.6 237.55,138.58 236.82,139.24 235.67,139.7 234.97,140.56 233.09,140.93 231.16,143 231.2,144.54 230.94,145.43 231.02,147.16 228.87,146.77 228.06,145.9 226.67,144.96 226.35,144.27 225.5,144.22 224.26,144.41 223.35,144.01 222.59,144.28 222.47,147.79 221.2,146.43 219.74,146.48 219.04,147.72 217.93,147.85 218.22,148.85 217.22,150.25 216.43,152.34 216.84,152.77 216.8,153.75 217.77,154.42 217.56,155.67 217.95,156.48 218.03,157.57 219.88,159.15 221.23,159.6 221.44,159.95 222.94,159.84 223.58,166.23 223.61,167.24 223.34,168.57 222.6,169.42 222.61,171.12 223.55,171.5 223.88,171.26 223.94,172.15 222.97,172.39 222.96,173.85 226.2,173.8 226.76,174.6 227.21,173.87 227.52,172.49 227.84,172.78 228.75,171.54 230.04,171.7 230.37,172.41 231.61,172.95 232.3,173.34 232.5,174.32 233.69,174.99 233.61,175.48 232.2,175.68 232,177.14 232.09,178.71 231.36,179.31 231.68,179.52 232.9,179.23 234.21,178.64 234.7,179.19 235.9,179.56 237.78,180.43 238.41,181.31 238.21,181.97 239.08,182.07 239.45,181.54 239.21,180.52 239.77,180.16 240.13,179.08 239.65,178.26 239.35,176.28 239.76,175.1 239.87,174.02 240.89,172.93 241.7,172.81 241.89,173.27 242.41,173.37 243.17,173.78 243.72,174.4 244.63,174.2 245.04,174.28\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_24.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_24.1.1\" points=\"528.71,180.4 529.33,181.27 530.67,182.55 530.66,181.4 530.63,179.91 529.83,179.99 529.52,179.2 528.71,180.4\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_25.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_25.1.1\" points=\"484.38,233.07 485.19,232.38 485.39,231.05 484.11,230.98 482.73,231.13 481.81,230.79 480.18,231.61 480.05,232.05 480.73,233.66 481.45,234.21 482.7,233.71 483.55,233.66 484.38,233.07\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_26.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_26.1.1\" points=\"380.25,128.9 380.8,127.09 381.11,126.69 381.56,125.38 383.28,122.91 383.97,122.67 383.93,121.88 384.33,120.46 385.56,120.12 386.53,119.12 384.15,117.48 382.61,115.82 381.99,114.35 381.46,113.52 380.58,113.35 380.24,112.3 380.03,111.61 378.98,111.1 377.69,111.21 376.96,111.83 376.3,112.09 375.49,111.58 375.05,110.54 374.26,109.88 373.41,108.91 372.26,108.68 371.94,109.45 372.16,110.78 371.31,112.86 370.89,113.19 371.16,119.65 372.76,119.73 373.11,127.73 374.32,127.8 376.86,128.6 377.45,127.66 378.53,128.55 379.02,128.56 379.96,129.07 380.25,128.9\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_27.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_27.1.1\" points=\"378.58,189.91 379.72,189 380.65,188.07 380.67,187.31 381.81,186.11 382.51,185.1 382.95,183.71 384.21,182.79 384.48,182.05 383.94,181.8 382.87,181.86 381.62,182.1 381.01,181.9 380.76,181.34 380.23,181.27 379.57,181.76 377.73,180.6 376.97,180.83 376.74,180.65 376.26,179.25 375.02,179.7 373.8,179.93 372.73,180.79 371.36,181.58 370.48,180.83 369.84,179.65 369.7,178.02 368.63,178.15 367.5,178.54 366.52,177.31 365.66,175.14 365.48,175.82 365.4,176.88 364.64,177.63 364.02,178.83 363.87,179.67 363.08,180.88 363.21,181.58 363.04,182.56 363.15,184.36 363.55,184.78 364.36,187.13 365.73,187.31 366.03,187.9 366.3,187.86 366.72,187.33 368.8,188.22 369.49,189.12 370.34,189.93 370.17,190.75 370.63,190.96 372.23,190.82 373.77,191.89 374.92,194.41 375.74,195.34 376.77,195.74 376.98,194.75 377.96,193.31 377.99,192.36 377.74,191.4 377.86,190.68 378.44,190.02 378.58,189.91\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_28.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_28.1.1\" points=\"273.39,317.76 275.86,317.72 277.78,317.66 279.25,317.52 278.92,317.38 276.07,317.15 273.47,317.03 272.32,316.9 274.48,316.91 271.45,316.55 269.5,316.37 266.81,315.83 264.52,315.72 263.62,315.58 260.39,315.51 261.64,315.42 260.71,315.29 260.95,314.93 259.54,314.67 257.58,314.45 256.59,314.14 254.73,313.9 254.59,313.72 256.45,313.75 256.17,313.55 252.57,313.04 250.12,313.28 246.77,313.14 245.34,313.25 243.4,313.29 243.95,313.69 246.22,313.88 246.73,314.45 247.47,314.51 249.67,314.17 249.13,314.67 247.71,314.81 249.11,315.1 251.27,315.27 252.05,315.52 251.17,315.79 251.48,316.13 254.17,316.11 254.82,316.03 256.89,316.27 254.8,316.35 251.2,316.3 249.94,316.52 249.73,316.76 249.03,316.93 249.34,317.13 251.1,317.23 252.29,317.25 254.44,317.34 256.42,317.53 257.55,317.51 258.19,317.36 259.7,317.64 261.19,317.72 263.07,317.77 266.05,317.79 266.42,317.74 269.4,317.82 271.39,317.79 273.39,317.76\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.2\" points=\"242.09,310.22 242.17,309.58 244.25,310.4 247.59,310.8 248.24,309.77 247.28,309.09 249.87,309.4 251.4,309.8 253.33,309.28 254.37,308.78 254.04,308.31 256.41,308.56 256.94,307.86 259.33,307.43 259.94,306.97 260.15,305.9 257.53,305.35 259.72,304.56 261.41,304.3 262.33,303.16 264.18,303.07 263.21,302.18 260.07,300.66 258.92,301.23 257.85,302.47 256.16,302.31 255.48,301.57 256.25,300.81 257.53,300.2 257.81,299.84 257.79,298.49 256.75,297.49 255.39,297.87 252.93,298.97 253.95,297.78 254.76,296.93 254.67,296.43 251.56,297 249.36,297.82 248.28,298.5 248.99,298.88 247.61,299.59 246.27,300.24 246.01,299.85 242.25,299.63 241.55,300.1 243.12,301.07 245.46,301.1 248.12,301.27 248.06,301.73 248.99,302.37 251.53,303.6 251.64,304.15 251.53,304.57 250.21,305.15 248.17,305.55 249.2,305.85 248.64,306.57 247.67,306.64 247.13,307.02 246.17,306.69 243.91,306.54 239.92,306.8 237.82,307.13 236.13,307.3 235.62,307.69 237.41,308.19 235.79,308.19 236.77,309.27 238.84,310.19 240.53,310.6 243.76,310.86 242.09,310.22\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.3\" points=\"260.25,278.46 258.82,276.92 259.93,277.52 260.76,277.14 260.07,276.52 261.17,276.03 261.96,276.47 263.21,275.92 262.38,274.61 263.46,274.91 263.37,273.96 263.5,272.83 262.45,271.21 261.78,271.14 260.93,271.49 261.66,272.99 261.33,273.22 259.2,271.64 258.36,271.7 259.63,272.56 258.38,273 256.81,272.9 254.04,272.95 253.99,273.49 255.08,274.13 254.62,274.62 256.16,275.7 258.55,278.52 259.76,279.51 261.17,280.11 261.79,280.03 261.36,279.56 260.25,278.46\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.4\" points=\"232.78,306.26 231.46,305.06 234.04,305.98 234.64,305.22 233.38,304.33 233.72,303.5 235.84,304.39 237.74,305.42 239.14,306.7 240.71,306.61 242.27,306.44 243.26,305.87 242.77,305.28 241.27,304.64 241.51,303.99 240.81,303.39 237.65,302.5 235.78,302.31 234.87,302.69 233.93,302.05 231.77,300.95 230.9,300.37 228.68,299.46 226.82,299.37 225.33,298.79 224.49,297.89 222.87,297.71 220.37,296.57 217.66,294.94 216.24,293.77 214.84,292.02 216.58,291.77 216.15,290.32 215.95,289.13 218.02,289.45 220.05,288.76 221,288.16 221.49,287.4 222.91,286.95 223.94,286.27 226.12,286.17 227.5,286.02 226.49,284.59 226.01,282.91 226.04,281.01 227.31,279.37 228.65,279.94 230.26,281.7 230.89,284.36 230.39,285.23 232.97,286 235.12,287.14 236.47,288.26 236.95,289.32 236.82,290.64 235.91,291.8 238.44,293.39 238.73,294.73 239.83,296.99 240.94,297.31 242.85,296.93 244.07,296.79 245.37,297.16 246.24,296.68 247.28,295.85 247.32,295.29 249.55,295.18 248.79,293.94 248.16,292.04 249.23,291.8 249.71,290.89 252.06,291.75 254.18,293.42 255.41,294.11 255.72,292.77 256.47,290.82 257.07,288.94 256.09,287.94 257.49,287.04 258.32,286.11 260.31,285.69 260.98,285.16 260.99,283.76 261.98,283.53 262.3,282.9 261.73,280.99 260.5,280.34 259.29,279.74 256.78,279.12 254.51,277.68 252.03,277.4 249.15,277.77 247.04,277.78 245.54,277.66 243.87,276.39 241.76,275.6 238.81,273.21 236.53,271.52 237.87,271.82 241.05,274.22 244.59,275.71 246.78,275.89 247.72,275.01 245.95,273.8 245.73,271.83 245.74,270.44 247.33,269.51 249.81,269.78 251.9,271.86 251.59,270.52 252.32,269.85 250.16,268.63 246.59,267.51 244.91,266.74 242.85,265.37 241.78,265.51 242.22,267.12 245.24,268.68 242.89,268.62 241.2,268.39 240.6,269.45 241.47,271.97 241.02,272.5 239.94,272.19 239.64,272.67 238.04,271.28 237.09,269.84 236.28,268.99 235.56,268.7 235.06,268.61 234.75,268.15 232.06,268.14 229.84,268.13 229.06,267.78 227.09,266.47 227.08,266.5 226.82,266.63 226.26,266.37 225.7,265.95 225.18,266.31 223.84,266.06 222.71,265.78 222.17,265.55 221.49,264.9 222.02,264.72 222.5,264.82 222.58,264.84 222.5,264.26 222.5,264.26 222.5,264.26 221.13,264.03 220.32,263.78 219.82,263.48 219.08,263.68 218.61,263.59 217.77,263.05 216.44,262.43 215.67,262.55 216.25,263.23 217.33,264.29 217.33,264.29 218.52,264.93 218.85,265.46 219.11,266.36 220.22,267.41 220.5,268.6 220.78,267.44 221.87,267.18 222.58,267.8 222.19,269.24 221.95,269.82 220.8,270.18 219.71,270.37 218.61,270.39 217.63,270.62 217.52,271.03 217.13,270.76 216.77,270.81 216.77,270.82 217.34,271.44 216.83,271.67 217.38,272.36 217.05,272.9 217.54,273.42 216.06,273.69 216.06,274.72 215.83,274.96 214.87,275 213.72,275.36 213.29,275.13 212.76,274.69 211.81,274.41 210.89,273.69 210.89,273.69 209.36,274.16 208.09,273.93 206.98,274.49 205.67,274.77 204.74,274.88 204.45,275.19 204.72,276.17 204.23,276.16 203.86,275.47 200.92,275.48 196.06,275.47 191.24,275.47 186.97,275.47 182.71,275.47 178.52,275.47 174.19,275.47 172.79,275.47 168.58,275.47 164.54,275.47 164.36,275.48 162.83,277.23 162.38,277.99 160.37,278.71 160.77,280.25 161.79,281.3 160.6,282.03 161.48,283.39 160.85,284.6 161.57,285.45 161.57,285.45 163.02,286.24 163.91,287.26 162.58,288.28 162.96,290.09 163.26,291.2 162.77,291.89 162.55,292.51 162.7,293.29 160.86,292.81 158.67,291.96 158.6,292.95 158.43,293.61 157.63,294.02 156.41,294.07 166.74,301.97 174.01,306.51 174.01,306.51 175.72,306.23 176.63,305.67 177.68,305.56 179.52,306.05 181.54,306.41 183.05,306.27 185.64,306.77 188.01,307.06 188.04,306.58 189.34,306.85 190.47,307.38 191.08,307.26 191.43,306.24 194.2,307.02 193,306.15 194.74,306.34 195.69,306.67 197,306.6 198.07,306.12 200.21,305.69 201.56,305.49 202.82,305.57 203.61,304.96 201.13,304.36 202.96,304.1 206.38,304.25 207.66,304.46 208.03,303.72 210.1,304.34 209.52,304.86 210.81,305.27 212.32,305.32 213.42,305.44 214.02,305.16 214.42,304.5 215.87,304.6 217.34,304.05 219.42,304.24 221.14,304.22 221.85,304.97 223.15,305.18 224.53,304.77 223.26,303.61 225.08,304.59 226.01,304.56 227.88,305.76 227.45,306.48 226.64,306.94 228.28,308.16 230.65,308.94 231.93,308.77 232.48,308.3 232.54,307.05 230.86,306.49 232.78,306.26\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.5\" points=\"253.48,310.16 253.26,309.88 252.1,309.91 250.91,309.93 249.52,309.8 249.27,309.86 248.68,310.39 249.16,310.75 249.78,310.81 252.19,310.71 253.48,310.16\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.6\" points=\"238.79,313.81 239.48,313.55 241.58,313.55 242.03,313.27 241.24,312.95 242.16,312.75 242.51,312.54 243.91,312.5 245.38,312.43 247.39,312.62 249.7,312.7 251.36,312.63 252.05,312.3 251.78,311.92 250.77,311.67 248.86,311.47 247.61,311.58 244.25,311.44 241.97,311.42 240.36,311.54 237.9,311.84 238.31,312.34 238.9,312.78 238.46,313.16 236.43,313.26 235.67,313.53 236.7,313.86 238.79,313.81\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.7\" points=\"251.31,275.66 250.6,275.63 248.96,276.19 247.95,277.03 248.49,277.18 250.19,276.73 251.38,275.99 251.31,275.66\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.8\" points=\"250.54,315.74 251.3,315.51 249.47,315.3 246.48,314.75 244.53,314.69 242.57,314.79 242.08,315.09 242.65,315.36 243.87,315.55 241.99,315.54 241.4,315.77 241.48,316.07 242.9,316.36 244.08,316.55 245.22,316.59 245.15,316.73 247.53,316.76 247.97,316.44 249.33,316.3 250.7,316.18 250.54,315.74\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.9\" points=\"247.1,271.02 248.06,270.77 249.42,270.82 248.47,270.06 247.89,269.94 246.31,270.73 246.15,271.35 246.88,271.91 247.1,271.02\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.10\" points=\"247.51,303.43 246.11,303.37 246.33,303.98 247.43,304.66 248.67,304.83 249.31,304.49 248.88,303.97 248.6,303.8 247.51,303.43\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.11\" points=\"240.32,314.15 239.79,314.13 237.92,314.18 238.08,314.4 240.16,314.39 240.62,314.24 240.32,314.15\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.12\" points=\"239.05,314.57 237.19,314.41 236.7,314.59 236.86,314.88 237.44,315.18 238.71,315.15 239.21,315.11 239.9,314.85 239.05,314.57\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.13\" points=\"234.58,301.53 234.31,300.95 235.11,301.16 235.53,300.81 236.51,300.36 237.59,299.94 237.19,299.29 238.2,299.4 238.74,298.95 237.3,298.51 235.6,298.85 235.38,299.46 233.57,298.73 231.21,298.02 231.43,298.83 229.62,298.69 231.26,299.37 232.31,300.43 233.78,301.64 234.58,301.53\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.14\" points=\"234.12,309.83 231.87,309.05 230.62,309.09 231.17,310 231.91,310.5 233.11,310.91 234.6,311.18 236.86,311.14 238.63,310.91 235.73,310.02 234.12,309.83\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.15\" points=\"238.2,296.76 237.17,296.01 236.69,296.13 236.66,296.56 236.79,296.65 237.58,297.08 238.08,297.05 238.2,296.76\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.16\" points=\"236.8,311.97 235.65,311.61 234.16,311.68 233.22,311.92 234.48,312.33 236.44,312.57 236.87,312.26 236.8,311.97\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.17\" points=\"235.42,297.54 233.36,296.76 232.49,296.79 232.5,297.18 233.93,297.82 235.65,297.81 235.42,297.54\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.18\" points=\"235.08,314.78 234.81,314.46 233.28,314.54 232.11,314.79 229.86,314.82 231.36,315.04 230.53,315.22 231.12,315.49 232.9,315.39 235.07,315.13 235.08,314.78\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.19\" points=\"234.16,313.5 234.25,313.11 233.5,312.66 231.87,311.99 229.91,311.89 228.98,312.04 229.92,312.57 228.03,312.5 229.2,313.18 230.31,313.15 232.46,313.44 233.87,313.39 234.16,313.5\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.20\" points=\"227.69,310.9 228.69,310.69 230.87,310.81 230.73,310.53 228.98,310.05 230.05,309.61 228.56,308.67 226.13,308.25 225.14,308.34 224.91,308.75 223.25,309.56 223.76,309.89 225.87,309.76 225.63,310.42 227.69,310.9\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.21\" points=\"226.26,305.8 225.05,305.39 223.87,305.75 222.76,305.62 221.78,306.15 223.25,306.5 224.68,307 225.52,306.68 225.97,306.47 226.06,306.25 226.26,305.8\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.22\" points=\"225.6,314.98 223.98,314.84 222.26,314.84 222.54,314.95 224.15,315.17 224.62,315.13 225.6,314.98\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.23\" points=\"222.93,313.06 222.74,312.75 223.98,312.9 225.04,312.86 224.42,312.42 222.98,311.99 219.01,311.85 215.51,311.45 213.79,311.42 214.22,311.73 217.26,312.14 212.13,312.03 210.93,312.19 214.19,313.06 215.71,313.3 218.12,313.01 219,312.49 220.76,312.42 220.87,313.25 222.49,313.56 223.38,313.46 222.93,313.06\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.24\" points=\"223.43,314.29 220.96,314.06 219.99,314.32 221.42,314.57 223.12,314.65 224.31,314.53 223.43,314.29\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.25\" points=\"222.42,310.48 220.39,309.82 219.76,310.52 220.37,310.66 221.92,310.7 222.42,310.48\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.26\" points=\"211.12,310.18 209.75,309.71 212.77,310.01 213.49,309.5 215.61,310.02 216.1,309.69 215.45,308.66 216.68,309.1 217.53,310.15 218.75,310.3 219.61,310.14 220.23,309.73 219.42,308.71 218.69,307.94 219.89,307.4 221.29,306.86 220.53,306.36 218.49,306.27 218.68,305.82 217.75,305.39 215.84,305.57 214.21,305.89 212.75,305.82 210.01,305.42 206.78,305.24 204.52,305.13 204.63,305.69 203.46,306.01 202.24,305.88 202.11,306.79 203.06,306.91 205.15,307.1 206.71,307.05 208.51,307.25 206.65,307.51 204.04,307.42 202.44,307.44 202.46,307.85 205.81,308.29 204.02,308.27 202.47,308.56 204.75,309.35 206.24,309.76 210.31,310.37 211.12,310.18\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.27\" points=\"217.03,314.25 215.45,313.63 213.99,313.34 212.9,313.3 210.11,312.93 208.09,312.8 207.05,312.99 207.05,312.99 210.31,313.62 213.72,314.15 215.31,314.14 217.03,314.25\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.28\" points=\"200.95,308.37 197.07,307.84 197.25,308.32 195.58,308.89 196.86,309.33 199.01,310.08 201.21,310.74 201.29,311.33 205.31,311.48 206.5,311.28 209.22,311.23 209.78,310.95 210.23,310.53 208.38,310.28 204.38,309.57 201.73,308.84 200.95,308.37\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.29\" points=\"162.99,274.59 162.11,274.34 160.33,275.16 160.34,275.8 159.52,276.42 159.63,276.93 158.4,277.24 158.57,278.2 159,278.61 160.19,278.23 160.85,277.96 162.04,277.77 162.08,277.17 162.18,276.32 163.08,275.59 162.99,274.59\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_28.1.30\" points=\"157.04,284.41 157.5,284.19 158.93,284.32 156.89,282.42 156.97,281.05 156.42,281.05 156.22,281.83 156.36,282.61 156.12,283.14 156.5,283.87 157.04,284.41\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_29.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_29.1.1\" points=\"352.8,272.81 352.88,272.48 352.68,272.04 353.35,271.7 354.08,271.65 354.01,270.9 353.39,270.58 352.31,270.82 352.03,270.07 351.34,270.01 351.08,270.3 350.29,269.67 349.59,269.58 348.96,269.98 348.43,270.8 347.75,270.51 347.75,271.34 348.77,272.37 348.7,272.84 349.36,272.67 349.74,272.98 350.96,272.97 351.24,273.37 352.8,272.81\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_30.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_30.1.1\" points=\"244.11,57.88 245.78,54.15 247.23,54.15 248.07,54.1 247.93,53.44 247,52.94 246.32,52.99 245.45,53.12 244.24,53.61 242.7,53.85 240.55,54.77 238.72,55.66 235.93,57.54 237.24,57.19 239.69,56.06 241.79,55.46 242.15,56.23 242.07,57.38 243.04,58.08 244.11,57.88\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_30.1.2\" points=\"228.78,120.45 229.83,117.38 230.95,117.68 231.22,117.13 231,114.83 229.42,113.74 230.05,110.09 229.84,109.38 230.46,108.53 229.57,107.18 228.9,105.15 228.71,103.2 229.26,101.13 228.75,98.94 230.25,95.31 230.74,94.93 231.18,93.01 230.77,90.99 231.23,89.28 230.41,87.94 230.91,86.08 231.9,84.11 231.2,83.39 231.3,81.61 231.55,79.59 232.53,77.21 232.06,76.82 233.13,74.6 234.03,73.87 233.81,73.08 234.62,72.7 235.02,71.99 234.5,71.63 235.05,70.53 235.4,68.07 235.23,66.51 235.75,65.6 235.75,64.45 234.98,63.67 235.89,61.79 236.66,61.15 237.54,61.27 238.08,59.96 239.09,58.96 242.55,58.73 243.95,58.46 242.71,58.47 242.23,58.05 241.25,57.44 241.74,55.87 241.18,55.83 239.38,56.37 237.25,57.55 237.25,57.55 235.08,58.52 234.14,59.61 234.08,60.63 232.86,61.79 231.39,64.82 231.29,66.56 232.26,67.97 229.86,68.51 230.62,70.15 229.99,73.27 231.85,72.61 231.3,76.57 230.14,77.08 230.47,74.68 229.45,74.95 229,77.71 228.38,81.35 228.67,82.7 227.68,84.65 226.92,86.93 227.54,87 227.62,90.29 227.88,93.6 227.82,96.72 226.77,99.88 226.88,101.64 226.17,104.29 226.6,106.92 226.15,111.13 225.93,115.7 225.72,120.67 225.13,124.34 224.41,127.51 225.18,128.09 225.49,129.25 226.46,127.71 226.86,126.08 227.83,125.13 227.58,122.96 228.78,120.45\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_31.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_31.1.1\" points=\"519.41,276.83 522.28,276.26 524.88,274.99 526.66,273.29 528.83,273.29 529.57,274 531.54,274.54 531.96,272.91 531.88,272.24 532.77,270.22 532.99,268.4 531,268.73 530.18,268.07 531.57,266.45 532.72,264.19 532,264.14 532.58,263.16 532.58,263.16 530.96,264.3 531,263.22 529.18,262.39 529.99,261.36 528.66,261.43 527.62,262.04 527.35,260.66 526.26,259.6 525.69,258.34 523.87,257.76 523.22,256.83 521.86,256.29 522.21,257.21 521.52,257.98 522.05,259.31 520.73,260.34 519.78,259.65 518.77,258.28 518.46,256.99 517.02,256.9 516.68,255.97 518.1,254.61 519.49,254.28 519.95,253.37 521.41,252.78 522.47,254.23 524.18,253.44 525.18,253.39 525.91,252.32 524,251.75 523.77,250.65 522.72,249.62 522.52,248.18 524.64,247.05 526.06,245 527.74,243.08 529.4,241.46 529.95,239.89 529.17,239.31 529.95,238.17 531.1,237.51 531.45,235.76 531.6,234.05 530.78,233.86 530.35,231.52 529.9,228.65 529.14,226.03 527.46,224 525.68,222.13 523.93,221.88 523.17,220.89 522.45,221.61 521.79,220.51 519.78,219.39 518.14,219.05 518.08,216.68 517.21,216.55 516.45,218.18 516.66,219.04 514.33,219.76 513.65,219.39 511.9,219.97 510.94,220.88 510.91,222.16 509.35,222.56 508.39,223.39 507.28,222.21 505.77,221.96 504.48,221.97 503.73,221.43 502.96,221.1 503.72,218.55 502.84,218.61 502.6,219.14 502.37,220.06 501.31,219.41 500.53,219.82 499.16,220.66 499.26,222.5 498.15,222.93 497.33,224.97 495.72,224.6 495.34,227.21 496.43,229.04 496.06,230.84 495.6,232.5 494.78,233.02 493.92,234.29 493.04,234.13 491.25,234.45 491.55,235.36 490.46,236.69 489.57,235.79 488.11,236.32 486.64,234.95 485.6,233.34 484.38,233.07 483.55,233.66 482.7,233.71 481.45,234.21 480.73,233.66 480.05,232.05 479.52,233.75 478.66,233.3 476.77,233.51 474.86,234.01 473.37,234.95 472.04,235.38 471.27,236.41 470.32,236.72 468.41,238.11 466.99,238.77 466.46,238.26 463.93,239.75 462.08,241.09 461.08,243.41 462.27,243.13 462.05,244.2 461.16,245.27 460.88,246.97 458.58,249.39 455.83,250.22 454.95,251.79 453.56,252.73 453.13,253.32 452.57,254.47 452.4,255.25 451.35,255.7 450.91,255.5 449.99,257.35 450.29,257.81 449.94,258.27 451.09,259.2 452,259.59 453.67,259.32 453.83,260.58 455.67,260.81 455.94,261.59 457.92,262.64 457.97,263.08 457.46,264.18 458.29,264.68 455.73,267.98 458.32,268.73 458.9,269.14 458.55,272.45 461.67,271.85 462.1,272.68 461.33,274.5 462.44,274.67 462.95,275.86 463.43,276.01 464.41,274.76 466.07,273.8 468.43,273.12 470.12,271.64 470.56,269.48 471.45,268.67 473.32,268.35 475.4,268.08 477.7,266.91 478.7,266.7 480.14,264.94 481.51,263.8 483.12,263.85 486.36,263.41 488.21,263.68 489.8,263.39 492.52,262.22 494.32,262.22 495.25,261.62 496.5,262.66 498.58,263.33 500.77,263.4 502.16,264.08 502.7,265.11 503.4,265.75 502.84,266.38 501.99,267.11 502.1,268.32 503.01,268.15 504.72,267.77 505.62,268.77 507.43,269.49 507.78,270.72 508.48,271.24 510.43,271.49 511.69,271.28 511.45,271.94 509.34,273.21 507.83,273.79 507.15,273.12 505.56,273.41 504.89,273.18 504.07,273.92 503.93,275.72 503.74,277.06 505.89,276.39 507.12,277.51 506.57,278.28 506.52,280.12 506.89,280.68 506.17,281.62 505.1,282.03 505.6,282.87 507.07,283.17 508.86,283.22 511.32,282.72 513.02,282.09 515.23,280.37 516.32,279.62 517.62,278.55 519.41,276.83\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_31.1.2\" points=\"518.63,212.94 517.42,211.86 515.96,212.56 515.56,214.5 516.16,215.52 517.81,216.15 518.76,216.09 519.29,215.24 518.77,214.24 518.63,212.94\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_32.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_32.1.1\" points=\"330.11,193.96 330.85,193.45 331.14,192.69 331.88,192.2 332.46,192.78 333.23,192.87 334.36,192.28 334.79,188.98 334.09,187.03 333.66,184.41 334.37,182.41 334.3,181.49 333.54,181.47 332.38,181.92 331.32,181.9 329.35,181.49 328.2,180.82 326.55,179.97 326.23,180.03 326.36,181.94 326.52,182.23 326.47,183.15 325.78,184.12 325.25,184.28 324.77,184.92 325.13,185.95 324.97,187.07 325.05,187.74 325.32,187.75 325.42,188.76 325.3,189.21 325.46,189.53 326.07,189.81 325.67,191.66 325.3,192.62 325.44,193.4 325.77,193.58 325.99,193.79 326.44,193.44 327.72,193.42 328.03,194.1 328.31,194.05 328.79,194.31 329.04,193.32 329.43,193.62 330.11,193.96\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_33.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_33.1.1\" points=\"363.68,195.16 364.6,193.06 363.68,193.08 363.22,192.92 362.46,193.15 362.11,192.06 363.11,190.71 363.83,190.32 364.07,189.36 364.61,187.76 364.36,187.13 363.55,184.78 363.15,184.36 363.04,182.56 363.21,181.58 363.08,180.88 363.87,179.67 364.02,178.83 364.64,177.63 365.4,176.88 365.48,175.82 365.66,175.14 365.54,173.88 364.22,174.43 362.87,175.05 360.77,175.14 360.57,175.27 359.58,174.97 358.57,175.28 357.78,175.13 355.08,175.18 355.32,177.02 354.66,178.56 353.9,178.95 353.56,180 353.14,180.33 353.15,180.97 353.57,182.62 354.35,184.86 354.83,184.88 355.81,186.24 356.44,186.28 357.38,185.33 358.51,186.11 358.66,187.07 359.02,188.01 359.27,189.18 360.15,190.14 360.46,191.76 360.81,192.27 361.03,193.47 361.45,194.95 362.81,196.73 362.89,197.49 363.06,197.91 362.4,198.83 362.44,199.56 362.9,199.69 363.58,198.22 363.71,196.69 363.68,195.16\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_34.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_34.1.1\" points=\"382.87,181.86 383.94,181.8 384.48,182.05 385.51,180.13 386.26,179.85 386.7,180.24 387.47,180.08 388.39,180.58 388.79,179.58 390.27,178.03 390.27,178.03 390.19,175.31 390.86,174.99 390.33,174.17 389.7,173.55 389.06,172.33 388.72,171.25 388.62,169.38 388.24,168.49 388.22,166.73 387.74,166.08 387.67,164.69 387.44,164.51 387.28,163.24 387.69,162.18 387.7,161.77 387.69,161.8 387.36,158.08 387.79,156.77 387.48,155.79 388.02,154.13 389.01,152.86 389.2,151.59 389.66,150.97 389.58,150.58 389.29,150.69 387.06,150.29 386.61,150.02 386.11,148.54 386.45,147.52 386.09,144.79 385.82,142.47 386.25,142.06 387.38,141.17 387.84,141.59 387.9,139.11 386.64,139.13 386,140.39 385.43,141.37 384.18,141.69 383.84,142.9 382.81,142.17 381.5,142.49 380.98,143.54 379.93,143.75 379.16,143.69 379.08,144.41 378.51,144.47 377.76,144.61 376.73,144.26 376.02,144.32 375.6,144.1 375.75,146.85 375.21,147.71 375.12,149.13 375.38,150.53 375.06,151.42 375.05,152.88 373.04,152.86 373.2,153.7 372.35,153.69 372.26,153.29 371.23,153.2 370.79,151.84 370.54,151.26 369.63,151.59 369.08,151.27 367.98,151.08 367.36,152.29 366.99,153.04 366.52,154.43 366.13,156.16 361.23,156.2 360.65,155.92 360.17,155.96 359.48,155.65 359.25,156.37 359.68,156.61 359.74,157.63 360.01,158.23 360.62,158.71 361.05,158.48 361.63,159.37 362.53,159.35 362.63,158.69 363.25,158.27 364.24,159.73 365.21,160.87 365.63,161.62 365.59,163.53 366.32,165.8 367.08,167 368.18,168.12 368.37,168.86 368.41,169.72 368.68,170.53 368.59,171.85 368.8,173.92 369.12,175.37 369.61,176.62 369.7,178.02 369.84,179.65 370.48,180.83 371.36,181.58 372.73,180.79 373.8,179.93 375.02,179.7 376.26,179.25 376.74,180.65 376.97,180.83 377.73,180.6 379.57,181.76 380.23,181.27 380.76,181.34 381.01,181.9 381.62,182.1 382.87,181.86\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_35.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_35.1.1\" points=\"369.7,178.02 369.61,176.62 369.12,175.37 368.8,173.92 368.59,171.85 368.68,170.53 368.41,169.72 368.37,168.86 368.18,168.12 367.08,167 366.32,165.8 365.59,163.53 365.63,161.62 365.21,160.87 364.24,159.73 363.25,158.27 362.63,158.69 362.53,159.35 361.63,159.37 361.05,158.48 360.62,158.71 360,159.51 359.5,159.12 358.82,158.12 357.47,160.58 358.74,161.87 358.12,163.41 358.69,163.99 359.81,164.28 359.94,165.31 360.83,164.19 362.3,164.09 362.81,165.2 363.02,166.75 362.84,168.57 362.06,169.95 362.78,172.65 362.36,173.11 361.12,172.92 360.66,174.12 360.77,175.14 362.87,175.05 364.22,174.43 365.54,173.88 365.66,175.14 366.52,177.31 367.5,178.54 368.63,178.15 369.7,178.02\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_36.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_36.1.1\" points=\"221.42,197.2 220.33,196.81 219.83,195.66 219.15,195 218.61,194.14 218.3,192.49 217.76,191.14 218.6,190.99 218.76,189.92 219.09,189.41 219.18,188.48 218.94,187.62 218.97,187.14 219.37,186.94 219.73,186.13 221.87,186.36 222.82,186.06 223.91,184.06 224.59,184.31 225.78,184.19 226.74,184.45 227.31,184.05 226.97,182.8 226.57,182.02 226.39,180.35 226.69,178.8 227.15,178.11 227.19,177.59 226.33,176.43 226.93,175.92 227.36,175.1 227.84,172.78 227.52,172.49 227.21,173.87 226.76,174.6 226.2,173.8 222.96,173.85 222.97,172.39 223.94,172.15 223.88,171.26 223.55,171.5 222.61,171.12 222.6,169.42 223.34,168.57 223.61,167.24 223.58,166.23 222.94,159.84 222.08,161.08 221.58,161.13 222.61,163.5 221.32,164.59 220.32,164.39 219.72,164.8 218.81,164.18 217.57,164.47 216.56,166.92 215.79,167.52 215.25,168.62 214.14,169.72 213.7,169.5 212.99,170.05 212.17,170.83 211.7,170.45 210.29,170.78 209.89,171.78 209.58,171.74 207.93,173.07 207.71,173.8 208.33,173.97 208.27,175.14 208.68,175.99 209.5,176.14 210.23,177.61 210.9,178.83 210.3,179.38 210.65,180.73 210.35,182.86 210.73,183.47 210.55,185.44 209.94,186.67 210.21,187.8 210.73,187.63 211.08,188.32 210.77,189.69 210.99,190.03 211.85,189.95 213.18,191.57 213.88,191.81 213.95,192.58 214.38,194.53 215.4,195.6 216.45,195.65 216.61,196.13 217.89,195.93 219.27,197.1 219.96,197.61 220.84,198.72 221.41,198.58 221.8,197.97 221.42,197.2\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_37.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_37.1.1\" points=\"200.94,195.27 201.26,194.01 201.83,193.09 202.53,192.1 201.88,191.89 201.83,190.96 202.15,190.62 201.88,190.34 201.92,189.92 201.76,189.45 201.64,188.99 200.77,189.51 200.47,189.99 200.68,190.4 200.66,190.91 200.24,191.46 199.62,191.92 199.07,192.21 199.01,192.89 198.61,193.3 198.66,192.63 198.29,192.08 197.96,192.72 197.45,192.95 197.26,193.41 197.32,194.12 197.6,194.84 197.16,195.17 197.57,195.61 197.84,195.91 198.88,195.3 199.29,195.6 199.79,195.41 200.03,194.93 200.5,194.78 200.94,195.27\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_38.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_38.1.1\" points=\"210.71,222.09 211.21,221.28 212.76,221.53 213.25,221.01 214.4,219.63 215.26,218.62 215.8,218.65 216.7,218.2 216.49,217.57 217.67,217.47 218.77,216.56 218.5,216.03 217.39,215.75 216.28,215.63 215.19,215.81 212.83,215.59 214.09,216.85 213.52,217.43 212.5,217.58 212.03,218.22 211.84,219.5 210.91,219.41 209.5,220.01 209.09,220.47 207.04,220.82 206.55,221.25 207.25,221.81 205.69,221.92 204.34,220.77 203.66,220.74 203.34,220.19 202.5,219.95 201.84,220.16 202.81,220.85 203.3,221.65 204.11,222.14 205.01,222.58 206.27,222.79 206.7,223.03 208.06,222.87 209.32,222.85 210.71,222.09\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_39.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_39.1.1\" points=\"391.32,248.49 391.15,248.56 390.87,248.41 390.63,248.45 390.57,248.37 390.51,248.58 390.39,248.7 390.09,248.73 389.69,248.55 389.39,248.66 389.5,248.67 389.66,249.17 390.77,249.14 392.09,249.75 391.16,248.88 391.32,248.49\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_40.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_40.1.1\" points=\"391.32,248.49 391.39,248.32 389.9,247.48 389.12,247.75 388.67,248.58 389.39,248.66 389.69,248.55 390.09,248.73 390.39,248.7 390.51,248.58 390.57,248.37 390.63,248.45 390.87,248.41 391.15,248.56 391.32,248.49\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_41.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_41.1.1\" points=\"360.05,279.19 360.76,278.63 361.83,278.48 361.78,278 362.58,277.63 362.75,278.09 363.73,277.89 363.92,277.34 364.98,277.23 365.73,276.36 365.3,276.36 365.12,276.04 364.8,275.96 364.75,275.55 364.48,275.47 364.46,275.3 363.99,275.12 363.36,275.15 363.2,274.75 362.51,275.09 361.85,275 360.7,275.54 360.21,275.41 359.47,274.68 358.37,275.25 357.51,276.02 356.76,276.45 356.55,277.2 356.27,277.72 357.26,278.11 357.75,278.54 358.73,278.88 359.05,279.21 359.44,279.01 360.05,279.19\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_42.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_42.1.1\" points=\"358.4,283.72 358.8,282.86 358.45,282.41 359.01,281.81 359.43,280.89 359.38,280.3 360.05,279.19 359.44,279.01 359.05,279.21 358.73,278.88 357.75,278.54 357.26,278.11 356.27,277.72 356.55,277.2 356.76,276.45 357.51,276.02 358.37,275.25 357.93,274.43 357.43,274.2 357.71,273.01 357.6,272.7 357.13,273.08 356.44,273.13 355.43,272.81 354.16,272.88 353.99,272.4 353.23,272.91 352.8,272.81 351.24,273.37 350.96,272.97 349.74,272.98 349.87,274.28 350.54,275.51 348.48,275.84 347.8,276.3 347.85,277.08 347.55,277.48 347.67,278.67 347.37,280.48 348.21,280.48 348.53,281.13 348.81,282.69 348.53,283.26 348.78,283.61 349.92,283.7 350.19,283.33 351.08,284.16 350.73,284.78 350.61,285.71 351.65,285.5 352.51,285.75 352.57,285.11 353.98,284.73 354.01,284.14 355.37,284.45 356.1,284.9 357.7,284.25 358.4,283.72\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_43.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_43.1.1\" points=\"410.21,196.47 409.66,195.24 409.27,195.65 408.88,195.49 407.96,195.53 407.9,196.23 407.75,196.86 408.26,197.94 408.79,198.96 409.51,198.76 409.98,199.32 410.4,198.61 410.39,197.66 409.48,197.1 410.21,196.47\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_44.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_44.1.1\" points=\"356.18,286.77 355.47,285.45 353.98,286.37 353.74,287.04 355.67,287.58 356.18,286.77\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_44.1.2\" points=\"353.67,288.13 353.39,287.53 352.97,287.7 352.08,286.54 352.51,285.75 351.65,285.5 350.61,285.71 350.01,286.62 349.88,288.26 350.08,288.69 350.43,289.17 351.6,289.27 352.03,289.7 353.07,290.14 353.09,289.34 352.73,288.82 352.92,288.38 353.67,288.13\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_45.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_45.1.1\" points=\"222.15,211.51 222.26,212.13 221.92,212.8 222.36,213.18 222.59,214.05 222.6,215.28 222.85,215.66 224.12,215.65 225.01,215.07 225.44,215.13 225.64,214.33 226.53,214.37 226.4,213.7 227.12,213.62 227.82,212.79 227.11,211.87 226.39,212.37 225.63,212.27 225.11,212.38 224.77,211.97 224.13,211.83 223.94,212.38 223.37,212.05 222.54,210.5 222.16,210.86 222.15,211.51\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_46.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_46.1.1\" points=\"351.88,252.36 351.6,251.31 351.9,249.36 351.59,247.66 350.67,246.5 350.84,244.93 352.14,243.68 352.17,243.18 353.15,242.33 353.93,238.52 354.49,236.63 354.6,235.64 354.37,233.88 354.51,232.89 354.33,231.71 354.51,230.34 353.89,229.43 354.87,227.83 354.96,226.89 355.55,225.66 356.29,226.07 357.58,225.04 358.32,223.66 352.89,219.42 348.26,215.02 345.98,214.02 344.17,213.8 344.15,215.23 343.39,215.6 342.38,216.24 341.99,217.29 336.54,222.15 331.16,226.97 325.25,232.26 325.29,232.68 325.3,232.82 325.34,235.38 327.92,236.97 329.5,237.29 330.8,237.87 331.41,238.93 333.26,239.78 333.34,241.34 334.25,241.53 334.96,242.31 337,242.66 337.29,243.48 336.88,243.93 336.36,246.13 336.27,247.39 335.7,248.72 337.18,249.84 338.84,250.2 339.81,251.04 341.28,251.66 343.86,252.02 346.39,252.19 347.16,251.89 348.58,252.69 350.21,252.7 350.84,252.23 351.88,252.36\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_47.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_47.1.1\" points=\"213.7,169.5 213.94,167.73 213.43,166.21 211.65,163.77 209.67,162.85 208.7,160.83 208.43,159.26 207.52,158.3 206.79,159.48 206.11,159.73 205.43,159.54 205.36,160.39 205.82,160.95 205.6,161.92 206.45,163.66 206.07,164.68 205.45,163.6 204.44,164.62 204.77,165.27 204.46,167.39 205.04,167.74 205.34,169.19 205.97,170.7 205.86,171.65 206.77,172.15 207.93,173.07 209.58,171.74 209.89,171.78 210.29,170.78 211.7,170.45 212.17,170.83 212.99,170.05 213.7,169.5\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_48.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_48.1.1\" points=\"383.58,240.05 384.34,239.72 385.48,240.39 386.07,241 387.44,241.17 388.57,240.91 389.1,239.85 389.4,240.55 390.7,240.05 391.93,239.93 392.65,240.46 392.65,240.46 393.83,237.35 394.04,236.8 393.68,235.94 393.49,234.31 393.16,233.19 392.83,232.81 392.24,233.51 391.44,234.47 390.04,237.55 389.89,237.35 390.75,235.09 391.91,232.92 393.4,229.53 394.08,228.34 394.7,227.1 396.33,224.66 396.04,224.28 396.2,222.84 398.22,220.85 398.54,220.39 392.14,220.39 385.88,220.39 379.39,220.39 378.95,228.53 378.45,236.24 377.86,237.96 378.17,239.28 377.86,240.18 378.35,241.2 380.43,241.24 381.98,240.68 383.58,240.05\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_49.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_49.1.1\" points=\"404.29,205.59 406.64,203.43 407.62,202.12 408.58,200.8 409.13,200.01 409.98,199.32 409.51,198.76 408.79,198.96 408.19,199.7 407.45,201.05 406.69,201.78 406.22,202.58 404.75,203.49 403.62,203.52 403.2,204 402.26,203.46 401.21,204.5 400.79,202.79 398.85,203.27 398.63,204.19 399.17,207.54 399.25,209.05 399.73,209.74 400.91,210.11 401.65,211.41 402.76,208.78 403.33,206.7 404.29,205.59\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_50.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_50.1.1\" points=\"336.24,265.14 336.82,264.39 339.54,263.52 340.07,263.94 341.74,263.06 343.46,263.31 343.55,262.19 342.16,260.89 340.25,260.48 340.12,259.82 339.2,258.72 338.62,257.11 339.21,255.97 338.33,255.07 338,253.76 336.85,253.36 335.76,251.8 333.82,251.77 332.37,251.81 331.4,251.09 330.8,250.32 330.05,250.49 329.5,251.18 329.09,252.35 327.68,252.66 327.57,253.33 328.15,254.09 328.38,254.64 327.87,255.24 328.33,256.55 327.76,257.74 328.41,257.91 328.5,258.84 328.75,259.13 328.81,260.67 329.52,261.19 329.13,262.17 328.27,262.24 328,261.99 327.12,261.99 326.79,262.94 326.17,262.66 325.61,262.17 325.74,263.55 325.17,264.38 327.31,265.76 329.1,265.42 331.08,265.43 332.63,265.1 333.86,265.2 336.24,265.14\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_51.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_51.1.1\" points=\"372.76,293.03 374.23,292.78 375.56,292.82 375.56,292.82 375.82,292.56 375.08,291.68 375.77,290.24 375.31,289.74 374.21,289.75 372.95,290.33 372.34,290.52 371.26,290.24 371.25,291.16 370.8,290.96 369.86,291.51 369.59,292.39 371.16,292.81 372.76,293.03\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_52.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_52.1.1\" points=\"401.21,204.5 402.26,203.46 403.2,204 403.62,203.52 404.75,203.49 406.22,202.58 406.69,201.78 407.45,201.05 408.19,199.7 408.79,198.96 408.26,197.94 407.75,196.86 407.9,196.23 407.96,195.53 408.88,195.49 409.27,195.65 409.66,195.24 409.33,194.42 409.99,193.15 410.64,192.04 411.3,191.21 416.8,188.47 418.2,188.48 413.69,181.51 411.53,181.41 410.08,179.77 409.02,179.72 408.57,178.99 407.44,178.99 406.76,179.78 405.25,178.8 404.77,177.83 403.66,178.01 403.29,178.28 402.9,178.22 402.38,178.24 400.25,180.22 399.09,180.22 398.52,180.99 398.49,182.29 397.63,182.68 396.6,185.21 395.83,185.75 395.52,186.68 394.66,187.81 393.63,187.97 394.17,189.29 395.05,189.35 395.28,190.06 395.21,191.86 395.2,192.14 395.61,194.56 396.37,195.2 396.51,196.14 397.15,197.9 398.1,199.04 398.68,201.3 398.85,203.27 400.79,202.79 401.21,204.5\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_53.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_53.1.1\" points=\"372.77,305.75 372.88,304.92 374.97,304.11 374.17,303.18 376.04,301.72 375.56,300.6 376.97,299.6 376.71,298.71 378.85,297.76 378.57,297.04 377.62,296.22 375.33,294.36 375.33,294.36 373.01,294.24 370.84,293.7 368.79,293.38 367.89,294.19 366.55,294.68 366.57,296.11 365.71,297.39 366.15,298.21 367.11,299.07 369.62,300.54 370.38,300.81 370.11,301.37 368.25,301.98 367.71,302.48 367.18,304.4 365.1,305.22 363.38,305.8 364.01,306.11 365.48,305.49 367.01,305.55 368.36,305.26 369.33,305.79 369.64,306.64 371.32,307.02 372.98,306.57 372.77,305.75\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_54.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_54.1.1\" points=\"632.19,131.02 631.02,130.54 631.03,131.39 631.97,131.85 632.52,131.98 633.67,132.69 633.38,131.58 632.19,131.02\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_54.1.2\" points=\"630.24,129.79 630.62,129.14 630.01,127.96 628.91,127.65 628.1,127.93 628.22,128.92 629.07,129.7 629.73,129.42 630.24,129.79\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_54.1.3\" points=\"44.8,131.7 44.7,131.58 44.41,132.69 44.72,132.79 44.8,131.7\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_55.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_55.1.1\" points=\"257.11,60.53 258.5,59.75 258.3,59.14 256.61,58.63 255.76,59.23 254.87,58.46 253.88,59.23 255.18,60.27 256.52,59.83 257.11,60.53\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_56.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_56.1.1\" points=\"353.22,262.69 352.79,261.19 352.1,261.59 351.71,262.9 351.98,263.61 352.9,264.35 353.22,262.69\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_56.1.2\" points=\"344.08,277.92 345.09,277.09 345.81,277.23 347.07,276.42 347.39,276.27 347.8,276.3 348.48,275.84 350.54,275.51 349.87,274.28 349.74,272.98 349.36,272.67 348.7,272.84 348.77,272.37 347.75,271.34 347.75,270.51 348.43,270.8 348.96,269.98 348.91,269.46 349.37,268.76 348.88,268.18 349.31,266.72 350.11,266.48 349.97,265.66 348.67,264.58 345.75,265.1 343.61,264.47 343.46,263.31 341.74,263.06 340.07,263.94 339.54,263.52 336.82,264.39 336.24,265.14 337.01,266.28 337.31,270.03 335.83,271.97 334.79,272.89 332.61,273.59 332.5,274.91 334.35,275.3 336.74,274.84 336.31,276.86 337.64,276.1 340.92,277.48 341.33,278.92 342.55,279.27 342.77,278.65 343.42,278.63 344.08,277.92\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_56.1.3\" points=\"251.68,175.69 251.03,174.81 250.23,174.64 250.01,175.3 249.64,175.4 249.12,174.76 248.4,175.24 248.83,176.24 248.99,177.3 249.29,178.3 248.67,179.67 248.58,181.26 249.49,183.26 250.05,183.01 251.26,182.46 252.97,180.49 253.23,179.54 252.21,177.41 251.68,175.69\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_57.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_57.1.1\" points=\"360.77,175.14 360.66,174.12 361.12,172.92 362.36,173.11 362.78,172.65 362.06,169.95 362.84,168.57 363.02,166.75 362.81,165.2 362.3,164.09 360.83,164.19 359.94,165.31 359.81,164.28 358.69,163.99 358.12,163.41 358.74,161.87 357.47,160.58 355.77,162.93 354.67,164.86 353.67,167.26 353.72,168.04 354.08,168.78 354.49,170.48 354.82,172.21 355.38,172.35 357.8,172.32 357.78,175.13 358.57,175.28 359.58,174.97 360.57,175.27 360.77,175.14\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_58.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_58.1.1\" points=\"335.08,291.54 333.63,289.87 334.98,290.08 336.44,290.07 336.07,288.79 334.84,287.36 336.23,287.25 336.33,287.08 337.52,285.16 338.45,284.89 339.29,282.99 339.69,282.33 341.36,282 341.2,280.91 340.5,280.41 341.06,279.51 339.81,278.6 337.93,278.62 335.54,278.13 334.89,278.48 333.94,277.66 332.65,277.86 331.64,277.18 330.9,277.54 333.01,279.37 334.27,279.75 334.26,279.75 332.09,280.04 331.72,280.72 333.18,281.26 332.45,282.17 332.75,283.28 334.78,283.13 334.79,283.13 335.01,284.1 334.12,285.12 334.09,285.14 332.45,285.43 332.14,285.88 332.66,286.6 332.23,287.05 331.47,286.28 331.46,287.84 330.81,288.65 331.37,290.28 332.45,291.54 333.49,291.41 335.08,291.54\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_58.1.2\" points=\"331.32,285.04 330.55,283.9 329.53,284.25 328.68,284.22 329.01,285.11 328.77,285.99 329.91,286.06 331.32,285.04\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_59.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_59.1.1\" points=\"403.73,263.83 404.06,263.47 404.9,263.77 406.36,263.37 406.97,262.58 408,262.13 407.67,261.86 408.61,260.8 408.45,260.57 407.62,260.69 406.4,261.25 406.1,260.93 404.08,260.63 402.47,261.59 400.9,261.5 400.97,262.33 400.36,263.65 399.38,264.36 398.52,264.58 397.87,265.16 398.01,265.39 399.31,265.06 401.54,264.75 403.73,263.83\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_60.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_60.1.1\" points=\"339.08,195.45 338.96,194.73 339.64,193.54 339.64,191.86 339.8,190.04 340.22,189.2 339.85,187.11 339.98,185.95 340.43,184.48 340.8,183.66 338.19,182.3 337.27,181.51 335.77,180.83 334.3,181.49 334.37,182.41 333.66,184.41 334.09,187.03 334.79,188.98 334.36,192.28 334.14,194.01 334.18,195.32 337.05,195.43 337.78,195.26 338.31,195.64 339.08,195.45\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_61.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_61.1.1\" points=\"320.07,198.73 320.16,197.89 320.42,197.89 320.85,198.2 321.12,198.12 321.57,197.54 322.28,197.35 322.74,197.85 323.27,198.16 323.67,198.48 324,198.42 324.36,197.92 324.55,197.28 325.22,196.32 324.88,195.72 324.8,194.97 325.16,195.2 325.36,194.93 325.27,194.24 325.77,193.58 325.44,193.4 325.3,192.62 325.67,191.66 326.07,189.81 325.46,189.53 325.3,189.21 325.42,188.76 325.32,187.75 325.05,187.74 324.59,187.8 324.24,186.87 323.77,186.88 323.45,187.38 323.57,188.31 322.89,189.73 322.45,189.47 322.1,189.41 321.64,189.28 321.67,190.13 321.41,190.74 321.47,191.41 321.12,192.38 320.66,193.21 319.34,193.21 318.95,192.77 318.5,192.72 318.21,192.22 318.01,191.58 317.12,190.56 316.41,191.93 315.77,192.84 315.35,193.14 314.95,193.6 314.77,194.62 314.54,195.13 314.06,195.5 314.81,196.63 315.31,196.58 315.75,196.97 316.11,196.97 316.38,197.28 316.25,198.04 316.43,198.28 316.47,199.06 317.27,199.04 318.44,198.48 318.81,198.53 318.94,198.78 319.83,198.6 320.07,198.73\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_62.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_62.1.1\" points=\"311.33,200.36 311.56,201.38 313.35,201.44 313.73,201.98 314.25,202.02 314.89,201.46 315.4,201.45 315.95,201.83 316.27,201.17 315.55,200.66 314.84,200.7 314.14,201.18 313.52,200.65 313.22,200.63 312.82,200.31 311.33,200.36\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_63.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_63.1.1\" points=\"316.47,199.06 316.43,198.28 316.25,198.04 316.38,197.28 316.11,196.97 315.75,196.97 315.31,196.58 314.81,196.63 314.06,195.5 313.2,196.47 312.51,196.62 312.14,197.27 312.15,197.62 311.66,198.11 311.56,198.6 312.44,198.97 312.99,198.9 313.43,199.16 316.47,199.06\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_64.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_64.1.1\" points=\"357.78,175.13 357.8,172.32 355.38,172.35 354.82,172.21 354.51,172.56 355.08,175.18 357.78,175.13\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_65.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_65.1.1\" points=\"375.4,249.82 376.3,249.13 377.48,249.24 378.64,249.1 378.63,248.74 379.45,248.99 379.31,248.38 377.11,248.2 377.1,248.54 375.19,248.95 375.4,249.82\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_65.1.2\" points=\"378.64,261.55 378.32,260.32 377.98,260.1 377.07,260.16 376.27,260.34 374.51,259.83 375.66,258.73 374.93,258.4 374.09,258.4 373.2,259.42 372.96,258.99 373.41,257.8 374.25,256.87 373.72,256.43 374.64,255.51 375.45,254.93 375.57,253.79 374.12,254.33 374.66,253.3 373.71,253.08 374.44,251.29 373.43,251.26 372.1,252.15 371.4,253.77 371.03,255.11 370.36,256.03 369.5,257.17 369.35,257.74 369.97,258.7 370.01,259.34 370.47,259.62 370.45,260.14 371.41,260.31 371.94,260.74 372.76,260.7 372.97,261.04 373.25,261.11 374.35,261.05 375.49,261.59 376.61,260.91 377.95,261.09 377.86,262.06 378.64,261.55\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_66.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_66.1.1\" points=\"313.26,317.96 318.92,317.57 316.99,317.37 313.25,317.35 307.96,317.3 308.36,317.2 311.87,317.26 314.66,317.07 316.69,317.24 317.36,317.04 316.05,316.7 318.71,316.92 323.6,317.14 326.49,317.03 326.96,316.78 322.73,316.35 322.09,316.2 318.82,316.09 321.14,316.05 319.73,315.56 318.7,315.09 318.38,314.25 319.45,313.72 317.78,313.69 315.92,313.42 317.72,312.97 317.72,312.22 316.52,312.13 317.68,311.33 315.2,311.26 316.36,310.87 315.88,310.52 314.26,310.37 312.7,310.37 313.87,309.68 313.74,309.22 311.64,309.65 310.96,309.37 312.41,309.11 313.69,308.46 313.87,307.58 311.75,307.37 310.99,307.79 309.77,308.42 309.92,307.68 308.37,307.09 311.43,307.04 313.01,306.98 309.58,305.98 306.07,305.05 302.45,304.63 301.13,304.63 299.72,304.16 297.56,302.84 294.6,301.95 293.74,301.89 291.98,301.58 290.1,301.27 288.71,300.45 288.32,299.51 287.34,298.61 284.85,297.5 284.94,296.39 283.92,295.19 282.74,293.76 280.88,293.66 279.43,294.87 276.85,294.88 275.94,295.68 275.7,297.08 274.32,298.81 274.13,299.7 274.58,300.9 273.53,302.1 274.51,303.04 273.96,303.48 276.01,304.91 278.07,305.36 278.84,305.85 279.65,306.75 278.05,306.35 277.3,306.18 276.14,306.01 274.95,306.39 275.41,307.16 276.28,307.76 277.36,307.77 279.52,307.48 278.02,308.18 277.26,308.55 276.01,308.39 275.26,308.66 277.29,309.64 276.91,310.02 276.6,310.71 276.2,311.72 275.15,312.08 275.55,312.46 273.2,312.97 270.99,313.04 268.08,313 265.38,312.94 264.48,313.21 263.34,313.74 266.47,314 268.65,314.04 264.43,314.25 262.55,314.56 263.15,314.86 267.63,315.21 271.92,315.56 272.71,315.81 270.37,316.05 271.7,316.3 275.93,316.74 277.48,316.8 277.55,317.06 280.15,317.21 283.3,317.29 286.31,317.3 287.09,317.13 290.16,317.42 292.17,317.22 293.47,317.18 295.26,317 293.35,317.3 293.83,317.52 297.53,317.82 300.85,317.8 302.32,317.97 305.74,318.01 313.26,317.96\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_67.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_67.1.1\" points=\"193.66,210.98 193.39,209.18 192.93,206.61 193.42,206.61 193.9,206.2 194.09,206.54 194.53,206.25 193.68,205.38 192.83,204.74 192.66,204.3 192.74,203.86 192.33,203.27 191.93,203.13 191.99,202.86 191.65,202.61 191.02,202.03 190.93,201.7 190.13,202.1 189.11,202.14 188.41,202.59 187.64,203.54 187.76,204.2 188.02,204.74 187.84,205.16 188.86,207.02 190.96,207.03 191.11,207.8 190.86,207.94 190.74,208.43 190.21,208.96 189.71,209.72 190.44,209.72 190.63,211 192.15,211 193.66,210.98\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_68.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_68.1.1\" points=\"244.21,183.77 243.89,181.68 242.87,181.07 242.94,180.52 242.61,179.32 243.32,177.63 243.85,177.63 244.05,176.31 245.04,174.28 244.63,174.2 243.72,174.4 243.17,173.78 242.41,173.37 241.89,173.27 241.7,172.81 240.89,172.93 239.87,174.02 239.76,175.1 239.35,176.28 239.65,178.26 240.13,179.08 239.77,180.16 239.21,180.52 239.45,181.54 239.08,182.07 238.21,181.97 237.14,183.74 237.61,184.37 237.61,185.45 238.65,185.82 239.07,186.26 238.54,187.12 238.72,187.96 240.09,189.32 241.14,188.47 242.11,186.96 242.11,185.76 242.73,185.71 243.58,184.58 244.21,183.77\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_69.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_69.1.1\" points=\"202.66,204.58 202.1,204.63 201.84,204.32 201.24,204.02 200.82,204.02 200.43,203.73 200.11,203.83 199.87,204.18 199.69,204.11 199.42,203.57 199.27,203.59 199.19,203.12 198.55,202.49 198.22,202.21 198.02,201.93 197.58,202.39 197.16,201.78 196.82,201.8 196.43,201.74 196.35,200.62 196.11,200.59 195.85,200.07 195.33,199.98 195.11,200.69 194.63,200.89 194.85,201.81 194.65,202.06 194.33,202.22 193.58,201.95 193.55,202.26 193.09,202.63 192.79,203.08 192.33,203.27 192.74,203.86 192.66,204.3 192.83,204.74 193.68,205.38 194.53,206.25 194.69,206.16 195.1,206.56 195.57,206.6 195.7,206.41 195.97,206.52 196.7,206.32 197.47,206.38 198.03,206.63 198.25,206.88 198.76,206.77 199.13,206.61 199.56,206.66 199.91,206.86 200.62,206.55 200.88,206.5 201.33,206.07 201.74,205.56 202.3,205.21 202.66,204.58\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_70.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_70.1.1\" points=\"364.6,269.91 365.83,269.55 366.34,269.83 366.34,269.83 366.76,269.11 367.28,268.57 366.78,267.87 366.78,267.87 366.08,268.28 365.08,268.26 363.8,268.57 363.12,268.53 362.84,268.14 362.28,268.57 362.03,267.79 362.82,266.91 363.18,266.32 363.91,265.61 364.51,265.18 365.13,264.38 366.49,263.66 366.36,263.33 366.36,263.33 364.91,264.04 364,264.73 362.61,265.3 361.27,266.7 361.56,266.84 360.83,267.64 360.76,268.27 359.8,268.57 359.41,267.76 358.94,268.39 358.93,269.04 358.98,269.07 360,269 360.24,269.32 360.76,269.01 361.33,268.98 361.28,269.5 361.77,269.69 361.86,270.44 362.97,270.93 363.45,270.71 364.6,269.91\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_71.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_71.1.1\" points=\"222.6,215.28 222.59,214.05 222.36,213.18 221.92,212.8 222.26,212.13 222.15,211.51 221.11,211.9 220.33,211.74 219.35,211.9 218.54,211.48 217.75,212.18 217.98,212.91 219.44,212.6 220.65,212.42 221.3,212.92 220.67,213.9 220.79,214.76 219.81,215.11 220.26,215.73 221.24,215.63 222.6,215.28\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_72.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_72.1.1\" points=\"368.66,274.8 370.25,274.25 370.54,274.44 371.39,273.94 371.55,273.46 370.72,273.08 370.18,271.84 369.44,270.59 368.32,270.24 367.41,270.32 366.34,269.83 366.34,269.83 365.83,269.55 364.6,269.91 363.45,270.71 362.97,270.93 362.63,271.56 362.39,271.58 362.77,272.76 362.46,273.15 363.26,273.15 363.3,273.9 364.07,273.43 364.62,273.23 365.8,273.46 365.88,273.82 366.44,273.87 367.11,274.16 367.28,274.04 367.92,274.27 368.21,274.69 368.66,274.8\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_73.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_73.1.1\" points=\"562.08,167.17 562.46,163.4 564.13,162 565.6,164.48 567.55,165.88 569.02,165.89 570.43,165.07 571.64,164.24 573.41,163.79 573.04,156.21 572.38,148.65 571.11,150.55 569.47,151.01 569,150.35 566.89,150.28 567.78,152.17 568.88,152.81 568.65,155.34 567.99,157.29 564.89,159.26 563.53,159.45 561.13,161.61 560.59,160.47 559.95,160.27 559.61,161.12 559.65,162.14 558.42,163.28 560.23,164.12 561.42,164.07 561.29,164.69 558.86,164.7 558.23,166.08 556.75,166.51 556.07,167.67 558.31,168.23 559.17,168.99 561.83,168.04 562.08,167.17\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.2\" points=\"562.54,155.38 561.57,153.8 561.54,155.55 561.89,156.38 562.29,157.17 562.63,156.49 562.54,155.38\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.3\" points=\"555.87,162.64 556.4,160.86 555.04,161.82 553.66,162.02 552.72,161.86 551.57,161.95 552.01,163.23 554.06,163.32 555.87,162.64\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.4\" points=\"553.01,172.5 552.94,170.46 552.09,170.69 551.83,169.27 552.51,168.04 552.04,167.76 551.38,169.23 550.88,172.21 551.18,174.08 551.71,174.93 551.86,173.65 552.84,173.45 553.01,172.5\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.5\" points=\"550.48,161.79 549.83,161.02 548.7,161.45 548.41,162.45 550.1,162.56 550.48,161.79\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.6\" points=\"547.27,173.17 545.96,170.85 544.71,170.4 543.11,170.86 540.34,170.74 538.89,170.41 538.65,168.64 540.12,166.57 541.03,167.63 544.13,168.42 543.99,167.35 543.27,167.68 542.53,166.32 541.05,165.41 542.54,162.43 542.21,161.63 543.58,158.94 543.49,157.41 542.56,156.73 541.96,157.55 542.86,159.45 541.19,158.55 540.8,159.2 541.06,160.09 539.92,161.46 540.12,163.73 538.99,163.02 539.03,160.31 538.93,156.98 537.86,156.64 537.18,157.32 537.77,159.46 537.6,161.71 536.91,161.73 536.44,163.32 537.17,164.85 537.44,166.7 538.29,170.21 538.64,171.18 540.04,172.91 541.34,172.22 543.44,171.9 545.35,171.99 546.97,173.69 547.27,173.17\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.7\" points=\"544.67,146.29 543.2,145.78 543.03,146.05 543.27,146.84 544.12,148.25 545.85,149.17 545.97,148.71 545.93,148.01 544.67,146.29\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.8\" points=\"542.6,151.02 542.24,149.73 539.69,149.07 537.52,149.36 537.59,150.21 538.95,150.69 539.92,149.99 541.04,150.17 542.6,151.02\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.9\" points=\"538.5,146.06 537.8,146.01 535.77,147.63 537.36,148.08 538.16,147.38 538.66,146.68 538.5,146.06\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.10\" points=\"535.01,174.12 536.91,171.96 534.94,171.68 534.39,170.09 534.46,167.98 532.84,166.39 532.75,164.07 531.99,160.5 531.78,161.33 529.85,160.28 529.24,161.71 528.06,161.84 527.26,162.58 525.26,161.75 524.69,162.87 523.59,162.75 522.23,163.02 522.04,166.14 521.22,166.79 520.44,168.78 520.21,170.82 520.39,172.98 521.35,174.53 521.65,172.98 522.8,171.66 523.87,172.13 524.93,171.96 525.89,173.14 526.69,173.35 528.27,172.69 529.62,173.19 530.4,176.43 531.02,177.24 531.49,179.89 533.4,179.89 534.86,179.5 533.99,177.39 535.28,175.19 535.01,174.12\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.11\" points=\"534.31,151.02 534.86,150.4 535.9,150.59 536.22,149.6 534.26,149.14 533.09,148.83 532.2,148.84 532.89,150.18 533.8,150.2 534.31,151.02\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.12\" points=\"519.16,154.07 522.32,153.84 522.75,154.8 525.75,153.68 526.25,152.18 528.7,151.76 530.62,150.38 528.66,149.5 526.92,150.43 525.41,150.37 523.71,150.54 522.19,150.95 520.34,151.84 519.14,152.07 518.43,151.78 515.48,152.73 515.26,153.73 513.75,153.9 515.02,156.12 517.02,155.98 518.31,155.08 518.99,154.9 519.16,154.07\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_73.1.13\" points=\"514.63,156.22 512.79,156.17 511.49,158.12 509.44,160.02 508.78,161.43 507.57,163.33 506.78,165.07 505.56,168.34 504.1,170.28 503.6,172.29 502.97,174.11 501.44,175.57 500.52,177.57 499.23,178.87 497.41,181.44 497.21,182.62 498.28,182.53 500.87,182.08 502.43,179.8 503.77,178.22 504.72,177.25 506.35,174.75 508.04,174.71 509.46,173.12 510.44,171.16 511.71,170.1 511.04,168.19 511.98,167.39 512.58,167.33 512.84,165.7 513.4,164.4 514.61,164.19 515.38,162.72 514.87,159.82 514.63,156.22\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_74.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_74.1.1\" points=\"466.46,238.26 465.68,237.29 465.52,235.28 467.22,234.47 468.94,233.41 471.27,232.19 473.51,231.91 474.66,230.8 475.93,230.6 477.95,230.09 479.27,230.12 479.27,230.99 478.75,232.37 478.66,233.3 479.52,233.75 480.05,232.05 480.18,231.61 481.81,230.79 482.73,231.13 484.11,230.98 485.39,231.05 485.19,232.38 484.38,233.07 485.6,233.34 486.64,234.95 488.11,236.32 489.57,235.79 490.46,236.69 491.55,235.36 491.25,234.45 493.04,234.13 493.37,233.31 492.91,232.92 493.37,231.58 492.14,231.97 490.44,230.47 490.78,229.22 490.31,227.39 490.46,226.31 490.12,224.5 488.77,225 489.16,222.71 488.95,221.96 489.3,221.01 488.6,220.48 487.08,224 486.63,224 486.65,222.58 485.54,223.73 485.79,224.99 486.48,225.11 486.83,226.98 485.83,227.35 484.36,227.32 482.77,227.62 482.31,229.14 481.52,229.25 480.06,230.19 479.81,228.71 481.2,227.55 480.37,226.73 480.18,225.93 481.28,225.34 481.26,224.01 482.13,222.35 482.72,220.52 482.63,219.7 481.53,219.73 479.61,219.27 479.99,217.59 479.33,216.26 477.23,214.75 475.78,212.09 474.75,210.67 473.31,209.18 473.44,208.14 472.69,207.58 471.31,206.76 470.56,206.64 470.26,204.9 470.91,201.93 471.17,200.03 470.67,197.84 470.97,193.93 470.12,193.81 469.49,192.05 470.04,191.29 468.57,190.63 468.11,189.06 467.48,188.39 465.79,190.56 464.82,193.79 464.02,196.12 463.36,197.21 462.3,199.42 461.64,202.29 461.22,203.72 459.42,206.85 458.26,211.25 457.42,214.14 457.07,216.86 456.47,218.96 454.3,217.62 453.12,217.89 450.64,220.59 451.31,221.39 450.71,222.27 448.55,224.15 449.39,225.62 452.92,225.61 452.3,227.5 451.22,228.61 450.75,230.29 449.54,231.27 450.88,233.54 452.75,233.38 453.97,235.64 454.52,237.81 455.59,239.95 455.23,241.46 456.28,242.68 454.78,243.72 453.9,245.13 452.91,246.96 453.45,247.85 455.91,247.35 457.55,247.65 458.58,249.39 460.88,246.97 461.16,245.27 462.05,244.2 462.27,243.13 461.08,243.41 462.08,241.09 463.93,239.75 466.46,238.26\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_75.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_75.1.1\" points=\"330.55,283.9 330.73,282.7 329.62,281.18 327.11,280.17 325.15,280.43 326.38,282.21 325.77,283.92 327.7,285.22 328.77,285.99 329.01,285.11 328.68,284.22 329.53,284.25 330.55,283.9\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_76.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_76.1.1\" points=\"407.7,256.24 408.78,255.97 409.32,256.03 410.82,257.5 411.36,257.65 411.92,257.07 411.58,256.08 412.72,255.03 413.08,255.13 413.84,253.64 415.36,253.22 416.61,252.21 418.84,251.85 421.12,252.39 421.17,252.87 422.43,253.26 423.27,254.41 424.3,254.36 424.89,254.73 426.01,254.55 427.91,253.52 429.17,253.3 431.31,251.5 432.47,251.43 432.97,249.71 432.88,247.14 432.76,245.62 433.5,245.32 433.06,244.17 433.89,242.5 434.26,241.16 435.51,240.8 435.88,239.43 434.8,237.5 435.77,236.37 436.62,235.08 438.29,234.13 438.65,232.22 439.46,231.87 439.75,230.87 437.63,229.74 437.4,227.2 434.3,227.86 432.49,228.37 430.65,228.65 429.59,231.33 428.78,231.71 427.61,231.32 426.15,230.27 424.11,230.99 422.28,232.66 420.67,233.28 419.34,235.32 417.78,238.18 416.98,237.83 415.88,238.54 415.41,237.71 414.39,238.83 414.21,239.96 413.71,239.96 413.75,241.5 412.71,243.1 410.64,244.25 409.27,246.23 409.38,247.85 410.05,248.56 409.74,249.76 408.63,250.38 407.25,252.81 407.25,252.81 406.15,254.43 406.34,255.05 405.47,257.34 406.4,257.91 406.77,257.16 407.7,256.24\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_77.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_77.1.1\" points=\"405.95,252.98 406.57,252.47 407.25,252.81 407.25,252.81 408.63,250.38 409.74,249.76 410.05,248.56 409.38,247.85 409.27,246.23 410.64,244.25 412.71,243.1 413.75,241.5 413.71,239.96 414.21,239.96 414.39,238.83 415.41,237.71 414.46,237.81 413.38,237.99 412.5,235.94 409.54,236.11 404.58,240.4 402.07,241.88 400.12,242.45 399.18,245 402.32,247.17 402.55,249.66 402.19,251.16 402.95,251.66 403.54,252.93 404.14,253.25 405.95,252.98\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_78.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_78.1.1\" points=\"321.4,302.56 320.99,301.73 322.25,300.83 320.49,299.82 316.75,298.88 315.62,298.63 314.01,298.83 310.61,299.27 311.96,299.87 309.41,300.52 311.66,300.78 311.69,301.17 309.18,301.47 310.22,302.31 312.11,302.5 313.82,301.63 315.82,302.33 317.29,301.97 319.4,302.65 321.4,302.56\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_79.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_79.1.1\" points=\"394.6,244.79 394.72,243.94 394.55,243.62 394.58,243.6 394.38,242.94 393.79,243.23 393.61,241.83 394.03,241.59 393.66,241.3 393.65,240.74 394.36,241.03 394.48,240.21 394.04,236.8 393.83,237.35 392.65,240.46 392.65,240.46 393.03,241.16 392.91,241.28 393.22,242.26 393.36,243.85 393.53,244.38 393.57,244.4 394.09,244.4 394.19,244.76 394.6,244.79\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_80.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_80.1.1\" points=\"356.89,271.42 358.98,270.94 358.89,270.03 359.29,269.24 358.12,269.51 356.98,268.85 357.11,267.91 356.97,267.38 357.5,266.41 358.94,265.45 359.78,263.87 361.53,262.31 362.69,262.32 363.08,261.89 362.69,261.51 364.08,260.8 365.22,260.21 366.58,259.18 366.76,258.81 366.53,258.1 365.63,259.03 364.31,259.35 363.76,258.07 364.9,257.34 364.79,256.3 364.17,256.18 363.47,254.46 362.84,254.3 362.81,254.92 363.06,255.99 363.36,256.42 362.7,257.58 362.17,258.57 361.54,258.82 361.04,259.67 360.06,260.03 359.37,260.82 358.26,260.94 357.04,261.82 355.62,263.09 354.56,264.2 354.01,266.09 353.27,266.31 352.05,266.93 351.39,266.68 350.57,265.8 349.97,265.66 350.11,266.48 349.31,266.72 348.88,268.18 349.37,268.76 348.91,269.46 348.96,269.98 349.59,269.58 350.29,269.67 351.08,270.3 351.34,270.01 352.03,270.07 352.31,270.82 353.39,270.58 354.01,270.9 354.08,271.65 354.97,271.39 355.12,271.74 356.52,272.06 356.89,271.42\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_80.1.2\" points=\"362.56,254.95 362.1,253.36 362.37,252.74 362.1,251.69 360.9,252.46 360.11,252.68 357.93,253.71 358.1,254.74 359.88,254.56 361.42,254.78 362.56,254.95\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_80.1.3\" points=\"352.77,260.86 353.73,259.47 353.62,256.85 352.93,256.97 352.34,256.31 351.75,256.83 351.61,259.23 351.23,260.35 352.05,260.25 352.77,260.86\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_81.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_81.1.1\" points=\"213.63,211.11 213.09,210.73 212.22,211.1 211.4,211.92 211.66,212.44 212.36,212.6 212.72,212.52 213.79,212.32 214.59,211.77 214.79,211.15 213.63,211.11\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_82.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_82.1.1\" points=\"400.12,242.45 399.87,242.13 396.86,241.07 398.66,238.95 398.18,238.59 398,237.87 396.83,237.58 396.53,236.81 395.91,236.15 394.13,236.49 394.04,236.8 394.48,240.21 394.36,241.03 394.52,241.65 394.38,242.94 394.58,243.6 396.41,242.77 399.18,245 400.12,242.45\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_83.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_83.1.1\" points=\"553.84,252.75 554.1,251.13 554.88,250.1 554.79,248.65 553.28,247.68 550.63,247.56 549.5,245.18 548.11,245.98 547.35,247.54 544.87,247.08 543.47,246.1 541.68,246.06 543.9,244.53 544.32,240.95 543.66,240.06 542.58,240.88 542.21,242.78 540.98,243.39 539.75,244.83 540.95,245.47 541.2,246.78 542.28,247.85 542.77,249.26 545.53,249.87 547.37,249.45 547.19,253.08 548.7,252.11 549.89,254.14 550.34,254.92 549.95,257.37 548.42,259.59 548.32,260.83 549.69,261.19 552.12,258.46 553,256.85 552.71,254.84 553.84,252.75\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_83.1.2\" points=\"550,266.57 551.31,266.17 551.8,266.97 553.57,264.83 551.73,264.31 551.65,262.39 548.49,263.71 549,261.59 547.36,261.56 545.98,263.49 545.77,264.97 547.28,265.07 545.96,267.7 545.38,269.16 548.45,267.21 550,266.57\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_83.1.3\" points=\"547.08,246.61 547.6,245.89 547.28,244.63 546.35,245.3 545.76,244.82 545.87,243.59 544.61,244.19 544.2,245.18 544.52,246.42 545.5,246.18 545.75,247.06 547.08,246.61\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_84.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_84.1.1\" points=\"435.09,286.05 436.34,284.34 437.57,284.75 439.6,284.18 439.92,283.27 441.19,283.36 443.84,284.94 443.6,284.42 446,283.13 451.22,278.77 451.53,279.68 453.94,278.68 455.74,279.13 456.67,278.82 457.84,277.8 458.99,277.46 459.96,276.71 461.66,276.95 462.95,275.86 462.44,274.67 461.33,274.5 462.1,272.68 461.67,271.85 458.55,272.45 458.9,269.14 458.32,268.73 455.73,267.98 458.29,264.68 457.46,264.18 457.97,263.08 456.96,263.36 455.97,264.05 453.71,264.25 451.24,264.31 450.78,264.09 448.4,264.9 447.7,264.5 447.85,263.37 445.2,264.03 444.31,263.76 444.25,262.91 443.51,262.56 441.96,261.2 441.71,259.8 441.16,259.79 440.48,260.71 438.57,260.78 437.8,262.37 437.08,262.39 436.62,264.32 434.44,265.72 431.96,265.57 430.31,265.3 428.42,267.01 427.02,267.72 424.37,269.07 424.05,269.23 420.61,268.12 422.47,261.05 421.73,260.96 420.32,262.48 419.19,263.03 417.6,262.62 417.09,261.98 416.9,262.45 417.08,263.26 416.64,263.93 414.77,264.58 413.71,266.3 412.78,266.78 412.59,267.4 414.05,267.22 413.77,268.59 414.93,268.9 416.27,268.62 416.05,270.43 415.49,271.58 414.07,271.49 412.73,271.94 411.27,271.13 410.02,270.74 409.21,271.04 409.12,271.99 407.89,273.21 406.84,273.16 405.32,274.39 405.79,275.75 405.28,276.11 405.89,278.05 407.62,277.03 407.43,278.32 409.76,280.21 411.92,280.25 415.38,279.05 417.27,278.35 418.52,279.08 420.72,279.12 422.83,278.21 423.06,278.73 425.05,278.66 425.1,279.48 422.41,280.67 423.43,281.5 422.99,281.97 424.15,282.41 422.7,283.56 423.1,284.13 427.97,284.71 428.46,285.12 431.59,285.73 432.49,286.4 435.09,286.05\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_85.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_85.1.1\" points=\"408.57,178.99 407.15,176.35 407.2,167.85 408.18,165.93 407.01,165 406.59,164.03 405.96,163.86 405.71,162.21 405.17,161.27 404.82,159.73 404.14,158.96 401.79,161.28 401.69,162.64 395.69,167.38 395.8,169.11 395.4,169.99 395.4,170.11 395.87,171.06 396.69,172.6 397.29,174.3 396.53,176.97 396.33,178.14 395.52,179.76 396.52,181.15 397.63,182.68 398.49,182.29 398.52,180.99 399.09,180.22 400.25,180.22 402.38,178.24 402.9,178.22 403.29,178.28 403.66,178.01 404.77,177.83 405.25,178.8 406.76,179.78 407.44,178.99 408.57,178.99\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_86.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_86.1.1\" points=\"457.97,263.08 457.92,262.64 455.94,261.59 455.67,260.81 453.83,260.58 453.67,259.32 452,259.59 451.09,259.2 449.94,258.27 450.29,257.81 449.99,257.35 447.23,257.05 445.19,257.69 443.6,257.54 443.42,258.68 445.15,258.35 445.52,258.96 446.72,258.77 448.21,260.19 446.12,261.22 445.21,260.73 443.89,261.46 444.75,262.72 444.25,262.91 444.31,263.76 445.2,264.03 447.85,263.37 447.7,264.5 448.4,264.9 450.78,264.09 451.24,264.31 453.71,264.25 455.97,264.05 456.96,263.36 457.97,263.08\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_87.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_87.1.1\" points=\"515.42,202.77 516,201.24 516.13,198.49 513.56,196.72 514.43,195.32 512.71,195.15 511.38,194.23 509.96,194.56 509.17,195.76 508.09,198.14 507.38,200.92 508.19,202.82 510.26,203.26 511.84,202.93 513.31,202.03 513.85,203.61 515.42,202.77\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_88.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_88.1.1\" points=\"530.71,253.98 530.72,254.16 531.43,254.09 531.58,255 532.6,255.1 533.18,255.23 533.16,255.72 535.64,253.34 536.64,252.03 537.74,249.67 537.67,248.54 536.45,248.14 535.59,247.29 534.28,247.11 533.62,248.23 533.23,249.78 531.59,251.91 532.57,252.25 530.71,253.98\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_89.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_89.1.1\" points=\"370.71,264.06 371.03,263.71 371.24,263.72 371.12,263.25 370.97,263.02 371.03,262.87 370.71,262.8 369.86,262.5 369.83,262.1 369.64,262.12 369.64,262.12 369.47,262.82 369.1,263.02 368.74,263.54 368.98,263.97 369.32,264.11 369.46,264.74 369.72,264.85 369.95,264.58 370.24,264.46 370.46,264.16 370.71,264.06\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_90.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_90.1.1\" points=\"414.46,237.81 414.92,236.87 414.84,236.38 415.57,234.76 414.45,234.7 413.93,235.73 412.5,235.94 413.38,237.99 414.46,237.81\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_91.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_91.1.1\" points=\"515.42,202.77 513.85,203.61 513.31,202.03 511.84,202.93 512.24,203.96 512.04,205.89 510.42,207.88 509.96,210.12 508.41,211.96 507.16,212.11 506.96,211.32 506.02,211.26 505.46,211.66 503.96,210.31 503.59,212.33 503.59,214.71 502.47,214.81 502.14,216.16 501.31,216.86 501.5,217.68 502.6,219.14 502.84,218.61 503.72,218.55 502.96,221.1 503.73,221.43 505.04,219.67 506.16,217.64 508.16,217.62 509.16,215.66 508.23,215.07 507.91,214.27 510.1,212.92 511.91,210.24 513.26,208.25 514.75,206.66 515.4,205.05 515.42,202.77\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_92.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_92.1.1\" points=\"394.6,244.79 394.19,244.76 394.09,244.4 393.57,244.4 393.92,246.1 394.52,247.56 394.54,247.64 395.25,247.53 395.6,246.72 394.85,245.93 394.6,244.79\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_93.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_93.1.1\" points=\"325.05,187.74 324.97,187.07 325.13,185.95 324.77,184.92 325.25,184.28 325.78,184.12 326.47,183.15 326.52,182.23 326.36,181.94 326.23,180.03 325.79,180.01 324.08,181.12 322.58,182.89 321.18,184.16 320.07,185.66 320.47,186.4 320.56,187.07 321.32,188.33 322.1,189.41 322.45,189.47 322.89,189.73 323.57,188.31 323.45,187.38 323.77,186.88 324.24,186.87 324.59,187.8 325.05,187.74\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_94.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_94.1.1\" points=\"378.35,241.2 377.86,240.18 378.17,239.28 377.86,237.96 378.45,236.24 378.95,228.53 379.39,220.39 379.6,215.93 377.73,215.92 377.75,214.98 371.12,219.27 364.54,223.52 362.95,222.31 361.84,221.48 360.89,222.7 358.32,223.66 357.58,225.04 356.29,226.07 355.55,225.66 354.96,226.89 354.87,227.83 353.89,229.43 354.51,230.34 354.33,231.71 354.51,232.89 354.37,233.88 354.6,235.64 354.49,236.63 353.93,238.52 354.68,239.02 354.79,239.91 354.6,240.79 355.64,241.61 356.1,242.28 356.84,242.89 356.87,244.5 358.72,243.78 359.37,243.96 360.68,243.61 362.79,242.67 363.61,240.79 365.03,240.38 367.28,239.49 369.01,238.43 369.75,238.99 370.44,239.96 369.98,241.59 370.41,242.61 371.47,243.6 372.52,243.88 374.65,243.45 375.25,242.51 375.83,242.5 376.35,242.15 377.92,241.9 378.35,241.2\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_95.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_95.1.1\" points=\"473.78,184.29 472.36,183.76 471.49,185.6 471.02,188.94 471.53,192.7 472.76,191.41 473.64,189.78 474.57,187.37 474.44,184.95 473.78,184.29\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_96.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_96.1.1\" points=\"383.13,100.68 382.55,100.47 381.5,102.11 382.45,103.47 383.36,104.31 384.14,104.75 384.77,104.08 385.27,103.43 384.7,102.39 384.38,101.7 383.47,101.36 383.13,100.68\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_97.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_97.1.1\" points=\"374.82,286.78 375.08,286.05 374.06,285.52 373.9,284.59 372.52,283.97 371.2,283.98 370.79,284.49 370.06,284.67 369.89,285.09 369.96,285.54 369.32,285.8 367.86,286.09 367.37,287.45 368.84,287.94 371.11,287.84 372.4,288 372.64,287.66 373.38,287.56 374.82,286.78\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_98.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_98.1.1\" points=\"347.8,276.3 347.39,276.27 347.07,276.42 347.19,277.41 347.55,277.48 347.85,277.08 347.8,276.3\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_99.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_99.1.1\" points=\"375.31,289.74 376.02,289.38 376.29,288.61 376.91,287.67 375.59,287.05 374.82,286.78 373.38,287.56 372.64,287.66 372.4,288 371.11,287.84 368.84,287.94 367.37,287.45 367.24,288.65 367.74,289.65 368.9,290.18 370.16,289.01 371.22,289.04 371.26,290.24 372.34,290.52 372.95,290.33 374.21,289.75 375.31,289.74\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_100.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_100.1.1\" points=\"335.7,248.72 336.27,247.39 336.36,246.13 336.88,243.93 337.29,243.48 337,242.66 334.96,242.31 334.25,241.53 333.34,241.34 333.26,239.78 331.41,238.93 330.8,237.87 329.5,237.29 327.92,236.97 325.34,235.38 325.3,232.82 325.05,232.82 325.05,232.82 325.07,231.66 324.08,231.59 323.56,231.1 322.84,231.1 322.27,231.38 320.92,231.15 320.36,229.45 319.85,229.29 319.02,226.52 316.72,224.14 316.1,221.08 315.41,220.08 315.2,219.28 311.55,219.1 311.52,219.1 311.63,220.14 312.27,220.74 312.84,221.9 312.76,222.65 313.37,224.22 314.31,225.62 314.86,225.97 315.33,227.26 315.41,228.42 316.03,229.78 317.12,230.57 318.2,232.79 318.23,232.82 319.05,233.65 320.53,233.89 321.82,235.36 322.63,235.93 324,237.72 323.68,240.37 324.33,242.19 324.57,243.3 325.61,244.71 327.19,245.67 328.35,246.53 329.43,248.67 329.94,249.93 331.07,249.92 331.98,249.05 333.44,249.19 335.03,248.74 335.7,248.72\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_101.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_101.1.1\" points=\"380.09,269.05 379.71,269.9 379.75,270.69 379.59,271.5 378.6,272.59 378.04,273.36 377.52,273.9 377.05,274.07 377.36,274.34 378.28,274.52 379.41,273.95 380.01,273.89 380.73,273.4 380.73,272.78 381.3,272.48 381.62,271.72 382.2,271.25 382.14,270.97 382.43,270.79 382.07,270.65 381.21,270.7 381.03,270.96 380.75,270.81 380.9,270.48 380.59,269.89 380.43,269.25 380.09,269.05\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_102.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_102.1.1\" points=\"421.35,138.42 421.44,135.67 421.79,134.6 421.55,133.51 421.22,132.84 420.75,134.17 420.4,133.5 420.59,131.81 420.38,130.85 419.89,130.33 419.64,128.41 418.78,125.77 417.71,122.68 416.32,118.45 415.39,115.36 414.4,112.81 413.04,112.29 411.55,111.36 410.68,111.92 409.5,112.71 409.17,113.87 409.25,115.82 408.85,117.59 408.84,119.19 409.27,120.8 410.04,121.19 410.11,121.93 411.02,123.63 411.28,125.06 410.99,126.13 410.78,127.55 410.8,129.64 411.45,130.91 411.77,132.35 412.59,132.43 413.53,132.9 414.16,133.31 414.89,133.34 415.9,134.64 417.34,136.05 417.9,137.2 417.74,138.18 418.42,137.9 419.42,139.49 419.52,140.88 420.12,141.9 420.65,140.92 421.03,139.94 421.35,138.42\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_103.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_103.1.1\" points=\"183.43,228.87 184.06,228.94 183.01,227.01 182.38,225.43 181.64,222.46 181.26,221.38 181.3,220.17 181.6,219.08 181.6,217.34 182.38,215.67 182.54,214.39 183,213.28 184.63,212.68 185.16,211.74 186.68,212.37 187.96,212.6 189.24,213 190.32,213.39 191.5,214.31 192.1,215.62 192.54,217.51 192.93,218.16 194.13,218.74 195.93,219.26 197.34,219.18 198.36,219.37 198.66,218.9 198.43,217.82 197.35,216.49 196.75,215.12 196.99,214.73 196.59,213.76 195.93,212 195.6,212.58 195.25,212.54 194.94,212.51 194.16,211.15 193.9,211.41 193.69,211.31 193.66,210.98 192.15,211 190.63,211 190.44,209.72 189.71,209.72 190.21,208.96 190.74,208.43 190.86,207.94 191.11,207.8 190.96,207.03 188.86,207.02 187.84,205.16 188.02,204.74 187.76,204.2 187.64,203.54 186.09,205.99 185.34,206.73 184.08,207.33 183.15,207.16 181.72,206.31 180.86,206.08 179.79,206.68 178.62,207.12 177.24,208.16 176.06,208.48 174.37,209.53 173.17,210.62 172.86,211.22 171.97,211.36 170.42,212.07 169.92,213.1 168.4,214.38 167.85,215.8 167.67,216.89 168.26,217.11 168.21,217.75 168.7,218.33 168.87,219.1 168.53,220.1 168.57,220.99 168.27,222.11 167.35,224.31 166.15,226.04 165.71,227.41 164.56,228.3 164.41,228.84 165.01,230.19 164.33,230.69 163.69,231.75 163.72,233.26 162.92,233.44 162.33,234.58 161.91,235.62 162.05,236.3 161.71,237.91 161.68,239.54 161.98,240.36 161.13,241.2 160.58,241.1 159.89,241.69 159.34,240.83 159.25,239.81 158.87,238.21 159.13,237.33 159.83,235.86 159.94,235.35 160.13,235.2 160.11,234.46 160.4,234.49 160.31,233.09 160.63,232.54 160.75,231.77 161.44,230.67 161.42,228.64 161.64,227.68 161.82,226.65 161.62,225.49 162.38,225.41 162.78,224.41 163.13,223.42 163,223.03 162.13,222.21 161.85,222.22 161.74,223.57 160.99,224.83 160.1,225.89 159.42,226.45 159.89,228.06 159.96,229.25 159.39,229.92 158.56,230.9 158.27,230.61 158.03,231.18 157.2,231.71 156.64,232.97 156.8,233.13 157.42,233.01 158.25,233.82 158.6,234.79 157.86,236.32 157.13,236.92 156.98,238.25 156.87,239.65 156.73,241.34 156.78,243.24 158.6,243.4 160.66,243.63 160.37,243.22 162.36,242.19 165.42,240.7 168.53,240.72 169.77,240.72 170.06,241.59 172.76,241.59 173.09,240.84 173.68,240.17 174.32,239.24 174.51,238.13 174.55,236.95 175.18,236.3 176.31,235.66 177.78,237.35 179.08,237.39 179.95,236.54 180.34,235.07 180.55,233.8 181.16,232.57 181.13,231.05 181.33,230.03 182.41,229.35 183.43,228.87\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_104.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_104.1.1\" points=\"373.01,262.4 373.25,261.11 372.97,261.04 372.76,260.7 371.94,260.74 371.41,260.31 370.45,260.14 369.79,260.62 369.51,261.45 369.64,262.12 369.64,262.12 369.83,262.1 369.86,262.5 370.71,262.8 371.03,262.87 371.52,262.99 372.21,263.02 373.01,262.4\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_105.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_105.1.1\" points=\"345.98,214.02 346.02,208.81 345.13,207.29 345,205.89 343.54,205.53 341.31,205.33 340.7,204.52 339.65,204.43 338.6,204.42 338.19,204.86 337.29,204.53 335.75,203.58 335.44,202.87 334.16,201.84 333.93,201.25 333.24,200.79 332.45,201.1 332,200.54 331.75,198.96 330.43,197.05 330.46,196.27 330.01,195.3 330.11,193.96 329.43,193.62 329.04,193.32 328.79,194.31 328.31,194.05 328.03,194.1 327.72,193.42 326.44,193.44 325.99,193.79 325.77,193.58 325.27,194.24 325.36,194.93 325.16,195.2 324.8,194.97 324.88,195.72 325.22,196.32 324.55,197.28 324.36,197.92 324,198.42 323.67,198.48 323.27,198.16 322.74,197.85 322.28,197.35 321.57,197.54 321.12,198.12 320.85,198.2 320.42,197.89 320.16,197.89 320.07,198.73 320.16,199.45 320.03,200.34 319.42,200.98 319.11,202.29 319.06,203.72 319.62,204.13 319.92,205.48 320.44,205.53 321.57,204.89 322.5,205.35 323.14,205.19 323.39,205.7 329.96,205.74 330.34,207.33 330.06,207.61 329.36,217.36 328.71,226.93 331.16,226.97 336.54,222.15 341.99,217.29 342.38,216.24 343.39,215.6 344.15,215.23 344.17,213.8 345.98,214.02\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_106.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_106.1.1\" points=\"502.6,219.14 501.5,217.68 501.31,216.86 500.47,216.34 499.7,215.36 498.57,215.26 498.24,212.83 497.62,212.42 498.72,210.43 500,208.78 500.89,207.28 500.56,205.29 500.05,204.87 500.59,203.73 501.91,201.91 502.25,200.63 502.35,199.56 503.22,197.47 502.53,195.32 501.94,192.95 501.63,194.66 501.97,196.43 501.27,197.79 501.14,200.29 500.33,201.48 499.46,204.22 498.78,207.1 497.8,208.98 496.89,207.84 495.25,206.22 494.3,206.42 493.22,206.96 493.39,209.77 492.73,211.89 491.05,214.49 491.11,215.3 490.11,215.59 488.65,217.42 488.23,219.22 488.86,218.88 488.6,220.48 489.3,221.01 488.95,221.96 489.16,222.71 488.77,225 490.12,224.5 490.46,226.31 490.31,227.39 490.78,229.22 490.44,230.47 492.14,231.97 493.37,231.58 492.91,232.92 493.37,233.31 493.04,234.13 493.92,234.29 494.78,233.02 495.6,232.5 496.06,230.84 496.43,229.04 495.34,227.21 495.72,224.6 497.33,224.97 498.15,222.93 499.26,222.5 499.16,220.66 500.53,219.82 501.31,219.41 502.37,220.06 502.6,219.14\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_107.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_107.1.1\" points=\"368.98,263.97 368.74,263.54 368.36,263.37 368.23,263.73 367.67,262.78 367.82,262.16 367.82,262.16 367.5,262.31 367.03,262.94 366.36,263.33 366.36,263.33 366.49,263.66 366.62,264.71 367.06,265.16 367.32,265.33 367.74,265 367.98,264.74 368.48,264.53 369.08,264.13 368.98,263.97\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_108.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_108.1.1\" points=\"482.74,278.15 485.18,277.41 486.31,277.74 487.95,277.97 489.51,277.74 491.41,276.89 492.82,275.98 494.13,276 496.09,275.71 497.12,276.15 498.8,276.44 500.06,277.69 501.03,277.5 502.16,276.91 503.74,277.06 503.93,275.72 504.07,273.92 504.89,273.18 505.56,273.41 507.15,273.12 507.83,273.79 509.34,273.21 511.45,271.94 511.69,271.28 510.43,271.49 508.48,271.24 507.78,270.72 507.43,269.49 505.62,268.77 504.72,267.77 503.01,268.15 502.1,268.32 501.99,267.11 502.84,266.38 503.4,265.75 502.7,265.11 502.16,264.08 500.77,263.4 498.58,263.33 496.5,262.66 495.25,261.62 494.32,262.22 492.52,262.22 489.8,263.39 488.21,263.68 486.36,263.41 483.12,263.85 481.51,263.8 480.14,264.94 478.7,266.7 477.7,266.91 475.4,268.08 473.32,268.35 471.45,268.67 470.56,269.48 470.12,271.64 468.43,273.12 466.07,273.8 464.41,274.76 463.43,276.01 464.77,276.31 466.68,277.84 468.38,278.66 469.89,278.13 471.37,278.1 472.76,277.28 474.2,277.21 476.49,276.77 477.17,278 476.01,279.03 476.39,280.82 478.38,280.11 479.77,279.91 481.68,279.46 482.74,278.15\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_109.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_109.1.1\" points=\"405.88,144.84 405.72,142.55 405.83,140.53 405.72,136.94 405.95,135.82 405.38,134.19 404.65,132.61 403.53,131.2 401.99,130.34 400.08,129.24 398.09,126.81 397.44,126.4 396.21,124.8 395.51,124.28 395.27,122.68 395.93,120.98 396.16,119.67 396.13,119.01 396.42,119.12 396.22,116.94 395.88,115.91 396.23,115.53 395.92,114.61 395.19,113.83 393.81,113.09 391.79,111.9 391.03,111.09 391.09,110.17 391.49,110.02 391.26,108.87 390.06,108.89 390,109.85 389.83,110.83 389.76,111.62 390.22,114.07 389.91,115.64 389.35,118.76 391.21,121.29 391.73,122.9 391.99,123.11 392.25,124.43 392.03,125.1 392.19,126.78 392.59,128.35 392.73,131.22 391.92,131.95 391.15,132.11 390.82,132.68 390.08,133.16 388.72,133.11 388.65,133.96 388.56,135.59 393.61,137.47 394.51,136.37 394.97,136.58 395.6,136 395.65,135.09 395.26,134.03 395.3,132.42 396.3,131.02 396.88,132.59 397.61,133.07 397.61,136.01 397,137.66 396.44,138.4 396.34,138.4 396.19,141.03 396.66,143.19 397.29,143.29 399.25,142.64 399.69,142.93 400.84,142.99 401.46,143.68 402.44,143.64 404.28,144.54 405.65,145.88 405.65,145.88 405.65,145.88 405.88,144.84\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_110.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_110.1.1\" points=\"331.16,226.97 328.71,226.93 329.36,217.36 330.06,207.61 330.34,207.33 329.96,205.74 323.39,205.7 323.14,205.19 322.5,205.35 321.57,204.89 320.44,205.53 319.92,205.48 319.62,204.13 319.06,203.72 318,205.28 317.04,206.96 315.97,207.56 315.2,208.23 314.29,208.21 313.48,207.71 312.67,207.91 312.09,207.18 311.98,208.4 312.47,209.52 312.72,211.66 312.6,213.89 312.44,215.01 312.63,216.13 312.25,217.19 311.42,218.16 311.8,218.9 318.13,218.89 317.91,222.11 318.33,223.25 319.85,223.44 319.95,229.07 325.18,228.96 325.25,232.26 331.16,226.97\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_111.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_111.1.1\" points=\"395.8,137.3 396.04,136.81 396.35,137.38 396.89,136.49 396.95,136.77 396.66,137.99 396.36,138.09 396.34,138.4 396.44,138.4 397,137.66 397.61,136.01 397.61,133.07 396.88,132.59 396.3,131.02 395.3,132.42 395.26,134.03 395.65,135.09 395.6,136 394.97,136.58 394.51,136.37 393.61,137.47 392.77,138.06 393.35,140.19 393.9,140.99 393.65,142.9 394.05,144.77 394.35,145.39 393.98,147.36 393.23,148.39 394.84,147.96 395.15,147.32 395.15,147.32 395.09,147.07 395.63,145.57 395.64,142.8 395.12,141.52 395.54,139.83 395.49,138.83 395.84,138.16 395.8,137.3\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_112.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_112.1.1\" points=\"536.05,180.29 534.86,179.5 533.4,179.89 531.49,179.89 531.02,177.24 530.4,176.43 529.62,173.19 528.27,172.69 526.69,173.35 525.89,173.14 524.93,171.96 523.87,172.13 522.8,171.66 521.65,172.98 521.35,174.53 522.58,173.73 523.86,174.17 524.15,176.14 524.85,176.58 526.83,177.09 527.96,178.93 528.71,180.4 529.52,179.2 529.83,179.99 530.63,179.91 530.66,181.4 530.67,182.55 531.86,184.16 532.57,185.98 533.24,185.99 534.18,184.81 534.32,183.8 535.45,183.15 536.87,182.45 536.8,181.54 535.69,181.43 536.05,180.29\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_112.1.2\" points=\"506.72,184.31 506.91,183.11 508,183.39 508.49,184.35 508.88,184.13 509.93,182.72 510.7,181.17 510.86,179.6 510.72,178.54 510.91,177.74 511.07,176.36 511.67,175.72 512.36,173.66 512.34,172.87 511.16,172.71 509.57,174.44 507.56,176.29 507.33,177.48 506.32,179.04 506.02,180.96 505.37,182.23 505.47,183.92 505.05,184.91 505.31,185.32 506.72,184.31\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_113.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_113.1.1\" points=\"376.92,129.38 378.28,129.89 379.33,129.76 379.96,129.25 379.96,129.07 379.02,128.56 378.53,128.55 377.45,127.66 376.86,128.6 374.32,127.8 373.11,127.73 372.76,119.73 371.16,119.65 370.89,113.19 370.49,105.15 369.03,104.05 368.17,103.89 367.2,104.3 366.5,104.45 366.27,105.37 365.68,105.97 364.87,104.9 363.76,106.53 363.2,108.11 362.93,110.23 362.59,111.82 362.17,115.21 362.21,117.86 362.04,119.07 361.44,119.99 360.65,121.84 359.87,124.53 359.54,125.94 358.26,128.14 358.2,129.88 358.99,130.31 359.97,130.7 361.03,130.63 361.98,129.61 362.23,129.76 368.86,129.86 369.95,128.78 373.89,128.46 376.92,129.38\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_114.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_114.1.1\" points=\"608.66,118.96 607.87,118.43 607.18,119.03 606.35,120.03 605.69,121.22 605.11,122.79 605.11,123.55 605.8,123.52 606.48,122.76 606.96,122 607.28,121.37 608.16,119.99 608.66,118.96\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_115.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_115.1.1\" points=\"360.89,222.7 361.84,221.48 362.95,222.31 363.45,218.85 364.07,218.27 364.12,217.56 364.82,216.79 364.49,215.82 363.98,211.25 363.97,208.3 361.92,206.15 361.27,203.14 361.97,202.3 361.99,200.82 363.05,200.77 362.9,199.69 362.44,199.56 362.4,198.83 362.09,198.77 360.94,201.29 360.55,201.38 359.28,200.1 358,200.77 357.11,200.9 356.64,200.58 355.68,200.65 354.72,199.67 353.88,199.61 351.88,200.8 351.1,200.24 350.26,200.28 349.64,201.14 347.98,202 346.22,201.73 345.79,201.23 345.57,199.91 345.1,198.98 344.99,196.93 343.73,198.26 343.14,198.25 342.59,197.58 342.62,199.15 340.72,199.67 340.67,200.78 339.74,202.28 339.52,203.32 339.65,204.43 340.7,204.52 341.31,205.33 343.54,205.53 345,205.89 345.13,207.29 346.02,208.81 345.98,214.02 348.26,215.02 352.89,219.42 358.32,223.66 360.89,222.7\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_116.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_116.1.1\" points=\"362.4,198.83 363.06,197.91 362.89,197.49 362.81,196.73 361.45,194.95 361.03,193.47 360.81,192.27 360.46,191.76 360.15,190.14 359.27,189.18 359.02,188.01 358.66,187.07 358.51,186.11 357.38,185.33 356.44,186.28 355.81,186.24 354.83,184.88 354.35,184.86 353.57,182.62 353.15,180.97 351.43,180.14 350.8,180.26 350.16,179.74 348.83,179.79 347.94,181.24 347.39,182.93 346.21,184.46 344.97,184.43 343.5,184.43 343.59,188.17 343.55,189.65 343.86,191.11 344.36,191.82 345.16,193.25 344.99,193.87 345.31,194.8 344.93,196.17 344.99,196.93 345.1,198.98 345.57,199.91 345.79,201.23 346.22,201.73 347.98,202 349.64,201.14 350.26,200.28 351.1,200.24 351.88,200.8 353.88,199.61 354.72,199.67 355.68,200.65 356.64,200.58 357.11,200.9 358,200.77 359.28,200.1 360.55,201.38 360.94,201.29 362.09,198.77 362.4,198.83\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_117.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_117.1.1\" points=\"202.66,204.58 202.49,204.36 202.36,203.85 202.43,203.02 201.97,202.24 201.7,201.31 201.55,200.3 201.58,199.71 201.53,198.68 201.26,198.45 201.02,197.47 201.08,196.86 200.69,196.27 200.72,195.65 200.94,195.27 200.5,194.78 200.03,194.93 199.79,195.41 199.29,195.6 198.88,195.3 197.84,195.91 197.57,195.61 197.06,196.34 196.37,197.27 196.08,198.04 195.45,198.77 194.73,199.8 194.95,200.16 195.18,199.81 195.33,199.98 195.85,200.07 196.11,200.59 196.35,200.62 196.43,201.74 196.82,201.8 197.16,201.78 197.58,202.39 198.02,201.93 198.22,202.21 198.55,202.49 199.19,203.12 199.27,203.59 199.42,203.57 199.69,204.11 199.87,204.18 200.11,203.83 200.43,203.73 200.82,204.02 201.24,204.02 201.84,204.32 202.1,204.63 202.66,204.58\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_118.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_118.1.1\" points=\"347.37,280.48 347.67,278.67 346.89,279.07 345.98,279.83 344.69,279.47 343.67,279.61 343.67,279.61 344.38,280.09 345.52,282.6 347.38,283.3 348.53,283.26 348.81,282.69 348.53,281.13 348.21,280.48 347.37,280.48\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_119.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_119.1.1\" points=\"371.41,308.15 375.33,307.35 373.95,307.05 375.51,306.33 375.51,306.33 373.68,305.86 372.77,305.75 372.98,306.57 371.32,307.02 369.64,306.64 369.33,305.79 368.36,305.26 367.01,305.55 365.48,305.49 364.01,306.11 363.38,305.8 362.66,305.76 362.67,304.97 360.39,305.17 360.21,304.49 359.07,304.5 358.44,303.62 357.46,302.22 355.82,300.38 356.34,299.93 355.97,299.39 354.73,299.41 354.07,298.12 354.35,296.25 355.24,295.51 355,293.79 354.01,292.76 353.51,291.88 352.56,292.81 350.1,291.05 348.36,290.69 346.49,291.47 345.95,293.11 345.4,296.49 346.53,297.4 349.78,298.57 352.11,299.98 354.16,301.82 356.71,304.25 358.54,305.16 361.46,306.63 363.89,307.12 365.82,307.06 367.3,307.99 369.42,307.94 371.41,308.15\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_119.1.2\" points=\"364.6,316.23 366.73,316.01 365.46,315.64 362.55,315.56 359.49,315.67 359.21,315.86 357.75,315.87 356.51,316.18 359.52,316.36 361.06,316.2 361.96,316.39 364.6,316.23\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_119.1.3\" points=\"364.91,314.42 362.72,314.09 360.79,314.28 361.42,314.48 360.68,314.72 362.77,314.88 363.32,314.59 364.91,314.42\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_119.1.4\" points=\"357.59,315.77 361.2,315.24 358.73,314.96 358.38,314.39 357.51,314.25 357.24,313.57 355.97,313.54 353.55,314.04 354.42,314.32 352.79,314.55 350.6,315.18 349.66,315.73 352.36,315.98 352.99,315.74 354.43,315.75 354.73,315.98 356.21,316 357.59,315.77\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_120.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_120.1.1\" points=\"478.66,233.3 478.75,232.37 479.27,230.99 479.27,230.12 477.95,230.09 475.93,230.6 474.66,230.8 473.51,231.91 471.27,232.19 468.94,233.41 467.22,234.47 465.52,235.28 465.68,237.29 466.46,238.26 466.99,238.77 468.41,238.11 470.32,236.72 471.27,236.41 472.04,235.38 473.37,234.95 474.86,234.01 476.77,233.51 478.66,233.3\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_121.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_121.1.1\" points=\"606.36,88.97 606.11,86.82 607.03,88.21 607.37,87.65 606.59,86.12 607.38,85.46 608.3,85.3 609.68,86.07 610.3,85.84 608.71,84.05 607.43,82.89 606.31,82.93 605.48,82.32 605.01,81.47 604.53,81.1 603.18,80.04 601.45,78.7 599.71,77.92 599.84,78.43 599.43,78.71 601.48,80.32 601.77,81.41 600.71,82.21 601.25,82.93 602.82,83.62 604.12,85.17 604.91,86.47 605.16,87.83 605.43,88.19 605.23,89.04 605.13,90.85 605.34,92.31 606.01,92.48 606.17,91.33 607.05,90.79 606.36,88.97\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_121.1.2\" points=\"597.52,79.42 597.26,78.61 598.91,79.41 598.73,78.58 598.11,77.76 596.88,76.86 594.81,75.44 593.45,74.67 593.26,73.75 592.11,73.73 590.27,73.01 588.87,71.77 586.46,69.88 584.61,69.05 583.44,68.52 582.14,68.56 581.73,69.17 580.26,69.3 580.59,69.98 582.51,71.37 585.84,73.23 587.07,73.59 588.69,74.32 590.73,75.32 592.39,76.32 594.13,77.76 595.06,78.26 596.08,79.35 597.79,80.26 597.52,79.42\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_122.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_122.1.1\" points=\"434.27,218.41 433.83,216.88 433.09,217 432.81,216.46 432.66,215.33 433.01,213.82 432.89,213.54 432.14,213.55 431.2,212.71 431.15,211.61 430.82,211.13 429.8,211.15 429.21,210.58 429.3,209.66 428.56,209.03 427.64,209.25 426.61,208.48 425.87,208.35 425.21,209.94 423.61,213.67 428.28,215.92 428.89,220.39 427.97,221.97 427.91,222.86 428.27,223.78 428.17,224.68 428.84,225.11 428.52,225.42 428.47,226.85 429.28,226.86 430.19,225.36 431.19,224.56 432.4,224.27 433.41,223.87 434.29,222.6 434.82,221.86 435.43,221.58 435.48,221.08 435.05,219.76 434.87,219.13 434.27,218.41\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_122.1.2\" points=\"428.99,228.99 428.84,228.6 428.44,229.34 428.8,230.08 429.02,229.89 428.99,228.99\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_123.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_123.1.1\" points=\"458.58,249.39 457.55,247.65 455.91,247.35 453.45,247.85 452.91,246.96 453.9,245.13 454.78,243.72 456.28,242.68 455.23,241.46 455.59,239.95 454.52,237.81 453.97,235.64 452.75,233.38 450.88,233.54 449.54,231.27 450.75,230.29 451.22,228.61 452.3,227.5 452.92,225.61 449.39,225.62 448.55,224.15 447.29,224.71 446.57,226.29 445.08,227.96 442.2,227.55 439.61,227.51 437.4,227.2 437.63,229.74 439.75,230.87 439.46,231.87 438.65,232.22 438.29,234.13 436.62,235.08 435.77,236.37 434.8,237.5 437.63,236.41 439.15,236.73 440.14,236.45 440.37,236.92 441.5,236.74 443.38,237.63 443.09,239.44 443.73,240.64 444.9,240.64 444.95,241.23 446.08,241.51 446.7,241.31 447.19,241.9 446.83,243.17 447.21,244.43 448.08,244.96 447.16,246.34 448.64,246.27 448.89,247.02 448.64,247.82 449.19,248.69 448.76,249.71 448.18,250.58 448.85,251.47 450.37,251.89 452.06,252.13 452.74,252.51 453.56,252.73 454.95,251.79 455.83,250.22 458.58,249.39\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_124.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_124.1.1\" points=\"210.99,190.03 210.77,189.69 211.08,188.32 210.73,187.63 210.21,187.8 209.94,186.67 209.42,187.34 209.13,188.59 209.58,189.21 209.17,189.37 208.9,190.14 208.12,190.78 207.38,190.63 207,189.83 206.29,189.25 205.93,189.16 205.74,188.68 206.46,187.42 205.99,187.13 205.74,186.78 204.96,186.66 204.74,188.05 204.51,187.66 203.97,187.79 203.69,188.73 203.02,188.88 202.6,189.15 201.89,189.15 201.81,188.64 201.64,188.99 201.76,189.45 201.92,189.92 201.88,190.34 202.15,190.62 201.83,190.96 201.88,191.89 202.53,192.1 203.07,191.27 203.01,190.78 203.66,190.67 203.83,190.86 204.25,190.29 205.07,190.46 205.81,191.05 206.85,191.51 207.46,192.2 208.36,192.07 208.29,191.84 209.2,191.76 209.91,191.36 210.41,190.67 210.99,190.03\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_125.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_125.1.1\" points=\"222.94,159.84 221.44,159.95 221.23,159.6 219.88,159.15 218.03,157.57 217.95,156.48 217.56,155.67 217.77,154.42 216.8,153.75 216.84,152.77 216.43,152.34 217.22,150.25 218.22,148.85 217.93,147.85 219.04,147.72 219.74,146.48 221.2,146.43 222.47,147.79 222.59,144.28 223.35,144.01 224.26,144.41 225.95,140.71 225.65,139.93 225.7,138.32 225.84,136.37 225.3,135.23 225.67,134.38 225.37,133.61 226.26,131.7 225.49,129.25 225.18,128.09 224.41,127.51 222.62,128.81 222.38,129.74 218.89,132.02 215.69,134.51 214.29,135.92 213.43,137.81 213.64,138.47 211.98,141.48 210.03,145.74 208.17,150.34 207.43,151.4 206.82,153.11 205.46,154.62 204.24,155.56 204.73,156.6 203.84,158.82 204.31,160.45 205.6,161.92 205.82,160.95 205.36,160.39 205.43,159.54 206.11,159.73 206.79,159.48 207.52,158.3 208.43,159.26 208.7,160.83 209.67,162.85 211.65,163.77 213.43,166.21 213.94,167.73 213.7,169.5 214.14,169.72 215.25,168.62 215.79,167.52 216.56,166.92 217.57,164.47 218.81,164.18 219.72,164.8 220.32,164.39 221.32,164.59 222.61,163.5 221.58,161.13 222.08,161.08 222.94,159.84\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_126.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_126.1.1\" points=\"548.28,189.43 548.59,187.89 548.79,186.59 548.39,184.47 547.61,186.83 546.92,185.66 547.57,183.95 547.16,182.86 545.13,184.21 544.54,185.89 544.96,186.99 543.82,188.09 543.38,187.13 542.59,187.21 541.47,185.92 541.14,186.6 541.63,188.55 542.62,189.21 543.44,190.08 544.12,189.03 545.32,189.66 545.5,190.7 546.66,190.76 546.38,192.55 547.83,191.45 548.09,190.29 548.28,189.43\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_126.1.2\" points=\"545.86,198.09 546.65,195.52 545.3,196.13 545.43,195.35 546,193.93 545.28,193.41 545.02,195.04 544.51,195.16 544.08,196.55 545.07,196.37 544.94,197.24 543.7,199 545.29,198.95 545.86,198.09\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_126.1.3\" points=\"543.88,193.75 543.37,192.99 543.01,191.53 542.56,190.84 541.38,192.44 541.65,193.06 542,193.7 542.02,195.14 542.91,195.27 542.82,193.72 543.79,195.95 543.88,193.75\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_126.1.4\" points=\"536.59,212.55 537.72,211.9 538.11,212.49 538.37,211.92 538.29,210.98 539.15,209.36 539.07,207.47 538.23,206.71 538.28,204.88 538.94,203.06 539.85,202.8 540.53,203.07 542.78,201.81 542.8,200.56 543.42,200.01 543.4,198.95 541.96,200.07 541.18,201.28 540.87,200.44 539.63,201.81 538.18,201.47 537.29,201.98 537.23,202.92 537.66,203.51 537.08,204.03 537,203.21 535.99,204.52 535.58,205.52 535.15,207.7 535.94,206.95 535.47,210.5 535.6,212.55 536.59,212.55\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_126.1.5\" points=\"539.98,197.46 541.06,196.75 542.11,196.75 542.19,195.79 541.54,194.81 540.57,194.12 540.39,195.19 540.37,196.37 539.98,197.46\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_126.1.6\" points=\"539.03,200.17 538.86,198.19 538,199.33 536.92,201.08 538.34,201 539.03,200.17\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_126.1.7\" points=\"535.06,191.52 533.06,189.32 533.72,190.94 534.78,192.37 535.61,193.97 536.21,196.26 536.72,194.38 535.77,193.11 535.06,191.52\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_127.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_127.1.1\" points=\"597.52,153.97 597.03,153.74 596.39,154.63 595.79,156.11 595.57,157.88 595.81,158.11 595.94,157.41 596.4,156.89 597.09,155.41 597.81,154.63 597.52,153.97\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_127.1.2\" points=\"593.38,159.37 592.82,158.75 592.59,160.12 592.25,161.02 591.53,161.79 590.63,162.78 589.46,163.46 589.94,164.03 590.81,163.37 591.36,162.86 592.03,162.3 592.65,161.32 593.25,160.58 593.38,159.37\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_127.1.3\" points=\"591.31,157.09 590.42,156.9 590.11,156.25 589.16,155.69 588.27,155.14 587.39,155.14 586.08,155.82 585.18,156.47 585.37,157.19 586.83,156.85 587.76,157.03 588.08,158.14 588.32,158.2 588.4,156.97 589.36,157.14 589.88,157.94 590.86,158.77 590.76,160.14 591.76,160.19 592.07,159.8 591.96,158.51 591.31,157.09\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_127.1.4\" points=\"582.99,152.66 584.32,151.14 585.12,148.68 586.08,148.76 585.89,147.73 587.11,147.34 586.56,146.9 588.19,145.93 587.92,145.26 586.8,145.1 586.48,145.7 585.09,145.96 583.47,146.31 582.37,147.78 581.58,149.05 580.94,151.08 578.88,152.09 577.41,151.43 576.32,150.67 576.35,148.96 574.96,148.16 574.08,148.55 572.38,148.65 573.04,156.21 573.41,163.79 576.23,162.19 579.25,160.86 580.33,159.66 581.19,158.49 581.35,157.12 584.01,155.69 584.31,154.45 582.76,154.2 582.99,152.66\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_128.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_128.1.1\" points=\"365.85,284.83 367.55,284.64 370.06,284.67 370.79,284.49 371.2,283.98 371.37,283.24 371.85,282.6 371.94,281.92 371.16,281.57 371.7,280.78 371.84,280.01 372.76,278.49 372.68,278 372.01,277.8 370.92,276.33 371.39,275.52 371.06,275.63 369.63,276.31 368.64,276.06 367.95,276.25 367.16,275.86 366.37,276.49 365.82,276.25 365.73,276.36 364.98,277.23 363.92,277.34 363.73,277.89 362.75,278.09 362.58,277.63 361.78,278 361.83,278.48 360.76,278.63 360.05,279.19 359.38,280.3 359.43,280.89 359.01,281.81 358.45,282.41 358.8,282.86 358.4,283.72 359.29,284.21 361.34,284.97 362.99,285.53 364.38,285.25 364.53,284.85 365.85,284.83\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_129.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_129.1.1\" points=\"232.17,211.93 231.69,211.36 230.46,211.37 229.5,211.29 229.51,212.26 229.78,212.59 231.11,212.57 231.92,212.37 232.17,211.93\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_130.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_130.1.1\" points=\"532.58,263.16 532.98,262.82 532.98,262.82 532.98,262.82 532.98,262.82 532.35,262.94 532.08,262.28 532.01,261.62 532.85,260.22 532.31,259.78 532.23,259.44 531.97,258.85 531.15,258.53 530.77,258 531.16,257.14 531.1,256.92 531.86,256.59 533.16,255.72 533.18,255.23 532.6,255.1 531.58,255 531.43,254.09 530.72,254.16 530.71,253.98 529.79,254.37 529.79,253.99 529.42,253.82 529.19,254.2 528.71,254.38 528.14,254.7 528.13,255.59 528.38,255.82 528.06,256.19 527.91,257.26 527.65,257.59 526.66,257.81 525.69,258.34 526.26,259.6 527.35,260.66 527.62,262.04 528.66,261.43 529.99,261.36 529.18,262.39 531,263.22 530.96,264.3 532.58,263.16 532.58,263.16\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_131.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_131.1.1\" points=\"327.68,252.66 327.05,252.14 326.25,252.42 325.46,252.2 325.74,253.78 325.64,255.02 324.97,255.21 324.64,255.97 324.81,257.27 325.43,257.99 325.57,258.79 325.93,259.98 325.92,260.81 325.65,261.51 325.61,262.17 326.17,262.66 326.79,262.94 327.12,261.99 328,261.99 328.27,262.24 329.13,262.17 329.52,261.19 328.81,260.67 328.75,259.13 328.5,258.84 328.41,257.91 327.76,257.74 328.33,256.55 327.87,255.24 328.38,254.64 328.15,254.09 327.57,253.33 327.68,252.66\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_132.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_132.1.1\" points=\"244.7,123.4 245.32,122.15 245.55,119.12 247.3,118.69 247.91,119.13 249.07,118.52 249.44,117.86 249.83,115.83 250.12,114.98 250.73,114.88 251.29,115.24 251.92,114.84 252.06,113.63 252.01,112.33 251.85,111.06 251.85,109.13 250.64,107.47 249.43,107.12 247.6,107.45 245.91,108.04 247.01,111.36 246.65,112.32 244.89,113.18 242.71,114.81 241.36,115.15 237.93,118.76 238.24,121.44 238.14,122.64 238.7,124.61 241.46,125.27 242.97,125.24 244.6,124.09 244.7,123.4\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_133.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_133.1.1\" points=\"394.38,242.94 394.52,241.65 394.36,241.03 393.65,240.74 393.66,241.3 394.03,241.59 393.61,241.83 393.79,243.23 394.38,242.94\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_134.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_134.1.1\" points=\"421.35,226.21 420.92,226.05 420.39,226.49 420.09,228.09 420.39,229.24 420.79,229.47 421.36,228.78 421.54,227.5 421.35,226.21\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_135.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_135.1.1\" points=\"377.05,274.07 377.52,273.9 378.04,273.36 378.6,272.59 379.59,271.5 379.75,270.69 379.71,269.9 380.09,269.05 380.79,268.7 381.43,269 382.13,268.68 382.24,268.2 381.59,267.79 381.12,267.97 381.02,265.68 380.13,265.88 378.97,266.57 377.3,266.13 376.63,265.65 374.46,265.75 373.3,266.04 372.74,265.9 372.24,266.69 371.94,267.02 372.24,267.34 371.85,267.57 371.44,267.15 370.53,267.7 370.34,268.47 369.4,268.91 369.18,269.51 368.32,270.24 369.44,270.59 370.18,271.84 370.72,273.08 371.55,273.46 372.12,273.85 373.03,273.65 373.94,273.64 374.67,273.2 375.12,273.47 376.15,273.65 376.45,274.07 377.05,274.07\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_136.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_136.1.1\" points=\"452.51,313.71 453.63,313.3 454.19,313.5 457.33,313.49 460.61,313.08 462.14,312.75 462.8,312.29 462.11,312.02 460.19,311.5 459.86,311.22 461.47,311.09 463.53,310.84 464.21,311.02 465.88,310.39 465.92,310.65 467.42,310.81 471.29,310.64 472.4,310.18 477.36,310.03 476,310.79 478.69,310.62 480.46,310.62 483.28,310.1 485.03,309.44 485.16,309.01 488.09,308.16 490.68,307.72 489.76,308.85 492.47,308.37 493.89,308.66 496.72,308.33 497,308.63 499.16,308.48 496.42,309.46 497,309.91 508.61,309.24 510.89,308.61 515.59,307.78 519.82,307.99 522.5,307.81 524.41,307.35 525.95,306.52 528.05,306.19 529.15,306.43 531.16,306.46 533.84,306.23 535.8,306.36 539.97,305.32 540.67,305.69 538.17,306.44 537.61,306.95 542.02,306.63 544.31,306.7 548.88,306.15 551.64,305.64 561.45,300.64 561.46,300.63 560.91,300.05 559.13,300.14 561.49,299.43 564.14,298.29 565.35,297.92 566.44,297.34 566.72,296.96 563.86,297.27 561.98,296.2 561.1,296.03 560.65,295.01 560.07,294.11 560.54,293.43 557.25,294.46 555.48,293.29 554.14,293.85 553.75,293.21 551.74,293.41 552.62,292.42 552.92,290.94 553.73,290.31 555.67,289.96 558.23,287.66 557.05,287.6 558,286.24 559.35,285.54 557.88,284.69 559.39,282.79 557.76,282.37 559.05,280.64 558.57,279.03 556.93,280.22 553.92,282.71 549.35,286.4 547.54,288.63 547.59,289.57 546.8,290.3 548.44,290.65 548.4,292.58 548.63,294.12 549.34,295.29 547.46,297.31 546.1,297.19 547.03,296.02 545.97,294.42 542.47,296.21 539.84,295.72 539.82,293.25 542.04,292.32 539.6,291.92 537.76,291.77 536.54,292.87 534.23,293.09 533.5,292.35 529.2,292.61 525.4,292.16 524.35,289.14 522.86,285.33 525.19,285.12 526.8,284.08 528.47,283.71 528.59,284.55 530.19,284.44 533.85,282.6 535.18,281.15 535.56,279.43 537.17,277.33 538.76,274.48 538.55,271.85 538.96,270.57 538.47,268.4 537.92,266.22 537.67,265.09 536.39,263.97 535.48,263.94 533.99,264.87 532.84,263.47 532.98,262.82 532.98,262.82 532.98,262.82 532.98,262.82 532.58,263.16 532.58,263.16 532,264.14 532.72,264.19 531.57,266.45 530.18,268.07 531,268.73 532.99,268.4 532.77,270.22 531.88,272.24 531.96,272.91 531.54,274.54 529.57,274 528.83,273.29 526.66,273.29 524.88,274.99 522.28,276.26 519.41,276.83 517.62,278.55 516.32,279.62 515.23,280.37 513.02,282.09 511.32,282.72 508.86,283.22 507.07,283.17 505.6,282.87 505.1,282.03 506.17,281.62 506.89,280.68 506.52,280.12 506.57,278.28 507.12,277.51 505.89,276.39 503.74,277.06 502.16,276.91 501.03,277.5 500.06,277.69 498.8,276.44 497.12,276.15 496.09,275.71 494.13,276 492.82,275.98 491.41,276.89 489.51,277.74 487.95,277.97 486.31,277.74 485.18,277.41 482.74,278.15 481.68,279.46 479.77,279.91 478.38,280.11 476.39,280.82 476.01,279.03 477.17,278 476.49,276.77 474.2,277.21 472.76,277.28 471.37,278.1 469.89,278.13 468.38,278.66 466.68,277.84 464.77,276.31 463.43,276.01 462.95,275.86 461.66,276.95 459.96,276.71 458.99,277.46 457.84,277.8 456.67,278.82 455.74,279.13 453.94,278.68 451.53,279.68 451.22,278.77 446,283.13 443.6,284.42 443.84,284.94 441.19,283.36 439.92,283.27 439.6,284.18 437.57,284.75 436.34,284.34 435.09,286.05 432.49,286.4 431.59,285.73 428.46,285.12 427.97,284.71 423.1,284.13 422.7,283.56 424.15,282.41 422.99,281.97 423.43,281.5 422.41,280.67 425.1,279.48 425.05,278.66 423.06,278.73 422.83,278.21 420.72,279.12 418.52,279.08 417.27,278.35 415.38,279.05 411.92,280.25 409.76,280.21 407.43,278.32 407.62,277.03 405.89,278.05 405.28,276.11 405.79,275.75 405.32,274.39 406.84,273.16 407.89,273.21 409.12,271.99 409.21,271.04 410.02,270.74 409.63,269.64 408.29,269.33 407.29,267.39 409.02,265.59 409.16,264.3 411.26,262.03 411.26,262.03 410.53,261.24 410.38,260.74 409.69,260.88 408.43,262.06 408,262.13 406.97,262.58 406.36,263.37 404.9,263.77 404.06,263.47 403.73,263.83 401.54,264.75 399.31,265.06 398.01,265.39 397.87,265.16 395.7,266.77 393.91,267.48 392.45,268.59 393.45,268.89 394.36,270.45 393.41,271.18 395.39,271.93 395.27,272.33 394.04,272.03 393.92,272.85 394.56,273.36 395.91,273.49 396.01,274.09 395.48,275.09 395.85,276.02 395.72,276.55 393.5,277.12 392.68,277.1 391.63,277.93 390.61,277.65 388.7,278.27 388.66,278.61 388,279.37 386.87,279.45 386.64,279.99 386.92,280.34 385.83,281.31 384.43,281.15 383.99,281.23 383.71,280.84 383.18,280.91 383.18,280.91 382.63,282.01 382.19,282.57 382.42,282.73 383.55,282.67 384.01,283.04 383.52,283.48 382.53,283.78 382.55,284.08 381.93,284.38 380.85,285.47 381.05,285.91 380.75,286.67 379.35,287.06 378.68,286.87 378.41,287.27 376.91,287.67 376.29,288.61 376.02,289.38 375.31,289.74 375.77,290.24 375.08,291.68 375.82,292.56 375.56,292.82 375.56,292.82 376.85,293.65 375.33,294.36 375.33,294.36 377.62,296.22 378.57,297.04 378.85,297.76 376.71,298.71 376.97,299.6 375.56,300.6 376.04,301.72 374.17,303.18 374.97,304.11 372.88,304.92 372.77,305.75 373.68,305.86 375.51,306.33 375.51,306.33 376.56,306.73 378.77,306.03 382.11,305.75 387.21,304.4 388.4,303.82 388.85,302.98 387.79,302.32 385.94,301.97 380.14,302.94 379.31,302.78 381.63,301.85 381.92,301.24 382.48,299.88 384.22,299.47 385.32,299.12 385.25,299.78 384.29,300.35 384.89,300.86 388.2,300.03 389.12,300.35 387.9,301.32 390.2,302.59 391.36,302.51 392.7,302.06 393,302.94 391.63,303.69 391.86,304.42 390.6,305.17 394.13,304.78 395.17,304.1 393.73,303.95 394.09,303.26 395.26,302.83 396.99,303.1 396.86,303.9 399.04,304.48 402.56,305.51 403.49,305.45 402.78,304.73 404.34,304.6 404.93,305.01 407.14,305.04 408.56,305.54 410.41,304.82 411.2,305.61 409.47,306.29 409.79,306.66 413.52,306.32 415.43,305.95 420.8,304.59 421.09,305.22 419.37,305.85 419.13,306.1 417.62,306.21 417.56,306.75 416.18,307.63 415.83,307.98 417.05,308.96 416.86,309.9 417.49,310.1 420.75,309.83 421.58,309.26 421.37,308.4 422.42,308.05 423.53,307.28 424.69,305.7 426.62,304.97 426.79,304.16 425.83,302.39 427.37,302.2 427.5,302.66 428.58,302.98 428.4,303.6 428.95,304.19 427.66,304.88 427.52,305.67 426.14,305.76 425.28,306.41 425.14,307.55 422.76,308.44 424.07,309.15 423.02,309.89 423.55,309.91 424.77,309.34 425.39,308.32 426.83,308.12 425.5,308.89 426.95,309.31 429.24,309.36 432.02,308.76 430.01,309.63 428.61,310.7 430.29,310.9 433.01,310.86 435.25,310.99 433.66,311.49 434.05,312.1 435.26,312.12 436.68,312.57 439.35,312.69 439.3,312.93 441.99,313.01 443.21,312.81 444.8,313.27 446.79,313.26 446.39,313.62 446.71,313.97 448.52,314.29 450.87,314.04 449.85,313.84 452.51,313.71\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.2\" points=\"540.56,278.57 544.55,275.43 541.98,276.02 543.13,273.42 545.94,271.55 546.84,270.26 544.93,271.37 545.02,269.94 543.63,271.49 542.47,273.27 540.81,275.22 540.07,276.57 538.2,278.93 535.93,280.63 533.99,282.95 534.55,283.73 533.28,284.5 533.67,284.73 535.06,283.63 537.02,282 538.48,280.32 540.56,278.57\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.3\" points=\"546.82,307.77 545.69,307.71 544.65,308.06 545.02,308.51 546.82,307.77\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.4\" points=\"503.41,312.07 503.06,311.7 501.1,311.78 498.18,312.15 497.7,312.44 500.07,312.3 503.41,312.07\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.5\" points=\"499.74,310.27 498.06,310.27 495.53,310.38 495.23,310.43 495.44,310.82 496.63,310.91 499.04,310.53 499.74,310.27\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.6\" points=\"496.17,312.5 496.98,311.82 492.89,311.85 491.58,311.63 488.03,312.23 487.13,312.84 488.15,313 491.08,312.97 496.17,312.5\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.7\" points=\"448.24,314.76 443,314.47 442.74,315.44 443.39,315.52 444.27,315.48 447.85,315.07 448.24,314.76\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.8\" points=\"441.96,315.19 439.92,315.1 436.59,315.31 434.3,315.58 432.41,316.06 430.73,316.19 432.27,316.62 434.05,316.76 436.81,316.45 440.73,315.82 441.96,315.19\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.9\" points=\"405.55,307.64 404.94,307.55 401.05,307.69 400.4,308.18 398.12,308.47 397.54,309.04 398.54,309.27 398.07,309.83 399.61,310.68 398.48,310.8 400.39,311.64 399.71,312.06 401.67,312.54 404.62,313.1 408,313.26 409.44,313.57 411.37,313.68 412.54,313.35 412.16,313.09 408.86,312.65 406.02,312.23 403.5,311.34 402.71,310.39 401.76,309.42 402.67,308.54 405.55,307.64\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.10\" points=\"390.29,316.32 389.05,316.24 388.21,316.19 388.2,316.08 387.16,315.98 385.88,316.13 386.2,316.33 383.95,316.35 385.76,316.47 387.27,316.47 387.69,316.3 388.07,316.45 388.87,316.56 390.54,316.42 390.29,316.32\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.11\" points=\"370.06,284.67 367.55,284.64 365.85,284.83 366.06,285.55 367.86,286.09 369.32,285.8 369.96,285.54 369.89,285.09 370.06,284.67\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.12\" points=\"132.92,307.83 131.26,307.77 133.05,308.51 133.31,308.56 134.27,308.55 135.18,308.25 134.73,308.1 132.92,307.83\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.13\" points=\"118.9,301.8 118.33,301.2 116.62,300.64 118.9,301.8\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_136.1.14\" points=\"118.93,301.82 126.44,305.64 127.43,304.72 128.14,303.5 126.55,302.72 126.78,302.41 128.23,303.32 131.16,303.14 131.37,301.95 129.15,301.38 126.9,301.24 124.64,299.95 123.67,299.67 122.57,299.71 122.42,300.17 121.45,300.56 122.19,301.14 121.33,301.35 119.62,301.18 119.79,301.64 120.95,302.12 118.93,301.82\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_137.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_137.1.1\" points=\"389.62,167.21 390.27,165.89 390.17,164.52 389.69,164.23 389.69,164.23 388.8,164.38 388.29,163.05 387.28,163.24 387.44,164.51 387.67,164.69 387.74,166.08 388.22,166.73 388.62,166.49 389.62,167.21\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_138.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_138.1.1\" points=\"325.3,232.82 325.29,232.68 325.25,232.26 325.18,228.96 319.95,229.07 319.85,223.44 318.33,223.25 317.91,222.11 318.13,218.89 311.8,218.9 311.42,218.16 311.52,219.1 311.55,219.1 315.2,219.28 315.41,220.08 316.1,221.08 316.72,224.14 319.02,226.52 319.85,229.29 320.36,229.45 320.92,231.15 322.27,231.38 322.84,231.1 323.56,231.1 324.08,231.59 325.07,231.66 325.05,232.82 325.05,232.82 325.3,232.82\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_139.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_139.1.1\" points=\"412.5,235.94 413.93,235.73 414.45,234.7 415.57,234.76 416.42,232.9 417.27,232.4 417.63,231.64 418.83,230.72 419.04,229.82 418.97,229.1 419.26,228.36 419.79,227.75 420.09,227.03 420.39,226.49 420.92,226.05 421.35,226.21 421.75,225.37 421.87,224.86 422.73,222.62 427.7,221.5 427.97,221.97 428.89,220.39 428.28,215.92 423.61,213.67 419,212.8 417.56,211.79 416.57,209.41 415.83,209.03 415.37,209.79 414.75,209.67 413.16,209.9 412.84,210.13 410.96,210.08 410.53,209.87 409.82,210.46 409.46,209.35 409.69,208.39 409.02,207.66 408.75,208.63 408.21,209.32 408.03,210.22 407.13,211.03 406.13,212.93 405.55,214.76 404.31,216.31 403.56,216.68 402.33,218.81 402.03,220.36 401.99,221.68 400.87,224.14 400.04,225 399.14,225.46 398.51,226.72 398.55,227.21 398.01,228.35 397.5,228.84 396.73,230.46 395.61,232.22 394.66,233.7 393.88,233.69 394.01,234.88 394.01,235.63 394.13,236.49 395.91,236.15 396.53,236.81 396.83,237.58 398,237.87 398.18,238.59 398.66,238.95 396.86,241.07 399.87,242.13 400.12,242.45 402.07,241.88 404.58,240.4 409.54,236.11 412.5,235.94\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_140.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_140.1.1\" points=\"399.17,207.54 398.63,204.19 398.85,203.27 398.68,201.3 398.1,199.04 397.15,197.9 396.51,196.14 396.37,195.2 395.61,194.56 395.2,192.14 395.21,191.86 394.98,191.91 394.97,193.06 394.75,193.85 393.87,194.76 393.62,196.43 393.76,198.13 392.99,198.28 392.9,197.77 391.91,197.65 392.33,196.98 392.51,195.6 391.65,194.33 390.87,192.66 390.02,192.43 388.6,193.77 387.99,193.3 387.83,192.62 386.99,192.19 386.95,191.71 385.3,191.71 385.06,192.19 383.87,192.27 383.28,191.87 382.82,192.07 381.94,193.42 381.64,194.05 380.46,193.73 380.03,192.66 379.64,190.6 379.08,190.16 378.58,189.91 378.44,190.02 377.86,190.68 377.74,191.4 377.99,192.36 377.96,193.31 376.98,194.75 376.77,195.74 376.78,196.3 376.16,196.98 376.11,198.31 375.74,199.2 375.17,199.07 375.31,199.91 375.71,200.87 375.5,201.82 376.02,202.52 375.66,203.05 376.06,204.46 376.75,206.14 378.17,205.98 377.75,214.98 377.73,215.92 379.6,215.93 379.39,220.39 385.88,220.39 392.14,220.39 398.54,220.39 399.22,218.2 398.89,217.8 399.29,215.49 400.05,212.8 400.71,212.24 401.65,211.41 400.91,210.11 399.73,209.74 399.25,209.05 399.17,207.54\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_141.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_141.1.1\" points=\"394.97,193.06 394.98,191.91 395.21,191.86 395.28,190.06 395.05,189.35 394.17,189.29 393.63,187.97 394.66,187.81 395.52,186.68 395.83,185.75 396.6,185.21 397.63,182.68 396.52,181.15 395.52,179.76 394.51,178.69 393.34,178.69 392.01,178.15 390.95,178.67 390.27,178.03 390.27,178.03 388.79,179.58 388.39,180.58 387.47,180.08 386.7,180.24 386.26,179.85 385.51,180.13 384.48,182.05 384.21,182.79 382.95,183.71 382.51,185.1 381.81,186.11 380.67,187.31 380.65,188.07 379.72,189 378.58,189.91 379.08,190.16 379.64,190.6 380.03,192.66 380.46,193.73 381.64,194.05 381.94,193.42 382.82,192.07 383.28,191.87 383.87,192.27 385.06,192.19 385.3,191.71 386.95,191.71 386.99,192.19 387.83,192.62 387.99,193.3 388.6,193.77 390.02,192.43 390.87,192.66 391.65,194.33 392.51,195.6 392.33,196.98 391.91,197.65 392.9,197.77 392.99,198.28 393.76,198.13 393.62,196.43 393.87,194.76 394.75,193.85 394.97,193.06\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_142.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_142.1.1\" points=\"319.06,203.72 319.11,202.29 319.42,200.98 320.03,200.34 320.16,199.45 320.07,198.73 319.83,198.6 318.94,198.78 318.81,198.53 318.44,198.48 317.27,199.04 316.47,199.06 313.43,199.16 312.99,198.9 312.44,198.97 311.56,198.6 311.33,200.36 312.82,200.31 313.22,200.63 313.52,200.65 314.14,201.18 314.84,200.7 315.55,200.66 316.27,201.17 315.95,201.83 315.4,201.45 314.89,201.46 314.25,202.02 313.73,201.98 313.35,201.44 311.56,201.38 310.92,203.16 310.11,203.97 310.85,204.41 311.68,206.01 312.09,207.18 312.67,207.91 313.48,207.71 314.29,208.21 315.2,208.23 315.97,207.56 317.04,206.96 318,205.28 319.06,203.72\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_143.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_143.1.1\" points=\"606.83,145.49 607.17,144.7 606.02,144.72 605.6,146.14 606.5,145.58 606.83,145.49\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_143.1.2\" points=\"606.39,147.53 606.08,147.11 605.12,149.11 604.94,150.5 605.51,150.5 605.87,148.64 606.39,147.53\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_143.1.3\" points=\"604.93,146.9 604.28,146.85 603.3,147.08 603,147.44 603.23,148.36 604.27,147.99 604.75,147.51 604.93,146.9\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_143.1.4\" points=\"603.77,150.46 603.79,149.99 602.6,150.97 601.79,151.81 601.25,152.58 601.52,152.81 602.22,152.26 603.46,151.19 603.77,150.46\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_143.1.5\" points=\"600.15,152.75 599.8,152.62 599.13,153.15 598.54,154.1 598.66,154.49 599.56,153.51 600.15,152.75\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_144.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_144.1.1\" points=\"322.1,189.41 321.32,188.33 320.56,187.07 320.47,186.4 320.07,185.66 319.62,185.83 318.44,186.76 317.58,188.01 317.3,188.85 317.12,190.56 318.01,191.58 318.21,192.22 318.5,192.72 318.95,192.77 319.34,193.21 320.66,193.21 321.12,192.38 321.47,191.41 321.41,190.74 321.67,190.13 321.64,189.28 322.1,189.41\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_145.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_145.1.1\" points=\"194.63,200.89 194.4,200.35 193.45,200.39 192.88,200.61 192.25,201.06 191.35,201.21 190.93,201.7 191.02,202.03 191.65,202.61 191.99,202.86 191.93,203.13 192.33,203.27 192.79,203.08 193.09,202.63 193.55,202.26 193.58,201.95 194.33,202.22 194.65,202.06 194.85,201.81 194.63,200.89\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_146.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_146.1.1\" points=\"411.91,194.13 412.74,194.12 414.27,194.71 416.05,194.99 417.47,195.7 418.28,195.85 418.85,196.28 419.79,196.36 419.79,196.36 419.78,196.32 419.82,195.37 419.92,193.04 419.97,191.83 419.28,190.41 418.2,188.48 416.8,188.47 411.3,191.21 410.64,192.04 409.99,193.15 409.33,194.42 409.66,195.24 410.21,196.47 410.77,196.05 411.13,195.1 411.91,194.13\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_147.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_147.1.1\" points=\"408.18,165.93 407.2,167.85 407.15,176.35 408.57,178.99 409.02,179.72 410.08,179.77 411.53,181.41 413.69,181.51 418.2,188.48 419.28,190.41 419.97,191.83 419.92,193.04 419.82,195.37 419.78,196.32 419.79,196.36 420.31,196.4 421.06,196.74 421.92,196.98 422.66,197.76 423.28,197.77 423.36,197.13 423.27,195.79 423.34,194.58 423.03,193.75 422.67,191.25 421.97,188.66 421.04,185.7 419.7,182.29 418.34,179.69 416.43,176.51 414.79,174.62 412.31,172.31 410.77,170.54 408.94,167.71 408.56,166.48 408.18,165.93\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_148.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_148.1.1\" points=\"370.34,268.47 370.53,267.7 371.44,267.15 371.85,267.57 372.24,267.34 371.94,267.02 372.24,266.69 371.92,266.26 372.13,265.56 372.93,264.73 372.43,264.13 372.24,263.52 372.43,263.29 372.21,263.02 371.52,262.99 371.03,262.87 370.97,263.02 371.12,263.25 371.24,263.72 371.03,263.71 370.71,264.06 370.46,264.16 370.24,264.46 369.95,264.58 369.72,264.85 369.46,264.74 369.32,264.11 368.98,263.97 369.08,264.13 368.48,264.53 367.98,264.74 367.74,265 367.32,265.33 367.66,265.42 367.79,266.31 367.02,267.04 367.31,267.87 366.78,267.87 366.78,267.87 367.28,268.57 366.76,269.11 366.34,269.83 366.34,269.83 367.41,270.32 368.32,270.24 369.18,269.51 369.4,268.91 370.34,268.47\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_149.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_149.1.1\" points=\"247.73,183.89 249.49,183.26 248.58,181.26 248.67,179.67 249.3,178.29 249,177.29 248.83,176.22 248.4,175.24 247.45,175.74 246.66,175.5 246,175.71 245.82,175.03 246.1,174.57 245.94,174.09 245.04,174.28 244.05,176.31 243.85,177.63 243.32,177.63 242.61,179.32 242.94,180.52 242.87,181.07 243.89,181.68 244.21,183.77 246.19,183.3 246.38,183.72 247.73,183.89\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_150.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_150.1.1\" points=\"371.06,275.63 370.73,275.16 370.54,274.44 370.25,274.25 368.66,274.8 368.21,274.69 367.92,274.27 367.28,274.04 367.11,274.16 366.44,273.87 365.88,273.82 365.8,273.46 364.62,273.23 364.07,273.43 363.3,273.9 363.1,274.52 363.2,274.75 363.36,275.15 363.99,275.12 364.46,275.3 364.48,275.47 364.75,275.55 364.8,275.96 365.12,276.04 365.3,276.36 365.73,276.36 365.82,276.25 366.37,276.49 367.16,275.86 367.95,276.25 368.64,276.06 369.63,276.31 371.06,275.63\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_151.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_151.1.1\" points=\"362.97,270.93 361.86,270.44 361.77,269.69 361.28,269.5 361.33,268.98 360.76,269.01 360.24,269.32 360,269 358.98,269.07 359.29,269.24 358.89,270.03 358.98,270.94 360.19,270.8 360.88,271.22 362.14,271.26 362.39,271.58 362.63,271.56 362.97,270.93\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_152.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_152.1.1\" points=\"368.25,301.98 366.23,301.62 365.24,300.7 365.6,299.88 363.83,298.79 361.61,297.59 360.99,295.58 362.06,294.55 363.42,293.73 362.48,292.03 361.16,291.67 360.98,289.06 360.39,287.57 358.75,287.72 358.11,286.44 356.55,286.37 355.99,287.89 354.71,289.69 353.51,291.88 354.01,292.76 355,293.79 355.24,295.51 354.35,296.25 354.07,298.12 354.73,299.41 355.97,299.39 356.34,299.93 355.82,300.38 357.46,302.22 358.44,303.62 359.07,304.5 360.21,304.49 360.39,305.17 362.67,304.97 362.66,305.76 363.38,305.8 365.1,305.22 367.18,304.4 367.71,302.48 368.25,301.98\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_153.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_153.1.1\" points=\"389.83,110.83 390,109.85 390.06,108.89 389.66,107.92 388.71,107.69 387.85,108.87 387.89,109.62 388.39,110.44 388.59,111.08 389.06,111.23 389.83,110.83\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_154.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_154.1.1\" points=\"399.18,245 396.41,242.77 394.58,243.6 394.55,243.62 394.72,243.94 394.6,244.79 394.85,245.93 395.6,246.72 395.25,247.53 394.54,247.64 394.2,249.21 394.47,250.06 394.82,250.51 395.17,250.96 395.11,252.09 395.66,251.7 397.26,252.26 398.13,251.88 399.38,251.89 401.03,252.65 401.85,252.61 403.54,252.93 402.95,251.66 402.19,251.16 402.55,249.66 402.32,247.17 399.18,245\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_155.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_155.1.1\" points=\"377.75,214.98 378.17,205.98 376.75,206.14 376.06,204.46 375.66,203.05 376.02,202.52 375.5,201.82 375.71,200.87 375.31,199.91 375.17,199.07 375.74,199.2 376.11,198.31 376.16,196.98 376.78,196.3 376.77,195.74 375.74,195.34 374.92,194.41 373.77,191.89 372.23,190.82 370.63,190.96 370.17,190.75 370.34,189.93 369.49,189.12 368.8,188.22 366.72,187.33 366.3,187.86 366.03,187.9 365.73,187.31 364.36,187.13 364.61,187.76 364.07,189.36 363.83,190.32 363.11,190.71 362.11,192.06 362.46,193.15 363.22,192.92 363.68,193.08 364.6,193.06 363.68,195.16 363.71,196.69 363.58,198.22 362.9,199.69 363.05,200.77 361.99,200.82 361.97,202.3 361.27,203.14 361.92,206.15 363.97,208.3 363.98,211.25 364.49,215.82 364.82,216.79 364.12,217.56 364.07,218.27 363.45,218.85 362.95,222.31 364.54,223.52 371.12,219.27 377.75,214.98\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_156.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_156.1.1\" points=\"340.52,195.4 340.31,194.19 340.82,193.51 341.39,192.7 341.46,191.56 341.79,191.09 341.72,185.76 342.13,184.16 340.8,183.66 340.43,184.48 339.98,185.95 339.85,187.11 340.22,189.2 339.8,190.04 339.64,191.86 339.64,193.54 338.96,194.73 339.08,195.45 340.52,195.4\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_157.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_157.1.1\" points=\"511.84,202.93 510.26,203.26 508.19,202.82 507.38,200.92 508.09,198.14 506.49,199.2 505.09,199.16 505.12,200.96 503.67,200.94 503.83,198.42 503.28,195.06 502.93,193.02 503.18,191.34 504.26,191.27 505.09,189.16 505.53,187.15 506.54,185.82 507.56,185.55 508.49,184.35 508,183.39 506.91,183.11 506.72,184.31 505.31,185.32 505.05,184.91 504.34,185.8 503.99,186.95 503.02,188.26 502.14,189.36 501.96,188 501.56,189.28 501.63,190.73 501.94,192.95 502.53,195.32 503.22,197.47 502.35,199.56 502.25,200.63 501.91,201.91 500.59,203.73 500.05,204.87 500.56,205.29 500.89,207.28 500,208.78 498.72,210.43 497.62,212.42 498.24,212.83 498.57,215.26 499.7,215.36 500.47,216.34 501.31,216.86 502.14,216.16 502.47,214.81 503.59,214.71 503.59,212.33 503.96,210.31 505.46,211.66 506.02,211.26 506.96,211.32 507.16,212.11 508.41,211.96 509.96,210.12 510.42,207.88 512.04,205.89 512.24,203.96 511.84,202.93\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_158.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_158.1.1\" points=\"445.52,258.96 445.15,258.35 443.42,258.68 443.6,257.54 445.19,257.69 447.23,257.05 449.99,257.35 450.91,255.5 451.35,255.7 452.4,255.25 452.57,254.47 453.13,253.32 451.56,253.32 450.47,253.47 449.76,252.56 449.14,252.36 448.72,251.93 447.94,252.6 447.63,254.3 447.15,254.39 447.14,255.01 446.2,255.46 445.74,254.76 445.79,253.95 445.64,253.66 444.72,253.7 444.47,252.77 443.85,253.16 442.92,252.51 442.39,252.76 442.72,254.8 442,256.29 440.76,256.77 440.91,257.65 442.2,257.55 442.61,258.65 442.72,259.91 444.58,260.37 444.54,259.46 444.92,258.91 445.52,258.96\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_159.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_159.1.1\" points=\"440.28,253.2 439.81,253.26 438.96,253.8 438.89,253.08 437.7,252.69 437.78,251.06 437.06,250.44 435.92,250.13 435.81,249.2 434.71,248.93 432.97,249.71 432.47,251.43 431.31,251.5 429.17,253.3 427.91,253.52 426.01,254.55 424.89,254.73 424.3,254.36 423.27,254.41 422.43,253.26 421.17,252.87 420.6,254.3 420.39,256.4 419.07,257.07 419.16,258.43 418.14,258.55 418.11,260.21 419.63,259.72 420.8,260.35 419.44,261.53 418.75,262.64 417.67,262.14 417.84,260.71 417.09,261.98 417.6,262.62 419.19,263.03 420.32,262.48 421.73,260.96 422.47,261.05 424.14,261.08 423.66,262.06 424.76,262.73 425.72,263.85 427.98,262.83 428.54,261.28 429.22,260.88 430.81,260.97 431.4,260.61 432.66,258.59 434.73,257.22 435.95,256.28 437.78,255.3 440.01,254.44 440.28,253.2\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_160.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_160.1.1\" points=\"545.93,148.01 545.97,148.71 545.85,149.17 546.1,149.72 547.57,150.24 548.73,150.31 549.28,150.6 549.88,150.32 549.21,149.69 547.38,148.68 545.93,148.01\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_161.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_161.1.1\" points=\"238.34,193.36 236.94,193.1 236.66,193.31 237.17,193.94 237.19,194.86 238.16,195.16 238.5,195.08 238.34,193.36\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_162.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_162.1.1\" points=\"356.87,244.5 356.84,242.89 356.1,242.28 355.64,241.61 354.6,240.79 354.79,239.91 354.68,239.02 353.93,238.52 353.15,242.33 352.17,243.18 352.14,243.68 350.84,244.93 350.67,246.5 351.59,247.66 351.9,249.36 351.6,251.31 351.88,252.36 353.51,253.17 354.59,252.93 354.58,251.9 355.85,252.65 355.97,252.26 355.25,251.26 355.27,250.32 355.82,249.81 355.69,248.03 354.71,246.98 355.04,245.85 355.84,245.82 356.27,244.82 356.87,244.5\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_163.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_163.1.1\" points=\"394.06,261.1 396.32,260.35 398.01,260.65 399.32,260.47 400.9,261.5 402.47,261.59 404.08,260.63 404.47,259.94 404.49,258.98 405.7,258.49 406.4,257.91 405.47,257.34 406.34,255.05 406.15,254.43 407.25,252.81 407.25,252.81 406.57,252.47 405.95,252.98 404.14,253.25 403.54,252.93 401.85,252.61 401.03,252.65 399.38,251.89 398.13,251.88 397.26,252.26 395.66,251.7 395.11,252.09 395.17,250.96 394.82,250.51 394.47,250.06 393.79,250.99 394.27,251.75 393.36,251.58 392.02,252.05 391.12,250.87 388.82,250.64 387.46,251.74 385.8,251.81 385.54,250.96 384.51,250.72 382.92,251.81 381.25,251.77 380.15,253.79 378.92,254.91 379.5,256.46 378.44,257.42 379.9,259.31 382.2,259.39 382.65,260.88 385.52,260.62 387.14,261.89 388.8,262.44 391.25,262.48 394.06,261.1\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_163.1.2\" points=\"379.71,259.84 378.58,258.78 378.01,259.7 377.98,260.1 378.32,260.32 378.64,261.55 377.86,262.06 379.3,262.67 380.61,262.41 380.87,261.67 382.25,261.03 382.04,260.56 380.28,260.45 379.71,259.84\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_164.1\" title=\"income_grp=2. High income: nonOECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_164.1.1\" points=\"534.19,222.15 533.95,220.33 532.64,222.2 532.04,223.85 532.41,226.01 533.23,227.68 534.14,227.02 534.23,225.7 534.19,222.15\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=2. High income: nonOECD</title>\n </g>\n <g id=\"tm_polygons_1_1_165.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_165.1.1\" points=\"390.2,167.49 392.02,167.46 392.02,167.46 392.02,167.46 391.97,166.06 391.65,164.42 392.1,163.53 392.85,164.05 393.81,164.19 394.02,163.92 394.97,164.49 394.32,165.29 394.87,166.34 395.69,167.38 395.69,167.38 401.69,162.64 401.79,161.28 404.14,158.96 403.32,156.09 403.39,154.77 404.44,153.93 404.47,153.32 403.98,151.92 404.06,151.22 403.92,150.11 404.45,148.66 405.06,146.38 405.65,145.88 405.65,145.88 404.28,144.54 402.44,143.64 401.46,143.68 400.84,142.99 399.69,142.93 399.25,142.64 397.29,143.29 396.66,143.19 396.67,143.23 396.16,144.11 396.1,146.54 395.26,147.77 395.15,147.32 395.15,147.32 394.84,147.96 393.23,148.39 392.31,149.08 391.27,149.47 390.62,149.86 390.54,149.93 390.54,149.93 389.75,152.3 389.65,153.74 388.34,155.31 388.74,156.2 388.43,157.12 388.5,158.11 388.19,158.45 388.28,159.45 388.45,159.48 389.07,160.32 389.73,161.54 390.14,162.02 390.13,162.78 389.78,163.31 389.69,164.23 389.69,164.23 390.17,164.52 390.27,165.89 389.62,167.21 390.2,167.49\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_166.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_166.1.1\" points=\"395.52,179.76 396.33,178.14 396.53,176.97 397.29,174.3 396.69,172.6 395.87,171.06 395.4,170.11 395.4,169.99 395.33,170.15 394.46,170.61 393.76,170.06 392.7,169.72 391.94,168.36 392.02,167.46 392.02,167.46 390.2,167.49 389.62,167.21 388.62,166.49 388.22,166.73 388.24,168.49 388.62,169.38 388.72,171.25 389.06,172.33 389.7,173.55 390.33,174.17 390.86,174.99 390.19,175.31 390.27,178.03 390.27,178.03 390.95,178.67 392.01,178.15 393.34,178.69 394.51,178.69 395.52,179.76\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n <g id=\"tm_polygons_1_1_167.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_167.1.1\" points=\"385.83,281.31 386.92,280.34 386.64,279.99 386.87,279.45 388,279.37 388.66,278.61 388.7,278.27 390.61,277.65 391.63,277.93 392.68,277.1 393.5,277.12 395.72,276.55 395.85,276.02 395.48,275.09 396.01,274.09 395.91,273.49 394.56,273.36 393.92,272.85 394.04,272.03 392.92,271.89 392.07,271.29 390.74,271.2 389.62,270.51 389.91,269.35 390.7,268.9 392.16,269.01 391.99,268.34 390.45,268.02 388.65,266.93 387.78,267.31 387.96,268.2 386.28,268.74 386.47,269.1 387.76,269.72 387.27,270.15 384.95,270.62 384.74,271.31 383.43,271.08 383.06,270.06 382.13,268.68 381.43,269 380.79,268.7 380.09,269.05 380.43,269.25 380.59,269.89 380.9,270.48 380.75,270.81 381.03,270.96 381.21,270.7 382.07,270.65 382.43,270.79 382.14,270.97 382.2,271.25 381.62,271.72 381.3,272.48 380.73,272.78 380.73,273.4 380.01,273.89 379.41,273.95 378.28,274.52 377.36,274.34 377.05,274.07 376.45,274.07 376.15,273.65 375.12,273.47 374.67,273.2 373.94,273.64 373.03,273.65 372.12,273.85 371.55,273.46 371.39,273.94 370.54,274.44 370.73,275.16 371.06,275.63 371.39,275.52 370.92,276.33 372.01,277.8 372.68,278 372.76,278.49 371.84,280.01 372.5,280.08 373.19,280.55 374.26,280.59 375.69,280.45 377.31,280.04 378.42,280 378.98,279.75 379.45,280.05 379.89,279.65 381.14,279.73 381.72,279.56 381.65,280.43 382.01,280.81 383.18,280.91 383.18,280.91 383.71,280.84 383.99,281.23 384.43,281.15 385.83,281.31\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_168.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_168.1.1\" points=\"256.42,93.89 255.99,92.59 254.46,91.44 253.24,91.85 252.45,91.63 250.86,92.52 249.82,92.45 248.66,93.6 248.52,94.95 248.77,95.41 248.38,97.51 248.42,99.68 248.52,101.38 249.5,101.61 251.35,99.96 251.92,100.03 253.75,98.67 255.17,97.5 256.31,96.07 255.79,95.08 256.42,93.89\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_169.1\" title=\"income_grp=1. High income: OECD\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_169.1.1\" points=\"204.72,276.17 204.45,275.19 204.74,274.88 205.67,274.77 206.98,274.49 208.09,273.93 209.36,274.16 210.89,273.69 210.89,273.69 210.89,273.69 209.14,273.09 207.77,272.36 206.43,271.59 206.3,271.32 207.92,271.7 208.51,271.07 209.84,271.54 211.27,272.13 212.82,272.74 211.91,271.77 212.62,271.54 213.33,270.83 214.79,271.24 216.28,271.41 216.36,270.89 216.77,270.81 216.77,270.82 216.77,270.81 217.13,270.76 217.13,270.76 217.54,270.02 216.19,269.85 216.14,269.86 215.09,270.06 213.8,269.68 212.74,269.52 211.35,268.31 210.49,267.63 210.6,267.4 212.18,268.62 212.4,268.62 211.04,267.18 210.16,265.85 209.45,264.77 209.26,263.83 209.03,263.35 208.85,262.85 208.86,261.83 208.94,261.7 209.45,261.71 209.94,261.92 210.34,262.19 211.3,263.14 211.83,264.41 211.81,265.59 212.21,266.4 212.97,267.33 213.59,267.96 214.36,268.41 214.24,267.78 214.88,268.71 215.28,268.9 215.78,269.61 216.86,269.24 217.64,268.51 217.41,267.65 216.94,266.79 215.83,266.03 215.72,265.55 216.01,265.54 217.24,266.37 217.71,266.18 217.55,265.08 217.33,264.29 217.33,264.29 217.33,264.29 216.25,263.23 215.67,262.55 215.67,262.55 214.89,261.8 215.66,261.4 216.37,261.3 217.54,261.56 218.61,262.1 219.47,262.36 220.78,262.92 222.47,264.07 222.5,264.26 222.5,264.26 222.58,264.84 223.36,265.06 224.49,264.99 225.64,264.83 226.97,265.46 227.14,266.2 227.09,266.47 229.06,267.78 229.84,268.13 232.06,268.14 234.75,268.15 235.06,268.61 235.56,268.7 236.28,268.99 237.09,269.84 238.04,271.28 239.64,272.67 239.94,272.19 241.02,272.5 241.47,271.97 240.6,269.45 241.2,268.39 241.25,267.77 239.4,266.86 237.68,266.2 235.95,265.64 234.8,264.5 234.41,264.07 234.07,263.05 234.25,262.02 234.85,261.97 234.91,262.68 235.22,262.25 234.93,261.69 233.83,261.38 233.13,261.41 231.92,261.07 231.24,260.98 230.35,260.88 228.93,260.31 231.23,260.68 231.56,260.31 229.29,259.72 228.34,259.72 228.46,259.96 227.83,259.41 228.24,259.32 227.49,257.9 225.94,256.37 225.98,256.88 225.68,256.99 225.33,257.48 225.33,256.41 225.6,256.06 225.4,255.3 224.69,254.52 223.37,252.9 223.25,252.98 224.12,254.36 223.57,255.13 223.88,256.79 223.33,255.93 223.28,254.65 222.37,254.97 223.23,254.32 222.74,252.4 223.14,252.26 223.1,251.55 222.77,249.5 221.39,247.97 219.64,247.36 218.31,246.14 217.5,246.01 216.52,245.24 216.12,244.54 214.07,243.18 212.94,242.18 211.9,240.93 211.29,239.42 211.22,237.94 211.33,236.11 211.7,234.59 211.51,233.65 211.75,231.14 211.41,229.67 211.18,228.82 210.53,227.48 210,227.2 209.26,227.47 209.19,228.43 208.68,228.94 208.21,230.81 207.82,232.47 207.76,233.32 208.4,234.75 208.22,235.94 207.41,237.73 206.87,238.06 205.05,237.09 204.8,237.19 204.27,238.19 203.42,238.72 201.58,238.45 200.25,238.69 199.01,238.54 198.28,238.21 198.41,237.64 198.17,236.77 198.4,236.35 198.03,236.07 197.53,236.38 196.83,235.97 195.7,236.04 194.81,237.17 193.37,236.91 192.36,237.4 191.34,237.25 189.88,236.75 188.03,235.16 186.22,234.23 185.1,233.2 184.49,232.22 184.1,230.73 183.94,229.68 184.06,228.94 183.43,228.87 182.41,229.35 181.33,230.03 181.13,231.05 181.16,232.57 180.55,233.8 180.34,235.07 179.95,236.54 179.08,237.39 177.78,237.35 176.31,235.66 175.18,236.3 174.55,236.95 174.51,238.13 174.32,239.24 173.68,240.17 173.09,240.84 172.76,241.59 170.06,241.59 169.77,240.72 168.53,240.72 165.42,240.7 162.36,242.19 160.37,243.22 160.66,243.63 158.6,243.4 156.78,243.24 156.91,244.31 156.36,245.51 155.74,245.76 155.8,246.36 154.97,246.46 154.64,247.02 153.29,247.23 153.03,247.56 153.31,248.69 152.7,250.76 152.69,253.58 152.96,254.05 152.6,254.72 152.24,256.4 152.83,258.02 152.58,259.1 153.75,260.73 154.6,262.4 154.94,263.88 156.54,265.68 157.72,267.41 158.92,269.11 160.21,271.6 160.78,273.16 160.92,274.01 161.33,274.36 162.99,273.74 162.63,272.02 163.3,272.51 164.04,274 164.54,275.47 168.58,275.47 172.79,275.47 174.19,275.47 178.52,275.47 182.71,275.47 186.97,275.47 191.24,275.47 196.06,275.47 200.92,275.48 203.86,275.47 204.23,276.16 204.72,276.17\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.2\" points=\"160.75,308.11 160.57,307.62 161.51,307.83 163.33,307.77 162.75,307.51 164.15,307.32 165.55,307.43 167.32,307.08 169.36,306.97 169.99,306.82 171.87,307.01 173.03,306.67 174.01,306.51 174.01,306.51 174.01,306.51 166.74,301.97 156.41,294.07 157.63,294.02 158.43,293.61 158.6,292.95 158.67,291.96 160.86,292.81 162.7,293.29 162.55,292.51 162.77,291.89 163.26,291.2 162.96,290.09 162.58,288.28 163.91,287.26 163.02,286.24 161.57,285.45 161.57,285.45 161.37,286.07 160.65,286.59 161.57,287.99 161.09,289.28 161.85,290.75 160.69,290.85 158.63,290.89 157.55,291.34 156.56,292.92 155.64,293.2 153.98,293.74 152.03,293.61 150.3,294.29 149.54,294.92 147.72,294.61 146.72,293.58 145.89,293.48 144.01,293.17 142.24,292.66 140.41,292.34 141.3,293.23 143.71,294.68 145.65,295.14 145.77,295.5 143.08,294.69 140.95,293.7 137.75,292.63 137.82,291.9 135.26,290.79 133.08,290.14 131.19,289.66 130.06,288.96 127.03,288.14 125.76,287.39 123.42,286.7 122.63,286.82 120.86,286.37 118.87,285.81 117.13,285.26 114.28,284.79 114.37,285.07 116.71,285.84 118.6,286.34 121.04,287.23 122.92,287.41 124.33,288.07 127.28,289.02 127.95,289.34 129.58,289.89 131.22,291.07 132.99,291.98 130.91,291.51 130.81,291.78 129.41,291.22 129.51,292 128.47,291.45 128.94,292.21 126.85,291.6 126.05,291.6 127.09,292.51 128.04,293.06 127.91,293.59 125.84,293.31 125.68,294.01 125.28,294.36 126.43,295.19 126.32,295.81 128.02,296.64 130.22,297.43 131.76,298.15 132.93,298.25 133.46,298.03 135.48,298.69 136.22,298.58 137.82,299 138.54,299.62 138.23,299.87 139.97,300.38 139.18,300.37 137.4,300.08 136.55,299.78 136.04,300.08 134.04,299.93 132.75,300.25 133.12,300.78 132.86,301.55 135.52,302.09 139.33,302.71 140.33,302.71 139.06,302.07 141.72,302.12 142.09,302.91 141.45,303.39 141.73,304.01 141.56,304.53 140.65,304.92 142.54,305.54 144.71,305.58 147.26,306.11 148.67,306.67 150.97,307.21 152.37,307.34 155.59,307.83 156.5,307.76 159.49,308.34 160.75,308.11\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.3\" points=\"135.04,289.18 133.03,288.57 132.8,288.98 133.44,289.72 135.28,290.28 136.27,290.52 137.02,290.41 137.03,289.93 135.04,289.18\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.4\" points=\"124.14,299.03 124.49,298.76 125.5,298.91 125.93,298.54 126.89,298.36 126.55,298.21 125.13,297.91 124.65,298.21 124.57,298.47 123.33,298.39 123.23,298.51 124.14,299.03\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.5\" points=\"123.77,293.48 122.66,293.24 122.18,293.52 121.95,293.93 123.58,294.18 124.42,294.05 123.77,293.48\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.6\" points=\"86.1,213.86 85.77,213.48 85.45,213.8 85.66,214.43 85.62,215.25 85.77,215.5 86.15,215.87 86.16,216.31 86.32,216.52 86.43,216.48 86.94,216.1 87.18,215.9 87.36,215.6 87.56,214.81 87.48,214.69 86.72,214.21 86.1,213.86\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.7\" points=\"86.21,217.36 85.62,217.2 85.48,217.67 85.34,217.86 85.37,218 85.59,218.19 86.1,217.97 86.42,217.63 86.21,217.36\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.8\" points=\"85.46,218.56 85.34,218.31 84.49,218.38 84.69,218.65 85.46,218.56\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.9\" points=\"84.11,218.88 83.98,218.75 83.88,218.78 83.34,218.86 83.29,219.36 83.25,219.45 83.78,219.76 83.87,219.62 84.11,218.88\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_169.1.10\" points=\"81.83,220.35 81.57,220.13 81.16,220.54 81.29,220.7 81.61,220.92 81.97,220.87 81.83,220.35\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=1. High income: OECD</title>\n </g>\n <g id=\"tm_polygons_1_1_170.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_170.1.1\" points=\"444.25,262.91 444.75,262.72 443.89,261.46 445.21,260.73 446.12,261.22 448.21,260.19 446.72,258.77 445.52,258.96 444.92,258.91 444.54,259.46 444.58,260.37 442.72,259.91 442.61,258.65 442.2,257.55 440.91,257.65 440.76,256.77 442,256.29 442.72,254.8 442.39,252.76 441.13,253.19 440.28,253.2 440.01,254.44 437.78,255.3 435.95,256.28 434.73,257.22 432.66,258.59 431.4,260.61 430.81,260.97 429.22,260.88 428.54,261.28 427.98,262.83 425.72,263.85 424.76,262.73 423.66,262.06 424.14,261.08 422.47,261.05 420.61,268.12 424.05,269.23 424.37,269.07 427.02,267.72 428.42,267.01 430.31,265.3 431.96,265.57 434.44,265.72 436.62,264.32 437.08,262.39 437.8,262.37 438.57,260.78 440.48,260.71 441.16,259.79 441.71,259.8 441.96,261.2 443.51,262.56 444.25,262.91\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_171.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_171.1.1\" points=\"240.09,189.32 238.72,187.96 238.54,187.12 239.07,186.26 238.65,185.82 237.61,185.45 237.61,184.37 237.14,183.74 238.21,181.97 238.41,181.31 237.78,180.43 235.9,179.56 234.7,179.19 234.21,178.64 232.9,179.23 231.68,179.52 231.36,179.31 232.09,178.71 232,177.14 232.2,175.68 233.61,175.48 233.69,174.99 232.5,174.32 232.3,173.34 231.61,172.95 230.37,172.41 230.04,171.7 228.75,171.54 227.84,172.78 227.36,175.1 226.93,175.92 226.33,176.43 227.19,177.59 227.15,178.11 226.69,178.8 226.39,180.35 226.57,182.02 226.97,182.8 227.31,184.05 226.74,184.45 225.78,184.19 224.59,184.31 223.91,184.06 222.82,186.06 221.87,186.36 219.73,186.13 219.37,186.94 218.97,187.14 218.94,187.62 219.18,188.48 219.09,189.41 218.76,189.92 218.6,190.99 217.76,191.14 218.3,192.49 218.61,194.14 219.15,195 219.83,195.66 220.33,196.81 221.42,197.2 221.33,196.65 220.35,196.39 220.81,195.34 220.71,194.13 219.89,192.79 220.41,190.96 221.13,191.11 221.6,192.78 221.14,193.59 221.17,195.34 223.29,196.28 223.14,197.36 223.77,198.09 224.25,196.47 225.4,196.43 226.39,195.15 226.4,194.38 227.89,194.36 229.67,194.6 230.55,193.57 231.8,193.28 232.77,194 232.82,194.58 234.87,194.72 236.85,194.75 235.41,194.07 235.92,192.98 237.23,192.81 238.42,191.67 238.6,189.82 239.46,189.87 240.09,189.32\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_172.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_172.1.1\" points=\"513.65,219.39 511.88,217.48 510.94,215.36 510.87,213.8 512.53,211.42 514.55,208.46 516.25,207.05 517.52,205.22 518.86,200.99 519.12,196.95 517.91,195.43 516.17,193.94 515,192.02 513.12,189.86 512.4,191.35 512.72,192.91 511.38,194.23 512.71,195.15 514.43,195.32 513.56,196.72 516.13,198.49 516,201.24 515.42,202.77 515.4,205.05 514.75,206.66 513.26,208.25 511.91,210.24 510.1,212.92 507.91,214.27 508.23,215.07 509.16,215.66 508.16,217.62 506.16,217.64 505.04,219.67 503.73,221.43 504.48,221.97 505.77,221.96 507.28,222.21 508.39,223.39 509.35,222.56 510.91,222.16 510.94,220.88 511.9,219.97 513.65,219.39\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_173.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_173.1.1\" points=\"613.55,131.78 612.94,131.48 612.63,132.47 612.84,133.09 613.55,131.78\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_173.1.2\" points=\"613.16,135.27 613.01,133.43 612.63,133.72 612.26,133.59 612.17,134.22 612.53,135.97 613.16,135.27\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_174.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_174.1.1\" points=\"425.87,208.35 424.73,207.74 424.49,206.73 424.51,205.95 422.94,204.99 420.39,203.93 419.02,202.31 418.31,202.19 417.81,202.32 416.9,201.37 415.88,200.93 414.5,200.81 414.09,200.68 413.77,200.07 413.34,199.91 413.12,199.32 412.3,199.37 411.79,199.06 410.64,199.18 410.15,200.52 410.13,201.77 409.83,202.45 409.41,204.14 408.89,205.08 409.21,205.19 408.98,206.23 409.15,206.67 409.02,207.66 409.69,208.39 409.46,209.35 409.82,210.46 410.53,209.87 410.96,210.08 412.84,210.13 413.16,209.9 414.75,209.67 415.37,209.79 415.83,209.03 416.57,209.41 417.56,211.79 419,212.8 423.61,213.67 425.21,209.94 425.87,208.35\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_175.1\" title=\"income_grp=3. Upper middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_175.1.1\" points=\"389.35,118.76 389.91,115.64 390.22,114.07 389.76,111.62 389.83,110.83 389.06,111.23 388.59,111.08 388.39,110.44 387.89,109.62 387.85,108.87 388.71,107.69 389.66,107.92 390.06,108.89 391.26,108.87 390.73,107.29 390.39,105.49 389.9,104.52 388.73,103.43 388.4,103.12 387.63,102.04 387.1,100.94 386.08,99.42 384.12,97.24 382.91,95.98 381.65,95.02 379.96,94.21 379.16,94.11 378.91,93.53 378,93.83 377.2,93.44 375.55,93.84 374.6,93.59 373.96,93.69 372.31,92.87 370.97,92.55 369.96,91.76 369.26,91.71 368.65,92.45 368.13,92.49 367.53,93.42 367.44,93.13 367.26,93.69 367.35,94.91 366.92,96.31 367.45,96.7 367.5,98.31 366.58,100.3 365.88,102.1 365.87,102.11 364.87,104.9 365.68,105.97 366.27,105.37 366.5,104.45 367.2,104.3 368.17,103.89 369.03,104.05 370.49,105.15 370.89,113.19 371.31,112.86 372.16,110.78 371.94,109.45 372.26,108.68 373.41,108.91 374.26,109.88 375.05,110.54 375.49,111.58 376.3,112.09 376.96,111.83 377.69,111.21 378.98,111.1 380.03,111.61 380.24,112.3 380.58,113.35 381.46,113.52 381.99,114.35 382.61,115.82 384.15,117.48 386.53,119.12 387.19,119.09 387.94,118.71 388.5,118.98 389.35,118.76\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <polygon id=\"tm_polygons_1_1_175.1.2\" points=\"383.13,100.68 383.47,101.36 384.38,101.7 384.7,102.39 385.27,103.43 384.77,104.08 384.14,104.75 383.36,104.31 382.45,103.47 381.5,102.11 382.55,100.47 383.13,100.68\" fill=\"rgb(255,255,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=3. Upper middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_176.1\" title=\"income_grp=4. Lower middle income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_176.1.1\" points=\"390.04,149.9 390.38,149.42 390.66,149.55 390.54,149.93 390.54,149.93 390.62,149.86 391.27,149.47 392.31,149.08 393.23,148.39 393.98,147.36 394.35,145.39 394.05,144.77 393.65,142.9 393.9,140.99 393.35,140.19 392.77,138.06 393.61,137.47 388.56,135.59 388.65,133.96 387.39,133.65 386.42,132.74 386.19,131.95 385.6,131.77 384.1,129.91 383.13,128.44 382.58,128.39 382.06,128.65 380.25,128.9 379.96,129.07 379.96,129.25 379.33,129.76 378.28,129.89 376.92,129.38 375.91,130.8 374.86,132.66 375.14,139.93 378.57,139.9 378.45,140.7 378.72,141.56 378.46,142.64 378.67,143.75 378.51,144.47 379.08,144.41 379.16,143.69 379.93,143.75 380.98,143.54 381.5,142.49 382.81,142.17 383.84,142.9 384.18,141.69 385.43,141.37 386,140.39 386.64,139.13 387.9,139.11 387.84,141.59 387.38,141.17 386.25,142.06 385.82,142.47 386.09,144.79 386.45,147.52 386.11,148.54 386.61,150.02 387.06,150.29 389.29,150.69 389.58,150.58 389.47,150.08 390.04,149.9\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=4. Lower middle income</title>\n </g>\n <g id=\"tm_polygons_1_1_177.1\" title=\"income_grp=5. Low income\" onmouseover=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '1.80')})\" onmouseout=\"Array.prototype.map.call(this.querySelectorAll('polygon'),function(d){d.setAttribute('stroke-width', '0.80')})\">\n <polygon id=\"tm_polygons_1_1_177.1.1\" points=\"389.35,118.76 388.5,118.98 387.94,118.71 387.19,119.09 386.53,119.12 385.56,120.12 384.33,120.46 383.93,121.88 383.97,122.67 383.28,122.91 381.56,125.38 381.11,126.69 380.8,127.09 380.25,128.9 382.06,128.65 382.58,128.39 383.13,128.44 384.1,129.91 385.6,131.77 386.19,131.95 386.42,132.74 387.39,133.65 388.65,133.96 388.72,133.11 390.08,133.16 390.82,132.68 391.15,132.11 391.92,131.95 392.73,131.22 392.59,128.35 392.19,126.78 392.03,125.1 392.25,124.43 391.99,123.11 391.73,122.9 391.21,121.29 389.35,118.76\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-dasharray=\"none\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <title>income_grp=5. Low income</title>\n </g>\n </g>\n <g id=\"GRID.gTree.670.1\">\n <g id=\"tm_bubbles_1_2.1\">\n <g>\n <circle id=\"tm_bubbles_1_2.1.1\" cx=\"553.38\" cy=\"249.79\" r=\"5.76\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=36833979 growth=0.40431417957859\"/>\n <title>pop2010=36833979 growth=0.40431417957859</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.2\" cx=\"461.04\" cy=\"235.01\" r=\"4.44\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=21935142 growth=3.37927149046949\"/>\n <title>pop2010=21935142 growth=3.37927149046949</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.3\" cx=\"177.95\" cy=\"214.63\" r=\"4.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=20131688 growth=0.862513366986415\"/>\n <title>pop2010=20131688 growth=0.862513366986415</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.4\" cx=\"529.06\" cy=\"240.47\" r=\"4.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=19979977 growth=3.58225587546973\"/>\n <title>pop2010=19979977 growth=3.58225587546973</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.5\" cx=\"264.1\" cy=\"115.88\" r=\"4.21\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=19659808 growth=1.25082198157785\"/>\n <title>pop2010=19659808 growth=1.25082198157785</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.6\" cx=\"548\" cy=\"247.7\" r=\"4.19\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=19491722 growth=0.529286740289031\"/>\n <title>pop2010=19491722 growth=0.529286740289031</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.7\" cx=\"457.55\" cy=\"213.84\" r=\"4.18\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=19421983 growth=1.75908917230542\"/>\n <title>pop2010=19421983 growth=1.75908917230542</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.8\" cx=\"228.36\" cy=\"259.89\" r=\"4.07\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=18365262 growth=0.23280364854038\"/>\n <title>pop2010=18365262 growth=0.23280364854038</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.9\" cx=\"388.14\" cy=\"237.95\" r=\"3.9\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=16899015 growth=2.17105967418811\"/>\n <title>pop2010=16899015 growth=2.17105967418811</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.10\" cx=\"513.89\" cy=\"258.3\" r=\"3.82\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=16189572 growth=4.94879852290104\"/>\n <title>pop2010=16189572 growth=4.94879852290104</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.11\" cx=\"484.25\" cy=\"224.19\" r=\"3.64\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=14730537 growth=4.24833256248567\"/>\n <title>pop2010=14730537 growth=4.24833256248567</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.12\" cx=\"481.44\" cy=\"221.58\" r=\"3.59\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=14283096 growth=1.01031947135271\"/>\n <title>pop2010=14283096 growth=1.01031947135271</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.13\" cx=\"248.98\" cy=\"92.16\" r=\"3.58\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=14245871 growth=1.15713247719287\"/>\n <title>pop2010=14245871 growth=1.15713247719287</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.14\" cx=\"446.39\" cy=\"226.82\" r=\"3.56\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=14080737 growth=3.65710686876688\"/>\n <title>pop2010=14080737 growth=3.65710686876688</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.15\" cx=\"382.26\" cy=\"260.48\" r=\"3.38\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=12703384 growth=1.88577783683466\"/>\n <title>pop2010=12703384 growth=1.88577783683466</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.16\" cx=\"269.48\" cy=\"117.31\" r=\"3.34\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=12373884 growth=0.769554652362993\"/>\n <title>pop2010=12373884 growth=0.769554652362993</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.17\" cx=\"156.23\" cy=\"246.36\" r=\"3.31\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=12160151 growth=0.242032356341628\"/>\n <title>pop2010=12160151 growth=0.242032356341628</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.18\" cx=\"537.61\" cy=\"203.69\" r=\"3.27\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=11891107 growth=1.7246636499024\"/>\n <title>pop2010=11891107 growth=1.7246636499024</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.19\" cx=\"389.78\" cy=\"287\" r=\"3.21\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=11461264 growth=0.883700087529613\"/>\n <title>pop2010=11461264 growth=0.883700087529613</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.20\" cx=\"506.83\" cy=\"236.93\" r=\"3.18\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=11243667 growth=3.54791190454146\"/>\n <title>pop2010=11243667 growth=3.54791190454146</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.21\" cx=\"344.67\" cy=\"184.88\" r=\"3.12\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=10780986 growth=4.9966097720561\"/>\n <title>pop2010=10780986 growth=4.9966097720561</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.22\" cx=\"342.38\" cy=\"275.21\" r=\"3.07\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=10460118 growth=0.77558302879566\"/>\n <title>pop2010=10460118 growth=0.77558302879566</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.23\" cx=\"522.86\" cy=\"221.6\" r=\"3.03\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=10222916 growth=1.04097011068075\"/>\n <title>pop2010=10222916 growth=1.04097011068075</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.24\" cx=\"532.1\" cy=\"253.62\" r=\"2.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=9796045 growth=0.0226366865403334\"/>\n <title>pop2010=9796045 growth=0.0226366865403334</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.25\" cx=\"338.86\" cy=\"279.89\" r=\"2.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=9698872 growth=1.18602967437863\"/>\n <title>pop2010=9698872 growth=1.18602967437863</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.26\" cx=\"516.29\" cy=\"155.39\" r=\"2.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=9629953 growth=1.73230752008862\"/>\n <title>pop2010=9629953 growth=1.73230752008862</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.27\" cx=\"521.26\" cy=\"222.89\" r=\"2.94\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=9620379 growth=5.77304490810601\"/>\n <title>pop2010=9620379 growth=5.77304490810601</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.28\" cx=\"515.82\" cy=\"256.71\" r=\"2.92\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=9450932 growth=3.56070068010224\"/>\n <title>pop2010=9450932 growth=3.56070068010224</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.29\" cx=\"364.47\" cy=\"159.77\" r=\"2.91\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=9381673 growth=5.04809323454356\"/>\n <title>pop2010=9381673 growth=5.04809323454356</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.30\" cx=\"549.6\" cy=\"248.74\" r=\"2.87\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=9164891 growth=0.356334843480408\"/>\n <title>pop2010=9164891 growth=0.356334843480408</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.31\" cx=\"212.08\" cy=\"141.9\" r=\"2.84\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=8955047 growth=2.01090290201715\"/>\n <title>pop2010=8955047 growth=2.01090290201715</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.32\" cx=\"208.78\" cy=\"262.11\" r=\"2.79\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=8615834 growth=0.296436769789204\"/>\n <title>pop2010=8615834 growth=0.296436769789204</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.33\" cx=\"471.1\" cy=\"200.13\" r=\"2.77\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=8522504 growth=3.18941123406924\"/>\n <title>pop2010=8522504 growth=3.18941123406924</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.34\" cx=\"216.01\" cy=\"180.6\" r=\"2.77\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=8505956 growth=2.57460066804954\"/>\n <title>pop2010=8505956 growth=2.57460066804954</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.35\" cx=\"466.75\" cy=\"199.95\" r=\"2.73\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=8275032 growth=4.30423471474189\"/>\n <title>pop2010=8275032 growth=4.30423471474189</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.36\" cx=\"504.29\" cy=\"201.67\" r=\"2.72\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=8213366 growth=2.34213232431137\"/>\n <title>pop2010=8213366 growth=2.34213232431137</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.37\" cx=\"417.93\" cy=\"249.8\" r=\"2.69\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=8058520 growth=1.05539975082273\"/>\n <title>pop2010=8058520 growth=1.05539975082273</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.38\" cx=\"383.73\" cy=\"110.05\" r=\"2.68\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=7991825 growth=2.96478463930329\"/>\n <title>pop2010=7991825 growth=2.96478463930329</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.39\" cx=\"467.14\" cy=\"210\" r=\"2.61\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=7577527 growth=3.5647210494928\"/>\n <title>pop2010=7577527 growth=3.5647210494928</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.40\" cx=\"518.27\" cy=\"239.11\" r=\"2.6\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=7514801 growth=1.13002193937005\"/>\n <title>pop2010=7514801 growth=1.13002193937005</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.41\" cx=\"455.2\" cy=\"241.16\" r=\"2.6\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=7487415 growth=3.42740986041244\"/>\n <title>pop2010=7487415 growth=3.42740986041244</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.42\" cx=\"522.09\" cy=\"222.66\" r=\"2.53\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=7118368 growth=0.861146824665429\"/>\n <title>pop2010=7118368 growth=0.861146824665429</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.43\" cx=\"523.2\" cy=\"221.01\" r=\"2.52\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=7049514 growth=0.70928861195254\"/>\n <title>pop2010=7049514 growth=0.70928861195254</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.44\" cx=\"521.09\" cy=\"222.66\" r=\"2.45\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=6653209 growth=1.12146935411168\"/>\n <title>pop2010=6653209 growth=1.12146935411168</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.45\" cx=\"229.54\" cy=\"94.54\" r=\"2.38\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=6269330 growth=0.697744416069979\"/>\n <title>pop2010=6269330 growth=0.697744416069979</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.46\" cx=\"502.21\" cy=\"239.29\" r=\"2.37\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=6234260 growth=4.06059580447399\"/>\n <title>pop2010=6234260 growth=4.06059580447399</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.47\" cx=\"455.9\" cy=\"222.69\" r=\"2.37\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=6209893 growth=3.61070633584186\"/>\n <title>pop2010=6209893 growth=3.61070633584186</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.48\" cx=\"515.17\" cy=\"194.83\" r=\"2.36\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=6189370 growth=3.42386220245356\"/>\n <title>pop2010=6189370 growth=3.42386220245356</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.49\" cx=\"524.26\" cy=\"242.21\" r=\"2.36\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=6162151 growth=3.75436921295827\"/>\n <title>pop2010=6162151 growth=3.75436921295827</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.50\" cx=\"407.89\" cy=\"244.92\" r=\"2.3\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5890677 growth=2.80605438050669\"/>\n <title>pop2010=5890677 growth=2.80605438050669</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.51\" cx=\"508.03\" cy=\"177.18\" r=\"2.29\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5809953 growth=3.50033984784386\"/>\n <title>pop2010=5809953 growth=3.50033984784386</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.52\" cx=\"333.49\" cy=\"259.3\" r=\"2.28\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5787392 growth=1.19041875857035\"/>\n <title>pop2010=5787392 growth=1.19041875857035</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.53\" cx=\"522.54\" cy=\"261.99\" r=\"2.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5676319 growth=2.2127262403681\"/>\n <title>pop2010=5676319 growth=2.2127262403681</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.54\" cx=\"541.05\" cy=\"245.48\" r=\"2.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5556200 growth=-0.19589107663511\"/>\n <title>pop2010=5556200 growth=-0.19589107663511</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.55\" cx=\"211.05\" cy=\"228.76\" r=\"2.23\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5517777 growth=0.974655191755665\"/>\n <title>pop2010=5517777 growth=0.974655191755665</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.56\" cx=\"222.28\" cy=\"265.67\" r=\"2.23\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5499233 growth=1.64985553439907\"/>\n <title>pop2010=5499233 growth=1.64985553439907</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.57\" cx=\"226.16\" cy=\"258.38\" r=\"2.22\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5449069 growth=0.477237487724967\"/>\n <title>pop2010=5449069 growth=0.477237487724967</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.58\" cx=\"267.73\" cy=\"123.97\" r=\"2.21\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5409346 growth=1.03451138085824\"/>\n <title>pop2010=5409346 growth=1.03451138085824</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.59\" cx=\"413.84\" cy=\"226.35\" r=\"2.17\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5227076 growth=3.64626609599707\"/>\n <title>pop2010=5227076 growth=3.64626609599707</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.60\" cx=\"507.27\" cy=\"246.9\" r=\"2.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5149350 growth=3.3401341916941\"/>\n <title>pop2010=5149350 growth=3.3401341916941</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.61\" cx=\"187.72\" cy=\"243.64\" r=\"2.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5148972 growth=1.90530265070387\"/>\n <title>pop2010=5148972 growth=1.90530265070387</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.62\" cx=\"527.73\" cy=\"238.49\" r=\"2.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5081771 growth=4.94869406748159\"/>\n <title>pop2010=5081771 growth=4.94869406748159</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.63\" cx=\"511.71\" cy=\"172.86\" r=\"2.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=5078969 growth=1.92607987959761\"/>\n <title>pop2010=5078969 growth=1.92607987959761</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.64\" cx=\"188.97\" cy=\"237.35\" r=\"2.12\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4976162 growth=2.36111083200266\"/>\n <title>pop2010=4976162 growth=2.36111083200266</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.65\" cx=\"459.31\" cy=\"212.58\" r=\"2.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4951375 growth=3.13161899472369\"/>\n <title>pop2010=4951375 growth=3.13161899472369</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.66\" cx=\"342.25\" cy=\"261.21\" r=\"2.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4933548 growth=1.10405331011272\"/>\n <title>pop2010=4933548 growth=1.10405331011272</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.67\" cx=\"522.87\" cy=\"269.55\" r=\"2.1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4896299 growth=2.25205609379656\"/>\n <title>pop2010=4896299 growth=2.25205609379656</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.68\" cx=\"378.46\" cy=\"293.51\" r=\"2.09\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4871556 growth=0.304424294824898\"/>\n <title>pop2010=4871556 growth=0.304424294824898</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.69\" cx=\"222.69\" cy=\"256.28\" r=\"2.04\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4604365 growth=1.35859342167704\"/>\n <title>pop2010=4604365 growth=1.35859342167704</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.70\" cx=\"208.4\" cy=\"245.8\" r=\"2.02\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4544198 growth=2.33848525086275\"/>\n <title>pop2010=4544198 growth=2.33848525086275</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.71\" cx=\"392.34\" cy=\"205.85\" r=\"2.02\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4517078 growth=3.07348245923582\"/>\n <title>pop2010=4517078 growth=3.07348245923582</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.72\" cx=\"360.94\" cy=\"149.3\" r=\"2.02\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4508434 growth=5.16457599246213\"/>\n <title>pop2010=4508434 growth=5.16457599246213</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.73\" cx=\"171.66\" cy=\"217.41\" r=\"2\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4441523 growth=1.73058880928907\"/>\n <title>pop2010=4441523 growth=1.73058880928907</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.74\" cx=\"456.86\" cy=\"218.53\" r=\"2\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4438444 growth=5.38090826424756\"/>\n <title>pop2010=4438444 growth=5.38090826424756</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.75\" cx=\"572.98\" cy=\"93.69\" r=\"1.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4364380 growth=0.836375384361582\"/>\n <title>pop2010=4364380 growth=0.836375384361582</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.76\" cx=\"496.19\" cy=\"208.7\" r=\"1.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4342142 growth=2.3401215344869\"/>\n <title>pop2010=4342142 growth=2.3401215344869</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.77\" cx=\"385.83\" cy=\"240.4\" r=\"1.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4332570 growth=2.06046526657388\"/>\n <title>pop2010=4332570 growth=2.06046526657388</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.78\" cx=\"233.73\" cy=\"263.07\" r=\"1.94\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4184792 growth=0.322823691117741\"/>\n <title>pop2010=4184792 growth=0.322823691117741</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.79\" cx=\"388.39\" cy=\"258.32\" r=\"1.94\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4166350 growth=2.50055564222881\"/>\n <title>pop2010=4166350 growth=2.50055564222881</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.80\" cx=\"332.35\" cy=\"182.31\" r=\"1.93\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4150288 growth=3.85045086027765\"/>\n <title>pop2010=4150288 growth=3.85045086027765</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.81\" cx=\"178.89\" cy=\"228.49\" r=\"1.92\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4112643 growth=1.85358661084855\"/>\n <title>pop2010=4112643 growth=1.85358661084855</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.82\" cx=\"487.13\" cy=\"221.13\" r=\"1.92\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=4106060 growth=2.55409565374105\"/>\n <title>pop2010=4106060 growth=2.55409565374105</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.83\" cx=\"527.64\" cy=\"240.64\" r=\"1.9\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3997251 growth=7.20123654981886\"/>\n <title>pop2010=3997251 growth=7.20123654981886</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.84\" cx=\"523.38\" cy=\"250.63\" r=\"1.89\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3951543 growth=3.004821154673\"/>\n <title>pop2010=3951543 growth=3.004821154673</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.85\" cx=\"559.18\" cy=\"85.6\" r=\"1.89\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3951216 growth=1.39016697644472\"/>\n <title>pop2010=3951216 growth=1.39016697644472</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.86\" cx=\"404.15\" cy=\"153.97\" r=\"1.87\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3869675 growth=7.38464082901019\"/>\n <title>pop2010=3869675 growth=7.38464082901019</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.87\" cx=\"522.67\" cy=\"256.32\" r=\"1.87\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3862366 growth=3.13467962383679\"/>\n <title>pop2010=3862366 growth=3.13467962383679</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.88\" cx=\"232.05\" cy=\"269.08\" r=\"1.85\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3791073 growth=0.968641331886778\"/>\n <title>pop2010=3791073 growth=0.968641331886778</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.89\" cx=\"215.91\" cy=\"263.15\" r=\"1.83\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3729964 growth=-0.331206949986649\"/>\n <title>pop2010=3729964 growth=-0.331206949986649</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.90\" cx=\"445.74\" cy=\"247.4\" r=\"1.83\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3722320 growth=5.37131949966687\"/>\n <title>pop2010=3722320 growth=5.37131949966687</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.91\" cx=\"260.54\" cy=\"133.34\" r=\"1.83\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3710360 growth=2.15545391821818\"/>\n <title>pop2010=3710360 growth=2.15545391821818</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.92\" cx=\"165.32\" cy=\"245.15\" r=\"1.81\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3649247 growth=2.01830953070592\"/>\n <title>pop2010=3649247 growth=2.01830953070592</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.93\" cx=\"514.17\" cy=\"247.87\" r=\"1.81\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3629582 growth=4.01139304746387\"/>\n <title>pop2010=3629582 growth=4.01139304746387</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.94\" cx=\"526.69\" cy=\"223.43\" r=\"1.81\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3623048 growth=1.81545759261263\"/>\n <title>pop2010=3623048 growth=1.81545759261263</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.95\" cx=\"357.58\" cy=\"262.19\" r=\"1.8\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3592209 growth=0.567447495399071\"/>\n <title>pop2010=3592209 growth=0.567447495399071</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.96\" cx=\"281.26\" cy=\"151.11\" r=\"1.79\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3559092 growth=0.937691411180155\"/>\n <title>pop2010=3559092 growth=0.937691411180155</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.97\" cx=\"275\" cy=\"161.14\" r=\"1.78\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3519526 growth=1.8458877701145\"/>\n <title>pop2010=3519526 growth=1.8458877701145</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.98\" cx=\"213.68\" cy=\"184.42\" r=\"1.78\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3510296 growth=1.99405691143995\"/>\n <title>pop2010=3510296 growth=1.99405691143995</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.99\" cx=\"517.71\" cy=\"251.81\" r=\"1.77\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3492952 growth=2.98870697335663\"/>\n <title>pop2010=3492952 growth=2.98870697335663</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.100\" cx=\"258.51\" cy=\"101.77\" r=\"1.77\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3476065 growth=0.698525487872062\"/>\n <title>pop2010=3476065 growth=0.698525487872062</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.101\" cx=\"357.6\" cy=\"281.64\" r=\"1.77\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3474830 growth=0.435313382237404\"/>\n <title>pop2010=3474830 growth=0.435313382237404</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.102\" cx=\"402.42\" cy=\"219.31\" r=\"1.76\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3452470 growth=2.96191712020669\"/>\n <title>pop2010=3452470 growth=2.96191712020669</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.103\" cx=\"327.24\" cy=\"245.45\" r=\"1.75\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3405238 growth=0.971230204761018\"/>\n <title>pop2010=3405238 growth=0.971230204761018</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.104\" cx=\"523.04\" cy=\"266.02\" r=\"1.75\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3386544 growth=2.19425467379133\"/>\n <title>pop2010=3386544 growth=2.19425467379133</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.105\" cx=\"503.35\" cy=\"227.11\" r=\"1.74\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3365405 growth=2.41378972218797\"/>\n <title>pop2010=3365405 growth=2.41378972218797</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.106\" cx=\"367.53\" cy=\"93.57\" r=\"1.74\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3344671 growth=1.53925154372433\"/>\n <title>pop2010=3344671 growth=1.53925154372433</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.107\" cx=\"275.65\" cy=\"139.77\" r=\"1.74\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3343124 growth=1.30802506876801\"/>\n <title>pop2010=3343124 growth=1.30802506876801</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.108\" cx=\"537.57\" cy=\"248.58\" r=\"1.73\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3329104 growth=-0.464434274207114\"/>\n <title>pop2010=3329104 growth=-0.464434274207114</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.109\" cx=\"393.26\" cy=\"242.28\" r=\"1.73\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3310530 growth=1.73795736634315\"/>\n <title>pop2010=3310530 growth=1.73795736634315</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.110\" cx=\"153.05\" cy=\"254\" r=\"1.72\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3282535 growth=0.162340995602484\"/>\n <title>pop2010=3282535 growth=0.162340995602484</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.111\" cx=\"400.25\" cy=\"166.86\" r=\"1.71\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3236589 growth=4.80606280253687\"/>\n <title>pop2010=3236589 growth=4.80606280253687</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.112\" cx=\"353.08\" cy=\"197.71\" r=\"1.7\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3220929 growth=2.95377203285139\"/>\n <title>pop2010=3220929 growth=2.95377203285139</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.113\" cx=\"517.76\" cy=\"234.06\" r=\"1.69\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3155126 growth=3.69732619236126\"/>\n <title>pop2010=3155126 growth=3.69732619236126</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.114\" cx=\"509.92\" cy=\"254.21\" r=\"1.68\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3131159 growth=2.21409708034629\"/>\n <title>pop2010=3131159 growth=2.21409708034629</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.115\" cx=\"260.32\" cy=\"111.74\" r=\"1.68\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3118137 growth=2.05498347250297\"/>\n <title>pop2010=3118137 growth=2.05498347250297</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.116\" cx=\"375.08\" cy=\"254.39\" r=\"1.67\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3097843 growth=-0.115567509392826\"/>\n <title>pop2010=3097843 growth=-0.115567509392826</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.117\" cx=\"395.91\" cy=\"250.86\" r=\"1.67\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3078498 growth=3.44943865482453\"/>\n <title>pop2010=3078498 growth=3.44943865482453</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.118\" cx=\"163.62\" cy=\"272.99\" r=\"1.66\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3068596 growth=1.06824423938505\"/>\n <title>pop2010=3068596 growth=1.06824423938505</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.119\" cx=\"352.39\" cy=\"269.17\" r=\"1.66\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3056107 growth=0.222047199263638\"/>\n <title>pop2010=3056107 growth=0.222047199263638</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.120\" cx=\"528.25\" cy=\"225.88\" r=\"1.65\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3039967 growth=9.07838802197524\"/>\n <title>pop2010=3039967 growth=9.07838802197524</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.121\" cx=\"522.05\" cy=\"241.82\" r=\"1.65\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3027190 growth=1.96575041540174\"/>\n <title>pop2010=3027190 growth=1.96575041540174</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.122\" cx=\"453.29\" cy=\"240.88\" r=\"1.65\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3016893 growth=3.72780870915873\"/>\n <title>pop2010=3016893 growth=3.72780870915873</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.123\" cx=\"459.57\" cy=\"231.22\" r=\"1.65\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=3016722 growth=2.96388928114689\"/>\n <title>pop2010=3016722 growth=2.96388928114689</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.124\" cx=\"156.87\" cy=\"243.61\" r=\"1.63\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2964154 growth=0.888995645975209\"/>\n <title>pop2010=2964154 growth=0.888995645975209</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.125\" cx=\"310.41\" cy=\"203.89\" r=\"1.62\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2929109 growth=4.49467739165733\"/>\n <title>pop2010=2929109 growth=4.49467739165733</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.126\" cx=\"403.15\" cy=\"190.85\" r=\"1.62\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2918813 growth=2.9420863892274\"/>\n <title>pop2010=2918813 growth=2.9420863892274</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.127\" cx=\"466.97\" cy=\"230.24\" r=\"1.62\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2904192 growth=1.03079617325576\"/>\n <title>pop2010=2904192 growth=1.03079617325576</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.128\" cx=\"228.57\" cy=\"194.23\" r=\"1.62\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2900895 growth=0.320366645466313\"/>\n <title>pop2010=2900895 growth=0.320366645466313</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.129\" cx=\"467.71\" cy=\"231.07\" r=\"1.6\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2854192 growth=2.62446254491639\"/>\n <title>pop2010=2854192 growth=2.62446254491639</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.130\" cx=\"528.82\" cy=\"256.56\" r=\"1.6\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2833299 growth=0.394769489559697\"/>\n <title>pop2010=2833299 growth=0.394769489559697</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.131\" cx=\"345.5\" cy=\"187.05\" r=\"1.59\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2814304 growth=3.13204614711133\"/>\n <title>pop2010=2814304 growth=3.13204614711133</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.132\" cx=\"325.22\" cy=\"255.93\" r=\"1.59\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2811563 growth=0.651025781744887\"/>\n <title>pop2010=2811563 growth=0.651025781744887</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.133\" cx=\"510.32\" cy=\"218.21\" r=\"1.59\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2811020 growth=5.61202695107114\"/>\n <title>pop2010=2811020 growth=5.61202695107114</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.134\" cx=\"467.73\" cy=\"265.91\" r=\"1.59\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2810979 growth=4.71073956795835\"/>\n <title>pop2010=2810979 growth=4.71073956795835</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.135\" cx=\"381.95\" cy=\"278.04\" r=\"1.59\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2805867 growth=0.806681143475439\"/>\n <title>pop2010=2805867 growth=0.806681143475439</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.136\" cx=\"529.23\" cy=\"229.38\" r=\"1.59\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2793287 growth=3.3843640127205\"/>\n <title>pop2010=2793287 growth=3.3843640127205</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.137\" cx=\"263.27\" cy=\"117.29\" r=\"1.59\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2792846 growth=1.65118663900552\"/>\n <title>pop2010=2792846 growth=1.65118663900552</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.138\" cx=\"525.91\" cy=\"152.89\" r=\"1.58\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2768199 growth=1.0204540930764\"/>\n <title>pop2010=2768199 growth=1.0204540930764</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.139\" cx=\"380.12\" cy=\"255.32\" r=\"1.57\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2744603 growth=1.93354011490915\"/>\n <title>pop2010=2744603 growth=1.93354011490915</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.140\" cx=\"387.84\" cy=\"102.15\" r=\"1.57\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2738863 growth=0.938378443901721\"/>\n <title>pop2010=2738863 growth=0.938378443901721</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.141\" cx=\"527.01\" cy=\"241.13\" r=\"1.57\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2737313 growth=2.25124054136301\"/>\n <title>pop2010=2737313 growth=2.25124054136301</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.142\" cx=\"512.73\" cy=\"254.57\" r=\"1.57\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2737077 growth=3.71318015532628\"/>\n <title>pop2010=2737077 growth=3.71318015532628</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.143\" cx=\"179.33\" cy=\"213.76\" r=\"1.57\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2732939 growth=1.76981264492182\"/>\n <title>pop2010=2732939 growth=1.76981264492182</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.144\" cx=\"552.07\" cy=\"248.32\" r=\"1.57\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2729790 growth=4.08864051813509\"/>\n <title>pop2010=2729790 growth=4.08864051813509</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.145\" cx=\"521.78\" cy=\"221.54\" r=\"1.55\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2681831 growth=7.36845461179321\"/>\n <title>pop2010=2681831 growth=7.36845461179321</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.146\" cx=\"430.23\" cy=\"251.03\" r=\"1.55\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2660551 growth=2.63464973984712\"/>\n <title>pop2010=2660551 growth=2.63464973984712</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.147\" cx=\"202.98\" cy=\"268.08\" r=\"1.55\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2657786 growth=0.926523053398581\"/>\n <title>pop2010=2657786 growth=0.926523053398581</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.148\" cx=\"533.46\" cy=\"227.13\" r=\"1.55\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2654039 growth=0.329889651207085\"/>\n <title>pop2010=2654039 growth=0.329889651207085</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.149\" cx=\"530.15\" cy=\"233.57\" r=\"1.55\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2652025 growth=4.03561806544056\"/>\n <title>pop2010=2652025 growth=4.03561806544056</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.150\" cx=\"513.47\" cy=\"222.21\" r=\"1.54\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2619101 growth=4.51018498332061\"/>\n <title>pop2010=2619101 growth=4.51018498332061</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.151\" cx=\"225.21\" cy=\"212.52\" r=\"1.53\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2601121 growth=2.76593437983085\"/>\n <title>pop2010=2601121 growth=2.76593437983085</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.152\" cx=\"547.63\" cy=\"264.45\" r=\"1.53\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2591458 growth=-0.162684481091339\"/>\n <title>pop2010=2591458 growth=-0.162684481091339</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.153\" cx=\"190.45\" cy=\"203.71\" r=\"1.53\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2583587 growth=3.02150072747695\"/>\n <title>pop2010=2583587 growth=3.02150072747695</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.154\" cx=\"531.84\" cy=\"253.38\" r=\"1.52\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2559434 growth=0.932174848032807\"/>\n <title>pop2010=2559434 growth=0.932174848032807</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.155\" cx=\"530.21\" cy=\"237.6\" r=\"1.51\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2546750 growth=4.42497300481005\"/>\n <title>pop2010=2546750 growth=4.42497300481005</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.156\" cx=\"335.96\" cy=\"283.25\" r=\"1.51\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2537770 growth=0.867474199789579\"/>\n <title>pop2010=2537770 growth=0.867474199789579</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.157\" cx=\"508.89\" cy=\"230.49\" r=\"1.5\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2495945 growth=2.91935519412487\"/>\n <title>pop2010=2495945 growth=2.91935519412487</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.158\" cx=\"206.21\" cy=\"164.8\" r=\"1.5\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2492304 growth=1.84704995859253\"/>\n <title>pop2010=2492304 growth=1.84704995859253</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.159\" cx=\"231.39\" cy=\"212.46\" r=\"1.49\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2478159 growth=-0.0834772910051373\"/>\n <title>pop2010=2478159 growth=-0.0834772910051373</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.160\" cx=\"467\" cy=\"218.5\" r=\"1.49\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2470886 growth=1.78715650985112\"/>\n <title>pop2010=2470886 growth=1.78715650985112</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.161\" cx=\"208.42\" cy=\"233.45\" r=\"1.49\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2452075 growth=1.52211494346625\"/>\n <title>pop2010=2452075 growth=1.52211494346625</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.162\" cx=\"343.68\" cy=\"251.96\" r=\"1.48\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2432023 growth=1.6578584988711\"/>\n <title>pop2010=2432023 growth=1.6578584988711</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.163\" cx=\"336.41\" cy=\"281.56\" r=\"1.48\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2428509 growth=0.748096877549146\"/>\n <title>pop2010=2428509 growth=0.748096877549146</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.164\" cx=\"498.02\" cy=\"250.54\" r=\"1.48\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2418782 growth=2.47116523936428\"/>\n <title>pop2010=2418782 growth=2.47116523936428</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.165\" cx=\"211.88\" cy=\"177.87\" r=\"1.47\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2401739 growth=1.78396986516853\"/>\n <title>pop2010=2401739 growth=1.78396986516853</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.166\" cx=\"395.3\" cy=\"245.27\" r=\"1.47\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2400692 growth=1.8005600051985\"/>\n <title>pop2010=2400692 growth=1.8005600051985</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.167\" cx=\"517.46\" cy=\"153.74\" r=\"1.47\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2399494 growth=1.54653856188013\"/>\n <title>pop2010=2399494 growth=1.54653856188013</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.168\" cx=\"181.19\" cy=\"257.95\" r=\"1.47\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2384830 growth=1.61960810623818\"/>\n <title>pop2010=2384830 growth=1.61960810623818</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.169\" cx=\"355.16\" cy=\"179.29\" r=\"1.46\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2361114 growth=4.83507361355699\"/>\n <title>pop2010=2361114 growth=4.83507361355699</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.170\" cx=\"358.17\" cy=\"178.87\" r=\"1.45\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2348656 growth=6.00603919858847\"/>\n <title>pop2010=2348656 growth=6.00603919858847</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.171\" cx=\"411.5\" cy=\"205.4\" r=\"1.44\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2291298 growth=5.90041976207372\"/>\n <title>pop2010=2291298 growth=5.90041976207372</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.172\" cx=\"536.18\" cy=\"250.16\" r=\"1.43\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2279292 growth=-0.151454925476859\"/>\n <title>pop2010=2279292 growth=-0.151454925476859</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.173\" cx=\"164.45\" cy=\"275.92\" r=\"1.43\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2278216 growth=1.6956249978053\"/>\n <title>pop2010=2278216 growth=1.6956249978053</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.174\" cx=\"519.24\" cy=\"252.04\" r=\"1.42\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2249640 growth=1.6526510908412\"/>\n <title>pop2010=2249640 growth=1.6526510908412</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.175\" cx=\"526.28\" cy=\"241.68\" r=\"1.42\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2234966 growth=3.03560322617883\"/>\n <title>pop2010=2234966 growth=3.03560322617883</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.176\" cx=\"360.35\" cy=\"260.15\" r=\"1.41\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2215805 growth=-0.103750104363877\"/>\n <title>pop2010=2215805 growth=-0.103750104363877</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.177\" cx=\"442.24\" cy=\"260.97\" r=\"1.41\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2208834 growth=0.694968476580857\"/>\n <title>pop2010=2208834 growth=0.694968476580857</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.178\" cx=\"223.57\" cy=\"257.07\" r=\"1.41\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2206935 growth=0.540324024042394\"/>\n <title>pop2010=2206935 growth=0.540324024042394</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.179\" cx=\"516.83\" cy=\"257.74\" r=\"1.41\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2204056 growth=4.71729847154519\"/>\n <title>pop2010=2204056 growth=4.71729847154519</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.180\" cx=\"522.12\" cy=\"235.04\" r=\"1.41\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2202789 growth=2.86425526911565\"/>\n <title>pop2010=2202789 growth=2.86425526911565</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.181\" cx=\"552.53\" cy=\"255\" r=\"1.41\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2192087 growth=-0.778135174379484\"/>\n <title>pop2010=2192087 growth=-0.778135174379484</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.182\" cx=\"206.49\" cy=\"222.88\" r=\"1.4\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2164747 growth=-0.258376613987685\"/>\n <title>pop2010=2164747 growth=-0.258376613987685</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.183\" cx=\"202.63\" cy=\"255.75\" r=\"1.39\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2152560 growth=0.328353216635076\"/>\n <title>pop2010=2152560 growth=0.328353216635076</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.184\" cx=\"221.26\" cy=\"212.63\" r=\"1.39\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2140638 growth=3.15777819509884\"/>\n <title>pop2010=2140638 growth=3.15777819509884</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.185\" cx=\"461.19\" cy=\"221.99\" r=\"1.38\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2127497 growth=2.97312757667813\"/>\n <title>pop2010=2127497 growth=2.97312757667813</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.186\" cx=\"452.22\" cy=\"245.47\" r=\"1.38\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2126909 growth=3.65520104527274\"/>\n <title>pop2010=2126909 growth=3.65520104527274</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.187\" cx=\"543.49\" cy=\"247.11\" r=\"1.38\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2118860 growth=0.395160605231115\"/>\n <title>pop2010=2118860 growth=0.395160605231115</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.188\" cx=\"414.66\" cy=\"236.48\" r=\"1.38\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2101856 growth=5.23474491116423\"/>\n <title>pop2010=2101856 growth=5.23474491116423</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.189\" cx=\"502.98\" cy=\"178.21\" r=\"1.38\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2100915 growth=1.35134453321529\"/>\n <title>pop2010=2100915 growth=1.35134453321529</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.190\" cx=\"466.08\" cy=\"195.39\" r=\"1.37\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2095301 growth=4.28705470001685\"/>\n <title>pop2010=2095301 growth=4.28705470001685</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.191\" cx=\"465.09\" cy=\"192.94\" r=\"1.37\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2074802 growth=3.29622296489014\"/>\n <title>pop2010=2074802 growth=3.29622296489014</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.192\" cx=\"413.79\" cy=\"259.22\" r=\"1.36\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2061843 growth=2.75299816717374\"/>\n <title>pop2010=2061843 growth=2.75299816717374</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.193\" cx=\"338.71\" cy=\"182.8\" r=\"1.36\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2060076 growth=2.2161852281178\"/>\n <title>pop2010=2060076 growth=2.2161852281178</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.194\" cx=\"258.52\" cy=\"131.3\" r=\"1.36\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2048878 growth=2.08887986497976\"/>\n <title>pop2010=2048878 growth=2.08887986497976</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.195\" cx=\"246.92\" cy=\"112.02\" r=\"1.36\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2039633 growth=2.78681507898725\"/>\n <title>pop2010=2039633 growth=2.78681507898725</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.196\" cx=\"220.72\" cy=\"194.56\" r=\"1.35\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2037473 growth=1.59031800666806\"/>\n <title>pop2010=2037473 growth=1.59031800666806</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.197\" cx=\"581.86\" cy=\"107.29\" r=\"1.35\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2033617 growth=1.74516637105217\"/>\n <title>pop2010=2033617 growth=1.74516637105217</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.198\" cx=\"258.43\" cy=\"166.46\" r=\"1.35\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2022566 growth=1.44355239829009\"/>\n <title>pop2010=2022566 growth=1.44355239829009</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.199\" cx=\"474.95\" cy=\"228.34\" r=\"1.35\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2022108 growth=1.97252570090223\"/>\n <title>pop2010=2022108 growth=1.97252570090223</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.200\" cx=\"416.37\" cy=\"126.24\" r=\"1.35\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2021267 growth=6.35848702818579\"/>\n <title>pop2010=2021267 growth=6.35848702818579</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.201\" cx=\"336.34\" cy=\"185.43\" r=\"1.35\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=2009668 growth=5.82545972767641\"/>\n <title>pop2010=2009668 growth=5.82545972767641</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.202\" cx=\"393.93\" cy=\"246.09\" r=\"1.34\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1990263 growth=1.3158009770568\"/>\n <title>pop2010=1990263 growth=1.3158009770568</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.203\" cx=\"464.08\" cy=\"196\" r=\"1.33\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1968626 growth=5.1017206925033\"/>\n <title>pop2010=1968626 growth=5.1017206925033</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.204\" cx=\"345.14\" cy=\"278.74\" r=\"1.33\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1958115 growth=0.803594273063635\"/>\n <title>pop2010=1958115 growth=0.803594273063635</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.205\" cx=\"157.48\" cy=\"246.2\" r=\"1.32\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1944699 growth=2.30850635496804\"/>\n <title>pop2010=1944699 growth=2.30850635496804</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.206\" cx=\"177.06\" cy=\"214.31\" r=\"1.32\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1939783 growth=2.20417438445434\"/>\n <title>pop2010=1939783 growth=2.20417438445434</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.207\" cx=\"325.86\" cy=\"199.21\" r=\"1.32\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1933356 growth=6.9123689584329\"/>\n <title>pop2010=1933356 growth=6.9123689584329</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.208\" cx=\"354.55\" cy=\"252.1\" r=\"1.31\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1915961 growth=0.922038600994488\"/>\n <title>pop2010=1915961 growth=0.922038600994488</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.209\" cx=\"336.5\" cy=\"198.55\" r=\"1.31\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1914162 growth=9.30576931315113\"/>\n <title>pop2010=1914162 growth=9.30576931315113</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.210\" cx=\"162.77\" cy=\"250.77\" r=\"1.31\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1903071 growth=3.49105209422034\"/>\n <title>pop2010=1903071 growth=3.49105209422034</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.211\" cx=\"377.24\" cy=\"267.06\" r=\"1.3\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1889202 growth=-0.0856657996339195\"/>\n <title>pop2010=1889202 growth=-0.0856657996339195</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.212\" cx=\"160.69\" cy=\"269.11\" r=\"1.29\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1857095 growth=1.40778473906828\"/>\n <title>pop2010=1857095 growth=1.40778473906828</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.213\" cx=\"215.57\" cy=\"195.33\" r=\"1.29\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1856788 growth=1.27832579702152\"/>\n <title>pop2010=1856788 growth=1.27832579702152</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.214\" cx=\"463.52\" cy=\"223.21\" r=\"1.29\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1851285 growth=2.75266639118234\"/>\n <title>pop2010=1851285 growth=2.75266639118234</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.215\" cx=\"376.79\" cy=\"283.96\" r=\"1.29\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1846994 growth=0.576082001349219\"/>\n <title>pop2010=1846994 growth=0.576082001349219</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.216\" cx=\"520.9\" cy=\"251.87\" r=\"1.28\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1821427 growth=3.95391086219761\"/>\n <title>pop2010=1821427 growth=3.95391086219761</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.217\" cx=\"350.68\" cy=\"180.99\" r=\"1.28\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1816186 growth=6.51859446113999\"/>\n <title>pop2010=1816186 growth=6.51859446113999</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.218\" cx=\"351.43\" cy=\"190.92\" r=\"1.28\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1813724 growth=7.7013095708057\"/>\n <title>pop2010=1813724 growth=7.7013095708057</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.219\" cx=\"328.47\" cy=\"246.33\" r=\"1.27\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1799442 growth=2.07197564578353\"/>\n <title>pop2010=1799442 growth=2.07197564578353</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.220\" cx=\"457.09\" cy=\"221.06\" r=\"1.27\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1793525 growth=2.12980025369036\"/>\n <title>pop2010=1793525 growth=2.12980025369036</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.221\" cx=\"464.93\" cy=\"194.29\" r=\"1.27\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1790099 growth=5.97115578523869\"/>\n <title>pop2010=1790099 growth=5.97115578523869</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.222\" cx=\"239.28\" cy=\"162.62\" r=\"1.27\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1788998 growth=2.39811335730951\"/>\n <title>pop2010=1788998 growth=2.39811335730951</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.223\" cx=\"352.77\" cy=\"283.37\" r=\"1.27\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1784840 growth=0.462607292530423\"/>\n <title>pop2010=1784840 growth=0.462607292530423</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.224\" cx=\"217.4\" cy=\"261.42\" r=\"1.27\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1780524 growth=0.0187416737993984\"/>\n <title>pop2010=1780524 growth=0.0187416737993984</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.225\" cx=\"427.45\" cy=\"227.63\" r=\"1.27\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1777855 growth=6.09935568423747\"/>\n <title>pop2010=1777855 growth=6.09935568423747</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.226\" cx=\"523.77\" cy=\"253.41\" r=\"1.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1776527 growth=3.67595876673982\"/>\n <title>pop2010=1776527 growth=3.67595876673982</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.227\" cx=\"523.12\" cy=\"222.8\" r=\"1.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1775499 growth=5.86614805189978\"/>\n <title>pop2010=1775499 growth=5.86614805189978</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.228\" cx=\"454.66\" cy=\"242.43\" r=\"1.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1771985 growth=4.03342579085037\"/>\n <title>pop2010=1771985 growth=4.03342579085037</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.229\" cx=\"183.86\" cy=\"236.63\" r=\"1.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1770572 growth=2.63844113653667\"/>\n <title>pop2010=1770572 growth=2.63844113653667</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.230\" cx=\"503.34\" cy=\"259.77\" r=\"1.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1757126 growth=2.25863142426895\"/>\n <title>pop2010=1757126 growth=2.25863142426895</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.231\" cx=\"336.62\" cy=\"283.79\" r=\"1.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1755552 growth=1.69719267785859\"/>\n <title>pop2010=1755552 growth=1.69719267785859</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.232\" cx=\"156.95\" cy=\"243.23\" r=\"1.26\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1755175 growth=2.5037902203484\"/>\n <title>pop2010=1755175 growth=2.5037902203484</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.233\" cx=\"350.23\" cy=\"268.26\" r=\"1.25\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1736536 growth=0.278496961767565\"/>\n <title>pop2010=1736536 growth=0.278496961767565</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.234\" cx=\"366.36\" cy=\"272.76\" r=\"1.25\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1734398 growth=-0.0382726456096006\"/>\n <title>pop2010=1734398 growth=-0.0382726456096006</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.235\" cx=\"219.23\" cy=\"259.35\" r=\"1.25\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1733375 growth=-0.0434124179707219\"/>\n <title>pop2010=1733375 growth=-0.0434124179707219</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.236\" cx=\"155.25\" cy=\"255.65\" r=\"1.25\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1732797 growth=1.9528600291898\"/>\n <title>pop2010=1732797 growth=1.9528600291898</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.237\" cx=\"520.02\" cy=\"246.85\" r=\"1.25\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1722361 growth=2.2534416420251\"/>\n <title>pop2010=1722361 growth=2.2534416420251</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.238\" cx=\"385.38\" cy=\"134.18\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1718885 growth=6.0623601927994\"/>\n <title>pop2010=1718885 growth=6.0623601927994</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.239\" cx=\"462.95\" cy=\"231.8\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1714339 growth=2.97242844034931\"/>\n <title>pop2010=1714339 growth=2.97242844034931</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.240\" cx=\"419.41\" cy=\"243.49\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1714147 growth=1.98393720025179\"/>\n <title>pop2010=1714147 growth=1.98393720025179</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.241\" cx=\"512.44\" cy=\"247.58\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1707961 growth=3.47987454046082\"/>\n <title>pop2010=1707961 growth=3.47987454046082</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.242\" cx=\"368.19\" cy=\"281.13\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1702689 growth=0.285090230805508\"/>\n <title>pop2010=1702689 growth=0.285090230805508</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.243\" cx=\"528.58\" cy=\"237.89\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1702452 growth=4.23247762638829\"/>\n <title>pop2010=1702452 growth=4.23247762638829</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.244\" cx=\"474.78\" cy=\"210.69\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1700228 growth=2.81047600674733\"/>\n <title>pop2010=1700228 growth=2.81047600674733</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.245\" cx=\"362.42\" cy=\"274.05\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1699888 growth=0.633741752397805\"/>\n <title>pop2010=1699888 growth=0.633741752397805</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.246\" cx=\"519.76\" cy=\"97.71\" r=\"1.24\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1697517 growth=1.99468400021914\"/>\n <title>pop2010=1697517 growth=1.99468400021914</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.247\" cx=\"236.01\" cy=\"128.75\" r=\"1.23\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1684180 growth=4.57663670154021\"/>\n <title>pop2010=1684180 growth=4.57663670154021</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.248\" cx=\"451.34\" cy=\"238.26\" r=\"1.23\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1674157 growth=3.07420391277521\"/>\n <title>pop2010=1674157 growth=3.07420391277521</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.249\" cx=\"227.58\" cy=\"131.7\" r=\"1.23\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1671931 growth=1.55359282171334\"/>\n <title>pop2010=1671931 growth=1.55359282171334</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.250\" cx=\"153.49\" cy=\"253.15\" r=\"1.23\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1667771 growth=0.716471266139056\"/>\n <title>pop2010=1667771 growth=0.716471266139056</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.251\" cx=\"384.03\" cy=\"111.05\" r=\"1.23\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1666320 growth=4.11761846464065\"/>\n <title>pop2010=1666320 growth=4.11761846464065</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.252\" cx=\"316.47\" cy=\"192.11\" r=\"1.22\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1665606 growth=3.44588696246291\"/>\n <title>pop2010=1665606 growth=3.44588696246291</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.253\" cx=\"252.51\" cy=\"91.68\" r=\"1.22\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1659394 growth=0.576107904451866\"/>\n <title>pop2010=1659394 growth=0.576107904451866</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.254\" cx=\"466.45\" cy=\"189.65\" r=\"1.22\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1647769 growth=3.82987542549957\"/>\n <title>pop2010=1647769 growth=3.82987542549957</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.255\" cx=\"384.36\" cy=\"142.78\" r=\"1.22\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1642230 growth=4.90357623475396\"/>\n <title>pop2010=1642230 growth=4.90357623475396</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.256\" cx=\"382.63\" cy=\"258.86\" r=\"1.22\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1640202 growth=3.11272026250425\"/>\n <title>pop2010=1640202 growth=3.11272026250425</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.257\" cx=\"464.59\" cy=\"195.56\" r=\"1.21\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1629754 growth=7.17613823926801\"/>\n <title>pop2010=1629754 growth=7.17613823926801</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.258\" cx=\"211.53\" cy=\"256.7\" r=\"1.21\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1627981 growth=0.707833813785296\"/>\n <title>pop2010=1627981 growth=0.707833813785296</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.259\" cx=\"226.66\" cy=\"193.48\" r=\"1.21\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1621381 growth=1.44133303646706\"/>\n <title>pop2010=1621381 growth=1.44133303646706</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.260\" cx=\"174.53\" cy=\"218.44\" r=\"1.21\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1612663 growth=2.29686549514685\"/>\n <title>pop2010=1612663 growth=2.29686549514685</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.261\" cx=\"457.86\" cy=\"239.78\" r=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1598298 growth=1.63468890031771\"/>\n <title>pop2010=1598298 growth=1.63468890031771</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.262\" cx=\"378.19\" cy=\"155.53\" r=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1597597 growth=5.48962598202175\"/>\n <title>pop2010=1597597 growth=5.48962598202175</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.263\" cx=\"208.46\" cy=\"169.32\" r=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1597586 growth=1.73870452044522\"/>\n <title>pop2010=1597586 growth=1.73870452044522</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.264\" cx=\"393.22\" cy=\"170.59\" r=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1594363 growth=4.94493412102514\"/>\n <title>pop2010=1594363 growth=4.94493412102514</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.265\" cx=\"527.54\" cy=\"242.09\" r=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1588342 growth=4.74207695823695\"/>\n <title>pop2010=1588342 growth=4.74207695823695</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.266\" cx=\"463.3\" cy=\"197.42\" r=\"1.19\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1575179 growth=7.3229201252683\"/>\n <title>pop2010=1575179 growth=7.3229201252683</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.267\" cx=\"364.42\" cy=\"159.91\" r=\"1.19\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1574151 growth=4.01952544577998\"/>\n <title>pop2010=1574151 growth=4.01952544577998</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.268\" cx=\"524.98\" cy=\"242.93\" r=\"1.19\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1571602 growth=2.43514579390965\"/>\n <title>pop2010=1571602 growth=2.43514579390965</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.269\" cx=\"448.28\" cy=\"227.83\" r=\"1.19\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1568640 growth=2.74653840269278\"/>\n <title>pop2010=1568640 growth=2.74653840269278</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.270\" cx=\"347.05\" cy=\"265.34\" r=\"1.19\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1559789 growth=0.703293842949271\"/>\n <title>pop2010=1559789 growth=0.703293842949271</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.271\" cx=\"522.11\" cy=\"153.57\" r=\"1.18\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1558270 growth=1.29843351922324\"/>\n <title>pop2010=1558270 growth=1.29843351922324</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.272\" cx=\"392.9\" cy=\"252.47\" r=\"1.18\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1557997 growth=3.15443482882188\"/>\n <title>pop2010=1557997 growth=3.15443482882188</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.273\" cx=\"346.07\" cy=\"269.53\" r=\"1.18\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1551108 growth=0.843061862874797\"/>\n <title>pop2010=1551108 growth=0.843061862874797</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.274\" cx=\"417.25\" cy=\"250.09\" r=\"1.18\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1550944 growth=3.24595214269503\"/>\n <title>pop2010=1550944 growth=3.24595214269503</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.275\" cx=\"403.4\" cy=\"219.09\" r=\"1.18\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1542923 growth=2.39089701819209\"/>\n <title>pop2010=1542923 growth=2.39089701819209</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.276\" cx=\"458.78\" cy=\"215.88\" r=\"1.17\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1531365 growth=3.25427314846558\"/>\n <title>pop2010=1531365 growth=3.25427314846558</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.277\" cx=\"273.69\" cy=\"123.11\" r=\"1.17\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1524280 growth=1.36057679691395\"/>\n <title>pop2010=1524280 growth=1.36057679691395</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.278\" cx=\"196.29\" cy=\"256.72\" r=\"1.17\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1523574 growth=0.991648584184293\"/>\n <title>pop2010=1523574 growth=0.991648584184293</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.279\" cx=\"210.4\" cy=\"234.73\" r=\"1.17\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1520578 growth=2.49274289119006\"/>\n <title>pop2010=1520578 growth=2.49274289119006</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.280\" cx=\"532.89\" cy=\"221.78\" r=\"1.17\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1514281 growth=0.36079829305129\"/>\n <title>pop2010=1514281 growth=0.36079829305129</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.281\" cx=\"521.14\" cy=\"248.48\" r=\"1.17\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1509740 growth=2.55768542927921\"/>\n <title>pop2010=1509740 growth=2.55768542927921</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.282\" cx=\"512.09\" cy=\"196.71\" r=\"1.17\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1509715 growth=3.10606306488311\"/>\n <title>pop2010=1509715 growth=3.10606306488311</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.283\" cx=\"207.45\" cy=\"190.78\" r=\"1.16\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1504133 growth=2.31980815526287\"/>\n <title>pop2010=1504133 growth=2.31980815526287</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.284\" cx=\"522.57\" cy=\"260.69\" r=\"1.16\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1500959 growth=0.930291900045238\"/>\n <title>pop2010=1500959 growth=0.930291900045238</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.285\" cx=\"533.96\" cy=\"251.08\" r=\"1.16\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1497504 growth=0.864852447806483\"/>\n <title>pop2010=1497504 growth=0.864852447806483</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.286\" cx=\"209.55\" cy=\"258.06\" r=\"1.16\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1494887 growth=1.82665980773129\"/>\n <title>pop2010=1494887 growth=1.82665980773129</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.287\" cx=\"523.38\" cy=\"245.48\" r=\"1.16\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1493549 growth=6.61768713313055\"/>\n <title>pop2010=1493549 growth=6.61768713313055</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.288\" cx=\"518.04\" cy=\"215.98\" r=\"1.16\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1492393 growth=5.32732999953766\"/>\n <title>pop2010=1492393 growth=5.32732999953766</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.289\" cx=\"449.69\" cy=\"246.3\" r=\"1.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1479548 growth=3.57188141243136\"/>\n <title>pop2010=1479548 growth=3.57188141243136</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.290\" cx=\"505.94\" cy=\"260.08\" r=\"1.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1477887 growth=4.01156516025921\"/>\n <title>pop2010=1477887 growth=4.01156516025921</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.291\" cx=\"389.68\" cy=\"128.69\" r=\"1.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1474557 growth=0.837519336315924\"/>\n <title>pop2010=1474557 growth=0.837519336315924</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.292\" cx=\"451.57\" cy=\"285.84\" r=\"1.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1471998 growth=0.217907904766175\"/>\n <title>pop2010=1471998 growth=0.217907904766175</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.293\" cx=\"534.27\" cy=\"248.67\" r=\"1.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1471473 growth=0.864079735068194\"/>\n <title>pop2010=1471473 growth=0.864079735068194</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.294\" cx=\"409.24\" cy=\"254.65\" r=\"1.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1468812 growth=1.51075835437074\"/>\n <title>pop2010=1468812 growth=1.51075835437074</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.295\" cx=\"264.68\" cy=\"114.98\" r=\"1.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1460971 growth=1.00988999781652\"/>\n <title>pop2010=1460971 growth=1.00988999781652</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.296\" cx=\"238.7\" cy=\"98.84\" r=\"1.15\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1459268 growth=0.707484848567912\"/>\n <title>pop2010=1459268 growth=0.707484848567912</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.297\" cx=\"513.13\" cy=\"163.06\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1455227 growth=0.495936372813314\"/>\n <title>pop2010=1455227 growth=0.495936372813314</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.298\" cx=\"547.28\" cy=\"186.32\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1454972 growth=2.34362585671752\"/>\n <title>pop2010=1454972 growth=2.34362585671752</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.299\" cx=\"521.26\" cy=\"221.69\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1454125 growth=1.57971976274392\"/>\n <title>pop2010=1454125 growth=1.57971976274392</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.300\" cx=\"470.87\" cy=\"208.05\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1453128 growth=4.19359478311615\"/>\n <title>pop2010=1453128 growth=4.19359478311615</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.301\" cx=\"390.18\" cy=\"277.22\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1452699 growth=-0.185324007244446\"/>\n <title>pop2010=1452699 growth=-0.185324007244446</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.302\" cx=\"524.93\" cy=\"265.96\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1450233 growth=1.09940264771247\"/>\n <title>pop2010=1450233 growth=1.09940264771247</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.303\" cx=\"405\" cy=\"251.11\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1446940 growth=3.6529572753535\"/>\n <title>pop2010=1446940 growth=3.6529572753535</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.304\" cx=\"468.16\" cy=\"192.95\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1442863 growth=2.18758121872971\"/>\n <title>pop2010=1442863 growth=2.18758121872971</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.305\" cx=\"222.93\" cy=\"252.13\" r=\"1.14\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1440812 growth=0.317695854837411\"/>\n <title>pop2010=1440812 growth=0.317695854837411</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.306\" cx=\"513.93\" cy=\"242.13\" r=\"1.13\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1425852 growth=1.57376081107997\"/>\n <title>pop2010=1425852 growth=1.57376081107997</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.307\" cx=\"414.42\" cy=\"174.62\" r=\"1.13\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1425660 growth=9.51165775851185\"/>\n <title>pop2010=1425660 growth=9.51165775851185</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.308\" cx=\"519.52\" cy=\"271.08\" r=\"1.13\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1420734 growth=2.76624617979157\"/>\n <title>pop2010=1420734 growth=2.76624617979157</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.309\" cx=\"471.66\" cy=\"227.72\" r=\"1.13\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1419040 growth=1.86278751832225\"/>\n <title>pop2010=1419040 growth=1.86278751832225</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.310\" cx=\"530.9\" cy=\"234.94\" r=\"1.13\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1409586 growth=3.28487229583722\"/>\n <title>pop2010=1409586 growth=3.28487229583722</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.311\" cx=\"461.69\" cy=\"235.66\" r=\"1.13\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1406124 growth=2.159240579067\"/>\n <title>pop2010=1406124 growth=2.159240579067</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.312\" cx=\"452.41\" cy=\"264.8\" r=\"1.12\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1400733 growth=1.31789570175044\"/>\n <title>pop2010=1400733 growth=1.31789570175044</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.313\" cx=\"514.4\" cy=\"225.49\" r=\"1.12\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1396452 growth=3.10436735383672\"/>\n <title>pop2010=1396452 growth=3.10436735383672</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.314\" cx=\"421.76\" cy=\"237.02\" r=\"1.12\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1395166 growth=3.72249610440621\"/>\n <title>pop2010=1395166 growth=3.72249610440621</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.315\" cx=\"209.29\" cy=\"264.4\" r=\"1.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1378205 growth=0.475357439568134\"/>\n <title>pop2010=1378205 growth=0.475357439568134</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.316\" cx=\"185.54\" cy=\"238.44\" r=\"1.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1376502 growth=4.08201368396123\"/>\n <title>pop2010=1376502 growth=4.08201368396123</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.317\" cx=\"214.39\" cy=\"258.4\" r=\"1.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1374475 growth=1.7256916277124\"/>\n <title>pop2010=1374475 growth=1.7256916277124</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.318\" cx=\"453.19\" cy=\"221.06\" r=\"1.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1360905 growth=3.50782016378807\"/>\n <title>pop2010=1360905 growth=3.50782016378807</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.319\" cx=\"362.65\" cy=\"292.61\" r=\"1.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1359972 growth=1.68558617383299\"/>\n <title>pop2010=1359972 growth=1.68558617383299</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.320\" cx=\"517.14\" cy=\"272.47\" r=\"1.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1358354 growth=1.45452510906583\"/>\n <title>pop2010=1358354 growth=1.45452510906583</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.321\" cx=\"522.2\" cy=\"221.01\" r=\"1.11\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1357602 growth=2.66564132934395\"/>\n <title>pop2010=1357602 growth=2.66564132934395</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.322\" cx=\"355.58\" cy=\"273.92\" r=\"1.1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1352761 growth=1.10636690442732\"/>\n <title>pop2010=1352761 growth=1.10636690442732</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.323\" cx=\"509.07\" cy=\"258.64\" r=\"1.1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1350571 growth=2.63609984221489\"/>\n <title>pop2010=1350571 growth=2.63609984221489</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.324\" cx=\"420.03\" cy=\"288.77\" r=\"1.1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1347692 growth=0.323286032713706\"/>\n <title>pop2010=1347692 growth=0.323286032713706</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.325\" cx=\"395.63\" cy=\"247.82\" r=\"1.1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1340604 growth=4.7755936876214\"/>\n <title>pop2010=1340604 growth=4.7755936876214</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.326\" cx=\"537.31\" cy=\"157.87\" r=\"1.1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1336193 growth=2.54472969099524\"/>\n <title>pop2010=1336193 growth=2.54472969099524</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.327\" cx=\"172.79\" cy=\"241.55\" r=\"1.1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1333109 growth=0.93204681687694\"/>\n <title>pop2010=1333109 growth=0.93204681687694</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.328\" cx=\"523.21\" cy=\"262.17\" r=\"1.09\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1320171 growth=-0.0103925930807448\"/>\n <title>pop2010=1320171 growth=-0.0103925930807448</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.329\" cx=\"477.83\" cy=\"222.17\" r=\"1.09\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1320009 growth=2.10362202075895\"/>\n <title>pop2010=1320009 growth=2.10362202075895</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.330\" cx=\"265.43\" cy=\"163.94\" r=\"1.08\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1303803 growth=1.86889430381737\"/>\n <title>pop2010=1303803 growth=1.86889430381737</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.331\" cx=\"244.84\" cy=\"95.61\" r=\"1.08\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1298073 growth=1.19978614453887\"/>\n <title>pop2010=1298073 growth=1.19978614453887</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.332\" cx=\"396.02\" cy=\"252.58\" r=\"1.08\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1296193 growth=3.13707140834737\"/>\n <title>pop2010=1296193 growth=3.13707140834737</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.333\" cx=\"348.37\" cy=\"184.61\" r=\"1.08\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1296072 growth=3.74220722305551\"/>\n <title>pop2010=1296072 growth=3.74220722305551</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.334\" cx=\"513.91\" cy=\"251.65\" r=\"1.08\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1295960 growth=5.048350257724\"/>\n <title>pop2010=1295960 growth=5.048350257724</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.335\" cx=\"518.15\" cy=\"249.22\" r=\"1.08\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1290574 growth=1.53566552557234\"/>\n <title>pop2010=1290574 growth=1.53566552557234</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.336\" cx=\"326.19\" cy=\"260.74\" r=\"1.08\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1285345 growth=0.42040852844956\"/>\n <title>pop2010=1285345 growth=0.42040852844956</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.337\" cx=\"605.69\" cy=\"87.52\" r=\"1.07\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1269324 growth=1.23487777746265\"/>\n <title>pop2010=1269324 growth=1.23487777746265</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.338\" cx=\"214.73\" cy=\"248.84\" r=\"1.07\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1265072 growth=5.11134544120809\"/>\n <title>pop2010=1265072 growth=5.11134544120809</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.339\" cx=\"359.36\" cy=\"277.41\" r=\"1.07\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1261221 growth=0.818024755375941\"/>\n <title>pop2010=1261221 growth=0.818024755375941</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.340\" cx=\"467.66\" cy=\"222.98\" r=\"1.06\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1256953 growth=1.45610854184683\"/>\n <title>pop2010=1256953 growth=1.45610854184683</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.341\" cx=\"398.1\" cy=\"287.93\" r=\"1.06\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1252744 growth=-0.764409967239915\"/>\n <title>pop2010=1252744 growth=-0.764409967239915</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.342\" cx=\"454.65\" cy=\"246.47\" r=\"1.06\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1250571 growth=2.89301447098965\"/>\n <title>pop2010=1250571 growth=2.89301447098965</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.343\" cx=\"526.4\" cy=\"224.09\" r=\"1.05\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1232245 growth=1.57669943882913\"/>\n <title>pop2010=1232245 growth=1.57669943882913</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.344\" cx=\"478.76\" cy=\"224.13\" r=\"1.05\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1232198 growth=1.50283477168442\"/>\n <title>pop2010=1232198 growth=1.50283477168442</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.345\" cx=\"521.02\" cy=\"243.43\" r=\"1.05\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1232107 growth=1.61194604040071\"/>\n <title>pop2010=1232107 growth=1.61194604040071</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.346\" cx=\"228.92\" cy=\"268.91\" r=\"1.05\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1218013 growth=1.67352893606226\"/>\n <title>pop2010=1218013 growth=1.67352893606226</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.347\" cx=\"552.45\" cy=\"91.49\" r=\"1.05\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1217990 growth=0.843956025911543\"/>\n <title>pop2010=1217990 growth=0.843956025911543</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.348\" cx=\"173.8\" cy=\"228.21\" r=\"1.05\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1217706 growth=1.83171471603162\"/>\n <title>pop2010=1217706 growth=1.83171471603162</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.349\" cx=\"333.3\" cy=\"287.18\" r=\"1.04\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1206831 growth=0.39322821505248\"/>\n <title>pop2010=1206831 growth=0.39322821505248</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.350\" cx=\"469.8\" cy=\"228.02\" r=\"1.04\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1204808 growth=1.66025623999841\"/>\n <title>pop2010=1204808 growth=1.66025623999841</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.351\" cx=\"373.53\" cy=\"263.75\" r=\"1.04\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1199651 growth=0.344483520623915\"/>\n <title>pop2010=1199651 growth=0.344483520623915</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.352\" cx=\"356\" cy=\"286.88\" r=\"1.04\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1192357 growth=1.17903446702623\"/>\n <title>pop2010=1192357 growth=1.17903446702623</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.353\" cx=\"232.88\" cy=\"262.06\" r=\"1.04\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1191368 growth=0.172129854083709\"/>\n <title>pop2010=1191368 growth=0.172129854083709</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.354\" cx=\"179.38\" cy=\"279.09\" r=\"1.04\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1190362 growth=2.29481451860863\"/>\n <title>pop2010=1190362 growth=2.29481451860863</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.355\" cx=\"351.25\" cy=\"272.5\" r=\"1.03\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1186491 growth=1.15195142651735\"/>\n <title>pop2010=1186491 growth=1.15195142651735</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.356\" cx=\"477.85\" cy=\"224.39\" r=\"1.03\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1186101 growth=1.36162940592749\"/>\n <title>pop2010=1186101 growth=1.36162940592749</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.357\" cx=\"455.99\" cy=\"241.33\" r=\"1.03\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1171367 growth=1.75296042999333\"/>\n <title>pop2010=1171367 growth=1.75296042999333</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.358\" cx=\"461.32\" cy=\"215.64\" r=\"1.03\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1166797 growth=3.07736478581964\"/>\n <title>pop2010=1166797 growth=3.07736478581964</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.359\" cx=\"408.1\" cy=\"282.78\" r=\"1.02\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1164448 growth=-0.0565761631262195\"/>\n <title>pop2010=1164448 growth=-0.0565761631262195</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.360\" cx=\"368.92\" cy=\"267.79\" r=\"1.02\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1160454 growth=0.212528889555295\"/>\n <title>pop2010=1160454 growth=0.212528889555295</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.361\" cx=\"279.95\" cy=\"147.38\" r=\"1.02\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1154403 growth=1.7788588560494\"/>\n <title>pop2010=1154403 growth=1.7788588560494</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.362\" cx=\"438.67\" cy=\"285.77\" r=\"1.02\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1153384 growth=0.0661791736316786\"/>\n <title>pop2010=1153384 growth=0.0661791736316786</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.363\" cx=\"405.28\" cy=\"287.06\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1142140 growth=0.235592834503651\"/>\n <title>pop2010=1142140 growth=0.235592834503651</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.364\" cx=\"494.5\" cy=\"251.68\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1141814 growth=3.09338473691862\"/>\n <title>pop2010=1141814 growth=3.09338473691862</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.365\" cx=\"532.61\" cy=\"225.14\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1139638 growth=1.56872620955075\"/>\n <title>pop2010=1139638 growth=1.56872620955075</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.366\" cx=\"528.84\" cy=\"226.8\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1138778 growth=4.3582067795479\"/>\n <title>pop2010=1138778 growth=4.3582067795479</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.367\" cx=\"492.01\" cy=\"273.5\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1137840 growth=3.87877030162413\"/>\n <title>pop2010=1137840 growth=3.87877030162413</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.368\" cx=\"183.16\" cy=\"283.36\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1137346 growth=2.20934526520514\"/>\n <title>pop2010=1137346 growth=2.20934526520514</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.369\" cx=\"499.89\" cy=\"255.43\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1132604 growth=8.08836098053689\"/>\n <title>pop2010=1132604 growth=8.08836098053689</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.370\" cx=\"422.31\" cy=\"286.03\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1128229 growth=0.371990083573459\"/>\n <title>pop2010=1128229 growth=0.371990083573459</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.371\" cx=\"391.01\" cy=\"110.57\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1127408 growth=1.62941898585073\"/>\n <title>pop2010=1127408 growth=1.62941898585073</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.372\" cx=\"405.73\" cy=\"261.8\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1127303 growth=0.0874299101483807\"/>\n <title>pop2010=1127303 growth=0.0874299101483807</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.373\" cx=\"371.38\" cy=\"293.86\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1121945 growth=0.929626675104395\"/>\n <title>pop2010=1121945 growth=0.929626675104395</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.374\" cx=\"200.06\" cy=\"192.93\" r=\"1.01\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1121524 growth=1.2288189998609\"/>\n <title>pop2010=1121524 growth=1.2288189998609</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.375\" cx=\"525.35\" cy=\"244.96\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1117510 growth=5.52733308874194\"/>\n <title>pop2010=1117510 growth=5.52733308874194</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.376\" cx=\"518.32\" cy=\"250.81\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1116720 growth=1.87712228669675\"/>\n <title>pop2010=1116720 growth=1.87712228669675</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.377\" cx=\"455.38\" cy=\"229.74\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1116463 growth=3.04279676084205\"/>\n <title>pop2010=1116463 growth=3.04279676084205</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.378\" cx=\"261.22\" cy=\"109.83\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1114002 growth=1.73214231213229\"/>\n <title>pop2010=1114002 growth=1.73214231213229</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.379\" cx=\"395.11\" cy=\"242.02\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1108820 growth=0.480646092242203\"/>\n <title>pop2010=1108820 growth=0.480646092242203</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.380\" cx=\"476.24\" cy=\"223.39\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1106901 growth=2.85539537862916\"/>\n <title>pop2010=1106901 growth=2.85539537862916</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.381\" cx=\"402.51\" cy=\"225.85\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1106293 growth=2.57242882310563\"/>\n <title>pop2010=1106293 growth=2.57242882310563</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.382\" cx=\"378.59\" cy=\"93.58\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1103828 growth=1.11121479071015\"/>\n <title>pop2010=1103828 growth=1.11121479071015</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.383\" cx=\"518.11\" cy=\"231.15\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1103074 growth=3.48788929845142\"/>\n <title>pop2010=1103074 growth=3.48788929845142</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.384\" cx=\"330.44\" cy=\"283.01\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1100238 growth=1.44919553769275\"/>\n <title>pop2010=1100238 growth=1.44919553769275</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.385\" cx=\"176.41\" cy=\"217.26\" r=\"1\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1099702 growth=2.88698210969881\"/>\n <title>pop2010=1099702 growth=2.88698210969881</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.386\" cx=\"483.27\" cy=\"222.19\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1098087 growth=-0.53845460332378\"/>\n <title>pop2010=1098087 growth=-0.53845460332378</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.387\" cx=\"359.53\" cy=\"243.95\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1095149 growth=0.658531396184446\"/>\n <title>pop2010=1095149 growth=0.658531396184446</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.388\" cx=\"504.44\" cy=\"201.39\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1092566 growth=13.4142376753441\"/>\n <title>pop2010=1092566 growth=13.4142376753441</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.389\" cx=\"396.12\" cy=\"272.25\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1088571 growth=0.0681535701392008\"/>\n <title>pop2010=1088571 growth=0.0681535701392008</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.390\" cx=\"524.16\" cy=\"240.7\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1087855 growth=6.02159295126648\"/>\n <title>pop2010=1087855 growth=6.02159295126648</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.391\" cx=\"471.07\" cy=\"218.68\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1087732 growth=5.22175499111914\"/>\n <title>pop2010=1087732 growth=5.22175499111914</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.392\" cx=\"192.42\" cy=\"201.59\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1086428 growth=0.38954261119927\"/>\n <title>pop2010=1086428 growth=0.38954261119927</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.393\" cx=\"529.17\" cy=\"227.99\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1086196 growth=6.30549182652118\"/>\n <title>pop2010=1086196 growth=6.30549182652118</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.394\" cx=\"217.82\" cy=\"186.44\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1086175 growth=2.10750569659585\"/>\n <title>pop2010=1086175 growth=2.10750569659585</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.395\" cx=\"463.62\" cy=\"229.71\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1084426 growth=2.5890839946663\"/>\n <title>pop2010=1084426 growth=2.5890839946663</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.396\" cx=\"415.15\" cy=\"240.67\" r=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1077207 growth=2.57840879236767\"/>\n <title>pop2010=1077207 growth=2.57840879236767</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.397\" cx=\"383.47\" cy=\"109.02\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1073995 growth=1.24435402399452\"/>\n <title>pop2010=1073995 growth=1.24435402399452</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.398\" cx=\"210.83\" cy=\"238.57\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1070235 growth=1.73459100104183\"/>\n <title>pop2010=1070235 growth=1.73459100104183</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.399\" cx=\"532.46\" cy=\"253\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1070016 growth=0.580972620970154\"/>\n <title>pop2010=1070016 growth=0.580972620970154</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.400\" cx=\"465.79\" cy=\"190.51\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1069423 growth=6.33334985314511\"/>\n <title>pop2010=1069423 growth=6.33334985314511</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.401\" cx=\"227.35\" cy=\"193.67\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1067988 growth=1.85222118600584\"/>\n <title>pop2010=1067988 growth=1.85222118600584</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.402\" cx=\"405.81\" cy=\"258.84\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1065597 growth=-0.393150506242041\"/>\n <title>pop2010=1065597 growth=-0.393150506242041</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.403\" cx=\"200.52\" cy=\"248.66\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1062354 growth=0.79854737686308\"/>\n <title>pop2010=1062354 growth=0.79854737686308</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.404\" cx=\"415.24\" cy=\"285.42\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1061597 growth=0.0821874967619539\"/>\n <title>pop2010=1061597 growth=0.0821874967619539</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.405\" cx=\"331.31\" cy=\"246.38\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1060711 growth=2.30459569100349\"/>\n <title>pop2010=1060711 growth=2.30459569100349</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.406\" cx=\"417.48\" cy=\"247.63\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1059658 growth=2.7203399587414\"/>\n <title>pop2010=1059658 growth=2.7203399587414</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.407\" cx=\"536.91\" cy=\"248.84\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1059501 growth=-0.197017275113473\"/>\n <title>pop2010=1059501 growth=-0.197017275113473</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.408\" cx=\"345.81\" cy=\"281.38\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1056698 growth=0.784595030935991\"/>\n <title>pop2010=1056698 growth=0.784595030935991</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.409\" cx=\"280.61\" cy=\"156.36\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1056387 growth=1.91571838729556\"/>\n <title>pop2010=1056387 growth=1.91571838729556</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.410\" cx=\"321.13\" cy=\"184.53\" r=\"0.98\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1055952 growth=4.07697508977681\"/>\n <title>pop2010=1055952 growth=4.07697508977681</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.411\" cx=\"470.52\" cy=\"218.58\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1054091 growth=1.60466221607053\"/>\n <title>pop2010=1054091 growth=1.60466221607053</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.412\" cx=\"393.42\" cy=\"243.82\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1047263 growth=1.0180632754141\"/>\n <title>pop2010=1047263 growth=1.0180632754141</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.413\" cx=\"525.65\" cy=\"243.15\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1044565 growth=2.62834768540014\"/>\n <title>pop2010=1044565 growth=2.62834768540014</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.414\" cx=\"389.01\" cy=\"165.31\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1044145 growth=4.21305470025715\"/>\n <title>pop2010=1044145 growth=4.21305470025715</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.415\" cx=\"529.53\" cy=\"238.24\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1043987 growth=4.80435101203367\"/>\n <title>pop2010=1043987 growth=4.80435101203367</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.416\" cx=\"231.04\" cy=\"129.68\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1042197 growth=3.44014615279069\"/>\n <title>pop2010=1042197 growth=3.44014615279069</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.417\" cx=\"176.11\" cy=\"220.73\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1042172 growth=1.95960935431004\"/>\n <title>pop2010=1042172 growth=1.95960935431004</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.418\" cx=\"452.15\" cy=\"245.68\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(165,0,38)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1039029 growth=6.34989976218181\"/>\n <title>pop2010=1039029 growth=6.34989976218181</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.419\" cx=\"363.83\" cy=\"197.96\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1037509 growth=4.79912945333486\"/>\n <title>pop2010=1037509 growth=4.79912945333486</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.420\" cx=\"513.5\" cy=\"239.39\" r=\"0.97\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(226,72,50)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1035122 growth=4.27472317272746\"/>\n <title>pop2010=1035122 growth=4.27472317272746</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.421\" cx=\"513.49\" cy=\"256.19\" r=\"0.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1033306 growth=1.49074911013775\"/>\n <title>pop2010=1033306 growth=1.49074911013775</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.422\" cx=\"494.13\" cy=\"220.34\" r=\"0.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1033234 growth=2.80725372955207\"/>\n <title>pop2010=1033234 growth=2.80725372955207</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.423\" cx=\"517.52\" cy=\"218.75\" r=\"0.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1031035 growth=2.28232795200939\"/>\n <title>pop2010=1031035 growth=2.28232795200939</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.424\" cx=\"171.73\" cy=\"259.97\" r=\"0.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1024820 growth=1.28277160867274\"/>\n <title>pop2010=1024820 growth=1.28277160867274</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.425\" cx=\"402.38\" cy=\"274.97\" r=\"0.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1020912 growth=-0.0253988590593509\"/>\n <title>pop2010=1020912 growth=-0.0253988590593509</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.426\" cx=\"388.35\" cy=\"254.23\" r=\"0.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1019199 growth=3.12253053623483\"/>\n <title>pop2010=1019199 growth=3.12253053623483</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.427\" cx=\"343.33\" cy=\"278.37\" r=\"0.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1018356 growth=0.369242190353864\"/>\n <title>pop2010=1018356 growth=0.369242190353864</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.428\" cx=\"224.47\" cy=\"193.27\" r=\"0.96\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1015534 growth=0.643356106245581\"/>\n <title>pop2010=1015534 growth=0.643356106245581</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.429\" cx=\"262.04\" cy=\"107.02\" r=\"0.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1010091 growth=3.08203914300791\"/>\n <title>pop2010=1010091 growth=3.08203914300791</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.430\" cx=\"459.42\" cy=\"239.43\" r=\"0.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1009587 growth=2.55324206829129\"/>\n <title>pop2010=1009587 growth=2.55324206829129</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.431\" cx=\"406.41\" cy=\"250.82\" r=\"0.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1009204 growth=3.355813096262\"/>\n <title>pop2010=1009204 growth=3.355813096262</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.432\" cx=\"383.44\" cy=\"270.88\" r=\"0.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1009187 growth=0.054677676188853\"/>\n <title>pop2010=1009187 growth=0.054677676188853</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.433\" cx=\"468.96\" cy=\"194.96\" r=\"0.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(252,167,94)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1009050 growth=2.04824339725484\"/>\n <title>pop2010=1009050 growth=2.04824339725484</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.434\" cx=\"348.77\" cy=\"278.89\" r=\"0.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1008576 growth=0.520803588425662\"/>\n <title>pop2010=1008576 growth=0.520803588425662</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.435\" cx=\"281.24\" cy=\"153.29\" r=\"0.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(254,233,158)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1004369 growth=1.63692826043018\"/>\n <title>pop2010=1004369 growth=1.63692826043018</title>\n </g>\n <g>\n <circle id=\"tm_bubbles_1_2.1.436\" cx=\"388.92\" cy=\"274.49\" r=\"0.95\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" fill=\"rgb(233,246,230)\" stroke-opacity=\"0.5\" fill-opacity=\"1\" title=\"pop2010=1003320 growth=-0.929603715663995\"/>\n <title>pop2010=1003320 growth=-0.929603715663995</title>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n <g id=\"GRID.gTree.693.1\">\n <g id=\"GRID.gTree.690.1\">\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend.1\">\n <g id=\"GRID.gTree.691.1\">\n <g id=\"GRID.rect.672.1\">\n <rect id=\"GRID.rect.672.1.1\" x=\"20.26\" y=\"27.55\" width=\"188.06\" height=\"176.5\" stroke=\"none\" fill=\"none\" stroke-opacity=\"0\" fill-opacity=\"0\"/>\n </g>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid.1\">\n <g id=\"GRID.gTree.692.1\">\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.33.1.clipPath\">\n <rect x=\"20.26\" y=\"185.04\" width=\"188.06\" height=\"19.01\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.33.1\">\n <g id=\"GRID.gTree.674.1\">\n <g id=\"GRID.text.673.1\">\n <g id=\"GRID.text.673.1.1\" transform=\"translate(21.53, 192.96)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.673.1.1.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.673.1.1.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"10.56\">\n <tspan id=\"GRID.text.673.1.1.tspan.1\" dy=\"4.5\" x=\"0\">income_grp</tspan>\n </text>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.34.1.clipPath\">\n <rect x=\"20.26\" y=\"140.69\" width=\"188.06\" height=\"44.35\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.34.1\">\n <g id=\"GRID.gTree.677.1\">\n <g id=\"GRID.rect.675.1\">\n <rect id=\"GRID.rect.675.1.1\" x=\"22.28\" y=\"174.96\" width=\"8.06\" height=\"8.06\" fill=\"rgb(90,161,206)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <rect id=\"GRID.rect.675.1.2\" x=\"22.28\" y=\"166.9\" width=\"8.06\" height=\"8.06\" fill=\"rgb(130,185,218)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <rect id=\"GRID.rect.675.1.3\" x=\"22.28\" y=\"158.84\" width=\"8.06\" height=\"8.06\" fill=\"rgb(177,209,228)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <rect id=\"GRID.rect.675.1.4\" x=\"22.28\" y=\"150.77\" width=\"8.06\" height=\"8.06\" fill=\"rgb(210,227,241)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n <rect id=\"GRID.rect.675.1.5\" x=\"22.28\" y=\"142.71\" width=\"8.06\" height=\"8.06\" fill=\"rgb(239,243,255)\" stroke=\"rgb(102,102,102)\" stroke-width=\"0.6\" stroke-opacity=\"1\" fill-opacity=\"1\"/>\n </g>\n <g id=\"GRID.text.676.1\">\n <g id=\"GRID.text.676.1.1\" transform=\"translate(32.36, 179)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.676.1.1.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.676.1.1.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.676.1.1.tspan.1\" dy=\"3\" x=\"0\">1. High income: OECD</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.676.1.2\" transform=\"translate(32.36, 170.93)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.676.1.2.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.676.1.2.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.676.1.2.tspan.1\" dy=\"3\" x=\"0\">2. High income: nonOECD</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.676.1.3\" transform=\"translate(32.36, 162.87)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.676.1.3.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.676.1.3.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.676.1.3.tspan.1\" dy=\"3\" x=\"0\">3. Upper middle income</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.676.1.4\" transform=\"translate(32.36, 154.8)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.676.1.4.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.676.1.4.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.676.1.4.tspan.1\" dy=\"3\" x=\"0\">4. Lower middle income</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.676.1.5\" transform=\"translate(32.36, 146.74)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.676.1.5.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.676.1.5.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.676.1.5.tspan.1\" dy=\"3\" x=\"0\">5. Low income</tspan>\n </text>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.35.1.clipPath\">\n <rect x=\"20.26\" y=\"137.52\" width=\"188.06\" height=\"3.17\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.35.1\">\n <g id=\"GRID.gTree.678.1\"/>\n </g>\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.36.1.clipPath\">\n <rect x=\"20.26\" y=\"118.52\" width=\"188.06\" height=\"19.01\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.36.1\">\n <g id=\"GRID.gTree.680.1\">\n <g id=\"GRID.text.679.1\">\n <g id=\"GRID.text.679.1.1\" transform=\"translate(21.53, 126.44)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.679.1.1.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.679.1.1.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"10.56\">\n <tspan id=\"GRID.text.679.1.1.tspan.1\" dy=\"4.5\" x=\"0\">Metro population</tspan>\n </text>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.37.1.clipPath\">\n <rect x=\"20.26\" y=\"94.08\" width=\"188.06\" height=\"24.43\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.37.1\">\n <g id=\"GRID.gTree.683.1\">\n <g id=\"GRID.circle.681.1\">\n <circle id=\"GRID.circle.681.1.1\" cx=\"33.63\" cy=\"110.63\" r=\"3\" fill=\"rgb(254,233,158)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n <circle id=\"GRID.circle.681.1.2\" cx=\"56.6\" cy=\"110.63\" r=\"4.24\" fill=\"rgb(254,233,158)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n <circle id=\"GRID.circle.681.1.3\" cx=\"79.57\" cy=\"110.63\" r=\"5.2\" fill=\"rgb(254,233,158)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n <circle id=\"GRID.circle.681.1.4\" cx=\"102.54\" cy=\"110.63\" r=\"6\" fill=\"rgb(254,233,158)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n </g>\n <g id=\"GRID.text.682.1\">\n <g id=\"GRID.text.682.1.1\" transform=\"translate(33.63, 103.48)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.682.1.1.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.682.1.1.text\" text-anchor=\"middle\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.27\">\n <tspan id=\"GRID.text.682.1.1.tspan.1\" dy=\"5\" x=\"0\">10 mln</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.682.1.2\" transform=\"translate(56.6, 103.48)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.682.1.2.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.682.1.2.text\" text-anchor=\"middle\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.27\">\n <tspan id=\"GRID.text.682.1.2.tspan.1\" dy=\"5\" x=\"0\">20 mln</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.682.1.3\" transform=\"translate(79.57, 103.48)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.682.1.3.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.682.1.3.text\" text-anchor=\"middle\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.27\">\n <tspan id=\"GRID.text.682.1.3.tspan.1\" dy=\"5\" x=\"0\">30 mln</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.682.1.4\" transform=\"translate(102.54, 103.48)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.682.1.4.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.682.1.4.text\" text-anchor=\"middle\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.27\">\n <tspan id=\"GRID.text.682.1.4.tspan.1\" dy=\"5\" x=\"0\">40 mln</tspan>\n </text>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.38.1.clipPath\">\n <rect x=\"20.26\" y=\"90.91\" width=\"188.06\" height=\"3.17\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.38.1\">\n <g id=\"GRID.gTree.684.1\"/>\n </g>\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.39.1.clipPath\">\n <rect x=\"20.26\" y=\"71.91\" width=\"188.06\" height=\"19.01\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.39.1\">\n <g id=\"GRID.gTree.686.1\">\n <g id=\"GRID.text.685.1\">\n <g id=\"GRID.text.685.1.1\" transform=\"translate(21.53, 79.83)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.685.1.1.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.685.1.1.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"10.56\">\n <tspan id=\"GRID.text.685.1.1.tspan.1\" dy=\"4.5\" x=\"0\">Growth rate (%)</tspan>\n </text>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.40.1.clipPath\">\n <rect x=\"20.26\" y=\"27.55\" width=\"188.06\" height=\"44.35\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n <g id=\"multiples_grid::multiples_grid::multiple_1::maingrid::aspvp::legend::legend_grid::GRID.VP.40.1\">\n <g id=\"GRID.gTree.689.1\">\n <g id=\"GRID.circle.687.1\">\n <circle id=\"GRID.circle.687.1.1\" cx=\"25.5\" cy=\"65.86\" r=\"3.23\" fill=\"rgb(233,246,230)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n <circle id=\"GRID.circle.687.1.2\" cx=\"25.5\" cy=\"57.79\" r=\"3.23\" fill=\"rgb(254,233,158)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n <circle id=\"GRID.circle.687.1.3\" cx=\"25.5\" cy=\"49.73\" r=\"3.23\" fill=\"rgb(252,167,94)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n <circle id=\"GRID.circle.687.1.4\" cx=\"25.5\" cy=\"41.67\" r=\"3.23\" fill=\"rgb(226,72,50)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n <circle id=\"GRID.circle.687.1.5\" cx=\"25.5\" cy=\"33.6\" r=\"3.23\" fill=\"rgb(165,0,38)\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke-opacity=\"0.5\" fill-opacity=\"1\"/>\n </g>\n <g id=\"GRID.text.688.1\">\n <g id=\"GRID.text.688.1.1\" transform=\"translate(30.75, 65.86)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.688.1.1.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.688.1.1.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.688.1.1.tspan.1\" dy=\"3\" x=\"0\">Less than 0</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.688.1.2\" transform=\"translate(30.75, 57.79)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.688.1.2.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.688.1.2.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.688.1.2.tspan.1\" dy=\"3\" x=\"0\">0 to 2</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.688.1.3\" transform=\"translate(30.75, 49.73)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.688.1.3.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.688.1.3.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.688.1.3.tspan.1\" dy=\"3\" x=\"0\">2 to 4</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.688.1.4\" transform=\"translate(30.75, 41.67)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.688.1.4.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.688.1.4.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.688.1.4.tspan.1\" dy=\"3\" x=\"0\">4 to 6</tspan>\n </text>\n </g>\n </g>\n <g id=\"GRID.text.688.1.5\" transform=\"translate(30.75, 33.6)\" stroke-width=\"0.1\">\n <g id=\"GRID.text.688.1.5.scale\" transform=\"scale(1, -1)\">\n <text x=\"0\" y=\"0\" id=\"GRID.text.688.1.5.text\" text-anchor=\"start\" fill=\"rgb(0,0,0)\" fill-opacity=\"1\" font-size=\"6.72\">\n <tspan id=\"GRID.text.688.1.5.tspan.1\" dy=\"3\" x=\"0\">6 or more</tspan>\n </text>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"multiples_grid::multiples_grid::multiple_1::maingrid::mapFrame.1.clipPath\">\n <rect x=\"13.06\" y=\"20.35\" width=\"626.87\" height=\"305.29\" fill=\"none\" stroke=\"none\"/>\n </clipPath>\n </defs>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n </g>\n</svg>","config":{"viewportSelector":".map_viewport","controlIconsEnabled":true,"center":false}},"evals":[]}</script>
<script type="application/htmlwidget-sizing" data-for="htmlwidget-440">{"viewer":{"width":600,"height":400,"padding":15,"fill":false},"browser":{"width":600,"height":400,"padding":40,"fill":false}}</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment