rails_graph 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +3 -0
  3. data/.rubocop.yml +17 -0
  4. data/.ruby-version +1 -0
  5. data/.tool-versions +1 -0
  6. data/CHANGELOG.md +5 -0
  7. data/CODE_OF_CONDUCT.md +84 -0
  8. data/Gemfile +12 -0
  9. data/Gemfile.lock +142 -0
  10. data/LICENSE.txt +21 -0
  11. data/README.md +89 -0
  12. data/Rakefile +12 -0
  13. data/graph.svg +1 -0
  14. data/lib/rails_graph/commands/build_graph.rb +113 -0
  15. data/lib/rails_graph/commands/export_graph.rb +21 -0
  16. data/lib/rails_graph/configuration.rb +26 -0
  17. data/lib/rails_graph/error.rb +5 -0
  18. data/lib/rails_graph/exporters/base.rb +7 -0
  19. data/lib/rails_graph/exporters/cypher.rb +62 -0
  20. data/lib/rails_graph/exporters/json.rb +16 -0
  21. data/lib/rails_graph/exporters/neo4j.rb +26 -0
  22. data/lib/rails_graph/graph/entity.rb +21 -0
  23. data/lib/rails_graph/graph/graph.rb +43 -0
  24. data/lib/rails_graph/graph/node.rb +26 -0
  25. data/lib/rails_graph/graph/nodes/abstract_model.rb +27 -0
  26. data/lib/rails_graph/graph/nodes/column.rb +31 -0
  27. data/lib/rails_graph/graph/nodes/model.rb +44 -0
  28. data/lib/rails_graph/graph/nodes/virtual_model.rb +23 -0
  29. data/lib/rails_graph/graph/relationship.rb +34 -0
  30. data/lib/rails_graph/graph/relationships/association.rb +74 -0
  31. data/lib/rails_graph/graph/relationships/attribute.rb +23 -0
  32. data/lib/rails_graph/graph/relationships/inheritance.rb +21 -0
  33. data/lib/rails_graph/helpers/associations.rb +31 -0
  34. data/lib/rails_graph/helpers/models.rb +13 -0
  35. data/lib/rails_graph/helpers/options_parser.rb +21 -0
  36. data/lib/rails_graph/railtie.rb +14 -0
  37. data/lib/rails_graph/tasks/rails_graph.rake +27 -0
  38. data/lib/rails_graph/version.rb +5 -0
  39. data/lib/rails_graph.rb +33 -0
  40. data/sig/rails_graph.rbs +4 -0
  41. metadata +140 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 49ba4bf9a585c25b02f0b15717a240503ed5edcf61fc751df0f782a5d5fb94c5
