@dcrackel/hematournamentui 1.0.706 → 1.0.707

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 (330) hide show
  1. package/.prettierignore +7 -1
  2. package/.storybook/main.js +5 -12
  3. package/.storybook/preview-head.html +10 -3
  4. package/.storybook/preview.js +5 -13
  5. package/AGENTS.md +31 -1
  6. package/README.md +29 -22
  7. package/dist/HemaTournamentUI-lib.es.js +7189 -7467
  8. package/dist/HemaTournamentUI-lib.umd.js +27 -27
  9. package/dist/hematournamentui-tailwind.css +0 -24
  10. package/dist/hematournamentui.css +1 -1
  11. package/eslint.config.js +49 -23
  12. package/package.json +6 -2
  13. package/postcss.config.js +3 -3
  14. package/prettier.config.js +16 -10
  15. package/src/config/boutScreenConfigurations.js +52 -50
  16. package/src/main.js +1 -1
  17. package/src/mocks/EventQuestionsMock.js +43 -55
  18. package/src/mocks/assignments.js +180 -181
  19. package/src/mocks/clubGetAllMock.js +8143 -8143
  20. package/src/mocks/eventMock.js +205 -205
  21. package/src/mocks/eventPersonGetInitalPoolAssignmentsLivePools.js +541 -542
  22. package/src/mocks/eventPersonGetInitalPoolAssignmentsPreparing.js +522 -523
  23. package/src/mocks/eventPersonGetInitialPoolAssignments.js +386 -387
  24. package/src/mocks/eventPersonGetInitialPoolAssignments2.js +2267 -2268
  25. package/src/mocks/eventPersonGetInitialStaff.js +94 -95
  26. package/src/mocks/eventPersonGetPoolAssignmentEvent.js +161 -162
  27. package/src/mocks/eventRules.js +87 -86
  28. package/src/mocks/eventpersonGetEventById.js +1737 -1737
  29. package/src/mocks/getAllClubs.js +8143 -8143
  30. package/src/mocks/getAllStaffByTournamentId.js +74 -75
  31. package/src/mocks/getAllWeapons.js +81 -82
  32. package/src/mocks/getAttendance.js +43 -44
  33. package/src/mocks/getClub.js +43 -44
  34. package/src/mocks/getClubDisplayByClubId.js +104 -105
  35. package/src/mocks/getDEBouts-128Fencers.js +3247 -3248
  36. package/src/mocks/getDEBouts-42Fencers.js +3736 -3737
  37. package/src/mocks/getDEBouts-67Fencers.js +6684 -6690
  38. package/src/mocks/getDEBouts-DoubleElim.js +4198 -4199
  39. package/src/mocks/getDEWithBouts.js +628 -629
  40. package/src/mocks/getDeBouts-12fencers.js +1255 -1256
  41. package/src/mocks/getDeBouts-15fencers.js +925 -927
  42. package/src/mocks/getDeBouts-22fencers.js +1683 -1685
  43. package/src/mocks/getDeBouts-6fencers.js +818 -818
  44. package/src/mocks/getEventByTournamentId.js +47 -48
  45. package/src/mocks/getFinalEventResult.js +304 -305
  46. package/src/mocks/getPenaltiesByEvent.js +655 -656
  47. package/src/mocks/getPoolResults.js +1533 -1534
  48. package/src/mocks/getPoolsWithBouts.js +662 -663
  49. package/src/mocks/getPoolsWithBouts6PoolId139.js +885 -886
  50. package/src/mocks/getPoolsWithBoutsByPoolId.js +841 -841
  51. package/src/mocks/getPoolsWithBoutsClubColors.js +4 -4
  52. package/src/mocks/getPoolsWithBoutsComplete.js +919 -921
  53. package/src/mocks/locationMock.js +3213 -3214
  54. package/src/mocks/mockRoutes.js +3 -3
  55. package/src/mocks/personGetAllMock.js +2536 -2537
  56. package/src/mocks/personsMock.js +17569 -17570
  57. package/src/mocks/singleEventMock.js +249 -250
  58. package/src/mocks/tournamentMock.js +1988 -1927
  59. package/src/stories/Atoms/CheckBox/BaseCheckbox.stories.js +25 -23
  60. package/src/stories/Atoms/CheckBox/BaseCheckbox.vue +30 -24
  61. package/src/stories/Atoms/Icon/BaseIcon.stories.js +63 -64
  62. package/src/stories/Atoms/Icon/BaseIcon.test.js +67 -69
  63. package/src/stories/Atoms/Icon/BaseIcon.vue +2 -3
  64. package/src/stories/Atoms/Input/BaseInput.stories.js +18 -18
  65. package/src/stories/Atoms/Input/BaseInput.test.js +65 -67
  66. package/src/stories/Atoms/Input/BaseInput.vue +36 -31
  67. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.stories.js +21 -21
  68. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.test.js +31 -31
  69. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.vue +23 -18
  70. package/src/stories/Atoms/Tag/BaseTag.stories.js +21 -21
  71. package/src/stories/Atoms/Tag/BaseTag.test.js +26 -30
  72. package/src/stories/Atoms/Tag/BaseTag.vue +18 -19
  73. package/src/stories/Atoms/Text/BaseText.stories.js +54 -62
  74. package/src/stories/Atoms/Text/BaseText.test.js +152 -154
  75. package/src/stories/Atoms/Text/BaseText.vue +103 -81
  76. package/src/stories/Configure.mdx +5 -3
  77. package/src/stories/Molecules/Boxes/BoutBoxes/HandshotCounterBox/HandshotCounterBox.stories.js +24 -24
  78. package/src/stories/Molecules/Boxes/BoutBoxes/HandshotCounterBox/HandshotCounterBox.vue +33 -15
  79. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.stories.js +46 -48
  80. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.vue +38 -25
  81. package/src/stories/Molecules/Boxes/BoutBoxes/PenaltyConfirmationBox/PenaltyConfirmationBox.stories.js +4 -4
  82. package/src/stories/Molecules/Boxes/BoutBoxes/PenaltyConfirmationBox/PenaltyConfirmationBox.vue +9 -4
  83. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.stories.js +90 -90
  84. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.vue +51 -32
  85. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.stories.js +25 -25
  86. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.vue +47 -12
  87. package/src/stories/Molecules/Boxes/CounterBox/CounterBox.stories.js +19 -19
  88. package/src/stories/Molecules/Boxes/CounterBox/CounterBox.vue +25 -19
  89. package/src/stories/Molecules/Boxes/EventStatusBox/EventStatusBox.stories.js +25 -28
  90. package/src/stories/Molecules/Boxes/EventStatusBox/EventStatusBox.vue +7 -7
  91. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.stories.js +28 -29
  92. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.test.js +58 -58
  93. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.vue +15 -15
  94. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.stories.js +86 -86
  95. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.test.js +101 -103
  96. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.vue +87 -24
  97. package/src/stories/Molecules/Buttons/ButtonBar/ButtonBar.stories.js +31 -31
  98. package/src/stories/Molecules/Buttons/ButtonBar/ButtonBar.vue +19 -21
  99. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.stories.js +57 -57
  100. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.test.js +64 -64
  101. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.vue +17 -16
  102. package/src/stories/Molecules/Filters/FilterAndSortBar/FilterAndSortBar.stories.js +19 -19
  103. package/src/stories/Molecules/Filters/FilterAndSortBar/FilterAndSortBar.vue +18 -7
  104. package/src/stories/Molecules/Filters/FilterUpcomingPast/FilterUpcomingPast.stories.js +16 -18
  105. package/src/stories/Molecules/Filters/FilterUpcomingPast/FilterUpcomingPast.vue +31 -13
  106. package/src/stories/Molecules/Indicators/ServerConnected/ServerConnected.stories.js +27 -27
  107. package/src/stories/Molecules/Indicators/ServerConnected/ServerConnected.vue +6 -5
  108. package/src/stories/Molecules/Inputs/MultiSelect/MultiSelect.stories.js +35 -35
  109. package/src/stories/Molecules/Inputs/MultiSelect/MultiSelect.vue +13 -8
  110. package/src/stories/Molecules/Inputs/Toggle/Toggle.stories.js +27 -27
  111. package/src/stories/Molecules/Inputs/Toggle/Toggle.vue +8 -5
  112. package/src/stories/Molecules/Menus/TabBar/TabBar.stories.js +18 -18
  113. package/src/stories/Molecules/Menus/TabBar/TabBar.vue +1 -2
  114. package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplay.stories.js +36 -27
  115. package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplayModal.vue +25 -15
  116. package/src/stories/Molecules/Modals/BaseModal/BaseModal.stories.js +66 -65
  117. package/src/stories/Molecules/Modals/BaseModal/BaseModal.vue +47 -9
  118. package/src/stories/Molecules/Modals/ConfirmModal/ConfirmModal.stories.js +23 -23
  119. package/src/stories/Molecules/Modals/ConfirmModal/ConfirmModal.vue +59 -11
  120. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.stories.js +37 -37
  121. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.vue +27 -22
  122. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.stories.js +41 -41
  123. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.vue +27 -15
  124. package/src/stories/Molecules/Modals/EventWizardModal/EventWizardModal.stories.js +29 -30
  125. package/src/stories/Molecules/Modals/EventWizardModal/EventWizardModal.vue +18 -16
  126. package/src/stories/Molecules/Modals/LoadingModal/LoadingModal.stories.js +21 -21
  127. package/src/stories/Molecules/Modals/LoadingModal/LoadingModal.vue +7 -7
  128. package/src/stories/Molecules/Modals/PenaltyModal/PenaltyModal.stories.js +24 -24
  129. package/src/stories/Molecules/Modals/PenaltyModal/PenaltyModal.vue +30 -25
  130. package/src/stories/Molecules/Reorder/ReorderableShell.stories.js +81 -77
  131. package/src/stories/Molecules/Reorder/ReorderableShell.vue +46 -43
  132. package/src/stories/Molecules/StepIndicator/BaseStepIndicator/StepIndicator.stories.js +40 -40
  133. package/src/stories/Molecules/StepIndicator/BaseStepIndicator/StepIndicator.vue +23 -25
  134. package/src/stories/Organisms/Cards/BoutCard/BoutCard.stories.js +34 -29
  135. package/src/stories/Organisms/Cards/BoutCard/BoutCard.vue +69 -66
  136. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardActive/BoutCardActive.stories.js +24 -22
  137. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardActive/BoutCardActive.vue +53 -41
  138. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.stories.js +24 -37
  139. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.vue +88 -103
  140. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardReorder/BoutCardReorder.vue +13 -14
  141. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardWaiting/BoutCardWaiting.stories.js +5 -5
  142. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardWaiting/BoutCardWaiting.vue +22 -21
  143. package/src/stories/Organisms/Cards/ClubCard/ClubCard.stories.js +14 -17
  144. package/src/stories/Organisms/Cards/ClubCard/ClubCard.vue +25 -18
  145. package/src/stories/Organisms/Cards/Director/DirectorCard.stories.js +23 -23
  146. package/src/stories/Organisms/Cards/Director/DirectorCard.vue +159 -103
  147. package/src/stories/Organisms/Cards/EditBout/EditBout.stories.js +47 -47
  148. package/src/stories/Organisms/Cards/EditBout/EditBout.test.js +51 -0
  149. package/src/stories/Organisms/Cards/EditBout/EditBout.vue +82 -54
  150. package/src/stories/Organisms/Cards/EventCard/EventCard.stories.js +9 -10
  151. package/src/stories/Organisms/Cards/EventCard/EventCard.vue +83 -63
  152. package/src/stories/Organisms/Cards/FencerCard/FencerCard.stories.js +105 -105
  153. package/src/stories/Organisms/Cards/FencerCard/FencerCard.vue +142 -58
  154. package/src/stories/Organisms/Cards/FencerFinalResultCard/FencerFinalResultCard.stories.js +14 -14
  155. package/src/stories/Organisms/Cards/FencerFinalResultCard/FencerFinalResultCard.vue +37 -26
  156. package/src/stories/Organisms/Cards/FencerPoolResultsCard/FencerPoolResults.stories.js +24 -24
  157. package/src/stories/Organisms/Cards/FencerPoolResultsCard/FencerPoolResultsCard.vue +95 -28
  158. package/src/stories/Organisms/Cards/ImportFencerCard/ImportFencerCard.stories.js +59 -60
  159. package/src/stories/Organisms/Cards/ImportFencerCard/ImportFencerCard.vue +13 -7
  160. package/src/stories/Organisms/Cards/KioskCard/KioskCard.stories.js +34 -34
  161. package/src/stories/Organisms/Cards/KioskCard/KioskCard.vue +149 -104
  162. package/src/stories/Organisms/Cards/PenaltyCard/PenaltyCard.stories.js +19 -20
  163. package/src/stories/Organisms/Cards/PenaltyCard/PenaltyCard.vue +207 -163
  164. package/src/stories/Organisms/Cards/PenaltyFencerCard/PenaltyFencerCard.stories.js +17 -17
  165. package/src/stories/Organisms/Cards/PenaltyFencerCard/PenaltyFencerCard.vue +88 -46
  166. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.stories.js +182 -182
  167. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.vue +21 -12
  168. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.stories.js +25 -28
  169. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.vue +28 -22
  170. package/src/stories/Organisms/Cards/StaffCard/StaffCard.stories.js +62 -62
  171. package/src/stories/Organisms/Cards/StaffCard/StaffCard.vue +27 -22
  172. package/src/stories/Organisms/Cards/TableauBoutCard/SpacingConfig.js +103 -103
  173. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.stories.js +73 -73
  174. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.test.js +44 -0
  175. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.vue +69 -56
  176. package/src/stories/Organisms/Cards/TableauFencerCard/TableauFencerCard.stories.js +80 -81
  177. package/src/stories/Organisms/Cards/TableauFencerCard/TableauFencerCard.vue +39 -22
  178. package/src/stories/Organisms/Cards/TournamentAdminCard/TournamentAdmin.stories.js +20 -20
  179. package/src/stories/Organisms/Cards/TournamentAdminCard/TournamentAdminCard.vue +62 -33
  180. package/src/stories/Organisms/Cards/WaitlistFencerCard/WaitlistFencerCard.vue +44 -30
  181. package/src/stories/Organisms/ComplexInputs/AddressAutocomplete/AddressAutocomplete.stories.js +6 -7
  182. package/src/stories/Organisms/ComplexInputs/AddressAutocomplete/AddressAutocomplete.vue +7 -8
  183. package/src/stories/Organisms/ComplexInputs/ClubColorPicker/ClubColorPicker.stories.js +31 -31
  184. package/src/stories/Organisms/ComplexInputs/ClubColorPicker/ClubColorPicker.vue +30 -35
  185. package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.stories.js +13 -16
  186. package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.vue +68 -70
  187. package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.stories.js +32 -34
  188. package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.vue +48 -25
  189. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.stories.js +21 -21
  190. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.vue +65 -38
  191. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.stories.js +19 -20
  192. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.vue +46 -21
  193. package/src/stories/Organisms/ComplexInputs/FindPerson/FindPerson.stories.js +22 -22
  194. package/src/stories/Organisms/ComplexInputs/FindPerson/FindPerson.vue +68 -23
  195. package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.stories.js +13 -13
  196. package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.vue +25 -24
  197. package/src/stories/Organisms/ComplexInputs/TextBoxEditor/TextBoxEditor.stories.js +6 -10
  198. package/src/stories/Organisms/ComplexInputs/TextBoxEditor/TextBoxEditor.vue +112 -48
  199. package/src/stories/Organisms/Containers/BoutsSection/BoutsSection.stories.js +43 -44
  200. package/src/stories/Organisms/Containers/BoutsSection/BoutsSection.vue +30 -23
  201. package/src/stories/Organisms/Containers/FinalResults/FinalResultsTable.stories.js +20 -20
  202. package/src/stories/Organisms/Containers/FinalResults/FinalResultsTable.vue +12 -12
  203. package/src/stories/Organisms/Containers/KioskContainer/KioskContainer.stories.js +24 -25
  204. package/src/stories/Organisms/Containers/KioskContainer/KioskContainer.vue +112 -87
  205. package/src/stories/Organisms/Containers/Pool/Pool.stories.js +54 -54
  206. package/src/stories/Organisms/Containers/Pool/Pool.vue +64 -41
  207. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.stories.js +17 -19
  208. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.vue +189 -135
  209. package/src/stories/Organisms/Containers/PoolResults/PoolResultsTable.stories.js +53 -54
  210. package/src/stories/Organisms/Containers/PoolResults/PoolResultsTable.vue +107 -73
  211. package/src/stories/Organisms/Containers/Tableau/Tableau.stories.js +23 -24
  212. package/src/stories/Organisms/Containers/Tableau/Tableau.test.js +49 -10
  213. package/src/stories/Organisms/Containers/Tableau/Tableau.vue +96 -173
  214. package/src/stories/Organisms/Containers/TableauColumn/TabeauColumn.stories.js +26 -27
  215. package/src/stories/Organisms/Containers/TableauColumn/TableauColumn.vue +20 -17
  216. package/src/stories/Organisms/Containers/TableauLines/SpacingConfig.js +153 -103
  217. package/src/stories/Organisms/Containers/TableauLines/TableauLines.stories.js +13 -15
  218. package/src/stories/Organisms/Containers/TableauLines/TableauLines.vue +7 -8
  219. package/src/stories/Organisms/Form/AddDisplay/AddDisplay.stories.js +26 -26
  220. package/src/stories/Organisms/Form/AddDisplay/AddDisplay.vue +130 -118
  221. package/src/stories/Organisms/Form/AddNewPerson/AddNewPerson.stories.js +14 -15
  222. package/src/stories/Organisms/Form/AddNewPerson/AddNewPerson.vue +94 -88
  223. package/src/stories/Organisms/Grids/GridContainer.stories.js +101 -101
  224. package/src/stories/Organisms/Grids/GridContainer.vue +160 -136
  225. package/src/stories/Organisms/Headers/AttendanceSummary/AttendanceSummary.stories.js +47 -47
  226. package/src/stories/Organisms/Headers/AttendanceSummary/AttendanceSummary.vue +65 -54
  227. package/src/stories/Organisms/Headers/EventFinalResultsHeader/EventFinalResultsHeader.stories.js +27 -27
  228. package/src/stories/Organisms/Headers/EventFinalResultsHeader/EventFinalResultsHeader.vue +38 -22
  229. package/src/stories/Organisms/Headers/PenaltySummary/PenaltySummary.stories.js +80 -80
  230. package/src/stories/Organisms/Headers/PenaltySummary/PenaltySummary.vue +14 -6
  231. package/src/stories/Organisms/Headers/PoolResultsHeader/PoolResultsHeader.stories.js +34 -34
  232. package/src/stories/Organisms/Headers/PoolResultsHeader/PoolResultsHeader.vue +36 -36
  233. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.stories.js +21 -21
  234. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.vue +56 -29
  235. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.stories.js +38 -38
  236. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.vue +19 -20
  237. package/src/stories/Organisms/RankCalculator/ByLetter/RankCalculator.stories.js +12 -13
  238. package/src/stories/Organisms/RankCalculator/ByLetter/RankCalculator.vue +47 -41
  239. package/src/stories/Organisms/RankCalculator/ByPoints/RankCalculatorByPoints.stories.js +12 -13
  240. package/src/stories/Organisms/RankCalculator/ByPoints/RankCalculatorByPoints.vue +66 -37
  241. package/src/stories/Organisms/Skeletons/ClubManagement/ClubManagement.stories.js +6 -10
  242. package/src/stories/Organisms/Skeletons/ClubManagement/ClubMangementSkeleton.vue +2 -2
  243. package/src/stories/Organisms/Skeletons/EventCard/EventCardSkeleton.stories.js +6 -10
  244. package/src/stories/Organisms/Skeletons/EventCard/EventCardSkeleton.vue +2 -3
  245. package/src/stories/Organisms/Skeletons/FencerCard/FencerCardSkeleton.stories.js +6 -10
  246. package/src/stories/Organisms/Skeletons/FencerCard/FencerCardSkeleton.vue +1 -1
  247. package/src/stories/Organisms/Skeletons/PersonManagement/PersonManagementSkeleton.stories.js +6 -9
  248. package/src/stories/Organisms/Skeletons/PersonManagement/PersonManagementSkeleton.vue +2 -2
  249. package/src/stories/Organisms/Skeletons/PoolSkeleton/PoolSkeleton.stories.js +6 -10
  250. package/src/stories/Organisms/Skeletons/PoolSkeleton/PoolSkeleton.vue +10 -4
  251. package/src/stories/Organisms/Skeletons/TournamentCard/TournamentCardSkeleton.stories.js +6 -10
  252. package/src/stories/Organisms/Skeletons/TournamentCard/TournamentCardSkeleton.vue +2 -2
  253. package/src/stories/Organisms/Wizards/EditEventWizard/BasicEventInfo/BasicEventInfo.stories.js +34 -34
  254. package/src/stories/Organisms/Wizards/EditEventWizard/BasicEventInfo/BasicEventInfo.vue +106 -56
  255. package/src/stories/Organisms/Wizards/EditEventWizard/DirectElimination/DirectElimination.stories.js +95 -95
  256. package/src/stories/Organisms/Wizards/EditEventWizard/DirectElimination/DirectElimination.vue +129 -69
  257. package/src/stories/Organisms/Wizards/EditEventWizard/DirectEliminationPromotion/DirectEliminationPromotion.stories.js +87 -88
  258. package/src/stories/Organisms/Wizards/EditEventWizard/DirectEliminationPromotion/DirectEliminationPromotion.vue +105 -60
  259. package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.stories.js +82 -82
  260. package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.vue +150 -177
  261. package/src/stories/Organisms/Wizards/EditEventWizard/EventCustomization/EventCustomization.stories.js +28 -28
  262. package/src/stories/Organisms/Wizards/EditEventWizard/EventCustomization/EventCustomization.vue +96 -36
  263. package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.stories.js +99 -99
  264. package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.vue +115 -67
  265. package/src/stories/Templates/Assignment/Assignment.stories.js +22 -23
  266. package/src/stories/Templates/Assignment/Assignment.vue +210 -161
  267. package/src/stories/Templates/ClubManagement/ClubBasic/ClubBasic.stories.js +90 -90
  268. package/src/stories/Templates/ClubManagement/ClubBasic/ClubBasic.vue +68 -55
  269. package/src/stories/Templates/ClubManagement/ClubManagement.stories.js +87 -87
  270. package/src/stories/Templates/ClubManagement/ClubManagement.vue +167 -147
  271. package/src/stories/Templates/EventManagement/Bracket/Bracket.stories.js +82 -103
  272. package/src/stories/Templates/EventManagement/Bracket/Bracket.test.js +88 -43
  273. package/src/stories/Templates/EventManagement/Bracket/Bracket.vue +167 -200
  274. package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.stories.js +49 -50
  275. package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.vue +21 -21
  276. package/src/stories/Templates/EventManagement/EventAttendance/EventAttendance.stories.js +105 -103
  277. package/src/stories/Templates/EventManagement/EventAttendance/EventAttendance.vue +289 -226
  278. package/src/stories/Templates/EventManagement/EventFinalResults/EventFinalResults.stories.js +30 -30
  279. package/src/stories/Templates/EventManagement/EventFinalResults/EventFinalResults.vue +27 -22
  280. package/src/stories/Templates/EventManagement/KioskDisplay/KioskDisplay.stories.js +44 -45
  281. package/src/stories/Templates/EventManagement/KioskDisplay/KioskDisplay.vue +52 -43
  282. package/src/stories/Templates/EventManagement/Penalties/PenaltyReport.stories.js +28 -29
  283. package/src/stories/Templates/EventManagement/Penalties/PenaltyReport.vue +54 -39
  284. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.stories.js +80 -111
  285. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.test.js +121 -0
  286. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.vue +290 -255
  287. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.stories.js +109 -107
  288. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.vue +144 -87
  289. package/src/stories/Templates/EventManagement/PoolResults/PoolResults.stories.js +56 -57
  290. package/src/stories/Templates/EventManagement/PoolResults/PoolResults.vue +132 -123
  291. package/src/stories/Templates/EventManagement/StaffList/StaffList.stories.js +56 -57
  292. package/src/stories/Templates/EventManagement/StaffList/StaffList.vue +84 -47
  293. package/src/stories/Templates/Menus/Admin/AdminLeftMenu.stories.js +29 -29
  294. package/src/stories/Templates/Menus/Admin/AdminLeftMenu.vue +71 -67
  295. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.stories.js +39 -40
  296. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.vue +79 -71
  297. package/src/stories/Templates/PersonManagement/Admin/Administration/Administration.stories.js +47 -47
  298. package/src/stories/Templates/PersonManagement/Admin/Administration/Administration.vue +39 -42
  299. package/src/stories/Templates/PersonManagement/Admin/FencerAdmin/FencerAdmin.stories.js +54 -54
  300. package/src/stories/Templates/PersonManagement/Admin/FencerAdmin/FencerAdmin.vue +27 -31
  301. package/src/stories/Templates/PersonManagement/Admin/MergeAccounts/MergeAccounts.stories.js +69 -69
  302. package/src/stories/Templates/PersonManagement/Admin/MergeAccounts/MergeAccounts.vue +78 -89
  303. package/src/stories/Templates/PersonManagement/Attendance/Attendance.stories.js +22 -22
  304. package/src/stories/Templates/PersonManagement/Attendance/Attendance.vue +61 -33
  305. package/src/stories/Templates/PersonManagement/Basic/BasicEdit.stories.js +29 -29
  306. package/src/stories/Templates/PersonManagement/Basic/BasicEdit.vue +80 -53
  307. package/src/stories/Templates/PersonManagement/PersonManagement.stories.js +84 -86
  308. package/src/stories/Templates/PersonManagement/PersonManagement.vue +107 -82
  309. package/src/stories/Templates/TournamentManagement/ListEvents/ListEvents.stories.js +31 -31
  310. package/src/stories/Templates/TournamentManagement/ListEvents/ListEvents.vue +70 -51
  311. package/src/stories/Templates/TournamentManagement/TournamentManagement.stories.js +79 -79
  312. package/src/stories/Templates/TournamentManagement/TournamentManagement.vue +275 -230
  313. package/src/stories/Templates/TournamentManagement/TournamentPageOne/TournamentPageOne.stories.js +113 -113
  314. package/src/stories/Templates/TournamentManagement/TournamentPageOne/TournamentPageOne.vue +175 -146
  315. package/src/stories/Templates/TournamentManagement/TournamentPageTwo/TournamentPageTwo.stories.js +77 -77
  316. package/src/stories/Templates/TournamentManagement/TournamentPageTwo/TournamentPageTwo.vue +208 -185
  317. package/src/stories/Util/Validations/AddNewPersonModalValidation.js +23 -19
  318. package/src/stories/Util/Validations/ClubManagementValidations.js +17 -21
  319. package/src/stories/Util/Validations/PersonManagementValidations.js +26 -22
  320. package/src/stories/Util/Validations/TournamentFieldsValidations.js +20 -18
  321. package/src/stories/Util/seeding.js +131 -131
  322. package/src/stories/Util/tabs.js +75 -75
  323. package/tailwind/tailwind.css +5 -7
  324. package/tailwind.config.js +12 -15
  325. package/vite.config.js +3 -3
  326. package/src/mocks/getDirectors.js +0 -18
  327. package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.stories.js +0 -45
  328. package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.vue +0 -111
  329. package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.stories.js +0 -45
  330. package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.vue +0 -83
