rachinations 0.0.1

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 (91) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +6 -0
  4. data/.travis.yml +8 -0
  5. data/.yardopts +1 -0
  6. data/Gemfile +19 -0
  7. data/Gemfile.lock +93 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +18 -0
  10. data/Rakefile +16 -0
  11. data/lib/rachinations.rb +49 -0
  12. data/lib/rachinations/domain/diagrams/diagram.rb +167 -0
  13. data/lib/rachinations/domain/diagrams/non_deterministic_diagram.rb +16 -0
  14. data/lib/rachinations/domain/diagrams/verbose_diagram.rb +9 -0
  15. data/lib/rachinations/domain/edge_collection.rb +12 -0
  16. data/lib/rachinations/domain/edges/edge.rb +159 -0
  17. data/lib/rachinations/domain/edges/random_edge.rb +4 -0
  18. data/lib/rachinations/domain/exceptions/bad_options.rb +3 -0
  19. data/lib/rachinations/domain/exceptions/no_elements_found.rb +2 -0
  20. data/lib/rachinations/domain/exceptions/no_elements_matching_condition_error.rb +2 -0
  21. data/lib/rachinations/domain/exceptions/no_elements_of_given_type.rb +3 -0
  22. data/lib/rachinations/domain/exceptions/unsupported_type_error.rb +2 -0
  23. data/lib/rachinations/domain/modules/common/hash_init.rb +88 -0
  24. data/lib/rachinations/domain/modules/common/invariant.rb +17 -0
  25. data/lib/rachinations/domain/modules/diagrams/verbose.rb +30 -0
  26. data/lib/rachinations/domain/node_collection.rb +30 -0
  27. data/lib/rachinations/domain/nodes/converter.rb +276 -0
  28. data/lib/rachinations/domain/nodes/gate.rb +6 -0
  29. data/lib/rachinations/domain/nodes/node.rb +166 -0
  30. data/lib/rachinations/domain/nodes/pool.rb +267 -0
  31. data/lib/rachinations/domain/nodes/resourceful_node.rb +96 -0
  32. data/lib/rachinations/domain/nodes/resourceless_node.rb +11 -0
  33. data/lib/rachinations/domain/nodes/sink.rb +17 -0
  34. data/lib/rachinations/domain/nodes/source.rb +161 -0
  35. data/lib/rachinations/domain/nodes/trader.rb +6 -0
  36. data/lib/rachinations/domain/resource_bag.rb +131 -0
  37. data/lib/rachinations/domain/resources/token.rb +51 -0
  38. data/lib/rachinations/domain/strategies/strategy.rb +5 -0
  39. data/lib/rachinations/domain/strategies/valid_types.rb +69 -0
  40. data/lib/rachinations/dsl/dsl.rb +63 -0
  41. data/lib/rachinations/extras/fifo.rb +27 -0
  42. data/lib/rachinations/version.rb +3 -0
  43. data/machinations_diagrams/apenas_bonito.xml +22 -0
  44. data/machinations_diagrams/behavior_converter.xml +53 -0
  45. data/machinations_diagrams/behavior_converter_fim.xml +10 -0
  46. data/machinations_diagrams/canon/README.md +8 -0
  47. data/machinations_diagrams/canon/converters_differences.xml +27 -0
  48. data/machinations_diagrams/canon/converters_differences2.xml +34 -0
  49. data/machinations_diagrams/canon/converters_similarities.xml +63 -0
  50. data/machinations_diagrams/canon/converters_similarities2.xml +21 -0
  51. data/machinations_diagrams/canon/nodes_and_edges_differences.xml +15 -0
  52. data/machinations_diagrams/canon/nodes_and_edges_similarities.xml +20 -0
  53. data/machinations_diagrams/deterministic_example.xml +46 -0
  54. data/machinations_diagrams/economies_of_scale.xml +32 -0
  55. data/machinations_diagrams/feature_ou_bug.xml +5 -0
  56. data/machinations_diagrams/loop_in_trigger.xml +21 -0
  57. data/machinations_diagrams/naficadevendo.xml +12 -0
  58. data/machinations_diagrams/noreporting_equivalent.xml +22 -0
  59. data/machinations_diagrams/pull_all_example.xml +7 -0
  60. data/machinations_diagrams/sketch_of_memory.xml +41 -0
  61. data/machinations_diagrams/software_engineering_process 2.xml +130 -0
  62. data/machinations_diagrams/software_engineering_process v3.xml +168 -0
  63. data/machinations_diagrams/software_engineering_process v4.xml +192 -0
  64. data/machinations_diagrams/software_engineering_process.xml +65 -0
  65. data/machinations_diagrams/software_engineering_process_with_rework_after_test.xml +195 -0
  66. data/machinations_diagrams/startup_marketing.xml +35 -0
  67. data/machinations_diagrams/triggers_allow_multiple_stages_at_same_round.xml +19 -0
  68. data/machinations_diagrams/um_de_cada_vez_vs_todos_de_uma_vez.xml +20 -0
  69. data/rachinations.gemspec +35 -0
  70. data/testing/features/step_definitions/step_definitions.rb +11 -0
  71. data/testing/simulations/modelo1.rb +20 -0
  72. data/testing/simulations/modelo2.rb +49 -0
  73. data/testing/simulations/noreporting.rb +51 -0
  74. data/testing/simulations/sequencial.rb +19 -0
  75. data/testing/simulations/sobonito.rb +28 -0
  76. data/testing/simulations/sobonitowhile.rb +28 -0
  77. data/testing/simulations/whatIwish1.rb +20 -0
  78. data/testing/spec/canon/converter_spec.rb +33 -0
  79. data/testing/spec/canon/pool_spec.rb +68 -0
  80. data/testing/spec/conditions_spec.rb +10 -0
  81. data/testing/spec/converter_spec.rb +223 -0
  82. data/testing/spec/diagram_spec.rb +671 -0
  83. data/testing/spec/edge_spec.rb +256 -0
  84. data/testing/spec/hash_init_spec.rb +59 -0
  85. data/testing/spec/node_spec.rb +31 -0
  86. data/testing/spec/non_deterministic_diagram_spec.rb +112 -0
  87. data/testing/spec/pool_spec.rb +233 -0
  88. data/testing/spec/source_spec.rb +132 -0
  89. data/testing/spec/spec_helper.rb +34 -0
  90. data/testing/spec/xexeo_spec.rb +193 -0
  91. metadata +283 -0
