ca-components 2.1.13 → 2.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1797) hide show
  1. package/fesm2022/ca-components.mjs +38 -20
  2. package/fesm2022/ca-components.mjs.map +1 -1
  3. package/index.d.ts +7 -6
  4. package/lib/animations/accordion-animation.ts +41 -0
  5. package/lib/animations/animation.ts +33 -0
  6. package/lib/animations/area-left-side.animation.ts +44 -0
  7. package/lib/animations/area-right-side.animation.ts +43 -0
  8. package/lib/animations/card-component.animation.ts +78 -0
  9. package/lib/animations/close-form.animation.ts +34 -0
  10. package/lib/animations/expand-search-button.animation.ts +17 -0
  11. package/lib/animations/fade-in.animation.ts +15 -0
  12. package/lib/animations/in-out.animation.ts +87 -0
  13. package/lib/animations/index.ts +14 -0
  14. package/lib/animations/puff-in-out.animation.ts +40 -0
  15. package/lib/animations/search-bar-button-opacity.animation.ts +18 -0
  16. package/lib/animations/search-input-expand.animation.ts +18 -0
  17. package/lib/animations/show.animation.ts +36 -0
  18. package/lib/animations/slide-in-out.animation.ts +36 -0
  19. package/lib/animations/state-header.animation.ts +31 -0
  20. package/lib/animations/tabs-modal.animation.ts +121 -0
  21. package/lib/ca-components.module.ts +222 -0
  22. package/lib/components/ca-activity-log-list/ca-activity-log-list.component.html +227 -0
  23. package/lib/components/ca-activity-log-list/ca-activity-log-list.component.scss +398 -0
  24. package/lib/components/ca-activity-log-list/ca-activity-log-list.component.spec.ts +21 -0
  25. package/lib/components/ca-activity-log-list/ca-activity-log-list.component.ts +174 -0
  26. package/lib/components/ca-activity-log-list/ca-activity-log-list.stories.ts +29 -0
  27. package/lib/components/ca-activity-log-list/config/activity-log-search-filter.config.ts +18 -0
  28. package/lib/components/ca-activity-log-list/config/index.ts +1 -0
  29. package/lib/components/ca-activity-log-list/enums/action-log-type-title-text.enum.ts +5 -0
  30. package/lib/components/ca-activity-log-list/enums/action-log-type.enum.ts +7 -0
  31. package/lib/components/ca-activity-log-list/enums/activity-entity-type.enum.ts +4 -0
  32. package/lib/components/ca-activity-log-list/enums/activity-log-utils.enum.ts +4 -0
  33. package/lib/components/ca-activity-log-list/enums/index.ts +4 -0
  34. package/lib/components/ca-activity-log-list/models/action-log.model.ts +7 -0
  35. package/lib/components/ca-activity-log-list/models/activity-log-item-description.model.ts +5 -0
  36. package/lib/components/ca-activity-log-list/models/activity-log-item.model.ts +18 -0
  37. package/lib/components/ca-activity-log-list/models/activity-log-list-data.model.ts +7 -0
  38. package/lib/components/ca-activity-log-list/models/company-user-avatar-file.model.ts +9 -0
  39. package/lib/components/ca-activity-log-list/models/company-user.model.ts +10 -0
  40. package/lib/components/ca-activity-log-list/models/entity-type-activity.model.ts +4 -0
  41. package/lib/components/ca-activity-log-list/models/index.ts +7 -0
  42. package/lib/components/ca-activity-log-list/utils/constants/activity-log-list-data.constants.ts +537 -0
  43. package/lib/components/ca-activity-log-list/utils/constants/index.ts +1 -0
  44. package/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.ts +11 -0
  45. package/lib/components/ca-activity-log-list/utils/pipes/activity-log-date-transform.pipe.ts +14 -0
  46. package/lib/components/ca-activity-log-list/utils/pipes/company-user-name-transform.pipe.ts +13 -0
  47. package/lib/components/ca-activity-log-list/utils/pipes/index.ts +4 -0
  48. package/lib/components/ca-activity-log-list/utils/pipes/tab-title-transform.pipe.ts +13 -0
  49. package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.html +20 -0
  50. package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.scss +0 -0
  51. package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.ts +74 -0
  52. package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.html +18 -0
  53. package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.scss +0 -0
  54. package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.ts +56 -0
  55. package/lib/components/ca-autoclose-popover/enums/autoclose-string.enum.ts +3 -0
  56. package/lib/components/ca-chart/ca-chart.component.html +76 -0
  57. package/lib/components/ca-chart/ca-chart.component.scss +39 -0
  58. package/lib/components/ca-chart/ca-chart.component.spec.ts +21 -0
  59. package/lib/components/ca-chart/ca-chart.component.ts +912 -0
  60. package/lib/components/ca-chart/ca-chart.stories.ts +121 -0
  61. package/lib/components/ca-chart/config/ca-base-chart-dataset.config.ts +12 -0
  62. package/lib/components/ca-chart/config/index.ts +1 -0
  63. package/lib/components/ca-chart/enums/chart-annotation-type.enum.ts +8 -0
  64. package/lib/components/ca-chart/enums/chart-annotation.enum.ts +15 -0
  65. package/lib/components/ca-chart/enums/chart-colors.enum.ts +7 -0
  66. package/lib/components/ca-chart/enums/chart-event-properties.enum.ts +5 -0
  67. package/lib/components/ca-chart/enums/chart-event-types.enum.ts +3 -0
  68. package/lib/components/ca-chart/enums/chart-font-properties.enum.ts +4 -0
  69. package/lib/components/ca-chart/enums/chart-images.enum.ts +7 -0
  70. package/lib/components/ca-chart/enums/chart-plugin-ids.enum.ts +6 -0
  71. package/lib/components/ca-chart/enums/cubic-interpolation-mode.enum.ts +4 -0
  72. package/lib/components/ca-chart/enums/e-chart-types.enum.ts +5 -0
  73. package/lib/components/ca-chart/enums/index.ts +10 -0
  74. package/lib/components/ca-chart/models/chart-annotation.model.ts +15 -0
  75. package/lib/components/ca-chart/models/chart-base-dataset.model.ts +20 -0
  76. package/lib/components/ca-chart/models/chart-boundaries.model.ts +4 -0
  77. package/lib/components/ca-chart/models/chart-center-label.model.ts +11 -0
  78. package/lib/components/ca-chart/models/chart-config.model.ts +29 -0
  79. package/lib/components/ca-chart/models/chart-data.model.ts +6 -0
  80. package/lib/components/ca-chart/models/chart-dataset-hover.model.ts +5 -0
  81. package/lib/components/ca-chart/models/chart-legend-config.model.ts +7 -0
  82. package/lib/components/ca-chart/models/chart-legend-property.model.ts +10 -0
  83. package/lib/components/ca-chart/models/chart-line-dataset.model.ts +16 -0
  84. package/lib/components/ca-chart/models/index.ts +10 -0
  85. package/lib/components/ca-chart/utils/constants/chart.constants.ts +3 -0
  86. package/lib/components/ca-chart/utils/constants/index.ts +1 -0
  87. package/lib/components/ca-chart/utils/guards/chart-type.guard.ts +10 -0
  88. package/lib/components/ca-chart/utils/guards/index.ts +1 -0
  89. package/lib/components/ca-chart/utils/helpers/chart.helper.ts +294 -0
  90. package/lib/components/ca-chart/utils/helpers/index.ts +1 -0
  91. package/lib/components/ca-chart/utils/svg-routes/chart-svg-routes.ts +12 -0
  92. package/lib/components/ca-chart/utils/svg-routes/index.ts +1 -0
  93. package/lib/components/ca-chart-manager/ca-chart-manager.component.html +27 -0
  94. package/lib/components/ca-chart-manager/ca-chart-manager.component.scss +13 -0
  95. package/lib/components/ca-chart-manager/ca-chart-manager.component.spec.ts +21 -0
  96. package/lib/components/ca-chart-manager/ca-chart-manager.component.ts +131 -0
  97. package/lib/components/ca-chart-manager/models/hover-state.model.ts +7 -0
  98. package/lib/components/ca-chart-manager/models/index.ts +1 -0
  99. package/lib/components/ca-chart-manager/services/chart-manager.service.ts +21 -0
  100. package/lib/components/ca-chart-manager/services/index.ts +1 -0
  101. package/lib/components/ca-checkbox/ca-checkbox.component.html +207 -0
  102. package/lib/components/ca-checkbox/ca-checkbox.component.scss +417 -0
  103. package/lib/components/ca-checkbox/ca-checkbox.component.spec.ts +23 -0
  104. package/lib/components/ca-checkbox/ca-checkbox.component.ts +190 -0
  105. package/lib/components/ca-checkbox/ca-checkbox.stories.ts +87 -0
  106. package/lib/components/ca-checkbox/interfaces/column-check-action.interface.ts +6 -0
  107. package/lib/components/ca-checkbox/interfaces/index.ts +1 -0
  108. package/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.ts +9 -0
  109. package/lib/components/ca-checkbox/utils/svg-routes/index.ts +1 -0
  110. package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.html +83 -0
  111. package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.scss +17 -0
  112. package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.spec.ts +23 -0
  113. package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.ts +70 -0
  114. package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-cpunt.component.stories.ts +90 -0
  115. package/lib/components/ca-checkbox-selected-count/pipes/checkbox-selected-count-class.pipe.ts +27 -0
  116. package/lib/components/ca-checkbox-selected-count/pipes/index.ts +1 -0
  117. package/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.html +41 -0
  118. package/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.scss +64 -0
  119. package/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.stories.ts +79 -0
  120. package/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.ts +81 -0
  121. package/lib/components/ca-comment/ca-comment.component.html +124 -0
  122. package/lib/components/ca-comment/ca-comment.component.scss +174 -0
  123. package/lib/components/ca-comment/ca-comment.component.ts +144 -0
  124. package/lib/components/ca-comment/ca-comment.stories.ts +133 -0
  125. package/lib/components/ca-comment/directives/auto-resize.directive.ts +41 -0
  126. package/lib/components/ca-comment/directives/index.ts +1 -0
  127. package/lib/components/ca-comment/enums/index.ts +1 -0
  128. package/lib/components/ca-comment/enums/svg-icon.enum.ts +6 -0
  129. package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.html +52 -0
  130. package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.scss +232 -0
  131. package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.spec.ts +21 -0
  132. package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.ts +46 -0
  133. package/lib/components/ca-comment/modals/comment-modal/svg-routes/index.ts +1 -0
  134. package/lib/components/ca-comment/modals/comment-modal/svg-routes/modal.routes.ts +4 -0
  135. package/lib/components/ca-comment/models/ca-comment-config.model.ts +11 -0
  136. package/lib/components/ca-comment/models/ca-delete-comment.model.ts +1 -0
  137. package/lib/components/ca-comment/models/ca-save-comment.model.ts +3 -0
  138. package/lib/components/ca-comment/models/ca-update-comment.model.ts +5 -0
  139. package/lib/components/ca-comment/models/index.ts +4 -0
  140. package/lib/components/ca-comment/pipes/icon.pipe.ts +18 -0
  141. package/lib/components/ca-comment/pipes/index.ts +1 -0
  142. package/lib/components/ca-comment/services/index.ts +1 -0
  143. package/lib/components/ca-comment/services/modal.service.ts +31 -0
  144. package/lib/components/ca-comment/utils/constants/comment.constant.ts +10 -0
  145. package/lib/components/ca-comment/utils/constants/index.ts +1 -0
  146. package/lib/components/ca-comment/utils/index.ts +1 -0
  147. package/lib/components/ca-comments/ca-comments.component.html +695 -0
  148. package/lib/components/ca-comments/ca-comments.component.scss +135 -0
  149. package/lib/components/ca-comments/ca-comments.component.spec.ts +23 -0
  150. package/lib/components/ca-comments/ca-comments.component.ts +257 -0
  151. package/lib/components/ca-comments/ca-comments.stories.ts +150 -0
  152. package/lib/components/ca-comments/models/comment.interface.ts +18 -0
  153. package/lib/components/ca-comments/models/index.ts +1 -0
  154. package/lib/components/ca-comments/pipes/highlight-comment.pipe.ts +51 -0
  155. package/lib/components/ca-comments/pipes/highlight-single-string.pipe.ts +26 -0
  156. package/lib/components/ca-comments/pipes/index.ts +4 -0
  157. package/lib/components/ca-comments/pipes/is-current-user.pipe.ts +24 -0
  158. package/lib/components/ca-comments/pipes/sort-comments.pipe.ts +35 -0
  159. package/lib/components/ca-comments/utils/helpers/index.ts +0 -0
  160. package/lib/components/ca-confirmation-modals/components/ca-activate-modal/ca-active-modal.component.html +78 -0
  161. package/lib/components/ca-confirmation-modals/components/ca-activate-modal/ca-active-modal.component.scss +0 -0
  162. package/lib/components/ca-confirmation-modals/components/ca-activate-modal/ca-active-modal.component.ts +49 -0
  163. package/lib/components/ca-confirmation-modals/components/ca-deactive-modal/ca-deactive-modal.component.html +76 -0
  164. package/lib/components/ca-confirmation-modals/components/ca-deactive-modal/ca-deactive-modal.component.scss +0 -0
  165. package/lib/components/ca-confirmation-modals/components/ca-deactive-modal/ca-deactive-modal.component.ts +58 -0
  166. package/lib/components/ca-confirmation-modals/components/ca-delete-modal/ca-delete-modal.component.html +74 -0
  167. package/lib/components/ca-confirmation-modals/components/ca-delete-modal/ca-delete-modal.component.scss +0 -0
  168. package/lib/components/ca-confirmation-modals/components/ca-delete-modal/ca-delete-modal.component.ts +48 -0
  169. package/lib/components/ca-confirmation-modals/components/ca-move-modal/ca-move-modal.component.html +78 -0
  170. package/lib/components/ca-confirmation-modals/components/ca-move-modal/ca-move-modal.component.scss +3 -0
  171. package/lib/components/ca-confirmation-modals/components/ca-move-modal/ca-move-modal.component.ts +49 -0
  172. package/lib/components/ca-confirmation-modals/components/ca-reset-table-modal/ca-reset-table-modal.component.html +74 -0
  173. package/lib/components/ca-confirmation-modals/components/ca-reset-table-modal/ca-reset-table-modal.component.scss +0 -0
  174. package/lib/components/ca-confirmation-modals/components/ca-reset-table-modal/ca-reset-table-modal.component.ts +48 -0
  175. package/lib/components/ca-confirmation-modals/components/ca-void-modal/ca-void-modal.component.html +74 -0
  176. package/lib/components/ca-confirmation-modals/components/ca-void-modal/ca-void-modal.component.scss +0 -0
  177. package/lib/components/ca-confirmation-modals/components/ca-void-modal/ca-void-modal.component.ts +48 -0
  178. package/lib/components/ca-confirmation-modals/components/interfaces/file.interface.ts +11 -0
  179. package/lib/components/ca-confirmation-modals/components/interfaces/modal-data.interface.ts +11 -0
  180. package/lib/components/ca-confirmation-modals/interfaces/confirmation-modal-buttons.interface.ts +7 -0
  181. package/lib/components/ca-confirmation-modals/interfaces/index.ts +1 -0
  182. package/lib/components/ca-confirmation-modals/utils/constants/confirmation-modal-buttons.constants.ts +28 -0
  183. package/lib/components/ca-confirmation-modals/utils/constants/index.ts +1 -0
  184. package/lib/components/ca-contacts-card/ca-contacts-card.component.html +200 -0
  185. package/lib/components/ca-contacts-card/ca-contacts-card.component.scss +0 -0
  186. package/lib/components/ca-contacts-card/ca-contacts-card.component.spec.ts +23 -0
  187. package/lib/components/ca-contacts-card/ca-contacts-card.component.stories.ts +84 -0
  188. package/lib/components/ca-contacts-card/ca-contacts-card.component.ts +86 -0
  189. package/lib/components/ca-contacts-card/interfaces/contact-department.interface.ts +7 -0
  190. package/lib/components/ca-contacts-card/interfaces/contact.interface.ts +7 -0
  191. package/lib/components/ca-contacts-card/interfaces/index.ts +2 -0
  192. package/lib/components/ca-custom-card/ca-custom-card.component.html +164 -0
  193. package/lib/components/ca-custom-card/ca-custom-card.component.scss +187 -0
  194. package/lib/components/ca-custom-card/ca-custom-card.component.stories.ts +97 -0
  195. package/lib/components/ca-custom-card/ca-custom-card.component.ts +181 -0
  196. package/lib/components/ca-custom-card/utils/animations/card-modal.animation.ts +80 -0
  197. package/lib/components/ca-custom-card/utils/animations/index.ts +1 -0
  198. package/lib/components/ca-custom-card/utils/enums/custom-card.enum.ts +4 -0
  199. package/lib/components/ca-custom-card/utils/enums/index.ts +1 -0
  200. package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.html +158 -0
  201. package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.scss +0 -0
  202. package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.spec.ts +24 -0
  203. package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.ts +298 -0
  204. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.html +190 -0
  205. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.scss +0 -0
  206. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.spec.ts +26 -0
  207. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.ts +241 -0
  208. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.html +23 -0
  209. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.scss +0 -0
  210. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.spec.ts +26 -0
  211. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.ts +61 -0
  212. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.html +26 -0
  213. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.scss +0 -0
  214. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.spec.ts +26 -0
  215. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.ts +194 -0
  216. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.html +66 -0
  217. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.scss +0 -0
  218. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.spec.ts +26 -0
  219. package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.ts +158 -0
  220. package/lib/components/ca-custom-datetime-pickers/enums/calendar-left-string.enum.ts +5 -0
  221. package/lib/components/ca-custom-datetime-pickers/enums/calendar-list-preview-string.enum.ts +4 -0
  222. package/lib/components/ca-custom-datetime-pickers/enums/calendar-main-string.enum.ts +5 -0
  223. package/lib/components/ca-custom-datetime-pickers/enums/calendar-scroll-type-string.enum.ts +4 -0
  224. package/lib/components/ca-custom-datetime-pickers/enums/calendar-string.enum.ts +6 -0
  225. package/lib/components/ca-custom-datetime-pickers/enums/calendar-type-string.enum.ts +3 -0
  226. package/lib/components/ca-custom-datetime-pickers/models/scroll-change.model.ts +6 -0
  227. package/lib/components/ca-custom-datetime-pickers/models/scroll-type.model.ts +8 -0
  228. package/lib/components/ca-custom-datetime-pickers/pipes/calendar-months.pipe.ts +23 -0
  229. package/lib/components/ca-custom-datetime-pickers/services/calendar-datetime-picker.service.ts +35 -0
  230. package/lib/components/ca-custom-datetime-pickers/strategy/calendar-strategy.ts +120 -0
  231. package/lib/components/ca-custom-datetime-pickers/utils/constants/custom-datetime-pickers.constants.ts +48 -0
  232. package/lib/components/ca-custom-datetime-pickers-test/ca-custom-datetime-pickers-test.component.html +158 -0
  233. package/lib/components/ca-custom-datetime-pickers-test/ca-custom-datetime-pickers-test.component.scss +0 -0
  234. package/lib/components/ca-custom-datetime-pickers-test/ca-custom-datetime-pickers-test.component.spec.ts +24 -0
  235. package/lib/components/ca-custom-datetime-pickers-test/ca-custom-datetime-pickers-test.component.ts +298 -0
  236. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.html +186 -0
  237. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.scss +0 -0
  238. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.spec.ts +26 -0
  239. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.ts +226 -0
  240. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.html +22 -0
  241. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.scss +0 -0
  242. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.spec.ts +26 -0
  243. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.ts +61 -0
  244. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.html +26 -0
  245. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.scss +0 -0
  246. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.spec.ts +26 -0
  247. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.ts +194 -0
  248. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.html +66 -0
  249. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.scss +0 -0
  250. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.spec.ts +26 -0
  251. package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.ts +158 -0
  252. package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-left-string.enum.ts +5 -0
  253. package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-list-preview-string.enum.ts +4 -0
  254. package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-main-string.enum.ts +5 -0
  255. package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-scroll-type-string.enum.ts +4 -0
  256. package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-string.enum.ts +6 -0
  257. package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-type-string.enum.ts +3 -0
  258. package/lib/components/ca-custom-datetime-pickers-test/models/scroll-change.model.ts +6 -0
  259. package/lib/components/ca-custom-datetime-pickers-test/models/scroll-type.model.ts +8 -0
  260. package/lib/components/ca-custom-datetime-pickers-test/pipes/calendar-months.pipe.ts +23 -0
  261. package/lib/components/ca-custom-datetime-pickers-test/services/calendar-datetime-picker.service.ts +35 -0
  262. package/lib/components/ca-custom-datetime-pickers-test/strategy/calendar-strategy.ts +120 -0
  263. package/lib/components/ca-custom-datetime-pickers-test/utils/constants/custom-datetime-pickers.constants.ts +48 -0
  264. package/lib/components/ca-custom-horizontal-scrollbar/ca-custom-horizontal-scrollbar.component.html +20 -0
  265. package/lib/components/ca-custom-horizontal-scrollbar/ca-custom-horizontal-scrollbar.component.scss +11 -0
  266. package/lib/components/ca-custom-horizontal-scrollbar/ca-custom-horizontal-scrollbar.component.ts +23 -0
  267. package/lib/components/ca-custom-horizontal-scrollbar/directives/scrollbar-sync.directive.ts +200 -0
  268. package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.html +72 -0
  269. package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.scss +78 -0
  270. package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.spec.ts +23 -0
  271. package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.ts +278 -0
  272. package/lib/components/ca-custom-scrollbar/enums/event-type.enum.ts +6 -0
  273. package/lib/components/ca-custom-scrollbar/enums/index.ts +2 -0
  274. package/lib/components/ca-custom-scrollbar/enums/scroll-event-action.enum.ts +4 -0
  275. package/lib/components/ca-custom-scrollbar/models/index.ts +2 -0
  276. package/lib/components/ca-custom-scrollbar/models/scroll-bar-options.model.ts +6 -0
  277. package/lib/components/ca-custom-scrollbar/models/scroll-event.model.ts +8 -0
  278. package/lib/components/ca-details-dropdown/ca-details-dropdown.component.html +77 -0
  279. package/lib/components/ca-details-dropdown/ca-details-dropdown.component.scss +357 -0
  280. package/lib/components/ca-details-dropdown/ca-details-dropdown.component.ts +132 -0
  281. package/lib/components/ca-details-dropdown/models/detail-dropdown.model.ts +17 -0
  282. package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.ts +3 -0
  283. package/lib/components/ca-details-title-card/ca-details-title-card.component.html +98 -0
  284. package/lib/components/ca-details-title-card/ca-details-title-card.component.scss +153 -0
  285. package/lib/components/ca-details-title-card/ca-details-title-card.component.stories.ts +100 -0
  286. package/lib/components/ca-details-title-card/ca-details-title-card.component.ts +140 -0
  287. package/lib/components/ca-details-title-card/interfaces/ca-details-title-card-config.interface.ts +11 -0
  288. package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.html +289 -0
  289. package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.scss +334 -0
  290. package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.spec.ts +21 -0
  291. package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.stories.ts +162 -0
  292. package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.ts +287 -0
  293. package/lib/components/ca-dropdown-menu/enums/dropdown-menu-item-type.enum.ts +11 -0
  294. package/lib/components/ca-dropdown-menu/enums/dropdown-menu.enum.ts +25 -0
  295. package/lib/components/ca-dropdown-menu/enums/index.ts +2 -0
  296. package/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-item.interface.ts +22 -0
  297. package/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-option-emit.interface.ts +5 -0
  298. package/lib/components/ca-dropdown-menu/interfaces/index.ts +2 -0
  299. package/lib/components/ca-dropdown-menu/pipes/dropdown-menu-placement-class.pipe.ts +18 -0
  300. package/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.ts +20 -0
  301. package/lib/components/ca-dropdown-menu/pipes/index.ts +2 -0
  302. package/lib/components/ca-dropdown-menu/types/dropdown-menu-type.type.ts +4 -0
  303. package/lib/components/ca-dropdown-menu/types/index.ts +1 -0
  304. package/lib/components/ca-dropdown-menu/utils/constants/dropdown-menu.constants.ts +228 -0
  305. package/lib/components/ca-dropdown-menu/utils/constants/index.ts +1 -0
  306. package/lib/components/ca-dropdown-menu/utils/helpers/dropdown-menu.helper.ts +16 -0
  307. package/lib/components/ca-dropdown-menu/utils/helpers/index.ts +1 -0
  308. package/lib/components/ca-dropdown-menu/utils/svg-routes/dropdown-menu-svg-routes.ts +10 -0
  309. package/lib/components/ca-dropdown-menu/utils/svg-routes/index.ts +1 -0
  310. package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.html +365 -0
  311. package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.scss +36 -0
  312. package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.spec.ts +23 -0
  313. package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.ts +236 -0
  314. package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.stories.ts +41 -0
  315. package/lib/components/ca-factoring-dropdown/enums/factoring-form-control.enum.ts +6 -0
  316. package/lib/components/ca-factoring-dropdown/enums/factoring-pdf-format.enum.ts +4 -0
  317. package/lib/components/ca-factoring-dropdown/enums/factoring-pdf-organize.enum.ts +4 -0
  318. package/lib/components/ca-factoring-dropdown/enums/index.ts +3 -0
  319. package/lib/components/ca-factoring-dropdown/interfaces/factoring-checkbox-item.interface.ts +5 -0
  320. package/lib/components/ca-factoring-dropdown/interfaces/factoring-export-item.interface.ts +14 -0
  321. package/lib/components/ca-factoring-dropdown/interfaces/index.ts +2 -0
  322. package/lib/components/ca-factoring-dropdown/utils/constants/factoring-dropdown.constants.ts +57 -0
  323. package/lib/components/ca-factoring-dropdown/utils/constants/index.ts +1 -0
  324. package/lib/components/ca-files-count/ca-files-count.component.html +38 -0
  325. package/lib/components/ca-files-count/ca-files-count.component.scss +1 -0
  326. package/lib/components/ca-files-count/ca-files-count.component.spec.ts +23 -0
  327. package/lib/components/ca-files-count/ca-files-count.component.stories.ts +37 -0
  328. package/lib/components/ca-files-count/ca-files-count.component.ts +50 -0
  329. package/lib/components/ca-filters/ca-filter.component.html +557 -0
  330. package/lib/components/ca-filters/ca-filter.component.scss +316 -0
  331. package/lib/components/ca-filters/ca-filter.component.stories.ts +420 -0
  332. package/lib/components/ca-filters/ca-filter.component.ts +572 -0
  333. package/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.html +162 -0
  334. package/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.scss +394 -0
  335. package/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.ts +299 -0
  336. package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-broker-filter.config.ts +16 -0
  337. package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-dispatcher-filter.config.ts +16 -0
  338. package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-driver-filter.config.ts +16 -0
  339. package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-fuel-stop-filter.config.ts +16 -0
  340. package/lib/components/ca-filters/components/ca-dispatcher-filter/config/index.ts +4 -0
  341. package/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.html +126 -0
  342. package/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.scss +371 -0
  343. package/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.ts +171 -0
  344. package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.html +184 -0
  345. package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.scss +397 -0
  346. package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.ts +348 -0
  347. package/lib/components/ca-filters/components/ca-state-filter/config/ca-state-filter.config.ts +16 -0
  348. package/lib/components/ca-filters/components/ca-state-filter/config/index.ts +1 -0
  349. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.html +137 -0
  350. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.scss +212 -0
  351. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.ts +225 -0
  352. package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.html +37 -0
  353. package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.scss +122 -0
  354. package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.ts +171 -0
  355. package/lib/components/ca-filters/components/ca-time-filter-dropdown/ca-time-filter-dropdown.component.html +33 -0
  356. package/lib/components/ca-filters/components/ca-time-filter-dropdown/ca-time-filter-dropdown.component.scss +114 -0
  357. package/lib/components/ca-filters/components/ca-time-filter-dropdown/ca-time-filter-dropdown.component.ts +198 -0
  358. package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.html +127 -0
  359. package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.scss +372 -0
  360. package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.ts +242 -0
  361. package/lib/components/ca-filters/components/ca-trailer-type-filter/config/ca-trailer-type-filter.config.ts +16 -0
  362. package/lib/components/ca-filters/components/ca-trailer-type-filter/config/index.ts +1 -0
  363. package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.html +125 -0
  364. package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.scss +378 -0
  365. package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.ts +236 -0
  366. package/lib/components/ca-filters/components/ca-truck-type-filter/config/ca-truck-type-filter.config.ts +16 -0
  367. package/lib/components/ca-filters/components/ca-truck-type-filter/config/index.ts +1 -0
  368. package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.html +220 -0
  369. package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.scss +597 -0
  370. package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.ts +324 -0
  371. package/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.ts +16 -0
  372. package/lib/components/ca-filters/components/ca-user-filter/config/index.ts +1 -0
  373. package/lib/components/ca-filters/components/ca-user-filter/models/ca-user-data.model.ts +10 -0
  374. package/lib/components/ca-filters/components/ca-user-filter/models/ca-user-group.model.ts +7 -0
  375. package/lib/components/ca-filters/components/ca-user-filter/models/index.ts +2 -0
  376. package/lib/components/ca-filters/components/ca-user-filter/pipes/filter-selected-items.pipe.ts +15 -0
  377. package/lib/components/ca-filters/components/ca-user-filter/pipes/group-selection-state.pipe.ts +19 -0
  378. package/lib/components/ca-filters/components/ca-user-filter/pipes/index.ts +3 -0
  379. package/lib/components/ca-filters/components/ca-user-filter/pipes/selected-users.pipe.ts +16 -0
  380. package/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.html +22 -0
  381. package/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.scss +355 -0
  382. package/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.ts +181 -0
  383. package/lib/components/ca-filters/enums/filter-actions-string.enum.ts +6 -0
  384. package/lib/components/ca-filters/enums/index.ts +1 -0
  385. package/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.ts +81 -0
  386. package/lib/components/ca-filters/pipes/filter-conditions-set.pipe.ts +106 -0
  387. package/lib/components/ca-filters/pipes/filter-conditions-user-box.pipe.ts +39 -0
  388. package/lib/components/ca-filters/pipes/filter-popover-conditions.pipe.ts +146 -0
  389. package/lib/components/ca-filters/pipes/filter-trailer-color.pipe.ts +37 -0
  390. package/lib/components/ca-filters/pipes/filter-truck-color.pipe.ts +32 -0
  391. package/lib/components/ca-filters/pipes/index.ts +6 -0
  392. package/lib/components/ca-filters/utils/constants/directive.constants.ts +1342 -0
  393. package/lib/components/ca-filters/utils/constants/filter-config.constants.ts +44 -0
  394. package/lib/components/ca-filters/utils/constants/index.ts +2 -0
  395. package/lib/components/ca-filters/utils/constants/status-filter.constants.ts +258 -0
  396. package/lib/components/ca-filters/utils/helpers/filter.helper.ts +277 -0
  397. package/lib/components/ca-filters/utils/helpers/index.ts +2 -0
  398. package/lib/components/ca-filters/utils/helpers/time-filter.helper.ts +118 -0
  399. package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.ts +15 -0
  400. package/lib/components/ca-filters/utils/svg-routes/index.ts +1 -0
  401. package/lib/components/ca-filters/validators/range.validator.ts +23 -0
  402. package/lib/components/ca-fleet-filter/ca-fleet-filter.component.html +271 -0
  403. package/lib/components/ca-fleet-filter/ca-fleet-filter.component.scss +271 -0
  404. package/lib/components/ca-fleet-filter/ca-fleet-filter.component.spec.ts +23 -0
  405. package/lib/components/ca-fleet-filter/ca-fleet-filter.component.ts +248 -0
  406. package/lib/components/ca-fleet-filter/ca-fleet-filter.stories.ts +42 -0
  407. package/lib/components/ca-fleet-filter/enums/fleet-filter-item-type.enum.ts +4 -0
  408. package/lib/components/ca-fleet-filter/enums/index.ts +1 -0
  409. package/lib/components/ca-fleet-filter/interfaces/fleet-filter-data.interface.ts +10 -0
  410. package/lib/components/ca-fleet-filter/interfaces/fleet-filter-item-emit.interface.ts +6 -0
  411. package/lib/components/ca-fleet-filter/interfaces/fleet-filter-trailer-type.interface.ts +7 -0
  412. package/lib/components/ca-fleet-filter/interfaces/fleet-filter-trailer.interface.ts +8 -0
  413. package/lib/components/ca-fleet-filter/interfaces/fleet-filter-truck-type.interface.ts +6 -0
  414. package/lib/components/ca-fleet-filter/interfaces/fleet-filter-truck.interface.ts +8 -0
  415. package/lib/components/ca-fleet-filter/interfaces/index.ts +6 -0
  416. package/lib/components/ca-fleet-filter/utils/constants/fleet-filter.constants.ts +204 -0
  417. package/lib/components/ca-fleet-filter/utils/constants/index.ts +1 -0
  418. package/lib/components/ca-fleet-filter/utils/helpers/fleet-filter.helper.ts +56 -0
  419. package/lib/components/ca-fleet-filter/utils/helpers/index.ts +1 -0
  420. package/lib/components/ca-fleet-filter/utils/pipes/index.ts +1 -0
  421. package/lib/components/ca-fleet-filter/utils/pipes/remove-svg-extension.pipe.ts +11 -0
  422. package/lib/components/ca-fleet-filter/utils/svg-routes/fleet-filter-svg-routes.ts +7 -0
  423. package/lib/components/ca-fleet-filter/utils/svg-routes/index.ts +1 -0
  424. package/lib/components/ca-fuel-prices-range/ca-fuel-prices-range.component.html +116 -0
  425. package/lib/components/ca-fuel-prices-range/ca-fuel-prices-range.component.scss +28 -0
  426. package/lib/components/ca-fuel-prices-range/ca-fuel-prices-range.component.spec.ts +23 -0
  427. package/lib/components/ca-fuel-prices-range/ca-fuel-prices-range.component.ts +62 -0
  428. package/lib/components/ca-fuel-prices-range/interfaces/fuel-prices-range-config.interface.ts +6 -0
  429. package/lib/components/ca-fuel-prices-range/interfaces/index.ts +1 -0
  430. package/lib/components/ca-fuel-prices-range/pipes/fuel-prices-range.pipe.ts +29 -0
  431. package/lib/components/ca-fuel-prices-range/pipes/index.ts +1 -0
  432. package/lib/components/ca-fuel-prices-range/utils/constants/fuel-prices-range.constants.ts +28 -0
  433. package/lib/components/ca-fuel-prices-range/utils/constants/index.ts +1 -0
  434. package/lib/components/ca-heatmap-usa/ca-heatmap-usa.component.html +2454 -0
  435. package/lib/components/ca-heatmap-usa/ca-heatmap-usa.component.scss +25 -0
  436. package/lib/components/ca-heatmap-usa/ca-heatmap-usa.component.spec.ts +21 -0
  437. package/lib/components/ca-heatmap-usa/ca-heatmap-usa.component.ts +184 -0
  438. package/lib/components/ca-heatmap-usa/ca-heatmap-usa.stories.ts +45 -0
  439. package/lib/components/ca-heatmap-usa/constants/heatmap-usa.constants.ts +721 -0
  440. package/lib/components/ca-heatmap-usa/constants/index.ts +1 -0
  441. package/lib/components/ca-heatmap-usa/interfaces/index.ts +3 -0
  442. package/lib/components/ca-heatmap-usa/interfaces/map-list-item.interface.ts +6 -0
  443. package/lib/components/ca-heatmap-usa/interfaces/map-states.interface.ts +10 -0
  444. package/lib/components/ca-heatmap-usa/interfaces/top-list-by-state-item.interface.ts +11 -0
  445. package/lib/components/ca-icon-dropdown/ca-icon-dropdown.component.html +59 -0
  446. package/lib/components/ca-icon-dropdown/ca-icon-dropdown.component.scss +84 -0
  447. package/lib/components/ca-icon-dropdown/ca-icon-dropdown.component.spec.ts +23 -0
  448. package/lib/components/ca-icon-dropdown/ca-icon-dropdown.component.ts +118 -0
  449. package/lib/components/ca-icon-dropdown/ca-icon-dropdown.stories.ts +107 -0
  450. package/lib/components/ca-icon-dropdown/enums/index.ts +1 -0
  451. package/lib/components/ca-icon-dropdown/enums/placement.enum.ts +25 -0
  452. package/lib/components/ca-icon-dropdown/interfaces/icon-drop-down-item.interface.ts +5 -0
  453. package/lib/components/ca-icon-dropdown/interfaces/icon-dropdown-config.interface.ts +19 -0
  454. package/lib/components/ca-icon-dropdown/interfaces/index.ts +2 -0
  455. package/lib/components/ca-icon-dropdown/utils/svg-routes/icon-dropdown-svg-routes.ts +3 -0
  456. package/lib/components/ca-icon-dropdown/utils/svg-routes/index.ts +1 -0
  457. package/lib/components/ca-input/base-classes/ca-input-base-helpres.ts +343 -0
  458. package/lib/components/ca-input/base-classes/ca-input-base.ts +1394 -0
  459. package/lib/components/ca-input/base-classes/ca-input-event-manager.ts +32 -0
  460. package/lib/components/ca-input/ca-input.component.html +640 -0
  461. package/lib/components/ca-input/ca-input.component.scss +413 -0
  462. package/lib/components/ca-input/ca-input.component.ts +311 -0
  463. package/lib/components/ca-input/ca-input.stories.ts +416 -0
  464. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.html +33 -0
  465. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.scss +0 -0
  466. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.spec.ts +26 -0
  467. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.ts +75 -0
  468. package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.html +85 -0
  469. package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.scss +0 -0
  470. package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.spec.ts +26 -0
  471. package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.ts +46 -0
  472. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.html +38 -0
  473. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.scss +0 -0
  474. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.spec.ts +25 -0
  475. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.ts +58 -0
  476. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.html +50 -0
  477. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.scss +0 -0
  478. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.spec.ts +25 -0
  479. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.ts +79 -0
  480. package/lib/components/ca-input/config/ca-input.config.ts +192 -0
  481. package/lib/components/ca-input/config/index.ts +1 -0
  482. package/lib/components/ca-input/custom-validators/email-custom.validator.ts +9 -0
  483. package/lib/components/ca-input/custom-validators/url-custom.validator.ts +9 -0
  484. package/lib/components/ca-input/directives/caps-lock.directive.ts +44 -0
  485. package/lib/components/ca-input/directives/command-visible.directive.ts +44 -0
  486. package/lib/components/ca-input/directives/index.ts +5 -0
  487. package/lib/components/ca-input/directives/input-max-value.directive.ts +48 -0
  488. package/lib/components/ca-input/directives/min-max-value.directive.ts +37 -0
  489. package/lib/components/ca-input/directives/price_format.directive.ts +35 -0
  490. package/lib/components/ca-input/directives/restrict-input.directive.ts +129 -0
  491. package/lib/components/ca-input/enums/index.ts +4 -0
  492. package/lib/components/ca-input/enums/input-commands-action.enum.ts +9 -0
  493. package/lib/components/ca-input/enums/input-commands-type.enum.ts +7 -0
  494. package/lib/components/ca-input/enums/input-config-name-string.enum.ts +7 -0
  495. package/lib/components/ca-input/enums/input-string.enum.ts +115 -0
  496. package/lib/components/ca-input/enums/input-text-transform.enum.ts +6 -0
  497. package/lib/components/ca-input/mixins/input-command.mixin.ts +158 -0
  498. package/lib/components/ca-input/mixins/input-helper.mixin.ts +61 -0
  499. package/lib/components/ca-input/mixins/input.mixin.ts +19 -0
  500. package/lib/components/ca-input/mixins/restriction-pipe.mixin.ts +54 -0
  501. package/lib/components/ca-input/models/base.model.ts +24 -0
  502. package/lib/components/ca-input/models/command-click.model.ts +5 -0
  503. package/lib/components/ca-input/models/commands-event.model.ts +5 -0
  504. package/lib/components/ca-input/models/index.ts +3 -0
  505. package/lib/components/ca-input/models/label-color.model.ts +11 -0
  506. package/lib/components/ca-input/pipes/color-finder.pipe.ts +55 -0
  507. package/lib/components/ca-input/pipes/form-control.pipe.ts +12 -0
  508. package/lib/components/ca-input/pipes/index.ts +19 -0
  509. package/lib/components/ca-input/pipes/input-class.pipe.ts +197 -0
  510. package/lib/components/ca-input/pipes/input-clear-class.pipe.ts +104 -0
  511. package/lib/components/ca-input/pipes/input-container-class.pipe.ts +70 -0
  512. package/lib/components/ca-input/pipes/input-datetime-picker-class.pipe.ts +98 -0
  513. package/lib/components/ca-input/pipes/input-dropdown-arrow-class.pipe.ts +68 -0
  514. package/lib/components/ca-input/pipes/input-error.pipe.ts +78 -0
  515. package/lib/components/ca-input/pipes/input-password-eye-class.pipe.ts +43 -0
  516. package/lib/components/ca-input/pipes/input-pattern.pipe.ts +308 -0
  517. package/lib/components/ca-input/pipes/input-placeholder-icon-right.pipe.ts +54 -0
  518. package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.ts +69 -0
  519. package/lib/components/ca-input/pipes/input-placeholder-text-class.pipe.ts +52 -0
  520. package/lib/components/ca-input/pipes/input-type.pipe.ts +18 -0
  521. package/lib/components/ca-input/pipes/label-class.pipe.ts +46 -0
  522. package/lib/components/ca-input/pipes/show-clear.pipe.ts +19 -0
  523. package/lib/components/ca-input/pipes/show-dropdown-arrow.pipe.ts +23 -0
  524. package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.ts +31 -0
  525. package/lib/components/ca-input/pipes/show-placeholder-text.pipe.ts +27 -0
  526. package/lib/components/ca-input/pipes/show-valid-check.pipe.ts +30 -0
  527. package/lib/components/ca-input/scss/ca-dropdown-input-image.scss +109 -0
  528. package/lib/components/ca-input/scss/ca-input.clear.scss +360 -0
  529. package/lib/components/ca-input/scss/ca-input.colors.scss +287 -0
  530. package/lib/components/ca-input/scss/ca-input.commands.scss +187 -0
  531. package/lib/components/ca-input/scss/ca-input.dangermark.scss +17 -0
  532. package/lib/components/ca-input/scss/ca-input.datepicker.scss +153 -0
  533. package/lib/components/ca-input/scss/ca-input.dropdown.scss +124 -0
  534. package/lib/components/ca-input/scss/ca-input.editlabel.scss +42 -0
  535. package/lib/components/ca-input/scss/ca-input.error.scss +34 -0
  536. package/lib/components/ca-input/scss/ca-input.input.scss +838 -0
  537. package/lib/components/ca-input/scss/ca-input.label.scss +281 -0
  538. package/lib/components/ca-input/scss/ca-input.labelcounter.scss +21 -0
  539. package/lib/components/ca-input/scss/ca-input.passwordcapslock.scss +17 -0
  540. package/lib/components/ca-input/scss/ca-input.passwordeye.scss +138 -0
  541. package/lib/components/ca-input/scss/ca-input.placeholderText.scss +82 -0
  542. package/lib/components/ca-input/scss/ca-input.placeholdericon-rightside.scss +90 -0
  543. package/lib/components/ca-input/scss/ca-input.placeholdericon.scss +188 -0
  544. package/lib/components/ca-input/scss/ca-input.requiredcheck.scss +19 -0
  545. package/lib/components/ca-input/scss/ca-input.spinner.scss +5 -0
  546. package/lib/components/ca-input/services/ca-input-validation.service.ts +246 -0
  547. package/lib/components/ca-input/services/index.ts +1 -0
  548. package/lib/components/ca-input/utils/constants/index.ts +1 -0
  549. package/lib/components/ca-input/utils/constants/input-constants.ts +129 -0
  550. package/lib/components/ca-input/utils/index.ts +2 -0
  551. package/lib/components/ca-input/utils/input-change-value.type.ts +1 -0
  552. package/lib/components/ca-input/utils/input-svg-routes.ts +26 -0
  553. package/lib/components/ca-input/versions/datetime/datetimepicker.directive.spec.ts +8 -0
  554. package/lib/components/ca-input/versions/datetime/datetimepicker.directive.ts +9 -0
  555. package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.html +77 -0
  556. package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.scss +134 -0
  557. package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.ts +517 -0
  558. package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.stories.ts +290 -0
  559. package/lib/components/ca-input-address-dropdown/enums/input-address-basic-string.enum.ts +4 -0
  560. package/lib/components/ca-input-address-dropdown/enums/input-address-commands-string.enum.ts +6 -0
  561. package/lib/components/ca-input-address-dropdown/enums/input-address-layers-string.enum.ts +4 -0
  562. package/lib/components/ca-input-address-dropdown/enums/input-address-stop-types-string.enum.ts +4 -0
  563. package/lib/components/ca-input-address-dropdown/enums/input-address-type-string.enum.ts +5 -0
  564. package/lib/components/ca-input-address-dropdown/models/address-data.model.ts +14 -0
  565. package/lib/components/ca-input-address-dropdown/models/address-list.model.ts +6 -0
  566. package/lib/components/ca-input-address-dropdown/models/command-properties.model.ts +7 -0
  567. package/lib/components/ca-input-address-dropdown/models/commands-handler.model.ts +8 -0
  568. package/lib/components/ca-input-address-dropdown/models/index.ts +7 -0
  569. package/lib/components/ca-input-address-dropdown/models/input-address-commands-string.model.ts +5 -0
  570. package/lib/components/ca-input-address-dropdown/models/long-lat.model.ts +4 -0
  571. package/lib/components/ca-input-address-dropdown/models/sent-address-data.model.ts +7 -0
  572. package/lib/components/ca-input-address-dropdown/validators/ca-input-address.regex-validations.ts +12 -0
  573. package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.html +79 -0
  574. package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.scss +134 -0
  575. package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.ts +447 -0
  576. package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.stories.ts +183 -0
  577. package/lib/components/ca-input-address-dropdown-test/enums/input-address-basic-string.enum.ts +4 -0
  578. package/lib/components/ca-input-address-dropdown-test/enums/input-address-commands-string.enum.ts +6 -0
  579. package/lib/components/ca-input-address-dropdown-test/enums/input-address-layers-string.enum.ts +4 -0
  580. package/lib/components/ca-input-address-dropdown-test/enums/input-address-stop-types-string.enum.ts +4 -0
  581. package/lib/components/ca-input-address-dropdown-test/enums/input-address-type-string.enum.ts +5 -0
  582. package/lib/components/ca-input-address-dropdown-test/models/address-data.model.ts +13 -0
  583. package/lib/components/ca-input-address-dropdown-test/models/address-list.model.ts +5 -0
  584. package/lib/components/ca-input-address-dropdown-test/models/command-properties.model.ts +7 -0
  585. package/lib/components/ca-input-address-dropdown-test/models/commands-handler.model.ts +8 -0
  586. package/lib/components/ca-input-address-dropdown-test/models/input-address-commands-string.model.ts +5 -0
  587. package/lib/components/ca-input-address-dropdown-test/models/long-lat.model.ts +4 -0
  588. package/lib/components/ca-input-address-dropdown-test/models/sent-address-data.model.ts +7 -0
  589. package/lib/components/ca-input-address-dropdown-test/validators/ca-input-address-value.validations.ts +14 -0
  590. package/lib/components/ca-input-address-dropdown-test/validators/ca-input-address.regex-validations.ts +12 -0
  591. package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.html +106 -0
  592. package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.scss +138 -0
  593. package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.ts +1193 -0
  594. package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.stories.ts +231 -0
  595. package/lib/components/ca-input-dropdown/animations/index.ts +1 -0
  596. package/lib/components/ca-input-dropdown/animations/input-dropdown.animation.ts +24 -0
  597. package/lib/components/ca-input-dropdown/ca-input-dropdown.component.html +397 -0
  598. package/lib/components/ca-input-dropdown/ca-input-dropdown.component.scss +240 -0
  599. package/lib/components/ca-input-dropdown/ca-input-dropdown.component.ts +1468 -0
  600. package/lib/components/ca-input-dropdown/ca-input-dropdown.stories.ts +150 -0
  601. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.html +23 -0
  602. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.scss +0 -0
  603. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.ts +45 -0
  604. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.html +119 -0
  605. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.scss +0 -0
  606. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.ts +56 -0
  607. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.html +31 -0
  608. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.scss +0 -0
  609. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.ts +44 -0
  610. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.html +56 -0
  611. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.scss +0 -0
  612. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.ts +46 -0
  613. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.html +86 -0
  614. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.scss +0 -0
  615. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.ts +61 -0
  616. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.html +41 -0
  617. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.scss +0 -0
  618. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.ts +41 -0
  619. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.html +65 -0
  620. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.scss +0 -0
  621. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.ts +57 -0
  622. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.html +58 -0
  623. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.scss +0 -0
  624. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.ts +48 -0
  625. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.html +69 -0
  626. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.scss +0 -0
  627. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.ts +41 -0
  628. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.html +53 -0
  629. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.scss +0 -0
  630. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.ts +41 -0
  631. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.html +54 -0
  632. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.scss +0 -0
  633. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.ts +46 -0
  634. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.html +178 -0
  635. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.scss +0 -0
  636. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.ts +51 -0
  637. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.html +23 -0
  638. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.scss +0 -0
  639. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.ts +41 -0
  640. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-parking/ca-input-dropdown-parking.component.html +40 -0
  641. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-parking/ca-input-dropdown-parking.component.scss +0 -0
  642. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-parking/ca-input-dropdown-parking.component.ts +58 -0
  643. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.html +84 -0
  644. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.scss +0 -0
  645. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.ts +48 -0
  646. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.html +36 -0
  647. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.scss +0 -0
  648. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.ts +41 -0
  649. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.html +113 -0
  650. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.scss +0 -0
  651. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.ts +58 -0
  652. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.html +103 -0
  653. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.scss +0 -0
  654. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.ts +68 -0
  655. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.html +34 -0
  656. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.scss +0 -0
  657. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.ts +40 -0
  658. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.html +60 -0
  659. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.scss +0 -0
  660. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.ts +46 -0
  661. package/lib/components/ca-input-dropdown/enums/dropdown-string.enum.ts +4 -0
  662. package/lib/components/ca-input-dropdown/enums/dropdown-template-type.enum.ts +22 -0
  663. package/lib/components/ca-input-dropdown/enums/index.ts +2 -0
  664. package/lib/components/ca-input-dropdown/models/index.ts +3 -0
  665. package/lib/components/ca-input-dropdown/models/input-dropdown-option.model.ts +98 -0
  666. package/lib/components/ca-input-dropdown/models/load-modal-status.model.ts +5 -0
  667. package/lib/components/ca-input-dropdown/models/status-order.model.ts +4 -0
  668. package/lib/components/ca-input-dropdown/pipes/dropdown-count.pipe.ts +22 -0
  669. package/lib/components/ca-input-dropdown/pipes/index.ts +8 -0
  670. package/lib/components/ca-input-dropdown/pipes/input-dropdown-default-template-class.pipe.ts +30 -0
  671. package/lib/components/ca-input-dropdown/pipes/input-dropdown-fuel-franchise-class.pipe.ts +20 -0
  672. package/lib/components/ca-input-dropdown/pipes/input-dropdown-label-class.pipe.ts +32 -0
  673. package/lib/components/ca-input-dropdown/pipes/input-dropdown-load-broker-container.pipe.ts +27 -0
  674. package/lib/components/ca-input-dropdown/pipes/input-dropdown-multiselect-class.pipe.ts +26 -0
  675. package/lib/components/ca-input-dropdown/pipes/input-dropdown-svgtext-template-container.pipe.ts +27 -0
  676. package/lib/components/ca-input-dropdown/pipes/input-dropdown-svgtext-template-icon.pipe.ts +24 -0
  677. package/lib/components/ca-input-dropdown/utils/constants/index.ts +1 -0
  678. package/lib/components/ca-input-dropdown/utils/constants/input-dropdown.constants.ts +206 -0
  679. package/lib/components/ca-input-dropdown/utils/svg-routes/index.ts +1 -0
  680. package/lib/components/ca-input-dropdown/utils/svg-routes/input-dropdown-svg-routes.ts +13 -0
  681. package/lib/components/ca-input-dropdown-test/animations/index.ts +1 -0
  682. package/lib/components/ca-input-dropdown-test/animations/input-dropdown.animation.ts +24 -0
  683. package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.html +835 -0
  684. package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.scss +276 -0
  685. package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.ts +897 -0
  686. package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.stories.ts +837 -0
  687. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.html +26 -0
  688. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.scss +0 -0
  689. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.ts +66 -0
  690. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.html +136 -0
  691. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.scss +0 -0
  692. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.ts +77 -0
  693. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.html +32 -0
  694. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.scss +0 -0
  695. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.ts +67 -0
  696. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.html +58 -0
  697. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.scss +0 -0
  698. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.ts +69 -0
  699. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.html +77 -0
  700. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.scss +0 -0
  701. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.ts +83 -0
  702. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.html +42 -0
  703. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.scss +0 -0
  704. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.ts +64 -0
  705. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.html +63 -0
  706. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.scss +0 -0
  707. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.ts +73 -0
  708. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.html +49 -0
  709. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.scss +0 -0
  710. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.ts +33 -0
  711. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.html +17 -0
  712. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.scss +0 -0
  713. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.ts +74 -0
  714. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.html +37 -0
  715. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.scss +5 -0
  716. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.spec.ts +23 -0
  717. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.ts +26 -0
  718. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.html +47 -0
  719. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.scss +0 -0
  720. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.ts +68 -0
  721. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.html +56 -0
  722. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.scss +0 -0
  723. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.ts +27 -0
  724. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.html +22 -0
  725. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.scss +3 -0
  726. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.ts +66 -0
  727. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.html +40 -0
  728. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.scss +0 -0
  729. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.ts +39 -0
  730. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.html +32 -0
  731. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.scss +0 -0
  732. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.ts +68 -0
  733. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.html +166 -0
  734. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.scss +0 -0
  735. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.ts +38 -0
  736. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.html +24 -0
  737. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.scss +0 -0
  738. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.ts +73 -0
  739. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.html +24 -0
  740. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.scss +0 -0
  741. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.ts +64 -0
  742. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.html +87 -0
  743. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.scss +0 -0
  744. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.ts +68 -0
  745. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.html +38 -0
  746. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.scss +0 -0
  747. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.ts +68 -0
  748. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.html +123 -0
  749. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.scss +0 -0
  750. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.ts +80 -0
  751. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.css +0 -0
  752. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.html +105 -0
  753. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.spec.ts +23 -0
  754. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.ts +55 -0
  755. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.html +19 -0
  756. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.scss +0 -0
  757. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.ts +91 -0
  758. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.html +38 -0
  759. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.scss +0 -0
  760. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.ts +63 -0
  761. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.html +63 -0
  762. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.scss +0 -0
  763. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.ts +61 -0
  764. package/lib/components/ca-input-dropdown-test/enums/dropdown-string.enum.ts +4 -0
  765. package/lib/components/ca-input-dropdown-test/enums/dropdown-template-type.enum.ts +21 -0
  766. package/lib/components/ca-input-dropdown-test/enums/index.ts +2 -0
  767. package/lib/components/ca-input-dropdown-test/interfaces/index.ts +1 -0
  768. package/lib/components/ca-input-dropdown-test/interfaces/input-dropdown-option.interface.ts +103 -0
  769. package/lib/components/ca-input-dropdown-test/interfaces/selected-status.interface.ts +5 -0
  770. package/lib/components/ca-input-dropdown-test/interfaces/status-order.interface.ts +4 -0
  771. package/lib/components/ca-input-dropdown-test/pipes/dropdown-count.pipe.ts +25 -0
  772. package/lib/components/ca-input-dropdown-test/pipes/dropdown-options.pipe.ts +107 -0
  773. package/lib/components/ca-input-dropdown-test/pipes/index.ts +9 -0
  774. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-default-template-class.pipe.ts +38 -0
  775. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-fuel-franchise-class.pipe.ts +22 -0
  776. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-get-icon.pipe.ts +28 -0
  777. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-label-class.pipe.ts +37 -0
  778. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-load-broker-container.pipe.ts +28 -0
  779. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-multiselect-class.pipe.ts +31 -0
  780. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-container.pipe.ts +29 -0
  781. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-icon.pipe.ts +28 -0
  782. package/lib/components/ca-input-dropdown-test/types/index.ts +1 -0
  783. package/lib/components/ca-input-dropdown-test/types/input-dropdown-forms.type.ts +9 -0
  784. package/lib/components/ca-input-dropdown-test/types/select-dropdown-value.type.ts +8 -0
  785. package/lib/components/ca-input-dropdown-test/utils/constants/index.ts +1 -0
  786. package/lib/components/ca-input-dropdown-test/utils/constants/input-dropdown.constants.ts +2948 -0
  787. package/lib/components/ca-input-dropdown-test/utils/svg-routes/index.ts +1 -0
  788. package/lib/components/ca-input-dropdown-test/utils/svg-routes/input-dropdown-svg-routes.ts +13 -0
  789. package/lib/components/ca-input-dropdown-test/validators/dropdown-empty-value.validator.ts +11 -0
  790. package/lib/components/ca-input-dropdown-test/validators/index.ts +1 -0
  791. package/lib/components/ca-input-note/ca-input-note.component.html +91 -0
  792. package/lib/components/ca-input-note/ca-input-note.component.scss +171 -0
  793. package/lib/components/ca-input-note/ca-input-note.component.spec.ts +24 -0
  794. package/lib/components/ca-input-note/ca-input-note.component.ts +229 -0
  795. package/lib/components/ca-input-note/ca-input-note.stories.ts +64 -0
  796. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.html +28 -0
  797. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.scss +97 -0
  798. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.spec.ts +24 -0
  799. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.ts +43 -0
  800. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.stories.ts +84 -0
  801. package/lib/components/ca-input-test/base-classes/ca-input-base-helpres.ts +343 -0
  802. package/lib/components/ca-input-test/base-classes/ca-input-base.ts +1394 -0
  803. package/lib/components/ca-input-test/base-classes/ca-input-event-manager.ts +32 -0
  804. package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.html +33 -0
  805. package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.scss +0 -0
  806. package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.spec.ts +26 -0
  807. package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.ts +75 -0
  808. package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.html +85 -0
  809. package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.scss +0 -0
  810. package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.spec.ts +26 -0
  811. package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.ts +46 -0
  812. package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.html +38 -0
  813. package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.scss +0 -0
  814. package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.spec.ts +25 -0
  815. package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.ts +58 -0
  816. package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.html +56 -0
  817. package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.scss +0 -0
  818. package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.spec.ts +25 -0
  819. package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.ts +79 -0
  820. package/lib/components/ca-input-test/config/ca-input.config.ts +196 -0
  821. package/lib/components/ca-input-test/config/index.ts +1 -0
  822. package/lib/components/ca-input-test/custom-validators/email-custom.validator.ts +9 -0
  823. package/lib/components/ca-input-test/custom-validators/url-custom.validator.ts +9 -0
  824. package/lib/components/ca-input-test/directives/caps-lock.directive.ts +44 -0
  825. package/lib/components/ca-input-test/directives/command-visible.directive.ts +44 -0
  826. package/lib/components/ca-input-test/directives/index.ts +5 -0
  827. package/lib/components/ca-input-test/directives/input-max-value.directive.ts +48 -0
  828. package/lib/components/ca-input-test/directives/min-max-value.directive.ts +37 -0
  829. package/lib/components/ca-input-test/directives/price_format.directive.ts +35 -0
  830. package/lib/components/ca-input-test/directives/restrict-input.directive.ts +134 -0
  831. package/lib/components/ca-input-test/enums/index.ts +4 -0
  832. package/lib/components/ca-input-test/enums/input-commands-action.enum.ts +9 -0
  833. package/lib/components/ca-input-test/enums/input-commands-type.enum.ts +7 -0
  834. package/lib/components/ca-input-test/enums/input-config-name-string.enum.ts +7 -0
  835. package/lib/components/ca-input-test/enums/input-string.enum.ts +115 -0
  836. package/lib/components/ca-input-test/enums/input-text-transform.enum.ts +6 -0
  837. package/lib/components/ca-input-test/input-test.component.html +352 -0
  838. package/lib/components/ca-input-test/input-test.component.scss +413 -0
  839. package/lib/components/ca-input-test/input-test.component.spec.ts +23 -0
  840. package/lib/components/ca-input-test/input-test.component.ts +401 -0
  841. package/lib/components/ca-input-test/input-test.stories.ts +838 -0
  842. package/lib/components/ca-input-test/mixins/input-command.mixin.ts +159 -0
  843. package/lib/components/ca-input-test/mixins/input-helper.mixin.ts +61 -0
  844. package/lib/components/ca-input-test/mixins/input.mixin.ts +19 -0
  845. package/lib/components/ca-input-test/mixins/restriction-pipe.mixin.ts +54 -0
  846. package/lib/components/ca-input-test/models/base.model.ts +24 -0
  847. package/lib/components/ca-input-test/models/command-click.model.ts +5 -0
  848. package/lib/components/ca-input-test/models/commands-event.model.ts +5 -0
  849. package/lib/components/ca-input-test/models/index.ts +3 -0
  850. package/lib/components/ca-input-test/models/label-color.model.ts +11 -0
  851. package/lib/components/ca-input-test/pipes/color-finder.pipe.ts +55 -0
  852. package/lib/components/ca-input-test/pipes/form-control.pipe.ts +12 -0
  853. package/lib/components/ca-input-test/pipes/index.ts +19 -0
  854. package/lib/components/ca-input-test/pipes/input-class.pipe.ts +195 -0
  855. package/lib/components/ca-input-test/pipes/input-clear-class.pipe.ts +104 -0
  856. package/lib/components/ca-input-test/pipes/input-container-class.pipe.ts +68 -0
  857. package/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.ts +90 -0
  858. package/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.ts +68 -0
  859. package/lib/components/ca-input-test/pipes/input-error.pipe.ts +72 -0
  860. package/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.ts +43 -0
  861. package/lib/components/ca-input-test/pipes/input-pattern.pipe.ts +308 -0
  862. package/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.ts +56 -0
  863. package/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.ts +69 -0
  864. package/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.ts +53 -0
  865. package/lib/components/ca-input-test/pipes/input-type.pipe.ts +18 -0
  866. package/lib/components/ca-input-test/pipes/label-class.pipe.ts +54 -0
  867. package/lib/components/ca-input-test/pipes/show-clear.pipe.ts +20 -0
  868. package/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.ts +24 -0
  869. package/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.ts +31 -0
  870. package/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.ts +27 -0
  871. package/lib/components/ca-input-test/pipes/show-valid-check.pipe.ts +31 -0
  872. package/lib/components/ca-input-test/scss/ca-dropdown-input-image.scss +109 -0
  873. package/lib/components/ca-input-test/scss/ca-input.clear.scss +360 -0
  874. package/lib/components/ca-input-test/scss/ca-input.colors.scss +287 -0
  875. package/lib/components/ca-input-test/scss/ca-input.commands.scss +187 -0
  876. package/lib/components/ca-input-test/scss/ca-input.dangermark.scss +17 -0
  877. package/lib/components/ca-input-test/scss/ca-input.datepicker.scss +153 -0
  878. package/lib/components/ca-input-test/scss/ca-input.dropdown.scss +124 -0
  879. package/lib/components/ca-input-test/scss/ca-input.editlabel.scss +42 -0
  880. package/lib/components/ca-input-test/scss/ca-input.error.scss +34 -0
  881. package/lib/components/ca-input-test/scss/ca-input.input.scss +837 -0
  882. package/lib/components/ca-input-test/scss/ca-input.label.scss +281 -0
  883. package/lib/components/ca-input-test/scss/ca-input.labelcounter.scss +21 -0
  884. package/lib/components/ca-input-test/scss/ca-input.passwordcapslock.scss +17 -0
  885. package/lib/components/ca-input-test/scss/ca-input.passwordeye.scss +138 -0
  886. package/lib/components/ca-input-test/scss/ca-input.placeholderText.scss +82 -0
  887. package/lib/components/ca-input-test/scss/ca-input.placeholdericon-rightside.scss +89 -0
  888. package/lib/components/ca-input-test/scss/ca-input.placeholdericon.scss +195 -0
  889. package/lib/components/ca-input-test/scss/ca-input.requiredcheck.scss +19 -0
  890. package/lib/components/ca-input-test/scss/ca-input.spinner.scss +5 -0
  891. package/lib/components/ca-input-test/services/ca-input-validation.service.ts +246 -0
  892. package/lib/components/ca-input-test/services/index.ts +1 -0
  893. package/lib/components/ca-input-test/utils/constants/index.ts +1 -0
  894. package/lib/components/ca-input-test/utils/constants/input-constants.ts +129 -0
  895. package/lib/components/ca-input-test/utils/index.ts +2 -0
  896. package/lib/components/ca-input-test/utils/input-change-value.type.ts +1 -0
  897. package/lib/components/ca-input-test/utils/input-svg-routes.ts +26 -0
  898. package/lib/components/ca-input-test/versions/datetime/datetimepicker.directive.spec.ts +8 -0
  899. package/lib/components/ca-input-test/versions/datetime/datetimepicker.directive.ts +9 -0
  900. package/lib/components/ca-items-dropdown/ca-items-dropdown.component.html +202 -0
  901. package/lib/components/ca-items-dropdown/ca-items-dropdown.component.scss +27 -0
  902. package/lib/components/ca-items-dropdown/ca-items-dropdown.component.spec.ts +23 -0
  903. package/lib/components/ca-items-dropdown/ca-items-dropdown.component.ts +102 -0
  904. package/lib/components/ca-items-dropdown/interfaces/index.ts +2 -0
  905. package/lib/components/ca-items-dropdown/interfaces/items-dropdown-config.interface.ts +7 -0
  906. package/lib/components/ca-items-dropdown/interfaces/items-dropdown-list.interface.ts +11 -0
  907. package/lib/components/ca-items-dropdown/pipes/dropdown-width.pipe.ts +13 -0
  908. package/lib/components/ca-items-dropdown/pipes/index.ts +2 -0
  909. package/lib/components/ca-items-dropdown/pipes/pm-item.pipe.ts +22 -0
  910. package/lib/components/ca-items-dropdown/utils/helpers/index.ts +1 -0
  911. package/lib/components/ca-items-dropdown/utils/helpers/items-dropdown.helper.ts +10 -0
  912. package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.html +111 -0
  913. package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.scss +127 -0
  914. package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.spec.ts +23 -0
  915. package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.stories.ts +71 -0
  916. package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.ts +123 -0
  917. package/lib/components/ca-last-fuel-price-progress/enums/index.ts +1 -0
  918. package/lib/components/ca-last-fuel-price-progress/enums/last-fuel-price-progress.enum.ts +4 -0
  919. package/lib/components/ca-last-fuel-price-progress/interfaces/index.ts +2 -0
  920. package/lib/components/ca-last-fuel-price-progress/interfaces/last-fuel-price-progress-config.interface.ts +10 -0
  921. package/lib/components/ca-last-fuel-price-progress/interfaces/last-fuel-price-progress-data.interface.ts +12 -0
  922. package/lib/components/ca-last-fuel-price-progress/utils/constants/index.ts +1 -0
  923. package/lib/components/ca-last-fuel-price-progress/utils/constants/last-fuel-price-progress.constants.ts +9 -0
  924. package/lib/components/ca-last-fuel-price-progress/utils/helpers/index.ts +1 -0
  925. package/lib/components/ca-last-fuel-price-progress/utils/helpers/last-fuel-price-progress.helper.ts +100 -0
  926. package/lib/components/ca-last-fuel-price-progress/utils/svg-routes/index.ts +1 -0
  927. package/lib/components/ca-last-fuel-price-progress/utils/svg-routes/last-fuel-price-progress-svg-routes.ts +4 -0
  928. package/lib/components/ca-load-modal-progress-bar/ca-load-modal-progress-bar.component.html +14 -0
  929. package/lib/components/ca-load-modal-progress-bar/ca-load-modal-progress-bar.component.scss +39 -0
  930. package/lib/components/ca-load-modal-progress-bar/ca-load-modal-progress-bar.component.ts +79 -0
  931. package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.html +383 -0
  932. package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.scss +60 -0
  933. package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.spec.ts +21 -0
  934. package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.ts +163 -0
  935. package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.stories.ts +740 -0
  936. package/lib/components/ca-load-pickup-delivery/interfaces/index.ts +1 -0
  937. package/lib/components/ca-load-pickup-delivery/interfaces/load-pickup-delivery.interface.ts +74 -0
  938. package/lib/components/ca-load-pickup-delivery/types/index.ts +1 -0
  939. package/lib/components/ca-load-pickup-delivery/types/load-type.type.ts +7 -0
  940. package/lib/components/ca-load-status/ca-load-status.component.html +90 -0
  941. package/lib/components/ca-load-status/ca-load-status.component.scss +323 -0
  942. package/lib/components/ca-load-status/ca-load-status.component.ts +92 -0
  943. package/lib/components/ca-load-status/ca-load-status.stories.ts +318 -0
  944. package/lib/components/ca-load-status/constants/load-status.constants.ts +18 -0
  945. package/lib/components/ca-load-status/enums/load-status-background-colors.enum.ts +17 -0
  946. package/lib/components/ca-load-status/enums/load-status-icon-colors.enum.ts +13 -0
  947. package/lib/components/ca-load-status/enums/load-status-svg-colors.enum.ts +13 -0
  948. package/lib/components/ca-load-status/pipes/status-text.pipe.ts +73 -0
  949. package/lib/components/ca-load-status-log/ca-load-status-log.component.html +100 -0
  950. package/lib/components/ca-load-status-log/ca-load-status-log.component.scss +20 -0
  951. package/lib/components/ca-load-status-log/ca-load-status-log.component.stories.ts +71 -0
  952. package/lib/components/ca-load-status-log/ca-load-status-log.component.ts +60 -0
  953. package/lib/components/ca-load-status-string/ca-load-status-string.component.html +62 -0
  954. package/lib/components/ca-load-status-string/ca-load-status-string.component.scss +97 -0
  955. package/lib/components/ca-load-status-string/ca-load-status-string.component.ts +53 -0
  956. package/lib/components/ca-load-status-string/pipes/index.ts +1 -0
  957. package/lib/components/ca-load-status-string/pipes/load-status-string-class.pipe.ts +31 -0
  958. package/lib/components/ca-logo-change/ca-logo-change.component.html +71 -0
  959. package/lib/components/ca-logo-change/ca-logo-change.component.scss +182 -0
  960. package/lib/components/ca-logo-change/ca-logo-change.component.stories.ts +59 -0
  961. package/lib/components/ca-logo-change/ca-logo-change.component.ts +150 -0
  962. package/lib/components/ca-logo-change/enums/index.ts +1 -0
  963. package/lib/components/ca-logo-change/enums/logo-change.enum.ts +8 -0
  964. package/lib/components/ca-logo-change/pipes/index.ts +1 -0
  965. package/lib/components/ca-logo-change/pipes/logo-slider.pipe.ts +11 -0
  966. package/lib/components/ca-logo-change/utils/constants/index.ts +1 -0
  967. package/lib/components/ca-logo-change/utils/constants/logo-change.constants.ts +20 -0
  968. package/lib/components/ca-main-table/ca-main-table.component.html +220 -0
  969. package/lib/components/ca-main-table/ca-main-table.component.scss +298 -0
  970. package/lib/components/ca-main-table/ca-main-table.component.spec.ts +23 -0
  971. package/lib/components/ca-main-table/ca-main-table.component.ts +131 -0
  972. package/lib/components/ca-main-table/ca-main-table.stories.ts +187 -0
  973. package/lib/components/ca-main-table/models/main-table.model.ts +24 -0
  974. package/lib/components/ca-main-table/pipes/ca-main-table-hidden-rows/ca-main-table-hidden-rows.pipe.spec.ts +8 -0
  975. package/lib/components/ca-main-table/pipes/ca-main-table-hidden-rows/ca-main-table-hidden-rows.pipe.ts +18 -0
  976. package/lib/components/ca-map/ca-map.component.html +190 -0
  977. package/lib/components/ca-map/ca-map.component.scss +451 -0
  978. package/lib/components/ca-map/ca-map.component.ts +825 -0
  979. package/lib/components/ca-map/ca-map.stories.ts +1594 -0
  980. package/lib/components/ca-map/enums/google-map.enum.ts +6 -0
  981. package/lib/components/ca-map/enums/index.ts +4 -0
  982. package/lib/components/ca-map/enums/map-marker-stop-type.enum.ts +13 -0
  983. package/lib/components/ca-map/enums/map-marker-string.enum.ts +27 -0
  984. package/lib/components/ca-map/enums/toolbar-filter-string.enum.ts +129 -0
  985. package/lib/components/ca-map/models/index.ts +1 -0
  986. package/lib/components/ca-map/models/map.model.ts +166 -0
  987. package/lib/components/ca-map/utils/constants/index.ts +4 -0
  988. package/lib/components/ca-map/utils/constants/map-info-window-options.constants.ts +6 -0
  989. package/lib/components/ca-map/utils/constants/map-marker-icons.constants.ts +121 -0
  990. package/lib/components/ca-map/utils/constants/map-options.constants.ts +178 -0
  991. package/lib/components/ca-map/utils/constants/map.constants.ts +437 -0
  992. package/lib/components/ca-map/utils/helpers/index.ts +2 -0
  993. package/lib/components/ca-map/utils/helpers/map-marker-icon.helper.ts +776 -0
  994. package/lib/components/ca-map/utils/helpers/map.helper.ts +192 -0
  995. package/lib/components/ca-map/utils/services/index.ts +1 -0
  996. package/lib/components/ca-map/utils/services/map-marker-icon.service.ts +312 -0
  997. package/lib/components/ca-map/utils/svg-routes/index.ts +1 -0
  998. package/lib/components/ca-map/utils/svg-routes/map-svg-routes.ts +19 -0
  999. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.html +702 -0
  1000. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.scss +541 -0
  1001. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.spec.ts +21 -0
  1002. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.ts +178 -0
  1003. package/lib/components/ca-map-dropdown/enums/index.ts +1 -0
  1004. package/lib/components/ca-map-dropdown/enums/map-dropdown-string.enum.ts +20 -0
  1005. package/lib/components/ca-map-dropdown/models/index.ts +1 -0
  1006. package/lib/components/ca-map-dropdown/models/map-dropdown-content.model.ts +57 -0
  1007. package/lib/components/ca-map-dropdown/pipes/index.ts +3 -0
  1008. package/lib/components/ca-map-dropdown/pipes/map-dropdown-cluster-content-type.pipe.ts +16 -0
  1009. package/lib/components/ca-map-dropdown/pipes/map-dropdown-content-type.pipe.ts +16 -0
  1010. package/lib/components/ca-map-dropdown/pipes/map-dropdown-value.pipe.ts +33 -0
  1011. package/lib/components/ca-map-dropdown/utils/svg-routes/index.ts +1 -0
  1012. package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.ts +22 -0
  1013. package/lib/components/ca-map-list/ca-map-list.component.html +74 -0
  1014. package/lib/components/ca-map-list/ca-map-list.component.scss +34 -0
  1015. package/lib/components/ca-map-list/ca-map-list.component.spec.ts +23 -0
  1016. package/lib/components/ca-map-list/ca-map-list.component.ts +192 -0
  1017. package/lib/components/ca-map-list/utils/constants/index.ts +1 -0
  1018. package/lib/components/ca-map-list/utils/constants/map-list.constants.ts +11 -0
  1019. package/lib/components/ca-map-list-card/ca-map-list-card.component.html +41 -0
  1020. package/lib/components/ca-map-list-card/ca-map-list-card.component.scss +0 -0
  1021. package/lib/components/ca-map-list-card/ca-map-list-card.component.spec.ts +23 -0
  1022. package/lib/components/ca-map-list-card/ca-map-list-card.component.ts +28 -0
  1023. package/lib/components/ca-modal/ca-modal.component.html +59 -0
  1024. package/lib/components/ca-modal/ca-modal.component.scss +345 -0
  1025. package/lib/components/ca-modal/ca-modal.component.spec.ts +21 -0
  1026. package/lib/components/ca-modal/ca-modal.component.ts +60 -0
  1027. package/lib/components/ca-modal-button/ca-modal-button.component.html +68 -0
  1028. package/lib/components/ca-modal-button/ca-modal-button.component.scss +396 -0
  1029. package/lib/components/ca-modal-button/ca-modal-button.component.spec.ts +23 -0
  1030. package/lib/components/ca-modal-button/ca-modal-button.component.ts +35 -0
  1031. package/lib/components/ca-modal-button/ca-modal-button.stories.ts +255 -0
  1032. package/lib/components/ca-modal-button/enums/index.ts +2 -0
  1033. package/lib/components/ca-modal-button/enums/modal-button-class-type.enum.ts +15 -0
  1034. package/lib/components/ca-modal-button/enums/modal-button-size.enum.ts +10 -0
  1035. package/lib/components/ca-modal-button/pipes/index.ts +1 -0
  1036. package/lib/components/ca-modal-button/pipes/modal-button-class.pipe.ts +22 -0
  1037. package/lib/components/ca-modal-items/ca-modal-items.component.html +436 -0
  1038. package/lib/components/ca-modal-items/ca-modal-items.component.scss +63 -0
  1039. package/lib/components/ca-modal-items/ca-modal-items.component.spec.ts +23 -0
  1040. package/lib/components/ca-modal-items/ca-modal-items.component.ts +137 -0
  1041. package/lib/components/ca-modal-items/directives/index.ts +1 -0
  1042. package/lib/components/ca-modal-items/directives/scroll-shadow-border.directive.ts +199 -0
  1043. package/lib/components/ca-modal-items/enums/index.ts +1 -0
  1044. package/lib/components/ca-modal-items/enums/modal-items.enum.ts +4 -0
  1045. package/lib/components/ca-modal-items/interfaces/index.ts +2 -0
  1046. package/lib/components/ca-modal-items/interfaces/items-row-template.interface.ts +8 -0
  1047. package/lib/components/ca-modal-items/interfaces/modal-items-config.interface.ts +29 -0
  1048. package/lib/components/ca-modal-items/pipes/index.ts +1 -0
  1049. package/lib/components/ca-modal-items/pipes/modal-items-header-class.pipe.ts +34 -0
  1050. package/lib/components/ca-modal-spinner/ca-modal-spinner.component.html +7 -0
  1051. package/lib/components/ca-modal-spinner/ca-modal-spinner.component.scss +10 -0
  1052. package/lib/components/ca-modal-spinner/ca-modal-spinner.component.spec.ts +23 -0
  1053. package/lib/components/ca-modal-spinner/ca-modal-spinner.component.ts +10 -0
  1054. package/lib/components/ca-new-filter/ca-filter-dropdown.component.html +142 -0
  1055. package/lib/components/ca-new-filter/ca-filter-dropdown.component.scss +1 -0
  1056. package/lib/components/ca-new-filter/ca-filter-dropdown.component.spec.ts +23 -0
  1057. package/lib/components/ca-new-filter/ca-filter-dropdown.component.ts +138 -0
  1058. package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.html +232 -0
  1059. package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.scss +9 -0
  1060. package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.spec.ts +23 -0
  1061. package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.ts +215 -0
  1062. package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.html +159 -0
  1063. package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.scss +8 -0
  1064. package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.spec.ts +23 -0
  1065. package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.ts +172 -0
  1066. package/lib/components/ca-new-filter/components/new-filter-base/new-filter-base.component.css +0 -0
  1067. package/lib/components/ca-new-filter/components/new-filter-base/new-filter-base.component.html +1 -0
  1068. package/lib/components/ca-new-filter/components/new-filter-base/new-filter-base.component.spec.ts +23 -0
  1069. package/lib/components/ca-new-filter/components/new-filter-base/new-filter-base.component.ts +40 -0
  1070. package/lib/components/ca-new-filter/constant/filter-dropdown-icons.constant.ts +141 -0
  1071. package/lib/components/ca-new-filter/constant/index.ts +1 -0
  1072. package/lib/components/ca-new-filter/enums/filter-dropdown-types.enum.ts +18 -0
  1073. package/lib/components/ca-new-filter/enums/filter-sorting-key.enum.ts +4 -0
  1074. package/lib/components/ca-new-filter/enums/filter-time.enum.ts +35 -0
  1075. package/lib/components/ca-new-filter/enums/index.ts +3 -0
  1076. package/lib/components/ca-new-filter/interface/country.interface.ts +15 -0
  1077. package/lib/components/ca-new-filter/interface/filter-action.interface.ts +27 -0
  1078. package/lib/components/ca-new-filter/interface/filter-dropdown-configuration.interface.ts +15 -0
  1079. package/lib/components/ca-new-filter/interface/filter-dropdown-list.ts +21 -0
  1080. package/lib/components/ca-new-filter/interface/index.ts +6 -0
  1081. package/lib/components/ca-new-filter/interface/sorting-emmiter.interface.ts +6 -0
  1082. package/lib/components/ca-new-filter/interface/time-options.interface.ts +4 -0
  1083. package/lib/components/ca-new-filter/pipes/filter-search.pipe.spec.ts +8 -0
  1084. package/lib/components/ca-new-filter/pipes/filter-search.pipe.ts +30 -0
  1085. package/lib/components/ca-new-filter/types/filter-dropdown.types.ts +15 -0
  1086. package/lib/components/ca-new-filter/types/filter-sorting-key.type.ts +3 -0
  1087. package/lib/components/ca-new-filter/types/filter-time.types.ts +3 -0
  1088. package/lib/components/ca-new-filter/types/index.ts +3 -0
  1089. package/lib/components/ca-new-filter/utils/configs/filter-dropdown-fields.config.ts +41 -0
  1090. package/lib/components/ca-new-filter/utils/configs/index.ts +1 -0
  1091. package/lib/components/ca-new-filter/utils/helpers/index.ts +1 -0
  1092. package/lib/components/ca-new-filter/utils/helpers/time-filter.helper.ts +142 -0
  1093. package/lib/components/ca-ngx-slider/ca-ngx-slider.component.html +54 -0
  1094. package/lib/components/ca-ngx-slider/ca-ngx-slider.component.scss +188 -0
  1095. package/lib/components/ca-ngx-slider/ca-ngx-slider.component.ts +84 -0
  1096. package/lib/components/ca-ngx-slider/enums/slider-template.enum.ts +6 -0
  1097. package/lib/components/ca-note/ca-note.component.html +138 -0
  1098. package/lib/components/ca-note/ca-note.component.scss +445 -0
  1099. package/lib/components/ca-note/ca-note.component.stories.ts +43 -0
  1100. package/lib/components/ca-note/ca-note.component.ts +289 -0
  1101. package/lib/components/ca-note/utils/helper/copy-paste.helper.ts +8 -0
  1102. package/lib/components/ca-note/utils/svg-routes/note-svg-routes.ts +5 -0
  1103. package/lib/components/ca-note-container/ca-note-container.component.html +137 -0
  1104. package/lib/components/ca-note-container/ca-note-container.component.scss +333 -0
  1105. package/lib/components/ca-note-container/ca-note-container.component.spec.ts +21 -0
  1106. package/lib/components/ca-note-container/ca-note-container.component.ts +226 -0
  1107. package/lib/components/ca-note-container/enums/note-default-string.enum.ts +9 -0
  1108. package/lib/components/ca-note-container/enums/note-selected-color.enum.ts +4 -0
  1109. package/lib/components/ca-note-container/models/note-colors.model.ts +4 -0
  1110. package/lib/components/ca-note-container/utils/constants/note-config.constant.ts +65 -0
  1111. package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.ts +8 -0
  1112. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.html +105 -0
  1113. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.scss +234 -0
  1114. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.spec.ts +26 -0
  1115. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.ts +70 -0
  1116. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.stories.ts +87 -0
  1117. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.html +18 -0
  1118. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.scss +24 -0
  1119. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.spec.ts +22 -0
  1120. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.ts +27 -0
  1121. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.stories.ts +47 -0
  1122. package/lib/components/ca-period-content/ca-period-content.component.html +221 -0
  1123. package/lib/components/ca-period-content/ca-period-content.component.scss +160 -0
  1124. package/lib/components/ca-period-content/ca-period-content.component.spec.ts +21 -0
  1125. package/lib/components/ca-period-content/ca-period-content.component.ts +90 -0
  1126. package/lib/components/ca-period-content/ca-period-content.stories.ts +68 -0
  1127. package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.html +19 -0
  1128. package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.scss +30 -0
  1129. package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.spec.ts +20 -0
  1130. package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.ts +14 -0
  1131. package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.html +335 -0
  1132. package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.scss +339 -0
  1133. package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.spec.ts +21 -0
  1134. package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.ts +194 -0
  1135. package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.html +60 -0
  1136. package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.scss +152 -0
  1137. package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.spec.ts +21 -0
  1138. package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.ts +54 -0
  1139. package/lib/components/ca-period-content/components/index.ts +3 -0
  1140. package/lib/components/ca-period-content/enums/index.ts +2 -0
  1141. package/lib/components/ca-period-content/enums/payroll-type.enum.ts +15 -0
  1142. package/lib/components/ca-period-content/enums/period-title-type.enum.ts +7 -0
  1143. package/lib/components/ca-period-content/models/component-data.type.ts +26 -0
  1144. package/lib/components/ca-period-content/models/driver-info.ts +5 -0
  1145. package/lib/components/ca-period-content/models/driver-minimal-response.ts +19 -0
  1146. package/lib/components/ca-period-content/models/driver-short-response.ts +57 -0
  1147. package/lib/components/ca-period-content/models/extra-payments.ts +28 -0
  1148. package/lib/components/ca-period-content/models/formatted-component-data.type.ts +7 -0
  1149. package/lib/components/ca-period-content/models/formatted-period-data.ts +16 -0
  1150. package/lib/components/ca-period-content/models/index.ts +32 -0
  1151. package/lib/components/ca-period-content/models/miles-stop-payroll-response.ts +23 -0
  1152. package/lib/components/ca-period-content/models/notification-model.ts +5 -0
  1153. package/lib/components/ca-period-content/models/payment-sum.model.ts +4 -0
  1154. package/lib/components/ca-period-content/models/payroll-bonus-minimal-response.ts +6 -0
  1155. package/lib/components/ca-period-content/models/payroll-bonus-response.ts +12 -0
  1156. package/lib/components/ca-period-content/models/payroll-commission-total-sum.ts +7 -0
  1157. package/lib/components/ca-period-content/models/payroll-credit-minimal-response.ts +6 -0
  1158. package/lib/components/ca-period-content/models/payroll-credit-response.ts +18 -0
  1159. package/lib/components/ca-period-content/models/payroll-deadline-period.ts +6 -0
  1160. package/lib/components/ca-period-content/models/payroll-deadline-short-response.ts +6 -0
  1161. package/lib/components/ca-period-content/models/payroll-deduction-minimal-response.ts +8 -0
  1162. package/lib/components/ca-period-content/models/payroll-deduction-response.ts +22 -0
  1163. package/lib/components/ca-period-content/models/payroll-driver-commission-by-id-response.ts +65 -0
  1164. package/lib/components/ca-period-content/models/payroll-driver-flat-rate-closed-by-id-response.ts +34 -0
  1165. package/lib/components/ca-period-content/models/payroll-driver-mileage-response.ts +43 -0
  1166. package/lib/components/ca-period-content/models/payroll-flat-rate-total-sum.ts +7 -0
  1167. package/lib/components/ca-period-content/models/payroll-fuel-minimal-response.ts +8 -0
  1168. package/lib/components/ca-period-content/models/payroll-load-minimal-response.ts +18 -0
  1169. package/lib/components/ca-period-content/models/payroll-load-stop-minimal-response.ts +6 -0
  1170. package/lib/components/ca-period-content/models/payroll-map-location.ts +9 -0
  1171. package/lib/components/ca-period-content/models/payroll-owner-closed-response.ts +35 -0
  1172. package/lib/components/ca-period-content/models/payroll-owner-response.ts +34 -0
  1173. package/lib/components/ca-period-content/models/payroll-payment-response.ts +10 -0
  1174. package/lib/components/ca-period-content/models/payroll-payments-minimal-response.ts +6 -0
  1175. package/lib/components/ca-period-content/models/payroll-period-input.type.ts +40 -0
  1176. package/lib/components/ca-period-content/models/payroll-report-tables.type.ts +9 -0
  1177. package/lib/components/ca-period-content/models/payroll-report.type.ts +55 -0
  1178. package/lib/components/ca-period-content/models/per-mile-model.ts +5 -0
  1179. package/lib/components/ca-period-content/pipes/included_count.pipe.ts +22 -0
  1180. package/lib/components/ca-period-content/pipes/payroll-status-class.pipe.ts +27 -0
  1181. package/lib/components/ca-period-content/pipes/period_status.pipe.ts +51 -0
  1182. package/lib/components/ca-period-content/utils/constants/color-map.ts +9 -0
  1183. package/lib/components/ca-period-content/utils/constants/index.ts +2 -0
  1184. package/lib/components/ca-period-content/utils/constants/payroll-period-dropdown.constant.ts +15 -0
  1185. package/lib/components/ca-period-content/utils/helpers/index.ts +1 -0
  1186. package/lib/components/ca-period-content/utils/helpers/payroll-period-content.helper.ts +35 -0
  1187. package/lib/components/ca-period-content/utils/svg-routes/index.ts +1 -0
  1188. package/lib/components/ca-period-content/utils/svg-routes/period-content.routes.ts +20 -0
  1189. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.html +159 -0
  1190. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.scss +119 -0
  1191. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.spec.ts +21 -0
  1192. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.ts +101 -0
  1193. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.stories.ts +756 -0
  1194. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.html +129 -0
  1195. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.scss +110 -0
  1196. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.spec.ts +24 -0
  1197. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.ts +141 -0
  1198. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.html +184 -0
  1199. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.scss +135 -0
  1200. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.spec.ts +24 -0
  1201. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.ts +130 -0
  1202. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.html +372 -0
  1203. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.scss +264 -0
  1204. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.spec.ts +24 -0
  1205. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.ts +120 -0
  1206. package/lib/components/ca-pickup-delivery-block/models/adress-model.ts +12 -0
  1207. package/lib/components/ca-pickup-delivery-block/models/animation-model.ts +6 -0
  1208. package/lib/components/ca-pickup-delivery-block/models/broker-short-response.ts +14 -0
  1209. package/lib/components/ca-pickup-delivery-block/models/companyUserShortResponse.model.ts +9 -0
  1210. package/lib/components/ca-pickup-delivery-block/models/dispatch-grouped-load-response.mode.ts +7 -0
  1211. package/lib/components/ca-pickup-delivery-block/models/dispatch-hos-response.model.ts +10 -0
  1212. package/lib/components/ca-pickup-delivery-block/models/dispatch-response.model.ts +37 -0
  1213. package/lib/components/ca-pickup-delivery-block/models/dispatch-status-response.model.ts +7 -0
  1214. package/lib/components/ca-pickup-delivery-block/models/driver-dispatch.model.ts +12 -0
  1215. package/lib/components/ca-pickup-delivery-block/models/enum-value.ts +4 -0
  1216. package/lib/components/ca-pickup-delivery-block/models/index.ts +15 -0
  1217. package/lib/components/ca-pickup-delivery-block/models/load-short-response.ts +22 -0
  1218. package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.ts +10 -0
  1219. package/lib/components/ca-pickup-delivery-block/models/parking-slot-short-response.model.ts +13 -0
  1220. package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.ts +9 -0
  1221. package/lib/components/ca-pickup-delivery-block/models/status-types.enum.ts +5 -0
  1222. package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.ts +8 -0
  1223. package/lib/components/ca-pickup-delivery-block/utils/constants/index.ts +1 -0
  1224. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/index.ts +2 -0
  1225. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.ts +36 -0
  1226. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.ts +4 -0
  1227. package/lib/components/ca-profile-image/ca-profile-image.component.html +42 -0
  1228. package/lib/components/ca-profile-image/ca-profile-image.component.scss +51 -0
  1229. package/lib/components/ca-profile-image/ca-profile-image.component.spec.ts +24 -0
  1230. package/lib/components/ca-profile-image/ca-profile-image.component.ts +89 -0
  1231. package/lib/components/ca-profile-image/ca-profile-image.stories.ts +69 -0
  1232. package/lib/components/ca-progress-bar/ca-progress-bar.component.html +404 -0
  1233. package/lib/components/ca-progress-bar/ca-progress-bar.component.scss +202 -0
  1234. package/lib/components/ca-progress-bar/ca-progress-bar.component.stories.ts +1539 -0
  1235. package/lib/components/ca-progress-bar/ca-progress-bar.component.ts +242 -0
  1236. package/lib/components/ca-progress-bar/enums/index.ts +1 -0
  1237. package/lib/components/ca-progress-bar/enums/progress-bar-string.enum.ts +6 -0
  1238. package/lib/components/ca-progress-bar/interfaces/gps-heading-info.interface.ts +6 -0
  1239. package/lib/components/ca-progress-bar/interfaces/gps-progress.interface.ts +21 -0
  1240. package/lib/components/ca-progress-bar/interfaces/index.ts +3 -0
  1241. package/lib/components/ca-progress-bar/interfaces/progress-bar-data.interface.ts +19 -0
  1242. package/lib/components/ca-progress-bar/pipes/convert-minutes-to-hours.pipe.ts +14 -0
  1243. package/lib/components/ca-progress-bar/pipes/index.ts +1 -0
  1244. package/lib/components/ca-progress-bar/utils/constants/index.ts +1 -0
  1245. package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.ts +8 -0
  1246. package/lib/components/ca-progress-bar/utils/helpers/convert-minutes-to-hours.helper.ts +9 -0
  1247. package/lib/components/ca-progress-bar/utils/helpers/index.ts +1 -0
  1248. package/lib/components/ca-progress-bar/utils/svg-routes/index.ts +1 -0
  1249. package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.ts +3 -0
  1250. package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.html +90 -0
  1251. package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.scss +72 -0
  1252. package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.spec.ts +23 -0
  1253. package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.stories.ts +131 -0
  1254. package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.ts +49 -0
  1255. package/lib/components/ca-progress-bar-v2/interfaces/index.ts +1 -0
  1256. package/lib/components/ca-progress-bar-v2/interfaces/progress-bar-color-config.interface.ts +4 -0
  1257. package/lib/components/ca-progress-expiration/ca-progress-expiration.component.html +103 -0
  1258. package/lib/components/ca-progress-expiration/ca-progress-expiration.component.scss +65 -0
  1259. package/lib/components/ca-progress-expiration/ca-progress-expiration.component.stories.ts +157 -0
  1260. package/lib/components/ca-progress-expiration/ca-progress-expiration.component.ts +259 -0
  1261. package/lib/components/ca-progress-expiration/enums/index.ts +1 -0
  1262. package/lib/components/ca-progress-expiration/enums/time-units.enum.ts +6 -0
  1263. package/lib/components/ca-progress-expiration/helpers/hex-to-rgba.helper.ts +18 -0
  1264. package/lib/components/ca-progress-expiration/helpers/index.ts +2 -0
  1265. package/lib/components/ca-progress-expiration/helpers/progress-expiration.helper.ts +64 -0
  1266. package/lib/components/ca-progress-expiration/models/index.ts +7 -0
  1267. package/lib/components/ca-progress-expiration/models/progress-expiration-color-type.model.ts +6 -0
  1268. package/lib/components/ca-progress-expiration/models/progress-expiration-color.model.ts +4 -0
  1269. package/lib/components/ca-progress-expiration/models/progress-expiration-template.model.ts +6 -0
  1270. package/lib/components/ca-progress-expiration/models/progress-expiration-theme.model.ts +1 -0
  1271. package/lib/components/ca-progress-expiration/models/progress-expiration-title.model.ts +5 -0
  1272. package/lib/components/ca-progress-expiration/models/progress-expiration-type.model.ts +1 -0
  1273. package/lib/components/ca-progress-expiration/models/progress-expiration.model.ts +14 -0
  1274. package/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-abs.pipe.ts +12 -0
  1275. package/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-width.pipe.ts +59 -0
  1276. package/lib/components/ca-progress-expiration/pipes/currency-format.pipe.ts +14 -0
  1277. package/lib/components/ca-progress-expiration/pipes/index.ts +4 -0
  1278. package/lib/components/ca-progress-expiration/pipes/time.pipe.ts +33 -0
  1279. package/lib/components/ca-progress-expiration/utils/constants/index.ts +1 -0
  1280. package/lib/components/ca-progress-expiration/utils/constants/progress-expiration.constant.ts +54 -0
  1281. package/lib/components/ca-progress-expiration/utils/index.ts +1 -0
  1282. package/lib/components/ca-range-slider/ca-range-slider.component.html +46 -0
  1283. package/lib/components/ca-range-slider/ca-range-slider.component.scss +28 -0
  1284. package/lib/components/ca-range-slider/ca-range-slider.component.spec.ts +23 -0
  1285. package/lib/components/ca-range-slider/ca-range-slider.component.ts +75 -0
  1286. package/lib/components/ca-range-slider/directives/index.ts +1 -0
  1287. package/lib/components/ca-range-slider/directives/range-slider.directive.ts +88 -0
  1288. package/lib/components/ca-range-slider/interfaces/index.ts +1 -0
  1289. package/lib/components/ca-range-slider/interfaces/range-slider-config.interface.ts +7 -0
  1290. package/lib/components/ca-rating-review/ca-rating-review.component.html +271 -0
  1291. package/lib/components/ca-rating-review/ca-rating-review.component.scss +279 -0
  1292. package/lib/components/ca-rating-review/ca-rating-review.component.spec.ts +21 -0
  1293. package/lib/components/ca-rating-review/ca-rating-review.component.ts +209 -0
  1294. package/lib/components/ca-rating-review/ca-rating-review.stories.ts +224 -0
  1295. package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.html +201 -0
  1296. package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.scss +359 -0
  1297. package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.spec.ts +21 -0
  1298. package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.ts +175 -0
  1299. package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.html +141 -0
  1300. package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.scss +160 -0
  1301. package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.spec.ts +21 -0
  1302. package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.ts +126 -0
  1303. package/lib/components/ca-rating-review/enums/rating-reviews-type.enums.ts +16 -0
  1304. package/lib/components/ca-rating-review/models/rating-review.model.ts +12 -0
  1305. package/lib/components/ca-rating-review/utils/config/rating-review-search.config.ts +16 -0
  1306. package/lib/components/ca-rating-review/utils/helpers/sort-data.helper.ts +13 -0
  1307. package/lib/components/ca-rating-review/utils/pipe/filter-title.pipe.ts +21 -0
  1308. package/lib/components/ca-rating-review/utils/svg-routes/ratings-reviews.routes.ts +16 -0
  1309. package/lib/components/ca-right-side-panel/ca-right-side-panel.component.html +46 -0
  1310. package/lib/components/ca-right-side-panel/ca-right-side-panel.component.scss +10 -0
  1311. package/lib/components/ca-right-side-panel/ca-right-side-panel.component.spec.ts +21 -0
  1312. package/lib/components/ca-right-side-panel/ca-right-side-panel.component.ts +161 -0
  1313. package/lib/components/ca-right-side-panel/ca-right-side-panel.stories.ts +47 -0
  1314. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.html +1214 -0
  1315. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.scss +307 -0
  1316. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.spec.ts +21 -0
  1317. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.ts +147 -0
  1318. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.html +180 -0
  1319. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.scss +282 -0
  1320. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.spec.ts +21 -0
  1321. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.ts +195 -0
  1322. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.html +238 -0
  1323. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.scss +143 -0
  1324. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.spec.ts +21 -0
  1325. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.ts +394 -0
  1326. package/lib/components/ca-right-side-panel/config/ca-right-side-panel.config.ts +66 -0
  1327. package/lib/components/ca-right-side-panel/enums/activity-log-sort-type.enum.ts +4 -0
  1328. package/lib/components/ca-right-side-panel/enums/company/bank-account-status.enum.ts +6 -0
  1329. package/lib/components/ca-right-side-panel/enums/company/bank-card-types-string.enum.ts +6 -0
  1330. package/lib/components/ca-right-side-panel/enums/company/fleet-type.enum.ts +5 -0
  1331. package/lib/components/ca-right-side-panel/enums/company/preferred-load-type.enum.ts +4 -0
  1332. package/lib/components/ca-right-side-panel/enums/company-font-size.enum.ts +5 -0
  1333. package/lib/components/ca-right-side-panel/enums/company-info-title.enum.ts +16 -0
  1334. package/lib/components/ca-right-side-panel/enums/filter-type.enum.ts +6 -0
  1335. package/lib/components/ca-right-side-panel/enums/index.ts +12 -0
  1336. package/lib/components/ca-right-side-panel/enums/modules-filter-item-label.enum.ts +4 -0
  1337. package/lib/components/ca-right-side-panel/enums/right-side-panel-current-tab.enum.ts +4 -0
  1338. package/lib/components/ca-right-side-panel/enums/selected-module.enum.ts +13 -0
  1339. package/lib/components/ca-right-side-panel/enums/time-filter-type.enum.ts +9 -0
  1340. package/lib/components/ca-right-side-panel/models/action-filter/action-filter-input-data.model.ts +9 -0
  1341. package/lib/components/ca-right-side-panel/models/activity-log-filter-params.model.ts +14 -0
  1342. package/lib/components/ca-right-side-panel/models/activity-log-filter.model.ts +6 -0
  1343. package/lib/components/ca-right-side-panel/models/company/bank-account.model.ts +15 -0
  1344. package/lib/components/ca-right-side-panel/models/company/bank-card.model.ts +10 -0
  1345. package/lib/components/ca-right-side-panel/models/company/bank.model.ts +7 -0
  1346. package/lib/components/ca-right-side-panel/models/company/company-additional-info.model.ts +17 -0
  1347. package/lib/components/ca-right-side-panel/models/company/company-address.model.ts +12 -0
  1348. package/lib/components/ca-right-side-panel/models/company/company-enum-value.model.ts +4 -0
  1349. package/lib/components/ca-right-side-panel/models/company/company-navigation-data.model.ts +5 -0
  1350. package/lib/components/ca-right-side-panel/models/company/company-payroll.model.ts +23 -0
  1351. package/lib/components/ca-right-side-panel/models/company/company-short.model.ts +11 -0
  1352. package/lib/components/ca-right-side-panel/models/company/company-user-short.model.ts +10 -0
  1353. package/lib/components/ca-right-side-panel/models/company/company.model.ts +52 -0
  1354. package/lib/components/ca-right-side-panel/models/company/department-contact.model.ts +12 -0
  1355. package/lib/components/ca-right-side-panel/models/company/department.model.ts +9 -0
  1356. package/lib/components/ca-right-side-panel/models/company/factoring-company.model.ts +11 -0
  1357. package/lib/components/ca-right-side-panel/models/company/file-response.model.ts +9 -0
  1358. package/lib/components/ca-right-side-panel/models/company/insurance-policy-addon.model.ts +27 -0
  1359. package/lib/components/ca-right-side-panel/models/company/insurance-policy.model.ts +15 -0
  1360. package/lib/components/ca-right-side-panel/models/company/per-mile.model.ts +5 -0
  1361. package/lib/components/ca-right-side-panel/models/index.ts +28 -0
  1362. package/lib/components/ca-right-side-panel/models/module-filter/module-filter-activity-log.model.ts +6 -0
  1363. package/lib/components/ca-right-side-panel/models/module-filter/module-filter-input-data.model.ts +7 -0
  1364. package/lib/components/ca-right-side-panel/models/navigation-item.model.ts +9 -0
  1365. package/lib/components/ca-right-side-panel/models/time-filter/time-filter-event.model.ts +8 -0
  1366. package/lib/components/ca-right-side-panel/models/user-filter/user-filter-avatar-file.model.ts +9 -0
  1367. package/lib/components/ca-right-side-panel/models/user-filter/user-filter-data.model.ts +9 -0
  1368. package/lib/components/ca-right-side-panel/models/user-filter/user-filter-input-data.model.ts +9 -0
  1369. package/lib/components/ca-right-side-panel/utils/constants/activity-log-filter-data.constants.ts +132 -0
  1370. package/lib/components/ca-right-side-panel/utils/constants/companies-side-panel-navigation.constants.ts +730 -0
  1371. package/lib/components/ca-right-side-panel/utils/constants/index.ts +2 -0
  1372. package/lib/components/ca-right-side-panel/utils/pipes/bank-card-types.pipe.ts +20 -0
  1373. package/lib/components/ca-right-side-panel/utils/pipes/hide-account.pipe.ts +59 -0
  1374. package/lib/components/ca-right-side-panel/utils/pipes/index.ts +2 -0
  1375. package/lib/components/ca-right-side-panel/utils/svg-routes/index.ts +2 -0
  1376. package/lib/components/ca-right-side-panel/utils/svg-routes/right-side-panel-top-bar-svg.routes.ts +10 -0
  1377. package/lib/components/ca-right-side-panel/utils/svg-routes/side-panel-company-svg.routes.ts +6 -0
  1378. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.html +176 -0
  1379. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.scss +373 -0
  1380. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.spec.ts +21 -0
  1381. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.ts +380 -0
  1382. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.stories.ts +180 -0
  1383. package/lib/components/ca-search-multiple-states/models/chips.model.ts +6 -0
  1384. package/lib/components/ca-search-multiple-states/models/grid-column.model.ts +23 -0
  1385. package/lib/components/ca-search-multiple-states/models/index.ts +3 -0
  1386. package/lib/components/ca-search-multiple-states/models/tab-data.model.ts +14 -0
  1387. package/lib/components/ca-search-multiple-states/utils/config/index.ts +1 -0
  1388. package/lib/components/ca-search-multiple-states/utils/config/input-config.ts +10 -0
  1389. package/lib/components/ca-search-multiple-states/utils/enums/chips-colors.enum.ts +5 -0
  1390. package/lib/components/ca-search-multiple-states/utils/enums/index.ts +3 -0
  1391. package/lib/components/ca-search-multiple-states/utils/enums/keyboard-event-commands.enum.ts +3 -0
  1392. package/lib/components/ca-search-multiple-states/utils/enums/search-count.enum.ts +6 -0
  1393. package/lib/components/ca-search-multiple-states/utils/pipes/chip-class.pipe.ts +23 -0
  1394. package/lib/components/ca-search-multiple-states/utils/pipes/index.ts +1 -0
  1395. package/lib/components/ca-search-multiple-states/utils/services/index.ts +1 -0
  1396. package/lib/components/ca-search-multiple-states/utils/services/search-multiple-states.service.ts +37 -0
  1397. package/lib/components/ca-search-multiple-states/utils/svg-routes/index.ts +1 -0
  1398. package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.ts +8 -0
  1399. package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.component.html +145 -0
  1400. package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.component.scss +205 -0
  1401. package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.component.spec.ts +22 -0
  1402. package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.component.ts +276 -0
  1403. package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.stories.ts +69 -0
  1404. package/lib/components/ca-search-multiple-states-2/enums/index.ts +1 -0
  1405. package/lib/components/ca-search-multiple-states-2/enums/search-multiple-state-action.enum.ts +3 -0
  1406. package/lib/components/ca-search-multiple-states-2/interfaces/index.ts +1 -0
  1407. package/lib/components/ca-search-multiple-states-2/interfaces/search-query.interface.ts +4 -0
  1408. package/lib/components/ca-search-multiple-states-2/util/index.ts +1 -0
  1409. package/lib/components/ca-search-multiple-states-2/util/routes/multiple-search-state-svg.route.ts +9 -0
  1410. package/lib/components/ca-selectable-column-table/ca-selectable-column-table.component.html +70 -0
  1411. package/lib/components/ca-selectable-column-table/ca-selectable-column-table.component.scss +96 -0
  1412. package/lib/components/ca-selectable-column-table/ca-selectable-column-table.component.ts +72 -0
  1413. package/lib/components/ca-selectable-column-table/ca-selectable-columns-table.stories.ts +53 -0
  1414. package/lib/components/ca-selectable-column-table/enums/ca-selectable-column-table.enum.ts +3 -0
  1415. package/lib/components/ca-selectable-column-table/enums/index.ts +1 -0
  1416. package/lib/components/ca-selectable-column-table/models/ca-selectable-column-table.model.ts +6 -0
  1417. package/lib/components/ca-selectable-column-table/models/index.ts +1 -0
  1418. package/lib/components/ca-selectable-column-table/utils/constants/ca-selectable-column-table.constants.ts +50 -0
  1419. package/lib/components/ca-selectable-column-table/utils/constants/index.ts +1 -0
  1420. package/lib/components/ca-show-more/ca-show-more.component.html +19 -0
  1421. package/lib/components/ca-show-more/ca-show-more.component.scss +0 -0
  1422. package/lib/components/ca-show-more/ca-show-more.component.spec.ts +23 -0
  1423. package/lib/components/ca-show-more/ca-show-more.component.ts +27 -0
  1424. package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.html +122 -0
  1425. package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.scss +158 -0
  1426. package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.spec.ts +21 -0
  1427. package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.ts +137 -0
  1428. package/lib/components/ca-sort-dropdown/ca-sort-dropdown.stories.ts +173 -0
  1429. package/lib/components/ca-sort-dropdown/enums/index.ts +1 -0
  1430. package/lib/components/ca-sort-dropdown/enums/sort-dropdown.enum.ts +11 -0
  1431. package/lib/components/ca-sort-dropdown/interfaces/index.ts +1 -0
  1432. package/lib/components/ca-sort-dropdown/interfaces/sort-dropdown-action.interface.ts +11 -0
  1433. package/lib/components/ca-sort-dropdown/models/index.ts +1 -0
  1434. package/lib/components/ca-sort-dropdown/models/sort-column.model.ts +8 -0
  1435. package/lib/components/ca-sort-dropdown/types/index.ts +1 -0
  1436. package/lib/components/ca-sort-dropdown/types/sort-directions.type.ts +6 -0
  1437. package/lib/components/ca-sort-dropdown/utils/svg-routes/ca-sort-dropdown-svg-routes.ts +10 -0
  1438. package/lib/components/ca-sort-dropdown/utils/svg-routes/index.ts +1 -0
  1439. package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.html +136 -0
  1440. package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.scss +6 -0
  1441. package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.spec.ts +23 -0
  1442. package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.stories.ts +103 -0
  1443. package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.ts +101 -0
  1444. package/lib/components/ca-spinner/ca-spinner.component.html +13 -0
  1445. package/lib/components/ca-spinner/ca-spinner.component.scss +63 -0
  1446. package/lib/components/ca-spinner/ca-spinner.component.spec.ts +24 -0
  1447. package/lib/components/ca-spinner/ca-spinner.component.ts +61 -0
  1448. package/lib/components/ca-status-change-dropdown/ca-status-change-dropdown.component.html +70 -0
  1449. package/lib/components/ca-status-change-dropdown/ca-status-change-dropdown.component.scss +10 -0
  1450. package/lib/components/ca-status-change-dropdown/ca-status-change-dropdown.component.stories.ts +78 -0
  1451. package/lib/components/ca-status-change-dropdown/ca-status-change-dropdown.component.ts +46 -0
  1452. package/lib/components/ca-tab-switch/ca-tab-switch.component.html +33 -0
  1453. package/lib/components/ca-tab-switch/ca-tab-switch.component.scss +381 -0
  1454. package/lib/components/ca-tab-switch/ca-tab-switch.component.ts +213 -0
  1455. package/lib/components/ca-tab-switch/ca-tab-switch.stories.ts +155 -0
  1456. package/lib/components/ca-tab-switch/models/hover-style.model.ts +4 -0
  1457. package/lib/components/ca-tab-switch/models/tab-options.model.ts +5 -0
  1458. package/lib/components/ca-tab-switch/utils/constants/tab-switch.constants.ts +6 -0
  1459. package/lib/components/ca-table-card-view/ca-table-card-view.component.html +255 -0
  1460. package/lib/components/ca-table-card-view/ca-table-card-view.component.scss +73 -0
  1461. package/lib/components/ca-table-card-view/ca-table-card-view.component.spec.ts +22 -0
  1462. package/lib/components/ca-table-card-view/ca-table-card-view.component.ts +322 -0
  1463. package/lib/components/ca-table-card-view/ca-table-card-view.stories.ts +79 -0
  1464. package/lib/components/ca-table-card-view/components/additional-components/ca-table-card-view-skeleton/ca-table-card-view-skeleton.component.html +28 -0
  1465. package/lib/components/ca-table-card-view/components/additional-components/ca-table-card-view-skeleton/ca-table-card-view-skeleton.component.scss +3 -0
  1466. package/lib/components/ca-table-card-view/components/additional-components/ca-table-card-view-skeleton/ca-table-card-view-skeleton.component.spec.ts +23 -0
  1467. package/lib/components/ca-table-card-view/components/additional-components/ca-table-card-view-skeleton/ca-table-card-view-skeleton.component.ts +25 -0
  1468. package/lib/components/ca-table-card-view/enums/index.ts +2 -0
  1469. package/lib/components/ca-table-card-view/enums/table-card-general.enum.ts +4 -0
  1470. package/lib/components/ca-table-card-view/enums/table-card-types.enum.ts +4 -0
  1471. package/lib/components/ca-table-card-view/pipes/index.ts +1 -0
  1472. package/lib/components/ca-table-card-view/pipes/is-card-flipped.pipe.ts +11 -0
  1473. package/lib/components/ca-table-card-view/utils/helpers/index.ts +2 -0
  1474. package/lib/components/ca-table-card-view/utils/helpers/table-card-skeleton.helper.ts +94 -0
  1475. package/lib/components/ca-table-card-view/utils/helpers/table-card-view-helper.ts +93 -0
  1476. package/lib/components/ca-table-card-view/utils/svg-routes/index.ts +1 -0
  1477. package/lib/components/ca-table-card-view/utils/svg-routes/table-card-view-svg-routes.ts +3 -0
  1478. package/lib/components/ca-telematic-map-list/ca-telematic-map-list.component.html +312 -0
  1479. package/lib/components/ca-telematic-map-list/ca-telematic-map-list.component.scss +195 -0
  1480. package/lib/components/ca-telematic-map-list/ca-telematic-map-list.component.ts +131 -0
  1481. package/lib/components/ca-telematic-map-list/ca-telematic-map-list.stories.ts +54 -0
  1482. package/lib/components/ca-telematic-map-list/config/ca-telematic-list.config.ts +16 -0
  1483. package/lib/components/ca-telematic-map-list/config/index.ts +1 -0
  1484. package/lib/components/ca-telematic-map-list/enums/ca-telematic-map-list.enum.ts +4 -0
  1485. package/lib/components/ca-telematic-map-list/enums/index.ts +1 -0
  1486. package/lib/components/ca-telematic-map-list/models/index.ts +1 -0
  1487. package/lib/components/ca-telematic-map-list/models/telematic-truck.model.ts +27 -0
  1488. package/lib/components/ca-telematic-map-list/pipes/index.ts +2 -0
  1489. package/lib/components/ca-telematic-map-list/pipes/is-column-selected.pipe.ts +18 -0
  1490. package/lib/components/ca-telematic-map-list/utils/constants/index.ts +1 -0
  1491. package/lib/components/ca-telematic-map-list/utils/constants/telematic-map-list.constants.ts +1782 -0
  1492. package/lib/components/ca-telematic-map-list/utils/svg-routes/ca-telematic-list-svg-routes.ts +8 -0
  1493. package/lib/components/ca-telematic-map-list/utils/svg-routes/index.ts +1 -0
  1494. package/lib/components/ca-toast-messages/ca-toast-messages-component.html +47 -0
  1495. package/lib/components/ca-toast-messages/ca-toast-messages-component.scss +41 -0
  1496. package/lib/components/ca-toast-messages/ca-toast-messages.component.ts +127 -0
  1497. package/lib/components/ca-toast-messages/ca-toast-messages.stories.ts +105 -0
  1498. package/lib/components/ca-toast-messages/enums/index.ts +1 -0
  1499. package/lib/components/ca-toast-messages/enums/toast-type.enum.ts +6 -0
  1500. package/lib/components/ca-toast-messages/pipes/index.ts +2 -0
  1501. package/lib/components/ca-toast-messages/pipes/toast-background.pipe.ts +28 -0
  1502. package/lib/components/ca-toast-messages/pipes/toast-stack.pipe.ts +17 -0
  1503. package/lib/components/ca-todo/ca-todo-component.html +35 -0
  1504. package/lib/components/ca-todo/ca-todo-component.scss +62 -0
  1505. package/lib/components/ca-todo/ca-todo.component.ts +109 -0
  1506. package/lib/components/ca-todo/ca-todo.stories.ts +711 -0
  1507. package/lib/components/ca-todo/components/ca-todo-card.component.html +313 -0
  1508. package/lib/components/ca-todo/components/ca-todo-card.component.scss +223 -0
  1509. package/lib/components/ca-todo/components/ca-todo-card.component.spec.ts +21 -0
  1510. package/lib/components/ca-todo/components/ca-todo-card.component.ts +192 -0
  1511. package/lib/components/ca-todo/components/ca-todo-card.stories.ts +378 -0
  1512. package/lib/components/ca-todo/config/column.config.ts +24 -0
  1513. package/lib/components/ca-todo/config/index.ts +1 -0
  1514. package/lib/components/ca-todo/enums/column.enum.ts +5 -0
  1515. package/lib/components/ca-todo/enums/download-link.enum.ts +5 -0
  1516. package/lib/components/ca-todo/enums/index.ts +2 -0
  1517. package/lib/components/ca-todo/models/image-config.model.ts +5 -0
  1518. package/lib/components/ca-todo/models/index.ts +4 -0
  1519. package/lib/components/ca-todo/models/to-do-column.model.ts +8 -0
  1520. package/lib/components/ca-todo/models/todo-card-config.model.ts +10 -0
  1521. package/lib/components/ca-todo/models/todo-config.model.ts +19 -0
  1522. package/lib/components/ca-todo/services/file-service.ts +15 -0
  1523. package/lib/components/ca-todo/services/index.ts +1 -0
  1524. package/lib/components/ca-todo/utils/index.ts +1 -0
  1525. package/lib/components/ca-todo/utils/svg-routes/index.ts +1 -0
  1526. package/lib/components/ca-todo/utils/svg-routes/todo.routes.ts +8 -0
  1527. package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.component.html +282 -0
  1528. package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.component.scss +53 -0
  1529. package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.component.spec.ts +23 -0
  1530. package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.component.ts +197 -0
  1531. package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.stories.ts +83 -0
  1532. package/lib/components/ca-toolbar-dropdown/interfaces/dropdown-item.interface.ts +14 -0
  1533. package/lib/components/ca-toolbar-dropdown/interfaces/index.ts +1 -0
  1534. package/lib/components/ca-toolbar-dropdown/pipes/filter-by-search-term.pipe.ts +20 -0
  1535. package/lib/components/ca-toolbar-dropdown/pipes/index.ts +2 -0
  1536. package/lib/components/ca-toolbar-dropdown/pipes/selected-item.pipe.ts +16 -0
  1537. package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.html +81 -0
  1538. package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.scss +18 -0
  1539. package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.spec.ts +23 -0
  1540. package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.ts +152 -0
  1541. package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.stories.ts +170 -0
  1542. package/lib/components/ca-toolbar-tab-switch/enums/index.ts +1 -0
  1543. package/lib/components/ca-toolbar-tab-switch/enums/toolbar-variant.enum.ts +4 -0
  1544. package/lib/components/ca-toolbar-tab-switch/interfaces/index.ts +1 -0
  1545. package/lib/components/ca-toolbar-tab-switch/interfaces/toolbar-tabs.interface.ts +6 -0
  1546. package/lib/components/ca-toolbar-tab-switch/pipes/toolbar-tabs-class-pipe.ts +38 -0
  1547. package/lib/components/ca-toolbar-tab-switch/types/index.ts +1 -0
  1548. package/lib/components/ca-toolbar-tab-switch/types/toolbar-variant.type.ts +3 -0
  1549. package/lib/components/ca-tooltip-list/ca-tooltip-list.component.html +85 -0
  1550. package/lib/components/ca-tooltip-list/ca-tooltip-list.component.scss +105 -0
  1551. package/lib/components/ca-tooltip-list/ca-tooltip-list.component.spec.ts +21 -0
  1552. package/lib/components/ca-tooltip-list/ca-tooltip-list.component.ts +37 -0
  1553. package/lib/components/ca-tooltip-list/ca-tooltip-list.stories.ts +117 -0
  1554. package/lib/components/ca-tooltip-list/models/index.ts +2 -0
  1555. package/lib/components/ca-tooltip-list/models/tooltip-list-item.model.ts +7 -0
  1556. package/lib/components/ca-tooltip-list/models/tooltip-list.model.ts +8 -0
  1557. package/lib/components/ca-tooltip-list/utils/constants/ca-tooltip-list.constants.ts +3 -0
  1558. package/lib/components/ca-tooltip-list/utils/constants/index.ts +1 -0
  1559. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.html +238 -0
  1560. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.scss +137 -0
  1561. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.spec.ts +22 -0
  1562. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.ts +80 -0
  1563. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.stories.ts +134 -0
  1564. package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.ts +10 -0
  1565. package/lib/components/ca-upload-files/ca-upload-files.component.html +122 -0
  1566. package/lib/components/ca-upload-files/ca-upload-files.component.scss +134 -0
  1567. package/lib/components/ca-upload-files/ca-upload-files.component.ts +430 -0
  1568. package/lib/components/ca-upload-files/ca-upload-files.stories.ts +499 -0
  1569. package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.html +303 -0
  1570. package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.scss +204 -0
  1571. package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.spec.ts +21 -0
  1572. package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.ts +410 -0
  1573. package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.stories.ts +209 -0
  1574. package/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/index.ts +1 -0
  1575. package/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/template.directive.ts +10 -0
  1576. package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-dropzone-action.enum.ts +6 -0
  1577. package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-dropzone-type.enum.ts +6 -0
  1578. package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-upload-page.enum.ts +26 -0
  1579. package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.ts +4 -0
  1580. package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/template-type.enum.ts +7 -0
  1581. package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.ts +30 -0
  1582. package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/index.ts +1 -0
  1583. package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/drop-background-event.interface.ts +4 -0
  1584. package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-config.interface.ts +14 -0
  1585. package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-option-config.interface.ts +14 -0
  1586. package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-settings.interface.ts +10 -0
  1587. package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/file-config.interface.ts +19 -0
  1588. package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/file-event.interface.ts +9 -0
  1589. package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/index.ts +6 -0
  1590. package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constants.ts +27 -0
  1591. package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constants.ts +41 -0
  1592. package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.ts +4 -0
  1593. package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-animation.constants.ts +10 -0
  1594. package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/mime-type.constants.ts +33 -0
  1595. package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/svg-routes/dropzone-svg.routes.ts +3 -0
  1596. package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.html +412 -0
  1597. package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.scss +1491 -0
  1598. package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.spec.ts +21 -0
  1599. package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.ts +481 -0
  1600. package/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.ts +8 -0
  1601. package/lib/components/ca-upload-files/components/ca-upload-file/enums/index.ts +1 -0
  1602. package/lib/components/ca-upload-files/components/ca-upload-file/interfaces/delete-action.interface.ts +4 -0
  1603. package/lib/components/ca-upload-files/components/ca-upload-file/interfaces/file-action-event.interface.ts +7 -0
  1604. package/lib/components/ca-upload-files/components/ca-upload-file/interfaces/index.ts +2 -0
  1605. package/lib/components/ca-upload-files/components/ca-upload-file/pipes/byte-convert.pipe.ts +18 -0
  1606. package/lib/components/ca-upload-files/components/ca-upload-file/pipes/file-name.pipe.ts +17 -0
  1607. package/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.ts +5 -0
  1608. package/lib/components/ca-upload-files/components/ca-upload-file/pipes/mime-type-to-extension.pipe.ts +14 -0
  1609. package/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.ts +41 -0
  1610. package/lib/components/ca-upload-files/components/ca-upload-file/pipes/url-extension.pipe.ts +18 -0
  1611. package/lib/components/ca-upload-files/components/ca-upload-file/services/document.service.ts +14 -0
  1612. package/lib/components/ca-upload-files/components/ca-upload-file/services/index.ts +1 -0
  1613. package/lib/components/ca-upload-files/components/ca-upload-file/utils/config/index.ts +1 -0
  1614. package/lib/components/ca-upload-files/components/ca-upload-file/utils/config/upload-file-input.config.ts +10 -0
  1615. package/lib/components/ca-upload-files/components/ca-upload-file/utils/index.ts +1 -0
  1616. package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/index.ts +1 -0
  1617. package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.ts +9 -0
  1618. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.html +99 -0
  1619. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.scss +240 -0
  1620. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.spec.ts +21 -0
  1621. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.ts +190 -0
  1622. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.ts +4 -0
  1623. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/file-carousel-size.enum.ts +8 -0
  1624. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.ts +2 -0
  1625. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/interfaces/files-carousel.interface.ts +7 -0
  1626. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/interfaces/index.ts +1 -0
  1627. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.ts +19 -0
  1628. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/index.ts +1 -0
  1629. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/index.ts +2 -0
  1630. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/carousel-svg.routes.ts +3 -0
  1631. package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/index.ts +1 -0
  1632. package/lib/components/ca-upload-files/enums/file-action.enum.ts +5 -0
  1633. package/lib/components/ca-upload-files/enums/file-size.enum.ts +7 -0
  1634. package/lib/components/ca-upload-files/enums/file-type.enum.ts +6 -0
  1635. package/lib/components/ca-upload-files/enums/index.ts +4 -0
  1636. package/lib/components/ca-upload-files/enums/review-state.enum.ts +4 -0
  1637. package/lib/components/ca-upload-files/interfaces/document-review-input-event.interface.ts +7 -0
  1638. package/lib/components/ca-upload-files/interfaces/file-option-config.interface.ts +16 -0
  1639. package/lib/components/ca-upload-files/interfaces/index.ts +5 -0
  1640. package/lib/components/ca-upload-files/interfaces/review-file-config.interface.ts +10 -0
  1641. package/lib/components/ca-upload-files/interfaces/slider.interface.ts +4 -0
  1642. package/lib/components/ca-upload-files/interfaces/upload-files-config.interface.ts +46 -0
  1643. package/lib/components/ca-upload-files/pipes/index.ts +2 -0
  1644. package/lib/components/ca-upload-files/pipes/map-file.pipe.ts +17 -0
  1645. package/lib/components/ca-upload-files/pipes/upload-class.pipe.ts +41 -0
  1646. package/lib/components/ca-upload-files/services/index.ts +1 -0
  1647. package/lib/components/ca-upload-files/services/upload-file.service.ts +34 -0
  1648. package/lib/components/ca-upload-files/utils/svg-routes/files-upload-svg-routes.ts +6 -0
  1649. package/lib/components/ca-upload-files/utils/svg-routes/index.ts +1 -0
  1650. package/lib/components/ca-vehicle-list/ca-vehicle-list.component.html +157 -0
  1651. package/lib/components/ca-vehicle-list/ca-vehicle-list.component.scss +80 -0
  1652. package/lib/components/ca-vehicle-list/ca-vehicle-list.component.spec.ts +22 -0
  1653. package/lib/components/ca-vehicle-list/ca-vehicle-list.component.stories.ts +56 -0
  1654. package/lib/components/ca-vehicle-list/ca-vehicle-list.component.ts +92 -0
  1655. package/lib/components/ca-vehicle-list/enums/index.ts +1 -0
  1656. package/lib/components/ca-vehicle-list/enums/vehicle-list.enum.ts +4 -0
  1657. package/lib/components/ca-vehicle-list/interfaces/index.ts +2 -0
  1658. package/lib/components/ca-vehicle-list/interfaces/vehicle-list-actions-emit.interface.ts +5 -0
  1659. package/lib/components/ca-vehicle-list/interfaces/vehicle-list-config.interface.ts +9 -0
  1660. package/lib/components/ca-vehicle-list/models/index.ts +1 -0
  1661. package/lib/components/ca-vehicle-list/models/vehicle-list.model.ts +12 -0
  1662. package/lib/components/ca-vehicle-list/types/index.ts +1 -0
  1663. package/lib/components/ca-vehicle-list/types/vehicle-list.type.ts +5 -0
  1664. package/lib/components/ca-vehicle-list/utils/constants/index.ts +1 -0
  1665. package/lib/components/ca-vehicle-list/utils/constants/vehicle-list.constants.ts +40 -0
  1666. package/lib/components/ca-vehicle-list/utils/svg-routes/index.ts +1 -0
  1667. package/lib/components/ca-vehicle-list/utils/svg-routes/vehicle-list-svg-routes.ts +8 -0
  1668. package/lib/directives/description-items-text-count.directive.ts +242 -0
  1669. package/lib/directives/hover-svg-directives.ts +49 -0
  1670. package/lib/directives/index.ts +3 -0
  1671. package/lib/directives/placeholder-directive.ts +51 -0
  1672. package/lib/enums/animation-state.enum.ts +4 -0
  1673. package/lib/enums/color.enum.ts +9 -0
  1674. package/lib/enums/common-element.enum.ts +8 -0
  1675. package/lib/enums/date-time-formats.enum.ts +14 -0
  1676. package/lib/enums/dispatch-status.enum.ts +24 -0
  1677. package/lib/enums/dropdown.enum.ts +20 -0
  1678. package/lib/enums/filter-color.enum.ts +14 -0
  1679. package/lib/enums/general-actions.enum.ts +71 -0
  1680. package/lib/enums/gps-heading-direction.enum.ts +10 -0
  1681. package/lib/enums/gps-motion-status.enum.ts +7 -0
  1682. package/lib/enums/index.ts +22 -0
  1683. package/lib/enums/load-filter.enum.ts +25 -0
  1684. package/lib/enums/load-status.enum.ts +58 -0
  1685. package/lib/enums/position.enum.ts +10 -0
  1686. package/lib/enums/shared-string.enum.ts +79 -0
  1687. package/lib/enums/string-placeholder.enum.ts +20 -0
  1688. package/lib/enums/style-property.enum.ts +4 -0
  1689. package/lib/enums/styling.enum.ts +13 -0
  1690. package/lib/enums/thousand-separator-format.enum.ts +5 -0
  1691. package/lib/enums/trailer-name.enum.ts +18 -0
  1692. package/lib/enums/truck-name.enum.ts +13 -0
  1693. package/lib/enums/unit.enum.ts +30 -0
  1694. package/lib/interfaces/dropdown-menu/table-card-body-actions.interface.ts +5 -0
  1695. package/lib/interfaces/gps-current-location/gps-current-location.interface.ts +20 -0
  1696. package/lib/interfaces/index.ts +5 -0
  1697. package/lib/interfaces/table/index.ts +2 -0
  1698. package/lib/interfaces/table/sortOrder.ts +7 -0
  1699. package/lib/interfaces/table/table-column.interface.ts +25 -0
  1700. package/lib/interfaces/user/company-user.interface.ts +10 -0
  1701. package/lib/interfaces/user/user-avatar-file.interface.ts +9 -0
  1702. package/lib/interfaces/user/user.interface.ts +14 -0
  1703. package/lib/models/address-entity.model.ts +12 -0
  1704. package/lib/models/address-list-response.model.ts +3 -0
  1705. package/lib/models/address-response.model.ts +7 -0
  1706. package/lib/models/array-status.model.ts +38 -0
  1707. package/lib/models/autocomplete-search-layer.model.ts +32 -0
  1708. package/lib/models/bank-response.ts +7 -0
  1709. package/lib/models/card-models/card-table-data.model.ts +924 -0
  1710. package/lib/models/cdl-response.ts +26 -0
  1711. package/lib/models/cdl-restriction-response.ts +11 -0
  1712. package/lib/models/color-response.ts +6 -0
  1713. package/lib/models/dashboard/custom-period-range.model.ts +5 -0
  1714. package/lib/models/dashboard/dropdown-list-item.model.ts +4 -0
  1715. package/lib/models/enumValue.ts +4 -0
  1716. package/lib/models/file-response.ts +9 -0
  1717. package/lib/models/filter-output-params.model.ts +6 -0
  1718. package/lib/models/filter-output.model.ts +6 -0
  1719. package/lib/models/highlight-text.model.ts +4 -0
  1720. package/lib/models/index.ts +8 -0
  1721. package/lib/models/load/load-possible-statuses-response.model.ts +6 -0
  1722. package/lib/models/load/load-status-response.model.ts +8 -0
  1723. package/lib/models/load-status-history-response.model.ts +17 -0
  1724. package/lib/models/long-lat.model.ts +4 -0
  1725. package/lib/models/mixin.model.ts +1 -0
  1726. package/lib/models/note-active-options.model.ts +6 -0
  1727. package/lib/models/owner-response.ts +24 -0
  1728. package/lib/models/pMTrailerShortResponse.ts +9 -0
  1729. package/lib/models/pMTruckShortResponse.ts +9 -0
  1730. package/lib/models/payroll-list-summary.model.ts +12 -0
  1731. package/lib/models/repairModalResponse.ts +9 -0
  1732. package/lib/models/state-response.ts +8 -0
  1733. package/lib/models/table-models/all-table-animation.model.ts +15 -0
  1734. package/lib/models/table-models/table-body-color-label.model.ts +11 -0
  1735. package/lib/models/tabs.model.ts +6 -0
  1736. package/lib/models/time-filter.model.ts +8 -0
  1737. package/lib/models/trailer-dispatch-modal-response.ts +12 -0
  1738. package/lib/models/trailer-minimal-response.ts +12 -0
  1739. package/lib/models/trailer-type-response.ts +7 -0
  1740. package/lib/models/truck-dispatch-modal-response.ts +19 -0
  1741. package/lib/models/truck-minimal-response.ts +14 -0
  1742. package/lib/models/truck-response.ts +0 -0
  1743. package/lib/models/truck-type-response.ts +6 -0
  1744. package/lib/models/user-selected.model.ts +8 -0
  1745. package/lib/pipes/ca-svg.pipe.ts +33 -0
  1746. package/lib/pipes/date-from-backend.pipe.ts +12 -0
  1747. package/lib/pipes/date-from-string.pipe.ts +46 -0
  1748. package/lib/pipes/date-to-time-from-backend.pipe.ts +15 -0
  1749. package/lib/pipes/date-wait-time.pipe.ts +36 -0
  1750. package/lib/pipes/date.pipe.ts +34 -0
  1751. package/lib/pipes/dispatch-status-color.pipe.ts +80 -0
  1752. package/lib/pipes/dispatch-status-colors.pipe.ts +60 -0
  1753. package/lib/pipes/dropdown-load-status-color.pipe.ts +159 -0
  1754. package/lib/pipes/format-city-state.pipe.ts +20 -0
  1755. package/lib/pipes/format-currency.pipe.ts +46 -0
  1756. package/lib/pipes/format-duration.pipe.ts +38 -0
  1757. package/lib/pipes/highlight-search.pipe.ts +41 -0
  1758. package/lib/pipes/index.ts +26 -0
  1759. package/lib/pipes/load-status-background-color.pipe.ts +106 -0
  1760. package/lib/pipes/load-status-color.pipe.ts +151 -0
  1761. package/lib/pipes/load-status-colors.pipe.ts +109 -0
  1762. package/lib/pipes/n-formatter.pipe.ts +41 -0
  1763. package/lib/pipes/name-initials.pipe.ts +26 -0
  1764. package/lib/pipes/progress-bar-line.pipe.ts +25 -0
  1765. package/lib/pipes/row-class.pipe.ts +22 -0
  1766. package/lib/pipes/safe-html.pipe.ts +16 -0
  1767. package/lib/pipes/table-highlight-search-text.pipe.ts +56 -0
  1768. package/lib/pipes/thousand-formater.pipe.ts +15 -0
  1769. package/lib/pipes/thousand-separator.pipe.ts +19 -0
  1770. package/lib/pipes/thousand-to-short-format-pipe.ts +16 -0
  1771. package/lib/pipes/to-lower-case.pipe.ts +12 -0
  1772. package/lib/pipes/truck-trailer-color-finder.pipe.ts +65 -0
  1773. package/lib/pipes/truncate-string.pipe.ts +12 -0
  1774. package/lib/pipes/unit-position.pipe.ts +20 -0
  1775. package/lib/pipes/user-initials.pipe.ts +15 -0
  1776. package/lib/services/google-script.service.ts +45 -0
  1777. package/lib/services/image-base64.service.ts +20 -0
  1778. package/lib/services/truckassist-table.service.ts +18 -0
  1779. package/lib/utils/animations/index.ts +1 -0
  1780. package/lib/utils/animations/toggle-up-down.animation.ts +23 -0
  1781. package/lib/utils/constants/dropdown-menu-content.constants.ts +59 -0
  1782. package/lib/utils/constants/gps-location.constants.ts +108 -0
  1783. package/lib/utils/constants/index.ts +3 -0
  1784. package/lib/utils/constants/search-multiple-states.constant.ts +7 -0
  1785. package/lib/utils/helpers/date-time.helper.ts +22 -0
  1786. package/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.ts +66 -0
  1787. package/lib/utils/helpers/dropdown-menu-content.helper.ts +69 -0
  1788. package/lib/utils/helpers/file.helpers.ts +14 -0
  1789. package/lib/utils/helpers/gps-location.helper.ts +159 -0
  1790. package/lib/utils/helpers/index.ts +7 -0
  1791. package/lib/utils/helpers/methods-calculations.helper.ts +193 -0
  1792. package/lib/utils/helpers/user.helper.ts +19 -0
  1793. package/lib/utils/helpers/uuid.helper.ts +9 -0
  1794. package/lib/utils/svg-routes/index.ts +1 -0
  1795. package/lib/utils/svg-routes/payroll-list-summary-svg-routes.ts +4 -0
  1796. package/lib/utils/svg-routes/shared-svg.routes.ts +91 -0
  1797. package/package.json +1 -1
@@ -0,0 +1,2454 @@
1
+ @let lowestBlue = '#BED0F9';
2
+ @let blueText = '#3B73ED';
3
+ @let whiteText = '#FFFFFF';
4
+ @let defaultColor = '#E5E5E5';
5
+
6
+ <div class="d-flex justify-content-center align-items-center">
7
+ <svg
8
+ #svgElement
9
+ width="458"
10
+ height="296"
11
+ viewBox="0 0 458 296"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ class="overflow-visible d-block"
15
+ >
16
+ <path
17
+ d="M38.9082 287.444L38.5352 287.629V287.073H38.7219L38.9082 287.444Z"
18
+ fill="#E5E5E5"
19
+ stroke="white"
20
+ stroke-linejoin="round"
21
+ />
22
+ <path
23
+ d="M37.9727 287.258L38.3457 286.322V287.258H37.9727Z"
24
+ fill="#E5E5E5"
25
+ stroke="white"
26
+ stroke-linejoin="round"
27
+ />
28
+ <path
29
+ d="M38.9141 287.628L39.1006 287.817L38.9141 288.002V287.628Z"
30
+ fill="#E5E5E5"
31
+ stroke="white"
32
+ stroke-linejoin="round"
33
+ />
34
+ <path
35
+ d="M47.7402 283.162L48.1182 283.347V284.091L47.3672 283.906V283.536L47.7402 283.162Z"
36
+ fill="#E5E5E5"
37
+ stroke="white"
38
+ stroke-linejoin="round"
39
+ />
40
+ <path
41
+ d="M50.183 279.998L50.561 280.188L49.6172 280.932V280.557L50.183 279.998Z"
42
+ fill="#E5E5E5"
43
+ stroke="white"
44
+ stroke-linejoin="round"
45
+ />
46
+ <path
47
+ d="M54.8768 275.16H55.2548L54.8768 275.904L53.933 276.839L52.9957 277.953L52.8089 278.142L52.6227 277.768L52.8089 277.393H52.6227L52.0584 278.697L51.4956 279.256L50.9313 279.44L50.5583 278.886L49.994 277.951L49.8027 277.392L49.4297 277.022L49.6165 276.087L50.1807 275.532L51.1181 275.343V275.902L51.3093 276.461L51.6823 276.646L51.3093 276.276L51.1181 274.783L51.4961 274.414L52.6246 274.229L52.9977 274.039H53.562L53.3757 274.598L53.562 274.783L54.313 274.039L54.691 273.854L54.5043 274.598L54.8768 275.16Z"
48
+ fill="#E5E5E5"
49
+ stroke="white"
50
+ stroke-linejoin="round"
51
+ />
52
+ <path
53
+ d="M55.2621 271.995L55.4489 272.554L55.2621 272.929L53.7605 273.488L53.1912 273.113L53.0045 273.298L53.3825 273.673L53.1912 273.857L52.2539 273.487L53.005 272.369L53.7605 271.066L54.3203 270.881L54.1335 271.625V271.995L54.8846 271.81L55.2621 271.995Z"
54
+ fill="#E5E5E5"
55
+ stroke="white"
56
+ stroke-linejoin="round"
57
+ />
58
+ <path
59
+ d="M43.9863 280.559L44.3643 280.746H43.6133L43.8001 280.559H43.9863Z"
60
+ fill="#E5E5E5"
61
+ stroke="white"
62
+ stroke-linejoin="round"
63
+ />
64
+ <path
65
+ d="M50.936 279.998L51.6871 280.188L51.5003 280.373H50.7493L50.5625 280.188L50.936 279.998Z"
66
+ fill="#E5E5E5"
67
+ stroke="white"
68
+ stroke-linejoin="round"
69
+ />
70
+ <path
71
+ d="M97.8983 271.811H98.2713L98.085 272.186L97.707 272.001L97.8983 271.811Z"
72
+ fill="#E5E5E5"
73
+ stroke="white"
74
+ stroke-linejoin="round"
75
+ />
76
+ <path
77
+ d="M93.3915 263.247L93.5783 263.062L94.5156 262.877V263.062L96.0172 264.55H95.6442L95.0799 263.806L94.8887 263.991L96.204 265.294L96.3952 265.669L96.0172 266.228V266.782L95.4529 267.717L94.8887 266.973V265.855L93.9513 265.111L93.2003 263.623L92.4492 262.687V262.503H92.636L93.2003 263.062L93.3915 263.247Z"
78
+ fill="#E5E5E5"
79
+ stroke="white"
80
+ stroke-linejoin="round"
81
+ />
82
+ <path
83
+ d="M97.1447 267.901H97.7045L98.0825 268.649L97.7045 268.835V269.204L97.8957 269.763H98.2688V270.882L97.8957 270.507L98.082 271.443L97.704 271.253L97.331 270.324V269.765H97.704L97.331 269.391L96.3936 268.836L96.0156 268.277L96.2024 267.718L96.5804 267.533L97.1447 267.901Z"
84
+ fill="#E5E5E5"
85
+ stroke="white"
86
+ stroke-linejoin="round"
87
+ />
88
+ <path
89
+ d="M97.9013 268.09L97.71 267.901L97.337 267.716L97.1502 267.531L96.5859 267.157L96.7727 266.787H98.088L98.6955 267.11L98.088 266.783L98.6523 266.413L100.719 267.527L100.159 268.276H99.5902V267.901L98.6528 267.342V267.716L99.4039 268.086L99.5902 268.461L99.4039 268.83H98.8411L98.1521 267.612L98.8361 268.835V269.02L98.4631 269.205L97.9013 268.09Z"
90
+ fill="#E5E5E5"
91
+ stroke="white"
92
+ stroke-linejoin="round"
93
+ />
94
+ <path
95
+ d="M98.6445 271.624L98.8315 271.439V271.809L98.6445 271.624Z"
96
+ fill="#E5E5E5"
97
+ stroke="white"
98
+ stroke-linejoin="round"
99
+ />
100
+ <path
101
+ d="M63.5156 260.457L63.8925 260.646L63.5156 260.832V260.457Z"
102
+ fill="#E5E5E5"
103
+ stroke="white"
104
+ stroke-linejoin="round"
105
+ />
106
+ <path
107
+ d="M64.0828 259.715H63.7109L64.0828 259.528V259.715Z"
108
+ fill="#E5E5E5"
109
+ stroke="white"
110
+ stroke-linejoin="round"
111
+ />
112
+ <path
113
+ d="M62.9636 261.575L63.3416 261.016V262.879L62.7773 262.509L62.9636 261.575Z"
114
+ fill="#E5E5E5"
115
+ stroke="white"
116
+ stroke-linejoin="round"
117
+ />
118
+ <path
119
+ d="M64.4577 261.76L65.022 261.949L64.644 262.508L64.266 263.063L64.0792 264.181L63.3281 264.556V263.807L64.2655 262.319V261.95L64.4577 261.76Z"
120
+ fill="#E5E5E5"
121
+ stroke="white"
122
+ stroke-linejoin="round"
123
+ />
124
+ <path
125
+ d="M92.2617 267.531L92.453 267.342L93.204 268.086V268.646L92.826 268.83L92.2617 267.531Z"
126
+ fill="#E5E5E5"
127
+ stroke="white"
128
+ stroke-linejoin="round"
129
+ />
130
+ <g
131
+ class="zoomable-state state-AK"
132
+ (mouseenter)="onStateHover('AK', false, $event)"
133
+ (mouseleave)="onStateHover('AK', true, $event)"
134
+ [ngbPopover]="countryPopoverTemplate"
135
+ [disablePopover]="
136
+ currentlyHoveredState?.state !== usaStates['AK'].state
137
+ "
138
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
139
+ triggers="mouseenter:mouseleave"
140
+ autoClose="false"
141
+ container="body"
142
+ >
143
+ <path
144
+ d="M90.1916 263.433L89.0675 264.551L88.3164 264.181H87.9384L87.3741 263.992L85.504 263.247L85.499 263.252V262.878L84.9347 262.508L80.8069 261.573L80.6157 261.388V261.019H80.9937V260.645L80.4294 259.716L80.2381 260.271L79.4871 261.019L77.7982 261.204L76.6696 260.645L74.2302 260.83L71.5975 261.765L69.1536 261.016V260.457L68.3981 260.832L68.7761 261.201L67.2745 260.647L65.5811 262.135L65.2081 261.576L65.3949 261.017H65.7729L66.5239 260.647L66.897 260.273V259.903L65.9597 260.273H65.2086L65.0223 260.088L65.7734 259.529L65.9601 259.344L65.2091 259.714L65.0228 259.344L64.8316 259.529V258.6L63.7075 259.155L63.5162 259.714L62.2009 260.273H62.0141L62.2009 259.155L61.8279 259.344L61.6416 260.273L62.2014 260.458L62.7657 261.761L62.5789 262.509L63.33 263.247L62.952 263.807L61.6416 263.996L60.14 264.181L59.3889 264.551V265.669L58.0736 266.787L57.8868 266.597L57.5088 266.972L57.1357 267.901L55.4424 268.46L54.8781 268.085V267.53L56.1935 266.602L56.5715 265.853H56.1935L55.6297 266.413L55.2566 266.228L54.8786 265.853L55.0699 264.74L55.4429 263.805L55.6297 263.06V262.316L55.2566 261.572L56.0077 261.198L57.1362 260.084L57.5093 260.454H58.0736L58.6334 260.084L57.6961 259.34L57.8779 259.155H56.3807L56.0077 259.525L55.6297 259.895L54.6923 260.643L53.9368 261.946L53.1858 263.994V264.922L52.2484 266.41L51.3111 266.969L50.7468 267.713L50.1825 268.088L49.9958 269.201L50.1825 269.576L50.3688 269.386L51.1199 269.202L52.0636 269.946V270.135L51.8724 270.69V270.695H51.8674L51.4994 271.064L51.1214 271.249L50.7483 271.808L50.5615 273.112L50.1835 273.671L49.6192 274.04L49.2412 273.855L48.6814 274.04L48.3034 274.415L47.9254 275.343H47.5524L46.9866 276.088L46.6135 276.277L46.4223 276.088V276.462L45.2982 277.206V277.391L45.6712 277.206V277.95L43.6098 279.438L43.2318 279.253L43.045 279.997L41.9165 280.371V280.556H42.1032L42.2945 280.93H41.1659L40.7929 281.489L41.538 282.234L40.7929 283.162L38.349 283.721V284.28L38.1622 284.65L37.9709 284.28V283.906L37.5929 283.716L37.4062 284.091H37.0282L36.8414 284.465L35.9041 285.209L34.2107 285.769L33.4597 285.579L33.8377 284.65H33.2769L32.3331 286.882L31.582 287.257L31.0177 287.072V286.137L30.6447 285.952L30.4534 286.322L30.6447 286.696L30.8315 287.44L30.0804 287.624L29.7024 286.696L29.1381 286.881L29.5161 287.625V288.743L28.9518 288.558L28.2008 288.743H26.8859L26.5079 288.928L25.9481 289.487H25.0043L24.8176 288.928V288.558L25.3818 288.369L25.7549 287.815L27.8213 286.88H28.3856L28.5768 287.815H28.9498V286.697L30.0784 286.323L31.7718 284.465L32.8959 283.53L34.0244 283.16L35.153 283.53H34.9657V283.904L35.157 284.279L35.53 284.089L35.7213 283.715V283.16L36.2811 281.857L37.4096 280.928L39.6623 279.436L39.8535 279.625H40.4178L40.2311 278.881L40.6041 278.137L42.4837 276.275L42.8617 272.735L43.4216 271.807L43.7996 271.247L43.9863 270.503L43.7996 270.319L43.6128 270.688L41.3552 271.807L40.9772 271.621L40.2261 270.503L40.0393 270.688L39.8481 271.432L40.2261 272.361L39.6618 272.736H39.2873L38.1587 270.688L37.7807 270.503L37.5939 271.058H37.4072L36.4698 270.32L36.6566 270.13L36.4698 269.946L34.9632 270.874V270.879H34.772L34.2122 271.249V271.623L33.6479 271.808L32.3326 271.623L32.7106 271.433L33.0836 271.623L33.2749 270.879L33.0836 269.761L32.7106 269.017L33.4557 268.082L33.0826 266.968V266.787L32.1453 264.925L31.7723 265.669L30.452 266.413L29.1366 266.597L28.3856 266.228L28.1988 265.669L27.4477 264.551L25.7544 263.063L26.883 262.319L26.6962 261.76H26.3226V261.575L26.5094 261.39V261.201L26.8874 261.016L27.0742 260.646L26.3231 260.272L26.1364 260.646L25.5721 260.457L24.6338 258.594L24.8205 257.481L26.8869 254.873L27.8243 254.128L27.6375 253.569L28.0155 252.641L28.7666 251.706L29.5176 251.521L30.8329 252.639L31.3972 252.45L32.3346 251.521L32.8988 250.777L33.4587 250.962H34.2142L35.1515 250.777L35.7158 249.659L35.9026 249.1L35.3383 247.427L34.9652 246.868V246.315H35.3383L35.9026 245.945V245.386L35.1515 244.637L34.7785 245.196L33.2769 245.571L32.5213 246.13L29.5176 245.945L28.0115 246.315L25.9451 245.57L25.5721 245.196L25.3853 244.821L25.5721 244.267L25.3853 243.149L25.5721 242.964L25.7589 242.405L24.0655 241.661L22.9414 240.917V240.358L26.3226 238.496L26.6957 238.87L27.6395 239.055V238.87L27.0752 238.496V238.126L29.7079 237.191V237.196H30.4634L30.8364 237.381L30.4634 238.684L30.6501 239.428L34.0314 239.798L34.9752 238.869H35.5395L35.3482 238.5L34.7839 238.125L34.2241 237.756L33.4686 236.821L33.0955 236.636L32.9088 236.077L33.0955 235.892H33.4686L34.0329 237.196L34.7839 237.94L35.1619 237.755L34.7839 237.565L34.2241 236.821L34.5972 235.707L34.7839 235.892V235.707L34.2241 235.333L33.2803 235.518H32.5293L31.2139 234.959L30.6497 232.912L28.77 230.864L27.6459 230.305L27.0816 229.561L27.4547 228.443L27.6459 227.14L28.9613 227.329L30.6501 227.14L31.2144 226.955L32.3385 225.652L32.9078 223.979L34.0319 222.301L34.7829 221.557L35.3472 221.746L36.0983 221.372L37.2268 220.069L37.9779 219.325L38.5422 218.95L38.7285 219.325L38.3554 219.51H38.7285L40.6031 218.953L42.292 216.905L43.7986 217.649V218.024L43.2343 218.578V219.142L43.7986 218.953L44.1716 218.024L44.5496 217.649L45.1139 218.208L45.2977 218.953L45.862 219.142L46.0488 218.767L46.9861 218.578H48.4877L48.6745 218.767L48.3014 219.327V219.512L49.43 219.697L49.2388 220.256H49.9898L50.9336 219.697L53 219.512L54.3153 219.881H54.8796L55.4394 220.071L55.6307 220.256H56.3817L57.319 220.071H58.4476L59.763 220.44L60.141 220.255L60.892 219.696L61.0788 219.511L61.4568 219.141L62.7721 219.327L65.7759 220.255L66.7132 223.236L67.2775 225.093L70.4719 236.078L75.1685 252.269H75.1635L77.0432 258.6H77.0481L77.2349 258.974H78.1722L78.3635 258.6L79.4876 258.785L79.8656 258.041L80.9942 257.671L81.1809 258.785L81.554 258.974L82.4978 259.159L82.8708 259.718L85.6927 261.206L86.2525 262.504L87.3766 260.827L87.9409 260.642V258.78L88.692 257.851L88.6969 257.856L89.07 257.297L89.821 257.481L90.3853 257.856L90.7584 258.78L90.7633 258.785L90.9501 258.969H91.7011L92.0742 259.339L92.261 259.154L92.639 259.713H92.8302L93.2033 260.088L93.7675 260.272L95.6472 261.016V261.391L96.591 261.945L96.586 261.955L98.8387 263.77H98.8481L99.5892 264.367L100.158 264.926V265.485L100.928 265.47L101.005 266.105L100.861 266.84L100.455 267.005L99.7805 266.782L99.2162 266.413L99.0294 266.039L98.0856 266.228H97.5238L97.1125 266.157L97.0266 265.494L96.3952 264.366V264.001L96.2085 263.456V263.807H95.8354L94.5151 262.693L93.5778 263.063L92.0762 262.134L91.1324 260.457L90.5681 259.528L90.0038 259.154V259.339L90.9476 260.826L91.6987 261.944L92.636 263.432H91.8849L91.3207 262.878L90.3833 263.432L90.0053 262.318L89.441 261.759V262.129H89.2543L87.5609 261.759V261.944H88.3145L89.4386 262.319L90.1916 263.433Z"
145
+ fill="#E5E5E5"
146
+ stroke="white"
147
+ stroke-linejoin="round"
148
+ [attr.fill]="usaStates['AK']['color']"
149
+ />
150
+ <path
151
+ d="M47.874 247L50.655 240.7H52.41L55.2 247H53.346L51.168 241.573H51.87L49.692 247H47.874ZM49.395 245.776L49.854 244.462H52.932L53.391 245.776H49.395ZM57.2982 245.605L57.1992 243.607L59.9082 240.7H61.8702L59.1702 243.625L58.1802 244.66L57.2982 245.605ZM55.7052 247V240.7H57.4692V247H55.7052ZM59.9352 247L57.8832 244.399L59.0442 243.157L62.0052 247H59.9352Z"
152
+ fill="white"
153
+ [attr.fill]="
154
+ usaStates['AK']['color'] === lowestBlue
155
+ ? blueText
156
+ : whiteText
157
+ "
158
+ />
159
+ </g>
160
+ <path
161
+ d="M62.3945 260.646V260.457L62.7664 260.646L62.5807 260.832L62.3945 260.646Z"
162
+ fill="#E5E5E5"
163
+ stroke="white"
164
+ stroke-linejoin="round"
165
+ />
166
+ <path
167
+ d="M96.4007 270.695V270.7H96.5875V271.255L96.2094 271.07L95.2721 270.135V269.58L94.8941 269.95L94.7073 269.58L94.143 269.391L93.77 268.277L93.392 267.902V267.533L93.0189 267.717L92.4542 267.343H92.0762L90.3873 265.856L89.823 265.671L89.6367 265.112L89.823 264.183L90.574 263.994L90.9521 263.624L93.0185 263.994L93.2047 264.368L93.3915 264.927L93.2047 265.112L92.8267 265.297L91.8894 265.112L92.8267 265.486L93.5822 265.112L94.142 266.041V266.23L93.5822 266.415L92.2619 265.856L92.0752 266.041L92.6394 266.785L92.8262 266.23L93.5817 266.6L94.3328 266.415L94.5191 266.784L94.1411 266.974H94.5191L95.8344 269.021L96.5855 270.694L96.4007 270.695Z"
168
+ fill="#E5E5E5"
169
+ stroke="white"
170
+ stroke-linejoin="round"
171
+ />
172
+ <path
173
+ d="M100.907 272.556L100.529 273.492L99.7734 273.307V272.748L100.529 272.373L100.907 272.556Z"
174
+ fill="#E5E5E5"
175
+ stroke="white"
176
+ stroke-linejoin="round"
177
+ />
178
+ <path
179
+ d="M99.9648 268.649L100.529 268.279L100.902 269.024L100.529 269.208H99.9648V268.649Z"
180
+ fill="#E5E5E5"
181
+ stroke="white"
182
+ stroke-linejoin="round"
183
+ />
184
+ <path
185
+ d="M104.09 272.37L105.034 274.044V274.603L104.47 274.792L103.341 273.857L101.652 273.303L102.59 274.606L102.968 274.231L103.341 274.416L103.719 275.352H103.153L100.895 273.859L100.709 273.489L101.46 272.745L100.895 272.186H100.335L99.3917 271.811L99.5785 271.627H99.9565L100.143 271.442L99.5785 270.697L99.3917 271.252L99.0186 271.442L98.8274 271.252L99.0186 270.697L98.6406 269.762V269.578L99.578 269.203L102.211 270.691L103.339 271.994L104.09 272.37Z"
186
+ fill="#E5E5E5"
187
+ stroke="white"
188
+ stroke-linejoin="round"
189
+ />
190
+ <path
191
+ d="M106.351 272.559L106.537 272.744V273.115H105.973L106.351 272.559Z"
192
+ fill="#E5E5E5"
193
+ stroke="white"
194
+ stroke-linejoin="round"
195
+ />
196
+ <path
197
+ d="M108.606 270.138V271.625L108.228 272.929L107.668 273.113L107.29 272.929L106.353 271.625L106.54 270.881L105.789 269.578L104.473 268.65L105.975 269.953L106.353 271.066L106.167 271.625L105.416 271.81L104.426 271.53L104.851 271.81L105.038 272.558L104.473 271.999L104.306 271.497L104.1 271.44V271.065L104.286 270.696L103.722 269.578L103.344 269.762L103.722 269.952V271.255H103.158L102.594 270.696H102.785L102.977 270.137L102.599 268.65L102.412 269.394L102.599 269.763L102.412 270.138L101.468 269.953L100.904 269.578V269.209L101.282 268.465L100.904 267.162L100.449 267.01L100.861 266.844L101.004 266.109L101.655 266.228L102.219 266.787L102.597 266.602L104.099 266.972L104.85 266.787L105.974 267.346H106.538L106.725 266.972L107.289 267.346V268.46L106.562 268.052L107.289 268.465L108.606 270.138Z"
198
+ fill="#E5E5E5"
199
+ stroke="white"
200
+ stroke-linejoin="round"
201
+ />
202
+ <path
203
+ d="M105.972 272.555L105.408 272.93L105.222 272.555L105.035 271.811L105.786 272L105.972 272.555Z"
204
+ fill="#E5E5E5"
205
+ stroke="white"
206
+ stroke-linejoin="round"
207
+ />
208
+ <path
209
+ d="M22.0057 265.11L21.4414 264.55V264.18L21.6282 263.996H22.7577L23.5088 263.437L23.6956 263.622L24.2599 263.437L25.1972 264.181L25.0109 265.295L24.8241 265.669L23.8868 266.039L22.0057 265.11Z"
210
+ fill="#E5E5E5"
211
+ stroke="white"
212
+ stroke-linejoin="round"
213
+ />
214
+ <path
215
+ d="M15.2395 249.666L14.6797 249.291V248.921L15.0577 247.803L15.2395 247.434V247.992L16.3681 248.736L17.3119 248.177L17.6849 248.362L18.0629 248.736V249.291L19.0002 250.039L20.5019 250.409L20.1288 251.153L19.3778 250.783L18.8135 251.153L18.2492 250.968L17.1191 249.666L16.3681 249.291H15.995L15.2395 249.666Z"
216
+ fill="#E5E5E5"
217
+ stroke="white"
218
+ stroke-linejoin="round"
219
+ />
220
+ <path
221
+ d="M22.5741 243.709L22.3828 243.338L22.7608 243.148L22.9476 243.524L22.5741 243.709Z"
222
+ fill="#E5E5E5"
223
+ stroke="white"
224
+ stroke-linejoin="round"
225
+ />
226
+ <path
227
+ d="M14.4863 279.071L14.1133 278.7L14.4863 278.886H14.6776L14.4863 279.071Z"
228
+ fill="#E5E5E5"
229
+ stroke="white"
230
+ stroke-linejoin="round"
231
+ />
232
+ <path
233
+ d="M36.8377 285.771H36.4647L36.2734 285.581L36.4647 285.396H36.8377V285.771Z"
234
+ fill="#E5E5E5"
235
+ stroke="white"
236
+ stroke-linejoin="round"
237
+ />
238
+ <path
239
+ d="M32.7083 250.408H32.1484L32.3352 250.037H32.7083V250.408Z"
240
+ fill="#E5E5E5"
241
+ stroke="white"
242
+ stroke-linejoin="round"
243
+ />
244
+ <path
245
+ d="M35.911 285.955H36.2841V286.324L35.911 286.884L35.16 286.699L34.9688 285.954L35.16 285.77H35.533L35.911 285.955Z"
246
+ fill="#E5E5E5"
247
+ stroke="white"
248
+ stroke-linejoin="round"
249
+ />
250
+ <path
251
+ d="M23.3187 290.235L22.9407 290.611L22.7539 290.05L22.9407 289.864H23.3187V290.235Z"
252
+ fill="#E5E5E5"
253
+ stroke="white"
254
+ stroke-linejoin="round"
255
+ />
256
+ <path
257
+ d="M23.6934 290.792L23.8846 290.98L23.3203 290.792H23.6934Z"
258
+ fill="#E5E5E5"
259
+ stroke="white"
260
+ stroke-linejoin="round"
261
+ />
262
+ <path
263
+ d="M13.5526 275.909L13.1746 276.28L12.9883 276.095V275.909H13.5526Z"
264
+ fill="#E5E5E5"
265
+ stroke="white"
266
+ stroke-linejoin="round"
267
+ />
268
+ <path
269
+ d="M26.8863 238.307L26.6953 238.493V238.307H26.8863Z"
270
+ fill="#E5E5E5"
271
+ stroke="white"
272
+ stroke-linejoin="round"
273
+ />
274
+ <path
275
+ d="M10.544 261.946L10.3528 261.576L9.79297 260.832L9.97924 260.457L10.1705 261.016L10.3523 261.391L11.1078 261.761L11.2941 261.946H10.544Z"
276
+ fill="#E5E5E5"
277
+ stroke="white"
278
+ stroke-linejoin="round"
279
+ />
280
+ <path
281
+ d="M37.4068 286.141L37.5936 286.885L36.6562 288.004V286.885L36.843 286.7L37.221 286.885L37.4068 286.141Z"
282
+ fill="#E5E5E5"
283
+ stroke="white"
284
+ stroke-linejoin="round"
285
+ />
286
+ <path
287
+ d="M31.0156 287.629L31.5799 287.443V287.819L31.3931 288.005L31.0156 287.629Z"
288
+ fill="#E5E5E5"
289
+ stroke="white"
290
+ stroke-linejoin="round"
291
+ />
292
+ <path
293
+ d="M30.0774 289.489L30.6417 289.674V289.864H30.0774L29.8906 289.674L30.0774 289.489Z"
294
+ fill="#E5E5E5"
295
+ stroke="white"
296
+ stroke-linejoin="round"
297
+ />
298
+ <path
299
+ d="M24.4504 290.608H24.6417V290.796H23.8906L24.4504 290.608Z"
300
+ fill="#E5E5E5"
301
+ stroke="white"
302
+ stroke-linejoin="round"
303
+ />
304
+ <path
305
+ d="M33.0877 286.884L33.2745 287.074H32.8965L32.5234 286.699L32.7102 286.514L33.0877 286.884Z"
306
+ fill="#E5E5E5"
307
+ stroke="white"
308
+ stroke-linejoin="round"
309
+ />
310
+ <g
311
+ class="zoomable-state state-AL"
312
+ (mouseenter)="onStateHover('AL', false, $event)"
313
+ (mouseleave)="onStateHover('AL', true, $event)"
314
+ [ngbPopover]="countryPopoverTemplate"
315
+ [disablePopover]="
316
+ currentlyHoveredState?.state !== usaStates['AL'].state
317
+ "
318
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
319
+ triggers="mouseenter:mouseleave"
320
+ autoClose="false"
321
+ container="body"
322
+ >
323
+ <path
324
+ d="M337.381 219.666L332.838 220.211L332.747 220.225L327.725 220.803L326.295 220.941V220.946L324.407 221.135L321.59 221.4H321.585L320.686 221.467L317.151 221.779L313.062 222.163V222.168L312.847 223.623L312.971 223.832L313.928 224.865L314.23 225.074L314.282 225.093L314.44 225.121L314.761 225.282L315.181 225.543L315.296 225.728L315.334 225.856L315.349 226.036L315.253 228.415L315.124 229.609L314.516 229.879L313.239 230.329L311.895 230.666L311.541 230.723L310.364 230.794L310.314 230.733L310.802 230.557L312.079 229.752L310.386 226.35L310.266 226.179L310.209 226.13L309.768 225.973L309.639 225.93L309.501 225.881L309.467 225.905L309.037 226.364L308.773 227.961L307.946 229.539L307.396 229.364L306.626 229.35L306.416 229.383L306.32 229.416L306.138 229.605L305.65 225.639L305.302 222.801L305.14 221.545V221.54L304.327 215.228L304.102 213.091L304.164 209.442L304.188 208.552C304.21 207.563 304.233 206.574 304.255 205.585L304.317 201.733L304.331 201.055V201.05L304.398 197.79L304.448 195.083L304.498 192.766L304.589 189.316L304.593 189.004L304.651 186.421V186.416L304.689 184.857L304.718 183.554V183.549L304.809 180.128L303.805 179.067L305.713 178.792L309.094 178.531L312.514 178.27V178.275L312.624 178.266V178.271L315.967 178.038L316.436 177.996V177.986L320.583 177.584H320.65V177.579L324.634 177.195L326.944 176.986V176.991L327.289 178.323L328.011 180.853L328.121 181.228L328.312 181.91L328.317 181.915V181.92L329.073 184.455L329.685 186.654L330.033 187.9L330.22 188.568L330.965 191.225L331.481 193.04L331.649 193.628L332.538 196.812L332.606 197.045L333.342 199.575L333.93 200.869L334.595 202.319L335.48 203.29H335.475L335.733 204.797L335.628 205.186L335.652 205.276L335.71 205.342L336.317 205.503L336.547 205.693L336.638 205.873L336.561 206.214L336.537 206.247L335.537 208.209V208.213L335.561 209.024L335.13 211.36L335.279 211.557L335.289 211.571L336.31 214.092L336.195 216.414L336.096 216.709L336.033 216.989L336.163 217.766L336.259 217.984L336.34 218.033H336.421L336.493 218.053L336.94 218.536L337.007 218.664L337.106 218.877L337.381 219.666Z"
325
+ fill="#E5E5E5"
326
+ stroke="white"
327
+ stroke-linejoin="round"
328
+ [attr.fill]="usaStates['AL']['color']"
329
+ />
330
+ <path
331
+ d="M312.874 204.001L315.655 197.701H317.41L320.2 204.001H318.346L316.168 198.574H316.87L314.692 204.001H312.874ZM314.395 202.777L314.854 201.463H317.932L318.391 202.777H314.395ZM320.705 204.001V197.701H322.487V202.588H325.493V204.001H320.705Z"
332
+ fill="white"
333
+ [attr.fill]="
334
+ usaStates['AL']['color'] === lowestBlue
335
+ ? blueText
336
+ : whiteText
337
+ "
338
+ />
339
+ </g>
340
+ <g
341
+ class="zoomable-state state-AR"
342
+ (mouseenter)="onStateHover('AR', false, $event)"
343
+ (mouseleave)="onStateHover('AR', true, $event)"
344
+ [ngbPopover]="countryPopoverTemplate"
345
+ [disablePopover]="
346
+ currentlyHoveredState?.state !== usaStates['AR'].state
347
+ "
348
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
349
+ triggers="mouseenter:mouseleave"
350
+ autoClose="false"
351
+ container="body"
352
+ >
353
+ <path
354
+ d="M289.443 170.136L289.338 170.448L289.912 170.685L289.86 171.154L289.264 171.244L289.164 171.509L288.926 171.784L288.391 171.945L288.085 171.896L287.75 172.191L288.027 172.732L288.477 172.519L288.735 172.856L288.597 173.197L287.898 173.633L288.166 173.998L288.29 174.49L287.664 174.367L287.511 174.101L287.171 174.13L287.113 174.642L287.39 174.95L287.266 175.846L287.128 175.86L286.76 175.585L286.587 175.121L286.339 175.357L285.937 175.495L285.975 175.94L286.133 175.902V175.646L286.415 175.533L286.912 175.959L286.687 176.187L286.737 176.381L286.67 176.741L286.206 177.021L286.335 177.215L286.746 177.206L287 177.471L287.076 177.77L286.813 178.182L287.148 178.339L287.119 178.727L286.837 178.949L286.334 178.769L286.167 178.966L285.885 179.828L285.053 179.904L284.943 180.245L284.962 180.397L285.187 181.866L284.183 182.23V182.235L282.8 184.41V184.415L282.924 185.68L283.02 186.661L282.953 186.87L282.944 186.889L282.924 186.903L282.613 187.173L282.222 187.358L281.753 187.453L281.279 187.548L280.418 189.078L280.007 189.913L279.878 190.183L279.911 190.287L279.916 190.311L280.323 190.633L280.418 190.87L280.366 191.234L278.591 192.12L277.86 195.233L277.81 195.484L277.82 195.508L277.877 195.603L278.145 195.807L278.403 196.01V196.02L278.379 196.138L278.221 196.276L277.547 196.541L277.671 196.885L277.685 196.89L278.149 197.203L278.532 197.459L278.603 197.71L278.494 197.928L278.02 198.065L278.479 199.373L278.79 199.932L279.029 200.183L279.058 201.013V201.018L278.766 202.207L278.761 202.216L278.494 202.515L278.417 202.6L277.513 202.633L275.944 202.695L275.715 202.709L270.133 202.932V202.937L264.107 203.098L261.687 203.147V203.142L259.396 203.204L257.081 203.265H256.799L254.192 203.322H254.106L252.006 203.371L251.886 197.543H251.881L251.661 197.363L251.494 197.292L250.609 197.117L250.098 197.192L249.963 197.207L249.92 197.249L249.036 197.695L248.543 197.43L248.409 197.34L248.036 197.103L247.974 197.022L247.906 196.866L247.83 196.676L247.854 193.369V193.359L247.873 190.634L247.922 184.735V184.727L247.946 182.486C247.964 180.849 247.982 179.213 247.999 177.577L248.004 177.387V177.382L247.602 174.753L247.396 173.435H247.391L246.813 169.682H246.818L246.712 169.028L246.172 165.333L250.917 165.257L252.763 165.219V165.214L255.236 165.152L257.599 165.096H257.771V165.091L261.645 164.977L262.368 164.959V164.963L264.501 164.888L267.825 164.75V164.755L268.084 164.741L272.015 164.566L273.967 164.499V164.49L274.34 164.481H274.345L276.803 164.353L279.797 164.187L281.624 164.088L284.743 163.913L284.977 163.899L285.322 163.89L286.106 164.984L286.192 165.098L286.249 165.96L286.154 166.211L286.092 166.309L285.13 167.143H285.125L283.777 169.48L284.475 169.43V169.44L287.383 169.231L289.684 169.046L289.727 169.307L290.153 169.525L290.368 169.734L290.263 170.226L289.602 170.107L289.443 170.136Z"
355
+ fill="#E5E5E5"
356
+ stroke="white"
357
+ stroke-linejoin="round"
358
+ [attr.fill]="usaStates['AR']['color']"
359
+ />
360
+ <path
361
+ d="M258.874 186L261.655 179.7H263.41L266.2 186H264.346L262.168 180.573H262.87L260.692 186H258.874ZM260.395 184.776L260.854 183.462H263.932L264.391 184.776H260.395ZM266.705 186V179.7H269.585C270.161 179.7 270.656 179.793 271.07 179.979C271.49 180.165 271.814 180.435 272.042 180.789C272.27 181.137 272.384 181.551 272.384 182.031C272.384 182.505 272.27 182.916 272.042 183.264C271.814 183.606 271.49 183.87 271.07 184.056C270.656 184.236 270.161 184.326 269.585 184.326H267.695L268.487 183.579V186H266.705ZM270.602 186L269.036 183.705H270.935L272.51 186H270.602ZM268.487 183.768L267.695 182.949H269.477C269.849 182.949 270.125 182.868 270.305 182.706C270.491 182.544 270.584 182.319 270.584 182.031C270.584 181.737 270.491 181.509 270.305 181.347C270.125 181.185 269.849 181.104 269.477 181.104H267.695L268.487 180.285V183.768Z"
362
+ fill="white"
363
+ [attr.fill]="
364
+ usaStates['AR']['color'] === lowestBlue
365
+ ? blueText
366
+ : whiteText
367
+ "
368
+ />
369
+ </g>
370
+ <g
371
+ class="zoomable-state state-AZ"
372
+ (mouseenter)="onStateHover('AZ', false, $event)"
373
+ (mouseleave)="onStateHover('AZ', true, $event)"
374
+ [ngbPopover]="countryPopoverTemplate"
375
+ [disablePopover]="
376
+ currentlyHoveredState?.state !== usaStates['AZ'].state
377
+ "
378
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
379
+ triggers="mouseenter:mouseleave"
380
+ autoClose="false"
381
+ container="body"
382
+ >
383
+ <path
384
+ d="M120.634 152.213L119.118 163.045L116.961 178.506L115.741 187.197H115.736L113.685 201.84L112.016 213.667L108.515 213.165L98.928 211.772H98.9231L94.1401 211.037L93.0304 210.781L90.6957 209.46V209.455L90.2556 209.204L88.8494 208.398L77.753 202.058L75.5336 200.807L73.7637 199.755V199.76L73.6107 199.665L61.2422 192.301L61.5437 190.993L61.5725 190.95L61.654 190.922L61.8119 190.955L62.2044 190.594L62.5774 190.059L63.5386 190.13L64.8157 189.343L65.2175 188.788L65.299 188.508L65.3849 187.793L65.1122 187.162L65.0625 187.105H65.0576L64.2539 186.972L64.1048 186.906L63.6841 186.611L63.4929 186.108L63.4834 186.089L64.0239 182.782L64.9468 182.554L66.0565 181.26L66.4107 180.03L66.6734 178.741L66.7231 178.386L66.9576 177.552L67.2159 177.109L68.0459 175.954L69.1794 175.528L69.9543 175.21L71.1067 174.552L71.1306 174.538L71.1594 174.064L70.7387 173.329L70.2459 172.788L69.6851 172.119L69.1158 169.75L69.087 169.314L68.4751 168.362L67.9917 167.111L67.9823 167.054L67.9967 166.903L68.2739 165.695L69.0965 164.33L69.1779 164.069L69.2276 163.851L69.237 163.609L69.2991 162.281L69.2847 161.958L69.2082 161.319L69.0935 159.973L69.1988 158.063L69.4377 154.941L69.5475 153.875L69.5569 153.808L69.6766 153.7L69.7626 153.65L70.7476 153.423H71.288L71.7902 153.527L72.9094 153.854L73.0291 153.963L73.2923 154.328L73.3976 154.598L73.417 154.678V154.702L73.4265 154.792L73.4885 154.977L73.6872 155.299L73.7687 155.375L73.8785 155.46L73.9282 155.47L74.1005 155.489L74.6315 155.498H74.641L74.6906 155.47L74.8054 155.337L75.9245 153.844L76.2926 151.93L76.5077 150.83L76.8554 148.855L76.8986 148.637L77.2428 146.841L77.5727 145.149L87.4397 146.97L90.5249 147.512L100.215 149.127V149.132L105.921 150.018L108.126 150.35L109.532 150.624L112.378 151.051L120.634 152.213Z"
385
+ fill="#E5E5E5"
386
+ stroke="white"
387
+ stroke-linejoin="round"
388
+ [attr.fill]="usaStates['AZ']['color']"
389
+ />
390
+ <path
391
+ d="M89.874 182L92.655 175.7H94.41L97.2 182H95.346L93.168 176.573H93.87L91.692 182H89.874ZM91.395 180.776L91.854 179.462H94.932L95.391 180.776H91.395ZM97.3902 182V180.884L101.098 176.483L101.314 177.113H97.4712V175.7H102.898V176.816L99.1902 181.217L98.9742 180.587H103.033V182H97.3902Z"
392
+ fill="white"
393
+ [attr.fill]="
394
+ usaStates['AZ']['color'] === lowestBlue
395
+ ? blueText
396
+ : whiteText
397
+ "
398
+ />
399
+ </g>
400
+ <path
401
+ d="M18.103 165.316L18.8203 165.966L18.7964 166.331L18.7915 166.397L18.7532 166.407L17.4379 166.558L17.3231 166.563L16.969 166.208L16.9069 166.099L16.4961 165.188L18.103 165.316Z"
402
+ fill="#E5E5E5"
403
+ stroke="white"
404
+ stroke-linejoin="round"
405
+ />
406
+ <path
407
+ d="M22.9262 166.346L22.9883 166.436H22.9833L22.9783 166.445L22.9734 166.45L22.6753 166.678L22.5894 166.744L22.5273 166.754L21.0207 166.782L20.6909 166.706L20.3705 166.583L20.2508 166.526L19.9781 166.398L19.7392 166.223L19.7198 166.161L19.543 165.171L19.6051 165.095L19.6577 165.109L20.1311 165.294L20.9825 165.678V165.683L21.3223 165.919L22.2164 166.209L22.2452 166.19L22.2596 166.18L22.2834 166.176L22.3167 166.156L22.3664 166.128L22.3902 166.118L22.6341 166.133L22.9262 166.346Z"
408
+ fill="#E5E5E5"
409
+ stroke="white"
410
+ stroke-linejoin="round"
411
+ />
412
+ <path
413
+ d="M30.0329 181.627L30.1322 181.849L30.1084 181.878L29.4244 181.849L28.9892 181.319L28.9316 181.229L28.721 180.56L28.5312 179.371L28.7702 179.452L30.0329 181.627Z"
414
+ fill="#E5E5E5"
415
+ stroke="white"
416
+ stroke-linejoin="round"
417
+ />
418
+ <path
419
+ d="M31.8448 176.473L31.8686 176.658L31.8254 176.756L31.7012 176.827H31.6198L30.5101 176.311L30.4386 176.244L29.6492 174.462L29.611 174.434L29.6016 174.353L29.611 174.339L29.6492 174.348L30.1182 174.505L30.6442 174.922L31.0749 175.263L31.3953 175.533L31.8115 176.386L31.8448 176.473Z"
420
+ fill="#E5E5E5"
421
+ stroke="white"
422
+ stroke-linejoin="round"
423
+ />
424
+ <g
425
+ class="zoomable-state state-CA"
426
+ (mouseenter)="onStateHover('CA', false, $event)"
427
+ (mouseleave)="onStateHover('CA', true, $event)"
428
+ [ngbPopover]="countryPopoverTemplate"
429
+ [disablePopover]="
430
+ currentlyHoveredState?.state !== usaStates['CA'].state
431
+ "
432
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
433
+ triggers="mouseenter:mouseleave"
434
+ autoClose="false"
435
+ container="body"
436
+ >
437
+ <!-- CA state -->
438
+ <path
439
+ d="M71.17 174.066L71.1412 174.539L71.1223 174.554L69.9694 175.212L69.19 175.525L68.0565 175.956H68.0515L67.2289 177.108L66.9706 177.551L66.7362 178.385L66.6865 178.74L66.4232 180.029L66.0646 181.266L64.9599 182.56L64.0414 182.787L63.495 186.09L63.5044 186.109L63.6957 186.616L64.1164 186.911L64.2694 186.977L65.0681 187.11L65.097 187.139L65.1208 187.167L65.3935 187.798L65.3076 188.513L65.2261 188.793L64.8243 189.347L63.5521 190.129L62.586 190.058H62.5303L55.7386 189.261L55.6045 189.247L54.8296 189.152L51.96 188.815L50.7355 188.673L49.8364 188.569L48.9756 188.465L47.2251 188.256L45.4414 188.052L42.921 187.757L40.5059 187.462H40.4532L40.0325 185.647L40.2049 182.955V182.865L40.2143 182.278L40.2193 182.05L40.1095 181.115L40.0663 180.784L39.8894 180.267L39.8706 180.224L39.3778 178.982L39.2288 178.638L39.2049 178.586L39.0062 178.169L38.7082 177.742L38.5264 177.553L38.3302 177.42V177.415L38.2726 177.183L38.1196 176.875L38.0237 176.737L36.3348 174.638L34.9813 172.994L34.6514 172.591L33.9674 172.676L33.2452 172.662L32.9154 172.529L32.7529 172.439L32.1121 172.026L31.9974 171.931L31.9259 171.547L31.9929 171.481L32.1986 171.324L32.3083 171.301L32.361 171.192L32.4186 170.917L32.3516 170.415L32.3083 170.173L32.2845 170.036L32.2319 169.752L32.1459 169.411L32.0217 169.079L32.0123 169.055L31.9979 169.022L31.9929 169.017L31.8971 168.832L31.8777 168.809L31.8012 168.704L31.7773 168.671L31.7535 168.648L31.6005 168.5L31.3755 168.415L30.4953 168.235L29.8063 168.14L29.4382 168.168L28.0812 167.57V167.574L26.8712 166.669L25.5464 164.385L24.6379 163.229L24.4272 162.964L24.3175 162.903L23.6767 162.32L23.1934 162.111L22.7006 162.041H22.5476L22.0216 162.017L20.9119 161.672L20.5294 161.293L19.8837 160.829L19.6204 160.725L18.9458 160.479L18.3766 160.327L17.7214 160.194L16.9703 160.099L16.0713 159.943L14.9184 158.455L14.9949 157.588L15.5591 154.711L15.7553 153.944V153.934H15.7603L15.8989 153.683L15.9133 153.664L16.0519 153.356L16.1617 153.061L16.2143 152.886L16.2526 152.701L16.267 152.652V152.633L16.2863 152.391V152.377L16.2625 152.201L16.2243 152.097L16.1428 152.012L15.8751 151.742L15.8368 151.709L15.7603 151.657L14.9655 149.51L13.4922 146.819L12.5261 145.335L12.3731 145.179L12.2872 145.075L12.1486 144.591L12.1153 143.648L11.8426 143.255L11.3881 142.421L11.4025 142.018L11.4119 141.824L11.4358 141.468L11.3831 141.156L11.3737 141.107L10.3599 138.946L10.1304 138.552L9.69525 138.06L9.57106 137.951H9.5661L9.48016 137.942L9.42999 137.918L9.34406 137.814L9.29141 137.695L9.07632 137.203L8.99983 137.023L8.99039 136.852L9.27253 134.08L9.88947 133.862L9.90884 133.867H10.0474L10.1527 133.818L10.3633 133.661L10.4975 133.528L10.5933 133.415L10.7558 133.164L10.9137 132.856L11.3394 131.951L11.3444 131.823L11.2947 131.425L11.2897 131.401V131.396L11.2277 131.059L11.0935 130.425L10.9977 130.192L10.9117 130.031L10.8352 129.927L10.6629 129.775L10.5814 129.756L10.1507 129.855L9.76827 129.835L9.56957 129.807L9.42999 129.777L9.36294 129.74L9.33065 129.725L9.20646 129.654L9.11556 129.602L8.78077 129.228L8.45094 128.754L8.20257 128.166L7.99196 127.546V127.541L7.9249 127.432L7.69045 127.053L7.37502 126.47L7.33678 126.362L7.35615 125.845L7.4997 123.021L7.76297 121.869L8.08833 120.727V120.719L8.09777 120.554L8.20754 119.933L8.30341 119.876L8.7008 119.795L9.03062 119.819L9.18858 119.857L9.2462 119.942L9.3083 120.131L9.25862 120.78L9.20597 120.937L9.00728 120.986V120.991H8.9879L8.80113 122.1L8.91588 122.28L10.2456 123.664L10.3415 123.721L10.571 123.802L10.7289 123.759L10.7339 123.749L10.7433 121.849L10.0787 119.935L10.2317 119.191L9.90189 118.954L9.58646 118.244L10.6793 118.007L10.8611 117.922L11.0955 117.737L11.1194 117.666L11.1099 117.561L10.2556 116.29V116.285L9.40416 116.518L9.09818 117.309L8.77779 118.309L8.75394 118.394L8.81157 118.484L8.95512 118.659L9.09867 118.892L9.14835 119.015V119.048L8.64119 119.54L8.4117 119.511L8.26814 119.435L8.17227 119.345L5.4651 116.265L5.91464 113.891L5.88583 113.694L5.78996 113.415L5.75668 113.33V113.325L5.21028 111.41L3.43099 108.036L2.89552 107.094L2.5031 106.397L1.91497 105.141L2.38389 100.341L2.4127 100.156L2.43207 100.071L2.59003 99.6821L2.77183 99.2796L2.96307 99.005L3.07285 98.8441L3.21641 98.6964L3.27403 98.6206L3.30284 98.5778L3.31227 98.5685L3.50352 98.2732L3.51792 98.1974L3.68532 97.1029L3.70916 96.8328L3.70419 95.1364L3.69923 95.1079L3.33115 94.132L3.1255 93.6059L2.8672 92.9474V92.9425L2.6854 92.6202L1.04967 89.5356L1 89.3983L1.20565 87.4224L1.23446 87.3732L1.93286 86.3732L2.42561 85.7477L2.61238 85.5346L2.95215 85.1793L3.45434 84.696L4.04744 84.0705L4.37279 83.7295L4.62612 83.4308L4.95148 82.9618L5.31012 82.3412L5.48249 81.9475L5.43927 81.7015L6.47247 79.2704L7.25184 77.4746L7.39042 76.5647L7.41923 75.9441L7.43364 74.7261L7.42867 74.6218L7.4093 74.4938L7.36608 74.3516L7.55732 72.5603L7.8345 71.5322L10.8645 72.4751L13.2414 73.1242V73.1292L15.4941 73.7497H15.5134L16.1016 73.8728L16.9386 74.1759L17.2828 74.2743L17.4884 74.3314L20.1524 75.0799L21.2094 75.3358L22.1706 75.5967L22.4239 75.6774L22.8591 75.8103L29.4308 77.7482V77.7532L33.879 78.9835L35.3379 79.3722H35.3523L38.2333 80.1306L38.5443 80.2113L40.8163 80.7753L38.5686 89.3874L37.6934 92.7708L36.7034 96.6659L36.2107 98.566L36.0527 99.1772L36.0477 99.1866L35.5073 101.215L34.6797 104.299L34.5148 104.922H34.5099L33.7255 107.865V107.87L33.3525 109.229V109.234L32.9412 110.836L32.8026 111.4L32.6879 111.883L33.123 113.518L35.1462 116.527L36.7913 118.958L37.8961 120.588L42.5926 127.587L46.5049 133.382L50.9258 139.955L51.0882 140.201L52.032 141.584L52.5819 142.414L55.4852 146.716L57.8382 150.213L58.1398 150.664L59.4024 152.534L59.5018 152.681L61.2284 155.231L62.9933 157.86L63.6008 158.756L63.8258 159.088L67.0878 163.921L68.2884 165.693L68.0157 166.906L67.9964 167.057L68.0058 167.114L68.4891 168.365L69.1011 169.313L69.1344 169.756L69.6987 172.125L70.2629 172.793L70.7507 173.329L71.17 174.066Z"
440
+ fill="#E5E5E5"
441
+ stroke="white"
442
+ stroke-linejoin="round"
443
+ [attr.fill]="usaStates['CA']['color']"
444
+ />
445
+ <!-- CA name -->
446
+ <path
447
+ d="M24.771 137.126C24.273 137.126 23.811 137.048 23.385 136.892C22.965 136.73 22.599 136.502 22.287 136.208C21.981 135.914 21.741 135.569 21.567 135.173C21.393 134.771 21.306 134.33 21.306 133.85C21.306 133.37 21.393 132.932 21.567 132.536C21.741 132.134 21.981 131.786 22.287 131.492C22.599 131.198 22.965 130.973 23.385 130.817C23.811 130.655 24.273 130.574 24.771 130.574C25.353 130.574 25.872 130.676 26.328 130.88C26.79 131.084 27.174 131.378 27.48 131.762L26.346 132.788C26.142 132.548 25.917 132.365 25.671 132.239C25.431 132.113 25.161 132.05 24.861 132.05C24.603 132.05 24.366 132.092 24.15 132.176C23.934 132.26 23.748 132.383 23.592 132.545C23.442 132.701 23.322 132.89 23.232 133.112C23.148 133.334 23.106 133.58 23.106 133.85C23.106 134.12 23.148 134.366 23.232 134.588C23.322 134.81 23.442 135.002 23.592 135.164C23.748 135.32 23.934 135.44 24.15 135.524C24.366 135.608 24.603 135.65 24.861 135.65C25.161 135.65 25.431 135.587 25.671 135.461C25.917 135.335 26.142 135.152 26.346 134.912L27.48 135.938C27.174 136.316 26.79 136.61 26.328 136.82C25.872 137.024 25.353 137.126 24.771 137.126ZM27.4131 137L30.1941 130.7H31.9491L34.7391 137H32.8851L30.7071 131.573H31.4091L29.2311 137H27.4131ZM28.9341 135.776L29.3931 134.462H32.4711L32.9301 135.776H28.9341Z"
448
+ fill="white"
449
+ [attr.fill]="
450
+ usaStates['CA']['color'] === lowestBlue
451
+ ? blueText
452
+ : whiteText
453
+ "
454
+ />
455
+ </g>
456
+ <g
457
+ class="zoomable-state state-CO"
458
+ (mouseenter)="onStateHover('CO', false, $event)"
459
+ (mouseleave)="onStateHover('CO', true, $event)"
460
+ [ngbPopover]="countryPopoverTemplate"
461
+ [disablePopover]="
462
+ currentlyHoveredState?.state !== usaStates['CO'].state
463
+ "
464
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
465
+ triggers="mouseenter:mouseleave"
466
+ autoClose="false"
467
+ container="body"
468
+ >
469
+ <path
470
+ d="M183.95 117.159L183.912 117.732L183.726 120.557H183.731L183.664 121.552L183.42 125.341L183.133 130.042V130.108L182.845 134.882L182.793 135.83L182.558 139.658L182.496 140.559L182.262 144.359H182.257L182.252 144.426L181.908 150.169L181.846 151.202L181.659 153.993L181.382 158.338L178.656 158.143L174.135 157.779L173.031 157.694L172.303 157.637V157.646L164.287 157.055L157.994 156.531L155.664 156.318L154.323 156.171V156.166L153.754 156.109L149.435 155.677L146.938 155.422L142.865 155.005L141.641 154.877L139.45 154.64L138.331 154.422L134.691 153.995L134.166 153.933V153.928L126.398 152.966L120.645 152.203L121.396 146.92L122.003 142.612H122.008L122.414 139.655L122.792 135.86H122.797L123.132 133.467L123.462 131.463L123.524 131.046L123.816 129.07L124.184 126.445V126.44L124.382 125.018L124.626 123.247L125.483 117.134L126.157 112.447L126.669 108.676L133.207 109.548L135.928 109.87V109.875L140.85 110.463L144.625 110.899L149.021 111.429L150.087 111.557H150.092L157.593 112.316L160.333 112.581V112.576L167.656 113.192L171.588 113.509H171.593V113.514L173.166 113.633L179.169 114.071V114.066L179.437 114.08V114.085L184.124 114.393L183.95 117.159Z"
471
+ fill="#E5E5E5"
472
+ stroke="white"
473
+ stroke-linejoin="round"
474
+ [attr.fill]="usaStates['CO']['color']"
475
+ />
476
+ <path
477
+ d="M149.771 138.126C149.273 138.126 148.811 138.048 148.385 137.892C147.965 137.73 147.599 137.502 147.287 137.208C146.981 136.914 146.741 136.569 146.567 136.173C146.393 135.771 146.306 135.33 146.306 134.85C146.306 134.37 146.393 133.932 146.567 133.536C146.741 133.134 146.981 132.786 147.287 132.492C147.599 132.198 147.965 131.973 148.385 131.817C148.811 131.655 149.273 131.574 149.771 131.574C150.353 131.574 150.872 131.676 151.328 131.88C151.79 132.084 152.174 132.378 152.48 132.762L151.346 133.788C151.142 133.548 150.917 133.365 150.671 133.239C150.431 133.113 150.161 133.05 149.861 133.05C149.603 133.05 149.366 133.092 149.15 133.176C148.934 133.26 148.748 133.383 148.592 133.545C148.442 133.701 148.322 133.89 148.232 134.112C148.148 134.334 148.106 134.58 148.106 134.85C148.106 135.12 148.148 135.366 148.232 135.588C148.322 135.81 148.442 136.002 148.592 136.164C148.748 136.32 148.934 136.44 149.15 136.524C149.366 136.608 149.603 136.65 149.861 136.65C150.161 136.65 150.431 136.587 150.671 136.461C150.917 136.335 151.142 136.152 151.346 135.912L152.48 136.938C152.174 137.316 151.79 137.61 151.328 137.82C150.872 138.024 150.353 138.126 149.771 138.126ZM156.32 138.126C155.816 138.126 155.351 138.045 154.925 137.883C154.499 137.721 154.127 137.493 153.809 137.199C153.497 136.899 153.254 136.551 153.08 136.155C152.906 135.759 152.819 135.324 152.819 134.85C152.819 134.376 152.906 133.941 153.08 133.545C153.254 133.149 153.497 132.804 153.809 132.51C154.127 132.21 154.499 131.979 154.925 131.817C155.351 131.655 155.816 131.574 156.32 131.574C156.83 131.574 157.295 131.655 157.715 131.817C158.141 131.979 158.51 132.21 158.822 132.51C159.134 132.804 159.377 133.149 159.551 133.545C159.731 133.941 159.821 134.376 159.821 134.85C159.821 135.324 159.731 135.762 159.551 136.164C159.377 136.56 159.134 136.905 158.822 137.199C158.51 137.493 158.141 137.721 157.715 137.883C157.295 138.045 156.83 138.126 156.32 138.126ZM156.32 136.65C156.56 136.65 156.782 136.608 156.986 136.524C157.196 136.44 157.376 136.32 157.526 136.164C157.682 136.002 157.802 135.81 157.886 135.588C157.976 135.366 158.021 135.12 158.021 134.85C158.021 134.574 157.976 134.328 157.886 134.112C157.802 133.89 157.682 133.701 157.526 133.545C157.376 133.383 157.196 133.26 156.986 133.176C156.782 133.092 156.56 133.05 156.32 133.05C156.08 133.05 155.855 133.092 155.645 133.176C155.441 133.26 155.261 133.383 155.105 133.545C154.955 133.701 154.835 133.89 154.745 134.112C154.661 134.328 154.619 134.574 154.619 134.85C154.619 135.12 154.661 135.366 154.745 135.588C154.835 135.81 154.955 136.002 155.105 136.164C155.261 136.32 155.441 136.44 155.645 136.524C155.855 136.608 156.08 136.65 156.32 136.65Z"
478
+ fill="white"
479
+ [attr.fill]="
480
+ usaStates['CO']['color'] === lowestBlue
481
+ ? blueText
482
+ : whiteText
483
+ "
484
+ />
485
+ </g>
486
+ <path
487
+ d="M429.671 88.0992L429.795 88.0498L429.766 88.1925L429.608 88.3065L429.388 88.4679L429.283 88.6579H429.173L428.996 88.7483L429.087 88.463L429.178 88.458L429.228 88.501L429.29 88.3252L429.572 88.1732L429.671 88.0992Z"
488
+ fill="#E5E5E5"
489
+ stroke="white"
490
+ stroke-linejoin="round"
491
+ />
492
+ <g
493
+ class="zoomable-state state-CT"
494
+ (mouseenter)="onStateHover('CT', false, $event)"
495
+ (mouseleave)="onStateHover('CT', true, $event)"
496
+ [ngbPopover]="countryPopoverTemplate"
497
+ [disablePopover]="
498
+ currentlyHoveredState?.state !== usaStates['CT'].state
499
+ "
500
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
501
+ triggers="mouseenter:mouseleave"
502
+ autoClose="false"
503
+ container="body"
504
+ >
505
+ <path
506
+ d="M430.33 86.4791L430.196 86.6449L430.22 86.7965L430.32 86.9195L430.338 87.1282L430.434 87.2561L430.453 87.3605L430.343 87.5027L430.291 87.5406L430.241 87.6356L429.997 87.5371L429.524 87.6794L429.222 87.921L429.055 88.0489L428.438 88.1198L428.28 88.4151L428.065 88.4643L427.84 88.4313L427.701 88.327L427.558 88.3841L427.563 88.6828L427.146 88.8722L426.716 89.043L426.635 89.0524L426.553 89.0381L425.037 89.6586L424.613 89.6286L424.345 89.6951L423.236 90.0267L422.547 90.3156L422.169 90.3678L421.992 90.1498L421.925 90.1783L420.987 91.261L420.863 91.4362L420.71 91.7157L420.701 91.7585V91.7728L420.146 91.9204L418.755 92.9627L416.847 94.5689L416.797 94.659L416.773 94.7776L415.917 93.6782L416.513 93.0764L417.594 91.9676L416.824 91.2664L416.69 90.4987L416.388 88.7551V88.7502L416.125 87.2384H416.13L415.379 83.0973L418.832 82.3724V82.3773L419.186 82.2966L420.707 81.9413L420.817 82.3582L421.21 82.2396L421.233 81.8129L423.137 81.3675L426.093 80.6756L426.361 80.6235L426.7 80.5526L428.752 80.0693L428.805 80.2303L429.671 83.2154L429.91 84.1155H429.905L430.029 84.5751L430.488 86.4422L430.45 86.4752L430.33 86.4791Z"
507
+ fill="#E5E5E5"
508
+ stroke="white"
509
+ stroke-linejoin="round"
510
+ [attr.fill]="usaStates['CT']['color']"
511
+ />
512
+ <path
513
+ d="M432.771 99.126C432.273 99.126 431.811 99.048 431.385 98.892C430.965 98.73 430.599 98.502 430.287 98.208C429.981 97.914 429.741 97.569 429.567 97.173C429.393 96.771 429.306 96.33 429.306 95.85C429.306 95.37 429.393 94.932 429.567 94.536C429.741 94.134 429.981 93.786 430.287 93.492C430.599 93.198 430.965 92.973 431.385 92.817C431.811 92.655 432.273 92.574 432.771 92.574C433.353 92.574 433.872 92.676 434.328 92.88C434.79 93.084 435.174 93.378 435.48 93.762L434.346 94.788C434.142 94.548 433.917 94.365 433.671 94.239C433.431 94.113 433.161 94.05 432.861 94.05C432.603 94.05 432.366 94.092 432.15 94.176C431.934 94.26 431.748 94.383 431.592 94.545C431.442 94.701 431.322 94.89 431.232 95.112C431.148 95.334 431.106 95.58 431.106 95.85C431.106 96.12 431.148 96.366 431.232 96.588C431.322 96.81 431.442 97.002 431.592 97.164C431.748 97.32 431.934 97.44 432.15 97.524C432.366 97.608 432.603 97.65 432.861 97.65C433.161 97.65 433.431 97.587 433.671 97.461C433.917 97.335 434.142 97.152 434.346 96.912L435.48 97.938C435.174 98.316 434.79 98.61 434.328 98.82C433.872 99.024 433.353 99.126 432.771 99.126ZM437.563 99V94.113H435.628V92.7H441.271V94.113H439.345V99H437.563Z"
514
+ fill="#E5E5E5"
515
+ [attr.fill]="
516
+ usaStates['CT']['color'] === defaultColor
517
+ ? defaultColor
518
+ : blueText
519
+ "
520
+ />
521
+ </g>
522
+ <g
523
+ class="zoomable-state state-DE"
524
+ (mouseenter)="onStateHover('DE', false, $event)"
525
+ (mouseleave)="onStateHover('DE', true, $event)"
526
+ [ngbPopover]="countryPopoverTemplate"
527
+ [disablePopover]="
528
+ currentlyHoveredState?.state !== usaStates['DE'].state
529
+ "
530
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
531
+ triggers="mouseenter:mouseleave"
532
+ autoClose="false"
533
+ container="body"
534
+ >
535
+ <path
536
+ d="M411.739 124.491L409.3 125.021L409.175 125.05L408.85 125.121L408.716 125.145L408.601 125.168L408.568 125.173L408.137 125.254L407.965 125.287L407.214 125.429H407.184L406.596 125.528L406.338 125.571L406.238 125.226L406.147 124.918L406.033 124.506L405.808 123.724V123.714L405.224 121.658L403.976 117.251L403.823 116.715L403.579 115.863L403.355 115.019L402.795 112.952L402.781 112.9L402.761 112.848L402.747 112.799L402.713 112.694L402.704 112.642L402.69 112.59L402.685 112.533L402.594 112.201L402.675 112.173L402.732 111.917L402.771 111.798L402.82 111.68L402.87 111.566L402.932 111.452L402.994 111.348L403.066 111.25L403.142 111.155L403.228 111.06L403.324 110.974L403.423 110.894L403.533 110.818L403.648 110.747L403.772 110.681L403.906 110.619L404.011 110.581L404.122 110.548L404.227 110.525L404.326 110.51L404.426 110.496L404.525 110.491H404.621L404.72 110.496L404.816 110.505L404.907 110.52L405.003 110.539L405.185 110.588L405.276 110.617L405.457 110.683L405.175 111.02L404.877 111.631L404.786 112.058L404.609 112.418L404.413 112.607L404.337 112.782L404.304 112.92L404.356 113.185L404.849 113.446L404.767 114.266L404.853 114.569L405.179 114.82L405.705 115.535L406.432 115.962L406.8 116.431L406.867 116.526L407.073 117.042L407.097 117.222L407.03 117.521L407.341 118.606L407.819 118.829L408.149 119.099L408.34 119.611L408.407 119.906L408.498 120.015L409.263 120.621L409.698 120.948L410.004 121.067L410.229 121.11L410.396 121.06L410.516 120.965L410.535 120.904L410.751 121.349L411.267 122.837L411.645 124.121L411.739 124.491Z"
537
+ fill="#E5E5E5"
538
+ stroke="white"
539
+ stroke-linejoin="round"
540
+ [attr.fill]="usaStates['DE']['color']"
541
+ />
542
+ <path
543
+ d="M416.63 127V120.7H419.609C420.305 120.7 420.917 120.829 421.445 121.087C421.973 121.345 422.384 121.708 422.678 122.176C422.978 122.644 423.128 123.202 423.128 123.85C423.128 124.492 422.978 125.05 422.678 125.524C422.384 125.992 421.973 126.355 421.445 126.613C420.917 126.871 420.305 127 419.609 127H416.63ZM418.412 125.578H419.537C419.897 125.578 420.209 125.512 420.473 125.38C420.743 125.242 420.953 125.044 421.103 124.786C421.253 124.522 421.328 124.21 421.328 123.85C421.328 123.484 421.253 123.172 421.103 122.914C420.953 122.656 420.743 122.461 420.473 122.329C420.209 122.191 419.897 122.122 419.537 122.122H418.412V125.578ZM425.704 123.139H428.629V124.471H425.704V123.139ZM425.83 125.623H429.124V127H424.066V120.7H429.007V122.077H425.83V125.623Z"
544
+ fill="#E5E5E5"
545
+ [attr.fill]="
546
+ usaStates['DE']['color'] === defaultColor
547
+ ? defaultColor
548
+ : blueText
549
+ "
550
+ />
551
+ </g>
552
+ <path
553
+ d="M404.75 112.73L404.813 112.998L404.663 113.017L404.625 112.792L404.75 112.73Z"
554
+ fill="#E5E5E5"
555
+ stroke="white"
556
+ stroke-linejoin="round"
557
+ />
558
+ <path
559
+ d="M369.505 261.558L369.5 261.549L370.696 261.439L370.466 261.558L370.437 261.608L370.012 261.674L369.901 261.576H369.878L369.815 261.68L369.753 261.89L369.772 262.156L369.657 262.189L369.619 261.893L369.57 261.745L369.52 261.602L369.505 261.558Z"
560
+ fill="#E5E5E5"
561
+ stroke="white"
562
+ stroke-linejoin="round"
563
+ />
564
+ <path
565
+ d="M374.546 284.762L374.613 285.17L374.135 285.242L374.035 285.047L374.203 284.785L374.546 284.762Z"
566
+ fill="#E5E5E5"
567
+ stroke="white"
568
+ stroke-linejoin="round"
569
+ />
570
+ <path
571
+ d="M372.056 264.662L372.563 264.757V264.78L372.123 265.141L372.013 265.193L371.936 265.202L371.778 265.193L371.477 265.113L370.975 264.847L370.932 264.809L370.882 264.767L370.805 264.634L369.792 262.781L369.672 262.411L369.868 262.303L369.95 262.762L370.877 264.485L371.007 264.604L371.188 264.708L371.824 264.86L371.92 264.727L372.056 264.662Z"
572
+ fill="#E5E5E5"
573
+ stroke="white"
574
+ stroke-linejoin="round"
575
+ />
576
+ <path
577
+ d="M386.28 280.847L386.333 280.961L386.283 281.023L385.757 281.269L385.322 281.663L384.743 282.057L384.404 282.218L384.184 282.09L384.265 281.995L384.246 281.962L385.09 281.487L386.267 280.838L386.28 280.847Z"
578
+ fill="#E5E5E5"
579
+ stroke="white"
580
+ stroke-linejoin="round"
581
+ />
582
+ <path
583
+ d="M382.437 282.8L382.466 282.894L382.284 283.013L381.691 283.302L380.687 283.378L380.634 283.165L380.423 283.207L380.428 283.653L380.137 283.729L379.214 284.259L378.568 284.653L377.889 284.686L377.645 284.743L377.621 284.724L377.578 284.549L377.597 284.478L377.746 284.281L378.201 284.167L378.291 284.158L378.344 284.214L378.394 284.229L378.741 284.068L378.885 283.987L379.268 283.67L379.746 283.191L379.755 283.077L379.865 282.954L380.104 282.921L380.303 282.656L380.585 282.551L380.81 282.561L380.819 282.163L381.025 282.31L381.231 282.113L381.57 282.279L381.781 282.346L382.25 282.478L382.307 282.706L382.437 282.8Z"
584
+ fill="#E5E5E5"
585
+ stroke="white"
586
+ stroke-linejoin="round"
587
+ />
588
+ <path
589
+ d="M382.486 282.003L382.506 282.212L382.032 282.131L381.707 282.046L381.779 281.927L382.09 281.761L382.486 282.003Z"
590
+ fill="#E5E5E5"
591
+ stroke="white"
592
+ stroke-linejoin="round"
593
+ />
594
+ <path
595
+ d="M383.038 282.599L383.081 282.775L382.676 282.885L382.805 282.599L383.038 282.599Z"
596
+ fill="#E5E5E5"
597
+ stroke="white"
598
+ stroke-linejoin="round"
599
+ />
600
+ <g
601
+ class="zoomable-state state-FL"
602
+ (mouseenter)="onStateHover('FL', false, $event)"
603
+ (mouseleave)="onStateHover('FL', true, $event)"
604
+ [ngbPopover]="countryPopoverTemplate"
605
+ [disablePopover]="
606
+ currentlyHoveredState?.state !== usaStates['FL'].state
607
+ "
608
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
609
+ triggers="mouseenter:mouseleave"
610
+ autoClose="false"
611
+ container="body"
612
+ >
613
+ <path
614
+ d="M388.672 275.63L388.519 276.261L388.122 276.545L387.701 276.594L387.596 276.879L387.332 276.928L387.117 276.691L386.199 276.573H386.194L385.601 277.047L384.802 277.359L384.007 277.544L383.844 277.477L383.409 277.226L383.318 277.16L382.912 276.586L382.883 276.335L382.902 275.857L382.941 275.473L382.965 275.383L383.032 275.278L383.089 275.25L383.218 275.278L383.242 275.208L383.232 275.098L382.821 274.814L382.539 274.026L381.992 273.682L382.122 273.397L381.399 272.307L380.704 271.635L380.369 271.536L380.226 270.7V270.695L380.159 270.567L380.109 270.515L379.645 270.259L379.397 270.16L379.325 270.137L378.368 269.933H378.249L377.101 270.146L377.005 270.208L376.923 270.306L376.914 270.42L376.885 270.623L376.847 270.756L376.78 270.747L376.727 270.69L376.108 269.805L375.242 268.345L375.137 267.942L375.07 267.672L374.817 266.791L374.602 266.194L374.434 265.857L374.429 265.848L374.42 265.843L374.109 265.355L373.612 264.895L372.929 264.462L372.551 264.401L372.527 264.211L372.097 264.074L371.948 264.216L371.904 264.453L371.565 264.524L371.538 264.195L371.022 262.949L370.587 262.589L370.505 262.338L371.042 262.226L371.448 262.62L371.587 261.402L371.606 261.103L371.497 260.506L371.415 260.17L371.142 260.146L371.066 259.757L371.324 259.659L371.29 259.54L371.147 259.469L370.841 259.527L370.755 259.576L370.296 259.983L370.246 260.054L370.696 260.926L370.701 261.438L369.5 261.552L368.243 260.03H368.233L366.495 257.422L366.395 257.28L366.246 257.086L366.155 256.958L365.715 256.422L365.467 256.171L364.945 255.655L364.39 255.138L364.079 254.57L364.333 254.456L364.668 254.238L365.308 253.215L365.347 253.134L365.414 252.807H365.409L366.389 251.362L366.409 251.319L366.624 250.802L366.673 250.523L366.515 250.049L366.377 249.869L365.947 249.849L365.612 249.679L365.669 250.368L365.818 250.533L365.847 250.822L365.46 250.855L365.067 250.557L365.192 250.344L364.924 249.359H364.576L364.285 249.416L364.012 249.492V249.497L363.361 249.672L363.328 249.705L363.304 249.79L363.362 249.913L363.476 249.984L363.73 250.098L364.208 250.017L364.246 250.32L364.524 250.439L364.915 250.273L364.968 250.548L364.681 250.704L364.839 251.017L364.499 251.533L364.595 252.04L364.413 252.344L363.753 252.519L363.777 252.87L363.911 253.007L364.01 253.302L363.69 253.397L363.537 252.398L363.121 251.767L362.48 251.213L362.054 250.516L362.494 249.796L362.499 249.772L362.549 249.208L362.578 248.72L362.482 247.948L362.405 247.768L362.353 247.697L362.185 247.502C362.459 246.512 362.733 245.522 363.008 244.532L362.922 241.689L362.764 240.073L362.702 239.728L362.635 239.591L361.367 238.629L361.387 238.269L361.287 237.98L360.699 237.719L360.943 237.416L360.719 237.046L360.484 236.948L358.944 237.057L358.705 237.455L358.375 237.412L357.959 236.237L357.06 235.991L356.888 235.394L356.557 234.891L356.371 234.631L356.141 234.522H355.912L355.465 234.325L354.714 233.941L354.494 233.822L354.474 233.761L354.168 232.24H354.163L353.838 232.159L352.891 231.78L352.785 231.69L352.699 231.586L352.37 231.14V231.088L352.307 230.884L352.193 230.719L351.705 230.145L351.274 229.847L351.193 229.797L350.155 229.347L349.591 229.186L348.706 228.792L348.089 228.437L348.094 228.432L347.277 228.409V228.414L345.674 228.636L344.804 229.063L344.655 229.144L344.631 229.513L344.717 229.907L344.741 229.936L344.946 230.177L345.013 230.367L345.042 230.471L345.066 230.552L345.071 230.566L345.062 230.685L345.009 230.836L344.956 230.869L344.684 230.95L344.244 230.893L344.138 230.869L344.039 230.798L343.943 230.642L343.388 230.846L343.173 230.944L341.8 231.991L341.178 232.502L340.632 232.9L340.12 233.227L339.087 233.554L338.676 233.644L338.331 233.592L338.054 233.625L337.868 233.682L336.987 234.009L336.982 234.018L336.083 234.089L336.059 233.007L336.031 232.888L335.892 232.656L335.342 231.967L335.113 231.754L335.074 231.725V231.72L334.085 231.419L333.87 231.334L333.803 231.291L333.54 231.106L333.21 230.803L331.129 229.609L330.98 229.528L330.871 229.467L330.765 229.41L330.602 229.329L330.239 229.144L330.09 229.073L329.966 229.016L329.817 228.954L329.64 228.874L329.487 228.817L328.919 228.614V228.609L324.995 227.813L321.183 228.098V228.103L320.078 228.382L317.892 229.057L317.81 229.076L317.753 229.09L317.423 229.175L316.844 229.289L315.371 229.633L314.51 229.88L315.113 229.609L315.242 228.415L315.338 226.037L315.323 225.856L315.29 225.729L315.175 225.543L314.75 225.283L314.429 225.117L314.271 225.088L314.219 225.069L313.921 224.865L312.96 223.832L312.84 223.623L313.05 222.168L317.14 221.785L320.674 221.472V221.467L321.578 221.401L324.395 221.136H324.4L326.285 220.946L327.71 220.804L332.732 220.226V220.231L332.828 220.216L337.371 219.667L339.031 222.642H339.04L343.598 222.339L344.542 222.273L346.407 222.145L347.13 222.096V222.091L349.621 221.925L350.869 221.844L353.275 221.678V221.683L353.73 221.655L353.739 221.66L355.36 221.546L359.589 221.257L360.593 221.186L361.77 221.101L362.152 221.073L364.079 220.954L364.357 222.48L364.452 222.721L364.629 222.972L364.821 223.124L364.883 223.138L365.959 222.934L366.009 222.181L366.061 221.432L366.052 220.707L365.932 220.371L365.641 219.996L365.497 219.778L365.454 219.551L365.535 218.376L366.564 217.785L366.965 218.05L368.429 218.363L369.534 218.486L370.117 218.457L370.921 218.359L371.064 218.345V218.35L371.409 220.491V220.496H371.414L371.595 220.615L371.758 220.752L372.026 221.61L372.136 222.254L372.241 222.642L372.347 222.955L372.437 223.168L373.58 226.111L374.388 228.02L374.402 228.058L374.522 228.3L374.613 228.489L374.996 229.181L376.464 231.631L377.186 232.825L377.774 233.721L378.229 234.417L378.497 234.782L379.305 235.758L381.079 237.881L382.829 239.729L382.849 239.753L382.925 239.829L382.94 239.852L383.638 241.118V241.203L383.318 241.411L383.227 241.53L383.128 241.734L383.118 241.786L383.113 241.8L383.079 241.966L383.06 242.261L383.075 242.565L383.104 242.835L383.238 243.404L383.515 244.233L383.893 245.076L384.151 245.545L384.362 245.868L384.649 246.299L384.663 246.327L385.453 247.398L385.458 247.393L387.208 250.421L387.213 250.426L388.93 253.364L390.624 256.288L390.796 256.662L390.987 257.065L391.15 257.416L391.409 258.06L391.571 259.075L391.705 260.023L391.755 260.487L391.864 263.012L391.85 263.183H391.845L392.051 266.923H392.046L392.055 266.952L392.155 267.554L392.269 268.35L392.289 268.596L392.313 269.093L392.26 269.339L392.21 269.448L392.148 269.661L392.143 270.424L391.914 270.258L391.891 269.608L391.795 269.466L391.671 269.504L391.379 269.679L391.283 269.783L391.259 269.868L390.752 271.958L390.702 272.328L390.74 272.551L391.018 273.385L391.08 273.446H391.185L391.235 273.498L391.22 273.621L391.029 274.029L390.613 274.645L390.593 274.669L390.33 274.958L390.34 275.28L389.981 275.337L389.775 275.56L389.598 275.904L389.058 275.601L388.672 275.63Z"
615
+ fill="#E5E5E5"
616
+ stroke="white"
617
+ stroke-linejoin="round"
618
+ [attr.fill]="usaStates['FL']['color']"
619
+ />
620
+ <path
621
+ d="M374.286 251.463H377.193V252.84H374.286V251.463ZM374.412 255H372.63V248.7H377.571V250.077H374.412V255ZM378.404 255V248.7H380.186V253.587H383.192V255H378.404Z"
622
+ fill="white"
623
+ [attr.fill]="
624
+ usaStates['FL']['color'] === lowestBlue
625
+ ? blueText
626
+ : whiteText
627
+ "
628
+ />
629
+ </g>
630
+ <path
631
+ d="M388.213 279.359L388.29 279.409L388.175 279.645L387.773 280.006L387.376 280.347L386.888 280.522L386.845 280.532L386.84 280.522L386.883 280.47L387.356 280.005L388.213 279.359Z"
632
+ fill="#E5E5E5"
633
+ stroke="white"
634
+ stroke-linejoin="round"
635
+ />
636
+ <path
637
+ d="M392.381 272.232L392.204 273.029L391.94 273.791V273.796H391.935L391.878 273.839L391.734 274.104L391.141 275.621L391.122 275.687L391.194 275.844L391.132 276.014L390.988 276.298L390.293 277.113L389.905 277.729L389.413 278.426L389.363 278.483L388.579 279.221L388.555 279.197V279.188L388.56 279.136L388.875 278.662L389.095 278.472L389.33 278.288L389.339 277.923L389.554 277.946L389.852 277.586L390.039 277.074L390.053 276.999L389.755 276.885L389.789 276.748L390.186 276.961L390.377 276.8L390.224 276.411L390.535 276.382L390.708 276.136L390.597 275.857L391.032 275.454L391.009 275L390.731 274.81L391.219 274.521L391.702 273.749L391.807 273.242L392.18 271.991L392.257 271.858H392.3L392.381 272.232Z"
638
+ fill="#E5E5E5"
639
+ stroke="white"
640
+ stroke-linejoin="round"
641
+ />
642
+ <g
643
+ class="zoomable-state state-GA"
644
+ (mouseenter)="onStateHover('GA', false, $event)"
645
+ (mouseleave)="onStateHover('GA', true, $event)"
646
+ [ngbPopover]="countryPopoverTemplate"
647
+ [disablePopover]="
648
+ currentlyHoveredState?.state !== usaStates['GA'].state
649
+ "
650
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
651
+ triggers="mouseenter:mouseleave"
652
+ autoClose="false"
653
+ container="body"
654
+ >
655
+ <path
656
+ d="M374.427 203.448V203.546L374.393 203.712L374.294 203.935L372.754 206.396L372.687 206.49L372.256 206.983L372.189 207.011L371.978 206.962V206.967L371.625 207.043L371.591 207.123L371.778 207.289L372.026 207.36L372.083 207.327L372.098 207.275L372.121 207.261L372.212 207.241L372.294 207.27L372.361 207.72L372.399 208.057L372.241 208.663L372.15 208.838L372.093 208.853L371.94 208.748L371.696 211.809H371.691L370.51 215.057C370.695 216.155 370.88 217.253 371.064 218.351L370.921 218.365L370.122 218.459L369.539 218.488L368.429 218.365L366.966 218.052L366.564 217.787L365.541 218.377L365.459 219.552L365.498 219.775L365.647 219.998L365.934 220.373L366.058 220.704L366.067 221.434L366.015 222.178L365.965 222.932L364.889 223.14L364.827 223.126L364.63 222.975L364.453 222.724L364.363 222.482L364.085 220.956L362.153 221.07V221.075L361.77 221.104L360.593 221.189V221.184L359.594 221.255L355.361 221.544L353.731 221.657L353.276 221.686L353.267 221.681L350.87 221.847L349.622 221.922V221.927L347.13 222.098L346.408 222.147V222.142L344.543 222.275L343.605 222.337V222.342L339.047 222.645L338.948 222.432L338.962 222.257L338.943 222.432L339.042 222.645H339.033L337.376 219.667L337.098 218.88L336.993 218.662L336.926 218.534L336.479 218.05L336.407 218.031H336.328L336.246 217.982L336.15 217.764L336.021 216.992L336.088 216.707L336.188 216.419L336.302 214.097L335.284 211.576L335.116 211.358L335.551 209.022L335.527 208.207L336.527 206.25L336.546 206.217L336.623 205.872L336.532 205.692L336.307 205.503L335.695 205.342L335.637 205.275L335.618 205.185L335.717 204.797H335.722L335.464 203.3L334.589 202.325L333.925 200.879L333.341 199.581H333.336L332.599 197.046L332.532 196.819L331.638 193.63H331.643L331.476 193.047L330.959 191.232H330.964L330.219 188.575L330.033 187.906L329.678 186.665V186.66L329.066 184.461H329.062L328.31 181.926L328.114 181.237L328.004 180.863L327.282 178.328L326.938 176.996L328.119 176.873L329.085 176.775L329.96 176.656L332.493 176.339V176.344H332.522V176.339L334 176.163V176.159L334.306 176.121L335.678 175.955V175.96L338.342 175.637L340.055 175.44L341.155 175.303L341.767 175.222L345.194 174.725L345.778 174.635L349.093 174.118L348.901 174.985L348.084 175.611L347.496 176.672L347.347 177.497L347.352 177.502L347.528 177.797L349.81 179.185L350.36 179.564L350.92 179.64L351.015 179.588H351.025L351.384 179.502L351.704 179.46L351.895 179.512L351.986 179.583L351.981 179.611L352.283 180.066L353.234 181.398L353.574 182.27L355.172 184.222L355.545 184.786L355.55 184.791L356.908 185.587L356.965 185.601L357.089 185.552H357.133L357.917 185.946L358.156 186.112L358.72 186.571L359.084 187.254L360.141 188.173L361.031 188.543V188.548L361.18 188.685L361.256 188.756L361.687 189.158L362.299 189.865L362.514 190.689L363.107 191.523L363.112 191.528L363.964 192.163L365.499 192.873L366.25 193.286H366.255L368.001 196.347L368.398 197.939L369.359 198.318L369.536 198.384L370.354 199.053L371.33 201.014L371.449 201.583V201.592L371.499 201.805L371.585 202.236L371.705 202.71L371.748 202.753L372.269 202.95L373.977 203.267L374.297 203.3L374.383 203.314L374.427 203.448Z"
657
+ fill="#E5E5E5"
658
+ stroke="white"
659
+ stroke-linejoin="round"
660
+ [attr.fill]="usaStates['GA']['color']"
661
+ />
662
+ <path
663
+ d="M347.78 202.126C347.282 202.126 346.82 202.048 346.394 201.892C345.968 201.73 345.599 201.502 345.287 201.208C344.981 200.914 344.741 200.569 344.567 200.173C344.393 199.771 344.306 199.33 344.306 198.85C344.306 198.37 344.393 197.932 344.567 197.536C344.741 197.134 344.984 196.786 345.296 196.492C345.608 196.198 345.977 195.973 346.403 195.817C346.835 195.655 347.306 195.574 347.816 195.574C348.41 195.574 348.941 195.673 349.409 195.871C349.877 196.069 350.264 196.354 350.57 196.726L349.436 197.752C349.22 197.518 348.986 197.344 348.734 197.23C348.488 197.11 348.212 197.05 347.906 197.05C347.636 197.05 347.39 197.092 347.168 197.176C346.946 197.26 346.757 197.383 346.601 197.545C346.445 197.701 346.322 197.89 346.232 198.112C346.148 198.328 346.106 198.574 346.106 198.85C346.106 199.114 346.148 199.357 346.232 199.579C346.322 199.801 346.445 199.993 346.601 200.155C346.757 200.311 346.943 200.434 347.159 200.524C347.381 200.608 347.624 200.65 347.888 200.65C348.152 200.65 348.41 200.608 348.662 200.524C348.914 200.434 349.169 200.284 349.427 200.074L350.426 201.325C350.066 201.583 349.649 201.781 349.175 201.919C348.701 202.057 348.236 202.126 347.78 202.126ZM348.851 201.091V198.715H350.426V201.325L348.851 201.091ZM350.8 202L353.581 195.7H355.336L358.126 202H356.272L354.094 196.573H354.796L352.618 202H350.8ZM352.321 200.776L352.78 199.462H355.858L356.317 200.776H352.321Z"
664
+ fill="white"
665
+ [attr.fill]="
666
+ usaStates['GA']['color'] === lowestBlue
667
+ ? blueText
668
+ : whiteText
669
+ "
670
+ />
671
+ </g>
672
+
673
+ <path
674
+ d="M125.471 264.445H125.953L125.791 265.56L124.987 265.877L124.504 266.674H124.346L124.184 266.513L124.346 265.56L125.307 264.925L125.471 264.445Z"
675
+ fill="#E5E5E5"
676
+ stroke="white"
677
+ stroke-linejoin="round"
678
+ />
679
+
680
+ <g
681
+ class="zoomable-state state-HI"
682
+ (mouseenter)="onStateHover('HI', false, $event)"
683
+ (mouseleave)="onStateHover('HI', true, $event)"
684
+ [ngbPopover]="countryPopoverTemplate"
685
+ [disablePopover]="
686
+ currentlyHoveredState?.state !== usaStates['HI'].state
687
+ "
688
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
689
+ triggers="mouseenter:mouseleave"
690
+ autoClose="false"
691
+ container="body"
692
+ >
693
+ <path
694
+ d="M181.834 287.84L181.513 288.475L179.748 290.067L178.304 290.863L177.017 291.024L175.573 292.133L174.769 292.611L173.645 294.683L173.325 295L172.684 294.521L171.077 293.886L170.752 293.407L170.594 293.09L170.752 290.545L169.628 287.839L168.987 287.199L168.504 286.564L168.666 286.086L169.628 285.133L170.752 283.702V283.067L169.948 281.952L169.79 281.317L169.948 280.682L170.274 280.521L171.235 280.682L171.555 281.156L173.004 281.796L174.769 282.113L176.696 282.909L177.983 283.705L178.624 284.501L178.786 285.771L179.585 285.615L179.91 286.089V286.729L180.709 287.363L181.834 287.84Z"
695
+ fill="#E5E5E5"
696
+ stroke="white"
697
+ stroke-linejoin="round"
698
+ [attr.fill]="usaStates['HI']['color']"
699
+ />
700
+
701
+ <path
702
+ d="M161.842 284.7H163.624V291H161.842V284.7ZM159.412 291H157.63V284.7H159.412V291ZM161.968 288.543H159.286V287.067H161.968V288.543ZM164.881 291V284.7H166.663V291H164.881Z"
703
+ fill="#E5E5E5"
704
+ [attr.fill]="
705
+ usaStates['HI']['color'] === defaultColor
706
+ ? defaultColor
707
+ : blueText
708
+ "
709
+ />
710
+
711
+ <path
712
+ d="M168.518 275.905L167.877 276.54L167.073 276.858L165.466 277.498H164.342L164.022 277.337L163.701 275.426L163.219 275.27L162.898 275.583L161.932 275.109L161.291 274.469L161.129 273.834L161.454 273.199L161.612 272.882H162.096L162.579 273.038L163.383 274.313L164.985 273.517L165.951 273.678V273.834L167.233 274.631L168.357 274.953L168.52 275.27L168.518 275.905Z"
713
+ fill="#E5E5E5"
714
+ stroke="white"
715
+ stroke-linejoin="round"
716
+ [attr.fill]="usaStates['HI']['color']"
717
+ />
718
+
719
+ <path
720
+ d="M150.525 270.338L151.008 270.495L150.362 270.974V270.813L149.401 271.13L148.597 270.656L146.99 270.813L146.349 270.974L146.029 270.178L145.546 269.86L145.388 269.381L144.905 268.903V268.425L144.422 268.112L146.029 267.79L146.833 266.676L147.311 266.358L147.794 266.515L148.598 267.951H148.756L148.918 268.268L148.756 268.586L148.918 269.06L149.559 269.543L149.721 269.06H150.042V269.543L150.362 269.699L150.525 270.338Z"
721
+ fill="#E5E5E5"
722
+ stroke="white"
723
+ stroke-linejoin="round"
724
+ [attr.fill]="usaStates['HI']['color']"
725
+ />
726
+
727
+ <path
728
+ d="M133.508 261.902L133.666 262.376V262.698L133.346 263.495V264.447L132.705 265.082L132.222 265.404L130.615 265.243L129.974 264.608L129.013 264.286L128.688 263.969V263.495L129.171 262.855L130.778 261.585H133.025L133.508 261.902Z"
729
+ fill="#E5E5E5"
730
+ stroke="white"
731
+ stroke-linejoin="round"
732
+ [attr.fill]="usaStates['HI']['color']"
733
+ />
734
+ </g>
735
+ <path
736
+ d="M159.669 274.792L159.989 275.27L159.831 275.905L158.387 276.385L158.225 275.744L158.067 275.27L157.426 274.63V274.469L157.904 274.312H159.028L159.669 274.792Z"
737
+ fill="#E5E5E5"
738
+ stroke="white"
739
+ stroke-linejoin="round"
740
+ />
741
+
742
+ <path
743
+ d="M160.154 271.289L160.795 271.45L160.475 272.085L159.514 272.72H159.029L157.102 272.402L154.854 272.563H154.691L155.175 271.288H155.337L157.585 271.449L158.709 271.61V271.605L160.154 271.289Z"
744
+ fill="#E5E5E5"
745
+ stroke="white"
746
+ stroke-linejoin="round"
747
+ />
748
+ <path
749
+ d="M162.888 277.654L163.046 278.289L161.764 278.612L161.281 278.451L161.602 277.977L162.726 277.498L162.888 277.654Z"
750
+ fill="#E5E5E5"
751
+ stroke="white"
752
+ stroke-linejoin="round"
753
+ />
754
+
755
+ <g
756
+ class="zoomable-state state-IA"
757
+ (mouseenter)="onStateHover('IA', false, $event)"
758
+ (mouseleave)="onStateHover('IA', true, $event)"
759
+ [ngbPopover]="countryPopoverTemplate"
760
+ [disablePopover]="
761
+ currentlyHoveredState?.state !== usaStates['IA'].state
762
+ "
763
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
764
+ triggers="mouseenter:mouseleave"
765
+ autoClose="false"
766
+ container="body"
767
+ >
768
+ <path
769
+ d="M281.635 104.356L280.998 105.986L280.42 106.63L280.296 107.815L279.87 108.383L279.382 108.947L277.828 109.71L277.168 109.876L276.885 109.885L276.766 109.871H276.264L275.111 110.179L274.8 110.293L274.714 110.349H274.705L274.648 110.43L274.643 110.453L274.528 110.918L274.432 111.297L274.198 112.225L274.207 112.315V112.324L274.767 112.987L275.03 113.12L275.14 113.106L275.208 113.134L275.275 113.205L275.662 113.831L275.657 114.096L275.662 114.129L275.691 114.224L275.734 114.519L275.7 115.405L275.629 115.727L275.586 115.798L275.347 115.931L275.256 116.016L274.615 116.921L274.586 117.064L274.529 118.294L273.955 118.967L273.682 118.971L273.467 118.986H273.395L272.96 119.137L272.951 119.147L272.898 119.175L272.693 119.294L272.621 119.343L272.53 119.433L272.182 119.964L272.173 120.049L272.197 120.139L272.369 120.219L272.508 120.414L272.551 120.547L272.56 120.66L272.537 121.637L272.532 121.642L272.512 121.74L272.426 121.811L272.412 121.816L272.159 121.906L271.612 121.868L271.268 121.588L270.431 120.57L270.398 120.494L270.427 120.272L270.407 120.201L269.747 119.709L269.575 119.6V119.609L267.69 119.614L265.729 119.747V119.752L264.318 119.842L261.934 120.003V119.998L261.298 120.031L258.127 120.197L255.827 120.306L254.311 120.348L252.508 120.419L250.508 120.504L248.71 120.557L246.723 120.606V120.611L245.393 120.625L243.04 120.616L240.649 120.601L239.23 120.59V120.586L235.977 120.553L235.236 118.373L235.495 117.079C235.374 116.547 235.252 116.015 235.131 115.482L235.241 114.246L234.667 113.901L234.542 111.684L234.184 110.442V110.437L233.036 108.518L232.892 106.509L231.811 104.509L231.137 102.671L231.236 101.993L230.992 101.538L230.896 100.282L230.954 100.131L230.949 99.9651L230.916 99.8371L230.83 99.7234L230.724 99.6806L230.447 99.6619L230.16 98.8745H230.155L229.868 98.1118L229.657 97.7801L229.394 97.5385L229.184 97.3775L229.504 95.9135L229.829 95.0607H229.824L230.384 93.1557L230.508 92.8191L230.532 92.7482L230.226 91.6488L230.149 91.611H229.575L229.398 91.2173C229.389 91.0372 229.379 90.8567 229.369 90.6759L229.862 90.6474L229.838 89.8467L229.292 89.2355L229.259 88.5864L230.416 88.5958L233.606 88.6051C234.118 88.6051 234.625 88.6101 235.136 88.6101L238.375 88.5909H238.906L242.665 88.5579V88.553L243.148 88.5436L246.427 88.4944L247.986 88.4708L250.186 88.4378L252.749 88.3807L253.954 88.3522V88.3473L257.523 88.2429L257.719 88.2336V88.2385L261.469 88.1056L262.301 88.0771L265.231 87.9585L268.013 87.8399L268.96 87.7971V87.7922L272.089 87.6445V87.6494L272.228 88.486L272.218 89.0451L273.074 89.642L273.256 89.8743L273.5 90.2581L273.467 90.3954L272.855 91.419L272.644 92.2246L272.816 93.2581L272.993 94.0922L273.73 95.7078L273.829 95.9115L274.475 96.3382L274.7 96.4425L275.121 96.5409H275.126L276.169 96.7378L276.571 96.8328L276.661 96.8756L276.719 96.9327L277.231 97.8568L277.322 98.127L277.327 98.1885L277.293 98.2456L277.184 98.4351L277.179 98.4587L277.188 98.5202L277.207 98.5724L277.269 98.6432L277.461 98.7761L278.001 99.0507L278.697 99.529L278.72 99.5482L279.199 100.112L279.223 100.145L279.228 100.188L279.178 100.496L279.135 100.594V100.665L279.245 100.916L279.25 100.931L279.484 101.215L279.489 101.22L279.628 101.329L279.777 101.427L280.117 101.531L281.537 103.209H281.542L281.635 104.356Z"
770
+ fill="#E5E5E5"
771
+ stroke="white"
772
+ stroke-linejoin="round"
773
+ [attr.fill]="usaStates['IA']['color']"
774
+ />
775
+ <path
776
+ d="M251.63 108V101.7H253.412V108H251.63ZM253.924 108L256.705 101.7H258.46L261.25 108H259.396L257.218 102.573H257.92L255.742 108H253.924ZM255.445 106.776L255.904 105.462H258.982L259.441 106.776H255.445Z"
777
+ fill="white"
778
+ [attr.fill]="
779
+ usaStates['IA']['color'] === lowestBlue
780
+ ? blueText
781
+ : whiteText
782
+ "
783
+ />
784
+ </g>
785
+ <g
786
+ class="zoomable-state state-ID"
787
+ (mouseenter)="onStateHover('ID', false, $event)"
788
+ (mouseleave)="onStateHover('ID', true, $event)"
789
+ [ngbPopover]="countryPopoverTemplate"
790
+ [disablePopover]="
791
+ currentlyHoveredState?.state !== usaStates['ID'].state
792
+ "
793
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
794
+ triggers="mouseenter:mouseleave"
795
+ autoClose="false"
796
+ container="body"
797
+ >
798
+ <path
799
+ d="M115.56 74.0077L114.742 79.2202L114.455 81.0967C114.275 82.204 114.094 83.3112 113.914 84.4185L113.015 89.8914L112.121 95.4258L108.419 94.8525L103.579 94.0804H103.574L103.139 94.0095L102.551 93.8619L100.848 93.5666L98.777 93.2113L96.4384 92.8225L93.2146 92.2777L92.9802 92.2398L90.3113 91.7896L90.053 91.7467L89.369 91.633L89.2731 91.6139L88.6323 91.4623L88.0968 91.325L86.1884 90.9554H86.1834L84.4568 90.6188L82.3522 90.1449L81.1471 89.9082L80.1537 89.7517V89.7467L68.4328 87.2832L67.5099 87.0745L64.4058 86.3683L64.3438 86.3447L68.4139 68.395V68.3901L69.2653 66.3527L69.4948 65.9738L69.8679 65.2725L70.1694 64.0594L70.5568 63.5904L70.5663 63.5712L70.5757 63.5476L70.5946 63.5191V63.5136L70.609 63.4049L70.5802 63.3197L70.5752 63.3055L70.1639 62.5092L70.0874 62.4571L69.7814 62.3527H69.7382L69.6667 62.3857L68.71 61.9969L68.5953 61.8075L68.5809 61.651L68.5903 61.556L68.6092 61.4989L68.8769 59.7076L68.9728 59.5132L70.6756 57.1963L70.8524 57.0353L70.91 57.0117L71.0968 56.9689L71.8285 56.7228L72.2492 56.2725L72.4787 56.0265L72.6605 55.837L72.9188 55.3916L72.9238 55.3823L72.9143 55.2972L72.8646 55.1884L72.8408 55.0841L72.8314 54.8611L73.0226 54.4674L73.2665 54.2445L73.6395 53.9128L74.7875 52.06L75.0507 51.5186L76.3805 49.8272L77.1171 49.0787L77.3039 48.87L77.3327 48.7327L77.0695 47.3587L77.0168 47.1456L76.8678 46.9606L76.7386 46.7898H76.7337L76.4515 46.6712L75.7844 46.06L75.4367 45.7426L75.4129 45.6998L75.3796 45.6333L74.8406 43.9468L74.791 43.1934L75.159 42.1934L75.1094 41.2584L75.0329 40.6565L75.0234 40.6186L74.7845 39.6565L74.9425 39.1782L75.2246 37.9508L76.6308 31.753L76.9512 30.3598L77.2095 29.2279H77.2046L78.6535 22.7811V22.7762L78.8209 22.0607L80.7964 13.6454L81.1695 12.0391L88.2051 13.5509L87.0716 18.8107L86.4164 21.8387L85.8809 24.3485L85.8859 24.3535L86.1109 24.7516L87.5887 27.7368L87.6031 27.7747L87.6125 27.8032L87.6175 27.8175V27.8603L87.6125 28.4715L87.3642 29.097L87.1536 29.5754L87.01 30.4518V30.4612L87.0194 30.7264L88.1962 32.3377L88.3541 32.475L88.4833 32.5886L88.8852 32.783L89.4688 33.0153L89.598 33.1054L90.2676 34.598L90.8939 36.0433L91.2481 36.6974L91.4349 37.0419H91.4398V37.0468L91.5834 38.1462V38.1511L91.6167 38.2412L92.7264 39.7052L92.8366 39.7338L92.8863 39.748H93.2161L93.6394 40.8002L94.4644 40.9852L94.6368 40.936L94.7565 40.8868L94.9527 40.8489L95.3501 40.9011L95.4842 41.0098L95.5175 41.0428L95.5607 41.0807L95.5845 41.2087L95.5413 41.4454L95.2736 42.1939L94.8241 43.2175L94.1545 44.7008L92.0071 49.9985L91.7394 51.4581L91.6052 52.1963L91.5958 52.2342L91.6152 52.2578H91.6201L91.9599 52.307L92.2659 52.3828L92.3618 52.4256L92.9261 53.3114L92.9931 53.5767L93.3085 53.6259L94.8151 52.9433L95.7668 52.119L96.4414 51.7352V51.7401L96.5994 51.901L97.3445 52.9433L97.3877 53.0806L97.4736 53.9478L97.4686 54.2701L97.3693 54.4502L97.3464 55.0983L97.3559 55.9512L98.5609 60.3862L99.8331 62.1441L100.096 62.0776L100.369 62.2907L100.694 62.6554L100.843 62.8783L101.011 63.3995L101.236 64.3473V64.4324L101.186 64.5131L101.157 64.5368L101.143 65.8965L101.239 66.4132L101.449 66.7164L102.076 67.4083L102.274 67.4841L102.432 67.394L102.509 67.2754V67.2469L102.6 66.8394L102.715 66.6686L103.016 66.3463L103.538 66.2277L106.283 66.9054L107.455 66.4693L109.591 66.6873L111.141 67.1234L112.14 67.1519L113.47 65.6401L114.345 65.3133L114.713 65.6736L115.344 66.9009L115.689 67.8773L115.775 68.1381L116.401 68.7114L115.56 74.0077Z"
800
+ fill="#E5E5E5"
801
+ stroke="white"
802
+ stroke-linejoin="round"
803
+ [attr.fill]="usaStates['ID']['color']"
804
+ />
805
+ <path
806
+ d="M85.63 79V72.7H87.412V79H85.63ZM88.6798 79V72.7H91.6588C92.3548 72.7 92.9668 72.829 93.4948 73.087C94.0228 73.345 94.4338 73.708 94.7278 74.176C95.0278 74.644 95.1778 75.202 95.1778 75.85C95.1778 76.492 95.0278 77.05 94.7278 77.524C94.4338 77.992 94.0228 78.355 93.4948 78.613C92.9668 78.871 92.3548 79 91.6588 79H88.6798ZM90.4618 77.578H91.5868C91.9468 77.578 92.2588 77.512 92.5228 77.38C92.7928 77.242 93.0028 77.044 93.1528 76.786C93.3028 76.522 93.3778 76.21 93.3778 75.85C93.3778 75.484 93.3028 75.172 93.1528 74.914C93.0028 74.656 92.7928 74.461 92.5228 74.329C92.2588 74.191 91.9468 74.122 91.5868 74.122H90.4618V77.578Z"
807
+ fill="white"
808
+ [attr.fill]="
809
+ usaStates['ID']['color'] === lowestBlue
810
+ ? blueText
811
+ : whiteText
812
+ "
813
+ />
814
+ </g>
815
+ <g
816
+ class="zoomable-state state-IL"
817
+ (mouseenter)="onStateHover('IL', false, $event)"
818
+ (mouseleave)="onStateHover('IL', true, $event)"
819
+ [ngbPopover]="countryPopoverTemplate"
820
+ [disablePopover]="
821
+ currentlyHoveredState?.state !== usaStates['IL'].state
822
+ "
823
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
824
+ triggers="mouseenter:mouseleave"
825
+ autoClose="false"
826
+ container="body"
827
+ >
828
+ <path
829
+ d="M306.324 137.13L306.32 137.395L306.2 138.087L306.114 138.239L306.047 138.296L305.372 139.149L305.21 139.592C305.005 140.176 304.801 140.761 304.597 141.345L302.942 143.525L302.928 143.574V143.579L302.875 144.721L302.755 147.241L302.732 147.291L302.727 147.3L302.707 147.314H302.693L302.282 147.328L302.717 148.29L302.602 148.707L302.564 148.816L302.497 148.935L302.391 149.043L301.994 149.332H301.985L301.846 149.593L301.779 149.712L301.764 149.735L301.721 149.854L301.707 149.93L301.712 149.944L301.762 150.19L301.766 150.199L301.948 150.697L302.02 150.82L302.704 151.531V151.706L302.536 151.89L302.45 151.91L301.25 152.161L301.068 152.198L300.919 152.241L300.866 152.256H300.848L300.637 152.379L300.599 152.407H300.589L300.44 152.544L300.225 152.833L299.718 152.667V152.677L299.665 152.7L299.516 152.767L299.454 152.816L299.378 152.868L299.263 153.016L299.22 153.12L298.971 154.196L298.966 154.267L299.043 154.504L299.407 154.94L299.521 155.001L299.631 155.105L299.875 155.647L299.751 156.253L299.645 156.533L299.447 156.623L299.385 156.632V156.637L298.753 156.57L295.449 155.177L295.399 155.192L293.457 157.068L293.868 157.978L292.195 157.803L291.616 157.334L291.31 156.585L290.774 155.595L290.554 155.283L290.54 154.33L290.855 154.245L290.955 154.196L290.964 154.187L290.969 154.177L290.979 154.168L291.012 154.064L291.046 153.727L291.051 153.713L291.046 153.703L290.996 153.523L290.991 153.504L290.986 153.495L290.847 153.182L290.742 153.049L290.513 152.826L290.355 152.59L290.106 152.135L290.049 151.917L290.044 151.819V151.757L288.547 149.307L286.227 148.667L283.793 146.469L283.358 146.142L282.636 145.446L282.612 145.422L282.583 145.384L282.425 145.171L282.326 144.925L282.211 144.437L282.197 143.977L282.202 143.868L282.221 143.819L282.345 143.397L282.384 143.322L282.407 143.293L283.001 141.767L283.039 141.635L283.603 140.189H283.608L283.431 139.313L284.048 138.564L284.068 138.46L284.101 138.209L284.092 138.147L284.058 138.086L283.221 137.583L283.063 137.489L282.848 137.39L282.628 137.324L281.112 136.954V136.959L279.309 137.428L278.854 136.215L278.831 136.14L278.84 136.107L279.074 135.751L279.079 135.614L278.682 134.278L276.621 132.463V132.458H276.616L274.592 130.373L273.406 129.482L272.91 128.695L272.073 126.677L271.484 123.9L271.534 123.37L272.151 121.92L272.404 121.83L272.414 121.825L272.505 121.754L272.524 121.659L272.528 121.654L272.548 120.674L272.543 120.565L272.493 120.432L272.355 120.235L272.187 120.154L272.158 120.064L272.173 119.984L272.521 119.448L272.549 119.415L272.583 119.387L272.607 119.358L272.679 119.309L272.889 119.19L272.939 119.162L272.953 119.152L273.388 119.005H273.455L273.675 118.99L273.943 118.986V118.976L274.522 118.303L274.58 117.073L274.608 116.931L275.254 116.026L275.34 115.941L275.579 115.808L275.629 115.737L275.696 115.415L275.729 114.529L275.686 114.234L275.657 114.139L275.652 114.11L275.657 113.849L275.269 113.219L275.202 113.148L275.135 113.119L275.025 113.134L274.762 113.006L274.202 112.342V112.333L274.193 112.243L274.427 111.314V111.309L274.523 110.935L274.638 110.47L274.643 110.447L274.705 110.366H274.71L274.801 110.309L275.107 110.2L276.259 109.888H276.762L276.881 109.902L277.163 109.893L277.824 109.727L279.378 108.964L279.866 108.4L280.292 107.832L280.417 106.647L280.995 106.002V105.993L281.627 104.369H281.63L281.539 103.232L280.118 101.554L279.778 101.44L279.629 101.345L279.491 101.237L279.486 101.232L279.251 100.947L279.246 100.933L279.132 100.682V100.604L279.181 100.5L279.231 100.192L279.226 100.149L279.202 100.116L278.719 99.5615L278.7 99.5428H278.695L277.999 99.0689L277.459 98.7893L277.272 98.6565L277.205 98.59L277.186 98.533L277.176 98.4714L277.181 98.4478L277.296 98.2583L279.023 98.1732L283.055 97.9409V97.9316L283.772 97.8888V97.8937L287.287 97.7136L287.574 97.6944L291.008 97.5049V97.5098L292.328 97.4247L292.888 97.3868L296.131 97.1215L296.968 97.0364L300.191 96.8135L300.23 97.0315L300.253 97.9837L300.182 98.2111L300.149 98.249L300.096 98.5935V98.9158L300.172 99.2524L300.345 99.655L300.465 99.906L300.847 100.484L301.66 101.567L302.1 102.794L302.196 103.126L302.282 103.486L302.364 103.737L302.392 103.808L302.449 103.931L302.688 104.362L303.191 105.172L303.411 107.774C303.465 108.399 303.519 109.024 303.573 109.65V109.655L303.702 111.095L303.86 112.797C304.031 114.689 304.202 116.581 304.372 118.473H304.367L304.381 118.63L304.663 122.231L304.912 125.131L305.194 128.145L305.328 129.567H305.323L304.931 132.007L304.821 133.139L304.993 133.722L305.391 134.186L306.003 135.269L305.979 135.62L305.917 135.791L305.867 135.861L305.934 136.397L305.939 136.406H305.972L305.991 136.435L306.324 137.13Z"
830
+ fill="#E5E5E5"
831
+ stroke="white"
832
+ stroke-linejoin="round"
833
+ [attr.fill]="usaStates['IL']['color']"
834
+ />
835
+ <path
836
+ d="M287.63 129V122.7H289.412V129H287.63ZM290.68 129V122.7H292.462V127.587H295.468V129H290.68Z"
837
+ fill="white"
838
+ [attr.fill]="
839
+ usaStates['IL']['color'] === lowestBlue
840
+ ? blueText
841
+ : whiteText
842
+ "
843
+ />
844
+ </g>
845
+ <g
846
+ class="zoomable-state state-IN"
847
+ (mouseenter)="onStateHover('IN', false, $event)"
848
+ (mouseleave)="onStateHover('IN', true, $event)"
849
+ [ngbPopover]="countryPopoverTemplate"
850
+ [disablePopover]="
851
+ currentlyHoveredState?.state !== usaStates['IN'].state
852
+ "
853
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
854
+ triggers="mouseenter:mouseleave"
855
+ autoClose="false"
856
+ container="body"
857
+ >
858
+ <path
859
+ d="M329.125 133.974L327.265 135.22L325.868 136.168V136.163L324.676 135.755L324.083 137.527L324.106 138.216L322.542 139.974L321.347 141.115L320.548 142.423L320.533 142.338L320.543 142.423L320.332 144.338L319.916 144.475L319.658 144.56L318.419 144.499L318.357 144.489L317.984 144.347L317.596 144.091L317.553 144.063L317.534 144.034L317.481 143.958L317.423 143.745L317.414 143.726L317.409 143.674V143.579L317.433 143.28L315.702 144.379L315.649 144.384L315.472 144.417L315.429 144.446L315.391 144.495L315.376 144.614L315.444 145.268L314.884 146.533L314.645 146.718L314.53 146.756H314.463L312.933 145.181L311.598 146.053L311.063 146.551L310.422 147.702L309.164 146.873V146.868L308.858 146.655L307.539 146.305V146.31L306.816 146.518L306.333 145.968L306.127 146.765L306.515 147.229L306.189 147.68L305.687 147.552L305.797 146.841L305.433 146.939V146.934L303.487 147.091L303.42 147.361L303.826 148.01L303.615 148.152L303.434 148.461L303.113 148.257L302.716 148.29L302.285 147.323L302.696 147.309H302.711L302.73 147.295L302.735 147.285L302.759 147.236L302.878 144.716L302.931 143.573L302.94 143.521L304.6 141.342L305.212 139.598L305.375 139.153L306.049 138.3L306.116 138.243L306.202 138.091L306.322 137.399L306.327 137.129L305.997 136.433L305.978 136.404H305.945L305.874 135.855L305.923 135.788L305.985 135.613L306.009 135.268L305.397 134.186L304.999 133.721L304.822 133.134L304.937 132.002L305.329 129.566L305.195 128.139H305.2L304.918 125.121L304.674 122.226L304.387 118.625L304.377 118.468L304.133 115.782L303.866 112.792L303.708 111.09L303.574 109.645L303.191 105.167L305.731 105.868V105.863L307.998 104.697L308.826 104.077L311.269 103.845V103.84L313.695 103.594L315.019 103.456L317.224 103.238L318.286 103.125V103.12L321.27 102.783L322.045 102.698L325.063 102.354L325.303 103.026L325.528 104.832H325.523L325.661 105.969L325.872 107.651V107.656L325.896 107.853L326.24 110.724L326.331 111.449C326.417 112.155 326.503 112.861 326.589 113.565L326.788 115.267L327.061 117.66L327.118 118.124L327.457 121.45V121.455L327.557 122.417L327.791 124.498L327.99 126.237L328.048 126.729L328.291 129.098H328.296L328.545 131.277L328.157 132.149L328.152 132.154L329.004 133.495L329.125 133.974Z"
860
+ fill="#E5E5E5"
861
+ stroke="white"
862
+ stroke-linejoin="round"
863
+ [attr.fill]="usaStates['IN']['color']"
864
+ />
865
+ <path
866
+ d="M311.63 126V119.7H313.412V126H311.63ZM314.68 126V119.7H316.147L319.621 123.894H318.928V119.7H320.674V126H319.207L315.733 121.806H316.426V126H314.68Z"
867
+ fill="white"
868
+ [attr.fill]="
869
+ usaStates['IN']['color'] === lowestBlue
870
+ ? blueText
871
+ : whiteText
872
+ "
873
+ />
874
+ </g>
875
+ <path
876
+ d="M291.3 162.933L291.329 163.052V163.119L291.324 163.147L291.295 163.256L291.286 163.299L291.271 163.327L291.185 163.488L290.712 163.512L290.516 163.247L290.501 163.232L290.411 163.028L290.406 163.019L290.396 162.97L290.387 162.937L290.396 162.899L290.411 162.85L290.42 162.807L290.434 162.788L290.534 162.655L290.586 162.622L290.749 162.599L290.993 162.637L291.131 162.674L291.15 162.689L291.17 162.703L291.184 162.712L291.242 162.798L291.247 162.807L291.3 162.933Z"
877
+ fill="#E5E5E5"
878
+ stroke="white"
879
+ stroke-linejoin="round"
880
+ />
881
+ <g
882
+ class="zoomable-state state-KY"
883
+ (mouseenter)="onStateHover('KY', false, $event)"
884
+ (mouseleave)="onStateHover('KY', true, $event)"
885
+ [ngbPopover]="countryPopoverTemplate"
886
+ [disablePopover]="
887
+ currentlyHoveredState?.state !== usaStates['KY'].state
888
+ "
889
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
890
+ triggers="mouseenter:mouseleave"
891
+ autoClose="false"
892
+ container="body"
893
+ >
894
+ <path
895
+ d="M355.072 145.149L352.542 148.158L352.222 148.57L350.921 149.295L350.586 149.537L350.49 149.598H350.485L349.299 150.641L349.366 151.569L348.587 152.034L348.214 152.378L348.181 153.203L347.999 153.516L347.434 153.966L346.602 154.004L346.263 155.269L345.732 155.312L344.077 156.26L343.551 156.43L341.777 157.369L339.571 157.793L339.078 157.842L336.992 158.084L336.691 158.117L332.18 158.534H332.113L330.511 158.609L327.814 158.78L327.641 158.809V158.804L326.426 159.022V159.027L323.355 159.316L321.71 159.414V159.419L319.711 159.5L317.898 159.566L316.578 159.883H314.823L312.24 160.192L311.766 160.249L309.843 160.434L307.18 160.708L306.725 160.76H306.72L305.338 160.921V160.585L303.908 160.556L303.396 160.585V160.59L303.936 162.154L303.712 162.556L299.895 162.817L299.661 162.831L297.035 163.021L296.939 163.03L296.872 163.035L292.395 163.352L291.773 163.442L292.452 161.931L293.012 162.447L293.414 162.414L293.534 161.903L293.778 161.637C293.891 161.134 294.004 160.63 294.117 160.126V160.121L293.61 159.86H293.605V159.609H293.61L293.854 159.472H293.859L294.189 158.372L293.873 157.978L293.467 157.064L295.409 155.194V155.189L295.458 155.175L298.758 156.563L298.763 156.568L299.395 156.635L299.462 156.625L299.661 156.54L299.766 156.256L299.895 155.649L299.647 155.108L299.541 155.009L299.427 154.943L299.058 154.507L298.987 154.274L298.992 154.199L299.236 153.128L299.285 153.019L299.396 152.877L299.472 152.82L299.534 152.77L299.683 152.704L299.741 152.68L300.243 152.846V152.841L300.463 152.552L300.612 152.42H300.617L300.66 152.391L300.866 152.263H300.885L300.943 152.249L301.092 152.206L302.474 151.917L302.56 151.898L302.722 151.713V151.538L302.038 150.828L301.967 150.7L301.785 150.208L301.78 150.198L301.73 149.952L301.725 149.938L301.74 149.862L301.789 149.739L301.799 149.715L301.87 149.597L302.009 149.341H302.014L302.416 149.052L302.515 148.938L302.582 148.82L302.626 148.711L302.735 148.298V148.293L303.133 148.26L303.453 148.464L303.63 148.156L303.845 148.014L303.439 147.365L303.506 147.099L303.501 147.094H303.506L305.452 146.938L305.811 146.843L305.706 147.554L306.208 147.677L306.528 147.231L306.141 146.767L306.346 145.97L306.834 146.515L307.552 146.311L308.872 146.662L309.178 146.875L310.436 147.705L311.076 146.553L311.612 146.061L312.953 145.18L314.469 146.743L314.478 146.738V146.752H314.545L314.66 146.715L314.9 146.529L315.459 145.264L315.392 144.61L315.407 144.492L315.445 144.442L315.488 144.414L315.665 144.381L315.67 144.386L315.72 144.381L317.451 143.277L317.428 143.585V143.603L317.432 143.679V143.728L317.442 143.747L317.504 143.96L317.554 144.036L317.573 144.064L317.616 144.093L318.004 144.349L318.377 144.497L318.439 144.506L319.681 144.563L319.934 144.482V144.477L320.35 144.34L320.561 142.421L321.36 141.118L322.555 139.976H322.56L324.129 138.218H324.124L324.1 137.529L324.693 135.762L325.885 136.17L327.282 135.222L329.142 133.976L329.023 133.502L328.178 132.161L328.57 131.284L330.268 131.432V131.427L331.229 131.076V131.081L332.898 131.692L333.831 133.204L333.912 133.707L335.491 134.152L336.753 134.019V134.014L337.045 134.052L337.144 134.09L337.202 134.133L337.947 134.905L338.612 135.232L339.104 135.175L339.154 134.791L339.221 134.682L339.307 134.626L339.977 134.331L340.082 134.307L340.153 134.316H340.168L340.512 134.401L341.426 134.619L341.449 134.629L341.736 134.762L341.755 134.767L342.243 135.131L342.587 134.828L343.405 134.709L343.554 134.131L344.185 133.511V133.516L344.338 133.445L345.046 133.127L345.281 133.023H345.333L345.419 133.061L345.462 133.104L345.472 133.123L345.496 133.156L345.51 133.184L345.515 133.199V133.213L345.534 133.279L345.539 133.355V133.364L345.544 133.369L345.534 133.502L345.616 133.847L345.855 134.557L345.874 134.6L345.931 134.719L346.003 134.799L346.008 134.814L346.194 134.937L346.232 134.956V134.951L347.605 135.477L348.265 136.482L348.337 137.06L348.624 137.391L348.643 137.837L348.528 138.216L348.313 139.151L348.304 139.392L348.686 139.596V139.605L348.849 139.904L349.102 140.009L349.538 140.697L350.116 140.906L350.131 140.92L350.136 140.93V140.991L349.911 141.37L350.695 142.166L351.695 143.379L351.709 143.446L352.03 143.934L352.666 144.304L352.964 144.128L353.227 144.626L353.782 145.105H353.787L354.347 145.228L354.859 145.048L355.072 145.149Z"
896
+ fill="#E5E5E5"
897
+ stroke="white"
898
+ stroke-linejoin="round"
899
+ [attr.fill]="usaStates['KY']['color']"
900
+ />
901
+ <path
902
+ d="M329.223 149.605L329.124 147.607L331.833 144.7H333.795L331.095 147.625L330.105 148.66L329.223 149.605ZM327.63 151V144.7H329.394V151H327.63ZM331.86 151L329.808 148.399L330.969 147.157L333.93 151H331.86ZM335.516 151V148.336L335.93 149.407L333.113 144.7H334.994L337.028 148.111H335.939L337.982 144.7H339.71L336.902 149.407L337.298 148.336V151H335.516Z"
903
+ fill="white"
904
+ [attr.fill]="
905
+ usaStates['KY']['color'] === lowestBlue
906
+ ? blueText
907
+ : whiteText
908
+ "
909
+ />
910
+ </g>
911
+ <g
912
+ class="zoomable-state state-LA"
913
+ (mouseenter)="onStateHover('LA', false, $event)"
914
+ (mouseleave)="onStateHover('LA', true, $event)"
915
+ [ngbPopover]="countryPopoverTemplate"
916
+ [disablePopover]="
917
+ currentlyHoveredState?.state !== usaStates['LA'].state
918
+ "
919
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
920
+ triggers="mouseenter:mouseleave"
921
+ autoClose="false"
922
+ container="body"
923
+ >
924
+ <path
925
+ d="M301.371 242.942V242.951L301.342 243.099V243.108L301.166 243.502L300.868 244.174L299.992 244.691L299.38 244.316L298.055 244.349L296.993 243.131L296.964 243.103L296.835 242.98L296.821 242.966L296.715 242.895L296.672 242.881L296.39 242.776L296.179 242.7L294.845 242.217L294.634 242.16L294.596 242.151L294.397 242.108L294.316 242.089H294.259L294.06 242.074L293.773 242.051L293.098 242.108L293.232 241.567L293.356 241.353L293.39 241.278V241.179L293.38 241.123L293.165 240.388L293.16 240.355L293.098 240.327L293.007 240.278L292.888 240.306L292.758 240.363L292.52 240.511L292.367 240.696L292.247 240.862L292.027 240.885L291.936 240.824L291.812 240.691V240.677L291.338 240.833L291.353 242.064L290.783 242.756L291.071 243.315L291.08 243.324L291.343 243.272L291.549 243.039L292.104 242.618L292.185 242.627L292.2 242.66L292.195 242.689L292.142 242.769L291.539 243.215L291.018 243.745L290.932 243.84H290.927L290.822 243.939L290.798 243.967L290.181 244.474L290.152 244.503L290.123 244.517L289.688 244.744L288.555 245.119H288.502V245.109L288.493 245.052L288.718 244.915L288.923 244.877L289.029 244.858L289.119 244.809L289.356 244.699L289.4 244.67L289.567 244.481L289.558 244.284L288.84 243.985L288.791 243.597L288.987 243.265L288.681 242.857L288.508 242.734L288.183 242.787L288.001 243.028L287.829 243.654L286.662 243.592L286.609 243.275L286.907 242.919L286.315 242.632L285.803 242.935L286.114 243.286L286.109 243.561L285.44 243.636L285.258 244.442L284.196 244.759L283.79 244.972L283.976 245.261L285.459 244.91L285.698 245.114L283.751 245.545L282.352 244.207L279.445 243.548L279.206 243.359L278.88 243.022L278.895 242.942L279.421 242.657L279.603 242.155L280.066 242.288L280.157 242.183L280.119 241.97L279.99 241.638L279.932 241.51L279.894 241.473L279.383 241.065H279.173L278.772 240.989L276.878 240.582L276.801 240.212L276.744 239.904L276.61 239.492L275.883 239.378L275.906 238.412L275.797 238.336L274.792 238.307L274.649 238.326L273.491 238.663L273.482 238.668V237.597L272.538 237.805L271.926 238.076L271.73 238.189L271.261 238.507L270.917 238.824L270.879 239.042L271.056 239.431L271.271 239.843L271.448 239.872L272.361 239.9L273.074 239.644L273.299 239.592L273.619 239.641L275.126 240.305L275.15 240.348L275.135 240.419L274.6 241.153L274.49 241.22L274.117 241.338L273.955 241.286L272.113 240.414L271.964 240.258L271.915 240.229H271.34L270.848 240.3H270.838L270.331 240.527L269.963 240.797L269.715 240.864H269.636L269.464 240.878H269.421L267.015 240.57L266.465 240.489H266.446V240.494L266.102 240.409L265.222 240.12L264.423 239.776L263.988 239.591L263.313 239.273L262.997 239.145H262.983L261.883 238.794L261.026 238.591L260.544 238.529H260.161L258.174 238.681L257.572 238.762L256.653 238.899L256.189 238.97L255.639 239.103L255.611 239.112L255.558 239.131L255.405 239.18L255.094 239.346L254.908 239.469L254.731 239.621L254.095 239.17L253.747 238.334L254.591 237.656L254.644 237.192L255.737 235.68H255.742V235.675L255.747 233.577L255.455 231.871V231.866H255.46L255.465 231.861L255.829 231.558L255.867 231.463L255.872 231.406L255.738 230.728L255.47 230.411L255.446 230.382L255.551 230.003L256.9 227.487L257.072 226.752H257.067L257.034 223.298L257.029 223.293L256.599 223.407L256.503 222.843L256.436 222.483L256.153 221.275L255.293 220.033L254.284 218.986L253.815 216.181L252.504 214.731L252.203 212.376H252.208L252.088 206.951L252.05 204.894L252.012 203.383L254.111 203.34H254.197L256.804 203.283V203.274H257.086L259.396 203.212V203.207L261.692 203.146V203.151L264.112 203.102L270.133 202.945H270.138L275.72 202.718V202.723L275.945 202.708L277.509 202.647L277.514 202.638L278.428 202.599V202.604L278.127 203.087L278.031 203.431L278.045 203.516L278.782 206.828L278.835 206.961L278.849 206.98L278.878 207.013L278.887 207.033L278.907 207.047L278.993 207.123L279.016 207.142L279.308 207.232L279.375 207.38L279.165 208.081L279.184 208.256V208.27L279.208 208.308L279.246 208.365L279.255 208.384L280.284 209.469L280.346 211.037L279.274 211.17V211.175L280.212 212.26L278.303 215.023L277.237 216.416L277.146 216.577L276.997 216.828L276.992 216.837L275.987 218.832L275.964 218.875L275.93 218.951L275.925 218.96L275.577 221.798L275.352 222.974L275.123 224.675L279.456 224.471L280.549 224.419L282.749 224.296V224.291L285.183 224.154H285.188L285.365 224.149L287.249 224.03L288.077 223.978L292.056 223.717L293.065 223.646L293.084 223.987L292.97 224.561L292.874 224.769L292.816 224.779L292.74 224.788L292.716 224.812L292.592 225.323L292.453 226.02L292.337 226.594L292.231 227.371L293.81 229.527L293.824 229.541L293.887 229.603L294.475 230.787L294.489 230.991L294.403 231.209L294.379 231.304L294.389 231.361L294.69 231.925L294.781 232.1L294.987 232.342L295.058 232.423L295.082 232.437L295.115 232.461L295.134 232.475H295.154L295.594 232.446L294.68 232.816L294.274 233.299L294.097 233.811L293.734 233.877L293.666 234.29L292.997 234.11L292.571 234.612V234.617L292.628 234.854L292.719 235.086L292.781 235.19L292.877 235.257L293.107 235.37L293.614 235.257L293.564 235.601L294.229 235.938L294.535 235.976L294.75 235.952L294.979 235.848L295.118 235.739L295.171 235.564L295.28 234.875L295.266 234.61L295.974 233.833L296.304 233.672L296.701 233.795L296.949 233.998L296.744 234.107L296.591 234.259L296.6 234.439L296.615 234.572L297.174 235.178L297.284 235.259L297.739 235.491L297.844 235.548L297.208 236.604L296.84 237.145L296.293 237.349L295.863 237.188L294.869 237.15L294.707 237.203L294.745 237.52L294.798 237.615L295.276 237.876L295.501 237.971L295.663 237.999L295.888 237.985L296.357 238.383L296.381 238.45L296.372 238.492L296.195 238.388L295.889 238.222L295.061 238.184L294.875 238.298L294.569 238.549L294.493 238.814L294.397 239.71L294.406 239.767L294.478 239.843L294.755 240.023L296.539 240.958L296.821 240.939L297.566 240.906L299.553 241.474L300.065 242.104L300.323 242.455L300.711 242.678L301.069 242.517L301.136 242.545L301.208 242.612L301.371 242.942Z"
926
+ fill="#E5E5E5"
927
+ stroke="white"
928
+ stroke-linejoin="round"
929
+ [attr.fill]="usaStates['LA']['color']"
930
+ />
931
+ <path
932
+ d="M260.63 219V212.7H262.412V217.587H265.418V219H260.63ZM265.429 219L268.21 212.7H269.965L272.755 219H270.901L268.723 213.573H269.425L267.247 219H265.429ZM266.95 217.776L267.409 216.462H270.487L270.946 217.776H266.95Z"
933
+ fill="white"
934
+ [attr.fill]="
935
+ usaStates['LA']['color'] === lowestBlue
936
+ ? blueText
937
+ : whiteText
938
+ "
939
+ />
940
+ </g>
941
+
942
+ <g
943
+ class="zoomable-state state-MA"
944
+ (mouseenter)="onStateHover('MA', false, $event)"
945
+ (mouseleave)="onStateHover('MA', true, $event)"
946
+ [ngbPopover]="countryPopoverTemplate"
947
+ [disablePopover]="
948
+ currentlyHoveredState?.state !== usaStates['MA'].state
949
+ "
950
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
951
+ triggers="mouseenter:mouseleave"
952
+ autoClose="false"
953
+ container="body"
954
+ >
955
+ <path
956
+ d="M443.793 79.8791L442.186 80.7369L442.11 81.0814L441.88 80.8683L441.334 80.9869L441.284 81.1576L440.753 81.475L440.466 82.1955L439.428 82.603L439.155 82.944H439.146L438.802 83.3608L438.486 83.8913L438.132 84.005L437.936 84.2702L437.683 84.4361L437.329 84.5877L437.233 84.5827L437.324 84.3933L437.659 84.3081L437.85 84.038L438.52 83.4474L438.591 83.2294L438.854 82.9071H438.859L439.118 82.3623L438.898 81.3102L438.725 81.1251L438.898 80.9121L438.721 80.8077L438.109 80.7935L438.219 81.2059L437.97 81.1916L438.023 81.7821L437.559 81.7442L437.798 82.0429L437.559 82.2796L437.41 82.2703L437.046 82.3225L436.897 82.5168L436.806 82.6305L436.792 82.6591L436.821 83.0144L436.859 83.1423L436.979 83.2939L436.283 83.8815L435.862 83.9051L435.618 84.194L435.274 83.1561L435.145 83.0473L435.14 82.8343L435.006 82.4976L434.509 82.4455L434.559 82.2939L434.678 82.1463L434.564 82.132L434.219 82.0277L434.152 82.1261L433.789 81.7993L433.253 81.6763L433.172 81.667L433.122 81.5863L433.027 81.5105L432.984 81.3683L432.912 81.2595L432.945 81.1173L432.893 81.0464V80.8569L432.749 80.5582L432.735 80.4539L432.419 80.6055L432.156 79.6247L432.065 79.2551L431.147 79.5204L428.803 80.231L428.75 80.0701L426.698 80.5533L426.359 80.6242L426.091 80.6763L423.135 81.3683L421.232 81.8111L421.208 82.2378L420.81 82.3564L420.705 81.9396L419.184 82.2949L418.83 82.3756V82.3805L415.372 83.1054L415.295 83.1246L415.113 82.755L415.233 77.95L415.305 75.2729L417.208 74.8655V74.8606L417.94 74.709L421.656 73.9216L423.039 73.6263L425.832 73.0294L426.066 72.9772L428.013 72.5461L428.133 72.5176L428.166 72.5083L430.815 71.902L431.012 71.4423V71.4374L431.017 71.4325L431.066 71.3237L431.521 71.3001L431.33 70.8026L431.502 70.4616L431.607 70.3528L432.253 70.3198L432.363 69.7135L433.104 69.1688L433.171 69.1402L433.224 69.1117L433.458 69.0974L433.741 69.2396L434.023 69.0645V69.0694L434.08 69.2967L434.378 69.998L434.837 70.87L435.316 71.0831L435.656 71.0688L435.933 70.562L436.043 70.6112L436.153 70.8956L436.351 70.8292L436.401 71.0851L436.205 71.2558L436.11 71.8006L436.004 71.8577L435.87 71.744L435.755 71.9192L434.938 72.3409L434.847 72.5117L434.507 72.649L434.627 72.8458L434.89 72.9167L434.943 73.1534L434.823 73.1962L434.632 73.3621L434.57 73.5752L434.359 73.5801L434.297 73.6938L434.402 73.9546L434.632 74.0117L434.656 74.0609L434.383 74.1273L434.333 74.0894L434.195 73.7769L434.095 73.9378L434.023 74.1701L434.052 74.4309L434.449 74.8576L434.052 74.9191L433.995 75.1799L434.206 75.4501L434.411 75.7675L434.722 75.6588L434.971 75.7203L435.061 75.36L434.846 75.2464L435.09 75.2036L435.425 75.4688L435.712 75.4501L436.143 75.5116L436.693 75.8861L437.678 76.9761L437.592 77.6587L437.348 77.9476L438.242 78.3413L438.644 78.2369L439.113 78.8481L439.251 79.1611L439.304 79.6916V79.6965L439.433 79.6729L439.596 79.7915L439.83 79.9195L440.041 79.9766L440.557 80.0051L440.868 79.9864L441.399 79.8299L441.729 79.9529L442.002 79.6306L442.542 79.2896L442.953 79.015L443.288 78.8255L443.37 78.6503L443.503 78.5696L443.407 78.2522L443.258 77.8634L443.187 77.6503L442.934 77.2901L442.804 77.2665L442.728 77.4181L442.771 77.861L442.566 77.3964L442.322 76.5815L442.116 76.3398L441.987 76.2547L441.843 76.1976L441.619 76.1455L441.561 76.1597L441.451 76.2212L441.394 76.2734L441.344 76.3541L441.32 76.487L441.325 76.5441L440.876 76.3689L440.847 76.3359L440.876 76.2271L440.957 76.142L441.096 76.0662L441.229 76.0234L441.468 75.9998L441.851 76.019L442.149 76.0805L442.378 76.1789L442.646 76.364L442.899 76.6149L443.22 76.9796L443.473 77.3398L443.865 78.0317L444.047 78.387L444.295 79.1168L444.448 79.6429L444.472 79.8796L444.391 80.1877L444.372 81.0878L444.204 81.1635L444.271 80.7039L444.204 80.1163L444.185 80.0592L444.147 79.9884L443.948 79.8934L443.793 79.8791Z"
957
+ fill="#E5E5E5"
958
+ stroke="white"
959
+ stroke-linejoin="round"
960
+ [attr.fill]="usaStates['MA']['color']"
961
+ />
962
+
963
+ <path
964
+ d="M438.63 73V66.7H440.097L442.707 70.984H441.933L444.471 66.7H445.938L445.956 73H444.318L444.3 69.193H444.579L442.68 72.379H441.888L439.935 69.193H440.277V73H438.63ZM446.461 73L449.242 66.7H450.997L453.787 73H451.933L449.755 67.573H450.457L448.279 73H446.461ZM447.982 71.776L448.441 70.462H451.519L451.978 71.776H447.982Z"
965
+ fill="#E5E5E5"
966
+ [attr.fill]="
967
+ usaStates['MA']['color'] === defaultColor
968
+ ? defaultColor
969
+ : blueText
970
+ "
971
+ />
972
+ </g>
973
+ <path
974
+ d="M445.554 83.9784L445.549 84.0921L445.544 84.1157L445.487 84.1916L445.3 84.3339L445.195 84.3831L444.54 84.5308L444.367 84.5638L443.913 84.5353L443.138 84.3836L443.033 84.3344L442.961 84.2728L442.918 84.1876L443.038 84.1591L443.143 84.1827L443.193 84.197L443.595 84.1827L444.164 84.0311L444.412 83.9222L444.484 83.8843L444.613 83.7366L444.704 83.5657L444.766 83.3427L444.728 83.1245L444.684 83.0487L444.598 82.968L444.521 82.9108L444.478 82.8729L444.469 82.8301L444.612 82.8586L444.78 83.0064L445.511 83.8267L445.554 83.9784Z"
975
+ fill="#E5E5E5"
976
+ stroke="white"
977
+ stroke-linejoin="round"
978
+ />
979
+ <path
980
+ d="M441.237 83.7318L441.347 84.1868L441.338 84.2533L439.324 84.8126L439.047 85.083L438.932 85.3818L438.42 85.2302L438.301 85.0027L438.808 84.884L439.119 83.9169L439.205 83.7746L439.439 83.4856L439.74 83.1631H439.79L439.828 83.2532L440.13 83.201L440.345 83.6038L440.752 83.7604L440.977 83.8554L441.135 83.4856L441.237 83.7318Z"
981
+ fill="#E5E5E5"
982
+ stroke="white"
983
+ stroke-linejoin="round"
984
+ />
985
+
986
+ <path
987
+ d="M404.466 130.351L404.337 130.313L404.103 130.142L403.859 129.957L403.839 129.938L403.83 129.943L403.758 129.815L403.699 129.602L403.637 129.152L403.756 129.004L403.948 128.961L404.23 129.193L404.244 129.255L404.297 129.416V129.421L404.417 129.696L404.536 130.056L404.598 130.251L404.56 130.312L404.466 130.351Z"
988
+ fill="#E5E5E5"
989
+ stroke="white"
990
+ stroke-linejoin="round"
991
+ />
992
+ <path
993
+ d="M404.94 131.002L404.921 131.329L404.955 131.48V131.485L404.979 131.556L404.993 131.76L404.974 131.969L404.74 132.035L404.587 131.884L404.534 131.647L404.51 131.58V131.575L404.443 131.334L404.376 130.997L404.371 130.878L404.395 130.798L404.553 130.689L404.62 130.665L404.696 130.684L404.979 130.798L405.036 130.847L405.056 130.951L404.94 131.002Z"
994
+ fill="#E5E5E5"
995
+ stroke="white"
996
+ stroke-linejoin="round"
997
+ />
998
+ <g
999
+ class="zoomable-state state-MD"
1000
+ (mouseenter)="onStateHover('MD', false, $event)"
1001
+ (mouseleave)="onStateHover('MD', true, $event)"
1002
+ [ngbPopover]="countryPopoverTemplate"
1003
+ [disablePopover]="
1004
+ currentlyHoveredState?.state !== usaStates['MD'].state
1005
+ "
1006
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1007
+ triggers="mouseenter:mouseleave"
1008
+ autoClose="false"
1009
+ container="body"
1010
+ >
1011
+ <path
1012
+ d="M411.773 125.181L411.763 125.569L411.73 125.925L411.506 128.422L411.482 128.573L411.453 128.678L411.403 128.853L411.379 128.981L411.222 129.379L410.954 130.265L410.652 131.487L410.164 131.326L410.519 131.236V131.158L410.131 131.168L410.495 130.485L410.705 129.988L410.887 129.495H410.892L411.303 128.699L411.371 128.429L411.414 127.913L411.567 126.591L411.467 127.056L411.2 127.259L411.143 126.909L410.875 127.106L410.631 128.191L410.554 128.683L410.325 128.749L410.339 129.067L410.181 129.018L410.191 129.714L410.176 129.927L409.875 130.136L409.899 130.32L409.799 131.017V131.272L409.952 131.367L409.929 131.372L409.857 131.422L409.838 131.45L409.809 131.479L409.756 131.545L409.722 131.597L409.684 131.649L409.655 131.702L409.536 131.943L409.383 132.346L409.129 133.497L409.096 133.706L409.235 135.133L409.12 135.901L408.876 136.133L408.914 136.228L408.685 136.047L408.665 135.787L408.598 135.763L408.536 135.943L408.437 135.867L408.513 135.72L408.414 135.653L408.39 135.492L408.247 135.402L408.089 135.938L408.418 136.013L408.414 136.122L407.973 136.212L407.868 136.383L407.758 136.487L407.715 136.389L407.734 136.299L407.763 136.185L407.713 135.742L407.23 135.548L406.398 135.794L406.348 135.699L406.339 135.642L406.388 135.225L406.47 134.955L407.044 133.264L407.264 132.941L407.115 132.799L406.981 132.936L406.828 132.813L407.139 132.515L407.44 132.68L407.579 132.495L407.617 132.42L407.766 131.988L407.771 131.856L407.809 131.413L407.226 131.47L407.307 131.219L407.724 130.996L406.71 130.967L406.198 131.616L405.887 131.715L405.882 131.302L405.695 131.07L405.901 130.62L405.844 130.454L406.112 130.293L406.265 129.976L405.917 129.914L405.818 130.175L405.641 129.872L405.966 129.317L405.473 129.274L405.076 129.682L404.877 129.597L404.81 128.881L405.58 128.578L405.418 128.266L404.916 128.095V128.086L404.652 128.327L404.317 128.104L403.97 127.711L404.268 127.573L404.454 127.398L404.201 127.01L403.909 126.991V127.407L403.665 127.801L403.914 128.09L403.981 128.645L403.646 128.497L403.373 128.488L403.297 128.143L402.78 128.186L402.713 128.437L403.21 128.65L403.057 128.844L402.636 128.579L402.492 128.382L402.272 128.226L401.974 128.127L401.936 128.099L401.816 127.886L402.046 127.62L401.654 127.563L401.295 126.867L400.821 126.337L401.391 126.041L401.458 125.762L400.951 125.417L401.089 125.005L401.139 124.924L401.33 124.768L401.407 124.725L402.105 124.531L402.11 124.535L402.134 124.483L402.014 124.27L401.593 124.185L401.146 123.588L401.003 123.602L400.864 123.873L400.539 123.764L400.51 123.782L400.424 123.986V124.095L400.558 124.223L400.573 124.332L400.443 124.45L400.348 124.303L400.248 123.582L400.258 123.345L400.42 122.715L400.439 122.687L400.66 122.426L400.889 122.653L401.272 122.644L401.209 122.255V122.25L401.066 121.667L400.967 121.478L400.718 121.321L400.58 121.587L400.407 121.53L400.225 121.649L400.288 121.862L399.929 121.914L400.049 122.379L399.771 122.748L399.766 122.354L399.57 121.625L399.905 120.459L400.197 120.989L400.876 120.891L401.11 120.445L400.938 120.119L401.02 119.882L400.991 119.593L400.632 119.759L400.79 120.527L400.465 120.498L400.374 119.75L399.863 119.249L399.854 119.026L399.883 118.851L400.237 117.221L400.333 117.055L400.739 116.52L401.629 116.326L401.59 116.198L401.327 116.193L401.342 116.003L401.653 115.548L401.385 115.453L401.547 114.553L401.427 114.293L400.633 114.624L400.418 115.212L400.877 115.421L400.972 115.624L400.15 116.586L399.825 116.961L399.523 117.392L399.537 117.614L399.384 117.565L399.25 117.191L399.054 117.048L399.011 116.95L399.049 117.048H399.011L398.867 117.115L399.064 117.636L398.666 117.773L398.585 118.247L398.728 118.318L398.778 118.304L398.768 118.385L398.74 118.475L398.515 118.854L398.395 118.996L397.878 118.944L397.634 118.894H397.62L397.471 119.174L398.266 119.469L398.658 119.863L398.84 120.195L398.759 120.507L399.156 120.772L399.214 120.891L398.635 121.412L398.908 121.739L398.697 122.411L398.606 122.824L398.821 122.909L398.386 123.795L398.458 124.036L398.515 124.131L398.763 124.328V124.476L398.816 124.703L399.251 126.177L399.289 126.285L399.423 126.527L399.586 126.74L399.968 127.015L400.676 127.583L400.71 127.64L400.748 127.868L400.686 128.356V128.361L401.088 129.403L401.777 130.066L401.7 130.303L402.011 131.113L401.629 130.99L401.227 130.612L400.639 130.375L400.572 130.683L399.984 130.394L399.4 129.853L398.639 129.687L398.004 129.824L397.884 129.928L397.482 129.739L397.147 129.294L397.19 129.573V129.71L397.171 129.796L396.334 129.417L396.248 129.242L395.813 128.991L395.273 128.019L394.909 128.27L394.684 128.578L394.45 128.621L394.321 128.844L393.874 129.275L393.783 129.256L393.462 129.1L393.276 128.787L393.047 128.076L393.066 127.732L393.2 127.263L393.544 126.647L393.917 126.187L393.501 125.808L393.778 125.794L393.888 125.495L394.137 125.347V125.338L394.347 124.39L394.342 124.341L395.213 122.976L394.256 122.403L393.816 122.18L393.347 122.939L393.041 122.706L392.635 122.744L392.52 122.716H392.338L392.147 122.568L392.138 122.236L391.827 122.141L391.343 121.944L390.946 121.987L390.535 122.006L390.229 121.987L390.214 121.982L389.668 121.622L389.615 121.584H389.61L389.561 121.518L389.499 121.333V121.324L389.508 121.225L389.527 121.088L389.532 121.039L389.565 120.949L389.833 120.835L389.904 120.428L389.149 120.172L388.833 119.778L388.374 119.892L387.862 119.717V119.712L387.537 119.75L387.207 119.579L387.24 118.735L386.691 118.665L386.585 118.074L386.346 118.069L386.102 117.936L385.729 117.363L386.102 117.211L386.059 116.922L385.757 116.965L385.346 117.113L385.025 117.127L384.624 117.275L384.389 117.019L384.246 116.862L383.863 116.587L383.557 116.474L383.246 116.441L382.959 116.431L382.909 116.45L382.852 116.516L382.632 116.857L382.334 117.399L382.234 117.413L381.787 117.328L380.907 118.821L379.305 118.906L378.291 118.508L376.908 120.389L376.004 120.192L374.44 122.059L373.993 122.87L373.319 123.599L373.06 123.694L372.156 118.112L372.855 117.984L376.667 117.295L377.68 117.11L381.215 116.466L381.526 116.409V116.404L383.556 116.031L388.754 115.055V115.06L388.836 115.046V115.041L390.83 114.647V114.642L392.618 114.287L394.369 113.922V113.927L396.157 113.557V113.552L398.869 112.993L398.922 112.984L399.725 112.813L402.576 112.207L402.667 112.539L402.676 112.596L402.686 112.653L402.7 112.705L402.715 112.757L402.729 112.806L402.748 112.859L402.763 112.911L402.782 112.963L403.566 115.866L403.81 116.719L403.963 117.261L404.269 118.343L405.8 123.726H405.795L406.019 124.508V124.517L406.134 124.92L406.225 125.232L406.324 125.577L406.583 125.534L407.171 125.436H407.199L407.951 125.293L408.127 125.26L408.553 125.18L408.586 125.175L408.701 125.151L408.84 125.127L409.16 125.057L409.284 125.028V125.023L411.724 124.493L411.767 124.895L411.773 125.181Z"
1013
+ fill="#E5E5E5"
1014
+ stroke="white"
1015
+ stroke-linejoin="round"
1016
+ [attr.fill]="usaStates['MD']['color']"
1017
+ />
1018
+ <path
1019
+ d="M413.63 142V135.7H415.097L417.707 139.984H416.933L419.471 135.7H420.938L420.956 142H419.318L419.3 138.193H419.579L417.68 141.379H416.888L414.935 138.193H415.277V142H413.63ZM422.217 142V135.7H425.196C425.892 135.7 426.504 135.829 427.032 136.087C427.56 136.345 427.971 136.708 428.265 137.176C428.565 137.644 428.715 138.202 428.715 138.85C428.715 139.492 428.565 140.05 428.265 140.524C427.971 140.992 427.56 141.355 427.032 141.613C426.504 141.871 425.892 142 425.196 142H422.217ZM423.999 140.578H425.124C425.484 140.578 425.796 140.512 426.06 140.38C426.33 140.242 426.54 140.044 426.69 139.786C426.84 139.522 426.915 139.21 426.915 138.85C426.915 138.484 426.84 138.172 426.69 137.914C426.54 137.656 426.33 137.461 426.06 137.329C425.796 137.191 425.484 137.122 425.124 137.122H423.999V140.578Z"
1020
+ fill="#E5E5E5"
1021
+ [attr.fill]="
1022
+ usaStates['MD']['color'] === defaultColor
1023
+ ? defaultColor
1024
+ : blueText
1025
+ "
1026
+ />
1027
+ </g>
1028
+ <path
1029
+ d="M444.341 49.5996L444.508 49.8034L444.48 50.3771L444.288 50.8084L444.016 50.5474L444.174 49.9167L444.088 49.4474L444.064 49.1914L444.179 48.9639L444.399 48.9924L444.504 49.277L444.341 49.5996Z"
1030
+ fill="#E5E5E5"
1031
+ stroke="white"
1032
+ stroke-linejoin="round"
1033
+ />
1034
+ <path
1035
+ d="M445.984 54.5466L446.108 54.6453L445.979 54.8067L445.773 54.393L445.831 54.2598L445.941 54.317L445.984 54.5466Z"
1036
+ fill="#E5E5E5"
1037
+ stroke="white"
1038
+ stroke-linejoin="round"
1039
+ />
1040
+ <path
1041
+ d="M446.075 51.9836L446.114 52.0737L446.085 52.216L446.051 52.2731L445.941 52.51L445.869 52.5715L445.554 52.7424L445.472 52.7611L445.329 52.7183L444.912 52.0072L444.683 52.0309L444.664 52.0023L444.678 51.7935L444.76 51.5705L445.181 51.0539L445.339 50.9688L445.401 51.018L445.855 51.2548L445.544 51.3971L445.602 51.4922L445.798 51.5444L446.075 51.9836Z"
1042
+ fill="#E5E5E5"
1043
+ stroke="white"
1044
+ stroke-linejoin="round"
1045
+ />
1046
+ <path
1047
+ d="M446.849 50.0176L446.907 50.5676L446.792 50.8001L446.63 50.9044L446.601 51.0989L446.515 51.0374L446.366 50.9566L446.175 50.9187L445.998 50.3973L445.988 50.3544L445.993 50.1698L446.122 50.1934L446.189 49.8566V49.7759L446.17 49.7094L446.132 49.6764L446.17 49.6621L446.232 49.6813L446.639 49.8L446.763 49.8901L446.849 50.0176Z"
1048
+ fill="#E5E5E5"
1049
+ stroke="white"
1050
+ stroke-linejoin="round"
1051
+ />
1052
+ <path
1053
+ d="M447.068 48.6969L447.073 48.4546L446.93 48.2028L447.049 48.0938L447.174 48.2221L447.503 48.5879L447.408 48.7448L447.068 48.6969Z"
1054
+ fill="#E5E5E5"
1055
+ stroke="white"
1056
+ stroke-linejoin="round"
1057
+ />
1058
+ <path
1059
+ d="M447.212 51.252L447.51 51.4937L447.501 52.2427L447.333 52.1762L447.128 52.3279L447.089 51.963L446.922 51.6503L447.212 51.252Z"
1060
+ fill="#E5E5E5"
1061
+ stroke="white"
1062
+ stroke-linejoin="round"
1063
+ />
1064
+ <path
1065
+ d="M447.943 49.9086L447.785 49.847L447.79 49.6006L447.933 49.7381L448.024 49.8366L447.943 49.9086Z"
1066
+ fill="#E5E5E5"
1067
+ stroke="white"
1068
+ stroke-linejoin="round"
1069
+ />
1070
+ <path
1071
+ d="M448.664 50.1368L448.693 50.2888L448.54 50.6215L448.382 50.6452L448.253 50.474L448.1 50.4789L447.809 50.4601L447.952 50.1082L448.296 49.8564L448.664 50.1368Z"
1072
+ fill="#E5E5E5"
1073
+ stroke="white"
1074
+ stroke-linejoin="round"
1075
+ />
1076
+ <path
1077
+ d="M447.999 50.8076L448.056 50.9796L447.898 51.0653L447.84 50.8126L447.999 50.8076Z"
1078
+ fill="#E5E5E5"
1079
+ stroke="white"
1080
+ stroke-linejoin="round"
1081
+ />
1082
+ <path
1083
+ d="M449.059 49.5459L448.983 49.7427L449.002 49.9701L448.711 49.8992V49.6906L448.873 49.5813L449.059 49.5459Z"
1084
+ fill="#E5E5E5"
1085
+ stroke="white"
1086
+ stroke-linejoin="round"
1087
+ />
1088
+ <path
1089
+ d="M449.254 48.8289L449.635 48.668L449.536 48.8481L449.522 48.9711L449.297 49.042L449.254 48.8289Z"
1090
+ fill="#E5E5E5"
1091
+ stroke="white"
1092
+ stroke-linejoin="round"
1093
+ />
1094
+ <g
1095
+ class="zoomable-state state-ME"
1096
+ (mouseenter)="onStateHover('ME', false, $event)"
1097
+ (mouseleave)="onStateHover('ME', true, $event)"
1098
+ [ngbPopover]="countryPopoverTemplate"
1099
+ [disablePopover]="
1100
+ currentlyHoveredState?.state !== usaStates['ME'].state
1101
+ "
1102
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1103
+ triggers="mouseenter:mouseleave"
1104
+ autoClose="false"
1105
+ container="body"
1106
+ >
1107
+ <path
1108
+ d="M456.953 40.0946L456.967 40.1704L456.761 40.6536L456.092 42.0316L455.915 42.3583L455.403 42.913L455.112 42.9745L455.236 42.5385L455.011 42.4533L454.872 41.8893L454.385 42.2683L454.705 42.6851L454.547 43.2584L454.203 43.4292L453.6 43.159L453.402 43.5335L453.6 44.2299L453.302 44.5188L452.747 44.6846L452.57 45.1393L451.499 44.7505L451.786 46.3381L451.48 46.4946L451.221 46.6083L451.154 46.6319L451.169 46.817L451.083 46.9779L451.025 46.9922L450.987 46.9543L450.901 46.8834L450.806 47.0256L450.777 47.2343L450.748 47.3819L450.739 47.5763L450.734 47.6378V47.7279L450.643 47.7422H450.638L450.58 47.7185L450.15 47.2825L450.025 47.1309L449.834 46.688L449.791 46.5365L449.796 46.4415L449.753 46.375L449.7 46.3465L449.48 46.375L449.182 46.4366L448.915 46.4887L448.642 46.6073L448.599 46.9912L448.312 47.2707L448.053 47.4459L447.881 47.6024L447.752 47.8485L447.719 47.877L447.666 47.8864L447.608 47.8485L447.541 47.5876L447.522 47.4454L447.422 47.379H447.351L447.308 47.4119L447.279 47.469L447.274 47.5448L447.384 47.815L447.475 48.1467L447.446 48.1752L447.347 48.1944L447.28 48.0994L447.27 47.9951L447.022 47.5591L446.836 48.0237L446.587 48.033L446.75 48.4119L446.874 49.0232L446.893 49.0724L446.922 49.1216L447.004 49.1831L447.142 49.1546L447.223 49.2397L447.396 49.4764L447.41 49.5286L447.453 49.7608L447.248 49.846L447.238 49.8268L447.123 49.751L446.731 49.5665L446.492 49.5L445.665 49.3435L445.32 49.4523L445.186 49.6373L444.923 49.6659L444.905 49.6167L444.665 48.6359L444.656 48.4228L444.675 48.3942L444.737 48.3184L444.766 47.9961L444.757 47.8731L444.666 47.9252V47.9203L444.575 47.9774L444.144 48.4941L443.958 48.3426L443.776 48.3568L443.747 48.5537L443.403 48.7953L443.379 48.9326L443.478 49.1078L443.555 49.2062L443.675 49.2392L443.88 49.4572L443.93 49.8017V49.9154L443.565 50.9882L443.671 51.5788L443.537 51.7116L443.632 52.034L443.613 52.2471L443.663 52.5217L444.041 52.3322L444.117 52.5596L443.954 52.7205L443.94 52.9242L443.195 53.9857L443.281 54.2746L442.893 54.5876L442.592 54.3647L441.851 54.4926L441.652 54.469L441.499 54.4503L441.379 54.6019L441.346 54.6398L441.341 54.8957L441.394 55.3174L441.26 56.1048L441.197 56.1949L440.184 56.6452L439.94 56.7209H439.758V56.7259L439.686 57.4793L439.107 58.062L438.572 57.5359V57.531L438.165 57.8341L437.95 58.2323L437.621 58.4266L437.77 57.5925L437.573 57.0334L437.501 56.9813L437.43 57.0049L436.834 58.0049L436.533 58.5261L436.322 59.3745V59.4453L436.475 59.6063L437.154 60.3976L436.757 60.7244L435.905 61.1269C435.894 61.3815 435.883 61.6358 435.872 61.8897L436.159 62.2972L435.733 63.4783L435.25 63.6299L435.002 64.7859L435.332 65.0275L434.873 66.7499L434.605 66.5983L434.567 66.6741L434.368 66.8493L433.292 66.4227L432.99 65.2332L432.966 65.2046L432.038 64.6549L431.651 64.4655L431.512 64.3946L431.287 64.0865L431.215 63.93L431.158 63.6884L431.024 62.2052L430.053 59.7032L428.484 54.5477L427.04 50.0084L426.925 49.6437L425.29 44.7875L424.992 43.9533L425.518 43.658L426.58 44.2407L426.69 44.2929H426.915L427.006 44.2077L427.025 44.1649L427.016 43.9041V43.9016L427.006 43.5414L427.001 43.1905L427.101 41.0203L427.211 40.442L427.278 40.3047L427.359 40.1438L427.55 39.8027L427.842 39.2767L427.866 39.2388L427.947 39.1404V39.1354L428.009 39.0547L428.435 38.5523L429.428 36.1733L429.443 35.9981L429.428 35.5479L429.309 35.4529L429.185 35.3958H428.816L428.672 34.9312L428.548 34.4243L428.314 33.0548L428.41 32.3166L428.529 31.4308L428.534 31.4214L428.616 31.1847L428.688 31.071L428.702 31.0617L428.721 31.0523L428.961 30.8771L429.391 30.2231L429.3 29.5267L429.171 28.5125V28.5075L429.007 27.2187L429.003 27.1857L429.012 27.1572L429.211 26.5696L429.771 24.9456L430.857 21.823L432.315 17.6341L432.912 17.5819L433.619 17.5677L433.725 17.5962L433.854 17.7714L433.883 17.8206L433.83 17.8915L433.821 17.9057L433.806 18.1616L434.189 19.389L434.303 19.4874L434.36 19.516L435.513 19.8856L435.805 19.6346L436.609 18.8811L437.488 18.0849L438.851 16.9038L439.038 16.7995L439.397 16.6858L439.732 16.6572L439.865 16.6858L440.482 16.8944L442.27 17.6528L443.882 18.6572L443.906 18.7094L446.474 26.825L447.975 31.6345L447.856 31.8146L447.846 31.9189L448.09 32.9947L448.219 33.1035V33.0941L450.807 33.2127L450.893 33.1512L451.051 33.0991L451.1 33.1084L451.354 33.2979L451.392 33.3687L452.028 35.3682L452.09 35.7521L452.004 36.2688L451.971 36.321L451.847 36.4297L451.851 36.5434L452.162 36.8702L452.85 37.5533L453.305 37.79L453.319 37.7993L453.348 37.8136L453.429 37.8328L453.468 37.8234L453.659 37.5488L453.63 37.3687V37.0656L453.668 37.0085L453.764 36.9893L454.668 37.0321H454.673L455.012 37.2737L455.199 37.4396L456.825 39.4012L456.997 39.7279L456.953 40.0946Z"
1109
+ fill="#E5E5E5"
1110
+ stroke="white"
1111
+ stroke-linejoin="round"
1112
+ [attr.fill]="usaStates['ME']['color']"
1113
+ />
1114
+ <path
1115
+ d="M432.63 44V37.7H434.097L436.707 41.984H435.933L438.471 37.7H439.938L439.956 44H438.318L438.3 40.193H438.579L436.68 43.379H435.888L433.935 40.193H434.277V44H432.63ZM442.855 40.139H445.78V41.471H442.855V40.139ZM442.981 42.623H446.275V44H441.217V37.7H446.158V39.077H442.981V42.623Z"
1116
+ fill="white"
1117
+ [attr.fill]="
1118
+ usaStates['ME']['color'] === lowestBlue
1119
+ ? blueText
1120
+ : whiteText
1121
+ "
1122
+ />
1123
+ </g>
1124
+ <path
1125
+ d="M449.745 47.8752L449.802 48.0318L449.716 48.1928L449.712 48.2022L449.683 48.2352L449.463 48.4863L449.147 48.5764L449.051 48.6616L449.013 48.7601L449.036 48.8585L449.056 48.8915L449.08 48.9009L449.156 49.0383L449.027 49.3372L448.869 49.4081L448.31 49.2372L448.099 49.0476L447.937 48.8201L447.898 48.6724L447.948 48.3597L448.047 47.9377L448.124 47.8334L448.323 47.6817L448.571 47.5773L448.915 47.3828L449.432 47.468L449.441 47.4774L449.59 47.629L449.745 47.8752Z"
1126
+ fill="#E5E5E5"
1127
+ stroke="white"
1128
+ stroke-linejoin="round"
1129
+ />
1130
+ <path
1131
+ d="M449.105 50.3916L449.31 50.5253L449.086 50.6635L448.91 50.6491L448.953 50.4203L449.105 50.3916Z"
1132
+ fill="#E5E5E5"
1133
+ stroke="white"
1134
+ stroke-linejoin="round"
1135
+ />
1136
+ <path
1137
+ d="M323.171 50.7148L323.152 50.4494L323.497 50.2928L323.664 49.9609L324.08 49.9939L324.162 50.0033L324.267 50.1264L324.248 50.3233L324.166 50.6646L324.051 50.7217L323.956 51.1343L324.304 51.7129L324.686 52.1255L324.294 52.1305L324.06 51.6848L323.649 51.4524L323.409 50.8123L323.171 50.7148Z"
1138
+ fill="#E5E5E5"
1139
+ stroke="white"
1140
+ stroke-linejoin="round"
1141
+ />
1142
+ <path
1143
+ d="M324.677 52.6428L324.768 53.022L324.528 53.1643L324.479 53.3731L324.407 53.1643L324.202 52.7211L323.977 52.5266L324 52.3085L324.182 52.2041H324.292L324.368 52.2799L324.677 52.6428Z"
1144
+ fill="#E5E5E5"
1145
+ stroke="white"
1146
+ stroke-linejoin="round"
1147
+ />
1148
+ <g
1149
+ class="zoomable-state state-MI"
1150
+ (mouseenter)="onStateHover('MI', false, $event)"
1151
+ (mouseleave)="onStateHover('MI', true, $event)"
1152
+ [ngbPopover]="countryPopoverTemplate"
1153
+ [disablePopover]="
1154
+ currentlyHoveredState?.state !== usaStates['MI'].state
1155
+ "
1156
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1157
+ triggers="mouseenter:mouseleave"
1158
+ autoClose="false"
1159
+ container="body"
1160
+ >
1161
+ <path
1162
+ d="M342.553 86.3L342.5 89.3422L342.438 90.4131L342.404 90.6783L342.375 90.7541L341.973 91.3983L341.935 91.4475L341.801 91.4854L341.342 91.5755L340.902 91.1488L340.873 91.073L341.017 90.7285L341.166 90.5957L341.362 90.6385L341.461 90.5012L341.495 90.4397L341.504 90.3447L341.485 90.2463L341.418 90.1656L341.38 90.1464L341.045 90.0657L340.954 90.0465L340.834 90.0701L340.638 90.1744L340.629 90.1793L339.844 92.8471L339.777 93.4297L339.749 93.5341L339.562 93.9701L339.299 94.1453L339.074 94.2589L338.875 94.3111L338.842 94.316L338.494 94.4961L338.384 94.6147L338.274 94.8327L338.097 95.4233L338.102 95.4612V95.4991L338.152 96.1295L338.094 97.1196L337.951 97.7643L337.037 98.9202L336.602 99.6924L336.255 100.318L336.221 100.384L336.212 100.433L336.226 101.277L333.734 101.694H333.729L332.785 101.86L328.911 102.485C328.806 102.504 328.701 102.518 328.596 102.537L325.31 103.04L325.075 102.362V102.357L322.062 102.708L321.287 102.788L318.298 103.129L317.236 103.243V103.248L315.031 103.466L313.707 103.608L311.282 103.854L308.838 104.086L308.843 104.082L309.201 103.783L309.651 103.356L309.928 103.048L310.363 102.465L310.512 102.186L310.611 101.911L310.755 101.262L311.176 100.058L311.338 99.7219L312.034 98.4567C312.123 98.122 312.213 97.7872 312.304 97.4523C312.394 97.1173 312.484 96.784 312.574 96.4523L312.699 92.6094C312.397 91.3535 312.103 90.0996 311.8 88.8423L311.709 88.6528L311.361 88.0416L310.591 86.7857L310.471 86.5534L310.194 85.9422L310.045 85.5677L309.892 85.1411L309.318 84.0511L309.227 83.8759L309.128 83.62L309.094 83.4541L309.08 83.3262L309.085 83.1697L309.138 82.9517L309.262 82.715L309.458 82.4069L309.597 82.1559L309.696 81.8715L309.739 81.6746L309.758 81.3794L309.753 81.3464C309.614 80.8016 309.471 80.2638 309.332 79.7165L308.797 79.0202L309.428 78.0724L309.701 77.3997L310.165 75.5232L310.236 74.9027L310.241 74.6847L310.246 73.6188L310.285 73.2743L310.294 73.0799L310.222 72.7846L310.155 72.6281L309.94 72.2207L309.883 72.0597L309.874 71.8088L309.883 71.7473L309.926 71.6666L310.046 71.5765L310.495 71.3678L310.997 71.2069L311.117 71.074L311.184 70.8846L311.204 70.7566L311.199 70.6617H311.204L311.118 69.7188L311.099 69.2921L311.297 69.2163L311.393 69.4579L311.824 69.2828L311.867 68.7852L312.288 68.6243L312.556 68.9038L313.263 68.1164L313.335 67.6617L313.689 67.4108L314.258 65.836L314.751 65.5186H314.833L314.966 65.7317L314.325 66.3621L314.613 67.2149L314.478 67.8546L314.622 68.6981L314.588 68.7217L314.478 69.1435L314.464 69.2522L314.469 69.5268L314.498 69.7163L314.697 70.3068H314.702L314.969 70.482L315.036 69.9181L315.275 69.6528L315.204 69.364L315.419 69.1838L315.121 69.0323L315.331 68.5205L315.461 67.8901L315.776 68.1553L315.59 68.5441L315.686 69.2926L315.433 69.6951L315.251 70.4958L315.514 70.5052L315.581 70.0219L316.313 69.1263C316.332 69.0741 316.356 69.0219 316.375 68.9698L316.49 68.6287L316.547 68.4107L316.6 67.6667L316.604 66.8896L316.542 66.3685L316.275 65.4113V65.4064L316.225 65.1077L316.316 64.7096L316.493 64.4487L316.642 64.3114L316.756 64.1978L317.455 63.6387L317.551 63.5816L317.948 63.434L318.498 63.4246V63.4296L318.885 63.3681L319.359 63.2116L319.67 62.9886L319.684 62.8799L319.675 62.8041L319.641 62.7234L319.584 62.6855L319.125 62.6525L319.058 62.7047L318.656 62.624L318.408 62.406L318.241 62.2308L318.021 61.7712L317.954 61.5817L317.882 61.2643V61.1978L317.925 61.0748L318.154 60.5724L318.24 60.4493L319.053 59.5822L318.666 59.0409L320.11 59.0503L320.187 58.9887L320.029 58.6571L320.569 58.5527L320.722 58.7757L322.817 59.7658L323.468 59.657L323.812 59.5148L324.73 59.7279L324.826 59.7988L325.529 60.6422L328.162 61.6609L329.851 62.1776L330.076 62.2062L330.506 62.154L330.631 62.0167L330.693 62.0261L331.09 62.4714L331.686 63.5329V63.5378L332.313 64.2204L332.887 65.3621L332.848 65.4049L332.714 65.3906L332.289 65.277L332.145 65.1962L332.049 65.0777L331.791 65.0255L331.547 65.1962L331.494 65.277L331.427 65.462L331.422 65.4999L331.518 65.9452L331.618 66.3478L331.675 66.4664L331.733 66.5471L331.8 66.6086L332.077 66.8315L332.708 67.2297C332.775 67.3281 332.838 67.424 332.905 67.5249L333.287 68.7523L333.297 69.0224L333.239 70.9909H333.234L333.277 71.261L333.327 72.0381L333.231 72.9623L332.59 73.6965L332.447 73.6537H332.318L332.155 73.7108L332.097 73.7536L331.992 73.9012L331.906 74.0622L331.849 74.2944L331.815 75.0006C331.825 75.1379 331.83 75.2801 331.839 75.4174L331.844 75.692L331.825 76.1896L331.16 76.9666L330.514 77.1418L330.328 77.1654H329.998L329.859 77.2697L329.81 77.3219L329.657 77.5399L329.48 78.0187L329.461 78.0994H329.466L329.409 79.7628L330.604 80.905L331.575 81.2888L333.206 79.6255V79.6206L333.221 79.5635L333.307 79.1324L333.527 78.4405L334.473 76.8057L336.631 75.4411L337.028 75.3367L338.056 75.7206L338.468 75.9622L338.535 76.0237L338.826 76.4361L339.501 77.4026L339.606 77.6206L339.826 78.284L339.912 78.5871L340.036 79.1132L340.074 79.3406L340.218 80.0561L340.261 80.1934L340.644 80.9138L341.146 81.9138L341.419 84.0604L341.471 84.1933L341.667 84.6578L341.686 84.7243L341.844 85.1839L341.906 85.3497L342.553 86.3Z"
1163
+ fill="#E5E5E5"
1164
+ stroke="white"
1165
+ stroke-linejoin="round"
1166
+ [attr.fill]="usaStates['MI']['color']"
1167
+ />
1168
+
1169
+ <path
1170
+ d="M322.63 94V87.7H324.097L326.707 91.984H325.933L328.471 87.7H329.938L329.956 94H328.318L328.3 90.193H328.579L326.68 93.379H325.888L323.935 90.193H324.277V94H322.63ZM331.217 94V87.7H332.999V94H331.217Z"
1171
+ fill="white"
1172
+ [attr.fill]="
1173
+ usaStates['MI']['color'] === lowestBlue
1174
+ ? blueText
1175
+ : whiteText
1176
+ "
1177
+ />
1178
+
1179
+ <path
1180
+ d="M308.988 57.9546L308.568 58.1819L308.309 58.5043L308.257 58.6027L308.252 59.1932L308.166 59.7951L308.084 59.8901L307.649 59.9186L307.535 60.2631L307.415 60.3202L307.386 60.3108V60.3157L306.97 60.4142L306.879 60.8453L306.539 60.8832L306.544 61.4186L306.209 61.4993L306.42 62.0962L305.889 61.954L305.583 61.6366L305.511 61.3142L305.76 61.1814L305.765 60.954L306.109 60.2291L306.606 60.1534L306.414 60.0205L306.749 59.3315L306.529 58.8055L306.118 59.1322L305.865 59.6243L305.334 59.5535L305.099 59.3212L304.807 59.4442L304.845 60.1598L304.467 60.984L303.554 61.6617L303.439 60.7424L303.348 60.3256L303.277 60.1312L303.128 59.9132L303.453 59.3684L303.304 58.9846L303.089 59.3591L303.07 59.738L302.778 60.0554L302.606 60.4491L302.904 60.9324L302.464 61.6213L301.981 61.8772L301.617 62.7138L301.43 63.1306L301.425 63.1449H301.43L301.287 63.6946L301.043 64.4766L300.335 66.0592L299.838 66.8599L299.36 68.3145L299.012 68.2575L298.813 68.2245H298.809L298.201 67.5897L298.168 67.5326L298.096 67.3097V67.3047L298.091 67.2998L298.587 65.6699L298.14 65.2762L297.748 65.6788H296.656L297.411 64.0583L297.335 62.0898L297.105 61.8103L297.086 61.7911L297.071 61.7818L296.928 61.6632H296.923L295.105 61.1799L295.006 61.1942H294.997L294.891 61.1656L294.829 61.1514L294.531 60.9147H294.526L294.477 60.8197L294.486 60.7818L294.491 60.7724L294.625 60.6017L294.678 60.5589L294.802 60.3881L294.907 60.2035L294.898 60.1657L294.874 60.1327L294.649 59.8153L294.529 59.7395V59.7301L294.352 59.6115L294.054 59.4742L293.863 59.4457H293.849L291.61 59.1662L290.266 59.3084L290.108 59.0289L288.157 58.5368L287.693 58.3094L287.147 58.0442L286.626 57.869L286.3 57.8025L285.884 57.7174L280.374 56.5993L279.599 56.4384L278.892 56.2908L277.347 54.4094L276.477 53.9404L276.984 53.533L277.137 53.4478L278.352 52.9646L278.825 52.8317L279.236 52.6609L279.361 52.5901L279.595 52.3671L280.15 51.8224L280.349 51.5379L280.636 51.1826L280.76 51.0842L281.061 50.909L281.587 50.7481L281.935 50.691L282.034 50.7053L282.173 50.7624L283.718 50.5015L283.876 50.4445L284.191 50.2786L286.903 48.5823L287.367 48.1512L287.544 47.5494L287.643 47.3835L288.165 46.9003L288.949 46.166L289.088 46.0381L289.107 46.4269L289.432 46.9682L290.159 47.0912L290.422 47.7452L291.197 48.3899L291.092 48.7924H291.087L290.934 49.4701L290.925 50.0606L290.934 50.1221L291.025 50.3308L291.125 50.5345L291.301 50.5202L291.33 50.4445L291.459 50.2358L291.827 49.724L292.651 48.8717L293.291 48.4357L293.377 48.4071L293.463 48.4499L294.176 48.9332L295.261 48.8717L295.94 49.0469L296.184 49.1133L297.37 49.753L297.686 50.0419L297.748 50.3593L297.829 50.601L299.498 52.6954L299.566 52.7712L299.685 52.8661L299.809 52.9277L300.125 52.9941H300.527L301.512 52.8425L301.598 52.8189V52.8238L301.871 52.5778L302.306 52.3361H302.373L302.617 52.379L302.727 52.4774L302.89 52.814L303.411 53.2308L303.482 53.2736L303.678 53.2879L303.913 52.7958L304.31 52.8809L304.487 53.1225L304.922 53.0846L304.937 53.3169L305.19 53.3361L305.271 52.938L305.434 52.8671L305.606 52.3932L305.86 52.2889L306.013 52.0045L307.022 51.5542L308.452 50.4169L310.408 49.8756L310.863 49.7713V49.7762L311.384 49.819H311.723L312.962 49.7147L313.302 49.6817L313.546 49.6325L313.752 49.5616L314.555 49.1069L315.502 48.5429V48.5572L315.98 48.4199L317.014 48.3348L317.583 48.074L317.272 48.6566L317.195 48.8417L317.157 49.0075V50.8746L317.181 51.0025L317.234 51.1113L317.372 51.2722L317.444 51.3214L317.525 51.35L318.013 51.1748L318.29 51.2884L318.692 51.2791L318.979 51.5744L319.381 51.3706L320.007 50.9253L320.462 50.9681L320.816 51.3426L320.859 51.5557L321.496 51.3327L321.794 51.3042L321.827 50.7451L321.999 50.5936L322.446 50.4371L322.844 50.5178L323.145 50.878L323.38 51.1147L323.529 51.7402L323.768 51.9961L323.864 52.5837L324.045 52.7446L324.232 53.0763L324.04 53.1284L323.662 53.4695L323.83 53.9006L324.318 53.8021L325.518 54.186L325.308 54.437L325.25 54.7214L325.58 55.0339L325.906 55.2376L326.355 55.1884L326.632 55.5152L326.809 55.5437L326.9 55.8424L326.833 56.0841L325.79 56.0605L325.226 56.0413L325.106 55.9891L325.029 55.9399H324.996L323.417 56.371L321.806 56.0201L320.519 55.6599L320.32 56.8537L320.488 57.6072L320.234 57.9024L318.135 56.4005L317.207 56.121L315.586 55.7942L314.992 55.7657L314.878 55.775L314.328 55.8887L314.237 55.9217L314.17 55.9709L314.041 56.1131L313.615 56.7007L313.539 56.9467L313.3 57.3542L313.237 57.4349L312.989 57.5333L311.688 57.5826V57.5732L311.282 57.8385L310.125 57.772H309.943L309.173 57.8906L308.988 57.9546Z"
1181
+ fill="#E5E5E5"
1182
+ stroke="white"
1183
+ stroke-linejoin="round"
1184
+ [attr.fill]="usaStates['MI']['color']"
1185
+ />
1186
+ </g>
1187
+ <path
1188
+ d="M327.037 55.7013L326.984 55.4925L327.114 55.1606L327.257 55.2099L327.377 55.5181L327.601 55.3994L327.764 55.039L328.122 54.9203L328.438 54.8017L328.376 54.4983L327.912 54.3418L327.998 54.1994L328.5 54.1143L328.571 54.1236L328.926 54.2186L329.825 55.1291L329.887 55.2049L329.901 55.2478L329.696 55.8785L329.652 55.945L329.59 56.0066L329.327 56.1109H328.021L327.681 56.0538L327.572 55.9061L327.442 55.7687L327.037 55.7013Z"
1189
+ fill="#E5E5E5"
1190
+ stroke="white"
1191
+ stroke-linejoin="round"
1192
+ />
1193
+
1194
+ <path
1195
+ d="M311.113 67.3002L310.807 67.0633L310.754 66.7644L311.165 66.499L311.563 66.6177L311.73 67.438L311.668 67.6419L311.314 67.5754L311.113 67.3002Z"
1196
+ fill="#E5E5E5"
1197
+ stroke="white"
1198
+ stroke-linejoin="round"
1199
+ />
1200
+ <path
1201
+ d="M284.469 39.471L284.297 39.22L284.35 39.0827L284.57 38.7938L284.818 38.5477L285.414 38.1451L286.136 37.7233L287.772 36.7044L288.336 36.3255L288.389 36.227L288.403 36.1985L288.523 36.0612L288.829 35.8667L289.302 35.6108L290.211 35.3691L289.913 35.7388L289.191 36.3072L289.138 36.4923L289.224 36.7246L289.071 36.8856L288.459 37.427L287.885 37.7351L287.312 37.8335L286.119 38.682L286.124 38.8573L286.655 38.8381L285.307 39.6625L285.058 39.7334L284.81 39.6669L284.469 39.471Z"
1202
+ fill="#E5E5E5"
1203
+ stroke="white"
1204
+ stroke-linejoin="round"
1205
+ />
1206
+ <path
1207
+ d="M310.778 67.8643L310.854 67.9733L310.805 68.2587L310.57 68.5296L310.379 68.3253V68.002L310.778 67.8643Z"
1208
+ fill="#E5E5E5"
1209
+ stroke="white"
1210
+ stroke-linejoin="round"
1211
+ />
1212
+ <path
1213
+ d="M304.552 52.4306L304.355 51.9658L304.714 51.7949L305.044 52.1696L304.982 52.6059L305.116 52.6675L305.154 52.5394L305.278 52.5109L305.307 52.6768L305.13 52.9186L305.021 52.8994L305.026 52.8043L304.93 52.7379L304.853 52.9747L304.715 52.9934L304.629 52.8984L304.705 52.6374L304.552 52.4306Z"
1214
+ fill="#E5E5E5"
1215
+ stroke="white"
1216
+ stroke-linejoin="round"
1217
+ />
1218
+ <path
1219
+ d="M289.211 45.9564L290.321 45.1792V45.1743H290.326L290.673 44.5581L290.95 44.1978L291.161 44.0369L292.391 43.2405L292.644 43.1268L293.691 42.8379L294.146 42.7621L294.519 42.7385L295.48 42.7148L295.824 42.8236L296.03 42.9324L296.145 43.0175L296.221 43.3822L296.212 43.4344L295.456 43.6761L295.365 43.6672L294.347 43.8803L293.218 45.444L293.007 45.7142L292.534 45.9323L292.003 45.9815V45.9864L292.534 45.9372L291.266 48.3066L290.511 47.6859L290.238 46.9895L289.502 46.8758L289.224 46.3875L289.211 45.9564Z"
1220
+ fill="#E5E5E5"
1221
+ stroke="white"
1222
+ stroke-linejoin="round"
1223
+ />
1224
+ <path
1225
+ d="M314.098 61.0513L314.212 60.7622L314.15 60.421L314.404 59.9941L314.399 59.5342L314.872 59.6007L314.748 59.7144L314.944 59.8518L314.925 60.3934L315.102 60.8582L315.058 61.1473L314.705 61.5363L314.179 61.4984L314.098 61.0513Z"
1226
+ fill="#E5E5E5"
1227
+ stroke="white"
1228
+ stroke-linejoin="round"
1229
+ />
1230
+ <path
1231
+ d="M322.814 58.2591L323.459 58.292L323.301 58.9415L322.526 58.913L321.93 58.1685L321.543 58.2064L322.007 57.9932L322.814 58.2591Z"
1232
+ fill="#E5E5E5"
1233
+ stroke="white"
1234
+ stroke-linejoin="round"
1235
+ />
1236
+ <path
1237
+ d="M320.988 57.4194L321.165 57.3623L321.37 57.6989L321.15 57.784L320.988 57.4194Z"
1238
+ fill="#E5E5E5"
1239
+ stroke="white"
1240
+ stroke-linejoin="round"
1241
+ />
1242
+ <g
1243
+ class="zoomable-state state-MN"
1244
+ (mouseenter)="onStateHover('MN', false, $event)"
1245
+ (mouseleave)="onStateHover('MN', true, $event)"
1246
+ [ngbPopover]="countryPopoverTemplate"
1247
+ [disablePopover]="
1248
+ currentlyHoveredState?.state !== usaStates['MN'].state
1249
+ "
1250
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1251
+ triggers="mouseenter:mouseleave"
1252
+ autoClose="false"
1253
+ container="body"
1254
+ >
1255
+ <path
1256
+ d="M282.436 37.85L282.426 37.9544L282.397 37.9829L281.977 38.3097L281.853 38.3997L280.263 39.3284L279.249 39.8731L278.671 40.1856L278.13 40.4179L277.465 40.6408L276.953 40.821L275.543 41.4036L274.847 41.6989L273.407 42.6339L272.459 43.4159L271.355 44.4661V44.471L271.193 44.566L270.61 45.2137L270.404 45.4504L269.482 46.72L268.275 48.1516L268.126 48.3081L267.825 48.5119L267.423 48.7299L266.476 49.692L266.242 49.9479L265.831 50.4311L265.486 50.6019L265.18 50.8293L263.889 51.9193L263.693 52.0994L263.635 52.1703L263.688 52.3219L263.879 52.6206L264.185 52.9808L264.271 53.03L264.233 53.0586L264.122 53.0094L263.687 52.5876L263.482 52.6019L262.946 52.9621L262.903 53.0522L262.893 53.1329L262.922 53.1993V53.2087L262.96 53.2515L262.965 53.2609L262.975 53.3839L262.876 53.6491L262.837 53.6821L262.799 53.7057L262.574 53.72L262.363 53.7008L262.191 53.5822C262.224 54.4729 262.256 55.3639 262.287 56.2549L262.392 59.0792L262.412 59.5531L262.426 59.9798L261.307 60.6717L259.709 61.714H259.704L259.326 62.0408L259.227 62.1688L259.131 62.3395L258.361 63.875L258.05 64.8228L258.036 64.9935L258.041 65.0644L258.06 65.3533L258.089 65.5664L258.194 65.6471L258.562 65.7086L258.715 65.685L259.323 66.0118L259.701 66.7224L259.854 67.4901L259.562 68.2283L259.364 68.4793L259.349 68.4886L259.258 68.5693L259.136 69.5152L258.973 70.9507L258.997 71.306L259.188 71.7135L259.356 72.4763L259.296 73.3045L259.023 74.5885L259.578 74.9108L260.391 75.5934L260.477 75.6977L260.497 75.802L261.066 76.366L261.19 76.4226L261.525 76.4605L262.582 76.5033L262.716 76.5319L262.802 76.5747L262.879 76.6362L262.907 76.679L262.951 77.2002L263.529 77.6027L264.706 78.0811L265.596 78.4935L266.036 78.896L266.05 79.1376L266 79.3084L266.187 79.4693L266.355 80.0663L266.479 80.3173L268.985 82.0943L270.219 82.4496L271.372 83.8994L271.563 85.2168L272.089 87.6573L268.959 87.8049L268.013 87.8477L265.224 87.9614L262.293 88.08V88.0849L261.466 88.1135L257.712 88.2464L257.515 88.2557L253.952 88.3541L252.742 88.3827V88.3876L250.179 88.4447L247.983 88.4777H247.978L246.424 88.5013L243.152 88.5505V88.5554L242.665 88.5648L238.905 88.5977H238.374V88.5928L235.132 88.612H233.606V88.6071L230.42 88.5977L230.435 84.7784L230.458 80.989L230.482 77.2031L230.492 76.2509C230.495 75.616 230.498 74.981 230.501 74.3459V74.3409L230.516 69.2942H230.511L230.382 68.6638L230.238 68.3272L229.985 68.1303L229.244 67.7701L228.647 67.6943L228.116 66.5285L227.576 65.8179L227.437 65.6427L227.409 65.5998L227.514 65.2352L227.543 65.1737L227.572 65.1451L227.581 65.1309L228.284 64.5718L228.552 64.401L228.85 64.2401L229.003 64.0836L229.543 63.2923L229.552 63.2637L229.562 63.2495L229.571 63.2258L229.576 63.1737L229.595 63.0753L229.624 62.8385L229.657 62.5497L229.662 62.5354V62.5118L229.705 62.0379L229.6 61.095V61.09L229.744 60.6963L229.763 60.6299L229.777 60.4119L229.754 60.2175L229.462 57.9336L228.405 55.4129C228.296 55.0986 228.188 54.7843 228.08 54.47L228.075 53.8588L228.224 51.4897L228.133 51.2387L227.812 50.2008L227.803 48.8229L227.76 47.8751L227.621 45.0463V45.0414L227.368 43.1649L226.397 40.976L225.684 38.4219L225.507 37.7585V37.724H225.512L225.517 37.506L225.756 36.5818L225.706 33.9849L225.534 33.7762L225.476 33.7477L225.443 33.729L225.983 32.2457L225.658 31.5208L225.52 31.0991L224.989 29.3835L224.945 29.1562L224.955 28.9953L224.988 28.8343L225.021 28.8014L231.057 28.8629H238.988L240.23 28.8535L240.216 27.1857L240.21 26.4825L240.201 25.3595L240.196 25.0514V25.0371L241.626 25.1744L242.08 25.3831L242.606 25.8191L243.203 27.8043V29.0346L243.6 29.3712L243.791 30.2197L243.657 31.1911L243.997 31.4992L244.117 31.6035L244.604 31.8737L244.815 31.9874L244.829 31.9967L244.935 32.0061L245.303 32.044L245.585 31.9209V31.9258L245.684 31.883L245.883 31.8688L246.476 31.8781L246.605 31.9017L246.835 32.0203L246.902 32.1576L246.907 32.2334L246.916 32.4465L246.959 32.4751L247.112 32.5129L247.835 32.5558L248.375 32.5464L249.939 32.6837L249.989 32.7216L250.08 32.8875L250.2 33.2285L250.219 33.3235L250.181 33.6079L250.128 33.6886V33.7408L250.157 33.7787L250.31 33.8874H250.592L251.287 33.8638L252.153 33.7029L252.717 33.5085L252.767 33.4514L252.791 33.3328V33.2713L252.753 33.2004L252.714 33.0582L252.729 33.0061L253.58 32.6124L254.259 32.418L254.607 32.4086L254.813 32.5887L255.076 32.5794H255.09L255.488 32.5366V32.5508H256.282L261.497 35.4111L261.688 35.2782L263.218 35.1694L263.414 35.5203L263.749 36.2167L263.783 36.2688L263.845 36.354L265.193 36.8043V36.8092L265.61 36.7427L265.808 36.792L265.818 36.8062L265.842 36.8554L265.951 37.3815L265.894 37.6182L265.87 37.6847V37.7132L266.406 37.8697L267.554 38.1399L268.74 38.0547L269.022 38.0055L269.199 37.944L269.314 37.8825H269.319L270.873 36.6409V36.6315L271.265 36.3092L271.925 35.9868H272.213L272.236 35.9962L272.275 36.039L272.566 36.693L272.695 37.0484V37.0577L272.935 37.536L273.011 37.6069L274.352 37.3609L277.265 37.1286L277.566 37.1143L277.901 37.1758L278.035 37.2044L278.418 37.3559L278.628 37.6404L278.667 37.7304L278.647 37.8781L278.685 37.9539L278.877 38.0912L279.423 38.3471L279.605 38.3564L279.787 38.2713L281.202 38.0105L282.436 37.85Z"
1257
+ fill="#E5E5E5"
1258
+ stroke="white"
1259
+ stroke-linejoin="round"
1260
+ [attr.fill]="usaStates['MN']['color']"
1261
+ />
1262
+ <path
1263
+ d="M237.63 64V57.7H239.097L241.707 61.984H240.933L243.471 57.7H244.938L244.956 64H243.318L243.3 60.193H243.579L241.68 63.379H240.888L238.935 60.193H239.277V64H237.63ZM246.217 64V57.7H247.684L251.158 61.894H250.465V57.7H252.211V64H250.744L247.27 59.806H247.963V64H246.217Z"
1264
+ fill="white"
1265
+ [attr.fill]="
1266
+ usaStates['MN']['color'] === lowestBlue
1267
+ ? blueText
1268
+ : whiteText
1269
+ "
1270
+ />
1271
+ </g>
1272
+ <g
1273
+ class="zoomable-state state-MO"
1274
+ (mouseenter)="onStateHover('MO', false, $event)"
1275
+ (mouseleave)="onStateHover('MO', true, $event)"
1276
+ [ngbPopover]="countryPopoverTemplate"
1277
+ [disablePopover]="
1278
+ currentlyHoveredState?.state !== usaStates['MO'].state
1279
+ "
1280
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1281
+ triggers="mouseenter:mouseleave"
1282
+ autoClose="false"
1283
+ container="body"
1284
+ >
1285
+ <path
1286
+ d="M293.613 159.849L294.116 160.11L293.781 161.622L293.537 161.887L293.417 162.399L293.015 162.432L292.456 161.916L292.46 161.925L291.776 163.437L291.686 163.849L291.38 164.001L291.155 163.835L291.183 163.498L291.269 163.337L291.284 163.309L291.293 163.266L291.322 163.157L291.326 163.128V163.062L291.298 162.943L291.245 162.815L291.24 162.806L291.183 162.721L291.169 162.711L291.155 162.697L291.131 162.683L290.997 162.645L290.748 162.607L290.59 162.631L290.533 162.664L290.433 162.797L290.419 162.816L290.409 162.859L290.395 162.911L290.386 162.949L290.395 162.982L290.404 163.031L290.409 163.04L290.505 163.237L290.515 163.251L290.711 163.531L290.835 164.128L291.17 164.573L291.165 165.175L290.782 165.303L290.778 165.294L290.361 165.36L290.878 165.744L291.06 166.109L290.553 166.417L289.811 166.364L290.151 166.999L290.715 167.274L290.648 167.668L290.075 167.98L290.008 168.549L289.682 169.041L287.382 169.231V169.226L284.474 169.434L283.771 169.484L285.129 167.143L286.09 166.306L286.152 166.211L286.248 165.96L286.191 165.093L286.105 164.979L285.32 163.885L284.976 163.894L284.742 163.908L284.737 163.913L281.623 164.088L279.796 164.183L276.798 164.354V164.349L274.339 164.482L273.966 164.491L272.015 164.558V164.563L268.083 164.738L267.821 164.752L264.497 164.885L262.368 164.961V164.966L261.646 164.989L257.776 165.103H257.604L255.241 165.16V165.165L252.768 165.227L250.918 165.265V165.26L246.168 165.331L246.144 163.483L246.126 162.4L246.082 159.22V159.215L246.039 156.131L246.034 155.842H246.039L245.986 152.662L245.982 152.449L245.958 148.455L245.953 148.199L245.903 144.593L245.894 143.617C245.889 142.661 245.884 141.705 245.879 140.75L245.874 139.556L245.85 137.395L245.836 136.632L245.874 136.126L244.248 135.694L242.736 133.315L241.594 132.074L241.929 131.074L242.028 130.932L242.315 130.515L242.349 130.477L242.956 129.946L243.133 129.918L243.31 129.53L243.243 129.226L243.176 128.904L242.477 128.02L242.185 128.343L242.181 128.352L242.131 128.401L242.069 128.425L241.748 128.453H241.71L241.677 128.444L241.519 128.382L241.308 128.307L240.897 128.046L239.883 127.136L239.831 127.055L239.826 126.957L237.769 124.095L237.774 124.057L237.778 123.862V123.848L237.783 123.829L237.76 123.772L237.181 123.208L236.641 121.862L236.591 121.668L236.687 121.583L236.869 121.26L236.558 120.986L236.447 121.218L235.988 120.555L239.236 120.588L240.657 120.597L243.048 120.611V120.616L245.396 120.626L246.731 120.611L248.711 120.562V120.557L250.509 120.5L252.513 120.419L254.316 120.344V120.349L255.832 120.306L258.132 120.197L261.308 120.036L261.944 120.003L264.321 119.842L265.732 119.747L267.694 119.614L269.578 119.609L269.75 119.714L270.411 120.206L270.43 120.277L270.401 120.5L270.43 120.575L271.272 121.594L271.616 121.874L272.163 121.912L271.551 123.361L271.493 123.897L272.082 126.675H272.087L272.924 128.689L273.426 129.471L274.607 130.366L276.631 132.446L278.687 134.256H278.697V134.266L279.094 135.602L279.085 135.739L278.855 136.09L278.846 136.123L278.869 136.199L279.324 137.417L281.127 136.957V136.952L282.639 137.317L282.859 137.383L283.074 137.482L283.236 137.577L284.068 138.079L284.106 138.136L284.111 138.203L284.083 138.454L284.063 138.552V138.557L283.446 139.306H283.441L283.619 140.182L283.054 141.627L283.016 141.765L282.428 143.286L282.404 143.314L282.366 143.39L282.242 143.812L282.223 143.861L282.218 143.975L282.232 144.43L282.347 144.922L282.446 145.163L282.604 145.376L282.633 145.414L282.652 145.438L283.374 146.134L283.809 146.461L286.243 148.66L288.563 149.295L290.053 151.74V151.806L290.058 151.904L290.116 152.122L290.364 152.577L290.527 152.814L290.752 153.037L290.861 153.17L290.996 153.478L291.001 153.488L291.006 153.506L291.055 153.691L291.06 153.701L291.055 153.715L291.022 154.052L290.989 154.15L290.984 154.159L290.965 154.178L290.865 154.23L290.554 154.315L290.569 155.277L290.789 155.586L291.324 156.576L291.63 157.324L292.2 157.789L292.209 157.779V157.794L293.883 157.969L294.194 158.367L293.864 159.457H293.859L293.615 159.594H293.61L293.613 159.849Z"
1287
+ fill="#E5E5E5"
1288
+ stroke="white"
1289
+ stroke-linejoin="round"
1290
+ [attr.fill]="usaStates['MO']['color']"
1291
+ />
1292
+ <path
1293
+ d="M258.63 149V142.7H260.097L262.707 146.984H261.933L264.471 142.7H265.938L265.956 149H264.318L264.3 145.193H264.579L262.68 148.379H261.888L259.935 145.193H260.277V149H258.63ZM270.394 149.126C269.89 149.126 269.425 149.045 268.999 148.883C268.573 148.721 268.201 148.493 267.883 148.199C267.571 147.899 267.328 147.551 267.154 147.155C266.98 146.759 266.893 146.324 266.893 145.85C266.893 145.376 266.98 144.941 267.154 144.545C267.328 144.149 267.571 143.804 267.883 143.51C268.201 143.21 268.573 142.979 268.999 142.817C269.425 142.655 269.89 142.574 270.394 142.574C270.904 142.574 271.369 142.655 271.789 142.817C272.215 142.979 272.584 143.21 272.896 143.51C273.208 143.804 273.451 144.149 273.625 144.545C273.805 144.941 273.895 145.376 273.895 145.85C273.895 146.324 273.805 146.762 273.625 147.164C273.451 147.56 273.208 147.905 272.896 148.199C272.584 148.493 272.215 148.721 271.789 148.883C271.369 149.045 270.904 149.126 270.394 149.126ZM270.394 147.65C270.634 147.65 270.856 147.608 271.06 147.524C271.27 147.44 271.45 147.32 271.6 147.164C271.756 147.002 271.876 146.81 271.96 146.588C272.05 146.366 272.095 146.12 272.095 145.85C272.095 145.574 272.05 145.328 271.96 145.112C271.876 144.89 271.756 144.701 271.6 144.545C271.45 144.383 271.27 144.26 271.06 144.176C270.856 144.092 270.634 144.05 270.394 144.05C270.154 144.05 269.929 144.092 269.719 144.176C269.515 144.26 269.335 144.383 269.179 144.545C269.029 144.701 268.909 144.89 268.819 145.112C268.735 145.328 268.693 145.574 268.693 145.85C268.693 146.12 268.735 146.366 268.819 146.588C268.909 146.81 269.029 147.002 269.179 147.164C269.335 147.32 269.515 147.44 269.719 147.524C269.929 147.608 270.154 147.65 270.394 147.65Z"
1294
+ fill="white"
1295
+ [attr.fill]="
1296
+ usaStates['MO']['color'] === lowestBlue
1297
+ ? blueText
1298
+ : whiteText
1299
+ "
1300
+ />
1301
+ </g>
1302
+ <g
1303
+ class="zoomable-state state-MS"
1304
+ (mouseenter)="onStateHover('MS', false, $event)"
1305
+ (mouseleave)="onStateHover('MS', true, $event)"
1306
+ [ngbPopover]="countryPopoverTemplate"
1307
+ [disablePopover]="
1308
+ currentlyHoveredState?.state !== usaStates['MS'].state
1309
+ "
1310
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1311
+ triggers="mouseenter:mouseleave"
1312
+ autoClose="false"
1313
+ container="body"
1314
+ >
1315
+ <path
1316
+ d="M306.129 229.613L306.12 229.774L305.445 230.205L305.369 230.234L302.991 230.149L302.815 230.111L302.174 229.751L301.834 229.556V229.551L301.121 229.726L299.615 230.115L297.768 230.641L297.175 230.239L297.003 231.22L295.582 232.442L295.142 232.47H295.123L295.103 232.456L295.065 232.433L295.041 232.418L294.974 232.338L294.769 232.101L294.673 231.921L294.375 231.357L294.365 231.3L294.389 231.21L294.475 230.987L294.461 230.783L293.872 229.598L293.805 229.532H293.791L292.213 227.376L292.318 226.599L292.433 226.021L292.576 225.324L292.701 224.817L292.72 224.794L292.796 224.785L292.858 224.775L292.949 224.567L293.069 223.988L293.049 223.652L292.04 223.718L288.056 223.979L287.233 224.028L285.349 224.147L285.167 224.152L282.733 224.294L280.528 224.417V224.422L279.435 224.474L275.102 224.678C275.177 224.109 275.252 223.541 275.327 222.972L275.556 221.802L275.904 218.959L275.909 218.949L275.942 218.879L275.966 218.836L276.965 216.841L276.975 216.831L277.124 216.58L277.215 216.419V216.414L278.281 215.026V215.021L280.19 212.265L279.252 211.175L280.324 211.047L280.257 209.473L279.233 208.39L279.223 208.371L279.185 208.31L279.156 208.272V208.255L279.142 208.08L279.353 207.384L279.286 207.236L278.994 207.146L278.97 207.127L278.884 207.051L278.865 207.037L278.855 207.018L278.822 206.985L278.813 206.966L278.76 206.833L278.023 203.521L278.004 203.436L278.104 203.091L278.405 202.608L278.477 202.523L278.745 202.22L278.754 202.21L279.041 201.021V201.012L279.017 200.187L278.778 199.936L278.467 199.377L278.003 198.069L278.476 197.932L278.586 197.714L278.515 197.463L278.137 197.207L277.668 196.894L277.658 196.89L277.534 196.545L278.204 196.275L278.366 196.138L278.39 196.024V196.015L278.132 195.806L277.859 195.602L277.806 195.507L277.797 195.484L277.846 195.237L278.578 192.124L280.352 191.238L280.405 190.869L280.31 190.632L279.903 190.31L279.898 190.296L279.87 190.191L279.999 189.921L280.405 189.087L281.266 187.556L282.213 187.367L282.606 187.182L282.917 186.912L282.936 186.897L282.945 186.878L283.008 186.67L282.912 185.689L282.787 184.419L284.17 182.235L285.174 181.874L284.949 180.405L290.177 180.088L290.89 180.036L293.496 179.865L294.874 179.767V179.772L296.486 179.653L298.224 179.52H298.229L298.55 179.491L302.176 179.207L302.325 179.198L303.788 179.079L304.797 180.131L304.706 183.557L304.672 184.861C304.642 186.244 304.612 187.628 304.581 189.012L304.572 189.32L304.486 192.769H304.481V192.774L304.431 195.087L304.379 197.794H304.384L304.317 201.059L304.307 201.741H304.302L304.24 205.594L304.173 208.555L304.149 209.446L304.087 213.095L304.312 215.232L304.676 218.075H304.681L305.128 221.553L305.29 222.813H305.285L305.639 225.652L306.129 229.613Z"
1317
+ fill="#E5E5E5"
1318
+ stroke="white"
1319
+ stroke-linejoin="round"
1320
+ [attr.fill]="usaStates['MS']['color']"
1321
+ />
1322
+ <path
1323
+ d="M285.63 207V200.7H287.097L289.707 204.984H288.933L291.471 200.7H292.938L292.956 207H291.318L291.3 203.193H291.579L289.68 206.379H288.888L286.935 203.193H287.277V207H285.63ZM296.431 207.126C295.915 207.126 295.417 207.063 294.937 206.937C294.463 206.805 294.076 206.637 293.776 206.433L294.361 205.119C294.643 205.299 294.967 205.449 295.333 205.569C295.705 205.683 296.074 205.74 296.44 205.74C296.686 205.74 296.884 205.719 297.034 205.677C297.184 205.629 297.292 205.569 297.358 205.497C297.43 205.419 297.466 205.329 297.466 205.227C297.466 205.083 297.4 204.969 297.268 204.885C297.136 204.801 296.965 204.732 296.755 204.678C296.545 204.624 296.311 204.57 296.053 204.516C295.801 204.462 295.546 204.393 295.288 204.309C295.036 204.225 294.805 204.117 294.595 203.985C294.385 203.847 294.214 203.67 294.082 203.454C293.95 203.232 293.884 202.953 293.884 202.617C293.884 202.239 293.986 201.897 294.19 201.591C294.4 201.285 294.712 201.039 295.126 200.853C295.54 200.667 296.056 200.574 296.674 200.574C297.088 200.574 297.493 200.622 297.889 200.718C298.291 200.808 298.648 200.943 298.96 201.123L298.411 202.446C298.111 202.284 297.814 202.164 297.52 202.086C297.226 202.002 296.941 201.96 296.665 201.96C296.419 201.96 296.221 201.987 296.071 202.041C295.921 202.089 295.813 202.155 295.747 202.239C295.681 202.323 295.648 202.419 295.648 202.527C295.648 202.665 295.711 202.776 295.837 202.86C295.969 202.938 296.14 203.004 296.35 203.058C296.566 203.106 296.8 203.157 297.052 203.211C297.31 203.265 297.565 203.334 297.817 203.418C298.075 203.496 298.309 203.604 298.519 203.742C298.729 203.874 298.897 204.051 299.023 204.273C299.155 204.489 299.221 204.762 299.221 205.092C299.221 205.458 299.116 205.797 298.906 206.109C298.702 206.415 298.393 206.661 297.979 206.847C297.571 207.033 297.055 207.126 296.431 207.126Z"
1324
+ fill="white"
1325
+ [attr.fill]="
1326
+ usaStates['MS']['color'] === lowestBlue
1327
+ ? blueText
1328
+ : whiteText
1329
+ "
1330
+ />
1331
+ </g>
1332
+ <g
1333
+ class="zoomable-state state-MT"
1334
+ (mouseenter)="onStateHover('MT', false, $event)"
1335
+ (mouseleave)="onStateHover('MT', true, $event)"
1336
+ [ngbPopover]="countryPopoverTemplate"
1337
+ [disablePopover]="
1338
+ currentlyHoveredState?.state !== usaStates['MT'].state
1339
+ "
1340
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1341
+ triggers="mouseenter:mouseleave"
1342
+ autoClose="false"
1343
+ container="body"
1344
+ >
1345
+ <path
1346
+ d="M175.126 26.3883L174.796 30.3164L174.576 32.9463H174.571L174.232 37.1786V37.1835L173.677 43.6303L173.61 44.3552L172.974 51.7946L172.879 52.8847L172.635 55.709L172.329 59.3339L172.276 60.0259L171.683 67.2852L171.348 69.6164L163.743 68.9057L163.197 68.8536L157.471 68.2852L155.994 68.2094L154.243 68.0199L149.408 67.4559L147.92 67.2807L147.509 67.1956L143.85 66.7502L141.645 66.485L138.89 66.1439V66.139L136.021 65.7552L133.636 65.4427L132.618 65.3054L132.46 65.2817L131.03 65.0209L126.945 64.4761V64.4811L125.19 64.2109L124.544 64.1065L123.678 64.0637L121.119 63.7227H121.1L119.943 63.5426L119.608 63.4289L118.652 63.2345L117.356 63.0377V63.0426L116.768 66.4825L116.404 68.7192L115.778 68.1459L115.692 67.8851L115.347 66.9043L114.716 65.6818L114.348 65.3172V65.3122L113.473 65.639L112.143 67.1508L111.144 67.1223L109.594 66.6863L107.458 66.4682L106.291 66.9043L103.541 66.2266L103.024 66.3496L102.718 66.6671L102.608 66.8378L102.517 67.2453L102.512 67.2739L102.436 67.3925L102.278 67.4776L102.079 67.4067L101.453 66.7148L101.242 66.4117L101.151 65.8949L101.161 64.5352L101.19 64.5116L101.239 64.4309V64.3437L101.014 63.3959L100.847 62.8748L100.703 62.6474L100.373 62.2872L100.101 62.0741L99.8375 62.1405L98.5654 60.3777L97.3603 55.9486L97.3509 55.0958L97.3702 54.4467L97.4696 54.2715L97.4746 53.9447L97.3886 53.0825L97.3454 52.9452L96.6003 51.9029L96.4473 51.742H96.4423L95.7633 52.1307L94.8161 52.9506L93.3095 53.6396L92.9941 53.5874L92.9225 53.3222L92.3582 52.4408L92.2624 52.398L91.9609 52.3222L91.6211 52.273L91.5972 52.2444L91.6067 52.2065L91.7408 51.4683L92.0085 50.0087L94.143 44.7081L94.8175 43.2248L95.2671 42.2012L95.5348 41.4527L95.578 41.2159L95.5542 41.088L95.511 41.0452H95.506L95.4727 41.0122L95.3386 40.9034L94.9412 40.8513L94.745 40.8892L94.6253 40.9384L94.4529 40.9876L93.6348 40.8168L93.6204 40.8026L93.2042 39.7691H92.8743L92.8247 39.7548L92.7149 39.7263L91.6102 38.2573L91.5769 38.1672V38.1623L91.4279 37.0629L91.2366 36.712L90.8825 36.0536L90.2596 34.6048L89.59 33.1122L89.4658 33.0221L88.8777 32.7898L88.4758 32.5954L88.3516 32.4818L88.1892 32.3489L87.0124 30.7377L87.003 30.4675V30.4581L87.1466 29.5817V29.5674L87.3616 29.0935L87.61 28.4631L87.615 27.8568V27.814L87.61 27.7997L87.5956 27.7712L87.5862 27.7333L86.1084 24.748L85.8789 24.3455L86.4144 21.8386V21.8293L87.0696 18.8111L88.2031 13.5518L93.9284 14.7599L97.0995 15.3903L97.6832 15.504L102.423 16.439H102.428L103.131 16.5763L105.125 16.97L109.281 17.7235L110.047 17.8564L115.939 18.8942V18.8893L118.393 19.3061L119.057 19.4198L120.889 19.7185L122.607 19.9981L126.427 20.594L135.515 21.9228H135.52L136.281 22.0271L138.629 22.3637L139.064 22.4301H139.107L142.386 22.8662L142.788 22.9183L144.615 23.155V23.16L152.301 24.0979V24.1029L160.075 24.9739V24.969L167.761 25.7411L175.126 26.3883Z"
1347
+ fill="#E5E5E5"
1348
+ stroke="white"
1349
+ stroke-linejoin="round"
1350
+ [attr.fill]="usaStates['MT']['color']"
1351
+ />
1352
+ <path
1353
+ d="M127.63 48V41.7H129.097L131.707 45.984H130.933L133.471 41.7H134.938L134.956 48H133.318L133.3 44.193H133.579L131.68 47.379H130.888L128.935 44.193H129.277V48H127.63ZM137.558 48V43.113H135.623V41.7H141.266V43.113H139.34V48H137.558Z"
1354
+ fill="white"
1355
+ [attr.fill]="
1356
+ usaStates['MT']['color'] === lowestBlue
1357
+ ? blueText
1358
+ : whiteText
1359
+ "
1360
+ />
1361
+ </g>
1362
+ <path
1363
+ d="M412.438 152.691V152.696L412.596 152.767L412.754 152.89L412.96 153.099L413.113 153.365L413.232 153.796L413.194 153.877L413.161 153.882L412.75 153.811L412.673 153.754L412.027 152.818L411.978 152.737L411.973 152.714L412.04 152.656L412.15 152.633H412.284L412.438 152.691Z"
1364
+ fill="#E5E5E5"
1365
+ stroke="white"
1366
+ stroke-linejoin="round"
1367
+ />
1368
+ <path
1369
+ d="M408.195 146.72L408.156 146.644L408.434 146.582L408.592 146.631L408.587 146.55L409.022 146.46L409.161 147.078L408.749 147.054L408.616 147.145L408.496 147.095L408.525 146.763L408.195 146.72Z"
1370
+ fill="#E5E5E5"
1371
+ stroke="white"
1372
+ stroke-linejoin="round"
1373
+ />
1374
+ <path
1375
+ d="M409.697 147.514L409.238 146.41L409.334 146.391L411.013 149.57V149.575L411.018 149.584L411.496 150.286L411.764 150.698L412.07 151.043L412.496 151.587L412.922 152.175L413.505 153.194L413.931 153.843L413.888 153.966L413.017 153.009L412.669 152.241L412.196 152.099L411.904 151.492L411.479 150.639L410.947 149.632L410.603 149.077L410.282 149.028L410.129 148.644L410.392 148.734L410.254 148.407L409.895 147.796L409.9 147.668L409.697 147.514Z"
1376
+ fill="#E5E5E5"
1377
+ stroke="white"
1378
+ stroke-linejoin="round"
1379
+ />
1380
+ <path
1381
+ d="M415.369 158.896L415.364 159.862L415.315 159.96H415.215L415.072 159.946L414.899 159.995L414.646 160.09L414.44 160.218L413.531 160.806H413.526L413.364 160.896L413.206 161.024L412.809 161.337L412.254 161.816L412.005 162.029L411.728 162.351L411.599 162.541L411.513 162.621L411.484 162.588L411.494 162.546L411.632 162.157L411.79 161.934L412.345 161.451L413.19 160.778L413.453 160.665V160.66L413.615 160.575L413.744 160.49L414.44 160.011L415.185 159.466L415.204 159.291L415.166 158.187L415.113 157.449L415.018 156.354L414.908 155.862L414.826 155.611L414.712 155.355L414.573 155.185L414.463 155.047L414.016 154.099L414.049 154.062L414.099 154.071H414.119L414.133 154.095L414.362 154.369L414.448 154.506L414.716 155.009L414.874 155.374L415.089 155.852L415.156 156.321L415.175 156.458L415.252 157.126L415.328 158.103L415.369 158.896Z"
1382
+ fill="#E5E5E5"
1383
+ stroke="white"
1384
+ stroke-linejoin="round"
1385
+ />
1386
+ <g
1387
+ class="zoomable-state state-NC"
1388
+ (mouseenter)="onStateHover('NC', false, $event)"
1389
+ (mouseleave)="onStateHover('NC', true, $event)"
1390
+ [ngbPopover]="countryPopoverTemplate"
1391
+ [disablePopover]="
1392
+ currentlyHoveredState?.state !== usaStates['NC'].state
1393
+ "
1394
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1395
+ triggers="mouseenter:mouseleave"
1396
+ autoClose="false"
1397
+ container="body"
1398
+ >
1399
+ <path
1400
+ d="M410.955 157.535L410.716 158.161L410.75 158.284L410.745 158.397L410.695 158.748L410.681 158.824L410.642 158.9L410.312 159.416L409.766 160.007L409.713 160.04L407.485 160.253H407.403L406.681 160.163L406.102 160.072L405.691 160.731L406.662 160.722L406.839 160.774L406.973 160.959L407.054 161.148L407.088 161.314L406.959 161.882L406.71 162.939L406.572 163.261L406.084 164.223V164.228L406.122 164.299L406.28 164.465L406.639 164.427L407.299 164.058L407.476 163.223L407.863 163.712L408.318 164.155L408.906 164.056L408.437 163.44L409.202 163.672L409.479 164.388L408.92 165.236L408.7 165.255L408.485 165.551L408.652 165.953L410.206 163.603L410.986 162.451L411.144 162.664L410.393 163.659L409.946 164.712L409.09 165.939L408.205 167.801L407.937 168.392L407.755 168.074L407.454 167.97L406.531 167.795L406.076 167.847L405.698 167.923L405.287 168.041L404.527 168.316L403.814 168.611L403.737 168.644L403.708 168.658L403.479 168.767L403.283 168.881L402.948 169.07L402.804 169.146V169.151L399.653 171.994L398.208 173.932H397.979L397.983 173.937H398.208L398.041 174.183L397.888 174.515L397.481 175.514L397.414 175.775L397.261 176.529L397.247 176.619L397.013 178.206V178.211L396.922 178.96L396.611 179.102L396.371 178.789L395.649 178.728H395.267L394.898 178.777L394.023 178.957L393.115 179.242L393.086 179.251H393.081L392.038 179.848L391.78 180.057L390.617 179.232V179.237L386.169 176.088H386.164V176.083L382.18 173.211L382.06 173.126L382.055 173.131L379.726 171.591L377.597 171.936V171.931L374.111 172.433L371.968 172.746L370.05 173.031L369.868 172.998L369.863 172.893L369.806 171.78L369.175 171.154L368.458 170.429L368.123 170.282L367.401 171.002L367.137 170.827L367.333 170.159L367.123 169.846L364.59 170.074L364.245 170.107L360.676 170.478L359.733 170.573L358.891 170.663V170.668L356.691 170.891L355.449 170.948L353.617 171.9L352.043 172.966L350.886 173.261L349.948 173.706L349.097 174.119L345.778 174.635L345.194 174.725L341.767 175.223L341.154 175.298L340.055 175.436L338.342 175.633L338.309 173.226L339.036 172.595L339.983 172.572L340.318 172.297L340.524 172.018V172.013L340.887 170.06L340.959 170.084V170.089L343.364 168.582H343.563L344.821 168.454L344.926 168.383L346.452 167.189L346.772 166.725L346.734 166.528L349.178 165.324L349.522 163.602L349.92 163.503L350.695 162.783L351.249 162.242L351.402 162.133L351.622 161.972L351.666 161.967L351.8 162.052L351.967 162.209V162.214L351.871 162.82L352.368 163.128L352.674 162.811L352.908 162.758L353.535 161.627L355.103 160.466L356.414 160.845L357.447 158.93L357.538 158.665V158.66L357.605 158.489L358.007 158.039L358.447 157.74L358.456 157.731L358.506 157.702L358.559 157.825L358.793 157.901L358.927 157.896H358.946L359.128 157.835L359.095 157.319V157.314L359.138 155.086L361.969 154.802V154.807L365.905 154.333L366.465 154.271L368.421 153.968L369.923 153.807V153.812L373.285 153.343L373.51 153.305L376.213 152.855L377.982 152.56L378.33 152.493L379.422 152.304L380.499 152.107L381.194 151.989L384.145 151.458V151.453L384.681 151.355L387.072 150.909L387.067 150.914L388.21 150.687L390.606 150.232L391.868 149.981V149.986L393.007 149.773L397.063 148.977L398.191 148.735V148.73L400.32 148.332L400.263 148.251L403.541 147.612L403.972 147.517L405.498 147.194H405.503L407.138 146.853V146.856L407.947 146.686L408.023 147.017L408.463 147.737L408.726 147.709L408.841 147.856L408.559 147.875L409.09 148.544L409.071 148.169L409.047 147.726L409.233 147.764L409.386 148.536L410.52 150.02L410.926 150.962L411.069 151.271L411.079 151.389H411.026L410.663 151.242L410.543 151.161L410.309 150.929L410.06 150.611L408.644 150.649L407.568 151.606L405.73 152.473L405.725 152.478L405.194 153.014L404.792 153.492L403.948 153.237L403.632 153.516L403.599 154.369V154.374L403.608 154.379L403.785 154.45H403.843L404.35 154.312L405.192 153.986L405.455 153.81L405.546 153.682L406.057 153.427L406.139 153.459L406.23 153.53L406.488 153.805V153.81L407.172 153.327L407.641 153.056L407.952 152.933L408.942 152.73L409.32 152.896L409.43 152.99L409.645 153.569L410.013 152.872L410.076 152.802L410.386 152.605L410.554 152.548L410.721 152.515H410.817L411.205 152.623L411.511 152.903L412.132 153.775L412.232 153.936L412.648 155.239L412.658 155.288L412.672 156.051L412.385 156.634L412.208 156.729L411.869 156.837L411.563 156.771V156.776L411.364 156.927L410.981 157.486L410.955 157.535Z"
1401
+ fill="#E5E5E5"
1402
+ stroke="white"
1403
+ stroke-linejoin="round"
1404
+ [attr.fill]="usaStates['NC']['color']"
1405
+ />
1406
+ <path
1407
+ d="M378.63 166V159.7H380.097L383.571 163.894H382.878V159.7H384.624V166H383.157L379.683 161.806H380.376V166H378.63ZM389.022 166.126C388.524 166.126 388.062 166.048 387.636 165.892C387.216 165.73 386.85 165.502 386.538 165.208C386.232 164.914 385.992 164.569 385.818 164.173C385.644 163.771 385.557 163.33 385.557 162.85C385.557 162.37 385.644 161.932 385.818 161.536C385.992 161.134 386.232 160.786 386.538 160.492C386.85 160.198 387.216 159.973 387.636 159.817C388.062 159.655 388.524 159.574 389.022 159.574C389.604 159.574 390.123 159.676 390.579 159.88C391.041 160.084 391.425 160.378 391.731 160.762L390.597 161.788C390.393 161.548 390.168 161.365 389.922 161.239C389.682 161.113 389.412 161.05 389.112 161.05C388.854 161.05 388.617 161.092 388.401 161.176C388.185 161.26 387.999 161.383 387.843 161.545C387.693 161.701 387.573 161.89 387.483 162.112C387.399 162.334 387.357 162.58 387.357 162.85C387.357 163.12 387.399 163.366 387.483 163.588C387.573 163.81 387.693 164.002 387.843 164.164C387.999 164.32 388.185 164.44 388.401 164.524C388.617 164.608 388.854 164.65 389.112 164.65C389.412 164.65 389.682 164.587 389.922 164.461C390.168 164.335 390.393 164.152 390.597 163.912L391.731 164.938C391.425 165.316 391.041 165.61 390.579 165.82C390.123 166.024 389.604 166.126 389.022 166.126Z"
1408
+ fill="white"
1409
+ [attr.fill]="
1410
+ usaStates['NC']['color'] === lowestBlue
1411
+ ? blueText
1412
+ : whiteText
1413
+ "
1414
+ />
1415
+ </g>
1416
+ <g
1417
+ class="zoomable-state state-ND"
1418
+ (mouseenter)="onStateHover('ND', false, $event)"
1419
+ (mouseleave)="onStateHover('ND', true, $event)"
1420
+ [ngbPopover]="countryPopoverTemplate"
1421
+ [disablePopover]="
1422
+ currentlyHoveredState?.state !== usaStates['ND'].state
1423
+ "
1424
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1425
+ triggers="mouseenter:mouseleave"
1426
+ autoClose="false"
1427
+ container="body"
1428
+ >
1429
+ <path
1430
+ d="M229.792 60.3897L229.777 60.6127L229.758 60.6791L229.614 61.0772L229.72 62.0201L224.612 61.9709L218.85 61.8666L218.625 61.8572L213.124 61.6963L210.967 61.6205V61.6254L205.5 61.4168L204.258 61.3597L199.509 61.1323H199.413V61.1274H199.408L197.67 61.0374L197.497 61.028H197.435L196.512 60.9788L195.817 60.9409L192.804 60.78L192.354 60.7514L191.389 60.6973L190.232 60.6264L189.127 60.5649L188.199 60.5034L188.08 60.4941H187.994L180.786 60.002L180.375 59.9734V59.9685L172.34 59.3381L172.646 55.7083L172.89 52.884L172.986 51.794L173.622 44.3547L173.689 43.6249L174.244 37.1856V37.1743L174.584 32.9476L174.804 30.3177V30.3128H174.809L175.138 26.3848L183.241 27.0294H183.246L189.951 27.4841L193.787 27.7115L203.405 28.1997V28.1948L208.217 28.3842V28.3891L212.067 28.5171L219.753 28.71L225.038 28.7951L225 28.8281L224.966 28.989L224.961 29.1499L225.005 29.3773L225.531 31.0928L225.674 31.5096L226 32.2394L225.459 33.7158L225.497 33.7394L225.555 33.7679L225.727 33.9766L225.777 36.5735L225.533 37.4977L225.528 37.7206V37.7491L225.7 38.4125L226.417 40.9665L227.383 43.1555H227.388L227.642 45.0319L227.78 47.8655H227.775L227.814 48.8084L227.823 50.1863L228.143 51.2241L228.234 51.4751L228.091 53.8442L228.096 54.4504C228.204 54.7647 228.313 55.079 228.421 55.3933L229.478 57.9139L229.77 60.1978L229.792 60.3897Z"
1431
+ fill="#E5E5E5"
1432
+ stroke="white"
1433
+ stroke-linejoin="round"
1434
+ [attr.fill]="usaStates['ND']['color']"
1435
+ />
1436
+ <path
1437
+ d="M195.63 48V41.7H197.097L200.571 45.894H199.878V41.7H201.624V48H200.157L196.683 43.806H197.376V48H195.63ZM202.881 48V41.7H205.86C206.556 41.7 207.168 41.829 207.696 42.087C208.224 42.345 208.635 42.708 208.929 43.176C209.229 43.644 209.379 44.202 209.379 44.85C209.379 45.492 209.229 46.05 208.929 46.524C208.635 46.992 208.224 47.355 207.696 47.613C207.168 47.871 206.556 48 205.86 48H202.881ZM204.663 46.578H205.788C206.148 46.578 206.46 46.512 206.724 46.38C206.994 46.242 207.204 46.044 207.354 45.786C207.504 45.522 207.579 45.21 207.579 44.85C207.579 44.484 207.504 44.172 207.354 43.914C207.204 43.656 206.994 43.461 206.724 43.329C206.46 43.191 206.148 43.122 205.788 43.122H204.663V46.578Z"
1438
+ fill="white"
1439
+ [attr.fill]="
1440
+ usaStates['ND']['color'] === lowestBlue
1441
+ ? blueText
1442
+ : whiteText
1443
+ "
1444
+ />
1445
+ </g>
1446
+ <g
1447
+ class="zoomable-state state-NE"
1448
+ (mouseenter)="onStateHover('NE', false, $event)"
1449
+ (mouseleave)="onStateHover('NE', true, $event)"
1450
+ [ngbPopover]="countryPopoverTemplate"
1451
+ [disablePopover]="
1452
+ currentlyHoveredState?.state !== usaStates['NE'].state
1453
+ "
1454
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1455
+ triggers="mouseenter:mouseleave"
1456
+ autoClose="false"
1457
+ container="body"
1458
+ >
1459
+ <path
1460
+ d="M239.828 126.952H239.56L235.811 126.966H232.035L230.156 126.957L227.296 126.928L226.368 126.919L222.575 126.867L218.792 126.81V126.805L217.869 126.786L215.004 126.719L213.076 126.676L211.22 126.624V126.619L208.37 126.534L207.437 126.506V126.51L203.697 126.378H203.673V126.368L199.076 126.188L198.947 126.179V126.184L194.389 125.971L194.227 125.956V125.951L189.497 125.7V125.705L188.769 125.667L183.422 125.341L183.661 121.551L183.909 117.737L183.953 117.164L184.125 114.397L179.438 114.084H179.433L179.17 114.069L173.162 113.633L171.584 113.515L167.652 113.192L168.02 108.914H168.025L168.303 105.582L168.59 102.261H168.595L169.523 91.3574L173.904 91.7078V91.7127L177.936 92.0208L179.605 92.1438V92.1532L185.282 92.537L186.937 92.6413L188.936 92.7929L192.122 92.9588L194.695 93.0916L197.598 93.2245L199.162 93.3003L199.732 93.3288L200.372 93.3618V93.3569L205.696 93.5749L207.934 93.6556L213.999 93.8308L215.486 95.1482V95.1531L216.61 95.66L217.486 96.4085L217.663 96.4842L217.801 96.5079L217.935 96.5029L218.347 96.4414L218.452 96.375L218.677 96.1713L218.849 95.9296L219.054 95.6737L219.15 95.3785L219.528 95.317L219.772 95.5916L220.045 95.6152L220.289 95.2884L220.537 95.3549L220.736 95.6723L221.051 95.3312L221.349 95.3691L221.406 95.5965L221.842 95.4877L222.095 95.3977V95.3927L222.592 95.5064L222.984 95.3406L223.371 95.2599L223.874 95.473L224.376 95.5345L224.39 95.9282L224.849 96.2505L225.854 96.6722V96.6772L227.537 97.2977L228.192 97.7101L228.283 97.9069L228.333 98.0871L228.3 98.2199L228.295 98.3183L228.318 98.4133L228.897 99.2662L230.451 99.6598L230.724 99.679L230.834 99.7219L230.92 99.8355L230.953 99.9635L230.958 100.129L230.9 100.281L230.996 101.537L231.24 101.991H231.245L231.145 102.664L231.815 104.508L232.896 106.493L233.039 108.502L234.187 110.431L234.541 111.682H234.546L234.666 113.896L235.24 114.237C235.204 114.653 235.167 115.068 235.131 115.483L235.499 117.075L235.24 118.369L235.981 120.544L236.445 121.217L236.555 120.985L236.866 121.255L236.684 121.577L236.588 121.662L236.638 121.857L237.179 123.207L237.757 123.766L237.781 123.823V123.856L237.772 124.053V124.086L239.828 126.952Z"
1461
+ fill="#E5E5E5"
1462
+ stroke="white"
1463
+ stroke-linejoin="round"
1464
+ [attr.fill]="usaStates['NE']['color']"
1465
+ />
1466
+ <path
1467
+ d="M198.63 114V107.7H200.097L203.571 111.894H202.878V107.7H204.624V114H203.157L199.683 109.806H200.376V114H198.63ZM207.519 110.139H210.444V111.471H207.519V110.139ZM207.645 112.623H210.939V114H205.881V107.7H210.822V109.077H207.645V112.623Z"
1468
+ fill="white"
1469
+ [attr.fill]="
1470
+ usaStates['NE']['color'] === lowestBlue
1471
+ ? blueText
1472
+ : whiteText
1473
+ "
1474
+ />
1475
+ </g>
1476
+ <g
1477
+ class="zoomable-state state-NH"
1478
+ (mouseenter)="onStateHover('NH', false, $event)"
1479
+ (mouseleave)="onStateHover('NH', true, $event)"
1480
+ [ngbPopover]="countryPopoverTemplate"
1481
+ [disablePopover]="
1482
+ currentlyHoveredState?.state !== usaStates['NH'].state
1483
+ "
1484
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1485
+ triggers="mouseenter:mouseleave"
1486
+ autoClose="false"
1487
+ container="body"
1488
+ >
1489
+ <path
1490
+ d="M434.355 66.8502L434.02 69.0676L433.738 69.2428L433.456 69.1006L433.221 69.1149L433.169 69.1434L433.107 69.172H433.102L432.361 69.7167L432.251 70.3235L431.605 70.3565L431.5 70.4652L431.332 70.8063L431.519 71.3038L431.069 71.3274H431.064L431.014 71.4411L430.816 71.9101L428.161 72.5168L428.128 72.5262L428.008 72.5547L426.067 72.9814L425.832 73.0336L423.044 73.6305L421.662 73.9258L420.781 73.2245L420.494 72.8077L420.312 72.5469L420.489 72.0444L420.37 71.6015L420.853 71.104L420.633 70.4972L420.714 69.8053L420.537 69.3132L420.528 69.3038L420.499 68.4983L420.533 67.546L420.334 67.4181L420.368 67.1194L420.201 67.1287L419.986 65.3852L419.914 64.8118L420.282 64.4093L420.109 64.2046L420.248 63.5983L420.138 63.3237L420.334 62.9211L420.492 62.8311L420.769 62.3572L420.798 61.8075L420.669 61.2578L420.97 60.6515L421.023 60.0876L420.832 59.8602L420.985 59.0595L421.123 58.657L420.956 58.5094L420.985 57.9597L420.85 57.8612L420.707 57.6669L420.458 56.7948V56.7284L420.482 56.6147L420.741 56.1551L420.764 56.1364L420.803 56.0985L421.338 55.7717L421.874 55.4351L422.39 54.7767L422.553 54.791L422.801 54.6108L422.82 54.5823L422.93 54.445L422.973 54.3786L423.007 54.3293L423.385 53.666L423.423 53.5995L423.514 53.3579L423.361 52.851L423.615 52.4081L423.418 52.0858L423.38 52.0336L423.189 51.7969L422.835 51.3658L422.548 51.0863L422.481 50.9018L423.036 48.9545L422.496 48.2296L422.677 47.8551L422.615 47.206L422.797 45.2376L423.419 44.4369L423.5 44.3754L423.668 44.4605L423.735 44.5934L423.773 44.6313L424.017 44.7543L424.419 44.7829L424.758 44.712L424.811 44.6741L424.993 43.9492L425.291 44.7834L426.917 49.64L427.032 50.0047L428.472 54.5488L430.041 59.6993L431.012 62.2012L431.146 63.6844L431.203 63.9305L431.275 64.082L431.5 64.3901L431.643 64.461L432.026 64.6504L432.959 65.2001L432.983 65.2287L433.281 66.4181L434.355 66.8502Z"
1491
+ fill="#E5E5E5"
1492
+ stroke="white"
1493
+ stroke-linejoin="round"
1494
+ [attr.fill]="usaStates['NH']['color']"
1495
+ />
1496
+ <path
1497
+ d="M411.63 40V33.7H413.097L416.571 37.894H415.878V33.7H417.624V40H416.157L412.683 35.806H413.376V40H411.63ZM423.093 33.7H424.875V40H423.093V33.7ZM420.663 40H418.881V33.7H420.663V40ZM423.219 37.543H420.537V36.067H423.219V37.543Z"
1498
+ fill="#E5E5E5"
1499
+ [attr.fill]="
1500
+ usaStates['NH']['color'] === defaultColor
1501
+ ? defaultColor
1502
+ : blueText
1503
+ "
1504
+ />
1505
+ </g>
1506
+ <g
1507
+ class="zoomable-state state-NJ"
1508
+ (mouseenter)="onStateHover('NJ', false, $event)"
1509
+ (mouseleave)="onStateHover('NJ', true, $event)"
1510
+ [ngbPopover]="countryPopoverTemplate"
1511
+ [disablePopover]="
1512
+ currentlyHoveredState?.state !== usaStates['NJ'].state
1513
+ "
1514
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1515
+ triggers="mouseenter:mouseleave"
1516
+ autoClose="false"
1517
+ container="body"
1518
+ >
1519
+ <path
1520
+ d="M415.677 108.832L415.969 109.131L415.864 109.581L415.045 111.093L415.481 111.671L415.232 111.932L415.405 112.307L414.897 113.41L413.835 114.472L413.488 115.007L413.382 115.192L413.268 115.481L413.076 115.988L412.871 116.713V116.746L412.876 116.751L412.885 116.765L412.574 117.865L412.349 118.409L412.058 118.901L411.632 119.138L411.522 119.167L411.273 119.195L411.23 119.176L411.177 119.11L411.168 118.428L411.182 118.262L411.226 118.034L411.388 117.409L411.407 117.276L411.45 117.096L411.455 116.774L411.35 116.613L411.159 116.475L411.077 116.466L410.114 116.461L410.023 116.286L409.397 116.457L409.186 116.774L408.904 116.665L408.818 116.321L408.335 116.079L408.11 116.03L408.187 115.869L408.062 115.732L407.747 115.808L407.713 115.945L407.45 115.803L407.202 115.428L406.891 115.49L406.714 115.395L406.605 115.215L406.317 115.172L406.016 114.859L405.877 114.693L405.652 114.651L405.514 114.532L405.323 114.489L405.107 114.181L405.265 114.138L405.131 113.556L405.299 113.243L404.796 113.002L404.734 112.736L404.988 112.258L404.959 111.921L405.088 111.647L405.246 111.043H405.251L405.371 110.92L405.442 110.688L405.989 109.999L406.974 109.629L407.303 109.165H407.298L407.925 108.009L408.456 107.246L409.36 106.487L409.47 106.137L409.809 106.108L410.259 105.734L408.045 104.047L407.987 104.014L407.188 103.535L406.566 102.293L405.385 101.815L405.294 101.644L405.242 101.546L405.036 100.769L404.95 100.115L405.094 99.7878L405.156 99.7686L405.28 99.7829L405.404 99.7637L405.571 99.5363L405.849 98.6998L405.854 98.6333L405.825 98.5669L405.046 97.657L405.94 96.0035L405.89 95.9464L406.221 95.4917L406.445 94.9612L406.495 94.6344L406.48 94.4543L406.447 94.4213L406.461 94.2737L406.56 93.847L406.604 93.7284L406.8 93.3259L407.029 93.0798L407.517 92.7354L410.53 93.7826L410.535 93.7732L411.74 94.1807V94.1856L411.931 94.2427L414.839 95.1049L414.854 95.9956L414.82 96.3509L414.6 97.3981L414.524 98.4217L414.419 98.3981L414.204 98.6304L414.294 98.8533L414.118 98.9621L414.156 99.09L413.572 99.2558V99.2608L413.4 99.3272L413.381 99.3365L413.572 99.2873L413.725 99.2731L413.83 99.2445L413.916 99.2209L414.17 99.1166L414.256 99.1023L414.323 99.1687L414.385 99.3439L414.552 99.5334L414.528 99.652L414.222 100.254L414.026 100.448L413.988 100.439V100.434L413.955 100.448L413.878 100.553L413.754 100.661H413.72L413.596 100.789L413.52 100.838L413.462 100.929L413.266 101.009L413.217 100.981L413.159 100.919L413.145 100.843L413.183 100.768L413.097 100.507L413.202 100.341L413.288 100.336L413.365 100.199L413.37 99.8483L413.317 99.744L413.336 99.8341L413.341 99.9999L413.35 100.061L413.345 100.189L413.307 100.279L413.288 100.329H413.235L413.178 100.334L413.063 100.466L413.058 100.552L413.153 100.77L413.086 101.114L413.081 101.128L413.072 101.251L413.144 101.36L413.306 101.403L413.531 101.484H413.536L413.66 101.554L413.809 101.294L414.173 101.289L414.62 101.327L415.06 101.523L415.491 101.533L415.366 101.068L415.27 101.059L415.266 100.978L415.127 100.898V100.827L415.165 100.775L415.194 100.742H415.251L415.361 100.794L415.667 101.192L415.853 101.926L415.915 102.177L415.92 102.196L415.987 102.708L416.007 102.926L416.021 103.395L415.997 104.954L415.993 105.158L416.042 106.048L416.057 106.299L416.124 107.053L415.789 108.162L415.677 108.832Z"
1521
+ fill="#E5E5E5"
1522
+ stroke="white"
1523
+ stroke-linejoin="round"
1524
+ [attr.fill]="usaStates['NJ']['color']"
1525
+ />
1526
+ <path
1527
+ d="M420.63 112V105.7H422.097L425.571 109.894H424.878V105.7H426.624V112H425.157L421.683 107.806H422.376V112H420.63ZM429.258 112.126C428.796 112.126 428.376 112.048 427.998 111.892C427.626 111.73 427.317 111.499 427.071 111.199L428.043 110.047C428.211 110.263 428.385 110.428 428.565 110.542C428.745 110.65 428.934 110.704 429.132 110.704C429.66 110.704 429.924 110.398 429.924 109.786V107.077H427.746V105.7H431.688V109.678C431.688 110.5 431.481 111.115 431.067 111.523C430.653 111.925 430.05 112.126 429.258 112.126Z"
1528
+ fill="#E5E5E5"
1529
+ [attr.fill]="
1530
+ usaStates['NJ']['color'] === defaultColor
1531
+ ? defaultColor
1532
+ : blueText
1533
+ "
1534
+ />
1535
+ </g>
1536
+ <g
1537
+ class="zoomable-state state-NM"
1538
+ (mouseenter)="onStateHover('NM', false, $event)"
1539
+ (mouseleave)="onStateHover('NM', true, $event)"
1540
+ [ngbPopover]="countryPopoverTemplate"
1541
+ [disablePopover]="
1542
+ currentlyHoveredState?.state !== usaStates['NM'].state
1543
+ "
1544
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1545
+ triggers="mouseenter:mouseleave"
1546
+ autoClose="false"
1547
+ container="body"
1548
+ >
1549
+ <path
1550
+ d="M173.027 157.697L172.621 163.17L172.257 163.383L172.123 165.137L171.913 168.013L171.654 171.472C171.621 171.899 171.588 172.325 171.555 172.752L171.191 177.557L170.999 180.064H170.994L170.826 182.319L170.458 187.067L170.449 187.181L170.028 192.394L169.775 195.161V195.166L169.589 197.151L169.163 201.826L168.45 211.332L168.379 212.274L168.153 212.26L167.632 212.217L166.977 212.165L166.493 212.132L165.947 212.089L162.271 211.805L159.887 211.611L159.476 211.578L151.847 210.9L151.192 210.838L141.2 209.829L137.7 209.46V209.469L135.681 209.256L135.299 209.227H135.294L135.141 209.298L135.122 209.45L135.271 209.511L135.172 210.085L134.966 210.217L135.016 210.435L135.021 210.573L135.226 210.791L135.317 210.909L136.039 211.677L128.918 210.867V210.862L120.481 209.821L120.075 212.901L119.841 214.702L113.862 213.929L113.771 213.915L113.034 213.816L112.016 213.674L113.685 201.847L114.22 198.047L114.875 193.375L116.962 178.512L117.535 174.379L119.114 163.049L120.63 152.215L126.384 152.978L134.151 153.94L134.677 154.001V154.006L138.317 154.433L139.441 154.646L141.632 154.883L142.851 155.016L146.931 155.423L149.427 155.679V155.684L153.746 156.115L154.316 156.172L155.657 156.32L157.991 156.533L164.285 157.054L172.297 157.644L173.027 157.697Z"
1551
+ fill="#E5E5E5"
1552
+ stroke="white"
1553
+ stroke-linejoin="round"
1554
+ [attr.fill]="usaStates['NM']['color']"
1555
+ />
1556
+ <path
1557
+ d="M135.63 188V181.7H137.097L140.571 185.894H139.878V181.7H141.624V188H140.157L136.683 183.806H137.376V188H135.63ZM142.881 188V181.7H144.348L146.958 185.984H146.184L148.722 181.7H150.189L150.207 188H148.569L148.551 184.193H148.83L146.931 187.379H146.139L144.186 184.193H144.528V188H142.881Z"
1558
+ fill="white"
1559
+ [attr.fill]="
1560
+ usaStates['NM']['color'] === lowestBlue
1561
+ ? blueText
1562
+ : whiteText
1563
+ "
1564
+ />
1565
+ </g>
1566
+ <g
1567
+ class="zoomable-state state-NV"
1568
+ (mouseenter)="onStateHover('NV', false, $event)"
1569
+ (mouseleave)="onStateHover('NV', true, $event)"
1570
+ [ngbPopover]="countryPopoverTemplate"
1571
+ [disablePopover]="
1572
+ currentlyHoveredState?.state !== usaStates['NV'].state
1573
+ "
1574
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1575
+ triggers="mouseenter:mouseleave"
1576
+ autoClose="false"
1577
+ container="body"
1578
+ >
1579
+ <path
1580
+ d="M88.0993 91.3342L86.019 102.038L84.1393 111.544V111.549L83.6923 113.818L82.9268 117.732L81.0999 127.062L80.8748 128.194L79.9902 132.771L78.8278 138.633L77.5795 145.148L77.2517 146.846V146.851L76.9075 148.642L76.8643 148.86L76.5165 150.836L76.3059 151.936L75.9329 153.85L74.8187 155.343L74.699 155.476L74.6493 155.504H74.6399L74.1089 155.495L73.9365 155.476L73.8869 155.466L73.7771 155.381L73.7006 155.305L73.4949 154.983L73.4328 154.798L73.4279 154.708L73.4229 154.684L73.4035 154.604L73.2982 154.333L73.035 153.969L72.9153 153.86L71.8011 153.533L71.2939 153.429H70.7535L69.7685 153.656L69.6825 153.705L69.5628 153.814L69.5534 153.881L69.4436 154.947L69.2047 158.07L69.0994 159.979L69.2141 161.324L69.2956 161.964L69.305 162.287L69.2429 163.615L69.2335 163.857L69.1838 164.075L69.1024 164.336L68.2798 165.7L67.0792 163.923L63.8172 159.095L63.5921 158.763L62.9846 157.863L61.2198 155.238L59.4931 152.689V152.684L59.3938 152.542L58.1311 150.671L57.8296 150.221L55.4766 146.719L52.5732 142.417L52.0233 141.592L51.0795 140.204L50.9171 139.962L46.4962 133.385L42.579 127.595L37.8869 120.596H37.8819V120.591L36.7772 118.97V118.965L35.138 116.534L33.1148 113.526L32.6797 111.891L32.7944 111.417V111.412L32.933 110.848V110.843L33.3443 109.237L33.7174 107.872L34.5017 104.93L34.6691 104.309L35.5011 101.224L36.0366 99.1964L36.0416 99.1871L36.1995 98.5758L36.6962 96.6757L37.6818 92.7806L38.562 89.3972L40.8097 80.792L45.846 82.0666L46.1281 82.1375L50.4422 83.2132L55.0434 84.2605L64.3367 86.3549L64.3988 86.3786V86.3835L67.5029 87.0848L68.4258 87.2979L80.1437 89.7619L81.1371 89.9135L82.3422 90.1551L84.4468 90.629L86.1784 90.9657L88.0993 91.3342Z"
1581
+ fill="#E5E5E5"
1582
+ stroke="white"
1583
+ stroke-linejoin="round"
1584
+ [attr.fill]="usaStates['NV']['color']"
1585
+ />
1586
+ <path
1587
+ d="M54.63 121V114.7H56.097L59.571 118.894H58.878V114.7H60.624V121H59.157L55.683 116.806H56.376V121H54.63ZM63.7984 121L61.1074 114.7H63.0334L65.3014 120.154H64.1674L66.4894 114.7H68.2534L65.5534 121H63.7984Z"
1588
+ fill="white"
1589
+ [attr.fill]="
1590
+ usaStates['NV']['color'] === lowestBlue
1591
+ ? blueText
1592
+ : whiteText
1593
+ "
1594
+ />
1595
+ </g>
1596
+ <g
1597
+ class="zoomable-state state-NY"
1598
+ (mouseenter)="onStateHover('NY', false, $event)"
1599
+ (mouseleave)="onStateHover('NY', true, $event)"
1600
+ [ngbPopover]="countryPopoverTemplate"
1601
+ [disablePopover]="
1602
+ currentlyHoveredState?.state !== usaStates['NY'].state
1603
+ "
1604
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1605
+ triggers="mouseenter:mouseleave"
1606
+ autoClose="false"
1607
+ container="body"
1608
+ >
1609
+ <path
1610
+ d="M431.006 90.2321L430.907 90.4643L430.062 91.1607L429.192 91.8762L427.226 93.5677L426.676 93.9515L426.647 93.8994L426.858 93.6434L426.82 93.4919L426.566 93.4825L426.368 93.5632L426.425 93.6297L426.396 93.8856L426.463 93.9092L426.583 93.7719H426.659L426.602 93.9284L426.622 93.9805L426.502 94.0755L426.325 94.1705L425.459 94.7581L424.675 95.2463L424.637 95.2084L425.311 94.7488L425.216 94.6966L424.972 94.8482L424.699 94.799L424.522 95.1498L424.211 95.1735L424.116 95.4343L423.948 95.5293L423.81 95.6902L423.566 95.7802L423.489 95.6474L423.191 95.6966L423.081 95.9289L422.723 95.9195L422.446 96.0854L422.082 96.417L421.57 96.4928L421.527 96.7916L420.943 96.8107L420.829 96.7256L420.57 97.1144L419.925 97.5268L419.478 97.7118C419.42 97.7448 419.367 97.7733 419.31 97.8068L418.98 97.9254L419.114 98.044L419.182 98.1247L419.071 98.1862L418.942 98.2763L418.569 98.5652L418.407 98.48L418.12 98.5509L417.617 98.797L417.503 98.8255L417.135 99.0105L417.479 98.9869L417.89 98.8117L418.034 98.8068L418.148 98.7084L418.44 98.6419V98.7935L418.034 98.9215L417.393 99.078L417.02 99.1301L417.035 99.073L416.982 99.106L416.886 99.1109L416.393 99.4234L415.929 99.7551L415.618 99.9638L415.614 99.8122L415.843 99.6227L416.091 99.4096L415.618 99.5376L415.072 99.7605L414.804 99.7891V99.6754L414.957 99.6232V99.5145L414.78 99.453L414.656 99.4579L414.541 99.169L414.69 98.828L414.599 98.667L414.671 98.577L414.77 98.2975L414.66 98.4205L414.67 98.4726L414.675 98.5534L414.618 98.6242H414.565L414.57 98.5342L414.546 98.4205L414.618 97.3969C414.691 97.0461 414.764 96.6954 414.838 96.3447L414.871 95.9938L414.857 95.1031L411.949 94.2409L411.757 94.1843L410.557 93.7768L407.534 92.7345L406.884 92.1041L406.52 92.142L405.875 92.175L405.731 92.1085L404.856 91.6582L404.608 91.4259L404.253 91.0815L404.033 90.5839L402.727 88.2621L401.79 88.2764L401.465 87.5515L401.316 87.4142L400.832 87.0731L400.679 87.0401L399.694 87.2582L394.743 88.3197L394.418 88.3905L391.137 89.0539L388.191 89.6366L387.885 89.703V89.7079L382.75 90.7365L381.631 90.9594L377.977 91.642L377.169 91.7985L374.854 92.2202L372.635 92.6469L372.28 92.7084L371.138 92.9028L366.742 93.6749L366.618 93.6986L365.525 93.8836L365.272 92.4564L365.061 91.2483L365.012 90.9594L365.337 90.7414L365.854 90.3054L366.557 89.6513L367.202 89.0116L367.365 88.7887L367.503 88.4899L367.862 88.0303L368.651 87.4142L369.416 86.8595H369.421L369.436 86.6322L369.535 86.3477L369.879 85.4476L370.094 85.2675L370.625 84.8364L370.821 84.7464L371.151 84.3197L371.247 84.1445V84.0594L370.956 83.4289L370.513 82.6165L370.414 82.4836L370.289 82.4078L369.95 82.3463L369.605 82.2041L369.52 82.1091L369.452 81.8768L369.314 81.3507L369.056 81.2936L368.965 81.1327L368.597 79.2941L370.343 78.3655L371.83 77.65L372.49 77.394L372.94 77.2518H373.146L376.838 76.6357L377.168 76.5865L378.435 76.6101L379.253 76.8045L379.631 77.0131L379.689 77.0417L380.363 77.3163L380.588 77.3542L380.722 77.3399L381.879 76.6293L382.343 76.5013L383.668 76.1647L383.912 76.1126H384.28L384.558 76.1647L385.154 76.0604L385.203 76.0461L386.346 75.3778L386.532 75.2405L386.838 74.9039V74.899L387.479 73.9275V73.9369L387.852 73.5245L388.818 72.5102L388.868 72.4817L389.189 72.3832L389.399 72.4782L389.514 72.4689L389.777 72.4074L390.217 72.1323L390.267 72.0752L390.324 71.933L390.353 71.7578L390.367 71.587L390.343 71.3075L390.253 70.777L390.153 70.4689H390.148L389.641 69.18L389.129 68.9832L389.326 68.6845L389.608 68.6608L390.029 68.3907L390.186 68.0732L390.22 68.0117L390.201 67.8508L390.033 67.4148L389.981 67.3483L389.919 67.3296L389.244 67.2726L388.771 67.0757L388.026 66.5452L387.906 66.2371L387.901 66.1141L387.915 65.868L388.102 65.0959L389.858 63.248L391.115 62.182H391.12L391.359 61.3671L391.584 60.8223L391.991 60.1589L393.22 58.2682L393.579 57.78L396.386 54.6196L396.53 54.5212L397.558 53.9306L397.757 53.9021L398.335 53.8642L398.534 53.8548L401.681 53.2579L402.781 53.0163L403.585 52.784L403.671 52.7554L404.813 52.4287L406.701 51.9547L408.815 51.3721L408.8 51.5571L409.101 51.8603L409.183 52.254L409.025 52.7658L409.044 53.2205L409.522 53.5615L409.465 54.4099L409.503 55.1634L409.57 55.5851L409.704 56.0448L409.833 56.1491L410.058 56.2771L410.422 56.72L410.532 56.9567L410.676 57.3356L410.681 57.3405L410.69 57.4591L410.608 58.1132L410.907 59.2411L410.586 60.151L410.581 61.0511V61.4065L410.6 61.7711L410.844 61.9419L411.533 63.9512L411.667 64.1929L411.954 64.7425L411.805 65.5526L411.755 65.9955L411.837 66.6303L411.866 66.6731L412.129 66.7819L412.124 66.057L412.641 65.9812L412.856 66.4123L413.234 66.5403L413.449 67.0708L413.913 69.2125L414.735 73.1928L414.95 74.1214L414.783 74.6136L415.113 75.3384L415.323 75.2769L415.251 77.9541L415.132 82.7587L415.314 83.1233L415.39 83.1046V83.114L416.141 87.2552L416.404 88.7621L416.705 90.5057L416.839 91.2734L417.609 91.9796L416.529 93.0834L415.932 93.6897L416.793 94.7842L416.048 96.1346L416.091 96.2822L416.235 96.2916L416.221 96.4195L416.149 96.5425L416.086 96.5475L416.029 96.449L415.958 96.3639L415.858 96.4254L415.925 96.7143L415.983 96.7094L416.074 96.7901L416.173 96.8851L416.15 96.9043L415.997 96.8614L415.867 96.8993L415.834 96.9608L415.719 96.8993L415.676 97.013L415.547 97.0037L415.528 97.1021V97.235L415.456 97.2778L415.375 97.2542L415.36 97.1498L415.393 97.1168L415.336 97.0839L415.279 97.1331L415.229 97.2182V97.2231H415.234L415.363 97.2989L415.378 97.3939L415.435 97.4033L415.464 97.3275L415.54 97.3181L415.739 97.451L415.768 97.3988L415.677 97.2236L415.734 97.1149L415.815 97.1006L415.882 97.0056L416.006 97.0342L416.112 97.0056L416.179 97.0627L416.255 96.9727L416.485 97.1621L416.518 97.0814L417.03 97.3043L416.523 97.077L416.312 96.7975L416.322 96.5229L416.709 96.6178L416.766 96.452L416.556 96.4569L416.46 96.3482L416.484 96.173L416.613 96.0686L416.901 96.0922L417.235 96.4904L417.015 95.9028L417.183 95.5898L417.67 95.3152L417.828 95.2916L418.025 95.2015L418.13 95.3388L418.111 95.4761L418.302 95.3954L418.352 95.4997L418.501 95.5947C418.554 95.6139 418.611 95.6277 418.663 95.6469L418.161 94.9978L418.233 94.8226L418.673 94.8718L418.755 95.0849L419.362 94.9761L419.319 94.8575L418.927 94.9426L418.877 94.5539L419.063 94.611L419.379 94.7438L419.761 94.6631L420.421 94.7532L420.943 94.3742L420.78 93.9805L421.115 93.8004L421.77 93.7197L422.937 93.4309L423.889 93.1892L424.505 92.9476L425.357 92.5687L425.744 91.9289L426.079 91.673L426.251 91.2941L426.591 91.1425L426.797 90.5406L427.003 90.4978L427.361 90.1804L427.696 90.1518L427.653 90.4407L427.404 90.6823L427.165 90.5022L426.993 90.7252L426.894 90.9574L426.717 91.2463L426.545 91.6159L426.837 91.6016L426.841 91.7493L426.463 91.8251L426.406 91.986L426.555 92.3305L426.254 92.174L426.211 92.4063L425.818 92.6523L425.78 92.8984L425.598 93.2109L425.378 93.263L425.359 93.4432L425.722 93.3723L426.33 93.4215L426.574 93.2128L426.66 92.8147L426.923 92.5918L427.081 92.0706L427.468 91.9427L427.301 91.6302L427.454 91.5544L427.66 91.8669L427.875 91.829L427.927 91.6961L428.037 91.6582L428.052 91.2744L428.444 91.331L428.625 91.0465L428.855 91.1316L428.893 91.326L429.194 91.5913H429.314L429.405 91.4063L429.587 91.2119L429.783 91.1548L430.027 90.7237L430.156 90.8137L430.208 90.487L430.586 90.2074L431.006 90.2321Z"
1611
+ fill="#E5E5E5"
1612
+ stroke="white"
1613
+ stroke-linejoin="round"
1614
+ [attr.fill]="usaStates['NY']['color']"
1615
+ />
1616
+ <path
1617
+ d="M395.63 80V73.7H397.097L400.571 77.894H399.878V73.7H401.624V80H400.157L396.683 75.806H397.376V80H395.63ZM404.474 80V77.336L404.888 78.407L402.071 73.7H403.952L405.986 77.111H404.897L406.94 73.7H408.668L405.86 78.407L406.256 77.336V80H404.474Z"
1618
+ fill="white"
1619
+ [attr.fill]="
1620
+ usaStates['NY']['color'] === lowestBlue
1621
+ ? blueText
1622
+ : whiteText
1623
+ "
1624
+ />
1625
+ </g>
1626
+ <path
1627
+ d="M424.553 95.2588L424.603 95.311L423.775 95.875L423.517 96.0645L422.976 96.4533L422.417 96.9317L421.756 97.2827L421.57 97.42L421.316 97.5573L420.886 97.8418L420.479 97.9368L420.43 97.7945L420.564 97.7187L420.669 97.7566L420.851 97.7138L421.162 97.5573L421.267 97.4244L421.477 97.3535L421.683 97.2162L422.362 96.8372L423.017 96.2688L423.216 96.1359L423.326 96.0172L423.44 95.9936L423.665 95.8327L423.9 95.719L424.553 95.2588Z"
1628
+ fill="#E5E5E5"
1629
+ stroke="white"
1630
+ stroke-linejoin="round"
1631
+ />
1632
+ <path
1633
+ d="M427.576 91.0343L427.705 91.2673L427.739 91.5428L427.409 91.3907L427.246 91.5521L427.06 91.5615L426.797 91.3285L427.127 90.8389L427.265 90.9766L427.576 91.0343Z"
1634
+ fill="#E5E5E5"
1635
+ stroke="white"
1636
+ stroke-linejoin="round"
1637
+ />
1638
+ <path
1639
+ d="M420.465 97.6822L420.336 97.791L419.681 98.2834L419.666 98.2455L419.145 98.5409L418.872 98.6498L418.518 98.8915L418.484 98.863L418.566 98.73L418.695 98.6493L418.939 98.4405L419.168 98.2435L419.427 98.0958L419.546 97.9062L420.015 97.693L420.512 97.5557L420.895 97.3232L420.994 97.3562L421.061 97.3799L421.114 97.4843L420.903 97.6123L420.465 97.6822Z"
1640
+ fill="#E5E5E5"
1641
+ stroke="white"
1642
+ stroke-linejoin="round"
1643
+ />
1644
+ <path
1645
+ d="M428.838 90.6171L428.656 90.5268V90.2607L429.149 90.3748L429.202 90.8501L429.12 90.9074L428.971 90.6078L428.838 90.6171Z"
1646
+ fill="#E5E5E5"
1647
+ stroke="white"
1648
+ stroke-linejoin="round"
1649
+ />
1650
+ <path
1651
+ d="M427.999 89.9455L427.855 89.8787L427.989 89.6736L428.232 89.6543L428.07 89.7737L427.999 89.9455Z"
1652
+ fill="#E5E5E5"
1653
+ stroke="white"
1654
+ stroke-linejoin="round"
1655
+ />
1656
+ <g
1657
+ class="zoomable-state state-OH"
1658
+ (mouseenter)="onStateHover('OH', false, $event)"
1659
+ (mouseleave)="onStateHover('OH', true, $event)"
1660
+ [ngbPopover]="countryPopoverTemplate"
1661
+ [disablePopover]="
1662
+ currentlyHoveredState?.state !== usaStates['OH'].state
1663
+ "
1664
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1665
+ triggers="mouseenter:mouseleave"
1666
+ autoClose="false"
1667
+ container="body"
1668
+ >
1669
+ <path
1670
+ d="M361.873 113.231L361.773 113.62L361.831 113.804L361.525 114.099L361.448 114.402L361.391 114.739L361.228 115.08L361.343 115.687L361.114 116.052L361.219 116.199L361.205 116.469L361.166 116.73L361.315 117.18L361.157 117.476L361.31 117.845L361.161 117.968L360.87 117.93L361.068 118.352L360.901 118.549L360.825 118.724L360.906 119.084L360.604 119.61L360.959 119.985L360.982 120.231L360.767 120.329L360.806 120.95L360.633 121.301L360.203 121.367L359.529 122.216L359.49 121.865H359.485L359.524 122.209L359.003 123.233L358.892 123.437L358.557 123.593L358.361 123.888L358.28 124.229L357.916 124.215L357.094 124.936L356.85 124.869L356.606 124.426L356.453 124.275L356.357 124.265L356.195 124.308L355.974 124.711L355.527 125.109L355.551 125.929L354.786 125.981L354.609 126.09L354.556 126.398L354.542 126.611L354.356 126.706V126.711L354.207 127.034V127.038L354.326 127.489L354.37 128.043L354.144 128.233L353.839 128.266L353.882 128.417L353.973 128.536L354.271 128.725L354.424 128.976L354.28 129.45L354.486 129.598L354.51 129.849L354.227 129.944L353.888 129.759L353.812 129.925L353.712 130.436L353.282 130.607L353 130.422L352.971 130.337L353.176 129.948L352.794 129.399L352.483 129.451H352.478L352.225 129.1L352.057 129.072L351.908 129.494L351.664 129.731L351.64 129.882L351.597 129.385H351.592L351.636 129.877L351.468 130.517L351.344 130.683H351.349L351.445 131.019L351.402 131.322L351.143 131.602L350.899 131.777L350.876 132L351.086 132.209L351.177 132.484L351.326 132.681L351.264 133.046L351.546 133.647L351.47 133.96L351.24 134.097L350.781 134.064L350.661 134.187L350.656 134.661L350.652 134.685L350.613 135.467L350.599 135.548L350.584 135.618L350.435 135.846L350.043 135.993L349.745 135.979L349.032 136.368L348.539 136.577L348.238 136.482L347.573 135.477L346.211 134.952L346.172 134.932L345.986 134.809L345.976 134.795L345.909 134.714L345.852 134.596L345.833 134.553L345.594 133.842L345.512 133.498L345.522 133.365L345.517 133.36V133.351L345.512 133.275L345.492 133.209L345.488 133.194V133.18L345.473 133.151L345.449 133.118L345.435 133.1L345.397 133.057L345.311 133.019H345.258L345.024 133.123L344.311 133.441L344.162 133.512L343.525 134.128L343.382 134.706L342.564 134.829L342.22 135.128V135.133L341.732 134.772L341.708 134.768L341.421 134.63L341.402 134.621L340.483 134.403L340.139 134.322H340.13L340.053 134.313L339.948 134.336L339.283 134.625L339.192 134.687L339.125 134.791L339.082 135.175L338.585 135.232L337.92 134.905L337.175 134.137L337.117 134.094L337.018 134.056L336.726 134.019L335.464 134.151L333.885 133.706L333.804 133.204L332.872 131.692L331.203 131.081L330.241 131.425L328.544 131.283L328.29 129.103L328.046 126.734L327.984 126.242C327.918 125.663 327.853 125.083 327.788 124.503L327.554 122.423L327.454 121.461L327.114 118.13L327.057 117.665L326.79 115.268L326.584 113.571L326.326 111.455L326.235 110.73L325.891 107.859L325.867 107.662L325.656 105.975V105.97L325.518 104.838L325.293 103.033L328.579 102.53V102.535L328.89 102.486L332.764 101.856L333.712 101.69V101.695L336.203 101.273L336.054 101.529L336.451 101.742L337.006 101.69L337.188 101.477L337.536 101.709L338.66 102.142L339.541 102.346L340.081 102.863L340.669 103.072L340.99 102.896L341.229 102.626L341.171 102.314L341.377 102.129L341.736 102.583L342.434 102.574L342.544 102.891L341.339 103.218L340.478 103.464L340.42 103.654L339.746 103.848L339.884 103.938L340.037 103.862L340.172 103.867L340.31 104.052L340.425 104L340.353 103.849L340.482 103.816L340.645 104.001L340.856 104.062L341.032 103.967L341.076 103.962L341.274 103.792L341.628 103.606L341.671 103.412L341.901 103.393L342.188 103.654L342.441 103.457L343.034 103.481L342.694 103.177L342.714 103.03L343.445 103.65L343.967 103.892L344.349 104.011L344.474 104.025L344.623 104.006L344.781 103.925L345.001 103.777L345.627 103.334V103.339L346.273 103.164L346.746 102.676L348.028 101.941L348.578 102.046L348.635 102.095L348.674 102.118L348.85 102.175L349.353 102.19L349.869 101.962L350.424 101.986L350.467 101.962L350.673 101.787L351.237 101.27L351.477 101.015L351.883 100.299L352.174 100.209L352.256 100.114V100.109L352.557 99.5972L352.935 99.1612L353.183 98.896L353.666 98.46L355.426 97.3084L355.79 97.0811L359.465 95.1338L359.695 96.5176L360.321 100.299H360.316L360.335 100.418L360.976 104.265H360.981L360.995 104.355L361.393 106.795L361.489 107.317L361.871 109.62L361.589 109.816L361.436 109.968L361.259 109.935L360.968 110.12L360.752 110.423L360.767 110.551L361.015 110.755L361.173 110.94L361.279 111.201L361.494 111.442L361.537 111.708L361.46 112.02L361.51 112.262L361.411 112.428L361.688 112.624L361.683 112.885L361.873 113.231Z"
1671
+ fill="#E5E5E5"
1672
+ stroke="white"
1673
+ stroke-linejoin="round"
1674
+ [attr.fill]="usaStates['OH']['color']"
1675
+ />
1676
+ <path
1677
+ d="M338.807 121.126C338.303 121.126 337.838 121.045 337.412 120.883C336.986 120.721 336.614 120.493 336.296 120.199C335.984 119.899 335.741 119.551 335.567 119.155C335.393 118.759 335.306 118.324 335.306 117.85C335.306 117.376 335.393 116.941 335.567 116.545C335.741 116.149 335.984 115.804 336.296 115.51C336.614 115.21 336.986 114.979 337.412 114.817C337.838 114.655 338.303 114.574 338.807 114.574C339.317 114.574 339.782 114.655 340.202 114.817C340.628 114.979 340.997 115.21 341.309 115.51C341.621 115.804 341.864 116.149 342.038 116.545C342.218 116.941 342.308 117.376 342.308 117.85C342.308 118.324 342.218 118.762 342.038 119.164C341.864 119.56 341.621 119.905 341.309 120.199C340.997 120.493 340.628 120.721 340.202 120.883C339.782 121.045 339.317 121.126 338.807 121.126ZM338.807 119.65C339.047 119.65 339.269 119.608 339.473 119.524C339.683 119.44 339.863 119.32 340.013 119.164C340.169 119.002 340.289 118.81 340.373 118.588C340.463 118.366 340.508 118.12 340.508 117.85C340.508 117.574 340.463 117.328 340.373 117.112C340.289 116.89 340.169 116.701 340.013 116.545C339.863 116.383 339.683 116.26 339.473 116.176C339.269 116.092 339.047 116.05 338.807 116.05C338.567 116.05 338.342 116.092 338.132 116.176C337.928 116.26 337.748 116.383 337.592 116.545C337.442 116.701 337.322 116.89 337.232 117.112C337.148 117.328 337.106 117.574 337.106 117.85C337.106 118.12 337.148 118.366 337.232 118.588C337.322 118.81 337.442 119.002 337.592 119.164C337.748 119.32 337.928 119.44 338.132 119.524C338.342 119.608 338.567 119.65 338.807 119.65ZM347.453 114.7H349.235V121H347.453V114.7ZM345.023 121H343.241V114.7H345.023V121ZM347.579 118.543H344.897V117.067H347.579V118.543Z"
1678
+ fill="white"
1679
+ [attr.fill]="
1680
+ usaStates['OH']['color'] === lowestBlue
1681
+ ? blueText
1682
+ : whiteText
1683
+ "
1684
+ />
1685
+ </g>
1686
+ <g
1687
+ class="zoomable-state state-OK"
1688
+ (mouseenter)="onStateHover('OK', false, $event)"
1689
+ (mouseleave)="onStateHover('OK', true, $event)"
1690
+ [ngbPopover]="countryPopoverTemplate"
1691
+ [disablePopover]="
1692
+ currentlyHoveredState?.state !== usaStates['OK'].state
1693
+ "
1694
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1695
+ triggers="mouseenter:mouseleave"
1696
+ autoClose="false"
1697
+ container="body"
1698
+ >
1699
+ <path
1700
+ d="M247.994 177.58L247.941 182.48L247.917 184.726L247.898 187.152V187.157L247.869 190.63L247.826 196.683L245.449 196.005L244.32 195.546L242.756 194.309L241.694 193.404L241.116 193.215H241.053L241.02 193.229H241.011L240.814 193.524L240.81 193.538V193.558L240.805 193.567L240.81 193.576L240.843 193.647V193.661L240.858 193.756L240.843 193.865L240.794 193.979L240.741 194.028L240.497 194.184L240.426 194.194L240.291 194.208L240.028 194.241H240.023L239.406 194.27L239.067 194.241L238.167 194.122L238.134 194.094L238.096 194.032V193.971L238.12 193.89L238.125 193.819L238.029 193.578L237.957 193.549L237.666 193.535L237.001 193.876L236.235 194.283L235.455 194.572L235.015 194.492L234.489 194.387L234.365 194.402L234.169 194.416L233.145 194.501L232.686 194.61L232.61 194.875L232.552 195.136L232.547 195.164L232.538 195.193L232.514 195.278L232.49 195.349L232.485 195.358L232.475 195.372L232.389 195.463L232.375 195.477L232.213 195.548L232.021 195.597L230.668 195.929L230.577 195.81L230.185 195.279L230.065 195.242L229.956 195.227L229.492 195.312H229.477L229.396 195.255L228.463 194.635L228.453 194.606L228.444 194.554L228.439 194.421L228.468 194.246V194.237L227.559 194.644H227.55L227.11 194.72L226.253 194.459L226.158 194.393L226.008 194.232L225.55 193.289L225.454 193.346L224.086 195.696L224.047 195.753L223.952 195.824L223.822 195.867L223.673 195.847L223.549 195.805L223.009 194.914L223.353 193.985L222.712 193.677L221.431 194.805L220.9 194.657L220.818 194.605L220.766 194.539L220.761 194.52L220.737 194.463L220.555 193.648L219.856 193.837V193.832L219.527 193.605L218.607 192.987L218.296 193.376L217.818 193.868L217.363 194.223L217.081 194.304L216.971 194.295L216.167 193.934L216.068 193.84L216.302 193.337L216.384 192.754L216.044 192.622L215.729 192.697H215.518L215.136 192.584H215.121L215.097 192.56L214.939 192.248V192.243L214.39 191.347L212.983 190.911L212.639 190.835L212.462 190.93L212.099 191.39L211.611 191.821L211.606 191.83H211.601L211.343 191.735L210.912 191.053L210.706 190.877L210.508 190.745L210.417 190.74L209.594 190.991L209 190.97L208.168 190.766L207.331 190.268L207.202 190.207H207.193L206.361 190.14L205.993 190.145L205.825 190.155L205.486 190.079L205.304 190.022L205.189 189.989L205.184 189.984L205.026 189.14L205.036 188.904L205.045 188.653H205.04V188.643L204.614 187.909L204.165 187.667L203.767 187.454L203.38 188.143L203.375 188.153L203.366 188.172H203.356L203.289 188.2L202.983 188.172L202.685 187.897L202.465 187.769L202.326 187.707L201.896 187.658L201.797 187.644L201.747 187.663L201.393 188.099H200.967L200.69 188.038L200.063 187.441L199.834 187.175L199.365 186.573L198.05 185.924L198.112 183.901L198.241 180.788L198.312 179.115L198.422 176.49V176.485L198.518 174.339L198.638 171.472V171.467L198.719 169.558L198.901 164.686V164.681L194.142 164.468L190.565 164.293L189.413 164.231L184.694 163.966L181.121 163.738V163.743L179.979 163.672L172.625 163.165L173.032 157.692L174.137 157.773L178.657 158.143L181.378 158.332L181.498 158.341H181.503L185.616 158.564V158.569L189.873 158.777L190.93 158.83V158.835L193.647 158.948L198.387 159.143L199.142 159.176L203.166 159.356L203.907 159.384L207.872 159.517L211.842 159.64V159.631L213.568 159.688V159.693L215.617 159.738L218.323 159.787L221.288 159.837V159.841L224.029 159.874L227.491 159.907L229.452 159.917L234.03 159.931L234.345 159.936H235.89L238.2 159.922H239.194V159.917L242.111 159.888H242.685L246.086 159.86L246.119 162.399L246.138 163.482V163.487L246.167 165.335L246.707 169.031L246.812 169.68L247.597 174.754H247.592V174.759L247.994 177.389V177.58Z"
1701
+ fill="#E5E5E5"
1702
+ stroke="white"
1703
+ stroke-linejoin="round"
1704
+ [attr.fill]="usaStates['OK']['color']"
1705
+ />
1706
+ <path
1707
+ d="M220.807 180.126C220.303 180.126 219.838 180.045 219.412 179.883C218.986 179.721 218.614 179.493 218.296 179.199C217.984 178.899 217.741 178.551 217.567 178.155C217.393 177.759 217.306 177.324 217.306 176.85C217.306 176.376 217.393 175.941 217.567 175.545C217.741 175.149 217.984 174.804 218.296 174.51C218.614 174.21 218.986 173.979 219.412 173.817C219.838 173.655 220.303 173.574 220.807 173.574C221.317 173.574 221.782 173.655 222.202 173.817C222.628 173.979 222.997 174.21 223.309 174.51C223.621 174.804 223.864 175.149 224.038 175.545C224.218 175.941 224.308 176.376 224.308 176.85C224.308 177.324 224.218 177.762 224.038 178.164C223.864 178.56 223.621 178.905 223.309 179.199C222.997 179.493 222.628 179.721 222.202 179.883C221.782 180.045 221.317 180.126 220.807 180.126ZM220.807 178.65C221.047 178.65 221.269 178.608 221.473 178.524C221.683 178.44 221.863 178.32 222.013 178.164C222.169 178.002 222.289 177.81 222.373 177.588C222.463 177.366 222.508 177.12 222.508 176.85C222.508 176.574 222.463 176.328 222.373 176.112C222.289 175.89 222.169 175.701 222.013 175.545C221.863 175.383 221.683 175.26 221.473 175.176C221.269 175.092 221.047 175.05 220.807 175.05C220.567 175.05 220.342 175.092 220.132 175.176C219.928 175.26 219.748 175.383 219.592 175.545C219.442 175.701 219.322 175.89 219.232 176.112C219.148 176.328 219.106 176.574 219.106 176.85C219.106 177.12 219.148 177.366 219.232 177.588C219.322 177.81 219.442 178.002 219.592 178.164C219.748 178.32 219.928 178.44 220.132 178.524C220.342 178.608 220.567 178.65 220.807 178.65ZM226.834 178.605L226.735 176.607L229.444 173.7H231.406L228.706 176.625L227.716 177.66L226.834 178.605ZM225.241 180V173.7H227.005V180H225.241ZM229.471 180L227.419 177.399L228.58 176.157L231.541 180H229.471Z"
1708
+ fill="white"
1709
+ [attr.fill]="
1710
+ usaStates['OK']['color'] === lowestBlue
1711
+ ? blueText
1712
+ : whiteText
1713
+ "
1714
+ />
1715
+ </g>
1716
+ <g
1717
+ class="zoomable-state state-OR"
1718
+ (mouseenter)="onStateHover('OR', false, $event)"
1719
+ (mouseleave)="onStateHover('OR', true, $event)"
1720
+ [ngbPopover]="countryPopoverTemplate"
1721
+ [disablePopover]="
1722
+ currentlyHoveredState?.state !== usaStates['OR'].state
1723
+ "
1724
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1725
+ triggers="mouseenter:mouseleave"
1726
+ autoClose="false"
1727
+ container="body"
1728
+ >
1729
+ <path
1730
+ d="M77.348 48.7253L77.3191 48.8626L77.1324 49.0713L76.3957 49.8198L75.066 51.5068L74.8027 52.0516L73.6548 53.9089L73.2817 54.2534L73.0378 54.4714L72.8466 54.8695L72.856 55.0924L72.8848 55.1968L72.9281 55.3055L72.9425 55.3907L72.933 55.4L72.6747 55.8429L72.4979 56.0324L72.2634 56.2784L71.8472 56.7238L71.1105 56.9699L70.9238 57.0127L70.8711 57.0363L70.6893 57.1972L68.9865 59.5141L68.8906 59.7036L68.6229 61.49V61.4994H68.6179L68.5986 61.5486L68.5891 61.6436L68.6035 61.8001L68.7183 61.9895L69.675 62.3734L69.7515 62.3404H69.7947L70.0962 62.4492L70.1777 62.4984L70.584 63.2991L70.5934 63.3133L70.6173 63.3985L70.6078 63.5072V63.5166H70.6029L70.5885 63.5451L70.579 63.5687L70.5646 63.5879L70.1772 64.0619L69.8757 65.27L69.5026 65.9713L69.2731 66.3551L68.4287 68.3925L64.3585 86.3467L55.0652 84.2522V84.2615L50.464 83.2143L46.1499 82.1316L45.8677 82.0608L40.8264 80.7906L38.5594 80.2222L38.2484 80.1415L35.3644 79.3831H35.355L33.8961 78.9943V78.9894L29.4479 77.7591L22.8761 75.8211L22.441 75.6883L22.1877 75.6075L21.2265 75.3467L20.1695 75.0908L17.5055 74.3423L17.2998 74.2852L16.9556 74.1809L16.1186 73.8822L15.5305 73.7591H15.5111V73.7542L13.2585 73.1287L10.8816 72.4796L7.85156 71.5367L7.55004 70.9063L7.19141 69.8305L7.27287 67.5038L7.54557 66.6037L7.77506 66.0067L7.82772 65.8739L8.27726 65.457L8.50675 64.3576L7.94246 63.1918L7.9519 62.9123L7.95687 61.9123L8.89419 60.8886L10.7405 58.0835L10.5875 57.3916L11.3431 57.1785L12.9117 55.1313L13.0076 54.6431V54.6382L14.2847 52.1362L15.9348 47.9143L16.2264 47.3695L16.6561 46.4985L16.7058 46.3848L17.3659 44.5605L18.5665 41.5846L19.2311 40.1486V40.1437L19.4989 39.6649L19.5321 39.6078V39.5984L19.7522 39.191L19.7666 39.1624L19.8287 39.0202L20.0011 38.5984L21.6845 33.8598L21.8335 33.3677L21.8623 33.1733V33.0975L21.8479 32.5291L22.4648 31.1693L22.2498 30.7048L22.8761 30.4632L23.0251 29.9371L23.0346 29.6054L23.0634 29.2073L23.1255 28.9986L23.0261 28.0365L23.1553 27.9277L23.3465 27.9799L23.5999 28.4824L23.8676 28.7432L24.2218 28.5301L24.7384 28.5252L24.9917 28.9041L25.9146 29.0084L26.0726 28.7289L26.4168 28.6059L26.4551 28.4971L26.9478 28.5257L26.991 28.5542L27.0149 28.5685L27.0437 28.6177L27.1584 28.8145L27.2399 29.0704L27.0675 29.5586L27.3929 30.0562L27.4455 30.0754H27.4505V30.066L28.6367 30.1182L29.0291 30.0473L29.3927 30.1949L30.6316 31.7018L30.7081 31.9907L30.9187 33.1752L30.8447 34.2126L30.787 34.3878L30.5883 35.7195V35.7244H30.5834L30.4254 35.9946L30.3489 36.189L30.3584 36.4592L30.5074 36.6486L30.8998 37.0561L31.1054 37.2077L33.2384 38.5108L33.4868 38.6339H33.4962L33.7068 38.686H33.8504L36.5764 38.3071L36.7915 38.1176L37.1169 37.9518L37.5714 37.9232L38.1024 38.2121L38.308 38.2613L38.9443 38.3105L39.7719 38.3248L40.2934 38.7751V38.78L40.8195 38.8558L41.0827 38.9129L42.03 39.4483L42.1497 40.3105L43.1779 39.8794L43.8764 40.2062L44.0388 40.4193L44.4451 40.3007L45.1197 40.1964L45.9422 40.0827L46.2721 39.9262L46.4345 39.874L46.7599 39.9547L46.9749 40.1024L47.1736 40.4769L47.2645 40.6097L47.4225 40.7082L48.0186 40.8125L49.5346 40.9026L49.9364 40.6038L50.1803 40.5423L51.3333 40.405H52.3903L53.122 40.4808L53.9207 40.5517L54.2605 40.2072L54.6579 39.9798L55.0741 40.2121L55.4139 40.373L55.849 40.4016V40.3967L56.2842 40.4203L57.4371 40.5768L57.6477 40.6855L57.8439 40.7347L58.1787 40.7584L58.4509 40.7087L59.0107 40.5477L59.1781 40.4769L59.3932 40.2968V40.3017L66.7825 42.0595L66.9211 42.0925L69.7142 42.7608L70.6327 42.9788L74.8509 43.9547L75.3913 45.6279L75.4246 45.6894L75.4485 45.7322L75.7962 46.0546L76.4658 46.6609L76.7479 46.7839L76.882 46.9498L77.031 47.1392L77.0837 47.3479L77.348 48.7253Z"
1731
+ fill="#E5E5E5"
1732
+ stroke="white"
1733
+ stroke-linejoin="round"
1734
+ [attr.fill]="usaStates['OR']['color']"
1735
+ />
1736
+ <path
1737
+ d="M39.807 65.126C39.303 65.126 38.838 65.045 38.412 64.883C37.986 64.721 37.614 64.493 37.296 64.199C36.984 63.899 36.741 63.551 36.567 63.155C36.393 62.759 36.306 62.324 36.306 61.85C36.306 61.376 36.393 60.941 36.567 60.545C36.741 60.149 36.984 59.804 37.296 59.51C37.614 59.21 37.986 58.979 38.412 58.817C38.838 58.655 39.303 58.574 39.807 58.574C40.317 58.574 40.782 58.655 41.202 58.817C41.628 58.979 41.997 59.21 42.309 59.51C42.621 59.804 42.864 60.149 43.038 60.545C43.218 60.941 43.308 61.376 43.308 61.85C43.308 62.324 43.218 62.762 43.038 63.164C42.864 63.56 42.621 63.905 42.309 64.199C41.997 64.493 41.628 64.721 41.202 64.883C40.782 65.045 40.317 65.126 39.807 65.126ZM39.807 63.65C40.047 63.65 40.269 63.608 40.473 63.524C40.683 63.44 40.863 63.32 41.013 63.164C41.169 63.002 41.289 62.81 41.373 62.588C41.463 62.366 41.508 62.12 41.508 61.85C41.508 61.574 41.463 61.328 41.373 61.112C41.289 60.89 41.169 60.701 41.013 60.545C40.863 60.383 40.683 60.26 40.473 60.176C40.269 60.092 40.047 60.05 39.807 60.05C39.567 60.05 39.342 60.092 39.132 60.176C38.928 60.26 38.748 60.383 38.592 60.545C38.442 60.701 38.322 60.89 38.232 61.112C38.148 61.328 38.106 61.574 38.106 61.85C38.106 62.12 38.148 62.366 38.232 62.588C38.322 62.81 38.442 63.002 38.592 63.164C38.748 63.32 38.928 63.44 39.132 63.524C39.342 63.608 39.567 63.65 39.807 63.65ZM44.2413 65V58.7H47.1213C47.6973 58.7 48.1923 58.793 48.6063 58.979C49.0263 59.165 49.3503 59.435 49.5783 59.789C49.8063 60.137 49.9203 60.551 49.9203 61.031C49.9203 61.505 49.8063 61.916 49.5783 62.264C49.3503 62.606 49.0263 62.87 48.6063 63.056C48.1923 63.236 47.6973 63.326 47.1213 63.326H45.2313L46.0233 62.579V65H44.2413ZM48.1383 65L46.5723 62.705H48.4713L50.0463 65H48.1383ZM46.0233 62.768L45.2313 61.949H47.0133C47.3853 61.949 47.6613 61.868 47.8413 61.706C48.0273 61.544 48.1203 61.319 48.1203 61.031C48.1203 60.737 48.0273 60.509 47.8413 60.347C47.6613 60.185 47.3853 60.104 47.0133 60.104H45.2313L46.0233 59.285V62.768Z"
1738
+ fill="white"
1739
+ [attr.fill]="
1740
+ usaStates['OR']['color'] === lowestBlue
1741
+ ? blueText
1742
+ : whiteText
1743
+ "
1744
+ />
1745
+ </g>
1746
+ <g
1747
+ class="zoomable-state state-PA"
1748
+ (mouseenter)="onStateHover('PA', false, $event)"
1749
+ (mouseleave)="onStateHover('PA', true, $event)"
1750
+ [ngbPopover]="countryPopoverTemplate"
1751
+ [disablePopover]="
1752
+ currentlyHoveredState?.state !== usaStates['PA'].state
1753
+ "
1754
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1755
+ triggers="mouseenter:mouseleave"
1756
+ autoClose="false"
1757
+ container="body"
1758
+ >
1759
+ <path
1760
+ d="M410.255 105.729L409.806 106.108L409.467 106.137L409.352 106.487L408.453 107.241V107.246L407.922 108.008L407.295 109.164L406.97 109.629L405.984 109.999L405.438 110.691L405.347 110.653L405.261 110.624L405.079 110.567L404.984 110.548L404.893 110.529L404.797 110.515L404.701 110.505L404.606 110.501H404.506L404.41 110.505L404.311 110.515L404.206 110.534L404.1 110.557L403.995 110.59L403.885 110.628V110.623L403.751 110.685L403.627 110.751L403.512 110.822L403.402 110.898L403.303 110.983L403.207 111.068L403.121 111.158L403.045 111.253L402.973 111.357L402.906 111.462L402.849 111.57L402.799 111.684L402.75 111.803L402.712 111.926L402.683 112.049L402.654 112.182L402.572 112.2L399.727 112.807H399.722V112.812L398.918 112.983L398.865 112.992V113.001L396.153 113.561L394.365 113.93L392.614 114.295L390.821 114.645L388.826 115.039L388.75 115.053L383.546 116.025L381.533 116.403L381.222 116.461L377.687 117.105V117.11L372.862 117.982L372.857 117.977L372.161 118.1L369.777 118.517L368.519 118.73V118.735L364.334 119.431L363.521 119.559L363.091 116.948C362.973 116.234 362.855 115.52 362.737 114.807L362.311 112.215L362.162 111.366L361.875 109.618L361.492 107.32C361.459 107.143 361.427 106.966 361.397 106.789L360.999 104.354V104.349L360.985 104.268L360.344 100.42V100.415L360.32 100.297L359.698 96.5108L359.469 95.1329L360.884 94.2471L362.157 93.2048L362.238 92.8111L362.42 92.6024L362.707 92.5503L362.745 92.7161L364.223 91.5222L364.998 90.9583L365.048 91.2471L365.258 92.4553L365.511 93.8824L366.604 93.6929L366.728 93.6693V93.6743L371.124 92.9016L372.262 92.7073H372.267L372.615 92.6502L374.839 92.2191L377.149 91.7973L377.957 91.6408L381.611 90.9583L382.726 90.7354H382.731L387.862 89.7019L388.168 89.6355L391.114 89.0528L394.393 88.3845L394.723 88.3181L399.673 87.2522L400.659 87.0342L400.812 87.0671L401.295 87.4038L401.444 87.5411L401.769 88.2709L402.707 88.2517L404.012 90.5734V90.5784L404.233 91.0759L404.587 91.4169L404.835 91.6536L405.71 92.1039L405.854 92.1704L406.5 92.1374L406.858 92.0995L407.513 92.7299L407.031 93.0744L406.801 93.3253L406.605 93.7235L406.562 93.8465L406.462 94.2682L406.448 94.4159L406.481 94.4488L406.496 94.629L406.446 94.9557L406.216 95.4862L405.891 95.9409V95.9458L405.934 95.998L405.04 97.6564L405.82 98.5663L405.848 98.6279L405.843 98.6943L405.566 99.5309L405.398 99.7632L405.274 99.7824L405.15 99.7681L405.088 99.7868L404.949 100.109L405.031 100.768L405.236 101.545L405.289 101.643L405.38 101.809V101.814L406.561 102.288L407.187 103.537L407.985 104.015L408.038 104.044L410.255 105.729Z"
1761
+ fill="#E5E5E5"
1762
+ stroke="white"
1763
+ stroke-linejoin="round"
1764
+ [attr.fill]="usaStates['PA']['color']"
1765
+ />
1766
+ <path
1767
+ d="M378.63 106V99.7H381.51C382.086 99.7 382.581 99.793 382.995 99.979C383.415 100.165 383.739 100.435 383.967 100.789C384.195 101.137 384.309 101.551 384.309 102.031C384.309 102.505 384.195 102.916 383.967 103.264C383.739 103.612 383.415 103.882 382.995 104.074C382.581 104.26 382.086 104.353 381.51 104.353H379.62L380.412 103.579V106H378.63ZM380.412 103.768L379.62 102.949H381.402C381.774 102.949 382.05 102.868 382.23 102.706C382.416 102.544 382.509 102.319 382.509 102.031C382.509 101.737 382.416 101.509 382.23 101.347C382.05 101.185 381.774 101.104 381.402 101.104H379.62L380.412 100.285V103.768ZM384.105 106L386.886 99.7H388.641L391.431 106H389.577L387.399 100.573H388.101L385.923 106H384.105ZM385.626 104.776L386.085 103.462H389.163L389.622 104.776H385.626Z"
1768
+ fill="white"
1769
+ [attr.fill]="
1770
+ usaStates['PA']['color'] === lowestBlue
1771
+ ? blueText
1772
+ : whiteText
1773
+ "
1774
+ />
1775
+ </g>
1776
+ <path
1777
+ d="M435.515 84.2831L435.534 84.411L435.391 84.5011L435.338 84.667L435.171 84.7998L435.142 84.539L434.922 84.3116L434.956 84.1886L434.889 84.1556L434.826 83.8947L434.717 83.8711L434.673 83.7382L434.745 83.686L434.646 83.4631L434.698 83.2662L434.599 83.2047L434.503 82.8729L434.465 82.6027L434.515 82.4551L435.017 82.5073L435.151 82.8439L435.155 83.0526L435.284 83.1663L435.629 84.2043L435.515 84.2831Z"
1778
+ fill="#E5E5E5"
1779
+ stroke="white"
1780
+ stroke-linejoin="round"
1781
+ />
1782
+ <path
1783
+ d="M433.725 84.7532L433.802 84.8433L433.792 84.9004L433.663 84.9497L433.644 85.0777L433.62 85.1107L433.629 85.1816L433.567 85.3003L433.538 85.251L433.543 85.1373L433.529 85.0329L433.448 84.8852L433.452 84.833L433.557 84.8187L433.61 84.7995L433.56 84.7665L433.565 84.6715L433.494 84.6286L433.394 84.472L433.404 84.2967L433.375 84.0998L433.38 83.9718L433.433 83.9053H433.505L433.61 84.1141L433.596 84.2514L433.672 84.4883L433.663 84.5262L433.749 84.569L433.71 84.6828L433.725 84.7532Z"
1784
+ fill="#E5E5E5"
1785
+ stroke="white"
1786
+ stroke-linejoin="round"
1787
+ />
1788
+ <g
1789
+ class="zoomable-state state-RI"
1790
+ (mouseenter)="onStateHover('RI', false, $event)"
1791
+ (mouseleave)="onStateHover('RI', true, $event)"
1792
+ [ngbPopover]="countryPopoverTemplate"
1793
+ [disablePopover]="
1794
+ currentlyHoveredState?.state !== usaStates['RI'].state
1795
+ "
1796
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1797
+ triggers="mouseenter:mouseleave"
1798
+ autoClose="false"
1799
+ container="body"
1800
+ >
1801
+ <path
1802
+ d="M433.269 85.1016L433.26 85.2202L433.327 85.2694L433.298 85.4067L433.159 85.5543L433.265 85.8004L433.136 86.1227L433.126 86.265L433.155 86.3786L433.105 86.3836L433.034 86.3265L432.881 86.2979V86.2364L432.943 86.1606L432.981 86.0706L432.957 86.0091L432.948 85.9475L432.898 85.9146L432.865 85.7915L432.774 85.8201L432.788 85.8816L432.783 86.166L432.764 86.2276L432.798 86.3033L432.66 86.384L432.598 86.3934H432.593L432.42 86.4643L432.243 86.5922L432.014 86.6872L431.894 86.7856L431.488 87.0701L431.426 87.1887L431.326 87.2408L431.241 87.2595L431.121 87.3304L430.997 87.3496L430.891 87.3988L430.518 87.5956L430.427 87.6621L430.351 87.7807L430.293 87.7315L430.222 87.7644L430.136 87.8166L430.112 87.7502L430.308 87.6793L430.346 87.5892V87.5085L430.456 87.3663L430.437 87.262L430.341 87.134L430.323 86.9209L430.223 86.8023L430.199 86.6508L430.333 86.48L430.458 86.4849L430.496 86.452L430.037 84.5849L429.917 84.1302L429.678 83.2345V83.2296L428.812 80.2445L431.156 79.5338V79.5289L432.075 79.2637L432.165 79.6283L432.428 80.6091L432.744 80.4575L432.758 80.5619L432.902 80.865V81.055L432.951 81.1258L432.922 81.2631L432.994 81.3719L433.037 81.5141L433.128 81.5899L433.181 81.675L433.262 81.6799L433.798 81.803L434.161 82.1297L434.166 82.2774L434.104 82.3202L434.047 82.2872L433.966 82.1785L433.937 82.2021L433.951 82.2971L434.1 82.4299L434.182 82.5151L434.191 82.6135L434.11 82.6893L434.095 82.7557L434.105 82.8886L434.076 82.9073L434.026 82.8743L433.983 82.7842L433.93 82.7557L433.887 82.6986L433.811 82.7178L433.791 82.9122L433.729 82.9215L433.667 82.7321L433.691 82.6706L433.734 82.5756L433.681 82.4147L433.705 82.1686L433.676 81.9978V81.9363L433.581 81.8276L433.531 81.9176L433.541 81.9747L433.459 81.9698L433.392 81.9034L433.412 81.8369L433.345 81.7848L433.283 81.804L433.297 81.9555L433.364 82.0362L433.563 82.1406L433.596 82.1927L433.577 82.2592V82.3541L433.553 82.3591L433.491 82.2606L433.381 82.2227L433.299 82.2557L433.232 82.237L433.175 82.1233L433.06 82.0141L433.022 82.0426L433.007 81.9855L432.95 81.9098H432.916L432.888 81.8812V81.7769L432.749 81.5589L432.634 81.4875V81.4167L432.684 81.1214L432.655 80.9738L432.569 80.9309L432.545 81.0294L432.56 81.1573L432.542 81.3994L432.475 81.3945L432.452 81.4275L432.566 81.584L432.648 81.6076L432.691 81.6568L432.672 81.709L432.762 81.955V81.96L432.772 82.0121L432.815 82.0451L432.853 82.116L432.906 82.1302L432.882 82.1794L432.92 82.2695L432.93 82.3359L433.04 82.3881L433.184 82.3551L433.193 82.3787L433.083 82.4639L433.127 82.6676L433.098 82.7862L433.131 82.862L433.122 82.9521L432.987 82.895L432.997 82.8049L432.935 82.8L432.882 82.7906L432.844 82.7385L432.801 82.7478L432.816 82.8143L432.5 82.8428L432.562 83.0795L432.615 83.1031L432.73 83.0416L432.873 83.0795L432.888 83.1553V83.1602L432.95 83.3261L433.007 83.421L432.957 83.4589L432.943 83.5111L433.014 83.5062L433.064 83.5677L432.978 83.672L433.035 83.7148L433.107 83.6956L433.131 83.7665L433.107 83.8236L432.915 83.9565L432.83 83.9614L432.801 84.0135L432.872 84.0942L433.045 84.2173L433.078 84.2881L433.177 84.4304L433.249 84.6533L433.216 84.7517L433.259 84.9082L433.308 84.9889L433.332 85.074L433.269 85.1016Z"
1803
+ fill="#E5E5E5"
1804
+ stroke="white"
1805
+ stroke-linejoin="round"
1806
+ [attr.fill]="usaStates['RI']['color']"
1807
+ />
1808
+
1809
+ <path
1810
+ d="M443.63 88V81.7H446.51C447.086 81.7 447.581 81.793 447.995 81.979C448.415 82.165 448.739 82.435 448.967 82.789C449.195 83.137 449.309 83.551 449.309 84.031C449.309 84.505 449.195 84.916 448.967 85.264C448.739 85.606 448.415 85.87 447.995 86.056C447.581 86.236 447.086 86.326 446.51 86.326H444.62L445.412 85.579V88H443.63ZM447.527 88L445.961 85.705H447.86L449.435 88H447.527ZM445.412 85.768L444.62 84.949H446.402C446.774 84.949 447.05 84.868 447.23 84.706C447.416 84.544 447.509 84.319 447.509 84.031C447.509 83.737 447.416 83.509 447.23 83.347C447.05 83.185 446.774 83.104 446.402 83.104H444.62L445.412 82.285V85.768ZM450.292 88V81.7H452.074V88H450.292Z"
1811
+ fill="#E5E5E5"
1812
+ [attr.fill]="
1813
+ usaStates['RI']['color'] === defaultColor
1814
+ ? defaultColor
1815
+ : blueText
1816
+ "
1817
+ />
1818
+ </g>
1819
+ <path
1820
+ d="M433.875 83.5812L433.822 83.6905L433.755 83.7427L433.693 83.7378L433.626 83.5433L433.655 83.4389L433.622 83.2779L433.487 83.2872L433.402 83.238L433.387 83.1395L433.445 83.0588L433.363 82.945L433.435 82.8643L433.516 82.9686L433.573 83.1203L433.808 83.2055L433.904 83.2907L433.875 83.5812Z"
1821
+ fill="#E5E5E5"
1822
+ stroke="white"
1823
+ stroke-linejoin="round"
1824
+ />
1825
+ <path
1826
+ d="M433.958 82.918L434.034 82.9798L433.991 83.056L433.915 83.0416L433.91 82.9847L433.958 82.918Z"
1827
+ fill="#E5E5E5"
1828
+ stroke="white"
1829
+ stroke-linejoin="round"
1830
+ />
1831
+ <path
1832
+ d="M433.042 88.4066L433.24 88.6296L433.154 88.7104L432.929 88.7911L432.771 88.9049L432.714 88.8478L432.664 88.5523L432.746 88.4194L432.88 88.4622L432.923 88.4051L432.808 88.2722L432.841 88.182L432.76 87.959L432.946 87.992L433.013 88.1722L433.004 88.3145L433.042 88.4066Z"
1833
+ fill="#E5E5E5"
1834
+ stroke="white"
1835
+ stroke-linejoin="round"
1836
+ />
1837
+ <path
1838
+ d="M434.67 84.5119L434.746 84.5783L434.741 84.7063L434.703 84.7112L434.693 84.6305L434.603 84.5783H434.55L434.483 84.597L434.478 84.6679L434.416 84.6822L434.387 84.6393L434.305 84.6964L434.291 84.7722L434.32 84.8529L434.291 84.943L434.286 85.0567L434.157 85.0237L434.042 85.1423L433.99 85.1374L433.927 85.1989L433.828 85.1138L433.838 85.0287L433.952 84.8436L433.995 84.8928L434.134 84.784L434.034 84.6364L434.005 84.5178L433.987 84.4469L433.937 84.4233L433.932 84.3381L434.042 84.3573L433.985 84.0399L434.052 83.7509L434.042 83.5378L434.08 83.4049L434.075 83.2105L434.133 83.1396L434.166 82.992L434.319 82.8936L434.377 82.7705L434.492 83.0594L434.363 83.1682L434.391 83.4856L434.516 83.59L434.544 83.7987L434.63 84.0118L434.697 84.0497V84.2466L434.669 84.345L434.67 84.5119Z"
1839
+ fill="#E5E5E5"
1840
+ stroke="white"
1841
+ stroke-linejoin="round"
1842
+ />
1843
+
1844
+ <g
1845
+ class="zoomable-state state-SC"
1846
+ (mouseenter)="onStateHover('SC', false, $event)"
1847
+ (mouseleave)="onStateHover('SC', true, $event)"
1848
+ [ngbPopover]="countryPopoverTemplate"
1849
+ [disablePopover]="
1850
+ currentlyHoveredState?.state !== usaStates['SC'].state
1851
+ "
1852
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1853
+ triggers="mouseenter:mouseleave"
1854
+ autoClose="false"
1855
+ container="body"
1856
+ >
1857
+ <path
1858
+ d="M391.792 180.059L391.419 180.201L390.692 180.632L390.347 180.888L389.888 181.324L389.845 181.373L389.663 181.568L389.581 181.663L389.447 181.838L389.261 182.08L389.208 182.15L388.662 182.98L388.337 183.596L388.222 183.814L387.654 184.897L387.63 184.963L387.568 185.124L387.549 185.174L387.544 185.192L387.539 185.202L387.353 185.846L387.334 185.951L387.301 186.107L387.292 186.14L387.263 186.713L387.253 187.012L387.244 187.51L387.239 187.524H387.244L387.268 187.661L387.273 187.694L387.407 188.021L387.33 188.4L387.278 188.495L386.9 189.016L386.522 189.248V189.253L386.263 189.552L386.134 190.395L385.469 190.433L385.039 190.637L384.934 190.651L384.79 190.372L384.513 190.4L384.145 190.76L383.847 191.41L383.985 191.585H384.33L384.311 191.846L383.627 192.3L383.363 192.684L383.134 192.893V193.073L381.962 193.983L382.005 194.201L381.867 194.727L381.192 195.381L381.159 195.566L380.848 195.708L380.446 195.898L380.35 195.936L380.269 195.978L379.971 196.139L379.272 196.646L378.914 196.991H378.909L378.904 196.986L378.244 197.663H378.191L377.861 197.526L377.656 197.701L377.392 197.739L377.325 197.542L376.99 197.651L376.918 197.784L377.11 198.339L377.33 198.371L377.449 198.547L377.499 198.642L377.523 198.77L377.504 198.935L377.404 199.494L377.313 199.589L375.639 200.613L375.61 200.916L375.041 201.935L374.515 202.357L374.257 202.333L373.975 202.76V202.765H373.98V203.276L372.272 202.954L371.751 202.757L371.708 202.714L371.593 202.245L371.502 201.809L371.452 201.596L371.333 201.018L370.358 199.056L369.54 198.388L369.363 198.322L368.402 197.943L368.005 196.351L366.259 193.294L365.503 192.882L363.973 192.171H363.968V192.176L363.112 191.537L362.516 190.7L362.301 189.876L361.693 189.169L361.262 188.767L361.186 188.691L361.033 188.554L360.148 188.179L360.143 188.174L359.096 187.269L358.732 186.587L358.168 186.127L357.929 185.961L357.145 185.568H357.101L356.972 185.617L356.915 185.603L355.557 184.802L355.179 184.234L353.576 182.272L353.241 181.4L352.285 180.071L351.987 179.612L351.992 179.583L351.896 179.512L351.709 179.46L351.384 179.503L351.03 179.593L350.925 179.642L350.365 179.571L349.815 179.187L347.533 177.799L347.352 177.504L347.501 176.68L348.094 175.618L348.907 174.993L349.098 174.126L349.954 173.713L350.892 173.268L352.049 172.973L353.623 171.907L355.455 170.954L356.697 170.897L358.897 170.674L359.739 170.579L359.743 170.584L360.681 170.489L364.249 170.115L364.597 170.082L367.13 169.85L367.34 170.162L367.144 170.835L367.407 171.006L368.129 170.29L368.464 170.432L369.176 171.153L369.808 171.783L369.87 172.897L369.875 172.995L370.057 173.028L371.974 172.749L371.979 172.754L374.115 172.441L377.602 171.938H377.607L379.725 171.594L382.06 173.133L382.184 173.219L386.168 176.095L386.173 176.09L390.622 179.24L391.792 180.059Z"
1859
+ fill="#E5E5E5"
1860
+ stroke="white"
1861
+ stroke-linejoin="round"
1862
+ [attr.fill]="usaStates['SC']['color']"
1863
+ />
1864
+ <path
1865
+ d="M368.844 187.126C368.328 187.126 367.83 187.063 367.35 186.937C366.876 186.805 366.489 186.637 366.189 186.433L366.774 185.119C367.056 185.299 367.38 185.449 367.746 185.569C368.118 185.683 368.487 185.74 368.853 185.74C369.099 185.74 369.297 185.719 369.447 185.677C369.597 185.629 369.705 185.569 369.771 185.497C369.843 185.419 369.879 185.329 369.879 185.227C369.879 185.083 369.813 184.969 369.681 184.885C369.549 184.801 369.378 184.732 369.168 184.678C368.958 184.624 368.724 184.57 368.466 184.516C368.214 184.462 367.959 184.393 367.701 184.309C367.449 184.225 367.218 184.117 367.008 183.985C366.798 183.847 366.627 183.67 366.495 183.454C366.363 183.232 366.297 182.953 366.297 182.617C366.297 182.239 366.399 181.897 366.603 181.591C366.813 181.285 367.125 181.039 367.539 180.853C367.953 180.667 368.469 180.574 369.087 180.574C369.501 180.574 369.906 180.622 370.302 180.718C370.704 180.808 371.061 180.943 371.373 181.123L370.824 182.446C370.524 182.284 370.227 182.164 369.933 182.086C369.639 182.002 369.354 181.96 369.078 181.96C368.832 181.96 368.634 181.987 368.484 182.041C368.334 182.089 368.226 182.155 368.16 182.239C368.094 182.323 368.061 182.419 368.061 182.527C368.061 182.665 368.124 182.776 368.25 182.86C368.382 182.938 368.553 183.004 368.763 183.058C368.979 183.106 369.213 183.157 369.465 183.211C369.723 183.265 369.978 183.334 370.23 183.418C370.488 183.496 370.722 183.604 370.932 183.742C371.142 183.874 371.31 184.051 371.436 184.273C371.568 184.489 371.634 184.762 371.634 185.092C371.634 185.458 371.529 185.797 371.319 186.109C371.115 186.415 370.806 186.661 370.392 186.847C369.984 187.033 369.468 187.126 368.844 187.126ZM375.598 187.126C375.1 187.126 374.638 187.048 374.212 186.892C373.792 186.73 373.426 186.502 373.114 186.208C372.808 185.914 372.568 185.569 372.394 185.173C372.22 184.771 372.133 184.33 372.133 183.85C372.133 183.37 372.22 182.932 372.394 182.536C372.568 182.134 372.808 181.786 373.114 181.492C373.426 181.198 373.792 180.973 374.212 180.817C374.638 180.655 375.1 180.574 375.598 180.574C376.18 180.574 376.699 180.676 377.155 180.88C377.617 181.084 378.001 181.378 378.307 181.762L377.173 182.788C376.969 182.548 376.744 182.365 376.498 182.239C376.258 182.113 375.988 182.05 375.688 182.05C375.43 182.05 375.193 182.092 374.977 182.176C374.761 182.26 374.575 182.383 374.419 182.545C374.269 182.701 374.149 182.89 374.059 183.112C373.975 183.334 373.933 183.58 373.933 183.85C373.933 184.12 373.975 184.366 374.059 184.588C374.149 184.81 374.269 185.002 374.419 185.164C374.575 185.32 374.761 185.44 374.977 185.524C375.193 185.608 375.43 185.65 375.688 185.65C375.988 185.65 376.258 185.587 376.498 185.461C376.744 185.335 376.969 185.152 377.173 184.912L378.307 185.938C378.001 186.316 377.617 186.61 377.155 186.82C376.699 187.024 376.18 187.126 375.598 187.126Z"
1866
+ fill="white"
1867
+ [attr.fill]="
1868
+ usaStates['SC']['color'] === lowestBlue
1869
+ ? blueText
1870
+ : whiteText
1871
+ "
1872
+ />
1873
+ </g>
1874
+ <g
1875
+ class="zoomable-state state-SD"
1876
+ (mouseenter)="onStateHover('SD', false, $event)"
1877
+ (mouseleave)="onStateHover('SD', true, $event)"
1878
+ [ngbPopover]="countryPopoverTemplate"
1879
+ [disablePopover]="
1880
+ currentlyHoveredState?.state !== usaStates['SD'].state
1881
+ "
1882
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1883
+ triggers="mouseenter:mouseleave"
1884
+ autoClose="false"
1885
+ container="body"
1886
+ >
1887
+ <path
1888
+ d="M230.394 93.1583L229.839 95.0633L229.514 95.9161L229.193 97.3757L229.404 97.5366L229.667 97.7783L229.878 98.11L230.17 98.8727L230.457 99.6601L228.902 99.2664L228.329 98.418L228.305 98.3196L228.31 98.2212L228.339 98.0932L228.295 97.9131L228.204 97.7163L227.549 97.3039L225.86 96.6784L224.86 96.2616L224.397 95.9392L224.382 95.5456L223.88 95.484L223.378 95.271L222.99 95.3517L222.603 95.5175L222.101 95.4038L221.847 95.4939L221.407 95.6076L221.355 95.3753L221.057 95.3374L220.741 95.674L220.542 95.3566L220.294 95.2951L220.05 95.6174L219.777 95.5938L219.534 95.3192L219.156 95.3807L219.06 95.676L218.854 95.9319L218.682 96.1735L218.457 96.3772L218.347 96.4437L217.941 96.5052L217.806 96.5101L217.663 96.4865L217.491 96.4107L216.625 95.6725H216.615L215.485 95.1563L213.997 93.8345L213.992 93.8296L207.942 93.6544L205.699 93.5815V93.5766L200.376 93.3537L199.739 93.3207L199.166 93.2922L197.606 93.2213L194.703 93.0884L192.13 92.9556V92.9605L188.944 92.7946L186.945 92.6431L185.291 92.5343L179.608 92.1455L177.939 92.0225L173.908 91.7115L169.527 91.3562L169.962 86.1536L169.982 85.879L170.307 82.0696V82.0602L170.58 78.9377L170.607 78.6159C170.728 77.1625 170.85 75.7093 170.972 74.2563L171.355 69.6221L171.69 67.2909H171.695L172.283 60.0268L172.335 59.3379L180.37 59.9683L180.782 59.9968V60.0017L187.994 60.4939V60.4796H188.009V60.4939H188.076L188.2 60.5032L189.128 60.5603L190.228 60.6218L191.39 60.6976L192.352 60.7498L192.799 60.7783L195.812 60.9392L196.51 60.9771L197.429 61.0263H197.491L197.668 61.0357L199.406 61.1257H199.502L199.507 61.1351L204.247 61.3674V61.3624L205.489 61.4195L205.494 61.4244L210.961 61.6213L213.118 61.6971V61.702L218.618 61.8629L218.843 61.8723L224.605 61.9707L229.713 62.0199V62.0248L229.67 62.4987V62.5223L229.665 62.5366L229.632 62.8255L229.603 63.0622L229.584 63.1606L229.579 63.2128L229.569 63.2364L229.565 63.2507L229.55 63.2792L229.015 64.0705L228.857 64.227L228.559 64.3879L228.291 64.5587L227.588 65.1177L227.578 65.132L227.564 65.1507L227.549 65.1601L227.525 65.2216L227.415 65.5862L227.448 65.6291L227.587 65.8042L228.123 66.5149L228.654 67.6807L229.25 67.7565L229.991 68.1167L230.244 68.3135L230.393 68.6501L230.522 69.2756L230.513 72.4502H230.508V72.4551L230.503 74.3316L230.493 76.2365L230.484 77.1888H230.489L230.465 80.9702V80.9751L230.441 84.7644L230.427 88.5881L229.269 88.5787L229.303 89.2327L229.85 89.8439L229.869 90.6446L229.381 90.6732L229.405 91.2086L229.581 91.6023H230.155L230.232 91.6402L230.538 92.7395L230.394 93.1583Z"
1889
+ fill="#E5E5E5"
1890
+ stroke="white"
1891
+ stroke-linejoin="round"
1892
+ [attr.fill]="usaStates['SD']['color']"
1893
+ />
1894
+ <path
1895
+ d="M196.844 81.126C196.328 81.126 195.83 81.063 195.35 80.937C194.876 80.805 194.489 80.637 194.189 80.433L194.774 79.119C195.056 79.299 195.38 79.449 195.746 79.569C196.118 79.683 196.487 79.74 196.853 79.74C197.099 79.74 197.297 79.719 197.447 79.677C197.597 79.629 197.705 79.569 197.771 79.497C197.843 79.419 197.879 79.329 197.879 79.227C197.879 79.083 197.813 78.969 197.681 78.885C197.549 78.801 197.378 78.732 197.168 78.678C196.958 78.624 196.724 78.57 196.466 78.516C196.214 78.462 195.959 78.393 195.701 78.309C195.449 78.225 195.218 78.117 195.008 77.985C194.798 77.847 194.627 77.67 194.495 77.454C194.363 77.232 194.297 76.953 194.297 76.617C194.297 76.239 194.399 75.897 194.603 75.591C194.813 75.285 195.125 75.039 195.539 74.853C195.953 74.667 196.469 74.574 197.087 74.574C197.501 74.574 197.906 74.622 198.302 74.718C198.704 74.808 199.061 74.943 199.373 75.123L198.824 76.446C198.524 76.284 198.227 76.164 197.933 76.086C197.639 76.002 197.354 75.96 197.078 75.96C196.832 75.96 196.634 75.987 196.484 76.041C196.334 76.089 196.226 76.155 196.16 76.239C196.094 76.323 196.061 76.419 196.061 76.527C196.061 76.665 196.124 76.776 196.25 76.86C196.382 76.938 196.553 77.004 196.763 77.058C196.979 77.106 197.213 77.157 197.465 77.211C197.723 77.265 197.978 77.334 198.23 77.418C198.488 77.496 198.722 77.604 198.932 77.742C199.142 77.874 199.31 78.051 199.436 78.273C199.568 78.489 199.634 78.762 199.634 79.092C199.634 79.458 199.529 79.797 199.319 80.109C199.115 80.415 198.806 80.661 198.392 80.847C197.984 81.033 197.468 81.126 196.844 81.126ZM200.457 81V74.7H203.436C204.132 74.7 204.744 74.829 205.272 75.087C205.8 75.345 206.211 75.708 206.505 76.176C206.805 76.644 206.955 77.202 206.955 77.85C206.955 78.492 206.805 79.05 206.505 79.524C206.211 79.992 205.8 80.355 205.272 80.613C204.744 80.871 204.132 81 203.436 81H200.457ZM202.239 79.578H203.364C203.724 79.578 204.036 79.512 204.3 79.38C204.57 79.242 204.78 79.044 204.93 78.786C205.08 78.522 205.155 78.21 205.155 77.85C205.155 77.484 205.08 77.172 204.93 76.914C204.78 76.656 204.57 76.461 204.3 76.329C204.036 76.191 203.724 76.122 203.364 76.122H202.239V79.578Z"
1896
+ fill="white"
1897
+ [attr.fill]="
1898
+ usaStates['SD']['color'] === lowestBlue
1899
+ ? blueText
1900
+ : whiteText
1901
+ "
1902
+ />
1903
+ </g>
1904
+
1905
+ <g
1906
+ class="zoomable-state state-TN"
1907
+ (mouseenter)="onStateHover('TN', false, $event)"
1908
+ (mouseleave)="onStateHover('TN', true, $event)"
1909
+ [ngbPopover]="countryPopoverTemplate"
1910
+ [disablePopover]="
1911
+ currentlyHoveredState?.state !== usaStates['TN'].state
1912
+ "
1913
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1914
+ triggers="mouseenter:mouseleave"
1915
+ autoClose="false"
1916
+ container="body"
1917
+ >
1918
+ <path
1919
+ d="M359.152 155.083L359.108 157.319L359.142 157.836L358.955 157.898H358.941L358.802 157.903L358.573 157.832L358.52 157.709L358.471 157.737L358.461 157.747L358.021 158.042L357.619 158.492L357.552 158.667L357.461 158.928H357.456V158.933L356.423 160.847L355.117 160.468H355.112L353.548 161.624L352.922 162.756L352.682 162.813L352.376 163.131L351.88 162.823L351.975 162.216L351.808 162.056L351.674 161.975L351.636 161.98L351.411 162.141L351.258 162.249L350.703 162.791L349.928 163.511L349.531 163.609L349.527 163.604L349.187 165.327L346.743 166.53V166.535L346.781 166.739L346.465 167.204L344.94 168.397L344.83 168.468L343.572 168.596H343.374V168.587L340.972 170.094L340.896 170.07L340.537 172.022L340.327 172.302L339.992 172.576L339.045 172.6L338.318 173.23V173.235C338.329 174.038 338.34 174.84 338.351 175.642L335.687 175.965L334.319 176.13H334.315L334.013 176.168L332.53 176.339H332.502L329.968 176.652L329.093 176.77L328.141 176.875L328.132 176.884L326.951 177.002L324.64 177.211L320.652 177.59H320.585V177.595L316.438 177.998L315.969 178.04V178.041L312.626 178.274L312.516 178.283L309.101 178.544V178.549L305.714 178.805L303.801 179.08L302.342 179.198L302.199 179.208H302.192L298.571 179.492L298.241 179.521L296.51 179.658L294.893 179.772L293.516 179.867L290.909 180.037L290.192 180.09L284.969 180.407L284.949 180.255L285.059 179.914L285.891 179.839L286.173 178.976L286.341 178.78L286.843 178.955L287.125 178.737L287.154 178.343L286.819 178.187L287.077 177.779L287.006 177.48L286.752 177.21L286.341 177.224L286.212 177.028L286.676 176.753L286.743 176.392L286.693 176.195L286.918 175.968L286.422 175.541L286.139 175.66V175.911L285.981 175.954L285.943 175.499L286.345 175.362L286.593 175.125L286.766 175.594L287.134 175.874L287.272 175.859V175.854L287.397 174.954L287.119 174.646L287.177 174.139L287.516 174.111L287.669 174.376L288.296 174.499L288.172 174.007V174.002L287.904 173.647L288.607 173.211L288.741 172.866L288.482 172.535L288.035 172.748L287.753 172.203L288.088 171.908L288.394 171.957L288.93 171.8L289.168 171.521L289.268 171.256L289.861 171.17L289.919 170.697L289.344 170.464L289.444 170.147L289.606 170.118L290.261 170.237L290.266 170.228L290.372 169.749L290.151 169.54L289.726 169.322L289.683 169.052L290.012 168.564L290.079 167.995L290.653 167.678L290.72 167.284L290.156 167.009L289.817 166.374L290.558 166.427L291.065 166.118L290.883 165.754L290.362 165.37L290.783 165.299L291.165 165.171L291.17 164.574L290.84 164.129L290.711 163.532L291.185 163.508L291.156 163.84L291.385 164.011L291.687 163.854L291.783 163.447L292.4 163.362V163.367L296.876 163.044H296.943L297.034 163.035L299.66 162.845L299.899 162.831L303.716 162.566L303.936 162.158L303.4 160.595L303.912 160.566L305.342 160.595L305.337 160.932L306.724 160.771L307.188 160.718L309.847 160.444L311.77 160.259V160.254L312.243 160.202L314.831 159.894H316.581V159.889L317.897 159.571V159.576L319.709 159.51L321.713 159.429L323.358 159.331L326.429 159.035L327.644 158.817L327.811 158.789V158.784L330.509 158.613V158.618L332.116 158.542H332.183L336.698 158.121V158.126L336.996 158.093L339.082 157.856V157.851L339.575 157.802L341.78 157.38V157.385L343.55 157.191L347.792 156.66L349.134 156.48L351.056 156.21V156.205L353.792 155.802L354.228 155.741L355.072 155.622L356.913 155.361L356.971 155.105L357.808 155.007L359.372 154.794L359.152 155.083Z"
1920
+ fill="#E5E5E5"
1921
+ stroke="white"
1922
+ stroke-linejoin="round"
1923
+ [attr.fill]="usaStates['TN']['color']"
1924
+ />
1925
+ <path
1926
+ d="M314.971 172V167.113H313.036V165.7H318.679V167.113H316.753V172H314.971ZM319.343 172V165.7H320.81L324.284 169.894H323.591V165.7H325.337V172H323.87L320.396 167.806H321.089V172H319.343Z"
1927
+ fill="white"
1928
+ [attr.fill]="
1929
+ usaStates['TN']['color'] === lowestBlue
1930
+ ? blueText
1931
+ : whiteText
1932
+ "
1933
+ />
1934
+ </g>
1935
+ <path
1936
+ d="M222.339 277.627L222.511 278.982L222.461 278.973H222.438L222.357 278.864L222.266 278.129L222.28 277.793L222.23 277.394L222.135 276.778L221.944 275.892L221.829 275.548L221.69 275.268V275.263L220.945 273.216L221.247 273.225L221.859 275.263H221.864L222.136 276.4L222.222 276.827L222.339 277.627Z"
1937
+ fill="#E5E5E5"
1938
+ stroke="white"
1939
+ stroke-linejoin="round"
1940
+ />
1941
+ <path
1942
+ d="M223.75 259.76L223.803 259.897L222.043 262.693L220.766 265.896L220.737 266L220.598 266.621L220.517 267.151L220.445 267.796L220.417 268.369V268.966L220.479 269.866L220.522 270.236L220.531 270.274L220.651 270.963L220.823 271.735L221.129 272.834L221.158 272.919L221.249 273.218L220.948 273.209L220.297 270.82V269.47L220.306 268.323L220.311 267.873L220.326 267.201L220.369 266.679L220.412 266.419L220.511 265.897V265.892L221.789 262.632L223.75 259.76Z"
1943
+ fill="#E5E5E5"
1944
+ stroke="white"
1945
+ stroke-linejoin="round"
1946
+ />
1947
+ <path
1948
+ d="M229.646 254.525L229.765 254.722L228.837 255.173L228.703 255.234L228.689 255.244L227.986 255.675L227.269 256.187L226.647 256.67L225.748 257.442L225.704 257.485L223.81 259.888L223.758 259.75L225.943 256.94V256.935L226.073 256.438L228.268 254.95L228.383 254.898L228.89 254.679L229.646 254.525Z"
1949
+ fill="#E5E5E5"
1950
+ stroke="white"
1951
+ stroke-linejoin="round"
1952
+ />
1953
+ <g
1954
+ class="zoomable-state state-TX"
1955
+ (mouseenter)="onStateHover('TX', false, $event)"
1956
+ (mouseleave)="onStateHover('TX', true, $event)"
1957
+ [ngbPopover]="countryPopoverTemplate"
1958
+ [disablePopover]="
1959
+ currentlyHoveredState?.state !== usaStates['TX'].state
1960
+ "
1961
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1962
+ triggers="mouseenter:mouseleave"
1963
+ autoClose="false"
1964
+ container="body"
1965
+ >
1966
+ <path
1967
+ d="M255.543 229.989L255.438 230.368L255.462 230.397L255.73 230.714L255.864 231.392L255.859 231.449L255.82 231.544L255.457 231.847L255.447 231.856L255.739 233.567C255.739 234.273 255.734 234.975 255.734 235.68L254.641 237.182V237.197L254.589 237.656L253.737 238.338L254.091 239.172L254.722 239.623L253.838 239.765H253.163L252.637 239.888L251.915 240.172L249.81 241.13C249.757 241.148 249.7 241.172 249.648 241.191L249.36 241.319L248.509 241.708L248.442 241.736L248.404 241.76L247.634 242.115L247.514 242.172L247.17 242.352L247.108 242.39L246.912 242.513L246.797 242.585L246.764 242.608L246.649 242.694L246.567 242.746L246.529 242.795L246.505 242.819L246.434 242.894L246.41 242.927L246.328 243.05L246.29 243.112L246.241 243.221L246.221 243.263L245.93 243.344L245.762 243.353L245.729 243.325L245.724 243.197L245.877 243.003L246.685 242.15L246.767 242.088L247.503 241.744L247.991 241.573L248.115 241.559L248.206 241.521L248.156 241.402V241.246L246.157 240.928L246.401 240.478L246.54 239.725V239.626L246.511 239.413L246.229 238.858L246.125 238.742L246.073 238.723L245.585 238.946L245.355 239.06L244.255 239.96V239.965L243.447 241.282H243.442V241.287L243.882 241.775L245.461 243.448L246.226 243.671L245.705 244.126L245.538 244.254L244.629 244.87L243.481 245.652L243.414 245.701L243.29 245.796L242.946 246.062L242.884 246.111L242.845 246.139L242.711 246.272L242.606 246.367L242.525 246.476L242.467 246.59L240.052 248.684L238.799 249.248H238.794L238.612 249.367L238.21 249.623L238.028 249.727L235.852 250.987L235.157 251.332L234.028 251.82L233.277 252.161L231.895 252.862L231.407 253.185L231.368 253.208L230.713 253.663L230.426 253.881L230.345 254.004L230.321 253.923L230.378 253.833L231.942 252.667L232.181 250.668L232.131 250.619L232.069 250.595L231.873 250.624L231.426 250.728L231.239 250.785L231.081 250.912L230.895 251.23L230.299 251.509L229.347 251.893L228.567 251.192L228.481 250.941L228.414 250.443L227.798 250.472H227.793L227.74 250.501L227.702 250.524L227.591 250.619L228.103 251.822L228.132 251.851L228.557 251.932L228.825 252.112L229.954 253.121L230.04 253.206L230.121 253.315L230.107 253.391L228.275 254.301L228.193 254.334L227.486 254.528L227.237 254.452L227.17 254.386L226.548 253.727L226.333 254.703V254.708L226.252 255.206L226.366 255.391V255.452L226.237 255.732L226.142 255.803L224.917 256.627H224.645L224.21 256.589L223.985 256.916L223.793 257.892L222.937 259.176C222.712 259.366 222.487 259.551 222.262 259.74L221.545 259.396H221.54L221.363 259.429L220.723 259.718L220.536 259.85L220.407 260.106L220.387 260.443L220.459 260.618L220.626 260.893L220.832 261.073L221.13 261.21L221.618 261.589L221.312 262.281L221.025 262.849V262.854L220.528 264.565L220.23 265.271L220.201 265.333L220.12 265.423L220.048 265.466L219.173 265.911L217.901 265.849L217.877 265.93L217.882 266.12L217.92 266.19L217.982 266.24L218.827 266.396L219.047 266.377L219.152 266.334L219.219 266.285L219.248 266.236L219.401 266.169L219.741 266.046L220.004 266.037L220.018 266.103L219.784 267.624L219.076 267.762L219.363 268.871L218.454 268.88L218.688 270.064L218.631 270.993L219.449 271.481L219.693 272.837L219.717 273.187C219.678 273.519 219.635 273.856 219.597 274.187L219.028 274.258L219.348 275.22L220.051 275.604C220.07 275.613 220.084 275.618 220.104 275.627L220.142 276.182L220.367 277.04L220.357 277.85L220.798 278.741L221.845 279.731L221.869 279.76L221.749 280.134L220.549 280.163L219.975 280.627L219.931 281.215L219.051 280.945L218.908 280.86L218.773 280.755L218.204 280.31L217.367 279.386L217.329 279.263L216.19 279.066L215.435 278.938V278.933L215.373 278.914L215.177 278.886L214.282 278.895L213.981 278.9L213.943 278.952L213.617 279.08L212.383 278.843L211.656 278.701L211.431 278.582L211.288 278.487L210.231 277.772L209.728 277.175L209.461 277.052L209.437 277.042L208.275 276.649H208.27V276.644L207.806 276.71L207.088 276.397L206.117 275.431L204.993 275.099L203.73 274.902L203.166 274.542L203.286 273.85L202.698 273.485L202.588 273.239L202.569 273.163L202.554 273.106L202.405 272.528L202.233 271.822V271.813L201.935 270.73L201.696 270.133L201.194 269.427L200.639 269.11L200.844 268.674L200.424 268.143L200.003 268.128L199.965 267.702L199.979 267.659L200.022 267.622L200.195 267.366L200.266 266.484L200.142 265.684L200.043 265.527C199.981 265.518 199.923 265.513 199.861 265.503L199.65 265.371L199.631 265.366L199.569 265.169L199.526 265.12L199.512 265.1L199.502 265.091L199.493 265.048L199.536 264.992L199.546 264.508L199.699 264.144L199.756 263.935L199.861 263.12L199.574 262.949L199.512 262.158L199.307 261.803L199.177 261.708L198.742 261.395L198.517 261.357L198.106 261.347L197.417 260.916L196.676 259.898L196.423 259.865L196.117 259.509L195.944 259.026L196.011 258.538L195.696 258.216L195.691 257.68L195.112 257.424L194.954 256.699L194.93 256.642L194.251 255.775L194.202 255.737L193.054 255.154H193.039L193.006 255.116L192.59 254.666L192.284 254.272L192.334 253.623L191.855 252.941L192.104 251.865L191.463 251.377L191.52 250.885L191.152 250.676L191.1 250.335L190.612 249.88L190.562 249.203L190.256 248.303L189.783 247.502L189.336 246.896L189.049 245.346L187.944 243.583L187.939 243.578L185.691 241.583L185.538 240.934L184.793 240.626L184.602 240.314L183.994 240.058L184.071 239.191L183.507 239.01L183.445 238.726L182.804 238.437L182.392 237.674L181.919 237.509L181.996 237.196L181.402 237.291L181.173 236.779L180.503 237.423L180.283 237.414L179.001 237.271V237.262L178.829 237.213L178.762 237.189L177.843 236.976L177.265 236.886L176.342 236.952L176.246 237.002L175.62 236.883L173.782 235.859L173.289 236.172L172.868 236.878L172.058 236.577L170.346 237.131L170.126 237.264L170.102 237.278L168.81 239.368L168.031 241.149L167.663 242.353L167.228 242.894L166.673 242.97L166.329 243.691L165.621 244.06L165.434 244.97L165.028 245.074H164.961L163.837 244.795L163.301 244.141L162.89 244.354L161.598 242.733L159.848 242.373L159.757 242.278L159.375 241.89L159.169 241.459L157.566 240.942L155.859 239.52L155.634 238.686L155.137 238.269L154.286 237.974L153.746 237.458L152.799 236.596L152.612 235.643L151.536 233.563L151.412 232.227L151.68 231.658L151.589 230.231L151.149 229.563L150.618 228.582L150.354 228.26L150.255 227.203L149.907 225.952L149.411 225.635L149.406 225.64L149.207 224.915L148.595 224.72L148.169 224.109L147.15 223.294L146.748 223.379L145.648 222.654L145.81 222.365L144.198 221.037L144.049 220.188L143.547 219.647L142.992 219.344L142.906 219.074L142.443 218.889L142.28 218.458L141.654 217.539L141.247 217.25L140.98 216.681L140.506 216.51L140.258 216.359L139.708 216.24L139.393 215.951L139.196 215.913L138.809 215.569L138.685 215.47V215.461L138.647 215.423L138.637 215.409L138.561 215.286L138.312 214.514L137.977 214.281L137.934 213.93L137.762 213.457L137.537 212.732L137.231 212.556L137.289 212.353L137.036 212.13L136.227 212.063L136.045 211.676L135.323 210.908L135.232 210.789L135.021 210.567V210.429L134.969 210.216L135.179 210.084L135.279 209.505L135.13 209.448L135.144 209.292L135.302 209.221H135.307L135.69 209.254L137.708 209.462L141.214 209.832V209.827L151.198 210.836L151.853 210.898L159.482 211.576L159.893 211.609V211.614H159.898L162.275 211.803L165.951 212.092V212.087L166.497 212.13L166.975 212.163L167.631 212.215L168.152 212.258L168.382 212.272L168.453 211.329L168.807 206.595V206.586C168.927 204.998 169.046 203.416 169.166 201.829C169.305 200.27 169.448 198.706 169.587 197.147H169.592L169.779 195.162L170.032 192.395L170.453 187.178L170.462 187.064L170.83 182.316L170.998 180.056L171.189 177.549H171.194L171.557 172.749H171.552L171.652 171.47L171.915 168.015H171.92L172.126 165.134L172.26 163.381L172.623 163.168L179.97 163.675V163.67L181.112 163.746L184.689 163.969V163.974L189.408 164.239L190.556 164.296L194.132 164.471L198.896 164.684L198.714 169.556L198.633 171.471L198.513 174.337V174.342L198.314 179.123H198.309L198.238 180.786L198.108 183.9H198.104L198.046 185.923V185.928L199.368 186.577L199.837 187.179L200.062 187.444L200.693 188.035L200.971 188.101H201.396L201.751 187.658L201.8 187.639L201.9 187.654L202.33 187.706L202.469 187.763L202.689 187.891V187.886L202.987 188.165L203.293 188.194L203.36 188.165H203.369L203.379 188.146L203.384 188.137L203.771 187.445L204.169 187.658L204.618 187.9L205.044 188.634V188.648L205.034 188.899L205.025 189.136L205.183 189.979L205.188 189.984L205.303 190.017L205.484 190.074L205.824 190.15L205.992 190.141L206.36 190.136L207.192 190.202H207.206L207.33 190.264C207.612 190.43 207.89 190.591 208.172 190.756L209.004 190.96L209.597 190.979L210.42 190.728V190.737L210.511 190.742L210.71 190.87L210.915 191.045L211.346 191.734L211.604 191.824H211.609L211.619 191.815L212.102 191.384L212.465 190.934L212.642 190.839L212.987 190.914L214.393 191.35L214.943 192.246V192.251L215.101 192.563L215.124 192.587H215.139L215.521 192.701H215.732L216.047 192.625L216.382 192.758H216.387L216.306 193.341L216.071 193.843L216.171 193.937L216.974 194.298L217.084 194.307L217.366 194.222L217.821 193.872L218.299 193.379L218.61 192.991L219.533 193.602L219.863 193.829L220.561 193.644C220.623 193.914 220.681 194.185 220.743 194.455L220.767 194.511L220.776 194.53L220.829 194.597L220.91 194.649L221.436 194.791L222.718 193.663L223.359 193.971L223.015 194.906L223.561 195.797L223.686 195.84L223.835 195.859L223.964 195.816L224.055 195.745L224.098 195.688L225.461 193.347L225.466 193.342L225.552 193.299L226.011 194.234L226.164 194.4L226.255 194.462L227.111 194.722L227.558 194.652H227.563L228.476 194.244L228.443 194.419L228.452 194.552L228.457 194.604L228.467 194.633L229.399 195.253L229.485 195.31H229.495L229.964 195.225L230.069 195.24L230.189 195.277L230.586 195.808L230.677 195.922L232.031 195.59L232.222 195.541L232.384 195.47L232.399 195.456L232.485 195.366L232.494 195.351L232.499 195.342L232.523 195.271L232.547 195.186L232.556 195.157L232.561 195.129L232.619 194.868L232.695 194.603L233.154 194.494L234.177 194.409L234.374 194.395L234.498 194.38L235.024 194.485L235.459 194.565H235.464L236.239 194.277H236.244L237.004 193.883L237.67 193.542L237.968 193.556L238.035 193.585L238.134 193.826L238.129 193.902L238.1 193.978L238.105 194.035V194.044L238.138 194.106L238.172 194.134L239.076 194.253L239.415 194.281L240.032 194.253H240.037L240.3 194.22C240.35 194.211 240.391 194.206 240.439 194.196L240.51 194.187L240.75 194.03L240.802 193.981L240.852 193.872L240.871 193.759L240.852 193.664V193.65L240.819 193.579L240.814 193.569L240.819 193.56V193.541L240.824 193.527L241.02 193.231H241.034L241.063 193.217H241.125L241.704 193.406L242.77 194.307L244.33 195.543L245.458 196.003L247.835 196.681L247.907 196.866L247.979 197.027L248.036 197.107L248.414 197.339L248.548 197.43L249.036 197.695L249.92 197.249L249.97 197.207L250.104 197.192L250.616 197.121L251.5 197.297L251.668 197.363L251.888 197.543L251.955 200.619L252.013 203.371L252.051 204.883L252.089 206.94C252.113 208.034 252.137 209.129 252.161 210.224V210.229L252.211 212.37L252.509 214.721V214.726L253.819 216.176L254.288 218.981L255.297 220.033L256.158 221.269L256.44 222.478L256.507 222.838L256.603 223.397V223.402L257.038 223.288L257.077 226.738L256.904 227.472L255.543 229.989Z"
1968
+ fill="#E5E5E5"
1969
+ stroke="white"
1970
+ stroke-linejoin="round"
1971
+ [attr.fill]="usaStates['TX']['color']"
1972
+ />
1973
+ <path
1974
+ d="M204.971 226V221.113H203.036V219.7H208.679V221.113H206.753V226H204.971ZM208.422 226L211.176 222.175L211.167 223.444L208.521 219.7H210.528L212.22 222.139L211.365 222.148L213.03 219.7H214.956L212.31 223.372V222.112L215.1 226H213.048L211.329 223.435H212.148L210.456 226H208.422Z"
1975
+ fill="white"
1976
+ [attr.fill]="
1977
+ usaStates['TX']['color'] === lowestBlue
1978
+ ? blueText
1979
+ : whiteText
1980
+ "
1981
+ />
1982
+ </g>
1983
+ <g
1984
+ class="zoomable-state state-UT"
1985
+ (mouseenter)="onStateHover('UT', false, $event)"
1986
+ (mouseleave)="onStateHover('UT', true, $event)"
1987
+ [ngbPopover]="countryPopoverTemplate"
1988
+ [disablePopover]="
1989
+ currentlyHoveredState?.state !== usaStates['UT'].state
1990
+ "
1991
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
1992
+ triggers="mouseenter:mouseleave"
1993
+ autoClose="false"
1994
+ container="body"
1995
+ >
1996
+ <path
1997
+ d="M126.164 112.449H126.169L125.499 117.13L124.638 123.248L124.395 125.019L123.825 129.071L123.534 131.047L123.472 131.469L123.142 133.473L122.807 135.861V135.866L122.429 139.662L122.018 142.615L121.406 146.927L120.655 152.21L112.405 151.049L109.554 150.622L108.148 150.348L105.948 150.016L100.235 149.13L90.546 147.515L87.4608 146.973L77.5938 145.153L78.842 138.632L80.0029 132.772V132.767L80.8876 128.194L81.1126 127.067L82.9396 117.736V117.731L83.705 113.822V113.817L84.1521 111.547L86.0317 102.037L88.112 91.333L88.6475 91.4659L89.2882 91.6175L89.3841 91.6366L90.0681 91.7553L90.3214 91.7981L92.9948 92.2484L93.2293 92.2862L96.4481 92.8276L98.7867 93.2164L100.858 93.5717L102.56 93.8669L103.148 94.0146V94.0195L103.589 94.0859L108.424 94.8576V94.8527L112.126 95.426L110.82 103.546V103.551L110.373 106.299L114.817 107.024L118.514 107.55L118.901 107.607H118.911L120.092 107.778L121.234 107.934L121.555 107.983L125.391 108.49L126.677 108.675L126.164 112.449Z"
1998
+ fill="#E5E5E5"
1999
+ stroke="white"
2000
+ stroke-linejoin="round"
2001
+ [attr.fill]="usaStates['UT']['color']"
2002
+ />
2003
+ <path
2004
+ d="M101.537 129.126C100.607 129.126 99.881 128.871 99.359 128.361C98.837 127.851 98.576 127.128 98.576 126.192V122.7H100.358V126.138C100.358 126.678 100.463 127.065 100.673 127.299C100.889 127.533 101.183 127.65 101.555 127.65C101.927 127.65 102.218 127.533 102.428 127.299C102.638 127.065 102.743 126.678 102.743 126.138V122.7H104.498V126.192C104.498 127.128 104.237 127.851 103.715 128.361C103.193 128.871 102.467 129.126 101.537 129.126ZM106.95 129V124.113H105.015V122.7H110.658V124.113H108.732V129H106.95Z"
2005
+ fill="white"
2006
+ [attr.fill]="
2007
+ usaStates['UT']['color'] === lowestBlue
2008
+ ? blueText
2009
+ : whiteText
2010
+ "
2011
+ />
2012
+ </g>
2013
+ <path
2014
+ d="M408.878 146.319L409.002 146.457L408.567 146.547L408.543 146.372L408.701 146.31L408.863 146.187L408.878 146.319Z"
2015
+ fill="#E5E5E5"
2016
+ stroke="white"
2017
+ stroke-linejoin="round"
2018
+ />
2019
+ <path
2020
+ d="M406.279 138.742L406.25 138.425L406.255 138.268L406.293 137.112L406.336 136.358L406.36 136.112L406.399 135.795L407.231 135.549L407.713 135.743L407.763 136.186L407.691 136.3L407.642 136.333L407.627 136.361L407.666 136.442L407.723 136.48V137.044L407.995 137.267L407.446 137.476L407.125 138.319L407.274 140.082L407.403 140.518L407.336 140.542L407.064 140.608L407.049 140.372L406.556 139.628L406.332 139.092L406.279 138.742Z"
2021
+ fill="#E5E5E5"
2022
+ stroke="white"
2023
+ stroke-linejoin="round"
2024
+ />
2025
+ <path
2026
+ d="M408.26 138.913L408.184 138.823L408.207 138.486L408.322 138.799L408.26 138.913Z"
2027
+ fill="#E5E5E5"
2028
+ stroke="white"
2029
+ stroke-linejoin="round"
2030
+ />
2031
+ <path
2032
+ d="M407.841 139.841L408.037 139.338L408.186 139.059L408.434 139.082L408.385 139.324L408.299 139.485L408.203 139.651L408.198 139.66L407.82 140.239L407.805 140.267L407.743 140.348L407.676 140.41L407.652 140.419L407.841 139.841Z"
2033
+ fill="#E5E5E5"
2034
+ stroke="white"
2035
+ stroke-linejoin="round"
2036
+ />
2037
+ <path
2038
+ d="M408.587 137.664L408.654 136.617L408.477 136.422L408.917 136.228L408.96 136.308L408.965 136.489L408.683 137.835L408.367 138.309L408.587 137.664Z"
2039
+ fill="#E5E5E5"
2040
+ stroke="white"
2041
+ stroke-linejoin="round"
2042
+ />
2043
+ <g
2044
+ class="zoomable-state state-VA"
2045
+ (mouseenter)="onStateHover('VA', false, $event)"
2046
+ (mouseleave)="onStateHover('VA', true, $event)"
2047
+ [ngbPopover]="countryPopoverTemplate"
2048
+ [disablePopover]="
2049
+ currentlyHoveredState?.state !== usaStates['VA'].state
2050
+ "
2051
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
2052
+ triggers="mouseenter:mouseleave"
2053
+ autoClose="false"
2054
+ container="body"
2055
+ >
2056
+ <path
2057
+ d="M409.329 146.384L409.23 146.408L409.153 146.271L409.11 146.053L409.014 145.872L408.965 145.74L408.73 145.399L408.596 145.251L408.587 145.388L408.548 145.516L408.371 145.35L408.338 145.127L408.487 145.014L408.329 144.929L408.133 145.014L408.152 145.293L408.114 145.582L408.267 146.141L408.282 146.397L408.42 146.577L408.143 146.634L408.028 146.402L407.698 146.184L407.67 146.25L407.842 146.482L407.941 146.677L407.133 146.852V146.847L405.497 147.188L403.971 147.51L403.536 147.6L400.265 148.24L400.322 148.33L398.194 148.724L397.065 148.97H397.06L393.009 149.761H393.004L391.866 149.974L390.608 150.225L388.217 150.68L387.069 150.907L384.677 151.35V151.355L384.146 151.459L381.195 151.985L380.497 152.108V152.103L379.426 152.298V152.302L378.33 152.492H378.325L377.981 152.553L376.211 152.849V152.854L373.509 153.304L373.284 153.342C372.165 153.498 371.041 153.65 369.922 153.806L368.42 153.967L366.464 154.27L365.904 154.327L361.968 154.801L359.137 155.086L359.366 154.787H359.361L357.797 154.996L356.965 155.094L356.903 155.345L355.065 155.61H355.06V155.615L354.216 155.729L353.785 155.786V155.791L351.049 156.194L349.127 156.464L347.785 156.649L343.548 157.179L341.773 157.374L343.548 156.431L344.074 156.26L345.728 155.312L346.259 155.269L346.599 154.004L347.431 153.961L347.995 153.516L348.177 153.203V153.199L348.211 152.374L348.589 152.03L349.364 151.566L349.302 150.642L350.488 149.599L350.579 149.538V149.533H350.584L350.919 149.291L352.215 148.566L352.541 148.154L355.066 145.152L355.364 145.261L355.335 145.432L354.948 145.776L354.924 145.852L354.986 146.013L355.608 146.364L355.728 147.056L356.45 147.681H356.455L356.554 147.733L357.53 148.078L358.108 148.414L359.113 148.22L359.142 148.206L359.52 147.861L359.525 147.852L360.156 147.188L360.504 146.492L361.944 147.468L362.948 146.872L363.953 146.511L364.57 146.208L365.005 145.753L364.632 145.427L364.781 145.176L364.748 144.873L365.609 145.365L366.675 144.568L366.766 144.498L367.632 143.82L368.043 144.407V144.412L368.454 144.033L368.827 143.768L368.861 143.631L369.2 143.451L369.373 143.276L369.459 143.034L369.359 142.972L369.23 143.133L368.996 143.067L369.149 142.948L369.053 142.707L369.351 142.427L369.848 141.837L369.087 141.249L369.709 139.576L370.666 138.088C370.862 137.638 371.063 137.188 371.259 136.738L371.493 136.293L371.34 135.53L371.977 134.771L372.283 134.326V134.321L372.077 133.914V133.899L372.082 133.862L372.608 133.052L372.833 132.251L372.876 131.479L372.891 130.579L373.742 130.782L373.914 130.858L374.077 131.015L374.599 131.782L376.072 132.028L376.662 131.178L377.528 127.871L377.92 126.966L379.102 127.567L379.566 126.203L379.752 126.023L379.828 125.748L380.058 125.658L380.101 125.919L380.421 125.587L380.526 125.218L380.732 124.929L380.931 125.052L381.208 124.393L381.064 124.322L381.222 123.967V123.962L381.461 123.503L381.719 123.342L381.896 123.147L381.925 122.934L382.145 122.626L381.954 122.489L381.935 122.394L381.83 122.327L382.035 121.783L381.839 121.733L381.911 121.653L381.978 121.387L382.212 120.985L382.298 120.573L382.099 120.558L382.176 120.198L382.013 120.013L382.057 119.35L383.156 119.909L385.044 120.922L387.034 121.96L387.541 119.757L387.871 119.719L388.383 119.894L388.837 119.781L389.152 120.174L389.913 120.425L389.841 120.842L389.573 120.956L389.54 121.046L389.535 121.098L389.516 121.235L389.507 121.33V121.34L389.564 121.529L389.616 121.591H389.621L389.674 121.629L390.22 121.993L390.235 121.998L390.536 122.017L390.953 121.998L391.35 121.955L391.355 121.95L391.838 122.147L392.144 122.242L392.153 122.569L392.344 122.721L392.531 122.716L392.646 122.744L393.052 122.706L393.354 122.939V122.944L393.674 123.199L394.057 123.37L394.287 123.801L394.301 123.949V123.954L394.344 124.343L394.349 124.392H394.354L394.143 125.344L393.895 125.492L393.785 125.79L393.507 125.8L393.928 126.184L393.617 126.217L393.631 126.392L393.373 126.477L393.235 126.325L393.369 126.192L393.269 126.074L393.088 126.183C392.978 126.751 392.872 127.32 392.762 127.893L392.786 128.499L392.944 129.021L392.839 129.006L392.399 128.684L392.349 128.717L392.66 129.034L393.206 129.309L393.077 129.498L392.63 129.565L392.635 129.631L392.955 129.688L393.577 129.698L393.922 129.503L394.256 129.408L394.39 129.11L394.873 129.011L395.055 128.613L395.17 128.523L395.505 128.765L395.591 129.248L395.528 129.404L395.256 129.39L395.174 129.518L395.169 129.641L395.275 129.575L395.447 129.556L395.658 129.66L395.844 129.759L395.839 129.764L396.198 129.901L396.284 130.417L396.025 130.522L396.04 130.574L396.212 130.531L396.384 130.46L396.719 130.509L396.7 130.746H396.767L396.844 130.566L397.073 130.727L397.532 130.712L397.991 130.58L398.245 130.859L398.403 130.873L398.484 131.054L398.594 131.144L398.693 131.082L398.636 130.921L398.612 130.537L398.731 130.542L399.205 130.874L399.105 130.575L399.364 130.552L399.546 130.737L399.407 130.912L400.196 131.144L400.246 131.263L400.395 131.396L400.261 131.457L400.112 131.334L400.04 131.495L400.136 131.576V131.674L400.141 131.669V131.679H400.94L400.734 131.929L400.849 132.001L401.126 131.916L401.524 132.072L401.911 132.115L402.47 132.281L403.035 132.508L403.097 132.75L403.102 133.375L402.968 133.46L402.81 133.362L402.504 133.063L402.38 133.144L402.174 133.125L401.887 133.021L401.676 133.026L401.653 133.087L401.906 133.137L402.026 133.217L402.389 133.26L402.489 133.232L402.632 133.393L402.738 133.701L402.948 133.729L402.972 133.833L402.848 133.943L402.963 134.251L402.795 134.336L402.776 134.464L402.953 134.592L402.972 134.805L402.532 134.772C402.642 134.838 402.752 134.9 402.862 134.966L402.881 135.085L402.761 135.137L402.895 135.256L402.924 135.445L403.034 135.426L403.201 135.289L403.474 135.535L403.435 135.633L403.33 135.682L403.244 135.607L403.195 135.512L403.084 135.668L402.786 135.625L402.724 135.758L402.456 135.616L402.284 135.665L402.212 135.589L402.031 135.566L402.08 135.443L402.2 135.448L402.209 135.334L402.09 135.31L402.023 135.22L401.961 135.329L401.899 135.518L401.813 135.528L401.798 135.423L401.678 135.405L401.683 135.338L401.76 135.248L401.813 135.139L401.736 135.078L401.717 134.964L401.841 134.879L401.875 134.774L401.946 134.689L401.97 134.58L401.836 134.585L401.779 134.761L401.621 134.798L401.64 134.912L401.588 134.931L401.526 134.846H401.406L401.324 134.756L401.272 134.567H401.128L401.138 134.794L401.243 134.818L401.252 134.908L401.367 134.903L401.496 135.059L401.453 135.083L401.577 135.211L401.501 135.296L401.525 135.471L401.453 135.5L401.568 135.604L401.419 135.708L401.108 135.533L400.959 135.079L400.744 135.029L400.6 134.845L400.581 134.632L400.485 134.39L400.317 134.433L399.997 134.319L400.121 134.148C400.083 134.134 400.045 134.125 400.006 134.111L399.897 134.101L399.825 134.267L399.59 134.148V134.073L399.533 134.011L399.462 134.134L399.342 134.153L399.179 134.049L399.103 134.025L399.045 133.868L398.959 133.845L398.907 133.707L398.849 133.622L399.002 133.524L398.944 133.475L398.854 133.503L398.71 133.645L398.624 133.399L398.265 133.196L398.16 133.219L398.074 133.124L397.945 133.134L397.773 132.982L397.782 132.849L397.744 132.754L397.667 132.683L397.591 132.769L397.514 132.683L397.352 132.669L397.28 132.442L397.166 132.219L397.089 132.025L396.798 131.764H396.793V131.769L396.64 131.736L396.415 131.731L396.315 131.665L396.31 131.566L396.181 131.552L396.086 131.595V131.647L395.981 131.751L395.904 131.685L395.784 131.676L395.746 131.41L395.689 131.149L395.536 131.079L395.459 131.174L395.301 131.141L395.196 131.245L395.081 131.269L395.005 131.121L394.895 131.225L394.775 131.145L394.599 131.258L394.393 131.201L394.517 131.32L394.575 131.377L394.666 131.386L394.833 131.268L394.953 131.358L395.049 131.538L395.235 131.618L395.25 131.746L395.24 131.618L395.259 131.422H395.331L395.365 131.554L395.523 131.536L395.528 131.417L395.633 131.45L395.691 131.801L395.844 131.834L395.964 131.967L396.097 131.976L396.226 131.768L396.379 131.872L396.829 131.948L397.087 132.374L397.016 132.535L397.14 132.649L397.078 132.829L397.198 132.914L397.503 132.905L397.46 133.09L397.537 133.147L397.628 133.176L397.876 133.37L398.124 133.422L398.129 133.526L398.259 133.621L398.383 133.598L398.608 133.893L398.737 134.012L398.771 134.116L399.254 134.566L399.517 134.59L399.623 134.718L399.613 134.789C399.666 134.827 399.718 134.86 399.771 134.897L400.173 134.874L400.244 135.049L400.374 135.058L400.512 135.281L400.617 135.613L400.713 135.684L400.436 135.632L400.402 135.727L400.713 135.76L400.699 135.873L400.933 136.001L401.201 136.124L402.105 135.949L402.201 136.205L402.541 136.262L402.938 136.181L403.048 136.262L403.402 136.243L403.321 136.47L403.163 136.409L403.192 136.622L403.024 136.579L402.78 136.636L402.482 136.698L402.42 136.883L402.271 136.873L402.204 136.944L401.869 136.755L401.759 136.84L401.534 136.712L401.435 136.745L401.64 136.906L401.817 136.901L402.016 136.967L402.26 137.052L402.494 136.995L402.566 136.9L402.628 136.857L402.599 136.763L402.905 136.743L402.963 136.895H403.178L403.307 136.956L403.312 137.027L403.13 137.042L403.144 137.103L403.321 137.108L403.465 137.103L403.46 136.909L403.426 136.639L403.632 136.667L404 137.012L403.895 137.061L403.713 136.966L403.575 137.023L403.694 137.137L403.613 137.227L403.46 137.231L403.541 137.412L403.67 137.289L403.761 137.326L403.986 137.336L404.001 137.175L404.135 137.294L404.13 137.512L404.302 137.886L404.183 138.066L404.13 138.312L404.125 138.706L404.206 138.767L404.135 138.962L404.015 138.924L404.058 138.805L403.719 138.554L403.503 138.426L403.46 138.028L403.331 137.952L403.322 137.782L403.231 137.825L403.211 138.005L403.302 138.062L403.446 138.195L403.393 138.285L403.288 138.294L403.092 138.223L402.953 138.166L402.881 138.024V137.801L402.657 137.787L402.69 137.929L402.494 137.948L402.437 137.73V137.725L402.312 137.627L402.389 137.859L402.289 138.02L402.395 138.029L402.711 138.078L402.878 138.457L402.6 138.391L402.333 138.277L402.06 138.164L402.074 138.282L402.294 138.363L402.275 138.652L402.581 138.628L402.896 138.756L402.959 138.993L402.667 138.944L402.528 138.934L402.648 139.082L402.744 139.148L402.973 139.105L403.284 139.228L403.208 139.573L402.988 139.682L402.59 139.852L402.303 139.91L402.098 139.692L401.945 139.654L401.457 139.303L401.404 139.142L401.213 139.071L400.678 138.644L400.648 138.56L400.404 138.55L400.175 138.157L400.07 138.105L399.811 137.787L399.433 137.55L399.404 137.446L399.309 137.327L399.232 137.422L399.133 137.46L399.061 137.318L398.962 137.237L398.789 137.356L398.732 137.484L398.646 137.541L398.593 137.488L398.693 137.308L398.649 137.124L398.535 136.972L398.32 137.095L398.41 137.327L398.291 137.36L398.229 137.218L398.129 137.204L397.881 137.408L397.843 137.597L397.747 137.575L397.786 137.419L397.714 137.253L397.614 137.168L397.409 137.249L397.452 137.372L397.284 137.377L397.289 137.197L397.14 137.182L397.064 137.249L397.117 137.362L397.222 137.528L397.313 137.485L397.49 137.556L397.576 137.461L397.547 137.3L397.596 137.272L397.668 137.423L397.659 137.49L397.606 137.588L397.625 137.678L397.951 137.754L397.994 137.455L398.108 137.347L398.266 137.498L398.396 137.48L398.491 137.356L398.463 137.124L398.515 137.072L398.554 137.356L398.448 137.522L398.498 137.679L398.627 137.66L398.756 137.665L398.838 137.414L398.943 137.324L399.063 137.495L399.139 137.571L399.159 137.836L399.556 137.964L399.695 138.097V138.102L400.048 138.446L400.297 138.583L400.574 138.977L400.727 139.026L400.784 139.168L400.966 139.282L401.047 139.457L401.449 139.746H401.53L401.564 139.845H401.846L401.995 139.977L402.181 140.096L402.31 140.139L402.43 140.224L402.669 140.286L403.086 140.091L403.138 139.993L403.363 139.912L403.368 140.031L403.23 140.092L403.13 140.177L403.135 140.244L403.27 140.192L403.369 140.282L403.393 140.419L403.407 140.533L403.311 140.5L403.201 140.424L403.034 140.481L403.053 140.53L403.22 140.473L403.287 140.539L403.292 140.677L403.216 140.738L403.166 140.871L403.186 140.932L403.042 140.951L403.076 141L403.248 140.981L403.258 140.877L403.363 140.857V141.028L403.368 140.857L403.373 140.734L403.583 140.701L403.593 140.877L403.742 140.824L403.69 140.621L403.867 140.569L403.929 140.729L404.168 140.924L404.182 140.819L404.48 140.99L404.43 141.057L404.267 141.132L404.172 141.137L404.047 141.223L403.898 141.156L403.812 141.123L403.654 141.18V141.185L403.555 141.28L403.689 141.256L403.713 141.308L403.928 141.313L403.995 141.403L404.115 141.417L404.096 141.512L403.938 141.635L403.952 141.839L404.019 141.91L404.048 141.839L404.038 141.778L404.163 141.598L404.144 141.479L404.211 141.45L404.206 141.327L404.287 141.299L404.345 141.441L404.412 141.493V141.427L404.383 141.289L404.493 141.233L404.531 141.152L404.627 141.181L404.677 141.375L404.615 141.972L404.634 142.147L404.558 142.299L404.462 142.342L404.447 142.261L404.543 142.133L404.529 142.01L404.479 142.019L404.455 142.114L404.406 142.19L404.262 142.199L404.212 142.194L404.174 142.332L404.002 142.427L403.858 142.525L403.743 142.743L403.694 142.933L403.531 142.883L403.359 142.632L403.364 142.495L403.254 142.443L403.168 142.306L402.969 142.197L402.854 142.202L402.534 142.05L402.481 141.946L402.531 141.875L402.521 141.747L402.469 141.761L402.402 141.828L402.311 141.814V141.747L402.115 141.525L402.053 141.548V141.624L402.268 141.847V141.923L402.177 141.928L402.095 141.899L402.061 141.804L401.76 141.624H401.602L401.526 141.553L401.602 141.012L401.492 140.941L401.44 140.789L401.277 140.619L401.119 140.538L400.741 140.587L400.691 140.696L400.4 140.762L400.271 140.782L400.256 140.831L400.405 140.888L400.377 141.021L400.252 141.03L400.071 140.859L399.832 140.651L399.597 140.601L399.2 140.687L399.205 140.568L399.128 140.431L399.085 140.236L399.171 140.218L399.224 140.128L399.075 140.075L399.046 140.019L399.103 139.957L398.989 139.886L398.898 139.991L398.927 140.076L398.998 140.119L398.979 140.237L399.028 140.47L399.072 140.522L399.048 140.602L398.943 140.635L398.933 140.726L398.828 140.745L398.799 140.892L398.593 140.869L398.416 140.764L398.149 140.551L398.034 140.272L397.819 140.173L397.666 140.334L397.398 140.657L397.293 140.595L397.264 140.296L397.297 140.145L397.077 140.306L396.939 140.334L396.815 140.429L396.36 140.5L396.183 140.402L395.801 140.52L395.701 140.572L395.659 140.444L395.601 140.321L395.51 140.473L395.395 140.525L395.381 140.729L395.486 140.696L395.577 140.611L395.649 140.729L395.821 140.801L395.907 140.758L395.997 140.701L395.988 140.582L396.112 140.634L396.208 140.611L396.241 140.758L396.347 140.816L396.446 140.783L396.537 140.65L396.642 140.645L396.685 140.588L396.781 140.578H396.891L397.035 140.503L397.107 140.38L397.164 140.437L397.246 140.74L397.499 140.844L397.58 140.768L397.638 140.602L397.748 140.465L397.844 140.38L397.868 140.323L397.997 140.356L397.973 140.504L398.098 140.637L398.193 140.888L398.098 140.926L398.002 141.024L398.021 141.209C398.04 141.186 398.054 141.157 398.074 141.133L398.223 140.925L398.357 140.934L398.548 140.967L398.995 141.218L399.239 141.085L399.852 140.962L399.87 141.137L400.033 141.123L400.143 141.265L400.292 141.315L400.45 141.49L400.574 141.518L400.723 141.438L400.776 141.153L400.826 141.068L400.802 140.97L400.864 140.884L401.098 141.05L401.055 141.202L401.122 141.476L401.308 141.756L401.323 141.936L401.29 142.197L401.328 142.424L401.543 142.538L401.935 142.462L402.131 142.538L402.119 142.693L401.908 142.779L401.87 142.907L402.061 142.826L402.195 142.764L402.405 142.707L402.778 142.987L403.065 143.039L403.123 143.219H402.932L403.031 143.376L403.022 143.499L402.835 143.641L403.07 143.603L403.199 143.494L403.19 143.755L403.065 143.845L402.951 144.162L402.826 144.428L402.707 144.47L402.756 144.613L402.886 144.646L402.836 144.518L403.008 144.437L403.099 144.295L403.06 144.238L403.113 144.181L403.127 144.062L403.247 144.043L403.271 143.891L403.519 143.758L403.548 143.578L403.692 143.529L403.94 143.548V143.553L404.112 143.525L404.108 143.24L404.385 143.207L404.434 143.62L404.568 143.762L404.535 143.88L404.764 143.862L404.798 143.952L404.947 143.938L405.014 144.046L405.248 143.975L405.258 143.88L405.105 143.895L404.909 143.843L404.859 143.72L404.66 143.639L404.751 143.53L404.727 143.359L404.88 143.316L405.062 143.459L405.112 143.364L404.963 143.265L404.767 143.213L404.618 143.28L404.484 143.242L404.384 142.663L404.484 142.654L404.503 142.758L404.702 142.735L404.725 142.833L404.941 142.753L404.917 142.644L404.668 142.687L404.635 142.597L404.927 142.559L405.328 142.777L405.563 142.8L405.75 142.795L405.774 142.975L405.883 143.046L406.065 143.292L406.218 143.202L405.955 142.975L405.926 142.8H406.137L406.529 142.88L406.404 143.25H406.504L406.461 143.459L406.599 143.378L406.561 143.051L406.681 143.046L406.795 143.127L406.819 143.392L406.918 143.364L406.923 143.241L407 143.136L406.88 143.075L406.847 142.933L406.617 142.942L406.589 142.823L406.828 142.738L406.952 142.553L407.167 142.501L407.426 142.572L407.493 142.743L407.866 143.634L408.153 144.164L408.454 144.615L408.802 145.156L409.132 145.796L409.247 146.061L409.329 146.384Z"
2058
+ fill="#E5E5E5"
2059
+ stroke="white"
2060
+ stroke-linejoin="round"
2061
+ [attr.fill]="usaStates['VA']['color']"
2062
+ />
2063
+ <path
2064
+ d="M380.565 145L377.874 138.7H379.8L382.068 144.154H380.934L383.256 138.7H385.02L382.32 145H380.565ZM384.413 145L387.194 138.7H388.949L391.739 145H389.885L387.707 139.573H388.409L386.231 145H384.413ZM385.934 143.776L386.393 142.462H389.471L389.93 143.776H385.934Z"
2065
+ fill="white"
2066
+ [attr.fill]="
2067
+ usaStates['VA']['color'] === lowestBlue
2068
+ ? blueText
2069
+ : whiteText
2070
+ "
2071
+ />
2072
+ </g>
2073
+ <path
2074
+ d="M407.312 139.345L407.494 138.672L407.351 138.601L407.475 137.795L407.729 137.7L407.571 138.534L407.877 138.79L407.686 138.966L407.681 139.43L407.513 140.146L407.312 139.345Z"
2075
+ fill="#E5E5E5"
2076
+ stroke="white"
2077
+ stroke-linejoin="round"
2078
+ />
2079
+ <g
2080
+ class="zoomable-state state-VT"
2081
+ (mouseenter)="onStateHover('VT', false, $event)"
2082
+ (mouseleave)="onStateHover('VT', true, $event)"
2083
+ [ngbPopover]="countryPopoverTemplate"
2084
+ [disablePopover]="
2085
+ currentlyHoveredState?.state !== usaStates['VT'].state
2086
+ "
2087
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
2088
+ triggers="mouseenter:mouseleave"
2089
+ autoClose="false"
2090
+ container="body"
2091
+ >
2092
+ <path
2093
+ d="M423.37 52.8475L423.522 53.3543L423.437 53.596L423.398 53.6624L423.016 54.3258L422.983 54.375L422.939 54.4414L422.829 54.5787L422.81 54.6073L422.566 54.7874L422.399 54.7731L421.887 55.4365L421.352 55.7731L420.816 56.0998L420.778 56.1377L420.754 56.1569L420.496 56.6215L420.472 56.7302V56.7967L420.72 57.6687L420.864 57.8631L420.998 57.9615C420.988 58.1462 420.978 58.3311 420.969 58.5161L421.141 58.6637L420.998 59.0663L420.845 59.867L421.036 60.0899L420.983 60.6583L420.685 61.2601L420.809 61.8098L420.786 62.3595L420.508 62.8334L420.35 62.9235L420.151 63.326L420.261 63.6011L420.122 64.2123L420.299 64.4092L419.931 64.8117L420.003 65.3801L420.218 67.1286L420.385 67.1192L420.352 67.4179L420.548 67.5459L420.515 68.4981H420.51L420.539 69.2988L420.72 69.8057L420.639 70.4946L420.859 71.1058L420.376 71.6033L420.5 72.0463L420.323 72.5487L420.5 72.8095L420.787 73.2263L421.667 73.9276L417.951 74.715L417.219 74.8666L415.316 75.2789L415.1 75.3405L414.771 74.6107L414.938 74.1225L414.727 73.1875L413.905 69.2073L413.436 67.0656L413.225 66.5302L412.843 66.4071L412.628 65.976L412.116 66.0518V66.7767L411.858 66.668L411.825 66.6251L411.748 65.9903L411.791 65.5474L411.94 64.7418V64.7369L411.658 64.1921L411.524 63.9505L410.829 61.9412L410.589 61.7704L410.57 61.4058V61.0515L410.575 60.1514L410.896 59.2464V59.2415L410.598 58.1185L410.679 57.4645L410.67 57.3459L410.665 57.3409L410.521 56.9571L410.411 56.7204L410.048 56.2844L409.823 56.1564L409.694 56.0428L409.559 55.5831L409.497 55.1614L409.454 54.408L409.512 53.5596L409.033 53.2185L409.015 52.7638L409.172 52.2569L409.091 51.8588L408.793 51.5557L408.802 51.3706L409.936 51.0675V51.0626L414.824 49.9066L416.819 49.4799L417.153 49.4607L418.78 48.9775L419.723 48.6694L422.689 47.8545L422.502 48.229L423.043 48.9539L422.493 50.9012L422.555 51.0862L422.846 51.3657L423.201 51.7968L423.392 52.0335L423.425 52.0857L423.624 52.408L423.37 52.8475Z"
2094
+ fill="#E5E5E5"
2095
+ stroke="white"
2096
+ stroke-linejoin="round"
2097
+ [attr.fill]="usaStates['VT']['color']"
2098
+ />
2099
+ <path
2100
+ d="M399.565 48L396.874 41.7H398.8L401.068 47.154H399.934L402.256 41.7H404.02L401.32 48H399.565ZM405.712 48V43.113H403.777V41.7H409.42V43.113H407.494V48H405.712Z"
2101
+ fill="#E5E5E5"
2102
+ [attr.fill]="
2103
+ usaStates['VT']['color'] === defaultColor
2104
+ ? defaultColor
2105
+ : blueText
2106
+ "
2107
+ />
2108
+ </g>
2109
+ <g
2110
+ class="zoomable-state state-WA"
2111
+ (mouseenter)="onStateHover('WA', false, $event)"
2112
+ (mouseleave)="onStateHover('WA', true, $event)"
2113
+ [ngbPopover]="countryPopoverTemplate"
2114
+ [disablePopover]="
2115
+ currentlyHoveredState?.state !== usaStates['WA'].state
2116
+ "
2117
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
2118
+ triggers="mouseenter:mouseleave"
2119
+ autoClose="false"
2120
+ container="body"
2121
+ >
2122
+ <!-- WA state -->
2123
+ <path
2124
+ d="M81.1717 12.0422L80.7987 13.6484L78.8232 22.0636L78.6558 22.7791L77.2088 29.2332L76.9555 30.365L76.6351 31.7582L75.2288 37.9558L74.9517 39.1861H74.9467L74.7843 39.66L75.0281 40.6265L75.0376 40.6644L75.1091 41.2663L75.1588 42.2013L74.7952 43.2013L74.8384 43.9547L70.6246 42.9784V42.9833L69.7112 42.7603V42.7653L66.9131 42.097L66.7745 42.064V42.0591L59.3896 40.3013L59.3847 40.3062L59.1696 40.4814L59.0071 40.5572L58.4429 40.7136L58.1702 40.7565L57.8354 40.7328L57.6392 40.6836L57.4285 40.5749L56.2756 40.4184L55.8405 40.3948L55.4098 40.3662L55.0656 40.2097L54.6493 39.973L54.2569 40.2053L53.9172 40.5498L53.1184 40.474L52.3818 40.3982H51.3247L50.1718 40.5355L49.9279 40.597L49.5261 40.8957L48.0101 40.8057L47.414 40.7013L47.256 40.6029L47.1651 40.4701L46.9664 40.0956L46.7513 39.9479L46.426 39.8672L46.2636 39.9194L45.9337 40.0759L45.1111 40.1895L44.4366 40.2939L44.0347 40.4125L43.8673 40.1994L43.1719 39.8726L42.1437 40.3037L42.024 39.4415L41.0772 38.9061L40.8139 38.849L40.2879 38.7732L39.7619 38.323L38.9393 38.3087L38.303 38.2595L38.0924 38.2073L37.5663 37.9184L37.1118 37.947L36.7865 38.1178L36.5664 38.3072L33.8404 38.6817H33.6968L33.4862 38.6296H33.4768L33.2284 38.5065L31.0954 37.2034L30.8898 37.0518L30.4974 36.6444L30.3483 36.4549L30.3389 36.1847L30.4154 35.9903L30.5778 35.7158L30.7765 34.3841H30.7815L30.8342 34.2089L30.9057 33.171L30.6906 31.9865L30.6191 31.6977L29.3772 30.1908L29.0186 30.0432L28.6262 30.114L27.434 30.0619L27.3764 30.0427L27.056 29.5452L27.2234 29.057L27.142 28.806L27.0322 28.6092L26.9989 28.557L26.9751 28.5476L26.9318 28.5191L26.4391 28.4906L25.2147 27.7799L23.9758 27.9768L23.7463 27.8439L23.3638 27.3272L23.3877 27.0811L23.2108 26.9104L22.9575 26.7775L22.6133 26.8626L22.8045 26.6067L23.713 23.47L23.7036 24.0197L23.498 24.7825L23.2302 26.2751L23.4597 26.3366L23.718 26.531L23.8233 26.2278L24.1775 26.0192L24.3926 26.1993L24.407 26.4739L24.56 26.531L24.6414 26.1865L24.479 25.9498L24.2589 25.7933L24.3116 25.6368L24.2157 25.2766L24.5028 25.2151L24.6797 24.9542L24.6702 24.5896L24.5649 24.0113L24.7994 24.3524L25.01 24.1201L24.8809 23.874L24.9097 23.4095L25.5172 23.3603L25.546 23.692L25.699 23.7584L26.0914 23.6875L26.0626 23.5025L25.7948 23.4882L25.6513 23.0379L25.4218 22.815L25.4074 22.5261L25.1347 22.5498L24.9385 22.7013L24.6514 22.4267L24.4889 22.5975L24.2594 22.408L24.0826 22.4887L23.9296 22.3514L24.1209 21.726H24.1159L24.1209 20.5036L24.2788 20.5794L24.2883 20.5843L24.2023 21.3564L24.408 21.2334L24.5133 21.5286L24.8148 21.4794V21.1714L24.8769 20.9912L25.2976 20.7117L26.142 20.6832L26.3238 20.6453H26.3328L26.7058 20.6596L26.7873 20.4322L26.4143 20.4371L25.3522 19.8638L25.3855 19.4372L25.1372 19.2428L24.7592 19.0011L24.3573 19.0297L24.2137 19.9061L24.0796 19.8919L24.3568 18.949L24.5818 18.1291L24.6812 16.1863L24.4229 15.954L24.3131 15.4279L24.3181 15.2906L24.3851 14.7645L24.6384 13.5087L24.6623 13.3807L24.712 12.9378L24.7552 12.4211L24.7885 11.2366L24.779 11.1416L24.5828 10.2794L24.5396 10.2036L24.2242 9.61311L24.2147 9.60376L24.2053 9.58949L24.0761 9.43792L23.9232 9.35721L23.8417 9.14413L23.8273 8.17762L24.0617 7.1304L24.2868 6.81299L24.1377 6.13043L24.4104 6.06892L24.6211 5.56204L24.5828 5.41047L24.7934 5.26825L24.8843 5.04089L25.09 4.88932L25.1893 4.51975L24.9693 4.27812L24.7443 3.89427L24.8158 3.87508L25.2703 4.00303L25.5236 4.22596L25.7581 4.42969L26.0402 4.70921L26.1311 4.80419L26.6775 5.44885L28.8587 7.50047L29.3132 7.78491L30.0925 8.12939L31.078 8.45173L31.4367 8.51324L31.6473 8.67908L31.8097 8.88774L32.3263 8.91628L32.4793 9.13921L33.1251 9.44235L33.5746 9.65543L34.419 9.86409L34.9406 9.77895L35.4239 9.7883L35.6822 10.1628L35.6773 10.8119L35.792 11.3532L36.0071 11.2253L36.0741 10.6899L36.4328 10.6328L36.6052 10.7843L36.4904 11.1446L36.7437 11.3813L36.7532 11.6465L36.6538 11.8788L36.936 11.9772L37.2514 11.4275L37.0527 10.9207L37.3925 10.4989L37.7705 10.5132L37.9379 10.5624L37.8996 10.7991L37.5648 10.8276L37.4262 11.0835L37.536 11.4861L37.5857 11.8463L37.7292 11.9364L37.8008 12.7238L37.9299 13.1406V13.5909L37.5325 13.4924L37.4511 13.8571L36.9871 14.146L36.7432 14.5771L36.6091 14.6199L36.3608 15.1696L36.1407 15.141L36.7626 13.9658L36.8341 13.4398L36.5614 13.4206L36.4084 14.1218L36.2987 14.1169L36.3846 13.5722L36.1263 13.6573L35.9495 14.4939L35.5431 15.0623L35.1269 15.361L34.6773 15.6735L34.5194 15.7114L34.4697 15.7399L33.9437 16.1617L33.7713 16.574L33.3789 16.8821L32.7903 17.515L32.5558 17.9603L32.7947 18.3156L33.0337 18.1547L33.5304 18.3206L34.0271 18.1404L34.3813 18.1897L34.9123 18.0238L35.1418 17.9288L35.2233 17.5844L34.8646 17.6695L34.3575 17.8171L33.6879 17.9121L33.3481 17.8978L33.0466 17.6941L33.9407 16.8836L34.1891 16.514V16.5091H34.194L34.2993 16.3954L34.8015 16.0509L35.1939 16.0224L35.2799 15.7808L36.3558 15.7237L36.7144 15.4063L36.9106 14.8945L37.4416 14.5579L37.5907 14.3256L38.2026 14.084L38.5325 13.8044L38.4704 13.2026L38.7719 13.3256L38.8817 13.5057L38.9055 13.7946L38.7619 14.4058L38.829 14.6666L38.7048 14.7995L38.8196 15.1883L38.5518 15.2025L38.2747 15.0175L37.9876 15.362L37.7531 15.4284L37.5047 14.8694L37.2658 15.1346L37.5529 15.5135L37.3999 15.9072L37.5673 16.2768L37.3761 16.6134L37.0507 16.732L37.0661 16.1331L36.9702 15.8014L36.6499 16.2374L36.7934 16.4791L36.9658 16.4741L36.9419 16.7586L36.7269 16.9102L36.4686 17.0952L36.6027 17.2325L36.8133 17.1833L37.0716 17.1926L37.3776 17.1026L37.5355 16.8988L37.6696 17.079L37.5549 17.4864L37.7799 17.6665L37.0845 18.6901L35.3956 18.1596L37.0845 18.6951L36.9077 19.2497L36.6096 19.3727L36.709 19.8466L36.4745 20.1497L36.1447 19.8796L35.9008 19.7846L35.9534 19.5666L36.0632 19.2255L36.623 18.761L36.1208 18.6626L35.6902 18.7999L35.3842 19.4303L35.2744 19.9421L34.9635 20.6197L34.801 20.226L34.7772 19.7093L35.1552 19.231L35.2511 18.634L35.1125 18.3117L34.73 18.8663L34.3281 19.0321L33.9934 19.1409L33.8498 19.5105L33.8736 19.8185L33.9407 20.2309L33.51 20.1123L33.1703 20.2211L32.8593 20.3776L32.8355 20.572L32.5916 20.5912L32.4386 20.9135L32.6636 20.7806L32.9746 20.6669L33.0943 20.5247L33.2617 20.5296L33.4385 20.4017L33.6153 20.3687L33.6918 20.5818L33.4047 21.16L33.4097 21.6482L33.5865 21.6152L33.7301 21.255L33.8354 20.7668L34.0698 20.6684L34.0843 21.0473L34.1419 21.3648L34.2949 21.3977L34.424 20.758L34.5437 21.1517L34.802 21.6207L35.0891 21.7914V21.7963L35.3872 21.6541L35.6405 21.3318L35.9226 21.3367L36.0756 21.0478L36.3816 20.7826L36.6494 20.4795L36.9792 20.1286L37.0557 19.7118L37.2281 20.0956L37.467 20.5459L37.7586 20.4701L37.9498 20.2664L37.8008 20.0154L37.9106 19.8185L38.5657 19.7664L38.8047 19.1788L38.6517 18.6429L38.7664 18.387L38.7167 17.7994L38.7694 17.2925L38.8986 17.2217L39.0709 17.5061L39.2622 17.3732L39.3436 17.0416L38.9323 16.5676L38.9229 16.2881L39.4827 15.8428L39.4445 15.1046H39.4395L39.4445 15.081L39.5259 14.8443L40.5924 13.5082L40.8219 13.489L41.037 13.5175L41.2138 13.4368L41.2521 13.3847L41.3812 12.9723L41.3718 12.8158L41.0802 12.5126L40.7787 11.8872L40.7071 11.5747L40.7022 11.5555L40.7836 11.2853L40.8601 11.053L40.884 10.4797L40.9416 10.148L41.1234 9.74057V9.73565L40.9943 9.38034L40.5969 9.01569L40.1905 8.66038L40.1409 8.22929L40.2651 7.93058L40.1265 7.83216L39.9879 7.99308L39.8254 8.03097H39.6198L39.4956 7.97881L39.4718 7.66139L39.5915 7.57134L39.6412 7.36268L39.5915 7.20619L39.4147 7.12548L39.4529 6.97391L39.6635 7.01181L40.0177 6.94094L40.2045 6.97391L40.2571 7.34349L40.4558 7.23473L40.5899 7.79377L40.7886 7.90253L40.9704 7.74604L40.9515 7.37646L41.0568 7.05905L40.9992 6.75591L40.6451 6.50001L40.7444 6.37698L41.103 6.67569L41.2704 6.87008L41.6867 6.51477L41.5908 6.23033L41.3852 5.94589H41.3837L41.3643 5.14522L41.6753 4.83273L41.3355 4.43904H40.9481L40.5224 4.86078L40.6947 4.87013L40.7568 5.01235L40.6326 5.19739L40.3843 5.01727L40.3411 4.60045L40.5944 4.32093L40.6182 4.06011L40.427 3.84211L40.2646 3.98433L40.3987 3.35885L40.0425 2.73141L40.3723 2.57984L40.3818 2.2767L39.9228 2.17237L39.9278 2.13448L39.9948 2.03015L40.1935 1.87366L40.3992 1.75506L40.5482 1.66992L43.0318 2.3761L45.1986 2.98731L47.6325 3.71711L52.0614 4.87308L54.0125 5.39423L62.1589 7.5172L66.2003 8.52161L68.3049 9.03833L72.8584 10.1284L72.8634 10.1234L78.3398 11.3931V11.398L81.1717 12.0422Z"
2125
+ fill="#E5E5E5"
2126
+ stroke="white"
2127
+ stroke-linejoin="round"
2128
+ [attr.fill]="usaStates['WA']['color']"
2129
+ />
2130
+ <!-- WA name -->
2131
+ <path
2132
+ d="M51.187 28L49.144 21.7H50.98L52.699 27.154H51.772L53.581 21.7H55.219L56.929 27.154H56.038L57.811 21.7H59.512L57.469 28H55.561L54.103 23.365H54.616L53.095 28H51.187ZM59.1748 28L61.9558 21.7H63.7108L66.5008 28H64.6468L62.4688 22.573H63.1708L60.9928 28H59.1748ZM60.6958 26.776L61.1548 25.462H64.2328L64.6918 26.776H60.6958Z"
2133
+ fill="white"
2134
+ [attr.fill]="
2135
+ usaStates['WA']['color'] === lowestBlue
2136
+ ? blueText
2137
+ : whiteText
2138
+ "
2139
+ />
2140
+ </g>
2141
+ <path
2142
+ d="M35.4496 20.5757L35.3398 20.2796L35.6652 20.2559L35.8326 20.5792L35.4496 20.5757Z"
2143
+ fill="#E5E5E5"
2144
+ stroke="white"
2145
+ stroke-linejoin="round"
2146
+ />
2147
+ <path
2148
+ d="M35.261 20.6875L35.4284 20.7398L35.4522 21.0725L35.2083 21.3006L35.0742 20.9012L35.261 20.6875Z"
2149
+ fill="#E5E5E5"
2150
+ stroke="white"
2151
+ stroke-linejoin="round"
2152
+ />
2153
+ <path
2154
+ d="M35.9688 19.9199L36.3612 20.381L36.165 20.4797L35.9688 19.9199Z"
2155
+ fill="#E5E5E5"
2156
+ stroke="white"
2157
+ stroke-linejoin="round"
2158
+ />
2159
+ <path
2160
+ d="M36.2854 5.19819L36.1562 5.02289L36.1707 4.95642L36.2521 4.86138L36.4245 4.73828L36.6207 4.78112L36.9937 4.90422L36.8864 5.113L37.1115 5.40844L37.341 5.74032L37.3171 5.95353L37.4939 6.00277L37.6137 6.12144L37.4512 6.25882L37.26 6.20662L37.1691 6.41048L37.1929 6.71872L37.4656 6.81376L37.4035 6.97477L37.1214 6.87038L36.9157 6.70937L36.4424 6.20662L36.3276 6.03133L36.2844 5.92251L36.2462 5.73293L36.1965 5.36806L36.2854 5.19819Z"
2161
+ fill="#E5E5E5"
2162
+ stroke="white"
2163
+ stroke-linejoin="round"
2164
+ />
2165
+ <path
2166
+ d="M23.7135 25.8931L23.7569 25.7218L23.707 25.5244L23.712 25.3008L23.8946 25.4341L23.8851 25.8857L23.8178 26.0047L23.7135 25.8931Z"
2167
+ fill="#E5E5E5"
2168
+ stroke="white"
2169
+ stroke-linejoin="round"
2170
+ />
2171
+ <path
2172
+ d="M34.6359 19.0869L34.4208 19.6226L34.4869 20.2012L34.1044 20.4903L34.0855 20.0633L34.0234 19.3666L34.3006 19.21L34.6359 19.0869Z"
2173
+ fill="#E5E5E5"
2174
+ stroke="white"
2175
+ stroke-linejoin="round"
2176
+ />
2177
+ <path
2178
+ d="M38.152 12.1082L37.9414 11.7098L37.9911 11.1741L38.2891 11.1455L38.2176 11.5675L38.152 12.1082Z"
2179
+ fill="#E5E5E5"
2180
+ stroke="white"
2181
+ stroke-linejoin="round"
2182
+ />
2183
+ <path
2184
+ d="M37.9303 16.9514L37.8444 16.6067L37.6055 16.6559L37.7729 15.9666L38.0838 15.4688L38.3372 15.7913L38.213 16.5023L38.1986 16.9386L37.9303 16.9514Z"
2185
+ fill="#E5E5E5"
2186
+ stroke="white"
2187
+ stroke-linejoin="round"
2188
+ />
2189
+ <path
2190
+ d="M37.6287 18.4984L37.7911 18.228L37.9635 18.0478L38.045 17.8203L38.1547 17.8819L38.0832 18.1428L38.1026 18.7401L38.045 18.9863L38.3559 19.1523L38.1359 19.2473L37.7882 19.3138L37.5204 19.4748L37.2383 19.5176L37.4151 18.9868L37.6287 18.4984Z"
2191
+ fill="#E5E5E5"
2192
+ stroke="white"
2193
+ stroke-linejoin="round"
2194
+ />
2195
+ <path
2196
+ d="M37.8594 5.9785L37.625 5.84523L37.5917 5.59842L37.4531 5.52241L37.5823 5.34668L37.7591 5.44195L37.9578 5.56535L38.1729 5.76971L38.0676 5.8551L37.929 5.82203L37.8594 5.9785Z"
2197
+ fill="#E5E5E5"
2198
+ stroke="white"
2199
+ stroke-linejoin="round"
2200
+ />
2201
+ <path
2202
+ d="M38.5649 1.4168L38.1836 1.27951L38.2123 1L38.2618 1.01427L38.6005 1.11269L38.6243 1.39712L38.5649 1.4168Z"
2203
+ fill="#E5E5E5"
2204
+ stroke="white"
2205
+ stroke-linejoin="round"
2206
+ />
2207
+ <path
2208
+ d="M36.3049 4.18411L36.1758 3.94727L36.3814 3.95219L36.592 4.14669L36.8791 4.3791L36.903 4.5544L36.9889 4.75136L36.5776 4.50959L36.3049 4.18411Z"
2209
+ fill="#E5E5E5"
2210
+ stroke="white"
2211
+ stroke-linejoin="round"
2212
+ />
2213
+ <path
2214
+ d="M37.565 4.29538L37.4453 4.1241L37.6654 4.00514L37.9525 3.98145L37.9286 4.16704L37.8571 4.40447L37.5173 4.47555L37.565 4.29538Z"
2215
+ fill="#E5E5E5"
2216
+ stroke="white"
2217
+ stroke-linejoin="round"
2218
+ />
2219
+ <path
2220
+ d="M37.6508 5.13618L37.4258 5.12683V4.95153L37.7174 4.74275L38.3537 4.34883L38.5449 4.3252L38.7173 4.35819L38.8415 4.41974L39.0998 4.65658L39.6258 5.21595L39.6308 5.23023L39.5066 5.31542L39.2582 5.40553V5.41045L39.0332 5.47692L39.0282 5.70441L38.8295 5.70934L38.7913 5.40109L38.6333 5.06922L38.6716 4.55712L38.4729 4.50492L38.4441 4.80381L38.5206 5.25436L38.535 5.53404L38.4774 5.64286L38.1426 5.69506L37.999 5.46757L37.9752 5.24451L38.0084 5.03573L37.846 4.98354V5.22186L37.7646 5.36958L37.6508 5.13618Z"
2221
+ fill="#E5E5E5"
2222
+ stroke="white"
2223
+ stroke-linejoin="round"
2224
+ />
2225
+ <path
2226
+ d="M38.8514 6.40781L38.684 6.39843L38.6602 6.03711L38.689 5.85645L38.8946 5.88508L39.0476 6.04204L39.1052 6.29379L38.8514 6.40781Z"
2227
+ fill="#E5E5E5"
2228
+ stroke="white"
2229
+ stroke-linejoin="round"
2230
+ />
2231
+ <path
2232
+ d="M40.1456 10.6896L40.1267 10.9642L40.2847 11.3766L40.5479 11.9451L40.5862 12.2862L40.4044 12.2577L40.3805 12.0017L40.2514 11.7315L40.1078 11.5799L39.9931 11.3338L39.8401 11.3624L39.7442 11.2014L39.7109 10.66L39.7874 10.565L39.7159 10.38L39.9454 9.94389L40.1987 9.90107L40.3517 10.0098L40.5142 9.81543L40.8489 10.1851L40.8201 10.4503L40.7238 10.4287L40.6617 10.3101L40.5276 10.2722L40.4843 10.4287L40.3934 10.6748L40.1456 10.6896Z"
2233
+ fill="#E5E5E5"
2234
+ stroke="white"
2235
+ stroke-linejoin="round"
2236
+ />
2237
+ <path
2238
+ d="M40.0865 4.87538L39.9375 4.70008L40.1362 4.36328L40.2559 4.64789L40.3612 5.12651L40.5599 5.37763L40.541 5.69523L40.3498 5.59675L40.1248 5.24123L40.0865 4.87538Z"
2239
+ fill="#E5E5E5"
2240
+ stroke="white"
2241
+ stroke-linejoin="round"
2242
+ />
2243
+ <path
2244
+ d="M39.7668 5.94821L39.7618 6.14294L39.8194 6.29971L39.7096 6.34901L39.6237 6.49691L39.3987 6.58713L39.4131 6.32584L39.3555 6.06455L39.5944 5.79883L39.7668 5.94821Z"
2245
+ fill="#E5E5E5"
2246
+ stroke="white"
2247
+ stroke-linejoin="round"
2248
+ />
2249
+ <path
2250
+ d="M37.7808 7.36952L37.8241 6.99037L37.6328 6.86234L37.6616 6.57773L37.8196 6.35468L38.0252 5.98981L38.1742 5.99916L38.2736 5.85686L38.3695 5.80762L38.4127 6.02575L38.3938 6.18677L38.5518 6.25324L38.3367 6.4502L38.1981 6.60186L38.3471 6.82L38.3089 6.99086L38.3585 7.06177L38.4827 6.74417L38.4971 6.45513L38.8607 6.48812L38.8846 6.73432L38.5547 6.97609L38.5354 7.28876L38.4922 7.51182L38.4107 7.56106L37.9562 7.47588L37.8941 7.44732L37.7808 7.36952Z"
2251
+ fill="#E5E5E5"
2252
+ stroke="white"
2253
+ stroke-linejoin="round"
2254
+ />
2255
+ <path
2256
+ d="M39.8438 6.78597L40.0688 6.16797L40.3603 6.64332L40.3936 6.90938L39.8438 6.78597Z"
2257
+ fill="#E5E5E5"
2258
+ stroke="white"
2259
+ stroke-linejoin="round"
2260
+ />
2261
+ <path
2262
+ d="M39.9461 8.31044L39.7548 8.69926L40.2138 9.22049L40.252 9.34846L40.2327 9.4528L40.2183 9.47642L40.0603 9.57142L39.9932 9.58569L39.8403 9.55271L39.797 9.53499L39.7205 9.36913L39.6629 9.31696L39.5531 9.28398H39.4041L39.3326 9.32188L39.0743 9.51629L38.8831 9.73925L38.4911 9.67281L38.4961 9.94744L38.9432 9.96172L39.2541 10.1748L39.3256 10.5873L39.3589 11.2222L39.1721 11.4191L39.3157 11.7415L39.2059 12.149L39.2491 12.4098L39.493 12.1967L39.4836 11.8222L39.5695 11.5377L39.7657 11.5992L39.8949 11.8552L39.9942 12.1633L40.1904 12.4L40.4249 12.528L40.329 12.8883L40.3787 13.2057L40.2352 13.5183L39.9436 13.6605L39.6088 13.6083L39.6038 13.4233L39.6997 13.2756L39.6565 13.0576L39.5467 12.8253L39.4126 12.7445L39.2139 12.8061L39.0465 12.8676L38.9605 12.7539L39.0465 12.5831L38.965 12.37L38.7832 12.2799L38.7162 12.024L38.8453 11.9196L38.7494 11.5751L39.0793 11.1725V10.7162L38.8642 10.574L38.582 10.6232L38.4961 10.1729L38.3471 10.0641L38.2944 9.9125L38.1797 9.75598L38.3088 9.4715L38.6436 9.21064L38.743 9.0305L39.3455 8.47138L39.4553 8.29124L39.4985 8.10175L39.5561 8.07812L39.7186 8.14457L39.7568 8.11602L39.8239 8.08748L39.8765 8.12045L39.9004 8.17262L39.9461 8.31044Z"
2263
+ fill="#E5E5E5"
2264
+ stroke="white"
2265
+ stroke-linejoin="round"
2266
+ />
2267
+ <path
2268
+ d="M273.508 51.7369L273.924 51.5331L273.986 51.3957L274.488 51.0402L274.675 50.7447L274.861 50.7305L275.115 50.9865L274.942 51.1003L274.744 51.119L274.318 51.3135L274.285 51.5316L274.524 51.4986L274.519 51.6503L274.194 51.7547H274.012L273.668 52.0993L273.529 52.1043L273.508 51.7369Z"
2269
+ fill="#E5E5E5"
2270
+ stroke="white"
2271
+ stroke-linejoin="round"
2272
+ />
2273
+ <path
2274
+ d="M274.499 50.3989L274.418 50.2612L274.59 49.9428L275.389 49.6768L275.518 49.7671L275.408 49.9645L275.283 50.1023V50.2212L275.044 50.2261L274.499 50.3989Z"
2275
+ fill="#E5E5E5"
2276
+ stroke="white"
2277
+ stroke-linejoin="round"
2278
+ />
2279
+ <path
2280
+ d="M275.846 49.1127L275.889 48.9797L275.832 48.7853L275.881 48.5765L275.981 48.4288L276.359 48.4238L276.296 48.7193V48.9753L276.115 49.1984L275.817 49.3313L275.773 49.2127L275.846 49.1127Z"
2281
+ fill="#E5E5E5"
2282
+ stroke="white"
2283
+ stroke-linejoin="round"
2284
+ />
2285
+ <path
2286
+ d="M305.05 64.2284V64.418L304.969 64.4229L304.825 64.6174L304.701 64.8877L304.711 65.2147L304.485 65.3427V65.6603L304.227 65.3806L304.022 65.2383L303.993 65.0438L304.042 65.0345L304.033 64.9394L303.975 64.9015L303.961 64.707L304.023 64.3845L304.104 64.3796L304.186 64.4697L304.425 64.4505L304.483 64.3889L304.64 64.3702L304.698 64.446L304.832 64.4367L304.918 64.3086L304.922 64.1855L305.05 64.2284Z"
2287
+ fill="#E5E5E5"
2288
+ stroke="white"
2289
+ stroke-linejoin="round"
2290
+ />
2291
+ <g
2292
+ class="zoomable-state state-WI"
2293
+ (mouseenter)="onStateHover('WI', false, $event)"
2294
+ (mouseleave)="onStateHover('WI', true, $event)"
2295
+ [ngbPopover]="countryPopoverTemplate"
2296
+ [disablePopover]="
2297
+ currentlyHoveredState?.state !== usaStates['WI'].state
2298
+ "
2299
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
2300
+ triggers="mouseenter:mouseleave"
2301
+ autoClose="false"
2302
+ container="body"
2303
+ >
2304
+ <path
2305
+ d="M303.893 66.1241L303.97 66.252L303.946 66.4607L303.903 66.6172L303.788 66.6787L303.592 66.5271L303.462 66.6644L303.506 67.3042L303.655 67.4464L303.468 67.6644L303.592 67.8539L303.549 68.0148L303.319 68.3938L303.008 68.4174L302.965 68.9292L302.774 69.0242L302.64 69.3795V69.6875L302.783 69.8819L302.645 69.8913L302.42 70.1757L302.544 70.3465L302.511 70.4941L302.076 70.8352L302.1 70.9867L302.009 71.1713L301.741 71.4843L301.794 71.906L301.636 72.2426L301.45 72.7402L301.445 72.7451L301.268 73.2613L301.015 73.5458L300.833 74.1427L300.751 74.5975L300.627 76.1944L300.469 76.6373V76.6422L300.838 77.6757L300.862 77.8843L300.838 78.0787L300.794 78.2264L300.656 78.4631L300.488 78.6432L300.206 78.809L300.057 78.9276L299.871 79.1314L299.862 79.7711L299.665 80.0792L299.598 80.4203L299.632 80.7047L299.412 81.4921C299.532 81.9422 299.654 82.3923 299.775 82.8425L299.832 83.7145L299.813 83.8046L299.249 85.3543H299.244L299.301 85.8991L299.215 86.2544L299.081 86.5575L298.885 86.8941L298.827 87.027L298.775 87.1786L298.751 87.3016L298.775 87.8277L298.588 88.6239L298.617 88.7804L298.761 89.1879L298.799 89.2494L298.99 89.5004L298.885 89.7893L298.914 90.088L299.072 90.2632L299.201 90.5949L298.933 90.903L299.082 91.372L299.302 91.4763L299.498 91.7558L299.475 92.244L299.647 93.0068L299.9 93.3513L300.254 93.5314L300.196 94.4664L299.986 94.8931L300.196 96.8217L296.973 97.0447L296.136 97.1254L292.893 97.3955L292.338 97.4334H292.333L291.013 97.5186L287.579 97.708L287.292 97.7272L283.777 97.9073V97.9024L283.059 97.9452L279.027 98.1775L277.301 98.2627L277.329 98.2105L277.325 98.149L277.239 97.8744L276.727 96.9502L276.669 96.8931L276.573 96.8503L276.172 96.7553L275.128 96.5584L274.708 96.46L274.483 96.3616L273.832 95.9349L273.736 95.7263L272.999 94.115L272.818 93.2809C272.762 92.9335 272.706 92.586 272.65 92.2386L272.856 91.433L273.473 90.4094L273.502 90.2721L273.262 89.8882L273.076 89.6559L272.22 89.0654L272.229 88.5063V88.5014L272.09 87.6648L271.564 85.2337V85.2244L271.373 83.9163L270.225 82.4665L268.988 82.091L266.482 80.314L266.358 80.063L266.19 79.466L266.004 79.3051L266.054 79.1343L266.039 78.8927L265.599 78.4901L264.71 78.0778L263.528 77.6038L262.95 77.2013L262.906 76.6801L262.883 76.6309L262.806 76.5694L262.72 76.5266L262.582 76.498L261.53 76.4552L261.195 76.4173L261.071 76.3602L260.501 75.8012L260.482 75.6924L260.396 75.5881L259.588 74.9055L259.028 74.5832L259.301 73.2992L259.358 72.4794L259.191 71.7116L259 71.3091L258.976 70.9538L259.138 69.5178C259.178 69.2002 259.218 68.8828 259.258 68.5655L259.353 68.4804L259.363 68.471L259.568 68.22L259.86 67.4858L259.707 66.7136L259.325 66.003L258.717 65.6807L258.564 65.7043L258.196 65.6428L258.091 65.5621L258.067 65.349L258.043 65.0601V64.9892L258.052 64.8185L258.363 63.8707L259.138 62.3402L259.234 62.1694L259.33 62.0414L259.712 61.7147L261.31 60.6723L262.429 59.9804L262.415 59.5538L262.396 59.0798V59.0749H262.391L262.291 56.2506L262.192 53.5828L262.365 53.7014L262.575 53.7206L262.805 53.7064L262.843 53.6827L262.876 53.6498L262.981 53.3796L262.972 53.261L262.963 53.2516L262.924 53.2088V53.2034L262.9 53.1325L262.905 53.0518L262.949 52.9667L263.489 52.602L263.688 52.5878L264.128 53.0144L264.233 53.0636L264.271 53.0351L264.487 53.1773L264.601 53.2388L264.687 53.2767L264.836 53.3003L265.759 53.1488L265.984 53.0873L267.767 52.3491L267.877 52.3584L268.073 52.3156L268.896 51.9081L269.078 51.8939L269.326 51.5292L269.919 51.3919L270.13 51.0474L270.329 51.0523L270.534 51.2797L270.769 50.9052L270.84 51.0661L271.084 51.0804L271.151 51.0376L271.132 50.8196L271.29 50.8338L271.419 50.9003L271.563 50.7152L271.553 50.5966L271.692 50.4638L271.812 50.4116L272.032 50.1227L272.4 50.2556L272.797 49.8717L272.912 49.8525L273.051 49.9018L273.462 50.2192L273.715 50.508L273.749 50.5651V50.6173L273.6 50.7782L273.423 51.3422L273.193 51.6168L273.136 51.7777L272.939 51.792L272.944 52.0007L272.835 52.1094L272.84 52.3063L273.074 52.6616L273.055 52.8323L272.844 53.041L272.677 53.1168L272.672 53.1217L272.581 53.259L272.59 53.444L272.491 53.7851L272.4 53.8136V53.8515L272.481 53.9367L272.591 53.9696V53.9603L272.663 53.9795H272.725L272.758 53.9746L273.571 53.4824L273.753 53.3496L273.82 53.231L273.806 53.0459L273.944 52.7472L274.838 53.4199L275.46 53.8181L275.738 53.761L276.221 53.9883L276.47 53.9554L277.335 54.4199L278.885 56.3013L279.588 56.4529L280.368 56.6094L285.878 57.7324L286.294 57.8175L286.619 57.884L287.14 58.0592L287.681 58.3244L288.15 58.5474L290.101 59.0395V59.0252L290.111 59.0538L290.26 59.3146L291.604 59.1724L293.842 59.4519H293.857L294.048 59.4804L294.339 59.6227L294.521 59.7413L294.641 59.817L294.866 60.1345L294.89 60.1674L294.904 60.2053L294.794 60.3904L294.67 60.5611L294.618 60.6039L294.484 60.7747L294.479 60.7841L294.469 60.822L294.519 60.9169H294.528L294.82 61.1536L294.887 61.1679L294.986 61.1965H294.996L295.101 61.1822V61.1965L296.914 61.6797L297.057 61.7983L297.071 61.8077L297.091 61.8264L297.32 62.1059L297.397 64.0744L296.641 65.69L297.737 65.695L298.129 65.2924L298.576 65.6812L298.079 67.316L298.084 67.3209L298.156 67.5483L298.189 67.6054L298.797 68.2402H298.802L299 68.2732L299.348 68.3254L299.166 68.7092L299.104 68.9061L299.147 69.688L298.808 69.7545L298.157 69.8967H298.152L298.102 69.906L297.758 70.0045L297.708 70.0424L297.574 70.2653L297.517 70.5114L297.722 70.72L297.703 70.9095L297.507 71.1039L297.473 71.3312L297.296 71.3741L297.2 71.5635L296.98 72.2554L296.65 72.658L296.626 73.0276L296.631 73.2171L296.545 73.3593L296.516 73.7338L296.655 73.8322L296.593 73.998L296.44 74.2933L296.334 74.3076L296.329 74.374L296.645 74.6486L296.927 74.7195L297.138 74.7102L297.248 74.6344L297.329 74.4971L297.435 74.2604L297.444 74.2033L297.406 74.1275L297.42 74.0896L297.664 73.8051L298.09 73.4641L298.443 73.3455L298.616 72.9808V72.9759L298.687 72.4454L299.257 71.4218L299.438 71.1329L299.897 71.0242L300.165 70.7633L300.509 70.7683L300.777 70.4129L300.892 70.4936L300.921 70.6974L301.026 70.7874L301.16 70.6595L301.155 70.4557L300.997 70.3421L301.016 70.0247L301.236 69.4228L301.484 68.8066L301.9 68.3706L301.866 67.8874L301.986 67.7215L301.957 67.3091L302.12 67.224L302.182 67.3377L302.381 67.347L302.577 67.0675L302.859 66.9489L302.902 66.2333L303.146 66.1433L303.222 65.8825L303.313 65.8775L303.567 65.7117H303.749L303.916 65.7826L303.954 65.9105L303.893 66.1241Z"
2306
+ fill="#E5E5E5"
2307
+ stroke="white"
2308
+ stroke-linejoin="round"
2309
+ [attr.fill]="usaStates['WI']['color']"
2310
+ />
2311
+
2312
+ <path
2313
+ d="M277.187 80L275.144 73.7H276.98L278.699 79.154H277.772L279.581 73.7H281.219L282.929 79.154H282.038L283.811 73.7H285.512L283.469 80H281.561L280.103 75.365H280.616L279.095 80H277.187ZM286.151 80V73.7H287.933V80H286.151Z"
2314
+ fill="white"
2315
+ [attr.fill]="
2316
+ usaStates['WI']['color'] === lowestBlue
2317
+ ? blueText
2318
+ : whiteText
2319
+ "
2320
+ />
2321
+ </g>
2322
+ <g
2323
+ class="zoomable-state state-WV"
2324
+ (mouseenter)="onStateHover('WV', false, $event)"
2325
+ (mouseleave)="onStateHover('WV', true, $event)"
2326
+ [ngbPopover]="countryPopoverTemplate"
2327
+ [disablePopover]="
2328
+ currentlyHoveredState?.state !== usaStates['WV'].state
2329
+ "
2330
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
2331
+ triggers="mouseenter:mouseleave"
2332
+ autoClose="false"
2333
+ container="body"
2334
+ >
2335
+ <path
2336
+ d="M387.547 119.756L387.04 121.964L385.05 120.926L383.162 119.912L382.062 119.348L382.033 119.334L382.024 120.012L382.186 120.196L382.105 120.556L382.311 120.575L382.22 120.982L381.985 121.39L381.923 121.651L381.847 121.731L382.045 121.784L381.847 122.325L381.952 122.391L381.966 122.486L382.165 122.624L381.94 122.932L381.911 123.15L381.734 123.339L381.476 123.505L381.237 123.965L381.075 124.32L381.218 124.391L380.945 125.049L380.747 124.926L380.541 125.222L380.436 125.591L380.111 125.918L380.067 125.657L379.842 125.747L379.761 126.022L379.579 126.202L379.115 127.572L377.934 126.966L377.533 127.868L377.538 127.873L376.672 131.175L376.076 132.028L374.603 131.782L374.081 131.014L373.919 130.853L373.746 130.778L372.895 130.581L372.881 131.481L372.837 132.253L372.612 133.054L372.086 133.864L372.081 133.902V133.916L372.287 134.329L371.981 134.779L371.345 135.537L371.498 136.296L371.263 136.746H371.268L370.672 138.087L369.715 139.57L369.089 141.244H369.094L369.849 141.832L369.352 142.422L369.061 142.697L369.157 142.943L368.999 143.062L369.233 143.128L369.367 142.967L369.463 143.024L369.382 143.27L369.209 143.445L368.87 143.626L368.831 143.758L368.463 144.029L368.047 144.408L367.636 143.82L366.77 144.498L366.684 144.564L365.617 145.36L364.757 144.877C364.766 144.972 364.771 145.071 364.78 145.166L364.637 145.417L365.014 145.749L364.574 146.203L363.957 146.506L362.957 146.862L361.953 147.464L360.509 146.487L360.161 147.188L359.53 147.852L359.525 147.861L359.147 148.202L359.118 148.216L358.113 148.413L357.535 148.072L356.559 147.728L356.46 147.676H356.455L355.732 147.055L355.612 146.363L354.99 146.012L354.928 145.851L354.952 145.776L355.339 145.431L355.368 145.26L355.076 145.152L354.847 145.047L354.335 145.222L353.775 145.099H353.77L353.216 144.626L352.952 144.128L352.654 144.303L352.023 143.934L351.698 143.445L351.683 143.388L351.688 143.379C351.353 142.976 351.019 142.569 350.684 142.166L349.904 141.375L350.124 140.991V140.929L350.119 140.92L350.114 140.904L349.53 140.695L349.099 140.012L348.841 139.903L348.683 139.608V139.599L348.295 139.39L348.305 139.148L348.52 138.22L348.64 137.841L348.62 137.395L348.329 137.064L348.262 136.481L348.563 136.576L349.056 136.367L349.768 135.979L350.066 135.993L350.458 135.845L350.607 135.618L350.622 135.547L350.641 135.466L350.679 134.684V134.661L350.684 134.187L350.808 134.073L351.262 134.106L351.492 133.969L351.568 133.656L351.291 133.054L351.353 132.69L351.2 132.486L351.109 132.216L350.904 132.003L350.923 131.785L351.171 131.61L351.429 131.33L351.468 131.027L351.372 130.69H351.367L351.491 130.525L351.664 129.885L351.688 129.733L351.927 129.497L352.08 129.075L352.242 129.103L352.5 129.459L352.816 129.402L353.199 129.956L352.988 130.34L353.022 130.425L353.304 130.61L353.735 130.435L353.831 129.928L353.907 129.762L354.251 129.947L354.533 129.852L354.505 129.596L354.306 129.454L354.449 128.98L354.292 128.729L354 128.539L353.909 128.416L353.866 128.269L354.167 128.231L354.392 128.041L354.354 127.487L354.23 127.037L354.402 126.662L354.579 126.592L354.584 126.397L354.637 126.094L354.809 125.98L355.579 125.928L355.555 125.108L356.002 124.71L356.222 124.312L356.384 124.263L356.48 124.272L356.633 124.424L356.872 124.867L357.12 124.933L357.943 124.213L358.307 124.227L358.388 123.886L358.584 123.591L358.919 123.434L359.029 123.23L359.55 122.207L360.225 121.363L360.656 121.297L360.828 120.942L360.795 120.321L361.01 120.223L360.986 119.981H360.981L360.627 119.611L360.929 119.081L360.852 118.721L360.929 118.546L361.091 118.349L360.893 117.927L361.184 117.965L361.337 117.842L361.179 117.472L361.337 117.177L361.194 116.727L361.232 116.466C361.237 116.376 361.237 116.286 361.241 116.196L361.142 116.044L361.371 115.679L361.257 115.078L361.419 114.737L361.477 114.4L361.548 114.092L361.859 113.797L361.802 113.612L361.901 113.228L361.715 112.887V112.626L361.442 112.429L361.548 112.263L361.495 112.022L361.572 111.709L361.528 111.443L361.318 111.202L361.208 110.941L361.05 110.756L360.806 110.553L360.787 110.425L361.002 110.117L361.294 109.937L361.476 109.97L361.629 109.818L361.906 109.621L362.197 111.365L362.341 112.217L362.767 114.809C362.853 115.331 362.934 115.847 363.02 116.368L363.546 119.557H363.551L364.364 119.429L368.549 118.737L369.807 118.524V118.519L372.191 118.107L373.095 123.694L373.349 123.599L374.028 122.864L374.468 122.059C374.989 121.433 375.515 120.813 376.036 120.189L376.94 120.386L378.323 118.504L379.337 118.907L380.939 118.817L381.819 117.329L382.266 117.414L382.366 117.4L382.664 116.859L382.884 116.518L382.941 116.451L382.991 116.432L383.278 116.441L383.589 116.474L383.895 116.588L384.278 116.863L384.421 117.019L384.656 117.28L385.057 117.132L385.378 117.118L385.789 116.966L386.091 116.924L386.133 117.212L385.765 117.364L386.133 117.937L386.377 118.07L386.616 118.075L386.721 118.666L387.271 118.736L387.238 119.58L387.547 119.756Z"
2337
+ fill="#E5E5E5"
2338
+ stroke="white"
2339
+ stroke-linejoin="round"
2340
+ [attr.fill]="usaStates['WV']['color']"
2341
+ />
2342
+ <path
2343
+ d="M355.187 139L353.144 132.7H354.98L356.699 138.154H355.772L357.581 132.7H359.219L360.929 138.154H360.038L361.811 132.7H363.512L361.469 139H359.561L358.103 134.365H358.616L357.095 139H355.187ZM366.217 139L363.526 132.7H365.452L367.72 138.154H366.586L368.908 132.7H370.672L367.972 139H366.217Z"
2344
+ fill="white"
2345
+ [attr.fill]="
2346
+ usaStates['WV']['color'] === lowestBlue
2347
+ ? blueText
2348
+ : whiteText
2349
+ "
2350
+ />
2351
+ </g>
2352
+ <g
2353
+ class="zoomable-state state-WY"
2354
+ (mouseenter)="onStateHover('WY', false, $event)"
2355
+ (mouseleave)="onStateHover('WY', true, $event)"
2356
+ [ngbPopover]="countryPopoverTemplate"
2357
+ [disablePopover]="
2358
+ currentlyHoveredState?.state !== usaStates['WY'].state
2359
+ "
2360
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
2361
+ triggers="mouseenter:mouseleave"
2362
+ autoClose="false"
2363
+ container="body"
2364
+ >
2365
+ <path
2366
+ d="M168.17 107.038L168.012 108.914L167.639 113.193L160.322 112.577L157.581 112.316H157.576L150.075 111.554L149.009 111.43V111.426L144.613 110.899L140.838 110.457L135.917 109.869L133.195 109.547L126.662 108.675L125.37 108.485L121.539 107.978L121.219 107.929L120.071 107.773L118.894 107.602H118.884L118.497 107.545V107.55L114.8 107.024L110.352 106.299L110.799 103.55L111.372 99.996L112.104 95.4232L112.998 89.8888L113.902 84.4159L114.443 81.0941L115.547 74.0006L116.392 68.7122L116.755 66.4805V66.4755L117.344 63.04L118.639 63.2369L119.596 63.4264L119.936 63.545L121.093 63.7251H121.113L123.667 64.0661L124.537 64.1089L125.183 64.2074L126.933 64.4775V64.4726L131.018 65.0174L132.448 65.2782L132.606 65.3018L133.625 65.4391L136.009 65.7516L138.879 66.1355L141.634 66.4721L143.839 66.7467L147.502 67.1921L147.913 67.2728L149.396 67.4529L154.232 68.012L155.982 68.197V68.2019L157.46 68.2777L163.185 68.8461L163.735 68.8983L171.34 69.6089L170.599 78.4937L170.561 78.9203L170.288 82.0527L169.968 85.8721L169.509 91.3499L169.15 95.5954H169.145L168.576 102.253L168.289 105.57L168.17 107.038Z"
2367
+ fill="#E5E5E5"
2368
+ stroke="white"
2369
+ stroke-linejoin="round"
2370
+ [attr.fill]="usaStates['WY']['color']"
2371
+ />
2372
+ <path
2373
+ d="M135.187 93L133.144 86.7H134.98L136.699 92.154H135.772L137.581 86.7H139.219L140.929 92.154H140.038L141.811 86.7H143.512L141.469 93H139.561L138.103 88.365H138.616L137.095 93H135.187ZM145.629 93V90.336L146.043 91.407L143.226 86.7H145.107L147.141 90.111H146.052L148.095 86.7H149.823L147.015 91.407L147.411 90.336V93H145.629Z"
2374
+ fill="white"
2375
+ [attr.fill]="
2376
+ usaStates['WY']['color'] === lowestBlue
2377
+ ? blueText
2378
+ : whiteText
2379
+ "
2380
+ />
2381
+ </g>
2382
+ <path
2383
+ d="M393.34 122.949L393.809 122.19L394.247 122.415L395.204 122.985L394.331 124.351L394.27 123.809L394.044 123.374L393.659 123.206L393.34 122.947"
2384
+ fill="#E5E5E5"
2385
+ />
2386
+ <path
2387
+ d="M393.34 122.949L393.809 122.19L394.247 122.415L395.204 122.985L394.331 124.351L394.27 123.809L394.044 123.374L393.659 123.206L393.34 122.947"
2388
+ stroke="white"
2389
+ stroke-linejoin="round"
2390
+ />
2391
+ <g
2392
+ class="zoomable-state state-KS"
2393
+ (mouseenter)="onStateHover('KS', false, $event)"
2394
+ (mouseleave)="onStateHover('KS', true, $event)"
2395
+ [ngbPopover]="countryPopoverTemplate"
2396
+ [disablePopover]="
2397
+ currentlyHoveredState?.state !== usaStates['KS'].state
2398
+ "
2399
+ [placement]="[ePlacement.RIGHT, ePlacement.LEFT]"
2400
+ triggers="mouseenter:mouseleave"
2401
+ autoClose="false"
2402
+ container="body"
2403
+ >
2404
+ <path
2405
+ d="M246.078 159.662L242.689 159.69H242.116V159.685L239.204 159.713H238.206V159.718L235.905 159.733H234.363V159.737H234.043L229.474 159.723V159.718L227.52 159.709L224.064 159.676V159.671L221.322 159.64L218.367 159.591L215.665 159.542L213.621 159.499V159.494L211.901 159.444L207.934 159.322L203.976 159.185L203.237 159.157L199.22 158.983L198.466 158.95V158.945L193.735 158.752L191.023 158.639L189.968 158.587L185.723 158.38H185.718L181.612 158.154L181.488 158.149L181.77 153.836V153.831L181.951 151.058L182.013 150.031L182.357 144.324H182.362L182.6 140.481L182.662 139.587L182.896 135.777L182.949 134.84L183.236 130.097L183.241 130.031L183.527 125.359L188.87 125.684V125.689L189.591 125.727L194.308 125.976L194.475 125.99V125.985L199.025 126.197L199.154 126.206V126.211L203.742 126.39H203.761L207.495 126.522L208.431 126.551L211.271 126.635L213.129 126.687L215.053 126.73L217.913 126.796L218.834 126.814V126.819L222.61 126.876V126.881L226.397 126.93L227.323 126.939L230.178 126.962L232.054 126.972V126.977H235.823L239.566 126.962H239.829L239.834 127.06L239.891 127.136L240.903 128.04L241.314 128.303L241.519 128.379L241.681 128.44L241.71 128.449H241.748L242.068 128.421L242.13 128.397L242.18 128.348L242.189 128.339L242.476 128.014L243.177 128.885L243.249 129.206L243.311 129.507L243.134 129.893L242.958 129.922L242.351 130.449L242.318 130.486L242.031 130.905L241.932 131.042L241.598 132.04L242.738 133.274L244.247 135.628L245.871 136.056V136.061L245.832 136.57L245.842 137.324C245.851 138.042 245.861 138.761 245.871 139.48L245.876 140.667L245.89 143.511L245.899 144.481L245.949 148.064L245.954 148.318H245.949L245.978 152.283V152.287L246.03 155.654L246.035 155.942C246.048 157.183 246.062 158.423 246.078 159.662Z"
2406
+ fill="#E5E5E5"
2407
+ stroke="white"
2408
+ stroke-linejoin="round"
2409
+ [attr.fill]="usaStates['KS']['color']"
2410
+ />
2411
+ <path
2412
+ d="M211.223 144.605L211.124 142.607L213.833 139.7H215.795L213.095 142.625L212.105 143.66L211.223 144.605ZM209.63 146V139.7H211.394V146H209.63ZM213.86 146L211.808 143.399L212.969 142.157L215.93 146H213.86ZM218.48 146.126C217.964 146.126 217.466 146.063 216.986 145.937C216.512 145.805 216.125 145.637 215.825 145.433L216.41 144.119C216.692 144.299 217.016 144.449 217.382 144.569C217.754 144.683 218.123 144.74 218.489 144.74C218.735 144.74 218.933 144.719 219.083 144.677C219.233 144.629 219.341 144.569 219.407 144.497C219.479 144.419 219.515 144.329 219.515 144.227C219.515 144.083 219.449 143.969 219.317 143.885C219.185 143.801 219.014 143.732 218.804 143.678C218.594 143.624 218.36 143.57 218.102 143.516C217.85 143.462 217.595 143.393 217.337 143.309C217.085 143.225 216.854 143.117 216.644 142.985C216.434 142.847 216.263 142.67 216.131 142.454C215.999 142.232 215.933 141.953 215.933 141.617C215.933 141.239 216.035 140.897 216.239 140.591C216.449 140.285 216.761 140.039 217.175 139.853C217.589 139.667 218.105 139.574 218.723 139.574C219.137 139.574 219.542 139.622 219.938 139.718C220.34 139.808 220.697 139.943 221.009 140.123L220.46 141.446C220.16 141.284 219.863 141.164 219.569 141.086C219.275 141.002 218.99 140.96 218.714 140.96C218.468 140.96 218.27 140.987 218.12 141.041C217.97 141.089 217.862 141.155 217.796 141.239C217.73 141.323 217.697 141.419 217.697 141.527C217.697 141.665 217.76 141.776 217.886 141.86C218.018 141.938 218.189 142.004 218.399 142.058C218.615 142.106 218.849 142.157 219.101 142.211C219.359 142.265 219.614 142.334 219.866 142.418C220.124 142.496 220.358 142.604 220.568 142.742C220.778 142.874 220.946 143.051 221.072 143.273C221.204 143.489 221.27 143.762 221.27 144.092C221.27 144.458 221.165 144.797 220.955 145.109C220.751 145.415 220.442 145.661 220.028 145.847C219.62 146.033 219.104 146.126 218.48 146.126Z"
2413
+ fill="white"
2414
+ [attr.fill]="
2415
+ usaStates['KS']['color'] === lowestBlue
2416
+ ? blueText
2417
+ : whiteText
2418
+ "
2419
+ />
2420
+ </g>
2421
+ <path
2422
+ d="M111.856 248.812V277.627L130.9 294.685M1 213.184H76.4136L111.857 248.81H157.351L185.386 277.101V294.683"
2423
+ stroke="#E5E5E5"
2424
+ />
2425
+ </svg>
2426
+ </div>
2427
+
2428
+ <ng-template #countryPopoverTemplate>
2429
+ @let stateName = currentlyHoveredState?.state;
2430
+ @let revenue = currentlyHoveredState?.value;
2431
+ @let percent = currentlyHoveredState?.percent + '%';
2432
+
2433
+ <div class="p-4 br-3 background-black-2 d-flex flex-column">
2434
+ <div
2435
+ class="ca-font-extra-bold text-size-11 text-uppercase text-color-white m-b-6 p-t-2 p-x-4"
2436
+ >
2437
+ {{ stateName ?? '' }}
2438
+ </div>
2439
+
2440
+ <div class="h-1 w-100 background-black m-b-8"></div>
2441
+
2442
+ <div
2443
+ class="d-flex flex-column align-items-start p-x-4 p-b-4"
2444
+ >
2445
+ <div class="ca-font-semi-bold text-size-11 text-color-white">
2446
+ {{ revenue ?? '' }}
2447
+ </div>
2448
+
2449
+ <div class="ca-font-regular text-size-11 text-color-white">
2450
+ {{ percent ?? '' }}
2451
+ </div>
2452
+ </div>
2453
+ </div>
2454
+ </ng-template>