@@ -1,1781 +1,1781 @@
1
1
  const eventPersonGetEventById = {
2
- "event": {
3
- "EventName": "Novice Longsword",
4
- "WeaponId": 1,
5
- "Status": "planning",
6
- "TournamentId": 24,
7
- "Weapon": {
8
- "HRWeaponId": "1"
2
+ event: {
3
+ EventName: 'Novice Longsword',
4
+ WeaponId: 1,
5
+ Status: 'planning',
6
+ TournamentId: 24,
7
+ Weapon: {
8
+ HRWeaponId: '1'
9
+ },
10
+ Tournament: {
11
+ TournamentId: 24,
12
+ ClubId: 10,
13
+ WeaverScope: 'club'
14
+ }
15
+ },
16
+ persons: [
17
+ {
18
+ Id: 484,
19
+ EventId: 26,
20
+ PoolId: 211,
21
+ PersonId: 145,
22
+ Seed: 29,
23
+ PoolPosition: 32,
24
+ DEPosition: 11,
25
+ Status: 'Present',
26
+ LastNote: '',
27
+ Person: {
28
+ PersonId: 145,
29
+ DisplayName: 'Jeffrey Will',
30
+ ShowData: true,
31
+ Images: [
32
+ {
33
+ ImageId: null,
34
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
35
+ AltText: 'Jeffrey Will',
36
+ Type: 'Portrait',
37
+ EntityId: 145,
38
+ EntityType: 'Person'
39
+ }
40
+ ],
41
+ Club: {
42
+ ClubId: 62,
43
+ Name: 'Bucks Historical Longsword',
44
+ ShortName: 'BHL',
45
+ Color1: 'Red',
46
+ Color2: 'Gold'
9
47
  },
10
- "Tournament": {
11
- "TournamentId": 24,
12
- "ClubId": 10,
13
- "WeaverScope": "club"
48
+ HEMARatings: [
49
+ {
50
+ HemaRatingId: 10255,
51
+ WeaponId: 1,
52
+ Rating: 1708.8
53
+ }
54
+ ],
55
+ M2Ratings: [],
56
+ Weaver: {
57
+ Required: true,
58
+ Scope: 'club',
59
+ Signed: true,
60
+ SignedAt: null
14
61
  }
62
+ }
15
63
  },
16
- "persons": [
17
- {
18
- "Id": 484,
19
- "EventId": 26,
20
- "PoolId": 211,
21
- "PersonId": 145,
22
- "Seed": 29,
23
- "PoolPosition": 32,
24
- "DEPosition": 11,
25
- "Status": "Present",
26
- "LastNote": "",
27
- "Person": {
28
- "PersonId": 145,
29
- "DisplayName": "Jeffrey Will",
30
- "ShowData": true,
31
- "Images": [
32
- {
33
- "ImageId": null,
34
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
35
- "AltText": "Jeffrey Will",
36
- "Type": "Portrait",
37
- "EntityId": 145,
38
- "EntityType": "Person"
39
- }
40
- ],
41
- "Club": {
42
- "ClubId": 62,
43
- "Name": "Bucks Historical Longsword",
44
- "ShortName": "BHL",
45
- "Color1": "Red",
46
- "Color2": "Gold"
47
- },
48
- "HEMARatings": [
49
- {
50
- "HemaRatingId": 10255,
51
- "WeaponId": 1,
52
- "Rating": 1708.8
53
- }
54
- ],
55
- "M2Ratings": [],
56
- "Weaver": {
57
- "Required": true,
58
- "Scope": "club",
59
- "Signed": true,
60
- "SignedAt": null
61
- }
62
- }
64
+ {
65
+ Id: 460,
66
+ EventId: 26,
67
+ PoolId: 209,
68
+ PersonId: 44,
69
+ Seed: 1,
70
+ PoolPosition: 2,
71
+ DEPosition: 3,
72
+ Status: 'Present',
73
+ LastNote: '',
74
+ Person: {
75
+ PersonId: 44,
76
+ DisplayName: 'Ethan Adkins',
77
+ ShowData: true,
78
+ Images: [
79
+ {
80
+ ImageId: null,
81
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
82
+ AltText: 'Ethan Adkins',
83
+ Type: 'Portrait',
84
+ EntityId: 44,
85
+ EntityType: 'Person'
86
+ }
87
+ ],
88
+ Club: {
89
+ ClubId: 23,
90
+ Name: 'Queen City Sword Guild',
91
+ ShortName: 'QCSG',
92
+ Color1: 'blue',
93
+ Color2: 'silver'
63
94
  },
64
- {
65
- "Id": 460,
66
- "EventId": 26,
67
- "PoolId": 209,
68
- "PersonId": 44,
69
- "Seed": 1,
70
- "PoolPosition": 2,
71
- "DEPosition": 3,
72
- "Status": "Present",
73
- "LastNote": "",
74
- "Person": {
75
- "PersonId": 44,
76
- "DisplayName": "Ethan Adkins",
77
- "ShowData": true,
78
- "Images": [
79
- {
80
- "ImageId": null,
81
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
82
- "AltText": "Ethan Adkins",
83
- "Type": "Portrait",
84
- "EntityId": 44,
85
- "EntityType": "Person"
86
- }
87
- ],
88
- "Club": {
89
- "ClubId": 23,
90
- "Name": "Queen City Sword Guild",
91
- "ShortName": "QCSG",
92
- "Color1": "blue",
93
- "Color2": "silver"
94
- },
95
- "HEMARatings": [
96
- {
97
- "HemaRatingId": 10253,
98
- "WeaponId": 1,
99
- "Rating": 1564.4
100
- }
101
- ],
102
- "M2Ratings": [],
103
- "Weaver": {
104
- "Required": true,
105
- "Scope": "club",
106
- "Signed": false,
107
- "SignedAt": null
108
- }
109
- }
95
+ HEMARatings: [
96
+ {
97
+ HemaRatingId: 10253,
98
+ WeaponId: 1,
99
+ Rating: 1564.4
100
+ }
101
+ ],
102
+ M2Ratings: [],
103
+ Weaver: {
104
+ Required: true,
105
+ Scope: 'club',
106
+ Signed: false,
107
+ SignedAt: null
108
+ }
109
+ }
110
+ },
111
+ {
112
+ Id: 458,
113
+ EventId: 26,
114
+ PoolId: 207,
115
+ PersonId: 158,
116
+ Seed: 36,
117
+ PoolPosition: 36,
118
+ DEPosition: 5,
119
+ Status: 'Present',
120
+ LastNote: '',
121
+ Person: {
122
+ PersonId: 158,
123
+ DisplayName: 'Stevi Parker',
124
+ ShowData: true,
125
+ Images: [
126
+ {
127
+ ImageId: 157,
128
+ URL: 'https://meyersquaredimages.com/uploads/p-f7779899.png',
129
+ AltText: 'L L',
130
+ Type: 'Portrait',
131
+ EntityId: 158,
132
+ EntityType: 'Person'
133
+ },
134
+ {
135
+ ImageId: 205,
136
+ URL: 'https://meyersquaredimages.com/uploads/p-f7779899.png',
137
+ AltText: 'Tony Cavalline',
138
+ Type: 'Portrait',
139
+ EntityId: 158,
140
+ EntityType: 'Person'
141
+ }
142
+ ],
143
+ Club: {
144
+ ClubId: 62,
145
+ Name: 'Bucks Historical Longsword',
146
+ ShortName: 'BHL',
147
+ Color1: 'Red',
148
+ Color2: 'Gold'
110
149
  },
111
- {
112
- "Id": 458,
113
- "EventId": 26,
114
- "PoolId": 207,
115
- "PersonId": 158,
116
- "Seed": 36,
117
- "PoolPosition": 36,
118
- "DEPosition": 5,
119
- "Status": "Present",
120
- "LastNote": "",
121
- "Person": {
122
- "PersonId": 158,
123
- "DisplayName": "Stevi Parker",
124
- "ShowData": true,
125
- "Images": [
126
- {
127
- "ImageId": 157,
128
- "URL": "https://meyersquaredimages.com/uploads/p-f7779899.png",
129
- "AltText": "L L",
130
- "Type": "Portrait",
131
- "EntityId": 158,
132
- "EntityType": "Person"
133
- },
134
- {
135
- "ImageId": 205,
136
- "URL": "https://meyersquaredimages.com/uploads/p-f7779899.png",
137
- "AltText": "Tony Cavalline",
138
- "Type": "Portrait",
139
- "EntityId": 158,
140
- "EntityType": "Person"
141
- }
142
- ],
143
- "Club": {
144
- "ClubId": 62,
145
- "Name": "Bucks Historical Longsword",
146
- "ShortName": "BHL",
147
- "Color1": "Red",
148
- "Color2": "Gold"
149
- },
150
- "HEMARatings": [
151
- {
152
- "HemaRatingId": 9951,
153
- "WeaponId": 1,
154
- "Rating": 1540
155
- }
156
- ],
157
- "M2Ratings": [],
158
- "Weaver": {
159
- "Required": true,
160
- "Scope": "club",
161
- "Signed": false,
162
- "SignedAt": null
163
- }
164
- }
150
+ HEMARatings: [
151
+ {
152
+ HemaRatingId: 9951,
153
+ WeaponId: 1,
154
+ Rating: 1540
155
+ }
156
+ ],
157
+ M2Ratings: [],
158
+ Weaver: {
159
+ Required: true,
160
+ Scope: 'club',
161
+ Signed: false,
162
+ SignedAt: null
163
+ }
164
+ }
165
+ },
166
+ {
167
+ Id: 488,
168
+ EventId: 26,
169
+ PoolId: 212,
170
+ PersonId: 178,
171
+ Seed: 14,
172
+ PoolPosition: 19,
173
+ DEPosition: 7,
174
+ Status: 'Present',
175
+ LastNote: '',
176
+ Person: {
177
+ PersonId: 178,
178
+ DisplayName: 'Geoff Lehman',
179
+ ShowData: true,
180
+ Images: [
181
+ {
182
+ ImageId: null,
183
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
184
+ AltText: 'Geoff Lehman',
185
+ Type: 'Portrait',
186
+ EntityId: 178,
187
+ EntityType: 'Person'
188
+ }
189
+ ],
190
+ Club: {
191
+ ClubId: 47,
192
+ Name: 'Nickel City Longsword Academy',
193
+ ShortName: 'NCLA',
194
+ Color1: 'Red',
195
+ Color2: 'Gold'
165
196
  },
166
- {
167
- "Id": 488,
168
- "EventId": 26,
169
- "PoolId": 212,
170
- "PersonId": 178,
171
- "Seed": 14,
172
- "PoolPosition": 19,
173
- "DEPosition": 7,
174
- "Status": "Present",
175
- "LastNote": "",
176
- "Person": {
177
- "PersonId": 178,
178
- "DisplayName": "Geoff Lehman",
179
- "ShowData": true,
180
- "Images": [
181
- {
182
- "ImageId": null,
183
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
184
- "AltText": "Geoff Lehman",
185
- "Type": "Portrait",
186
- "EntityId": 178,
187
- "EntityType": "Person"
188
- }
189
- ],
190
- "Club": {
191
- "ClubId": 47,
192
- "Name": "Nickel City Longsword Academy",
193
- "ShortName": "NCLA",
194
- "Color1": "Red",
195
- "Color2": "Gold"
196
- },
197
- "HEMARatings": [
198
- {
199
- "HemaRatingId": 9937,
200
- "WeaponId": 1,
201
- "Rating": 1445.4
202
- }
203
- ],
204
- "M2Ratings": [],
205
- "Weaver": {
206
- "Required": true,
207
- "Scope": "club",
208
- "Signed": false,
209
- "SignedAt": null
210
- }
211
- }
197
+ HEMARatings: [
198
+ {
199
+ HemaRatingId: 9937,
200
+ WeaponId: 1,
201
+ Rating: 1445.4
202
+ }
203
+ ],
204
+ M2Ratings: [],
205
+ Weaver: {
206
+ Required: true,
207
+ Scope: 'club',
208
+ Signed: false,
209
+ SignedAt: null
210
+ }
211
+ }
212
+ },
213
+ {
214
+ Id: 467,
215
+ EventId: 26,
216
+ PoolId: 208,
217
+ PersonId: 164,
218
+ Seed: 33,
219
+ PoolPosition: 3,
220
+ DEPosition: 6,
221
+ Status: 'Present',
222
+ LastNote: '',
223
+ Person: {
224
+ PersonId: 164,
225
+ DisplayName: 'Kevin Brough',
226
+ ShowData: true,
227
+ Images: [
228
+ {
229
+ ImageId: null,
230
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
231
+ AltText: 'Kevin Brough',
232
+ Type: 'Portrait',
233
+ EntityId: 164,
234
+ EntityType: 'Person'
235
+ }
236
+ ],
237
+ Club: {
238
+ ClubId: 73,
239
+ Name: 'Hilt and Helm Pittsburgh Fencing Club',
240
+ ShortName: 'HHPFC',
241
+ Color1: 'Blue',
242
+ Color2: 'Gold'
212
243
  },
213
- {
214
- "Id": 467,
215
- "EventId": 26,
216
- "PoolId": 208,
217
- "PersonId": 164,
218
- "Seed": 33,
219
- "PoolPosition": 3,
220
- "DEPosition": 6,
221
- "Status": "Present",
222
- "LastNote": "",
223
- "Person": {
224
- "PersonId": 164,
225
- "DisplayName": "Kevin Brough",
226
- "ShowData": true,
227
- "Images": [
228
- {
229
- "ImageId": null,
230
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
231
- "AltText": "Kevin Brough",
232
- "Type": "Portrait",
233
- "EntityId": 164,
234
- "EntityType": "Person"
235
- }
236
- ],
237
- "Club": {
238
- "ClubId": 73,
239
- "Name": "Hilt and Helm Pittsburgh Fencing Club",
240
- "ShortName": "HHPFC",
241
- "Color1": "Blue",
242
- "Color2": "Gold"
243
- },
244
- "HEMARatings": [
245
- {
246
- "HemaRatingId": 10263,
247
- "WeaponId": 1,
248
- "Rating": 1441.3
249
- }
250
- ],
251
- "M2Ratings": [],
252
- "Weaver": {
253
- "Required": true,
254
- "Scope": "club",
255
- "Signed": false,
256
- "SignedAt": null
257
- }
258
- }
244
+ HEMARatings: [
245
+ {
246
+ HemaRatingId: 10263,
247
+ WeaponId: 1,
248
+ Rating: 1441.3
249
+ }
250
+ ],
251
+ M2Ratings: [],
252
+ Weaver: {
253
+ Required: true,
254
+ Scope: 'club',
255
+ Signed: false,
256
+ SignedAt: null
257
+ }
258
+ }
259
+ },
260
+ {
261
+ Id: 485,
262
+ EventId: 26,
263
+ PoolId: 212,
264
+ PersonId: 176,
265
+ Seed: 25,
266
+ PoolPosition: 6,
267
+ DEPosition: 17,
268
+ Status: 'Present',
269
+ LastNote: '',
270
+ Person: {
271
+ PersonId: 176,
272
+ DisplayName: 'Gerard Averill',
273
+ ShowData: true,
274
+ Images: [
275
+ {
276
+ ImageId: null,
277
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
278
+ AltText: 'Gerard Averill',
279
+ Type: 'Portrait',
280
+ EntityId: 176,
281
+ EntityType: 'Person'
282
+ }
283
+ ],
284
+ Club: {
285
+ ClubId: 120,
286
+ Name: 'Nashville School of Historical Fencing',
287
+ ShortName: 'NH',
288
+ Color1: 'Red',
289
+ Color2: 'Gold'
259
290
  },
260
- {
261
- "Id": 485,
262
- "EventId": 26,
263
- "PoolId": 212,
264
- "PersonId": 176,
265
- "Seed": 25,
266
- "PoolPosition": 6,
267
- "DEPosition": 17,
268
- "Status": "Present",
269
- "LastNote": "",
270
- "Person": {
271
- "PersonId": 176,
272
- "DisplayName": "Gerard Averill",
273
- "ShowData": true,
274
- "Images": [
275
- {
276
- "ImageId": null,
277
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
278
- "AltText": "Gerard Averill",
279
- "Type": "Portrait",
280
- "EntityId": 176,
281
- "EntityType": "Person"
282
- }
283
- ],
284
- "Club": {
285
- "ClubId": 120,
286
- "Name": "Nashville School of Historical Fencing",
287
- "ShortName": "NH",
288
- "Color1": "Red",
289
- "Color2": "Gold"
290
- },
291
- "HEMARatings": [
292
- {
293
- "HemaRatingId": 10254,
294
- "WeaponId": 1,
295
- "Rating": 1400.7
296
- }
297
- ],
298
- "M2Ratings": [],
299
- "Weaver": {
300
- "Required": true,
301
- "Scope": "club",
302
- "Signed": false,
303
- "SignedAt": null
304
- }
305
- }
291
+ HEMARatings: [
292
+ {
293
+ HemaRatingId: 10254,
294
+ WeaponId: 1,
295
+ Rating: 1400.7
296
+ }
297
+ ],
298
+ M2Ratings: [],
299
+ Weaver: {
300
+ Required: true,
301
+ Scope: 'club',
302
+ Signed: false,
303
+ SignedAt: null
304
+ }
305
+ }
306
+ },
307
+ {
308
+ Id: 490,
309
+ EventId: 26,
310
+ PoolId: 212,
311
+ PersonId: 180,
312
+ Seed: 37,
313
+ PoolPosition: 31,
314
+ DEPosition: 1,
315
+ Status: 'Present',
316
+ LastNote: '',
317
+ Person: {
318
+ PersonId: 180,
319
+ DisplayName: 'Logan Santerelli',
320
+ ShowData: true,
321
+ Images: [
322
+ {
323
+ ImageId: null,
324
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
325
+ AltText: 'Logan Santerelli',
326
+ Type: 'Portrait',
327
+ EntityId: 180,
328
+ EntityType: 'Person'
329
+ }
330
+ ],
331
+ Club: {
332
+ ClubId: 120,
333
+ Name: 'Nashville School of Historical Fencing',
334
+ ShortName: 'NH',
335
+ Color1: 'Red',
336
+ Color2: 'Gold'
306
337
  },
307
- {
308
- "Id": 490,
309
- "EventId": 26,
310
- "PoolId": 212,
311
- "PersonId": 180,
312
- "Seed": 37,
313
- "PoolPosition": 31,
314
- "DEPosition": 1,
315
- "Status": "Present",
316
- "LastNote": "",
317
- "Person": {
318
- "PersonId": 180,
319
- "DisplayName": "Logan Santerelli",
320
- "ShowData": true,
321
- "Images": [
322
- {
323
- "ImageId": null,
324
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
325
- "AltText": "Logan Santerelli",
326
- "Type": "Portrait",
327
- "EntityId": 180,
328
- "EntityType": "Person"
329
- }
330
- ],
331
- "Club": {
332
- "ClubId": 120,
333
- "Name": "Nashville School of Historical Fencing",
334
- "ShortName": "NH",
335
- "Color1": "Red",
336
- "Color2": "Gold"
337
- },
338
- "HEMARatings": [
339
- {
340
- "HemaRatingId": 10265,
341
- "WeaponId": 1,
342
- "Rating": 1379.7
343
- }
344
- ],
345
- "M2Ratings": [],
346
- "Weaver": {
347
- "Required": true,
348
- "Scope": "club",
349
- "Signed": false,
350
- "SignedAt": null
351
- }
352
- }
338
+ HEMARatings: [
339
+ {
340
+ HemaRatingId: 10265,
341
+ WeaponId: 1,
342
+ Rating: 1379.7
343
+ }
344
+ ],
345
+ M2Ratings: [],
346
+ Weaver: {
347
+ Required: true,
348
+ Scope: 'club',
349
+ Signed: false,
350
+ SignedAt: null
351
+ }
352
+ }
353
+ },
354
+ {
355
+ Id: 459,
356
+ EventId: 26,
357
+ PoolId: 207,
358
+ PersonId: 159,
359
+ Seed: 32,
360
+ PoolPosition: 37,
361
+ DEPosition: 4,
362
+ Status: 'Present',
363
+ LastNote: '',
364
+ Person: {
365
+ PersonId: 159,
366
+ DisplayName: 'Dylan Thomas',
367
+ ShowData: true,
368
+ Images: [
369
+ {
370
+ ImageId: null,
371
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
372
+ AltText: 'Dylan Thomas',
373
+ Type: 'Portrait',
374
+ EntityId: 159,
375
+ EntityType: 'Person'
376
+ }
377
+ ],
378
+ Club: {
379
+ ClubId: 139,
380
+ Name: 'Black Bear Historical Fencing',
381
+ ShortName: 'BBHF',
382
+ Color1: 'Red',
383
+ Color2: 'Gold'
353
384
  },
354
- {
355
- "Id": 459,
356
- "EventId": 26,
357
- "PoolId": 207,
358
- "PersonId": 159,
359
- "Seed": 32,
360
- "PoolPosition": 37,
361
- "DEPosition": 4,
362
- "Status": "Present",
363
- "LastNote": "",
364
- "Person": {
365
- "PersonId": 159,
366
- "DisplayName": "Dylan Thomas",
367
- "ShowData": true,
368
- "Images": [
369
- {
370
- "ImageId": null,
371
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
372
- "AltText": "Dylan Thomas",
373
- "Type": "Portrait",
374
- "EntityId": 159,
375
- "EntityType": "Person"
376
- }
377
- ],
378
- "Club": {
379
- "ClubId": 139,
380
- "Name": "Black Bear Historical Fencing",
381
- "ShortName": "BBHF",
382
- "Color1": "Red",
383
- "Color2": "Gold"
384
- },
385
- "HEMARatings": [
386
- {
387
- "HemaRatingId": 9856,
388
- "WeaponId": 1,
389
- "Rating": 1366.4
390
- }
391
- ],
392
- "M2Ratings": [],
393
- "Weaver": {
394
- "Required": true,
395
- "Scope": "club",
396
- "Signed": false,
397
- "SignedAt": null
398
- }
399
- }
385
+ HEMARatings: [
386
+ {
387
+ HemaRatingId: 9856,
388
+ WeaponId: 1,
389
+ Rating: 1366.4
390
+ }
391
+ ],
392
+ M2Ratings: [],
393
+ Weaver: {
394
+ Required: true,
395
+ Scope: 'club',
396
+ Signed: false,
397
+ SignedAt: null
398
+ }
399
+ }
400
+ },
401
+ {
402
+ Id: 455,
403
+ EventId: 26,
404
+ PoolId: 207,
405
+ PersonId: 59,
406
+ Seed: 2,
407
+ PoolPosition: 13,
408
+ DEPosition: 19,
409
+ Status: 'Present',
410
+ LastNote: '',
411
+ Person: {
412
+ PersonId: 59,
413
+ DisplayName: 'Loyd Briski',
414
+ ShowData: true,
415
+ Images: [
416
+ {
417
+ ImageId: null,
418
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
419
+ AltText: 'Loyd Briski',
420
+ Type: 'Portrait',
421
+ EntityId: 59,
422
+ EntityType: 'Person'
423
+ }
424
+ ],
425
+ Club: {
426
+ ClubId: 23,
427
+ Name: 'Queen City Sword Guild',
428
+ ShortName: 'QCSG',
429
+ Color1: 'blue',
430
+ Color2: 'silver'
400
431
  },
401
- {
402
- "Id": 455,
403
- "EventId": 26,
404
- "PoolId": 207,
405
- "PersonId": 59,
406
- "Seed": 2,
407
- "PoolPosition": 13,
408
- "DEPosition": 19,
409
- "Status": "Present",
410
- "LastNote": "",
411
- "Person": {
412
- "PersonId": 59,
413
- "DisplayName": "Loyd Briski",
414
- "ShowData": true,
415
- "Images": [
416
- {
417
- "ImageId": null,
418
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
419
- "AltText": "Loyd Briski",
420
- "Type": "Portrait",
421
- "EntityId": 59,
422
- "EntityType": "Person"
423
- }
424
- ],
425
- "Club": {
426
- "ClubId": 23,
427
- "Name": "Queen City Sword Guild",
428
- "ShortName": "QCSG",
429
- "Color1": "blue",
430
- "Color2": "silver"
431
- },
432
- "HEMARatings": [
433
- {
434
- "HemaRatingId": 10266,
435
- "WeaponId": 1,
436
- "Rating": 1344.975
437
- }
438
- ],
439
- "M2Ratings": [],
440
- "Weaver": {
441
- "Required": true,
442
- "Scope": "club",
443
- "Signed": false,
444
- "SignedAt": null
445
- }
446
- }
432
+ HEMARatings: [
433
+ {
434
+ HemaRatingId: 10266,
435
+ WeaponId: 1,
436
+ Rating: 1344.975
437
+ }
438
+ ],
439
+ M2Ratings: [],
440
+ Weaver: {
441
+ Required: true,
442
+ Scope: 'club',
443
+ Signed: false,
444
+ SignedAt: null
445
+ }
446
+ }
447
+ },
448
+ {
449
+ Id: 482,
450
+ EventId: 26,
451
+ PoolId: 211,
452
+ PersonId: 143,
453
+ Seed: 35,
454
+ PoolPosition: 20,
455
+ DEPosition: 23,
456
+ Status: 'Present',
457
+ LastNote: '',
458
+ Person: {
459
+ PersonId: 143,
460
+ DisplayName: 'Travis Hugan',
461
+ ShowData: true,
462
+ Images: [
463
+ {
464
+ ImageId: null,
465
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
466
+ AltText: 'Travis Hugan',
467
+ Type: 'Portrait',
468
+ EntityId: 143,
469
+ EntityType: 'Person'
470
+ }
471
+ ],
472
+ Club: {
473
+ ClubId: 69,
474
+ Name: 'Ann Arbor Sword Club',
475
+ ShortName: 'AASC',
476
+ Color1: 'Red',
477
+ Color2: 'While'
447
478
  },
448
- {
449
- "Id": 482,
450
- "EventId": 26,
451
- "PoolId": 211,
452
- "PersonId": 143,
453
- "Seed": 35,
454
- "PoolPosition": 20,
455
- "DEPosition": 23,
456
- "Status": "Present",
457
- "LastNote": "",
458
- "Person": {
459
- "PersonId": 143,
460
- "DisplayName": "Travis Hugan",
461
- "ShowData": true,
462
- "Images": [
463
- {
464
- "ImageId": null,
465
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
466
- "AltText": "Travis Hugan",
467
- "Type": "Portrait",
468
- "EntityId": 143,
469
- "EntityType": "Person"
470
- }
471
- ],
472
- "Club": {
473
- "ClubId": 69,
474
- "Name": "Ann Arbor Sword Club",
475
- "ShortName": "AASC",
476
- "Color1": "Red",
477
- "Color2": "While"
478
- },
479
- "HEMARatings": [
480
- {
481
- "HemaRatingId": 10272,
482
- "WeaponId": 1,
483
- "Rating": 1311.1
484
- }
485
- ],
486
- "M2Ratings": [],
487
- "Weaver": {
488
- "Required": true,
489
- "Scope": "club",
490
- "Signed": false,
491
- "SignedAt": null
492
- }
493
- }
479
+ HEMARatings: [
480
+ {
481
+ HemaRatingId: 10272,
482
+ WeaponId: 1,
483
+ Rating: 1311.1
484
+ }
485
+ ],
486
+ M2Ratings: [],
487
+ Weaver: {
488
+ Required: true,
489
+ Scope: 'club',
490
+ Signed: false,
491
+ SignedAt: null
492
+ }
493
+ }
494
+ },
495
+ {
496
+ Id: 483,
497
+ EventId: 26,
498
+ PoolId: 211,
499
+ PersonId: 175,
500
+ Seed: 31,
501
+ PoolPosition: 29,
502
+ DEPosition: 18,
503
+ Status: 'Present',
504
+ LastNote: '',
505
+ Person: {
506
+ PersonId: 175,
507
+ DisplayName: 'Tim Wallace',
508
+ ShowData: true,
509
+ Images: [
510
+ {
511
+ ImageId: null,
512
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
513
+ AltText: 'Tim Wallace',
514
+ Type: 'Portrait',
515
+ EntityId: 175,
516
+ EntityType: 'Person'
517
+ }
518
+ ],
519
+ Club: {
520
+ ClubId: 26,
521
+ Name: 'Youngstown Historical Fencing',
522
+ ShortName: 'YHF',
523
+ Color1: 'Red',
524
+ Color2: 'Gold'
494
525
  },
495
- {
496
- "Id": 483,
497
- "EventId": 26,
498
- "PoolId": 211,
499
- "PersonId": 175,
500
- "Seed": 31,
501
- "PoolPosition": 29,
502
- "DEPosition": 18,
503
- "Status": "Present",
504
- "LastNote": "",
505
- "Person": {
506
- "PersonId": 175,
507
- "DisplayName": "Tim Wallace",
508
- "ShowData": true,
509
- "Images": [
510
- {
511
- "ImageId": null,
512
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
513
- "AltText": "Tim Wallace",
514
- "Type": "Portrait",
515
- "EntityId": 175,
516
- "EntityType": "Person"
517
- }
518
- ],
519
- "Club": {
520
- "ClubId": 26,
521
- "Name": "Youngstown Historical Fencing",
522
- "ShortName": "YHF",
523
- "Color1": "Red",
524
- "Color2": "Gold"
525
- },
526
- "HEMARatings": [
527
- {
528
- "HemaRatingId": 10271,
529
- "WeaponId": 1,
530
- "Rating": 1303
531
- }
532
- ],
533
- "M2Ratings": [],
534
- "Weaver": {
535
- "Required": true,
536
- "Scope": "club",
537
- "Signed": false,
538
- "SignedAt": null
539
- }
540
- }
526
+ HEMARatings: [
527
+ {
528
+ HemaRatingId: 10271,
529
+ WeaponId: 1,
530
+ Rating: 1303
531
+ }
532
+ ],
533
+ M2Ratings: [],
534
+ Weaver: {
535
+ Required: true,
536
+ Scope: 'club',
537
+ Signed: false,
538
+ SignedAt: null
539
+ }
540
+ }
541
+ },
542
+ {
543
+ Id: 473,
544
+ EventId: 26,
545
+ PoolId: 210,
546
+ PersonId: 169,
547
+ Seed: 6,
548
+ PoolPosition: 4,
549
+ DEPosition: 28,
550
+ Status: 'Present',
551
+ LastNote: '',
552
+ Person: {
553
+ PersonId: 169,
554
+ DisplayName: 'Joseph Campbell',
555
+ ShowData: true,
556
+ Images: [
557
+ {
558
+ ImageId: null,
559
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
560
+ AltText: 'Joseph Campbell',
561
+ Type: 'Portrait',
562
+ EntityId: 169,
563
+ EntityType: 'Person'
564
+ }
565
+ ],
566
+ Club: {
567
+ ClubId: 33,
568
+ Name: 'Grand Rapids HEMA Society',
569
+ ShortName: 'GRHS',
570
+ Color1: 'Red',
571
+ Color2: 'Gold'
541
572
  },
542
- {
543
- "Id": 473,
544
- "EventId": 26,
545
- "PoolId": 210,
546
- "PersonId": 169,
547
- "Seed": 6,
548
- "PoolPosition": 4,
549
- "DEPosition": 28,
550
- "Status": "Present",
551
- "LastNote": "",
552
- "Person": {
553
- "PersonId": 169,
554
- "DisplayName": "Joseph Campbell",
555
- "ShowData": true,
556
- "Images": [
557
- {
558
- "ImageId": null,
559
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
560
- "AltText": "Joseph Campbell",
561
- "Type": "Portrait",
562
- "EntityId": 169,
563
- "EntityType": "Person"
564
- }
565
- ],
566
- "Club": {
567
- "ClubId": 33,
568
- "Name": "Grand Rapids HEMA Society",
569
- "ShortName": "GRHS",
570
- "Color1": "Red",
571
- "Color2": "Gold"
572
- },
573
- "HEMARatings": [
574
- {
575
- "HemaRatingId": 833,
576
- "WeaponId": 1,
577
- "Rating": 1256.1
578
- }
579
- ],
580
- "M2Ratings": [],
581
- "Weaver": {
582
- "Required": true,
583
- "Scope": "club",
584
- "Signed": false,
585
- "SignedAt": null
586
- }
587
- }
573
+ HEMARatings: [
574
+ {
575
+ HemaRatingId: 833,
576
+ WeaponId: 1,
577
+ Rating: 1256.1
578
+ }
579
+ ],
580
+ M2Ratings: [],
581
+ Weaver: {
582
+ Required: true,
583
+ Scope: 'club',
584
+ Signed: false,
585
+ SignedAt: null
586
+ }
587
+ }
588
+ },
589
+ {
590
+ Id: 468,
591
+ EventId: 26,
592
+ PoolId: 208,
593
+ PersonId: 165,
594
+ Seed: 27,
595
+ PoolPosition: 10,
596
+ DEPosition: 2,
597
+ Status: 'Present',
598
+ LastNote: '',
599
+ Person: {
600
+ PersonId: 165,
601
+ DisplayName: 'Natalie Chaykina',
602
+ ShowData: true,
603
+ Images: [
604
+ {
605
+ ImageId: null,
606
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
607
+ AltText: 'Natalie Chaykina',
608
+ Type: 'Portrait',
609
+ EntityId: 165,
610
+ EntityType: 'Person'
611
+ }
612
+ ],
613
+ Club: {
614
+ ClubId: 37,
615
+ Name: 'Indianapolis Fencing Club',
616
+ ShortName: 'IFC',
617
+ Color1: 'Red',
618
+ Color2: 'Gold'
588
619
  },
589
- {
590
- "Id": 468,
591
- "EventId": 26,
592
- "PoolId": 208,
593
- "PersonId": 165,
594
- "Seed": 27,
595
- "PoolPosition": 10,
596
- "DEPosition": 2,
597
- "Status": "Present",
598
- "LastNote": "",
599
- "Person": {
600
- "PersonId": 165,
601
- "DisplayName": "Natalie Chaykina",
602
- "ShowData": true,
603
- "Images": [
604
- {
605
- "ImageId": null,
606
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
607
- "AltText": "Natalie Chaykina",
608
- "Type": "Portrait",
609
- "EntityId": 165,
610
- "EntityType": "Person"
611
- }
612
- ],
613
- "Club": {
614
- "ClubId": 37,
615
- "Name": "Indianapolis Fencing Club",
616
- "ShortName": "IFC",
617
- "Color1": "Red",
618
- "Color2": "Gold"
619
- },
620
- "HEMARatings": [
621
- {
622
- "HemaRatingId": 8968,
623
- "WeaponId": 1,
624
- "Rating": 1249.2
625
- }
626
- ],
627
- "M2Ratings": [],
628
- "Weaver": {
629
- "Required": true,
630
- "Scope": "club",
631
- "Signed": false,
632
- "SignedAt": null
633
- }
634
- }
620
+ HEMARatings: [
621
+ {
622
+ HemaRatingId: 8968,
623
+ WeaponId: 1,
624
+ Rating: 1249.2
625
+ }
626
+ ],
627
+ M2Ratings: [],
628
+ Weaver: {
629
+ Required: true,
630
+ Scope: 'club',
631
+ Signed: false,
632
+ SignedAt: null
633
+ }
634
+ }
635
+ },
636
+ {
637
+ Id: 453,
638
+ EventId: 26,
639
+ PoolId: 207,
640
+ PersonId: 142,
641
+ Seed: 24,
642
+ PoolPosition: 1,
643
+ DEPosition: 20,
644
+ Status: 'Present',
645
+ LastNote: '',
646
+ Person: {
647
+ PersonId: 142,
648
+ DisplayName: 'Andrew Bakry',
649
+ ShowData: true,
650
+ Images: [
651
+ {
652
+ ImageId: null,
653
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
654
+ AltText: 'Andrew Bakry',
655
+ Type: 'Portrait',
656
+ EntityId: 142,
657
+ EntityType: 'Person'
658
+ }
659
+ ],
660
+ Club: {
661
+ ClubId: 30,
662
+ Name: 'Maryland Kunst Des Fechtens',
663
+ ShortName: 'MKDF',
664
+ Color1: 'Red',
665
+ Color2: 'Gold'
635
666
  },
636
- {
637
- "Id": 453,
638
- "EventId": 26,
639
- "PoolId": 207,
640
- "PersonId": 142,
641
- "Seed": 24,
642
- "PoolPosition": 1,
643
- "DEPosition": 20,
644
- "Status": "Present",
645
- "LastNote": "",
646
- "Person": {
647
- "PersonId": 142,
648
- "DisplayName": "Andrew Bakry",
649
- "ShowData": true,
650
- "Images": [
651
- {
652
- "ImageId": null,
653
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
654
- "AltText": "Andrew Bakry",
655
- "Type": "Portrait",
656
- "EntityId": 142,
657
- "EntityType": "Person"
658
- }
659
- ],
660
- "Club": {
661
- "ClubId": 30,
662
- "Name": "Maryland Kunst Des Fechtens",
663
- "ShortName": "MKDF",
664
- "Color1": "Red",
665
- "Color2": "Gold"
666
- },
667
- "HEMARatings": [
668
- {
669
- "HemaRatingId": 8134,
670
- "WeaponId": 1,
671
- "Rating": 1221
672
- }
673
- ],
674
- "M2Ratings": [],
675
- "Weaver": {
676
- "Required": true,
677
- "Scope": "club",
678
- "Signed": false,
679
- "SignedAt": null
680
- }
681
- }
667
+ HEMARatings: [
668
+ {
669
+ HemaRatingId: 8134,
670
+ WeaponId: 1,
671
+ Rating: 1221
672
+ }
673
+ ],
674
+ M2Ratings: [],
675
+ Weaver: {
676
+ Required: true,
677
+ Scope: 'club',
678
+ Signed: false,
679
+ SignedAt: null
680
+ }
681
+ }
682
+ },
683
+ {
684
+ Id: 461,
685
+ EventId: 26,
686
+ PoolId: 209,
687
+ PersonId: 160,
688
+ Seed: 26,
689
+ PoolPosition: 11,
690
+ DEPosition: 13,
691
+ Status: 'Present',
692
+ LastNote: '',
693
+ Person: {
694
+ PersonId: 160,
695
+ DisplayName: 'LeRoy Brown',
696
+ ShowData: true,
697
+ Images: [
698
+ {
699
+ ImageId: null,
700
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
701
+ AltText: 'LeRoy Brown',
702
+ Type: 'Portrait',
703
+ EntityId: 160,
704
+ EntityType: 'Person'
705
+ }
706
+ ],
707
+ Club: {
708
+ ClubId: 37,
709
+ Name: 'Indianapolis Fencing Club',
710
+ ShortName: 'IFC',
711
+ Color1: 'Red',
712
+ Color2: 'Gold'
682
713
  },
683
- {
684
- "Id": 461,
685
- "EventId": 26,
686
- "PoolId": 209,
687
- "PersonId": 160,
688
- "Seed": 26,
689
- "PoolPosition": 11,
690
- "DEPosition": 13,
691
- "Status": "Present",
692
- "LastNote": "",
693
- "Person": {
694
- "PersonId": 160,
695
- "DisplayName": "LeRoy Brown",
696
- "ShowData": true,
697
- "Images": [
698
- {
699
- "ImageId": null,
700
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
701
- "AltText": "LeRoy Brown",
702
- "Type": "Portrait",
703
- "EntityId": 160,
704
- "EntityType": "Person"
705
- }
706
- ],
707
- "Club": {
708
- "ClubId": 37,
709
- "Name": "Indianapolis Fencing Club",
710
- "ShortName": "IFC",
711
- "Color1": "Red",
712
- "Color2": "Gold"
713
- },
714
- "HEMARatings": [
715
- {
716
- "HemaRatingId": 10264,
717
- "WeaponId": 1,
718
- "Rating": 1203.7
719
- }
720
- ],
721
- "M2Ratings": [],
722
- "Weaver": {
723
- "Required": true,
724
- "Scope": "club",
725
- "Signed": false,
726
- "SignedAt": null
727
- }
728
- }
714
+ HEMARatings: [
715
+ {
716
+ HemaRatingId: 10264,
717
+ WeaponId: 1,
718
+ Rating: 1203.7
719
+ }
720
+ ],
721
+ M2Ratings: [],
722
+ Weaver: {
723
+ Required: true,
724
+ Scope: 'club',
725
+ Signed: false,
726
+ SignedAt: null
727
+ }
728
+ }
729
+ },
730
+ {
731
+ Id: 463,
732
+ EventId: 26,
733
+ PoolId: 209,
734
+ PersonId: 74,
735
+ Seed: 3,
736
+ PoolPosition: 23,
737
+ DEPosition: 16,
738
+ Status: 'Present',
739
+ LastNote: '',
740
+ Person: {
741
+ PersonId: 74,
742
+ DisplayName: 'William Grube',
743
+ ShowData: true,
744
+ Images: [
745
+ {
746
+ ImageId: null,
747
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
748
+ AltText: 'William Grube',
749
+ Type: 'Portrait',
750
+ EntityId: 74,
751
+ EntityType: 'Person'
752
+ }
753
+ ],
754
+ Club: {
755
+ ClubId: 23,
756
+ Name: 'Queen City Sword Guild',
757
+ ShortName: 'QCSG',
758
+ Color1: 'blue',
759
+ Color2: 'silver'
729
760
  },
730
- {
731
- "Id": 463,
732
- "EventId": 26,
733
- "PoolId": 209,
734
- "PersonId": 74,
735
- "Seed": 3,
736
- "PoolPosition": 23,
737
- "DEPosition": 16,
738
- "Status": "Present",
739
- "LastNote": "",
740
- "Person": {
741
- "PersonId": 74,
742
- "DisplayName": "William Grube",
743
- "ShowData": true,
744
- "Images": [
745
- {
746
- "ImageId": null,
747
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
748
- "AltText": "William Grube",
749
- "Type": "Portrait",
750
- "EntityId": 74,
751
- "EntityType": "Person"
752
- }
753
- ],
754
- "Club": {
755
- "ClubId": 23,
756
- "Name": "Queen City Sword Guild",
757
- "ShortName": "QCSG",
758
- "Color1": "blue",
759
- "Color2": "silver"
760
- },
761
- "HEMARatings": [
762
- {
763
- "HemaRatingId": 10273,
764
- "WeaponId": 1,
765
- "Rating": 1183
766
- }
767
- ],
768
- "M2Ratings": [],
769
- "Weaver": {
770
- "Required": true,
771
- "Scope": "club",
772
- "Signed": false,
773
- "SignedAt": null
774
- }
775
- }
761
+ HEMARatings: [
762
+ {
763
+ HemaRatingId: 10273,
764
+ WeaponId: 1,
765
+ Rating: 1183
766
+ }
767
+ ],
768
+ M2Ratings: [],
769
+ Weaver: {
770
+ Required: true,
771
+ Scope: 'club',
772
+ Signed: false,
773
+ SignedAt: null
774
+ }
775
+ }
776
+ },
777
+ {
778
+ Id: 480,
779
+ EventId: 26,
780
+ PoolId: 211,
781
+ PersonId: 173,
782
+ Seed: 12,
783
+ PoolPosition: 8,
784
+ DEPosition: 9,
785
+ Status: 'Present',
786
+ LastNote: '',
787
+ Person: {
788
+ PersonId: 173,
789
+ DisplayName: 'Brandon DΓÇÖArcy',
790
+ ShowData: true,
791
+ Images: [
792
+ {
793
+ ImageId: null,
794
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
795
+ AltText: 'Brandon DΓÇÖArcy',
796
+ Type: 'Portrait',
797
+ EntityId: 173,
798
+ EntityType: 'Person'
799
+ }
800
+ ],
801
+ Club: {
802
+ ClubId: 47,
803
+ Name: 'Nickel City Longsword Academy',
804
+ ShortName: 'NCLA',
805
+ Color1: 'Red',
806
+ Color2: 'Gold'
776
807
  },
777
- {
778
- "Id": 480,
779
- "EventId": 26,
780
- "PoolId": 211,
781
- "PersonId": 173,
782
- "Seed": 12,
783
- "PoolPosition": 8,
784
- "DEPosition": 9,
785
- "Status": "Present",
786
- "LastNote": "",
787
- "Person": {
788
- "PersonId": 173,
789
- "DisplayName": "Brandon DΓÇÖArcy",
790
- "ShowData": true,
791
- "Images": [
792
- {
793
- "ImageId": null,
794
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
795
- "AltText": "Brandon DΓÇÖArcy",
796
- "Type": "Portrait",
797
- "EntityId": 173,
798
- "EntityType": "Person"
799
- }
800
- ],
801
- "Club": {
802
- "ClubId": 47,
803
- "Name": "Nickel City Longsword Academy",
804
- "ShortName": "NCLA",
805
- "Color1": "Red",
806
- "Color2": "Gold"
807
- },
808
- "HEMARatings": [
809
- {
810
- "HemaRatingId": 9936,
811
- "WeaponId": 1,
812
- "Rating": 1182.4
813
- }
814
- ],
815
- "M2Ratings": [],
816
- "Weaver": {
817
- "Required": true,
818
- "Scope": "club",
819
- "Signed": false,
820
- "SignedAt": null
821
- }
822
- }
808
+ HEMARatings: [
809
+ {
810
+ HemaRatingId: 9936,
811
+ WeaponId: 1,
812
+ Rating: 1182.4
813
+ }
814
+ ],
815
+ M2Ratings: [],
816
+ Weaver: {
817
+ Required: true,
818
+ Scope: 'club',
819
+ Signed: false,
820
+ SignedAt: null
821
+ }
822
+ }
823
+ },
824
+ {
825
+ Id: 489,
826
+ EventId: 26,
827
+ PoolId: 212,
828
+ PersonId: 179,
829
+ Seed: 9,
830
+ PoolPosition: 30,
831
+ DEPosition: 22,
832
+ Status: 'Present',
833
+ LastNote: '',
834
+ Person: {
835
+ PersonId: 179,
836
+ DisplayName: 'Justin Moore',
837
+ ShowData: true,
838
+ Images: [
839
+ {
840
+ ImageId: null,
841
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
842
+ AltText: 'Justin Moore',
843
+ Type: 'Portrait',
844
+ EntityId: 179,
845
+ EntityType: 'Person'
846
+ }
847
+ ],
848
+ Club: {
849
+ ClubId: 37,
850
+ Name: 'Indianapolis Fencing Club',
851
+ ShortName: 'IFC',
852
+ Color1: 'Red',
853
+ Color2: 'Gold'
823
854
  },
824
- {
825
- "Id": 489,
826
- "EventId": 26,
827
- "PoolId": 212,
828
- "PersonId": 179,
829
- "Seed": 9,
830
- "PoolPosition": 30,
831
- "DEPosition": 22,
832
- "Status": "Present",
833
- "LastNote": "",
834
- "Person": {
835
- "PersonId": 179,
836
- "DisplayName": "Justin Moore",
837
- "ShowData": true,
838
- "Images": [
839
- {
840
- "ImageId": null,
841
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
842
- "AltText": "Justin Moore",
843
- "Type": "Portrait",
844
- "EntityId": 179,
845
- "EntityType": "Person"
846
- }
847
- ],
848
- "Club": {
849
- "ClubId": 37,
850
- "Name": "Indianapolis Fencing Club",
851
- "ShortName": "IFC",
852
- "Color1": "Red",
853
- "Color2": "Gold"
854
- },
855
- "HEMARatings": [
856
- {
857
- "HemaRatingId": 10259,
858
- "WeaponId": 1,
859
- "Rating": 1168.5
860
- }
861
- ],
862
- "M2Ratings": [],
863
- "Weaver": {
864
- "Required": true,
865
- "Scope": "club",
866
- "Signed": false,
867
- "SignedAt": null
868
- }
869
- }
855
+ HEMARatings: [
856
+ {
857
+ HemaRatingId: 10259,
858
+ WeaponId: 1,
859
+ Rating: 1168.5
860
+ }
861
+ ],
862
+ M2Ratings: [],
863
+ Weaver: {
864
+ Required: true,
865
+ Scope: 'club',
866
+ Signed: false,
867
+ SignedAt: null
868
+ }
869
+ }
870
+ },
871
+ {
872
+ Id: 465,
873
+ EventId: 26,
874
+ PoolId: 209,
875
+ PersonId: 162,
876
+ Seed: 10,
877
+ PoolPosition: 35,
878
+ DEPosition: 30,
879
+ Status: 'Present',
880
+ LastNote: '',
881
+ Person: {
882
+ PersonId: 162,
883
+ DisplayName: 'Douglas Silfies',
884
+ ShowData: true,
885
+ Images: [
886
+ {
887
+ ImageId: null,
888
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
889
+ AltText: 'Douglas Silfies',
890
+ Type: 'Portrait',
891
+ EntityId: 162,
892
+ EntityType: 'Person'
893
+ }
894
+ ],
895
+ Club: {
896
+ ClubId: 68,
897
+ Name: "L'arte Lehigh Valley",
898
+ ShortName: 'ALV',
899
+ Color1: 'Red',
900
+ Color2: 'Gold'
870
901
  },
871
- {
872
- "Id": 465,
873
- "EventId": 26,
874
- "PoolId": 209,
875
- "PersonId": 162,
876
- "Seed": 10,
877
- "PoolPosition": 35,
878
- "DEPosition": 30,
879
- "Status": "Present",
880
- "LastNote": "",
881
- "Person": {
882
- "PersonId": 162,
883
- "DisplayName": "Douglas Silfies",
884
- "ShowData": true,
885
- "Images": [
886
- {
887
- "ImageId": null,
888
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
889
- "AltText": "Douglas Silfies",
890
- "Type": "Portrait",
891
- "EntityId": 162,
892
- "EntityType": "Person"
893
- }
894
- ],
895
- "Club": {
896
- "ClubId": 68,
897
- "Name": "L'arte Lehigh Valley",
898
- "ShortName": "ALV",
899
- "Color1": "Red",
900
- "Color2": "Gold"
901
- },
902
- "HEMARatings": [
903
- {
904
- "HemaRatingId": 8131,
905
- "WeaponId": 1,
906
- "Rating": 1150.2
907
- }
908
- ],
909
- "M2Ratings": [],
910
- "Weaver": {
911
- "Required": true,
912
- "Scope": "club",
913
- "Signed": false,
914
- "SignedAt": null
915
- }
916
- }
902
+ HEMARatings: [
903
+ {
904
+ HemaRatingId: 8131,
905
+ WeaponId: 1,
906
+ Rating: 1150.2
907
+ }
908
+ ],
909
+ M2Ratings: [],
910
+ Weaver: {
911
+ Required: true,
912
+ Scope: 'club',
913
+ Signed: false,
914
+ SignedAt: null
915
+ }
916
+ }
917
+ },
918
+ {
919
+ Id: 477,
920
+ EventId: 26,
921
+ PoolId: 210,
922
+ PersonId: 91,
923
+ Seed: 4,
924
+ PoolPosition: 28,
925
+ DEPosition: 12,
926
+ Status: 'Present',
927
+ LastNote: '',
928
+ Person: {
929
+ PersonId: 91,
930
+ DisplayName: 'Maria Rieske',
931
+ ShowData: true,
932
+ Images: [
933
+ {
934
+ ImageId: null,
935
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
936
+ AltText: 'Maria Rieske',
937
+ Type: 'Portrait',
938
+ EntityId: 91,
939
+ EntityType: 'Person'
940
+ }
941
+ ],
942
+ Club: {
943
+ ClubId: 10,
944
+ Name: 'Columbus United Fencing Club',
945
+ ShortName: 'CUFC',
946
+ Color1: 'navy',
947
+ Color2: 'rose'
917
948
  },
918
- {
919
- "Id": 477,
920
- "EventId": 26,
921
- "PoolId": 210,
922
- "PersonId": 91,
923
- "Seed": 4,
924
- "PoolPosition": 28,
925
- "DEPosition": 12,
926
- "Status": "Present",
927
- "LastNote": "",
928
- "Person": {
929
- "PersonId": 91,
930
- "DisplayName": "Maria Rieske",
931
- "ShowData": true,
932
- "Images": [
933
- {
934
- "ImageId": null,
935
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
936
- "AltText": "Maria Rieske",
937
- "Type": "Portrait",
938
- "EntityId": 91,
939
- "EntityType": "Person"
940
- }
941
- ],
942
- "Club": {
943
- "ClubId": 10,
944
- "Name": "Columbus United Fencing Club",
945
- "ShortName": "CUFC",
946
- "Color1": "navy",
947
- "Color2": "rose"
948
- },
949
- "HEMARatings": [
950
- {
951
- "HemaRatingId": 9966,
952
- "WeaponId": 1,
953
- "Rating": 1150.1
954
- }
955
- ],
956
- "M2Ratings": [],
957
- "Weaver": {
958
- "Required": true,
959
- "Scope": "club",
960
- "Signed": false,
961
- "SignedAt": null
962
- }
963
- }
949
+ HEMARatings: [
950
+ {
951
+ HemaRatingId: 9966,
952
+ WeaponId: 1,
953
+ Rating: 1150.1
954
+ }
955
+ ],
956
+ M2Ratings: [],
957
+ Weaver: {
958
+ Required: true,
959
+ Scope: 'club',
960
+ Signed: false,
961
+ SignedAt: null
962
+ }
963
+ }
964
+ },
965
+ {
966
+ Id: 479,
967
+ EventId: 26,
968
+ PoolId: 211,
969
+ PersonId: 172,
970
+ Seed: 17,
971
+ PoolPosition: 5,
972
+ DEPosition: 27,
973
+ Status: 'Present',
974
+ LastNote: '',
975
+ Person: {
976
+ PersonId: 172,
977
+ DisplayName: 'Nicholas Brandmeir',
978
+ ShowData: true,
979
+ Images: [
980
+ {
981
+ ImageId: null,
982
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
983
+ AltText: 'Nicholas Brandmeir',
984
+ Type: 'Portrait',
985
+ EntityId: 172,
986
+ EntityType: 'Person'
987
+ }
988
+ ],
989
+ Club: {
990
+ ClubId: 139,
991
+ Name: 'Black Bear Historical Fencing',
992
+ ShortName: 'BBHF',
993
+ Color1: 'Red',
994
+ Color2: 'Gold'
964
995
  },
965
- {
966
- "Id": 479,
967
- "EventId": 26,
968
- "PoolId": 211,
969
- "PersonId": 172,
970
- "Seed": 17,
971
- "PoolPosition": 5,
972
- "DEPosition": 27,
973
- "Status": "Present",
974
- "LastNote": "",
975
- "Person": {
976
- "PersonId": 172,
977
- "DisplayName": "Nicholas Brandmeir",
978
- "ShowData": true,
979
- "Images": [
980
- {
981
- "ImageId": null,
982
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
983
- "AltText": "Nicholas Brandmeir",
984
- "Type": "Portrait",
985
- "EntityId": 172,
986
- "EntityType": "Person"
987
- }
988
- ],
989
- "Club": {
990
- "ClubId": 139,
991
- "Name": "Black Bear Historical Fencing",
992
- "ShortName": "BBHF",
993
- "Color1": "Red",
994
- "Color2": "Gold"
995
- },
996
- "HEMARatings": [
997
- {
998
- "HemaRatingId": 10269,
999
- "WeaponId": 1,
1000
- "Rating": 1135
1001
- }
1002
- ],
1003
- "M2Ratings": [],
1004
- "Weaver": {
1005
- "Required": true,
1006
- "Scope": "club",
1007
- "Signed": false,
1008
- "SignedAt": null
1009
- }
1010
- }
996
+ HEMARatings: [
997
+ {
998
+ HemaRatingId: 10269,
999
+ WeaponId: 1,
1000
+ Rating: 1135
1001
+ }
1002
+ ],
1003
+ M2Ratings: [],
1004
+ Weaver: {
1005
+ Required: true,
1006
+ Scope: 'club',
1007
+ Signed: false,
1008
+ SignedAt: null
1009
+ }
1010
+ }
1011
+ },
1012
+ {
1013
+ Id: 475,
1014
+ EventId: 26,
1015
+ PoolId: 210,
1016
+ PersonId: 170,
1017
+ Seed: 30,
1018
+ PoolPosition: 16,
1019
+ DEPosition: 8,
1020
+ Status: 'Present',
1021
+ LastNote: '',
1022
+ Person: {
1023
+ PersonId: 170,
1024
+ DisplayName: 'Nicholas Mills',
1025
+ ShowData: true,
1026
+ Images: [
1027
+ {
1028
+ ImageId: 145,
1029
+ URL: 'https://meyersquaredimages.com/uploads/p-c28992c5.png',
1030
+ AltText: 'Nicholas Mills',
1031
+ Type: 'Portrait',
1032
+ EntityId: 170,
1033
+ EntityType: 'Person'
1034
+ },
1035
+ {
1036
+ ImageId: 146,
1037
+ URL: 'https://meyersquaredimages.com/uploads/p-c28992c5.png',
1038
+ AltText: 'Nicholas Mills',
1039
+ Type: 'Portrait',
1040
+ EntityId: 170,
1041
+ EntityType: 'Person'
1042
+ }
1043
+ ],
1044
+ Club: {
1045
+ ClubId: 23,
1046
+ Name: 'Queen City Sword Guild',
1047
+ ShortName: 'QCSG',
1048
+ Color1: 'blue',
1049
+ Color2: 'silver'
1011
1050
  },
1012
- {
1013
- "Id": 475,
1014
- "EventId": 26,
1015
- "PoolId": 210,
1016
- "PersonId": 170,
1017
- "Seed": 30,
1018
- "PoolPosition": 16,
1019
- "DEPosition": 8,
1020
- "Status": "Present",
1021
- "LastNote": "",
1022
- "Person": {
1023
- "PersonId": 170,
1024
- "DisplayName": "Nicholas Mills",
1025
- "ShowData": true,
1026
- "Images": [
1027
- {
1028
- "ImageId": 145,
1029
- "URL": "https://meyersquaredimages.com/uploads/p-c28992c5.png",
1030
- "AltText": "Nicholas Mills",
1031
- "Type": "Portrait",
1032
- "EntityId": 170,
1033
- "EntityType": "Person"
1034
- },
1035
- {
1036
- "ImageId": 146,
1037
- "URL": "https://meyersquaredimages.com/uploads/p-c28992c5.png",
1038
- "AltText": "Nicholas Mills",
1039
- "Type": "Portrait",
1040
- "EntityId": 170,
1041
- "EntityType": "Person"
1042
- }
1043
- ],
1044
- "Club": {
1045
- "ClubId": 23,
1046
- "Name": "Queen City Sword Guild",
1047
- "ShortName": "QCSG",
1048
- "Color1": "blue",
1049
- "Color2": "silver"
1050
- },
1051
- "HEMARatings": [
1052
- {
1053
- "HemaRatingId": 14939,
1054
- "WeaponId": 1,
1055
- "Rating": 1112.8
1056
- }
1057
- ],
1058
- "M2Ratings": [],
1059
- "Weaver": {
1060
- "Required": true,
1061
- "Scope": "club",
1062
- "Signed": false,
1063
- "SignedAt": null
1064
- }
1065
- }
1051
+ HEMARatings: [
1052
+ {
1053
+ HemaRatingId: 14939,
1054
+ WeaponId: 1,
1055
+ Rating: 1112.8
1056
+ }
1057
+ ],
1058
+ M2Ratings: [],
1059
+ Weaver: {
1060
+ Required: true,
1061
+ Scope: 'club',
1062
+ Signed: false,
1063
+ SignedAt: null
1064
+ }
1065
+ }
1066
+ },
1067
+ {
1068
+ Id: 474,
1069
+ EventId: 26,
1070
+ PoolId: 210,
1071
+ PersonId: 154,
1072
+ Seed: 34,
1073
+ PoolPosition: 9,
1074
+ DEPosition: 21,
1075
+ Status: 'Present',
1076
+ LastNote: '',
1077
+ Person: {
1078
+ PersonId: 154,
1079
+ DisplayName: 'Maurice Chojecki',
1080
+ ShowData: true,
1081
+ Images: [
1082
+ {
1083
+ ImageId: null,
1084
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1085
+ AltText: 'Maurice Chojecki',
1086
+ Type: 'Portrait',
1087
+ EntityId: 154,
1088
+ EntityType: 'Person'
1089
+ }
1090
+ ],
1091
+ Club: {
1092
+ ClubId: 69,
1093
+ Name: 'Ann Arbor Sword Club',
1094
+ ShortName: 'AASC',
1095
+ Color1: 'Red',
1096
+ Color2: 'While'
1066
1097
  },
1067
- {
1068
- "Id": 474,
1069
- "EventId": 26,
1070
- "PoolId": 210,
1071
- "PersonId": 154,
1072
- "Seed": 34,
1073
- "PoolPosition": 9,
1074
- "DEPosition": 21,
1075
- "Status": "Present",
1076
- "LastNote": "",
1077
- "Person": {
1078
- "PersonId": 154,
1079
- "DisplayName": "Maurice Chojecki",
1080
- "ShowData": true,
1081
- "Images": [
1082
- {
1083
- "ImageId": null,
1084
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1085
- "AltText": "Maurice Chojecki",
1086
- "Type": "Portrait",
1087
- "EntityId": 154,
1088
- "EntityType": "Person"
1089
- }
1090
- ],
1091
- "Club": {
1092
- "ClubId": 69,
1093
- "Name": "Ann Arbor Sword Club",
1094
- "ShortName": "AASC",
1095
- "Color1": "Red",
1096
- "Color2": "While"
1097
- },
1098
- "HEMARatings": [
1099
- {
1100
- "HemaRatingId": 10268,
1101
- "WeaponId": 1,
1102
- "Rating": 1075
1103
- }
1104
- ],
1105
- "M2Ratings": [],
1106
- "Weaver": {
1107
- "Required": true,
1108
- "Scope": "club",
1109
- "Signed": false,
1110
- "SignedAt": null
1111
- }
1112
- }
1098
+ HEMARatings: [
1099
+ {
1100
+ HemaRatingId: 10268,
1101
+ WeaponId: 1,
1102
+ Rating: 1075
1103
+ }
1104
+ ],
1105
+ M2Ratings: [],
1106
+ Weaver: {
1107
+ Required: true,
1108
+ Scope: 'club',
1109
+ Signed: false,
1110
+ SignedAt: null
1111
+ }
1112
+ }
1113
+ },
1114
+ {
1115
+ Id: 464,
1116
+ EventId: 26,
1117
+ PoolId: 209,
1118
+ PersonId: 138,
1119
+ Seed: 15,
1120
+ PoolPosition: 26,
1121
+ DEPosition: 25,
1122
+ Status: 'Present',
1123
+ LastNote: '',
1124
+ Person: {
1125
+ PersonId: 138,
1126
+ DisplayName: 'Adrian Kim',
1127
+ ShowData: true,
1128
+ Images: [
1129
+ {
1130
+ ImageId: null,
1131
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1132
+ AltText: 'Adrian Kim',
1133
+ Type: 'Portrait',
1134
+ EntityId: 138,
1135
+ EntityType: 'Person'
1136
+ }
1137
+ ],
1138
+ Club: {
1139
+ ClubId: 69,
1140
+ Name: 'Ann Arbor Sword Club',
1141
+ ShortName: 'AASC',
1142
+ Color1: 'Red',
1143
+ Color2: 'While'
1113
1144
  },
1114
- {
1115
- "Id": 464,
1116
- "EventId": 26,
1117
- "PoolId": 209,
1118
- "PersonId": 138,
1119
- "Seed": 15,
1120
- "PoolPosition": 26,
1121
- "DEPosition": 25,
1122
- "Status": "Present",
1123
- "LastNote": "",
1124
- "Person": {
1125
- "PersonId": 138,
1126
- "DisplayName": "Adrian Kim",
1127
- "ShowData": true,
1128
- "Images": [
1129
- {
1130
- "ImageId": null,
1131
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1132
- "AltText": "Adrian Kim",
1133
- "Type": "Portrait",
1134
- "EntityId": 138,
1135
- "EntityType": "Person"
1136
- }
1137
- ],
1138
- "Club": {
1139
- "ClubId": 69,
1140
- "Name": "Ann Arbor Sword Club",
1141
- "ShortName": "AASC",
1142
- "Color1": "Red",
1143
- "Color2": "While"
1144
- },
1145
- "HEMARatings": [
1146
- {
1147
- "HemaRatingId": 10248,
1148
- "WeaponId": 1,
1149
- "Rating": 1012
1150
- }
1151
- ],
1152
- "M2Ratings": [],
1153
- "Weaver": {
1154
- "Required": true,
1155
- "Scope": "club",
1156
- "Signed": false,
1157
- "SignedAt": null
1158
- }
1159
- }
1145
+ HEMARatings: [
1146
+ {
1147
+ HemaRatingId: 10248,
1148
+ WeaponId: 1,
1149
+ Rating: 1012
1150
+ }
1151
+ ],
1152
+ M2Ratings: [],
1153
+ Weaver: {
1154
+ Required: true,
1155
+ Scope: 'club',
1156
+ Signed: false,
1157
+ SignedAt: null
1158
+ }
1159
+ }
1160
+ },
1161
+ {
1162
+ Id: 472,
1163
+ EventId: 26,
1164
+ PoolId: 208,
1165
+ PersonId: 168,
1166
+ Seed: 11,
1167
+ PoolPosition: 34,
1168
+ DEPosition: 24,
1169
+ Status: 'Present',
1170
+ LastNote: '',
1171
+ Person: {
1172
+ PersonId: 168,
1173
+ DisplayName: 'Joseph Vervalin',
1174
+ ShowData: true,
1175
+ Images: [
1176
+ {
1177
+ ImageId: null,
1178
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1179
+ AltText: 'Joseph Vervalin',
1180
+ Type: 'Portrait',
1181
+ EntityId: 168,
1182
+ EntityType: 'Person'
1183
+ }
1184
+ ],
1185
+ Club: {
1186
+ ClubId: 30,
1187
+ Name: 'Maryland Kunst Des Fechtens',
1188
+ ShortName: 'MKDF',
1189
+ Color1: 'Red',
1190
+ Color2: 'Gold'
1160
1191
  },
1161
- {
1162
- "Id": 472,
1163
- "EventId": 26,
1164
- "PoolId": 208,
1165
- "PersonId": 168,
1166
- "Seed": 11,
1167
- "PoolPosition": 34,
1168
- "DEPosition": 24,
1169
- "Status": "Present",
1170
- "LastNote": "",
1171
- "Person": {
1172
- "PersonId": 168,
1173
- "DisplayName": "Joseph Vervalin",
1174
- "ShowData": true,
1175
- "Images": [
1176
- {
1177
- "ImageId": null,
1178
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1179
- "AltText": "Joseph Vervalin",
1180
- "Type": "Portrait",
1181
- "EntityId": 168,
1182
- "EntityType": "Person"
1183
- }
1184
- ],
1185
- "Club": {
1186
- "ClubId": 30,
1187
- "Name": "Maryland Kunst Des Fechtens",
1188
- "ShortName": "MKDF",
1189
- "Color1": "Red",
1190
- "Color2": "Gold"
1191
- },
1192
- "HEMARatings": [
1193
- {
1194
- "HemaRatingId": 10258,
1195
- "WeaponId": 1,
1196
- "Rating": 991.5
1197
- }
1198
- ],
1199
- "M2Ratings": [],
1200
- "Weaver": {
1201
- "Required": true,
1202
- "Scope": "club",
1203
- "Signed": false,
1204
- "SignedAt": null
1205
- }
1206
- }
1192
+ HEMARatings: [
1193
+ {
1194
+ HemaRatingId: 10258,
1195
+ WeaponId: 1,
1196
+ Rating: 991.5
1197
+ }
1198
+ ],
1199
+ M2Ratings: [],
1200
+ Weaver: {
1201
+ Required: true,
1202
+ Scope: 'club',
1203
+ Signed: false,
1204
+ SignedAt: null
1205
+ }
1206
+ }
1207
+ },
1208
+ {
1209
+ Id: 486,
1210
+ EventId: 26,
1211
+ PoolId: 212,
1212
+ PersonId: 177,
1213
+ Seed: 21,
1214
+ PoolPosition: 7,
1215
+ DEPosition: 29,
1216
+ Status: 'Present',
1217
+ LastNote: '',
1218
+ Person: {
1219
+ PersonId: 177,
1220
+ DisplayName: 'Alyssa Capel',
1221
+ ShowData: true,
1222
+ Images: [
1223
+ {
1224
+ ImageId: null,
1225
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1226
+ AltText: 'Alyssa Capel',
1227
+ Type: 'Portrait',
1228
+ EntityId: 177,
1229
+ EntityType: 'Person'
1230
+ }
1231
+ ],
1232
+ Club: {
1233
+ ClubId: 62,
1234
+ Name: 'Bucks Historical Longsword',
1235
+ ShortName: 'BHL',
1236
+ Color1: 'Red',
1237
+ Color2: 'Gold'
1207
1238
  },
1208
- {
1209
- "Id": 486,
1210
- "EventId": 26,
1211
- "PoolId": 212,
1212
- "PersonId": 177,
1213
- "Seed": 21,
1214
- "PoolPosition": 7,
1215
- "DEPosition": 29,
1216
- "Status": "Present",
1217
- "LastNote": "",
1218
- "Person": {
1219
- "PersonId": 177,
1220
- "DisplayName": "Alyssa Capel",
1221
- "ShowData": true,
1222
- "Images": [
1223
- {
1224
- "ImageId": null,
1225
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1226
- "AltText": "Alyssa Capel",
1227
- "Type": "Portrait",
1228
- "EntityId": 177,
1229
- "EntityType": "Person"
1230
- }
1231
- ],
1232
- "Club": {
1233
- "ClubId": 62,
1234
- "Name": "Bucks Historical Longsword",
1235
- "ShortName": "BHL",
1236
- "Color1": "Red",
1237
- "Color2": "Gold"
1238
- },
1239
- "HEMARatings": [
1240
- {
1241
- "HemaRatingId": 10249,
1242
- "WeaponId": 1,
1243
- "Rating": 982.7
1244
- }
1245
- ],
1246
- "M2Ratings": [],
1247
- "Weaver": {
1248
- "Required": true,
1249
- "Scope": "club",
1250
- "Signed": false,
1251
- "SignedAt": null
1252
- }
1253
- }
1239
+ HEMARatings: [
1240
+ {
1241
+ HemaRatingId: 10249,
1242
+ WeaponId: 1,
1243
+ Rating: 982.7
1244
+ }
1245
+ ],
1246
+ M2Ratings: [],
1247
+ Weaver: {
1248
+ Required: true,
1249
+ Scope: 'club',
1250
+ Signed: false,
1251
+ SignedAt: null
1252
+ }
1253
+ }
1254
+ },
1255
+ {
1256
+ Id: 466,
1257
+ EventId: 26,
1258
+ PoolId: 209,
1259
+ PersonId: 163,
1260
+ Seed: 38,
1261
+ PoolPosition: 38,
1262
+ DEPosition: 34,
1263
+ Status: 'Present',
1264
+ LastNote: '',
1265
+ Person: {
1266
+ PersonId: 163,
1267
+ DisplayName: 'Kaitlynn Sumpter',
1268
+ ShowData: true,
1269
+ Images: [
1270
+ {
1271
+ ImageId: null,
1272
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1273
+ AltText: 'Kaitlynn Sumpter',
1274
+ Type: 'Portrait',
1275
+ EntityId: 163,
1276
+ EntityType: 'Person'
1277
+ }
1278
+ ],
1279
+ Club: {
1280
+ ClubId: 30,
1281
+ Name: 'Maryland Kunst Des Fechtens',
1282
+ ShortName: 'MKDF',
1283
+ Color1: 'Red',
1284
+ Color2: 'Gold'
1254
1285
  },
1255
- {
1256
- "Id": 466,
1257
- "EventId": 26,
1258
- "PoolId": 209,
1259
- "PersonId": 163,
1260
- "Seed": 38,
1261
- "PoolPosition": 38,
1262
- "DEPosition": 34,
1263
- "Status": "Present",
1264
- "LastNote": "",
1265
- "Person": {
1266
- "PersonId": 163,
1267
- "DisplayName": "Kaitlynn Sumpter",
1268
- "ShowData": true,
1269
- "Images": [
1270
- {
1271
- "ImageId": null,
1272
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1273
- "AltText": "Kaitlynn Sumpter",
1274
- "Type": "Portrait",
1275
- "EntityId": 163,
1276
- "EntityType": "Person"
1277
- }
1278
- ],
1279
- "Club": {
1280
- "ClubId": 30,
1281
- "Name": "Maryland Kunst Des Fechtens",
1282
- "ShortName": "MKDF",
1283
- "Color1": "Red",
1284
- "Color2": "Gold"
1285
- },
1286
- "HEMARatings": [
1287
- {
1288
- "HemaRatingId": 10902,
1289
- "WeaponId": 1,
1290
- "Rating": 939.8
1291
- }
1292
- ],
1293
- "M2Ratings": [],
1294
- "Weaver": {
1295
- "Required": true,
1296
- "Scope": "club",
1297
- "Signed": false,
1298
- "SignedAt": null
1299
- }
1300
- }
1286
+ HEMARatings: [
1287
+ {
1288
+ HemaRatingId: 10902,
1289
+ WeaponId: 1,
1290
+ Rating: 939.8
1291
+ }
1292
+ ],
1293
+ M2Ratings: [],
1294
+ Weaver: {
1295
+ Required: true,
1296
+ Scope: 'club',
1297
+ Signed: false,
1298
+ SignedAt: null
1299
+ }
1300
+ }
1301
+ },
1302
+ {
1303
+ Id: 470,
1304
+ EventId: 26,
1305
+ PoolId: 208,
1306
+ PersonId: 166,
1307
+ Seed: 18,
1308
+ PoolPosition: 22,
1309
+ DEPosition: 31,
1310
+ Status: 'Present',
1311
+ LastNote: '',
1312
+ Person: {
1313
+ PersonId: 166,
1314
+ DisplayName: 'Lilli Reininger',
1315
+ ShowData: true,
1316
+ Images: [
1317
+ {
1318
+ ImageId: null,
1319
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1320
+ AltText: 'Lilli Reininger',
1321
+ Type: 'Portrait',
1322
+ EntityId: 166,
1323
+ EntityType: 'Person'
1324
+ }
1325
+ ],
1326
+ Club: {
1327
+ ClubId: 23,
1328
+ Name: 'Queen City Sword Guild',
1329
+ ShortName: 'QCSG',
1330
+ Color1: 'blue',
1331
+ Color2: 'silver'
1301
1332
  },
1302
- {
1303
- "Id": 470,
1304
- "EventId": 26,
1305
- "PoolId": 208,
1306
- "PersonId": 166,
1307
- "Seed": 18,
1308
- "PoolPosition": 22,
1309
- "DEPosition": 31,
1310
- "Status": "Present",
1311
- "LastNote": "",
1312
- "Person": {
1313
- "PersonId": 166,
1314
- "DisplayName": "Lilli Reininger",
1315
- "ShowData": true,
1316
- "Images": [
1317
- {
1318
- "ImageId": null,
1319
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1320
- "AltText": "Lilli Reininger",
1321
- "Type": "Portrait",
1322
- "EntityId": 166,
1323
- "EntityType": "Person"
1324
- }
1325
- ],
1326
- "Club": {
1327
- "ClubId": 23,
1328
- "Name": "Queen City Sword Guild",
1329
- "ShortName": "QCSG",
1330
- "Color1": "blue",
1331
- "Color2": "silver"
1332
- },
1333
- "HEMARatings": [
1334
- {
1335
- "HemaRatingId": 10251,
1336
- "WeaponId": 1,
1337
- "Rating": 886.7
1338
- }
1339
- ],
1340
- "M2Ratings": [],
1341
- "Weaver": {
1342
- "Required": true,
1343
- "Scope": "club",
1344
- "Signed": false,
1345
- "SignedAt": null
1346
- }
1347
- }
1333
+ HEMARatings: [
1334
+ {
1335
+ HemaRatingId: 10251,
1336
+ WeaponId: 1,
1337
+ Rating: 886.7
1338
+ }
1339
+ ],
1340
+ M2Ratings: [],
1341
+ Weaver: {
1342
+ Required: true,
1343
+ Scope: 'club',
1344
+ Signed: false,
1345
+ SignedAt: null
1346
+ }
1347
+ }
1348
+ },
1349
+ {
1350
+ Id: 462,
1351
+ EventId: 26,
1352
+ PoolId: 209,
1353
+ PersonId: 161,
1354
+ Seed: 22,
1355
+ PoolPosition: 14,
1356
+ DEPosition: 26,
1357
+ Status: 'Present',
1358
+ LastNote: '',
1359
+ Person: {
1360
+ PersonId: 161,
1361
+ DisplayName: 'Mulnah Dovat',
1362
+ ShowData: true,
1363
+ Images: [
1364
+ {
1365
+ ImageId: null,
1366
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1367
+ AltText: 'Mulnah Dovat',
1368
+ Type: 'Portrait',
1369
+ EntityId: 161,
1370
+ EntityType: 'Person'
1371
+ }
1372
+ ],
1373
+ Club: {
1374
+ ClubId: 38,
1375
+ Name: 'Steelhead Western Martial Arts',
1376
+ ShortName: 'SWMA',
1377
+ Color1: 'Black',
1378
+ Color2: 'Blue'
1348
1379
  },
1349
- {
1350
- "Id": 462,
1351
- "EventId": 26,
1352
- "PoolId": 209,
1353
- "PersonId": 161,
1354
- "Seed": 22,
1355
- "PoolPosition": 14,
1356
- "DEPosition": 26,
1357
- "Status": "Present",
1358
- "LastNote": "",
1359
- "Person": {
1360
- "PersonId": 161,
1361
- "DisplayName": "Mulnah Dovat",
1362
- "ShowData": true,
1363
- "Images": [
1364
- {
1365
- "ImageId": null,
1366
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1367
- "AltText": "Mulnah Dovat",
1368
- "Type": "Portrait",
1369
- "EntityId": 161,
1370
- "EntityType": "Person"
1371
- }
1372
- ],
1373
- "Club": {
1374
- "ClubId": 38,
1375
- "Name": "Steelhead Western Martial Arts",
1376
- "ShortName": "SWMA",
1377
- "Color1": "Black",
1378
- "Color2": "Blue"
1379
- },
1380
- "HEMARatings": [
1381
- {
1382
- "HemaRatingId": 11612,
1383
- "WeaponId": 1,
1384
- "Rating": 840.5
1385
- }
1386
- ],
1387
- "M2Ratings": [],
1388
- "Weaver": {
1389
- "Required": true,
1390
- "Scope": "club",
1391
- "Signed": false,
1392
- "SignedAt": null
1393
- }
1394
- }
1380
+ HEMARatings: [
1381
+ {
1382
+ HemaRatingId: 11612,
1383
+ WeaponId: 1,
1384
+ Rating: 840.5
1385
+ }
1386
+ ],
1387
+ M2Ratings: [],
1388
+ Weaver: {
1389
+ Required: true,
1390
+ Scope: 'club',
1391
+ Signed: false,
1392
+ SignedAt: null
1393
+ }
1394
+ }
1395
+ },
1396
+ {
1397
+ Id: 481,
1398
+ EventId: 26,
1399
+ PoolId: 211,
1400
+ PersonId: 174,
1401
+ Seed: 7,
1402
+ PoolPosition: 17,
1403
+ DEPosition: 32,
1404
+ Status: 'Present',
1405
+ LastNote: '',
1406
+ Person: {
1407
+ PersonId: 174,
1408
+ DisplayName: 'Joe Hartman',
1409
+ ShowData: true,
1410
+ Images: [
1411
+ {
1412
+ ImageId: null,
1413
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1414
+ AltText: 'Joe Hartman',
1415
+ Type: 'Portrait',
1416
+ EntityId: 174,
1417
+ EntityType: 'Person'
1418
+ }
1419
+ ],
1420
+ Club: {
1421
+ ClubId: 23,
1422
+ Name: 'Queen City Sword Guild',
1423
+ ShortName: 'QCSG',
1424
+ Color1: 'blue',
1425
+ Color2: 'silver'
1395
1426
  },
1396
- {
1397
- "Id": 481,
1398
- "EventId": 26,
1399
- "PoolId": 211,
1400
- "PersonId": 174,
1401
- "Seed": 7,
1402
- "PoolPosition": 17,
1403
- "DEPosition": 32,
1404
- "Status": "Present",
1405
- "LastNote": "",
1406
- "Person": {
1407
- "PersonId": 174,
1408
- "DisplayName": "Joe Hartman",
1409
- "ShowData": true,
1410
- "Images": [
1411
- {
1412
- "ImageId": null,
1413
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1414
- "AltText": "Joe Hartman",
1415
- "Type": "Portrait",
1416
- "EntityId": 174,
1417
- "EntityType": "Person"
1418
- }
1419
- ],
1420
- "Club": {
1421
- "ClubId": 23,
1422
- "Name": "Queen City Sword Guild",
1423
- "ShortName": "QCSG",
1424
- "Color1": "blue",
1425
- "Color2": "silver"
1426
- },
1427
- "HEMARatings": [
1428
- {
1429
- "HemaRatingId": 10257,
1430
- "WeaponId": 1,
1431
- "Rating": 813.4
1432
- }
1433
- ],
1434
- "M2Ratings": [],
1435
- "Weaver": {
1436
- "Required": true,
1437
- "Scope": "club",
1438
- "Signed": false,
1439
- "SignedAt": null
1440
- }
1441
- }
1427
+ HEMARatings: [
1428
+ {
1429
+ HemaRatingId: 10257,
1430
+ WeaponId: 1,
1431
+ Rating: 813.4
1432
+ }
1433
+ ],
1434
+ M2Ratings: [],
1435
+ Weaver: {
1436
+ Required: true,
1437
+ Scope: 'club',
1438
+ Signed: false,
1439
+ SignedAt: null
1440
+ }
1441
+ }
1442
+ },
1443
+ {
1444
+ Id: 487,
1445
+ EventId: 26,
1446
+ PoolId: 212,
1447
+ PersonId: 55,
1448
+ Seed: 5,
1449
+ PoolPosition: 18,
1450
+ DEPosition: 38,
1451
+ Status: 'Present',
1452
+ LastNote: '',
1453
+ Person: {
1454
+ PersonId: 55,
1455
+ DisplayName: 'Corrin Evans',
1456
+ ShowData: true,
1457
+ Images: [
1458
+ {
1459
+ ImageId: null,
1460
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1461
+ AltText: 'Corrin Evans',
1462
+ Type: 'Portrait',
1463
+ EntityId: 55,
1464
+ EntityType: 'Person'
1465
+ }
1466
+ ],
1467
+ Club: {
1468
+ ClubId: 23,
1469
+ Name: 'Queen City Sword Guild',
1470
+ ShortName: 'QCSG',
1471
+ Color1: 'blue',
1472
+ Color2: 'silver'
1442
1473
  },
1443
- {
1444
- "Id": 487,
1445
- "EventId": 26,
1446
- "PoolId": 212,
1447
- "PersonId": 55,
1448
- "Seed": 5,
1449
- "PoolPosition": 18,
1450
- "DEPosition": 38,
1451
- "Status": "Present",
1452
- "LastNote": "",
1453
- "Person": {
1454
- "PersonId": 55,
1455
- "DisplayName": "Corrin Evans",
1456
- "ShowData": true,
1457
- "Images": [
1458
- {
1459
- "ImageId": null,
1460
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1461
- "AltText": "Corrin Evans",
1462
- "Type": "Portrait",
1463
- "EntityId": 55,
1464
- "EntityType": "Person"
1465
- }
1466
- ],
1467
- "Club": {
1468
- "ClubId": 23,
1469
- "Name": "Queen City Sword Guild",
1470
- "ShortName": "QCSG",
1471
- "Color1": "blue",
1472
- "Color2": "silver"
1473
- },
1474
- "HEMARatings": [
1475
- {
1476
- "HemaRatingId": 10261,
1477
- "WeaponId": 1,
1478
- "Rating": 658.4
1479
- }
1480
- ],
1481
- "M2Ratings": [],
1482
- "Weaver": {
1483
- "Required": true,
1484
- "Scope": "club",
1485
- "Signed": false,
1486
- "SignedAt": null
1487
- }
1488
- }
1474
+ HEMARatings: [
1475
+ {
1476
+ HemaRatingId: 10261,
1477
+ WeaponId: 1,
1478
+ Rating: 658.4
1479
+ }
1480
+ ],
1481
+ M2Ratings: [],
1482
+ Weaver: {
1483
+ Required: true,
1484
+ Scope: 'club',
1485
+ Signed: false,
1486
+ SignedAt: null
1487
+ }
1488
+ }
1489
+ },
1490
+ {
1491
+ Id: 454,
1492
+ EventId: 26,
1493
+ PoolId: 207,
1494
+ PersonId: 156,
1495
+ Seed: 20,
1496
+ PoolPosition: 12,
1497
+ DEPosition: 33,
1498
+ Status: 'Present',
1499
+ LastNote: '',
1500
+ Person: {
1501
+ PersonId: 156,
1502
+ DisplayName: 'Vicky Belousova',
1503
+ ShowData: true,
1504
+ Images: [
1505
+ {
1506
+ ImageId: null,
1507
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1508
+ AltText: 'Vicky Belousova',
1509
+ Type: 'Portrait',
1510
+ EntityId: 156,
1511
+ EntityType: 'Person'
1512
+ }
1513
+ ],
1514
+ Club: {
1515
+ ClubId: 47,
1516
+ Name: 'Nickel City Longsword Academy',
1517
+ ShortName: 'NCLA',
1518
+ Color1: 'Red',
1519
+ Color2: 'Gold'
1489
1520
  },
1490
- {
1491
- "Id": 454,
1492
- "EventId": 26,
1493
- "PoolId": 207,
1494
- "PersonId": 156,
1495
- "Seed": 20,
1496
- "PoolPosition": 12,
1497
- "DEPosition": 33,
1498
- "Status": "Present",
1499
- "LastNote": "",
1500
- "Person": {
1501
- "PersonId": 156,
1502
- "DisplayName": "Vicky Belousova",
1503
- "ShowData": true,
1504
- "Images": [
1505
- {
1506
- "ImageId": null,
1507
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1508
- "AltText": "Vicky Belousova",
1509
- "Type": "Portrait",
1510
- "EntityId": 156,
1511
- "EntityType": "Person"
1512
- }
1513
- ],
1514
- "Club": {
1515
- "ClubId": 47,
1516
- "Name": "Nickel City Longsword Academy",
1517
- "ShortName": "NCLA",
1518
- "Color1": "Red",
1519
- "Color2": "Gold"
1520
- },
1521
- "HEMARatings": [],
1522
- "M2Ratings": [],
1523
- "Weaver": {
1524
- "Required": true,
1525
- "Scope": "club",
1526
- "Signed": false,
1527
- "SignedAt": null
1528
- }
1529
- }
1521
+ HEMARatings: [],
1522
+ M2Ratings: [],
1523
+ Weaver: {
1524
+ Required: true,
1525
+ Scope: 'club',
1526
+ Signed: false,
1527
+ SignedAt: null
1528
+ }
1529
+ }
1530
+ },
1531
+ {
1532
+ Id: 456,
1533
+ EventId: 26,
1534
+ PoolId: 207,
1535
+ PersonId: 147,
1536
+ Seed: 13,
1537
+ PoolPosition: 24,
1538
+ DEPosition: 14,
1539
+ Status: 'Present',
1540
+ LastNote: '',
1541
+ Person: {
1542
+ PersonId: 147,
1543
+ DisplayName: 'Frank Conner',
1544
+ ShowData: true,
1545
+ Images: [
1546
+ {
1547
+ ImageId: null,
1548
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1549
+ AltText: 'Frank Conner',
1550
+ Type: 'Portrait',
1551
+ EntityId: 147,
1552
+ EntityType: 'Person'
1553
+ }
1554
+ ],
1555
+ Club: {
1556
+ ClubId: 47,
1557
+ Name: 'Nickel City Longsword Academy',
1558
+ ShortName: 'NCLA',
1559
+ Color1: 'Red',
1560
+ Color2: 'Gold'
1530
1561
  },
1531
- {
1532
- "Id": 456,
1533
- "EventId": 26,
1534
- "PoolId": 207,
1535
- "PersonId": 147,
1536
- "Seed": 13,
1537
- "PoolPosition": 24,
1538
- "DEPosition": 14,
1539
- "Status": "Present",
1540
- "LastNote": "",
1541
- "Person": {
1542
- "PersonId": 147,
1543
- "DisplayName": "Frank Conner",
1544
- "ShowData": true,
1545
- "Images": [
1546
- {
1547
- "ImageId": null,
1548
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1549
- "AltText": "Frank Conner",
1550
- "Type": "Portrait",
1551
- "EntityId": 147,
1552
- "EntityType": "Person"
1553
- }
1554
- ],
1555
- "Club": {
1556
- "ClubId": 47,
1557
- "Name": "Nickel City Longsword Academy",
1558
- "ShortName": "NCLA",
1559
- "Color1": "Red",
1560
- "Color2": "Gold"
1561
- },
1562
- "HEMARatings": [],
1563
- "M2Ratings": [],
1564
- "Weaver": {
1565
- "Required": true,
1566
- "Scope": "club",
1567
- "Signed": false,
1568
- "SignedAt": null
1569
- }
1570
- }
1562
+ HEMARatings: [],
1563
+ M2Ratings: [],
1564
+ Weaver: {
1565
+ Required: true,
1566
+ Scope: 'club',
1567
+ Signed: false,
1568
+ SignedAt: null
1569
+ }
1570
+ }
1571
+ },
1572
+ {
1573
+ Id: 457,
1574
+ EventId: 26,
1575
+ PoolId: 207,
1576
+ PersonId: 157,
1577
+ Seed: 8,
1578
+ PoolPosition: 25,
1579
+ DEPosition: 36,
1580
+ Status: 'Present',
1581
+ LastNote: '',
1582
+ Person: {
1583
+ PersonId: 157,
1584
+ DisplayName: 'Kaiden McPhee',
1585
+ ShowData: true,
1586
+ Images: [
1587
+ {
1588
+ ImageId: null,
1589
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1590
+ AltText: 'Kaiden McPhee',
1591
+ Type: 'Portrait',
1592
+ EntityId: 157,
1593
+ EntityType: 'Person'
1594
+ }
1595
+ ],
1596
+ Club: {
1597
+ ClubId: 120,
1598
+ Name: 'Nashville School of Historical Fencing',
1599
+ ShortName: 'NH',
1600
+ Color1: 'Red',
1601
+ Color2: 'Gold'
1571
1602
  },
1572
- {
1573
- "Id": 457,
1574
- "EventId": 26,
1575
- "PoolId": 207,
1576
- "PersonId": 157,
1577
- "Seed": 8,
1578
- "PoolPosition": 25,
1579
- "DEPosition": 36,
1580
- "Status": "Present",
1581
- "LastNote": "",
1582
- "Person": {
1583
- "PersonId": 157,
1584
- "DisplayName": "Kaiden McPhee",
1585
- "ShowData": true,
1586
- "Images": [
1587
- {
1588
- "ImageId": null,
1589
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1590
- "AltText": "Kaiden McPhee",
1591
- "Type": "Portrait",
1592
- "EntityId": 157,
1593
- "EntityType": "Person"
1594
- }
1595
- ],
1596
- "Club": {
1597
- "ClubId": 120,
1598
- "Name": "Nashville School of Historical Fencing",
1599
- "ShortName": "NH",
1600
- "Color1": "Red",
1601
- "Color2": "Gold"
1602
- },
1603
- "HEMARatings": [],
1604
- "M2Ratings": [],
1605
- "Weaver": {
1606
- "Required": true,
1607
- "Scope": "club",
1608
- "Signed": false,
1609
- "SignedAt": null
1610
- }
1611
- }
1603
+ HEMARatings: [],
1604
+ M2Ratings: [],
1605
+ Weaver: {
1606
+ Required: true,
1607
+ Scope: 'club',
1608
+ Signed: false,
1609
+ SignedAt: null
1610
+ }
1611
+ }
1612
+ },
1613
+ {
1614
+ Id: 469,
1615
+ EventId: 26,
1616
+ PoolId: 208,
1617
+ PersonId: 132,
1618
+ Seed: 23,
1619
+ PoolPosition: 15,
1620
+ DEPosition: 35,
1621
+ Status: 'Present',
1622
+ LastNote: '',
1623
+ Person: {
1624
+ PersonId: 132,
1625
+ DisplayName: 'Jennifer Paschke',
1626
+ ShowData: true,
1627
+ Images: [
1628
+ {
1629
+ ImageId: null,
1630
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1631
+ AltText: 'Jennifer Paschke',
1632
+ Type: 'Portrait',
1633
+ EntityId: 132,
1634
+ EntityType: 'Person'
1635
+ }
1636
+ ],
1637
+ Club: {
1638
+ ClubId: 10,
1639
+ Name: 'Columbus United Fencing Club',
1640
+ ShortName: 'CUFC',
1641
+ Color1: 'navy',
1642
+ Color2: 'rose'
1612
1643
  },
1613
- {
1614
- "Id": 469,
1615
- "EventId": 26,
1616
- "PoolId": 208,
1617
- "PersonId": 132,
1618
- "Seed": 23,
1619
- "PoolPosition": 15,
1620
- "DEPosition": 35,
1621
- "Status": "Present",
1622
- "LastNote": "",
1623
- "Person": {
1624
- "PersonId": 132,
1625
- "DisplayName": "Jennifer Paschke",
1626
- "ShowData": true,
1627
- "Images": [
1628
- {
1629
- "ImageId": null,
1630
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1631
- "AltText": "Jennifer Paschke",
1632
- "Type": "Portrait",
1633
- "EntityId": 132,
1634
- "EntityType": "Person"
1635
- }
1636
- ],
1637
- "Club": {
1638
- "ClubId": 10,
1639
- "Name": "Columbus United Fencing Club",
1640
- "ShortName": "CUFC",
1641
- "Color1": "navy",
1642
- "Color2": "rose"
1643
- },
1644
- "HEMARatings": [],
1645
- "M2Ratings": [],
1646
- "Weaver": {
1647
- "Required": true,
1648
- "Scope": "club",
1649
- "Signed": false,
1650
- "SignedAt": null
1651
- }
1652
- }
1644
+ HEMARatings: [],
1645
+ M2Ratings: [],
1646
+ Weaver: {
1647
+ Required: true,
1648
+ Scope: 'club',
1649
+ Signed: false,
1650
+ SignedAt: null
1651
+ }
1652
+ }
1653
+ },
1654
+ {
1655
+ Id: 471,
1656
+ EventId: 26,
1657
+ PoolId: 208,
1658
+ PersonId: 167,
1659
+ Seed: 16,
1660
+ PoolPosition: 27,
1661
+ DEPosition: 15,
1662
+ Status: 'Present',
1663
+ LastNote: '',
1664
+ Person: {
1665
+ PersonId: 167,
1666
+ DisplayName: 'Amanda Tickner',
1667
+ ShowData: true,
1668
+ Images: [
1669
+ {
1670
+ ImageId: null,
1671
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1672
+ AltText: 'Amanda Tickner',
1673
+ Type: 'Portrait',
1674
+ EntityId: 167,
1675
+ EntityType: 'Person'
1676
+ }
1677
+ ],
1678
+ Club: {
1679
+ ClubId: 70,
1680
+ Name: 'Swordsmanship Museum and Academy',
1681
+ ShortName: 'SM&A',
1682
+ Color1: 'Red',
1683
+ Color2: 'Gold'
1653
1684
  },
1654
- {
1655
- "Id": 471,
1656
- "EventId": 26,
1657
- "PoolId": 208,
1658
- "PersonId": 167,
1659
- "Seed": 16,
1660
- "PoolPosition": 27,
1661
- "DEPosition": 15,
1662
- "Status": "Present",
1663
- "LastNote": "",
1664
- "Person": {
1665
- "PersonId": 167,
1666
- "DisplayName": "Amanda Tickner",
1667
- "ShowData": true,
1668
- "Images": [
1669
- {
1670
- "ImageId": null,
1671
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1672
- "AltText": "Amanda Tickner",
1673
- "Type": "Portrait",
1674
- "EntityId": 167,
1675
- "EntityType": "Person"
1676
- }
1677
- ],
1678
- "Club": {
1679
- "ClubId": 70,
1680
- "Name": "Swordsmanship Museum and Academy",
1681
- "ShortName": "SM&A",
1682
- "Color1": "Red",
1683
- "Color2": "Gold"
1684
- },
1685
- "HEMARatings": [],
1686
- "M2Ratings": [],
1687
- "Weaver": {
1688
- "Required": true,
1689
- "Scope": "club",
1690
- "Signed": false,
1691
- "SignedAt": null
1692
- }
1693
- }
1685
+ HEMARatings: [],
1686
+ M2Ratings: [],
1687
+ Weaver: {
1688
+ Required: true,
1689
+ Scope: 'club',
1690
+ Signed: false,
1691
+ SignedAt: null
1692
+ }
1693
+ }
1694
+ },
1695
+ {
1696
+ Id: 476,
1697
+ EventId: 26,
1698
+ PoolId: 210,
1699
+ PersonId: 121,
1700
+ Seed: 28,
1701
+ PoolPosition: 21,
1702
+ DEPosition: 10,
1703
+ Status: 'Present',
1704
+ LastNote: '',
1705
+ Person: {
1706
+ PersonId: 121,
1707
+ DisplayName: 'Nishchal Nigam',
1708
+ ShowData: true,
1709
+ Images: [
1710
+ {
1711
+ ImageId: null,
1712
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1713
+ AltText: 'Nishchal Nigam',
1714
+ Type: 'Portrait',
1715
+ EntityId: 121,
1716
+ EntityType: 'Person'
1717
+ }
1718
+ ],
1719
+ Club: {
1720
+ ClubId: 38,
1721
+ Name: 'Steelhead Western Martial Arts',
1722
+ ShortName: 'SWMA',
1723
+ Color1: 'Black',
1724
+ Color2: 'Blue'
1694
1725
  },
1695
- {
1696
- "Id": 476,
1697
- "EventId": 26,
1698
- "PoolId": 210,
1699
- "PersonId": 121,
1700
- "Seed": 28,
1701
- "PoolPosition": 21,
1702
- "DEPosition": 10,
1703
- "Status": "Present",
1704
- "LastNote": "",
1705
- "Person": {
1706
- "PersonId": 121,
1707
- "DisplayName": "Nishchal Nigam",
1708
- "ShowData": true,
1709
- "Images": [
1710
- {
1711
- "ImageId": null,
1712
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1713
- "AltText": "Nishchal Nigam",
1714
- "Type": "Portrait",
1715
- "EntityId": 121,
1716
- "EntityType": "Person"
1717
- }
1718
- ],
1719
- "Club": {
1720
- "ClubId": 38,
1721
- "Name": "Steelhead Western Martial Arts",
1722
- "ShortName": "SWMA",
1723
- "Color1": "Black",
1724
- "Color2": "Blue"
1725
- },
1726
- "HEMARatings": [],
1727
- "M2Ratings": [],
1728
- "Weaver": {
1729
- "Required": true,
1730
- "Scope": "club",
1731
- "Signed": false,
1732
- "SignedAt": null
1733
- }
1734
- }
1726
+ HEMARatings: [],
1727
+ M2Ratings: [],
1728
+ Weaver: {
1729
+ Required: true,
1730
+ Scope: 'club',
1731
+ Signed: false,
1732
+ SignedAt: null
1733
+ }
1734
+ }
1735
+ },
1736
+ {
1737
+ Id: 478,
1738
+ EventId: 26,
1739
+ PoolId: 210,
1740
+ PersonId: 171,
1741
+ Seed: 19,
1742
+ PoolPosition: 33,
1743
+ DEPosition: 37,
1744
+ Status: 'Present',
1745
+ LastNote: '',
1746
+ Person: {
1747
+ PersonId: 171,
1748
+ DisplayName: 'Anthony Schaible',
1749
+ ShowData: true,
1750
+ Images: [
1751
+ {
1752
+ ImageId: null,
1753
+ URL: 'https://meyersquaredimages.com/images/portraits/portrait1.png',
1754
+ AltText: 'Anthony Schaible',
1755
+ Type: 'Portrait',
1756
+ EntityId: 171,
1757
+ EntityType: 'Person'
1758
+ }
1759
+ ],
1760
+ Club: {
1761
+ ClubId: 27,
1762
+ Name: 'Columbus Saber Academy',
1763
+ ShortName: 'CSA',
1764
+ Color1: 'blue',
1765
+ Color2: 'red'
1735
1766
  },
1736
- {
1737
- "Id": 478,
1738
- "EventId": 26,
1739
- "PoolId": 210,
1740
- "PersonId": 171,
1741
- "Seed": 19,
1742
- "PoolPosition": 33,
1743
- "DEPosition": 37,
1744
- "Status": "Present",
1745
- "LastNote": "",
1746
- "Person": {
1747
- "PersonId": 171,
1748
- "DisplayName": "Anthony Schaible",
1749
- "ShowData": true,
1750
- "Images": [
1751
- {
1752
- "ImageId": null,
1753
- "URL": "https://meyersquaredimages.com/images/portraits/portrait1.png",
1754
- "AltText": "Anthony Schaible",
1755
- "Type": "Portrait",
1756
- "EntityId": 171,
1757
- "EntityType": "Person"
1758
- }
1759
- ],
1760
- "Club": {
1761
- "ClubId": 27,
1762
- "Name": "Columbus Saber Academy",
1763
- "ShortName": "CSA",
1764
- "Color1": "blue",
1765
- "Color2": "red"
1766
- },
1767
- "HEMARatings": [],
1768
- "M2Ratings": [],
1769
- "Weaver": {
1770
- "Required": true,
1771
- "Scope": "club",
1772
- "Signed": false,
1773
- "SignedAt": null
1774
- }
1775
- }
1767
+ HEMARatings: [],
1768
+ M2Ratings: [],
1769
+ Weaver: {
1770
+ Required: true,
1771
+ Scope: 'club',
1772
+ Signed: false,
1773
+ SignedAt: null
1776
1774
  }
1777
- ],
1778
- "poolCount": 7
1775
+ }
1776
+ }
1777
+ ],
1778
+ poolCount: 7
1779
1779
  };
1780
1780
 
1781
- export default eventPersonGetEventById;
1781
+ export default eventPersonGetEventById;