@@ -0,0 +1,5 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="fixed speed" speed="100" actions="1" dice="D6" skill="" strategy="" multiplayer="" width="600" height="560" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <connection type="Resource Connection" start="2" end="1" label="1" position="0.5" color="Black" thickness="2"/>
3
+ <node symbol="Pool" x="353" y="147" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
4
+ <node symbol="Pool" x="121" y="371" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Red" startingResources="2" capacity="-1"/>
5
+ </graph>
@@ -0,0 +1,21 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="fixed speed" speed="100" actions="1" dice="D6" skill="" strategy="" multiplayer="" width="600" height="560" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <connection type="Resource Connection" start="11" end="13" label="" position="0.5" color="Black" thickness="2"/>
3
+ <connection type="State Connection" start="9" end="7" label="*" position="0.5" color="Black" thickness="2"/>
4
+ <connection type="Resource Connection" start="7" end="6" label="" position="0.5" color="Black" thickness="2"/>
5
+ <connection type="State Connection" start="7" end="11" label="*" position="0.5" color="Black" thickness="2"/>
6
+ <connection type="Resource Connection" start="-1" end="-1" label="" position="0.5" color="Black" thickness="2">
7
+ <point x="0" y="0"/>
8
+ <point x="0" y="0"/>
9
+ </connection>
10
+ <connection type="Resource Connection" start="9" end="12" label="" position="0.5" color="Black" thickness="2"/>
11
+ <node symbol="Pool" x="464" y="312" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
12
+ <node symbol="Source" x="350" y="309" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="push any" actions="1" resourceColor="Black"/>
13
+ <connection type="State Connection" start="11" end="9" label="*" position="0.5" color="Black" thickness="2"/>
14
+ <node symbol="Source" x="174" y="300" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black"/>
15
+ <connection type="State Connection" start="7" end="9" label="*" position="0.5" color="Black" thickness="2">
16
+ <point x="266" y="368"/>
17
+ </connection>
18
+ <node symbol="Source" x="280" y="160" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
19
+ <node symbol="Pool" x="59" y="296" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
20
+ <node symbol="Pool" x="414" y="163" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
21
+ </graph>
@@ -0,0 +1,12 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="instantaneous" speed="100" actions="1" dice="D6" skill="" strategy="" multiplayer="" width="600" height="560" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <connection type="Resource Connection" start="3" end="2" label="5" position="0.5" color="Black" thickness="2"/>
3
+ <node symbol="Pool" x="89" y="198" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="10" capacity="-1"/>
4
+ <node symbol="Pool" x="411" y="200" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
5
+ <node symbol="Pool" x="261" y="196" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="2" capacity="-1"/>
6
+ <connection type="Resource Connection" start="1" end="3" label="10" position="0.5" color="Black" thickness="2"/>
7
+ <connection type="Resource Connection" start="6" end="7" label="" position="0.5" color="Black" thickness="2"/>
8
+ <node symbol="Source" x="136" y="298" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="pull any" actions="1" resourceColor="Black"/>
9
+ <node symbol="Pool" x="256" y="296" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
10
+ <node symbol="EndCondition" x="344" y="295" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1"/>
11
+ <connection type="State Connection" start="7" end="8" label="==2" position="0.5" color="Black" thickness="2"/>
12
+ </graph>
@@ -0,0 +1,22 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="fixed speed" speed="100" actions="1" dice="D6" skill="" strategy="" multiplayer="" width="600" height="560" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <connection type="Resource Connection" start="2" end="14" label="" position="0.5" color="Blue" thickness="2"/>
3
+ <connection type="Resource Connection" start="2" end="4" label="" position="0.5" color="Blue" thickness="2"/>
4
+ <node symbol="Pool" x="80" y="240" color="Blue" caption="g1" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="5" capacity="-1"/>
5
+ <connection type="Resource Connection" start="14" end="2" label="" position="0.5" color="Blue" thickness="2">
6
+ <point x="115" y="176"/>
7
+ </connection>
8
+ <node symbol="Pool" x="229" y="284" color="Blue" caption="g3" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
9
+ <connection type="Resource Connection" start="7" end="8" label="" position="0.5" color="Red" thickness="2"/>
10
+ <connection type="Resource Connection" start="7" end="9" label="" position="0.5" color="Red" thickness="2"/>
11
+ <node symbol="Pool" x="360" y="213" color="Red" caption="g1" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="5" capacity="-1"/>
12
+ <node symbol="Pool" x="490" y="160" color="Red" caption="g2" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
13
+ <node symbol="Pool" x="497" y="292" color="Red" caption="g3" thickness="2" captionPos="0.25" activationMode="passive" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
14
+ <connection type="Resource Connection" start="8" end="7" label="" position="0.5" color="Red" thickness="2">
15
+ <point x="400" y="120"/>
16
+ </connection>
17
+ <node symbol="TextLabel" x="160" y="360" color="Blue" caption="Aqui fiz g3 antes de g2, g3 roda antes"/>
18
+ <node symbol="TextLabel" x="426" y="360" color="Red" caption="Aqui fiz g2 antes de g3, g2 roda antes"/>
19
+ <node symbol="GroupBox" x="300" y="80" color="Red" caption="" width="269.33330078125005" height="308" captionPos="7"/>
20
+ <node symbol="Pool" x="217" y="150" color="Blue" caption="g2" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
21
+ <node symbol="GroupBox" x="40" y="80" color="Blue" caption="" width="249.3333251953125" height="306" captionPos="7"/>
22
+ </graph>
@@ -0,0 +1,7 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="fixed speed" speed="100" actions="1" dice="D6" skill="" strategy="" multiplayer="" width="600" height="560" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <connection type="Resource Connection" start="2" end="4" label="" position="0.5" color="Black" thickness="2"/>
3
+ <connection type="Resource Connection" start="3" end="4" label="" position="0.5" color="Black" thickness="2"/>
4
+ <node symbol="Pool" x="222" y="126" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="push any" actions="1" resourceColor="Black" startingResources="5" capacity="-1"/>
5
+ <node symbol="Pool" x="226" y="221" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="push any" actions="1" resourceColor="Black" startingResources="4" capacity="-1"/>
6
+ <node symbol="Pool" x="319" y="183" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="pull all" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
7
+ </graph>
@@ -0,0 +1,41 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="fixed speed" speed="100" actions="1" dice="D6" skill="" strategy="" multiplayer="" width="600" height="560" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <connection type="Resource Connection" start="36" end="19" label="" position="0.5" color="Black" thickness="2"/>
3
+ <connection type="Resource Connection" start="26" end="36" label="" position="0.5" color="Black" thickness="2"/>
4
+ <connection type="Resource Connection" start="16" end="37" label="" position="0.5" color="Black" thickness="2"/>
5
+ <connection type="Resource Connection" start="37" end="38" label="" position="0.5" color="Black" thickness="2"/>
6
+ <connection type="Resource Connection" start="17" end="36" label="" position="0.5" color="Black" thickness="2"/>
7
+ <connection type="Resource Connection" start="18" end="37" label="" position="0.5" color="Black" thickness="2"/>
8
+ <connection type="Resource Connection" start="20" end="13" label="" position="0.5" color="Black" thickness="2"/>
9
+ <connection type="Resource Connection" start="15" end="13" label="" position="0.5" color="Black" thickness="2"/>
10
+ <connection type="Resource Connection" start="20" end="15" label="" position="0.5" color="Black" thickness="2"/>
11
+ <connection type="Resource Connection" start="20" end="14" label="" position="0.5" color="Black" thickness="2"/>
12
+ <connection type="Resource Connection" start="15" end="14" label="" position="0.5" color="Black" thickness="2"/>
13
+ <connection type="Resource Connection" start="14" end="34" label="" position="0.5" color="Black" thickness="2"/>
14
+ <connection type="Resource Connection" start="13" end="35" label="" position="0.5" color="Black" thickness="2"/>
15
+ <node symbol="Converter" x="360" y="200" color="Black" caption="you match" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
16
+ <node symbol="Converter" x="282" y="280" color="Black" caption="opp matches" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
17
+ <node symbol="Pool" x="360" y="280" color="Black" caption="faceup" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
18
+ <node symbol="Gate" x="440" y="360" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="deterministic"/>
19
+ <node symbol="Gate" x="200" y="120" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="deterministic"/>
20
+ <node symbol="Gate" x="200" y="400" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="deterministic"/>
21
+ <node symbol="Gate" x="440" y="160" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" gateType="dice"/>
22
+ <node symbol="Pool" x="280" y="200" color="Black" caption="facedown" thickness="2" captionPos="0.25" activationMode="passive" pullMode="push any" actions="1" resourceColor="Black" startingResources="10" capacity="-1"/>
23
+ <connection type="State Connection" start="26" end="13" label="*" position="0.5" color="Black" thickness="0"/>
24
+ <connection type="State Connection" start="17" end="15" label="*" position="0.5" color="Black" thickness="0"/>
25
+ <connection type="State Connection" start="16" end="15" label="*" position="0.5" color="Black" thickness="0"/>
26
+ <connection type="State Connection" start="18" end="14" label="*" position="0.5" color="Black" thickness="0"/>
27
+ <connection type="Resource Connection" start="19" end="16" label="10" position="0.5" color="Black" thickness="2"/>
28
+ <node symbol="Gate" x="440" y="79" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="deterministic"/>
29
+ <connection type="Resource Connection" start="19" end="26" label="0" position="0.5" color="Black" thickness="2"/>
30
+ <connection type="Resource Connection" start="38" end="18" label="0" position="0.5" color="Black" thickness="2"/>
31
+ <connection type="Resource Connection" start="38" end="17" label="10" position="0.5" color="Black" thickness="2"/>
32
+ <connection type="State Connection" start="15" end="27" label="+1" position="0.5" color="Black" thickness="0"/>
33
+ <connection type="State Connection" start="20" end="25" label="+1" position="0.5" color="Black" thickness="0"/>
34
+ <connection type="State Connection" start="15" end="28" label="+1" position="0.5" color="Black" thickness="0"/>
35
+ <connection type="State Connection" start="20" end="29" label="+1" position="0.5" color="Black" thickness="0"/>
36
+ <node symbol="Pool" x="320" y="355" color="Black" caption="opp score" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
37
+ <node symbol="Pool" x="320" y="120" color="Black" caption="your score" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
38
+ <node symbol="Pool" x="320" y="40" color="Black" caption="your turn" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="1" capacity="-1"/>
39
+ <node symbol="Pool" x="320" y="440" color="Black" caption="opp turn" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
40
+ <node symbol="Gate" x="200" y="320" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="pull any" actions="1" gateType="dice"/>
41
+ </graph>
@@ -0,0 +1,130 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="fixed speed" speed="100" actions="1" dice="D6" skill="" strategy="" multiplayer="" width="800" height="1500" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <node symbol="Converter" x="400" y="192" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
3
+ <connection type="Resource Connection" start="48" end="49" label="" position="0.5" color="Black" thickness="2"/>
4
+ <connection type="Resource Connection" start="47" end="0" label="" position="0.5" color="Black" thickness="2"/>
5
+ <node symbol="Gate" x="228" y="141" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
6
+ <connection type="Resource Connection" start="49" end="5" label="" position="0.5" color="Black" thickness="2"/>
7
+ <node symbol="Gate" x="550" y="190" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
8
+ <connection type="Resource Connection" start="5" end="50" label="50%" position="0.5" color="Black" thickness="2"/>
9
+ <connection type="State Connection" start="17" end="6" label="+1" position="0.5" color="Black" thickness="2"/>
10
+ <connection type="Resource Connection" start="0" end="49" label="1" position="0.5" color="Black" thickness="2"/>
11
+ <connection type="Resource Connection" start="42" end="49" label="0" position="0.5" color="Black" thickness="2"/>
12
+ <connection type="State Connection" start="18" end="8" label="+1" position="0.5" color="Black" thickness="2"/>
13
+ <connection type="State Connection" start="45" end="9" label="+1" position="0.5" color="Black" thickness="2"/>
14
+ <connection type="Resource Connection" start="3" end="47" label="50%" position="0.5" color="Black" thickness="2"/>
15
+ <connection type="State Connection" start="15" end="14" label="+1" position="0" color="Black" thickness="2"/>
16
+ <connection type="Resource Connection" start="3" end="48" label="50%" position="0.5" color="Black" thickness="2"/>
17
+ <node symbol="Register" x="335" y="159" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
18
+ <connection type="State Connection" start="15" end="12" label="-1" position="0.5" color="Black" thickness="2"/>
19
+ <node symbol="Register" x="550" y="123" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
20
+ <node symbol="Register" x="406" y="254" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
21
+ <connection type="State Connection" start="21" end="20" label="+1" position="0.5" color="Black" thickness="2"/>
22
+ <connection type="Resource Connection" start="44" end="3" label="1" position="0.5" color="Black" thickness="2"/>
23
+ <node symbol="Register" x="151" y="219" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
24
+ <node symbol="Converter" x="426" y="519" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
25
+ <connection type="Resource Connection" start="118" end="53" label="" position="0.5" color="Black" thickness="2"/>
26
+ <connection type="Resource Connection" start="52" end="22" label="" position="0.5" color="Black" thickness="2"/>
27
+ <node symbol="Gate" x="254" y="468" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
28
+ <connection type="Resource Connection" start="53" end="27" label="" position="0.5" color="Black" thickness="2"/>
29
+ <node symbol="Gate" x="576" y="517" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
30
+ <connection type="Resource Connection" start="27" end="54" label="50%" position="0.5" color="Black" thickness="2"/>
31
+ <connection type="State Connection" start="39" end="28" label="+1" position="0.5" color="Black" thickness="2"/>
32
+ <node symbol="Register" x="570" y="579" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
33
+ <connection type="Resource Connection" start="22" end="53" label="1" position="0.5" color="Black" thickness="2"/>
34
+ <connection type="Resource Connection" start="41" end="53" label="0" position="0.5" color="Black" thickness="2"/>
35
+ <connection type="State Connection" start="40" end="31" label="+1" position="0.5" color="Black" thickness="2"/>
36
+ <connection type="State Connection" start="30" end="32" label="+1" position="0.5" color="Black" thickness="2"/>
37
+ <connection type="Resource Connection" start="25" end="52" label="50%" position="0.5" color="Black" thickness="2"/>
38
+ <connection type="State Connection" start="37" end="115" label="+1" position="0" color="Black" thickness="2"/>
39
+ <node symbol="Register" x="361" y="486" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
40
+ <connection type="State Connection" start="37" end="35" label="-1" position="0.5" color="Black" thickness="2"/>
41
+ <node symbol="Register" x="576" y="450" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
42
+ <node symbol="Register" x="432" y="581" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
43
+ <node symbol="Source" x="507" y="632" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
44
+ <node symbol="Source" x="479" y="290" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
45
+ <node symbol="GroupBox" x="30" y="40" color="Black" caption="" width="694.8601623535156" height="294.8659912109375" captionPos="7"/>
46
+ <node symbol="Source" x="70" y="142" color="Black" caption="Original Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
47
+ <node symbol="Register" x="544" y="252" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
48
+ <connection type="Resource Connection" start="50" end="51" label="" position="0.5" color="Black" thickness="2">
49
+ <point x="614" y="347"/>
50
+ <point x="98" y="347"/>
51
+ </connection>
52
+ <node symbol="Pool" x="320" y="249" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
53
+ <node symbol="Pool" x="320" y="69" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
54
+ <node symbol="Pool" x="480" y="190" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
55
+ <node symbol="Pool" x="611" y="189" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
56
+ <node symbol="Pool" x="96" y="468" color="Black" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
57
+ <node symbol="Pool" x="346" y="576" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
58
+ <node symbol="Pool" x="506" y="517" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
59
+ <node symbol="Pool" x="637" y="516" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
60
+ <connection type="Resource Connection" start="51" end="25" label="1" position="0.5" color="Black" thickness="2"/>
61
+ <node symbol="Chart" x="397" y="845" color="Black" caption="" width="328.722216796875" height="126.15146484374998" captionPos="5" scaleX="0" scaleY="0"/>
62
+ <node symbol="Converter" x="435" y="907" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
63
+ <connection type="Resource Connection" start="80" end="81" label="" position="0.5" color="Black" thickness="2"/>
64
+ <connection type="Resource Connection" start="79" end="57" label="" position="0.5" color="Black" thickness="2"/>
65
+ <node symbol="Gate" x="263" y="856" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
66
+ <connection type="Resource Connection" start="81" end="62" label="" position="0.5" color="Black" thickness="2"/>
67
+ <node symbol="Gate" x="585" y="905" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
68
+ <connection type="Resource Connection" start="62" end="116" label="50%" position="0.5" color="Black" thickness="2"/>
69
+ <connection type="State Connection" start="75" end="63" label="+1" position="0.5" color="Black" thickness="2"/>
70
+ <node symbol="Register" x="579" y="967" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
71
+ <connection type="Resource Connection" start="57" end="81" label="1" position="0.5" color="Black" thickness="2"/>
72
+ <connection type="Resource Connection" start="77" end="81" label="0" position="0.5" color="Black" thickness="2"/>
73
+ <connection type="State Connection" start="76" end="66" label="+1" position="0.5" color="Black" thickness="2"/>
74
+ <connection type="State Connection" start="65" end="67" label="+1" position="0.5" color="Black" thickness="2"/>
75
+ <connection type="Resource Connection" start="60" end="79" label="50%" position="0.5" color="Black" thickness="2"/>
76
+ <connection type="State Connection" start="73" end="72" label="+1" position="0" color="Black" thickness="2"/>
77
+ <connection type="Resource Connection" start="60" end="80" label="50%" position="0.5" color="Black" thickness="2"/>
78
+ <node symbol="Register" x="370" y="874" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
79
+ <connection type="State Connection" start="73" end="70" label="-1" position="0.5" color="Black" thickness="2"/>
80
+ <node symbol="Register" x="585" y="838" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
81
+ <node symbol="Register" x="441" y="969" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
82
+ <node symbol="Source" x="516" y="1020" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
83
+ <node symbol="Pool" x="105" y="856" color="Black" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
84
+ <node symbol="Pool" x="355" y="964" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
85
+ <node symbol="Pool" x="355" y="784" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
86
+ <node symbol="Pool" x="515" y="905" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
87
+ <connection type="Resource Connection" start="78" end="60" label="1" position="0.5" color="Black" thickness="2"/>
88
+ <node symbol="GroupBox" x="39" y="748" color="Black" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
89
+ <node symbol="GroupBox" x="34" y="364" color="Black" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
90
+ <connection type="Resource Connection" start="54" end="78" label="" position="0.5" color="Black" thickness="2">
91
+ <point x="623" y="735"/>
92
+ <point x="107" y="735"/>
93
+ </connection>
94
+ <node symbol="Chart" x="417" y="1256" color="Black" caption="" width="328.722216796875" height="126.15146484374998" captionPos="5" scaleX="0" scaleY="0"/>
95
+ <node symbol="Converter" x="455" y="1318" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
96
+ <connection type="Resource Connection" start="110" end="114" label="" position="0.5" color="Black" thickness="2"/>
97
+ <connection type="Resource Connection" start="109" end="87" label="" position="0.5" color="Black" thickness="2"/>
98
+ <node symbol="Gate" x="283" y="1267" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
99
+ <connection type="Resource Connection" start="114" end="92" label="" position="0.5" color="Black" thickness="2"/>
100
+ <node symbol="Gate" x="605" y="1316" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
101
+ <connection type="Resource Connection" start="92" end="111" label="50%" position="0.5" color="Black" thickness="2"/>
102
+ <connection type="State Connection" start="105" end="93" label="+1" position="0.5" color="Black" thickness="2"/>
103
+ <node symbol="Register" x="599" y="1378" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
104
+ <connection type="Resource Connection" start="87" end="114" label="1" position="0.5" color="Black" thickness="2"/>
105
+ <connection type="Resource Connection" start="107" end="114" label="0" position="0.5" color="Black" thickness="2"/>
106
+ <connection type="State Connection" start="106" end="96" label="+1" position="0.5" color="Black" thickness="2"/>
107
+ <connection type="State Connection" start="95" end="97" label="+1" position="0.5" color="Black" thickness="2"/>
108
+ <connection type="Resource Connection" start="90" end="109" label="50%" position="0.5" color="Black" thickness="2"/>
109
+ <connection type="State Connection" start="103" end="102" label="+1" position="0" color="Black" thickness="2"/>
110
+ <connection type="Resource Connection" start="90" end="110" label="50%" position="0.5" color="Black" thickness="2"/>
111
+ <node symbol="Register" x="390" y="1285" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
112
+ <connection type="State Connection" start="103" end="100" label="-1" position="0.5" color="Black" thickness="2"/>
113
+ <node symbol="Register" x="605" y="1249" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
114
+ <node symbol="Register" x="461" y="1380" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
115
+ <node symbol="Source" x="536" y="1431" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
116
+ <node symbol="Pool" x="125" y="1267" color="Black" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
117
+ <node symbol="Pool" x="375" y="1375" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
118
+ <node symbol="Pool" x="375" y="1195" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
119
+ <node symbol="Pool" x="666" y="1315" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
120
+ <connection type="Resource Connection" start="108" end="90" label="1" position="0.5" color="Black" thickness="2"/>
121
+ <node symbol="GroupBox" x="59" y="1159" color="Black" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
122
+ <node symbol="Pool" x="535" y="1316" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
123
+ <connection type="Resource Connection" start="25" end="118" label="50%" position="0.5" color="Black" thickness="2"/>
124
+ <node symbol="Pool" x="646" y="904" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.5" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
125
+ <connection type="Resource Connection" start="116" end="108" label="" position="0.5" color="Black" thickness="2">
126
+ <point x="643" y="1146"/>
127
+ <point x="127" y="1146"/>
128
+ </connection>
129
+ <node symbol="Pool" x="346" y="396" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
130
+ </graph>
@@ -0,0 +1,168 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="fixed speed" speed="100" actions="1" dice="D6" skill="" strategy="" multiplayer="" width="800" height="1500" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <node symbol="Converter" x="400" y="192" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
3
+ <connection type="Resource Connection" start="46" end="47" label="" position="0.5" color="Black" thickness="2"/>
4
+ <node symbol="Gate" x="228" y="141" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
5
+ <connection type="Resource Connection" start="47" end="4" label="" position="0.5" color="Black" thickness="2"/>
6
+ <node symbol="Gate" x="550" y="190" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
7
+ <connection type="Resource Connection" start="4" end="48" label="50%" position="0.5" color="Black" thickness="2"/>
8
+ <connection type="State Connection" start="16" end="5" label="+1" position="0.5" color="Black" thickness="2"/>
9
+ <connection type="Resource Connection" start="0" end="47" label="1" position="0.5" color="Black" thickness="2"/>
10
+ <connection type="Resource Connection" start="41" end="47" label="0" position="0.5" color="Black" thickness="2"/>
11
+ <connection type="State Connection" start="17" end="7" label="+1" position="0.5" color="Black" thickness="2"/>
12
+ <connection type="State Connection" start="43" end="8" label="+1" position="0.5" color="Black" thickness="2"/>
13
+ <connection type="Resource Connection" start="2" end="45" label="50%" position="0.5" color="Black" thickness="2"/>
14
+ <connection type="State Connection" start="14" end="13" label="+1" position="0" color="Black" thickness="2"/>
15
+ <connection type="Resource Connection" start="2" end="46" label="50%" position="0.5" color="Black" thickness="2"/>
16
+ <node symbol="Register" x="335" y="159" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
17
+ <connection type="State Connection" start="14" end="11" label="-1" position="0.5" color="Black" thickness="2"/>
18
+ <node symbol="Register" x="550" y="123" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
19
+ <node symbol="Register" x="406" y="254" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
20
+ <connection type="State Connection" start="20" end="19" label="+1" position="0.5" color="Black" thickness="2"/>
21
+ <connection type="Resource Connection" start="42" end="2" label="1" position="0.5" color="Black" thickness="2"/>
22
+ <node symbol="Register" x="151" y="219" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
23
+ <node symbol="Converter" x="426" y="519" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
24
+ <connection type="Resource Connection" start="115" end="51" label="" position="0.5" color="Black" thickness="2"/>
25
+ <connection type="Resource Connection" start="50" end="21" label="" position="0.5" color="Black" thickness="2"/>
26
+ <node symbol="Gate" x="254" y="468" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
27
+ <connection type="Resource Connection" start="51" end="26" label="" position="0.5" color="Black" thickness="2"/>
28
+ <node symbol="Gate" x="576" y="517" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
29
+ <connection type="Resource Connection" start="26" end="52" label="50%" position="0.5" color="Black" thickness="2"/>
30
+ <connection type="State Connection" start="38" end="27" label="+1" position="0.5" color="Black" thickness="2"/>
31
+ <node symbol="Register" x="570" y="579" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
32
+ <connection type="Resource Connection" start="21" end="51" label="1" position="0.5" color="Black" thickness="2"/>
33
+ <connection type="Resource Connection" start="40" end="51" label="0" position="0.5" color="Black" thickness="2"/>
34
+ <connection type="State Connection" start="39" end="30" label="+1" position="0.5" color="Black" thickness="2"/>
35
+ <connection type="State Connection" start="29" end="31" label="+1" position="0.5" color="Black" thickness="2"/>
36
+ <connection type="Resource Connection" start="24" end="50" label="50%" position="0.5" color="Black" thickness="2"/>
37
+ <connection type="State Connection" start="36" end="112" label="+1" position="0" color="Black" thickness="2"/>
38
+ <node symbol="Register" x="361" y="486" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
39
+ <connection type="State Connection" start="36" end="34" label="-1" position="0.5" color="Black" thickness="2"/>
40
+ <node symbol="Register" x="576" y="450" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
41
+ <node symbol="Register" x="432" y="581" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
42
+ <node symbol="Source" x="507" y="632" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
43
+ <node symbol="Source" x="479" y="290" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
44
+ <node symbol="Source" x="70" y="142" color="Black" caption="Original Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
45
+ <node symbol="Register" x="544" y="252" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
46
+ <connection type="Resource Connection" start="48" end="49" label="" position="0.5" color="Black" thickness="2">
47
+ <point x="614" y="347"/>
48
+ <point x="98" y="347"/>
49
+ </connection>
50
+ <node symbol="Pool" x="320" y="249" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
51
+ <node symbol="Pool" x="320" y="69" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
52
+ <node symbol="Pool" x="480" y="190" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
53
+ <node symbol="Pool" x="611" y="189" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
54
+ <node symbol="Pool" x="96" y="468" color="Black" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
55
+ <node symbol="Pool" x="346" y="576" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
56
+ <node symbol="Pool" x="506" y="517" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
57
+ <node symbol="Pool" x="637" y="516" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
58
+ <connection type="Resource Connection" start="49" end="24" label="1" position="0.5" color="Black" thickness="2"/>
59
+ <node symbol="Chart" x="397" y="845" color="Black" caption="" width="328.722216796875" height="126.15146484374998" captionPos="5" scaleX="0" scaleY="0"/>
60
+ <node symbol="Converter" x="435" y="907" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
61
+ <connection type="Resource Connection" start="78" end="79" label="" position="0.5" color="Black" thickness="2"/>
62
+ <connection type="Resource Connection" start="77" end="55" label="" position="0.5" color="Black" thickness="2"/>
63
+ <node symbol="Gate" x="263" y="856" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
64
+ <connection type="Resource Connection" start="79" end="60" label="" position="0.5" color="Black" thickness="2"/>
65
+ <node symbol="Gate" x="585" y="905" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
66
+ <connection type="Resource Connection" start="60" end="113" label="50%" position="0.5" color="Black" thickness="2"/>
67
+ <connection type="State Connection" start="73" end="61" label="+1" position="0.5" color="Black" thickness="2"/>
68
+ <node symbol="Register" x="579" y="967" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
69
+ <connection type="Resource Connection" start="55" end="79" label="1" position="0.5" color="Black" thickness="2"/>
70
+ <connection type="Resource Connection" start="75" end="79" label="0" position="0.5" color="Black" thickness="2"/>
71
+ <connection type="State Connection" start="74" end="64" label="+1" position="0.5" color="Black" thickness="2"/>
72
+ <connection type="State Connection" start="63" end="65" label="+1" position="0.5" color="Black" thickness="2"/>
73
+ <connection type="Resource Connection" start="58" end="77" label="50%" position="0.5" color="Black" thickness="2"/>
74
+ <connection type="State Connection" start="71" end="70" label="+1" position="0" color="Black" thickness="2"/>
75
+ <connection type="Resource Connection" start="58" end="78" label="50%" position="0.5" color="Black" thickness="2"/>
76
+ <node symbol="Register" x="370" y="874" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
77
+ <connection type="State Connection" start="71" end="68" label="-1" position="0.5" color="Black" thickness="2"/>
78
+ <node symbol="Register" x="585" y="838" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
79
+ <node symbol="Register" x="441" y="969" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
80
+ <node symbol="Source" x="516" y="1020" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
81
+ <node symbol="Pool" x="105" y="856" color="Black" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
82
+ <node symbol="Pool" x="355" y="964" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
83
+ <node symbol="Pool" x="355" y="784" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
84
+ <node symbol="Pool" x="515" y="905" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
85
+ <connection type="Resource Connection" start="76" end="58" label="1" position="0.5" color="Black" thickness="2"/>
86
+ <node symbol="GroupBox" x="39" y="748" color="Black" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
87
+ <node symbol="GroupBox" x="34" y="364" color="Black" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
88
+ <connection type="Resource Connection" start="52" end="76" label="" position="0.5" color="Black" thickness="2">
89
+ <point x="623" y="735"/>
90
+ <point x="107" y="735"/>
91
+ </connection>
92
+ <node symbol="Chart" x="417" y="1256" color="Black" caption="" width="328.722216796875" height="126.15146484374998" captionPos="5" scaleX="0" scaleY="0"/>
93
+ <node symbol="Converter" x="455" y="1318" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
94
+ <connection type="Resource Connection" start="107" end="111" label="" position="0.5" color="Black" thickness="2"/>
95
+ <connection type="Resource Connection" start="106" end="85" label="" position="0.5" color="Black" thickness="2"/>
96
+ <node symbol="Gate" x="283" y="1267" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
97
+ <connection type="Resource Connection" start="111" end="90" label="" position="0.5" color="Black" thickness="2"/>
98
+ <node symbol="Gate" x="605" y="1316" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
99
+ <connection type="State Connection" start="102" end="150" label="+1" position="0.5" color="Black" thickness="2"/>
100
+ <node symbol="Register" x="599" y="1378" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
101
+ <connection type="Resource Connection" start="85" end="111" label="1" position="0.5" color="Black" thickness="2"/>
102
+ <connection type="Resource Connection" start="104" end="111" label="0" position="0.5" color="Black" thickness="2"/>
103
+ <connection type="State Connection" start="103" end="93" label="+1" position="0.5" color="Black" thickness="2"/>
104
+ <connection type="State Connection" start="92" end="94" label="+1" position="0.5" color="Black" thickness="2"/>
105
+ <connection type="Resource Connection" start="88" end="106" label="50%" position="0.5" color="Black" thickness="2"/>
106
+ <connection type="State Connection" start="100" end="99" label="+1" position="0" color="Black" thickness="2"/>
107
+ <connection type="Resource Connection" start="88" end="107" label="50%" position="0.5" color="Black" thickness="2"/>
108
+ <node symbol="Register" x="390" y="1285" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
109
+ <connection type="State Connection" start="100" end="97" label="-1" position="0.5" color="Black" thickness="2"/>
110
+ <node symbol="Register" x="605" y="1249" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
111
+ <node symbol="Register" x="461" y="1380" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
112
+ <node symbol="Source" x="536" y="1431" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
113
+ <node symbol="Pool" x="125" y="1267" color="Black" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
114
+ <node symbol="Pool" x="375" y="1375" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
115
+ <node symbol="Pool" x="375" y="1195" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
116
+ <node symbol="Pool" x="666" y="1315" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
117
+ <connection type="Resource Connection" start="105" end="88" label="1" position="0.5" color="Black" thickness="2"/>
118
+ <node symbol="GroupBox" x="59" y="1159" color="Black" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
119
+ <node symbol="Pool" x="535" y="1316" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
120
+ <connection type="Resource Connection" start="24" end="115" label="50%" position="0.5" color="Black" thickness="2"/>
121
+ <node symbol="Pool" x="646" y="904" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.5" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
122
+ <connection type="Resource Connection" start="113" end="105" label="" position="0.5" color="Black" thickness="2">
123
+ <point x="643" y="1146"/>
124
+ <point x="127" y="1146"/>
125
+ </connection>
126
+ <node symbol="Pool" x="346" y="396" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
127
+ <node symbol="TextLabel" x="663" y="65" color="Black" caption="Requirements"/>
128
+ <node symbol="TextLabel" x="658" y="390" color="Black" caption="Design"/>
129
+ <connection type="Resource Connection" start="45" end="0" label="" position="0.5" color="Black" thickness="2"/>
130
+ <node symbol="GroupBox" x="30" y="40" color="Black" caption="" width="694.8601623535156" height="294.8659912109375" captionPos="7"/>
131
+ <node symbol="TextLabel" x="667" y="775" color="Black" caption="Coding"/>
132
+ <node symbol="Chart" x="422" y="1661" color="Black" caption="" width="328.722216796875" height="126.15146484374998" captionPos="5" scaleX="0" scaleY="0"/>
133
+ <node symbol="Converter" x="460" y="1723" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
134
+ <connection type="Resource Connection" start="145" end="148" label="" position="0.5" color="Black" thickness="2"/>
135
+ <connection type="Resource Connection" start="144" end="122" label="" position="0.5" color="Black" thickness="2"/>
136
+ <node symbol="Gate" x="288" y="1672" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
137
+ <connection type="Resource Connection" start="148" end="127" label="" position="0.5" color="Black" thickness="2"/>
138
+ <node symbol="Gate" x="610" y="1721" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
139
+ <connection type="Resource Connection" start="127" end="146" label="50%" position="0.5" color="Black" thickness="2"/>
140
+ <connection type="State Connection" start="140" end="128" label="+1" position="0.5" color="Black" thickness="2"/>
141
+ <node symbol="Register" x="604" y="1783" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
142
+ <connection type="Resource Connection" start="122" end="148" label="1" position="0.5" color="Black" thickness="2"/>
143
+ <connection type="Resource Connection" start="142" end="148" label="0" position="0.5" color="Black" thickness="2"/>
144
+ <connection type="State Connection" start="141" end="131" label="+1" position="0.5" color="Black" thickness="2"/>
145
+ <connection type="State Connection" start="130" end="132" label="+1" position="0.5" color="Black" thickness="2"/>
146
+ <connection type="Resource Connection" start="125" end="144" label="50%" position="0.5" color="Black" thickness="2"/>
147
+ <connection type="State Connection" start="138" end="137" label="+1" position="0" color="Black" thickness="2"/>
148
+ <connection type="Resource Connection" start="125" end="145" label="50%" position="0.5" color="Black" thickness="2"/>
149
+ <node symbol="Register" x="395" y="1690" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
150
+ <connection type="State Connection" start="138" end="135" label="-1" position="0.5" color="Black" thickness="2"/>
151
+ <node symbol="Register" x="610" y="1654" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
152
+ <node symbol="Register" x="466" y="1785" color="Black" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
153
+ <node symbol="Source" x="541" y="1836" color="Black" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
154
+ <node symbol="Pool" x="130" y="1672" color="Black" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
155
+ <node symbol="Pool" x="380" y="1780" color="Black" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
156
+ <node symbol="Pool" x="380" y="1600" color="Black" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
157
+ <node symbol="Pool" x="671" y="1720" color="Black" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
158
+ <connection type="Resource Connection" start="143" end="125" label="1" position="0.5" color="Black" thickness="2"/>
159
+ <node symbol="Pool" x="540" y="1721" color="Black" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
160
+ <node symbol="GroupBox" x="64" y="1564" color="Black" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
161
+ <connection type="Resource Connection" start="90" end="108" label="50%" position="0.5" color="Black" thickness="2"/>
162
+ <connection type="Resource Connection" start="108" end="143" label="" position="0.5" color="Black" thickness="2">
163
+ <point x="648" y="1551"/>
164
+ <point x="132" y="1551"/>
165
+ </connection>
166
+ <node symbol="TextLabel" x="705" y="1178" color="Black" caption="Test"/>
167
+ <node symbol="TextLabel" x="698" y="1592" color="Black" caption="Maintenance"/>
168
+ </graph>
@@ -0,0 +1,192 @@
1
+ <graph version="v4.05" name="" author="" interval="1" timeMode="asynchronous" distributionMode="fixed speed" speed="100" actions="1" dice="D6" skill="D100" strategy="D100" multiplayer="D100" width="1200" height="2000" numberOfRuns="100" visibleRuns="25" colorCoding="0">
2
+ <node symbol="Converter" x="400" y="192" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
3
+ <connection type="Resource Connection" start="44" end="45" label="" position="0.5" color="Green" thickness="2"/>
4
+ <connection type="Resource Connection" start="45" end="3" label="" position="0.5" color="Green" thickness="2"/>
5
+ <node symbol="Gate" x="550" y="190" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
6
+ <connection type="Resource Connection" start="3" end="144" label="50%" position="0.5" color="Green" thickness="2"/>
7
+ <connection type="State Connection" start="143" end="4" label="+1" position="0.5" color="Green" thickness="2"/>
8
+ <connection type="Resource Connection" start="0" end="45" label="1" position="0.5" color="Green" thickness="2"/>
9
+ <connection type="Resource Connection" start="39" end="45" label="0" position="0.5" color="Green" thickness="2"/>
10
+ <connection type="State Connection" start="15" end="6" label="+1" position="0.5" color="Green" thickness="2"/>
11
+ <connection type="State Connection" start="41" end="7" label="+1" position="0.5" color="Green" thickness="2"/>
12
+ <connection type="Resource Connection" start="164" end="43" label="50%" position="0.5" color="Green" thickness="2"/>
13
+ <connection type="State Connection" start="13" end="12" label="+1" position="0" color="Green" thickness="2"/>
14
+ <connection type="Resource Connection" start="164" end="44" label="50%" position="0.5" color="Green" thickness="2"/>
15
+ <node symbol="Register" x="335" y="159" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
16
+ <connection type="State Connection" start="13" end="10" label="-1" position="0.5" color="Green" thickness="2"/>
17
+ <node symbol="Register" x="406" y="254" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
18
+ <connection type="State Connection" start="18" end="17" label="+1" position="0.5" color="Green" thickness="2"/>
19
+ <connection type="Resource Connection" start="40" end="164" label="1" position="0.5" color="Green" thickness="2"/>
20
+ <node symbol="Register" x="151" y="219" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
21
+ <node symbol="Converter" x="426" y="519" color="Blue" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
22
+ <connection type="Resource Connection" start="106" end="48" label="" position="0.5" color="Blue" thickness="2"/>
23
+ <connection type="Resource Connection" start="47" end="19" label="" position="0.5" color="Blue" thickness="2"/>
24
+ <node symbol="Gate" x="254" y="468" color="Blue" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
25
+ <connection type="Resource Connection" start="48" end="24" label="" position="0.5" color="Blue" thickness="2"/>
26
+ <node symbol="Gate" x="576" y="517" color="Blue" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
27
+ <connection type="Resource Connection" start="24" end="148" label="50%" position="0.5" color="Blue" thickness="2"/>
28
+ <connection type="State Connection" start="36" end="25" label="+1" position="0.5" color="Blue" thickness="2"/>
29
+ <node symbol="Register" x="570" y="579" color="Blue" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
30
+ <connection type="Resource Connection" start="19" end="48" label="1" position="0.5" color="Blue" thickness="2"/>
31
+ <connection type="Resource Connection" start="38" end="48" label="0" position="0.5" color="Blue" thickness="2"/>
32
+ <connection type="State Connection" start="37" end="28" label="+1" position="0.5" color="Blue" thickness="2"/>
33
+ <connection type="State Connection" start="27" end="29" label="+1" position="0.5" color="Blue" thickness="2"/>
34
+ <connection type="Resource Connection" start="22" end="47" label="50%" position="0.5" color="Blue" thickness="2"/>
35
+ <connection type="State Connection" start="34" end="104" label="+1" position="0" color="Blue" thickness="2"/>
36
+ <node symbol="Register" x="361" y="486" color="Blue" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
37
+ <connection type="State Connection" start="34" end="32" label="-1" position="0.5" color="Blue" thickness="2"/>
38
+ <node symbol="Register" x="576" y="450" color="Blue" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
39
+ <node symbol="Register" x="432" y="581" color="Blue" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
40
+ <node symbol="Source" x="507" y="632" color="Blue" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
41
+ <node symbol="Source" x="479" y="290" color="Green" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
42
+ <node symbol="Source" x="70" y="142" color="Green" caption="Original Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
43
+ <node symbol="Register" x="544" y="252" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
44
+ <connection type="Resource Connection" start="144" end="46" label="" position="0.5" color="Blue" thickness="2">
45
+ <point x="614" y="347"/>
46
+ <point x="98" y="347"/>
47
+ </connection>
48
+ <node symbol="Pool" x="320" y="249" color="Green" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
49
+ <node symbol="Pool" x="320" y="69" color="Green" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
50
+ <node symbol="Pool" x="480" y="190" color="Green" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
51
+ <node symbol="Pool" x="96" y="468" color="Blue" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
52
+ <node symbol="Pool" x="346" y="576" color="Blue" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
53
+ <node symbol="Pool" x="506" y="517" color="Blue" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
54
+ <node symbol="Converter" x="435" y="907" color="Orange" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
55
+ <connection type="Resource Connection" start="72" end="73" label="" position="0.5" color="Orange" thickness="2"/>
56
+ <connection type="Resource Connection" start="71" end="49" label="" position="0.5" color="Orange" thickness="2"/>
57
+ <node symbol="Gate" x="263" y="856" color="Orange" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
58
+ <connection type="Resource Connection" start="73" end="54" label="" position="0.5" color="Orange" thickness="2"/>
59
+ <node symbol="Gate" x="585" y="905" color="Orange" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
60
+ <connection type="Resource Connection" start="54" end="158" label="50%" position="0.5" color="Orange" thickness="2"/>
61
+ <connection type="State Connection" start="67" end="55" label="+1" position="0.5" color="Orange" thickness="2"/>
62
+ <node symbol="Register" x="579" y="967" color="Orange" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
63
+ <connection type="Resource Connection" start="49" end="73" label="1" position="0.5" color="Orange" thickness="2"/>
64
+ <connection type="Resource Connection" start="69" end="73" label="0" position="0.5" color="Orange" thickness="2"/>
65
+ <connection type="State Connection" start="68" end="58" label="+1" position="0.5" color="Orange" thickness="2"/>
66
+ <connection type="State Connection" start="57" end="59" label="+1" position="0.5" color="Orange" thickness="2"/>
67
+ <connection type="Resource Connection" start="52" end="71" label="50%" position="0.5" color="Orange" thickness="2"/>
68
+ <connection type="State Connection" start="65" end="64" label="+1" position="0" color="Orange" thickness="2"/>
69
+ <connection type="Resource Connection" start="52" end="72" label="50%" position="0.5" color="Orange" thickness="2"/>
70
+ <node symbol="Register" x="370" y="874" color="Orange" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
71
+ <connection type="State Connection" start="65" end="62" label="-1" position="0.5" color="Orange" thickness="2"/>
72
+ <node symbol="Register" x="585" y="838" color="Orange" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
73
+ <node symbol="Register" x="441" y="969" color="Orange" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
74
+ <node symbol="Source" x="516" y="1020" color="Orange" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
75
+ <node symbol="Pool" x="105" y="856" color="Orange" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
76
+ <node symbol="Pool" x="355" y="964" color="Orange" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
77
+ <node symbol="Pool" x="355" y="784" color="Orange" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
78
+ <node symbol="Pool" x="515" y="905" color="Orange" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
79
+ <connection type="Resource Connection" start="70" end="52" label="1" position="0.5" color="Orange" thickness="2"/>
80
+ <node symbol="GroupBox" x="39" y="748" color="Orange" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
81
+ <node symbol="GroupBox" x="34" y="364" color="Blue" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
82
+ <connection type="Resource Connection" start="148" end="70" label="" position="0.5" color="Orange" thickness="2">
83
+ <point x="623" y="735"/>
84
+ <point x="107" y="735"/>
85
+ </connection>
86
+ <node symbol="Converter" x="455" y="1318" color="Purple" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
87
+ <connection type="Resource Connection" start="100" end="103" label="" position="0.5" color="Purple" thickness="2"/>
88
+ <connection type="Resource Connection" start="99" end="78" label="" position="0.5" color="Purple" thickness="2"/>
89
+ <node symbol="Gate" x="283" y="1267" color="Purple" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
90
+ <connection type="Resource Connection" start="103" end="83" label="" position="0.5" color="Purple" thickness="2"/>
91
+ <node symbol="Gate" x="605" y="1316" color="Purple" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
92
+ <connection type="State Connection" start="95" end="140" label="+1" position="0.5" color="Purple" thickness="2"/>
93
+ <node symbol="Register" x="599" y="1378" color="Purple" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
94
+ <connection type="Resource Connection" start="78" end="103" label="1" position="0.5" color="Purple" thickness="2"/>
95
+ <connection type="Resource Connection" start="97" end="103" label="0" position="0.5" color="Purple" thickness="2"/>
96
+ <connection type="State Connection" start="96" end="86" label="+1" position="0.5" color="Purple" thickness="2"/>
97
+ <connection type="State Connection" start="85" end="87" label="+1" position="0.5" color="Purple" thickness="2"/>
98
+ <connection type="Resource Connection" start="81" end="99" label="50%" position="0.5" color="Purple" thickness="2"/>
99
+ <connection type="State Connection" start="93" end="92" label="+1" position="0" color="Purple" thickness="2"/>
100
+ <connection type="Resource Connection" start="81" end="100" label="50%" position="0.5" color="Purple" thickness="2"/>
101
+ <node symbol="Register" x="390" y="1285" color="Purple" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
102
+ <connection type="State Connection" start="93" end="90" label="-1" position="0.5" color="Purple" thickness="2"/>
103
+ <node symbol="Register" x="605" y="1249" color="Purple" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
104
+ <node symbol="Register" x="461" y="1380" color="Purple" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
105
+ <node symbol="Source" x="536" y="1431" color="Purple" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
106
+ <node symbol="Pool" x="125" y="1267" color="Purple" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
107
+ <node symbol="Pool" x="375" y="1375" color="Purple" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
108
+ <node symbol="Pool" x="375" y="1195" color="Purple" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
109
+ <connection type="Resource Connection" start="98" end="81" label="1" position="0.5" color="Purple" thickness="2"/>
110
+ <node symbol="GroupBox" x="59" y="1159" color="Purple" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
111
+ <node symbol="Pool" x="535" y="1316" color="Purple" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
112
+ <connection type="Resource Connection" start="22" end="106" label="50%" position="0.5" color="Blue" thickness="2"/>
113
+ <connection type="Resource Connection" start="158" end="98" label="" position="0.5" color="Purple" thickness="2">
114
+ <point x="643" y="1146"/>
115
+ <point x="127" y="1146"/>
116
+ </connection>
117
+ <node symbol="Pool" x="346" y="396" color="Blue" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
118
+ <node symbol="TextLabel" x="663" y="65" color="Green" caption="Requirements"/>
119
+ <node symbol="TextLabel" x="658" y="390" color="Blue" caption="Design"/>
120
+ <connection type="Resource Connection" start="43" end="0" label="" position="0.5" color="Green" thickness="2"/>
121
+ <node symbol="GroupBox" x="30" y="40" color="Green" caption="" width="694.8601623535156" height="294.8659912109375" captionPos="7"/>
122
+ <node symbol="TextLabel" x="667" y="775" color="Orange" caption="Coding"/>
123
+ <node symbol="Converter" x="460" y="1723" color="Red" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
124
+ <connection type="Resource Connection" start="135" end="138" label="" position="0.5" color="Red" thickness="2"/>
125
+ <connection type="Resource Connection" start="134" end="112" label="" position="0.5" color="Red" thickness="2"/>
126
+ <node symbol="Gate" x="288" y="1672" color="Red" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
127
+ <connection type="Resource Connection" start="138" end="117" label="" position="0.5" color="Red" thickness="2"/>
128
+ <node symbol="Gate" x="610" y="1721" color="Red" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="skill"/>
129
+ <connection type="Resource Connection" start="117" end="136" label="50%" position="0.5" color="Red" thickness="2"/>
130
+ <connection type="State Connection" start="130" end="118" label="+1" position="0.5" color="Red" thickness="2"/>
131
+ <node symbol="Register" x="604" y="1783" color="Red" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
132
+ <connection type="Resource Connection" start="112" end="138" label="1" position="0.5" color="Red" thickness="2"/>
133
+ <connection type="Resource Connection" start="132" end="138" label="0" position="0.5" color="Red" thickness="2"/>
134
+ <connection type="State Connection" start="131" end="121" label="+1" position="0.5" color="Red" thickness="2"/>
135
+ <connection type="State Connection" start="120" end="122" label="+1" position="0.5" color="Red" thickness="2"/>
136
+ <connection type="Resource Connection" start="115" end="134" label="50%" position="0.5" color="Red" thickness="2"/>
137
+ <connection type="State Connection" start="128" end="127" label="+1" position="0" color="Red" thickness="2"/>
138
+ <connection type="Resource Connection" start="115" end="135" label="50%" position="0.5" color="Red" thickness="2"/>
139
+ <node symbol="Register" x="395" y="1690" color="Red" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
140
+ <connection type="State Connection" start="128" end="125" label="-1" position="0.5" color="Red" thickness="2"/>
141
+ <node symbol="Register" x="610" y="1654" color="Red" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
142
+ <node symbol="Register" x="466" y="1785" color="Red" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="1"/>
143
+ <node symbol="Source" x="541" y="1836" color="Red" caption="New Bugs" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="1" resourceColor="Black"/>
144
+ <node symbol="Pool" x="130" y="1672" color="Red" caption="Previous Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
145
+ <node symbol="Pool" x="380" y="1780" color="Red" caption="Amplified" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
146
+ <node symbol="Pool" x="380" y="1600" color="Red" caption="Passed Through" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
147
+ <node symbol="Pool" x="671" y="1720" color="Red" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
148
+ <connection type="Resource Connection" start="133" end="115" label="1" position="0.5" color="Red" thickness="2"/>
149
+ <node symbol="Pool" x="540" y="1721" color="Red" caption="Total Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
150
+ <node symbol="GroupBox" x="64" y="1564" color="Red" caption="" width="689.1458557128907" height="341.72470703125" captionPos="7"/>
151
+ <connection type="Resource Connection" start="83" end="159" label="50%" position="0.5" color="Purple" thickness="2"/>
152
+ <node symbol="TextLabel" x="705" y="1178" color="Purple" caption="Test"/>
153
+ <node symbol="TextLabel" x="698" y="1592" color="Red" caption="Maintenance"/>
154
+ <node symbol="Register" x="542" y="134" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="interactive" pullMode="pull any" actions="0" min="-9999" max="9999" start="0" step="5"/>
155
+ <node symbol="Pool" x="637" y="189" color="Green" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
156
+ <node symbol="Source" x="631" y="120" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
157
+ <connection type="Resource Connection" start="145" end="173" label="" position="0.5" color="Green" thickness="2"/>
158
+ <connection type="State Connection" start="144" end="145" label="*" position="0.5" color="Green" thickness="2"/>
159
+ <node symbol="Pool" x="637" y="516" color="Blue" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
160
+ <connection type="State Connection" start="148" end="150" label="*" position="0.5" color="Blue" thickness="2"/>
161
+ <node symbol="Source" x="640" y="440" color="Blue" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
162
+ <connection type="Resource Connection" start="150" end="174" label="" position="0.5" color="Blue" thickness="2"/>
163
+ <connection type="Resource Connection" start="153" end="175" label="" position="0.5" color="Orange" thickness="2"/>
164
+ <node symbol="Source" x="649" y="814" color="Orange" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
165
+ <connection type="Resource Connection" start="160" end="176" label="" position="0.5" color="Purple" thickness="2"/>
166
+ <connection type="Resource Connection" start="157" end="177" label="" position="0.5" color="Red" thickness="2"/>
167
+ <connection type="Resource Connection" start="46" end="22" label="1" position="0.5" color="Blue" thickness="2"/>
168
+ <node symbol="Source" x="661" y="1632" color="Red" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
169
+ <node symbol="Pool" x="646" y="904" color="Orange" caption="Remaining Bugs" thickness="2" captionPos="0.5" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
170
+ <node symbol="Pool" x="680" y="1320" color="Purple" caption="Remaining Bugs" thickness="2" captionPos="0.25" activationMode="automatic" pullMode="push any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
171
+ <node symbol="Source" x="648" y="1194" color="Purple" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black"/>
172
+ <connection type="State Connection" start="158" end="153" label="*" position="0.5" color="Orange" thickness="2"/>
173
+ <connection type="State Connection" start="136" end="157" label="*" position="0.5" color="Red" thickness="2"/>
174
+ <connection type="State Connection" start="159" end="160" label="*" position="0.5" color="Purple" thickness="2"/>
175
+ <node symbol="Gate" x="228" y="141" color="Green" caption="" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" gateType="dice"/>
176
+ <node symbol="Chart" x="790" y="726" color="Black" caption="" width="388.40512695312486" height="251.26201171875005" captionPos="5" scaleX="0" scaleY="0"/>
177
+ <connection type="State Connection" start="173" end="165" label="" position="0.5" color="Green" thickness="2"/>
178
+ <connection type="State Connection" start="174" end="165" label="" position="0.5" color="Blue" thickness="2"/>
179
+ <connection type="State Connection" start="175" end="165" label="" position="0.5" color="Orange" thickness="2"/>
180
+ <connection type="State Connection" start="176" end="165" label="" position="0.5" color="Purple" thickness="2"/>
181
+ <connection type="State Connection" start="176" end="165" label="" position="0.5" color="Purple" thickness="2"/>
182
+ <connection type="Resource Connection" start="159" end="133" label="" position="0.5" color="Red" thickness="2">
183
+ <point x="648" y="1551"/>
184
+ <point x="132" y="1551"/>
185
+ </connection>
186
+ <connection type="State Connection" start="177" end="165" label="" position="0.5" color="Red" thickness="2"/>
187
+ <node symbol="Pool" x="492" y="68" color="Green" caption="Bug Counter" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
188
+ <node symbol="Pool" x="501" y="388" color="Blue" caption="Bug Counter" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
189
+ <node symbol="Pool" x="510" y="762" color="Orange" caption="Bug Counter" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
190
+ <node symbol="Pool" x="541" y="1188" color="Purple" caption="Bug Counter" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
191
+ <node symbol="Pool" x="537" y="1602" color="Red" caption="Bug Counter" thickness="2" captionPos="0.25" activationMode="passive" pullMode="pull any" actions="1" resourceColor="Black" startingResources="0" capacity="-1"/>
192
+ </graph>