4
+ data.tar.gz: 64610ec973417724321cc32dbfbc8dd7688474625b7c3df354dd9fd760220874
5
+ SHA512:
6
+ metadata.gz: 753af0fc868143bdb6c6636fc9a51bb4254486851f65308ad8dea0ee83f60a97a6d699d5050c41b2c9750c654940a81603c9d740b0f624ff919edc851e70b037
7
+ data.tar.gz: bc15a08314849217fa3e71c8ab9d9640c5b611b56c9ec9f98b22009487e6c6fce2b436b733a304cb7414bcb0081a98b393741c41007a7752bde4d391719a782e
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,17 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+ NewCops: enable
4
+
5
+ Style/StringLiterals:
6
+ Enabled: true
7
+ EnforcedStyle: double_quotes
8
+
9
+ Style/StringLiteralsInInterpolation:
10
+ Enabled: true
11
+ EnforcedStyle: double_quotes
12
+
13
+ Style/Documentation:
14
+ Enabled: false
15
+
16
+ Layout/LineLength:
17
+ Max: 120
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-3.1.2
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 3.1.2
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-09-12
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at ahmad.elassuty@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in rails_graph.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/Gemfile.lock ADDED
@@ -0,0 +1,142 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ rails_graph (0.1.0)
5
+ activerecord (>= 6.0, < 7.1)
6
+ neo4j-ruby-driver (>= 4.4.0.alpha.8)
7
+ railties (>= 6.0, < 7.1)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionpack (7.0.4)
13
+ actionview (= 7.0.4)
14
+ activesupport (= 7.0.4)
15
+ rack (~> 2.0, >= 2.2.0)
16
+ rack-test (>= 0.6.3)
17
+ rails-dom-testing (~> 2.0)
18
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
+ actionview (7.0.4)
20
+ activesupport (= 7.0.4)
21
+ builder (~> 3.1)
22
+ erubi (~> 1.4)
23
+ rails-dom-testing (~> 2.0)
24
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
25
+ activemodel (7.0.4)
26
+ activesupport (= 7.0.4)
27
+ activerecord (7.0.4)
28
+ activemodel (= 7.0.4)
29
+ activesupport (= 7.0.4)
30
+ activesupport (7.0.4)
31
+ concurrent-ruby (~> 1.0, >= 1.0.2)
32
+ i18n (>= 1.6, < 2)
33
+ minitest (>= 5.1)
34
+ tzinfo (~> 2.0)
35
+ ast (2.4.2)
36
+ async (2.1.0)
37
+ console (~> 1.10)
38
+ io-event (~> 1.0.0)
39
+ timers (~> 4.1)
40
+ async-io (1.34.0)
41
+ async
42
+ async-pool (0.3.12)
43
+ async (>= 1.25)
44
+ builder (3.2.4)
45
+ concurrent-ruby (1.1.10)
46
+ console (1.15.3)
47
+ fiber-local
48
+ crass (1.0.6)
49
+ diff-lcs (1.5.0)
50
+ erubi (1.11.0)
51
+ fiber-local (1.0.0)
52
+ i18n (1.12.0)
53
+ concurrent-ruby (~> 1.0)
54
+ io-event (1.0.9)
55
+ json (2.6.2)
56
+ loofah (2.19.0)
57
+ crass (~> 1.0.2)
58
+ nokogiri (>= 1.5.9)
59
+ method_source (1.0.0)
60
+ mini_portile2 (2.8.0)
61
+ minitest (5.16.3)
62
+ neo4j-ruby-driver (4.4.0.alpha.8)
63
+ activesupport
64
+ async-io
65
+ async-pool
66
+ zeitwerk (>= 2.1.10)
67
+ nokogiri (1.13.8)
68
+ mini_portile2 (~> 2.8.0)
69
+ racc (~> 1.4)
70
+ nokogiri (1.13.8-arm64-darwin)
71
+ racc (~> 1.4)
72
+ nokogiri (1.13.8-x86_64-linux)
73
+ racc (~> 1.4)
74
+ parallel (1.22.1)
75
+ parser (3.1.2.1)
76
+ ast (~> 2.4.1)
77
+ racc (1.6.0)
78
+ rack (2.2.4)
79
+ rack-test (2.0.2)
80
+ rack (>= 1.3)
81
+ rails-dom-testing (2.0.3)
82
+ activesupport (>= 4.2.0)
83
+ nokogiri (>= 1.6)
84
+ rails-html-sanitizer (1.4.3)
85
+ loofah (~> 2.3)
86
+ railties (7.0.4)
87
+ actionpack (= 7.0.4)
88
+ activesupport (= 7.0.4)
89
+ method_source
90
+ rake (>= 12.2)
91
+ thor (~> 1.0)
92
+ zeitwerk (~> 2.5)
93
+ rainbow (3.1.1)
94
+ rake (13.0.6)
95
+ regexp_parser (2.5.0)
96
+ rexml (3.2.5)
97
+ rspec (3.11.0)
98
+ rspec-core (~> 3.11.0)
99
+ rspec-expectations (~> 3.11.0)
100
+ rspec-mocks (~> 3.11.0)
101
+ rspec-core (3.11.0)
102
+ rspec-support (~> 3.11.0)
103
+ rspec-expectations (3.11.1)
104
+ diff-lcs (>= 1.2.0, < 2.0)
105
+ rspec-support (~> 3.11.0)
106
+ rspec-mocks (3.11.1)
107
+ diff-lcs (>= 1.2.0, < 2.0)
108
+ rspec-support (~> 3.11.0)
109
+ rspec-support (3.11.1)
110
+ rubocop (1.36.0)
111
+ json (~> 2.3)
112
+ parallel (~> 1.10)
113
+ parser (>= 3.1.2.1)
114
+ rainbow (>= 2.2.2, < 4.0)
115
+ regexp_parser (>= 1.8, < 3.0)
116
+ rexml (>= 3.2.5, < 4.0)
117
+ rubocop-ast (>= 1.20.1, < 2.0)
118
+ ruby-progressbar (~> 1.7)
119
+ unicode-display_width (>= 1.4.0, < 3.0)
120
+ rubocop-ast (1.21.0)
121
+ parser (>= 3.1.1.0)
122
+ ruby-progressbar (1.11.0)
123
+ thor (1.2.1)
124
+ timers (4.3.4)
125
+ tzinfo (2.0.5)
126
+ concurrent-ruby (~> 1.0)
127
+ unicode-display_width (2.3.0)
128
+ zeitwerk (2.6.0)
129
+
130
+ PLATFORMS
131
+ arm64-darwin-21
132
+ ruby
133
+ x86_64-linux
134
+
135
+ DEPENDENCIES
136
+ rails_graph!
137
+ rake (~> 13.0)
138
+ rspec (~> 3.0)
139
+ rubocop (~> 1.21)
140
+
141
+ BUNDLED WITH
142
+ 2.3.22
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Ahmad Elassuty
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,89 @@
1
+ # RailsGraph
2
+
3
+ Graph visualization for Rails applications using [Neo4j Browser](https://neo4j.com/docs/browser-manual/current/).
4
+
5
+ Gain visibility on your Rails application data model and identify bottlenecks. It is an ERD, but interactive and queryable using [Cypher](https://neo4j.com/developer/cypher/).
6
+
7
+ ![Graph](graph.svg "Graph")
8
+
9
+ ## Features
10
+
11
+ - ActiveRecord Models
12
+ - Metadata, e.g size, indexes
13
+ - Columns (disabled by default)
14
+ - Metadata, e.g type and constraints
15
+ - Associations
16
+ - HasMany
17
+ - BelongsTo
18
+ - HasOne
19
+ - HasAndBelongsToMany
20
+ - Support for Polymorphic Associations
21
+ - ActiveRecord Abstract models
22
+ - Class Hierarchy
23
+
24
+ ## Installation
25
+
26
+ Install the gem and add to the application's Gemfile by executing:
27
+
28
+ $ bundle add rails_graph
29
+
30
+ ## Usage
31
+
32
+ After installing RailsGraph to your Rails application, run the following rake task to scan your app and export it to Neo4j:
33
+
34
+ ```
35
+ rails rails_graph:export:neo4j -- -u neo4j -p admin -h neo4j://localhost:7687
36
+ ```
37
+
38
+ Then explore your model on Neo4j Browser.
39
+
40
+ ### Neo4j
41
+
42
+ To learn how to use Neo4j Browser, check out the [documentation](https://neo4j.com/docs/browser-manual/current/visual-tour/).
43
+
44
+ #### Self setup
45
+ If you have Neo4j running locally, e.g using Docker, then the browser is most likely accessible through: http://localhost:7474/browser/
46
+
47
+ #### Cloud Options
48
+ If you prefer to have a cloud managed server, feel free to check out [Neo4j AuraDB](https://neo4j.com/cloud/platform/aura-graph-database/), it provides a free instance.
49
+
50
+ ## Config
51
+
52
+ You can control what RailsGraph will include in the final graph by:
53
+
54
+ ```ruby
55
+ # config/initializers/rails_graph.rb
56
+
57
+ RailsGraph.configure do |config|
58
+ # Configure extra classes that are not loaded automatically
59
+ config.include_classes = [ActsAsTaggableOn::Tag, ActsAsTaggableOn::Tagging]
60
+
61
+ # Configure Columns parsing
62
+ config.columns = true
63
+
64
+ # Configure Class Hierarchy parsing
65
+ config.inheritance = true
66
+ end
67
+ ```
68
+
69
+ ### Sample Project
70
+
71
+ Checkout RailsGraph Example repo [here](https://github.com/ahmad-elassuty/rails_graph_example)
72
+
73
+ ## Development
74
+
75
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
76
+
77
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
78
+
79
+ ## Contributing
80
+
81
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ahmad-elassuty/rails_graph. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/ahmad-elassuty/rails_graph/blob/master/CODE_OF_CONDUCT.md).
82
+
83
+ ## License
84
+
85
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
86
+
87
+ ## Code of Conduct
88
+
89
+ Everyone interacting in the RailsGraph project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ahmad-elassuty/rails_graph/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
data/graph.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="1417.4495849609375" height="989.4625244140625" viewBox="-414.5443115234375 -440.5023498535156 1417.4495849609375 989.4625244140625"><title>Neo4j Graph Visualization</title><desc>Created using Neo4j (http://www.neo4j.com/)</desc><g class="layer relationships"><g class="relationship" transform="translate(455.5509127714192 179.75428932796135) rotate(187.02399323673063)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 65.3517476812032 0.5 L 65.3517476812032 -0.5 L 25 -0.5 Z M 116.2501851812032 0.5 L 156.6019328624064 0.5 L 156.6019328624064 3.5 L 163.6019328624064 0 L 156.6019328624064 -3.5 L 156.6019328624064 -0.5 L 116.2501851812032 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="90.8009664312032" y="3" transform="rotate(180 90.8009664312032 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(645.7476220011284 104.26478556414227) rotate(532.0910514413042)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 161.55445020936102 0.5 L 161.55445020936102 -0.5 L 25 -0.5 Z M 212.45288770936102 0.5 L 349.00733791872204 0.5 L 349.00733791872204 3.5 L 356.00733791872204 0 L 349.00733791872204 -3.5 L 349.00733791872204 -0.5 L 212.45288770936102 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="187.00366895936102" y="3" transform="rotate(180 187.00366895936102 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(530.7486073738239 351.0685119238951) rotate(216.53149987768427)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 134.3205205874551 0.5 L 134.3205205874551 -0.5 L 25 -0.5 Z M 185.2189580874551 0.5 L 294.5394786749102 0.5 L 294.5394786749102 3.5 L 301.5394786749102 0 L 294.5394786749102 -3.5 L 294.5394786749102 -0.5 L 185.2189580874551 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="159.7697393374551" y="3" transform="rotate(180 159.7697393374551 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(330.85252316178776 27.834875425786553) rotate(475.870800229208)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 42.655058433191655 0.5 L 42.655058433191655 -0.5 L 25 -0.5 Z M 93.55349593319166 0.5 L 111.20855436638331 0.5 L 111.20855436638331 3.5 L 118.20855436638331 0 L 111.20855436638331 -3.5 L 111.20855436638331 -0.5 L 93.55349593319166 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="68.10427718319166" y="3" transform="rotate(180 68.10427718319166 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(385.9563421950358)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 108.57084352037214 0.5 L 108.57084352037214 -0.5 L 25 -0.5 Z M 159.46928102037214 0.5 L 243.04012454074427 0.5 L 243.04012454074427 3.5 L 250.04012454074427 0 L 243.04012454074427 -3.5 L 243.04012454074427 -0.5 L 159.46928102037214 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="134.02006227037214" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(293.5032755898914)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 52.06223999835174 0.5 L 52.06223999835174 -0.5 L 25 -0.5 Z M 102.08177124835174 0.5 L 129.14401124670349 0.5 L 129.14401124670349 3.5 L 136.14401124670349 0 L 129.14401124670349 -3.5 L 129.14401124670349 -0.5 L 102.08177124835174 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="77.07200562335174" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(466.5842175938327)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 43.7429933063959 0.5 L 43.7429933063959 -0.5 L 25 -0.5 Z M 93.7625245563959 0.5 L 112.5055178627918 0.5 L 112.5055178627918 3.5 L 119.5055178627918 0 L 112.5055178627918 -3.5 L 112.5055178627918 -0.5 L 93.7625245563959 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="68.7527589313959" y="3" transform="rotate(180 68.7527589313959 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(501.6595611712544)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 57.69240022238816 0.5 L 57.69240022238816 -0.5 L 25 -0.5 Z M 107.71193147238816 0.5 L 140.40433169477632 0.5 L 140.40433169477632 3.5 L 147.40433169477632 0 L 140.40433169477632 -3.5 L 140.40433169477632 -0.5 L 107.71193147238816 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="82.70216584738816" y="3" transform="rotate(180 82.70216584738816 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(331.14055551721407)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 42.86479376477081 0.5 L 42.86479376477081 -0.5 L 25 -0.5 Z M 92.88432501477081 0.5 L 110.74911877954162 0.5 L 110.74911877954162 3.5 L 117.74911877954162 0 L 110.74911877954162 -3.5 L 110.74911877954162 -0.5 L 92.88432501477081 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="67.87455938977081" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(259.25777286960476)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 57.968347087752775 0.5 L 57.968347087752775 -0.5 L 25 -0.5 Z M 107.98787833775278 0.5 L 140.95622542550555 0.5 L 140.95622542550555 3.5 L 147.95622542550555 0 L 140.95622542550555 -3.5 L 140.95622542550555 -0.5 L 107.98787833775278 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="82.97811271275278" y="3" transform="rotate(180 82.97811271275278 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(536.5552763651481)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 46.56928618560548 0.5 L 46.56928618560548 -0.5 L 25 -0.5 Z M 96.58881743560548 0.5 L 118.15810362121096 0.5 L 118.15810362121096 3.5 L 125.15810362121096 0 L 118.15810362121096 -3.5 L 118.15810362121096 -0.5 L 96.58881743560548 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="71.57905181060548" y="3" transform="rotate(180 71.57905181060548 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(226.03417086399986)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 30.451696250879813 0.5 L 30.451696250879813 -0.5 L 25 -0.5 Z M 80.47122750087982 0.5 L 85.92292375175963 0.5 L 85.92292375175963 3.5 L 92.92292375175963 0 L 85.92292375175963 -3.5 L 85.92292375175963 -0.5 L 80.47122750087982 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="55.46146187587981" y="3" transform="rotate(180 55.46146187587981 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(232.25502979101134)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 78.04243869688668 0.5 L 78.04243869688668 -0.5 L 25 -0.5 Z M 128.06196994688668 0.5 L 181.10440864377335 0.5 L 181.10440864377335 3.5 L 188.10440864377335 0 L 181.10440864377335 -3.5 L 181.10440864377335 -0.5 L 128.06196994688668 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="103.05220432188668" y="3" transform="rotate(180 103.05220432188668 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(204.90849514497222)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 70.77337831662575 0.5 L 70.77337831662575 -0.5 L 25 -0.5 Z M 120.79290956662575 0.5 L 166.5662878832515 0.5 L 166.5662878832515 3.5 L 173.5662878832515 0 L 166.5662878832515 -3.5 L 166.5662878832515 -0.5 L 120.79290956662575 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="95.78314394162575" y="3" transform="rotate(180 95.78314394162575 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(387.93460436011316)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 24.018736134675446,6.953439040707552 L 24.277555179777966,5.987513214418485 A 653.1269773686984 653.1269773686984 0 0 0 168.66202371823385,27.77667220490696 L 168.62427113270425,28.77595932194879 A 654.1269773686984 654.1269773686984 0 0 1 24.018736134675446,6.953439040707552 Z M 212.00840091342417,28.975235816855616 L 211.97982978615534,27.975644054841382 A 653.1269773686984 653.1269773686984 0 0 0 356.5583701158875,7.513779995841081 L 355.8085659278237,4.608991934800846 L 363.46117628965874,6.248368233865441 L 357.558109033306,11.386830743894729 L 356.80830484524216,8.482042682854493 A 654.1269773686984 654.1269773686984 0 0 1 212.00840091342417,28.975235816855616"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="190.316980084289" y="31.735380150500873" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(387.93460436011316)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 24.018736134675446,-6.953439040707552 L 24.277555179777966,-5.987513214418485 A 653.1269773686984 653.1269773686984 0 0 1 168.6620237182337,-27.77667220490696 L 168.6242711327041,-28.77595932194879 A 654.1269773686984 654.1269773686984 0 0 0 24.018736134675446,-6.953439040707552 Z M 212.00840091342386,-28.975235816855616 L 211.979829786155,-27.975644054841382 A 653.1269773686984 653.1269773686984 0 0 1 356.5583701158875,-7.513779995841081 L 355.8085659278237,-4.608991934800846 L 363.46117628965874,-6.248368233865441 L 357.558109033306,-11.386830743894729 L 356.80830484524216,-8.482042682854493 A 654.1269773686984 654.1269773686984 0 0 0 212.00840091342386,-28.975235816855616"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="190.3169800842888" y="-25.735380150500873" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(21.068206252407215 36.30985032658089) rotate(521.5347177706033)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 24.018736134675446,-6.953439040707552 L 24.277555179777966,-5.987513214418485 A 371.90309239891576 371.90309239891576 0 0 1 96.19915896289308,-17.86285066245057 L 96.13372794078116,-18.860707757101636 A 372.90309239891576 372.90309239891576 0 0 0 24.018736134675446,-6.953439040707552 Z M 139.52565435037653,-19.17583203078908 L 139.47472289844606,-18.177129879392453 A 371.90309239891576 371.90309239891576 0 0 1 211.56121562069458,-7.347619398985637 L 210.82692709992654,-4.438870463744188 L 218.47067788971933,-6.119071006400423 L 212.54026698171867,-11.225951312640904 L 211.80597846095063,-8.317202377399454 A 372.90309239891576 372.90309239891576 0 0 0 139.52565435037653,-19.17583203078908"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="117.82873460261271" y="-16.14998377783195" transform="rotate(180 117.82873460261271 -19.14998377783195)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(-209.14629042282064 113.18346164024031) rotate(471.8046175033637)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 51.318143488730925 0.5 L 51.318143488730925 -0.5 L 25 -0.5 Z M 101.33767473873093 0.5 L 127.65581822746185 0.5 L 127.65581822746185 3.5 L 134.65581822746185 0 L 127.65581822746185 -3.5 L 127.65581822746185 -0.5 L 101.33767473873093 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="76.32790911373093" y="3" transform="rotate(180 76.32790911373093 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(-209.14629042282064 113.18346164024031) rotate(245.48676750374574)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 54.144362760490125 0.5 L 54.144362760490125 -0.5 L 25 -0.5 Z M 104.16389401049013 0.5 L 133.30825677098025 0.5 L 133.30825677098025 3.5 L 140.30825677098025 0 L 133.30825677098025 -3.5 L 133.30825677098025 -0.5 L 104.16389401049013 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="79.15412838549013" y="3" transform="rotate(180 79.15412838549013 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(-209.14629042282064 113.18346164024031) rotate(212.1368398005883)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 59.77566036462679 0.5 L 59.77566036462679 -0.5 L 25 -0.5 Z M 109.79519161462679 0.5 L 144.57085197925358 0.5 L 144.57085197925358 3.5 L 151.57085197925358 0 L 144.57085197925358 -3.5 L 144.57085197925358 -0.5 L 109.79519161462679 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="84.78542598962679" y="3" transform="rotate(180 84.78542598962679 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(-209.14629042282064 113.18346164024031) rotate(539.8277488841685)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 59.689643681135635 0.5 L 59.689643681135635 -0.5 L 25 -0.5 Z M 109.70917493113564 0.5 L 144.39881861227127 0.5 L 144.39881861227127 3.5 L 151.39881861227127 0 L 144.39881861227127 -3.5 L 144.39881861227127 -0.5 L 109.70917493113564 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="84.69940930613564" y="3" transform="rotate(180 84.69940930613564 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(-209.14629042282064 113.18346164024031) rotate(365.20604118599846)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 210.7951268193063 0.5 L 210.7951268193063 -0.5 L 25 -0.5 Z M 261.6935643193063 0.5 L 447.4886911386126 0.5 L 447.4886911386126 3.5 L 454.4886911386126 0 L 447.4886911386126 -3.5 L 447.4886911386126 -0.5 L 261.6935643193063 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="236.2443455693063" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(-209.14629042282064 113.18346164024031) rotate(506.561844433967)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 56.30896863418745 0.5 L 56.30896863418745 -0.5 L 25 -0.5 Z M 106.32849988418745 0.5 L 137.6374685183749 0.5 L 137.6374685183749 3.5 L 144.6374685183749 0 L 137.6374685183749 -3.5 L 137.6374685183749 -0.5 L 106.32849988418745 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="81.31873425918745" y="3" transform="rotate(180 81.31873425918745 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(-209.14629042282064 113.18346164024031) rotate(341.53471777060327)"><path class="b-outline" fill="#569480" stroke="none" d="M 24.018736134675446,-6.953439040707552 L 24.277555179777966,-5.987513214418485 A 371.90309239891576 371.90309239891576 0 0 1 97.97837089036396,-17.975234223644634 L 97.91772394228593,-18.973393503363468 A 372.90309239891576 372.90309239891576 0 0 0 24.018736134675446,-6.953439040707552 Z M 137.7402098929985,-19.262595504749413 L 137.6940663993708,-18.2636606830539 A 371.90309239891576 371.90309239891576 0 0 1 211.56121562069458,-7.347619398985637 L 210.82692709992654,-4.438870463744188 L 218.47067788971933,-6.119071006400423 L 212.54026698171867,-11.225951312640904 L 211.80597846095063,-8.317202377399454 A 372.90309239891576 372.90309239891576 0 0 0 137.7402098929985,-19.262595504749413"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="117.82873460261271" y="-16.14998377783195" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasMany</text></g><g class="relationship" transform="translate(635.709996111046 202.78959102874092) rotate(187.28635453901467)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 61.863666396080134 0.5 L 61.863666396080134 -0.5 L 25 -0.5 Z M 112.76210389608013 0.5 L 149.62577029216027 0.5 L 149.62577029216027 3.5 L 156.62577029216027 0 L 149.62577029216027 -3.5 L 149.62577029216027 -0.5 L 112.76210389608013 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="87.31288514608013" y="3" transform="rotate(180 87.31288514608013 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(635.709996111046 202.78959102874092) rotate(323.0023376458489)"><path class="b-outline" fill="#569480" stroke="none" d="M 25 0.5 L 150.08418514510953 0.5 L 150.08418514510953 -0.5 L 25 -0.5 Z M 189.87324764510953 0.5 L 314.95743279021906 0.5 L 314.95743279021906 3.5 L 321.95743279021906 0 L 314.95743279021906 -3.5 L 314.95743279021906 -0.5 L 189.87324764510953 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="169.97871639510953" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasMany</text></g><g class="relationship" transform="translate(635.709996111046 202.78959102874092) rotate(407.38456842489165)"><path class="b-outline" fill="#569480" stroke="none" d="M 25 0.5 L 54.01445881147279 0.5 L 54.01445881147279 -0.5 L 25 -0.5 Z M 93.80352131147279 0.5 L 122.81798012294558 0.5 L 122.81798012294558 3.5 L 129.81798012294558 0 L 122.81798012294558 -3.5 L 122.81798012294558 -0.5 L 93.80352131147279 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="73.90899006147279" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasMany</text></g><g class="relationship" transform="translate(635.709996111046 202.78959102874092) rotate(536.8182111413302)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 25 0.5 L 111.1023892265965 0.5 L 111.1023892265965 -0.5 L 25 -0.5 Z M 154.4617642265965 0.5 L 240.564153453193 0.5 L 240.564153453193 3.5 L 247.564153453193 0 L 240.564153453193 -3.5 L 240.564153453193 -0.5 L 154.4617642265965 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="132.7820767265965" y="3" transform="rotate(180 132.7820767265965 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(630.907787867113 353.661648792358) rotate(271.8230904103229)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 46.52501363736235 0.5 L 46.52501363736235 -0.5 L 25 -0.5 Z M 97.42345113736235 0.5 L 118.9484647747247 0.5 L 118.9484647747247 3.5 L 125.9484647747247 0 L 118.9484647747247 -3.5 L 118.9484647747247 -0.5 L 97.42345113736235 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="71.97423238736235" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(811.0712424242963 146.87043484383443) rotate(194.45128066100517)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 56.413449935391725 0.5 L 56.413449935391725 -0.5 L 25 -0.5 Z M 107.31188743539172 0.5 L 138.72533737078345 0.5 L 138.72533737078345 3.5 L 145.72533737078345 0 L 138.72533737078345 -3.5 L 138.72533737078345 -0.5 L 107.31188743539172 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="81.86266868539172" y="3" transform="rotate(180 81.86266868539172 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(811.0712424242963 146.87043484383443) rotate(303.6443702065688)"><path class="b-outline" fill="#57C7E3" stroke="none" d="M 21.40063509461097,-12.933012701892217 L 21.90063509461097,-12.06698729810778 A 137.65970699893396 137.65970699893396 0 0 1 70.65288136139114,-29.037865556789185 L 70.50703180475332,-30.027172337736587 A 138.65970699893396 138.65970699893396 0 0 0 21.40063509461097,-12.933012701892217 Z M 105.87991426065321,-30.67982245211688 L 105.77065811123202,-29.685808823531417 A 137.65970699893396 137.65970699893396 0 0 1 155.1157547203836,-14.52488320662857 L 153.71261503201848,-11.873242391032566 L 161.53677323816848,-11.69283073637597 L 156.98660763820376,-18.06040429408991 L 155.58346794983865,-15.408763478493906 A 138.65970699893396 138.65970699893396 0 0 0 105.87991426065321,-30.67982245211688"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="88.1817959732112" y="-27.98638053359842" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasOne</text></g><g class="relationship" transform="translate(811.0712424242963 146.87043484383443) rotate(472.5526670175559)"><path class="b-outline" fill="#57C7E3" stroke="none" d="M 25 0.5 L 70.78445970401549 0.5 L 70.78445970401549 -0.5 L 25 -0.5 Z M 106.13211595401549 0.5 L 151.91657565803098 0.5 L 151.91657565803098 3.5 L 158.91657565803098 0 L 151.91657565803098 -3.5 L 151.91657565803098 -0.5 L 106.13211595401549 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="88.45828782901549" y="3" transform="rotate(180 88.45828782901549 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasOne</text></g><g class="relationship" transform="translate(811.0712424242963 146.87043484383443) rotate(303.6443702065688)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 25 0.5 L 66.63720251740094 0.5 L 66.63720251740094 -0.5 L 25 -0.5 Z M 109.99657751740094 0.5 L 151.63378003480187 0.5 L 151.63378003480187 3.5 L 158.63378003480187 0 L 151.63378003480187 -3.5 L 151.63378003480187 -0.5 L 109.99657751740094 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="88.31689001740094" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(912.8110413126966 -6.003298976000892) rotate(517.5647097352883)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 115.51697141446257 0.5 L 115.51697141446257 -0.5 L 25 -0.5 Z M 166.41540891446257 0.5 L 256.93238032892515 0.5 L 256.93238032892515 3.5 L 263.93238032892515 0 L 256.93238032892515 -3.5 L 256.93238032892515 -0.5 L 166.41540891446257 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="140.96619016446257" y="3" transform="rotate(180 140.96619016446257 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(912.8110413126966 -6.003298976000892) rotate(478.0942382219961)"><path class="b-outline" fill="#569480" stroke="none" d="M 21.40063509461097,-12.933012701892217 L 21.90063509461097,-12.06698729810778 A 320.93797795978463 320.93797795978463 0 0 1 159.50506030879814,-54.24901787884568 L 159.43381737297904,-55.24647687253707 A 321.93797795978463 321.93797795978463 0 0 0 21.40063509461097,-12.933012701892217 Z M 199.25757086896397,-55.62127143917371 L 199.20511372519522,-54.622648262961775 A 320.93797795978463 320.93797795978463 0 0 1 337.5790728494722,-15.037941888984506 L 336.12823693006834,-12.412094381042072 L 343.94785635457185,-12.090299328365845 L 339.5135207420107,-18.539071899574413 L 338.06268482260685,-15.913224391631982 A 321.93797795978463 321.93797795978463 0 0 0 199.25757086896397,-55.62127143917371"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="179.34459850353178" y="-52.55028886068271" transform="rotate(180 179.34459850353178 -55.55028886068271)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasMany</text></g><g class="relationship" transform="translate(912.8110413126966 -6.003298976000892) rotate(230.64895020563637)"><path class="b-outline" fill="#57C7E3" stroke="none" d="M 6.953439040707552 24.018736134675446 L 17.306200844808384 62.65576918623819 A 17.916697508022974 17.916697508022974 0 1 1 -17.306200844808384 62.65576918623819 L -8.765172356425198 30.780216918698923 L -4.901469051268926 31.815493099109005 L -6.4704761275630185 24.148145657226706 L -11.662949835292403 30.00375978339136 L -7.79924653013613 31.039035963801442 L -16.340275018519314 62.91458823134071 A 16.916697508022974 16.916697508022974 0 1 0 16.340275018519314 62.91458823134071 L 5.987513214418485 24.277555179777966 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="0" y="94.20964923467838" transform="rotate(180 0 91.20964923467838)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasOne</text></g><g class="relationship" transform="translate(912.8110413126966 -6.003298976000892) rotate(478.0942382219961)"><path class="b-outline" fill="#57C7E3" stroke="none" d="M 25 0.5 L 161.74113133537952 0.5 L 161.74113133537952 -0.5 L 25 -0.5 Z M 197.08878758537952 0.5 L 333.82991892075904 0.5 L 333.82991892075904 3.5 L 340.82991892075904 0 L 333.82991892075904 -3.5 L 333.82991892075904 -0.5 L 197.08878758537952 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="179.41495946037952" y="3" transform="rotate(180 179.41495946037952 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasOne</text></g><g class="relationship" transform="translate(912.8110413126966 -6.003298976000892) rotate(483.6443702065688)"><path class="b-outline" fill="#569480" stroke="none" d="M 21.40063509461097,-12.933012701892217 L 21.90063509461097,-12.06698729810778 A 137.65970699893396 137.65970699893396 0 0 1 68.46656327088272,-28.697570979780338 L 68.30483166612659,-29.684405762316416 A 138.65970699893396 138.65970699893396 0 0 0 21.40063509461097,-12.933012701892217 Z M 108.09325972502783,-30.418525243702433 L 107.96804114850882,-29.426396064565708 A 137.65970699893396 137.65970699893396 0 0 1 155.1157547203836,-14.52488320662857 L 153.71261503201848,-11.873242391032566 L 161.53677323816848,-11.69283073637597 L 156.98660763820376,-18.06040429408991 L 155.58346794983865,-15.408763478493906 A 138.65970699893396 138.65970699893396 0 0 0 108.09325972502783,-30.418525243702433"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="88.1817959732112" y="-27.98638053359842" transform="rotate(180 88.1817959732112 -30.98638053359842)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasMany</text></g><g class="relationship" transform="translate(740.5332560678128 316.7224271269654) rotate(245.95648742395235)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 87.37206679553162 0.5 L 87.37206679553162 -0.5 L 25 -0.5 Z M 138.27050429553162 0.5 L 200.64257109106325 0.5 L 200.64257109106325 3.5 L 207.64257109106325 0 L 200.64257109106325 -3.5 L 200.64257109106325 -0.5 L 138.27050429553162 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="112.82128554553162" y="3" transform="rotate(180 112.82128554553162 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(740.5332560678128 316.7224271269654) rotate(298.0942382219961)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 21.40063509461097,-12.933012701892217 L 21.90063509461097,-12.06698729810778 A 320.93797795978463 320.93797795978463 0 0 1 157.72757166983462,-54.117099816009556 L 157.65079031612473,-55.11414777058474 A 321.93797795978463 321.93797795978463 0 0 0 21.40063509461097,-12.933012701892217 Z M 201.04277266270608,-55.52252412367585 L 200.98477034590414,-54.524207675225966 A 320.93797795978463 320.93797795978463 0 0 1 337.5790728494722,-15.037941888984506 L 336.12823693006834,-12.412094381042072 L 343.94785635457185,-12.090299328365845 L 339.5135207420107,-18.539071899574413 L 338.06268482260685,-15.913224391631982 A 321.93797795978463 321.93797795978463 0 0 0 201.04277266270608,-55.52252412367585"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="179.34459850353178" y="-52.55028886068271" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(740.5332560678128 316.7224271269654) rotate(194.68704278117087)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 25 0.5 L 169.6706468070778 0.5 L 169.6706468070778 -0.5 L 25 -0.5 Z M 213.0300218070778 0.5 L 357.7006686141556 0.5 L 357.7006686141556 3.5 L 364.7006686141556 0 L 357.7006686141556 -3.5 L 357.7006686141556 -0.5 L 213.0300218070778 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="191.3503343070778" y="3" transform="rotate(180 191.3503343070778 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(850.7102406792909 519.9601836751675) rotate(207.82732209221717)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 151.95119831311908 0.5 L 151.95119831311908 -0.5 L 25 -0.5 Z M 202.84963581311908 0.5 L 329.80083412623816 0.5 L 329.80083412623816 3.5 L 336.80083412623816 0 L 329.80083412623816 -3.5 L 329.80083412623816 -0.5 L 202.84963581311908 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="177.40041706311908" y="3" transform="rotate(180 177.40041706311908 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(850.7102406792909 519.9601836751675) rotate(276.73376895239346)"><path class="b-outline" fill="#57C7E3" stroke="none" d="M 25 0.5 L 243.6346378092748 0.5 L 243.6346378092748 -0.5 L 25 -0.5 Z M 278.9822940592748 0.5 L 497.6169318685496 0.5 L 497.6169318685496 3.5 L 504.6169318685496 0 L 497.6169318685496 -3.5 L 497.6169318685496 -0.5 L 278.9822940592748 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="261.3084659342748" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasOne</text></g><g class="relationship" transform="translate(850.7102406792909 519.9601836751675) rotate(241.53748735960477)"><path class="b-outline" fill="#57C7E3" stroke="none" d="M 25 0.5 L 94.4165625059086 0.5 L 94.4165625059086 -0.5 L 25 -0.5 Z M 129.7642187559086 0.5 L 199.1807812618172 0.5 L 199.1807812618172 3.5 L 206.1807812618172 0 L 199.1807812618172 -3.5 L 199.1807812618172 -0.5 L 129.7642187559086 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="112.0903906309086" y="3" transform="rotate(180 112.0903906309086 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasOne</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(287.96078242459174)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 53.55114421588276 0.5 L 53.55114421588276 -0.5 L 25 -0.5 Z M 103.57067546588276 0.5 L 132.12181968176552 0.5 L 132.12181968176552 3.5 L 139.12181968176552 0 L 132.12181968176552 -3.5 L 132.12181968176552 -0.5 L 103.57067546588276 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="78.56090984088276" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(362.3481693090255)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 44.609224643499516 0.5 L 44.609224643499516 -0.5 L 25 -0.5 Z M 94.62875589349952 0.5 L 114.23798053699903 0.5 L 114.23798053699903 3.5 L 121.23798053699903 0 L 114.23798053699903 -3.5 L 114.23798053699903 -0.5 L 94.62875589349952 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="69.61899026849952" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(324.0027996884244)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 49.474673446318036 0.5 L 49.474673446318036 -0.5 L 25 -0.5 Z M 99.49420469631804 0.5 L 123.96887814263607 0.5 L 123.96887814263607 3.5 L 130.96887814263607 0 L 123.96887814263607 -3.5 L 123.96887814263607 -0.5 L 99.49420469631804 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="74.48443907131804" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(526.6130659424518)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 100.89984483150903 0.5 L 100.89984483150903 -0.5 L 25 -0.5 Z M 151.79828233150903 0.5 L 227.69812716301806 0.5 L 227.69812716301806 3.5 L 234.69812716301806 0 L 227.69812716301806 -3.5 L 227.69812716301806 -0.5 L 151.79828233150903 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="126.34906358150903" y="3" transform="rotate(180 126.34906358150903 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(252.63180972605585)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 52.21241598335628 0.5 L 52.21241598335628 -0.5 L 25 -0.5 Z M 102.23194723335628 0.5 L 129.44436321671256 0.5 L 129.44436321671256 3.5 L 136.44436321671256 0 L 129.44436321671256 -3.5 L 129.44436321671256 -0.5 L 102.23194723335628 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="77.22218160835628" y="3" transform="rotate(180 77.22218160835628 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(537.7135476316876)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 44.01493960747359 0.5 L 44.01493960747359 -0.5 L 25 -0.5 Z M 94.0344708574736 0.5 L 113.04941046494719 0.5 L 113.04941046494719 3.5 L 120.04941046494719 0 L 113.04941046494719 -3.5 L 113.04941046494719 -0.5 L 94.0344708574736 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="69.0247052324736" y="3" transform="rotate(180 69.0247052324736 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(216.28055252295133)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 49.1869156857215 0.5 L 49.1869156857215 -0.5 L 25 -0.5 Z M 99.2064469357215 0.5 L 123.393362621443 0.5 L 123.393362621443 3.5 L 130.393362621443 0 L 123.393362621443 -3.5 L 123.393362621443 -0.5 L 99.2064469357215 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="74.1966813107215" y="3" transform="rotate(180 74.1966813107215 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(222.01092219351972)"><path class="b-outline" fill="#569480" stroke="none" d="M 24.018736134675446,-6.953439040707552 L 24.277555179777966,-5.987513214418485 A 523.001656134118 523.001656134118 0 0 1 136.87690401250555,-23.31274278737851 L 136.83337940770178,-24.311795142751635 A 524.001656134118 524.001656134118 0 0 0 24.018736134675446,-6.953439040707552 Z M 176.65024889352577,-24.532205818744956 L 176.6177873463399,-23.532732833640125 A 523.001656134118 523.001656134118 0 0 1 289.4020411946191,-7.455139070984851 L 288.6577125948991,-4.548943114818274 L 296.30721985896105,-6.202738330999431 L 290.39447932757895,-11.330067012540287 L 289.650150727859,-8.42387105637371 A 524.001656134118 524.001656134118 0 0 0 176.65024889352577,-24.532205818744956"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="156.74248760536528" y="-21.300341854985504" transform="rotate(180 156.74248760536528 -24.300341854985504)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasMany</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(364.56413145887933)"><path class="b-outline" fill="#57C7E3" stroke="none" d="M 25 0.5 L 144.00834593775505 0.5 L 144.00834593775505 -0.5 L 25 -0.5 Z M 179.35600218775505 0.5 L 298.3643481255101 0.5 L 298.3643481255101 3.5 L 305.3643481255101 0 L 298.3643481255101 -3.5 L 298.3643481255101 -0.5 L 179.35600218775505 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="161.68217406275505" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasOne</text></g><g class="relationship" transform="translate(583.4943150093918 -32.292009276574476) rotate(425.7746513681589)"><path class="b-outline" fill="#57C7E3" stroke="none" d="M 25 0.5 L 170.18467431664146 0.5 L 170.18467431664146 -0.5 L 25 -0.5 Z M 205.53233056664146 0.5 L 350.7170048832829 0.5 L 350.7170048832829 3.5 L 357.7170048832829 0 L 350.7170048832829 -3.5 L 350.7170048832829 -0.5 L 205.53233056664146 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="187.85850244164146" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasOne</text></g><g class="relationship" transform="translate(345.33832278504445 -246.810847643585) rotate(181.46810568885132)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 48.141827885079806 0.5 L 48.141827885079806 -0.5 L 25 -0.5 Z M 98.1613591350798 0.5 L 121.30318702015961 0.5 L 121.30318702015961 3.5 L 128.3031870201596 0 L 121.30318702015961 -3.5 L 121.30318702015961 -0.5 L 98.1613591350798 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="73.1515935100798" y="3" transform="rotate(180 73.1515935100798 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(345.33832278504445 -246.810847643585) rotate(281.6356959922709)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 55.56371109038338 0.5 L 55.56371109038338 -0.5 L 25 -0.5 Z M 105.58324234038338 0.5 L 136.14695343076676 0.5 L 136.14695343076676 3.5 L 143.14695343076676 0 L 136.14695343076676 -3.5 L 136.14695343076676 -0.5 L 105.58324234038338 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="80.57347671538338" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(345.33832278504445 -246.810847643585) rotate(317.02129089199855)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 48.56894192219562 0.5 L 48.56894192219562 -0.5 L 25 -0.5 Z M 98.58847317219562 0.5 L 122.15741509439124 0.5 L 122.15741509439124 3.5 L 129.15741509439124 0 L 122.15741509439124 -3.5 L 122.15741509439124 -0.5 L 98.58847317219562 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="73.57870754719562" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(345.33832278504445 -246.810847643585) rotate(453.0191871261865)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 108.564518373808 0.5 L 108.564518373808 -0.5 L 25 -0.5 Z M 159.462955873808 0.5 L 243.027474247616 0.5 L 243.027474247616 3.5 L 250.027474247616 0 L 243.027474247616 -3.5 L 243.027474247616 -0.5 L 159.462955873808 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="134.013737123808" y="3" transform="rotate(180 134.013737123808 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(345.33832278504445 -246.810847643585) rotate(248.3601669605339)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 58.74434895692811 0.5 L 58.74434895692811 -0.5 L 25 -0.5 Z M 108.7638802069281 0.5 L 142.5082291638562 0.5 L 142.5082291638562 3.5 L 149.5082291638562 0 L 142.5082291638562 -3.5 L 142.5082291638562 -0.5 L 108.7638802069281 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="83.7541145819281" y="3" transform="rotate(180 83.7541145819281 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(345.33832278504445 -246.810847643585) rotate(215.47833654804901)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 59.498153331522474 0.5 L 59.498153331522474 -0.5 L 25 -0.5 Z M 109.51768458152247 0.5 L 144.01583791304495 0.5 L 144.01583791304495 3.5 L 151.01583791304495 0 L 144.01583791304495 -3.5 L 144.01583791304495 -0.5 L 109.51768458152247 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="84.50791895652247" y="3" transform="rotate(180 84.50791895652247 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(345.33832278504445 -246.810847643585) rotate(402.0109221935197)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 24.018736134675446,-6.953439040707552 L 24.277555179777966,-5.987513214418485 A 523.001656134118 523.001656134118 0 0 1 135.0952786584949,-23.232081001242136 L 135.04834751504427,-24.230979128067133 A 524.001656134118 524.001656134118 0 0 0 24.018736134675446,-6.953439040707552 Z M 178.43606609665719,-24.471156633377632 L 178.40019651214502,-23.471800153983622 A 523.001656134118 523.001656134118 0 0 1 289.4020411946191,-7.455139070984851 L 288.6577125948991,-4.548943114818274 L 296.30721985896105,-6.202738330999431 L 290.39447932757895,-11.330067012540287 L 289.650150727859,-8.42387105637371 A 524.001656134118 524.001656134118 0 0 0 178.43606609665719,-24.471156633377632"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="156.74248760536528" y="-21.300341854985504" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(297.2897796049614)"><path class="b-outline" fill="#4C8EDA" stroke="none" d="M 25 0.5 L 136.5330573696502 0.5 L 136.5330573696502 -0.5 L 25 -0.5 Z M 187.4314948696502 0.5 L 298.9645522393004 0.5 L 298.9645522393004 3.5 L 305.9645522393004 0 L 298.9645522393004 -3.5 L 298.9645522393004 -0.5 L 187.4314948696502 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="161.9822761196502" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">InheritsFrom</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(250.61969509326804)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 44.76862949415768 0.5 L 44.76862949415768 -0.5 L 25 -0.5 Z M 94.78816074415768 0.5 L 114.55679023831536 0.5 L 114.55679023831536 3.5 L 121.55679023831536 0 L 114.55679023831536 -3.5 L 114.55679023831536 -0.5 L 94.78816074415768 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="69.77839511915768" y="3" transform="rotate(180 69.77839511915768 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(376.86469084136905)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 44.520658621033604 0.5 L 44.520658621033604 -0.5 L 25 -0.5 Z M 94.5401898710336 0.5 L 114.06084849206721 0.5 L 114.06084849206721 3.5 L 121.06084849206721 0 L 114.06084849206721 -3.5 L 114.06084849206721 -0.5 L 94.5401898710336 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="69.5304242460336" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(413.6331684668045)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 53.22179384625801 0.5 L 53.22179384625801 -0.5 L 25 -0.5 Z M 103.24132509625801 0.5 L 131.46311894251602 0.5 L 131.46311894251602 3.5 L 138.46311894251602 0 L 131.46311894251602 -3.5 L 131.46311894251602 -0.5 L 103.24132509625801 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="78.23155947125801" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(211.18112893548687)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 46.03652271040335 0.5 L 46.03652271040335 -0.5 L 25 -0.5 Z M 96.05605396040335 0.5 L 117.0925766708067 0.5 L 117.0925766708067 3.5 L 124.0925766708067 0 L 117.0925766708067 -3.5 L 117.0925766708067 -0.5 L 96.05605396040335 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="71.04628833540335" y="3" transform="rotate(180 71.04628833540335 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(534.9216610925556)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 53.67702833586934 0.5 L 53.67702833586934 -0.5 L 25 -0.5 Z M 103.69655958586934 0.5 L 132.37358792173868 0.5 L 132.37358792173868 3.5 L 139.37358792173868 0 L 132.37358792173868 -3.5 L 132.37358792173868 -0.5 L 103.69655958586934 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="78.68679396086934" y="3" transform="rotate(180 78.68679396086934 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(507.04943365297595)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 74.80606312959813 0.5 L 74.80606312959813 -0.5 L 25 -0.5 Z M 124.82559437959813 0.5 L 174.63165750919626 0.5 L 174.63165750919626 3.5 L 181.63165750919626 0 L 174.63165750919626 -3.5 L 174.63165750919626 -0.5 L 124.82559437959813 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="99.81582875459813" y="3" transform="rotate(180 99.81582875459813 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(498.61017748831824)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 27.69116984534095 0.5 L 27.69116984534095 -0.5 L 25 -0.5 Z M 77.71070109534095 0.5 L 80.4018709406819 0.5 L 80.4018709406819 3.5 L 87.4018709406819 0 L 80.4018709406819 -3.5 L 80.4018709406819 -0.5 L 77.71070109534095 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="52.70093547034095" y="3" transform="rotate(180 52.70093547034095 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(449.0079637179538)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 51.49370061715766 0.5 L 51.49370061715766 -0.5 L 25 -0.5 Z M 101.51323186715766 0.5 L 128.0069324843153 0.5 L 128.0069324843153 3.5 L 135.0069324843153 0 L 128.0069324843153 -3.5 L 128.0069324843153 -0.5 L 101.51323186715766 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="76.50346624215766" y="3" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(479.01777422852837)"><path class="b-outline" fill="#8DCC93" stroke="none" d="M 25 0.5 L 69.67975289076807 0.5 L 69.67975289076807 -0.5 L 25 -0.5 Z M 119.69928414076807 0.5 L 164.37903703153614 0.5 L 164.37903703153614 3.5 L 171.37903703153614 0 L 164.37903703153614 -3.5 L 164.37903703153614 -0.5 L 119.69928414076807 -0.5 Z"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="94.68951851576807" y="3" transform="rotate(180 94.68951851576807 0)" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">HasAttribute</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(330.57451865064024)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 24.018736134675446,6.953439040707552 L 24.277555179777966,5.987513214418485 A 311.68294184712244 311.68294184712244 0 0 0 80.74261659466727,15.666607131696253 L 80.66495940937094,16.66358725264746 A 312.68294184712244 312.68294184712244 0 0 1 24.018736134675446,6.953439040707552 Z M 124.05739003378706,17.023318449052624 L 123.99627268162993,16.025187861771883 A 311.68294184712244 311.68294184712244 0 0 0 180.61404515942053,7.283571346513824 L 179.88573765422692,4.373319093206788 L 187.5260183346692,6.069229209946614 L 181.58512183301198,11.16390768425654 L 180.85681432781837,8.253655430949504 A 312.68294184712244 312.68294184712244 0 0 1 124.05739003378706,17.023318449052624"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="102.35907173507323" y="20.09712475077771" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g><g class="relationship" transform="translate(179.10824270936584 321.96275269847445) rotate(330.57451865064024)"><path class="b-outline" fill="#C990C0" stroke="none" d="M 24.018736134675446,-6.953439040707552 L 24.277555179777966,-5.987513214418485 A 311.68294184712244 311.68294184712244 0 0 1 80.74261659466723,-15.666607131696253 L 80.6649594093709,-16.66358725264746 A 312.68294184712244 312.68294184712244 0 0 0 24.018736134675446,-6.953439040707552 Z M 124.05739003378702,-17.023318449052624 L 123.9962726816299,-16.025187861771883 A 311.68294184712244 311.68294184712244 0 0 1 180.61404515942053,-7.283571346513824 L 179.88573765422692,-4.373319093206788 L 187.5260183346692,-6.069229209946614 L 181.58512183301198,-11.16390768425654 L 180.85681432781837,-8.253655430949504 A 312.68294184712244 312.68294184712244 0 0 0 124.05739003378702,-17.023318449052624"/><text text-anchor="middle" pointer-events="none" font-size="8px" fill="#000000" x="102.35907173507319" y="-14.09712475077771" font-family="Helvetica Neue, Helvetica, Arial, sans-serif">BelongsTo</text></g></g><g class="layer nodes"><g class="node" aria-label="graph-node0" transform="translate(363.5660122116226,217.91803361236734)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#DA7194" stroke="#cc3c6c" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> Polymor…</text></g><g class="node" aria-label="graph-node1" transform="translate(268.3644316645933,156.6911071910668)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#FFC454" stroke="#d7a013" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#2A2C34" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActiveR…</text></g><g class="node" aria-label="graph-node2" transform="translate(455.5509127714192,179.75428932796135)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#FFC454" stroke="#d7a013" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#2A2C34" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActionTe…</text></g><g class="node" aria-label="graph-node3" transform="translate(645.7476220011284,104.26478556414227)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#FFC454" stroke="#d7a013" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#2A2C34" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActiveSt…</text></g><g class="node" aria-label="graph-node4" transform="translate(530.7486073738239,351.0685119238951)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#FFC454" stroke="#d7a013" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#2A2C34" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActionM…</text></g><g class="node" aria-label="graph-node5" transform="translate(330.85252316178776,27.834875425786553)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#FFC454" stroke="#d7a013" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#2A2C34" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> Applicati…</text></g><g class="node" aria-label="graph-node6" transform="translate(21.068206252407215,36.30985032658089)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActsAsT…</text></g><g class="node" aria-label="graph-node7" transform="translate(-209.14629042282064,113.18346164024031)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActsAsT…</text></g><g class="node" aria-label="graph-node8" transform="translate(635.709996111046,202.78959102874092)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActionTe…</text></g><g class="node" aria-label="graph-node9" transform="translate(630.907787867113,353.661648792358)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActionTe…</text></g><g class="node" aria-label="graph-node10" transform="translate(811.0712424242963,146.87043484383443)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActiveSt…</text></g><g class="node" aria-label="graph-node11" transform="translate(912.8110413126966,-6.003298976000892)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActiveSt…</text></g><g class="node" aria-label="graph-node12" transform="translate(740.5332560678128,316.7224271269654)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActiveSt…</text></g><g class="node" aria-label="graph-node13" transform="translate(850.7102406792909,519.9601836751675)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> ActionM…</text></g><g class="node" aria-label="graph-node14" transform="translate(583.4943150093918,-32.292009276574476)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> User</text></g><g class="node" aria-label="graph-node15" transform="translate(345.33832278504445,-246.810847643585)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> Project</text></g><g class="node" aria-label="graph-node16" transform="translate(179.10824270936584,321.96275269847445)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#F79767" stroke="#f36924" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> Favorite</text></g><g class="node" aria-label="graph-node17" transform="translate(-159.02775888511118,-47.320371632469715)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> id</text></g><g class="node" aria-label="graph-node18" transform="translate(-109.38320270708955,-132.20103621756638)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> tag_id</text></g><g class="node" aria-label="graph-node19" transform="translate(-60.79733512177905,-48.56564131661793)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> taggable…</text></g><g class="node" aria-label="graph-node20" transform="translate(-128.81859632643855,45.332183495359544)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> taggable…</text></g><g class="node" aria-label="graph-node21" transform="translate(-11.169234830809566,-133.6154370965817)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> tagger_t…</text></g><g class="node" aria-label="graph-node22" transform="translate(146.08879637889714,-32.58980828476413)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> tagger_id</text></g><g class="node" aria-label="graph-node23" transform="translate(-114.15519018163491,143.25790614792032)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> context</text></g><g class="node" aria-label="graph-node24" transform="translate(-20.17719186062591,174.8041167324182)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> created_…</text></g><g class="node" aria-label="graph-node25" transform="translate(85.33267908006675,-111.46521486664007)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> tenant</text></g><g class="node" aria-label="graph-node26" transform="translate(-268.4492724864837,261.41684725980036)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> id</text></g><g class="node" aria-label="graph-node27" transform="translate(-358.66296879752815,19.25780669722835)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> name</text></g><g class="node" aria-label="graph-node28" transform="translate(-350.7055502075605,206.65991158630516)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> created_…</text></g><g class="node" aria-label="graph-node29" transform="translate(-277.7332461754765,-37.2248135883639)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> updated…</text></g><g class="node" aria-label="graph-node30" transform="translate(-385.54431187752584,113.71377727299901)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> taggings…</text></g><g class="node" aria-label="graph-node31" transform="translate(535.3014020609905,-186.37551117083189)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> id</text></g><g class="node" aria-label="graph-node32" transform="translate(634.1038953347717,-188.41581295475444)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> username</text></g><g class="node" aria-label="graph-node33" transform="translate(438.5603847077525,-26.505186007431895)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> admin</text></g><g class="node" aria-label="graph-node34" transform="translate(709.6802675158132,-123.96204985210618)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> age</text></g><g class="node" aria-label="graph-node35" transform="translate(729.6094999064313,-26.30037393689748)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> created_…</text></g><g class="node" aria-label="graph-node36" transform="translate(458.22719126796426,-124.24441466299793)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> updated…</text></g><g class="node" aria-label="graph-node37" transform="translate(379.25157408010443,-411.5023451006382)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> id</text></g><g class="node" aria-label="graph-node38" transform="translate(192.08545879743596,-250.7385480055787)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> owner_id</text></g><g class="node" aria-label="graph-node39" transform="translate(202.00246134999165,-348.96957719178687)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> name</text></g><g class="node" aria-label="graph-node40" transform="translate(458.1209789631154,-351.9040495835938)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> created_…</text></g><g class="node" aria-label="graph-node41" transform="translate(280.9847729116921,-409.01979519150206)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> updated…</text></g><g class="node" aria-label="graph-node42" transform="translate(15.379886643710044,336.5127295473699)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> id</text></g><g class="node" aria-label="graph-node43" transform="translate(130.4752939720232,183.7103420067669)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> favoritab…</text></g><g class="node" aria-label="graph-node44" transform="translate(276.03416250725536,453.58933559778177)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> favoritab…</text></g><g class="node" aria-label="graph-node45" transform="translate(51.55435013268487,244.77077833017043)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> favoritor…</text></g><g class="node" aria-label="graph-node46" transform="translate(318.8873866804065,364.33682936034046)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> favoritor…</text></g><g class="node" aria-label="graph-node47" transform="translate(94.78115263332694,396.28046573024994)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> scope</text></g><g class="node" aria-label="graph-node48" transform="translate(5.715320688323431,434.3528611511425)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> blocked</text></g><g class="node" aria-label="graph-node49" transform="translate(83.848518679121,493.6901854607301)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> created_…</text></g><g class="node" aria-label="graph-node50" transform="translate(181.87851222879402,481.94570194566757)"><circle class="b-outline" cx="0" cy="0" r="25" fill="#4C8EDA" stroke="#2870c2" stroke-width="2px"/><text class="caption" text-anchor="middle" pointer-events="none" x="0" y="5" font-size="10px" fill="#FFFFFF" font-family="Helvetica Neue, Helvetica, Arial, sans-serif"> updated…</text></g></g></svg>