@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,1697 +1,1695 @@
1
-
2
- const getDEWithBouts22Fencers =
1
+ const getDEWithBouts22Fencers = {
2
+ message: 'DE Pool retrieved',
3
+ pools: [
3
4
  {
4
- "message": "DE Pool retrieved",
5
- "pools": [
6
- {
7
- "PoolId": 250,
8
- "Name": "Open Rapier + Dagger-DE",
9
- "RingName": "DE Bracket",
10
- "Flight": 1,
11
- "PoolType": "de",
12
- "EventId": 28,
13
- "Status": "live",
14
- "Updated": "2024-09-04T12:11:31.000Z",
15
- "Bouts": [
16
- {
17
- "TimerStatus": "stopped",
18
- "RefName": "Unassigned",
19
- "BoutId": 8568,
20
- "PoolId": 250,
21
- "EventId": 28,
22
- "Person1Id": 43,
23
- "Person2Id": 0,
24
- "Status": "Bye",
25
- "Score1": 0,
26
- "Score2": 0,
27
- "Started": null,
28
- "Ended": null,
29
- "TimeLeft": 0,
30
- "CurrentPass": 0,
31
- "MaxPasses": 0,
32
- "RoundLabel": "Table of 32",
33
- "DEBoutId": 1,
34
- "DENextBoutId": 17,
35
- "RefereeId": null,
36
- "createdAt": "2024-09-04T12:11:32.000Z",
37
- "updatedAt": "2024-09-04T12:11:35.000Z",
38
- "Person1": {
39
- "PersonId": 43,
40
- "DisplayName": "Derek Ray",
41
- "ClubId": 10,
42
- "Images": [],
43
- "Club": {
44
- "Name": "Columbus United Fencing Club",
45
- "Color1": "navy",
46
- "Color2": "rose"
47
- },
48
- "EventPersons": [
49
- {
50
- "DEPosition": 1
51
- }
52
- ]
53
- },
54
- "Person2": {
55
- "PersonId": 0,
56
- "DisplayName": "BYE",
57
- "ClubId": 1,
58
- "Images": [],
59
- "Club": {
60
- "Name": "Acme Fencing Club"
61
- },
62
- "EventPersons": []
63
- },
64
- "Pool": {
65
- "RingName": "DE Bracket"
66
- }
67
- },
68
- {
69
- "TimerStatus": "stopped",
70
- "RefName": "Unassigned",
71
- "BoutId": 8569,
72
- "PoolId": 250,
73
- "EventId": 28,
74
- "Person1Id": 190,
75
- "Person2Id": 140,
76
- "Status": "Scheduled",
77
- "Score1": 0,
78
- "Score2": 0,
79
- "Started": null,
80
- "Ended": null,
81
- "TimeLeft": 0,
82
- "CurrentPass": 0,
83
- "MaxPasses": 0,
84
- "RoundLabel": "Table of 32",
85
- "DEBoutId": 2,
86
- "DENextBoutId": 17,
87
- "RefereeId": null,
88
- "createdAt": "2024-09-04T12:11:32.000Z",
89
- "updatedAt": "2024-09-04T12:11:32.000Z",
90
- "Person1": {
91
- "PersonId": 190,
92
- "DisplayName": "Alexander Brindley",
93
- "ClubId": 120,
94
- "Images": [],
95
- "Club": {
96
- "Name": "Nashville School of Historical Fencing",
97
- "Color1": "Red",
98
- "Color2": "Gold"
99
- },
100
- "EventPersons": [
101
- {
102
- "DEPosition": 17
103
- }
104
- ]
105
- },
106
- "Person2": {
107
- "PersonId": 140,
108
- "DisplayName": "Collin Vredenburg",
109
- "ClubId": 83,
110
- "Images": [],
111
- "Club": {
112
- "Name": "Metropolitan Historical Fencing Academy"
113
- },
114
- "EventPersons": [
115
- {
116
- "DEPosition": 16
117
- }
118
- ]
119
- },
120
- "Pool": {
121
- "RingName": "DE Bracket"
122
- }
123
- },
124
- {
125
- "TimerStatus": "stopped",
126
- "RefName": "Unassigned",
127
- "BoutId": 8570,
128
- "PoolId": 250,
129
- "EventId": 28,
130
- "Person1Id": 153,
131
- "Person2Id": 0,
132
- "Status": "Bye",
133
- "Score1": 0,
134
- "Score2": 0,
135
- "Started": null,
136
- "Ended": null,
137
- "TimeLeft": 0,
138
- "CurrentPass": 0,
139
- "MaxPasses": 0,
140
- "RoundLabel": "Table of 32",
141
- "DEBoutId": 5,
142
- "DENextBoutId": 19,
143
- "RefereeId": null,
144
- "createdAt": "2024-09-04T12:11:32.000Z",
145
- "updatedAt": "2024-09-04T12:11:35.000Z",
146
- "Person1": {
147
- "PersonId": 153,
148
- "DisplayName": "Kai Cummings",
149
- "ClubId": 95,
150
- "Images": [],
151
- "Club": {
152
- "Name": "Indes Ferox Gladio",
153
- "Color1": "Red",
154
- "Color2": "Gold"
155
- },
156
- "EventPersons": [
157
- {
158
- "DEPosition": 5
159
- }
160
- ]
161
- },
162
- "Person2": {
163
- "PersonId": 0,
164
- "DisplayName": "BYE",
165
- "ClubId": 1,
166
- "Images": [],
167
- "Club": {
168
- "Name": "Acme Fencing Club"
169
- },
170
- "EventPersons": []
171
- },
172
- "Pool": {
173
- "RingName": "DE Bracket"
174
- }
175
- },
176
- {
177
- "TimerStatus": "stopped",
178
- "RefName": "Unassigned",
179
- "BoutId": 8571,
180
- "PoolId": 250,
181
- "EventId": 28,
182
- "Person1Id": 208,
183
- "Person2Id": 69,
184
- "Status": "Scheduled",
185
- "Score1": 0,
186
- "Score2": 0,
187
- "Started": null,
188
- "Ended": null,
189
- "TimeLeft": 0,
190
- "CurrentPass": 0,
191
- "MaxPasses": 0,
192
- "RoundLabel": "Table of 32",
193
- "DEBoutId": 4,
194
- "DENextBoutId": 18,
195
- "RefereeId": null,
196
- "createdAt": "2024-09-04T12:11:32.000Z",
197
- "updatedAt": "2024-09-04T12:11:32.000Z",
198
- "Person1": {
199
- "PersonId": 208,
200
- "DisplayName": "Joseph Babej ",
201
- "ClubId": 26,
202
- "Images": [],
203
- "Club": {
204
- "Name": "Youngstown Historical Fencing",
205
- "Color1": "Red",
206
- "Color2": "Gold"
207
- },
208
- "EventPersons": [
209
- {
210
- "DEPosition": 25
211
- }
212
- ]
213
- },
214
- "Person2": {
215
- "PersonId": 69,
216
- "DisplayName": "Samuel Ryals",
217
- "ClubId": 12,
218
- "Images": [],
219
- "Club": {
220
- "Name": "Gem City Duelists Society"
221
- },
222
- "EventPersons": [
223
- {
224
- "DEPosition": 8
225
- }
226
- ]
227
- },
228
- "Pool": {
229
- "RingName": "DE Bracket"
230
- }
231
- },
232
- {
233
- "TimerStatus": "stopped",
234
- "RefName": "Unassigned",
235
- "BoutId": 8572,
236
- "PoolId": 250,
237
- "EventId": 28,
238
- "Person1Id": 82,
239
- "Person2Id": 198,
240
- "Status": "Scheduled",
241
- "Score1": 0,
242
- "Score2": 0,
243
- "Started": null,
244
- "Ended": null,
245
- "TimeLeft": 0,
246
- "CurrentPass": 0,
247
- "MaxPasses": 0,
248
- "RoundLabel": "Table of 32",
249
- "DEBoutId": 3,
250
- "DENextBoutId": 18,
251
- "RefereeId": null,
252
- "createdAt": "2024-09-04T12:11:32.000Z",
253
- "updatedAt": "2024-09-04T12:11:32.000Z",
254
- "Person1": {
255
- "PersonId": 82,
256
- "DisplayName": "Chris Shelton ",
257
- "ClubId": 18,
258
- "Images": [],
259
- "Club": {
260
- "Name": "Hilt and Helm Pittsburgh Fencing Club",
261
- "Color1": "red",
262
- "Color2": "blue"
263
- },
264
- "EventPersons": [
265
- {
266
- "DEPosition": 9
267
- }
268
- ]
269
- },
270
- "Person2": {
271
- "PersonId": 198,
272
- "DisplayName": "Chris Holloman",
273
- "ClubId": 120,
274
- "Images": [],
275
- "Club": {
276
- "Name": "Nashville School of Historical Fencing"
277
- },
278
- "EventPersons": [
279
- {
280
- "DEPosition": 24
281
- }
282
- ]
283
- },
284
- "Pool": {
285
- "RingName": "DE Bracket"
286
- }
287
- },
288
- {
289
- "TimerStatus": "stopped",
290
- "RefName": "Unassigned",
291
- "BoutId": 8573,
292
- "PoolId": 250,
293
- "EventId": 28,
294
- "Person1Id": 206,
295
- "Person2Id": 141,
296
- "Status": "Scheduled",
297
- "Score1": 0,
298
- "Score2": 0,
299
- "Started": null,
300
- "Ended": null,
301
- "TimeLeft": 0,
302
- "CurrentPass": 0,
303
- "MaxPasses": 0,
304
- "RoundLabel": "Table of 32",
305
- "DEBoutId": 6,
306
- "DENextBoutId": 19,
307
- "RefereeId": null,
308
- "createdAt": "2024-09-04T12:11:32.000Z",
309
- "updatedAt": "2024-09-04T12:11:32.000Z",
310
- "Person1": {
311
- "PersonId": 206,
312
- "DisplayName": "Jayce Williamson",
313
- "ClubId": 71,
314
- "Images": [],
315
- "Club": {
316
- "Name": "Knoxville Academy of the Blade",
317
- "Color1": "Red",
318
- "Color2": "Gold"
319
- },
320
- "EventPersons": [
321
- {
322
- "DEPosition": 21
323
- }
324
- ]
325
- },
326
- "Person2": {
327
- "PersonId": 141,
328
- "DisplayName": "Joseph Lilly",
329
- "ClubId": 46,
330
- "Images": [],
331
- "Club": {
332
- "Name": "Capital Kunst Des Fechtens"
333
- },
334
- "EventPersons": [
335
- {
336
- "DEPosition": 12
337
- }
338
- ]
339
- },
340
- "Pool": {
341
- "RingName": "DE Bracket"
342
- }
343
- },
344
- {
345
- "TimerStatus": "stopped",
346
- "RefName": "Unassigned",
347
- "BoutId": 8574,
348
- "PoolId": 250,
349
- "EventId": 28,
350
- "Person1Id": 165,
351
- "Person2Id": 205,
352
- "Status": "Scheduled",
353
- "Score1": 0,
354
- "Score2": 0,
355
- "Started": null,
356
- "Ended": null,
357
- "TimeLeft": 0,
358
- "CurrentPass": 0,
359
- "MaxPasses": 0,
360
- "RoundLabel": "Table of 32",
361
- "DEBoutId": 7,
362
- "DENextBoutId": 20,
363
- "RefereeId": null,
364
- "createdAt": "2024-09-04T12:11:32.000Z",
365
- "updatedAt": "2024-09-04T12:11:32.000Z",
366
- "Person1": {
367
- "PersonId": 165,
368
- "DisplayName": "Natalie Chaykina",
369
- "ClubId": 37,
370
- "Images": [],
371
- "Club": {
372
- "Name": "Indianapolis Fencing Club",
373
- "Color1": "Red",
374
- "Color2": "Gold"
375
- },
376
- "EventPersons": [
377
- {
378
- "DEPosition": 13
379
- }
380
- ]
381
- },
382
- "Person2": {
383
- "PersonId": 205,
384
- "DisplayName": "Cameron Metcalf",
385
- "ClubId": 33,
386
- "Images": [],
387
- "Club": {
388
- "Name": "Grand Rapids HEMA Society"
389
- },
390
- "EventPersons": [
391
- {
392
- "DEPosition": 20
393
- }
394
- ]
395
- },
396
- "Pool": {
397
- "RingName": "DE Bracket"
398
- }
399
- },
400
- {
401
- "TimerStatus": "stopped",
402
- "RefName": "Unassigned",
403
- "BoutId": 8575,
404
- "PoolId": 250,
405
- "EventId": 28,
406
- "Person1Id": 0,
407
- "Person2Id": 142,
408
- "Status": "Bye",
409
- "Score1": 0,
410
- "Score2": 0,
411
- "Started": null,
412
- "Ended": null,
413
- "TimeLeft": 0,
414
- "CurrentPass": 0,
415
- "MaxPasses": 0,
416
- "RoundLabel": "Table of 32",
417
- "DEBoutId": 8,
418
- "DENextBoutId": 20,
419
- "RefereeId": null,
420
- "createdAt": "2024-09-04T12:11:32.000Z",
421
- "updatedAt": "2024-09-04T12:11:36.000Z",
422
- "Person1": {
423
- "PersonId": 0,
424
- "DisplayName": "BYE",
425
- "ClubId": 1,
426
- "Images": [],
427
- "Club": {
428
- "Name": "Acme Fencing Club",
429
- "Color1": "navy",
430
- "Color2": "rose"
431
- },
432
- "EventPersons": []
433
- },
434
- "Person2": {
435
- "PersonId": 142,
436
- "DisplayName": "Andrew Bakry",
437
- "ClubId": 30,
438
- "Images": [],
439
- "Club": {
440
- "Name": "Maryland Kunst Des Fechtens"
441
- },
442
- "EventPersons": [
443
- {
444
- "DEPosition": 4
445
- }
446
- ]
447
- },
448
- "Pool": {
449
- "RingName": "DE Bracket"
450
- }
451
- },
452
- {
453
- "TimerStatus": "stopped",
454
- "RefName": "Unassigned",
455
- "BoutId": 8576,
456
- "PoolId": 250,
457
- "EventId": 28,
458
- "Person1Id": 126,
459
- "Person2Id": 0,
460
- "Status": "Bye",
461
- "Score1": 0,
462
- "Score2": 0,
463
- "Started": null,
464
- "Ended": null,
465
- "TimeLeft": 0,
466
- "CurrentPass": 0,
467
- "MaxPasses": 0,
468
- "RoundLabel": "Table of 32",
469
- "DEBoutId": 9,
470
- "DENextBoutId": 21,
471
- "RefereeId": null,
472
- "createdAt": "2024-09-04T12:11:32.000Z",
473
- "updatedAt": "2024-09-04T12:11:37.000Z",
474
- "Person1": {
475
- "PersonId": 126,
476
- "DisplayName": "Caleb Tong",
477
- "ClubId": 72,
478
- "Images": [],
479
- "Club": {
480
- "Name": "Highland County Salle d'Armes",
481
- "Color1": "blue",
482
- "Color2": "red"
483
- },
484
- "EventPersons": [
485
- {
486
- "DEPosition": 3
487
- }
488
- ]
489
- },
490
- "Person2": {
491
- "PersonId": 0,
492
- "DisplayName": "BYE",
493
- "ClubId": 1,
494
- "Images": [],
495
- "Club": {
496
- "Name": "Acme Fencing Club"
497
- },
498
- "EventPersons": []
499
- },
500
- "Pool": {
501
- "RingName": "DE Bracket"
502
- }
503
- },
504
- {
505
- "TimerStatus": "stopped",
506
- "RefName": "Unassigned",
507
- "BoutId": 8577,
508
- "PoolId": 250,
509
- "EventId": 28,
510
- "Person1Id": 200,
511
- "Person2Id": 185,
512
- "Status": "Scheduled",
513
- "Score1": 0,
514
- "Score2": 0,
515
- "Started": null,
516
- "Ended": null,
517
- "TimeLeft": 0,
518
- "CurrentPass": 0,
519
- "MaxPasses": 0,
520
- "RoundLabel": "Table of 32",
521
- "DEBoutId": 10,
522
- "DENextBoutId": 21,
523
- "RefereeId": null,
524
- "createdAt": "2024-09-04T12:11:32.000Z",
525
- "updatedAt": "2024-09-04T12:11:32.000Z",
526
- "Person1": {
527
- "PersonId": 200,
528
- "DisplayName": "Eric King",
529
- "ClubId": 10,
530
- "Images": [],
531
- "Club": {
532
- "Name": "Columbus United Fencing Club",
533
- "Color1": "navy",
534
- "Color2": "rose"
535
- },
536
- "EventPersons": [
537
- {
538
- "DEPosition": 19
539
- }
540
- ]
541
- },
542
- "Person2": {
543
- "PersonId": 185,
544
- "DisplayName": "Donald Kullman",
545
- "ClubId": 120,
546
- "Images": [],
547
- "Club": {
548
- "Name": "Nashville School of Historical Fencing"
549
- },
550
- "EventPersons": [
551
- {
552
- "DEPosition": 14
553
- }
554
- ]
555
- },
556
- "Pool": {
557
- "RingName": "DE Bracket"
558
- }
559
- },
560
- {
561
- "TimerStatus": "stopped",
562
- "RefName": "Unassigned",
563
- "BoutId": 8578,
564
- "PoolId": 250,
565
- "EventId": 28,
566
- "Person1Id": 133,
567
- "Person2Id": 136,
568
- "Status": "Scheduled",
569
- "Score1": 0,
570
- "Score2": 0,
571
- "Started": null,
572
- "Ended": null,
573
- "TimeLeft": 0,
574
- "CurrentPass": 0,
575
- "MaxPasses": 0,
576
- "RoundLabel": "Table of 32",
577
- "DEBoutId": 11,
578
- "DENextBoutId": 22,
579
- "RefereeId": null,
580
- "createdAt": "2024-09-04T12:11:32.000Z",
581
- "updatedAt": "2024-09-04T12:11:32.000Z",
582
- "Person1": {
583
- "PersonId": 133,
584
- "DisplayName": "Jaron Bernstein",
585
- "ClubId": 10,
586
- "Images": [],
587
- "Club": {
588
- "Name": "Columbus United Fencing Club",
589
- "Color1": "navy",
590
- "Color2": "rose"
591
- },
592
- "EventPersons": [
593
- {
594
- "DEPosition": 11
595
- }
596
- ]
597
- },
598
- "Person2": {
599
- "PersonId": 136,
600
- "DisplayName": "Joseph Hochadel",
601
- "ClubId": 21,
602
- "Images": [],
603
- "Club": {
604
- "Name": "Gem City Duelists Society"
605
- },
606
- "EventPersons": [
607
- {
608
- "DEPosition": 22
609
- }
610
- ]
611
- },
612
- "Pool": {
613
- "RingName": "DE Bracket"
614
- }
615
- },
616
- {
617
- "TimerStatus": "stopped",
618
- "RefName": "Unassigned",
619
- "BoutId": 8579,
620
- "PoolId": 250,
621
- "EventId": 28,
622
- "Person1Id": 210,
623
- "Person2Id": 193,
624
- "Status": "Scheduled",
625
- "Score1": 0,
626
- "Score2": 0,
627
- "Started": null,
628
- "Ended": null,
629
- "TimeLeft": 0,
630
- "CurrentPass": 0,
631
- "MaxPasses": 0,
632
- "RoundLabel": "Table of 32",
633
- "DEBoutId": 12,
634
- "DENextBoutId": 22,
635
- "RefereeId": null,
636
- "createdAt": "2024-09-04T12:11:32.000Z",
637
- "updatedAt": "2024-09-04T12:11:32.000Z",
638
- "Person1": {
639
- "PersonId": 210,
640
- "DisplayName": "Calvin Stroble",
641
- "ClubId": 17,
642
- "Images": [],
643
- "Club": {
644
- "Name": "No Club Affiliation ",
645
- "Color1": "red",
646
- "Color2": "blue"
647
- },
648
- "EventPersons": [
649
- {
650
- "DEPosition": 27
651
- }
652
- ]
653
- },
654
- "Person2": {
655
- "PersonId": 193,
656
- "DisplayName": "Cristina Tamer",
657
- "ClubId": 69,
658
- "Images": [],
659
- "Club": {
660
- "Name": "Ann Arbor Sword Club"
661
- },
662
- "EventPersons": [
663
- {
664
- "DEPosition": 6
665
- }
666
- ]
667
- },
668
- "Pool": {
669
- "RingName": "DE Bracket"
670
- }
671
- },
672
- {
673
- "TimerStatus": "stopped",
674
- "RefName": "Unassigned",
675
- "BoutId": 8580,
676
- "PoolId": 250,
677
- "EventId": 28,
678
- "Person1Id": 204,
679
- "Person2Id": 209,
680
- "Status": "Scheduled",
681
- "Score1": 0,
682
- "Score2": 0,
683
- "Started": null,
684
- "Ended": null,
685
- "TimeLeft": 0,
686
- "CurrentPass": 0,
687
- "MaxPasses": 0,
688
- "RoundLabel": "Table of 32",
689
- "DEBoutId": 13,
690
- "DENextBoutId": 23,
691
- "RefereeId": null,
692
- "createdAt": "2024-09-04T12:11:32.000Z",
693
- "updatedAt": "2024-09-04T12:11:32.000Z",
694
- "Person1": {
695
- "PersonId": 204,
696
- "DisplayName": "Geoff Ginther",
697
- "ClubId": 37,
698
- "Images": [],
699
- "Club": {
700
- "Name": "Indianapolis Fencing Club",
701
- "Color1": "Red",
702
- "Color2": "Gold"
703
- },
704
- "EventPersons": [
705
- {
706
- "DEPosition": 7
707
- }
708
- ]
709
- },
710
- "Person2": {
711
- "PersonId": 209,
712
- "DisplayName": "Shane Hillen",
713
- "ClubId": 33,
714
- "Images": [],
715
- "Club": {
716
- "Name": "Grand Rapids HEMA Society"
717
- },
718
- "EventPersons": [
719
- {
720
- "DEPosition": 26
721
- }
722
- ]
723
- },
724
- "Pool": {
725
- "RingName": "DE Bracket"
726
- }
727
- },
728
- {
729
- "TimerStatus": "stopped",
730
- "RefName": "Unassigned",
731
- "BoutId": 8581,
732
- "PoolId": 250,
733
- "EventId": 28,
734
- "Person1Id": 150,
735
- "Person2Id": 113,
736
- "Status": "Scheduled",
737
- "Score1": 0,
738
- "Score2": 0,
739
- "Started": null,
740
- "Ended": null,
741
- "TimeLeft": 0,
742
- "CurrentPass": 0,
743
- "MaxPasses": 0,
744
- "RoundLabel": "Table of 32",
745
- "DEBoutId": 14,
746
- "DENextBoutId": 23,
747
- "RefereeId": null,
748
- "createdAt": "2024-09-04T12:11:32.000Z",
749
- "updatedAt": "2024-09-04T12:11:32.000Z",
750
- "Person1": {
751
- "PersonId": 150,
752
- "DisplayName": "Tanner Martin",
753
- "ClubId": 17,
754
- "Images": [],
755
- "Club": {
756
- "Name": "No Club Affiliation ",
757
- "Color1": "red",
758
- "Color2": "blue"
759
- },
760
- "EventPersons": [
761
- {
762
- "DEPosition": 23
763
- }
764
- ]
765
- },
766
- "Person2": {
767
- "PersonId": 113,
768
- "DisplayName": "Thomas Amoroso",
769
- "ClubId": 27,
770
- "Images": [],
771
- "Club": {
772
- "Name": "Columbus Saber Academy"
773
- },
774
- "EventPersons": [
775
- {
776
- "DEPosition": 10
777
- }
778
- ]
779
- },
780
- "Pool": {
781
- "RingName": "DE Bracket"
782
- }
783
- },
784
- {
785
- "TimerStatus": "stopped",
786
- "RefName": "Unassigned",
787
- "BoutId": 8582,
788
- "PoolId": 250,
789
- "EventId": 28,
790
- "Person1Id": 71,
791
- "Person2Id": 197,
792
- "Status": "Scheduled",
793
- "Score1": 0,
794
- "Score2": 0,
795
- "Started": null,
796
- "Ended": null,
797
- "TimeLeft": 0,
798
- "CurrentPass": 0,
799
- "MaxPasses": 0,
800
- "RoundLabel": "Table of 32",
801
- "DEBoutId": 15,
802
- "DENextBoutId": 24,
803
- "RefereeId": null,
804
- "createdAt": "2024-09-04T12:11:32.000Z",
805
- "updatedAt": "2024-09-04T12:11:32.000Z",
806
- "Person1": {
807
- "PersonId": 71,
808
- "DisplayName": "Thomas Kesler",
809
- "ClubId": 12,
810
- "Images": [],
811
- "Club": {
812
- "Name": "Gem City Duelists Society",
813
- "Color1": "green",
814
- "Color2": "black"
815
- },
816
- "EventPersons": [
817
- {
818
- "DEPosition": 15
819
- }
820
- ]
821
- },
822
- "Person2": {
823
- "PersonId": 197,
824
- "DisplayName": "Andrew Feigel",
825
- "ClubId": 30,
826
- "Images": [],
827
- "Club": {
828
- "Name": "Maryland Kunst Des Fechtens"
829
- },
830
- "EventPersons": [
831
- {
832
- "DEPosition": 18
833
- }
834
- ]
835
- },
836
- "Pool": {
837
- "RingName": "DE Bracket"
838
- }
839
- },
840
- {
841
- "TimerStatus": "stopped",
842
- "RefName": "Unassigned",
843
- "BoutId": 8583,
844
- "PoolId": 250,
845
- "EventId": 28,
846
- "Person1Id": 0,
847
- "Person2Id": 125,
848
- "Status": "Bye",
849
- "Score1": 0,
850
- "Score2": 0,
851
- "Started": null,
852
- "Ended": null,
853
- "TimeLeft": 0,
854
- "CurrentPass": 0,
855
- "MaxPasses": 0,
856
- "RoundLabel": "Table of 32",
857
- "DEBoutId": 16,
858
- "DENextBoutId": 24,
859
- "RefereeId": null,
860
- "createdAt": "2024-09-04T12:11:32.000Z",
861
- "updatedAt": "2024-09-04T12:11:37.000Z",
862
- "Person1": {
863
- "PersonId": 0,
864
- "DisplayName": "BYE",
865
- "ClubId": 1,
866
- "Images": [],
867
- "Club": {
868
- "Name": "Acme Fencing Club",
869
- "Color1": "navy",
870
- "Color2": "rose"
871
- },
872
- "EventPersons": []
873
- },
874
- "Person2": {
875
- "PersonId": 125,
876
- "DisplayName": "Ian Broderick",
877
- "ClubId": 17,
878
- "Images": [],
879
- "Club": {
880
- "Name": "No Club Affiliation "
881
- },
882
- "EventPersons": [
883
- {
884
- "DEPosition": 2
885
- }
886
- ]
887
- },
888
- "Pool": {
889
- "RingName": "DE Bracket"
890
- }
891
- },
892
- {
893
- "TimerStatus": "stopped",
894
- "RefName": "Unassigned",
895
- "BoutId": 8584,
896
- "PoolId": 250,
897
- "EventId": 28,
898
- "Person1Id": 43,
899
- "Person2Id": 0,
900
- "Status": "Scheduled",
901
- "Score1": 0,
902
- "Score2": 0,
903
- "Started": null,
904
- "Ended": null,
905
- "TimeLeft": 0,
906
- "CurrentPass": 0,
907
- "MaxPasses": 0,
908
- "RoundLabel": "Table of 16",
909
- "DEBoutId": 17,
910
- "DENextBoutId": 25,
911
- "RefereeId": null,
912
- "createdAt": "2024-09-04T12:11:32.000Z",
913
- "updatedAt": "2024-09-04T12:11:35.000Z",
914
- "Person1": {
915
- "PersonId": 43,
916
- "DisplayName": "Derek Ray",
917
- "ClubId": 10,
918
- "Images": [],
919
- "Club": {
920
- "Name": "Columbus United Fencing Club",
921
- "Color1": "navy",
922
- "Color2": "rose"
923
- },
924
- "EventPersons": [
925
- {
926
- "DEPosition": 1
927
- }
928
- ]
929
- },
930
- "Person2": {
931
- "PersonId": 0,
932
- "DisplayName": "BYE",
933
- "ClubId": 1,
934
- "Images": [],
935
- "Club": {
936
- "Name": "Acme Fencing Club"
937
- },
938
- "EventPersons": []
939
- },
940
- "Pool": {
941
- "RingName": "DE Bracket"
942
- }
943
- },
944
- {
945
- "TimerStatus": "stopped",
946
- "RefName": "Unassigned",
947
- "BoutId": 8585,
948
- "PoolId": 250,
949
- "EventId": 28,
950
- "Person1Id": 0,
951
- "Person2Id": 0,
952
- "Status": "Scheduled",
953
- "Score1": 0,
954
- "Score2": 0,
955
- "Started": null,
956
- "Ended": null,
957
- "TimeLeft": 0,
958
- "CurrentPass": 0,
959
- "MaxPasses": 0,
960
- "RoundLabel": "Table of 16",
961
- "DEBoutId": 18,
962
- "DENextBoutId": 25,
963
- "RefereeId": null,
964
- "createdAt": "2024-09-04T12:11:32.000Z",
965
- "updatedAt": "2024-09-04T12:11:32.000Z",
966
- "Person1": {
967
- "PersonId": 0,
968
- "DisplayName": "BYE",
969
- "ClubId": 1,
970
- "Images": [],
971
- "Club": {
972
- "Name": "Acme Fencing Club",
973
- "Color1": "navy",
974
- "Color2": "rose"
975
- },
976
- "EventPersons": []
977
- },
978
- "Person2": {
979
- "PersonId": 0,
980
- "DisplayName": "BYE",
981
- "ClubId": 1,
982
- "Images": [],
983
- "Club": {
984
- "Name": "Acme Fencing Club"
985
- },
986
- "EventPersons": []
987
- },
988
- "Pool": {
989
- "RingName": "DE Bracket"
990
- }
991
- },
992
- {
993
- "TimerStatus": "stopped",
994
- "RefName": "Unassigned",
995
- "BoutId": 8586,
996
- "PoolId": 250,
997
- "EventId": 28,
998
- "Person1Id": 153,
999
- "Person2Id": 0,
1000
- "Status": "Scheduled",
1001
- "Score1": 0,
1002
- "Score2": 0,
1003
- "Started": null,
1004
- "Ended": null,
1005
- "TimeLeft": 0,
1006
- "CurrentPass": 0,
1007
- "MaxPasses": 0,
1008
- "RoundLabel": "Table of 16",
1009
- "DEBoutId": 19,
1010
- "DENextBoutId": 26,
1011
- "RefereeId": null,
1012
- "createdAt": "2024-09-04T12:11:32.000Z",
1013
- "updatedAt": "2024-09-04T12:11:36.000Z",
1014
- "Person1": {
1015
- "PersonId": 153,
1016
- "DisplayName": "Kai Cummings",
1017
- "ClubId": 95,
1018
- "Images": [],
1019
- "Club": {
1020
- "Name": "Indes Ferox Gladio",
1021
- "Color1": "Red",
1022
- "Color2": "Gold"
1023
- },
1024
- "EventPersons": [
1025
- {
1026
- "DEPosition": 5
1027
- }
1028
- ]
1029
- },
1030
- "Person2": {
1031
- "PersonId": 0,
1032
- "DisplayName": "BYE",
1033
- "ClubId": 1,
1034
- "Images": [],
1035
- "Club": {
1036
- "Name": "Acme Fencing Club"
1037
- },
1038
- "EventPersons": []
1039
- },
1040
- "Pool": {
1041
- "RingName": "DE Bracket"
1042
- }
1043
- },
1044
- {
1045
- "TimerStatus": "stopped",
1046
- "RefName": "Unassigned",
1047
- "BoutId": 8587,
1048
- "PoolId": 250,
1049
- "EventId": 28,
1050
- "Person1Id": 0,
1051
- "Person2Id": 142,
1052
- "Status": "Scheduled",
1053
- "Score1": 0,
1054
- "Score2": 0,
1055
- "Started": null,
1056
- "Ended": null,
1057
- "TimeLeft": 0,
1058
- "CurrentPass": 0,
1059
- "MaxPasses": 0,
1060
- "RoundLabel": "Table of 16",
1061
- "DEBoutId": 20,
1062
- "DENextBoutId": 26,
1063
- "RefereeId": null,
1064
- "createdAt": "2024-09-04T12:11:32.000Z",
1065
- "updatedAt": "2024-09-04T12:11:36.000Z",
1066
- "Person1": {
1067
- "PersonId": 0,
1068
- "DisplayName": "BYE",
1069
- "ClubId": 1,
1070
- "Images": [],
1071
- "Club": {
1072
- "Name": "Acme Fencing Club",
1073
- "Color1": "navy",
1074
- "Color2": "rose"
1075
- },
1076
- "EventPersons": []
1077
- },
1078
- "Person2": {
1079
- "PersonId": 142,
1080
- "DisplayName": "Andrew Bakry",
1081
- "ClubId": 30,
1082
- "Images": [],
1083
- "Club": {
1084
- "Name": "Maryland Kunst Des Fechtens"
1085
- },
1086
- "EventPersons": [
1087
- {
1088
- "DEPosition": 4
1089
- }
1090
- ]
1091
- },
1092
- "Pool": {
1093
- "RingName": "DE Bracket"
1094
- }
1095
- },
1096
- {
1097
- "TimerStatus": "stopped",
1098
- "RefName": "Unassigned",
1099
- "BoutId": 8588,
1100
- "PoolId": 250,
1101
- "EventId": 28,
1102
- "Person1Id": 126,
1103
- "Person2Id": 0,
1104
- "Status": "Scheduled",
1105
- "Score1": 0,
1106
- "Score2": 0,
1107
- "Started": null,
1108
- "Ended": null,
1109
- "TimeLeft": 0,
1110
- "CurrentPass": 0,
1111
- "MaxPasses": 0,
1112
- "RoundLabel": "Table of 16",
1113
- "DEBoutId": 21,
1114
- "DENextBoutId": 27,
1115
- "RefereeId": null,
1116
- "createdAt": "2024-09-04T12:11:32.000Z",
1117
- "updatedAt": "2024-09-04T12:11:37.000Z",
1118
- "Person1": {
1119
- "PersonId": 126,
1120
- "DisplayName": "Caleb Tong",
1121
- "ClubId": 72,
1122
- "Images": [],
1123
- "Club": {
1124
- "Name": "Highland County Salle d'Armes",
1125
- "Color1": "blue",
1126
- "Color2": "red"
1127
- },
1128
- "EventPersons": [
1129
- {
1130
- "DEPosition": 3
1131
- }
1132
- ]
1133
- },
1134
- "Person2": {
1135
- "PersonId": 0,
1136
- "DisplayName": "BYE",
1137
- "ClubId": 1,
1138
- "Images": [],
1139
- "Club": {
1140
- "Name": "Acme Fencing Club"
1141
- },
1142
- "EventPersons": []
1143
- },
1144
- "Pool": {
1145
- "RingName": "DE Bracket"
1146
- }
1147
- },
1148
- {
1149
- "TimerStatus": "stopped",
1150
- "RefName": "Unassigned",
1151
- "BoutId": 8589,
1152
- "PoolId": 250,
1153
- "EventId": 28,
1154
- "Person1Id": 0,
1155
- "Person2Id": 0,
1156
- "Status": "Scheduled",
1157
- "Score1": 0,
1158
- "Score2": 0,
1159
- "Started": null,
1160
- "Ended": null,
1161
- "TimeLeft": 0,
1162
- "CurrentPass": 0,
1163
- "MaxPasses": 0,
1164
- "RoundLabel": "Table of 16",
1165
- "DEBoutId": 22,
1166
- "DENextBoutId": 27,
1167
- "RefereeId": null,
1168
- "createdAt": "2024-09-04T12:11:32.000Z",
1169
- "updatedAt": "2024-09-04T12:11:32.000Z",
1170
- "Person1": {
1171
- "PersonId": 0,
1172
- "DisplayName": "BYE",
1173
- "ClubId": 1,
1174
- "Images": [],
1175
- "Club": {
1176
- "Name": "Acme Fencing Club",
1177
- "Color1": "navy",
1178
- "Color2": "rose"
1179
- },
1180
- "EventPersons": []
1181
- },
1182
- "Person2": {
1183
- "PersonId": 0,
1184
- "DisplayName": "BYE",
1185
- "ClubId": 1,
1186
- "Images": [],
1187
- "Club": {
1188
- "Name": "Acme Fencing Club"
1189
- },
1190
- "EventPersons": []
1191
- },
1192
- "Pool": {
1193
- "RingName": "DE Bracket"
1194
- }
1195
- },
1196
- {
1197
- "TimerStatus": "stopped",
1198
- "RefName": "Unassigned",
1199
- "BoutId": 8590,
1200
- "PoolId": 250,
1201
- "EventId": 28,
1202
- "Person1Id": 0,
1203
- "Person2Id": 0,
1204
- "Status": "Scheduled",
1205
- "Score1": 0,
1206
- "Score2": 0,
1207
- "Started": null,
1208
- "Ended": null,
1209
- "TimeLeft": 0,
1210
- "CurrentPass": 0,
1211
- "MaxPasses": 0,
1212
- "RoundLabel": "Table of 16",
1213
- "DEBoutId": 23,
1214
- "DENextBoutId": 28,
1215
- "RefereeId": null,
1216
- "createdAt": "2024-09-04T12:11:32.000Z",
1217
- "updatedAt": "2024-09-04T12:11:32.000Z",
1218
- "Person1": {
1219
- "PersonId": 0,
1220
- "DisplayName": "BYE",
1221
- "ClubId": 1,
1222
- "Images": [],
1223
- "Club": {
1224
- "Name": "Acme Fencing Club",
1225
- "Color1": "navy",
1226
- "Color2": "rose"
1227
- },
1228
- "EventPersons": []
1229
- },
1230
- "Person2": {
1231
- "PersonId": 0,
1232
- "DisplayName": "BYE",
1233
- "ClubId": 1,
1234
- "Images": [],
1235
- "Club": {
1236
- "Name": "Acme Fencing Club"
1237
- },
1238
- "EventPersons": []
1239
- },
1240
- "Pool": {
1241
- "RingName": "DE Bracket"
1242
- }
1243
- },
1244
- {
1245
- "TimerStatus": "stopped",
1246
- "RefName": "Unassigned",
1247
- "BoutId": 8591,
1248
- "PoolId": 250,
1249
- "EventId": 28,
1250
- "Person1Id": 0,
1251
- "Person2Id": 125,
1252
- "Status": "Scheduled",
1253
- "Score1": 0,
1254
- "Score2": 0,
1255
- "Started": null,
1256
- "Ended": null,
1257
- "TimeLeft": 0,
1258
- "CurrentPass": 0,
1259
- "MaxPasses": 0,
1260
- "RoundLabel": "Table of 16",
1261
- "DEBoutId": 24,
1262
- "DENextBoutId": 28,
1263
- "RefereeId": null,
1264
- "createdAt": "2024-09-04T12:11:32.000Z",
1265
- "updatedAt": "2024-09-04T12:11:38.000Z",
1266
- "Person1": {
1267
- "PersonId": 0,
1268
- "DisplayName": "BYE",
1269
- "ClubId": 1,
1270
- "Images": [],
1271
- "Club": {
1272
- "Name": "Acme Fencing Club",
1273
- "Color1": "navy",
1274
- "Color2": "rose"
1275
- },
1276
- "EventPersons": []
1277
- },
1278
- "Person2": {
1279
- "PersonId": 125,
1280
- "DisplayName": "Ian Broderick",
1281
- "ClubId": 17,
1282
- "Images": [],
1283
- "Club": {
1284
- "Name": "No Club Affiliation "
1285
- },
1286
- "EventPersons": [
1287
- {
1288
- "DEPosition": 2
1289
- }
1290
- ]
1291
- },
1292
- "Pool": {
1293
- "RingName": "DE Bracket"
1294
- }
1295
- },
1296
- {
1297
- "TimerStatus": "stopped",
1298
- "RefName": "Unassigned",
1299
- "BoutId": 8592,
1300
- "PoolId": 250,
1301
- "EventId": 28,
1302
- "Person1Id": 0,
1303
- "Person2Id": 0,
1304
- "Status": "Scheduled",
1305
- "Score1": 0,
1306
- "Score2": 0,
1307
- "Started": null,
1308
- "Ended": null,
1309
- "TimeLeft": 0,
1310
- "CurrentPass": 0,
1311
- "MaxPasses": 0,
1312
- "RoundLabel": "Table of 8",
1313
- "DEBoutId": 25,
1314
- "DENextBoutId": 29,
1315
- "RefereeId": null,
1316
- "createdAt": "2024-09-04T12:11:32.000Z",
1317
- "updatedAt": "2024-09-04T12:11:32.000Z",
1318
- "Person1": {
1319
- "PersonId": 0,
1320
- "DisplayName": "BYE",
1321
- "ClubId": 1,
1322
- "Images": [],
1323
- "Club": {
1324
- "Name": "Acme Fencing Club",
1325
- "Color1": "navy",
1326
- "Color2": "rose"
1327
- },
1328
- "EventPersons": []
1329
- },
1330
- "Person2": {
1331
- "PersonId": 0,
1332
- "DisplayName": "BYE",
1333
- "ClubId": 1,
1334
- "Images": [],
1335
- "Club": {
1336
- "Name": "Acme Fencing Club"
1337
- },
1338
- "EventPersons": []
1339
- },
1340
- "Pool": {
1341
- "RingName": "DE Bracket"
1342
- }
1343
- },
1344
- {
1345
- "TimerStatus": "stopped",
1346
- "RefName": "Unassigned",
1347
- "BoutId": 8593,
1348
- "PoolId": 250,
1349
- "EventId": 28,
1350
- "Person1Id": 0,
1351
- "Person2Id": 0,
1352
- "Status": "Scheduled",
1353
- "Score1": 0,
1354
- "Score2": 0,
1355
- "Started": null,
1356
- "Ended": null,
1357
- "TimeLeft": 0,
1358
- "CurrentPass": 0,
1359
- "MaxPasses": 0,
1360
- "RoundLabel": "Table of 8",
1361
- "DEBoutId": 26,
1362
- "DENextBoutId": 29,
1363
- "RefereeId": null,
1364
- "createdAt": "2024-09-04T12:11:32.000Z",
1365
- "updatedAt": "2024-09-04T12:11:32.000Z",
1366
- "Person1": {
1367
- "PersonId": 0,
1368
- "DisplayName": "BYE",
1369
- "ClubId": 1,
1370
- "Images": [],
1371
- "Club": {
1372
- "Name": "Acme Fencing Club",
1373
- "Color1": "navy",
1374
- "Color2": "rose"
1375
- },
1376
- "EventPersons": []
1377
- },
1378
- "Person2": {
1379
- "PersonId": 0,
1380
- "DisplayName": "BYE",
1381
- "ClubId": 1,
1382
- "Images": [],
1383
- "Club": {
1384
- "Name": "Acme Fencing Club"
1385
- },
1386
- "EventPersons": []
1387
- },
1388
- "Pool": {
1389
- "RingName": "DE Bracket"
1390
- }
1391
- },
1392
- {
1393
- "TimerStatus": "stopped",
1394
- "RefName": "Unassigned",
1395
- "BoutId": 8594,
1396
- "PoolId": 250,
1397
- "EventId": 28,
1398
- "Person1Id": 0,
1399
- "Person2Id": 0,
1400
- "Status": "Scheduled",
1401
- "Score1": 0,
1402
- "Score2": 0,
1403
- "Started": null,
1404
- "Ended": null,
1405
- "TimeLeft": 0,
1406
- "CurrentPass": 0,
1407
- "MaxPasses": 0,
1408
- "RoundLabel": "Table of 8",
1409
- "DEBoutId": 27,
1410
- "DENextBoutId": 30,
1411
- "RefereeId": null,
1412
- "createdAt": "2024-09-04T12:11:32.000Z",
1413
- "updatedAt": "2024-09-04T12:11:32.000Z",
1414
- "Person1": {
1415
- "PersonId": 0,
1416
- "DisplayName": "BYE",
1417
- "ClubId": 1,
1418
- "Images": [],
1419
- "Club": {
1420
- "Name": "Acme Fencing Club",
1421
- "Color1": "navy",
1422
- "Color2": "rose"
1423
- },
1424
- "EventPersons": []
1425
- },
1426
- "Person2": {
1427
- "PersonId": 0,
1428
- "DisplayName": "BYE",
1429
- "ClubId": 1,
1430
- "Images": [],
1431
- "Club": {
1432
- "Name": "Acme Fencing Club"
1433
- },
1434
- "EventPersons": []
1435
- },
1436
- "Pool": {
1437
- "RingName": "DE Bracket"
1438
- }
1439
- },
1440
- {
1441
- "TimerStatus": "stopped",
1442
- "RefName": "Unassigned",
1443
- "BoutId": 8595,
1444
- "PoolId": 250,
1445
- "EventId": 28,
1446
- "Person1Id": 0,
1447
- "Person2Id": 0,
1448
- "Status": "Scheduled",
1449
- "Score1": 0,
1450
- "Score2": 0,
1451
- "Started": null,
1452
- "Ended": null,
1453
- "TimeLeft": 0,
1454
- "CurrentPass": 0,
1455
- "MaxPasses": 0,
1456
- "RoundLabel": "Table of 8",
1457
- "DEBoutId": 28,
1458
- "DENextBoutId": 30,
1459
- "RefereeId": null,
1460
- "createdAt": "2024-09-04T12:11:32.000Z",
1461
- "updatedAt": "2024-09-04T12:11:32.000Z",
1462
- "Person1": {
1463
- "PersonId": 0,
1464
- "DisplayName": "BYE",
1465
- "ClubId": 1,
1466
- "Images": [],
1467
- "Club": {
1468
- "Name": "Acme Fencing Club",
1469
- "Color1": "navy",
1470
- "Color2": "rose"
1471
- },
1472
- "EventPersons": []
1473
- },
1474
- "Person2": {
1475
- "PersonId": 0,
1476
- "DisplayName": "BYE",
1477
- "ClubId": 1,
1478
- "Images": [],
1479
- "Club": {
1480
- "Name": "Acme Fencing Club"
1481
- },
1482
- "EventPersons": []
1483
- },
1484
- "Pool": {
1485
- "RingName": "DE Bracket"
1486
- }
1487
- },
1488
- {
1489
- "TimerStatus": "stopped",
1490
- "RefName": "Unassigned",
1491
- "BoutId": 8596,
1492
- "PoolId": 250,
1493
- "EventId": 28,
1494
- "Person1Id": 0,
1495
- "Person2Id": 0,
1496
- "Status": "Scheduled",
1497
- "Score1": 0,
1498
- "Score2": 0,
1499
- "Started": null,
1500
- "Ended": null,
1501
- "TimeLeft": 0,
1502
- "CurrentPass": 0,
1503
- "MaxPasses": 0,
1504
- "RoundLabel": "Semifinal",
1505
- "DEBoutId": 29,
1506
- "DENextBoutId": 31,
1507
- "RefereeId": null,
1508
- "createdAt": "2024-09-04T12:11:32.000Z",
1509
- "updatedAt": "2024-09-04T12:11:32.000Z",
1510
- "Person1": {
1511
- "PersonId": 0,
1512
- "DisplayName": "BYE",
1513
- "ClubId": 1,
1514
- "Images": [],
1515
- "Club": {
1516
- "Name": "Acme Fencing Club",
1517
- "Color1": "navy",
1518
- "Color2": "rose"
1519
- },
1520
- "EventPersons": []
1521
- },
1522
- "Person2": {
1523
- "PersonId": 0,
1524
- "DisplayName": "BYE",
1525
- "ClubId": 1,
1526
- "Images": [],
1527
- "Club": {
1528
- "Name": "Acme Fencing Club"
1529
- },
1530
- "EventPersons": []
1531
- },
1532
- "Pool": {
1533
- "RingName": "DE Bracket"
1534
- }
1535
- },
1536
- {
1537
- "TimerStatus": "stopped",
1538
- "RefName": "Unassigned",
1539
- "BoutId": 8597,
1540
- "PoolId": 250,
1541
- "EventId": 28,
1542
- "Person1Id": 0,
1543
- "Person2Id": 0,
1544
- "Status": "Scheduled",
1545
- "Score1": 0,
1546
- "Score2": 0,
1547
- "Started": null,
1548
- "Ended": null,
1549
- "TimeLeft": 0,
1550
- "CurrentPass": 0,
1551
- "MaxPasses": 0,
1552
- "RoundLabel": "Semifinal",
1553
- "DEBoutId": 30,
1554
- "DENextBoutId": 31,
1555
- "RefereeId": null,
1556
- "createdAt": "2024-09-04T12:11:32.000Z",
1557
- "updatedAt": "2024-09-04T12:11:32.000Z",
1558
- "Person1": {
1559
- "PersonId": 0,
1560
- "DisplayName": "BYE",
1561
- "ClubId": 1,
1562
- "Images": [],
1563
- "Club": {
1564
- "Name": "Acme Fencing Club",
1565
- "Color1": "navy",
1566
- "Color2": "rose"
1567
- },
1568
- "EventPersons": []
1569
- },
1570
- "Person2": {
1571
- "PersonId": 0,
1572
- "DisplayName": "BYE",
1573
- "ClubId": 1,
1574
- "Images": [],
1575
- "Club": {
1576
- "Name": "Acme Fencing Club"
1577
- },
1578
- "EventPersons": []
1579
- },
1580
- "Pool": {
1581
- "RingName": "DE Bracket"
1582
- }
1583
- },
1584
- {
1585
- "TimerStatus": "stopped",
1586
- "RefName": "Unassigned",
1587
- "BoutId": 8598,
1588
- "PoolId": 250,
1589
- "EventId": 28,
1590
- "Person1Id": 0,
1591
- "Person2Id": 0,
1592
- "Status": "Scheduled",
1593
- "Score1": 0,
1594
- "Score2": 0,
1595
- "Started": null,
1596
- "Ended": null,
1597
- "TimeLeft": 0,
1598
- "CurrentPass": 0,
1599
- "MaxPasses": 0,
1600
- "RoundLabel": "Final",
1601
- "DEBoutId": 31,
1602
- "DENextBoutId": null,
1603
- "RefereeId": null,
1604
- "createdAt": "2024-09-04T12:11:32.000Z",
1605
- "updatedAt": "2024-09-04T12:11:32.000Z",
1606
- "Person1": {
1607
- "PersonId": 0,
1608
- "DisplayName": "BYE",
1609
- "ClubId": 1,
1610
- "Images": [],
1611
- "Club": {
1612
- "Name": "Acme Fencing Club",
1613
- "Color1": "navy",
1614
- "Color2": "rose"
1615
- },
1616
- "EventPersons": []
1617
- },
1618
- "Person2": {
1619
- "PersonId": 0,
1620
- "DisplayName": "BYE",
1621
- "ClubId": 1,
1622
- "Images": [],
1623
- "Club": {
1624
- "Name": "Acme Fencing Club"
1625
- },
1626
- "EventPersons": []
1627
- },
1628
- "Pool": {
1629
- "RingName": "DE Bracket"
1630
- }
1631
- }
1632
- ]
1633
- }
1634
- ],
1635
- "eventRules": [
1636
- {
1637
- "RuleId": 1,
1638
- "RuleName": "PoolTime",
1639
- "RuleValue": "120",
1640
- "Context": "pool"
5
+ PoolId: 250,
6
+ Name: 'Open Rapier + Dagger-DE',
7
+ RingName: 'DE Bracket',
8
+ Flight: 1,
9
+ PoolType: 'de',
10
+ EventId: 28,
11
+ Status: 'live',
12
+ Updated: '2024-09-04T12:11:31.000Z',
13
+ Bouts: [
14
+ {
15
+ TimerStatus: 'stopped',
16
+ RefName: 'Unassigned',
17
+ BoutId: 8568,
18
+ PoolId: 250,
19
+ EventId: 28,
20
+ Person1Id: 43,
21
+ Person2Id: 0,
22
+ Status: 'Bye',
23
+ Score1: 0,
24
+ Score2: 0,
25
+ Started: null,
26
+ Ended: null,
27
+ TimeLeft: 0,
28
+ CurrentPass: 0,
29
+ MaxPasses: 0,
30
+ RoundLabel: 'Table of 32',
31
+ DEBoutId: 1,
32
+ DENextBoutId: 17,
33
+ RefereeId: null,
34
+ createdAt: '2024-09-04T12:11:32.000Z',
35
+ updatedAt: '2024-09-04T12:11:35.000Z',
36
+ Person1: {
37
+ PersonId: 43,
38
+ DisplayName: 'Derek Ray',
39
+ ClubId: 10,
40
+ Images: [],
41
+ Club: {
42
+ Name: 'Columbus United Fencing Club',
43
+ Color1: 'navy',
44
+ Color2: 'rose'
45
+ },
46
+ EventPersons: [
47
+ {
48
+ DEPosition: 1
49
+ }
50
+ ]
51
+ },
52
+ Person2: {
53
+ PersonId: 0,
54
+ DisplayName: 'BYE',
55
+ ClubId: 1,
56
+ Images: [],
57
+ Club: {
58
+ Name: 'Acme Fencing Club'
59
+ },
60
+ EventPersons: []
61
+ },
62
+ Pool: {
63
+ RingName: 'DE Bracket'
64
+ }
65
+ },
66
+ {
67
+ TimerStatus: 'stopped',
68
+ RefName: 'Unassigned',
69
+ BoutId: 8569,
70
+ PoolId: 250,
71
+ EventId: 28,
72
+ Person1Id: 190,
73
+ Person2Id: 140,
74
+ Status: 'Scheduled',
75
+ Score1: 0,
76
+ Score2: 0,
77
+ Started: null,
78
+ Ended: null,
79
+ TimeLeft: 0,
80
+ CurrentPass: 0,
81
+ MaxPasses: 0,
82
+ RoundLabel: 'Table of 32',
83
+ DEBoutId: 2,
84
+ DENextBoutId: 17,
85
+ RefereeId: null,
86
+ createdAt: '2024-09-04T12:11:32.000Z',
87
+ updatedAt: '2024-09-04T12:11:32.000Z',
88
+ Person1: {
89
+ PersonId: 190,
90
+ DisplayName: 'Alexander Brindley',
91
+ ClubId: 120,
92
+ Images: [],
93
+ Club: {
94
+ Name: 'Nashville School of Historical Fencing',
95
+ Color1: 'Red',
96
+ Color2: 'Gold'
97
+ },
98
+ EventPersons: [
99
+ {
100
+ DEPosition: 17
101
+ }
102
+ ]
103
+ },
104
+ Person2: {
105
+ PersonId: 140,
106
+ DisplayName: 'Collin Vredenburg',
107
+ ClubId: 83,
108
+ Images: [],
109
+ Club: {
110
+ Name: 'Metropolitan Historical Fencing Academy'
111
+ },
112
+ EventPersons: [
113
+ {
114
+ DEPosition: 16
115
+ }
116
+ ]
117
+ },
118
+ Pool: {
119
+ RingName: 'DE Bracket'
120
+ }
121
+ },
122
+ {
123
+ TimerStatus: 'stopped',
124
+ RefName: 'Unassigned',
125
+ BoutId: 8570,
126
+ PoolId: 250,
127
+ EventId: 28,
128
+ Person1Id: 153,
129
+ Person2Id: 0,
130
+ Status: 'Bye',
131
+ Score1: 0,
132
+ Score2: 0,
133
+ Started: null,
134
+ Ended: null,
135
+ TimeLeft: 0,
136
+ CurrentPass: 0,
137
+ MaxPasses: 0,
138
+ RoundLabel: 'Table of 32',
139
+ DEBoutId: 5,
140
+ DENextBoutId: 19,
141
+ RefereeId: null,
142
+ createdAt: '2024-09-04T12:11:32.000Z',
143
+ updatedAt: '2024-09-04T12:11:35.000Z',
144
+ Person1: {
145
+ PersonId: 153,
146
+ DisplayName: 'Kai Cummings',
147
+ ClubId: 95,
148
+ Images: [],
149
+ Club: {
150
+ Name: 'Indes Ferox Gladio',
151
+ Color1: 'Red',
152
+ Color2: 'Gold'
153
+ },
154
+ EventPersons: [
155
+ {
156
+ DEPosition: 5
157
+ }
158
+ ]
159
+ },
160
+ Person2: {
161
+ PersonId: 0,
162
+ DisplayName: 'BYE',
163
+ ClubId: 1,
164
+ Images: [],
165
+ Club: {
166
+ Name: 'Acme Fencing Club'
167
+ },
168
+ EventPersons: []
169
+ },
170
+ Pool: {
171
+ RingName: 'DE Bracket'
172
+ }
173
+ },
174
+ {
175
+ TimerStatus: 'stopped',
176
+ RefName: 'Unassigned',
177
+ BoutId: 8571,
178
+ PoolId: 250,
179
+ EventId: 28,
180
+ Person1Id: 208,
181
+ Person2Id: 69,
182
+ Status: 'Scheduled',
183
+ Score1: 0,
184
+ Score2: 0,
185
+ Started: null,
186
+ Ended: null,
187
+ TimeLeft: 0,
188
+ CurrentPass: 0,
189
+ MaxPasses: 0,
190
+ RoundLabel: 'Table of 32',
191
+ DEBoutId: 4,
192
+ DENextBoutId: 18,
193
+ RefereeId: null,
194
+ createdAt: '2024-09-04T12:11:32.000Z',
195
+ updatedAt: '2024-09-04T12:11:32.000Z',
196
+ Person1: {
197
+ PersonId: 208,
198
+ DisplayName: 'Joseph Babej ',
199
+ ClubId: 26,
200
+ Images: [],
201
+ Club: {
202
+ Name: 'Youngstown Historical Fencing',
203
+ Color1: 'Red',
204
+ Color2: 'Gold'
205
+ },
206
+ EventPersons: [
207
+ {
208
+ DEPosition: 25
209
+ }
210
+ ]
211
+ },
212
+ Person2: {
213
+ PersonId: 69,
214
+ DisplayName: 'Samuel Ryals',
215
+ ClubId: 12,
216
+ Images: [],
217
+ Club: {
218
+ Name: 'Gem City Duelists Society'
219
+ },
220
+ EventPersons: [
221
+ {
222
+ DEPosition: 8
223
+ }
224
+ ]
225
+ },
226
+ Pool: {
227
+ RingName: 'DE Bracket'
228
+ }
229
+ },
230
+ {
231
+ TimerStatus: 'stopped',
232
+ RefName: 'Unassigned',
233
+ BoutId: 8572,
234
+ PoolId: 250,
235
+ EventId: 28,
236
+ Person1Id: 82,
237
+ Person2Id: 198,
238
+ Status: 'Scheduled',
239
+ Score1: 0,
240
+ Score2: 0,
241
+ Started: null,
242
+ Ended: null,
243
+ TimeLeft: 0,
244
+ CurrentPass: 0,
245
+ MaxPasses: 0,
246
+ RoundLabel: 'Table of 32',
247
+ DEBoutId: 3,
248
+ DENextBoutId: 18,
249
+ RefereeId: null,
250
+ createdAt: '2024-09-04T12:11:32.000Z',
251
+ updatedAt: '2024-09-04T12:11:32.000Z',
252
+ Person1: {
253
+ PersonId: 82,
254
+ DisplayName: 'Chris Shelton ',
255
+ ClubId: 18,
256
+ Images: [],
257
+ Club: {
258
+ Name: 'Hilt and Helm Pittsburgh Fencing Club',
259
+ Color1: 'red',
260
+ Color2: 'blue'
261
+ },
262
+ EventPersons: [
263
+ {
264
+ DEPosition: 9
265
+ }
266
+ ]
267
+ },
268
+ Person2: {
269
+ PersonId: 198,
270
+ DisplayName: 'Chris Holloman',
271
+ ClubId: 120,
272
+ Images: [],
273
+ Club: {
274
+ Name: 'Nashville School of Historical Fencing'
275
+ },
276
+ EventPersons: [
277
+ {
278
+ DEPosition: 24
279
+ }
280
+ ]
281
+ },
282
+ Pool: {
283
+ RingName: 'DE Bracket'
284
+ }
285
+ },
286
+ {
287
+ TimerStatus: 'stopped',
288
+ RefName: 'Unassigned',
289
+ BoutId: 8573,
290
+ PoolId: 250,
291
+ EventId: 28,
292
+ Person1Id: 206,
293
+ Person2Id: 141,
294
+ Status: 'Scheduled',
295
+ Score1: 0,
296
+ Score2: 0,
297
+ Started: null,
298
+ Ended: null,
299
+ TimeLeft: 0,
300
+ CurrentPass: 0,
301
+ MaxPasses: 0,
302
+ RoundLabel: 'Table of 32',
303
+ DEBoutId: 6,
304
+ DENextBoutId: 19,
305
+ RefereeId: null,
306
+ createdAt: '2024-09-04T12:11:32.000Z',
307
+ updatedAt: '2024-09-04T12:11:32.000Z',
308
+ Person1: {
309
+ PersonId: 206,
310
+ DisplayName: 'Jayce Williamson',
311
+ ClubId: 71,
312
+ Images: [],
313
+ Club: {
314
+ Name: 'Knoxville Academy of the Blade',
315
+ Color1: 'Red',
316
+ Color2: 'Gold'
317
+ },
318
+ EventPersons: [
319
+ {
320
+ DEPosition: 21
321
+ }
322
+ ]
323
+ },
324
+ Person2: {
325
+ PersonId: 141,
326
+ DisplayName: 'Joseph Lilly',
327
+ ClubId: 46,
328
+ Images: [],
329
+ Club: {
330
+ Name: 'Capital Kunst Des Fechtens'
331
+ },
332
+ EventPersons: [
333
+ {
334
+ DEPosition: 12
335
+ }
336
+ ]
337
+ },
338
+ Pool: {
339
+ RingName: 'DE Bracket'
340
+ }
341
+ },
342
+ {
343
+ TimerStatus: 'stopped',
344
+ RefName: 'Unassigned',
345
+ BoutId: 8574,
346
+ PoolId: 250,
347
+ EventId: 28,
348
+ Person1Id: 165,
349
+ Person2Id: 205,
350
+ Status: 'Scheduled',
351
+ Score1: 0,
352
+ Score2: 0,
353
+ Started: null,
354
+ Ended: null,
355
+ TimeLeft: 0,
356
+ CurrentPass: 0,
357
+ MaxPasses: 0,
358
+ RoundLabel: 'Table of 32',
359
+ DEBoutId: 7,
360
+ DENextBoutId: 20,
361
+ RefereeId: null,
362
+ createdAt: '2024-09-04T12:11:32.000Z',
363
+ updatedAt: '2024-09-04T12:11:32.000Z',
364
+ Person1: {
365
+ PersonId: 165,
366
+ DisplayName: 'Natalie Chaykina',
367
+ ClubId: 37,
368
+ Images: [],
369
+ Club: {
370
+ Name: 'Indianapolis Fencing Club',
371
+ Color1: 'Red',
372
+ Color2: 'Gold'
373
+ },
374
+ EventPersons: [
375
+ {
376
+ DEPosition: 13
377
+ }
378
+ ]
379
+ },
380
+ Person2: {
381
+ PersonId: 205,
382
+ DisplayName: 'Cameron Metcalf',
383
+ ClubId: 33,
384
+ Images: [],
385
+ Club: {
386
+ Name: 'Grand Rapids HEMA Society'
387
+ },
388
+ EventPersons: [
389
+ {
390
+ DEPosition: 20
391
+ }
392
+ ]
393
+ },
394
+ Pool: {
395
+ RingName: 'DE Bracket'
396
+ }
397
+ },
398
+ {
399
+ TimerStatus: 'stopped',
400
+ RefName: 'Unassigned',
401
+ BoutId: 8575,
402
+ PoolId: 250,
403
+ EventId: 28,
404
+ Person1Id: 0,
405
+ Person2Id: 142,
406
+ Status: 'Bye',
407
+ Score1: 0,
408
+ Score2: 0,
409
+ Started: null,
410
+ Ended: null,
411
+ TimeLeft: 0,
412
+ CurrentPass: 0,
413
+ MaxPasses: 0,
414
+ RoundLabel: 'Table of 32',
415
+ DEBoutId: 8,
416
+ DENextBoutId: 20,
417
+ RefereeId: null,
418
+ createdAt: '2024-09-04T12:11:32.000Z',
419
+ updatedAt: '2024-09-04T12:11:36.000Z',
420
+ Person1: {
421
+ PersonId: 0,
422
+ DisplayName: 'BYE',
423
+ ClubId: 1,
424
+ Images: [],
425
+ Club: {
426
+ Name: 'Acme Fencing Club',
427
+ Color1: 'navy',
428
+ Color2: 'rose'
429
+ },
430
+ EventPersons: []
431
+ },
432
+ Person2: {
433
+ PersonId: 142,
434
+ DisplayName: 'Andrew Bakry',
435
+ ClubId: 30,
436
+ Images: [],
437
+ Club: {
438
+ Name: 'Maryland Kunst Des Fechtens'
439
+ },
440
+ EventPersons: [
441
+ {
442
+ DEPosition: 4
443
+ }
444
+ ]
445
+ },
446
+ Pool: {
447
+ RingName: 'DE Bracket'
448
+ }
449
+ },
450
+ {
451
+ TimerStatus: 'stopped',
452
+ RefName: 'Unassigned',
453
+ BoutId: 8576,
454
+ PoolId: 250,
455
+ EventId: 28,
456
+ Person1Id: 126,
457
+ Person2Id: 0,
458
+ Status: 'Bye',
459
+ Score1: 0,
460
+ Score2: 0,
461
+ Started: null,
462
+ Ended: null,
463
+ TimeLeft: 0,
464
+ CurrentPass: 0,
465
+ MaxPasses: 0,
466
+ RoundLabel: 'Table of 32',
467
+ DEBoutId: 9,
468
+ DENextBoutId: 21,
469
+ RefereeId: null,
470
+ createdAt: '2024-09-04T12:11:32.000Z',
471
+ updatedAt: '2024-09-04T12:11:37.000Z',
472
+ Person1: {
473
+ PersonId: 126,
474
+ DisplayName: 'Caleb Tong',
475
+ ClubId: 72,
476
+ Images: [],
477
+ Club: {
478
+ Name: "Highland County Salle d'Armes",
479
+ Color1: 'blue',
480
+ Color2: 'red'
481
+ },
482
+ EventPersons: [
483
+ {
484
+ DEPosition: 3
485
+ }
486
+ ]
487
+ },
488
+ Person2: {
489
+ PersonId: 0,
490
+ DisplayName: 'BYE',
491
+ ClubId: 1,
492
+ Images: [],
493
+ Club: {
494
+ Name: 'Acme Fencing Club'
495
+ },
496
+ EventPersons: []
497
+ },
498
+ Pool: {
499
+ RingName: 'DE Bracket'
500
+ }
501
+ },
502
+ {
503
+ TimerStatus: 'stopped',
504
+ RefName: 'Unassigned',
505
+ BoutId: 8577,
506
+ PoolId: 250,
507
+ EventId: 28,
508
+ Person1Id: 200,
509
+ Person2Id: 185,
510
+ Status: 'Scheduled',
511
+ Score1: 0,
512
+ Score2: 0,
513
+ Started: null,
514
+ Ended: null,
515
+ TimeLeft: 0,
516
+ CurrentPass: 0,
517
+ MaxPasses: 0,
518
+ RoundLabel: 'Table of 32',
519
+ DEBoutId: 10,
520
+ DENextBoutId: 21,
521
+ RefereeId: null,
522
+ createdAt: '2024-09-04T12:11:32.000Z',
523
+ updatedAt: '2024-09-04T12:11:32.000Z',
524
+ Person1: {
525
+ PersonId: 200,
526
+ DisplayName: 'Eric King',
527
+ ClubId: 10,
528
+ Images: [],
529
+ Club: {
530
+ Name: 'Columbus United Fencing Club',
531
+ Color1: 'navy',
532
+ Color2: 'rose'
533
+ },
534
+ EventPersons: [
535
+ {
536
+ DEPosition: 19
537
+ }
538
+ ]
539
+ },
540
+ Person2: {
541
+ PersonId: 185,
542
+ DisplayName: 'Donald Kullman',
543
+ ClubId: 120,
544
+ Images: [],
545
+ Club: {
546
+ Name: 'Nashville School of Historical Fencing'
547
+ },
548
+ EventPersons: [
549
+ {
550
+ DEPosition: 14
551
+ }
552
+ ]
553
+ },
554
+ Pool: {
555
+ RingName: 'DE Bracket'
556
+ }
557
+ },
558
+ {
559
+ TimerStatus: 'stopped',
560
+ RefName: 'Unassigned',
561
+ BoutId: 8578,
562
+ PoolId: 250,
563
+ EventId: 28,
564
+ Person1Id: 133,
565
+ Person2Id: 136,
566
+ Status: 'Scheduled',
567
+ Score1: 0,
568
+ Score2: 0,
569
+ Started: null,
570
+ Ended: null,
571
+ TimeLeft: 0,
572
+ CurrentPass: 0,
573
+ MaxPasses: 0,
574
+ RoundLabel: 'Table of 32',
575
+ DEBoutId: 11,
576
+ DENextBoutId: 22,
577
+ RefereeId: null,
578
+ createdAt: '2024-09-04T12:11:32.000Z',
579
+ updatedAt: '2024-09-04T12:11:32.000Z',
580
+ Person1: {
581
+ PersonId: 133,
582
+ DisplayName: 'Jaron Bernstein',
583
+ ClubId: 10,
584
+ Images: [],
585
+ Club: {
586
+ Name: 'Columbus United Fencing Club',
587
+ Color1: 'navy',
588
+ Color2: 'rose'
589
+ },
590
+ EventPersons: [
591
+ {
592
+ DEPosition: 11
593
+ }
594
+ ]
595
+ },
596
+ Person2: {
597
+ PersonId: 136,
598
+ DisplayName: 'Joseph Hochadel',
599
+ ClubId: 21,
600
+ Images: [],
601
+ Club: {
602
+ Name: 'Gem City Duelists Society'
603
+ },
604
+ EventPersons: [
605
+ {
606
+ DEPosition: 22
607
+ }
608
+ ]
609
+ },
610
+ Pool: {
611
+ RingName: 'DE Bracket'
612
+ }
613
+ },
614
+ {
615
+ TimerStatus: 'stopped',
616
+ RefName: 'Unassigned',
617
+ BoutId: 8579,
618
+ PoolId: 250,
619
+ EventId: 28,
620
+ Person1Id: 210,
621
+ Person2Id: 193,
622
+ Status: 'Scheduled',
623
+ Score1: 0,
624
+ Score2: 0,
625
+ Started: null,
626
+ Ended: null,
627
+ TimeLeft: 0,
628
+ CurrentPass: 0,
629
+ MaxPasses: 0,
630
+ RoundLabel: 'Table of 32',
631
+ DEBoutId: 12,
632
+ DENextBoutId: 22,
633
+ RefereeId: null,
634
+ createdAt: '2024-09-04T12:11:32.000Z',
635
+ updatedAt: '2024-09-04T12:11:32.000Z',
636
+ Person1: {
637
+ PersonId: 210,
638
+ DisplayName: 'Calvin Stroble',
639
+ ClubId: 17,
640
+ Images: [],
641
+ Club: {
642
+ Name: 'No Club Affiliation ',
643
+ Color1: 'red',
644
+ Color2: 'blue'
645
+ },
646
+ EventPersons: [
647
+ {
648
+ DEPosition: 27
649
+ }
650
+ ]
651
+ },
652
+ Person2: {
653
+ PersonId: 193,
654
+ DisplayName: 'Cristina Tamer',
655
+ ClubId: 69,
656
+ Images: [],
657
+ Club: {
658
+ Name: 'Ann Arbor Sword Club'
659
+ },
660
+ EventPersons: [
661
+ {
662
+ DEPosition: 6
663
+ }
664
+ ]
665
+ },
666
+ Pool: {
667
+ RingName: 'DE Bracket'
668
+ }
669
+ },
670
+ {
671
+ TimerStatus: 'stopped',
672
+ RefName: 'Unassigned',
673
+ BoutId: 8580,
674
+ PoolId: 250,
675
+ EventId: 28,
676
+ Person1Id: 204,
677
+ Person2Id: 209,
678
+ Status: 'Scheduled',
679
+ Score1: 0,
680
+ Score2: 0,
681
+ Started: null,
682
+ Ended: null,
683
+ TimeLeft: 0,
684
+ CurrentPass: 0,
685
+ MaxPasses: 0,
686
+ RoundLabel: 'Table of 32',
687
+ DEBoutId: 13,
688
+ DENextBoutId: 23,
689
+ RefereeId: null,
690
+ createdAt: '2024-09-04T12:11:32.000Z',
691
+ updatedAt: '2024-09-04T12:11:32.000Z',
692
+ Person1: {
693
+ PersonId: 204,
694
+ DisplayName: 'Geoff Ginther',
695
+ ClubId: 37,
696
+ Images: [],
697
+ Club: {
698
+ Name: 'Indianapolis Fencing Club',
699
+ Color1: 'Red',
700
+ Color2: 'Gold'
701
+ },
702
+ EventPersons: [
703
+ {
704
+ DEPosition: 7
705
+ }
706
+ ]
707
+ },
708
+ Person2: {
709
+ PersonId: 209,
710
+ DisplayName: 'Shane Hillen',
711
+ ClubId: 33,
712
+ Images: [],
713
+ Club: {
714
+ Name: 'Grand Rapids HEMA Society'
715
+ },
716
+ EventPersons: [
717
+ {
718
+ DEPosition: 26
719
+ }
720
+ ]
721
+ },
722
+ Pool: {
723
+ RingName: 'DE Bracket'
724
+ }
725
+ },
726
+ {
727
+ TimerStatus: 'stopped',
728
+ RefName: 'Unassigned',
729
+ BoutId: 8581,
730
+ PoolId: 250,
731
+ EventId: 28,
732
+ Person1Id: 150,
733
+ Person2Id: 113,
734
+ Status: 'Scheduled',
735
+ Score1: 0,
736
+ Score2: 0,
737
+ Started: null,
738
+ Ended: null,
739
+ TimeLeft: 0,
740
+ CurrentPass: 0,
741
+ MaxPasses: 0,
742
+ RoundLabel: 'Table of 32',
743
+ DEBoutId: 14,
744
+ DENextBoutId: 23,
745
+ RefereeId: null,
746
+ createdAt: '2024-09-04T12:11:32.000Z',
747
+ updatedAt: '2024-09-04T12:11:32.000Z',
748
+ Person1: {
749
+ PersonId: 150,
750
+ DisplayName: 'Tanner Martin',
751
+ ClubId: 17,
752
+ Images: [],
753
+ Club: {
754
+ Name: 'No Club Affiliation ',
755
+ Color1: 'red',
756
+ Color2: 'blue'
757
+ },
758
+ EventPersons: [
759
+ {
760
+ DEPosition: 23
761
+ }
762
+ ]
763
+ },
764
+ Person2: {
765
+ PersonId: 113,
766
+ DisplayName: 'Thomas Amoroso',
767
+ ClubId: 27,
768
+ Images: [],
769
+ Club: {
770
+ Name: 'Columbus Saber Academy'
771
+ },
772
+ EventPersons: [
773
+ {
774
+ DEPosition: 10
775
+ }
776
+ ]
777
+ },
778
+ Pool: {
779
+ RingName: 'DE Bracket'
780
+ }
781
+ },
782
+ {
783
+ TimerStatus: 'stopped',
784
+ RefName: 'Unassigned',
785
+ BoutId: 8582,
786
+ PoolId: 250,
787
+ EventId: 28,
788
+ Person1Id: 71,
789
+ Person2Id: 197,
790
+ Status: 'Scheduled',
791
+ Score1: 0,
792
+ Score2: 0,
793
+ Started: null,
794
+ Ended: null,
795
+ TimeLeft: 0,
796
+ CurrentPass: 0,
797
+ MaxPasses: 0,
798
+ RoundLabel: 'Table of 32',
799
+ DEBoutId: 15,
800
+ DENextBoutId: 24,
801
+ RefereeId: null,
802
+ createdAt: '2024-09-04T12:11:32.000Z',
803
+ updatedAt: '2024-09-04T12:11:32.000Z',
804
+ Person1: {
805
+ PersonId: 71,
806
+ DisplayName: 'Thomas Kesler',
807
+ ClubId: 12,
808
+ Images: [],
809
+ Club: {
810
+ Name: 'Gem City Duelists Society',
811
+ Color1: 'green',
812
+ Color2: 'black'
813
+ },
814
+ EventPersons: [
815
+ {
816
+ DEPosition: 15
817
+ }
818
+ ]
819
+ },
820
+ Person2: {
821
+ PersonId: 197,
822
+ DisplayName: 'Andrew Feigel',
823
+ ClubId: 30,
824
+ Images: [],
825
+ Club: {
826
+ Name: 'Maryland Kunst Des Fechtens'
827
+ },
828
+ EventPersons: [
829
+ {
830
+ DEPosition: 18
831
+ }
832
+ ]
833
+ },
834
+ Pool: {
835
+ RingName: 'DE Bracket'
836
+ }
837
+ },
838
+ {
839
+ TimerStatus: 'stopped',
840
+ RefName: 'Unassigned',
841
+ BoutId: 8583,
842
+ PoolId: 250,
843
+ EventId: 28,
844
+ Person1Id: 0,
845
+ Person2Id: 125,
846
+ Status: 'Bye',
847
+ Score1: 0,
848
+ Score2: 0,
849
+ Started: null,
850
+ Ended: null,
851
+ TimeLeft: 0,
852
+ CurrentPass: 0,
853
+ MaxPasses: 0,
854
+ RoundLabel: 'Table of 32',
855
+ DEBoutId: 16,
856
+ DENextBoutId: 24,
857
+ RefereeId: null,
858
+ createdAt: '2024-09-04T12:11:32.000Z',
859
+ updatedAt: '2024-09-04T12:11:37.000Z',
860
+ Person1: {
861
+ PersonId: 0,
862
+ DisplayName: 'BYE',
863
+ ClubId: 1,
864
+ Images: [],
865
+ Club: {
866
+ Name: 'Acme Fencing Club',
867
+ Color1: 'navy',
868
+ Color2: 'rose'
869
+ },
870
+ EventPersons: []
871
+ },
872
+ Person2: {
873
+ PersonId: 125,
874
+ DisplayName: 'Ian Broderick',
875
+ ClubId: 17,
876
+ Images: [],
877
+ Club: {
878
+ Name: 'No Club Affiliation '
879
+ },
880
+ EventPersons: [
881
+ {
882
+ DEPosition: 2
883
+ }
884
+ ]
885
+ },
886
+ Pool: {
887
+ RingName: 'DE Bracket'
888
+ }
889
+ },
890
+ {
891
+ TimerStatus: 'stopped',
892
+ RefName: 'Unassigned',
893
+ BoutId: 8584,
894
+ PoolId: 250,
895
+ EventId: 28,
896
+ Person1Id: 43,
897
+ Person2Id: 0,
898
+ Status: 'Scheduled',
899
+ Score1: 0,
900
+ Score2: 0,
901
+ Started: null,
902
+ Ended: null,
903
+ TimeLeft: 0,
904
+ CurrentPass: 0,
905
+ MaxPasses: 0,
906
+ RoundLabel: 'Table of 16',
907
+ DEBoutId: 17,
908
+ DENextBoutId: 25,
909
+ RefereeId: null,
910
+ createdAt: '2024-09-04T12:11:32.000Z',
911
+ updatedAt: '2024-09-04T12:11:35.000Z',
912
+ Person1: {
913
+ PersonId: 43,
914
+ DisplayName: 'Derek Ray',
915
+ ClubId: 10,
916
+ Images: [],
917
+ Club: {
918
+ Name: 'Columbus United Fencing Club',
919
+ Color1: 'navy',
920
+ Color2: 'rose'
1641
921
  },
1642
- {
1643
- "RuleId": 2,
1644
- "RuleName": "PoolMaxPoints",
1645
- "RuleValue": "7",
1646
- "Context": "pool"
922
+ EventPersons: [
923
+ {
924
+ DEPosition: 1
925
+ }
926
+ ]
927
+ },
928
+ Person2: {
929
+ PersonId: 0,
930
+ DisplayName: 'BYE',
931
+ ClubId: 1,
932
+ Images: [],
933
+ Club: {
934
+ Name: 'Acme Fencing Club'
1647
935
  },
1648
- {
1649
- "RuleId": 3,
1650
- "RuleName": "DETime",
1651
- "RuleValue": "120",
1652
- "Context": "de"
936
+ EventPersons: []
937
+ },
938
+ Pool: {
939
+ RingName: 'DE Bracket'
940
+ }
941
+ },
942
+ {
943
+ TimerStatus: 'stopped',
944
+ RefName: 'Unassigned',
945
+ BoutId: 8585,
946
+ PoolId: 250,
947
+ EventId: 28,
948
+ Person1Id: 0,
949
+ Person2Id: 0,
950
+ Status: 'Scheduled',
951
+ Score1: 0,
952
+ Score2: 0,
953
+ Started: null,
954
+ Ended: null,
955
+ TimeLeft: 0,
956
+ CurrentPass: 0,
957
+ MaxPasses: 0,
958
+ RoundLabel: 'Table of 16',
959
+ DEBoutId: 18,
960
+ DENextBoutId: 25,
961
+ RefereeId: null,
962
+ createdAt: '2024-09-04T12:11:32.000Z',
963
+ updatedAt: '2024-09-04T12:11:32.000Z',
964
+ Person1: {
965
+ PersonId: 0,
966
+ DisplayName: 'BYE',
967
+ ClubId: 1,
968
+ Images: [],
969
+ Club: {
970
+ Name: 'Acme Fencing Club',
971
+ Color1: 'navy',
972
+ Color2: 'rose'
1653
973
  },
1654
- {
1655
- "RuleId": 4,
1656
- "RuleName": "DEMaxPoints",
1657
- "RuleValue": "12",
1658
- "Context": "de"
974
+ EventPersons: []
975
+ },
976
+ Person2: {
977
+ PersonId: 0,
978
+ DisplayName: 'BYE',
979
+ ClubId: 1,
980
+ Images: [],
981
+ Club: {
982
+ Name: 'Acme Fencing Club'
1659
983
  },
1660
- {
1661
- "RuleId": 5,
1662
- "RuleName": "DE3rdFenceOff",
1663
- "RuleValue": "false",
1664
- "Context": "de"
984
+ EventPersons: []
985
+ },
986
+ Pool: {
987
+ RingName: 'DE Bracket'
988
+ }
989
+ },
990
+ {
991
+ TimerStatus: 'stopped',
992
+ RefName: 'Unassigned',
993
+ BoutId: 8586,
994
+ PoolId: 250,
995
+ EventId: 28,
996
+ Person1Id: 153,
997
+ Person2Id: 0,
998
+ Status: 'Scheduled',
999
+ Score1: 0,
1000
+ Score2: 0,
1001
+ Started: null,
1002
+ Ended: null,
1003
+ TimeLeft: 0,
1004
+ CurrentPass: 0,
1005
+ MaxPasses: 0,
1006
+ RoundLabel: 'Table of 16',
1007
+ DEBoutId: 19,
1008
+ DENextBoutId: 26,
1009
+ RefereeId: null,
1010
+ createdAt: '2024-09-04T12:11:32.000Z',
1011
+ updatedAt: '2024-09-04T12:11:36.000Z',
1012
+ Person1: {
1013
+ PersonId: 153,
1014
+ DisplayName: 'Kai Cummings',
1015
+ ClubId: 95,
1016
+ Images: [],
1017
+ Club: {
1018
+ Name: 'Indes Ferox Gladio',
1019
+ Color1: 'Red',
1020
+ Color2: 'Gold'
1665
1021
  },
1666
- {
1667
- "RuleId": 9,
1668
- "RuleName": "DEPromotionOrder",
1669
- "RuleValue": "Win Percent,Indicator,Points Scored",
1670
- "Context": "de"
1022
+ EventPersons: [
1023
+ {
1024
+ DEPosition: 5
1025
+ }
1026
+ ]
1027
+ },
1028
+ Person2: {
1029
+ PersonId: 0,
1030
+ DisplayName: 'BYE',
1031
+ ClubId: 1,
1032
+ Images: [],
1033
+ Club: {
1034
+ Name: 'Acme Fencing Club'
1671
1035
  },
1672
- {
1673
- "RuleId": 10,
1674
- "RuleName": "DENumOfPromotion",
1675
- "RuleValue": "100%",
1676
- "Context": "de"
1036
+ EventPersons: []
1037
+ },
1038
+ Pool: {
1039
+ RingName: 'DE Bracket'
1040
+ }
1041
+ },
1042
+ {
1043
+ TimerStatus: 'stopped',
1044
+ RefName: 'Unassigned',
1045
+ BoutId: 8587,
1046
+ PoolId: 250,
1047
+ EventId: 28,
1048
+ Person1Id: 0,
1049
+ Person2Id: 142,
1050
+ Status: 'Scheduled',
1051
+ Score1: 0,
1052
+ Score2: 0,
1053
+ Started: null,
1054
+ Ended: null,
1055
+ TimeLeft: 0,
1056
+ CurrentPass: 0,
1057
+ MaxPasses: 0,
1058
+ RoundLabel: 'Table of 16',
1059
+ DEBoutId: 20,
1060
+ DENextBoutId: 26,
1061
+ RefereeId: null,
1062
+ createdAt: '2024-09-04T12:11:32.000Z',
1063
+ updatedAt: '2024-09-04T12:11:36.000Z',
1064
+ Person1: {
1065
+ PersonId: 0,
1066
+ DisplayName: 'BYE',
1067
+ ClubId: 1,
1068
+ Images: [],
1069
+ Club: {
1070
+ Name: 'Acme Fencing Club',
1071
+ Color1: 'navy',
1072
+ Color2: 'rose'
1677
1073
  },
1678
- {
1679
- "RuleId": 11,
1680
- "RuleName": "PoolSeeding",
1681
- "RuleValue": "HR - Hema Rating",
1682
- "Context": "pool"
1074
+ EventPersons: []
1075
+ },
1076
+ Person2: {
1077
+ PersonId: 142,
1078
+ DisplayName: 'Andrew Bakry',
1079
+ ClubId: 30,
1080
+ Images: [],
1081
+ Club: {
1082
+ Name: 'Maryland Kunst Des Fechtens'
1683
1083
  },
1684
- {
1685
- "RuleId": 14,
1686
- "RuleName": "CutOffNumber",
1687
- "RuleValue": "64",
1688
- "Context": "event"
1689
- }
1690
- ],
1691
- "hostingClubColors": {
1692
- "Color1": "navy",
1693
- "Color2": "rose"
1084
+ EventPersons: [
1085
+ {
1086
+ DEPosition: 4
1087
+ }
1088
+ ]
1089
+ },
1090
+ Pool: {
1091
+ RingName: 'DE Bracket'
1092
+ }
1093
+ },
1094
+ {
1095
+ TimerStatus: 'stopped',
1096
+ RefName: 'Unassigned',
1097
+ BoutId: 8588,
1098
+ PoolId: 250,
1099
+ EventId: 28,
1100
+ Person1Id: 126,
1101
+ Person2Id: 0,
1102
+ Status: 'Scheduled',
1103
+ Score1: 0,
1104
+ Score2: 0,
1105
+ Started: null,
1106
+ Ended: null,
1107
+ TimeLeft: 0,
1108
+ CurrentPass: 0,
1109
+ MaxPasses: 0,
1110
+ RoundLabel: 'Table of 16',
1111
+ DEBoutId: 21,
1112
+ DENextBoutId: 27,
1113
+ RefereeId: null,
1114
+ createdAt: '2024-09-04T12:11:32.000Z',
1115
+ updatedAt: '2024-09-04T12:11:37.000Z',
1116
+ Person1: {
1117
+ PersonId: 126,
1118
+ DisplayName: 'Caleb Tong',
1119
+ ClubId: 72,
1120
+ Images: [],
1121
+ Club: {
1122
+ Name: "Highland County Salle d'Armes",
1123
+ Color1: 'blue',
1124
+ Color2: 'red'
1125
+ },
1126
+ EventPersons: [
1127
+ {
1128
+ DEPosition: 3
1129
+ }
1130
+ ]
1131
+ },
1132
+ Person2: {
1133
+ PersonId: 0,
1134
+ DisplayName: 'BYE',
1135
+ ClubId: 1,
1136
+ Images: [],
1137
+ Club: {
1138
+ Name: 'Acme Fencing Club'
1139
+ },
1140
+ EventPersons: []
1141
+ },
1142
+ Pool: {
1143
+ RingName: 'DE Bracket'
1144
+ }
1145
+ },
1146
+ {
1147
+ TimerStatus: 'stopped',
1148
+ RefName: 'Unassigned',
1149
+ BoutId: 8589,
1150
+ PoolId: 250,
1151
+ EventId: 28,
1152
+ Person1Id: 0,
1153
+ Person2Id: 0,
1154
+ Status: 'Scheduled',
1155
+ Score1: 0,
1156
+ Score2: 0,
1157
+ Started: null,
1158
+ Ended: null,
1159
+ TimeLeft: 0,
1160
+ CurrentPass: 0,
1161
+ MaxPasses: 0,
1162
+ RoundLabel: 'Table of 16',
1163
+ DEBoutId: 22,
1164
+ DENextBoutId: 27,
1165
+ RefereeId: null,
1166
+ createdAt: '2024-09-04T12:11:32.000Z',
1167
+ updatedAt: '2024-09-04T12:11:32.000Z',
1168
+ Person1: {
1169
+ PersonId: 0,
1170
+ DisplayName: 'BYE',
1171
+ ClubId: 1,
1172
+ Images: [],
1173
+ Club: {
1174
+ Name: 'Acme Fencing Club',
1175
+ Color1: 'navy',
1176
+ Color2: 'rose'
1177
+ },
1178
+ EventPersons: []
1179
+ },
1180
+ Person2: {
1181
+ PersonId: 0,
1182
+ DisplayName: 'BYE',
1183
+ ClubId: 1,
1184
+ Images: [],
1185
+ Club: {
1186
+ Name: 'Acme Fencing Club'
1187
+ },
1188
+ EventPersons: []
1189
+ },
1190
+ Pool: {
1191
+ RingName: 'DE Bracket'
1192
+ }
1193
+ },
1194
+ {
1195
+ TimerStatus: 'stopped',
1196
+ RefName: 'Unassigned',
1197
+ BoutId: 8590,
1198
+ PoolId: 250,
1199
+ EventId: 28,
1200
+ Person1Id: 0,
1201
+ Person2Id: 0,
1202
+ Status: 'Scheduled',
1203
+ Score1: 0,
1204
+ Score2: 0,
1205
+ Started: null,
1206
+ Ended: null,
1207
+ TimeLeft: 0,
1208
+ CurrentPass: 0,
1209
+ MaxPasses: 0,
1210
+ RoundLabel: 'Table of 16',
1211
+ DEBoutId: 23,
1212
+ DENextBoutId: 28,
1213
+ RefereeId: null,
1214
+ createdAt: '2024-09-04T12:11:32.000Z',
1215
+ updatedAt: '2024-09-04T12:11:32.000Z',
1216
+ Person1: {
1217
+ PersonId: 0,
1218
+ DisplayName: 'BYE',
1219
+ ClubId: 1,
1220
+ Images: [],
1221
+ Club: {
1222
+ Name: 'Acme Fencing Club',
1223
+ Color1: 'navy',
1224
+ Color2: 'rose'
1225
+ },
1226
+ EventPersons: []
1227
+ },
1228
+ Person2: {
1229
+ PersonId: 0,
1230
+ DisplayName: 'BYE',
1231
+ ClubId: 1,
1232
+ Images: [],
1233
+ Club: {
1234
+ Name: 'Acme Fencing Club'
1235
+ },
1236
+ EventPersons: []
1237
+ },
1238
+ Pool: {
1239
+ RingName: 'DE Bracket'
1240
+ }
1241
+ },
1242
+ {
1243
+ TimerStatus: 'stopped',
1244
+ RefName: 'Unassigned',
1245
+ BoutId: 8591,
1246
+ PoolId: 250,
1247
+ EventId: 28,
1248
+ Person1Id: 0,
1249
+ Person2Id: 125,
1250
+ Status: 'Scheduled',
1251
+ Score1: 0,
1252
+ Score2: 0,
1253
+ Started: null,
1254
+ Ended: null,
1255
+ TimeLeft: 0,
1256
+ CurrentPass: 0,
1257
+ MaxPasses: 0,
1258
+ RoundLabel: 'Table of 16',
1259
+ DEBoutId: 24,
1260
+ DENextBoutId: 28,
1261
+ RefereeId: null,
1262
+ createdAt: '2024-09-04T12:11:32.000Z',
1263
+ updatedAt: '2024-09-04T12:11:38.000Z',
1264
+ Person1: {
1265
+ PersonId: 0,
1266
+ DisplayName: 'BYE',
1267
+ ClubId: 1,
1268
+ Images: [],
1269
+ Club: {
1270
+ Name: 'Acme Fencing Club',
1271
+ Color1: 'navy',
1272
+ Color2: 'rose'
1273
+ },
1274
+ EventPersons: []
1275
+ },
1276
+ Person2: {
1277
+ PersonId: 125,
1278
+ DisplayName: 'Ian Broderick',
1279
+ ClubId: 17,
1280
+ Images: [],
1281
+ Club: {
1282
+ Name: 'No Club Affiliation '
1283
+ },
1284
+ EventPersons: [
1285
+ {
1286
+ DEPosition: 2
1287
+ }
1288
+ ]
1289
+ },
1290
+ Pool: {
1291
+ RingName: 'DE Bracket'
1292
+ }
1293
+ },
1294
+ {
1295
+ TimerStatus: 'stopped',
1296
+ RefName: 'Unassigned',
1297
+ BoutId: 8592,
1298
+ PoolId: 250,
1299
+ EventId: 28,
1300
+ Person1Id: 0,
1301
+ Person2Id: 0,
1302
+ Status: 'Scheduled',
1303
+ Score1: 0,
1304
+ Score2: 0,
1305
+ Started: null,
1306
+ Ended: null,
1307
+ TimeLeft: 0,
1308
+ CurrentPass: 0,
1309
+ MaxPasses: 0,
1310
+ RoundLabel: 'Table of 8',
1311
+ DEBoutId: 25,
1312
+ DENextBoutId: 29,
1313
+ RefereeId: null,
1314
+ createdAt: '2024-09-04T12:11:32.000Z',
1315
+ updatedAt: '2024-09-04T12:11:32.000Z',
1316
+ Person1: {
1317
+ PersonId: 0,
1318
+ DisplayName: 'BYE',
1319
+ ClubId: 1,
1320
+ Images: [],
1321
+ Club: {
1322
+ Name: 'Acme Fencing Club',
1323
+ Color1: 'navy',
1324
+ Color2: 'rose'
1325
+ },
1326
+ EventPersons: []
1327
+ },
1328
+ Person2: {
1329
+ PersonId: 0,
1330
+ DisplayName: 'BYE',
1331
+ ClubId: 1,
1332
+ Images: [],
1333
+ Club: {
1334
+ Name: 'Acme Fencing Club'
1335
+ },
1336
+ EventPersons: []
1337
+ },
1338
+ Pool: {
1339
+ RingName: 'DE Bracket'
1340
+ }
1341
+ },
1342
+ {
1343
+ TimerStatus: 'stopped',
1344
+ RefName: 'Unassigned',
1345
+ BoutId: 8593,
1346
+ PoolId: 250,
1347
+ EventId: 28,
1348
+ Person1Id: 0,
1349
+ Person2Id: 0,
1350
+ Status: 'Scheduled',
1351
+ Score1: 0,
1352
+ Score2: 0,
1353
+ Started: null,
1354
+ Ended: null,
1355
+ TimeLeft: 0,
1356
+ CurrentPass: 0,
1357
+ MaxPasses: 0,
1358
+ RoundLabel: 'Table of 8',
1359
+ DEBoutId: 26,
1360
+ DENextBoutId: 29,
1361
+ RefereeId: null,
1362
+ createdAt: '2024-09-04T12:11:32.000Z',
1363
+ updatedAt: '2024-09-04T12:11:32.000Z',
1364
+ Person1: {
1365
+ PersonId: 0,
1366
+ DisplayName: 'BYE',
1367
+ ClubId: 1,
1368
+ Images: [],
1369
+ Club: {
1370
+ Name: 'Acme Fencing Club',
1371
+ Color1: 'navy',
1372
+ Color2: 'rose'
1373
+ },
1374
+ EventPersons: []
1375
+ },
1376
+ Person2: {
1377
+ PersonId: 0,
1378
+ DisplayName: 'BYE',
1379
+ ClubId: 1,
1380
+ Images: [],
1381
+ Club: {
1382
+ Name: 'Acme Fencing Club'
1383
+ },
1384
+ EventPersons: []
1385
+ },
1386
+ Pool: {
1387
+ RingName: 'DE Bracket'
1388
+ }
1389
+ },
1390
+ {
1391
+ TimerStatus: 'stopped',
1392
+ RefName: 'Unassigned',
1393
+ BoutId: 8594,
1394
+ PoolId: 250,
1395
+ EventId: 28,
1396
+ Person1Id: 0,
1397
+ Person2Id: 0,
1398
+ Status: 'Scheduled',
1399
+ Score1: 0,
1400
+ Score2: 0,
1401
+ Started: null,
1402
+ Ended: null,
1403
+ TimeLeft: 0,
1404
+ CurrentPass: 0,
1405
+ MaxPasses: 0,
1406
+ RoundLabel: 'Table of 8',
1407
+ DEBoutId: 27,
1408
+ DENextBoutId: 30,
1409
+ RefereeId: null,
1410
+ createdAt: '2024-09-04T12:11:32.000Z',
1411
+ updatedAt: '2024-09-04T12:11:32.000Z',
1412
+ Person1: {
1413
+ PersonId: 0,
1414
+ DisplayName: 'BYE',
1415
+ ClubId: 1,
1416
+ Images: [],
1417
+ Club: {
1418
+ Name: 'Acme Fencing Club',
1419
+ Color1: 'navy',
1420
+ Color2: 'rose'
1421
+ },
1422
+ EventPersons: []
1423
+ },
1424
+ Person2: {
1425
+ PersonId: 0,
1426
+ DisplayName: 'BYE',
1427
+ ClubId: 1,
1428
+ Images: [],
1429
+ Club: {
1430
+ Name: 'Acme Fencing Club'
1431
+ },
1432
+ EventPersons: []
1433
+ },
1434
+ Pool: {
1435
+ RingName: 'DE Bracket'
1436
+ }
1437
+ },
1438
+ {
1439
+ TimerStatus: 'stopped',
1440
+ RefName: 'Unassigned',
1441
+ BoutId: 8595,
1442
+ PoolId: 250,
1443
+ EventId: 28,
1444
+ Person1Id: 0,
1445
+ Person2Id: 0,
1446
+ Status: 'Scheduled',
1447
+ Score1: 0,
1448
+ Score2: 0,
1449
+ Started: null,
1450
+ Ended: null,
1451
+ TimeLeft: 0,
1452
+ CurrentPass: 0,
1453
+ MaxPasses: 0,
1454
+ RoundLabel: 'Table of 8',
1455
+ DEBoutId: 28,
1456
+ DENextBoutId: 30,
1457
+ RefereeId: null,
1458
+ createdAt: '2024-09-04T12:11:32.000Z',
1459
+ updatedAt: '2024-09-04T12:11:32.000Z',
1460
+ Person1: {
1461
+ PersonId: 0,
1462
+ DisplayName: 'BYE',
1463
+ ClubId: 1,
1464
+ Images: [],
1465
+ Club: {
1466
+ Name: 'Acme Fencing Club',
1467
+ Color1: 'navy',
1468
+ Color2: 'rose'
1469
+ },
1470
+ EventPersons: []
1471
+ },
1472
+ Person2: {
1473
+ PersonId: 0,
1474
+ DisplayName: 'BYE',
1475
+ ClubId: 1,
1476
+ Images: [],
1477
+ Club: {
1478
+ Name: 'Acme Fencing Club'
1479
+ },
1480
+ EventPersons: []
1481
+ },
1482
+ Pool: {
1483
+ RingName: 'DE Bracket'
1484
+ }
1485
+ },
1486
+ {
1487
+ TimerStatus: 'stopped',
1488
+ RefName: 'Unassigned',
1489
+ BoutId: 8596,
1490
+ PoolId: 250,
1491
+ EventId: 28,
1492
+ Person1Id: 0,
1493
+ Person2Id: 0,
1494
+ Status: 'Scheduled',
1495
+ Score1: 0,
1496
+ Score2: 0,
1497
+ Started: null,
1498
+ Ended: null,
1499
+ TimeLeft: 0,
1500
+ CurrentPass: 0,
1501
+ MaxPasses: 0,
1502
+ RoundLabel: 'Semifinal',
1503
+ DEBoutId: 29,
1504
+ DENextBoutId: 31,
1505
+ RefereeId: null,
1506
+ createdAt: '2024-09-04T12:11:32.000Z',
1507
+ updatedAt: '2024-09-04T12:11:32.000Z',
1508
+ Person1: {
1509
+ PersonId: 0,
1510
+ DisplayName: 'BYE',
1511
+ ClubId: 1,
1512
+ Images: [],
1513
+ Club: {
1514
+ Name: 'Acme Fencing Club',
1515
+ Color1: 'navy',
1516
+ Color2: 'rose'
1517
+ },
1518
+ EventPersons: []
1519
+ },
1520
+ Person2: {
1521
+ PersonId: 0,
1522
+ DisplayName: 'BYE',
1523
+ ClubId: 1,
1524
+ Images: [],
1525
+ Club: {
1526
+ Name: 'Acme Fencing Club'
1527
+ },
1528
+ EventPersons: []
1529
+ },
1530
+ Pool: {
1531
+ RingName: 'DE Bracket'
1532
+ }
1533
+ },
1534
+ {
1535
+ TimerStatus: 'stopped',
1536
+ RefName: 'Unassigned',
1537
+ BoutId: 8597,
1538
+ PoolId: 250,
1539
+ EventId: 28,
1540
+ Person1Id: 0,
1541
+ Person2Id: 0,
1542
+ Status: 'Scheduled',
1543
+ Score1: 0,
1544
+ Score2: 0,
1545
+ Started: null,
1546
+ Ended: null,
1547
+ TimeLeft: 0,
1548
+ CurrentPass: 0,
1549
+ MaxPasses: 0,
1550
+ RoundLabel: 'Semifinal',
1551
+ DEBoutId: 30,
1552
+ DENextBoutId: 31,
1553
+ RefereeId: null,
1554
+ createdAt: '2024-09-04T12:11:32.000Z',
1555
+ updatedAt: '2024-09-04T12:11:32.000Z',
1556
+ Person1: {
1557
+ PersonId: 0,
1558
+ DisplayName: 'BYE',
1559
+ ClubId: 1,
1560
+ Images: [],
1561
+ Club: {
1562
+ Name: 'Acme Fencing Club',
1563
+ Color1: 'navy',
1564
+ Color2: 'rose'
1565
+ },
1566
+ EventPersons: []
1567
+ },
1568
+ Person2: {
1569
+ PersonId: 0,
1570
+ DisplayName: 'BYE',
1571
+ ClubId: 1,
1572
+ Images: [],
1573
+ Club: {
1574
+ Name: 'Acme Fencing Club'
1575
+ },
1576
+ EventPersons: []
1577
+ },
1578
+ Pool: {
1579
+ RingName: 'DE Bracket'
1580
+ }
1581
+ },
1582
+ {
1583
+ TimerStatus: 'stopped',
1584
+ RefName: 'Unassigned',
1585
+ BoutId: 8598,
1586
+ PoolId: 250,
1587
+ EventId: 28,
1588
+ Person1Id: 0,
1589
+ Person2Id: 0,
1590
+ Status: 'Scheduled',
1591
+ Score1: 0,
1592
+ Score2: 0,
1593
+ Started: null,
1594
+ Ended: null,
1595
+ TimeLeft: 0,
1596
+ CurrentPass: 0,
1597
+ MaxPasses: 0,
1598
+ RoundLabel: 'Final',
1599
+ DEBoutId: 31,
1600
+ DENextBoutId: null,
1601
+ RefereeId: null,
1602
+ createdAt: '2024-09-04T12:11:32.000Z',
1603
+ updatedAt: '2024-09-04T12:11:32.000Z',
1604
+ Person1: {
1605
+ PersonId: 0,
1606
+ DisplayName: 'BYE',
1607
+ ClubId: 1,
1608
+ Images: [],
1609
+ Club: {
1610
+ Name: 'Acme Fencing Club',
1611
+ Color1: 'navy',
1612
+ Color2: 'rose'
1613
+ },
1614
+ EventPersons: []
1615
+ },
1616
+ Person2: {
1617
+ PersonId: 0,
1618
+ DisplayName: 'BYE',
1619
+ ClubId: 1,
1620
+ Images: [],
1621
+ Club: {
1622
+ Name: 'Acme Fencing Club'
1623
+ },
1624
+ EventPersons: []
1625
+ },
1626
+ Pool: {
1627
+ RingName: 'DE Bracket'
1628
+ }
1694
1629
  }
1630
+ ]
1631
+ }
1632
+ ],
1633
+ eventRules: [
1634
+ {
1635
+ RuleId: 1,
1636
+ RuleName: 'PoolTime',
1637
+ RuleValue: '120',
1638
+ Context: 'pool'
1639
+ },
1640
+ {
1641
+ RuleId: 2,
1642
+ RuleName: 'PoolMaxPoints',
1643
+ RuleValue: '7',
1644
+ Context: 'pool'
1645
+ },
1646
+ {
1647
+ RuleId: 3,
1648
+ RuleName: 'DETime',
1649
+ RuleValue: '120',
1650
+ Context: 'de'
1651
+ },
1652
+ {
1653
+ RuleId: 4,
1654
+ RuleName: 'DEMaxPoints',
1655
+ RuleValue: '12',
1656
+ Context: 'de'
1657
+ },
1658
+ {
1659
+ RuleId: 5,
1660
+ RuleName: 'DE3rdFenceOff',
1661
+ RuleValue: 'false',
1662
+ Context: 'de'
1663
+ },
1664
+ {
1665
+ RuleId: 9,
1666
+ RuleName: 'DEPromotionOrder',
1667
+ RuleValue: 'Win Percent,Indicator,Points Scored',
1668
+ Context: 'de'
1669
+ },
1670
+ {
1671
+ RuleId: 10,
1672
+ RuleName: 'DENumOfPromotion',
1673
+ RuleValue: '100%',
1674
+ Context: 'de'
1675
+ },
1676
+ {
1677
+ RuleId: 11,
1678
+ RuleName: 'PoolSeeding',
1679
+ RuleValue: 'HR - Hema Rating',
1680
+ Context: 'pool'
1681
+ },
1682
+ {
1683
+ RuleId: 14,
1684
+ RuleName: 'CutOffNumber',
1685
+ RuleValue: '64',
1686
+ Context: 'event'
1695
1687
  }
1688
+ ],
1689
+ hostingClubColors: {
1690
+ Color1: 'navy',
1691
+ Color2: 'rose'
1692
+ }
1693
+ };
1696
1694
 
1697
- export default getDEWithBouts22Fencers;
1695
+ export default getDEWithBouts22Fencers;