Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 279.92 KB | None | 0 0
  1. webpackJsonp([0], {
  2. 1: function(c, e) {},
  3. 541: function(c, e) {
  4. "use strict";
  5.  
  6. function t(c, e) {
  7. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  8. }
  9. Object.defineProperty(e, "__esModule", {
  10. value: !0
  11. });
  12. var l = function() {
  13. function c(c, e) {
  14. for (var t = 0; t < e.length; t++) {
  15. var l = e[t];
  16. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  17. }
  18. }
  19. return function(e, t, l) {
  20. return t && c(e.prototype, t), l && c(e, l), e
  21. }
  22. }(),
  23. n = function() {
  24. function c(e, l, n, a, o, i) {
  25. var r = this;
  26. t(this, c), this.$window = e, this.$rootScope = l, this.$scope = n, this.$timeout = a, this.$filter = o, this.apiService = i, this.countryCode = this.$rootScope.countryCode, this.isVisible = !1, this.$scope.$on("open-modal", function(c) {
  27. r.isVisible = !0, r.now = Math.round((new Date).getTime() / 1e3), r.lastVote = Math.round(r.$window.localStorage.getItem("hasVoted") / 1e3) || 0, r.timePast = r.now - r.lastVote, r.hasVoted = !(r.timePast > 86400)
  28. }), this.$scope.$on("close-modal", function(c) {
  29. r.isVisible = !1, r.$timeout(function() {
  30. r.yourVote = !1, r.votedFor = !1
  31. }, 2500)
  32. }), this.votingSuccess = this.votingSuccess.bind(this), this.votingError = this.votingError.bind(this)
  33. }
  34. return c.$inject = ["$window", "$rootScope", "$scope", "$timeout", "$filter", "apiService"], l(c, [{
  35. key: "submitVote",
  36. value: function() {
  37. var c = this;
  38. this.ballotForm.$valid && (this.apiError = !1, this.votingInProgress = !0, this.apiService.sendVote({
  39. voted: this.yourVote,
  40. token: this.$rootScope.token
  41. }).then(this.votingSuccess)["catch"](this.votingError)["finally"](function() {
  42. c.votingInProgress = !1
  43. }))
  44. }
  45. }, {
  46. key: "votingSuccess",
  47. value: function(c) {
  48. this.hasVoted = (new Date).getTime(), this.votedFor = this.yourVote, this.$window.localStorage.setItem("hasVoted", this.hasVoted)
  49. }
  50. }, {
  51. key: "votingError",
  52. value: function(c) {
  53. this.apiError = c.data.error
  54. }
  55. }, {
  56. key: "candidate",
  57. value: function(c) {
  58. return this.$filter("translate")("fullname." + ("R" === c ? "trump" : "D" === c ? "hillary" : ""))
  59. }
  60. }, {
  61. key: "closeModal",
  62. value: function() {
  63. var c = this;
  64. this.$timeout(function() {
  65. c.$rootScope.$broadcast("close-modal")
  66. }, 0)
  67. }
  68. }, {
  69. key: "sendGAEvent",
  70. value: function(c, e) {
  71. this.$window.ga("send", "event", c, e)
  72. }
  73. }]), c
  74. }();
  75. e["default"] = n
  76. },
  77. 542: function(c, e, t) {
  78. "use strict";
  79.  
  80. function l(c, e) {
  81. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  82. }
  83. Object.defineProperty(e, "__esModule", {
  84. value: !0
  85. });
  86. var n = function() {
  87. function c(c, e) {
  88. for (var t = 0; t < e.length; t++) {
  89. var l = e[t];
  90. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  91. }
  92. }
  93. return function(e, t, l) {
  94. return t && c(e.prototype, t), l && c(e, l), e
  95. }
  96. }(),
  97. a = function() {
  98. function c() {
  99. l(this, c), this.restrict = "E", this.scope = {}, this.bindToController = {
  100. yourVote: "="
  101. }, this.controller = "BallotController", this.controllerAs = "$ctrl", this.template = t(543), this.link = this.link.bind(this)
  102. }
  103. return n(c, [{
  104. key: "link",
  105. value: function(c, e, t, l) {
  106. angular.element(document).keydown(function(c) {
  107. 27 === c.keyCode && (c.preventDefault(), l.closeModal())
  108. })
  109. }
  110. }]), c
  111. }();
  112. e["default"] = function() {
  113. return new a
  114. }
  115. },
  116. 543: function(c, e) {
  117. var t, l = window.angular;
  118. try {
  119. t = l.module(["ng"])
  120. } catch (n) {
  121. t = l.module("ng", [])
  122. }
  123. var a = '<section class="ballot" ng-show="$ctrl.isVisible" ng-class="{\'animate--ballot-left\': $ctrl.yourVote === \'R\', \'animate--ballot-right\': $ctrl.yourVote === \'D\'}">\n<a href class="ballot__close icon icon--close" ng-click="$ctrl.closeModal()"></a>\n<div class="ballot__container" ng-show="!$ctrl.hasVoted" ng-class="{\'animate--fadeout\': !$ctrl.hasVoted}">\n<form name="$ctrl.ballotForm" ng-submit="$ctrl.submitVote()">\n<p class="ballot__header">\n<span class="ballot__flag flag-icon flag-icon-{{ $ctrl.countryCode.toLowerCase() }}"></span>\n{{\'ballot.onevotefromcountry\' | translate:{country: (\'country.\' + $ctrl.countryCode | translate)} }}\n</p>\n<div class="ballot__content">\n<h2 class="ballot__title" ng-show="$ctrl.yourVote">{{$ctrl.candidate($ctrl.yourVote)}}</h2>\n<p>{{\'ballot.aspresident\' | translate}}</p>\n<button class="ballot__button ballot__button--vote" ng-disabled="$ctrl.votingInProgress">{{\'ballot.vote\' | translate}}</button>\n<div class="ballot__error" ng-if="$ctrl.apiError">\n<span ng-bind-html="\'error.\' + $ctrl.apiError | translate"></span>\n</div>\n</div>\n</form>\n<div class="ballot__footer">{{\'ballot.footer\' | translate}}</div>\n</div>\n<div class="ballot__container animate--fadein" ng-show="$ctrl.hasVoted">\n<p class="ballot__subtitle" ng-show="$ctrl.votedFor">{{\'ballot.thankyou.title\' | translate }}</p>\n<p class="ballot__subtitle" ng-hide="$ctrl.votedFor">{{\'ballot.alreadyvoted\' | translate }}</p>\n<div class="ballot__content">\n<h2 class="ballot__title">{{\'ballot.thankyou.thankyou\' | translate}}</h2>\n<p class="ballot__text ballot__text--pleaseshare" ng-bind-html="\'ballot.thankyou.pleaseshare\' | translate"></p>\n<div ng-show="$ctrl.votedFor">\n<button class="ballot__button ballot__button--facebook icon icon--facebook" socialshare socialshare-provider="facebook" socialshare-type="feed" socialshare-via="1788524538092788" socialshare-media="https://worldwide.vote/hillary-vs-trump/opengraph.png" socialshare-text="{{ \'share.action\' | translate:{candidate: $ctrl.candidate($ctrl.votedFor)} }}" socialshare-caption="{{ \'share.headline\' | translate }}" socialshare-url="{{ \'page.url\' | translate }}" socialshare-popup-height="300" socialshare-popup-width="400" socialshare-trigger="click" ng-click="$ctrl.sendGAEvent(\'share-vote\', \'facebook\')">{{\'ballot.thankyou.button.sharevote\' | translate}}</button>\n<button class="ballot__button ballot__button--twitter icon icon--twitter" socialshare socialshare-provider="twitter" socialshare-hashtags="Election2016 #{{$ctrl.candidate($ctrl.votedFor)}}" socialshare-text="{{ \'share.action\' | translate:{candidate: $ctrl.candidate($ctrl.votedFor)} }} {{ \'share.headline\' | translate }}" socialshare-url="{{ \'page.url\' | translate }}" socialshare-popup-height="300" socialshare-popup-width="400" socialshare-trigger="click" ng-click="$ctrl.sendGAEvent(\'share-vote\', \'twitter\')">{{\'ballot.thankyou.button.sharevote\' | translate}}</button>\n</div>\n<div ng-hide="$ctrl.votedFor">\n<button class="ballot__button ballot__button--facebook icon icon--facebook" socialshare socialshare-provider="facebook" socialshare-type="sharer" socialshare-text="{{ \'share.headline\' | translate }}" socialshare-url="{{ \'page.url\' | translate }}" socialshare-popup-height="300" socialshare-popup-width="400" socialshare-trigger="click" ng-click="$ctrl.sendGAEvent(\'share-page\', \'facebook\')">{{\'ballot.thankyou.button.share\' | translate}}</button>\n<button class="ballot__button ballot__button--twitter icon icon--twitter" socialshare socialshare-provider="twitter" socialshare-hashtags="Election2016 #Trump #Hillary" socialshare-text="{{ \'share.headline\' | translate }}" socialshare-url="{{ \'page.url\' | translate }}" socialshare-popup-height="300" socialshare-popup-width="400" socialshare-trigger="click" ng-click="$ctrl.sendGAEvent(\'share-page\', \'twitter\')">{{\'ballot.thankyou.button.share\' | translate}}</button>\n</div>\n</div>\n<div class="ballot__footer"></div>\n</div>\n</section>\n',
  124. o = "ballot.view.html",
  125. i = l.element(window.document).injector();
  126. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  127. c.put(o, a)
  128. }]), c.exports = a
  129. },
  130. 540: function(c, e, t) {
  131. "use strict";
  132.  
  133. function l(c) {
  134. return c && c.__esModule ? c : {
  135. "default": c
  136. }
  137. }
  138. var n = t(541),
  139. a = l(n),
  140. o = t(542),
  141. i = l(o);
  142. angular.module("Vote").controller("BallotController", a["default"]).directive("ballot", i["default"])
  143. },
  144. 553: function(c, e) {
  145. "use strict";
  146.  
  147. function t(c, e) {
  148. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  149. }
  150. Object.defineProperty(e, "__esModule", {
  151. value: !0
  152. });
  153. var l = function() {
  154. function c(c, e) {
  155. for (var t = 0; t < e.length; t++) {
  156. var l = e[t];
  157. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  158. }
  159. }
  160. return function(e, t, l) {
  161. return t && c(e.prototype, t), l && c(e, l), e
  162. }
  163. }(),
  164. n = function() {
  165. function c(e, l) {
  166. t(this, c), this.$filter = e, this.CountryThreshold = l
  167. }
  168. return c.$inject = ["$filter", "CountryThreshold"], l(c, [{
  169. key: "candidate",
  170. value: function e(c) {
  171. var e = "R" === c ? "trump" : "D" === c ? "hillary" : "split";
  172. return this.$filter("translate")("shortname." + e)
  173. }
  174. }]), c
  175. }();
  176. e["default"] = n
  177. },
  178. 554: function(c, e, t) {
  179. "use strict";
  180.  
  181. function l(c, e) {
  182. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  183. }
  184. Object.defineProperty(e, "__esModule", {
  185. value: !0
  186. });
  187. var n = function a() {
  188. l(this, a), this.restrict = "E", this.scope = {}, this.bindToController = {
  189. votingResults: "="
  190. }, this.controller = "CountryResultsController", this.controllerAs = "$ctrl", this.template = t(555)
  191. };
  192. e["default"] = function() {
  193. return new n
  194. }
  195. },
  196. 555: function(c, e) {
  197. var t, l = window.angular;
  198. try {
  199. t = l.module(["ng"])
  200. } catch (n) {
  201. t = l.module("ng", [])
  202. }
  203. var a = '<table class="country-results">\n<thead>\n<tr>\n<td colspan="2" class="country-results__label-country">\n{{ \'worldmap.country\' | translate}} ({{\'votes\' | translate}})\n</td>\n<td class="country-results__label-candidate">\n{{ \'worldmap.candidate\' | translate}} : %\n</td>\n</tr>\n</thead>\n<tbody>\n<tr ng-repeat="(code, data) in $ctrl.votingResults.countries" id="country-{{code}}">\n<td class="country-results__flag">\n<span class="flag-icon flag-icon-{{code.toLowerCase()}}"></span>\n</td>\n<td class="country-results__countryname country-results__countryname--{{data.winner}}">\n<span>{{\'country.\' + code | translate}} <span>({{data.votes}})</span></span>\n</td>\n<td class="country-results__score">\n<div class="country-results__winner country-results__winner--{{data.winner}}" ng-if="data.votes >= $ctrl.CountryThreshold">\n<span class="country-results__name">{{$ctrl.candidate(data.winner)}}:</span>\n<span class="country-results__percentage">{{data.percentage}}%</span>\n</div>\n<div class="country-results__winner country-results__winner--U" ng-if="data.votes < $ctrl.CountryThreshold">\n<span class="country-results__name"></span>\n<span class="country-results__percentage">&lt; {{$ctrl.CountryThreshold}} {{\'votes\' | translate}}</span>\n</div>\n</td>\n</tr>\n</tbody>\n</table>\n',
  204. o = "country-results.view.html",
  205. i = l.element(window.document).injector();
  206. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  207. c.put(o, a)
  208. }]), c.exports = a
  209. },
  210. 552: function(c, e, t) {
  211. "use strict";
  212.  
  213. function l(c) {
  214. return c && c.__esModule ? c : {
  215. "default": c
  216. }
  217. }
  218. var n = t(553),
  219. a = l(n),
  220. o = t(554),
  221. i = l(o);
  222. angular.module("Vote").controller("CountryResultsController", a["default"]).directive("countryResults", i["default"])
  223. },
  224. 564: function(c, e, t) {
  225. "use strict";
  226.  
  227. function l(c) {
  228. return c && c.__esModule ? c : {
  229. "default": c
  230. }
  231. }
  232. var n = t(565),
  233. a = l(n);
  234. angular.module("Vote").directive("sceneHillary", a["default"])
  235. },
  236. 565: function(c, e, t) {
  237. "use strict";
  238.  
  239. function l(c, e) {
  240. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  241. }
  242. Object.defineProperty(e, "__esModule", {
  243. value: !0
  244. });
  245. var n = function() {
  246. function c(c, e) {
  247. for (var t = 0; t < e.length; t++) {
  248. var l = e[t];
  249. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  250. }
  251. }
  252. return function(e, t, l) {
  253. return t && c(e.prototype, t), l && c(e, l), e
  254. }
  255. }(),
  256. a = function() {
  257. function c(e, n, a) {
  258. l(this, c), this.restrict = "E", this.scope = {
  259. openModalFn: "&"
  260. }, this.template = t(566), this.$window = e, this.$rootScope = n, this.$timeout = a, this.link = this.link.bind(this), this.openDialog = this.openDialog.bind(this)
  261. }
  262. return n(c, [{
  263. key: "link",
  264. value: function(c, e, t) {
  265. var l = this;
  266. this.scope = c, this.scene = e, this.hillary = this.scene.find(".scene--hillary__hillary"), this.button = this.scene.find(".scene__button"), this.flag = this.scene.find(".scene--hillary__flag"), this.whitehouse = this.scene.find(".scene--hillary__whitehouse"), this.blueBg = this.scene.find(".scene--hillary__blue-bg, .scene--hillary__bg-filler"), this.tree = this.scene.find(".scene--hillary__tree"), this.bush = this.scene.find(".scene--hillary__bush"), this.fighterBlue = this.scene.find(".scene--hillary__fighter--blue"), this.fighterBlueTrail = this.scene.find(".scene--hillary__trail--blue"), this.fighterWhite = this.scene.find(".scene--hillary__fighter--white"), this.fighterWhiteTrail = this.scene.find(".scene--hillary__trail--white"), this.fighterRed = this.scene.find(".scene--hillary__fighter--red"), this.fighterRedTrail = this.scene.find(".scene--hillary__trail--red"), this.timelineFlag = new TimelineMax({
  267. paused: !0,
  268. repeat: -1
  269. }), this.timelineFlag.to(this.flag, 40, {
  270. rotation: "360",
  271. transformOrigin: "50% 50%",
  272. ease: Linear.easeNone
  273. }), this.timelineButton = new TimelineMax({
  274. paused: !0,
  275. repeat: 0
  276. }), this.timelineButton.to(this.button, .2, {
  277. y: -100,
  278. opacity: 1,
  279. ease: Back.easeOut
  280. }, .3).addLabel("mouseover").to(this.button, .4, {
  281. y: 150,
  282. opacity: 0,
  283. ease: Back.easeIn
  284. }, .5), this.timelineFull = new TimelineMax({
  285. paused: !0,
  286. repeat: 0
  287. }), this.timelineFull.to(this.hillary, .2, {
  288. backgroundPosition: "-1128px 0px",
  289. ease: SteppedEase.config(3)
  290. }).addLabel("mouseover").to(this.hillary, .3, {
  291. backgroundPosition: "-1880px 0px",
  292. ease: SteppedEase.config(2),
  293. onStart: function() {
  294. l.openDialog()
  295. }
  296. }).to(this.hillary, 1, {
  297. y: 80,
  298. x: 80,
  299. scale: .8,
  300. force3D: !1,
  301. ease: Power4.easeOut
  302. }).from(this.whitehouse, 1, {
  303. scale: 4,
  304. opacity: 0,
  305. transformOrigin: "center center",
  306. ease: Power4.easeOut
  307. }, "-=1").from(this.blueBg, .2, {
  308. opacity: 0,
  309. ease: Power4.easeOut
  310. }, "-=.8").from(this.flag, .8, {
  311. opacity: 0,
  312. onStart: function() {
  313. l.timelineFlag.play()
  314. }
  315. }).staggerFrom([this.tree, this.bush], .4, {
  316. opacity: 0,
  317. x: -100,
  318. ease: Back.easeOut.config(1.7)
  319. }, .5, "-=.5").from(this.fighterBlue, 1, {
  320. opacity: 0,
  321. scale: .7,
  322. x: 435,
  323. y: 216,
  324. ease: Expo.easeOut
  325. }).from(this.fighterWhite, 1.4, {
  326. opacity: 0,
  327. scale: .7,
  328. x: 457,
  329. y: 390,
  330. ease: Expo.easeOut
  331. }, "-=.7").from(this.fighterRed, 1, {
  332. opacity: 0,
  333. scale: .7,
  334. x: 310,
  335. y: 356,
  336. ease: Expo.easeOut
  337. }, "-=.6").from(this.fighterBlueTrail, 1, {
  338. opacity: 0
  339. }, "-=1.9").from(this.fighterWhiteTrail, 1, {
  340. opacity: 0
  341. }, "-=1.5").from(this.fighterRedTrail, 1, {
  342. opacity: 0
  343. }, "-=.8").addPause("end"), this.bindUiEvents()
  344. }
  345. }, {
  346. key: "bindUiEvents",
  347. value: function() {
  348. var c = this;
  349. this.scene.on("mouseenter mouseover touchstart", function() {
  350. c.scope.candidateChosen || (c.timelineFull.timeScale(1).tweenTo("mouseover"), c.timelineButton.tweenTo("mouseover"))
  351. }), this.scene.on("mouseout", function() {
  352. c.scope.candidateChosen || (c.timelineFull.reverse(), c.timelineButton.reverse())
  353. }), this.button.on("click touchend", function() {
  354. c.scope.candidateChosen || (c.timelineFull.timeScale(1).tweenTo("end"), c.timelineButton.reverse(), c.$rootScope.$emit("candidateChosen", "D"), c.$window.ga("send", "event", "candidate", "Hillary"))
  355. }), this.$rootScope.$on("close-modal", function(e) {
  356. c.$timeout(function() {
  357. c.timelineFull.timeScale(2).reverse()
  358. }, 500), c.$timeout(function() {
  359. c.timelineFlag.stop(), c.$rootScope.$emit("candidateChosen", !1)
  360. }, 3500)
  361. }), this.$rootScope.$on("candidateChosen", function(e, t) {
  362. c.scope.candidateChosen = t, "R" === t && (c.timelineFull.timeScale(2).reverse(), c.timelineButton.reverse())
  363. }), this.scope.$on("$destroy", function() {
  364. c.timelineFull.kill(), c.timelineFlag.kill(), c.timelineButton.kill()
  365. })
  366. }
  367. }, {
  368. key: "openDialog",
  369. value: function() {
  370. var c = this;
  371. this.$timeout(function() {
  372. c.scope.openModalFn({
  373. p: "D"
  374. })
  375. }, 500)
  376. }
  377. }]), c
  378. }();
  379. e["default"] = function(c, e, t) {
  380. return new a(c, e, t)
  381. }, e["default"].$inject = ["$window", "$rootScope", "$timeout"]
  382. },
  383. 566: function(c, e) {
  384. var t, l = window.angular;
  385. try {
  386. t = l.module(["ng"])
  387. } catch (n) {
  388. t = l.module("ng", [])
  389. }
  390. var a = '<div class="scene scene--hillary">\n<div class="scene--hillary__hillary"></div>\n<svg class="scene--hillary__background" viewBox="0 0 1000 1000" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421">\n<g>\n<g class="scene--hillary__flag">\n<g>\n<g opacity="0.3">\n<path d="M747.39,-116.664c17.469,-6.51 35.961,-9.843 54.603,-9.843c18.642,0 37.134,3.333 54.603,9.843l133.233,49.651l140.208,23.618c18.384,3.096 36.065,9.455 52.21,18.776c16.144,9.321 30.492,21.454 42.365,35.826l90.558,109.616l109.616,90.558c14.372,11.873 26.505,26.221 35.826,42.365c9.321,16.145 15.68,33.826 18.776,52.209l23.618,140.209l49.651,133.233c6.51,17.469 9.843,35.961 9.843,54.603c0,18.642 -3.333,37.134 -9.843,54.603l-49.651,133.233l-23.618,140.209c-3.096,18.383 -9.455,36.064 -18.776,52.209c-9.321,16.144 -21.454,30.492 -35.826,42.365l-109.616,90.558l-90.558,109.616c-11.873,14.372 -26.221,26.505 -42.365,35.826c-16.145,9.321 -33.826,15.68 -52.21,18.776l-140.208,23.618l-133.233,49.651c-17.469,6.51 -35.961,9.843 -54.603,9.843c-18.642,0 -37.134,-3.333 -54.603,-9.843l-133.233,-49.651l-140.209,-23.618c-18.383,-3.096 -36.064,-9.455 -52.209,-18.776c-16.144,-9.321 -30.492,-21.454 -42.365,-35.826l-90.558,-109.616l-109.616,-90.558c-14.372,-11.873 -26.505,-26.221 -35.826,-42.365c-9.321,-16.145 -15.68,-33.826 -18.776,-52.209l-23.618,-140.209l-49.651,-133.233c-6.51,-17.469 -9.844,-35.961 -9.844,-54.603c0,-18.642 3.334,-37.134 9.844,-54.603l49.651,-133.233l23.618,-140.209c3.096,-18.383 9.455,-36.064 18.776,-52.209c9.321,-16.144 21.454,-30.492 35.826,-42.365l109.616,-90.558l90.558,-109.616c11.873,-14.372 26.221,-26.505 42.365,-35.826c16.145,-9.321 33.826,-15.68 52.209,-18.776l140.209,-23.618l133.233,-49.651Z" style="fill:#f54f4f"/>\n<path d="M758.426,35.055c13.938,-5.194 28.693,-7.854 43.567,-7.854c14.874,0 29.629,2.66 43.567,7.854l106.305,39.616l111.87,18.844c14.668,2.471 28.776,7.544 41.657,14.982c12.882,7.437 24.33,17.118 33.803,28.585l72.255,87.461l87.461,72.255c11.467,9.473 21.148,20.921 28.585,33.803c7.437,12.881 12.511,26.989 14.982,41.657l18.844,111.87l39.616,106.305c5.194,13.938 7.854,28.693 7.854,43.567c0,14.874 -2.66,29.629 -7.854,43.567l-39.616,106.305l-18.844,111.87c-2.471,14.668 -7.545,28.776 -14.982,41.657c-7.437,12.882 -17.118,24.33 -28.585,33.803l-87.461,72.255l-72.255,87.461c-9.473,11.467 -20.921,21.148 -33.803,28.585c-12.881,7.438 -26.989,12.511 -41.657,14.982l-111.87,18.844l-106.305,39.616c-13.938,5.194 -28.693,7.854 -43.567,7.854c-14.874,0 -29.629,-2.66 -43.567,-7.854l-106.305,-39.616l-111.871,-18.844c-14.667,-2.471 -28.775,-7.544 -41.657,-14.982c-12.881,-7.437 -24.329,-17.118 -33.803,-28.585l-72.254,-87.461l-87.461,-72.255c-11.467,-9.473 -21.148,-20.921 -28.585,-33.803c-7.438,-12.881 -12.511,-26.989 -14.982,-41.657l-18.844,-111.87l-39.616,-106.305c-5.194,-13.938 -7.854,-28.693 -7.854,-43.567c0,-14.874 2.66,-29.629 7.854,-43.567l39.616,-106.305l18.844,-111.87c2.471,-14.668 7.544,-28.776 14.982,-41.657c7.437,-12.882 17.118,-24.33 28.585,-33.803l87.461,-72.255l72.254,-87.461c9.474,-11.467 20.922,-21.148 33.803,-28.585c12.882,-7.438 26.99,-12.511 41.657,-14.982l111.871,-18.844l106.305,-39.616Z" style="fill:#fff"/>\n<path d="M767.481,159.542c11.041,-4.114 22.729,-6.221 34.512,-6.221c11.783,0 23.471,2.107 34.512,6.221l84.21,31.382l88.619,14.928c11.619,1.957 22.794,5.976 32.999,11.868c10.204,5.891 19.272,13.56 26.777,22.644l57.237,69.282l69.282,57.237c9.084,7.505 16.753,16.573 22.644,26.777c5.892,10.205 9.911,21.38 11.868,32.999l14.927,88.619l31.382,84.21c4.115,11.041 6.222,22.729 6.222,34.512c0,11.783 -2.107,23.471 -6.222,34.512l-31.382,84.21l-14.927,88.619c-1.957,11.619 -5.976,22.794 -11.868,32.999c-5.891,10.204 -13.56,19.272 -22.644,26.777l-69.282,57.237l-57.237,69.282c-7.505,9.084 -16.573,16.753 -26.777,22.644c-10.205,5.892 -21.38,9.911 -32.999,11.868l-88.619,14.928l-84.21,31.382c-11.041,4.114 -22.729,6.221 -34.512,6.221c-11.783,0 -23.471,-2.107 -34.512,-6.221l-84.21,-31.382l-88.619,-14.928c-11.619,-1.957 -22.794,-5.976 -32.999,-11.868c-10.204,-5.891 -19.272,-13.56 -26.777,-22.644l-57.237,-69.282l-69.283,-57.237c-9.083,-7.505 -16.752,-16.573 -22.643,-26.777c-5.892,-10.205 -9.911,-21.38 -11.868,-32.999l-14.928,-88.619l-31.382,-84.21c-4.114,-11.041 -6.221,-22.729 -6.221,-34.512c0,-11.783 2.107,-23.471 6.221,-34.512l31.382,-84.21l14.928,-88.619c1.957,-11.619 5.976,-22.794 11.868,-32.999c5.891,-10.204 13.56,-19.272 22.643,-26.777l69.283,-57.237l57.237,-69.282c7.505,-9.084 16.573,-16.753 26.777,-22.644c10.205,-5.892 21.38,-9.911 32.999,-11.868l88.619,-14.928l84.21,-31.382Z" style="fill:#4474be"/>\n<path d="M778.8,315.152c7.42,-2.766 15.275,-4.182 23.193,-4.182c7.918,0 15.773,1.416 23.193,4.182l56.591,21.089l59.555,10.032c7.808,1.315 15.318,4.016 22.176,7.975c6.857,3.959 12.951,9.113 17.995,15.218l38.465,46.559l46.559,38.465c6.105,5.043 11.258,11.138 15.218,17.995c3.959,6.858 6.66,14.368 7.975,22.176l10.032,59.555l21.089,56.591c2.765,7.42 4.181,15.275 4.181,23.193c0,7.918 -1.416,15.773 -4.181,23.193l-21.089,56.591l-10.032,59.555c-1.315,7.808 -4.016,15.318 -7.975,22.176c-3.96,6.857 -9.113,12.952 -15.218,17.995l-46.559,38.465l-38.465,46.559c-5.044,6.105 -11.138,11.259 -17.995,15.218c-6.858,3.959 -14.368,6.66 -22.176,7.975l-59.555,10.032l-56.591,21.089c-7.42,2.766 -15.275,4.182 -23.193,4.182c-7.918,0 -15.773,-1.416 -23.193,-4.182l-56.591,-21.089l-59.555,-10.032c-7.808,-1.315 -15.318,-4.016 -22.176,-7.975c-6.857,-3.959 -12.952,-9.113 -17.995,-15.218l-38.465,-46.559l-46.559,-38.465c-6.105,-5.043 -11.259,-11.138 -15.218,-17.995c-3.959,-6.858 -6.66,-14.368 -7.975,-22.176l-10.032,-59.555l-21.089,-56.591c-2.766,-7.42 -4.182,-15.275 -4.182,-23.193c0,-7.918 1.416,-15.773 4.182,-23.193l21.089,-56.591l10.032,-59.555c1.315,-7.808 4.016,-15.318 7.975,-22.176c3.959,-6.857 9.113,-12.952 15.218,-17.995l46.559,-38.465l38.465,-46.559c5.043,-6.105 11.138,-11.259 17.995,-15.218c6.858,-3.959 14.368,-6.66 22.176,-7.975l59.555,-10.032l56.591,-21.089Z" style="fill:#fff"/>\n<path d="M788.138,443.529c4.433,-1.652 9.125,-2.497 13.855,-2.497c4.73,0 9.422,0.845 13.855,2.497l33.806,12.598l35.576,5.993c4.664,0.786 9.151,2.399 13.247,4.764c4.097,2.365 7.737,5.444 10.75,9.091l22.978,27.813l27.813,22.978c3.647,3.013 6.725,6.653 9.091,10.75c2.365,4.096 3.978,8.583 4.764,13.247l5.992,35.576l12.599,33.806c1.652,4.433 2.497,9.125 2.497,13.855c0,4.73 -0.845,9.422 -2.497,13.855l-12.599,33.806l-5.992,35.576c-0.786,4.664 -2.399,9.151 -4.764,13.247c-2.366,4.097 -5.444,7.737 -9.091,10.75l-27.813,22.978l-22.978,27.813c-3.013,3.647 -6.653,6.726 -10.75,9.091c-4.096,2.365 -8.583,3.978 -13.247,4.764l-35.576,5.993l-33.806,12.598c-4.433,1.652 -9.125,2.497 -13.855,2.497c-4.73,0 -9.422,-0.845 -13.855,-2.497l-33.806,-12.598l-35.576,-5.993c-4.664,-0.786 -9.151,-2.399 -13.247,-4.764c-4.097,-2.365 -7.737,-5.444 -10.75,-9.091l-22.978,-27.813l-27.813,-22.978c-3.647,-3.013 -6.726,-6.653 -9.091,-10.75c-2.365,-4.096 -3.978,-8.583 -4.764,-13.247l-5.993,-35.576l-12.598,-33.806c-1.652,-4.433 -2.498,-9.125 -2.498,-13.855c0,-4.73 0.846,-9.422 2.498,-13.855l12.598,-33.806l5.993,-35.576c0.786,-4.664 2.399,-9.151 4.764,-13.247c2.365,-4.097 5.444,-7.737 9.091,-10.75l27.813,-22.978l22.978,-27.813c3.013,-3.647 6.653,-6.726 10.75,-9.091c4.096,-2.365 8.583,-3.978 13.247,-4.764l35.576,-5.993l33.806,-12.598Z" style="fill:#f54f4f"/>\n<path d="M810.884,1021.55l28.771,0l-23.276,16.912l8.89,27.363l-23.276,-16.912l-23.277,16.912l8.891,-27.363l-23.276,-16.912l28.771,0l8.891,-27.363l8.891,27.363ZM615.282,973.903l24.917,14.386l-28.614,3.008l-5.982,28.142l-11.702,-26.284l-28.614,3.008l21.381,-19.252l-11.702,-26.284l24.917,14.386l21.381,-19.252l-5.982,28.142ZM1004.1,965.013l24.917,-14.386l-11.703,26.284l21.382,19.252l-28.614,-3.008l-11.702,26.284l-5.982,-28.142l-28.614,-3.008l24.917,-14.386l-5.982,-28.142l21.381,19.252ZM1160.56,823.137l28.143,5.982l-26.284,11.702l3.007,28.614l-19.252,-21.381l-26.283,11.702l14.385,-24.917l-19.252,-21.381l28.143,5.982l14.386,-24.917l3.007,28.614ZM460.819,819.44l28.142,-5.982l-19.251,21.381l14.385,24.917l-26.284,-11.702l-19.251,21.381l3.007,-28.614l-26.284,-11.702l28.143,-5.982l3.007,-28.614l14.386,24.917ZM413.172,623.839l27.363,8.89l-27.363,8.891l0,28.772l-16.911,-23.277l-27.363,8.891l16.911,-23.277l-16.911,-23.276l27.363,8.891l16.911,-23.277l0,28.772ZM1207.73,618.344l27.363,-8.891l-16.911,23.276l16.911,23.277l-27.363,-8.891l-16.911,23.277l0,-28.772l-27.363,-8.891l27.363,-8.89l0,-28.772l16.911,23.277ZM457.811,417.405l26.284,-11.702l-14.385,24.916l19.251,21.382l-28.142,-5.982l-14.386,24.916l-3.007,-28.613l-28.143,-5.982l26.284,-11.703l-3.007,-28.613l19.251,21.381ZM1162.42,424.637l26.284,11.703l-28.143,5.982l-3.007,28.613l-14.386,-24.916l-28.143,5.982l19.252,-21.382l-14.385,-24.916l26.283,11.702l19.252,-21.381l-3.007,28.613ZM611.585,274.162l28.614,3.008l-24.917,14.385l5.982,28.143l-21.381,-19.252l-24.917,14.386l11.702,-26.284l-21.381,-19.252l28.614,3.007l11.702,-26.283l5.982,28.142ZM1010.09,272.303l28.614,-3.007l-21.382,19.252l11.703,26.284l-24.917,-14.386l-21.381,19.252l5.982,-28.143l-24.917,-14.385l28.614,-3.008l5.982,-28.142l11.702,26.283ZM816.379,226.997l23.276,16.912l-28.771,0l-8.891,27.363l-8.891,-27.363l-28.771,0l23.276,-16.912l-8.891,-27.363l23.277,16.911l23.276,-16.911l-8.89,27.363Z" style="fill:#fff"/>\n</g>\n</g>\n</g>\n<path class="scene--hillary__blue-bg" d="M1135,718.79l-2109.97,373.255l-2.921,1048.82l2112.89,0l0,-1422.07Z" style="fill:#0672df"/>\n<g>\n<path class="scene--hillary__trail--blue" d="M813.382,356.102l-236.203,-124.189c0,0 37.905,-0.751 45.862,15.164c7.957,15.914 20.899,-0.71 34.432,6.038c8.527,4.251 15.468,17.712 18.918,23.862c3.45,6.15 5.467,-6.897 25.815,8.079c20.349,14.976 40.07,-9.742 46.229,0.022c6.158,9.763 26.645,-2.819 37.713,14.32c11.068,17.139 -7.944,26.789 -0.412,35.601c7.532,8.811 27.646,21.103 27.646,21.103Z" style="fill:#0062c5"/>\n<path class="scene--hillary__trail--red" d="M782.897,86.6l170.241,205.507c0,0 8.556,-24.089 -8.658,-28.593c-17.213,-4.503 -3.13,-24.156 -14.895,-40.096c-5.659,-7.666 -19.539,-0.952 -26.269,-3.059c-6.729,-2.108 0.515,-31.17 -18.337,-47.991c-18.851,-16.821 -12.21,-3.669 -23.034,-7.681c-10.824,-4.012 6.078,1.751 -12.975,-5.544c-19.054,-7.295 -7.575,-31.527 -26.408,-40.076c-10.556,-4.791 -39.665,-32.467 -39.665,-32.467Z" style="fill:#e88787"/>\n<path class="scene--hillary__trail--white" d="M555.393,54.526l255.93,225.217c0,0 6.709,-92.99 -57.481,-108.851c-17.274,-4.268 -33.905,-20.849 -43.429,-20.548c-9.524,0.301 -27.856,5.558 -34.838,4.576c-6.983,-0.982 15.858,-18.893 -5.483,-32.416c-21.342,-13.523 -28.116,-6.034 -39.449,-8.228c-11.333,-2.194 14.007,-9.712 -5.98,-13.803c-19.988,-4.091 -28.626,-24.029 -39.57,-27.848c-10.945,-3.82 -29.7,-18.099 -29.7,-18.099Z" style="fill:#f1f3f3"/>\n<g class="scene--hillary__fighter--blue">\n<path d="M519.394,187.368c-0.656,0.18 -1.052,0.273 -1.135,0.263c-0.944,-0.125 -15.335,-4.243 -15.335,-4.243c0,0 -11.248,2.877 -11.837,2.577c-10.694,-5.44 -28.566,-5.103 -28.803,-4.986c-0.237,0.117 0.512,2.84 3.153,5.518c2.64,2.677 16.428,8.564 16.836,9.394c0.408,0.83 -0.291,7.799 0.827,8.575c1.117,0.775 11.833,6.405 12.241,7.235c0.117,0.237 0.09,3.09 -0.001,7.079c-5.161,-1.455 -10.259,-0.438 -10.259,-0.438c0,0 0.99,4.503 7.754,6.989c0.544,0.199 1.345,0.481 2.309,0.813c-0.27,9.356 -0.619,19.948 -0.46,20.773c0.285,1.479 3.885,2.213 5.483,1.869c1.598,-0.343 5.387,-1.321 8.295,-3.192c2.909,-1.871 21.85,-14.859 21.484,-13.207c-0.366,1.652 -1.012,9.625 -0.369,10.635c0.643,1.009 5.237,3.168 6.423,2.585c1.186,-0.583 7.242,-4.736 9.379,-6.081c2.137,-1.344 2.777,-8.431 2.614,-10.56c-0.162,-2.128 -1.103,-2.844 -2.518,-3.326c-1.415,-0.483 2.316,-1.58 2.794,-2.404c0.479,-0.824 -0.512,-2.84 0.256,-2.776c0.768,0.065 2.89,0.789 4.367,0.799c1.478,0.01 2.726,-1.045 2.081,-1.759c-0.645,-0.713 -6.203,-0.338 -3.712,-1.562c2.49,-1.223 3.803,-3.046 3.755,-4.642c-0.048,-1.596 3.776,0.794 4.958,0.802c1.182,0.009 12.8,-5.111 15.347,-5.921c2.547,-0.81 5.492,-7.999 5.683,-10.007c0.191,-2.008 -4.761,-3.697 -6.301,-3.234c-1.539,0.462 -16.411,6.15 -15.818,5.859c0.593,-0.292 2.539,-8.315 5.755,-11.957c3.217,-3.641 6.116,-12.722 5.415,-13.85c-0.701,-1.127 -3.766,-2.271 -6.076,-1.578c-1.585,0.475 -22.074,7.052 -35.085,11.093c-5.935,-1.612 -11.367,-0.66 -11.367,-0.66c0,0 0.373,1.545 1.867,3.525Z" style="fill:#2d365a"/>\n<path d="M517.968,239.671c-1.828,-0.623 -4.472,-2.71 -4.468,-3.301c0.004,-0.59 3.651,1.443 5.069,1.927c0.235,0.08 -0.011,1.575 -0.601,1.374ZM563.89,190.507c-1.828,-0.623 -4.472,-2.71 -4.468,-3.301c0.004,-0.59 3.651,1.443 5.069,1.927c0.235,0.08 -0.011,1.575 -0.601,1.374ZM538.979,192.344c0,0 -3.303,-1.782 -7.54,-3.558c-8.406,-3.526 -13.912,-4.943 -13.912,-4.943c0,0 7.684,-1.347 14.761,1.876c1.846,0.84 4.512,2.077 7.277,3.367c5.82,2.716 2.975,2.384 -0.586,3.258ZM498.205,209.838c-0.182,-0.82 -10.317,-6.314 -12.592,-6.301c-2.275,0.014 -2.755,0.986 -2.755,0.986c0,0 10.985,6.475 12.145,6.889c1.16,0.413 3.264,-1.293 3.202,-1.574ZM517.195,197.748c0,0 -0.171,-3.744 -0.323,-4.651c-0.151,-0.907 -9.372,-10.123 -13.748,-5.808c-0.794,0.783 -1.272,1.607 -1.272,1.607l1.116,3.868c0,0 4.139,-0.365 7.592,1.668c3.452,2.033 6.635,3.316 6.635,3.316ZM491.763,195.129c1.237,0.603 -0.298,-8.196 -0.411,-9.024c-0.112,-0.828 -10.579,-5.057 -14.032,-4.589c-0.552,0.075 -13.133,-1.641 -15.045,-0.533c-0.071,0.041 9.914,1.877 15.328,5.105c5.415,3.229 13.257,8.602 14.16,9.041Z" style="fill:#697190"/>\n</g>\n<g class="scene--hillary__fighter--white">\n<path d="M528.752,10.071c-0.68,0.02 -1.087,0.017 -1.164,-0.012c-0.889,-0.345 -13.901,-7.742 -13.901,-7.742c0,0 -11.609,0.142 -12.111,-0.288c-9.108,-7.81 -26.556,-11.7 -26.814,-11.642c-0.258,0.057 -0.172,2.88 1.762,6.105c1.935,3.226 13.944,12.199 14.144,13.102c0.201,0.903 -2.122,7.51 -1.219,8.528c0.902,1.017 9.988,9.016 10.188,9.919c0.058,0.258 -0.642,3.024 -1.672,6.88c-4.672,-2.633 -9.865,-2.848 -9.865,-2.848c0,0 -0.101,4.61 5.886,8.622c0.481,0.322 1.193,0.785 2.051,1.335c-2.469,9.028 -5.308,19.239 -5.348,20.077c-0.072,1.505 3.253,3.068 4.887,3.111c1.634,0.044 5.546,-0.013 8.814,-1.145c3.268,-1.132 24.739,-9.283 23.993,-7.764c-0.745,1.519 -3.254,9.114 -2.868,10.247c0.387,1.132 4.342,4.314 5.632,4.028c1.29,-0.286 8.156,-2.894 10.549,-3.696c2.394,-0.802 4.688,-7.538 5.033,-9.645c0.344,-2.107 -0.401,-3.024 -1.662,-3.827c-1.262,-0.803 2.623,-0.988 3.282,-1.676c0.659,-0.688 0.172,-2.881 0.903,-2.637c0.731,0.244 2.623,1.448 4.056,1.806c1.433,0.359 2.895,-0.372 2.437,-1.218c-0.459,-0.845 -5.948,-1.792 -3.239,-2.394c2.709,-0.601 4.415,-2.063 4.744,-3.625c0.33,-1.562 3.483,1.663 4.629,1.95c1.147,0.287 13.645,-1.947 16.311,-2.133c2.666,-0.186 7.224,-6.477 7.884,-8.383c0.659,-1.906 -3.755,-4.716 -5.36,-4.63c-1.605,0.085 -17.399,2.104 -16.754,1.961c0.645,-0.144 4.429,-7.481 8.414,-10.261c3.985,-2.78 8.945,-10.92 8.53,-12.181c-0.416,-1.261 -3.124,-3.096 -5.532,-2.968c-1.652,0.089 -23.115,1.645 -36.711,2.502c-5.388,-2.967 -10.891,-3.323 -10.891,-3.323c0,0 -0.003,1.588 0.982,3.865Z" style="fill:#2d365a"/>\n<path d="M515.025,60.561c-1.63,-1.038 -3.707,-3.689 -3.563,-4.262c0.143,-0.573 3.208,2.264 4.471,3.068c0.21,0.134 -0.382,1.528 -0.908,1.194ZM571.251,23.621c-1.629,-1.037 -3.706,-3.689 -3.563,-4.262c0.143,-0.573 3.208,2.264 4.471,3.068c0.21,0.134 -0.382,1.529 -0.908,1.194ZM546.61,19.528c0,0 -2.789,-2.511 -6.487,-5.237c-7.337,-5.409 -12.353,-8.085 -12.353,-8.085c0,0 7.784,0.503 13.901,5.305c1.596,1.252 3.895,3.083 6.277,4.989c5.015,4.013 2.328,3.019 -1.338,3.028ZM502.86,26.907c0.016,-0.84 -8.536,-8.571 -10.75,-9.094c-2.215,-0.524 -2.91,0.308 -2.91,0.308c0,0 9.147,8.884 10.177,9.559c1.029,0.675 3.477,-0.485 3.483,-0.773ZM524.166,19.639c0,0 0.717,-3.678 0.784,-4.596c0.067,-0.917 -6.719,-12.049 -11.99,-8.887c-0.955,0.573 -1.615,1.261 -1.615,1.261l0.171,4.022c0,0 4.109,0.622 6.985,3.412c2.875,2.791 5.665,4.788 5.665,4.788ZM500.07,11.093c1.06,0.878 1.645,-8.035 1.731,-8.866c0.086,-0.831 -9.088,-7.411 -12.554,-7.77c-0.554,-0.058 -12.374,-4.694 -14.494,-4.069c-0.079,0.023 9.191,4.164 13.691,8.579c4.499,4.415 10.852,11.486 11.626,12.126Z" style="fill:#697190"/>\n</g>\n<g class="scene--hillary__fighter--red">\n<path d="M758.542,37.44c-0.675,-0.086 -1.076,-0.153 -1.148,-0.194c-0.824,-0.479 -12.521,-9.818 -12.521,-9.818c0,0 -11.489,-1.673 -11.918,-2.176c-7.777,-9.136 -24.402,-15.703 -24.666,-15.686c-0.264,0.016 -0.62,2.818 0.787,6.306c1.407,3.487 11.867,14.226 11.924,15.149c0.057,0.924 -3.269,7.087 -2.536,8.233c0.732,1.146 8.457,10.466 8.514,11.389c0.016,0.263 -1.106,2.886 -2.726,6.534c-4.203,-3.33 -9.3,-4.353 -9.3,-4.353c0,0 -0.819,4.538 4.468,9.435c0.424,0.393 1.056,0.961 1.818,1.638c-3.85,8.533 -8.248,18.174 -8.419,18.997c-0.306,1.475 2.734,3.538 4.341,3.835c1.607,0.298 5.481,0.853 8.886,0.246c3.404,-0.608 25.885,-5.306 24.911,-3.922c-0.974,1.384 -4.638,8.494 -4.433,9.673c0.205,1.179 3.615,4.94 4.934,4.858c1.319,-0.081 8.507,-1.584 10.997,-2.003c2.489,-0.419 5.807,-6.713 6.476,-8.741c0.669,-2.027 0.076,-3.049 -1.044,-4.039c-1.12,-0.99 2.745,-0.567 3.504,-1.143c0.759,-0.577 0.62,-2.819 1.304,-2.464c0.684,0.355 2.364,1.84 3.724,2.418c1.36,0.578 2.918,0.084 2.597,-0.823c-0.321,-0.906 -5.595,-2.699 -2.825,-2.87c2.769,-0.171 4.682,-1.348 5.252,-2.84c0.57,-1.491 3.18,2.187 4.268,2.649c1.088,0.462 13.781,0.208 16.443,0.44c2.662,0.233 8.148,-5.269 9.097,-7.049c0.949,-1.779 -2.972,-5.244 -4.571,-5.41c-1.599,-0.166 -17.515,-0.639 -16.855,-0.68c0.659,-0.04 5.543,-6.697 9.913,-8.82c4.37,-2.124 10.541,-9.389 10.328,-10.7c-0.214,-1.311 -2.602,-3.546 -5.001,-3.795c-1.645,-0.171 -23.088,-1.985 -36.651,-3.262c-4.859,-3.772 -10.238,-4.984 -10.238,-4.984c0,0 -0.251,1.569 0.366,3.972Z" style="fill:#2d365a"/>\n<path d="M737.099,85.167c-1.448,-1.28 -3.086,-4.223 -2.854,-4.767c0.231,-0.543 2.815,2.737 3.937,3.729c0.187,0.165 -0.617,1.45 -1.083,1.038ZM798.404,57.461c-1.448,-1.28 -3.085,-4.223 -2.854,-4.767c0.231,-0.543 2.815,2.737 3.937,3.729c0.187,0.165 -0.617,1.45 -1.083,1.038ZM774.704,49.569c0,0 -2.363,-2.915 -5.589,-6.185c-6.403,-6.489 -10.939,-9.916 -10.939,-9.916c0,0 7.61,1.714 12.902,7.411c1.381,1.487 3.365,3.654 5.421,5.909c4.326,4.747 1.828,3.345 -1.795,2.781ZM730.338,50.026c0.147,-0.827 -7.092,-9.799 -9.198,-10.662c-2.105,-0.863 -2.922,-0.15 -2.922,-0.15c0,0 7.647,10.204 8.559,11.032c0.912,0.827 3.51,0.063 3.561,-0.22ZM752.518,46.174c0,0 1.283,-3.521 1.492,-4.417c0.209,-0.895 -4.755,-12.95 -10.455,-10.651c-1.033,0.417 -1.792,0.994 -1.792,0.994l-0.459,4c0,0 3.961,1.255 6.366,4.46c2.404,3.206 4.848,5.614 4.848,5.614ZM730.052,33.97c0.91,1.032 2.879,-7.679 3.094,-8.487c0.215,-0.808 -7.818,-8.739 -11.186,-9.635c-0.539,-0.143 -11.49,-6.569 -13.681,-6.282c-0.081,0.01 8.428,5.547 12.183,10.611c3.755,5.063 8.926,13.04 9.59,13.793Z" style="fill:#697190"/>\n</g>\n</g>\n<g class="scene--hillary__tree">\n<path d="M146.598,902.814c-20.152,4.03 -15.45,-30.9 -15.45,-63.143c0,-32.243 -6.717,-98.073 -10.747,-143.751c-0.187,-2.11 -9.178,-10.061 -21.797,-9.077c-14.179,1.106 -26.543,-18.578 -28.51,-44.035c-0.488,-6.309 -13.823,-30.974 -11.212,-75.176c0.219,-3.708 2.584,0.074 10.963,27.48c5.71,18.675 16.731,61.993 21.907,67.852c6.781,7.674 25.092,15.782 29.233,6.388c5.325,-12.078 -4.438,-43.875 -4.137,-45.334c2.01,-9.727 -0.567,-53.323 4.123,-67.841c6.966,-21.56 21.86,-12.187 26.065,-1.191c1.932,5.052 3.647,75.263 3.271,82.863c-0.955,19.307 7.277,21.299 7.558,37.306c0.162,9.246 -4.341,17.564 -3.912,21.674c0.225,2.155 21.672,1.052 35.573,-19.219c8.004,-11.672 -4.104,-21.468 -3.075,-38.151c0.568,-9.217 -3.615,-43.109 -0.974,-47.216c2.853,-4.436 2.231,-2.329 9.508,0.617c1.832,0.741 -1.678,50.572 7.553,65.435c2.652,4.27 4.915,2.174 14.987,-6.527c6.799,-5.874 10.383,-34.954 11.312,-38.549c4.353,-16.838 10.363,-3.418 10.073,-0.824c-8.986,80.297 -83.192,113.674 -82.236,133.905c0.576,12.178 3.11,24.684 1.512,33.638c-1.25,7.007 3.841,10.096 1.556,27.506c-4.287,32.659 11.949,64.091 13.054,81.264c1.834,28.503 -6.046,10.076 -26.198,14.106Z" style="fill:#ce9c5a"/>\n<path d="M100.166,650.315c20.047,2.118 21.948,-7.728 37.911,0.773c15.962,8.501 35.915,6.182 38.576,-2.319c2.66,-8.501 11.307,-1.545 21.283,-2.318c9.977,-0.773 15.963,-23.958 18.623,-37.096c2.661,-13.138 13.967,2.319 21.949,6.183c7.981,3.864 -6.651,35.55 1.33,36.323c7.981,0.772 7.316,11.592 19.288,5.409c11.972,-6.182 16.628,-22.411 16.628,-30.912c0,-8.502 17.957,10.046 28.599,-1.546c10.642,-11.592 13.967,-45.531 9.312,-45.951c-4.656,-0.419 31.26,4.218 39.906,-36.741c8.646,-40.96 -32.59,-59.397 -39.241,-66.794c-6.651,-7.397 7.981,-8.17 5.986,-18.99c-1.996,-10.819 3.99,-17.774 -6.651,-26.276c-10.642,-8.501 -3.326,-36.322 -17.958,-51.006c-14.633,-14.684 13.302,-29.367 -7.316,-35.55c-20.619,-6.182 -36.581,6.956 -45.228,13.911c-8.646,6.955 -36.58,-34.004 -60.524,-34.777c-23.944,-0.773 -39.907,-57.189 -62.52,-47.142c-22.614,10.047 -48.835,22.412 -45.368,37.868c3.466,15.457 13.161,16.229 0,20.866c-13.162,4.637 -36.706,3.092 -40.031,28.595c-3.326,25.503 -9.928,22.328 -19.288,30.913c-67.837,62.215 -50.801,34.491 -35.051,138.956c1.656,10.986 -4.982,52.867 17.932,56.87c18.441,3.222 16.292,35.229 26.696,49.931c24.608,34.778 5.32,45.597 27.269,47.916c21.948,2.318 38.576,0 42.567,-12.366c3.99,-12.365 -1.996,-25.503 5.321,-24.73Z" style="fill:#45b44e"/>\n<path d="M60.924,643.491c4.444,11.375 21.002,13.779 13.827,23.826c-7.176,10.047 -12.497,13.138 -19.813,4.637c-7.316,-8.501 -21.395,-28.558 -15.297,-42.376c4.117,-9.329 15.297,-1.412 21.283,13.913ZM-7.509,438.016c-11.376,-18.692 62.211,7.358 61.42,-30.268c-0.464,-22.051 -7.888,-31.785 3.553,-44.923c11.442,-13.138 26.074,-27.822 41.371,-3.864c15.298,23.957 20.619,1.545 26.605,16.229c5.986,14.684 3.99,25.503 0,32.459c-3.991,6.955 -51.777,-3.573 -48.911,27.048c0.994,10.617 12.33,23.185 32.283,17.002c19.953,-6.182 -3.3,-22.411 28.612,-11.592c31.913,10.82 26.532,1.546 36.871,22.412c10.339,20.866 26.629,11.188 29.611,35.194c7.313,58.884 -35.664,28.197 -48.046,29.723c-32.014,3.947 -41.062,17.002 -38.402,23.958c2.661,6.955 17.318,19.385 19.966,27.467c2.648,8.083 13.315,18.108 0,33.437c-13.315,15.33 -22.626,18.696 -31.273,24.879c-8.646,6.183 -17.336,13.012 -31.969,5.926c-8.605,-4.168 -16.515,-40.678 -36.552,-31.583c-12.913,5.861 -24.806,-38.1 -42.001,-48.919c-9.58,-6.028 -21.947,-34.14 -20.143,-53.026c3.175,-33.232 33.685,-44.15 17.005,-71.559ZM166.518,617.619c9.976,3.864 21.324,3.864 12.325,13.911c-9,10.047 -12.99,13.911 -23.632,8.501c-10.642,-5.41 -11.307,-7.728 -8.646,-17.775c2.66,-10.046 9.976,-8.501 19.953,-4.637ZM252.397,524.345c33.746,19.606 18.623,38.641 10.641,42.505c-7.981,3.864 -7.981,3.091 -17.292,-11.592c-9.312,-14.684 -3.991,-37.096 6.651,-30.913ZM174.295,372.872c10.602,-5.163 21.646,3.091 16.325,23.957c-5.321,20.866 -23.211,17.002 -26.571,4.637c-3.359,-12.365 3.898,-25.503 10.246,-28.594Z" style="fill:#398c3f"/>\n</g>\n<g class="scene--hillary__whitehouse">\n<path d="M903.198,372.149l200.165,-7.795c7.438,-9.955 -0.318,-27.435 8.593,-26.485l9.389,0.624c9.092,1.274 12.068,12.879 10.589,29.291l99.826,35.856l0,107.167l-2.495,5.798l2.495,106.24c-4.771,8.68 -5.909,106.939 0,118.395l-21.015,133.978l-444.806,0l0,-458.326l111.493,-41.313l0,-26.409c-0.534,-8.323 2.123,-11.882 7.971,-10.677l9.628,0c2.487,1.291 4.504,9.16 3.49,14.537l4.677,19.119Z" style="fill:#e9e9e9"/>\n<path d="M676.506,408.434l0,-33.015c-2.134,-7.758 0.539,-12.012 10.239,-11.143l10.471,0c14.285,0.575 13.535,13.84 12.167,30.671c-0.869,10.703 16.389,17.052 16.485,13.197l103.237,-0.606c0.405,7.254 0.064,416.191 0.007,481.535c-0.005,5.665 -8.687,8.762 -8.687,8.762c-68.57,-3.462 -128.288,-0.685 -187.954,-0.64c-130.09,0.097 -241.957,2.616 -348.492,1.085c-10.629,-0.189 -14.04,-3.204 -15.144,-7.122c-1.204,-8.879 -1.863,-17.188 1.291,-21.503l9.505,-5.619l17.421,-2.166l35.621,-103.733l-21.976,-263.518c-6.747,0.116 -19.243,-41.729 -13.2,-40.451l20.938,-43.631l358.071,-2.103Z" style="fill:#e9e9e9"/>\n<path d="M861.494,878.336c-59.38,-28.446 -124.114,-53.301 -96.827,-139.862l6.64,-3.922c0,0 4.858,-6.105 4.994,-11.895c0.991,-42.253 4.801,-217.887 -0.219,-223.157c-0.678,-0.713 -4.115,-0.186 -5.254,0.403c-15.263,7.898 -21.827,-7.397 -21.348,-16.982c0.405,-8.112 -3.775,-10.575 -3.775,-10.575l-7.107,-4.145c-5.908,-2.904 -10.786,-13.78 -8.54,-19.289l3.43,-24.226c0,0 10.382,-13.392 39.875,-28.408c-4.994,-8.321 6.426,-15.363 10.831,-15.777c3.114,-0.293 10.982,-0.392 10.494,6.156c9.091,-3.635 19.384,-7.221 30.999,-10.596c0.765,-6.588 4.316,-12.762 19.573,-15.68c5.858,-1.12 12.139,0.258 19.26,6.37c17.166,-3.335 36.387,-6.139 57.87,-8.136c0.198,-6.57 2.932,-10.702 18.934,-10.735c10.573,-0.021 21.312,2.086 19.916,8.163c10.596,-0.435 21.65,-0.685 33.181,-0.725l0,-174.524l7.405,0l0,174.526c10.961,0.043 21.498,0.255 31.624,0.62c2.704,-6.093 12.442,-7.414 18.932,-7.263c14.901,0.346 19.367,2.245 19.93,9.532c21.411,1.759 40.626,4.233 57.836,7.181c5.75,-4.733 4.479,-8.966 12.55,-6.497c5.351,1.637 25.862,4.874 26.393,14.714c11.523,2.939 21.795,6.064 30.921,9.24c-0.864,-5.717 5.751,-4.184 11.863,-2.128c5.393,1.813 10.395,3.344 9.523,10.489c19.37,8.505 30.974,16.726 37.319,21.467c8.335,6.23 7.596,16.348 5.601,14.944l0,23.812l-4.912,10.359l-7.191,4.11c-3.538,2.635 -5.243,6.934 -4.267,13.662l0,15.605c-1.074,6.7 -4.173,10.316 -8.95,11.377c-2.589,5.133 -7.809,5.134 -13.186,-1.607c-1.325,-1.662 -7.311,-3.661 -8.046,3.293c-1.964,18.571 -0.103,61.058 0.567,103.271c0.873,54.933 -0.723,109.403 0.299,110.102c-0.424,6.563 0.653,11.551 5.029,13.072c6.271,-1.004 10.453,1.362 8.099,14.275l0,114.115c0.139,10.382 -52.632,18.572 -59.353,19.547l-26.985,-3.795c-11.095,-0.781 -15.297,-3.954 -13.787,-9.11l0.389,-44.29c0,-13.027 -10.966,-27.501 -23.993,-27.501c-13.028,0 -25.163,12.915 -25.163,25.942l1.091,38.133c-1.603,8.823 -3.804,16.811 -12.051,16.345l-44.125,0c-3.814,-1.869 -5.367,-7.174 -5.047,-15.327l0.55,-36.812c0,-13.028 -11.356,-28.281 -24.383,-28.281c-13.028,0 -23.604,10.576 -23.604,23.604l0,48.187c-0.805,4.817 -4.011,7.819 -10.115,8.629l-44.352,0c-11.434,0.381 -13.332,-3.236 -12.182,-8.13l-0.338,-53.363c0,-13.028 -10.187,-18.927 -23.214,-18.927c-13.028,0 -22.045,11.356 -22.045,24.383l-1.559,56.037ZM842.35,635.554c1.366,-9.194 -3.135,-17.74 -11.492,-16.356c-11.155,1.848 -21.935,0.898 -23.385,16.761l0,83.761c-1.417,12.133 2.348,18.531 12.366,18.005l0.609,19.67c-0.903,17.18 10.903,15.085 7.357,-0.051l0,-19.76c0,0 11.483,-1.931 11.504,-18.772c0.021,-16.658 -2.09,-48.743 3.041,-83.258ZM1165.72,618.738c-10.676,-0.508 -13.395,7.547 -10.224,11.895l0,81.349c-2.62,14.927 -0.994,23.958 6.236,25.203c1.636,0.282 5.341,0.165 5.786,8.982l0.662,13.294c-1.02,8.768 -0.933,8.476 3.521,8.758c5.449,0.345 5.662,-1.561 5.316,-6.654l0,-16.409c-0.712,-10.871 12.348,-10.508 12.912,-25.623c0.953,-25.543 -0.336,-49.895 0.182,-89.605c0.117,-8.975 -14.307,-10.709 -24.391,-11.19ZM930.499,624.768c0,0 -0.67,-15.893 -5.854,-15.658c-9.452,0.428 -23.977,8.913 -33.334,2.919c-10.86,-6.956 -21.757,14.978 -16.538,24.052l0,95.332l13.568,5.4l0.678,20.554c1.408,10.606 4.683,19.502 26.868,11.073l0.389,-11.9c-0.911,-19.317 4.416,-26.701 14.223,-25.515l0,-106.257ZM1031.72,609.034c-11.895,-0.188 -20.754,0.49 -34.436,0.49c-6.244,0 -14.092,4.291 -18.156,0.067c-5.59,-5.81 -16.315,3.644 -16.336,13.587c-0.117,55.876 2.148,107.067 2.148,107.067c6.294,-0.851 13.484,5.899 11.591,18.702c-2.513,16.997 1.634,19.23 13.434,21.478c11.086,2.112 29.749,0.293 31.151,-6.662l0.545,-13.174c0.301,-12.207 4.986,-17.782 11.663,-20.344c0,0 5.552,-1.405 5.707,-15.76c0.214,-19.686 1.485,-105.311 -7.311,-105.451ZM1083.53,611.202c-8.276,-3.977 -19.139,15.041 -16.634,18.191l0,88.5c-2.028,10.356 0.287,16.128 7.846,16.369c5.072,0.972 7.398,4.741 5.709,12.595c-1.488,20.015 5.676,27.616 22.342,21.583c8.891,2.951 12.921,0.162 11.084,-9.557l0,-10.496c-1.721,-5.265 -0.683,-10.189 5.809,-14.437l5.289,-3.308c0,0 -0.181,-46.422 0.514,-105.232c0.108,-9.064 -3.137,-11.834 -5.598,-12.027c-10.639,-0.836 -24.032,3.743 -36.361,-2.181ZM1163.77,479.055c-0.647,10.461 -6.097,12.75 -6.097,12.75c-2.171,1.532 -2.811,5.384 -2.182,11.158l0,79.017c-1.893,1.132 2.106,6.51 5.422,7.083c8.189,1.414 15.095,3.873 19.961,4.204c3.94,0.268 9.673,-1.649 9.613,-6.265c-0.597,-45.658 -0.105,-85.048 -2.377,-87.502c-4.743,-5.123 -0.66,-15.63 -14.355,-18.42c-3.163,-0.644 -6.479,-1.365 -9.985,-2.025ZM835.904,484.76c-1.061,-2.432 -5.723,-6.221 -7.423,-5.903c-3.148,0.589 -6.138,1.191 -8.978,1.803c-2.209,0.476 -3.469,3.652 -3.469,5.355c0,6.584 -2.939,10.597 -5.373,12.79c-1.72,1.551 -3.188,11.795 -3.188,11.795l0,69.512c0,0 -2.213,17.117 8.712,13.531c4.134,-1.357 16.969,-3.905 22.058,-4.818c3.992,-0.716 4.789,-9.501 4.815,-14.075c0.25,-44.039 -0.289,-80.837 -2.728,-83.24c-1.931,-1.903 -3.365,-4.319 -4.426,-6.75ZM1081.72,469.47c0.372,0.589 -5.666,1.248 -5.666,1.986c0,11.692 -8.532,21.825 -8.532,21.825l-0.533,76.261c0,0 -2.176,11.886 12.977,13.275c14.367,1.316 35.275,1.791 39.348,1.947c4.693,0.179 8.281,-2.85 8.073,-8.741c-1.534,-43.306 6.179,-82.027 -2.41,-84.513c-7.972,-2.308 -6.474,-17.742 -6.474,-17.742c0,0 -19.176,-3.356 -36.783,-4.298ZM930.499,483.927c0,0 -6.879,-1.892 -8.69,-4.568c-2.871,-4.245 -1.972,-9.99 -8.756,-9.709c-8.023,0.332 -15.603,0.864 -22.769,1.462c-4.593,0.383 -7.365,5.349 -7.365,8.072c0,11.571 -8.146,13.869 -8.146,13.869l0,78.938c-2.059,0.852 1.593,12.869 9.802,12.637c9.784,-0.277 20.723,-2.285 30.064,-2.105c12.365,0.238 20.833,-14.582 15.86,-17.192l0,-81.404ZM1033.33,485.486c-5.591,-5.712 -2.664,-18.72 -16.417,-17.82c-6.442,0.422 -13.105,-0.108 -19.955,-0.108c-6.74,0 -13.282,0.081 -19.635,0.099c-7.685,0.021 1.721,12.171 -12.377,14.711c-3.285,0.592 -2.797,38.293 -2.748,82.108c0.026,22.528 9.318,17.31 14.079,17.275c6.988,-0.051 14.205,-0.076 21.66,-0.076c8.903,0 17.508,-0.492 25.762,0.088c15.082,1.061 9.425,-20.309 9.981,-41.67c0.672,-25.83 0.948,-53.28 -0.35,-54.607ZM790.752,438.902c0,0 60.215,-35.067 206.356,-35.067c159.673,0 209.063,28.411 209.063,28.411l-0.676,-18.944c0,0 -57.509,-31.799 -207.71,-31.799c-150.201,0 -207.71,35.693 -207.71,35.693l0.677,21.706Z" style="fill:#fff"/>\n<path d="M689.624,808.194l-12.329,3.563c-5.185,-0.823 -9.566,0.64 -8.324,18.105l-2.673,26.419c-0.642,5.839 -0.816,8.577 -6.322,8.691l-353.499,-3.675c-8.389,1.84 -11.213,-2.156 -9.425,-10.987l1.336,-53.549c2.72,-13.096 5.656,-15.216 8.641,-14.77c9.29,-1.555 2.352,-22.849 2.561,-55.046c0.382,-59.165 -3.298,-154.026 -2.243,-223.533c0.076,-5.024 -1.103,-12.825 4.46,-11.356c37.936,10.017 91.334,-6.49 162.089,0.59c77.074,7.713 164.692,-1.542 223.843,-2.307c42.095,-0.544 69.967,-0.955 69.967,-0.955l0,-38.195l-33.947,11.813c-2.448,-12.252 -156.019,-7.386 -277.438,-11.718c-55.99,-1.997 -145.567,2.573 -146.085,2.635c-11.523,2.151 -24.467,-2.121 -17.626,-15.069l3.41,-27.87c0.182,-8.342 2.865,-11.153 8.05,-8.431l6.389,-6.704c8.806,-9.428 19.375,-5.823 30.244,0c-2.061,8.907 14.149,2.221 34.386,6.975c15.312,3.596 49.288,1.804 49.487,-6.975c1.276,-9.407 30.702,-8.296 30.244,0c0.906,3.794 3.748,5.775 7.915,6.516l65.036,0.167c5.849,0.719 8.059,-2.089 8.427,-6.683c0.065,-11.091 25.361,-11.424 25.687,-1.753c0.324,9.639 56.025,11.636 77.781,8.726c7.636,-1.021 8.778,-6.973 8.778,-6.973c1.701,-7.758 9.188,-9.636 20.513,-7.871c8.282,1.291 7.398,7.201 9.731,7.871c-0.17,5.619 3.999,7.455 11.136,6.704l78.162,0l0,18.084l-17.018,8.401l17.018,7.89l0,399.931l-41.03,-28.661l-37.332,0ZM473.245,853.653c-4.57,-0.532 -6.645,-1.197 -6.863,-4.769c-1.427,-3.17 -0.244,-4.854 2.124,-5.863l1.74,0.25c2.052,-0.237 2.635,-5.328 2.632,-10.012c-0.015,-31.594 -2.823,-36.285 5.824,-36.498l32.489,0.748c3.199,0.055 5.361,2.048 6.485,5.978c-1.155,11.214 0.663,19.05 0.264,33.656c-0.111,4.066 -0.503,6.453 4.319,6.377c2.177,-0.397 3.693,1.086 4.241,5.316c-0.335,3.012 -1.748,4.451 -4.241,4.318c-20.989,-0.604 -36.036,2.009 -49.014,0.499ZM407.271,853.653c5.218,1.216 6.646,-1.197 6.863,-4.769c1.427,-3.17 0.245,-4.854 -2.123,-5.863c0,0 -4.176,-0.887 -4.173,-5.571c0.015,-31.595 -0.37,-40.476 -9.016,-40.689l-29.496,0.748c-3.199,0.055 -5.361,2.048 -6.485,5.978c1.154,11.214 -0.664,19.05 -0.265,33.656c0.111,4.066 0.504,6.453 -4.319,6.377c-2.177,-0.397 -3.692,1.086 -4.24,5.316c0.334,3.012 1.748,4.451 4.24,4.318c20.989,-0.604 35.985,-0.472 49.014,0.499ZM626.725,852.456c6.118,-0.285 10.437,0 10.654,-3.572c1.427,-3.17 0.245,-4.854 -2.124,-5.863c0,0 -4.175,-0.887 -4.172,-5.571c0.015,-31.595 2.623,-40.476 -6.023,-40.689l-32.489,0.748c-3.2,0.055 -5.361,2.048 -6.486,5.978c1.155,11.214 -0.663,19.05 -0.264,33.656c0.111,4.066 0.504,6.453 -4.319,6.377c-2.177,-0.397 -3.692,1.086 -4.24,5.316c0.334,3.012 1.747,4.451 4.24,4.318c20.989,-0.604 31.795,-0.073 45.223,-0.698ZM474.635,763.233c-5.217,1.216 -6.646,-1.197 -6.863,-4.77c-1.427,-3.169 0.201,-9.307 2.569,-10.317c0,0 3.73,0.449 3.727,-4.235c-0.01,-20.869 0.155,-54.792 -0.359,-76.053c-0.243,-10.097 4.213,-9.996 7.148,-10.068l31.723,0.748c3.2,0.055 5.361,2.047 6.486,5.978c-1.155,11.214 0.663,64.483 0.264,79.089c-0.111,4.065 -0.504,6.453 4.319,6.377c2.177,-0.398 3.692,4.203 4.24,8.434c-0.334,3.012 -1.747,4.451 -4.24,4.318c-21.791,4.06 -36.594,3.07 -49.014,0.499ZM743.425,763.233c5.217,1.216 6.646,-1.197 6.863,-4.77c1.427,-3.169 -0.201,-6.189 -2.569,-7.199c0,0 -4.966,-1.799 -5.311,-13.412c-0.618,-20.86 -0.513,-38.686 0,-59.947c0.244,-10.097 0.848,-20.736 -5.205,-20.115l-33.109,-0.638c-3.199,0.055 -3.975,3.433 -5.099,7.364c1.154,11.214 -0.317,58.73 0.081,73.336c0.111,4.065 0.158,15.324 -4.665,15.248c-2.177,-0.398 -3.692,1.085 -4.24,5.316c0.334,3.012 1.747,4.451 4.24,4.318c23.102,0.237 37.532,0.336 49.014,0.499ZM361.498,763.233c-5.217,1.216 -6.646,-1.197 -6.863,-4.77c-1.427,-3.169 -0.245,-4.853 2.124,-5.862c0,0 4.175,-0.888 4.173,-5.572c-0.011,-20.869 0.154,-57.91 -0.36,-79.171c-0.243,-10.097 6.44,-9.996 9.376,-10.068l29.495,0.748c3.2,0.055 5.362,2.047 6.486,5.978c-1.155,11.214 0.663,67.6 0.264,82.207c-0.111,4.065 -0.503,6.453 4.319,6.377c2.177,-0.398 3.692,1.085 4.24,5.316c-0.334,3.012 -1.747,4.451 -4.24,4.318c-20.989,-0.605 -35.985,-0.472 -49.014,0.499ZM631.761,759.67c5.218,1.215 6.219,-6.06 3.851,-7.069c0,0 -4.175,2.23 -4.173,-2.454c0.01,-20.869 2.964,-64.146 3.477,-85.406c0.244,-10.098 -6.44,-6.879 -9.375,-6.951l-33.059,0.303c-3.2,0.055 -2.689,10.065 -3.813,13.995c1.154,11.214 0.673,51.158 1.072,65.764c0.111,4.065 0.058,15.324 -4.765,15.248c-2.177,-0.398 -3.692,1.085 -4.24,5.316c0.334,3.012 1.748,4.451 4.24,4.318c20.989,-0.605 33.756,-4.036 46.785,-3.064ZM402.932,644.502c5.414,-0.435 9.534,-0.936 7.207,-7.263c-3.902,-10.609 -8.72,-22.057 -23.381,-22.462c-15.906,-0.44 -28.159,11.17 -30.596,24.696c-0.288,1.595 3.247,5.029 3.247,5.029l43.523,0ZM632.922,644.502c0,0 3.534,-3.434 3.247,-5.029c-2.437,-13.526 -11.572,-21.127 -27.478,-20.687c-14.661,0.405 -22.597,7.844 -26.499,18.453c-2.327,6.327 1.793,6.828 7.206,7.263l43.524,0ZM694.561,643.277l-0.599,-3.945l11.885,-10.474c4.263,-6.799 14.996,-14.602 18.835,-10.012l22.201,20.536c0.371,3.094 -1.741,4.347 -5.553,4.34c-17.41,0.515 -29.475,0.582 -46.769,-0.445ZM522.279,643.277l0.599,-3.945l-18.566,-17.173c-4.263,-6.799 -8.315,-7.903 -12.154,-3.313l-22.201,20.536c-0.371,3.094 1.742,4.347 5.553,4.34c17.411,0.515 29.476,0.582 46.769,-0.445ZM747.167,596.14c5.217,1.104 6.645,-1.087 6.863,-4.331c1.427,-2.878 -0.201,-5.621 -2.569,-6.538c0,0 -4.967,-1.634 -5.311,-12.18c-0.618,-18.944 -0.513,-12.48 0,-31.788c0.244,-9.169 0.847,-18.831 -5.206,-18.267l-33.108,-0.579c-3.2,0.05 -3.976,3.118 -5.1,6.687c1.155,10.184 -0.317,27.565 0.082,40.829c0.111,3.692 0.157,13.916 -4.665,13.847c-2.177,-0.361 -3.693,0.986 -4.241,4.828c0.335,2.735 1.748,4.042 4.241,3.921c23.102,0.216 37.532,3.423 49.014,3.571ZM587.816,595.519c-5.217,1.095 -6.645,-1.078 -6.863,-4.295c-1.427,-2.854 0.201,-5.573 2.569,-6.482c0,0 4.967,-1.621 5.311,-12.078c0.618,-18.784 -0.295,-12.37 0,-31.519c0.202,-13.102 2.716,-19.247 8.769,-18.688l29.545,0c3.2,0.05 3.976,3.092 5.1,6.631c-1.155,10.098 0.317,30.424 -0.082,43.576c-0.111,3.661 -0.157,13.799 4.665,13.73c2.177,-0.357 3.693,0.978 4.241,4.787c-0.335,2.713 -1.748,4.009 -4.241,3.889c-23.102,0.213 -37.532,0.302 -49.014,0.449ZM407.934,590.55c5.218,1.02 6.646,-1.005 6.863,-4.003c1.427,-2.66 -0.2,-5.194 -2.569,-6.041c0,0 -4.966,-1.511 -5.31,-11.257c-0.619,-17.506 -0.514,-11.533 0,-29.375c0.243,-8.474 0.847,-17.403 -5.206,-16.882l-29.991,-0.535c-3.199,0.046 -3.975,2.881 -5.099,6.18c1.154,9.411 -3.435,28.354 -3.036,40.612c0.111,3.412 -2.961,9.743 -7.784,9.679c-2.177,-0.334 -0.574,4.029 -1.122,7.579c0.334,2.528 1.748,3.736 4.24,3.624c23.103,0.199 37.533,0.282 49.014,0.419ZM521.95,589.295c5.217,1.049 6.645,-4.15 6.863,-7.23c1.426,-2.732 -0.201,-5.337 -2.569,-6.207c0,0 -4.967,-1.552 -5.311,-11.564c-0.618,-17.985 -0.513,-8.731 0,-27.062c0.244,-8.706 2.184,-18.324 -9.66,-20.016l-23.755,2.123c-3.199,0.048 -9.766,-0.27 -10.89,3.118c1.155,9.669 1.465,26.571 1.864,39.164c0.111,3.506 -0.734,15.885 -5.556,15.82c-2.177,-0.343 -0.575,4.054 -1.123,7.701c0.334,2.597 1.748,3.838 4.241,3.723c23.102,0.205 34.414,0.29 45.896,0.43ZM750.968,429.034l-12.765,-5.918c-0.587,5.27 -1.458,10.318 -5.867,12.592c0.148,0.743 0.301,1.508 0.461,2.297l18.171,-8.971ZM732.336,435.708c-2.785,-14.019 -3.533,-19.734 -10.013,-15.075c-118.731,-4.978 -239.953,-3.878 -362.133,-0.445c-23.367,-0.954 -37.764,0.561 -40.533,5.278l0,4.832c-1.19,5.422 1.321,7.253 6.363,6.626l398.78,0c3.274,0.193 5.709,-0.273 7.536,-1.216Z" style="fill:#fff"/>\n<g>\n<path d="M896.243,875.218c0,0 0.459,5.845 -5.807,6.322c-19.193,1.463 -58.227,3.872 -61.228,-0.71l-86.8,-82.163l23.531,-24.771c9.042,-7.798 20.273,-7.788 24.064,-6.441l36.763,-0.574l-35.683,32.998l105.16,75.339Z" style="fill:#d1d1d1"/>\n<path d="M828.634,760.443c-0.39,6.289 -2.803,10.816 -6.601,14.137l-28.698,27.551l-6.3,-12.591c-1.222,-5.891 0.06,-9.832 3.844,-11.82l28.451,-36.909c5.386,-4.764 8.193,-3.346 9.696,1.199l-0.392,18.433Z" style="fill:#e9e9e9"/>\n<path d="M779.023,763.561c-0.459,6.289 -3.301,7.698 -7.775,11.019l-33.801,27.551l-7.42,-12.591c-1.439,-5.891 -1.866,-13.296 2.591,-15.285l35.446,-30.326c6.344,-4.764 9.651,-3.346 11.422,1.199l-0.463,18.433Z" style="fill:#e9e9e9"/>\n<path d="M787.052,789.984c-1.246,-6.835 0.129,-10.808 6.159,-5.161c25.522,19.207 46.84,37.733 95.388,60.661c3.84,1.223 7.563,5.403 8.061,13.116l0.494,16.618c2.135,9.056 -4.244,5.817 -11.198,0.319l-89.157,-58.509c-6.653,-2.923 -9.726,-7.219 -9.217,-12.887l-0.53,-14.157Z" style="fill:#fff"/>\n<path d="M727.91,782.402c-1.182,-7.404 0.123,-11.709 5.845,-5.591c24.219,20.809 44.448,40.88 90.518,65.72c3.644,1.325 7.177,5.854 7.65,14.211l2.893,18.476c-1.437,11.889 -11.648,5.956 -18.247,0l-79.755,-58.32c-6.314,-3.166 -9.785,-7.474 -9.302,-13.615l0.398,-20.881Z" style="fill:#fff"/>\n</g>\n<g>\n<path d="M896.243,875.218c0,0 0.459,5.845 -5.807,6.322c-19.193,1.463 -58.227,3.872 -61.228,-0.71l-86.8,-82.163l23.531,-24.771c9.042,-7.798 20.273,-7.788 24.064,-6.441l36.763,-0.574l-35.683,32.998l105.16,75.339Z" style="fill:#d1d1d1"/>\n<path d="M828.634,760.443c-0.39,6.289 -2.803,10.816 -6.601,14.137l-28.698,27.551l-6.3,-12.591c-1.222,-5.891 0.06,-9.832 3.844,-11.82l28.451,-36.909c5.386,-4.764 8.193,-3.346 9.696,1.199l-0.392,18.433Z" style="fill:#e9e9e9"/>\n<path d="M779.023,763.561c-0.459,6.289 -3.301,7.698 -7.775,11.019l-33.801,27.551l-7.42,-12.591c-1.439,-5.891 -1.866,-13.296 2.591,-15.285l35.446,-30.326c6.344,-4.764 9.651,-3.346 11.422,1.199l-0.463,18.433Z" style="fill:#e9e9e9"/>\n<path d="M787.052,789.984c-1.246,-6.835 0.129,-10.808 6.159,-5.161c25.522,19.207 46.84,37.733 95.388,60.661c3.84,1.223 7.563,5.403 8.061,13.116l0.494,16.618c2.135,9.056 -4.244,5.817 -11.198,0.319l-89.157,-58.509c-6.653,-2.923 -9.726,-7.219 -9.217,-12.887l-0.53,-14.157Z" style="fill:#fff"/>\n<path d="M727.91,782.402c-1.182,-7.404 0.123,-11.709 5.845,-5.591c24.219,20.809 44.448,40.88 90.518,65.72c3.644,1.325 7.177,5.854 7.65,14.211l2.893,18.476c-1.437,11.889 -11.648,5.956 -18.247,0l-79.755,-58.32c-6.314,-3.166 -9.785,-7.474 -9.302,-13.615l0.398,-20.881Z" style="fill:#fff"/>\n</g>\n</g>\n<g class="scene--hillary__bush">\n<path d="M-25.148,890.731c10.971,15.084 -1.939,-46.542 12.606,-47.512c14.544,-0.97 12.605,-2.909 19.392,-11.636c6.788,-8.726 5.818,-7.757 10.666,-18.423c4.848,-10.665 -6.787,-31.997 17.454,-32.967c24.24,-0.97 40.993,2.909 39.889,14.544c-1.104,11.636 0.576,39.755 13.795,35.877c13.22,-3.879 22.076,0 23.466,-9.696c1.39,-9.697 -8.178,-10.666 0,-24.241c8.177,-13.575 8.626,-25.211 27.794,-11.636c19.169,13.575 22.746,-13.575 22.746,-13.575c0,0 1.271,-3.878 8.058,-13.575c6.788,-9.696 -7.757,-5.299 10.666,-13.8c18.423,-8.501 4.393,-13.584 16.741,-28.011c12.348,-14.427 -8.91,-35.759 25.96,-31.881c34.87,3.879 32.405,17.454 40.753,27.15c8.348,9.696 36.386,15.402 34.644,25.639c-1.742,10.237 -29.286,9.268 0,23.812c29.286,14.545 22.499,9.697 34.134,25.211c11.636,15.514 22.302,23.271 18.423,31.998c-3.878,8.726 0.97,13.574 17.454,19.392c16.483,5.818 18.423,9.697 24.24,18.423c5.818,8.727 -0.87,-2.909 16.534,1.94c17.404,4.848 -7.807,-41.695 13.525,-28.12c21.332,13.575 30.059,10.666 31.998,34.907c1.939,24.241 6.787,23.271 -2.909,35.876c-9.696,12.606 18.423,12.606 24.241,25.211c5.818,12.605 -44.504,11.635 -66.855,14.544c-22.351,2.909 -158.026,0 -186.182,0.97c-28.156,0.97 -167.783,-6.788 -198.812,-5.818c-31.028,0.97 -40.724,-0.97 -58.178,-3.878c-17.453,-2.909 -24.24,-7.757 -15.514,-16.484c8.727,-8.727 15.514,-34.907 23.271,-24.241Z" style="fill:#53cb5d"/>\n<path d="M335.312,872.688c13.481,-12.164 20.622,9.85 10.925,18.135c-9.696,8.285 -16.032,-13.526 -10.925,-18.135ZM430.595,855.655c19.394,2.002 29.089,26.969 16.484,31.818c-12.605,4.848 -41.595,6.153 -32.918,-8.074c8.677,-14.228 12.631,-24.136 16.434,-23.744ZM28.198,838.021c5.898,-5.898 20.362,-9.696 26.18,-0.969c5.818,8.726 12.605,5.818 12.605,19.392c0,13.575 4.848,19.393 -4.848,22.302c-9.696,2.909 -22.301,-4.848 -22.301,-4.848c0,0 -5.818,0.969 -14.545,-11.636c-8.727,-12.605 -0.97,-20.362 2.909,-24.241ZM190.127,864.201c10.107,12.604 28.725,-24.109 52.921,-11.203c26.127,13.937 58.066,-11.421 48.496,-40.543c-2.868,-8.725 -3.485,-16.128 -21.908,-35.52c-18.423,-19.393 -13.575,-9.697 -29.077,-17.454c-15.502,-7.757 -11.647,-4.848 -23.077,10.666c-11.43,15.514 -30.042,7.567 -39.575,9.337c-21.757,4.038 -16.631,25.503 -32.145,17.746c-15.514,-7.757 -23.51,-2.842 -24.479,15.225c-0.97,18.068 5.817,9.083 16.483,19.457c10.666,10.374 14.545,0.292 28.788,9.988c14.243,9.696 8.107,3.015 23.573,22.301ZM303.376,812.455c-14.054,-13.657 -14.741,-33.581 0,-28.733c14.742,4.848 36.074,10.924 31.226,28.733c-4.848,17.809 -25.605,5.462 -31.226,0Z" style="fill:#45b44e"/>\n</g>\n</g>\n</svg>\n<div class="scene--hillary__bg-filler"></div>\n<button class="scene__button">{{ \'vote\' | translate }} {{ \'shortname.hillary\' | translate }}</button>\n</div>\n',
  391. o = "scene-hillary.view.html",
  392. i = l.element(window.document).injector();
  393. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  394. c.put(o, a)
  395. }]), c.exports = a
  396. },
  397. 567: function(c, e, t) {
  398. "use strict";
  399.  
  400. function l(c) {
  401. return c && c.__esModule ? c : {
  402. "default": c
  403. }
  404. }
  405. var n = t(568),
  406. a = l(n);
  407. angular.module("Vote").directive("sceneTrump", a["default"])
  408. },
  409. 568: function(c, e, t) {
  410. "use strict";
  411.  
  412. function l(c, e) {
  413. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  414. }
  415. Object.defineProperty(e, "__esModule", {
  416. value: !0
  417. });
  418. var n = function() {
  419. function c(c, e) {
  420. for (var t = 0; t < e.length; t++) {
  421. var l = e[t];
  422. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  423. }
  424. }
  425. return function(e, t, l) {
  426. return t && c(e.prototype, t), l && c(e, l), e
  427. }
  428. }(),
  429. a = function() {
  430. function c(e, n, a) {
  431. l(this, c), this.restrict = "E", this.template = t(569), this.scope = {
  432. openModalFn: "&"
  433. }, this.$window = e, this.$rootScope = n, this.$timeout = a, this.link = this.link.bind(this), this.openDialog = this.openDialog.bind(this)
  434. }
  435. return n(c, [{
  436. key: "link",
  437. value: function(c, e, t) {
  438. var l = this;
  439. this.scope = c, this.scene = e, this.trump = this.scene.find(".scene--trump__trump"), this.button = this.scene.find(".scene__button"), this.flag = this.scene.find(".scene--trump__flag"), this.redBg = this.scene.find(".scene--trump__red-bg, .scene--trump__bg-filler"), this.whitehouse = this.scene.find(".scene--trump__whitehouse"), this.eagle = this.scene.find(".scene--trump__eagle"), this.wall = this.scene.find(".scene--trump__wall > g"), this.timelineFlag = new TimelineMax({
  440. paused: !0,
  441. repeat: -1,
  442. yoyo: !0
  443. }), this.timelineFlag.fromTo(this.flag, 40, {
  444. x: "-40%",
  445. y: "-40%",
  446. ease: Power1.easeOut
  447. }, {
  448. x: "-4%",
  449. y: "-4%",
  450. ease: Power1.easeOut
  451. }), this.timelineEagle = new TimelineMax({
  452. paused: !0,
  453. repeat: -1,
  454. yoyo: !1
  455. }), this.timelineEagle.to(this.eagle, 5, {
  456. bezier: [{
  457. x: 25,
  458. y: 25
  459. }, {
  460. x: 0,
  461. y: 50
  462. }, {
  463. x: -25,
  464. y: 25
  465. }, {
  466. x: 0,
  467. y: 0
  468. }],
  469. ease: RoughEase.ease.config({
  470. template: Power0.easeNone,
  471. strength: 1,
  472. points: 1,
  473. taper: "none",
  474. randomize: !0,
  475. clamp: !0
  476. })
  477. }), this.timelineButton = new TimelineMax({
  478. paused: !0,
  479. repeat: 0
  480. }), this.timelineButton.to(this.button, .2, {
  481. y: -100,
  482. opacity: 1,
  483. ease: Back.easeOut
  484. }, .3).addLabel("mouseover").to(this.button, .4, {
  485. y: 150,
  486. opacity: 0,
  487. ease: Back.easeIn
  488. }, .5), this.timelineFull = new TimelineMax({
  489. paused: !0,
  490. repeat: 0
  491. }), this.timelineFull.to(this.trump, .2, {
  492. backgroundPosition: "-2688px 0px",
  493. ease: SteppedEase.config(3)
  494. }).addLabel("mouseover").to(this.trump, .2, {
  495. backgroundPosition: "-4480px 0px",
  496. ease: SteppedEase.config(2),
  497. onStart: function() {
  498. l.openDialog()
  499. }
  500. }).to(this.trump, 1, {
  501. y: 40,
  502. marginLeft: "-425px",
  503. scale: .8,
  504. force3D: !1,
  505. ease: Power4.easeOut
  506. }).from(this.whitehouse, 1, {
  507. scale: 4,
  508. opacity: 0,
  509. transformOrigin: "center center",
  510. ease: Power4.easeOut
  511. }, "-=1").from(this.redBg, .6, {
  512. opacity: 0,
  513. ease: Power4.easeOut
  514. }, "-=.6").from(this.flag, .4, {
  515. opacity: 0,
  516. onStart: function() {
  517. l.timelineFlag.play()
  518. }
  519. }).staggerFrom(this.wall, .3, {
  520. opacity: 0,
  521. y: -200
  522. }, .2).from(this.eagle, 1, {
  523. opacity: 0,
  524. scale: .5,
  525. x: -500,
  526. y: -200,
  527. ease: Power1.easeOut,
  528. onComplete: function() {
  529. l.timelineEagle.restart().play()
  530. }
  531. }, "-=1.2").addPause("end"), this.bindUiEvents()
  532. }
  533. }, {
  534. key: "bindUiEvents",
  535. value: function() {
  536. var c = this;
  537. this.scene.on("mouseenter mouseover touchstart", function() {
  538. c.scope.candidateChosen || (c.timelineFull.timeScale(1).tweenTo("mouseover"), c.timelineButton.tweenTo("mouseover"))
  539. }), this.scene.on("mouseout", function() {
  540. c.scope.candidateChosen || (c.timelineFull.reverse(), c.timelineButton.reverse())
  541. }), this.button.on("click touchend", function() {
  542. c.scope.candidateChosen || (c.timelineButton.reverse(), c.timelineFull.timeScale(1).tweenTo("end"), c.$rootScope.$emit("candidateChosen", "R"), c.$window.ga("send", "event", "candidate", "Trump"))
  543. }), this.$rootScope.$on("close-modal", function(e) {
  544. c.$timeout(function() {
  545. c.timelineFull.timeScale(2).reverse()
  546. }, 500), c.$timeout(function() {
  547. c.timelineFlag.stop(), c.$rootScope.$emit("candidateChosen", !1)
  548. }, 2500)
  549. }), this.$rootScope.$on("candidateChosen", function(e, t) {
  550. c.scope.candidateChosen = t, "D" === t && (c.timelineFull.timeScale(2).reverse(), c.timelineButton.reverse())
  551. }), this.scope.$on("$destroy", function() {
  552. c.timelineFull.kill(), c.timelineFlag.kill(), c.timelineButton.kill()
  553. })
  554. }
  555. }, {
  556. key: "openDialog",
  557. value: function() {
  558. var c = this;
  559. this.$timeout(function() {
  560. c.scope.openModalFn({
  561. p: "R"
  562. })
  563. }, 500)
  564. }
  565. }]), c
  566. }();
  567. e["default"] = function(c, e, t) {
  568. return new a(c, e, t)
  569. }, e["default"].$inject = ["$window", "$rootScope", "$timeout"]
  570. },
  571. 569: function(c, e) {
  572. var t, l = window.angular;
  573. try {
  574. t = l.module(["ng"])
  575. } catch (n) {
  576. t = l.module("ng", [])
  577. }
  578. var a = '<div class="scene scene--trump">\n<div class="scene--trump__trump"></div>\n<svg class="scene--trump__background" viewBox="0 0 1000 1000" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421">\n<g>\n<g class="scene--trump__flag">\n<g>\n<g opacity="0.3">\n<path d="M3681.52,3179.71l-349.184,349.183l-3458.32,-3458.32l349.184,-349.183l3458.32,3458.32Z" style="fill:#4474be"/>\n<path d="M3389.65,3471.58l-686.584,686.584l-3458.32,-3458.32l686.584,-686.584l3458.32,3458.32Z" style="fill:#fff"/>\n<path d="M238.696,-36.824l40.968,40.968l-57.224,-9.064l-26.302,51.622l-9.064,-57.223l-57.223,-9.063l51.622,-26.303l-9.063,-57.224l40.967,40.968l51.622,-26.303l-26.303,51.622ZM700.043,424.523l40.967,40.967l-57.223,-9.063l-26.303,51.622l-9.063,-57.224l-57.224,-9.063l51.622,-26.303l-9.063,-57.223l40.968,40.967l51.621,-26.302l-26.302,51.622ZM469.37,193.849l40.967,40.968l-57.223,-9.064l-26.303,51.622l-9.063,-57.223l-57.224,-9.063l51.622,-26.303l-9.063,-57.223l40.967,40.967l51.622,-26.303l-26.302,51.622ZM930.716,655.196l40.967,40.967l-57.223,-9.063l-26.303,51.622l-9.063,-57.223l-57.223,-9.064l51.622,-26.302l-9.064,-57.224l40.968,40.968l51.622,-26.303l-26.303,51.622ZM1161.39,885.869l40.968,40.967l-57.224,-9.063l-26.302,51.622l-9.064,-57.223l-57.223,-9.064l51.622,-26.302l-9.063,-57.224l40.967,40.968l51.622,-26.303l-26.303,51.622ZM1853.35,1577.83l40.967,40.967l-57.223,-9.063l-26.303,51.622l-9.063,-57.224l-57.224,-9.063l51.622,-26.303l-9.063,-57.223l40.968,40.967l51.621,-26.302l-26.302,51.622ZM1392.06,1116.54l40.968,40.968l-57.223,-9.064l-26.303,51.622l-0.021,-0.133l-0.038,0.074l-9.056,-57.172l-57.172,-9.055l0.075,-0.038l-0.134,-0.021l51.622,-26.303l-9.063,-57.224l40.967,40.968l51.622,-26.303l-0.062,0.121l0.121,-0.062l-26.303,51.622ZM2314.7,2039.18l40.968,40.967l-57.224,-9.063l-26.302,51.622l-0.092,-0.58l-0.165,0.324l-9.028,-57.002l-57.002,-9.029l0.323,-0.164l-0.58,-0.092l51.622,-26.303l-9.063,-57.223l40.967,40.967l51.622,-26.302l-0.266,0.523l0.523,-0.267l-26.303,51.622ZM1622.68,1347.16l40.967,40.968l-57.223,-9.064l-26.303,51.622l-9.063,-57.223l-57.224,-9.063l51.622,-26.303l-9.063,-57.223l40.967,40.967l51.622,-26.303l-26.302,51.622ZM2084.02,1808.5l40.967,40.967l-57.223,-9.063l-26.303,51.622l-9.063,-57.223l-57.223,-9.064l51.622,-26.302l-9.064,-57.224l40.968,40.968l51.622,-26.303l-26.303,51.622ZM2545.37,2269.85l40.968,40.968l-57.223,-9.064l-26.303,51.622l-0.092,-0.579l-0.165,0.323l-9.028,-57.002l-57.002,-9.028l0.323,-0.165l-0.579,-0.092l51.622,-26.303l-9.064,-57.223l40.968,40.968l51.622,-26.303l-0.267,0.523l0.523,-0.267l-26.303,51.622ZM2775.79,2500.27l40.968,40.967l-57.224,-9.063l-26.302,51.622l-9.064,-57.223l-57.223,-9.064l51.622,-26.302l-9.063,-57.224l40.967,40.968l51.622,-26.303l-26.303,51.622ZM3006.46,2730.94l40.968,40.968l-57.224,-9.064l-26.302,51.622l-9.064,-57.223l-57.223,-9.063l51.622,-26.303l-9.063,-57.223l40.967,40.967l51.622,-26.303l-26.303,51.622ZM3237.13,2961.61l40.967,40.968l-57.223,-9.063l-26.303,51.622l-9.063,-57.224l-57.224,-9.063l51.622,-26.303l-9.063,-57.223l40.967,40.967l51.622,-26.302l-26.302,51.621ZM3493.99,3140.72l0.121,-0.061l-26.303,51.622l40.967,40.967l-57.223,-9.063l-26.303,51.622l-0.021,-0.134l-0.038,0.075l-9.055,-57.173l-57.172,-9.055l0.074,-0.038l-0.134,-0.021l51.622,-26.303l-9.063,-57.223l40.967,40.967l51.622,-26.302l-0.061,0.12Z" style="fill:#fff"/>\n<path d="M2682.8,4178.43c-7.791,-7.661 -16.11,-14.84 -25.26,-20.83c-3.757,-2.46 -7.651,-4.703 -11.648,-6.751c-2.889,-1.479 -5.831,-2.847 -8.787,-4.185c-5.629,-2.504 -11.309,-4.894 -16.949,-7.373c-4.978,-2.224 -9.923,-4.517 -14.772,-7.012c-6.133,-3.155 -12.116,-6.6 -17.908,-10.344c-16.303,-10.539 -31.006,-23.376 -44.538,-37.254c-11.524,-11.82 -22.174,-24.539 -31.129,-38.427c-2.2,-3.412 -4.292,-6.891 -6.282,-10.427c-3.299,-5.822 -6.31,-11.801 -9.104,-17.883c-2.983,-6.493 -5.713,-13.098 -8.566,-19.649c-0.731,-1.658 -1.471,-3.311 -2.225,-4.959c-1.338,-2.859 -2.715,-5.697 -4.214,-8.475l-0.261,-0.48c-1.814,-3.279 -3.775,-6.476 -5.879,-9.577c-6.246,-9.207 -13.679,-17.522 -21.5,-25.408c-8.215,-8.161 -17.023,-15.79 -26.776,-22.06c-3.507,-2.255 -7.133,-4.319 -10.843,-6.219c-3.467,-1.776 -7.007,-3.398 -10.562,-4.986c-5.102,-2.249 -10.233,-4.43 -15.332,-6.686c-4.996,-2.243 -9.958,-4.56 -14.824,-7.075c-6.142,-3.175 -12.134,-6.637 -17.938,-10.396c-16.311,-10.566 -31.033,-23.415 -44.581,-37.309c-11.523,-11.819 -22.169,-24.536 -31.126,-38.421c-4.922,-7.63 -9.299,-15.594 -13.211,-23.786c-3.764,-7.881 -7.072,-15.965 -10.571,-23.965c-0.735,-1.657 -1.48,-3.308 -2.238,-4.954c-1.111,-2.357 -2.246,-4.7 -3.463,-7.004c-1.98,-3.749 -4.146,-7.398 -6.499,-10.925c-6.697,-10.038 -14.803,-19.081 -23.373,-27.546c-8.695,-8.587 -18.029,-16.636 -28.422,-23.112c-3.491,-2.176 -7.094,-4.167 -10.778,-5.997c-7.854,-3.902 -16.011,-7.161 -24.042,-10.672c-2.166,-0.96 -2.161,-0.958 -4.32,-1.934c-4.334,-1.997 -8.634,-4.061 -12.855,-6.289c-6.214,-3.282 -12.261,-6.875 -18.107,-10.775c-14.647,-9.772 -27.968,-21.408 -40.325,-33.921c-12.467,-12.626 -23.958,-26.272 -33.471,-41.276c-4.579,-7.223 -8.675,-14.738 -12.36,-22.453c-3.764,-7.882 -7.068,-15.967 -10.57,-23.965c-0.734,-1.657 -1.48,-3.308 -2.238,-4.955c-1.234,-2.617 -2.5,-5.216 -3.869,-7.766c-1.867,-3.481 -3.898,-6.874 -6.091,-10.16c-6.698,-10.039 -14.805,-19.083 -23.376,-27.548c-8.697,-8.59 -18.034,-16.635 -28.429,-23.116c-3.72,-2.32 -7.569,-4.439 -11.511,-6.358c-7.641,-3.72 -15.525,-6.906 -23.308,-10.309c-1.439,-0.639 -2.876,-1.282 -4.311,-1.93c-3.912,-1.805 -7.8,-3.658 -11.624,-5.645c-6.17,-3.207 -12.181,-6.718 -17.996,-10.532c-15.174,-9.953 -28.935,-21.915 -41.669,-34.811c-12.467,-12.625 -23.958,-26.272 -33.472,-41.276c-4.578,-7.221 -8.672,-14.736 -12.357,-22.45c-3.764,-7.882 -7.072,-15.965 -10.57,-23.965c-0.736,-1.658 -1.481,-3.31 -2.24,-4.957c-1.235,-2.622 -2.506,-5.224 -3.875,-7.779c-1.865,-3.478 -3.895,-6.865 -6.085,-10.147c-6.698,-10.039 -14.805,-19.083 -23.376,-27.548c-8.736,-8.628 -18.116,-16.704 -28.549,-23.224c-3.529,-2.205 -7.17,-4.222 -10.892,-6.082c-7.876,-3.938 -16.061,-7.226 -24.119,-10.763c-1.439,-0.641 -2.875,-1.286 -4.309,-1.935c-4.321,-1.996 -8.608,-4.056 -12.818,-6.278c-6.199,-3.27 -12.234,-6.849 -18.067,-10.735c-13.662,-9.101 -26.169,-19.823 -37.802,-31.384l-0.001,0l-0.122,-0.122c-0.722,-0.718 -1.44,-1.44 -2.155,-2.164c-12.039,-12.194 -23.148,-25.355 -32.447,-39.77l-0.142,-0.222c-1.622,-2.502 -3.191,-5.04 -4.703,-7.612c-3.924,-6.68 -7.448,-13.581 -10.681,-20.619c-2.984,-6.494 -5.713,-13.099 -8.566,-19.65c-0.348,-0.788 -0.697,-1.575 -1.049,-2.36c-0.369,-0.808 -0.74,-1.615 -1.114,-2.421c-1.134,-2.386 -2.29,-4.76 -3.528,-7.095c-2.006,-3.781 -4.192,-7.463 -6.568,-11.024c-6.044,-9.059 -13.234,-17.309 -20.875,-25.048l-0.778,-0.784c-8.263,-8.224 -17.124,-15.914 -26.944,-22.227c-3.506,-2.254 -7.132,-4.318 -10.842,-6.219c-3.467,-1.776 -7.007,-3.397 -10.563,-4.986c-5.101,-2.248 -10.232,-4.43 -15.331,-6.686c-4.997,-2.243 -9.958,-4.56 -14.825,-7.075c-6.142,-3.174 -12.134,-6.637 -17.937,-10.396c-15.247,-9.876 -29.105,-21.746 -41.913,-34.601c-1.183,-1.179 -2.357,-2.367 -3.523,-3.562c-11.524,-11.82 -22.174,-24.539 -31.129,-38.427c-4.919,-7.629 -9.297,-15.59 -13.208,-23.78c-3.764,-7.881 -7.068,-15.966 -10.57,-23.965c-0.733,-1.654 -1.477,-3.302 -2.235,-4.946c-1.235,-2.62 -2.502,-5.222 -3.872,-7.774c-2.025,-3.774 -4.242,-7.442 -6.646,-10.985c-6.223,-9.172 -13.623,-17.459 -21.412,-25.319l-0.555,-0.55c-8.694,-8.587 -18.029,-16.637 -28.422,-23.113c-3.491,-2.175 -7.094,-4.166 -10.777,-5.996c-7.854,-3.903 -16.012,-7.161 -24.043,-10.673c-2.165,-0.959 -2.161,-0.958 -4.319,-1.933c-4.335,-1.997 -8.635,-4.061 -12.856,-6.29c-6.214,-3.281 -12.261,-6.875 -18.107,-10.775c-14.647,-9.771 -27.968,-21.407 -40.324,-33.921c-12.467,-12.625 -23.959,-26.272 -33.471,-41.276c-4.58,-7.222 -8.675,-14.737 -12.36,-22.453c-3.764,-7.881 -7.068,-15.966 -10.57,-23.965c-0.735,-1.657 -1.48,-3.308 -2.238,-4.954c-1.235,-2.617 -2.501,-5.216 -3.869,-7.766c-1.868,-3.482 -3.899,-6.874 -6.091,-10.16c-6.698,-10.039 -14.805,-19.083 -23.376,-27.548c-8.698,-8.591 -18.034,-16.635 -28.429,-23.117c-3.72,-2.319 -7.569,-4.438 -11.511,-6.357c-7.641,-3.72 -15.525,-6.906 -23.309,-10.31c-1.439,-0.638 -2.875,-1.282 -4.31,-1.929c-3.913,-1.805 -7.801,-3.658 -11.624,-5.645c-6.171,-3.207 -12.182,-6.718 -17.997,-10.532c-15.174,-9.954 -28.934,-21.915 -41.668,-34.811c-12.467,-12.625 -23.959,-26.272 -33.472,-41.276c-4.579,-7.222 -8.673,-14.736 -12.357,-22.451c-3.764,-7.881 -7.072,-15.965 -10.57,-23.965c-0.736,-1.657 -1.481,-3.309 -2.24,-4.956c-1.236,-2.622 -2.506,-5.224 -3.876,-7.779c-1.864,-3.478 -3.894,-6.865 -6.085,-10.148c-6.698,-10.038 -14.804,-19.082 -23.375,-27.547c-8.736,-8.629 -18.117,-16.704 -28.55,-23.224c-3.528,-2.205 -7.17,-4.222 -10.891,-6.083c-7.876,-3.937 -16.061,-7.225 -24.119,-10.763c-1.439,-0.64 -2.875,-1.285 -4.31,-1.935c-4.32,-1.995 -8.608,-4.056 -12.817,-6.277c-6.199,-3.271 -12.234,-6.85 -18.067,-10.736c-14.558,-9.698 -27.805,-21.236 -40.081,-33.669c-12.039,-12.194 -23.147,-25.356 -32.447,-39.771c-4.92,-7.627 -9.304,-15.583 -13.236,-23.761c-3.813,-7.931 -7.177,-16.061 -10.733,-24.107c-0.75,-1.677 -1.512,-3.348 -2.286,-5.015c-1.133,-2.387 -2.29,-4.761 -3.528,-7.095c-2.005,-3.781 -4.192,-7.464 -6.567,-11.024c-6.045,-9.059 -13.234,-17.31 -20.876,-25.048c-8.593,-8.702 -17.802,-16.906 -28.053,-23.617c-3.758,-2.46 -7.652,-4.704 -11.649,-6.751c-2.888,-1.479 -5.83,-2.847 -8.786,-4.185c-5.63,-2.505 -11.309,-4.894 -16.949,-7.374c-4.979,-2.223 -9.924,-4.517 -14.773,-7.011c-6.133,-3.155 -12.115,-6.6 -17.908,-10.344c-16.303,-10.539 -31.006,-23.376 -44.537,-37.254c-11.524,-11.82 -22.174,-24.539 -31.129,-38.427c-2.201,-3.413 -4.293,-6.891 -6.283,-10.428c-3.298,-5.822 -6.309,-11.801 -9.103,-17.882c-2.984,-6.494 -5.713,-13.099 -8.566,-19.65c-0.731,-1.658 -1.472,-3.31 -2.225,-4.958c-1.338,-2.86 -2.715,-5.697 -4.215,-8.476l-0.26,-0.48c-1.815,-3.279 -3.776,-6.475 -5.88,-9.577c-6.246,-9.206 -13.678,-17.521 -21.5,-25.407c-8.214,-8.162 -17.022,-15.791 -26.776,-22.061c-3.506,-2.254 -7.132,-4.318 -10.842,-6.219c-3.467,-1.776 -7.007,-3.397 -10.563,-4.986c-5.101,-2.248 -10.232,-4.43 -15.331,-6.686c-4.997,-2.243 -9.958,-4.56 -14.825,-7.075c-6.142,-3.174 -12.134,-6.637 -17.937,-10.396c-16.311,-10.565 -31.034,-23.414 -44.581,-37.308c-11.523,-11.819 -22.169,-24.537 -31.127,-38.422c-4.922,-7.629 -9.299,-15.594 -13.211,-23.785c-3.764,-7.882 -7.072,-15.965 -10.57,-23.965c-0.735,-1.657 -1.48,-3.309 -2.238,-4.955c-1.112,-2.356 -2.247,-4.7 -3.463,-7.004c-1.98,-3.749 -4.146,-7.397 -6.499,-10.924c-6.698,-10.038 -14.804,-19.082 -23.374,-27.546c-8.694,-8.587 -18.029,-16.637 -28.422,-23.113c-3.491,-2.175 -7.094,-4.166 -10.777,-5.996c-7.854,-3.903 -16.012,-7.161 -24.043,-10.673c-2.165,-0.959 -2.161,-0.958 -4.319,-1.933c-4.335,-1.997 -8.635,-4.061 -12.856,-6.29c-6.214,-3.281 -12.261,-6.875 -18.107,-10.775c-14.647,-9.771 -27.968,-21.407 -40.324,-33.921c-12.467,-12.625 -23.959,-26.272 -33.471,-41.276c-4.58,-7.222 -8.675,-14.737 -12.36,-22.453c-3.764,-7.881 -7.068,-15.966 -10.57,-23.965c-0.735,-1.657 -1.48,-3.308 -2.238,-4.954c-1.235,-2.617 -2.501,-5.216 -3.869,-7.766c-1.868,-3.482 -3.899,-6.874 -6.091,-10.16c-6.698,-10.039 -14.805,-19.083 -23.376,-27.548c-8.698,-8.591 -18.034,-16.635 -28.429,-23.117c-3.72,-2.319 -7.569,-4.438 -11.511,-6.357c-7.641,-3.72 -15.525,-6.906 -23.309,-10.31c-1.439,-0.638 -2.875,-1.281 -4.31,-1.929c-3.913,-1.805 -7.801,-3.658 -11.624,-5.645c-6.171,-3.207 -12.182,-6.718 -17.997,-10.532c-15.174,-9.954 -28.934,-21.915 -41.668,-34.811c-12.467,-12.625 -23.959,-26.272 -33.472,-41.276c-4.579,-7.222 -8.673,-14.736 -12.357,-22.451c-3.764,-7.881 -7.072,-15.965 -10.57,-23.965c-0.736,-1.657 -1.481,-3.309 -2.24,-4.956c-1.236,-2.622 -2.506,-5.224 -3.876,-7.779c-1.864,-3.478 -3.894,-6.865 -6.085,-10.148c-6.698,-10.038 -14.804,-19.082 -23.375,-27.547c-8.736,-8.629 -18.117,-16.704 -28.55,-23.224c-3.528,-2.205 -7.17,-4.222 -10.891,-6.083c-7.876,-3.937 -16.061,-7.225 -24.119,-10.763c-1.439,-0.64 -2.875,-1.285 -4.31,-1.935c-4.32,-1.995 -8.608,-4.056 -12.817,-6.277c-6.199,-3.271 -12.234,-6.85 -18.067,-10.736c-14.558,-9.698 -27.805,-21.236 -40.081,-33.669c-12.039,-12.194 -23.147,-25.355 -32.447,-39.771c-4.92,-7.627 -9.304,-15.583 -13.236,-23.761c-3.813,-7.931 -7.177,-16.061 -10.733,-24.107c-0.75,-1.677 -1.512,-3.348 -2.286,-5.015c-1.133,-2.387 -2.29,-4.761 -3.528,-7.095c-2.005,-3.781 -4.192,-7.464 -6.567,-11.024c-6.045,-9.059 -13.234,-17.31 -20.876,-25.048c-8.593,-8.701 -17.802,-16.906 -28.053,-23.617c-3.758,-2.46 -7.652,-4.704 -11.649,-6.751c-2.888,-1.479 -5.83,-2.847 -8.786,-4.185c-5.63,-2.505 -11.309,-4.894 -16.949,-7.374c-4.979,-2.223 -9.924,-4.517 -14.773,-7.011c-6.133,-3.155 -12.115,-6.6 -17.908,-10.344c-16.303,-10.539 -31.006,-23.376 -44.537,-37.254c-11.524,-11.82 -22.174,-24.539 -31.129,-38.427c-4.92,-7.629 -9.297,-15.59 -13.209,-23.78c-3.764,-7.882 -7.068,-15.967 -10.57,-23.965c-0.733,-1.654 -1.476,-3.303 -2.234,-4.946c-1.236,-2.62 -2.503,-5.222 -3.873,-7.775c-2.024,-3.773 -4.241,-7.441 -6.646,-10.985c-6.31,-9.301 -13.831,-17.692 -21.74,-25.65l57.886,-57.525c6.57,6.611 12.909,13.444 18.837,20.64c7.414,9.001 14.174,18.539 20.043,28.619c3.853,6.617 7.307,13.453 10.485,20.418c2.936,6.435 5.633,12.976 8.467,19.457c0.735,1.656 1.48,3.307 2.239,4.953c1.233,2.618 2.501,5.218 3.87,7.769c1.866,3.48 3.896,6.872 6.088,10.156c6.7,10.038 14.803,19.085 23.376,27.55c8.736,8.626 18.114,16.705 28.547,23.223c3.533,2.207 7.177,4.225 10.902,6.088c7.877,3.941 16.067,7.224 24.125,10.767c1.431,0.636 2.859,1.278 4.286,1.923c4.325,1.997 8.616,4.06 12.83,6.283c6.195,3.268 12.224,6.846 18.055,10.727c14.563,9.696 27.811,21.241 40.089,33.675c12.041,12.194 23.15,25.358 32.45,39.773c4.92,7.627 9.304,15.582 13.236,23.759c3.812,7.928 7.175,16.057 10.729,24.101c0.752,1.679 1.514,3.352 2.289,5.021c1.136,2.392 2.296,4.771 3.536,7.111c2.001,3.776 4.186,7.453 6.558,11.007c6.048,9.061 13.237,17.313 20.881,25.055c8.812,8.925 18.278,17.331 28.849,24.133c3.508,2.257 7.132,4.328 10.845,6.229c3.444,1.763 6.961,3.374 10.496,4.947c5.073,2.227 10.176,4.385 15.247,6.617c4.57,2.038 9.113,4.136 13.576,6.4c6.55,3.323 12.934,6.966 19.102,10.953c15.706,10.153 29.919,22.442 43.041,35.73c12.099,12.25 23.279,25.461 32.623,39.945c4.921,7.629 9.298,15.592 13.21,23.783c3.766,7.885 7.075,15.973 10.575,23.977c0.733,1.653 1.477,3.3 2.233,4.942c1.112,2.358 2.247,4.702 3.465,7.007c1.979,3.75 4.145,7.398 6.498,10.926c6.696,10.036 14.802,19.08 23.371,27.542c8.698,8.589 18.032,16.637 28.427,23.116c3.724,2.321 7.576,4.442 11.521,6.363c7.639,3.722 15.525,6.902 23.306,10.309c1.437,0.637 2.872,1.279 4.305,1.926c4.332,1.997 8.629,4.06 12.848,6.287c5.744,3.03 11.345,6.33 16.776,9.892c15.173,9.953 28.931,21.914 41.666,34.808c12.468,12.625 23.96,26.274 33.474,41.279c4.578,7.22 8.671,14.733 12.356,22.447c3.765,7.882 7.073,15.967 10.571,23.968c0.735,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c1.867,3.48 3.896,6.871 6.089,10.156c6.091,9.126 13.351,17.427 21.049,25.223c8.689,8.799 17.994,17.112 28.355,23.908c3.513,2.304 7.144,4.422 10.871,6.359c3.122,1.622 6.309,3.108 9.514,4.557c5.592,2.478 11.234,4.838 16.838,7.288c4.963,2.203 9.893,4.476 14.726,6.951c6.122,3.135 12.093,6.561 17.873,10.29c15.696,10.125 29.889,22.401 42.996,35.672c12.098,12.25 23.278,25.461 32.622,39.946c4.922,7.628 9.298,15.592 13.21,23.782c3.765,7.882 7.073,15.967 10.572,23.968c0.734,1.656 1.479,3.307 2.237,4.952c1.112,2.357 2.247,4.702 3.464,7.007c1.979,3.747 4.143,7.395 6.496,10.92c6.699,10.037 14.802,19.083 23.374,27.548c8.778,8.668 18.203,16.775 28.678,23.337c3.793,2.377 7.715,4.556 11.733,6.532c7.693,3.784 15.631,7.037 23.473,10.494c1.431,0.639 2.859,1.282 4.286,1.93c4.316,1.997 8.599,4.057 12.805,6.276c6.172,3.257 12.182,6.815 17.994,10.677c8.807,5.852 17.146,12.386 25.063,19.389c4.034,3.569 7.945,7.267 11.79,11.039c0.263,0.261 0.526,0.523 0.788,0.785l0.003,-0.003l0.533,0.538c0.56,0.559 1.119,1.119 1.676,1.681c5.958,6.073 11.714,12.336 17.111,18.915c7.298,8.898 13.93,18.336 19.683,28.306c0.799,1.386 1.582,2.782 2.347,4.187c2.879,5.242 5.531,10.607 8.015,16.05c2.936,6.435 5.633,12.976 8.467,19.457c0.735,1.656 1.48,3.307 2.239,4.953c1.233,2.618 2.501,5.218 3.87,7.769c0.227,0.424 0.456,0.846 0.688,1.267c1.704,3.052 3.533,6.033 5.484,8.934c6.574,9.774 14.438,18.585 22.717,26.935l0.575,0.57c8.736,8.626 18.114,16.705 28.547,23.223c3.533,2.207 7.177,4.225 10.902,6.088c7.877,3.941 16.067,7.224 24.125,10.767c1.431,0.636 2.859,1.278 4.286,1.923c4.325,1.997 8.616,4.06 12.83,6.283c6.195,3.268 12.224,6.846 18.055,10.727c14.563,9.696 27.811,21.241 40.089,33.675c12.041,12.194 23.15,25.358 32.45,39.773c4.92,7.627 9.304,15.582 13.236,23.759c3.812,7.928 7.175,16.057 10.729,24.101c0.752,1.679 1.514,3.352 2.289,5.021c1.136,2.392 2.296,4.771 3.536,7.111c2.001,3.776 4.186,7.453 6.558,11.007c6.048,9.061 13.237,17.313 20.881,25.055c8.812,8.925 18.278,17.331 28.849,24.133c3.508,2.257 7.132,4.328 10.845,6.229c3.444,1.763 6.961,3.374 10.496,4.947c5.073,2.227 10.176,4.385 15.247,6.617c4.57,2.038 9.113,4.136 13.576,6.4c6.55,3.323 12.934,6.966 19.102,10.953c15.706,10.153 29.919,22.442 43.041,35.73c12.099,12.25 23.279,25.461 32.623,39.945c4.921,7.629 9.298,15.592 13.21,23.783c3.766,7.885 7.075,15.973 10.575,23.977c0.733,1.653 1.477,3.3 2.233,4.942c1.112,2.358 2.247,4.702 3.465,7.007c1.979,3.75 4.145,7.398 6.498,10.926c6.696,10.036 14.802,19.08 23.371,27.542c8.698,8.589 18.032,16.637 28.427,23.116c3.724,2.321 7.576,4.442 11.521,6.363c7.639,3.722 15.525,6.902 23.306,10.309c1.437,0.637 2.872,1.279 4.305,1.926c4.332,1.997 8.629,4.06 12.848,6.287c5.744,3.03 11.345,6.33 16.776,9.892c15.173,9.953 28.931,21.914 41.666,34.808c12.468,12.625 23.96,26.274 33.474,41.279c4.578,7.22 8.671,14.733 12.356,22.447c3.765,7.882 7.073,15.967 10.571,23.968c0.735,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c1.867,3.48 3.896,6.871 6.089,10.156c6.091,9.126 13.351,17.427 21.049,25.223c8.689,8.799 17.994,17.112 28.355,23.908c3.513,2.304 7.144,4.422 10.871,6.359c3.122,1.622 6.309,3.108 9.514,4.557c5.592,2.478 11.234,4.838 16.838,7.288c4.963,2.203 9.893,4.476 14.726,6.951c6.122,3.135 12.093,6.561 17.873,10.29c14.789,9.54 28.244,20.989 40.712,33.381l0.001,-0.001l0.147,0.148c0.715,0.712 1.427,1.426 2.136,2.144c12.098,12.25 23.278,25.461 32.622,39.946c4.922,7.628 9.298,15.592 13.21,23.782c3.765,7.882 7.073,15.967 10.572,23.968c0.734,1.656 1.479,3.307 2.237,4.952c1.112,2.357 2.247,4.702 3.464,7.007c1.979,3.747 4.143,7.395 6.496,10.92c6.262,9.382 13.75,17.898 21.702,25.883c0.272,0.271 0.546,0.542 0.819,0.812c8.736,8.626 18.114,16.706 28.548,23.223c3.532,2.207 7.177,4.225 10.901,6.089c7.878,3.94 16.067,7.224 24.125,10.766c1.431,0.637 2.86,1.278 4.287,1.924c4.325,1.996 8.616,4.059 12.829,6.282c6.195,3.269 12.225,6.846 18.055,10.728c14.394,9.582 27.502,20.972 39.66,33.241c0.424,0.424 0.847,0.849 1.27,1.275c5.958,6.073 11.714,12.336 17.111,18.915c7.298,8.898 13.93,18.336 19.683,28.306c3.376,5.852 6.439,11.878 9.276,18.009c0.628,1.358 1.244,2.721 1.853,4.088c2.612,5.797 5.082,11.657 7.652,17.473c0.752,1.679 1.513,3.353 2.288,5.021c1.136,2.393 2.296,4.771 3.537,7.112c1.731,3.268 3.601,6.462 5.611,9.567c0.295,0.451 0.593,0.9 0.893,1.347c6.595,9.806 14.49,18.642 22.798,27.017c8.282,8.227 17.156,15.939 26.985,22.263c3.508,2.257 7.132,4.328 10.845,6.229c3.445,1.763 6.961,3.375 10.496,4.947c5.073,2.228 10.176,4.385 15.247,6.617c4.571,2.039 9.113,4.136 13.577,6.4c6.549,3.323 12.933,6.966 19.102,10.954c15.705,10.152 29.918,22.442 43.041,35.729c12.098,12.25 23.278,25.461 32.622,39.946c4.922,7.628 9.298,15.592 13.21,23.782c3.766,7.885 7.076,15.974 10.576,23.978c0.732,1.653 1.476,3.3 2.233,4.942c1.112,2.357 2.247,4.702 3.464,7.007c1.98,3.749 4.146,7.398 6.499,10.925c6.695,10.037 14.801,19.081 23.371,27.542c8.697,8.589 18.032,16.637 28.427,23.117c3.724,2.321 7.575,4.441 11.52,6.363c7.64,3.721 15.525,6.902 23.306,10.309c1.438,0.637 2.873,1.279 4.305,1.926c4.332,1.997 8.629,4.06 12.848,6.286c5.744,3.031 11.345,6.33 16.776,9.892c15.174,9.953 28.932,21.914 41.666,34.808c12.469,12.625 23.961,26.274 33.474,41.279c4.578,7.221 8.672,14.734 12.356,22.447c3.765,7.883 7.073,15.968 10.572,23.969c0.735,1.656 1.48,3.307 2.239,4.953c1.233,2.618 2.501,5.218 3.869,7.769c1.867,3.48 3.897,6.871 6.089,10.156c6.092,9.126 13.351,17.427 21.05,25.224c8.689,8.799 17.994,17.112 28.354,23.908c3.513,2.304 7.144,4.421 10.872,6.358c3.121,1.622 6.308,3.109 9.514,4.557c5.591,2.478 11.234,4.839 16.837,7.289c4.963,2.202 9.893,4.475 14.727,6.951c6.121,3.135 12.093,6.56 17.873,10.289c15.695,10.125 29.889,22.402 42.995,35.672c12.099,12.25 23.278,25.461 32.623,39.946c4.921,7.629 9.297,15.592 13.209,23.782c3.765,7.883 7.073,15.968 10.572,23.969c0.735,1.656 1.479,3.306 2.237,4.951c1.112,2.358 2.247,4.702 3.464,7.007c1.979,3.748 4.143,7.395 6.496,10.92c6.7,10.038 14.802,19.084 23.374,27.548c8.778,8.668 18.204,16.775 28.678,23.338c3.794,2.376 7.716,4.555 11.733,6.531c7.694,3.784 15.631,7.038 23.474,10.495c1.43,0.639 2.859,1.282 4.286,1.929c4.315,1.997 8.599,4.057 12.805,6.277c6.171,3.256 12.182,6.814 17.994,10.676c8.806,5.852 17.145,12.386 25.063,19.39c4.034,3.568 7.945,7.267 11.789,11.038c0.263,0.262 0.526,0.523 0.789,0.785l0.002,-0.003l0.533,0.538c0.56,0.559 1.119,1.12 1.677,1.681c5.958,6.073 11.713,12.336 17.11,18.916c7.298,8.897 13.931,18.335 19.683,28.305c0.8,1.387 1.582,2.782 2.347,4.187c2.88,5.243 5.531,10.607 8.015,16.05c2.936,6.436 5.633,12.976 8.467,19.457c0.735,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c0.227,0.423 0.457,0.845 0.689,1.266c1.703,3.052 3.533,6.034 5.484,8.934c6.573,9.775 14.438,18.585 22.717,26.936l0.574,0.569c8.736,8.626 18.114,16.706 28.548,23.223c3.532,2.207 7.177,4.225 10.901,6.089c7.878,3.94 16.067,7.224 24.125,10.766c1.431,0.637 2.86,1.278 4.287,1.924c4.325,1.996 8.616,4.059 12.829,6.282c6.195,3.269 12.225,6.846 18.055,10.728c13.324,8.87 25.547,19.289 36.934,30.521l-57.707,57.707ZM2798.21,4063.01c-8.019,-7.885 -16.6,-15.259 -26.065,-21.353c-3.505,-2.256 -7.128,-4.324 -10.838,-6.224c-3.446,-1.764 -6.966,-3.375 -10.503,-4.949c-5.069,-2.228 -10.169,-4.385 -15.238,-6.612c-4.978,-2.225 -9.923,-4.518 -14.772,-7.012c-6.133,-3.155 -12.116,-6.6 -17.908,-10.344c-16.303,-10.539 -31.006,-23.376 -44.538,-37.254c-11.524,-11.82 -22.174,-24.539 -31.129,-38.427c-2.195,-3.405 -4.282,-6.876 -6.268,-10.403c-3.305,-5.831 -6.321,-11.819 -9.119,-17.91c-2.982,-6.493 -5.713,-13.096 -8.564,-19.647c-0.731,-1.657 -1.471,-3.308 -2.224,-4.955c-1.218,-2.604 -2.467,-5.19 -3.815,-7.729c-0.223,-0.42 -0.448,-0.839 -0.676,-1.256c-1.809,-3.268 -3.764,-6.455 -5.862,-9.546c-6.255,-9.216 -13.693,-17.539 -21.523,-25.433c-8.208,-8.154 -17.011,-15.775 -26.756,-22.04c-3.505,-2.253 -7.129,-4.316 -10.837,-6.215c-3.469,-1.777 -7.011,-3.4 -10.568,-4.99c-5.102,-2.247 -10.233,-4.43 -15.331,-6.685c-4.997,-2.244 -9.959,-4.56 -14.825,-7.075c-6.142,-3.175 -12.134,-6.638 -17.937,-10.397c-15.715,-10.179 -29.947,-22.48 -43.086,-35.784c-12.098,-12.25 -23.278,-25.461 -32.622,-39.945c-4.921,-7.629 -9.298,-15.593 -13.21,-23.783c-3.765,-7.882 -7.074,-15.967 -10.571,-23.968c-0.735,-1.656 -1.479,-3.307 -2.237,-4.952c-1.112,-2.357 -2.247,-4.702 -3.465,-7.007c-1.826,-3.459 -3.81,-6.834 -5.956,-10.105c-6.2,-9.447 -13.662,-18.011 -21.589,-26.038c-8.916,-9.029 -18.482,-17.543 -29.167,-24.437c-3.501,-2.258 -7.121,-4.329 -10.829,-6.227c-3.422,-1.752 -6.917,-3.348 -10.43,-4.907c-5.038,-2.202 -10.105,-4.335 -15.143,-6.537c-4.965,-2.202 -9.895,-4.477 -14.73,-6.953c-6.124,-3.135 -12.097,-6.562 -17.878,-10.292c-15.696,-10.125 -29.889,-22.401 -42.996,-35.672c-12.1,-12.252 -23.285,-25.465 -32.627,-39.954c-4.919,-7.627 -9.294,-15.587 -13.205,-23.775c-3.765,-7.882 -7.07,-15.968 -10.571,-23.967c-0.735,-1.657 -1.48,-3.307 -2.238,-4.952c-1.234,-2.618 -2.501,-5.218 -3.869,-7.769c-1.867,-3.48 -3.896,-6.871 -6.089,-10.156c-6.7,-10.038 -14.803,-19.085 -23.375,-27.549c-8.698,-8.589 -18.033,-16.637 -28.428,-23.117c-3.721,-2.319 -7.57,-4.44 -11.512,-6.359c-7.643,-3.719 -15.527,-6.908 -23.312,-10.31c-1.438,-0.639 -2.874,-1.282 -4.307,-1.929c-3.914,-1.804 -7.803,-3.658 -11.628,-5.646c-6.648,-3.455 -13.11,-7.265 -19.343,-11.423c-14.645,-9.772 -27.963,-21.406 -40.319,-33.917c-12.469,-12.625 -23.96,-26.274 -33.474,-41.279c-4.578,-7.221 -8.672,-14.734 -12.356,-22.447c-3.765,-7.883 -7.074,-15.967 -10.572,-23.969c-0.735,-1.656 -1.479,-3.307 -2.239,-4.953c-1.235,-2.623 -2.506,-5.226 -3.876,-7.782c-1.863,-3.476 -3.892,-6.863 -6.082,-10.143c-6.091,-9.127 -13.351,-17.427 -21.05,-25.224c-8.95,-9.063 -18.556,-17.604 -29.275,-24.534c-4.028,-2.604 -8.211,-4.958 -12.5,-7.103c-2.942,-1.472 -5.935,-2.836 -8.938,-4.176c-5.048,-2.221 -10.126,-4.369 -15.176,-6.585c-4.951,-2.203 -9.87,-4.477 -14.695,-6.948c-6.571,-3.364 -12.968,-7.063 -19.145,-11.105c-15.68,-10.262 -29.854,-22.674 -42.916,-36.074c-11.469,-11.766 -22.049,-24.44 -30.965,-38.261l-0.2,-0.31c-1.601,-2.474 -3.151,-4.981 -4.644,-7.524c-3.925,-6.68 -7.45,-13.582 -10.683,-20.622c-2.983,-6.492 -5.713,-13.096 -8.565,-19.646c-0.347,-0.788 -0.697,-1.574 -1.049,-2.36c-0.368,-0.807 -0.739,-1.613 -1.113,-2.418c-1.134,-2.388 -2.29,-4.763 -3.529,-7.098c-2.005,-3.779 -4.189,-7.461 -6.565,-11.02c-6.047,-9.061 -13.237,-17.313 -20.881,-25.055l-0.799,-0.805c-8.254,-8.216 -17.11,-15.897 -26.919,-22.203c-3.505,-2.253 -7.129,-4.317 -10.838,-6.216c-3.469,-1.776 -7.01,-3.399 -10.567,-4.989c-5.103,-2.248 -10.233,-4.43 -15.332,-6.686c-4.996,-2.244 -9.958,-4.56 -14.824,-7.075c-6.143,-3.174 -12.135,-6.637 -17.938,-10.396c-15.111,-9.789 -28.851,-21.54 -41.567,-34.257c-1.3,-1.292 -2.59,-2.595 -3.869,-3.906c-11.524,-11.82 -22.174,-24.539 -31.129,-38.427c-4.918,-7.629 -9.295,-15.588 -13.207,-23.777c-3.765,-7.882 -7.07,-15.968 -10.571,-23.968c-0.733,-1.653 -1.476,-3.301 -2.233,-4.943c-1.236,-2.621 -2.504,-5.224 -3.874,-7.778c-2.024,-3.772 -4.24,-7.438 -6.643,-10.98c-6.257,-9.22 -13.699,-17.546 -21.533,-25.443c-8.376,-8.322 -17.342,-16.131 -27.276,-22.54c-3.501,-2.259 -7.121,-4.329 -10.829,-6.227c-3.422,-1.752 -6.918,-3.348 -10.431,-4.908c-5.037,-2.202 -10.105,-4.335 -15.142,-6.537c-4.965,-2.201 -9.895,-4.477 -14.73,-6.952c-6.124,-3.135 -12.097,-6.563 -17.878,-10.292c-15.697,-10.125 -29.89,-22.402 -42.996,-35.673c-12.1,-12.251 -23.285,-25.465 -32.628,-39.953c-4.918,-7.628 -9.294,-15.587 -13.205,-23.775c-3.765,-7.882 -7.07,-15.968 -10.571,-23.968c-0.734,-1.656 -1.479,-3.306 -2.237,-4.951c-1.235,-2.618 -2.501,-5.219 -3.87,-7.77c-1.867,-3.479 -3.896,-6.871 -6.088,-10.155c-6.7,-10.038 -14.804,-19.085 -23.376,-27.55c-8.698,-8.589 -18.032,-16.637 -28.427,-23.116c-3.721,-2.319 -7.57,-4.441 -11.513,-6.359c-7.642,-3.72 -15.527,-6.908 -23.312,-10.311c-1.437,-0.638 -2.873,-1.281 -4.307,-1.928c-3.914,-1.805 -7.802,-3.658 -11.627,-5.646c-6.648,-3.456 -13.111,-7.265 -19.343,-11.424c-14.646,-9.771 -27.963,-21.405 -40.319,-33.917c-12.469,-12.625 -23.961,-26.274 -33.475,-41.279c-4.578,-7.22 -8.671,-14.733 -12.356,-22.447c-3.765,-7.882 -7.074,-15.967 -10.571,-23.968c-0.735,-1.657 -1.48,-3.308 -2.239,-4.953c-1.236,-2.623 -2.507,-5.226 -3.877,-7.783c-1.863,-3.476 -3.892,-6.862 -6.081,-10.143c-6.092,-9.126 -13.351,-17.427 -21.05,-25.223c-8.95,-9.064 -18.556,-17.605 -29.276,-24.534c-4.028,-2.604 -8.21,-4.958 -12.499,-7.104c-2.942,-1.471 -5.935,-2.835 -8.939,-4.175c-5.047,-2.221 -10.126,-4.369 -15.175,-6.585c-4.952,-2.204 -9.87,-4.478 -14.695,-6.948c-6.571,-3.364 -12.968,-7.063 -19.145,-11.106c-15.68,-10.262 -29.854,-22.674 -42.916,-36.074c-11.469,-11.766 -22.049,-24.439 -30.965,-38.26c-4.92,-7.626 -9.304,-15.581 -13.236,-23.759c-3.814,-7.93 -7.179,-16.062 -10.734,-24.109c-0.75,-1.677 -1.51,-3.347 -2.284,-5.012c-1.134,-2.388 -2.291,-4.763 -3.529,-7.098c-2.005,-3.78 -4.19,-7.462 -6.565,-11.02c-6.048,-9.061 -13.237,-17.313 -20.881,-25.055c-8.816,-8.929 -18.285,-17.332 -28.857,-24.138c-3.505,-2.256 -7.127,-4.325 -10.837,-6.224c-3.447,-1.765 -6.966,-3.375 -10.503,-4.95c-5.069,-2.227 -10.169,-4.384 -15.238,-6.612c-4.978,-2.224 -9.924,-4.517 -14.773,-7.012c-6.133,-3.154 -12.115,-6.6 -17.907,-10.344c-16.303,-10.538 -31.007,-23.376 -44.538,-37.254c-11.524,-11.819 -22.174,-24.538 -31.129,-38.426c-2.195,-3.405 -4.283,-6.876 -6.269,-10.404c-3.304,-5.83 -6.32,-11.818 -9.118,-17.91c-2.983,-6.492 -5.713,-13.096 -8.565,-19.646c-0.731,-1.657 -1.471,-3.309 -2.224,-4.956c-1.218,-2.603 -2.466,-5.189 -3.814,-7.728c-0.223,-0.42 -0.449,-0.839 -0.677,-1.256c-1.809,-3.269 -3.764,-6.455 -5.862,-9.546c-6.254,-9.216 -13.692,-17.539 -21.523,-25.434c-8.208,-8.154 -17.011,-15.775 -26.755,-22.039c-3.505,-2.253 -7.129,-4.317 -10.838,-6.216c-3.469,-1.776 -7.01,-3.399 -10.567,-4.989c-5.103,-2.248 -10.233,-4.43 -15.332,-6.686c-4.996,-2.244 -9.958,-4.56 -14.824,-7.075c-6.143,-3.174 -12.135,-6.637 -17.938,-10.396c-15.715,-10.179 -29.946,-22.481 -43.085,-35.784c-12.098,-12.25 -23.278,-25.461 -32.622,-39.946c-4.922,-7.629 -9.298,-15.592 -13.21,-23.782c-3.765,-7.883 -7.074,-15.967 -10.572,-23.969c-0.735,-1.655 -1.479,-3.306 -2.237,-4.951c-1.112,-2.358 -2.247,-4.702 -3.464,-7.007c-1.827,-3.459 -3.81,-6.835 -5.957,-10.106c-6.2,-9.446 -13.662,-18.01 -21.589,-26.038c-8.915,-9.028 -18.481,-17.543 -29.166,-24.436c-3.501,-2.259 -7.121,-4.329 -10.829,-6.227c-3.422,-1.752 -6.918,-3.348 -10.431,-4.908c-5.037,-2.202 -10.105,-4.335 -15.142,-6.537c-4.965,-2.201 -9.895,-4.477 -14.73,-6.952c-6.124,-3.135 -12.097,-6.563 -17.878,-10.292c-15.697,-10.125 -29.89,-22.402 -42.996,-35.673c-12.1,-12.251 -23.285,-25.465 -32.628,-39.953c-4.918,-7.628 -9.294,-15.587 -13.205,-23.775c-3.765,-7.882 -7.07,-15.968 -10.571,-23.968c-0.734,-1.656 -1.479,-3.306 -2.237,-4.951c-1.235,-2.618 -2.501,-5.219 -3.87,-7.77c-1.867,-3.479 -3.896,-6.871 -6.088,-10.155c-6.7,-10.038 -14.804,-19.085 -23.376,-27.55c-8.698,-8.589 -18.032,-16.637 -28.427,-23.116c-3.721,-2.319 -7.57,-4.441 -11.513,-6.359c-7.642,-3.72 -15.527,-6.908 -23.312,-10.311c-1.437,-0.638 -2.873,-1.281 -4.307,-1.928c-3.914,-1.805 -7.802,-3.658 -11.627,-5.646c-6.648,-3.456 -13.111,-7.265 -19.343,-11.424c-14.646,-9.771 -27.963,-21.405 -40.319,-33.917c-12.469,-12.625 -23.961,-26.274 -33.475,-41.279c-4.578,-7.22 -8.671,-14.733 -12.356,-22.447c-3.765,-7.882 -7.074,-15.967 -10.571,-23.968c-0.735,-1.657 -1.48,-3.308 -2.239,-4.953c-1.236,-2.623 -2.507,-5.226 -3.877,-7.782c-1.863,-3.477 -3.892,-6.863 -6.081,-10.144c-6.092,-9.126 -13.351,-17.427 -21.05,-25.223c-8.95,-9.064 -18.556,-17.605 -29.276,-24.534c-4.028,-2.604 -8.21,-4.958 -12.499,-7.104c-2.942,-1.471 -5.935,-2.835 -8.939,-4.175c-5.047,-2.221 -10.126,-4.369 -15.175,-6.585c-4.952,-2.204 -9.87,-4.478 -14.695,-6.948c-6.571,-3.364 -12.968,-7.063 -19.145,-11.106c-15.68,-10.262 -29.854,-22.674 -42.916,-36.074c-11.469,-11.766 -22.049,-24.439 -30.965,-38.26c-4.92,-7.626 -9.304,-15.581 -13.236,-23.759c-3.814,-7.93 -7.179,-16.062 -10.734,-24.109c-0.75,-1.677 -1.51,-3.347 -2.284,-5.012c-1.134,-2.388 -2.291,-4.763 -3.529,-7.098c-2.005,-3.78 -4.19,-7.462 -6.565,-11.02c-6.048,-9.061 -13.237,-17.313 -20.881,-25.055c-8.816,-8.929 -18.285,-17.332 -28.857,-24.138c-3.505,-2.256 -7.127,-4.325 -10.837,-6.224c-3.447,-1.765 -6.966,-3.375 -10.503,-4.95c-5.069,-2.227 -10.169,-4.384 -15.238,-6.612c-4.978,-2.224 -9.924,-4.517 -14.773,-7.012c-6.133,-3.154 -12.115,-6.6 -17.907,-10.344c-16.303,-10.538 -31.007,-23.376 -44.538,-37.254c-11.524,-11.819 -22.174,-24.538 -31.129,-38.426c-4.919,-7.629 -9.296,-15.589 -13.207,-23.777c-3.765,-7.883 -7.07,-15.969 -10.571,-23.968c-0.733,-1.654 -1.476,-3.301 -2.234,-4.943c-1.236,-2.621 -2.503,-5.225 -3.873,-7.778c-2.024,-3.772 -4.24,-7.439 -6.644,-10.98c-6.313,-9.302 -13.832,-17.695 -21.743,-25.656l57.886,-57.524c6.57,6.611 12.909,13.444 18.837,20.64c7.413,9 14.17,18.536 20.04,28.614c3.855,6.618 7.309,13.456 10.488,20.422c2.936,6.436 5.634,12.976 8.467,19.458c0.736,1.657 1.481,3.309 2.24,4.956c1.233,2.615 2.498,5.213 3.866,7.761c1.869,3.483 3.9,6.877 6.094,10.165c6.698,10.039 14.805,19.083 23.376,27.548c8.736,8.628 18.116,16.704 28.549,23.224c3.529,2.205 7.17,4.222 10.892,6.082c7.88,3.94 16.069,7.227 24.13,10.769c1.431,0.637 2.86,1.279 4.287,1.924c4.324,1.997 8.616,4.059 12.829,6.283c6.196,3.269 12.228,6.847 18.06,10.73c14.561,9.697 27.81,21.24 40.087,33.675c12.04,12.194 23.148,25.355 32.447,39.77c4.921,7.627 9.305,15.583 13.237,23.762c3.811,7.927 7.175,16.054 10.729,24.098c0.752,1.68 1.514,3.354 2.289,5.024c1.135,2.389 2.293,4.765 3.533,7.103c2.003,3.778 4.189,7.459 6.563,11.016c6.044,9.059 13.234,17.309 20.875,25.048c8.592,8.7 17.8,16.907 28.051,23.615c3.515,2.301 7.149,4.415 10.876,6.353c3.143,1.633 6.35,3.131 9.576,4.592c5.625,2.504 11.302,4.889 16.937,7.368c4.572,2.041 9.117,4.138 13.582,6.404c6.547,3.322 12.93,6.964 19.096,10.95c16.303,10.538 31.006,23.376 44.538,37.254c11.523,11.818 22.169,24.536 31.126,38.421c4.922,7.63 9.299,15.594 13.211,23.786c3.766,7.884 7.076,15.97 10.574,23.974c0.734,1.654 1.478,3.302 2.235,4.945c1.11,2.355 2.244,4.697 3.46,6.999c1.982,3.752 4.15,7.404 6.504,10.935c6.694,10.037 14.804,19.078 23.371,27.54c8.698,8.591 18.035,16.635 28.429,23.117c3.246,2.024 6.591,3.887 10.006,5.609c8.088,4.08 16.523,7.43 24.816,11.06c1.437,0.637 2.872,1.279 4.305,1.926c4.332,1.998 8.629,4.06 12.848,6.286c5.744,3.031 11.345,6.33 16.776,9.892c15.174,9.954 28.935,21.915 41.669,34.811c12.467,12.625 23.958,26.272 33.471,41.276c4.579,7.222 8.673,14.736 12.357,22.451c3.764,7.881 7.074,15.964 10.57,23.965c0.736,1.657 1.481,3.309 2.241,4.956c1.232,2.616 2.498,5.213 3.866,7.761c1.869,3.483 3.9,6.878 6.094,10.166c6.088,9.124 13.347,17.423 21.044,25.216c8.689,8.798 17.992,17.114 28.353,23.908c3.514,2.304 7.147,4.424 10.875,6.362c3.123,1.622 6.311,3.109 9.517,4.558c5.591,2.478 11.232,4.838 16.835,7.287c4.961,2.202 9.889,4.474 14.721,6.948c6.124,3.136 12.097,6.563 17.878,10.292c16.294,10.511 30.977,23.336 44.492,37.197c11.523,11.819 22.169,24.536 31.126,38.421c4.922,7.63 9.299,15.594 13.211,23.786c3.764,7.881 7.074,15.965 10.571,23.965c0.735,1.657 1.48,3.308 2.238,4.955c1.111,2.354 2.244,4.696 3.46,6.998c1.982,3.751 4.147,7.402 6.502,10.93c6.697,10.038 14.804,19.081 23.374,27.546c8.778,8.67 18.206,16.774 28.68,23.338c3.792,2.377 7.715,4.554 11.731,6.53c7.692,3.784 15.628,7.038 23.471,10.493c1.43,0.639 2.859,1.282 4.285,1.929c4.316,1.998 8.599,4.058 12.806,6.277c6.173,3.257 12.185,6.816 17.998,10.679c8.806,5.853 17.145,12.386 25.062,19.39c4.031,3.567 7.94,7.264 11.783,11.033c0.264,0.262 0.528,0.525 0.792,0.787l0.002,-0.002l0.534,0.538c0.561,0.56 1.12,1.121 1.678,1.683c6.38,6.505 12.526,13.23 18.253,20.32c6.849,8.48 13.085,17.45 18.535,26.894c0.78,1.352 1.543,2.713 2.29,4.083c2.903,5.277 5.574,10.678 8.075,16.158c2.936,6.436 5.634,12.976 8.467,19.458c0.736,1.657 1.481,3.309 2.24,4.956c1.233,2.615 2.498,5.213 3.866,7.761c0.221,0.411 0.444,0.821 0.67,1.23c1.711,3.068 3.548,6.065 5.508,8.98c6.57,9.772 14.434,18.579 22.709,26.926l0.583,0.577c8.736,8.628 18.116,16.704 28.549,23.224c3.529,2.205 7.17,4.222 10.892,6.082c7.88,3.94 16.069,7.227 24.13,10.769c1.431,0.637 2.86,1.279 4.287,1.924c4.324,1.997 8.616,4.059 12.829,6.283c6.196,3.269 12.228,6.847 18.06,10.73c14.561,9.697 27.81,21.24 40.087,33.675c12.04,12.194 23.148,25.355 32.447,39.77c4.921,7.627 9.305,15.583 13.237,23.762c3.811,7.927 7.175,16.054 10.729,24.098c0.752,1.68 1.514,3.354 2.289,5.024c1.135,2.389 2.293,4.765 3.533,7.103c2.003,3.778 4.189,7.459 6.563,11.016c6.044,9.059 13.234,17.309 20.875,25.048c8.592,8.7 17.8,16.907 28.051,23.615c3.515,2.301 7.149,4.415 10.876,6.353c3.143,1.633 6.35,3.131 9.576,4.592c5.625,2.504 11.302,4.889 16.937,7.368c4.572,2.041 9.117,4.138 13.582,6.404c6.547,3.322 12.93,6.964 19.096,10.95c16.303,10.538 31.006,23.376 44.538,37.254c11.523,11.818 22.169,24.536 31.126,38.421c4.922,7.63 9.299,15.594 13.211,23.786c3.766,7.884 7.076,15.97 10.574,23.974c0.734,1.654 1.478,3.302 2.235,4.945c1.11,2.355 2.244,4.697 3.46,6.999c1.982,3.752 4.15,7.404 6.504,10.935c6.694,10.037 14.804,19.078 23.371,27.54c8.698,8.591 18.035,16.635 28.429,23.117c3.246,2.024 6.591,3.887 10.006,5.609c8.088,4.08 16.523,7.43 24.816,11.06c1.437,0.637 2.872,1.279 4.305,1.926c4.332,1.998 8.629,4.06 12.848,6.286c5.744,3.031 11.345,6.33 16.776,9.892c15.174,9.954 28.935,21.915 41.669,34.811c12.467,12.625 23.958,26.272 33.471,41.276c4.579,7.222 8.673,14.736 12.357,22.451c3.764,7.881 7.074,15.964 10.57,23.965c0.736,1.657 1.481,3.309 2.241,4.956c1.232,2.616 2.498,5.213 3.866,7.761c1.869,3.483 3.9,6.878 6.094,10.166c6.088,9.124 13.347,17.423 21.044,25.216c8.689,8.798 17.992,17.114 28.353,23.908c3.514,2.304 7.146,4.424 10.875,6.362c3.123,1.622 6.311,3.109 9.517,4.558c5.591,2.478 11.232,4.838 16.835,7.287c4.961,2.202 9.889,4.474 14.721,6.948c6.124,3.136 12.097,6.563 17.878,10.292c16.294,10.511 30.977,23.336 44.492,37.197c11.523,11.819 22.169,24.536 31.126,38.421c4.922,7.63 9.299,15.594 13.211,23.786c3.764,7.881 7.074,15.965 10.571,23.965c0.735,1.657 1.48,3.308 2.238,4.955c1.111,2.354 2.244,4.696 3.46,6.998c1.982,3.751 4.147,7.402 6.502,10.93c6.263,9.388 13.759,17.905 21.714,25.893c0.269,0.267 0.538,0.534 0.807,0.8c8.736,8.629 18.117,16.704 28.55,23.224c3.528,2.205 7.17,4.222 10.891,6.082c7.88,3.94 16.07,7.228 24.131,10.77c1.43,0.637 2.859,1.278 4.286,1.923c4.325,1.998 8.616,4.06 12.83,6.283c6.196,3.269 12.228,6.847 18.059,10.731c14.395,9.585 27.507,20.975 39.666,33.248c0.421,0.422 0.842,0.844 1.262,1.267c6.38,6.505 12.526,13.23 18.253,20.32c6.849,8.48 13.085,17.45 18.535,26.894c3.783,6.555 7.167,13.329 10.289,20.222c0.296,0.655 0.59,1.31 0.882,1.967c2.598,5.768 5.056,11.599 7.613,17.386c0.753,1.68 1.514,3.355 2.29,5.024c1.135,2.39 2.293,4.766 3.532,7.103c1.738,3.278 3.614,6.483 5.63,9.597c0.291,0.444 0.584,0.887 0.88,1.327c6.58,9.787 14.459,18.606 22.748,26.965c8.071,8.02 16.7,15.553 26.231,21.791c3.516,2.3 7.149,4.415 10.877,6.352c3.142,1.633 6.35,3.131 9.575,4.592c5.625,2.504 11.302,4.889 16.938,7.369c4.571,2.04 9.116,4.137 13.581,6.403c6.547,3.323 12.93,6.964 19.097,10.95c16.303,10.539 31.006,23.376 44.537,37.254c11.523,11.819 22.169,24.536 31.126,38.421c4.922,7.63 9.3,15.594 13.212,23.786c3.765,7.884 7.075,15.971 10.574,23.974c0.733,1.654 1.477,3.302 2.234,4.946c1.111,2.354 2.244,4.696 3.46,6.998c1.983,3.753 4.15,7.405 6.505,10.936c6.693,10.036 14.803,19.078 23.371,27.54c8.698,8.59 18.034,16.635 28.429,23.116c3.246,2.024 6.59,3.887 10.005,5.61c8.089,4.079 16.524,7.43 24.817,11.059c1.437,0.638 2.872,1.28 4.305,1.926c4.331,1.998 8.628,4.061 12.847,6.287c5.744,3.03 11.346,6.33 16.776,9.892c15.174,9.953 28.935,21.915 41.669,34.81c12.467,12.626 23.959,26.273 33.472,41.277c4.578,7.221 8.672,14.735 12.357,22.45c3.764,7.882 7.073,15.965 10.57,23.966c0.736,1.657 1.481,3.309 2.24,4.955c1.232,2.616 2.498,5.214 3.866,7.762c1.869,3.483 3.9,6.877 6.094,10.165c6.088,9.125 13.348,17.424 21.044,25.216c8.69,8.798 17.992,17.114 28.353,23.908c3.515,2.305 7.147,4.424 10.876,6.362c3.122,1.623 6.311,3.109 9.517,4.558c5.59,2.479 11.232,4.838 16.835,7.287c4.96,2.203 9.888,4.475 14.72,6.949c6.124,3.135 12.098,6.562 17.879,10.292c16.293,10.51 30.976,23.335 44.491,37.196c11.524,11.819 22.17,24.537 31.127,38.422c4.922,7.629 9.299,15.594 13.211,23.785c3.764,7.882 7.073,15.965 10.57,23.966c0.735,1.656 1.48,3.308 2.238,4.954c1.111,2.355 2.244,4.696 3.461,6.999c1.981,3.75 4.147,7.401 6.501,10.93c6.698,10.037 14.804,19.081 23.374,27.545c8.778,8.67 18.206,16.774 28.68,23.338c3.793,2.377 7.715,4.554 11.731,6.53c7.693,3.785 15.629,7.038 23.471,10.493c1.43,0.639 2.859,1.283 4.286,1.93c4.315,1.997 8.599,4.057 12.805,6.276c6.173,3.257 12.186,6.816 17.999,10.68c8.805,5.852 17.144,12.385 25.061,19.389c4.032,3.567 7.941,7.264 11.784,11.033c0.264,0.262 0.527,0.525 0.791,0.788l0.003,-0.003l0.534,0.539c0.56,0.56 1.12,1.12 1.678,1.682c6.379,6.506 12.525,13.23 18.252,20.32c6.85,8.481 13.085,17.451 18.535,26.894c0.78,1.352 1.543,2.713 2.291,4.083c2.902,5.277 5.574,10.678 8.074,16.159c2.937,6.435 5.635,12.976 8.467,19.457c0.736,1.657 1.481,3.309 2.241,4.956c1.232,2.616 2.498,5.213 3.865,7.761c0.221,0.412 0.444,0.822 0.67,1.231c1.712,3.067 3.548,6.064 5.509,8.98c6.569,9.771 14.434,18.578 22.709,26.925l0.582,0.577c8.736,8.629 18.117,16.704 28.55,23.224c3.528,2.205 7.17,4.222 10.891,6.082c7.88,3.94 16.07,7.228 24.131,10.77c1.43,0.637 2.859,1.278 4.286,1.923c4.325,1.998 8.616,4.06 12.83,6.283c6.196,3.269 12.228,6.847 18.059,10.731c13.322,8.87 25.544,19.287 36.929,30.517l-57.707,57.707ZM2913.62,3947.6c-7.791,-7.66 -16.11,-14.839 -25.259,-20.829c-3.758,-2.46 -7.652,-4.704 -11.649,-6.751c-2.889,-1.48 -5.832,-2.848 -8.789,-4.186c-5.628,-2.505 -11.307,-4.894 -16.947,-7.373c-4.978,-2.223 -9.923,-4.517 -14.772,-7.011c-6.133,-3.155 -12.116,-6.6 -17.908,-10.344c-16.303,-10.539 -31.006,-23.376 -44.537,-37.255c-11.524,-11.819 -22.174,-24.538 -31.13,-38.426c-2.222,-3.446 -4.333,-6.96 -6.341,-10.532c-3.275,-5.79 -6.267,-11.733 -9.045,-17.778c-2.983,-6.494 -5.713,-13.099 -8.565,-19.65c-0.731,-1.658 -1.472,-3.311 -2.225,-4.958c-1.338,-2.86 -2.716,-5.697 -4.215,-8.476l-0.261,-0.48c-1.814,-3.279 -3.775,-6.475 -5.879,-9.577c-6.246,-9.206 -13.679,-17.521 -21.5,-25.408c-8.214,-8.161 -17.022,-15.79 -26.776,-22.06c-3.507,-2.254 -7.133,-4.318 -10.843,-6.219c-3.466,-1.776 -7.006,-3.397 -10.562,-4.986c-5.102,-2.248 -10.233,-4.43 -15.331,-6.686c-4.997,-2.243 -9.958,-4.56 -14.825,-7.075c-6.142,-3.174 -12.134,-6.637 -17.937,-10.396c-16.312,-10.566 -31.034,-23.414 -44.581,-37.308c-11.524,-11.819 -22.169,-24.537 -31.127,-38.422c-4.922,-7.629 -9.299,-15.594 -13.211,-23.785c-3.764,-7.882 -7.073,-15.965 -10.57,-23.966c-0.735,-1.656 -1.48,-3.308 -2.238,-4.954c-1.112,-2.356 -2.247,-4.7 -3.464,-7.004c-1.979,-3.749 -4.145,-7.397 -6.498,-10.924c-6.698,-10.038 -14.804,-19.082 -23.374,-27.546c-8.695,-8.587 -18.029,-16.637 -28.422,-23.113c-3.491,-2.175 -7.094,-4.166 -10.777,-5.996c-7.854,-3.903 -16.012,-7.161 -24.043,-10.673c-2.165,-0.959 -2.161,-0.958 -4.319,-1.933c-4.335,-1.997 -8.635,-4.061 -12.856,-6.29c-6.214,-3.281 -12.261,-6.875 -18.107,-10.775c-14.647,-9.771 -27.968,-21.407 -40.324,-33.921c-12.467,-12.625 -23.959,-26.272 -33.472,-41.276c-4.579,-7.222 -8.674,-14.737 -12.359,-22.453c-3.764,-7.881 -7.069,-15.966 -10.57,-23.965c-0.735,-1.657 -1.48,-3.308 -2.239,-4.954c-1.234,-2.617 -2.5,-5.216 -3.868,-7.766c-1.868,-3.482 -3.899,-6.874 -6.092,-10.16c-6.698,-10.039 -14.804,-19.083 -23.375,-27.548c-8.698,-8.591 -18.035,-16.635 -28.429,-23.117c-3.72,-2.319 -7.57,-4.439 -11.511,-6.357c-7.641,-3.72 -15.525,-6.906 -23.309,-10.31c-1.439,-0.638 -2.875,-1.282 -4.31,-1.929c-3.913,-1.805 -7.801,-3.658 -11.624,-5.645c-6.171,-3.207 -12.182,-6.718 -17.997,-10.532c-15.174,-9.954 -28.935,-21.915 -41.669,-34.811c-12.467,-12.625 -23.958,-26.272 -33.471,-41.276c-4.579,-7.222 -8.673,-14.736 -12.357,-22.451c-3.764,-7.881 -7.073,-15.964 -10.57,-23.965c-0.736,-1.657 -1.481,-3.309 -2.241,-4.956c-1.235,-2.622 -2.506,-5.224 -3.875,-7.779c-1.864,-3.478 -3.895,-6.865 -6.085,-10.148c-6.698,-10.038 -14.804,-19.082 -23.375,-27.548c-8.736,-8.628 -18.117,-16.703 -28.55,-23.223c-3.528,-2.205 -7.17,-4.222 -10.891,-6.083c-7.876,-3.937 -16.061,-7.225 -24.119,-10.763c-1.439,-0.64 -2.875,-1.285 -4.31,-1.935c-4.321,-1.995 -8.608,-4.056 -12.818,-6.277c-6.198,-3.271 -12.233,-6.85 -18.067,-10.736c-13.661,-9.101 -26.169,-19.823 -37.802,-31.384l-0.001,0.001l-0.123,-0.125c-0.722,-0.717 -1.439,-1.438 -2.154,-2.161c-12.039,-12.194 -23.147,-25.356 -32.447,-39.771l-0.254,-0.395c-1.582,-2.446 -3.113,-4.925 -4.59,-7.439c-3.924,-6.68 -7.448,-13.58 -10.682,-20.619c-2.983,-6.493 -5.714,-13.098 -8.565,-19.649c-0.348,-0.788 -0.697,-1.574 -1.049,-2.36c-0.369,-0.808 -0.74,-1.615 -1.115,-2.421c-1.133,-2.387 -2.29,-4.761 -3.528,-7.095c-2.006,-3.781 -4.192,-7.464 -6.567,-11.024c-6.045,-9.059 -13.234,-17.31 -20.876,-25.048l-0.778,-0.785c-8.262,-8.224 -17.124,-15.914 -26.943,-22.226c-3.507,-2.254 -7.133,-4.318 -10.843,-6.219c-3.467,-1.776 -7.007,-3.398 -10.562,-4.986c-5.102,-2.248 -10.233,-4.43 -15.332,-6.686c-4.996,-2.243 -9.958,-4.56 -14.824,-7.075c-6.142,-3.175 -12.134,-6.637 -17.938,-10.396c-15.246,-9.876 -29.104,-21.747 -41.912,-34.602c-1.184,-1.179 -2.358,-2.366 -3.523,-3.561c-11.524,-11.82 -22.174,-24.539 -31.13,-38.427c-4.919,-7.629 -9.296,-15.59 -13.208,-23.78c-3.764,-7.882 -7.069,-15.966 -10.57,-23.965c-0.733,-1.655 -1.476,-3.303 -2.234,-4.946c-1.236,-2.62 -2.503,-5.222 -3.873,-7.775c-2.024,-3.773 -4.242,-7.441 -6.646,-10.985c-6.223,-9.172 -13.623,-17.459 -21.412,-25.319l-0.554,-0.549c-8.695,-8.588 -18.029,-16.637 -28.422,-23.113c-3.491,-2.176 -7.094,-4.166 -10.778,-5.997c-7.854,-3.902 -16.011,-7.161 -24.042,-10.672c-2.166,-0.96 -2.161,-0.958 -4.32,-1.933c-4.334,-1.998 -8.634,-4.061 -12.855,-6.29c-6.214,-3.282 -12.261,-6.875 -18.107,-10.775c-14.647,-9.772 -27.968,-21.408 -40.325,-33.921c-12.467,-12.626 -23.958,-26.272 -33.471,-41.276c-4.579,-7.223 -8.675,-14.738 -12.36,-22.453c-3.764,-7.882 -7.069,-15.966 -10.569,-23.965c-0.735,-1.657 -1.481,-3.308 -2.239,-4.955c-1.234,-2.617 -2.5,-5.216 -3.869,-7.766c-1.867,-3.481 -3.898,-6.873 -6.091,-10.16c-6.698,-10.038 -14.805,-19.083 -23.375,-27.548c-8.698,-8.59 -18.035,-16.635 -28.43,-23.116c-3.72,-2.32 -7.569,-4.439 -11.511,-6.358c-7.641,-3.72 -15.525,-6.906 -23.308,-10.309c-1.439,-0.639 -2.876,-1.282 -4.311,-1.929c-3.912,-1.805 -7.8,-3.658 -11.624,-5.646c-6.17,-3.207 -12.181,-6.718 -17.996,-10.532c-15.174,-9.953 -28.935,-21.915 -41.669,-34.81c-12.467,-12.626 -23.958,-26.273 -33.472,-41.277c-4.578,-7.221 -8.672,-14.735 -12.357,-22.45c-3.764,-7.882 -7.073,-15.965 -10.57,-23.966c-0.736,-1.657 -1.481,-3.309 -2.24,-4.955c-1.235,-2.623 -2.506,-5.225 -3.875,-7.78c-1.865,-3.477 -3.895,-6.865 -6.085,-10.147c-6.698,-10.039 -14.805,-19.083 -23.376,-27.548c-8.736,-8.628 -18.116,-16.704 -28.549,-23.224c-3.529,-2.205 -7.17,-4.222 -10.891,-6.082c-7.877,-3.938 -16.062,-7.226 -24.12,-10.763c-1.438,-0.64 -2.875,-1.286 -4.309,-1.935c-4.321,-1.996 -8.608,-4.056 -12.818,-6.277c-6.199,-3.271 -12.234,-6.85 -18.067,-10.736c-14.558,-9.698 -27.805,-21.236 -40.08,-33.67c-12.039,-12.194 -23.148,-25.355 -32.447,-39.77c-4.921,-7.627 -9.305,-15.583 -13.237,-23.762c-3.813,-7.93 -7.178,-16.06 -10.732,-24.107c-0.751,-1.677 -1.512,-3.348 -2.286,-5.014c-1.134,-2.387 -2.29,-4.761 -3.528,-7.096c-2.006,-3.781 -4.192,-7.463 -6.568,-11.024c-6.044,-9.059 -13.233,-17.309 -20.875,-25.047c-8.593,-8.702 -17.802,-16.906 -28.054,-23.618c-3.757,-2.46 -7.651,-4.703 -11.648,-6.75c-2.89,-1.48 -5.833,-2.849 -8.79,-4.187c-5.628,-2.505 -11.307,-4.893 -16.946,-7.372c-4.978,-2.224 -9.923,-4.517 -14.772,-7.012c-6.133,-3.155 -12.116,-6.6 -17.908,-10.344c-16.303,-10.538 -31.006,-23.376 -44.538,-37.254c-11.524,-11.819 -22.174,-24.538 -31.129,-38.427c-2.222,-3.446 -4.334,-6.96 -6.341,-10.532c-3.276,-5.789 -6.267,-11.732 -9.045,-17.778c-2.983,-6.493 -5.714,-13.098 -8.565,-19.649c-0.732,-1.658 -1.472,-3.311 -2.226,-4.959c-1.338,-2.859 -2.715,-5.696 -4.214,-8.475l-0.261,-0.48c-1.814,-3.279 -3.775,-6.476 -5.879,-9.577c-6.246,-9.207 -13.679,-17.521 -21.5,-25.408c-8.215,-8.161 -17.023,-15.79 -26.776,-22.06c-3.507,-2.254 -7.133,-4.318 -10.843,-6.219c-3.467,-1.776 -7.007,-3.398 -10.562,-4.986c-5.102,-2.248 -10.233,-4.43 -15.332,-6.686c-4.996,-2.243 -9.958,-4.56 -14.824,-7.075c-6.142,-3.175 -12.134,-6.637 -17.938,-10.396c-16.311,-10.566 -31.033,-23.415 -44.581,-37.309c-11.523,-11.818 -22.169,-24.536 -31.126,-38.421c-4.922,-7.63 -9.299,-15.594 -13.211,-23.786c-3.764,-7.881 -7.073,-15.964 -10.57,-23.965c-0.736,-1.657 -1.481,-3.308 -2.239,-4.954c-1.111,-2.357 -2.246,-4.7 -3.463,-7.004c-1.98,-3.749 -4.145,-7.398 -6.499,-10.925c-6.697,-10.038 -14.803,-19.081 -23.373,-27.545c-8.695,-8.588 -18.029,-16.637 -28.422,-23.113c-3.491,-2.176 -7.094,-4.166 -10.778,-5.997c-7.854,-3.902 -16.011,-7.161 -24.042,-10.672c-2.166,-0.96 -2.161,-0.958 -4.32,-1.933c-4.334,-1.998 -8.634,-4.061 -12.855,-6.29c-6.214,-3.282 -12.261,-6.875 -18.107,-10.775c-14.647,-9.772 -27.968,-21.408 -40.325,-33.921c-12.467,-12.626 -23.958,-26.272 -33.471,-41.276c-4.579,-7.223 -8.675,-14.738 -12.36,-22.453c-3.764,-7.882 -7.069,-15.966 -10.569,-23.965c-0.735,-1.657 -1.481,-3.308 -2.239,-4.955c-1.234,-2.617 -2.5,-5.216 -3.869,-7.766c-1.867,-3.481 -3.898,-6.873 -6.091,-10.16c-6.698,-10.038 -14.805,-19.083 -23.375,-27.548c-8.698,-8.59 -18.035,-16.635 -28.43,-23.116c-3.72,-2.32 -7.569,-4.439 -11.511,-6.358c-7.641,-3.72 -15.525,-6.906 -23.308,-10.309c-1.439,-0.639 -2.876,-1.282 -4.311,-1.929c-3.912,-1.805 -7.8,-3.658 -11.624,-5.646c-6.17,-3.207 -12.181,-6.718 -17.996,-10.532c-15.174,-9.953 -28.935,-21.915 -41.669,-34.81c-12.467,-12.626 -23.958,-26.273 -33.472,-41.277c-4.578,-7.221 -8.672,-14.735 -12.357,-22.45c-3.764,-7.882 -7.073,-15.965 -10.57,-23.966c-0.736,-1.657 -1.481,-3.309 -2.24,-4.955c-1.235,-2.623 -2.506,-5.225 -3.875,-7.78c-1.865,-3.477 -3.895,-6.865 -6.085,-10.147c-6.698,-10.039 -14.805,-19.083 -23.376,-27.548c-8.736,-8.628 -18.116,-16.704 -28.549,-23.224c-3.529,-2.205 -7.17,-4.222 -10.891,-6.082c-7.877,-3.938 -16.062,-7.226 -24.12,-10.763c-1.438,-0.64 -2.875,-1.286 -4.309,-1.935c-4.321,-1.996 -8.608,-4.056 -12.818,-6.277c-6.199,-3.271 -12.234,-6.85 -18.067,-10.736c-14.558,-9.698 -27.805,-21.236 -40.08,-33.67c-12.039,-12.194 -23.148,-25.355 -32.447,-39.77c-4.921,-7.627 -9.305,-15.583 -13.237,-23.762c-3.813,-7.93 -7.178,-16.06 -10.732,-24.107c-0.751,-1.677 -1.512,-3.348 -2.286,-5.014c-1.134,-2.387 -2.29,-4.761 -3.528,-7.096c-2.006,-3.781 -4.192,-7.463 -6.568,-11.024c-6.044,-9.059 -13.233,-17.309 -20.875,-25.047c-8.593,-8.702 -17.802,-16.906 -28.054,-23.618c-3.757,-2.46 -7.651,-4.703 -11.648,-6.75c-2.89,-1.48 -5.833,-2.849 -8.79,-4.187c-5.628,-2.505 -11.307,-4.893 -16.946,-7.372c-4.978,-2.224 -9.923,-4.517 -14.772,-7.012c-6.133,-3.155 -12.116,-6.6 -17.908,-10.344c-16.303,-10.538 -31.006,-23.376 -44.538,-37.254c-11.524,-11.819 -22.174,-24.538 -31.129,-38.427c-4.919,-7.629 -9.297,-15.59 -13.208,-23.78c-3.764,-7.881 -7.069,-15.966 -10.57,-23.965c-0.733,-1.654 -1.477,-3.302 -2.235,-4.946c-1.235,-2.619 -2.502,-5.222 -3.872,-7.774c-2.025,-3.774 -4.242,-7.441 -6.646,-10.985c-6.311,-9.301 -13.832,-17.692 -21.741,-25.651l57.886,-57.524c6.57,6.611 12.91,13.444 18.837,20.639c7.414,9.001 14.174,18.539 20.044,28.619c3.853,6.617 7.306,13.453 10.484,20.418c2.936,6.436 5.633,12.977 8.467,19.457c0.735,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c1.867,3.48 3.896,6.871 6.088,10.156c6.701,10.038 14.804,19.084 23.376,27.549c8.736,8.627 18.114,16.706 28.548,23.224c3.532,2.206 7.177,4.225 10.901,6.088c7.878,3.94 16.067,7.225 24.125,10.766c1.431,0.637 2.86,1.278 4.287,1.924c4.325,1.997 8.616,4.059 12.829,6.282c6.195,3.269 12.225,6.847 18.055,10.728c14.564,9.695 27.811,21.241 40.09,33.675c12.041,12.194 23.149,25.357 32.45,39.773c4.92,7.626 9.303,15.581 13.235,23.759c3.812,7.928 7.175,16.057 10.73,24.101c0.752,1.678 1.513,3.352 2.288,5.02c1.136,2.393 2.297,4.771 3.537,7.112c2,3.775 4.185,7.452 6.557,11.006c6.048,9.061 13.237,17.313 20.881,25.055c8.591,8.702 17.802,16.906 28.052,23.616c3.514,2.3 7.147,4.413 10.873,6.349c3.141,1.633 6.348,3.131 9.572,4.591c5.626,2.504 11.304,4.89 16.941,7.37c4.569,2.039 9.112,4.136 13.576,6.401c6.549,3.322 12.933,6.966 19.102,10.953c15.705,10.152 29.918,22.442 43.041,35.729c12.098,12.25 23.278,25.461 32.622,39.946c4.922,7.629 9.298,15.592 13.21,23.783c3.767,7.885 7.076,15.973 10.576,23.977c0.732,1.653 1.476,3.3 2.233,4.942c1.112,2.357 2.247,4.702 3.464,7.007c1.98,3.749 4.146,7.398 6.499,10.925c6.695,10.037 14.801,19.081 23.371,27.543c8.697,8.588 18.032,16.636 28.427,23.116c3.724,2.321 7.576,4.441 11.52,6.363c7.64,3.721 15.525,6.903 23.307,10.309c1.437,0.637 2.872,1.279 4.304,1.926c4.332,1.997 8.629,4.06 12.848,6.286c5.744,3.031 11.345,6.33 16.776,9.892c15.174,9.953 28.932,21.914 41.666,34.808c12.469,12.625 23.961,26.274 33.474,41.279c4.578,7.221 8.672,14.734 12.356,22.447c3.765,7.883 7.073,15.968 10.572,23.969c0.735,1.656 1.48,3.307 2.239,4.953c1.233,2.619 2.501,5.218 3.869,7.77c1.867,3.479 3.897,6.871 6.089,10.155c6.091,9.127 13.351,17.427 21.05,25.224c8.689,8.799 17.994,17.112 28.355,23.908c3.512,2.304 7.144,4.421 10.871,6.358c3.121,1.623 6.308,3.109 9.514,4.558c5.591,2.478 11.233,4.838 16.838,7.288c4.962,2.203 9.892,4.475 14.726,6.951c6.121,3.135 12.093,6.561 17.873,10.289c15.695,10.126 29.889,22.402 42.995,35.673c12.099,12.25 23.278,25.46 32.623,39.945c4.921,7.629 9.297,15.592 13.209,23.783c3.765,7.882 7.073,15.967 10.572,23.968c0.735,1.656 1.479,3.306 2.237,4.951c1.112,2.358 2.247,4.702 3.464,7.007c1.979,3.748 4.143,7.395 6.496,10.92c6.7,10.038 14.802,19.084 23.374,27.548c8.778,8.668 18.204,16.776 28.678,23.338c3.794,2.376 7.716,4.555 11.733,6.531c7.694,3.785 15.631,7.039 23.474,10.495c1.43,0.639 2.859,1.282 4.286,1.929c4.315,1.997 8.599,4.058 12.805,6.277c6.171,3.256 12.182,6.814 17.994,10.676c8.806,5.852 17.145,12.386 25.063,19.39c4.034,3.568 7.945,7.267 11.789,11.038c0.263,0.262 0.526,0.523 0.789,0.785l0.002,-0.002l0.533,0.537c0.56,0.559 1.119,1.12 1.677,1.681c6.382,6.506 12.531,13.233 18.258,20.326c6.849,8.481 13.086,17.451 18.535,26.895c0.8,1.387 1.582,2.783 2.348,4.188c2.879,5.242 5.531,10.606 8.014,16.049c2.936,6.436 5.633,12.977 8.467,19.457c0.735,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c0.227,0.423 0.457,0.845 0.689,1.266c1.703,3.053 3.533,6.034 5.484,8.935c6.573,9.774 14.438,18.585 22.717,26.935l0.574,0.569c8.736,8.627 18.114,16.706 28.548,23.224c3.532,2.206 7.177,4.225 10.901,6.088c7.878,3.94 16.067,7.225 24.125,10.766c1.431,0.637 2.86,1.278 4.287,1.924c4.325,1.997 8.616,4.059 12.829,6.282c6.195,3.269 12.225,6.847 18.055,10.728c14.564,9.695 27.811,21.241 40.09,33.675c12.041,12.194 23.149,25.357 32.45,39.773c4.92,7.626 9.303,15.581 13.235,23.759c3.812,7.928 7.175,16.057 10.73,24.1c0.752,1.679 1.513,3.353 2.288,5.021c1.136,2.393 2.297,4.771 3.537,7.112c2,3.775 4.185,7.452 6.557,11.006c6.048,9.061 13.237,17.313 20.881,25.055c8.591,8.702 17.802,16.906 28.052,23.616c3.514,2.3 7.147,4.413 10.873,6.349c3.141,1.633 6.348,3.131 9.572,4.591c5.626,2.504 11.304,4.89 16.941,7.37c4.569,2.039 9.112,4.136 13.576,6.401c6.549,3.322 12.933,6.966 19.102,10.953c15.705,10.152 29.918,22.442 43.041,35.729c12.098,12.25 23.278,25.461 32.622,39.946c4.922,7.629 9.298,15.592 13.21,23.783c3.767,7.885 7.076,15.973 10.576,23.977c0.732,1.653 1.476,3.3 2.233,4.942c1.112,2.357 2.247,4.702 3.464,7.007c1.98,3.749 4.146,7.398 6.499,10.925c6.695,10.037 14.801,19.081 23.371,27.543c8.697,8.588 18.032,16.636 28.427,23.116c3.724,2.321 7.576,4.441 11.52,6.363c7.64,3.721 15.525,6.903 23.307,10.309c1.437,0.637 2.872,1.279 4.304,1.926c4.332,1.997 8.629,4.06 12.848,6.286c5.744,3.031 11.345,6.33 16.776,9.892c15.174,9.953 28.932,21.914 41.666,34.808c12.469,12.625 23.961,26.274 33.474,41.279c4.578,7.221 8.672,14.734 12.356,22.447c3.765,7.883 7.073,15.968 10.572,23.969c0.735,1.656 1.48,3.307 2.239,4.953c1.233,2.619 2.501,5.218 3.869,7.77c1.867,3.479 3.897,6.871 6.089,10.155c6.091,9.127 13.351,17.427 21.05,25.224c8.689,8.799 17.994,17.112 28.355,23.908c3.512,2.304 7.144,4.421 10.871,6.358c3.121,1.623 6.308,3.109 9.514,4.558c5.591,2.478 11.233,4.838 16.838,7.288c4.962,2.203 9.892,4.475 14.726,6.951c6.121,3.135 12.093,6.561 17.873,10.289c14.788,9.54 28.243,20.99 40.712,33.382l0.001,-0.001l0.146,0.148c0.716,0.711 1.428,1.426 2.136,2.144c12.099,12.25 23.278,25.46 32.623,39.945c4.921,7.629 9.297,15.592 13.209,23.783c3.765,7.882 7.073,15.967 10.572,23.968c0.735,1.656 1.479,3.306 2.237,4.951c1.112,2.358 2.247,4.702 3.464,7.007c1.979,3.748 4.143,7.395 6.496,10.92c6.262,9.383 13.751,17.899 21.702,25.883c0.273,0.271 0.546,0.542 0.82,0.813c8.736,8.626 18.114,16.705 28.547,23.223c3.532,2.207 7.177,4.225 10.902,6.088c7.877,3.94 16.066,7.225 24.125,10.766c1.431,0.637 2.859,1.279 4.286,1.924c4.325,1.997 8.616,4.06 12.83,6.283c6.194,3.268 12.224,6.846 18.055,10.727c14.393,9.583 27.502,20.972 39.659,33.241c0.424,0.425 0.848,0.85 1.271,1.275c6.382,6.506 12.531,13.233 18.258,20.326c6.849,8.481 13.086,17.451 18.535,26.895c3.376,5.853 6.44,11.878 9.276,18.009c0.628,1.359 1.245,2.722 1.853,4.088c2.612,5.797 5.082,11.658 7.652,17.474c0.752,1.679 1.514,3.352 2.289,5.021c1.136,2.392 2.296,4.771 3.536,7.111c1.732,3.268 3.602,6.463 5.612,9.568c0.294,0.451 0.592,0.9 0.893,1.347c6.587,9.794 14.47,18.62 22.767,26.986c8.067,8.016 16.694,15.541 26.219,21.777c3.513,2.3 7.146,4.412 10.872,6.349c3.142,1.632 6.348,3.13 9.572,4.591c5.627,2.503 11.304,4.889 16.941,7.37c4.57,2.039 9.112,4.136 13.576,6.4c6.549,3.323 12.934,6.966 19.102,10.953c15.706,10.153 29.918,22.442 43.041,35.73c12.099,12.25 23.278,25.461 32.623,39.945c4.921,7.629 9.298,15.592 13.21,23.783c3.766,7.885 7.075,15.973 10.575,23.977c0.733,1.653 1.476,3.3 2.233,4.942c1.112,2.358 2.247,4.702 3.464,7.007c1.98,3.75 4.146,7.398 6.499,10.926c6.695,10.036 14.802,19.08 23.371,27.542c8.698,8.589 18.032,16.637 28.427,23.116c3.724,2.321 7.576,4.442 11.521,6.363c7.639,3.722 15.524,6.903 23.306,10.309c1.437,0.637 2.872,1.279 4.305,1.926c4.331,1.997 8.628,4.06 12.847,6.287c5.744,3.03 11.346,6.33 16.776,9.892c15.174,9.953 28.932,21.914 41.666,34.808c12.469,12.625 23.961,26.274 33.475,41.279c4.578,7.22 8.671,14.733 12.356,22.447c3.765,7.882 7.073,15.967 10.571,23.968c0.735,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c1.867,3.48 3.896,6.871 6.088,10.156c6.092,9.126 13.351,17.427 21.05,25.223c8.689,8.799 17.994,17.112 28.355,23.908c3.512,2.304 7.144,4.422 10.871,6.359c3.122,1.622 6.309,3.108 9.514,4.557c5.592,2.478 11.234,4.839 16.838,7.288c4.963,2.203 9.893,4.476 14.726,6.951c6.122,3.135 12.093,6.561 17.873,10.29c15.696,10.125 29.889,22.401 42.996,35.672c12.098,12.25 23.278,25.461 32.622,39.945c4.921,7.629 9.298,15.593 13.21,23.783c3.765,7.882 7.073,15.967 10.571,23.968c0.735,1.656 1.479,3.306 2.237,4.952c1.112,2.357 2.247,4.702 3.465,7.007c1.979,3.747 4.143,7.395 6.496,10.92c6.699,10.037 14.802,19.083 23.374,27.548c8.778,8.667 18.203,16.775 28.678,23.337c3.793,2.377 7.715,4.556 11.732,6.532c7.694,3.784 15.631,7.038 23.474,10.494c1.431,0.639 2.859,1.282 4.286,1.93c4.315,1.997 8.599,4.057 12.805,6.276c6.172,3.257 12.182,6.815 17.994,10.677c8.807,5.852 17.145,12.386 25.063,19.389c4.034,3.569 7.945,7.267 11.789,11.039c0.264,0.261 0.526,0.523 0.789,0.785l0.003,-0.003l0.533,0.538c0.56,0.559 1.118,1.119 1.676,1.681c6.383,6.505 12.531,13.233 18.258,20.326c6.849,8.481 13.086,17.451 18.535,26.895c0.8,1.386 1.582,2.782 2.348,4.187c2.879,5.243 5.531,10.607 8.014,16.05c2.937,6.435 5.634,12.976 8.468,19.457c0.735,1.656 1.479,3.307 2.238,4.953c1.234,2.618 2.502,5.218 3.87,7.769c0.228,0.424 0.457,0.846 0.689,1.267c1.704,3.052 3.533,6.033 5.484,8.934c6.574,9.774 14.438,18.585 22.717,26.935l0.575,0.57c8.736,8.626 18.114,16.705 28.547,23.223c3.532,2.207 7.177,4.225 10.902,6.088c7.877,3.94 16.066,7.225 24.125,10.766c1.431,0.637 2.859,1.279 4.286,1.924c4.325,1.997 8.616,4.06 12.83,6.283c6.194,3.268 12.224,6.846 18.055,10.727c13.324,8.871 25.546,19.29 36.933,30.521l-57.707,57.707ZM3029.04,3832.19c-8.02,-7.886 -16.601,-15.259 -26.066,-21.353c-3.505,-2.256 -7.127,-4.325 -10.837,-6.224c-3.447,-1.765 -6.966,-3.376 -10.503,-4.95c-5.069,-2.228 -10.169,-4.384 -15.238,-6.612c-4.98,-2.225 -9.928,-4.518 -14.778,-7.014c-6.131,-3.155 -12.112,-6.599 -17.903,-10.342c-16.302,-10.538 -31.006,-23.376 -44.537,-37.254c-11.524,-11.819 -22.174,-24.538 -31.129,-38.426c-2.197,-3.407 -4.286,-6.88 -6.273,-10.41c-3.303,-5.829 -6.318,-11.815 -9.115,-17.904c-2.982,-6.492 -5.712,-13.096 -8.564,-19.646c-0.731,-1.657 -1.471,-3.309 -2.224,-4.956c-1.338,-2.86 -2.716,-5.698 -4.216,-8.478l-0.261,-0.481c-1.813,-3.277 -3.772,-6.472 -5.876,-9.571c-6.231,-9.181 -13.637,-17.476 -21.435,-25.344l-0.547,-0.543c-8.298,-8.191 -17.205,-15.848 -27.081,-22.086c-4.002,-2.528 -8.154,-4.806 -12.402,-6.893c-7.029,-3.454 -14.284,-6.432 -21.456,-9.571c-1.417,-0.627 -2.832,-1.258 -4.246,-1.893c-4.268,-1.95 -8.509,-3.956 -12.678,-6.112c-6.618,-3.421 -13.062,-7.176 -19.283,-11.276c-15.183,-10.006 -28.973,-21.98 -41.734,-34.901c-12.099,-12.25 -23.278,-25.461 -32.622,-39.946c-4.922,-7.629 -9.298,-15.592 -13.21,-23.782c-3.765,-7.883 -7.073,-15.968 -10.572,-23.969c-0.735,-1.656 -1.479,-3.306 -2.237,-4.951c-1.112,-2.358 -2.247,-4.702 -3.464,-7.007c-1.827,-3.459 -3.811,-6.835 -5.957,-10.106c-6.2,-9.446 -13.662,-18.01 -21.589,-26.038c-8.915,-9.028 -18.481,-17.543 -29.166,-24.436c-3.501,-2.259 -7.121,-4.329 -10.83,-6.227c-3.421,-1.752 -6.917,-3.349 -10.43,-4.908c-5.037,-2.202 -10.105,-4.335 -15.143,-6.537c-4.966,-2.202 -9.898,-4.478 -14.735,-6.955c-6.121,-3.135 -12.093,-6.561 -17.873,-10.289c-15.696,-10.126 -29.889,-22.402 -42.995,-35.673c-12.1,-12.251 -23.285,-25.465 -32.628,-39.953c-4.918,-7.628 -9.294,-15.587 -13.205,-23.775c-3.765,-7.882 -7.068,-15.969 -10.571,-23.968c-0.734,-1.656 -1.479,-3.306 -2.237,-4.951c-1.235,-2.618 -2.501,-5.219 -3.87,-7.77c-1.867,-3.479 -3.896,-6.871 -6.088,-10.155c-6.7,-10.038 -14.804,-19.085 -23.376,-27.55c-8.698,-8.589 -18.032,-16.637 -28.427,-23.116c-3.721,-2.32 -7.57,-4.441 -11.513,-6.359c-7.643,-3.72 -15.527,-6.908 -23.312,-10.311c-1.438,-0.638 -2.873,-1.281 -4.307,-1.928c-3.916,-1.806 -7.806,-3.66 -11.632,-5.649c-6.169,-3.208 -12.178,-6.717 -17.992,-10.53c-15.173,-9.953 -28.931,-21.914 -41.665,-34.808c-12.469,-12.625 -23.961,-26.274 -33.475,-41.279c-4.578,-7.22 -8.671,-14.734 -12.356,-22.447c-3.765,-7.882 -7.073,-15.967 -10.571,-23.968c-0.735,-1.657 -1.48,-3.308 -2.239,-4.953c-1.236,-2.623 -2.507,-5.227 -3.877,-7.783c-1.863,-3.476 -3.892,-6.862 -6.081,-10.143c-6.7,-10.038 -14.804,-19.084 -23.376,-27.549c-8.736,-8.626 -18.114,-16.706 -28.548,-23.224c-3.532,-2.206 -7.177,-4.225 -10.901,-6.088c-7.874,-3.938 -16.058,-7.225 -24.114,-10.76c-1.438,-0.64 -2.873,-1.285 -4.307,-1.934c-4.322,-1.995 -8.61,-4.057 -12.82,-6.278c-6.198,-3.27 -12.23,-6.849 -18.063,-10.733c-13.664,-9.101 -26.171,-19.825 -37.806,-31.387l-0.001,0.001l-0.147,-0.149c-0.713,-0.708 -1.422,-1.42 -2.128,-2.135c-12.041,-12.194 -23.149,-25.357 -32.45,-39.773l-0.2,-0.312c-1.601,-2.473 -3.15,-4.98 -4.644,-7.522c-3.925,-6.681 -7.449,-13.582 -10.683,-20.622c-2.982,-6.493 -5.712,-13.097 -8.564,-19.646c-0.348,-0.788 -0.697,-1.574 -1.049,-2.359c-0.368,-0.808 -0.739,-1.614 -1.113,-2.419c-1.134,-2.388 -2.291,-4.763 -3.53,-7.098c-2.004,-3.78 -4.189,-7.462 -6.564,-11.02c-6.048,-9.061 -13.237,-17.313 -20.881,-25.055l-0.724,-0.73l-0.698,-0.692c-8.298,-8.192 -17.205,-15.849 -27.081,-22.087c-4.003,-2.527 -8.154,-4.805 -12.402,-6.892c-7.03,-3.454 -14.285,-6.432 -21.456,-9.572c-1.417,-0.627 -2.832,-1.258 -4.246,-1.892c-4.268,-1.951 -8.509,-3.957 -12.678,-6.112c-6.618,-3.421 -13.063,-7.176 -19.284,-11.276c-14.584,-9.612 -27.882,-21.039 -40.219,-33.378c-1.299,-1.291 -2.587,-2.592 -3.865,-3.903c-11.524,-11.819 -22.174,-24.538 -31.129,-38.426c-4.919,-7.629 -9.296,-15.589 -13.207,-23.777c-3.765,-7.883 -7.069,-15.969 -10.571,-23.968c-0.733,-1.654 -1.476,-3.301 -2.234,-4.943c-1.236,-2.621 -2.503,-5.225 -3.873,-7.778c-2.024,-3.772 -4.24,-7.439 -6.644,-10.98c-6.257,-9.22 -13.699,-17.546 -21.533,-25.444c-8.375,-8.321 -17.342,-16.131 -27.276,-22.539c-3.501,-2.259 -7.121,-4.329 -10.829,-6.228c-3.422,-1.751 -6.917,-3.348 -10.43,-4.907c-5.038,-2.203 -10.105,-4.335 -15.143,-6.537c-4.967,-2.202 -9.899,-4.478 -14.735,-6.955c-6.122,-3.135 -12.093,-6.561 -17.873,-10.29c-15.696,-10.125 -29.889,-22.401 -42.996,-35.672c-12.1,-12.252 -23.285,-25.465 -32.627,-39.954c-4.919,-7.627 -9.294,-15.587 -13.205,-23.774c-3.765,-7.883 -7.069,-15.969 -10.571,-23.968c-0.734,-1.656 -1.479,-3.306 -2.238,-4.952c-1.234,-2.618 -2.5,-5.218 -3.869,-7.769c-1.867,-3.48 -3.896,-6.871 -6.089,-10.156c-6.7,-10.038 -14.803,-19.085 -23.375,-27.549c-8.698,-8.589 -18.033,-16.637 -28.428,-23.116c-3.721,-2.32 -7.57,-4.441 -11.512,-6.36c-7.643,-3.719 -15.527,-6.908 -23.312,-10.31c-1.438,-0.639 -2.874,-1.281 -4.307,-1.929c-3.916,-1.805 -7.807,-3.66 -11.633,-5.649c-6.168,-3.207 -12.178,-6.716 -17.991,-10.529c-15.173,-9.953 -28.931,-21.914 -41.666,-34.808c-12.469,-12.625 -23.96,-26.274 -33.474,-41.279c-4.578,-7.221 -8.672,-14.734 -12.356,-22.447c-3.765,-7.883 -7.073,-15.967 -10.572,-23.969c-0.735,-1.656 -1.479,-3.307 -2.239,-4.953c-1.235,-2.623 -2.506,-5.226 -3.876,-7.782c-1.863,-3.476 -3.892,-6.863 -6.082,-10.143c-6.7,-10.038 -14.803,-19.085 -23.376,-27.55c-8.735,-8.626 -18.114,-16.705 -28.547,-23.223c-3.532,-2.207 -7.177,-4.225 -10.902,-6.088c-7.873,-3.938 -16.057,-7.225 -24.114,-10.76c-1.437,-0.64 -2.873,-1.285 -4.306,-1.934c-4.322,-1.996 -8.61,-4.057 -12.821,-6.279c-6.197,-3.27 -12.23,-6.848 -18.062,-10.732c-14.56,-9.697 -27.805,-21.238 -40.082,-33.67c-12.041,-12.194 -23.15,-25.357 -32.45,-39.773c-4.92,-7.627 -9.303,-15.582 -13.236,-23.759c-3.813,-7.931 -7.177,-16.063 -10.733,-24.11c-0.75,-1.676 -1.511,-3.346 -2.285,-5.012c-1.134,-2.387 -2.29,-4.762 -3.529,-7.098c-2.005,-3.779 -4.189,-7.461 -6.564,-11.02c-6.048,-9.061 -13.238,-17.313 -20.882,-25.054c-8.815,-8.929 -18.284,-17.332 -28.856,-24.138c-3.505,-2.257 -7.128,-4.325 -10.838,-6.225c-3.446,-1.764 -6.966,-3.375 -10.503,-4.949c-5.068,-2.228 -10.169,-4.385 -15.238,-6.612c-4.98,-2.225 -9.927,-4.519 -14.778,-7.015c-6.13,-3.155 -12.111,-6.598 -17.902,-10.341c-16.303,-10.539 -31.006,-23.376 -44.538,-37.254c-11.524,-11.819 -22.174,-24.539 -31.129,-38.427c-2.196,-3.407 -4.285,-6.88 -6.272,-10.41c-3.303,-5.828 -6.318,-11.814 -9.115,-17.903c-2.982,-6.493 -5.712,-13.097 -8.564,-19.646c-0.731,-1.658 -1.471,-3.309 -2.224,-4.956c-1.339,-2.86 -2.716,-5.699 -4.216,-8.478l-0.261,-0.481c-1.813,-3.278 -3.773,-6.472 -5.876,-9.572c-6.231,-9.181 -13.637,-17.476 -21.435,-25.344l-0.547,-0.542c-8.298,-8.192 -17.205,-15.849 -27.081,-22.087c-4.003,-2.527 -8.154,-4.805 -12.402,-6.892c-7.03,-3.454 -14.285,-6.432 -21.456,-9.572c-1.417,-0.627 -2.832,-1.258 -4.246,-1.892c-4.268,-1.951 -8.509,-3.957 -12.678,-6.112c-6.618,-3.421 -13.063,-7.176 -19.284,-11.276c-15.183,-10.007 -28.972,-21.98 -41.734,-34.902c-12.098,-12.25 -23.278,-25.461 -32.622,-39.945c-4.921,-7.629 -9.298,-15.592 -13.21,-23.783c-3.765,-7.882 -7.073,-15.967 -10.571,-23.968c-0.735,-1.656 -1.479,-3.306 -2.237,-4.952c-1.112,-2.357 -2.247,-4.701 -3.465,-7.006c-1.826,-3.46 -3.81,-6.835 -5.956,-10.106c-6.2,-9.447 -13.662,-18.01 -21.589,-26.038c-8.916,-9.029 -18.482,-17.543 -29.167,-24.436c-3.501,-2.259 -7.121,-4.329 -10.829,-6.228c-3.422,-1.751 -6.917,-3.348 -10.43,-4.907c-5.038,-2.203 -10.105,-4.335 -15.143,-6.537c-4.967,-2.202 -9.899,-4.478 -14.735,-6.955c-6.122,-3.135 -12.093,-6.561 -17.873,-10.29c-15.696,-10.125 -29.889,-22.401 -42.996,-35.672c-12.1,-12.252 -23.285,-25.465 -32.627,-39.954c-4.919,-7.627 -9.294,-15.587 -13.205,-23.774c-3.765,-7.883 -7.069,-15.969 -10.571,-23.968c-0.734,-1.656 -1.479,-3.306 -2.238,-4.952c-1.234,-2.618 -2.5,-5.218 -3.869,-7.769c-1.867,-3.48 -3.896,-6.871 -6.089,-10.156c-6.7,-10.038 -14.803,-19.085 -23.375,-27.549c-8.698,-8.589 -18.033,-16.637 -28.428,-23.116c-3.721,-2.32 -7.57,-4.441 -11.512,-6.36c-7.643,-3.719 -15.527,-6.908 -23.312,-10.31c-1.438,-0.639 -2.874,-1.281 -4.307,-1.929c-3.916,-1.805 -7.807,-3.66 -11.633,-5.649c-6.168,-3.207 -12.178,-6.716 -17.991,-10.529c-15.173,-9.953 -28.931,-21.914 -41.666,-34.808c-12.469,-12.625 -23.96,-26.274 -33.474,-41.279c-4.578,-7.221 -8.672,-14.734 -12.356,-22.447c-3.765,-7.883 -7.073,-15.967 -10.572,-23.969c-0.735,-1.656 -1.479,-3.307 -2.239,-4.953c-1.235,-2.623 -2.506,-5.226 -3.876,-7.782c-1.863,-3.476 -3.892,-6.863 -6.082,-10.143c-6.7,-10.038 -14.803,-19.085 -23.376,-27.55c-8.735,-8.626 -18.114,-16.705 -28.547,-23.223c-3.532,-2.207 -7.177,-4.225 -10.902,-6.088c-7.873,-3.938 -16.057,-7.225 -24.114,-10.76c-1.437,-0.64 -2.873,-1.285 -4.306,-1.934c-4.322,-1.996 -8.61,-4.057 -12.821,-6.279c-6.197,-3.27 -12.23,-6.848 -18.062,-10.732c-14.56,-9.697 -27.805,-21.238 -40.082,-33.67c-12.041,-12.194 -23.15,-25.357 -32.45,-39.773c-4.92,-7.627 -9.303,-15.582 -13.236,-23.759c-3.813,-7.931 -7.177,-16.063 -10.733,-24.11c-0.75,-1.676 -1.511,-3.346 -2.285,-5.012c-1.134,-2.387 -2.29,-4.762 -3.529,-7.098c-2.005,-3.779 -4.189,-7.461 -6.564,-11.02c-6.048,-9.061 -13.238,-17.313 -20.882,-25.054c-8.815,-8.929 -18.284,-17.332 -28.856,-24.138c-3.505,-2.257 -7.128,-4.325 -10.838,-6.225c-3.446,-1.764 -6.966,-3.375 -10.503,-4.949c-5.068,-2.228 -10.169,-4.385 -15.238,-6.612c-4.98,-2.225 -9.927,-4.519 -14.778,-7.015c-6.13,-3.155 -12.111,-6.598 -17.902,-10.341c-16.303,-10.539 -31.006,-23.376 -44.538,-37.254c-11.524,-11.819 -22.174,-24.539 -31.129,-38.427c-4.918,-7.628 -9.295,-15.588 -13.207,-23.777c-3.765,-7.882 -7.068,-15.968 -10.571,-23.968c-0.733,-1.653 -1.476,-3.301 -2.233,-4.943c-1.236,-2.621 -2.504,-5.224 -3.874,-7.778c-2.024,-3.771 -4.239,-7.438 -6.643,-10.98c-6.313,-9.302 -13.833,-17.695 -21.743,-25.655l57.886,-57.525c6.569,6.611 12.909,13.444 18.836,20.64c7.414,9.001 14.174,18.539 20.044,28.619c3.852,6.616 7.305,13.451 10.483,20.415c2.937,6.436 5.635,12.978 8.468,19.46c0.736,1.658 1.481,3.309 2.241,4.956c1.233,2.618 2.5,5.217 3.868,7.767c1.868,3.481 3.899,6.873 6.092,10.16c6.698,10.038 14.804,19.082 23.375,27.548c8.736,8.628 18.117,16.703 28.55,23.223c3.528,2.205 7.17,4.222 10.891,6.083c7.88,3.94 16.07,7.226 24.131,10.769c1.431,0.637 2.861,1.279 4.289,1.925c4.324,1.997 8.614,4.058 12.827,6.281c6.196,3.269 12.228,6.848 18.059,10.731c14.562,9.696 27.811,21.24 40.088,33.674c12.039,12.194 23.147,25.356 32.447,39.771c4.92,7.627 9.305,15.583 13.237,23.761c3.811,7.928 7.175,16.055 10.728,24.098c0.753,1.68 1.514,3.355 2.29,5.024c1.135,2.392 2.295,4.769 3.535,7.108c2.001,3.778 4.188,7.456 6.56,11.011c6.045,9.059 13.234,17.31 20.876,25.048c8.593,8.702 17.803,16.907 28.055,23.619c3.757,2.46 7.651,4.702 11.647,6.749c2.893,1.482 5.84,2.851 8.8,4.192c5.625,2.504 11.302,4.888 16.938,7.369c4.572,2.039 9.116,4.137 13.581,6.403c6.547,3.323 12.93,6.964 19.097,10.951c16.303,10.538 31.006,23.376 44.537,37.254c11.523,11.818 22.169,24.536 31.127,38.42c4.922,7.63 9.299,15.595 13.211,23.786c3.765,7.885 7.075,15.971 10.574,23.975c0.733,1.654 1.477,3.301 2.234,4.945c1.112,2.356 2.247,4.699 3.463,7.004c1.981,3.751 4.148,7.4 6.502,10.929c6.694,10.037 14.803,19.079 23.371,27.541c8.698,8.59 18.034,16.635 28.429,23.116c3.723,2.322 7.575,4.44 11.519,6.362c7.638,3.722 15.523,6.901 23.303,10.308c1.438,0.637 2.874,1.28 4.308,1.927c4.33,1.997 8.626,4.059 12.844,6.285c5.744,3.031 11.346,6.33 16.776,9.892c15.174,9.953 28.935,21.915 41.669,34.811c12.467,12.625 23.959,26.272 33.472,41.276c4.578,7.221 8.672,14.736 12.357,22.45c3.764,7.882 7.073,15.965 10.57,23.966c0.736,1.657 1.481,3.309 2.24,4.956c1.233,2.617 2.501,5.216 3.869,7.766c1.868,3.482 3.898,6.874 6.091,10.16c6.088,9.125 13.348,17.424 21.044,25.217c8.691,8.799 17.996,17.113 28.358,23.91c3.756,2.464 7.648,4.712 11.646,6.759c2.873,1.472 5.801,2.829 8.742,4.159c5.59,2.478 11.232,4.837 16.835,7.287c4.961,2.201 9.888,4.474 14.72,6.948c6.124,3.135 12.098,6.562 17.879,10.292c16.293,10.511 30.976,23.336 44.491,37.197c11.524,11.818 22.17,24.536 31.127,38.421c4.922,7.63 9.299,15.594 13.211,23.785c3.764,7.882 7.073,15.965 10.57,23.966c0.736,1.657 1.48,3.308 2.238,4.954c1.112,2.357 2.247,4.7 3.464,7.004c1.979,3.749 4.145,7.398 6.498,10.924c6.698,10.038 14.804,19.082 23.374,27.546c8.778,8.67 18.206,16.774 28.68,23.338c3.793,2.377 7.715,4.554 11.731,6.53c7.693,3.785 15.629,7.037 23.471,10.493c1.432,0.64 2.861,1.283 4.289,1.931c4.314,1.997 8.597,4.057 12.802,6.275c6.173,3.257 12.186,6.816 17.999,10.68c8.805,5.853 17.145,12.385 25.061,19.39c4.032,3.566 7.941,7.264 11.784,11.032c0.264,0.263 0.527,0.525 0.791,0.788l0.003,-0.003l0.534,0.539c0.56,0.56 1.12,1.121 1.678,1.683c6.379,6.505 12.525,13.229 18.252,20.319c6.851,8.482 13.088,17.454 18.538,26.899c0.78,1.352 1.542,2.712 2.289,4.081c2.902,5.276 5.572,10.675 8.072,16.153c2.937,6.436 5.635,12.978 8.468,19.46c0.736,1.658 1.481,3.309 2.241,4.956c1.233,2.618 2.5,5.217 3.868,7.767c0.237,0.441 0.477,0.881 0.719,1.32c1.86,3.329 3.871,6.573 6.024,9.721c6.456,9.439 14.101,17.979 22.14,26.088l0.584,0.579c8.736,8.628 18.117,16.703 28.55,23.223c3.528,2.205 7.17,4.222 10.891,6.083c7.88,3.94 16.07,7.226 24.131,10.769c1.431,0.637 2.861,1.279 4.289,1.925c4.324,1.997 8.614,4.058 12.827,6.281c6.196,3.269 12.228,6.848 18.059,10.731c14.562,9.696 27.811,21.24 40.088,33.674c12.039,12.194 23.147,25.356 32.447,39.771c4.92,7.627 9.305,15.583 13.237,23.761c3.811,7.928 7.175,16.055 10.728,24.098c0.753,1.68 1.514,3.355 2.29,5.024c1.135,2.392 2.295,4.769 3.535,7.108c2.001,3.778 4.188,7.456 6.56,11.011c6.045,9.059 13.234,17.31 20.876,25.048c8.593,8.702 17.803,16.907 28.055,23.619c3.757,2.46 7.651,4.702 11.647,6.749c2.893,1.482 5.84,2.851 8.8,4.192c5.625,2.504 11.302,4.888 16.938,7.369c4.572,2.039 9.116,4.137 13.581,6.403c6.547,3.323 12.93,6.964 19.097,10.951c16.303,10.538 31.006,23.376 44.537,37.254c11.523,11.818 22.169,24.536 31.127,38.42c4.922,7.63 9.299,15.595 13.211,23.786c3.765,7.885 7.075,15.971 10.574,23.975c0.733,1.654 1.477,3.301 2.234,4.945c1.112,2.356 2.247,4.699 3.463,7.004c1.981,3.751 4.148,7.4 6.502,10.929c6.694,10.037 14.803,19.079 23.371,27.541c8.698,8.59 18.034,16.635 28.429,23.116c3.723,2.322 7.575,4.44 11.519,6.362c7.638,3.722 15.523,6.901 23.303,10.308c1.438,0.637 2.874,1.28 4.308,1.927c4.33,1.997 8.626,4.059 12.844,6.285c5.744,3.031 11.346,6.33 16.776,9.892c15.174,9.953 28.935,21.915 41.669,34.811c12.467,12.625 23.959,26.272 33.472,41.276c4.578,7.221 8.672,14.736 12.357,22.45c3.764,7.882 7.073,15.965 10.57,23.966c0.736,1.657 1.481,3.309 2.24,4.956c1.233,2.617 2.501,5.216 3.869,7.766c1.868,3.482 3.898,6.874 6.091,10.16c6.088,9.125 13.348,17.424 21.044,25.217c8.691,8.799 17.996,17.113 28.358,23.91c3.756,2.464 7.648,4.712 11.646,6.759c2.873,1.472 5.801,2.829 8.742,4.159c5.59,2.478 11.232,4.837 16.835,7.287c4.961,2.201 9.888,4.474 14.72,6.948c6.124,3.135 12.098,6.562 17.879,10.292c16.293,10.511 30.976,23.336 44.491,37.197c11.524,11.818 22.17,24.536 31.127,38.421c4.922,7.63 9.299,15.594 13.211,23.785c3.764,7.882 7.073,15.965 10.57,23.966c0.736,1.657 1.48,3.308 2.238,4.954c1.112,2.357 2.247,4.7 3.464,7.004c1.979,3.749 4.145,7.398 6.498,10.924c6.264,9.388 13.76,17.906 21.715,25.894c0.268,0.267 0.537,0.534 0.807,0.8c8.736,8.628 18.116,16.704 28.549,23.224c3.529,2.205 7.17,4.221 10.891,6.082c7.881,3.94 16.071,7.226 24.131,10.769c1.432,0.637 2.862,1.279 4.289,1.925c4.324,1.997 8.614,4.059 12.827,6.281c6.196,3.27 12.228,6.848 18.06,10.731c14.395,9.586 27.507,20.976 39.665,33.248c0.422,0.422 0.843,0.845 1.263,1.268c6.379,6.505 12.525,13.229 18.252,20.319c6.851,8.482 13.088,17.454 18.538,26.899c3.781,6.554 7.164,13.324 10.285,20.215c0.3,0.661 0.597,1.324 0.892,1.988c2.594,5.762 5.051,11.587 7.604,17.368c0.753,1.68 1.515,3.354 2.29,5.024c1.136,2.391 2.296,4.768 3.535,7.108c1.729,3.261 3.594,6.448 5.599,9.547c0.484,0.741 0.976,1.477 1.476,2.208c6.466,9.454 14.124,18.005 22.177,26.124c8.073,8.024 16.705,15.557 26.239,21.798c3.757,2.46 7.651,4.703 11.647,6.749c2.893,1.482 5.84,2.852 8.801,4.193c5.625,2.504 11.302,4.888 16.937,7.368c4.572,2.04 9.117,4.138 13.581,6.404c6.548,3.322 12.931,6.964 19.097,10.95c16.303,10.538 31.006,23.376 44.538,37.254c11.523,11.818 22.169,24.536 31.126,38.421c4.922,7.63 9.299,15.594 13.211,23.786c3.765,7.884 7.076,15.97 10.574,23.974c0.733,1.654 1.478,3.302 2.235,4.945c1.111,2.357 2.246,4.7 3.463,7.004c1.981,3.751 4.148,7.401 6.501,10.93c6.694,10.037 14.803,19.078 23.371,27.54c8.698,8.591 18.035,16.635 28.429,23.117c3.723,2.321 7.575,4.44 11.519,6.361c7.638,3.722 15.523,6.901 23.303,10.308c1.438,0.637 2.874,1.28 4.308,1.927c4.33,1.998 8.627,4.06 12.845,6.285c5.744,3.031 11.345,6.33 16.776,9.892c15.174,9.954 28.935,21.915 41.668,34.811c12.467,12.625 23.959,26.272 33.472,41.276c4.579,7.222 8.673,14.736 12.357,22.451c3.764,7.881 7.073,15.964 10.57,23.965c0.736,1.657 1.481,3.309 2.24,4.956c1.234,2.618 2.501,5.216 3.869,7.767c1.868,3.481 3.899,6.873 6.092,10.16c6.088,9.124 13.347,17.423 21.044,25.216c8.691,8.8 17.995,17.114 28.357,23.911c3.756,2.464 7.649,4.711 11.646,6.758c2.874,1.472 5.801,2.83 8.742,4.159c5.59,2.478 11.232,4.837 16.835,7.287c4.961,2.202 9.889,4.474 14.721,6.948c6.123,3.136 12.097,6.563 17.878,10.292c16.293,10.511 30.977,23.336 44.492,37.197c11.523,11.818 22.169,24.536 31.126,38.421c4.922,7.63 9.299,15.594 13.211,23.786c3.764,7.881 7.074,15.965 10.57,23.965c0.736,1.657 1.481,3.308 2.239,4.955c1.111,2.356 2.246,4.699 3.463,7.003c1.98,3.749 4.146,7.398 6.499,10.925c6.698,10.038 14.803,19.081 23.374,27.546c8.778,8.67 18.205,16.774 28.68,23.338c3.792,2.377 7.714,4.554 11.731,6.53c7.692,3.784 15.629,7.036 23.471,10.493c1.431,0.639 2.86,1.283 4.288,1.931c4.314,1.997 8.597,4.056 12.802,6.275c6.173,3.257 12.186,6.816 17.999,10.679c8.806,5.853 17.145,12.386 25.062,19.39c4.031,3.567 7.94,7.264 11.783,11.033c0.264,0.262 0.528,0.525 0.791,0.787l0.003,-0.002l0.534,0.538c0.561,0.56 1.12,1.121 1.678,1.683c6.38,6.505 12.526,13.23 18.252,20.32c6.851,8.482 13.089,17.453 18.538,26.899c0.78,1.351 1.543,2.712 2.289,4.081c2.902,5.275 5.572,10.674 8.072,16.152c2.938,6.437 5.636,12.978 8.469,19.461c0.736,1.657 1.481,3.309 2.24,4.956c1.233,2.617 2.501,5.216 3.869,7.766c0.237,0.442 0.476,0.882 0.718,1.32c1.861,3.33 3.871,6.573 6.024,9.721c6.457,9.44 14.102,17.979 22.141,26.088l0.584,0.579c8.736,8.628 18.116,16.704 28.549,23.224c3.529,2.205 7.17,4.221 10.891,6.082c7.881,3.94 16.071,7.226 24.131,10.769c1.432,0.637 2.862,1.279 4.289,1.925c4.324,1.997 8.614,4.059 12.827,6.281c6.196,3.27 12.228,6.848 18.06,10.731c13.321,8.871 25.544,19.287 36.929,30.518l-57.707,57.707ZM3144.45,3716.78c-7.79,-7.66 -16.107,-14.84 -25.255,-20.827c-3.516,-2.301 -7.15,-4.416 -10.878,-6.353c-3.139,-1.632 -6.343,-3.129 -9.565,-4.587c-5.628,-2.505 -11.306,-4.894 -16.946,-7.372c-4.978,-2.225 -9.923,-4.517 -14.773,-7.012c-6.132,-3.155 -12.115,-6.6 -17.908,-10.344c-16.302,-10.538 -31.005,-23.376 -44.537,-37.254c-11.524,-11.819 -22.174,-24.538 -31.129,-38.427c-2.206,-3.42 -4.302,-6.907 -6.296,-10.452c-3.294,-5.815 -6.301,-11.786 -9.091,-17.861c-2.983,-6.492 -5.713,-13.096 -8.565,-19.646c-0.731,-1.658 -1.471,-3.311 -2.225,-4.959c-1.095,-2.341 -2.212,-4.669 -3.409,-6.959c-0.362,-0.691 -0.729,-1.378 -1.103,-2.061c-1.803,-3.255 -3.75,-6.429 -5.839,-9.508c-6.249,-9.207 -13.681,-17.524 -21.503,-25.412c-8.215,-8.161 -17.023,-15.79 -26.776,-22.06c-3.505,-2.253 -7.129,-4.317 -10.838,-6.216c-3.469,-1.777 -7.01,-3.4 -10.567,-4.989c-5.102,-2.248 -10.233,-4.431 -15.332,-6.686c-4.996,-2.244 -9.958,-4.56 -14.824,-7.075c-6.142,-3.175 -12.135,-6.637 -17.938,-10.396c-16.311,-10.566 -31.033,-23.415 -44.581,-37.309c-11.523,-11.818 -22.169,-24.536 -31.126,-38.421c-4.922,-7.63 -9.299,-15.594 -13.211,-23.786c-3.764,-7.881 -7.074,-15.965 -10.571,-23.965c-0.735,-1.657 -1.48,-3.308 -2.238,-4.954c-1.111,-2.355 -2.244,-4.697 -3.46,-6.999c-1.981,-3.751 -4.147,-7.401 -6.502,-10.93c-6.697,-10.038 -14.803,-19.081 -23.373,-27.546c-8.695,-8.587 -18.029,-16.636 -28.423,-23.112c-3.491,-2.176 -7.093,-4.166 -10.777,-5.997c-7.854,-3.902 -16.011,-7.162 -24.042,-10.672c-1.441,-0.639 -2.88,-1.283 -4.317,-1.932c-4.335,-1.998 -8.637,-4.062 -12.858,-6.291c-6.214,-3.282 -12.261,-6.875 -18.107,-10.775c-14.647,-9.772 -27.969,-21.408 -40.325,-33.921c-12.467,-12.626 -23.958,-26.272 -33.471,-41.276c-4.579,-7.223 -8.675,-14.738 -12.36,-22.453c-3.764,-7.882 -7.069,-15.966 -10.57,-23.965c-0.734,-1.657 -1.48,-3.308 -2.238,-4.955c-1.234,-2.615 -2.498,-5.213 -3.866,-7.761c-1.869,-3.482 -3.9,-6.877 -6.094,-10.165c-6.698,-10.039 -14.805,-19.083 -23.376,-27.548c-8.698,-8.59 -18.034,-16.635 -28.429,-23.116c-3.72,-2.32 -7.569,-4.439 -11.511,-6.358c-7.641,-3.72 -15.524,-6.907 -23.309,-10.309c-1.437,-0.639 -2.873,-1.281 -4.307,-1.928c-3.913,-1.806 -7.802,-3.659 -11.627,-5.647c-6.17,-3.207 -12.182,-6.718 -17.996,-10.532c-15.174,-9.953 -28.935,-21.915 -41.669,-34.81c-12.467,-12.626 -23.959,-26.273 -33.472,-41.277c-4.578,-7.221 -8.673,-14.736 -12.357,-22.45c-3.764,-7.882 -7.073,-15.965 -10.57,-23.966c-0.736,-1.657 -1.481,-3.309 -2.24,-4.955c-1.235,-2.621 -2.504,-5.221 -3.873,-7.774c-1.865,-3.48 -3.896,-6.869 -6.087,-10.153c-6.088,-9.125 -13.348,-17.424 -21.044,-25.216c-8.953,-9.064 -18.558,-17.607 -29.279,-24.537c-3.784,-2.446 -7.703,-4.673 -11.721,-6.712c-3.193,-1.62 -6.448,-3.109 -9.717,-4.568c-5.047,-2.221 -10.126,-4.368 -15.175,-6.584c-4.951,-2.204 -9.87,-4.478 -14.695,-6.948c-6.573,-3.365 -12.972,-7.064 -19.15,-11.109c-15.677,-10.263 -29.85,-22.672 -42.911,-36.071c-11.469,-11.766 -22.049,-24.439 -30.965,-38.26l-0.352,-0.548c-1.547,-2.395 -3.044,-4.822 -4.489,-7.281c-3.927,-6.682 -7.452,-13.586 -10.687,-20.627c-2.982,-6.493 -5.713,-13.096 -8.564,-19.647c-0.347,-0.787 -0.697,-1.574 -1.049,-2.359c-0.369,-0.808 -0.74,-1.615 -1.114,-2.421c-1.133,-2.385 -2.288,-4.758 -3.526,-7.091c-2.007,-3.782 -4.193,-7.467 -6.57,-11.029c-6.044,-9.059 -13.234,-17.309 -20.875,-25.047l-0.778,-0.784c-8.262,-8.225 -17.124,-15.915 -26.944,-22.228c-3.505,-2.253 -7.129,-4.317 -10.837,-6.216c-3.469,-1.776 -7.01,-3.399 -10.568,-4.989c-5.102,-2.248 -10.232,-4.43 -15.331,-6.686c-4.996,-2.243 -9.958,-4.559 -14.825,-7.075c-6.142,-3.174 -12.134,-6.637 -17.937,-10.396c-15.247,-9.876 -29.105,-21.746 -41.913,-34.601c-1.183,-1.179 -2.357,-2.367 -3.523,-3.562c-11.524,-11.819 -22.174,-24.538 -31.129,-38.427c-4.919,-7.629 -9.297,-15.59 -13.208,-23.78c-3.764,-7.881 -7.069,-15.966 -10.57,-23.965c-0.734,-1.654 -1.477,-3.302 -2.235,-4.946c-1.235,-2.618 -2.5,-5.218 -3.869,-7.769c-2.026,-3.773 -4.241,-7.442 -6.646,-10.986c-6.226,-9.173 -13.625,-17.461 -21.416,-25.323l-0.554,-0.55c-8.695,-8.587 -18.029,-16.636 -28.422,-23.113c-3.491,-2.175 -7.094,-4.166 -10.777,-5.996c-7.854,-3.903 -16.011,-7.162 -24.043,-10.672c-1.441,-0.639 -2.88,-1.284 -4.316,-1.933c-4.336,-1.997 -8.637,-4.061 -12.859,-6.291c-6.214,-3.281 -12.261,-6.874 -18.107,-10.774c-14.647,-9.772 -27.968,-21.408 -40.324,-33.922c-12.467,-12.625 -23.959,-26.271 -33.472,-41.276c-4.579,-7.222 -8.674,-14.737 -12.359,-22.453c-3.764,-7.881 -7.069,-15.966 -10.57,-23.965c-0.735,-1.657 -1.48,-3.308 -2.239,-4.954c-1.233,-2.615 -2.498,-5.213 -3.865,-7.761c-1.87,-3.483 -3.9,-6.877 -6.094,-10.166c-6.698,-10.038 -14.805,-19.082 -23.376,-27.547c-8.698,-8.591 -18.035,-16.635 -28.429,-23.117c-3.72,-2.319 -7.57,-4.438 -11.511,-6.357c-7.641,-3.72 -15.525,-6.907 -23.309,-10.31c-1.438,-0.638 -2.873,-1.281 -4.307,-1.928c-3.914,-1.805 -7.803,-3.658 -11.627,-5.646c-6.171,-3.207 -12.182,-6.718 -17.997,-10.532c-15.174,-9.954 -28.935,-21.915 -41.668,-34.811c-12.468,-12.625 -23.959,-26.272 -33.472,-41.276c-4.579,-7.222 -8.673,-14.736 -12.357,-22.45c-3.764,-7.882 -7.073,-15.965 -10.57,-23.966c-0.736,-1.657 -1.481,-3.309 -2.241,-4.956c-1.234,-2.62 -2.503,-5.221 -3.872,-7.774c-1.866,-3.479 -3.896,-6.869 -6.088,-10.153c-6.088,-9.124 -13.347,-17.423 -21.044,-25.216c-8.952,-9.064 -18.557,-17.606 -29.278,-24.537c-3.784,-2.446 -7.704,-4.673 -11.721,-6.711c-3.193,-1.62 -6.448,-3.109 -9.717,-4.568c-5.047,-2.221 -10.126,-4.369 -15.175,-6.585c-4.952,-2.204 -9.87,-4.477 -14.695,-6.948c-6.573,-3.365 -12.972,-7.064 -19.15,-11.108c-15.678,-10.264 -29.85,-22.672 -42.911,-36.071c-11.469,-11.767 -22.05,-24.44 -30.966,-38.26c-4.92,-7.628 -9.305,-15.584 -13.237,-23.762c-3.812,-7.93 -7.178,-16.061 -10.732,-24.107c-0.75,-1.677 -1.512,-3.348 -2.286,-5.015c-1.132,-2.385 -2.287,-4.757 -3.525,-7.09c-2.007,-3.782 -4.193,-7.467 -6.57,-11.029c-6.045,-9.059 -13.234,-17.31 -20.876,-25.048c-8.591,-8.699 -17.798,-16.906 -28.049,-23.614c-3.516,-2.301 -7.149,-4.416 -10.878,-6.354c-3.139,-1.631 -6.342,-3.128 -9.564,-4.586c-5.628,-2.505 -11.307,-4.894 -16.946,-7.373c-4.979,-2.224 -9.924,-4.517 -14.773,-7.011c-6.133,-3.155 -12.116,-6.6 -17.908,-10.344c-16.303,-10.539 -31.006,-23.376 -44.537,-37.254c-11.524,-11.82 -22.174,-24.539 -31.13,-38.427c-2.205,-3.42 -4.301,-6.907 -6.296,-10.452c-3.294,-5.815 -6.301,-11.787 -9.091,-17.861c-2.982,-6.493 -5.713,-13.096 -8.564,-19.647c-0.731,-1.658 -1.472,-3.31 -2.225,-4.958c-1.095,-2.341 -2.212,-4.67 -3.41,-6.96c-0.361,-0.69 -0.728,-1.377 -1.102,-2.061c-1.803,-3.254 -3.75,-6.428 -5.84,-9.507c-6.249,-9.208 -13.68,-17.524 -21.503,-25.412c-8.214,-8.162 -17.022,-15.79 -26.776,-22.061c-3.505,-2.253 -7.129,-4.317 -10.837,-6.216c-3.469,-1.776 -7.01,-3.399 -10.568,-4.989c-5.102,-2.248 -10.232,-4.43 -15.331,-6.686c-4.996,-2.243 -9.958,-4.559 -14.825,-7.075c-6.142,-3.174 -12.134,-6.637 -17.937,-10.396c-16.312,-10.565 -31.034,-23.414 -44.581,-37.308c-11.524,-11.819 -22.169,-24.536 -31.127,-38.421c-4.922,-7.63 -9.299,-15.594 -13.211,-23.786c-3.764,-7.882 -7.073,-15.965 -10.57,-23.966c-0.735,-1.656 -1.48,-3.307 -2.238,-4.954c-1.111,-2.354 -2.244,-4.696 -3.461,-6.998c-1.981,-3.751 -4.147,-7.402 -6.501,-10.93c-6.698,-10.038 -14.804,-19.082 -23.374,-27.546c-8.695,-8.587 -18.029,-16.636 -28.422,-23.113c-3.491,-2.175 -7.094,-4.166 -10.777,-5.996c-7.854,-3.903 -16.011,-7.162 -24.043,-10.672c-1.441,-0.639 -2.88,-1.284 -4.316,-1.933c-4.336,-1.997 -8.637,-4.061 -12.859,-6.291c-6.214,-3.281 -12.261,-6.874 -18.107,-10.774c-14.647,-9.772 -27.968,-21.408 -40.324,-33.922c-12.467,-12.625 -23.959,-26.271 -33.472,-41.276c-4.579,-7.222 -8.674,-14.737 -12.359,-22.453c-3.764,-7.881 -7.069,-15.966 -10.57,-23.965c-0.735,-1.657 -1.48,-3.308 -2.239,-4.954c-1.233,-2.615 -2.498,-5.213 -3.865,-7.761c-1.87,-3.483 -3.9,-6.877 -6.094,-10.166c-6.698,-10.038 -14.805,-19.082 -23.376,-27.547c-8.698,-8.591 -18.035,-16.635 -28.429,-23.117c-3.72,-2.319 -7.57,-4.438 -11.511,-6.357c-7.641,-3.72 -15.525,-6.907 -23.309,-10.31c-1.438,-0.638 -2.873,-1.281 -4.307,-1.928c-3.914,-1.805 -7.803,-3.658 -11.627,-5.646c-6.171,-3.207 -12.182,-6.718 -17.997,-10.532c-15.174,-9.954 -28.935,-21.915 -41.668,-34.811c-12.468,-12.625 -23.959,-26.272 -33.472,-41.276c-4.579,-7.222 -8.673,-14.736 -12.357,-22.45c-3.764,-7.882 -7.073,-15.965 -10.57,-23.966c-0.736,-1.657 -1.481,-3.309 -2.241,-4.956c-1.234,-2.62 -2.503,-5.221 -3.872,-7.774c-1.866,-3.479 -3.896,-6.869 -6.088,-10.153c-6.088,-9.124 -13.347,-17.423 -21.044,-25.216c-8.952,-9.064 -18.557,-17.606 -29.278,-24.537c-3.784,-2.446 -7.704,-4.673 -11.721,-6.711c-3.193,-1.62 -6.448,-3.109 -9.717,-4.568c-5.047,-2.221 -10.126,-4.369 -15.175,-6.585c-4.952,-2.204 -9.87,-4.477 -14.695,-6.948c-6.573,-3.365 -12.972,-7.064 -19.15,-11.108c-15.678,-10.264 -29.85,-22.672 -42.911,-36.071c-11.469,-11.767 -22.05,-24.44 -30.966,-38.26c-4.92,-7.628 -9.305,-15.584 -13.237,-23.762c-3.812,-7.93 -7.177,-16.061 -10.732,-24.107c-0.75,-1.677 -1.512,-3.348 -2.286,-5.015c-1.132,-2.385 -2.287,-4.757 -3.525,-7.09c-2.007,-3.782 -4.193,-7.467 -6.57,-11.029c-6.045,-9.059 -13.234,-17.31 -20.876,-25.048c-8.591,-8.699 -17.798,-16.906 -28.049,-23.614c-3.516,-2.301 -7.149,-4.416 -10.878,-6.354c-3.139,-1.631 -6.342,-3.128 -9.564,-4.586c-5.628,-2.505 -11.307,-4.894 -16.946,-7.373c-4.979,-2.224 -9.924,-4.517 -14.773,-7.011c-6.133,-3.155 -12.116,-6.6 -17.908,-10.344c-16.303,-10.539 -31.006,-23.376 -44.537,-37.254c-11.524,-11.82 -22.174,-24.539 -31.13,-38.427c-4.919,-7.629 -9.296,-15.59 -13.208,-23.78c-3.764,-7.882 -7.069,-15.966 -10.57,-23.965c-0.733,-1.654 -1.476,-3.303 -2.234,-4.946c-1.235,-2.618 -2.501,-5.219 -3.87,-7.769c-2.025,-3.774 -4.241,-7.443 -6.646,-10.986c-6.313,-9.302 -13.832,-17.695 -21.743,-25.655l57.886,-57.525c6.569,6.611 12.909,13.444 18.836,20.64c7.414,9.001 14.174,18.539 20.044,28.619c3.853,6.617 7.307,13.453 10.484,20.418c2.937,6.435 5.635,12.976 8.468,19.457c0.735,1.656 1.479,3.307 2.239,4.953c1.233,2.619 2.501,5.218 3.869,7.77c1.867,3.479 3.897,6.871 6.089,10.155c6.091,9.127 13.351,17.427 21.05,25.224c8.95,9.063 18.556,17.604 29.275,24.534c3.536,2.286 7.191,4.384 10.935,6.31c3.446,1.773 6.967,3.39 10.505,4.971c5.052,2.22 10.133,4.369 15.185,6.589c4.948,2.202 9.862,4.473 14.684,6.942c6.103,3.124 12.057,6.536 17.822,10.247c16.202,10.43 30.809,23.155 44.238,36.932c11.47,11.766 22.05,24.44 30.966,38.261c4.92,7.626 9.303,15.581 13.236,23.758c3.812,7.928 7.176,16.057 10.729,24.101c0.752,1.679 1.514,3.353 2.289,5.021c1.136,2.392 2.296,4.771 3.536,7.111c2.001,3.776 4.185,7.453 6.558,11.007c6.047,9.061 13.237,17.313 20.881,25.055c8.812,8.925 18.278,17.332 28.849,24.133c3.508,2.257 7.132,4.328 10.845,6.229c3.444,1.763 6.961,3.374 10.495,4.947c5.074,2.227 10.177,4.385 15.248,6.617c4.57,2.039 9.112,4.136 13.576,6.4c6.55,3.323 12.934,6.966 19.102,10.953c15.706,10.153 29.919,22.442 43.041,35.73c12.099,12.25 23.279,25.461 32.623,39.945c4.921,7.629 9.298,15.593 13.21,23.783c3.766,7.885 7.076,15.973 10.575,23.977c0.733,1.653 1.476,3.3 2.233,4.943c1.112,2.357 2.247,4.701 3.464,7.006c1.98,3.75 4.146,7.399 6.499,10.926c6.695,10.036 14.802,19.08 23.371,27.542c8.698,8.589 18.032,16.637 28.427,23.116c3.724,2.321 7.576,4.442 11.521,6.363c7.639,3.722 15.524,6.903 23.306,10.309c1.437,0.637 2.872,1.28 4.305,1.926c4.333,1.998 8.633,4.062 12.853,6.289c6.218,3.282 12.269,6.879 18.118,10.781c14.645,9.771 27.962,21.406 40.318,33.917c12.469,12.625 23.961,26.274 33.475,41.279c4.578,7.221 8.671,14.734 12.356,22.447c3.765,7.882 7.074,15.967 10.571,23.968c0.736,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c1.867,3.48 3.896,6.871 6.088,10.156c6.092,9.126 13.351,17.427 21.05,25.223c8.916,9.029 18.482,17.543 29.167,24.437c3.501,2.258 7.121,4.328 10.829,6.227c3.419,1.75 6.911,3.347 10.421,4.903c5.044,2.205 10.117,4.341 15.161,6.545c4.961,2.203 9.889,4.475 14.721,6.949c6.123,3.135 12.097,6.562 17.878,10.292c15.696,10.125 29.889,22.401 42.996,35.672c12.098,12.25 23.278,25.461 32.622,39.946c4.921,7.629 9.298,15.592 13.21,23.782c3.765,7.882 7.074,15.967 10.571,23.969c0.735,1.655 1.479,3.306 2.237,4.951c1.112,2.357 2.248,4.702 3.465,7.007c1.979,3.747 4.143,7.395 6.496,10.92c6.699,10.037 14.802,19.083 23.374,27.548c8.778,8.668 18.203,16.775 28.678,23.337c3.793,2.377 7.715,4.556 11.732,6.532c7.694,3.784 15.631,7.039 23.474,10.494c1.431,0.639 2.859,1.283 4.286,1.93c4.317,1.998 8.603,4.058 12.811,6.279c6.169,3.256 12.178,6.813 17.988,10.674c8.275,5.498 16.139,11.599 23.625,18.126c4.541,3.96 8.928,8.084 13.227,12.302c0.264,0.261 0.526,0.523 0.789,0.785l0.003,-0.003l0.533,0.538c0.56,0.559 1.118,1.119 1.676,1.681c6.383,6.506 12.531,13.233 18.258,20.326c6.849,8.481 13.086,17.451 18.535,26.895c0.8,1.386 1.582,2.782 2.348,4.187c2.879,5.243 5.531,10.607 8.014,16.05c2.937,6.435 5.635,12.976 8.468,19.457c0.735,1.656 1.479,3.307 2.239,4.953c1.233,2.619 2.501,5.218 3.869,7.77c0.228,0.423 0.457,0.845 0.689,1.266c1.704,3.052 3.533,6.033 5.484,8.934c6.602,9.816 14.506,18.661 22.824,27.043c8.419,8.368 17.436,16.217 27.417,22.67c3.536,2.286 7.191,4.384 10.935,6.31c3.446,1.773 6.967,3.39 10.505,4.971c5.052,2.22 10.133,4.369 15.185,6.589c4.948,2.202 9.862,4.473 14.684,6.942c6.103,3.124 12.057,6.536 17.822,10.247c16.202,10.43 30.809,23.155 44.238,36.932c11.47,11.766 22.05,24.44 30.966,38.261c4.92,7.626 9.303,15.581 13.236,23.758c3.812,7.928 7.176,16.057 10.729,24.101c0.752,1.679 1.514,3.353 2.289,5.021c1.136,2.392 2.296,4.771 3.536,7.111c2.001,3.776 4.185,7.453 6.558,11.007c6.047,9.061 13.237,17.313 20.881,25.055c8.812,8.925 18.278,17.331 28.849,24.133c3.508,2.257 7.132,4.328 10.845,6.229c3.444,1.763 6.961,3.374 10.495,4.947c5.074,2.227 10.177,4.385 15.248,6.617c4.57,2.039 9.112,4.136 13.576,6.4c6.55,3.323 12.934,6.966 19.102,10.953c15.706,10.153 29.919,22.442 43.041,35.73c12.099,12.25 23.279,25.461 32.623,39.945c4.921,7.629 9.298,15.593 13.21,23.783c3.766,7.885 7.076,15.973 10.575,23.977c0.733,1.653 1.476,3.3 2.233,4.943c1.112,2.357 2.247,4.701 3.464,7.006c1.98,3.75 4.146,7.399 6.499,10.926c6.695,10.036 14.802,19.08 23.371,27.542c8.698,8.589 18.032,16.637 28.427,23.116c3.724,2.321 7.576,4.442 11.521,6.363c7.639,3.722 15.524,6.903 23.306,10.309c1.437,0.637 2.872,1.28 4.305,1.926c4.333,1.998 8.633,4.062 12.853,6.289c6.218,3.282 12.269,6.879 18.118,10.781c14.645,9.771 27.962,21.406 40.318,33.917c12.469,12.625 23.961,26.274 33.475,41.279c4.578,7.221 8.671,14.734 12.356,22.447c3.765,7.882 7.074,15.967 10.571,23.968c0.736,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c1.867,3.48 3.896,6.871 6.088,10.156c6.092,9.126 13.351,17.427 21.05,25.223c8.916,9.029 18.482,17.543 29.167,24.437c3.501,2.258 7.12,4.328 10.829,6.227c3.419,1.75 6.911,3.347 10.421,4.903c5.044,2.205 10.117,4.341 15.161,6.545c4.961,2.203 9.889,4.475 14.721,6.949c6.123,3.135 12.097,6.562 17.878,10.292c14.789,9.54 28.244,20.99 40.712,33.382l0.001,-0.001l0.147,0.147c0.715,0.712 1.427,1.426 2.136,2.144c12.098,12.25 23.278,25.461 32.622,39.946c4.921,7.629 9.298,15.592 13.21,23.782c3.765,7.882 7.074,15.967 10.571,23.969c0.735,1.655 1.479,3.306 2.237,4.951c1.112,2.357 2.248,4.702 3.465,7.007c1.979,3.747 4.143,7.395 6.496,10.92c6.277,9.404 13.786,17.939 21.758,25.939c8.504,8.478 17.614,16.436 27.713,22.964c3.536,2.286 7.19,4.385 10.934,6.31c3.447,1.773 6.968,3.39 10.506,4.971c5.051,2.22 10.133,4.369 15.184,6.589c4.948,2.202 9.863,4.474 14.684,6.942c6.103,3.125 12.058,6.536 17.823,10.248c15.488,9.971 29.519,22.039 42.457,35.118c0.38,0.38 0.759,0.761 1.137,1.142c6.383,6.506 12.531,13.233 18.258,20.326c6.849,8.481 13.086,17.451 18.535,26.895c3.377,5.852 6.44,11.878 9.277,18.009c0.625,1.352 1.239,2.709 1.845,4.07c2.615,5.803 5.088,11.669 7.66,17.491c0.752,1.679 1.513,3.353 2.288,5.021c1.136,2.393 2.296,4.771 3.537,7.112c1.731,3.268 3.601,6.463 5.611,9.568c0.295,0.45 0.593,0.899 0.893,1.346c6.595,9.806 14.49,18.643 22.798,27.017c8.282,8.227 17.156,15.939 26.985,22.263c3.508,2.257 7.132,4.328 10.845,6.229c3.444,1.764 6.962,3.374 10.496,4.948c5.073,2.226 10.176,4.385 15.247,6.616c4.57,2.039 9.113,4.136 13.576,6.401c6.55,3.322 12.934,6.966 19.102,10.953c15.706,10.152 29.919,22.442 43.042,35.729c12.098,12.25 23.278,25.461 32.622,39.946c4.921,7.629 9.298,15.592 13.21,23.783c3.766,7.885 7.077,15.972 10.575,23.977c0.733,1.653 1.477,3.3 2.234,4.942c1.112,2.357 2.247,4.702 3.464,7.007c1.98,3.749 4.146,7.398 6.499,10.925c6.695,10.037 14.801,19.081 23.37,27.542c8.698,8.589 18.033,16.637 28.427,23.117c3.724,2.321 7.576,4.441 11.521,6.363c7.64,3.721 15.525,6.903 23.306,10.309c1.438,0.637 2.872,1.279 4.305,1.926c4.334,1.998 8.633,4.061 12.853,6.289c6.218,3.282 12.269,6.878 18.118,10.78c14.645,9.772 27.963,21.406 40.319,33.917c12.469,12.625 23.961,26.274 33.474,41.279c4.578,7.221 8.672,14.734 12.356,22.447c3.765,7.883 7.074,15.967 10.572,23.969c0.735,1.656 1.479,3.307 2.238,4.953c1.234,2.618 2.502,5.218 3.87,7.769c1.867,3.48 3.897,6.872 6.089,10.156c6.091,9.127 13.351,17.427 21.05,25.224c8.915,9.028 18.481,17.542 29.166,24.436c3.501,2.259 7.121,4.329 10.829,6.227c3.419,1.751 6.911,3.347 10.421,4.904c5.044,2.204 10.118,4.34 15.161,6.545c4.961,2.202 9.889,4.474 14.721,6.948c6.124,3.135 12.097,6.563 17.878,10.292c15.696,10.126 29.89,22.402 42.996,35.673c12.099,12.25 23.278,25.46 32.622,39.945c4.922,7.629 9.298,15.592 13.21,23.783c3.765,7.882 7.075,15.966 10.572,23.968c0.735,1.656 1.479,3.306 2.237,4.951c1.112,2.358 2.247,4.702 3.464,7.007c1.979,3.748 4.143,7.395 6.496,10.92c6.699,10.038 14.802,19.084 23.374,27.548c8.778,8.668 18.204,16.776 28.678,23.338c3.794,2.376 7.716,4.555 11.733,6.531c7.694,3.784 15.631,7.039 23.474,10.495c1.43,0.639 2.859,1.282 4.285,1.929c4.318,1.998 8.604,4.059 12.811,6.279c6.169,3.256 12.178,6.813 17.989,10.674c8.274,5.498 16.139,11.599 23.625,18.127c4.54,3.959 8.927,8.083 13.227,12.301c0.263,0.262 0.526,0.523 0.789,0.785l0.002,-0.002l0.533,0.537c0.56,0.559 1.119,1.12 1.677,1.681c6.382,6.506 12.53,13.233 18.258,20.326c6.849,8.481 13.086,17.451 18.535,26.895c0.8,1.387 1.582,2.783 2.347,4.188c2.88,5.242 5.531,10.606 8.015,16.049c2.936,6.436 5.634,12.976 8.467,19.457c0.735,1.657 1.48,3.308 2.239,4.953c1.234,2.619 2.501,5.219 3.87,7.77c0.227,0.423 0.457,0.845 0.689,1.266c1.703,3.053 3.533,6.034 5.484,8.935c6.601,9.816 14.505,18.66 22.823,27.042c8.42,8.368 17.436,16.218 27.418,22.67c3.536,2.286 7.19,4.385 10.934,6.31c3.447,1.773 6.968,3.39 10.506,4.971c5.051,2.22 10.133,4.369 15.184,6.589c4.948,2.202 9.863,4.474 14.684,6.942c6.103,3.125 12.058,6.536 17.823,10.248c14.354,9.241 27.458,20.284 39.599,32.264l-57.708,57.708ZM3259.86,3601.37c-7.791,-7.661 -16.11,-14.839 -25.259,-20.829c-3.757,-2.459 -7.65,-4.703 -11.647,-6.749c-2.889,-1.48 -5.832,-2.849 -8.789,-4.187c-5.629,-2.505 -11.308,-4.894 -16.949,-7.374c-4.978,-2.223 -9.923,-4.517 -14.772,-7.011c-6.132,-3.155 -12.114,-6.599 -17.906,-10.343c-16.304,-10.538 -31.008,-23.377 -44.54,-37.255c-11.524,-11.82 -22.176,-24.54 -31.13,-38.429c-2.18,-3.382 -4.254,-6.828 -6.228,-10.331c-3.32,-5.853 -6.349,-11.864 -9.158,-17.98c-2.983,-6.493 -5.713,-13.096 -8.565,-19.646c-0.73,-1.658 -1.471,-3.31 -2.224,-4.958c-1.338,-2.859 -2.714,-5.696 -4.214,-8.474l-0.266,-0.49c-1.812,-3.276 -3.771,-6.469 -5.874,-9.567c-6.25,-9.211 -13.685,-17.53 -21.511,-25.421c-8.211,-8.157 -17.017,-15.782 -26.766,-22.049c-3.506,-2.254 -7.131,-4.318 -10.84,-6.218c-3.468,-1.776 -7.009,-3.399 -10.565,-4.987c-5.102,-2.249 -10.233,-4.431 -15.331,-6.686c-4.997,-2.244 -9.959,-4.56 -14.825,-7.075c-6.142,-3.174 -12.133,-6.637 -17.935,-10.395c-15.716,-10.179 -29.95,-22.482 -43.089,-35.787c-12.098,-12.251 -23.279,-25.461 -32.622,-39.947c-4.921,-7.628 -9.297,-15.59 -13.209,-23.78c-3.765,-7.882 -7.074,-15.967 -10.571,-23.968c-0.736,-1.656 -1.48,-3.307 -2.238,-4.953c-1.112,-2.357 -2.247,-4.701 -3.464,-7.006c-1.827,-3.459 -3.81,-6.834 -5.957,-10.105c-6.199,-9.446 -13.66,-18.01 -21.587,-26.037c-8.917,-9.029 -18.482,-17.544 -29.168,-24.437c-3.502,-2.26 -7.123,-4.33 -10.832,-6.229c-3.42,-1.752 -6.915,-3.347 -10.427,-4.906c-5.038,-2.202 -10.105,-4.335 -15.143,-6.537c-4.965,-2.201 -9.895,-4.477 -14.73,-6.953c-6.123,-3.134 -12.095,-6.561 -17.876,-10.29c-15.697,-10.125 -29.893,-22.403 -42.999,-35.675c-12.1,-12.253 -23.286,-25.466 -32.628,-39.955c-4.917,-7.627 -9.293,-15.586 -13.203,-23.772c-3.765,-7.883 -7.07,-15.969 -10.572,-23.968c-0.734,-1.657 -1.479,-3.307 -2.237,-4.953c-1.235,-2.618 -2.501,-5.218 -3.869,-7.768c-1.868,-3.481 -3.898,-6.873 -6.09,-10.158c-6.699,-10.038 -14.804,-19.084 -23.376,-27.549c-8.698,-8.589 -18.033,-16.636 -28.428,-23.116c-3.722,-2.32 -7.572,-4.44 -11.515,-6.36c-7.64,-3.719 -15.524,-6.906 -23.307,-10.308c-1.438,-0.639 -2.874,-1.281 -4.308,-1.929c-3.913,-1.804 -7.802,-3.658 -11.627,-5.646c-6.169,-3.207 -12.18,-6.717 -17.994,-10.531c-15.175,-9.952 -28.935,-21.915 -41.669,-34.81c-12.468,-12.626 -23.96,-26.273 -33.473,-41.278c-4.578,-7.221 -8.672,-14.734 -12.356,-22.447c-3.765,-7.883 -7.074,-15.967 -10.572,-23.969c-0.735,-1.657 -1.48,-3.308 -2.239,-4.954c-1.236,-2.623 -2.507,-5.225 -3.876,-7.781c-1.864,-3.477 -3.894,-6.864 -6.083,-10.145c-6.09,-9.126 -13.35,-17.425 -21.047,-25.22c-8.951,-9.064 -18.557,-17.606 -29.277,-24.536c-3.784,-2.446 -7.704,-4.673 -11.722,-6.711c-3.193,-1.62 -6.448,-3.109 -9.717,-4.568c-5.047,-2.221 -10.126,-4.368 -15.175,-6.585c-4.951,-2.203 -9.87,-4.477 -14.695,-6.948c-6.572,-3.364 -12.97,-7.063 -19.148,-11.107c-15.678,-10.262 -29.851,-22.673 -42.912,-36.072c-11.47,-11.767 -22.052,-24.441 -30.968,-38.263l-0.141,-0.221c-1.622,-2.502 -3.19,-5.039 -4.701,-7.61c-3.925,-6.681 -7.45,-13.583 -10.684,-20.622c-2.982,-6.493 -5.712,-13.097 -8.564,-19.647c-0.347,-0.788 -0.697,-1.574 -1.049,-2.36c-0.368,-0.808 -0.739,-1.614 -1.113,-2.419c-1.134,-2.388 -2.291,-4.762 -3.529,-7.097c-2.005,-3.78 -4.191,-7.462 -6.566,-11.022c-6.046,-9.06 -13.236,-17.311 -20.878,-25.051l-0.785,-0.791c-8.259,-8.221 -17.119,-15.908 -26.935,-22.219c-3.506,-2.254 -7.131,-4.317 -10.841,-6.217c-3.467,-1.776 -7.008,-3.399 -10.565,-4.988c-5.101,-2.248 -10.232,-4.43 -15.331,-6.686c-4.996,-2.243 -9.958,-4.56 -14.824,-7.075c-6.142,-3.174 -12.133,-6.636 -17.936,-10.394c-15.134,-9.803 -28.894,-21.575 -41.624,-34.314c-1.282,-1.274 -2.553,-2.558 -3.814,-3.851c-11.524,-11.82 -22.176,-24.54 -31.13,-38.429c-4.918,-7.628 -9.295,-15.587 -13.206,-23.775c-3.765,-7.882 -7.069,-15.968 -10.571,-23.968c-0.733,-1.654 -1.476,-3.302 -2.234,-4.944c-1.236,-2.621 -2.503,-5.223 -3.873,-7.777c-2.024,-3.772 -4.241,-7.439 -6.645,-10.982c-6.252,-9.215 -13.691,-17.537 -21.521,-25.43c-8.379,-8.325 -17.348,-16.139 -27.286,-22.551c-3.502,-2.259 -7.123,-4.33 -10.832,-6.229c-3.421,-1.751 -6.916,-3.347 -10.428,-4.906c-5.037,-2.202 -10.105,-4.334 -15.142,-6.537c-4.965,-2.201 -9.895,-4.477 -14.73,-6.952c-6.123,-3.135 -12.095,-6.562 -17.876,-10.29c-15.698,-10.125 -29.893,-22.404 -43,-35.676c-12.099,-12.252 -23.286,-25.465 -32.627,-39.954c-4.918,-7.627 -9.293,-15.586 -13.204,-23.773c-3.765,-7.882 -7.069,-15.968 -10.571,-23.968c-0.734,-1.656 -1.48,-3.307 -2.238,-4.953c-1.234,-2.617 -2.5,-5.217 -3.869,-7.768c-1.867,-3.48 -3.897,-6.872 -6.09,-10.157c-6.699,-10.039 -14.804,-19.084 -23.375,-27.549c-8.698,-8.59 -18.034,-16.636 -28.428,-23.116c-3.722,-2.321 -7.572,-4.441 -11.515,-6.36c-7.641,-3.72 -15.524,-6.906 -23.308,-10.309c-1.437,-0.638 -2.873,-1.281 -4.307,-1.928c-3.914,-1.805 -7.803,-3.659 -11.627,-5.646c-6.17,-3.207 -12.18,-6.718 -17.994,-10.531c-15.175,-9.952 -28.935,-21.916 -41.67,-34.811c-12.468,-12.625 -23.959,-26.273 -33.473,-41.277c-4.578,-7.221 -8.671,-14.734 -12.356,-22.448c-3.765,-7.882 -7.073,-15.967 -10.571,-23.968c-0.736,-1.657 -1.48,-3.309 -2.24,-4.955c-1.235,-2.622 -2.506,-5.225 -3.876,-7.78c-1.863,-3.477 -3.893,-6.864 -6.083,-10.146c-6.09,-9.125 -13.349,-17.425 -21.047,-25.22c-8.951,-9.063 -18.557,-17.605 -29.277,-24.535c-3.784,-2.446 -7.703,-4.673 -11.721,-6.711c-3.193,-1.62 -6.448,-3.11 -9.717,-4.568c-5.047,-2.221 -10.126,-4.369 -15.175,-6.585c-4.952,-2.204 -9.87,-4.478 -14.695,-6.948c-6.572,-3.365 -12.97,-7.063 -19.148,-11.107c-15.678,-10.263 -29.852,-22.673 -42.913,-36.073c-11.47,-11.766 -22.051,-24.44 -30.967,-38.262c-4.919,-7.626 -9.302,-15.58 -13.234,-23.757c-3.814,-7.931 -7.178,-16.062 -10.734,-24.109c-0.75,-1.677 -1.511,-3.348 -2.285,-5.014c-1.134,-2.387 -2.29,-4.761 -3.529,-7.096c-2.005,-3.78 -4.19,-7.463 -6.566,-11.022c-6.046,-9.06 -13.235,-17.312 -20.878,-25.052c-8.592,-8.701 -17.801,-16.905 -28.052,-23.615c-3.757,-2.46 -7.65,-4.703 -11.646,-6.75c-2.889,-1.479 -5.832,-2.848 -8.789,-4.186c-5.629,-2.505 -11.309,-4.895 -16.949,-7.374c-4.978,-2.224 -9.924,-4.517 -14.773,-7.012c-6.132,-3.154 -12.113,-6.599 -17.905,-10.342c-16.304,-10.538 -31.008,-23.377 -44.54,-37.256c-11.525,-11.82 -22.176,-24.539 -31.131,-38.429c-2.18,-3.381 -4.254,-6.828 -6.227,-10.331c-3.321,-5.853 -6.349,-11.864 -9.159,-17.979c-2.982,-6.493 -5.712,-13.097 -8.564,-19.647c-0.731,-1.657 -1.471,-3.31 -2.224,-4.957c-1.338,-2.859 -2.715,-5.696 -4.214,-8.474l-0.266,-0.49c-1.813,-3.276 -3.772,-6.469 -5.874,-9.568c-6.25,-9.211 -13.686,-17.529 -21.512,-25.42c-8.211,-8.158 -17.016,-15.783 -26.765,-22.05c-3.506,-2.254 -7.131,-4.317 -10.841,-6.217c-3.467,-1.776 -7.008,-3.399 -10.565,-4.988c-5.101,-2.248 -10.232,-4.43 -15.331,-6.686c-4.996,-2.243 -9.958,-4.56 -14.824,-7.075c-6.142,-3.174 -12.133,-6.636 -17.936,-10.394c-15.716,-10.179 -29.95,-22.483 -43.088,-35.788c-12.098,-12.25 -23.28,-25.461 -32.623,-39.946c-4.92,-7.629 -9.296,-15.591 -13.208,-23.78c-3.765,-7.883 -7.074,-15.967 -10.572,-23.969c-0.735,-1.656 -1.479,-3.307 -2.237,-4.953c-1.112,-2.357 -2.247,-4.7 -3.464,-7.005c-1.827,-3.459 -3.81,-6.835 -5.957,-10.105c-6.199,-9.447 -13.661,-18.01 -21.587,-26.037c-8.917,-9.029 -18.483,-17.544 -29.168,-24.438c-3.502,-2.259 -7.123,-4.33 -10.832,-6.229c-3.421,-1.751 -6.916,-3.347 -10.428,-4.906c-5.037,-2.202 -10.105,-4.334 -15.142,-6.537c-4.965,-2.201 -9.895,-4.477 -14.73,-6.952c-6.123,-3.135 -12.095,-6.562 -17.876,-10.29c-15.698,-10.125 -29.893,-22.404 -43,-35.676c-12.099,-12.252 -23.286,-25.465 -32.627,-39.954c-4.918,-7.627 -9.293,-15.586 -13.204,-23.773c-3.765,-7.882 -7.069,-15.968 -10.571,-23.968c-0.734,-1.656 -1.48,-3.307 -2.238,-4.953c-1.234,-2.617 -2.5,-5.217 -3.869,-7.768c-1.867,-3.48 -3.897,-6.872 -6.09,-10.157c-6.699,-10.039 -14.804,-19.084 -23.375,-27.549c-8.698,-8.59 -18.034,-16.636 -28.428,-23.116c-3.722,-2.321 -7.572,-4.441 -11.515,-6.36c-7.641,-3.72 -15.524,-6.906 -23.308,-10.309c-1.437,-0.638 -2.873,-1.281 -4.307,-1.928c-3.914,-1.805 -7.803,-3.659 -11.627,-5.646c-6.17,-3.207 -12.18,-6.718 -17.994,-10.531c-15.175,-9.952 -28.935,-21.916 -41.67,-34.811c-12.468,-12.625 -23.959,-26.273 -33.473,-41.277c-4.578,-7.221 -8.671,-14.734 -12.356,-22.448c-3.765,-7.882 -7.073,-15.967 -10.571,-23.968c-0.736,-1.657 -1.48,-3.309 -2.24,-4.955c-1.235,-2.622 -2.506,-5.225 -3.876,-7.78c-1.863,-3.477 -3.893,-6.864 -6.083,-10.146c-6.09,-9.125 -13.349,-17.425 -21.047,-25.22c-8.951,-9.063 -18.557,-17.605 -29.277,-24.535c-3.784,-2.446 -7.703,-4.673 -11.721,-6.711c-3.193,-1.62 -6.448,-3.11 -9.717,-4.568c-5.047,-2.221 -10.126,-4.369 -15.175,-6.585c-4.952,-2.204 -9.87,-4.478 -14.695,-6.948c-6.572,-3.365 -12.97,-7.063 -19.148,-11.107c-15.678,-10.263 -29.852,-22.673 -42.913,-36.073c-11.47,-11.766 -22.051,-24.44 -30.967,-38.262c-4.919,-7.626 -9.302,-15.58 -13.234,-23.757c-3.814,-7.93 -7.178,-16.062 -10.734,-24.109c-0.75,-1.677 -1.511,-3.348 -2.285,-5.014c-1.134,-2.387 -2.29,-4.761 -3.529,-7.096c-2.005,-3.78 -4.19,-7.463 -6.566,-11.022c-6.046,-9.06 -13.235,-17.312 -20.878,-25.052c-8.592,-8.701 -17.801,-16.905 -28.052,-23.615c-3.757,-2.46 -7.65,-4.703 -11.646,-6.75c-2.889,-1.479 -5.832,-2.848 -8.789,-4.186c-5.629,-2.505 -11.309,-4.895 -16.949,-7.374c-4.978,-2.224 -9.924,-4.517 -14.773,-7.012c-6.132,-3.154 -12.113,-6.599 -17.905,-10.342c-16.304,-10.538 -31.008,-23.377 -44.54,-37.256c-11.525,-11.82 -22.176,-24.539 -31.131,-38.429c-4.918,-7.628 -9.294,-15.586 -13.205,-23.774c-3.765,-7.883 -7.07,-15.969 -10.571,-23.968c-0.734,-1.654 -1.477,-3.302 -2.234,-4.945c-1.236,-2.62 -2.503,-5.223 -3.873,-7.776c-2.025,-3.773 -4.241,-7.44 -6.645,-10.983c-6.312,-9.301 -13.832,-17.693 -21.742,-25.653l57.886,-57.524c6.57,6.611 12.91,13.444 18.837,20.64c7.413,9 14.172,18.537 20.042,28.616c3.854,6.618 7.308,13.455 10.486,20.42c2.936,6.436 5.634,12.977 8.467,19.458c0.735,1.657 1.48,3.308 2.239,4.954c1.234,2.617 2.5,5.216 3.868,7.766c1.868,3.48 3.897,6.873 6.09,10.158c6.701,10.039 14.805,19.085 23.377,27.551c8.736,8.627 18.116,16.704 28.549,23.223c3.53,2.206 7.173,4.224 10.896,6.086c7.879,3.94 16.068,7.225 24.128,10.768c1.431,0.636 2.86,1.278 4.287,1.923c4.324,1.997 8.616,4.059 12.829,6.283c6.196,3.269 12.226,6.846 18.057,10.729c14.563,9.696 27.811,21.24 40.089,33.675c12.04,12.193 23.148,25.356 32.448,39.771c4.921,7.627 9.304,15.582 13.236,23.761c3.812,7.927 7.176,16.055 10.73,24.099c0.752,1.679 1.513,3.353 2.288,5.022c1.136,2.391 2.295,4.769 3.535,7.107c2.001,3.777 4.186,7.455 6.559,11.01c6.047,9.06 13.236,17.312 20.88,25.053c8.591,8.701 17.8,16.906 28.051,23.616c3.514,2.3 7.148,4.414 10.874,6.351c3.142,1.632 6.349,3.13 9.574,4.591c5.626,2.504 11.303,4.889 16.939,7.37c4.57,2.039 9.113,4.135 13.576,6.4c6.55,3.323 12.934,6.966 19.102,10.953c15.706,10.153 29.921,22.443 43.043,35.731c12.097,12.25 23.277,25.46 32.621,39.944c4.922,7.629 9.299,15.593 13.211,23.784c3.765,7.885 7.075,15.972 10.574,23.976c0.733,1.654 1.477,3.301 2.234,4.944c1.111,2.356 2.246,4.699 3.462,7.003c1.981,3.75 4.147,7.4 6.5,10.928c6.696,10.037 14.803,19.08 23.373,27.543c8.698,8.59 18.033,16.636 28.428,23.116c3.723,2.322 7.575,4.441 11.52,6.363c7.638,3.721 15.523,6.902 23.304,10.308c1.437,0.637 2.872,1.279 4.305,1.926c4.332,1.998 8.629,4.06 12.848,6.286c5.744,3.031 11.345,6.331 16.776,9.893c15.174,9.953 28.933,21.914 41.667,34.809c12.468,12.625 23.96,26.273 33.473,41.277c4.578,7.222 8.672,14.735 12.357,22.449c3.764,7.882 7.073,15.966 10.57,23.967c0.736,1.657 1.481,3.309 2.24,4.955c1.233,2.617 2.5,5.216 3.868,7.765c1.868,3.481 3.897,6.873 6.09,10.159c6.091,9.125 13.35,17.426 21.048,25.222c8.689,8.798 17.993,17.113 28.354,23.908c3.513,2.304 7.145,4.422 10.873,6.36c3.123,1.622 6.31,3.109 9.516,4.557c5.591,2.479 11.233,4.839 16.836,7.288c4.962,2.203 9.891,4.475 14.724,6.95c6.122,3.135 12.095,6.561 17.875,10.29c16.293,10.511 30.977,23.336 44.492,37.197c11.523,11.819 22.169,24.536 31.126,38.421c4.922,7.63 9.299,15.593 13.211,23.784c3.764,7.882 7.073,15.966 10.571,23.967c0.735,1.657 1.479,3.307 2.237,4.953c1.112,2.356 2.246,4.699 3.463,7.003c1.979,3.748 4.143,7.397 6.497,10.923c6.7,10.038 14.803,19.083 23.375,27.549c8.778,8.669 18.205,16.774 28.679,23.337c3.793,2.377 7.716,4.555 11.732,6.531c7.693,3.785 15.63,7.038 23.473,10.494c1.43,0.639 2.859,1.282 4.285,1.929c4.316,1.998 8.599,4.058 12.805,6.277c6.173,3.257 12.184,6.815 17.997,10.678c8.806,5.852 17.145,12.386 25.062,19.39c4.033,3.567 7.943,7.265 11.786,11.035c0.264,0.262 0.527,0.524 0.79,0.787l0.003,-0.003l0.534,0.538c0.56,0.559 1.119,1.12 1.677,1.682c6.381,6.505 12.528,13.231 18.255,20.323c6.849,8.481 13.086,17.45 18.535,26.894c0.78,1.351 1.543,2.712 2.289,4.081c2.903,5.277 5.574,10.678 8.075,16.158c2.936,6.436 5.634,12.977 8.467,19.458c0.735,1.657 1.48,3.308 2.239,4.954c1.234,2.617 2.5,5.216 3.868,7.766c0.228,0.423 0.457,0.846 0.69,1.267c1.704,3.053 3.533,6.035 5.484,8.936c6.573,9.773 14.437,18.583 22.715,26.932l0.578,0.574c8.736,8.627 18.116,16.704 28.549,23.223c3.53,2.206 7.173,4.224 10.896,6.086c7.879,3.94 16.068,7.225 24.128,10.768c1.431,0.636 2.86,1.278 4.287,1.923c4.324,1.997 8.616,4.059 12.829,6.283c6.196,3.269 12.226,6.846 18.057,10.729c14.563,9.696 27.811,21.24 40.089,33.675c12.04,12.193 23.148,25.356 32.448,39.771c4.921,7.627 9.304,15.582 13.236,23.761c3.812,7.927 7.176,16.055 10.73,24.099c0.752,1.679 1.513,3.353 2.288,5.022c1.136,2.391 2.295,4.769 3.535,7.107c2.001,3.777 4.186,7.455 6.559,11.01c6.047,9.06 13.236,17.312 20.88,25.053c8.591,8.701 17.8,16.906 28.051,23.616c3.514,2.3 7.148,4.414 10.874,6.351c3.142,1.632 6.349,3.13 9.574,4.591c5.626,2.504 11.303,4.889 16.939,7.37c4.57,2.039 9.113,4.135 13.576,6.4c6.55,3.323 12.934,6.966 19.102,10.953c15.706,10.153 29.921,22.443 43.043,35.731c12.097,12.25 23.277,25.46 32.621,39.944c4.922,7.629 9.299,15.593 13.211,23.784c3.765,7.885 7.075,15.972 10.574,23.976c0.733,1.654 1.477,3.301 2.234,4.944c1.111,2.356 2.246,4.699 3.462,7.003c1.981,3.75 4.147,7.4 6.5,10.928c6.696,10.037 14.803,19.08 23.373,27.543c8.698,8.59 18.033,16.636 28.428,23.116c3.723,2.322 7.575,4.441 11.52,6.363c7.638,3.721 15.523,6.902 23.304,10.308c1.437,0.637 2.872,1.279 4.305,1.926c4.332,1.998 8.629,4.06 12.848,6.286c5.744,3.031 11.345,6.331 16.776,9.893c15.174,9.953 28.933,21.914 41.667,34.809c12.468,12.625 23.96,26.273 33.473,41.277c4.578,7.222 8.672,14.735 12.357,22.449c3.764,7.882 7.073,15.966 10.57,23.967c0.736,1.657 1.481,3.309 2.24,4.955c1.233,2.617 2.5,5.216 3.868,7.765c1.868,3.481 3.897,6.873 6.09,10.159c6.091,9.125 13.35,17.426 21.048,25.222c8.689,8.798 17.993,17.113 28.354,23.908c3.513,2.304 7.145,4.422 10.873,6.36c3.123,1.622 6.31,3.109 9.516,4.557c5.591,2.479 11.233,4.839 16.836,7.288c4.962,2.203 9.891,4.475 14.724,6.95c6.122,3.135 12.095,6.561 17.875,10.29c16.293,10.511 30.977,23.336 44.492,37.197c11.523,11.819 22.169,24.536 31.126,38.421c4.922,7.63 9.299,15.593 13.211,23.784c3.764,7.882 7.073,15.966 10.571,23.967c0.735,1.657 1.479,3.307 2.237,4.953c1.112,2.356 2.246,4.699 3.463,7.003c1.979,3.748 4.143,7.397 6.497,10.923c6.265,9.386 13.756,17.904 21.711,25.891c0.27,0.269 0.541,0.537 0.812,0.805c8.736,8.627 18.115,16.705 28.548,23.224c3.531,2.206 7.174,4.223 10.897,6.085c7.878,3.94 16.068,7.226 24.127,10.768c1.431,0.637 2.86,1.278 4.287,1.924c4.325,1.997 8.616,4.059 12.829,6.282c6.196,3.269 12.227,6.847 18.058,10.729c14.394,9.584 27.505,20.974 39.662,33.245c0.423,0.423 0.845,0.846 1.267,1.271c6.381,6.505 12.528,13.231 18.255,20.323c6.849,8.481 13.086,17.45 18.535,26.894c3.783,6.555 7.166,13.328 10.288,20.22c0.29,0.642 0.579,1.285 0.865,1.929c2.604,5.781 5.067,11.624 7.63,17.424c0.752,1.68 1.514,3.354 2.289,5.023c1.136,2.391 2.295,4.768 3.534,7.107c1.733,3.268 3.602,6.463 5.612,9.568c0.295,0.452 0.593,0.901 0.894,1.349c6.585,9.791 14.465,18.615 22.76,26.978c8.068,8.018 16.696,15.547 26.224,21.783c3.515,2.301 7.148,4.414 10.875,6.351c3.142,1.633 6.349,3.131 9.574,4.592c5.625,2.503 11.303,4.889 16.938,7.369c4.571,2.039 9.113,4.136 13.577,6.4c6.549,3.323 12.934,6.966 19.102,10.954c15.706,10.152 29.92,22.442 43.042,35.73c12.098,12.25 23.277,25.46 32.621,39.944c4.922,7.63 9.299,15.594 13.211,23.785c3.766,7.884 7.076,15.972 10.575,23.975c0.733,1.654 1.477,3.301 2.233,4.944c1.112,2.356 2.246,4.699 3.463,7.003c1.98,3.75 4.146,7.4 6.5,10.928c6.696,10.037 14.803,19.081 23.372,27.544c8.698,8.589 18.033,16.635 28.428,23.116c3.724,2.321 7.576,4.441 11.52,6.362c7.639,3.722 15.524,6.902 23.304,10.308c1.438,0.638 2.873,1.28 4.306,1.926c4.331,1.998 8.628,4.061 12.847,6.287c5.744,3.031 11.346,6.33 16.776,9.892c15.174,9.953 28.933,21.914 41.668,34.809c12.467,12.626 23.959,26.273 33.472,41.278c4.579,7.221 8.673,14.735 12.357,22.449c3.764,7.882 7.073,15.966 10.571,23.967c0.735,1.657 1.48,3.308 2.239,4.954c1.234,2.617 2.5,5.216 3.868,7.765c1.868,3.481 3.897,6.873 6.09,10.159c6.091,9.126 13.35,17.426 21.049,25.222c8.689,8.798 17.992,17.113 28.353,23.908c3.514,2.304 7.146,4.423 10.874,6.36c3.122,1.623 6.309,3.109 9.515,4.558c5.591,2.478 11.233,4.838 16.837,7.288c4.961,2.202 9.89,4.474 14.723,6.949c6.123,3.135 12.095,6.562 17.876,10.291c16.293,10.511 30.976,23.335 44.491,37.196c11.524,11.819 22.169,24.537 31.127,38.422c4.921,7.629 9.298,15.593 13.21,23.784c3.765,7.882 7.073,15.966 10.571,23.967c0.735,1.656 1.48,3.307 2.238,4.953c1.111,2.356 2.245,4.699 3.462,7.002c1.98,3.748 4.144,7.397 6.497,10.923c6.7,10.038 14.804,19.084 23.376,27.549c8.778,8.669 18.204,16.775 28.679,23.338c3.793,2.377 7.715,4.555 11.732,6.531c7.693,3.784 15.629,7.037 23.472,10.493c1.43,0.639 2.859,1.283 4.286,1.93c4.315,1.997 8.599,4.057 12.805,6.276c6.172,3.257 12.184,6.816 17.996,10.678c8.806,5.853 17.145,12.386 25.062,19.39c4.033,3.568 7.943,7.266 11.787,11.036c0.263,0.261 0.527,0.524 0.79,0.786l0.003,-0.003l0.533,0.538c0.56,0.56 1.119,1.12 1.677,1.682c6.381,6.506 12.528,13.232 18.255,20.323c6.85,8.481 13.086,17.451 18.536,26.895c0.779,1.351 1.542,2.711 2.289,4.08c2.902,5.277 5.574,10.678 8.074,16.159c2.937,6.435 5.634,12.976 8.467,19.457c0.736,1.657 1.481,3.308 2.24,4.955c1.233,2.617 2.5,5.215 3.868,7.765c0.227,0.424 0.457,0.846 0.689,1.267c1.704,3.053 3.534,6.035 5.485,8.936c6.573,9.774 14.436,18.583 22.714,26.933l0.579,0.573c8.736,8.627 18.115,16.705 28.548,23.224c3.531,2.206 7.174,4.223 10.897,6.085c7.878,3.94 16.068,7.226 24.127,10.768c1.431,0.637 2.86,1.278 4.287,1.924c4.325,1.997 8.616,4.059 12.829,6.282c6.196,3.269 12.227,6.847 18.058,10.729c13.322,8.871 25.545,19.288 36.931,30.519l-57.707,57.707ZM3375.27,3485.96c-7.791,-7.661 -16.11,-14.84 -25.259,-20.829c-3.757,-2.46 -7.65,-4.703 -11.646,-6.749c-2.89,-1.48 -5.832,-2.849 -8.79,-4.187c-5.629,-2.505 -11.308,-4.895 -16.949,-7.374c-4.978,-2.224 -9.923,-4.517 -14.772,-7.011c-6.132,-3.155 -12.114,-6.6 -17.906,-10.343c-16.304,-10.538 -31.008,-23.377 -44.539,-37.255c-11.525,-11.82 -22.176,-24.54 -31.131,-38.429c-2.197,-3.409 -4.287,-6.883 -6.275,-10.415c-3.301,-5.826 -6.314,-11.809 -9.11,-17.895c-2.983,-6.493 -5.713,-13.097 -8.565,-19.648c-0.731,-1.657 -1.471,-3.309 -2.225,-4.957c-1.337,-2.859 -2.714,-5.696 -4.214,-8.474l-0.266,-0.49c-1.812,-3.276 -3.771,-6.469 -5.874,-9.567c-6.25,-9.212 -13.685,-17.53 -21.511,-25.421c-8.211,-8.157 -17.017,-15.782 -26.766,-22.05c-3.506,-2.253 -7.131,-4.317 -10.84,-6.217c-3.468,-1.776 -7.008,-3.399 -10.565,-4.988c-5.102,-2.248 -10.233,-4.43 -15.331,-6.686c-4.997,-2.243 -9.958,-4.559 -14.825,-7.075c-6.141,-3.174 -12.132,-6.636 -17.935,-10.394c-15.716,-10.179 -29.95,-22.483 -43.089,-35.787c-12.098,-12.251 -23.279,-25.461 -32.622,-39.947c-4.921,-7.629 -9.297,-15.591 -13.209,-23.782c-3.765,-7.881 -7.073,-15.966 -10.571,-23.967c-0.735,-1.656 -1.48,-3.307 -2.238,-4.952c-1.112,-2.357 -2.247,-4.701 -3.464,-7.006c-1.826,-3.459 -3.81,-6.835 -5.956,-10.105c-6.2,-9.446 -13.661,-18.01 -21.588,-26.037c-8.916,-9.029 -18.482,-17.544 -29.168,-24.438c-3.502,-2.259 -7.122,-4.329 -10.831,-6.229c-3.421,-1.751 -6.916,-3.347 -10.428,-4.905c-5.038,-2.203 -10.105,-4.335 -15.143,-6.538c-4.965,-2.2 -9.895,-4.476 -14.73,-6.952c-6.123,-3.135 -12.095,-6.562 -17.876,-10.29c-15.697,-10.125 -29.893,-22.404 -42.999,-35.676c-12.1,-12.252 -23.286,-25.465 -32.628,-39.954c-4.917,-7.628 -9.293,-15.587 -13.204,-23.774c-3.764,-7.882 -7.069,-15.967 -10.57,-23.967c-0.735,-1.656 -1.48,-3.307 -2.238,-4.953c-1.235,-2.617 -2.501,-5.217 -3.869,-7.767c-1.868,-3.481 -3.898,-6.873 -6.09,-10.158c-6.699,-10.038 -14.804,-19.084 -23.376,-27.549c-8.698,-8.59 -18.033,-16.636 -28.428,-23.116c-3.72,-2.32 -7.57,-4.44 -11.512,-6.359c-7.642,-3.719 -15.526,-6.907 -23.31,-10.31c-1.438,-0.638 -2.875,-1.281 -4.309,-1.928c-3.913,-1.805 -7.801,-3.659 -11.625,-5.646c-6.17,-3.207 -12.18,-6.717 -17.995,-10.531c-15.175,-9.952 -28.935,-21.915 -41.669,-34.811c-12.468,-12.625 -23.96,-26.273 -33.473,-41.277c-4.579,-7.221 -8.672,-14.735 -12.357,-22.449c-3.764,-7.882 -7.073,-15.966 -10.571,-23.967c-0.735,-1.657 -1.48,-3.308 -2.239,-4.954c-1.236,-2.623 -2.506,-5.226 -3.876,-7.781c-1.864,-3.477 -3.893,-6.864 -6.083,-10.145c-6.09,-9.126 -13.349,-17.426 -21.047,-25.22c-8.951,-9.064 -18.557,-17.606 -29.277,-24.536c-4.027,-2.603 -8.209,-4.957 -12.497,-7.102c-2.943,-1.472 -5.937,-2.836 -8.941,-4.177c-5.047,-2.221 -10.126,-4.369 -15.176,-6.585c-4.951,-2.203 -9.87,-4.478 -14.695,-6.948c-6.571,-3.364 -12.97,-7.063 -19.147,-11.107c-15.679,-10.262 -29.852,-22.673 -42.913,-36.072c-11.47,-11.767 -22.052,-24.441 -30.967,-38.263l-0.221,-0.343c-1.593,-2.462 -3.135,-4.958 -4.622,-7.489c-3.924,-6.68 -7.449,-13.581 -10.683,-20.62c-2.983,-6.493 -5.713,-13.098 -8.565,-19.648c-0.347,-0.788 -0.697,-1.575 -1.049,-2.36c-0.368,-0.808 -0.739,-1.614 -1.113,-2.419c-1.134,-2.388 -2.29,-4.762 -3.529,-7.097c-2.005,-3.78 -4.191,-7.463 -6.566,-11.022c-6.046,-9.06 -13.235,-17.311 -20.878,-25.051l-0.784,-0.791c-8.26,-8.222 -17.12,-15.909 -26.936,-22.219c-3.506,-2.254 -7.131,-4.318 -10.84,-6.217c-3.468,-1.777 -7.009,-3.399 -10.565,-4.988c-5.102,-2.248 -10.233,-4.43 -15.332,-6.686c-4.996,-2.243 -9.958,-4.56 -14.824,-7.075c-6.142,-3.174 -12.133,-6.636 -17.935,-10.395c-15.135,-9.802 -28.894,-21.574 -41.625,-34.313c-1.282,-1.274 -2.553,-2.558 -3.813,-3.851c-11.525,-11.82 -22.176,-24.54 -31.131,-38.429c-4.918,-7.629 -9.295,-15.588 -13.206,-23.777c-3.765,-7.882 -7.069,-15.967 -10.571,-23.966c-0.733,-1.654 -1.476,-3.302 -2.234,-4.945c-1.236,-2.62 -2.503,-5.223 -3.873,-7.776c-2.024,-3.773 -4.241,-7.44 -6.645,-10.982c-6.252,-9.215 -13.691,-17.537 -21.52,-25.43c-8.379,-8.326 -17.349,-16.14 -27.287,-22.551c-3.502,-2.259 -7.123,-4.33 -10.832,-6.229c-3.421,-1.751 -6.916,-3.347 -10.427,-4.906c-5.038,-2.202 -10.106,-4.335 -15.143,-6.537c-4.965,-2.201 -9.895,-4.477 -14.73,-6.952c-6.123,-3.135 -12.095,-6.562 -17.876,-10.291c-15.698,-10.125 -29.893,-22.403 -42.999,-35.675c-12.1,-12.252 -23.286,-25.465 -32.628,-39.955c-4.918,-7.627 -9.294,-15.586 -13.204,-23.774c-3.765,-7.881 -7.069,-15.967 -10.571,-23.966c-0.734,-1.657 -1.479,-3.307 -2.237,-4.953c-1.235,-2.617 -2.501,-5.217 -3.87,-7.768c-1.867,-3.48 -3.897,-6.872 -6.089,-10.158c-6.699,-10.038 -14.805,-19.084 -23.376,-27.548c-8.698,-8.59 -18.034,-16.636 -28.428,-23.117c-3.721,-2.319 -7.57,-4.439 -11.512,-6.358c-7.642,-3.72 -15.526,-6.907 -23.31,-10.31c-1.439,-0.638 -2.875,-1.282 -4.309,-1.929c-3.913,-1.805 -7.802,-3.658 -11.626,-5.646c-6.169,-3.206 -12.18,-6.717 -17.994,-10.53c-15.175,-9.953 -28.935,-21.916 -41.67,-34.811c-12.468,-12.625 -23.959,-26.273 -33.473,-41.278c-4.578,-7.221 -8.672,-14.734 -12.356,-22.448c-3.764,-7.882 -7.073,-15.966 -10.571,-23.967c-0.735,-1.657 -1.48,-3.309 -2.239,-4.955c-1.236,-2.623 -2.507,-5.225 -3.876,-7.781c-1.864,-3.477 -3.894,-6.863 -6.084,-10.145c-6.089,-9.125 -13.349,-17.425 -21.047,-25.22c-8.951,-9.064 -18.557,-17.605 -29.277,-24.535c-4.027,-2.604 -8.208,-4.958 -12.496,-7.102c-2.943,-1.472 -5.937,-2.837 -8.942,-4.178c-5.047,-2.221 -10.126,-4.368 -15.175,-6.584c-4.952,-2.204 -9.87,-4.478 -14.695,-6.948c-6.572,-3.365 -12.97,-7.064 -19.148,-11.107c-15.678,-10.263 -29.851,-22.673 -42.913,-36.073c-11.469,-11.767 -22.051,-24.44 -30.967,-38.262c-4.919,-7.627 -9.303,-15.581 -13.234,-23.758c-3.813,-7.931 -7.178,-16.062 -10.734,-24.108c-0.75,-1.677 -1.511,-3.348 -2.285,-5.014c-1.133,-2.387 -2.29,-4.762 -3.528,-7.097c-2.005,-3.78 -4.191,-7.462 -6.566,-11.021c-6.046,-9.06 -13.236,-17.312 -20.879,-25.052c-8.591,-8.701 -17.801,-16.905 -28.052,-23.616c-3.756,-2.459 -7.649,-4.702 -11.646,-6.749c-2.889,-1.479 -5.832,-2.849 -8.789,-4.186c-5.629,-2.505 -11.309,-4.895 -16.949,-7.374c-4.978,-2.224 -9.923,-4.517 -14.773,-7.012c-6.132,-3.154 -12.113,-6.599 -17.905,-10.342c-16.304,-10.538 -31.008,-23.377 -44.54,-37.256c-11.524,-11.82 -22.176,-24.54 -31.13,-38.429c-2.198,-3.408 -4.287,-6.883 -6.275,-10.414c-3.301,-5.826 -6.315,-11.809 -9.111,-17.895c-2.983,-6.493 -5.713,-13.098 -8.565,-19.648c-0.731,-1.658 -1.471,-3.31 -2.224,-4.957c-1.338,-2.859 -2.715,-5.696 -4.214,-8.474l-0.266,-0.49c-1.813,-3.276 -3.772,-6.47 -5.874,-9.568c-6.25,-9.211 -13.686,-17.53 -21.511,-25.42c-8.211,-8.158 -17.017,-15.783 -26.766,-22.05c-3.506,-2.254 -7.131,-4.318 -10.84,-6.217c-3.468,-1.777 -7.009,-3.399 -10.565,-4.988c-5.102,-2.248 -10.233,-4.43 -15.332,-6.686c-4.996,-2.243 -9.958,-4.56 -14.824,-7.075c-6.142,-3.174 -12.133,-6.636 -17.935,-10.395c-15.717,-10.179 -29.95,-22.482 -43.089,-35.787c-12.098,-12.25 -23.279,-25.461 -32.623,-39.946c-4.921,-7.629 -9.297,-15.592 -13.209,-23.782c-3.764,-7.882 -7.073,-15.966 -10.571,-23.967c-0.735,-1.656 -1.479,-3.307 -2.237,-4.953c-1.112,-2.357 -2.247,-4.7 -3.464,-7.005c-1.827,-3.459 -3.81,-6.835 -5.957,-10.106c-6.199,-9.446 -13.66,-18.01 -21.587,-26.036c-8.917,-9.029 -18.482,-17.544 -29.168,-24.438c-3.502,-2.259 -7.123,-4.33 -10.832,-6.229c-3.421,-1.751 -6.916,-3.347 -10.427,-4.906c-5.038,-2.202 -10.106,-4.335 -15.143,-6.537c-4.965,-2.201 -9.895,-4.477 -14.73,-6.952c-6.123,-3.135 -12.095,-6.562 -17.876,-10.291c-15.698,-10.125 -29.893,-22.403 -42.999,-35.675c-12.1,-12.252 -23.286,-25.465 -32.628,-39.955c-4.918,-7.627 -9.294,-15.586 -13.204,-23.774c-3.765,-7.881 -7.069,-15.967 -10.571,-23.966c-0.734,-1.657 -1.479,-3.307 -2.237,-4.953c-1.235,-2.617 -2.501,-5.217 -3.87,-7.768c-1.867,-3.48 -3.897,-6.872 -6.089,-10.158c-6.699,-10.038 -14.805,-19.084 -23.376,-27.548c-8.698,-8.59 -18.034,-16.636 -28.428,-23.117c-3.721,-2.319 -7.57,-4.439 -11.512,-6.358c-7.642,-3.72 -15.526,-6.907 -23.31,-10.31c-1.439,-0.638 -2.875,-1.282 -4.309,-1.929c-3.913,-1.805 -7.802,-3.658 -11.626,-5.646c-6.169,-3.206 -12.18,-6.717 -17.994,-10.53c-15.175,-9.953 -28.935,-21.916 -41.67,-34.811c-12.468,-12.625 -23.959,-26.273 -33.473,-41.278c-4.578,-7.221 -8.672,-14.734 -12.356,-22.448c-3.764,-7.882 -7.073,-15.966 -10.571,-23.967c-0.735,-1.657 -1.48,-3.309 -2.239,-4.955c-1.236,-2.623 -2.507,-5.225 -3.876,-7.781c-1.864,-3.477 -3.894,-6.863 -6.084,-10.145c-6.089,-9.125 -13.349,-17.425 -21.047,-25.22c-8.951,-9.064 -18.557,-17.605 -29.277,-24.535c-4.027,-2.604 -8.208,-4.958 -12.496,-7.102c-2.943,-1.472 -5.937,-2.837 -8.942,-4.178c-5.047,-2.221 -10.126,-4.368 -15.175,-6.584c-4.952,-2.204 -9.87,-4.478 -14.695,-6.948c-6.572,-3.365 -12.97,-7.064 -19.148,-11.107c-15.678,-10.263 -29.851,-22.673 -42.913,-36.073c-11.469,-11.767 -22.051,-24.44 -30.967,-38.262c-4.919,-7.627 -9.303,-15.581 -13.234,-23.758c-3.813,-7.931 -7.178,-16.062 -10.734,-24.108c-0.75,-1.677 -1.511,-3.348 -2.285,-5.014c-1.133,-2.387 -2.29,-4.762 -3.528,-7.097c-2.005,-3.78 -4.191,-7.462 -6.566,-11.021c-6.046,-9.06 -13.236,-17.312 -20.879,-25.052c-8.591,-8.701 -17.801,-16.905 -28.052,-23.616c-3.756,-2.459 -7.649,-4.702 -11.646,-6.749c-2.889,-1.479 -5.832,-2.849 -8.789,-4.186c-5.629,-2.505 -11.309,-4.895 -16.949,-7.374c-4.978,-2.224 -9.923,-4.517 -14.773,-7.012c-6.132,-3.154 -12.113,-6.599 -17.905,-10.342c-16.304,-10.538 -31.008,-23.377 -44.54,-37.256c-11.524,-11.82 -22.176,-24.54 -31.13,-38.429c-4.919,-7.628 -9.296,-15.587 -13.207,-23.776c-3.764,-7.882 -7.069,-15.967 -10.57,-23.966c-0.733,-1.654 -1.476,-3.302 -2.234,-4.945c-1.236,-2.62 -2.503,-5.223 -3.873,-7.776c-2.024,-3.773 -4.241,-7.44 -6.645,-10.983c-6.312,-9.301 -13.832,-17.693 -21.742,-25.653l57.886,-57.524c6.569,6.61 12.908,13.443 18.835,20.638c7.415,9 14.174,18.538 20.044,28.618c3.854,6.617 7.308,13.455 10.486,20.42c2.936,6.436 5.634,12.976 8.467,19.457c0.736,1.657 1.48,3.309 2.24,4.955c1.233,2.617 2.499,5.216 3.868,7.765c1.867,3.481 3.896,6.873 6.089,10.159c6.701,10.038 14.805,19.085 23.378,27.551c8.736,8.627 18.115,16.704 28.548,23.223c3.531,2.206 7.174,4.224 10.896,6.085c7.879,3.941 16.069,7.226 24.128,10.768c1.431,0.637 2.86,1.278 4.287,1.924c4.325,1.997 8.616,4.059 12.829,6.282c6.196,3.269 12.227,6.847 18.058,10.73c14.562,9.696 27.81,21.24 40.088,33.674c12.04,12.194 23.149,25.357 32.448,39.772c4.921,7.627 9.305,15.582 13.237,23.76c3.811,7.928 7.175,16.056 10.729,24.1c0.752,1.679 1.514,3.353 2.289,5.022c1.135,2.391 2.295,4.768 3.534,7.107c2.002,3.776 4.186,7.455 6.559,11.009c6.047,9.061 13.236,17.313 20.88,25.054c8.591,8.701 17.8,16.906 28.051,23.616c3.514,2.3 7.148,4.413 10.875,6.35c3.142,1.633 6.349,3.131 9.573,4.592c5.626,2.504 11.303,4.889 16.939,7.369c4.571,2.04 9.115,4.137 13.579,6.402c6.549,3.323 12.932,6.965 19.1,10.952c15.705,10.153 29.92,22.442 43.042,35.731c12.098,12.25 23.277,25.46 32.621,39.944c4.922,7.629 9.299,15.593 13.211,23.784c3.766,7.885 7.075,15.972 10.574,23.976c0.733,1.653 1.477,3.301 2.234,4.944c1.112,2.356 2.246,4.699 3.462,7.002c1.981,3.75 4.147,7.4 6.501,10.928c6.695,10.038 14.803,19.081 23.372,27.544c8.698,8.59 18.033,16.636 28.428,23.116c3.723,2.321 7.575,4.441 11.52,6.363c7.639,3.721 15.524,6.902 23.304,10.308c1.438,0.637 2.873,1.279 4.305,1.926c4.332,1.997 8.629,4.06 12.848,6.286c5.744,3.031 11.346,6.33 16.776,9.892c15.174,9.953 28.933,21.915 41.667,34.81c12.468,12.625 23.96,26.273 33.473,41.277c4.579,7.221 8.673,14.735 12.357,22.449c3.764,7.882 7.073,15.966 10.571,23.967c0.735,1.657 1.48,3.308 2.239,4.954c1.233,2.618 2.5,5.216 3.868,7.766c1.868,3.48 3.897,6.873 6.09,10.158c6.091,9.126 13.35,17.427 21.048,25.222c8.689,8.799 17.993,17.113 28.354,23.908c3.514,2.305 7.146,4.423 10.874,6.36c3.122,1.623 6.309,3.109 9.515,4.558c5.591,2.478 11.233,4.838 16.836,7.288c4.962,2.202 9.891,4.475 14.724,6.95c6.122,3.135 12.095,6.561 17.876,10.29c16.293,10.511 30.976,23.336 44.491,37.197c11.523,11.818 22.169,24.536 31.127,38.421c4.921,7.629 9.298,15.593 13.21,23.784c3.764,7.882 7.073,15.966 10.571,23.967c0.735,1.656 1.479,3.307 2.238,4.953c1.111,2.356 2.245,4.699 3.462,7.003c1.98,3.748 4.144,7.397 6.497,10.922c6.7,10.039 14.804,19.084 23.375,27.549c8.779,8.669 18.205,16.775 28.679,23.338c3.794,2.377 7.716,4.555 11.732,6.531c7.694,3.784 15.63,7.038 23.473,10.494c1.43,0.639 2.859,1.282 4.286,1.929c4.315,1.998 8.599,4.058 12.805,6.277c6.172,3.256 12.184,6.815 17.996,10.678c8.806,5.852 17.145,12.386 25.062,19.389c4.033,3.568 7.943,7.266 11.787,11.036c0.263,0.262 0.527,0.524 0.79,0.786l0.002,-0.002l0.534,0.538c0.56,0.559 1.119,1.12 1.677,1.682c6.381,6.505 12.528,13.231 18.255,20.322c6.85,8.481 13.086,17.451 18.535,26.895c0.78,1.351 1.543,2.712 2.29,4.081c2.902,5.277 5.573,10.678 8.074,16.158c2.936,6.436 5.634,12.976 8.467,19.457c0.736,1.657 1.48,3.309 2.24,4.955c1.233,2.617 2.499,5.216 3.867,7.765c0.228,0.424 0.458,0.846 0.69,1.267c1.704,3.054 3.533,6.035 5.485,8.937c6.573,9.773 14.436,18.583 22.714,26.932l0.579,0.574c8.736,8.627 18.115,16.704 28.548,23.223c3.531,2.206 7.174,4.224 10.896,6.085c7.879,3.941 16.069,7.226 24.128,10.768c1.431,0.637 2.86,1.278 4.287,1.924c4.325,1.997 8.616,4.059 12.829,6.282c6.196,3.269 12.227,6.847 18.058,10.73c14.562,9.696 27.81,21.24 40.088,33.674c12.04,12.194 23.149,25.357 32.448,39.772c4.921,7.627 9.305,15.582 13.237,23.76c3.811,7.928 7.175,16.056 10.729,24.1c0.752,1.679 1.514,3.353 2.289,5.022c1.135,2.391 2.295,4.768 3.534,7.107c2.002,3.776 4.186,7.455 6.559,11.009c6.047,9.061 13.236,17.313 20.88,25.054c8.591,8.701 17.8,16.906 28.051,23.616c3.514,2.3 7.148,4.413 10.875,6.35c3.142,1.633 6.349,3.131 9.573,4.592c5.626,2.504 11.303,4.889 16.939,7.369c4.571,2.04 9.115,4.137 13.579,6.402c6.549,3.323 12.932,6.965 19.1,10.952c15.705,10.153 29.92,22.442 43.042,35.731c12.098,12.25 23.277,25.46 32.621,39.944c4.922,7.629 9.299,15.593 13.211,23.784c3.766,7.885 7.075,15.972 10.574,23.976c0.733,1.653 1.477,3.301 2.234,4.944c1.112,2.356 2.246,4.699 3.462,7.002c1.981,3.75 4.147,7.4 6.501,10.928c6.695,10.038 14.803,19.081 23.372,27.544c8.698,8.59 18.033,16.636 28.428,23.116c3.723,2.321 7.575,4.441 11.52,6.363c7.639,3.721 15.524,6.902 23.304,10.308c1.437,0.637 2.872,1.279 4.305,1.926c4.332,1.997 8.629,4.06 12.848,6.286c5.744,3.031 11.345,6.33 16.776,9.892c15.174,9.953 28.933,21.915 41.667,34.81c12.468,12.625 23.96,26.273 33.473,41.277c4.579,7.221 8.673,14.735 12.357,22.449c3.764,7.882 7.073,15.966 10.571,23.967c0.735,1.657 1.48,3.308 2.239,4.954c1.233,2.618 2.5,5.216 3.868,7.766c1.868,3.48 3.897,6.873 6.09,10.158c6.091,9.126 13.35,17.427 21.048,25.222c8.689,8.799 17.993,17.113 28.354,23.908c3.514,2.305 7.146,4.423 10.874,6.36c3.122,1.623 6.309,3.109 9.515,4.558c5.591,2.478 11.233,4.838 16.836,7.288c4.962,2.202 9.891,4.475 14.724,6.95c6.122,3.135 12.095,6.561 17.876,10.29c16.293,10.511 30.976,23.336 44.491,37.197c11.523,11.818 22.169,24.536 31.127,38.421c4.921,7.629 9.298,15.593 13.21,23.784c3.764,7.882 7.073,15.966 10.571,23.967c0.735,1.656 1.479,3.307 2.238,4.953c1.111,2.356 2.245,4.699 3.462,7.003c1.979,3.748 4.144,7.397 6.497,10.922c6.265,9.386 13.757,17.905 21.711,25.892c0.27,0.269 0.541,0.537 0.812,0.805c8.736,8.627 18.115,16.705 28.549,23.223c3.53,2.206 7.173,4.224 10.896,6.086c7.879,3.94 16.068,7.226 24.128,10.768c1.43,0.637 2.859,1.278 4.286,1.923c4.325,1.997 8.616,4.06 12.83,6.283c6.195,3.269 12.226,6.847 18.057,10.729c14.394,9.584 27.505,20.974 39.663,33.245c0.422,0.422 0.845,0.846 1.266,1.271c6.381,6.505 12.528,13.231 18.255,20.322c6.85,8.481 13.086,17.451 18.535,26.895c3.783,6.555 7.166,13.328 10.288,20.22c0.291,0.643 0.58,1.286 0.866,1.931c2.604,5.78 5.067,11.623 7.629,17.422c0.752,1.679 1.514,3.353 2.289,5.022c1.136,2.391 2.295,4.769 3.535,7.108c1.732,3.268 3.601,6.463 5.611,9.568c0.296,0.452 0.594,0.901 0.895,1.349c6.584,9.791 14.465,18.614 22.759,26.977c8.068,8.019 16.696,15.548 26.224,21.784c3.515,2.301 7.148,4.414 10.875,6.351c3.142,1.633 6.349,3.13 9.574,4.591c5.626,2.504 11.303,4.889 16.939,7.37c4.571,2.039 9.114,4.136 13.579,6.401c6.548,3.323 12.932,6.966 19.099,10.952c15.706,10.153 29.92,22.443 43.043,35.731c12.097,12.25 23.277,25.46 32.621,39.944c4.921,7.629 9.298,15.593 13.21,23.784c3.766,7.885 7.076,15.972 10.575,23.976c0.733,1.654 1.477,3.301 2.234,4.944c1.111,2.356 2.245,4.699 3.462,7.003c1.981,3.75 4.146,7.4 6.5,10.928c6.696,10.037 14.803,19.081 23.372,27.543c8.698,8.59 18.034,16.636 28.428,23.117c3.724,2.321 7.576,4.44 11.52,6.362c7.639,3.721 15.524,6.902 23.305,10.308c1.437,0.637 2.872,1.28 4.305,1.926c4.331,1.998 8.628,4.06 12.847,6.287c5.744,3.03 11.346,6.33 16.776,9.892c15.174,9.953 28.934,21.914 41.668,34.809c12.468,12.625 23.959,26.273 33.473,41.278c4.578,7.221 8.672,14.734 12.356,22.448c3.765,7.882 7.073,15.966 10.571,23.967c0.735,1.657 1.48,3.309 2.24,4.955c1.233,2.617 2.499,5.216 3.867,7.765c1.868,3.481 3.897,6.873 6.09,10.159c6.091,9.125 13.35,17.426 21.049,25.222c8.689,8.798 17.993,17.113 28.354,23.908c3.513,2.304 7.145,4.422 10.873,6.36c3.122,1.622 6.31,3.109 9.515,4.558c5.591,2.478 11.233,4.838 16.837,7.287c4.962,2.203 9.89,4.475 14.723,6.95c6.123,3.135 12.095,6.561 17.876,10.291c16.293,10.51 30.976,23.335 44.491,37.196c11.524,11.819 22.17,24.537 31.127,38.421c4.922,7.63 9.298,15.594 13.21,23.785c3.765,7.881 7.073,15.966 10.571,23.967c0.735,1.656 1.48,3.307 2.238,4.952c1.111,2.356 2.246,4.699 3.462,7.003c1.98,3.748 4.144,7.397 6.497,10.923c6.7,10.038 14.804,19.084 23.376,27.549c8.778,8.669 18.205,16.774 28.679,23.338c3.793,2.376 7.715,4.554 11.732,6.53c7.693,3.785 15.63,7.038 23.472,10.494c1.431,0.639 2.859,1.282 4.286,1.93c4.315,1.997 8.599,4.057 12.805,6.276c6.172,3.257 12.184,6.815 17.996,10.678c8.807,5.852 17.145,12.386 25.063,19.39c4.032,3.567 7.942,7.265 11.786,11.035c0.264,0.262 0.527,0.524 0.79,0.787l0.003,-0.003l0.533,0.538c0.56,0.56 1.12,1.12 1.678,1.682c6.381,6.505 12.528,13.231 18.255,20.323c6.849,8.481 13.085,17.451 18.535,26.894c0.78,1.352 1.542,2.712 2.289,4.081c2.903,5.277 5.574,10.678 8.074,16.159c2.937,6.435 5.634,12.976 8.468,19.457c0.735,1.657 1.48,3.308 2.239,4.954c1.233,2.617 2.5,5.216 3.868,7.766c0.227,0.423 0.457,0.846 0.689,1.267c1.704,3.053 3.534,6.035 5.485,8.936c6.573,9.773 14.437,18.583 22.715,26.932l0.578,0.574c8.736,8.627 18.115,16.705 28.549,23.223c3.53,2.206 7.173,4.224 10.896,6.086c7.879,3.94 16.068,7.226 24.128,10.768c1.43,0.637 2.859,1.278 4.286,1.923c4.325,1.997 8.616,4.06 12.83,6.283c6.195,3.269 12.226,6.847 18.057,10.729c13.323,8.87 25.545,19.288 36.931,30.519l-57.707,57.707Z" style="fill:#f54f4f"/>\n</g>\n</g>\n</g>\n<path class="scene--trump__red-bg" d="M-115,715.759l2088.3,369.423l7.816,1389.15l-2096.12,0l0,-1758.57Z" style="fill:#e34a47"/>\n<g class="scene--trump__whitehouse">\n<path d="M-94.046,372.149l200.165,-7.795c7.439,-9.955 -0.317,-27.435 8.594,-26.485l9.389,0.624c9.092,1.274 12.068,12.879 10.589,29.291l99.825,35.856l0,107.167l-2.494,5.798l2.494,106.24c-4.77,8.68 -5.909,106.939 0,118.395l-21.014,133.978l-444.806,0l0,-458.326l111.493,-41.313l0,-26.409c-0.534,-8.323 2.123,-11.882 7.971,-10.677l9.627,0c2.488,1.291 4.505,9.16 3.49,14.537l4.677,19.119Z" style="fill:#e9e9e9"/>\n<path d="M310.444,408.434l2.728,-17.035c0.575,-12.436 -5.216,-28.103 -14.916,-27.234l-12.03,0c-14.285,0.574 -10.028,13.951 -8.66,30.782c0.87,10.703 -16.389,17.052 -16.484,13.197l-103.237,-0.606c-0.405,7.254 -0.065,416.191 -0.008,481.535c0.005,5.665 8.688,8.762 8.688,8.762c68.569,-3.462 128.288,-0.685 187.953,-0.64c130.091,0.097 194.565,3.109 301.1,1.578c10.629,-0.19 55.197,-3.697 56.301,-7.615c1.204,-8.879 1.863,-17.188 -1.291,-21.503l-3.269,-5.619l-17.421,-2.166l-35.621,-103.733l21.976,-263.518c6.746,0.116 19.243,-41.729 13.199,-40.451l-20.937,-43.631l-358.071,-2.103Z" style="fill:#e9e9e9"/>\n<path d="M-135.75,878.336c-59.38,-28.446 -124.113,-53.301 -96.826,-139.862l6.64,-3.922c0,0 4.857,-6.105 4.993,-11.895c0.991,-42.253 4.801,-217.887 -0.218,-223.157c-0.679,-0.713 -4.115,-0.186 -5.254,0.403c-15.264,7.898 -21.827,-7.397 -21.348,-16.982c0.405,-8.112 -3.776,-10.575 -3.776,-10.575l-7.106,-4.145c-5.908,-2.904 -10.787,-13.78 -8.54,-19.289l3.429,-24.226c0,0 10.383,-13.392 39.875,-28.408c-4.993,-8.321 6.426,-15.363 10.832,-15.777c3.113,-0.293 10.981,-0.392 10.494,6.156c9.091,-3.635 19.384,-7.221 30.999,-10.596c0.765,-6.588 4.316,-12.762 19.572,-15.68c5.859,-1.12 12.139,0.258 19.261,6.37c17.165,-3.335 36.387,-6.139 57.87,-8.136c0.198,-6.57 2.931,-10.702 18.933,-10.735c10.574,-0.021 21.312,2.086 19.916,8.163c10.596,-0.435 21.651,-0.685 33.181,-0.725l0,-174.524l7.405,0l0,174.526c10.962,0.043 21.499,0.255 31.624,0.62c2.705,-6.093 12.443,-7.414 18.933,-7.263c14.901,0.346 19.367,2.245 19.93,9.532c21.41,1.759 40.625,4.233 57.835,7.181c5.75,-4.733 4.48,-8.966 12.551,-6.497c5.351,1.637 25.861,4.874 26.393,14.714c11.523,2.939 21.795,6.064 30.921,9.24c-0.865,-5.717 5.75,-4.184 11.862,-2.128c5.394,1.813 10.396,3.344 9.523,10.489c19.371,8.505 30.975,16.726 37.319,21.467c8.335,6.23 7.596,16.348 5.601,14.944l0,23.812l-4.911,10.359l-7.191,4.11c-3.539,2.635 -5.243,6.934 -4.267,13.662l0,15.605c-1.074,6.7 -4.174,10.316 -8.951,11.377c-2.588,5.133 -7.808,5.134 -13.185,-1.607c-1.325,-1.662 -7.311,-3.661 -8.047,3.293c-1.964,18.571 -0.103,61.058 0.568,103.271c0.872,54.933 -0.724,109.403 0.299,110.102c-0.424,6.563 0.652,11.551 5.029,13.072c6.271,-1.004 10.453,1.362 8.098,14.275l0,114.115c0.14,10.382 -52.631,18.572 -59.352,19.547l-26.985,-3.795c-11.096,-0.781 -15.298,-3.954 -13.788,-9.11l0.39,-44.29c0,-13.027 -10.966,-27.501 -23.994,-27.501c-13.027,0 -25.162,12.915 -25.163,25.942l1.092,38.133c-1.604,8.823 -3.804,16.811 -12.051,16.345l-44.126,0c-3.814,-1.869 -5.367,-7.174 -5.047,-15.327l0.551,-36.812c0,-13.028 -11.356,-28.281 -24.384,-28.281c-13.027,0 -23.603,10.576 -23.604,23.604l0,48.187c-0.805,4.817 -4.011,7.819 -10.114,8.629l-44.353,0c-11.433,0.381 -13.331,-3.236 -12.181,-8.13l-0.338,-53.363c0,-13.028 -10.187,-18.927 -23.215,-18.927c-13.027,0 -22.044,11.356 -22.045,24.383l-1.559,56.037ZM-154.894,635.554c1.367,-9.194 -3.134,-17.74 -11.491,-16.356c-11.155,1.848 -21.935,0.898 -23.386,16.761l0,83.761c-1.416,12.133 2.349,18.531 12.367,18.005l0.609,19.67c-0.904,17.18 10.903,15.085 7.357,-0.051l0,-19.76c0,0 11.482,-1.931 11.504,-18.772c0.021,-16.658 -2.09,-48.743 3.04,-83.258ZM168.474,618.738c-10.676,-0.508 -13.395,7.547 -10.224,11.895l0,81.349c-2.619,14.927 -0.994,23.958 6.236,25.203c1.637,0.282 5.342,0.165 5.787,8.982l0.662,13.294c-1.02,8.768 -0.934,8.476 3.521,8.758c5.448,0.345 5.661,-1.561 5.316,-6.654l0,-16.409c-0.712,-10.871 12.348,-10.508 12.912,-25.623c0.953,-25.543 -0.336,-49.895 0.181,-89.605c0.117,-8.975 -14.307,-10.709 -24.391,-11.19ZM-66.744,624.768c0,0 -0.67,-15.893 -5.855,-15.658c-9.452,0.428 -23.976,8.913 -33.334,2.919c-10.859,-6.956 -21.757,14.978 -16.538,24.052l0,95.332l13.569,5.4l0.678,20.554c1.408,10.606 4.683,19.502 26.868,11.073l0.389,-11.9c-0.911,-19.317 4.416,-26.701 14.223,-25.515l0,-106.257ZM34.479,609.034c-11.895,-0.188 -20.755,0.49 -34.436,0.49c-6.244,0 -14.092,4.291 -18.157,0.067c-5.59,-5.81 -16.314,3.644 -16.335,13.587c-0.118,55.876 2.148,107.067 2.148,107.067c6.294,-0.851 13.484,5.899 11.591,18.702c-2.514,16.997 1.634,19.23 13.434,21.478c11.085,2.112 29.749,0.293 31.151,-6.662l0.544,-13.174c0.302,-12.207 4.986,-17.782 11.663,-20.344c0,0 5.552,-1.405 5.708,-15.76c0.213,-19.686 1.485,-105.311 -7.311,-105.451ZM86.286,611.202c-8.275,-3.977 -19.139,15.041 -16.633,18.191l0,88.5c-2.029,10.356 0.287,16.128 7.846,16.369c5.072,0.972 7.397,4.741 5.709,12.595c-1.488,20.015 5.675,27.616 22.342,21.583c8.891,2.951 12.921,0.162 11.084,-9.557l0,-10.496c-1.721,-5.265 -0.683,-10.189 5.808,-14.437l5.289,-3.308c0,0 -0.181,-46.422 0.515,-105.232c0.107,-9.064 -3.137,-11.834 -5.598,-12.027c-10.639,-0.836 -24.033,3.743 -36.362,-2.181ZM166.529,479.055c-0.646,10.461 -6.096,12.75 -6.096,12.75c-2.171,1.532 -2.811,5.384 -2.183,11.158l0,79.017c-1.892,1.132 2.107,6.51 5.422,7.083c8.19,1.414 15.096,3.873 19.962,4.204c3.939,0.268 9.673,-1.649 9.613,-6.265c-0.598,-45.658 -0.105,-85.048 -2.377,-87.502c-4.743,-5.123 -0.66,-15.63 -14.355,-18.42c-3.163,-0.644 -6.479,-1.365 -9.986,-2.025ZM-161.34,484.76c-1.06,-2.432 -5.722,-6.221 -7.422,-5.903c-3.149,0.589 -6.139,1.191 -8.978,1.803c-2.209,0.476 -3.469,3.652 -3.469,5.355c0,6.584 -2.94,10.597 -5.374,12.79c-1.72,1.551 -3.188,11.795 -3.188,11.795l0,69.512c0,0 -2.212,17.117 8.713,13.531c4.134,-1.357 16.969,-3.905 22.058,-4.818c3.992,-0.716 4.788,-9.501 4.814,-14.075c0.251,-44.039 -0.288,-80.837 -2.727,-83.24c-1.931,-1.903 -3.366,-4.319 -4.427,-6.75ZM84.475,469.47c0.371,0.589 -5.666,1.248 -5.666,1.986c0,11.692 -8.532,21.825 -8.532,21.825l-0.534,76.261c0,0 -2.175,11.886 12.978,13.275c14.366,1.316 35.274,1.791 39.347,1.947c4.694,0.179 8.282,-2.85 8.073,-8.741c-1.533,-43.306 6.18,-82.027 -2.41,-84.513c-7.971,-2.308 -6.473,-17.742 -6.473,-17.742c0,0 -19.176,-3.356 -36.783,-4.298ZM-66.744,483.927c0,0 -6.879,-1.892 -8.69,-4.568c-2.872,-4.245 -1.973,-9.99 -8.756,-9.709c-8.023,0.332 -15.603,0.864 -22.769,1.462c-4.594,0.383 -7.365,5.349 -7.365,8.072c0,11.571 -8.147,13.869 -8.147,13.869l0,78.938c-2.059,0.852 1.593,12.869 9.802,12.637c9.784,-0.277 20.724,-2.285 30.064,-2.105c12.366,0.238 20.834,-14.582 15.861,-17.192l0,-81.404ZM36.082,485.486c-5.591,-5.712 -2.663,-18.72 -16.417,-17.82c-6.442,0.422 -13.105,-0.108 -19.954,-0.108c-6.74,0 -13.283,0.081 -19.635,0.099c-7.686,0.021 1.721,12.171 -12.377,14.711c-3.285,0.592 -2.797,38.293 -2.748,82.108c0.025,22.528 9.318,17.31 14.079,17.275c6.987,-0.051 14.205,-0.076 21.659,-0.076c8.904,0 17.509,-0.492 25.763,0.088c15.081,1.061 9.425,-20.309 9.981,-41.67c0.672,-25.83 0.947,-53.28 -0.351,-54.607ZM-206.492,438.902c0,0 60.216,-35.067 206.357,-35.067c159.673,0 209.063,28.411 209.063,28.411l-0.677,-18.944c0,0 -57.509,-31.799 -207.709,-31.799c-150.201,0 -207.71,35.693 -207.71,35.693l0.676,21.706Z" style="fill:#fff"/>\n<path d="M297.326,808.194l12.329,3.563c5.184,-0.823 9.565,0.64 8.324,18.105l2.672,26.419c0.643,5.839 0.817,8.577 6.323,8.691l353.499,-3.675c8.389,1.84 11.212,-2.156 9.425,-10.987l-1.337,-53.549c-2.72,-13.096 -5.655,-15.216 -8.641,-14.77c-9.289,-1.555 -2.352,-22.849 -2.56,-55.046c-0.383,-59.165 3.297,-154.026 2.243,-223.533c-0.077,-5.024 -3.825,-10.953 -9.527,-10.186c-42.613,5.729 -66.539,6.148 -137.535,2.148c-84.479,-4.759 -184.18,-4.27 -243.33,-5.035c-42.096,-0.544 -69.967,-0.955 -69.967,-0.955l0,-38.195l33.946,11.813c2.448,-12.252 156.02,1.967 277.439,-2.364c55.99,-1.997 142.059,-4.053 142.577,-3.991c11.523,2.152 27.975,-4.849 21.134,-17.797l1.266,-16.957c1.767,-9.902 -7.931,-27.132 -13.116,-24.411l-6,-1.637c-1.79,-10.207 -22.882,-10.111 -27.905,-2.728c2.061,8.907 -10.594,4.023 -31.268,6.195c-23.107,2.427 -54.745,5.312 -54.943,-3.467c-1.277,-9.407 -26.805,-12.973 -26.347,-4.676c-0.906,3.793 -8.035,12.01 -12.202,12.751l-64.647,-1.392c-5.848,0.719 -8.058,-2.089 -8.427,-6.683c-0.065,-11.091 -25.75,-7.527 -26.076,2.145c-0.325,9.638 -55.636,7.738 -77.392,4.828c-7.636,-1.021 -8.778,-6.973 -8.778,-6.973c-1.701,-7.758 -8.018,-13.534 -19.343,-11.768c-8.283,1.29 -8.567,11.098 -10.901,11.768c0.171,5.619 -3.998,7.455 -11.135,6.704l-78.163,0l0,18.084l17.019,8.401l-17.019,7.89l0,399.931l41.031,-28.661l37.332,0ZM513.704,853.653c4.571,-0.532 6.646,-1.197 6.863,-4.769c1.427,-3.17 0.245,-4.854 -2.123,-5.863l-1.741,0.25c-2.051,-0.237 -2.634,-5.328 -2.632,-10.012c0.016,-31.594 2.824,-36.285 -5.823,-36.498l-32.489,0.748c-3.199,0.055 -5.361,2.048 -6.485,5.978c1.154,11.214 -0.664,19.05 -0.265,33.656c0.111,4.066 0.504,6.453 -4.319,6.377c-2.177,-0.397 -3.692,1.086 -4.24,5.316c0.334,3.012 1.748,4.451 4.24,4.318c20.989,-0.604 36.037,2.009 49.014,0.499ZM579.678,853.653c-5.217,1.216 -6.645,-1.197 -6.863,-4.769c-1.427,-3.17 -0.244,-4.854 2.124,-5.863c0,0 4.175,-0.887 4.173,-5.571c-0.016,-31.595 0.369,-40.476 9.016,-40.689l29.496,-2.369c3.199,0.054 5.361,2.047 6.485,5.977c-1.155,11.214 0.663,22.168 0.265,36.774c-0.111,4.066 -0.504,6.453 4.318,6.377c2.177,-0.397 3.693,1.086 4.241,5.316c-0.335,3.012 -1.748,4.451 -4.241,4.318c-20.989,-0.604 -35.985,-0.472 -49.014,0.499ZM360.225,852.456c-6.118,-0.285 -10.437,0 -10.655,-3.572c-1.426,-3.17 -0.244,-4.854 2.124,-5.863c0,0 4.175,-0.887 4.173,-5.571c-0.016,-31.595 -2.624,-40.476 6.023,-40.689l32.489,0.748c3.199,0.055 5.361,2.048 6.485,5.978c-1.154,11.214 0.663,19.05 0.265,33.656c-0.111,4.066 -0.504,6.453 4.318,6.377c2.178,-0.397 3.693,1.086 4.241,5.316c-0.334,3.012 -1.748,4.451 -4.241,4.318c-20.988,-0.604 -31.794,-0.073 -45.222,-0.698ZM512.315,760.115c5.217,1.216 6.645,-1.197 6.863,-4.77c1.427,-3.169 -0.201,-9.307 -2.569,-10.316c0,0 -3.73,0.448 -3.728,-4.236c0.01,-20.869 -0.154,-51.674 0.359,-72.935c0.244,-10.097 -4.212,-9.996 -7.148,-10.068l-31.723,0.748c-3.199,0.055 -5.361,2.047 -6.485,5.978c1.155,11.214 -0.663,61.365 -0.265,75.971c0.111,4.065 0.504,6.453 -4.318,6.377c-2.177,-0.397 -3.693,4.203 -4.241,8.434c0.335,3.012 1.748,4.451 4.241,4.318c21.79,4.06 36.594,3.07 49.014,0.499ZM243.524,763.233c-5.217,1.216 -6.645,-1.197 -6.863,-4.77c-1.426,-3.169 0.201,-6.189 2.57,-7.199c0,0 4.966,-1.799 5.31,-13.412c0.618,-20.86 0.513,-38.686 0,-59.947c-0.244,-10.097 -0.847,-20.736 5.206,-20.115l33.109,-0.638c3.199,0.055 3.975,3.433 5.099,7.364c-1.154,11.214 0.317,55.612 -0.082,70.218c-0.111,4.065 -0.157,15.324 4.665,15.248c2.178,-0.398 3.693,1.085 4.241,5.316c-0.334,3.012 -1.748,4.451 -4.241,4.318c-23.102,0.237 -37.532,3.454 -49.014,3.617ZM625.452,763.233c5.217,1.216 6.645,-1.197 6.863,-4.77c1.426,-3.169 0.244,-4.853 -2.124,-5.862c0,0 -4.175,-0.888 -4.173,-5.572c0.01,-20.869 -0.154,-57.91 0.359,-79.171c0.244,-10.097 -6.44,-9.996 -9.375,-10.068l-29.496,0.748c-3.199,0.055 -5.361,2.047 -6.485,5.978c1.154,11.214 -0.663,67.6 -0.265,82.207c0.111,4.065 0.504,6.453 -4.319,6.377c-2.177,-0.398 -3.692,1.085 -4.24,5.316c0.334,3.012 1.748,4.451 4.24,4.318c20.989,-0.605 35.986,-0.472 49.015,0.499ZM355.188,759.67c-5.217,1.215 -6.218,-6.06 -3.85,-7.069c0,0 4.175,2.23 4.173,-2.454c-0.011,-20.869 -2.964,-64.146 -3.477,-85.406c-0.244,-10.098 6.439,-6.879 9.375,-6.951l33.059,0.303c3.199,0.055 2.688,10.065 3.813,13.995c-1.155,11.214 -0.673,48.04 -1.072,62.646c-0.111,4.065 -0.058,15.324 4.764,15.248c2.177,-0.398 3.693,1.085 4.241,5.316c-0.335,3.012 -1.748,4.451 -4.241,4.318c-20.989,-0.605 -33.756,-0.918 -46.785,0.054ZM584.017,644.502c-5.413,-0.435 -9.533,-0.936 -7.206,-7.263c3.902,-10.609 14.332,-20.186 28.993,-20.591c15.906,-0.44 22.547,9.299 24.984,22.825c0.287,1.595 -3.247,5.029 -3.247,5.029l-43.524,0ZM354.028,644.502c0,0 -3.535,-3.434 -3.248,-5.029c2.438,-13.526 11.573,-21.127 27.479,-20.687c14.661,0.405 22.597,7.844 26.499,18.453c2.327,6.327 -1.793,6.828 -7.207,7.263l-43.523,0ZM292.388,643.277l0.6,-3.945l-11.885,-10.474c-4.264,-6.799 -14.997,-14.602 -18.836,-10.012l-22.201,20.536c-0.37,3.094 1.742,4.347 5.553,4.34c17.411,0.515 29.476,0.582 46.769,-0.445ZM464.671,643.277l-0.6,-3.945l18.566,-14.055c4.264,-6.799 8.315,-7.903 12.154,-3.313l22.201,17.418c0.371,3.094 -1.741,4.347 -5.552,4.34c-17.411,0.515 -29.476,0.582 -46.769,-0.445ZM239.783,593.022c-5.217,1.104 -6.646,-1.087 -6.863,-4.331c-1.427,-2.878 0.201,-5.621 2.569,-6.538c0,0 4.966,-1.634 5.311,-12.18c0.618,-18.944 0.513,-9.362 0,-28.67c-0.244,-9.169 -0.848,-18.831 5.205,-18.267l33.109,-0.579c3.199,0.05 3.975,3.118 5.1,6.687c-1.155,10.184 0.316,30.683 -0.082,43.947c-0.111,3.692 -0.158,13.916 4.665,13.847c2.177,-0.361 3.692,0.986 4.24,4.828c-0.334,2.735 -1.747,4.042 -4.24,3.921c-23.102,0.216 -37.532,-2.813 -49.014,-2.665ZM399.133,595.519c5.218,1.095 6.646,-1.078 6.863,-4.295c1.427,-2.854 -0.201,-5.573 -2.569,-6.482c0,0 -4.966,-1.621 -5.31,-12.078c-0.619,-18.784 0.294,-12.37 0,-31.519c-0.202,-13.102 -2.716,-19.247 -8.77,-18.688l-29.545,0c-3.199,0.05 -3.975,3.092 -5.099,6.631c1.154,10.098 -0.317,33.542 0.081,46.694c0.111,3.661 0.158,13.799 -4.665,13.73c-2.177,-0.357 -3.692,0.978 -4.24,4.787c0.334,2.713 1.748,4.009 4.24,3.889c23.103,0.213 37.532,-2.816 49.014,-2.669ZM579.015,590.55c-5.217,1.02 -6.645,-1.005 -6.863,-4.003c-1.427,-2.66 0.201,-5.194 2.569,-6.041c0,0 4.967,-1.511 5.311,-11.257c0.618,-17.506 0.513,-11.533 0,-29.375c-0.244,-8.474 -0.848,-17.403 5.206,-16.882l31.16,-1.704c3.199,0.046 2.806,4.05 3.93,7.349c-1.155,9.411 0.317,23.366 -0.082,35.624c-0.111,3.412 6.079,14.731 10.901,14.667c2.177,-0.334 0.575,4.029 1.123,7.579c-0.335,2.528 -1.748,3.736 -4.241,3.624c-23.102,0.199 -37.532,0.282 -49.014,0.419ZM465,589.295c-5.217,1.049 -6.646,-4.15 -6.863,-7.23c-1.427,-2.732 0.201,-5.337 2.569,-6.207c0,0 4.967,-1.552 5.311,-11.564c0.618,-17.985 0.513,-5.613 0,-23.944c-0.244,-8.706 -2.184,-18.324 9.66,-20.016l23.754,-4.113c3.2,0.048 9.766,2.848 10.89,6.236c-1.154,9.669 1.654,26.571 1.255,39.164c-0.111,3.506 0.733,15.885 5.556,15.82c2.177,-0.343 0.574,4.054 1.122,7.701c-0.334,2.597 -1.747,3.838 -4.24,3.723c-23.102,0.205 -37.532,0.29 -49.014,0.43ZM235.982,429.034l12.764,-5.918c0.588,5.27 1.458,10.318 5.867,12.592c-0.147,0.743 -0.3,1.508 -0.46,2.297l-18.171,-8.971ZM254.613,435.708c2.786,-14.019 3.534,-19.734 10.014,-15.075c118.717,2.926 239.941,3.287 362.132,-0.445c23.368,-0.954 45.949,-7.623 43.262,13.073c0,0 -5.219,7.797 -10.261,7.171c-133.116,6.617 -264.912,4.45 -397.61,-3.508c-3.275,0.193 -5.709,-0.273 -7.537,-1.216Z" style="fill:#fff"/>\n<g>\n<path d="M105.412,875.218c0,0 -0.458,5.845 5.807,6.322c19.193,1.463 59.564,4.762 62.564,0.181l79.228,-83.054l-23.531,-24.771c-9.042,-7.798 -37.198,-8.234 -40.989,-6.886l-8.069,-0.053l3.821,9.278l20.093,23.644l-98.924,75.339Z" style="fill:#ffb800"/>\n<path d="M166.786,760.443c0.389,6.289 2.803,10.816 6.601,14.137l28.697,27.551l6.3,-12.591c1.222,-5.891 -0.059,-9.832 -3.844,-11.82l-33.35,-41.808c-5.386,-4.765 -3.294,1.553 -4.797,6.098l0.393,18.433Z" style="fill:#e9e9e9"/>\n<path d="M215.505,764.451c0.459,6.289 4.193,6.808 8.666,10.129l33.801,27.551l7.42,-12.591c1.439,-5.891 1.866,-13.296 -2.591,-15.285l-35.446,-30.326c-6.344,-4.764 -9.651,-3.346 -11.421,1.199l-0.429,19.323Z" style="fill:#e9e9e9"/>\n<path d="M208.367,789.984c1.246,-6.835 -0.129,-10.808 -6.159,-5.161c-26.727,13.991 -46.319,26.189 -92.715,58.434c-3.84,1.223 -10.236,7.63 -10.734,15.343l-0.494,16.618c-2.135,9.056 4.244,5.817 11.198,0.319l64.213,-46.928c6.654,-2.923 34.67,-18.8 34.161,-24.468l0.53,-14.157Z" style="fill:#fff"/>\n<path d="M267.509,782.402c1.182,-7.404 -0.122,-11.709 -5.845,-5.591c-24.362,16.954 -44.591,37.025 -90.518,65.72c-3.644,1.325 -7.177,5.854 -7.649,14.211l-2.894,18.476c1.438,11.889 25.011,8.183 31.61,2.227l52.585,-44.957c10.768,-9.848 23.592,-23.064 23.11,-29.205l-0.399,-20.881Z" style="fill:#fff"/>\n</g>\n</g>\n<g class="scene--trump__wall">\n<g>\n<path d="M965.875,910.96c-6.137,-10.225 -1.403,-207.826 -1.606,-232.537c-0.203,-24.712 11.487,-21.732 20.309,-22.031c3.342,-0.114 87.297,-0.21 102.765,0.023c14.72,0.222 9.334,21.341 8.073,154.614c-0.484,51.166 2.405,95.688 -8.073,96.756c-6.992,0.713 -118.632,7.902 -121.468,3.175Z" style="fill:#f6d06d"/>\n<path d="M1081.59,681.587c-6.471,0.835 -44.778,1.712 -76.088,1.19c-3.791,-0.063 -13.022,-8.056 -21.404,-14.464c-6.519,-4.983 -13.418,-8.303 -11.083,-10.731c1.461,-1.52 32.778,-1.175 62.559,-1.062c22.974,0.086 45.035,-0.35 51.771,-0.248c7.55,0.114 4.77,5.593 1.978,11.966c-2.65,6.05 -5.062,13.004 -7.733,13.349Z" style="fill:#fee196"/>\n<path d="M965.875,910.96c-2.298,-3.829 6.795,-4.035 16.653,-7.41c6.322,-2.164 12.987,-7.173 20.53,-8.378c19.433,-3.103 45.2,-9.081 63.687,-9.722c4.844,-0.168 9.189,5.573 12.789,5.255c1.716,-0.152 2.837,4.67 4.87,8.956c2.032,4.287 4.975,8.038 2.939,8.124c-7.04,0.298 -118.632,7.902 -121.468,3.175Z" style="fill:#e2b642"/>\n<path d="M1002.57,894.852c-3.057,-0.062 -1.294,-9.241 -1.586,-20.564c-1.218,-47.145 1.159,-158.97 0.864,-175.831c-0.296,-16.944 -0.973,-15.876 4.977,-16.328c5.949,-0.453 64.143,-0.173 73.098,-0.525c4.568,-0.179 2.764,0.581 2.288,22.655c-0.475,22.074 3.459,166.634 1.767,176.251c-1.692,9.617 -2.043,10.073 -6.388,10.154c-17.671,0.332 -69.685,4.297 -75.02,4.188Z" style="fill:#ecbe4a"/>\n</g>\n<g>\n<path d="M833.105,918.479c-6.307,-10.51 -1.442,-213.601 -1.65,-238.998c-0.209,-25.398 11.806,-22.336 20.872,-22.644c3.436,-0.116 89.724,-0.215 105.621,0.024c15.129,0.229 9.593,21.934 8.297,158.91c-0.497,52.588 2.472,98.346 -8.297,99.444c-7.186,0.733 -121.927,8.122 -124.843,3.264Z" style="fill:#f6d06d"/>\n<path d="M952.033,682.732c-6.651,0.859 -46.021,1.76 -78.202,1.224c-3.896,-0.065 -13.384,-8.28 -21.998,-14.866c-6.7,-5.122 -13.791,-8.533 -11.392,-11.029c1.502,-1.562 33.689,-1.208 64.298,-1.092c23.612,0.089 46.286,-0.359 53.209,-0.255c7.76,0.117 4.902,5.749 2.033,12.298c-2.723,6.219 -5.203,13.366 -7.948,13.72Z" style="fill:#fee196"/>\n<path d="M833.105,918.479c-2.362,-3.935 6.984,-4.148 17.116,-7.616c6.497,-2.224 13.347,-7.373 21.1,-8.611c19.973,-3.189 46.456,-9.333 65.456,-9.992c4.979,-0.173 9.445,5.728 13.145,5.4c1.764,-0.156 2.916,4.8 5.005,9.206c2.089,4.406 5.114,8.261 3.021,8.349c-7.236,0.307 -121.927,8.122 -124.843,3.264Z" style="fill:#e2b642"/>\n<path d="M870.82,901.924c-3.142,-0.065 -1.33,-9.499 -1.631,-21.136c-1.251,-48.455 1.192,-163.387 0.889,-180.716c-0.304,-17.415 -1,-16.318 5.115,-16.783c6.115,-0.465 65.925,-0.177 75.129,-0.538c4.695,-0.184 2.84,0.597 2.352,23.284c-0.488,22.687 3.555,171.264 1.816,181.148c-1.739,9.884 -2.1,10.352 -6.566,10.436c-18.161,0.34 -71.621,4.416 -77.104,4.305Z" style="fill:#ecbe4a"/>\n</g>\n<g>\n<path d="M693.596,930.696c-6.506,-10.841 -1.488,-220.334 -1.703,-246.533c-0.215,-26.198 12.178,-23.039 21.531,-23.357c3.544,-0.12 92.552,-0.222 108.95,0.025c15.606,0.236 9.896,22.626 8.559,163.919c-0.513,54.246 2.55,101.447 -8.559,102.58c-7.413,0.755 -125.771,8.377 -128.778,3.366Z" style="fill:#f6d06d"/>\n<path d="M816.273,687.518c-6.861,0.885 -47.473,1.815 -80.668,1.262c-4.019,-0.067 -13.805,-8.541 -22.691,-15.335c-6.912,-5.283 -14.226,-8.802 -11.751,-11.377c1.549,-1.611 34.751,-1.245 66.324,-1.126c24.357,0.092 47.746,-0.37 54.887,-0.262c8.005,0.12 5.057,5.929 2.098,12.685c-2.81,6.415 -5.367,13.787 -8.199,14.153Z" style="fill:#fee196"/>\n<path d="M693.596,930.696c-2.437,-4.059 7.203,-4.278 17.655,-7.856c6.702,-2.294 13.768,-7.605 21.766,-8.882c20.602,-3.29 47.919,-9.628 67.519,-10.308c5.136,-0.178 9.742,5.909 13.559,5.571c1.819,-0.161 3.008,4.951 5.163,9.496c2.155,4.544 5.275,8.521 3.116,8.613c-7.464,0.316 -125.771,8.377 -128.778,3.366Z" style="fill:#e2b642"/>\n<path d="M732.499,913.619c-3.241,-0.066 -1.372,-9.798 -1.682,-21.802c-1.291,-49.983 1.23,-168.538 0.917,-186.413c-0.314,-17.965 -1.031,-16.832 5.276,-17.312c6.308,-0.479 68.004,-0.183 77.498,-0.555c4.843,-0.19 2.93,0.616 2.426,24.018c-0.504,23.402 3.667,176.662 1.873,186.858c-1.794,10.196 -2.166,10.679 -6.773,10.765c-18.734,0.352 -73.878,4.556 -79.535,4.441Z" style="fill:#ecbe4a"/>\n</g>\n<g>\n<path d="M549.652,933.866c-6.704,-11.172 -1.533,-227.067 -1.754,-254.067c-0.222,-26.999 12.55,-23.743 22.189,-24.07c3.652,-0.124 95.38,-0.23 112.279,0.025c16.084,0.243 10.199,23.317 8.821,168.929c-0.529,55.903 2.628,104.547 -8.821,105.714c-7.639,0.779 -129.614,8.634 -132.714,3.469Z" style="fill:#f6d06d"/>\n<path d="M676.079,683.256c-7.071,0.913 -48.923,1.871 -83.133,1.301c-4.142,-0.069 -14.227,-8.802 -23.385,-15.803c-7.123,-5.445 -14.661,-9.072 -12.11,-11.725c1.597,-1.66 35.813,-1.283 68.351,-1.161c25.102,0.095 49.205,-0.381 56.564,-0.27c8.25,0.124 5.212,6.111 2.162,13.073c-2.895,6.611 -5.531,14.209 -8.449,14.585Z" style="fill:#fee196"/>\n<path d="M549.652,933.866c-2.51,-4.183 7.424,-4.409 18.195,-8.096c6.908,-2.364 14.189,-7.837 22.431,-9.153c21.232,-3.391 49.385,-9.923 69.583,-10.623c5.293,-0.183 10.04,6.09 13.973,5.741c1.875,-0.166 3.101,5.103 5.321,9.786c2.221,4.684 5.437,8.782 3.211,8.876c-7.691,0.326 -129.614,8.634 -132.714,3.469Z" style="fill:#e2b642"/>\n<path d="M589.745,916.267c-3.34,-0.068 -1.414,-10.097 -1.733,-22.468c-1.331,-51.51 1.267,-173.689 0.945,-192.11c-0.324,-18.513 -1.064,-17.346 5.437,-17.841c6.5,-0.494 70.082,-0.189 79.866,-0.572c4.991,-0.196 3.019,0.634 2.5,24.752c-0.519,24.117 3.779,182.062 1.93,192.569c-1.848,10.507 -2.232,11.005 -6.979,11.094c-19.307,0.362 -76.137,4.695 -81.966,4.576Z" style="fill:#ecbe4a"/>\n</g>\n<g>\n<path d="M404.527,937.97c-6.904,-11.504 -1.579,-233.802 -1.807,-261.602c-0.228,-27.799 12.923,-24.448 22.847,-24.784c3.76,-0.128 98.209,-0.236 115.609,0.026c16.561,0.25 10.501,24.008 9.082,173.938c-0.544,57.562 2.706,107.647 -9.082,108.849c-7.865,0.802 -133.458,8.89 -136.649,3.573Z" style="fill:#f6d06d"/>\n<path d="M534.703,679.928c-7.281,0.94 -50.375,1.926 -85.599,1.339c-4.264,-0.071 -14.649,-9.063 -24.078,-16.272c-7.334,-5.606 -15.095,-9.34 -12.469,-12.072c1.644,-1.71 36.875,-1.322 70.378,-1.195c25.846,0.097 50.664,-0.393 58.241,-0.279c8.495,0.128 5.366,6.292 2.226,13.461c-2.981,6.807 -5.695,14.63 -8.699,15.018Z" style="fill:#fee196"/>\n<path d="M404.527,937.97c-2.585,-4.308 7.644,-4.54 18.734,-8.337c7.112,-2.434 14.61,-8.07 23.096,-9.425c21.862,-3.491 50.849,-10.216 71.647,-10.937c5.45,-0.189 10.338,6.27 14.387,5.911c1.931,-0.171 3.193,5.254 5.479,10.076c2.286,4.823 5.598,9.042 3.306,9.139c-7.919,0.336 -133.458,8.89 -136.649,3.573Z" style="fill:#e2b642"/>\n<path d="M445.808,919.848c-3.438,-0.07 -1.455,-10.396 -1.784,-23.134c-1.37,-53.037 1.304,-178.839 0.973,-197.807c-0.334,-19.062 -1.095,-17.861 5.598,-18.37c6.693,-0.509 72.161,-0.194 82.234,-0.589c5.14,-0.202 3.109,0.653 2.575,25.486c-0.535,24.833 3.891,187.461 1.987,198.28c-1.903,10.819 -2.298,11.331 -7.186,11.422c-19.879,0.373 -78.394,4.835 -84.397,4.712Z" style="fill:#ecbe4a"/>\n</g>\n<g>\n<path d="M255.139,947.588c-7.018,-11.694 -1.605,-237.668 -1.836,-265.927c-0.232,-28.26 13.136,-24.852 23.224,-25.195c3.823,-0.129 99.833,-0.239 117.521,0.027c16.834,0.254 10.674,24.405 9.232,176.814c-0.553,58.513 2.751,109.427 -9.232,110.649c-7.996,0.816 -135.665,9.037 -138.909,3.632Z" style="fill:#f6d06d"/>\n<path d="M387.467,685.279c-7.4,0.955 -51.207,1.958 -87.013,1.361c-4.335,-0.072 -14.892,-9.213 -24.477,-16.54c-7.455,-5.699 -15.345,-9.495 -12.675,-12.272c1.671,-1.738 37.484,-1.344 71.542,-1.215c26.273,0.099 51.501,-0.4 59.204,-0.283c8.635,0.13 5.455,6.396 2.263,13.683c-3.031,6.92 -5.789,14.872 -8.844,15.266Z" style="fill:#fee196"/>\n<path d="M255.139,947.588c-2.628,-4.379 7.771,-4.615 19.044,-8.475c7.23,-2.474 14.852,-8.203 23.478,-9.58c22.223,-3.549 51.69,-10.386 72.831,-11.119c5.541,-0.192 10.509,6.374 14.626,6.009c1.962,-0.173 3.245,5.341 5.569,10.243c2.324,4.902 5.69,9.192 3.361,9.29c-8.051,0.341 -135.665,9.037 -138.909,3.632Z" style="fill:#e2b642"/>\n<path d="M297.103,929.167c-3.495,-0.072 -1.479,-10.568 -1.814,-23.517c-1.392,-53.915 1.326,-181.796 0.989,-201.078c-0.339,-19.377 -1.113,-18.156 5.691,-18.673c6.804,-0.518 73.354,-0.198 83.594,-0.6c5.224,-0.205 3.161,0.665 2.617,25.908c-0.543,25.243 3.956,190.56 2.021,201.558c-1.935,10.998 -2.336,11.519 -7.306,11.612c-20.208,0.379 -79.69,4.914 -85.792,4.79Z" style="fill:#ecbe4a"/>\n</g>\n<g>\n<path d="M101.4,949.83c-7.215,-12.023 -1.65,-244.343 -1.889,-273.396c-0.238,-29.053 13.506,-25.55 23.877,-25.902c3.93,-0.134 102.637,-0.247 120.822,0.027c17.307,0.261 10.974,25.091 9.492,181.78c-0.57,60.157 2.828,112.501 -9.492,113.757c-8.22,0.839 -139.475,9.291 -142.81,3.734Z" style="fill:#f6d06d"/>\n<path d="M237.445,680.154c-7.609,0.982 -52.646,2.013 -89.458,1.399c-4.457,-0.074 -15.31,-9.472 -25.164,-17.005c-7.665,-5.859 -15.776,-9.762 -13.031,-12.617c1.717,-1.787 38.537,-1.381 73.551,-1.249c27.011,0.102 52.948,-0.41 60.867,-0.291c8.877,0.134 5.608,6.576 2.327,14.068c-3.116,7.114 -5.952,15.289 -9.092,15.695Z" style="fill:#fee196"/>\n<path d="M101.4,949.83c-2.702,-4.502 7.988,-4.745 19.579,-8.712c7.432,-2.545 15.268,-8.434 24.137,-9.85c22.847,-3.649 53.141,-10.677 74.877,-11.431c5.696,-0.197 10.804,6.553 15.036,6.178c2.018,-0.179 3.336,5.491 5.726,10.53c2.389,5.04 5.85,9.45 3.455,9.551c-8.277,0.351 -139.475,9.291 -142.81,3.734Z" style="fill:#e2b642"/>\n<path d="M144.542,930.892c-3.594,-0.074 -1.521,-10.866 -1.865,-24.178c-1.432,-55.429 1.363,-186.902 1.017,-206.726c-0.349,-19.921 -1.144,-18.665 5.851,-19.197c6.994,-0.532 75.414,-0.204 85.942,-0.617c5.371,-0.21 3.249,0.684 2.69,26.636c-0.558,25.952 4.067,195.912 2.077,207.219c-1.989,11.307 -2.401,11.842 -7.51,11.938c-20.776,0.39 -81.929,5.053 -88.202,4.925Z" style="fill:#ecbe4a"/>\n</g>\n<g>\n<path d="M-54.724,958.356c-7.334,-12.221 -1.677,-248.383 -1.919,-277.917c-0.242,-29.533 13.729,-25.972 24.272,-26.33c3.995,-0.136 104.334,-0.251 122.819,0.028c17.593,0.265 11.156,25.505 9.649,184.786c-0.579,61.151 2.874,114.361 -9.649,115.638c-8.356,0.852 -141.781,9.444 -145.172,3.795Z" style="fill:#f6d06d"/>\n<path d="M83.571,684.221c-7.735,0.998 -53.516,2.046 -90.937,1.422c-4.531,-0.075 -15.563,-9.628 -25.58,-17.286c-7.792,-5.956 -16.037,-9.923 -13.247,-12.826c1.746,-1.816 39.174,-1.404 74.767,-1.269c27.458,0.103 53.824,-0.418 61.874,-0.296c9.024,0.136 5.701,6.685 2.365,14.3c-3.167,7.232 -6.05,15.543 -9.242,15.955Z" style="fill:#fee196"/>\n<path d="M-54.724,958.356c-2.746,-4.576 8.121,-4.823 19.903,-8.856c7.556,-2.587 15.521,-8.574 24.536,-10.013c23.225,-3.709 54.021,-10.854 76.115,-11.62c5.79,-0.2 10.983,6.661 15.285,6.28c2.051,-0.181 3.392,5.582 5.821,10.705c2.429,5.123 5.946,9.606 3.512,9.709c-8.414,0.356 -141.781,9.444 -145.172,3.795Z" style="fill:#e2b642"/>\n<path d="M-10.868,939.104c-3.653,-0.074 -1.546,-11.044 -1.896,-24.577c-1.455,-56.345 1.386,-189.993 1.034,-210.144c-0.354,-20.251 -1.163,-18.974 5.947,-19.515c7.111,-0.54 76.661,-0.207 87.363,-0.626c5.46,-0.214 3.304,0.694 2.736,27.076c-0.568,26.381 4.133,199.152 2.111,210.645c-2.022,11.494 -2.441,12.038 -7.635,12.136c-21.119,0.396 -83.283,5.136 -89.66,5.005Z" style="fill:#ecbe4a"/>\n</g>\n</g>\n<g class="scene--trump__eagle">\n<path d="M993.649,-97.087c37.731,-2.103 81.613,-3.475 99.373,3.636c17.759,7.112 2.282,8.75 -25.387,11.241c-27.668,2.49 12.049,25.205 29.614,29.546c17.566,4.341 53.053,42.227 4.763,32.089c-91.875,-19.29 -26.845,9.041 -12.926,16.978c13.919,7.937 32.65,50.135 -16.272,27.382c-48.921,-22.753 -34.379,1.663 -22.006,11.378c12.372,9.716 3.222,30.584 -61.332,7.253c-64.554,-23.332 -26.688,8.547 -60.079,0.857c-33.392,-7.69 -32.808,24.566 -56.302,15.071c-23.494,-9.495 -42.139,18.536 -57.268,25.162c-15.128,6.625 -13.129,19.293 -22.395,22.168c-9.265,2.875 -19.102,-34.303 -21.128,-55.322c-2.025,-21.019 68.381,-97.214 115.468,-116.653c47.088,-19.439 66.495,-28.591 105.877,-30.786Z" style="fill:#433727"/>\n<path d="M730.005,298.836c6.81,-0.475 11.969,-10.859 6.044,-18.241c-5.925,-7.382 -3.251,3.568 -2.521,7.177c0.729,3.608 -1.03,8.026 -4.797,8.767c-3.766,0.74 -1.734,2.508 1.274,2.297l0,0Z" style="fill:#000616"/>\n<path d="M719.271,286.381c6.81,-0.476 11.969,-10.859 6.044,-18.241c-5.925,-7.382 -3.251,3.568 -2.522,7.176c0.73,3.609 -1.03,8.027 -4.796,8.768c-3.767,0.74 -1.734,2.507 1.274,2.297l0,0Z" style="fill:#000616"/>\n<path d="M698.816,285.265c-6.81,0.476 -15.996,-10.337 -11.155,-18.471c4.841,-8.134 3.715,3.081 3.495,6.756c-0.221,3.674 4.01,9.584 7.843,9.793c3.833,0.209 2.825,1.712 -0.183,1.922l0,0Z" style="fill:#000616"/>\n<path d="M607.453,293.611c3.484,-2.057 3.568,-7.753 1.557,-9.204c-2.01,-1.45 -5.86,-0.757 -4.459,4.104c0.736,2.556 -2.25,-0.32 -2.379,2.393c-0.128,2.714 3.753,3.61 5.281,2.707l0,0Z" style="fill:#000616"/>\n<path d="M590.305,300.564c3.484,-2.058 3.568,-7.754 1.558,-9.204c-2.011,-1.451 -5.86,-0.758 -4.46,4.103c0.737,2.557 1.374,6.003 2.902,5.101Z" style="fill:#000616"/>\n<path d="M583.791,287.68c-2.908,-1.208 -3.589,-5.588 -2.197,-6.923c1.392,-1.335 4.434,-1.218 3.881,2.679c-0.291,2.05 -0.41,4.774 -1.684,4.244l0,0Z" style="fill:#000616"/>\n<path d="M604.1,243.358c0.483,-3.113 -7.393,-1.074 -10.063,-0.569c-1.479,0.279 0.296,6.502 -3.231,12.953c-3.527,6.452 -10.639,20.79 -11.279,25.29c-0.64,4.499 1.072,8.516 4.11,4.167c3.037,-4.348 7.498,-15.638 8.033,-10.266c0.534,5.372 -5.662,12.328 -5.522,16.614c0.141,4.286 2.361,8.744 5.782,5.323c3.42,-3.421 6.358,-9.194 7.082,-17.041c0.725,-7.846 3.707,-6.145 3.067,-1.646c-0.64,4.5 0.789,9.014 3.672,9.289c2.883,0.276 5.32,-3.553 5.721,-6.922c0.401,-3.369 -3.536,-9.617 -4.011,-16.425c-0.476,-6.808 -3.909,-17.228 -3.361,-20.767l0,0Z" style="fill:#e5c14a"/>\n<path d="M761.215,106.811c-1.007,-14.407 1.853,-21.289 11.002,-25.827c9.15,-4.537 16.017,-17.824 17.266,-31.832c1.248,-14.009 38.903,-24.993 58.28,-66.439c19.378,-41.447 44.922,-26.527 73.079,-37.961c28.157,-11.434 70.501,-34.996 44.507,-40.418c-25.993,-5.423 -100.737,8.709 -117.939,25.503c-17.203,16.794 -108.207,53.222 -116.594,76.639c-8.387,23.417 6.781,17.345 -13.747,34.371c-20.527,17.026 -22.228,16.588 -43.866,9.748c-21.638,-6.841 -34.751,52.544 -48.81,58.538c-14.059,5.994 -65.579,25.742 -84.304,28.721c-18.725,2.979 -70.105,8.797 -61.096,18.191c9.01,9.393 -11.106,16.367 7.207,23.44c18.313,7.073 37.217,-9.282 29.679,2.381c-7.538,11.664 -25.824,12.942 -19.07,21.936c6.753,8.995 -0.695,13.97 11.922,19.213c12.617,5.244 27.463,2.536 36.895,-5.919c9.433,-8.455 7.281,0.605 8.893,7.732c1.612,7.126 20.375,4.701 28.931,-0.352c8.557,-5.052 39.845,-19.489 48.866,-17.892c9.021,1.597 29.805,-27.698 39.005,-39.477c9.2,-11.78 16.481,-11.175 28.479,-14.798c11.997,-3.622 43.181,-27.518 46.867,-30.56c3.685,-3.042 15.554,-0.53 14.548,-14.938l0,0Z" style="fill:#9f835e"/>\n<path d="M714.415,138.341c4.365,22.098 0.45,42.289 -9.987,60.281c-10.437,17.991 1.692,32.178 3.606,35.664c1.914,3.486 -9.633,11.771 -14.846,2.708c-5.388,-9.368 -8.332,-11.668 -12.224,-3.601c-1.457,3.023 -4.981,-3.549 -3.796,-14.491c1.184,-10.941 -4.569,-1.629 -7.404,1.631c-2.835,3.261 -6.76,-5.096 -2.502,-19.871c4.258,-14.776 -3.514,-18.409 -13.552,-14.645c-10.039,3.764 45.194,-126.221 60.705,-47.676l0,0Z" style="fill:#433727"/>\n<path d="M707.795,234.86c3.994,6.485 10.58,9.105 12.893,12.602c2.313,3.498 1.227,3.892 7.166,9.204c5.94,5.313 7.384,14.599 7.377,19.054c-0.006,4.455 3.3,8.52 -2.966,9.912c-6.267,1.393 -5.94,-5.312 -6.331,-8.626c-0.39,-3.314 -8.886,0.652 -9.128,-5.408c-0.424,-10.63 -10.682,-9.436 -11.935,-11.416c-1.252,-1.981 -1.866,0.607 -3.626,5.026c-1.759,4.419 -5.397,9.287 -10.048,4.202c-4.65,-5.084 -3.797,-8.803 0.618,-11.657c4.414,-2.854 11.697,-3.363 9.649,-9.902c-2.048,-6.539 -5.656,-7.324 -3.55,-7.548c6.884,-0.732 8.861,-7.101 9.881,-5.443Z" style="fill:#e5c14a"/>\n<path d="M489.98,-60.27c-4.742,-0.997 -9.243,-1.612 -13.42,-1.798c-18.447,-0.822 -24.987,8.985 -58.03,6.282c-33.042,-2.703 -77.243,18.205 -71.868,23.398c5.374,5.193 21.289,1.853 0.619,8.866c-20.67,7.013 -54.378,50.575 -51.116,65.381c3.262,14.807 14.819,-11.058 25.708,-14.603c15.758,-5.131 -15.423,18.34 -22.985,45.596c-7.562,27.257 65.221,1.011 74.538,-9.106c9.316,-10.117 21.57,-26.008 16.326,-13.391c-5.244,12.617 18.045,27.138 31.55,21.183c13.505,-5.956 26.983,-20.262 21.069,-9.268c-5.914,10.993 -5.488,17.088 14.101,18.504c19.588,1.415 20.401,13.052 37.478,26.337c17.077,13.285 23.25,13.967 28.97,0.203c3.168,-7.623 9.898,-11.535 22.321,-15.059c-3.418,6.743 -10.956,6.722 -5.297,11.642c8.892,7.731 23.157,-3.289 32.539,-4.501c9.382,-1.212 9.945,1.103 27.86,11.417c14.698,8.462 41.138,-23.142 46.32,-31.879c7.696,-12.976 -21.555,-45.905 -34.957,-62.892c-13.777,-17.464 -35.54,-35.183 -58.787,-49.325c-12.845,-13.372 -26.601,-23.98 -41.1,-26.238c-15.903,-2.476 -21.924,-2.497 -21.839,-0.749l0,0Z" style="fill:#433727"/>\n<path d="M865.436,-56.573c-17.202,16.793 -70.146,61.328 -67.741,79.814c1.815,13.947 29.763,3.582 49.141,-37.865c19.378,-41.447 52.576,-28.546 80.733,-39.98c28.157,-11.434 74.308,-43.503 27.514,-37.327c-25.412,3.354 -80.689,26.612 -89.647,35.358l0,0Z" style="fill:#665847"/>\n<path d="M551.387,169.787c12.328,-8.209 -18.613,2.185 -37.461,-5.201c-17.433,-6.831 -49.883,14.811 -20.846,16.4c15.768,0.864 51.887,-6.924 58.307,-11.199l0,0Z" style="fill:#665847"/>\n<path d="M761.292,107.92c-1.007,-14.408 1.853,-21.29 11.003,-25.827c9.149,-4.537 -8.357,-40.107 -13.636,-40.359c-11.425,-0.546 2.456,34.374 -11.584,46.019c-20.527,17.026 -54.939,-21.219 -76.577,-28.06c-21.639,-6.84 -35.545,-22.574 -58.539,-48.81c-22.993,-26.235 -20.666,1.625 -16.804,6.557c57.472,73.386 2.514,76.753 7.028,96.85c1.548,6.891 -19.278,1.718 -17.335,8.001c5.406,17.472 17.799,19.741 26.076,26.194c7.418,5.783 18.92,11.505 32.715,13.788c20.066,3.322 51.35,-7.38 56.238,-8.855c11.998,-3.623 43.182,-27.519 46.867,-30.561c3.686,-3.041 15.555,-0.53 14.548,-14.937l0,0Z" style="fill:#665847"/>\n<path d="M760.871,97.714c-3.196,-18.111 -8.455,-9.433 -12.511,-14.347c-4.056,-4.913 -6.589,3.988 -9.094,2.678c-2.504,-1.31 -12.316,-3.594 -18.256,-0.952c-5.941,2.643 -7.037,3.505 -8.295,6.148c-3.122,6.56 -5.945,3.091 -11.062,1.855c-12.621,-3.049 -1.734,10.931 -7.252,17.615c-1.919,2.324 -8.888,-0.275 -8.518,5.607c0.324,5.16 5.632,6.221 13.019,9.371c4.535,1.934 -3.387,8.77 7.637,9.974c7.054,0.771 21.904,5.338 28.241,11.02c6.336,5.683 23.597,10.973 28.194,15.663c4.597,4.691 23.094,3.769 23.153,-8.671c0.058,-12.44 -2.881,-22.629 -11.404,-30.386c-8.524,-7.757 -13.238,-22.092 -13.852,-25.575l0,0Z" style="fill:#eee3e1"/>\n<path d="M766.401,138.348c-1.988,0.139 -3.489,1.866 -3.35,3.854c0.139,1.988 1.866,3.489 3.854,3.35c1.988,-0.139 3.489,-1.866 3.35,-3.854c-0.139,-1.988 -1.866,-3.489 -3.854,-3.35Z" style="fill:#000616"/>\n<path d="M786.01,151.34c2.445,8.935 9.991,23.179 -4.314,31.902c-7.477,4.56 -8.65,1.718 -7.065,0.494c1.585,-1.224 1.459,-3.025 -0.407,-5.818c-1.865,-2.794 -3.525,-4.627 -4.756,-8.299c-1.231,-3.673 -6.57,-6.362 -8.129,-8.759c-1.56,-2.397 1.565,-1.502 -1.325,-7.008c-2.891,-5.505 -1.512,-7.69 4.072,-3.486c5.583,4.204 9.666,6.842 11.499,5.183c1.833,-1.66 9.49,-7.624 10.425,-4.209Z" style="fill:#e5c14a"/>\n<path d="M644.467,161.327c-2.027,13.512 -25.607,51.905 -33.236,58.285c-7.628,6.38 -0.533,12.288 -6.841,21.638c-6.307,9.35 -11.443,3.584 -14.498,-4.277c-3.055,-7.861 -2.919,-5.921 -6.244,-5.689c-3.325,0.232 -1.399,-4.079 -0.556,-11.933c0.844,-7.855 -2.764,-3.705 -5.781,-11.012c-3.016,-7.306 -6.123,-19.897 4.784,-35.137c10.907,-15.24 31.808,-30.9 42.744,-25.817c10.935,5.083 20.768,6.344 19.628,13.942l0,0Z" style="fill:#433727"/>\n</g>\n</g>\n</svg>\n<div class="scene--trump__bg-filler"></div>\n<button class="scene__button" ng-click="$ctrl.openModal(\'R\')">{{ \'vote\' | translate }} {{ \'shortname.trump\' | translate }}</button>\n</div>\n',
  579. o = "scene-trump.view.html",
  580. i = l.element(window.document).injector();
  581. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  582. c.put(o, a)
  583. }]), c.exports = a
  584. },
  585. 536: function(c, e, t) {
  586. "use strict";
  587.  
  588. function l(c) {
  589. return c && c.__esModule ? c : {
  590. "default": c
  591. }
  592. }
  593. var n = t(537),
  594. a = l(n),
  595. o = t(538),
  596. i = l(o);
  597. angular.module("Vote").controller("SplashController", a["default"]).directive("splash", i["default"])
  598. },
  599. 537: function(c, e) {
  600. "use strict";
  601.  
  602. function t(c, e) {
  603. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  604. }
  605. Object.defineProperty(e, "__esModule", {
  606. value: !0
  607. });
  608. var l = function() {
  609. function c(c, e) {
  610. for (var t = 0; t < e.length; t++) {
  611. var l = e[t];
  612. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  613. }
  614. }
  615. return function(e, t, l) {
  616. return t && c(e.prototype, t), l && c(e, l), e
  617. }
  618. }(),
  619. n = function() {
  620. function c(e, l, n, a) {
  621. t(this, c), this.$window = e, this.$rootScope = l, this.Languages = n, this.translateService = a, this.countryCode = this.$rootScope.countryCode, this.language = a.getCurrentLanguage(), this.countryFlag = '<span class="splash__flag flag-icon flag-icon-' + this.countryCode.toLowerCase() + '"></span>'
  622. }
  623. return c.$inject = ["$window", "$rootScope", "Languages", "translateService"], l(c, [{
  624. key: "changeLanguage",
  625. value: function() {
  626. this.$window.location = "?lang=" + this.language, this.$window.ga("send", "event", "language-change", this.language)
  627. }
  628. }, {
  629. key: "hideSplash",
  630. value: function() {
  631. this.$rootScope.splashHidden = !0
  632. }
  633. }]), c
  634. }();
  635. e["default"] = n
  636. },
  637. 538: function(c, e, t) {
  638. "use strict";
  639.  
  640. function l(c, e) {
  641. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  642. }
  643. Object.defineProperty(e, "__esModule", {
  644. value: !0
  645. });
  646. var n = function a() {
  647. l(this, a), this.restrict = "E", this.scope = {}, this.bindToController = {}, this.controller = "SplashController", this.controllerAs = "$ctrl", this.template = t(539)
  648. };
  649. e["default"] = function() {
  650. return new n
  651. }
  652. },
  653. 539: function(c, e) {
  654. var t, l = window.angular;
  655. try {
  656. t = l.module(["ng"])
  657. } catch (n) {
  658. t = l.module("ng", [])
  659. }
  660. var a = '<section class="splash animate--splash-down" ng-hide="$ctrl.$rootScope.splashHidden">\n<p ng-bind-html="\'splash.hiwesee\' | translate:{country: $ctrl.countryFlag + (\'country.\' + $ctrl.countryCode | translate) }"></p>\n<p>\n{{\'splash.whowouldyou\' | translate}}\n</p>\n<button ng-click="$ctrl.hideSplash()">{{\'splash.start\' | translate}}</button>\n<div class="splash__language">\n<div ng-hide="$ctrl.showLanguageSwitch">\n<a href ng-click="$ctrl.showLanguageSwitch=true;">Change language</a>\n</div>\n<div ng-show="$ctrl.showLanguageSwitch">\n<select ng-model="$ctrl.language" name="language" ng-change="$ctrl.changeLanguage()">\n<option ng-repeat="l in $ctrl.Languages" value="{{l}}"><a ng-href="/?lang={{l}}/#/info">{{\'lang.\' + l | translate}}</a></option>\n</select>\n</div>\n</div>\n</section>\n<div class="splash__bg" ng-hide="$ctrl.$rootScope.splashHidden"></div>\n',
  661. o = "splash.view.html",
  662. i = l.element(window.document).injector();
  663. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  664. c.put(o, a)
  665. }]), c.exports = a
  666. },
  667. 556: function(c, e, t) {
  668. "use strict";
  669.  
  670. function l(c) {
  671. return c && c.__esModule ? c : {
  672. "default": c
  673. }
  674. }
  675. var n = t(557),
  676. a = l(n),
  677. o = t(558),
  678. i = l(o);
  679. angular.module("Vote").controller("TopNavController", a["default"]).directive("topNav", i["default"])
  680. },
  681. 557: function(c, e) {
  682. "use strict";
  683.  
  684. function t(c, e) {
  685. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  686. }
  687. Object.defineProperty(e, "__esModule", {
  688. value: !0
  689. });
  690. var l = function() {
  691. function c(c, e) {
  692. for (var t = 0; t < e.length; t++) {
  693. var l = e[t];
  694. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  695. }
  696. }
  697. return function(e, t, l) {
  698. return t && c(e.prototype, t), l && c(e, l), e
  699. }
  700. }(),
  701. n = function() {
  702. function c(e, l) {
  703. t(this, c), this.$window = e, this.$rootScope = l;
  704. var n = new Date / 1e3,
  705. a = 1478563200;
  706. this.daysLeft = Math.floor((a - n) / 86400)
  707. }
  708. return c.$inject = ["$window", "$rootScope"], l(c, [{
  709. key: "sendGAEvent",
  710. value: function(c, e) {
  711. this.$window.ga("send", "event", c, e)
  712. }
  713. }]), c
  714. }();
  715. e["default"] = n
  716. },
  717. 558: function(c, e, t) {
  718. "use strict";
  719.  
  720. function l(c, e) {
  721. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  722. }
  723. Object.defineProperty(e, "__esModule", {
  724. value: !0
  725. });
  726. var n = function a() {
  727. l(this, a), this.restrict = "E", this.scope = {}, this.bindToController = {}, this.controller = "TopNavController", this.controllerAs = "$ctrl", this.template = t(559)
  728. };
  729. e["default"] = function() {
  730. return new n
  731. }
  732. },
  733. 559: function(c, e) {
  734. var t, l = window.angular;
  735. try {
  736. t = l.module(["ng"])
  737. } catch (n) {
  738. t = l.module("ng", [])
  739. }
  740. var a = '<nav class="top-nav">\n<div class="top-nav__title">\n<h1 ng-bind-html="\'header.title\' | translate" add-class-on-wrap="top-nav__title--wrapped" ui-sref="root.index"></h1>\n</div>\n<ul class="top-nav__items">\n<li class="top-nav__item top-nav__item--results">\n<a href ui-sref="root.results">\n<span class="top-nav__world"></span>\n{{\'header.results\' | translate}}\n</a>\n</li>\n<li class="top-nav__item top-nav__item--days">\n<div class="top-nav__countdown">\n<div class="top-nav__countdown__days">\n<span class="top-nav__countdown__char1">{{$ctrl.daysLeft.toString()[0]}}</span><span class="top-nav__countdown__char2">{{$ctrl.daysLeft.toString()[1]}}</span>\n</div>\n<span class="top-nav__countdown__left" ng-show="$ctrl.daysLeft !== 1">\n{{\'header.days-left\' | translate}}\n</span>\n<span class="top-nav__countdown__left" ng-show="$ctrl.daysLeft === 1">\n{{\'header.day-left\' | translate}}\n</span>\n</div>\n</li>\n<li class="top-nav__item top-nav__item--info"><a href ui-sref="root.info">{{\'header.info\' | translate}}</a></li>\n<li class="top-nav__item top-nav__item--twitter">\n<a socialshare socialshare-provider="twitter" socialshare-hashtags="Election2016 #Trump #Hillary" socialshare-text="{{ \'share.headline\' | translate }}" socialshare-url="{{ \'page.url\' | translate }}" socialshare-popup-height="300" socialshare-popup-width="400" socialshare-trigger="click" ng-click="$ctrl.sendGAEvent(\'share-page\', \'twitter\')">\n<span class="icon icon--twitter"></span>\n</a>\n</li>\n<li class="top-nav__item top-nav__item--facebook">\n<a socialshare socialshare-provider="facebook" socialshare-type="sharer" socialshare-text="{{ \'share.headline\' | translate }}" socialshare-url="{{ \'page.url\' | translate }}" socialshare-popup-height="300" socialshare-popup-width="400" socialshare-trigger="click" ng-click="$ctrl.sendGAEvent(\'share-page\', \'facebook\')">\n<span class="icon icon--facebook"></span>\n</a>\n</li>\n</ul>\n</nav>\n',
  741. o = "top-nav.view.html",
  742. i = l.element(window.document).injector();
  743. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  744. c.put(o, a)
  745. }]), c.exports = a
  746. },
  747. 560: function(c, e, t) {
  748. "use strict";
  749.  
  750. function l(c) {
  751. return c && c.__esModule ? c : {
  752. "default": c
  753. }
  754. }
  755. var n = t(561),
  756. a = l(n),
  757. o = t(562),
  758. i = l(o);
  759. angular.module("Vote").controller("TrumpHillaryContainerController", a["default"]).directive("trumpHillaryContainer", i["default"])
  760. },
  761. 561: function(c, e) {
  762. "use strict";
  763.  
  764. function t(c, e) {
  765. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  766. }
  767. Object.defineProperty(e, "__esModule", {
  768. value: !0
  769. });
  770. var l = function() {
  771. function c(c, e) {
  772. for (var t = 0; t < e.length; t++) {
  773. var l = e[t];
  774. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  775. }
  776. }
  777. return function(e, t, l) {
  778. return t && c(e.prototype, t), l && c(e, l), e
  779. }
  780. }(),
  781. n = function() {
  782. function c(e, l, n) {
  783. t(this, c), this.$window = e, this.$timeout = l, this.$rootScope = n
  784. }
  785. return c.$inject = ["$window", "$timeout", "$rootScope"], l(c, [{
  786. key: "openModal",
  787. value: function(c) {
  788. var e = this;
  789. this.yourVote = c, this.$timeout(function() {
  790. e.$rootScope.$broadcast("open-modal")
  791. }, 500)
  792. }
  793. }]), c
  794. }();
  795. e["default"] = n
  796. },
  797. 562: function(c, e, t) {
  798. "use strict";
  799.  
  800. function l(c, e) {
  801. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  802. }
  803. Object.defineProperty(e, "__esModule", {
  804. value: !0
  805. });
  806. var n = function a() {
  807. l(this, a), this.restrict = "E", this.scope = {}, this.bindToController = {}, this.controller = "TrumpHillaryContainerController", this.controllerAs = "$ctrl", this.template = t(563)
  808. };
  809. e["default"] = function() {
  810. return new n
  811. }
  812. },
  813. 563: function(c, e) {
  814. var t, l = window.angular;
  815. try {
  816. t = l.module(["ng"])
  817. } catch (n) {
  818. t = l.module("ng", [])
  819. }
  820. var a = '<div class="trump-hillary-container">\n<div class="trump-hillary-container__hillary" ng-class="{\'trump-hillary-container--winner\': $ctrl.yourVote === \'D\'}">\n<scene-hillary open-modal-fn="$ctrl.openModal(p)"></scene-hillary>\n</div>\n<div class="trump-hillary-container__trump" ng-class="{\'trump-hillary-container--winner\': $ctrl.yourVote === \'R\'}">\n<scene-trump open-modal-fn="$ctrl.openModal(p)"></scene-trump>\n</div>\n<ballot your-vote="$ctrl.yourVote"></ballot>\n</div>\n',
  821. o = "trump-hillary-container.view.html",
  822. i = l.element(window.document).injector();
  823. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  824. c.put(o, a)
  825. }]), c.exports = a
  826. },
  827. 544: function(c, e, t) {
  828. "use strict";
  829.  
  830. function l(c) {
  831. return c && c.__esModule ? c : {
  832. "default": c
  833. }
  834. }
  835. var n = t(545),
  836. a = l(n),
  837. o = t(546),
  838. i = l(o);
  839. angular.module("Vote").controller("VoteAppController", a["default"]).directive("voteApp", i["default"])
  840. },
  841. 545: function(c, e) {
  842. "use strict";
  843.  
  844. function t(c, e) {
  845. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  846. }
  847. Object.defineProperty(e, "__esModule", {
  848. value: !0
  849. });
  850. var l = ["$state", "deviceDetector", function n(c, e) {
  851. t(this, n), this.$state = c, this.deviceDetector = e, this.isUnsupportedBrowser = "ie" === e.browser && parseInt(e.browser_version, 10) < 10
  852. }];
  853. e["default"] = l
  854. },
  855. 546: function(c, e, t) {
  856. "use strict";
  857.  
  858. function l(c, e) {
  859. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  860. }
  861. Object.defineProperty(e, "__esModule", {
  862. value: !0
  863. });
  864. var n = function a() {
  865. l(this, a), this.restrict = "E", this.scope = {}, this.bindToController = {}, this.controller = "VoteAppController", this.controllerAs = "$ctrl", this.replace = !0, this.template = t(547)
  866. };
  867. e["default"] = function() {
  868. return new n
  869. }
  870. },
  871. 547: function(c, e) {
  872. var t, l = window.angular;
  873. try {
  874. t = l.module(["ng"])
  875. } catch (n) {
  876. t = l.module("ng", [])
  877. }
  878. var a = '<div class="vote-app">\n<header class="header">\n<top-nav></top-nav>\n</header>\n<div class="unsupported-browser" ng-if="$ctrl.isUnsupportedBrowser">\n<div class="unsupported-browser__sad-trump-hillary"></div>\n<div class="unsupported-browser__text">\n<p>\nThis website and your old browser could be Stronger Together...\n</p>\n<p ng-switch="$ctrl.deviceDetector.os">\n<a href="https://support.apple.com/en-us/HT204204" target="_blank" ng-switch-when="ios">Make your Browser Great Again!</a>\n<a href="http://browsehappy.com/" target="_blank" ng-switch-default>Make your Browser Great Again!</a>\n</p>\n</div>\n</div>\n<main class="page page--{{$ctrl.$state.current.name.replace(\'root.\', \'\')}}" ui-view ng-if="!$ctrl.isUnsupportedBrowser"></main>\n</div>\n',
  879. o = "vote-app.view.html",
  880. i = l.element(window.document).injector();
  881. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  882. c.put(o, a)
  883. }]), c.exports = a
  884. },
  885. 548: function(c, e, t) {
  886. "use strict";
  887.  
  888. function l(c) {
  889. return c && c.__esModule ? c : {
  890. "default": c
  891. }
  892. }
  893. var n = t(549),
  894. a = l(n),
  895. o = t(550),
  896. i = l(o);
  897. angular.module("Vote").controller("WorldMapController", a["default"]).directive("worldMap", i["default"])
  898. },
  899. 549: function(c, e) {
  900. "use strict";
  901.  
  902. function t(c, e) {
  903. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  904. }
  905. Object.defineProperty(e, "__esModule", {
  906. value: !0
  907. });
  908. var l = function() {
  909. function c(c, e) {
  910. for (var t = 0; t < e.length; t++) {
  911. var l = e[t];
  912. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  913. }
  914. }
  915. return function(e, t, l) {
  916. return t && c(e.prototype, t), l && c(e, l), e
  917. }
  918. }(),
  919. n = function() {
  920. function c(e, l, n, a, o) {
  921. t(this, c), this.$window = e, this.$document = l, this.$timeout = n, this.CountryThreshold = o, this.initCountryLayer = this.initCountryLayer.bind(this), this.clickLayer = this.clickLayer.bind(this), this.enterLayer = this.enterLayer.bind(this), this.leaveLayer = this.leaveLayer.bind(this), this.colors = {
  922. republicans: "#ef5c5c",
  923. democrats: "#117db6",
  924. undecided: "#dadada",
  925. split: "#B26CC1"
  926. }
  927. }
  928. return c.$inject = ["$window", "$document", "$timeout", "$stateParams", "CountryThreshold"], l(c, [{
  929. key: "initMap",
  930. value: function() {
  931. var c = this,
  932. e = new L.LatLng((-46.08085173686785), (-151.171875)),
  933. t = new L.LatLng(80.64524912417113, 187.03125),
  934. l = new L.LatLngBounds(e, t);
  935. this.leafletMap = L.map("world-map-leaflet", {
  936. maxZoom: 3,
  937. minZoom: 1,
  938. maxBounds: l,
  939. zoomControl: !1,
  940. touchZoom: !1,
  941. dragging: !1,
  942. doubleClickZoom: !1,
  943. scrollWheelZoom: !1,
  944. boxZoom: !1,
  945. tap: !1
  946. }), angular.element(window).on("resize", function() {
  947. c.leafletMap.fitBounds(l)
  948. }), this.addTopoData(), this.$timeout(function() {
  949. c.leafletMap.setView([44, -31], 2), c.leafletMap.fitBounds(l)
  950. }, 100)
  951. }
  952. }, {
  953. key: "addTopoData",
  954. value: function() {
  955. var c = new L.TopoJSON;
  956. c.addData(this.topoData), c.addTo(this.leafletMap), c.eachLayer(this.initCountryLayer)
  957. }
  958. }, {
  959. key: "initCountryLayer",
  960. value: function(c) {
  961. var e = c.feature.id,
  962. t = this.votingResults.countries[e],
  963. l = void 0;
  964. t ? t.votes < this.CountryThreshold ? l = this.colors.undecided : "R" === t.winner ? l = this.colors.republicans : "D" === t.winner ? l = this.colors.democrats : "S" === t.winner && (l = this.colors.split) : l = this.colors.undecided, c.setStyle({
  965. fillColor: l,
  966. fillOpacity: 1,
  967. color: "#ececec",
  968. weight: 1,
  969. opacity: .5
  970. }), t && c.on({
  971. click: this.clickLayer,
  972. mousedown: this.clickLayer,
  973. mouseover: this.enterLayer,
  974. mouseout: this.leaveLayer,
  975. touchstart: this.enterLayer,
  976. touchend: this.enterLayer
  977. })
  978. }
  979. }, {
  980. key: "clickLayer",
  981. value: function(c) {
  982. var e = c.target.feature.id,
  983. t = angular.element("body").find("#country-" + e);
  984. this.$document.scrollToElement(t, 300, 2e3), angular.element("body").find(".country-results--highlight").removeClass("country-results--highlight"), t.addClass("country-results--highlight")
  985. }
  986. }, {
  987. key: "enterLayer",
  988. value: function(c) {
  989. c.target.bringToFront(), c.target.setStyle({
  990. weight: 2,
  991. opacity: 1
  992. })
  993. }
  994. }, {
  995. key: "leaveLayer",
  996. value: function(c) {
  997. c.target.bringToBack(), c.target.setStyle({
  998. weight: 1,
  999. opacity: .5
  1000. })
  1001. }
  1002. }]), c
  1003. }();
  1004. e["default"] = n
  1005. },
  1006. 550: function(c, e, t) {
  1007. "use strict";
  1008.  
  1009. function l(c, e) {
  1010. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  1011. }
  1012. Object.defineProperty(e, "__esModule", {
  1013. value: !0
  1014. });
  1015. var n = function() {
  1016. function c(c, e) {
  1017. for (var t = 0; t < e.length; t++) {
  1018. var l = e[t];
  1019. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  1020. }
  1021. }
  1022. return function(e, t, l) {
  1023. return t && c(e.prototype, t), l && c(e, l), e
  1024. }
  1025. }(),
  1026. a = function() {
  1027. function c() {
  1028. l(this, c), this.restrict = "E", this.scope = {}, this.bindToController = {
  1029. votingResults: "=",
  1030. topoData: "="
  1031. }, this.controller = "WorldMapController", this.controllerAs = "$ctrl", this.template = t(551)
  1032. }
  1033. return n(c, [{
  1034. key: "link",
  1035. value: function(c, e, t, l) {
  1036. l.initMap()
  1037. }
  1038. }]), c
  1039. }();
  1040. e["default"] = function() {
  1041. return new a
  1042. }
  1043. },
  1044. 551: function(c, e) {
  1045. var t, l = window.angular;
  1046. try {
  1047. t = l.module(["ng"])
  1048. } catch (n) {
  1049. t = l.module("ng", [])
  1050. }
  1051. var a = '<div id="world-map-leaflet"></div>\n',
  1052. o = "world-map.view.html",
  1053. i = l.element(window.document).injector();
  1054. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  1055. c.put(o, a)
  1056. }]), c.exports = a
  1057. },
  1058. 533: function(c, e) {
  1059. "use strict";
  1060.  
  1061. function t(c, e) {
  1062. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  1063. }
  1064. Object.defineProperty(e, "__esModule", {
  1065. value: !0
  1066. });
  1067. var l = function() {
  1068. function c(c, e) {
  1069. for (var t = 0; t < e.length; t++) {
  1070. var l = e[t];
  1071. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  1072. }
  1073. }
  1074. return function(e, t, l) {
  1075. return t && c(e.prototype, t), l && c(e, l), e
  1076. }
  1077. }(),
  1078. n = function() {
  1079. function c(e) {
  1080. t(this, c), this.restrict = "A", this.scope = {
  1081. wrapClass: "@addClassOnWrap"
  1082. }, this.link = this.link.bind(this), this.$timeout = e, this.addWrapClass = this.addWrapClass.bind(this)
  1083. }
  1084. return l(c, [{
  1085. key: "link",
  1086. value: function(c, e, t) {
  1087. var l = this;
  1088. this.$timeout(function() {
  1089. l.origLineHeight = parseInt(e.css("line-height"), 10), l.addWrapClass(e, c.wrapClass)
  1090. }, 200), angular.element(window).on("resize", function() {
  1091. l.addWrapClass(e, c.wrapClass)
  1092. })
  1093. }
  1094. }, {
  1095. key: "addWrapClass",
  1096. value: function(c, e) {
  1097. c.height() > this.origLineHeight && c.addClass(e)
  1098. }
  1099. }]), c
  1100. }();
  1101. e["default"] = function(c) {
  1102. return new n(c)
  1103. }, e["default"].$inject = ["$timeout"]
  1104. },
  1105. 532: function(c, e, t) {
  1106. "use strict";
  1107.  
  1108. function l(c) {
  1109. return c && c.__esModule ? c : {
  1110. "default": c
  1111. }
  1112. }
  1113. var n = t(533),
  1114. a = l(n);
  1115. angular.module("Vote").directive("addClassOnWrap", a["default"])
  1116. },
  1117. 535: function(c, e) {
  1118. "use strict";
  1119.  
  1120. function t(c, e) {
  1121. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  1122. }
  1123. Object.defineProperty(e, "__esModule", {
  1124. value: !0
  1125. });
  1126. var l = function() {
  1127. function c(c, e) {
  1128. for (var t = 0; t < e.length; t++) {
  1129. var l = e[t];
  1130. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  1131. }
  1132. }
  1133. return function(e, t, l) {
  1134. return t && c(e.prototype, t), l && c(e, l), e
  1135. }
  1136. }(),
  1137. n = function() {
  1138. function c(e) {
  1139. t(this, c), this.restrict = "A", this.scope = {
  1140. wrapClass: "@hotspot",
  1141. parent: "@hotspotParent"
  1142. }, this.link = this.link.bind(this), this.$timeout = e
  1143. }
  1144. return l(c, [{
  1145. key: "link",
  1146. value: function(c, e, t) {
  1147. var l = this,
  1148. n = angular.element("." + c.parent),
  1149. a = void 0;
  1150. e.on("mouseover mouseenter", function() {
  1151. angular.element("." + c.wrapClass).removeClass(c.wrapClass), n.addClass(c.wrapClass)
  1152. }), e.on("mouseleave", function() {
  1153. a && l.$timeout.cancel(a), a = l.$timeout(function() {
  1154. n.removeClass(c.wrapClass)
  1155. }, 200)
  1156. })
  1157. }
  1158. }]), c
  1159. }();
  1160. e["default"] = function(c) {
  1161. return new n(c)
  1162. }, e["default"].$inject = ["$timeout"]
  1163. },
  1164. 534: function(c, e, t) {
  1165. "use strict";
  1166.  
  1167. function l(c) {
  1168. return c && c.__esModule ? c : {
  1169. "default": c
  1170. }
  1171. }
  1172. var n = t(535),
  1173. a = l(n);
  1174. angular.module("Vote").directive("hotspot", a["default"])
  1175. },
  1176. 0: function(c, e, t) {
  1177. "use strict";
  1178. t(1), t(523), t(527), t(529), t(532), t(534), t(536), t(540), t(544), t(548), t(552), t(556), t(560), t(564), t(567)
  1179. },
  1180. 523: function(c, e, t) {
  1181. "use strict";
  1182. angular.module("Vote", ["ngAnimate", "ngSanitize", "ui.router", "720kb.socialshare", "duScroll", "ng.deviceDetector"]).constant("Languages", ["en", "fr", "de", "es", "pt", "ar", "ru", "ja", "zh-CN"]).constant("CountryThreshold", 20).config(["$stateProvider", "$urlRouterProvider", "translateServiceProvider", "Languages", function(c, e, l, n) {
  1183. var a = l.detectLanguage(n);
  1184. l.setTranslation("json/translations/labels." + a + ".json"), l.setFallbackTranslation("json/translations/labels.en.json"), c.state("root", {
  1185. "abstract": !0,
  1186. url: "?lang",
  1187. template: "<ui-view></ui-view>",
  1188. resolve: {
  1189. translationsLoaded: ["translateService", function(c) {
  1190. return c.isLoaded()
  1191. }]
  1192. }
  1193. }).state("root.index", {
  1194. url: "/",
  1195. controllerAs: "$ctrl",
  1196. controller: ["$rootScope", "countryLookup", function(c, e) {
  1197. c.countryCode = e.data.country, c.token = e.data.token
  1198. }],
  1199. template: t(524),
  1200. resolve: {
  1201. countryLookup: ["apiService", function(c) {
  1202. return c.lookupCountry()
  1203. }]
  1204. }
  1205. }).state("root.results", {
  1206. url: "/results/:scale",
  1207. params: {
  1208. scale: "day"
  1209. },
  1210. resolve: {
  1211. votingResults: ["$stateParams", "apiService", function(c, e) {
  1212. return e.votingResults(c.scale)
  1213. }],
  1214. topoData: ["apiService", function(c) {
  1215. return c.topoData()
  1216. }]
  1217. },
  1218. controllerAs: "$ctrl",
  1219. controller: ["$timeout", "$state", "$stateParams", "votingResults", "topoData", function(c, e, t, l, n) {
  1220. this.votingResults = l.data, this.topoData = n.data, this.timeScale = t.scale;
  1221. var a = c(function() {
  1222. c.cancel(a), e.reload()
  1223. }, 60001);
  1224. this.switchTimeScale = function() {
  1225. e.go(e.current, {
  1226. scale: this.timeScale
  1227. })
  1228. }
  1229. }],
  1230. template: t(525)
  1231. }).state("root.info", {
  1232. url: "/info",
  1233. controllerAs: "$ctrl",
  1234. controller: function() {},
  1235. template: t(526)
  1236. }), e.otherwise("/")
  1237. }]).run(["$rootScope", "$window", "$location", "translateService", function(c, e, t, l) {
  1238. l.loadTranslations(), e.ga("create", "UA-83949074-2", "auto"), c.$on("$stateChangeSuccess", function(c) {
  1239. e.ga("send", "pageview", t.path())
  1240. })
  1241. }])
  1242. },
  1243. 528: function(c, e) {
  1244. "use strict";
  1245.  
  1246. function t(c, e) {
  1247. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  1248. }
  1249. Object.defineProperty(e, "__esModule", {
  1250. value: !0
  1251. });
  1252. var l = function() {
  1253. function c(c, e) {
  1254. for (var t = 0; t < e.length; t++) {
  1255. var l = e[t];
  1256. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  1257. }
  1258. }
  1259. return function(e, t, l) {
  1260. return t && c(e.prototype, t), l && c(e, l), e
  1261. }
  1262. }(),
  1263. n = function() {
  1264. function c(e) {
  1265. t(this, c), this.$http = e
  1266. }
  1267. return c.$inject = ["$http"], l(c, [{
  1268. key: "sendVote",
  1269. value: function(c) {
  1270. return this.$http({
  1271. method: "POST",
  1272. url: "./api/submitVote.php",
  1273. data: angular.toJson(c)
  1274. })
  1275. }
  1276. }, {
  1277. key: "lookupCountry",
  1278. value: function() {
  1279. return this.$http({
  1280. method: "GET",
  1281. url: "./api/getCountryCode.php"
  1282. })
  1283. }
  1284. }, {
  1285. key: "votingResults",
  1286. value: function() {
  1287. var c = arguments.length <= 0 || void 0 === arguments[0] ? "day" : arguments[0];
  1288. return c = "day" === c ? "day" : "total", this.$http({
  1289. method: "GET",
  1290. url: "json/results." + c + ".json"
  1291. })
  1292. }
  1293. }, {
  1294. key: "topoData",
  1295. value: function() {
  1296. return this.$http({
  1297. method: "GET",
  1298. url: "json/countries-iso2.topo.json",
  1299. cache: !0
  1300. })
  1301. }
  1302. }]), c
  1303. }();
  1304. e["default"] = n
  1305. },
  1306. 527: function(c, e, t) {
  1307. "use strict";
  1308.  
  1309. function l(c) {
  1310. return c && c.__esModule ? c : {
  1311. "default": c
  1312. }
  1313. }
  1314. var n = t(528),
  1315. a = l(n);
  1316. angular.module("Vote").service("apiService", a["default"])
  1317. },
  1318. 529: function(c, e, t) {
  1319. "use strict";
  1320.  
  1321. function l(c) {
  1322. return c && c.__esModule ? c : {
  1323. "default": c
  1324. }
  1325. }
  1326. var n = t(530),
  1327. a = l(n),
  1328. o = t(531),
  1329. i = l(o);
  1330. angular.module("Vote").provider("translateService", a["default"]).filter("translate", i["default"])
  1331. },
  1332. 531: function(c, e) {
  1333. "use strict";
  1334.  
  1335. function t(c, e, t) {
  1336. var l = function(l, n, a) {
  1337. if ("string" == typeof l) {
  1338. var o;
  1339. return o = c.getTranslation(l), o && (angular.isObject(n) || (n = e(n)(a) || {}), o = t(o)(n)), o
  1340. }
  1341. };
  1342. return l.$stateful = !0, l
  1343. }
  1344. t.$inject = ["translateService", "$parse", "$interpolate"], Object.defineProperty(e, "__esModule", {
  1345. value: !0
  1346. }), e["default"] = function(c, e, l) {
  1347. return t(c, e, l)
  1348. }, e["default"].$inject = ["translateService", "$parse", "$interpolate"]
  1349. },
  1350. 530: function(c, e) {
  1351. "use strict";
  1352.  
  1353. function t(c, e) {
  1354. if (!(c instanceof e)) throw new TypeError("Cannot call a class as a function")
  1355. }
  1356. Object.defineProperty(e, "__esModule", {
  1357. value: !0
  1358. });
  1359. var l = function() {
  1360. function c(c, e) {
  1361. for (var t = 0; t < e.length; t++) {
  1362. var l = e[t];
  1363. l.enumerable = l.enumerable || !1, l.configurable = !0, "value" in l && (l.writable = !0), Object.defineProperty(c, l.key, l)
  1364. }
  1365. }
  1366. return function(e, t, l) {
  1367. return t && c(e.prototype, t), l && c(e, l), e
  1368. }
  1369. }(),
  1370. n = function() {
  1371. function c() {
  1372. t(this, c), this.preferredLanguage = "", this.translation = "", this.fallbackTranslation = "", this.translationTable = "", this.fallbackString = " ", this.translationsLoaded = !1, this.translationsLoadedPromise = !1
  1373. }
  1374. return l(c, [{
  1375. key: "setTranslation",
  1376. value: function(c) {
  1377. this.translation = c
  1378. }
  1379. }, {
  1380. key: "setFallbackTranslation",
  1381. value: function(c) {
  1382. this.fallbackTranslation = c
  1383. }
  1384. }, {
  1385. key: "setFallbackString",
  1386. value: function(c) {
  1387. this.fallbackString = c
  1388. }
  1389. }, {
  1390. key: "detectLanguage",
  1391. value: function(c) {
  1392. var e = c[0],
  1393. t = window.location.href.match(/lang=([a-z]{2}\-[a-z]{2}|[a-z]{2})/i);
  1394. if (t && c.includes(t[1])) e = t[1];
  1395. else {
  1396. var l = void 0,
  1397. n = navigator.languages || navigator.language || navigator.userLanguage;
  1398. angular.isArray(n) ? ! function() {
  1399. var e = [];
  1400. angular.forEach(n, function(t) {
  1401. c.includes(t) && e.push(t), c.includes(t.substr(0, 2)) && e.push(t.substr(0, 2))
  1402. }), l = e[0]
  1403. }() : c.indexOf(n) > -1 ? l = n : c.indexOf(n.substr(0, 2)) > -1 && (l = n.substr(0, 2)), l && (e = l)
  1404. }
  1405. return this.preferredLanguage = e, this.preferredLanguage
  1406. }
  1407. }, {
  1408. key: "$get",
  1409. value: ["$rootScope", "$log", "$http", "$q", function(c, e, t, l) {
  1410. var n = this;
  1411. return {
  1412. getTranslation: function(c) {
  1413. var e = void 0;
  1414. return n.translationsLoadedPromise && (e = angular.isObject(n.translationTable) && angular.isDefined(n.translationTable[c]) ? n.translationTable[c] : n.fallbackString), e
  1415. },
  1416. isLoaded: function() {
  1417. return n.translationsLoadedPromise
  1418. },
  1419. getCurrentLanguage: function() {
  1420. return n.preferredLanguage
  1421. },
  1422. loadTranslations: function() {
  1423. if (n.translationsLoaded = l.defer(), n.translationsLoadedPromise = n.translationsLoaded.promise, n.translation) {
  1424. angular.element("html").addClass("translate-cloaked");
  1425. var c = t({
  1426. method: "GET",
  1427. url: n.translation
  1428. })["catch"](function(c) {
  1429. e.warn("Failed to load translation " + c)
  1430. }),
  1431. a = void 0;
  1432. a = n.fallbackTranslation !== n.translation ? t({
  1433. method: "GET",
  1434. url: n.fallbackTranslation
  1435. })["catch"](function(c) {
  1436. e.warn("Failed to load fallback translation " + c)
  1437. }) : l.when({}), l.all({
  1438. fallbackCall: a,
  1439. translationCall: c
  1440. }).then(function(c) {
  1441. n.translationTable = angular.extend({}, c.fallbackCall && c.fallbackCall.data, c.translationCall && c.translationCall.data), n.translationsLoaded.resolve(), angular.element("html").removeClass("translate-cloaked").attr("lang", n.preferredLanguage).attr("dir", "ar" === n.preferredLanguage ? "rtl" : "ltr")
  1442. })
  1443. } else n.translationsLoaded.resolve()
  1444. }
  1445. }
  1446. }]
  1447. }]), c
  1448. }();
  1449. e["default"] = n
  1450. },
  1451. 524: function(c, e) {
  1452. var t, l = window.angular;
  1453. try {
  1454. t = l.module(["ng"])
  1455. } catch (n) {
  1456. t = l.module("ng", [])
  1457. }
  1458. var a = '<splash></splash>\n<trump-hillary-container your-vote="$ctrl.yourVote"></trump-hillary-container>\n',
  1459. o = "root.index.html",
  1460. i = l.element(window.document).injector();
  1461. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  1462. c.put(o, a)
  1463. }]), c.exports = a
  1464. },
  1465. 526: function(c, e) {
  1466. var t, l = window.angular;
  1467. try {
  1468. t = l.module(["ng"])
  1469. } catch (n) {
  1470. t = l.module("ng", [])
  1471. }
  1472. var a = '<div class="page__wrapper">\n<h1 class="page--info__title">We the "other" People</h1>\n<p class="page--info__subtitle">\n<strong>\ncare for the upcoming presidential election\n</strong>\n</p>\n<dl class="page--info__list">\n<dd>\n<p>\nOn November 8th 2016, Hillary Clinton or Donald J. Trump will be elected as the 45th president of the United States. The outcome of this election will have a global effect. People from all over the world will be watching the U.S. closely during this process of debates, polls and scandals while wishing they also have a chance for their voices to be heard.\n</p>\n</dd>\n<dd>\n<p>\nOn this website <b>anyone from any country</b> can cast a vote! Who does Argentina, for example, prefer? Or Belgium? Or China? And what about Zimbabwe? The results will be accumulated on our <a ui-sref="root.results">worldwide map</a>, which is updated in real time - so check back often!\n</p>\n</dd>\n<dt>How it works</dt>\n<dd>\n<ul>\n<li>One vote is allowed <b>per ip-address per 24 hours</b></li>\n<li>We care about your privacy and won\'t store your ip-address or any other personal identifier in our database. We do however store an anonymous version (hashed) of your ip-address to prevent multiple votes per ip</li>\n<li>We\'ve tried our best to translate most of this site in as many languages as we could. There might still be some silly errors, sorry about that.</li>\n</ul>\n</dd>\n<dt>Will you list the other candidates or add an \'other\' option?</dt>\n<dd>\n<p>\nWell no, we\'ve simplified. We think it\'s fair to say that the rest of the world will have to be dealing with either Donald or Hillary. Sorry <a href="http://www.jill2016.com/" target="_blank">Jill</a>, <a href="https://www.johnsonweld.com/" target="_blank">Gary</a> and <a href="http://castle2016.com/" target="_blank">Darrell</a>.\n</p>\n</dd>\n<dt>Is this serious?!</dt>\n<dd>\n<p>\nThis is a seriously fun project by <a href="http://www.arthurvanthoog.nl" target="_blank">Arthur van \'t Hoog</a> and <a href="https://galaxy.fili.nl" target="_blank">Filidor Wiese</a> from the Netherlands. We\'re really curious who the World would elect if they could. So please <a ui-sref="root.index">vote</a> and share our project!\n</p>\n<p>\n<a href="mailto:hello@worldwide.vote">hello@worldwide.vote</a>\n</p>\n</dd>\n</dl>\n</div>\n',
  1473. o = "root.info.html",
  1474. i = l.element(window.document).injector();
  1475. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  1476. c.put(o, a)
  1477. }]), c.exports = a
  1478. },
  1479. 525: function(c, e) {
  1480. var t, l = window.angular;
  1481. try {
  1482. t = l.module(["ng"])
  1483. } catch (n) {
  1484. t = l.module("ng", [])
  1485. }
  1486. var a = '<div class="page__wrapper">\n<div class="world-map">\n<world-map voting-results="$ctrl.votingResults" topo-data="$ctrl.topoData"></world-map>\n<div class="world-map__header">\n<h1 class="world-map__title">{{\'worldmap.title\' | translate}}<br/>{{\'worldmap.subtitle\' | translate}}</h1>\n<p class="world-map__timescale">\n<select ng-change="$ctrl.switchTimeScale()" ng-model="$ctrl.timeScale">\n<option value="day">{{\'worldmap.scale.day\' | translate}}</option>\n<option value="total">{{\'worldmap.scale.total\' | translate}}</option>\n</select>\n</p>\n<p class="world-map__sub">\n{{\'worldmap.totalvotes\' | translate:{\'votes\': ($ctrl.votingResults.total.D + $ctrl.votingResults.total.R) } }}<br/>\n({{\'ballot.footer\' | translate}})\n</p>\n<div class="world-map__pie pie">\n<svg viewBox="0 0 32 32">\n<circle r="16" cx="16" cy="16" ng-style="{\'strokeDasharray\': $ctrl.votingResults.D + \' 100\'}"/>\n</svg>\n<div class="world-map__R">\n{{\'shortname.trump\' | translate}}<br/>\n{{$ctrl.votingResults.R}}%\n</div>\n<div class="world-map__D">\n{{\'shortname.hillary\' | translate}}<br/>\n{{$ctrl.votingResults.D}}%\n</div>\n</div>\n</div>\n</div>\n<country-results voting-results="$ctrl.votingResults"></country-results>\n</div>\n',
  1487. o = "root.results.html",
  1488. i = l.element(window.document).injector();
  1489. i ? i.get("$templateCache").put(o, a) : t.run(["$templateCache", function(c) {
  1490. c.put(o, a)
  1491. }]), c.exports = a
  1492. }
  1493. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement