Merge branch 'dev' for release 2.4.4
@ -1 +1 @@
|
||||
2.4.3
|
||||
2.4.4
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Changelog Fab Manager
|
||||
|
||||
## v2.4.4 2016 November 24
|
||||
|
||||
- Fix a bug: unable to rollback migration 20160906145713
|
||||
- Fix a bug: Title's translation for plan's forms is not loaded in French
|
||||
- Fix a bug: invoice of reservation show payment by debit card when user pay with wallet
|
||||
|
||||
## v2.4.3 2016 November 21
|
||||
|
||||
- Export user's invoicing status in members' excel export
|
||||
|
@ -677,7 +677,7 @@ Developers may find information on how to implement their own authentication pro
|
||||
To solve this issue copy `config/application.yml.default` to `config/application.yml`.
|
||||
This is required before the first start.
|
||||
|
||||
- Due to a stripe limitation, you won't be ble to create plans longer than one year.
|
||||
- Due to a stripe limitation, you won't be able to create plans longer than one year.
|
||||
|
||||
- When running the tests suite with `rake test`, all tests may fail with errors similar to the following:
|
||||
|
||||
|
3
app/exceptions/debit_wallet_error.rb
Normal file
@ -0,0 +1,3 @@
|
||||
# Raised when debit wallet fail
|
||||
class DebitWalletError < StandardError
|
||||
end
|
@ -406,8 +406,14 @@ class Reservation < ActiveRecord::Base
|
||||
if @wallet_amount_debit.present? and @wallet_amount_debit != 0
|
||||
amount = @wallet_amount_debit / 100.0
|
||||
wallet_transaction = WalletService.new(user: user, wallet: user.wallet).debit(amount, self)
|
||||
if !user.invoicing_disabled? and wallet_transaction
|
||||
self.invoice.update_columns(wallet_amount: @wallet_amount_debit, wallet_transaction_id: wallet_transaction.id)
|
||||
# wallet debit success
|
||||
if wallet_transaction
|
||||
# payment by online or (payment by local and invoice isnt disabled)
|
||||
if stp_invoice_id or !user.invoicing_disabled?
|
||||
self.invoice.update_columns(wallet_amount: @wallet_amount_debit, wallet_transaction_id: wallet_transaction.id)
|
||||
end
|
||||
else
|
||||
raise DebitWalletError
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -204,7 +204,7 @@ en:
|
||||
your_subscription_expires_on_the_DATE: "Your subscription expires on the {{DATE}}" # angular interpolation
|
||||
my_group: "My group"
|
||||
his_group: "{GENDER, select, male{His} female{Her} other{Its}} group" # messageFormat interpolation
|
||||
he_wants_to_change_group: "{ROLE, select, admin{He wants} other{I want}} to change group" # messageFormat interpolation
|
||||
he_wants_to_change_group: "{ROLE, select, admin{The user wants} other{I want}} to change group" # messageFormat interpolation
|
||||
change_my_group: "Change {ROLE, select, admin{{GENDER, select, male{his} female{her} other{its}}} other{my}} group" # messageFormat interpolation
|
||||
your_subscription_has_expired_on_the_DATE: "Your subscription has expired on the {{DATE}}" # angular interpolation
|
||||
you_ve_just_payed_the_: "You've just payed the"
|
||||
|
@ -205,7 +205,7 @@ fr:
|
||||
your_subscription_expires_on_the_DATE: "Votre abonnement expire au {{DATE}}" # angular interpolation
|
||||
my_group: "Mon groupe"
|
||||
his_group: "Son groupe" # messageFormat interpolation
|
||||
he_wants_to_change_group: "{ROLE, select, admin{Il veut} other{Je veux}} changer de groupe" # messageFormat interpolation
|
||||
he_wants_to_change_group: "{ROLE, select, admin{L'utilisateur veut} other{Je veux}} changer de groupe" # messageFormat interpolation
|
||||
change_my_group: "Changer {ROLE, select, admin{son} other{mon}} groupe" # messageFormat interpolation
|
||||
your_subscription_has_expired_on_the_DATE: "Votre abonnement a expiré au {{DATE}}" # angular interpolation
|
||||
you_ve_just_payed_the_: "Vous venez de régler l'"
|
||||
|
@ -199,7 +199,7 @@ fr:
|
||||
|
||||
plan:
|
||||
# formulaire d'édition d'une formule d'abonnement
|
||||
general_informations: "Informations générales"
|
||||
general_information: "Informations générales"
|
||||
name_length_must_be_less_than_24_characters: "Le nom doit faire moins de 24 caractères."
|
||||
type_is_required: "Le type est requis."
|
||||
group: "Groupe"
|
||||
|
@ -1,5 +1,5 @@
|
||||
class InsertCustomAggregations < ActiveRecord::Migration
|
||||
def change
|
||||
def up
|
||||
# available reservations hours for machines
|
||||
machine = StatisticIndex.find_by_es_type_key('machine')
|
||||
machine_hours = StatisticType.find_by(key: 'hour', statistic_index_id: machine.id)
|
||||
@ -26,4 +26,17 @@ class InsertCustomAggregations < ActiveRecord::Migration
|
||||
})
|
||||
available_tickets.save!
|
||||
end
|
||||
|
||||
def down
|
||||
|
||||
machine = StatisticIndex.find_by_es_type_key('machine')
|
||||
machine_hours = StatisticType.find_by(key: 'hour', statistic_index_id: machine.id)
|
||||
|
||||
StatisticCustomAggregation.where(field: 'available_hours', statistic_type_id: machine_hours.id).first.destroy!
|
||||
|
||||
training = StatisticIndex.find_by_es_type_key('training')
|
||||
training_bookings = StatisticType.find_by(key: 'booking', statistic_index_id: training.id)
|
||||
|
||||
StatisticCustomAggregation.where(field: 'available_tickets', statistic_type_id: training_bookings.id).first.destroy!
|
||||
end
|
||||
end
|
||||
|
@ -4,23 +4,23 @@
|
||||
<!-- Generated by graphviz version 2.38.0 (20140413.2041)
|
||||
-->
|
||||
<!-- Title: controllers_diagram Pages: 1 -->
|
||||
<svg width="1094pt" height="956pt"
|
||||
viewBox="0.00 0.00 1094.34 956.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(460.243 508)">
|
||||
<svg width="1136pt" height="980pt"
|
||||
viewBox="0.00 0.00 1136.19 980.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(484.343 532)">
|
||||
<title>controllers_diagram</title>
|
||||
<polygon fill="none" stroke="none" points="-460.243,448 -460.243,-508 634.092,-508 634.092,448 -460.243,448"/>
|
||||
<polygon fill="none" stroke="none" points="-484.343,448 -484.343,-532 651.843,-532 651.843,448 -484.343,448"/>
|
||||
<!-- _diagram_info -->
|
||||
<g id="node1" class="node"><title>_diagram_info</title>
|
||||
<text text-anchor="start" x="-136" y="-207.6" font-family="Times,serif" font-size="13.00">Controllers diagram</text>
|
||||
<text text-anchor="start" x="-136" y="-193.6" font-family="Times,serif" font-size="13.00">Date: Sep 15 2016 - 17:48</text>
|
||||
<text text-anchor="start" x="-136" y="-179.6" font-family="Times,serif" font-size="13.00">Migration version: 20160915105234</text>
|
||||
<text text-anchor="start" x="-136" y="-193.6" font-family="Times,serif" font-size="13.00">Date: Nov 23 2016 - 10:21</text>
|
||||
<text text-anchor="start" x="-136" y="-179.6" font-family="Times,serif" font-size="13.00">Migration version: 20160922155555</text>
|
||||
<text text-anchor="start" x="-136" y="-165.6" font-family="Times,serif" font-size="13.00">Generated by RailRoady 1.4.0</text>
|
||||
<text text-anchor="start" x="-136" y="-151.6" font-family="Times,serif" font-size="13.00">http://railroady.prestonlee.com</text>
|
||||
</g>
|
||||
<!-- SessionsController -->
|
||||
<g id="node2" class="node"><title>SessionsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-187" cy="-486" rx="77.1866" ry="18"/>
|
||||
<text text-anchor="middle" x="-187" y="-482.3" font-family="Times,serif" font-size="14.00">SessionsController</text>
|
||||
<ellipse fill="none" stroke="black" cx="-391" cy="-486" rx="77.1866" ry="18"/>
|
||||
<text text-anchor="middle" x="-391" y="-482.3" font-family="Times,serif" font-size="14.00">SessionsController</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::BookableMachinesController -->
|
||||
<g id="node3" class="node"><title>OpenAPI::V1::BookableMachinesController</title>
|
||||
@ -74,8 +74,8 @@
|
||||
</g>
|
||||
<!-- API::TagsController -->
|
||||
<g id="node13" class="node"><title>API::TagsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-361" cy="426" rx="83.3857" ry="18"/>
|
||||
<text text-anchor="middle" x="-361" y="429.7" font-family="Times,serif" font-size="14.00">API::TagsController</text>
|
||||
<ellipse fill="none" stroke="black" cx="539" cy="-474" rx="83.3857" ry="18"/>
|
||||
<text text-anchor="middle" x="539" y="-470.3" font-family="Times,serif" font-size="14.00">API::TagsController</text>
|
||||
</g>
|
||||
<!-- API::StatisticsController -->
|
||||
<g id="node14" class="node"><title>API::StatisticsController</title>
|
||||
@ -89,8 +89,8 @@
|
||||
</g>
|
||||
<!-- API::PlansController -->
|
||||
<g id="node16" class="node"><title>API::PlansController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-167" cy="426" rx="85.2851" ry="18"/>
|
||||
<text text-anchor="middle" x="-167" y="429.7" font-family="Times,serif" font-size="14.00">API::PlansController</text>
|
||||
<ellipse fill="none" stroke="black" cx="-371" cy="18" rx="85.2851" ry="18"/>
|
||||
<text text-anchor="middle" x="-371" y="21.7" font-family="Times,serif" font-size="14.00">API::PlansController</text>
|
||||
</g>
|
||||
<!-- API::AuthProvidersController -->
|
||||
<g id="node17" class="node"><title>API::AuthProvidersController</title>
|
||||
@ -144,8 +144,8 @@
|
||||
</g>
|
||||
<!-- API::FeedsController -->
|
||||
<g id="node27" class="node"><title>API::FeedsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="542" cy="6" rx="86.3847" ry="18"/>
|
||||
<text text-anchor="middle" x="542" y="9.7" font-family="Times,serif" font-size="14.00">API::FeedsController</text>
|
||||
<ellipse fill="none" stroke="black" cx="-202" cy="-486" rx="86.3847" ry="18"/>
|
||||
<text text-anchor="middle" x="-202" y="-482.3" font-family="Times,serif" font-size="14.00">API::FeedsController</text>
|
||||
</g>
|
||||
<!-- API::MembersController -->
|
||||
<g id="node28" class="node"><title>API::MembersController</title>
|
||||
@ -154,8 +154,8 @@
|
||||
</g>
|
||||
<!-- API::PricesController -->
|
||||
<g id="node29" class="node"><title>API::PricesController</title>
|
||||
<ellipse fill="none" stroke="black" cx="543" cy="-474" rx="87.1846" ry="18"/>
|
||||
<text text-anchor="middle" x="543" y="-470.3" font-family="Times,serif" font-size="14.00">API::PricesController</text>
|
||||
<ellipse fill="none" stroke="black" cx="-381" cy="78" rx="87.1846" ry="18"/>
|
||||
<text text-anchor="middle" x="-381" y="81.7" font-family="Times,serif" font-size="14.00">API::PricesController</text>
|
||||
</g>
|
||||
<!-- API::TranslationsController -->
|
||||
<g id="node30" class="node"><title>API::TranslationsController</title>
|
||||
@ -209,96 +209,116 @@
|
||||
</g>
|
||||
<!-- API::SlotsController -->
|
||||
<g id="node40" class="node"><title>API::SlotsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-373" cy="18" rx="83.3857" ry="18"/>
|
||||
<text text-anchor="middle" x="-373" y="21.7" font-family="Times,serif" font-size="14.00">API::SlotsController</text>
|
||||
<ellipse fill="none" stroke="black" cx="-373" cy="138" rx="83.3857" ry="18"/>
|
||||
<text text-anchor="middle" x="-373" y="141.7" font-family="Times,serif" font-size="14.00">API::SlotsController</text>
|
||||
</g>
|
||||
<!-- API::VersionController -->
|
||||
<g id="node41" class="node"><title>API::VersionController</title>
|
||||
<ellipse fill="none" stroke="black" cx="538" cy="366" rx="93.6835" ry="18"/>
|
||||
<text text-anchor="middle" x="538" y="369.7" font-family="Times,serif" font-size="14.00">API::VersionController</text>
|
||||
</g>
|
||||
<!-- API::AdminsController -->
|
||||
<g id="node41" class="node"><title>API::AdminsController</title>
|
||||
<g id="node42" class="node"><title>API::AdminsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="214" cy="-390" rx="94.4839" ry="18"/>
|
||||
<text text-anchor="middle" x="214" y="-386.3" font-family="Times,serif" font-size="14.00">API::AdminsController</text>
|
||||
</g>
|
||||
<!-- API::GroupsController -->
|
||||
<g id="node42" class="node"><title>API::GroupsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="536" cy="366" rx="91.784" ry="18"/>
|
||||
<text text-anchor="middle" x="536" y="369.7" font-family="Times,serif" font-size="14.00">API::GroupsController</text>
|
||||
<g id="node43" class="node"><title>API::GroupsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="536" cy="-174" rx="91.784" ry="18"/>
|
||||
<text text-anchor="middle" x="536" y="-170.3" font-family="Times,serif" font-size="14.00">API::GroupsController</text>
|
||||
</g>
|
||||
<!-- API::AvailabilitiesController -->
|
||||
<g id="node43" class="node"><title>API::AvailabilitiesController</title>
|
||||
<g id="node44" class="node"><title>API::AvailabilitiesController</title>
|
||||
<ellipse fill="none" stroke="black" cx="401" cy="186" rx="113.18" ry="18"/>
|
||||
<text text-anchor="middle" x="401" y="189.7" font-family="Times,serif" font-size="14.00">API::AvailabilitiesController</text>
|
||||
</g>
|
||||
<!-- API::UsersController -->
|
||||
<g id="node44" class="node"><title>API::UsersController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-370" cy="78" rx="85.5853" ry="18"/>
|
||||
<text text-anchor="middle" x="-370" y="81.7" font-family="Times,serif" font-size="14.00">API::UsersController</text>
|
||||
<g id="node45" class="node"><title>API::UsersController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-370" cy="198" rx="85.5853" ry="18"/>
|
||||
<text text-anchor="middle" x="-370" y="201.7" font-family="Times,serif" font-size="14.00">API::UsersController</text>
|
||||
</g>
|
||||
<!-- API::ProjectsController -->
|
||||
<g id="node45" class="node"><title>API::ProjectsController</title>
|
||||
<g id="node46" class="node"><title>API::ProjectsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="94" cy="366" rx="94.4839" ry="18"/>
|
||||
<text text-anchor="middle" x="94" y="369.7" font-family="Times,serif" font-size="14.00">API::ProjectsController</text>
|
||||
</g>
|
||||
<!-- API::WalletController -->
|
||||
<g id="node46" class="node"><title>API::WalletController</title>
|
||||
<ellipse fill="none" stroke="black" cx="534" cy="-174" rx="89.8845" ry="18"/>
|
||||
<text text-anchor="middle" x="534" y="-170.3" font-family="Times,serif" font-size="14.00">API::WalletController</text>
|
||||
<g id="node47" class="node"><title>API::WalletController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-354" cy="-138" rx="89.8845" ry="18"/>
|
||||
<text text-anchor="middle" x="-354" y="-134.3" font-family="Times,serif" font-size="14.00">API::WalletController</text>
|
||||
</g>
|
||||
<!-- API::NotificationsController -->
|
||||
<g id="node47" class="node"><title>API::NotificationsController</title>
|
||||
<g id="node48" class="node"><title>API::NotificationsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="112" cy="306" rx="111.581" ry="18"/>
|
||||
<text text-anchor="middle" x="112" y="309.7" font-family="Times,serif" font-size="14.00">API::NotificationsController</text>
|
||||
</g>
|
||||
<!-- API::TrainingsController -->
|
||||
<g id="node48" class="node"><title>API::TrainingsController</title>
|
||||
<g id="node49" class="node"><title>API::TrainingsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="315" cy="366" rx="99.3824" ry="18"/>
|
||||
<text text-anchor="middle" x="315" y="369.7" font-family="Times,serif" font-size="14.00">API::TrainingsController</text>
|
||||
</g>
|
||||
<!-- API::SettingsController -->
|
||||
<g id="node49" class="node"><title>API::SettingsController</title>
|
||||
<g id="node50" class="node"><title>API::SettingsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-290" cy="366" rx="94.4839" ry="18"/>
|
||||
<text text-anchor="middle" x="-290" y="369.7" font-family="Times,serif" font-size="14.00">API::SettingsController</text>
|
||||
</g>
|
||||
<!-- API::OpenAPIClientsController -->
|
||||
<g id="node50" class="node"><title>API::OpenAPIClientsController</title>
|
||||
<g id="node51" class="node"><title>API::OpenAPIClientsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="64" cy="-270" rx="124.278" ry="18"/>
|
||||
<text text-anchor="middle" x="64" y="-266.3" font-family="Times,serif" font-size="14.00">API::OpenAPIClientsController</text>
|
||||
</g>
|
||||
<!-- API::InvoicesController -->
|
||||
<g id="node51" class="node"><title>API::InvoicesController</title>
|
||||
<g id="node52" class="node"><title>API::InvoicesController</title>
|
||||
<ellipse fill="none" stroke="black" cx="492" cy="-414" rx="95.5831" ry="18"/>
|
||||
<text text-anchor="middle" x="492" y="-410.3" font-family="Times,serif" font-size="14.00">API::InvoicesController</text>
|
||||
</g>
|
||||
<!-- API::LicencesController -->
|
||||
<g id="node52" class="node"><title>API::LicencesController</title>
|
||||
<g id="node53" class="node"><title>API::LicencesController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-299" cy="-42" rx="96.6831" ry="18"/>
|
||||
<text text-anchor="middle" x="-299" y="-38.3" font-family="Times,serif" font-size="14.00">API::LicencesController</text>
|
||||
</g>
|
||||
<!-- SocialBotController -->
|
||||
<g id="node53" class="node"><title>SocialBotController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-375" cy="-486" rx="81.4863" ry="18"/>
|
||||
<text text-anchor="middle" x="-375" y="-482.3" font-family="Times,serif" font-size="14.00">SocialBotController</text>
|
||||
<g id="node54" class="node"><title>SocialBotController</title>
|
||||
<ellipse fill="none" stroke="black" cx="345" cy="-510" rx="81.4863" ry="18"/>
|
||||
<text text-anchor="middle" x="345" y="-506.3" font-family="Times,serif" font-size="14.00">SocialBotController</text>
|
||||
</g>
|
||||
<!-- PasswordsController -->
|
||||
<g id="node54" class="node"><title>PasswordsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-372" cy="138" rx="83.6854" ry="18"/>
|
||||
<text text-anchor="middle" x="-372" y="141.7" font-family="Times,serif" font-size="14.00">PasswordsController</text>
|
||||
<g id="node55" class="node"><title>PasswordsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="564" cy="306" rx="83.6854" ry="18"/>
|
||||
<text text-anchor="middle" x="564" y="309.7" font-family="Times,serif" font-size="14.00">PasswordsController</text>
|
||||
</g>
|
||||
<!-- ApplicationController -->
|
||||
<g id="node55" class="node"><title>ApplicationController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-356" cy="-138" rx="88.2844" ry="18"/>
|
||||
<text text-anchor="middle" x="-356" y="-134.3" font-family="Times,serif" font-size="14.00">ApplicationController</text>
|
||||
<g id="node56" class="node"><title>ApplicationController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-356" cy="426" rx="88.2844" ry="18"/>
|
||||
<text text-anchor="middle" x="-356" y="429.7" font-family="Times,serif" font-size="14.00">ApplicationController</text>
|
||||
</g>
|
||||
<!-- Users::OmniauthCallbacksController -->
|
||||
<g id="node56" class="node"><title>Users::OmniauthCallbacksController</title>
|
||||
<g id="node57" class="node"><title>Users::OmniauthCallbacksController</title>
|
||||
<ellipse fill="none" stroke="black" cx="238" cy="-114" rx="141.875" ry="18"/>
|
||||
<text text-anchor="middle" x="238" y="-110.3" font-family="Times,serif" font-size="14.00">Users::OmniauthCallbacksController</text>
|
||||
</g>
|
||||
<!-- WebhooksController -->
|
||||
<g id="node57" class="node"><title>WebhooksController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-371" cy="198" rx="85.2851" ry="18"/>
|
||||
<text text-anchor="middle" x="-371" y="201.7" font-family="Times,serif" font-size="14.00">WebhooksController</text>
|
||||
<g id="node58" class="node"><title>WebhooksController</title>
|
||||
<ellipse fill="none" stroke="black" cx="85" cy="-498" rx="85.2851" ry="18"/>
|
||||
<text text-anchor="middle" x="85" y="-494.3" font-family="Times,serif" font-size="14.00">WebhooksController</text>
|
||||
</g>
|
||||
<!-- Rss::RssController -->
|
||||
<g id="node59" class="node"><title>Rss::RssController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-403" cy="-366" rx="77.1866" ry="18"/>
|
||||
<text text-anchor="middle" x="-403" y="-362.3" font-family="Times,serif" font-size="14.00">Rss::RssController</text>
|
||||
</g>
|
||||
<!-- Rss::EventsController -->
|
||||
<g id="node60" class="node"><title>Rss::EventsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="-152" cy="426" rx="88.2844" ry="18"/>
|
||||
<text text-anchor="middle" x="-152" y="429.7" font-family="Times,serif" font-size="14.00">Rss::EventsController</text>
|
||||
</g>
|
||||
<!-- Rss::ProjectsController -->
|
||||
<g id="node61" class="node"><title>Rss::ProjectsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="549" cy="6" rx="92.8835" ry="18"/>
|
||||
<text text-anchor="middle" x="549" y="9.7" font-family="Times,serif" font-size="14.00">Rss::ProjectsController</text>
|
||||
</g>
|
||||
<!-- ConfirmationsController -->
|
||||
<g id="node58" class="node"><title>ConfirmationsController</title>
|
||||
<g id="node62" class="node"><title>ConfirmationsController</title>
|
||||
<ellipse fill="none" stroke="black" cx="506" cy="-114" rx="98.2828" ry="18"/>
|
||||
<text text-anchor="middle" x="506" y="-110.3" font-family="Times,serif" font-size="14.00">ConfirmationsController</text>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 20 KiB |
@ -4,158 +4,158 @@
|
||||
<!-- Generated by graphviz version 2.38.0 (20140413.2041)
|
||||
-->
|
||||
<!-- Title: controllers_diagram Pages: 1 -->
|
||||
<svg width="1677pt" height="1652pt"
|
||||
viewBox="0.00 0.00 1676.50 1652.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(744.5 869)">
|
||||
<svg width="1700pt" height="1676pt"
|
||||
viewBox="0.00 0.00 1700.00 1675.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(764.5 854.5)">
|
||||
<title>controllers_diagram</title>
|
||||
<polygon fill="none" stroke="none" points="-744.5,783 -744.5,-869 932,-869 932,783 -744.5,783"/>
|
||||
<polygon fill="none" stroke="none" points="-764.5,821 -764.5,-854.5 935.5,-854.5 935.5,821 -764.5,821"/>
|
||||
<!-- _diagram_info -->
|
||||
<g id="node1" class="node"><title>_diagram_info</title>
|
||||
<text text-anchor="start" x="654" y="-310.6" font-family="Times,serif" font-size="13.00">Controllers diagram</text>
|
||||
<text text-anchor="start" x="654" y="-296.6" font-family="Times,serif" font-size="13.00">Date: Sep 15 2016 - 17:48</text>
|
||||
<text text-anchor="start" x="654" y="-282.6" font-family="Times,serif" font-size="13.00">Migration version: 20160915105234</text>
|
||||
<text text-anchor="start" x="654" y="-268.6" font-family="Times,serif" font-size="13.00">Generated by RailRoady 1.4.0</text>
|
||||
<text text-anchor="start" x="654" y="-254.6" font-family="Times,serif" font-size="13.00">http://railroady.prestonlee.com</text>
|
||||
<text text-anchor="start" x="445" y="582.4" font-family="Times,serif" font-size="13.00">Controllers diagram</text>
|
||||
<text text-anchor="start" x="445" y="596.4" font-family="Times,serif" font-size="13.00">Date: Nov 23 2016 - 10:21</text>
|
||||
<text text-anchor="start" x="445" y="610.4" font-family="Times,serif" font-size="13.00">Migration version: 20160922155555</text>
|
||||
<text text-anchor="start" x="445" y="624.4" font-family="Times,serif" font-size="13.00">Generated by RailRoady 1.4.0</text>
|
||||
<text text-anchor="start" x="445" y="638.4" font-family="Times,serif" font-size="13.00">http://railroady.prestonlee.com</text>
|
||||
</g>
|
||||
<!-- SessionsController -->
|
||||
<g id="node2" class="node"><title>SessionsController</title>
|
||||
<path fill="none" stroke="black" d="M715.5,760C715.5,760 810.5,760 810.5,760 816.5,760 822.5,754 822.5,748 822.5,748 822.5,680 822.5,680 822.5,674 816.5,668 810.5,668 810.5,668 715.5,668 715.5,668 709.5,668 703.5,674 703.5,680 703.5,680 703.5,748 703.5,748 703.5,754 709.5,760 715.5,760"/>
|
||||
<text text-anchor="middle" x="763" y="683.2" font-family="Times,serif" font-size="14.00">SessionsController</text>
|
||||
<polyline fill="none" stroke="black" points="703.5,691 822.5,691 "/>
|
||||
<text text-anchor="start" x="711.5" y="706.2" font-family="Times,serif" font-size="14.00">new</text>
|
||||
<polyline fill="none" stroke="black" points="703.5,714 822.5,714 "/>
|
||||
<text text-anchor="start" x="711.5" y="729.2" font-family="Times,serif" font-size="14.00">set_csrf_headers</text>
|
||||
<polyline fill="none" stroke="black" points="703.5,737 822.5,737 "/>
|
||||
<text text-anchor="start" x="711.5" y="752.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M-747.5,304C-747.5,304 -652.5,304 -652.5,304 -646.5,304 -640.5,298 -640.5,292 -640.5,292 -640.5,224 -640.5,224 -640.5,218 -646.5,212 -652.5,212 -652.5,212 -747.5,212 -747.5,212 -753.5,212 -759.5,218 -759.5,224 -759.5,224 -759.5,292 -759.5,292 -759.5,298 -753.5,304 -747.5,304"/>
|
||||
<text text-anchor="middle" x="-700" y="227.2" font-family="Times,serif" font-size="14.00">SessionsController</text>
|
||||
<polyline fill="none" stroke="black" points="-759.5,235 -640.5,235 "/>
|
||||
<text text-anchor="start" x="-751.5" y="250.2" font-family="Times,serif" font-size="14.00">new</text>
|
||||
<polyline fill="none" stroke="black" points="-759.5,258 -640.5,258 "/>
|
||||
<text text-anchor="start" x="-751.5" y="273.2" font-family="Times,serif" font-size="14.00">set_csrf_headers</text>
|
||||
<polyline fill="none" stroke="black" points="-759.5,281 -640.5,281 "/>
|
||||
<text text-anchor="start" x="-751.5" y="296.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::BookableMachinesController -->
|
||||
<g id="node3" class="node"><title>OpenAPI::V1::BookableMachinesController</title>
|
||||
<path fill="none" stroke="black" d="M335,455.5C335,455.5 571,455.5 571,455.5 577,455.5 583,449.5 583,443.5 583,443.5 583,374.5 583,374.5 583,368.5 577,362.5 571,362.5 571,362.5 335,362.5 335,362.5 329,362.5 323,368.5 323,374.5 323,374.5 323,443.5 323,443.5 323,449.5 329,455.5 335,455.5"/>
|
||||
<text text-anchor="middle" x="453" y="377.7" font-family="Times,serif" font-size="14.00">OpenAPI::V1::BookableMachinesController</text>
|
||||
<polyline fill="none" stroke="black" points="323,385.5 583,385.5 "/>
|
||||
<text text-anchor="start" x="331" y="400.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="323,408.5 583,408.5 "/>
|
||||
<polyline fill="none" stroke="black" points="323,432.5 583,432.5 "/>
|
||||
<text text-anchor="start" x="331" y="447.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M240,455.5C240,455.5 476,455.5 476,455.5 482,455.5 488,449.5 488,443.5 488,443.5 488,374.5 488,374.5 488,368.5 482,362.5 476,362.5 476,362.5 240,362.5 240,362.5 234,362.5 228,368.5 228,374.5 228,374.5 228,443.5 228,443.5 228,449.5 234,455.5 240,455.5"/>
|
||||
<text text-anchor="middle" x="358" y="377.7" font-family="Times,serif" font-size="14.00">OpenAPI::V1::BookableMachinesController</text>
|
||||
<polyline fill="none" stroke="black" points="228,385.5 488,385.5 "/>
|
||||
<text text-anchor="start" x="236" y="400.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="228,408.5 488,408.5 "/>
|
||||
<polyline fill="none" stroke="black" points="228,432.5 488,432.5 "/>
|
||||
<text text-anchor="start" x="236" y="447.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::ReservationsController -->
|
||||
<g id="node4" class="node"><title>OpenAPI::V1::ReservationsController</title>
|
||||
<path fill="none" stroke="black" d="M468,-380.5C468,-380.5 668,-380.5 668,-380.5 674,-380.5 680,-386.5 680,-392.5 680,-392.5 680,-491.5 680,-491.5 680,-497.5 674,-503.5 668,-503.5 668,-503.5 468,-503.5 468,-503.5 462,-503.5 456,-497.5 456,-491.5 456,-491.5 456,-392.5 456,-392.5 456,-386.5 462,-380.5 468,-380.5"/>
|
||||
<text text-anchor="middle" x="568" y="-488.3" font-family="Times,serif" font-size="14.00">OpenAPI::V1::ReservationsController</text>
|
||||
<polyline fill="none" stroke="black" points="456,-480.5 680,-480.5 "/>
|
||||
<text text-anchor="start" x="464" y="-465.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="456,-457.5 680,-457.5 "/>
|
||||
<polyline fill="none" stroke="black" points="456,-433.5 680,-433.5 "/>
|
||||
<text text-anchor="start" x="464" y="-418.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="464" y="-403.3" font-family="Times,serif" font-size="14.00">format_type</text>
|
||||
<text text-anchor="start" x="464" y="-388.3" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
<path fill="none" stroke="black" d="M202,-494.5C202,-494.5 402,-494.5 402,-494.5 408,-494.5 414,-500.5 414,-506.5 414,-506.5 414,-605.5 414,-605.5 414,-611.5 408,-617.5 402,-617.5 402,-617.5 202,-617.5 202,-617.5 196,-617.5 190,-611.5 190,-605.5 190,-605.5 190,-506.5 190,-506.5 190,-500.5 196,-494.5 202,-494.5"/>
|
||||
<text text-anchor="middle" x="302" y="-602.3" font-family="Times,serif" font-size="14.00">OpenAPI::V1::ReservationsController</text>
|
||||
<polyline fill="none" stroke="black" points="190,-594.5 414,-594.5 "/>
|
||||
<text text-anchor="start" x="198" y="-579.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="190,-571.5 414,-571.5 "/>
|
||||
<polyline fill="none" stroke="black" points="190,-547.5 414,-547.5 "/>
|
||||
<text text-anchor="start" x="198" y="-532.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="198" y="-517.3" font-family="Times,serif" font-size="14.00">format_type</text>
|
||||
<text text-anchor="start" x="198" y="-502.3" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::EventsController -->
|
||||
<g id="node5" class="node"><title>OpenAPI::V1::EventsController</title>
|
||||
<path fill="none" stroke="black" d="M-652.5,607C-652.5,607 -485.5,607 -485.5,607 -479.5,607 -473.5,601 -473.5,595 -473.5,595 -473.5,511 -473.5,511 -473.5,505 -479.5,499 -485.5,499 -485.5,499 -652.5,499 -652.5,499 -658.5,499 -664.5,505 -664.5,511 -664.5,511 -664.5,595 -664.5,595 -664.5,601 -658.5,607 -652.5,607"/>
|
||||
<text text-anchor="middle" x="-569" y="514.2" font-family="Times,serif" font-size="14.00">OpenAPI::V1::EventsController</text>
|
||||
<polyline fill="none" stroke="black" points="-664.5,522 -473.5,522 "/>
|
||||
<text text-anchor="start" x="-656.5" y="537.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-664.5,545 -473.5,545 "/>
|
||||
<polyline fill="none" stroke="black" points="-664.5,569 -473.5,569 "/>
|
||||
<text text-anchor="start" x="-656.5" y="584.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-656.5" y="599.2" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
<path fill="none" stroke="black" d="M-215.5,626C-215.5,626 -48.5,626 -48.5,626 -42.5,626 -36.5,620 -36.5,614 -36.5,614 -36.5,530 -36.5,530 -36.5,524 -42.5,518 -48.5,518 -48.5,518 -215.5,518 -215.5,518 -221.5,518 -227.5,524 -227.5,530 -227.5,530 -227.5,614 -227.5,614 -227.5,620 -221.5,626 -215.5,626"/>
|
||||
<text text-anchor="middle" x="-132" y="533.2" font-family="Times,serif" font-size="14.00">OpenAPI::V1::EventsController</text>
|
||||
<polyline fill="none" stroke="black" points="-227.5,541 -36.5,541 "/>
|
||||
<text text-anchor="start" x="-219.5" y="556.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-227.5,564 -36.5,564 "/>
|
||||
<polyline fill="none" stroke="black" points="-227.5,588 -36.5,588 "/>
|
||||
<text text-anchor="start" x="-219.5" y="603.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-219.5" y="618.2" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::MachinesController -->
|
||||
<g id="node6" class="node"><title>OpenAPI::V1::MachinesController</title>
|
||||
<path fill="none" stroke="black" d="M12,683.5C12,683.5 196,683.5 196,683.5 202,683.5 208,677.5 208,671.5 208,671.5 208,602.5 208,602.5 208,596.5 202,590.5 196,590.5 196,590.5 12,590.5 12,590.5 6,590.5 0,596.5 0,602.5 0,602.5 0,671.5 0,671.5 0,677.5 6,683.5 12,683.5"/>
|
||||
<text text-anchor="middle" x="104" y="605.7" font-family="Times,serif" font-size="14.00">OpenAPI::V1::MachinesController</text>
|
||||
<polyline fill="none" stroke="black" points="0,613.5 208,613.5 "/>
|
||||
<text text-anchor="start" x="8" y="628.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="0,636.5 208,636.5 "/>
|
||||
<polyline fill="none" stroke="black" points="0,660.5 208,660.5 "/>
|
||||
<text text-anchor="start" x="8" y="675.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M677,-95.5C677,-95.5 861,-95.5 861,-95.5 867,-95.5 873,-101.5 873,-107.5 873,-107.5 873,-176.5 873,-176.5 873,-182.5 867,-188.5 861,-188.5 861,-188.5 677,-188.5 677,-188.5 671,-188.5 665,-182.5 665,-176.5 665,-176.5 665,-107.5 665,-107.5 665,-101.5 671,-95.5 677,-95.5"/>
|
||||
<text text-anchor="middle" x="769" y="-173.3" font-family="Times,serif" font-size="14.00">OpenAPI::V1::MachinesController</text>
|
||||
<polyline fill="none" stroke="black" points="665,-165.5 873,-165.5 "/>
|
||||
<text text-anchor="start" x="673" y="-150.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="665,-142.5 873,-142.5 "/>
|
||||
<polyline fill="none" stroke="black" points="665,-118.5 873,-118.5 "/>
|
||||
<text text-anchor="start" x="673" y="-103.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::UserTrainingsController -->
|
||||
<g id="node7" class="node"><title>OpenAPI::V1::UserTrainingsController</title>
|
||||
<path fill="none" stroke="black" d="M202,-495C202,-495 410,-495 410,-495 416,-495 422,-501 422,-507 422,-507 422,-591 422,-591 422,-597 416,-603 410,-603 410,-603 202,-603 202,-603 196,-603 190,-597 190,-591 190,-591 190,-507 190,-507 190,-501 196,-495 202,-495"/>
|
||||
<text text-anchor="middle" x="306" y="-587.8" font-family="Times,serif" font-size="14.00">OpenAPI::V1::UserTrainingsController</text>
|
||||
<polyline fill="none" stroke="black" points="190,-580 422,-580 "/>
|
||||
<text text-anchor="start" x="198" y="-564.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="190,-557 422,-557 "/>
|
||||
<polyline fill="none" stroke="black" points="190,-533 422,-533 "/>
|
||||
<text text-anchor="start" x="198" y="-517.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="198" y="-502.8" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
<path fill="none" stroke="black" d="M-311,-495C-311,-495 -103,-495 -103,-495 -97,-495 -91,-501 -91,-507 -91,-507 -91,-591 -91,-591 -91,-597 -97,-603 -103,-603 -103,-603 -311,-603 -311,-603 -317,-603 -323,-597 -323,-591 -323,-591 -323,-507 -323,-507 -323,-501 -317,-495 -311,-495"/>
|
||||
<text text-anchor="middle" x="-207" y="-587.8" font-family="Times,serif" font-size="14.00">OpenAPI::V1::UserTrainingsController</text>
|
||||
<polyline fill="none" stroke="black" points="-323,-580 -91,-580 "/>
|
||||
<text text-anchor="start" x="-315" y="-564.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-323,-557 -91,-557 "/>
|
||||
<polyline fill="none" stroke="black" points="-323,-533 -91,-533 "/>
|
||||
<text text-anchor="start" x="-315" y="-517.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-315" y="-502.8" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::BaseController -->
|
||||
<g id="node8" class="node"><title>OpenAPI::V1::BaseController</title>
|
||||
<path fill="none" stroke="black" d="M-310.5,-0.5C-310.5,-0.5 -153.5,-0.5 -153.5,-0.5 -147.5,-0.5 -141.5,-6.5 -141.5,-12.5 -141.5,-12.5 -141.5,-171.5 -141.5,-171.5 -141.5,-177.5 -147.5,-183.5 -153.5,-183.5 -153.5,-183.5 -310.5,-183.5 -310.5,-183.5 -316.5,-183.5 -322.5,-177.5 -322.5,-171.5 -322.5,-171.5 -322.5,-12.5 -322.5,-12.5 -322.5,-6.5 -316.5,-0.5 -310.5,-0.5"/>
|
||||
<text text-anchor="middle" x="-232" y="-168.3" font-family="Times,serif" font-size="14.00">OpenAPI::V1::BaseController</text>
|
||||
<polyline fill="none" stroke="black" points="-322.5,-160.5 -141.5,-160.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-322.5,-136.5 -141.5,-136.5 "/>
|
||||
<text text-anchor="start" x="-314.5" y="-121.3" font-family="Times,serif" font-size="14.00">authenticate</text>
|
||||
<text text-anchor="start" x="-314.5" y="-106.3" font-family="Times,serif" font-size="14.00">authenticate_token</text>
|
||||
<text text-anchor="start" x="-314.5" y="-91.3" font-family="Times,serif" font-size="14.00">bad_request</text>
|
||||
<text text-anchor="start" x="-314.5" y="-76.3" font-family="Times,serif" font-size="14.00">current_api_client</text>
|
||||
<text text-anchor="start" x="-314.5" y="-61.3" font-family="Times,serif" font-size="14.00">not_found</text>
|
||||
<text text-anchor="start" x="-314.5" y="-46.3" font-family="Times,serif" font-size="14.00">render_unauthorized</text>
|
||||
<polyline fill="none" stroke="black" points="-322.5,-38.5 -141.5,-38.5 "/>
|
||||
<text text-anchor="start" x="-314.5" y="-23.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-314.5" y="-8.3" font-family="Times,serif" font-size="14.00">increment_calls_count</text>
|
||||
<path fill="none" stroke="black" d="M-310.5,246.5C-310.5,246.5 -153.5,246.5 -153.5,246.5 -147.5,246.5 -141.5,240.5 -141.5,234.5 -141.5,234.5 -141.5,75.5 -141.5,75.5 -141.5,69.5 -147.5,63.5 -153.5,63.5 -153.5,63.5 -310.5,63.5 -310.5,63.5 -316.5,63.5 -322.5,69.5 -322.5,75.5 -322.5,75.5 -322.5,234.5 -322.5,234.5 -322.5,240.5 -316.5,246.5 -310.5,246.5"/>
|
||||
<text text-anchor="middle" x="-232" y="78.7" font-family="Times,serif" font-size="14.00">OpenAPI::V1::BaseController</text>
|
||||
<polyline fill="none" stroke="black" points="-322.5,86.5 -141.5,86.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-322.5,110.5 -141.5,110.5 "/>
|
||||
<text text-anchor="start" x="-314.5" y="125.7" font-family="Times,serif" font-size="14.00">authenticate</text>
|
||||
<text text-anchor="start" x="-314.5" y="140.7" font-family="Times,serif" font-size="14.00">authenticate_token</text>
|
||||
<text text-anchor="start" x="-314.5" y="155.7" font-family="Times,serif" font-size="14.00">bad_request</text>
|
||||
<text text-anchor="start" x="-314.5" y="170.7" font-family="Times,serif" font-size="14.00">current_api_client</text>
|
||||
<text text-anchor="start" x="-314.5" y="185.7" font-family="Times,serif" font-size="14.00">not_found</text>
|
||||
<text text-anchor="start" x="-314.5" y="200.7" font-family="Times,serif" font-size="14.00">render_unauthorized</text>
|
||||
<polyline fill="none" stroke="black" points="-322.5,208.5 -141.5,208.5 "/>
|
||||
<text text-anchor="start" x="-314.5" y="223.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-314.5" y="238.7" font-family="Times,serif" font-size="14.00">increment_calls_count</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::UsersController -->
|
||||
<g id="node9" class="node"><title>OpenAPI::V1::UsersController</title>
|
||||
<path fill="none" stroke="black" d="M-482.5,-704C-482.5,-704 -321.5,-704 -321.5,-704 -315.5,-704 -309.5,-710 -309.5,-716 -309.5,-716 -309.5,-800 -309.5,-800 -309.5,-806 -315.5,-812 -321.5,-812 -321.5,-812 -482.5,-812 -482.5,-812 -488.5,-812 -494.5,-806 -494.5,-800 -494.5,-800 -494.5,-716 -494.5,-716 -494.5,-710 -488.5,-704 -482.5,-704"/>
|
||||
<text text-anchor="middle" x="-402" y="-796.8" font-family="Times,serif" font-size="14.00">OpenAPI::V1::UsersController</text>
|
||||
<polyline fill="none" stroke="black" points="-494.5,-789 -309.5,-789 "/>
|
||||
<text text-anchor="start" x="-486.5" y="-773.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-494.5,-766 -309.5,-766 "/>
|
||||
<polyline fill="none" stroke="black" points="-494.5,-742 -309.5,-742 "/>
|
||||
<text text-anchor="start" x="-486.5" y="-726.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-486.5" y="-711.8" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
<path fill="none" stroke="black" d="M-634.5,607C-634.5,607 -473.5,607 -473.5,607 -467.5,607 -461.5,601 -461.5,595 -461.5,595 -461.5,511 -461.5,511 -461.5,505 -467.5,499 -473.5,499 -473.5,499 -634.5,499 -634.5,499 -640.5,499 -646.5,505 -646.5,511 -646.5,511 -646.5,595 -646.5,595 -646.5,601 -640.5,607 -634.5,607"/>
|
||||
<text text-anchor="middle" x="-554" y="514.2" font-family="Times,serif" font-size="14.00">OpenAPI::V1::UsersController</text>
|
||||
<polyline fill="none" stroke="black" points="-646.5,522 -461.5,522 "/>
|
||||
<text text-anchor="start" x="-638.5" y="537.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-646.5,545 -461.5,545 "/>
|
||||
<polyline fill="none" stroke="black" points="-646.5,569 -461.5,569 "/>
|
||||
<text text-anchor="start" x="-638.5" y="584.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-638.5" y="599.2" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::TrainingsController -->
|
||||
<g id="node10" class="node"><title>OpenAPI::V1::TrainingsController</title>
|
||||
<path fill="none" stroke="black" d="M734,398.5C734,398.5 916,398.5 916,398.5 922,398.5 928,392.5 928,386.5 928,386.5 928,317.5 928,317.5 928,311.5 922,305.5 916,305.5 916,305.5 734,305.5 734,305.5 728,305.5 722,311.5 722,317.5 722,317.5 722,386.5 722,386.5 722,392.5 728,398.5 734,398.5"/>
|
||||
<text text-anchor="middle" x="825" y="320.7" font-family="Times,serif" font-size="14.00">OpenAPI::V1::TrainingsController</text>
|
||||
<polyline fill="none" stroke="black" points="722,328.5 928,328.5 "/>
|
||||
<text text-anchor="start" x="730" y="343.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="722,351.5 928,351.5 "/>
|
||||
<polyline fill="none" stroke="black" points="722,375.5 928,375.5 "/>
|
||||
<text text-anchor="start" x="730" y="390.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M677,-228.5C677,-228.5 859,-228.5 859,-228.5 865,-228.5 871,-234.5 871,-240.5 871,-240.5 871,-309.5 871,-309.5 871,-315.5 865,-321.5 859,-321.5 859,-321.5 677,-321.5 677,-321.5 671,-321.5 665,-315.5 665,-309.5 665,-309.5 665,-240.5 665,-240.5 665,-234.5 671,-228.5 677,-228.5"/>
|
||||
<text text-anchor="middle" x="768" y="-306.3" font-family="Times,serif" font-size="14.00">OpenAPI::V1::TrainingsController</text>
|
||||
<polyline fill="none" stroke="black" points="665,-298.5 871,-298.5 "/>
|
||||
<text text-anchor="start" x="673" y="-283.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="665,-275.5 871,-275.5 "/>
|
||||
<polyline fill="none" stroke="black" points="665,-251.5 871,-251.5 "/>
|
||||
<text text-anchor="start" x="673" y="-236.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- OpenAPI::V1::InvoicesController -->
|
||||
<g id="node11" class="node"><title>OpenAPI::V1::InvoicesController</title>
|
||||
<path fill="none" stroke="black" d="M107,550.5C107,550.5 283,550.5 283,550.5 289,550.5 295,544.5 295,538.5 295,538.5 295,439.5 295,439.5 295,433.5 289,427.5 283,427.5 283,427.5 107,427.5 107,427.5 101,427.5 95,433.5 95,439.5 95,439.5 95,538.5 95,538.5 95,544.5 101,550.5 107,550.5"/>
|
||||
<text text-anchor="middle" x="195" y="442.7" font-family="Times,serif" font-size="14.00">OpenAPI::V1::InvoicesController</text>
|
||||
<polyline fill="none" stroke="black" points="95,450.5 295,450.5 "/>
|
||||
<text text-anchor="start" x="103" y="465.7" font-family="Times,serif" font-size="14.00">download</text>
|
||||
<text text-anchor="start" x="103" y="480.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="95,488.5 295,488.5 "/>
|
||||
<polyline fill="none" stroke="black" points="95,512.5 295,512.5 "/>
|
||||
<text text-anchor="start" x="103" y="527.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="103" y="542.7" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
<path fill="none" stroke="black" d="M-26,-532.5C-26,-532.5 150,-532.5 150,-532.5 156,-532.5 162,-538.5 162,-544.5 162,-544.5 162,-643.5 162,-643.5 162,-649.5 156,-655.5 150,-655.5 150,-655.5 -26,-655.5 -26,-655.5 -32,-655.5 -38,-649.5 -38,-643.5 -38,-643.5 -38,-544.5 -38,-544.5 -38,-538.5 -32,-532.5 -26,-532.5"/>
|
||||
<text text-anchor="middle" x="62" y="-640.3" font-family="Times,serif" font-size="14.00">OpenAPI::V1::InvoicesController</text>
|
||||
<polyline fill="none" stroke="black" points="-38,-632.5 162,-632.5 "/>
|
||||
<text text-anchor="start" x="-30" y="-617.3" font-family="Times,serif" font-size="14.00">download</text>
|
||||
<text text-anchor="start" x="-30" y="-602.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-38,-594.5 162,-594.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-38,-570.5 162,-570.5 "/>
|
||||
<text text-anchor="start" x="-30" y="-555.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-30" y="-540.3" font-family="Times,serif" font-size="14.00">per_page</text>
|
||||
</g>
|
||||
<!-- RegistrationsController -->
|
||||
<g id="node12" class="node"><title>RegistrationsController</title>
|
||||
<path fill="none" stroke="black" d="M544.5,759.5C544.5,759.5 663.5,759.5 663.5,759.5 669.5,759.5 675.5,753.5 675.5,747.5 675.5,747.5 675.5,678.5 675.5,678.5 675.5,672.5 669.5,666.5 663.5,666.5 663.5,666.5 544.5,666.5 544.5,666.5 538.5,666.5 532.5,672.5 532.5,678.5 532.5,678.5 532.5,747.5 532.5,747.5 532.5,753.5 538.5,759.5 544.5,759.5"/>
|
||||
<text text-anchor="middle" x="604" y="681.7" font-family="Times,serif" font-size="14.00">RegistrationsController</text>
|
||||
<polyline fill="none" stroke="black" points="532.5,689.5 675.5,689.5 "/>
|
||||
<text text-anchor="start" x="540.5" y="704.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<polyline fill="none" stroke="black" points="532.5,712.5 675.5,712.5 "/>
|
||||
<polyline fill="none" stroke="black" points="532.5,736.5 675.5,736.5 "/>
|
||||
<text text-anchor="start" x="540.5" y="751.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M772.5,37.5C772.5,37.5 891.5,37.5 891.5,37.5 897.5,37.5 903.5,31.5 903.5,25.5 903.5,25.5 903.5,-43.5 903.5,-43.5 903.5,-49.5 897.5,-55.5 891.5,-55.5 891.5,-55.5 772.5,-55.5 772.5,-55.5 766.5,-55.5 760.5,-49.5 760.5,-43.5 760.5,-43.5 760.5,25.5 760.5,25.5 760.5,31.5 766.5,37.5 772.5,37.5"/>
|
||||
<text text-anchor="middle" x="832" y="-40.3" font-family="Times,serif" font-size="14.00">RegistrationsController</text>
|
||||
<polyline fill="none" stroke="black" points="760.5,-32.5 903.5,-32.5 "/>
|
||||
<text text-anchor="start" x="768.5" y="-17.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<polyline fill="none" stroke="black" points="760.5,-9.5 903.5,-9.5 "/>
|
||||
<polyline fill="none" stroke="black" points="760.5,14.5 903.5,14.5 "/>
|
||||
<text text-anchor="start" x="768.5" y="29.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::TagsController -->
|
||||
<g id="node13" class="node"><title>API::TagsController</title>
|
||||
<path fill="none" stroke="black" d="M-634,227.5C-634,227.5 -530,227.5 -530,227.5 -524,227.5 -518,221.5 -518,215.5 -518,215.5 -518,56.5 -518,56.5 -518,50.5 -524,44.5 -530,44.5 -530,44.5 -634,44.5 -634,44.5 -640,44.5 -646,50.5 -646,56.5 -646,56.5 -646,215.5 -646,215.5 -646,221.5 -640,227.5 -634,227.5"/>
|
||||
<text text-anchor="middle" x="-582" y="59.7" font-family="Times,serif" font-size="14.00">API::TagsController</text>
|
||||
<polyline fill="none" stroke="black" points="-646,67.5 -518,67.5 "/>
|
||||
<text text-anchor="start" x="-638" y="82.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-638" y="97.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-638" y="112.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-638" y="127.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-638" y="142.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-646,150.5 -518,150.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-646,174.5 -518,174.5 "/>
|
||||
<text text-anchor="start" x="-638" y="189.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-638" y="204.7" font-family="Times,serif" font-size="14.00">set_tag</text>
|
||||
<text text-anchor="start" x="-638" y="219.7" font-family="Times,serif" font-size="14.00">tag_params</text>
|
||||
<path fill="none" stroke="black" d="M658,-399.5C658,-399.5 762,-399.5 762,-399.5 768,-399.5 774,-405.5 774,-411.5 774,-411.5 774,-570.5 774,-570.5 774,-576.5 768,-582.5 762,-582.5 762,-582.5 658,-582.5 658,-582.5 652,-582.5 646,-576.5 646,-570.5 646,-570.5 646,-411.5 646,-411.5 646,-405.5 652,-399.5 658,-399.5"/>
|
||||
<text text-anchor="middle" x="710" y="-567.3" font-family="Times,serif" font-size="14.00">API::TagsController</text>
|
||||
<polyline fill="none" stroke="black" points="646,-559.5 774,-559.5 "/>
|
||||
<text text-anchor="start" x="654" y="-544.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="654" y="-529.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="654" y="-514.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="654" y="-499.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="654" y="-484.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="646,-476.5 774,-476.5 "/>
|
||||
<polyline fill="none" stroke="black" points="646,-452.5 774,-452.5 "/>
|
||||
<text text-anchor="start" x="654" y="-437.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="654" y="-422.3" font-family="Times,serif" font-size="14.00">set_tag</text>
|
||||
<text text-anchor="start" x="654" y="-407.3" font-family="Times,serif" font-size="14.00">tag_params</text>
|
||||
</g>
|
||||
<!-- API::StatisticsController -->
|
||||
<g id="node14" class="node"><title>API::StatisticsController</title>
|
||||
@ -185,30 +185,30 @@
|
||||
</g>
|
||||
<!-- API::TrainingsPricingsController -->
|
||||
<g id="node15" class="node"><title>API::TrainingsPricingsController</title>
|
||||
<path fill="none" stroke="black" d="M563.5,94.5C563.5,94.5 736.5,94.5 736.5,94.5 742.5,94.5 748.5,88.5 748.5,82.5 748.5,82.5 748.5,-16.5 748.5,-16.5 748.5,-22.5 742.5,-28.5 736.5,-28.5 736.5,-28.5 563.5,-28.5 563.5,-28.5 557.5,-28.5 551.5,-22.5 551.5,-16.5 551.5,-16.5 551.5,82.5 551.5,82.5 551.5,88.5 557.5,94.5 563.5,94.5"/>
|
||||
<text text-anchor="middle" x="650" y="-13.3" font-family="Times,serif" font-size="14.00">API::TrainingsPricingsController</text>
|
||||
<polyline fill="none" stroke="black" points="551.5,-5.5 748.5,-5.5 "/>
|
||||
<text text-anchor="start" x="559.5" y="9.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="559.5" y="24.7" font-family="Times,serif" font-size="14.00">trainings_pricing_params</text>
|
||||
<text text-anchor="start" x="559.5" y="39.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="551.5,47.5 748.5,47.5 "/>
|
||||
<polyline fill="none" stroke="black" points="551.5,71.5 748.5,71.5 "/>
|
||||
<text text-anchor="start" x="559.5" y="86.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M12.5,569.5C12.5,569.5 185.5,569.5 185.5,569.5 191.5,569.5 197.5,563.5 197.5,557.5 197.5,557.5 197.5,458.5 197.5,458.5 197.5,452.5 191.5,446.5 185.5,446.5 185.5,446.5 12.5,446.5 12.5,446.5 6.5,446.5 0.5,452.5 0.5,458.5 0.5,458.5 0.5,557.5 0.5,557.5 0.5,563.5 6.5,569.5 12.5,569.5"/>
|
||||
<text text-anchor="middle" x="99" y="461.7" font-family="Times,serif" font-size="14.00">API::TrainingsPricingsController</text>
|
||||
<polyline fill="none" stroke="black" points="0.5,469.5 197.5,469.5 "/>
|
||||
<text text-anchor="start" x="8.5" y="484.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="8.5" y="499.7" font-family="Times,serif" font-size="14.00">trainings_pricing_params</text>
|
||||
<text text-anchor="start" x="8.5" y="514.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="0.5,522.5 197.5,522.5 "/>
|
||||
<polyline fill="none" stroke="black" points="0.5,546.5 197.5,546.5 "/>
|
||||
<text text-anchor="start" x="8.5" y="561.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::PlansController -->
|
||||
<g id="node16" class="node"><title>API::PlansController</title>
|
||||
<path fill="none" stroke="black" d="M-633.5,-494C-633.5,-494 -526.5,-494 -526.5,-494 -520.5,-494 -514.5,-500 -514.5,-506 -514.5,-506 -514.5,-650 -514.5,-650 -514.5,-656 -520.5,-662 -526.5,-662 -526.5,-662 -633.5,-662 -633.5,-662 -639.5,-662 -645.5,-656 -645.5,-650 -645.5,-650 -645.5,-506 -645.5,-506 -645.5,-500 -639.5,-494 -633.5,-494"/>
|
||||
<text text-anchor="middle" x="-580" y="-646.8" font-family="Times,serif" font-size="14.00">API::PlansController</text>
|
||||
<polyline fill="none" stroke="black" points="-645.5,-639 -514.5,-639 "/>
|
||||
<text text-anchor="start" x="-637.5" y="-623.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-637.5" y="-608.8" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-637.5" y="-593.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-637.5" y="-578.8" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-637.5" y="-563.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-645.5,-556 -514.5,-556 "/>
|
||||
<polyline fill="none" stroke="black" points="-645.5,-532 -514.5,-532 "/>
|
||||
<text text-anchor="start" x="-637.5" y="-516.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-637.5" y="-501.8" font-family="Times,serif" font-size="14.00">plan_params</text>
|
||||
<path fill="none" stroke="black" d="M-633.5,-304C-633.5,-304 -526.5,-304 -526.5,-304 -520.5,-304 -514.5,-310 -514.5,-316 -514.5,-316 -514.5,-460 -514.5,-460 -514.5,-466 -520.5,-472 -526.5,-472 -526.5,-472 -633.5,-472 -633.5,-472 -639.5,-472 -645.5,-466 -645.5,-460 -645.5,-460 -645.5,-316 -645.5,-316 -645.5,-310 -639.5,-304 -633.5,-304"/>
|
||||
<text text-anchor="middle" x="-580" y="-456.8" font-family="Times,serif" font-size="14.00">API::PlansController</text>
|
||||
<polyline fill="none" stroke="black" points="-645.5,-449 -514.5,-449 "/>
|
||||
<text text-anchor="start" x="-637.5" y="-433.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-637.5" y="-418.8" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-637.5" y="-403.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-637.5" y="-388.8" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-637.5" y="-373.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-645.5,-366 -514.5,-366 "/>
|
||||
<polyline fill="none" stroke="black" points="-645.5,-342 -514.5,-342 "/>
|
||||
<text text-anchor="start" x="-637.5" y="-326.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-637.5" y="-311.8" font-family="Times,serif" font-size="14.00">plan_params</text>
|
||||
</g>
|
||||
<!-- API::AuthProvidersController -->
|
||||
<g id="node17" class="node"><title>API::AuthProvidersController</title>
|
||||
@ -230,144 +230,144 @@
|
||||
</g>
|
||||
<!-- API::CouponsController -->
|
||||
<g id="node18" class="node"><title>API::CouponsController</title>
|
||||
<path fill="none" stroke="black" d="M-292,265C-292,265 -164,265 -164,265 -158,265 -152,259 -152,253 -152,253 -152,49 -152,49 -152,43 -158,37 -164,37 -164,37 -292,37 -292,37 -298,37 -304,43 -304,49 -304,49 -304,253 -304,253 -304,259 -298,265 -292,265"/>
|
||||
<text text-anchor="middle" x="-228" y="52.2" font-family="Times,serif" font-size="14.00">API::CouponsController</text>
|
||||
<polyline fill="none" stroke="black" points="-304,60 -152,60 "/>
|
||||
<text text-anchor="start" x="-296" y="75.2" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-296" y="90.2" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-296" y="105.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-296" y="120.2" font-family="Times,serif" font-size="14.00">send_to</text>
|
||||
<text text-anchor="start" x="-296" y="135.2" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-296" y="150.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<text text-anchor="start" x="-296" y="165.2" font-family="Times,serif" font-size="14.00">validate</text>
|
||||
<polyline fill="none" stroke="black" points="-304,173 -152,173 "/>
|
||||
<polyline fill="none" stroke="black" points="-304,197 -152,197 "/>
|
||||
<text text-anchor="start" x="-296" y="212.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-296" y="227.2" font-family="Times,serif" font-size="14.00">coupon_editable_params</text>
|
||||
<text text-anchor="start" x="-296" y="242.2" font-family="Times,serif" font-size="14.00">coupon_params</text>
|
||||
<text text-anchor="start" x="-296" y="257.2" font-family="Times,serif" font-size="14.00">set_coupon</text>
|
||||
<path fill="none" stroke="black" d="M335,322C335,322 463,322 463,322 469,322 475,316 475,310 475,310 475,106 475,106 475,100 469,94 463,94 463,94 335,94 335,94 329,94 323,100 323,106 323,106 323,310 323,310 323,316 329,322 335,322"/>
|
||||
<text text-anchor="middle" x="399" y="109.2" font-family="Times,serif" font-size="14.00">API::CouponsController</text>
|
||||
<polyline fill="none" stroke="black" points="323,117 475,117 "/>
|
||||
<text text-anchor="start" x="331" y="132.2" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="331" y="147.2" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="331" y="162.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="331" y="177.2" font-family="Times,serif" font-size="14.00">send_to</text>
|
||||
<text text-anchor="start" x="331" y="192.2" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="331" y="207.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<text text-anchor="start" x="331" y="222.2" font-family="Times,serif" font-size="14.00">validate</text>
|
||||
<polyline fill="none" stroke="black" points="323,230 475,230 "/>
|
||||
<polyline fill="none" stroke="black" points="323,254 475,254 "/>
|
||||
<text text-anchor="start" x="331" y="269.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="331" y="284.2" font-family="Times,serif" font-size="14.00">coupon_editable_params</text>
|
||||
<text text-anchor="start" x="331" y="299.2" font-family="Times,serif" font-size="14.00">coupon_params</text>
|
||||
<text text-anchor="start" x="331" y="314.2" font-family="Times,serif" font-size="14.00">set_coupon</text>
|
||||
</g>
|
||||
<!-- API::AgeRangesController -->
|
||||
<g id="node19" class="node"><title>API::AgeRangesController</title>
|
||||
<path fill="none" stroke="black" d="M-463,-475.5C-463,-475.5 -323,-475.5 -323,-475.5 -317,-475.5 -311,-481.5 -311,-487.5 -311,-487.5 -311,-646.5 -311,-646.5 -311,-652.5 -317,-658.5 -323,-658.5 -323,-658.5 -463,-658.5 -463,-658.5 -469,-658.5 -475,-652.5 -475,-646.5 -475,-646.5 -475,-487.5 -475,-487.5 -475,-481.5 -469,-475.5 -463,-475.5"/>
|
||||
<text text-anchor="middle" x="-393" y="-643.3" font-family="Times,serif" font-size="14.00">API::AgeRangesController</text>
|
||||
<polyline fill="none" stroke="black" points="-475,-635.5 -311,-635.5 "/>
|
||||
<text text-anchor="start" x="-467" y="-620.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-467" y="-605.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-467" y="-590.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-467" y="-575.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-467" y="-560.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-475,-552.5 -311,-552.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-475,-528.5 -311,-528.5 "/>
|
||||
<text text-anchor="start" x="-467" y="-513.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-467" y="-498.3" font-family="Times,serif" font-size="14.00">age_range_params</text>
|
||||
<text text-anchor="start" x="-467" y="-483.3" font-family="Times,serif" font-size="14.00">set_age_range</text>
|
||||
<path fill="none" stroke="black" d="M-463,-266.5C-463,-266.5 -323,-266.5 -323,-266.5 -317,-266.5 -311,-272.5 -311,-278.5 -311,-278.5 -311,-437.5 -311,-437.5 -311,-443.5 -317,-449.5 -323,-449.5 -323,-449.5 -463,-449.5 -463,-449.5 -469,-449.5 -475,-443.5 -475,-437.5 -475,-437.5 -475,-278.5 -475,-278.5 -475,-272.5 -469,-266.5 -463,-266.5"/>
|
||||
<text text-anchor="middle" x="-393" y="-434.3" font-family="Times,serif" font-size="14.00">API::AgeRangesController</text>
|
||||
<polyline fill="none" stroke="black" points="-475,-426.5 -311,-426.5 "/>
|
||||
<text text-anchor="start" x="-467" y="-411.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-467" y="-396.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-467" y="-381.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-467" y="-366.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-467" y="-351.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-475,-343.5 -311,-343.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-475,-319.5 -311,-319.5 "/>
|
||||
<text text-anchor="start" x="-467" y="-304.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-467" y="-289.3" font-family="Times,serif" font-size="14.00">age_range_params</text>
|
||||
<text text-anchor="start" x="-467" y="-274.3" font-family="Times,serif" font-size="14.00">set_age_range</text>
|
||||
</g>
|
||||
<!-- API::CreditsController -->
|
||||
<g id="node20" class="node"><title>API::CreditsController</title>
|
||||
<path fill="none" stroke="black" d="M-178,627C-178,627 -62,627 -62,627 -56,627 -50,621 -50,615 -50,615 -50,471 -50,471 -50,465 -56,459 -62,459 -62,459 -178,459 -178,459 -184,459 -190,465 -190,471 -190,471 -190,615 -190,615 -190,621 -184,627 -178,627"/>
|
||||
<text text-anchor="middle" x="-120" y="474.2" font-family="Times,serif" font-size="14.00">API::CreditsController</text>
|
||||
<polyline fill="none" stroke="black" points="-190,482 -50,482 "/>
|
||||
<text text-anchor="start" x="-182" y="497.2" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-182" y="512.2" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-182" y="527.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-182" y="542.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-190,550 -50,550 "/>
|
||||
<polyline fill="none" stroke="black" points="-190,574 -50,574 "/>
|
||||
<text text-anchor="start" x="-182" y="589.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-182" y="604.2" font-family="Times,serif" font-size="14.00">credit_params</text>
|
||||
<text text-anchor="start" x="-182" y="619.2" font-family="Times,serif" font-size="14.00">set_credit</text>
|
||||
<path fill="none" stroke="black" d="M658,-627C658,-627 774,-627 774,-627 780,-627 786,-633 786,-639 786,-639 786,-783 786,-783 786,-789 780,-795 774,-795 774,-795 658,-795 658,-795 652,-795 646,-789 646,-783 646,-783 646,-639 646,-639 646,-633 652,-627 658,-627"/>
|
||||
<text text-anchor="middle" x="716" y="-779.8" font-family="Times,serif" font-size="14.00">API::CreditsController</text>
|
||||
<polyline fill="none" stroke="black" points="646,-772 786,-772 "/>
|
||||
<text text-anchor="start" x="654" y="-756.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="654" y="-741.8" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="654" y="-726.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="654" y="-711.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="646,-704 786,-704 "/>
|
||||
<polyline fill="none" stroke="black" points="646,-680 786,-680 "/>
|
||||
<text text-anchor="start" x="654" y="-664.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="654" y="-649.8" font-family="Times,serif" font-size="14.00">credit_params</text>
|
||||
<text text-anchor="start" x="654" y="-634.8" font-family="Times,serif" font-size="14.00">set_credit</text>
|
||||
</g>
|
||||
<!-- API::OpenlabProjectsController -->
|
||||
<g id="node21" class="node"><title>API::OpenlabProjectsController</title>
|
||||
<path fill="none" stroke="black" d="M734.5,265.5C734.5,265.5 901.5,265.5 901.5,265.5 907.5,265.5 913.5,259.5 913.5,253.5 913.5,253.5 913.5,184.5 913.5,184.5 913.5,178.5 907.5,172.5 901.5,172.5 901.5,172.5 734.5,172.5 734.5,172.5 728.5,172.5 722.5,178.5 722.5,184.5 722.5,184.5 722.5,253.5 722.5,253.5 722.5,259.5 728.5,265.5 734.5,265.5"/>
|
||||
<text text-anchor="middle" x="818" y="187.7" font-family="Times,serif" font-size="14.00">API::OpenlabProjectsController</text>
|
||||
<polyline fill="none" stroke="black" points="722.5,195.5 913.5,195.5 "/>
|
||||
<text text-anchor="start" x="730.5" y="210.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="722.5,218.5 913.5,218.5 "/>
|
||||
<polyline fill="none" stroke="black" points="722.5,242.5 913.5,242.5 "/>
|
||||
<text text-anchor="start" x="730.5" y="257.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M696.5,683.5C696.5,683.5 863.5,683.5 863.5,683.5 869.5,683.5 875.5,677.5 875.5,671.5 875.5,671.5 875.5,602.5 875.5,602.5 875.5,596.5 869.5,590.5 863.5,590.5 863.5,590.5 696.5,590.5 696.5,590.5 690.5,590.5 684.5,596.5 684.5,602.5 684.5,602.5 684.5,671.5 684.5,671.5 684.5,677.5 690.5,683.5 696.5,683.5"/>
|
||||
<text text-anchor="middle" x="780" y="605.7" font-family="Times,serif" font-size="14.00">API::OpenlabProjectsController</text>
|
||||
<polyline fill="none" stroke="black" points="684.5,613.5 875.5,613.5 "/>
|
||||
<text text-anchor="start" x="692.5" y="628.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="684.5,636.5 875.5,636.5 "/>
|
||||
<polyline fill="none" stroke="black" points="684.5,660.5 875.5,660.5 "/>
|
||||
<text text-anchor="start" x="692.5" y="675.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::ComponentsController -->
|
||||
<g id="node22" class="node"><title>API::ComponentsController</title>
|
||||
<path fill="none" stroke="black" d="M-463,-247.5C-463,-247.5 -317,-247.5 -317,-247.5 -311,-247.5 -305,-253.5 -305,-259.5 -305,-259.5 -305,-418.5 -305,-418.5 -305,-424.5 -311,-430.5 -317,-430.5 -317,-430.5 -463,-430.5 -463,-430.5 -469,-430.5 -475,-424.5 -475,-418.5 -475,-418.5 -475,-259.5 -475,-259.5 -475,-253.5 -469,-247.5 -463,-247.5"/>
|
||||
<text text-anchor="middle" x="-390" y="-415.3" font-family="Times,serif" font-size="14.00">API::ComponentsController</text>
|
||||
<polyline fill="none" stroke="black" points="-475,-407.5 -305,-407.5 "/>
|
||||
<text text-anchor="start" x="-467" y="-392.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-467" y="-377.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-467" y="-362.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-467" y="-347.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-467" y="-332.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-475,-324.5 -305,-324.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-475,-300.5 -305,-300.5 "/>
|
||||
<text text-anchor="start" x="-467" y="-285.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-467" y="-270.3" font-family="Times,serif" font-size="14.00">component_params</text>
|
||||
<text text-anchor="start" x="-467" y="-255.3" font-family="Times,serif" font-size="14.00">set_component</text>
|
||||
<path fill="none" stroke="black" d="M-501,-0.5C-501,-0.5 -355,-0.5 -355,-0.5 -349,-0.5 -343,-6.5 -343,-12.5 -343,-12.5 -343,-171.5 -343,-171.5 -343,-177.5 -349,-183.5 -355,-183.5 -355,-183.5 -501,-183.5 -501,-183.5 -507,-183.5 -513,-177.5 -513,-171.5 -513,-171.5 -513,-12.5 -513,-12.5 -513,-6.5 -507,-0.5 -501,-0.5"/>
|
||||
<text text-anchor="middle" x="-428" y="-168.3" font-family="Times,serif" font-size="14.00">API::ComponentsController</text>
|
||||
<polyline fill="none" stroke="black" points="-513,-160.5 -343,-160.5 "/>
|
||||
<text text-anchor="start" x="-505" y="-145.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-505" y="-130.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-505" y="-115.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-505" y="-100.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-505" y="-85.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-513,-77.5 -343,-77.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-513,-53.5 -343,-53.5 "/>
|
||||
<text text-anchor="start" x="-505" y="-38.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-505" y="-23.3" font-family="Times,serif" font-size="14.00">component_params</text>
|
||||
<text text-anchor="start" x="-505" y="-8.3" font-family="Times,serif" font-size="14.00">set_component</text>
|
||||
</g>
|
||||
<!-- API::CustomAssetsController -->
|
||||
<g id="node23" class="node"><title>API::CustomAssetsController</title>
|
||||
<path fill="none" stroke="black" d="M335.5,322.5C335.5,322.5 490.5,322.5 490.5,322.5 496.5,322.5 502.5,316.5 502.5,310.5 502.5,310.5 502.5,151.5 502.5,151.5 502.5,145.5 496.5,139.5 490.5,139.5 490.5,139.5 335.5,139.5 335.5,139.5 329.5,139.5 323.5,145.5 323.5,151.5 323.5,151.5 323.5,310.5 323.5,310.5 323.5,316.5 329.5,322.5 335.5,322.5"/>
|
||||
<text text-anchor="middle" x="413" y="154.7" font-family="Times,serif" font-size="14.00">API::CustomAssetsController</text>
|
||||
<polyline fill="none" stroke="black" points="323.5,162.5 502.5,162.5 "/>
|
||||
<text text-anchor="start" x="331.5" y="177.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="331.5" y="192.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="331.5" y="207.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="331.5" y="222.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="331.5" y="237.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="323.5,245.5 502.5,245.5 "/>
|
||||
<polyline fill="none" stroke="black" points="323.5,269.5 502.5,269.5 "/>
|
||||
<text text-anchor="start" x="331.5" y="284.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="331.5" y="299.7" font-family="Times,serif" font-size="14.00">custom_asset_params</text>
|
||||
<text text-anchor="start" x="331.5" y="314.7" font-family="Times,serif" font-size="14.00">set_custom_asset</text>
|
||||
<path fill="none" stroke="black" d="M335.5,56.5C335.5,56.5 490.5,56.5 490.5,56.5 496.5,56.5 502.5,50.5 502.5,44.5 502.5,44.5 502.5,-114.5 502.5,-114.5 502.5,-120.5 496.5,-126.5 490.5,-126.5 490.5,-126.5 335.5,-126.5 335.5,-126.5 329.5,-126.5 323.5,-120.5 323.5,-114.5 323.5,-114.5 323.5,44.5 323.5,44.5 323.5,50.5 329.5,56.5 335.5,56.5"/>
|
||||
<text text-anchor="middle" x="413" y="-111.3" font-family="Times,serif" font-size="14.00">API::CustomAssetsController</text>
|
||||
<polyline fill="none" stroke="black" points="323.5,-103.5 502.5,-103.5 "/>
|
||||
<text text-anchor="start" x="331.5" y="-88.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="331.5" y="-73.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="331.5" y="-58.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="331.5" y="-43.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="331.5" y="-28.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="323.5,-20.5 502.5,-20.5 "/>
|
||||
<polyline fill="none" stroke="black" points="323.5,3.5 502.5,3.5 "/>
|
||||
<text text-anchor="start" x="331.5" y="18.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="331.5" y="33.7" font-family="Times,serif" font-size="14.00">custom_asset_params</text>
|
||||
<text text-anchor="start" x="331.5" y="48.7" font-family="Times,serif" font-size="14.00">set_custom_asset</text>
|
||||
</g>
|
||||
<!-- API::PricingController -->
|
||||
<g id="node24" class="node"><title>API::PricingController</title>
|
||||
<path fill="none" stroke="black" d="M753,-742C753,-742 869,-742 869,-742 875,-742 881,-748 881,-754 881,-754 881,-838 881,-838 881,-844 875,-850 869,-850 869,-850 753,-850 753,-850 747,-850 741,-844 741,-838 741,-838 741,-754 741,-754 741,-748 747,-742 753,-742"/>
|
||||
<text text-anchor="middle" x="811" y="-834.8" font-family="Times,serif" font-size="14.00">API::PricingController</text>
|
||||
<polyline fill="none" stroke="black" points="741,-827 881,-827 "/>
|
||||
<text text-anchor="start" x="749" y="-811.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="749" y="-796.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="741,-789 881,-789 "/>
|
||||
<polyline fill="none" stroke="black" points="741,-765 881,-765 "/>
|
||||
<text text-anchor="start" x="749" y="-749.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M-387,-742C-387,-742 -271,-742 -271,-742 -265,-742 -259,-748 -259,-754 -259,-754 -259,-838 -259,-838 -259,-844 -265,-850 -271,-850 -271,-850 -387,-850 -387,-850 -393,-850 -399,-844 -399,-838 -399,-838 -399,-754 -399,-754 -399,-748 -393,-742 -387,-742"/>
|
||||
<text text-anchor="middle" x="-329" y="-834.8" font-family="Times,serif" font-size="14.00">API::PricingController</text>
|
||||
<polyline fill="none" stroke="black" points="-399,-827 -259,-827 "/>
|
||||
<text text-anchor="start" x="-391" y="-811.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-391" y="-796.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-399,-789 -259,-789 "/>
|
||||
<polyline fill="none" stroke="black" points="-399,-765 -259,-765 "/>
|
||||
<text text-anchor="start" x="-391" y="-749.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::AbusesController -->
|
||||
<g id="node25" class="node"><title>API::AbusesController</title>
|
||||
<path fill="none" stroke="black" d="M-652.5,-703.5C-652.5,-703.5 -535.5,-703.5 -535.5,-703.5 -529.5,-703.5 -523.5,-709.5 -523.5,-715.5 -523.5,-715.5 -523.5,-814.5 -523.5,-814.5 -523.5,-820.5 -529.5,-826.5 -535.5,-826.5 -535.5,-826.5 -652.5,-826.5 -652.5,-826.5 -658.5,-826.5 -664.5,-820.5 -664.5,-814.5 -664.5,-814.5 -664.5,-715.5 -664.5,-715.5 -664.5,-709.5 -658.5,-703.5 -652.5,-703.5"/>
|
||||
<text text-anchor="middle" x="-594" y="-811.3" font-family="Times,serif" font-size="14.00">API::AbusesController</text>
|
||||
<polyline fill="none" stroke="black" points="-664.5,-803.5 -523.5,-803.5 "/>
|
||||
<text text-anchor="start" x="-656.5" y="-788.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-656.5" y="-773.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-664.5,-765.5 -523.5,-765.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-664.5,-741.5 -523.5,-741.5 "/>
|
||||
<text text-anchor="start" x="-656.5" y="-726.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-656.5" y="-711.3" font-family="Times,serif" font-size="14.00">abuse_params</text>
|
||||
<path fill="none" stroke="black" d="M-671.5,-684.5C-671.5,-684.5 -554.5,-684.5 -554.5,-684.5 -548.5,-684.5 -542.5,-690.5 -542.5,-696.5 -542.5,-696.5 -542.5,-795.5 -542.5,-795.5 -542.5,-801.5 -548.5,-807.5 -554.5,-807.5 -554.5,-807.5 -671.5,-807.5 -671.5,-807.5 -677.5,-807.5 -683.5,-801.5 -683.5,-795.5 -683.5,-795.5 -683.5,-696.5 -683.5,-696.5 -683.5,-690.5 -677.5,-684.5 -671.5,-684.5"/>
|
||||
<text text-anchor="middle" x="-613" y="-792.3" font-family="Times,serif" font-size="14.00">API::AbusesController</text>
|
||||
<polyline fill="none" stroke="black" points="-683.5,-784.5 -542.5,-784.5 "/>
|
||||
<text text-anchor="start" x="-675.5" y="-769.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-675.5" y="-754.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-683.5,-746.5 -542.5,-746.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-683.5,-722.5 -542.5,-722.5 "/>
|
||||
<text text-anchor="start" x="-675.5" y="-707.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-675.5" y="-692.3" font-family="Times,serif" font-size="14.00">abuse_params</text>
|
||||
</g>
|
||||
<!-- API::PriceCategoriesController -->
|
||||
<g id="node26" class="node"><title>API::PriceCategoriesController</title>
|
||||
<path fill="none" stroke="black" d="M334.5,94.5C334.5,94.5 497.5,94.5 497.5,94.5 503.5,94.5 509.5,88.5 509.5,82.5 509.5,82.5 509.5,-76.5 509.5,-76.5 509.5,-82.5 503.5,-88.5 497.5,-88.5 497.5,-88.5 334.5,-88.5 334.5,-88.5 328.5,-88.5 322.5,-82.5 322.5,-76.5 322.5,-76.5 322.5,82.5 322.5,82.5 322.5,88.5 328.5,94.5 334.5,94.5"/>
|
||||
<text text-anchor="middle" x="416" y="-73.3" font-family="Times,serif" font-size="14.00">API::PriceCategoriesController</text>
|
||||
<polyline fill="none" stroke="black" points="322.5,-65.5 509.5,-65.5 "/>
|
||||
<text text-anchor="start" x="330.5" y="-50.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="330.5" y="-35.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="330.5" y="-20.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="330.5" y="-5.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="330.5" y="9.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="322.5,17.5 509.5,17.5 "/>
|
||||
<polyline fill="none" stroke="black" points="322.5,41.5 509.5,41.5 "/>
|
||||
<text text-anchor="start" x="330.5" y="56.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="330.5" y="71.7" font-family="Times,serif" font-size="14.00">price_category_params</text>
|
||||
<text text-anchor="start" x="330.5" y="86.7" font-family="Times,serif" font-size="14.00">set_price_category</text>
|
||||
<path fill="none" stroke="black" d="M11.5,417.5C11.5,417.5 174.5,417.5 174.5,417.5 180.5,417.5 186.5,411.5 186.5,405.5 186.5,405.5 186.5,246.5 186.5,246.5 186.5,240.5 180.5,234.5 174.5,234.5 174.5,234.5 11.5,234.5 11.5,234.5 5.5,234.5 -0.5,240.5 -0.5,246.5 -0.5,246.5 -0.5,405.5 -0.5,405.5 -0.5,411.5 5.5,417.5 11.5,417.5"/>
|
||||
<text text-anchor="middle" x="93" y="249.7" font-family="Times,serif" font-size="14.00">API::PriceCategoriesController</text>
|
||||
<polyline fill="none" stroke="black" points="-0.5,257.5 186.5,257.5 "/>
|
||||
<text text-anchor="start" x="7.5" y="272.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="7.5" y="287.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="7.5" y="302.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="7.5" y="317.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="7.5" y="332.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-0.5,340.5 186.5,340.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-0.5,364.5 186.5,364.5 "/>
|
||||
<text text-anchor="start" x="7.5" y="379.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="7.5" y="394.7" font-family="Times,serif" font-size="14.00">price_category_params</text>
|
||||
<text text-anchor="start" x="7.5" y="409.7" font-family="Times,serif" font-size="14.00">set_price_category</text>
|
||||
</g>
|
||||
<!-- API::FeedsController -->
|
||||
<g id="node27" class="node"><title>API::FeedsController</title>
|
||||
<path fill="none" stroke="black" d="M772.5,-513.5C772.5,-513.5 881.5,-513.5 881.5,-513.5 887.5,-513.5 893.5,-519.5 893.5,-525.5 893.5,-525.5 893.5,-594.5 893.5,-594.5 893.5,-600.5 887.5,-606.5 881.5,-606.5 881.5,-606.5 772.5,-606.5 772.5,-606.5 766.5,-606.5 760.5,-600.5 760.5,-594.5 760.5,-594.5 760.5,-525.5 760.5,-525.5 760.5,-519.5 766.5,-513.5 772.5,-513.5"/>
|
||||
<text text-anchor="middle" x="827" y="-591.3" font-family="Times,serif" font-size="14.00">API::FeedsController</text>
|
||||
<polyline fill="none" stroke="black" points="760.5,-583.5 893.5,-583.5 "/>
|
||||
<text text-anchor="start" x="768.5" y="-568.3" font-family="Times,serif" font-size="14.00">twitter_timelines</text>
|
||||
<polyline fill="none" stroke="black" points="760.5,-560.5 893.5,-560.5 "/>
|
||||
<polyline fill="none" stroke="black" points="760.5,-536.5 893.5,-536.5 "/>
|
||||
<text text-anchor="start" x="768.5" y="-521.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M392.5,778.5C392.5,778.5 501.5,778.5 501.5,778.5 507.5,778.5 513.5,772.5 513.5,766.5 513.5,766.5 513.5,697.5 513.5,697.5 513.5,691.5 507.5,685.5 501.5,685.5 501.5,685.5 392.5,685.5 392.5,685.5 386.5,685.5 380.5,691.5 380.5,697.5 380.5,697.5 380.5,766.5 380.5,766.5 380.5,772.5 386.5,778.5 392.5,778.5"/>
|
||||
<text text-anchor="middle" x="447" y="700.7" font-family="Times,serif" font-size="14.00">API::FeedsController</text>
|
||||
<polyline fill="none" stroke="black" points="380.5,708.5 513.5,708.5 "/>
|
||||
<text text-anchor="start" x="388.5" y="723.7" font-family="Times,serif" font-size="14.00">twitter_timelines</text>
|
||||
<polyline fill="none" stroke="black" points="380.5,731.5 513.5,731.5 "/>
|
||||
<polyline fill="none" stroke="black" points="380.5,755.5 513.5,755.5 "/>
|
||||
<text text-anchor="start" x="388.5" y="770.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::MembersController -->
|
||||
<g id="node28" class="node"><title>API::MembersController</title>
|
||||
@ -395,139 +395,139 @@
|
||||
</g>
|
||||
<!-- API::PricesController -->
|
||||
<g id="node29" class="node"><title>API::PricesController</title>
|
||||
<path fill="none" stroke="black" d="M-425,646C-425,646 -305,646 -305,646 -299,646 -293,640 -293,634 -293,634 -293,490 -293,490 -293,484 -299,478 -305,478 -305,478 -425,478 -425,478 -431,478 -437,484 -437,490 -437,490 -437,634 -437,634 -437,640 -431,646 -425,646"/>
|
||||
<text text-anchor="middle" x="-365" y="493.2" font-family="Times,serif" font-size="14.00">API::PricesController</text>
|
||||
<polyline fill="none" stroke="black" points="-437,501 -293,501 "/>
|
||||
<text text-anchor="start" x="-429" y="516.2" font-family="Times,serif" font-size="14.00">compute</text>
|
||||
<text text-anchor="start" x="-429" y="531.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-429" y="546.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-437,554 -293,554 "/>
|
||||
<polyline fill="none" stroke="black" points="-437,578 -293,578 "/>
|
||||
<text text-anchor="start" x="-429" y="593.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-429" y="608.2" font-family="Times,serif" font-size="14.00">compute_price_params</text>
|
||||
<text text-anchor="start" x="-429" y="623.2" font-family="Times,serif" font-size="14.00">coupon_params</text>
|
||||
<text text-anchor="start" x="-429" y="638.2" font-family="Times,serif" font-size="14.00">price_params</text>
|
||||
<path fill="none" stroke="black" d="M468,-646C468,-646 588,-646 588,-646 594,-646 600,-652 600,-658 600,-658 600,-802 600,-802 600,-808 594,-814 588,-814 588,-814 468,-814 468,-814 462,-814 456,-808 456,-802 456,-802 456,-658 456,-658 456,-652 462,-646 468,-646"/>
|
||||
<text text-anchor="middle" x="528" y="-798.8" font-family="Times,serif" font-size="14.00">API::PricesController</text>
|
||||
<polyline fill="none" stroke="black" points="456,-791 600,-791 "/>
|
||||
<text text-anchor="start" x="464" y="-775.8" font-family="Times,serif" font-size="14.00">compute</text>
|
||||
<text text-anchor="start" x="464" y="-760.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="464" y="-745.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="456,-738 600,-738 "/>
|
||||
<polyline fill="none" stroke="black" points="456,-714 600,-714 "/>
|
||||
<text text-anchor="start" x="464" y="-698.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="464" y="-683.8" font-family="Times,serif" font-size="14.00">compute_price_params</text>
|
||||
<text text-anchor="start" x="464" y="-668.8" font-family="Times,serif" font-size="14.00">coupon_params</text>
|
||||
<text text-anchor="start" x="464" y="-653.8" font-family="Times,serif" font-size="14.00">price_params</text>
|
||||
</g>
|
||||
<!-- API::TranslationsController -->
|
||||
<g id="node30" class="node"><title>API::TranslationsController</title>
|
||||
<path fill="none" stroke="black" d="M734,-362C734,-362 878,-362 878,-362 884,-362 890,-368 890,-374 890,-374 890,-458 890,-458 890,-464 884,-470 878,-470 878,-470 734,-470 734,-470 728,-470 722,-464 722,-458 722,-458 722,-374 722,-374 722,-368 728,-362 734,-362"/>
|
||||
<text text-anchor="middle" x="806" y="-454.8" font-family="Times,serif" font-size="14.00">API::TranslationsController</text>
|
||||
<polyline fill="none" stroke="black" points="722,-447 890,-447 "/>
|
||||
<text text-anchor="start" x="730" y="-431.8" font-family="Times,serif" font-size="14.00">set_locale</text>
|
||||
<text text-anchor="start" x="730" y="-416.8" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<polyline fill="none" stroke="black" points="722,-409 890,-409 "/>
|
||||
<polyline fill="none" stroke="black" points="722,-385 890,-385 "/>
|
||||
<text text-anchor="start" x="730" y="-369.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M12,721C12,721 156,721 156,721 162,721 168,715 168,709 168,709 168,625 168,625 168,619 162,613 156,613 156,613 12,613 12,613 6,613 0,619 0,625 0,625 0,709 0,709 0,715 6,721 12,721"/>
|
||||
<text text-anchor="middle" x="84" y="628.2" font-family="Times,serif" font-size="14.00">API::TranslationsController</text>
|
||||
<polyline fill="none" stroke="black" points="0,636 168,636 "/>
|
||||
<text text-anchor="start" x="8" y="651.2" font-family="Times,serif" font-size="14.00">set_locale</text>
|
||||
<text text-anchor="start" x="8" y="666.2" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<polyline fill="none" stroke="black" points="0,674 168,674 "/>
|
||||
<polyline fill="none" stroke="black" points="0,698 168,698 "/>
|
||||
<text text-anchor="start" x="8" y="713.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::ExportsController -->
|
||||
<g id="node31" class="node"><title>API::ExportsController</title>
|
||||
<path fill="none" stroke="black" d="M183.5,-722.5C183.5,-722.5 302.5,-722.5 302.5,-722.5 308.5,-722.5 314.5,-728.5 314.5,-734.5 314.5,-734.5 314.5,-833.5 314.5,-833.5 314.5,-839.5 308.5,-845.5 302.5,-845.5 302.5,-845.5 183.5,-845.5 183.5,-845.5 177.5,-845.5 171.5,-839.5 171.5,-833.5 171.5,-833.5 171.5,-734.5 171.5,-734.5 171.5,-728.5 177.5,-722.5 183.5,-722.5"/>
|
||||
<text text-anchor="middle" x="243" y="-830.3" font-family="Times,serif" font-size="14.00">API::ExportsController</text>
|
||||
<polyline fill="none" stroke="black" points="171.5,-822.5 314.5,-822.5 "/>
|
||||
<text text-anchor="start" x="179.5" y="-807.3" font-family="Times,serif" font-size="14.00">download</text>
|
||||
<text text-anchor="start" x="179.5" y="-792.3" font-family="Times,serif" font-size="14.00">status</text>
|
||||
<polyline fill="none" stroke="black" points="171.5,-784.5 314.5,-784.5 "/>
|
||||
<polyline fill="none" stroke="black" points="171.5,-760.5 314.5,-760.5 "/>
|
||||
<text text-anchor="start" x="179.5" y="-745.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="179.5" y="-730.3" font-family="Times,serif" font-size="14.00">set_export</text>
|
||||
<path fill="none" stroke="black" d="M-671.5,-532.5C-671.5,-532.5 -552.5,-532.5 -552.5,-532.5 -546.5,-532.5 -540.5,-538.5 -540.5,-544.5 -540.5,-544.5 -540.5,-643.5 -540.5,-643.5 -540.5,-649.5 -546.5,-655.5 -552.5,-655.5 -552.5,-655.5 -671.5,-655.5 -671.5,-655.5 -677.5,-655.5 -683.5,-649.5 -683.5,-643.5 -683.5,-643.5 -683.5,-544.5 -683.5,-544.5 -683.5,-538.5 -677.5,-532.5 -671.5,-532.5"/>
|
||||
<text text-anchor="middle" x="-612" y="-640.3" font-family="Times,serif" font-size="14.00">API::ExportsController</text>
|
||||
<polyline fill="none" stroke="black" points="-683.5,-632.5 -540.5,-632.5 "/>
|
||||
<text text-anchor="start" x="-675.5" y="-617.3" font-family="Times,serif" font-size="14.00">download</text>
|
||||
<text text-anchor="start" x="-675.5" y="-602.3" font-family="Times,serif" font-size="14.00">status</text>
|
||||
<polyline fill="none" stroke="black" points="-683.5,-594.5 -540.5,-594.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-683.5,-570.5 -540.5,-570.5 "/>
|
||||
<text text-anchor="start" x="-675.5" y="-555.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-675.5" y="-540.3" font-family="Times,serif" font-size="14.00">set_export</text>
|
||||
</g>
|
||||
<!-- API::ReservationsController -->
|
||||
<g id="node32" class="node"><title>API::ReservationsController</title>
|
||||
<path fill="none" stroke="black" d="M-253.5,-494.5C-253.5,-494.5 -106.5,-494.5 -106.5,-494.5 -100.5,-494.5 -94.5,-500.5 -94.5,-506.5 -94.5,-506.5 -94.5,-665.5 -94.5,-665.5 -94.5,-671.5 -100.5,-677.5 -106.5,-677.5 -106.5,-677.5 -253.5,-677.5 -253.5,-677.5 -259.5,-677.5 -265.5,-671.5 -265.5,-665.5 -265.5,-665.5 -265.5,-506.5 -265.5,-506.5 -265.5,-500.5 -259.5,-494.5 -253.5,-494.5"/>
|
||||
<text text-anchor="middle" x="-180" y="-662.3" font-family="Times,serif" font-size="14.00">API::ReservationsController</text>
|
||||
<polyline fill="none" stroke="black" points="-265.5,-654.5 -94.5,-654.5 "/>
|
||||
<text text-anchor="start" x="-257.5" y="-639.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-257.5" y="-624.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-257.5" y="-609.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-257.5" y="-594.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-265.5,-586.5 -94.5,-586.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-265.5,-562.5 -94.5,-562.5 "/>
|
||||
<text text-anchor="start" x="-257.5" y="-547.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-257.5" y="-532.3" font-family="Times,serif" font-size="14.00">coupon_params</text>
|
||||
<text text-anchor="start" x="-257.5" y="-517.3" font-family="Times,serif" font-size="14.00">reservation_params</text>
|
||||
<text text-anchor="start" x="-257.5" y="-502.3" font-family="Times,serif" font-size="14.00">set_reservation</text>
|
||||
<path fill="none" stroke="black" d="M525.5,322.5C525.5,322.5 672.5,322.5 672.5,322.5 678.5,322.5 684.5,316.5 684.5,310.5 684.5,310.5 684.5,151.5 684.5,151.5 684.5,145.5 678.5,139.5 672.5,139.5 672.5,139.5 525.5,139.5 525.5,139.5 519.5,139.5 513.5,145.5 513.5,151.5 513.5,151.5 513.5,310.5 513.5,310.5 513.5,316.5 519.5,322.5 525.5,322.5"/>
|
||||
<text text-anchor="middle" x="599" y="154.7" font-family="Times,serif" font-size="14.00">API::ReservationsController</text>
|
||||
<polyline fill="none" stroke="black" points="513.5,162.5 684.5,162.5 "/>
|
||||
<text text-anchor="start" x="521.5" y="177.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="521.5" y="192.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="521.5" y="207.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="521.5" y="222.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="513.5,230.5 684.5,230.5 "/>
|
||||
<polyline fill="none" stroke="black" points="513.5,254.5 684.5,254.5 "/>
|
||||
<text text-anchor="start" x="521.5" y="269.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="521.5" y="284.7" font-family="Times,serif" font-size="14.00">coupon_params</text>
|
||||
<text text-anchor="start" x="521.5" y="299.7" font-family="Times,serif" font-size="14.00">reservation_params</text>
|
||||
<text text-anchor="start" x="521.5" y="314.7" font-family="Times,serif" font-size="14.00">set_reservation</text>
|
||||
</g>
|
||||
<!-- API::EventsController -->
|
||||
<g id="node33" class="node"><title>API::EventsController</title>
|
||||
<path fill="none" stroke="black" d="M-463,227C-463,227 -349,227 -349,227 -343,227 -337,221 -337,215 -337,215 -337,41 -337,41 -337,35 -343,29 -349,29 -349,29 -463,29 -463,29 -469,29 -475,35 -475,41 -475,41 -475,215 -475,215 -475,221 -469,227 -463,227"/>
|
||||
<text text-anchor="middle" x="-406" y="44.2" font-family="Times,serif" font-size="14.00">API::EventsController</text>
|
||||
<polyline fill="none" stroke="black" points="-475,52 -337,52 "/>
|
||||
<text text-anchor="start" x="-467" y="67.2" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-467" y="82.2" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-467" y="97.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-467" y="112.2" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-467" y="127.2" font-family="Times,serif" font-size="14.00">upcoming</text>
|
||||
<text text-anchor="start" x="-467" y="142.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-475,150 -337,150 "/>
|
||||
<polyline fill="none" stroke="black" points="-475,174 -337,174 "/>
|
||||
<text text-anchor="start" x="-467" y="189.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-467" y="204.2" font-family="Times,serif" font-size="14.00">event_params</text>
|
||||
<text text-anchor="start" x="-467" y="219.2" font-family="Times,serif" font-size="14.00">set_event</text>
|
||||
<path fill="none" stroke="black" d="M-159,474C-159,474 -45,474 -45,474 -39,474 -33,468 -33,462 -33,462 -33,288 -33,288 -33,282 -39,276 -45,276 -45,276 -159,276 -159,276 -165,276 -171,282 -171,288 -171,288 -171,462 -171,462 -171,468 -165,474 -159,474"/>
|
||||
<text text-anchor="middle" x="-102" y="291.2" font-family="Times,serif" font-size="14.00">API::EventsController</text>
|
||||
<polyline fill="none" stroke="black" points="-171,299 -33,299 "/>
|
||||
<text text-anchor="start" x="-163" y="314.2" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-163" y="329.2" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-163" y="344.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-163" y="359.2" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-163" y="374.2" font-family="Times,serif" font-size="14.00">upcoming</text>
|
||||
<text text-anchor="start" x="-163" y="389.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-171,397 -33,397 "/>
|
||||
<polyline fill="none" stroke="black" points="-171,421 -33,421 "/>
|
||||
<text text-anchor="start" x="-163" y="436.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-163" y="451.2" font-family="Times,serif" font-size="14.00">event_params</text>
|
||||
<text text-anchor="start" x="-163" y="466.2" font-family="Times,serif" font-size="14.00">set_event</text>
|
||||
</g>
|
||||
<!-- API::MachinesController -->
|
||||
<g id="node34" class="node"><title>API::MachinesController</title>
|
||||
<path fill="none" stroke="black" d="M-500.5,-1C-500.5,-1 -369.5,-1 -369.5,-1 -363.5,-1 -357.5,-7 -357.5,-13 -357.5,-13 -357.5,-187 -357.5,-187 -357.5,-193 -363.5,-199 -369.5,-199 -369.5,-199 -500.5,-199 -500.5,-199 -506.5,-199 -512.5,-193 -512.5,-187 -512.5,-187 -512.5,-13 -512.5,-13 -512.5,-7 -506.5,-1 -500.5,-1"/>
|
||||
<text text-anchor="middle" x="-435" y="-183.8" font-family="Times,serif" font-size="14.00">API::MachinesController</text>
|
||||
<polyline fill="none" stroke="black" points="-512.5,-176 -357.5,-176 "/>
|
||||
<text text-anchor="start" x="-504.5" y="-160.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-504.5" y="-145.8" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-504.5" y="-130.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-504.5" y="-115.8" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-504.5" y="-100.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-512.5,-93 -357.5,-93 "/>
|
||||
<polyline fill="none" stroke="black" points="-512.5,-69 -357.5,-69 "/>
|
||||
<text text-anchor="start" x="-504.5" y="-53.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-504.5" y="-38.8" font-family="Times,serif" font-size="14.00">is_reserved</text>
|
||||
<text text-anchor="start" x="-504.5" y="-23.8" font-family="Times,serif" font-size="14.00">machine_params</text>
|
||||
<text text-anchor="start" x="-504.5" y="-8.8" font-family="Times,serif" font-size="14.00">set_machine</text>
|
||||
<path fill="none" stroke="black" d="M-500.5,227C-500.5,227 -369.5,227 -369.5,227 -363.5,227 -357.5,221 -357.5,215 -357.5,215 -357.5,41 -357.5,41 -357.5,35 -363.5,29 -369.5,29 -369.5,29 -500.5,29 -500.5,29 -506.5,29 -512.5,35 -512.5,41 -512.5,41 -512.5,215 -512.5,215 -512.5,221 -506.5,227 -500.5,227"/>
|
||||
<text text-anchor="middle" x="-435" y="44.2" font-family="Times,serif" font-size="14.00">API::MachinesController</text>
|
||||
<polyline fill="none" stroke="black" points="-512.5,52 -357.5,52 "/>
|
||||
<text text-anchor="start" x="-504.5" y="67.2" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-504.5" y="82.2" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-504.5" y="97.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-504.5" y="112.2" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-504.5" y="127.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-512.5,135 -357.5,135 "/>
|
||||
<polyline fill="none" stroke="black" points="-512.5,159 -357.5,159 "/>
|
||||
<text text-anchor="start" x="-504.5" y="174.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-504.5" y="189.2" font-family="Times,serif" font-size="14.00">is_reserved</text>
|
||||
<text text-anchor="start" x="-504.5" y="204.2" font-family="Times,serif" font-size="14.00">machine_params</text>
|
||||
<text text-anchor="start" x="-504.5" y="219.2" font-family="Times,serif" font-size="14.00">set_machine</text>
|
||||
</g>
|
||||
<!-- API::EventThemesController -->
|
||||
<g id="node35" class="node"><title>API::EventThemesController</title>
|
||||
<path fill="none" stroke="black" d="M-102,417.5C-102,417.5 50,417.5 50,417.5 56,417.5 62,411.5 62,405.5 62,405.5 62,246.5 62,246.5 62,240.5 56,234.5 50,234.5 50,234.5 -102,234.5 -102,234.5 -108,234.5 -114,240.5 -114,246.5 -114,246.5 -114,405.5 -114,405.5 -114,411.5 -108,417.5 -102,417.5"/>
|
||||
<text text-anchor="middle" x="-26" y="249.7" font-family="Times,serif" font-size="14.00">API::EventThemesController</text>
|
||||
<polyline fill="none" stroke="black" points="-114,257.5 62,257.5 "/>
|
||||
<text text-anchor="start" x="-106" y="272.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-106" y="287.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-106" y="302.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-106" y="317.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-106" y="332.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-114,340.5 62,340.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-114,364.5 62,364.5 "/>
|
||||
<text text-anchor="start" x="-106" y="379.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-106" y="394.7" font-family="Times,serif" font-size="14.00">event_theme_params</text>
|
||||
<text text-anchor="start" x="-106" y="409.7" font-family="Times,serif" font-size="14.00">set_event_theme</text>
|
||||
<path fill="none" stroke="black" d="M468,-171.5C468,-171.5 620,-171.5 620,-171.5 626,-171.5 632,-177.5 632,-183.5 632,-183.5 632,-342.5 632,-342.5 632,-348.5 626,-354.5 620,-354.5 620,-354.5 468,-354.5 468,-354.5 462,-354.5 456,-348.5 456,-342.5 456,-342.5 456,-183.5 456,-183.5 456,-177.5 462,-171.5 468,-171.5"/>
|
||||
<text text-anchor="middle" x="544" y="-339.3" font-family="Times,serif" font-size="14.00">API::EventThemesController</text>
|
||||
<polyline fill="none" stroke="black" points="456,-331.5 632,-331.5 "/>
|
||||
<text text-anchor="start" x="464" y="-316.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="464" y="-301.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="464" y="-286.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="464" y="-271.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="464" y="-256.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="456,-248.5 632,-248.5 "/>
|
||||
<polyline fill="none" stroke="black" points="456,-224.5 632,-224.5 "/>
|
||||
<text text-anchor="start" x="464" y="-209.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="464" y="-194.3" font-family="Times,serif" font-size="14.00">event_theme_params</text>
|
||||
<text text-anchor="start" x="464" y="-179.3" font-family="Times,serif" font-size="14.00">set_event_theme</text>
|
||||
</g>
|
||||
<!-- API::ThemesController -->
|
||||
<g id="node36" class="node"><title>API::ThemesController</title>
|
||||
<path fill="none" stroke="black" d="M-614.5,455.5C-614.5,455.5 -493.5,455.5 -493.5,455.5 -487.5,455.5 -481.5,449.5 -481.5,443.5 -481.5,443.5 -481.5,284.5 -481.5,284.5 -481.5,278.5 -487.5,272.5 -493.5,272.5 -493.5,272.5 -614.5,272.5 -614.5,272.5 -620.5,272.5 -626.5,278.5 -626.5,284.5 -626.5,284.5 -626.5,443.5 -626.5,443.5 -626.5,449.5 -620.5,455.5 -614.5,455.5"/>
|
||||
<text text-anchor="middle" x="-554" y="287.7" font-family="Times,serif" font-size="14.00">API::ThemesController</text>
|
||||
<polyline fill="none" stroke="black" points="-626.5,295.5 -481.5,295.5 "/>
|
||||
<text text-anchor="start" x="-618.5" y="310.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-618.5" y="325.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-618.5" y="340.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-618.5" y="355.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-618.5" y="370.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-626.5,378.5 -481.5,378.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-626.5,402.5 -481.5,402.5 "/>
|
||||
<text text-anchor="start" x="-618.5" y="417.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-618.5" y="432.7" font-family="Times,serif" font-size="14.00">set_theme</text>
|
||||
<text text-anchor="start" x="-618.5" y="447.7" font-family="Times,serif" font-size="14.00">theme_params</text>
|
||||
<path fill="none" stroke="black" d="M-595.5,455.5C-595.5,455.5 -474.5,455.5 -474.5,455.5 -468.5,455.5 -462.5,449.5 -462.5,443.5 -462.5,443.5 -462.5,284.5 -462.5,284.5 -462.5,278.5 -468.5,272.5 -474.5,272.5 -474.5,272.5 -595.5,272.5 -595.5,272.5 -601.5,272.5 -607.5,278.5 -607.5,284.5 -607.5,284.5 -607.5,443.5 -607.5,443.5 -607.5,449.5 -601.5,455.5 -595.5,455.5"/>
|
||||
<text text-anchor="middle" x="-535" y="287.7" font-family="Times,serif" font-size="14.00">API::ThemesController</text>
|
||||
<polyline fill="none" stroke="black" points="-607.5,295.5 -462.5,295.5 "/>
|
||||
<text text-anchor="start" x="-599.5" y="310.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-599.5" y="325.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-599.5" y="340.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-599.5" y="355.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-599.5" y="370.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-607.5,378.5 -462.5,378.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-607.5,402.5 -462.5,402.5 "/>
|
||||
<text text-anchor="start" x="-599.5" y="417.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-599.5" y="432.7" font-family="Times,serif" font-size="14.00">set_theme</text>
|
||||
<text text-anchor="start" x="-599.5" y="447.7" font-family="Times,serif" font-size="14.00">theme_params</text>
|
||||
</g>
|
||||
<!-- API::CategoriesController -->
|
||||
<g id="node37" class="node"><title>API::CategoriesController</title>
|
||||
<path fill="none" stroke="black" d="M543.5,322.5C543.5,322.5 678.5,322.5 678.5,322.5 684.5,322.5 690.5,316.5 690.5,310.5 690.5,310.5 690.5,151.5 690.5,151.5 690.5,145.5 684.5,139.5 678.5,139.5 678.5,139.5 543.5,139.5 543.5,139.5 537.5,139.5 531.5,145.5 531.5,151.5 531.5,151.5 531.5,310.5 531.5,310.5 531.5,316.5 537.5,322.5 543.5,322.5"/>
|
||||
<text text-anchor="middle" x="611" y="154.7" font-family="Times,serif" font-size="14.00">API::CategoriesController</text>
|
||||
<polyline fill="none" stroke="black" points="531.5,162.5 690.5,162.5 "/>
|
||||
<text text-anchor="start" x="539.5" y="177.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="539.5" y="192.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="539.5" y="207.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="539.5" y="222.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="539.5" y="237.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="531.5,245.5 690.5,245.5 "/>
|
||||
<polyline fill="none" stroke="black" points="531.5,269.5 690.5,269.5 "/>
|
||||
<text text-anchor="start" x="539.5" y="284.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="539.5" y="299.7" font-family="Times,serif" font-size="14.00">category_params</text>
|
||||
<text text-anchor="start" x="539.5" y="314.7" font-family="Times,serif" font-size="14.00">set_category</text>
|
||||
<path fill="none" stroke="black" d="M-501.5,-513.5C-501.5,-513.5 -366.5,-513.5 -366.5,-513.5 -360.5,-513.5 -354.5,-519.5 -354.5,-525.5 -354.5,-525.5 -354.5,-684.5 -354.5,-684.5 -354.5,-690.5 -360.5,-696.5 -366.5,-696.5 -366.5,-696.5 -501.5,-696.5 -501.5,-696.5 -507.5,-696.5 -513.5,-690.5 -513.5,-684.5 -513.5,-684.5 -513.5,-525.5 -513.5,-525.5 -513.5,-519.5 -507.5,-513.5 -501.5,-513.5"/>
|
||||
<text text-anchor="middle" x="-434" y="-681.3" font-family="Times,serif" font-size="14.00">API::CategoriesController</text>
|
||||
<polyline fill="none" stroke="black" points="-513.5,-673.5 -354.5,-673.5 "/>
|
||||
<text text-anchor="start" x="-505.5" y="-658.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-505.5" y="-643.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-505.5" y="-628.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-505.5" y="-613.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-505.5" y="-598.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-513.5,-590.5 -354.5,-590.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-513.5,-566.5 -354.5,-566.5 "/>
|
||||
<text text-anchor="start" x="-505.5" y="-551.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-505.5" y="-536.3" font-family="Times,serif" font-size="14.00">category_params</text>
|
||||
<text text-anchor="start" x="-505.5" y="-521.3" font-family="Times,serif" font-size="14.00">set_category</text>
|
||||
</g>
|
||||
<!-- API::SubscriptionsController -->
|
||||
<g id="node38" class="node"><title>API::SubscriptionsController</title>
|
||||
@ -548,42 +548,52 @@
|
||||
</g>
|
||||
<!-- API::StylesheetsController -->
|
||||
<g id="node39" class="node"><title>API::StylesheetsController</title>
|
||||
<path fill="none" stroke="black" d="M-691,-190.5C-691,-190.5 -553,-190.5 -553,-190.5 -547,-190.5 -541,-196.5 -541,-202.5 -541,-202.5 -541,-271.5 -541,-271.5 -541,-277.5 -547,-283.5 -553,-283.5 -553,-283.5 -691,-283.5 -691,-283.5 -697,-283.5 -703,-277.5 -703,-271.5 -703,-271.5 -703,-202.5 -703,-202.5 -703,-196.5 -697,-190.5 -691,-190.5"/>
|
||||
<text text-anchor="middle" x="-622" y="-268.3" font-family="Times,serif" font-size="14.00">API::StylesheetsController</text>
|
||||
<polyline fill="none" stroke="black" points="-703,-260.5 -541,-260.5 "/>
|
||||
<text text-anchor="start" x="-695" y="-245.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<polyline fill="none" stroke="black" points="-703,-237.5 -541,-237.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-703,-213.5 -541,-213.5 "/>
|
||||
<text text-anchor="start" x="-695" y="-198.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<path fill="none" stroke="black" d="M-729,740.5C-729,740.5 -591,740.5 -591,740.5 -585,740.5 -579,734.5 -579,728.5 -579,728.5 -579,659.5 -579,659.5 -579,653.5 -585,647.5 -591,647.5 -591,647.5 -729,647.5 -729,647.5 -735,647.5 -741,653.5 -741,659.5 -741,659.5 -741,728.5 -741,728.5 -741,734.5 -735,740.5 -729,740.5"/>
|
||||
<text text-anchor="middle" x="-660" y="662.7" font-family="Times,serif" font-size="14.00">API::StylesheetsController</text>
|
||||
<polyline fill="none" stroke="black" points="-741,670.5 -579,670.5 "/>
|
||||
<text text-anchor="start" x="-733" y="685.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<polyline fill="none" stroke="black" points="-741,693.5 -579,693.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-741,717.5 -579,717.5 "/>
|
||||
<text text-anchor="start" x="-733" y="732.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::SlotsController -->
|
||||
<g id="node40" class="node"><title>API::SlotsController</title>
|
||||
<path fill="none" stroke="black" d="M12,-723C12,-723 116,-723 116,-723 122,-723 128,-729 128,-735 128,-735 128,-849 128,-849 128,-855 122,-861 116,-861 116,-861 12,-861 12,-861 6,-861 0,-855 0,-849 0,-849 0,-735 0,-735 0,-729 6,-723 12,-723"/>
|
||||
<text text-anchor="middle" x="64" y="-845.8" font-family="Times,serif" font-size="14.00">API::SlotsController</text>
|
||||
<polyline fill="none" stroke="black" points="0,-838 128,-838 "/>
|
||||
<text text-anchor="start" x="8" y="-822.8" font-family="Times,serif" font-size="14.00">cancel</text>
|
||||
<text text-anchor="start" x="8" y="-807.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="0,-800 128,-800 "/>
|
||||
<polyline fill="none" stroke="black" points="0,-776 128,-776 "/>
|
||||
<text text-anchor="start" x="8" y="-760.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="8" y="-745.8" font-family="Times,serif" font-size="14.00">set_slot</text>
|
||||
<text text-anchor="start" x="8" y="-730.8" font-family="Times,serif" font-size="14.00">slot_params</text>
|
||||
<path fill="none" stroke="black" d="M-672,170C-672,170 -568,170 -568,170 -562,170 -556,164 -556,158 -556,158 -556,44 -556,44 -556,38 -562,32 -568,32 -568,32 -672,32 -672,32 -678,32 -684,38 -684,44 -684,44 -684,158 -684,158 -684,164 -678,170 -672,170"/>
|
||||
<text text-anchor="middle" x="-620" y="47.2" font-family="Times,serif" font-size="14.00">API::SlotsController</text>
|
||||
<polyline fill="none" stroke="black" points="-684,55 -556,55 "/>
|
||||
<text text-anchor="start" x="-676" y="70.2" font-family="Times,serif" font-size="14.00">cancel</text>
|
||||
<text text-anchor="start" x="-676" y="85.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-684,93 -556,93 "/>
|
||||
<polyline fill="none" stroke="black" points="-684,117 -556,117 "/>
|
||||
<text text-anchor="start" x="-676" y="132.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-676" y="147.2" font-family="Times,serif" font-size="14.00">set_slot</text>
|
||||
<text text-anchor="start" x="-676" y="162.2" font-family="Times,serif" font-size="14.00">slot_params</text>
|
||||
</g>
|
||||
<!-- API::VersionController -->
|
||||
<g id="node41" class="node"><title>API::VersionController</title>
|
||||
<path fill="none" stroke="black" d="M-216,759.5C-216,759.5 -96,759.5 -96,759.5 -90,759.5 -84,753.5 -84,747.5 -84,747.5 -84,678.5 -84,678.5 -84,672.5 -90,666.5 -96,666.5 -96,666.5 -216,666.5 -216,666.5 -222,666.5 -228,672.5 -228,678.5 -228,678.5 -228,747.5 -228,747.5 -228,753.5 -222,759.5 -216,759.5"/>
|
||||
<text text-anchor="middle" x="-156" y="681.7" font-family="Times,serif" font-size="14.00">API::VersionController</text>
|
||||
<polyline fill="none" stroke="black" points="-228,689.5 -84,689.5 "/>
|
||||
<text text-anchor="start" x="-220" y="704.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<polyline fill="none" stroke="black" points="-228,712.5 -84,712.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-228,736.5 -84,736.5 "/>
|
||||
<text text-anchor="start" x="-220" y="751.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::AdminsController -->
|
||||
<g id="node41" class="node"><title>API::AdminsController</title>
|
||||
<path fill="none" stroke="black" d="M-652.5,-324C-652.5,-324 -531.5,-324 -531.5,-324 -525.5,-324 -519.5,-330 -519.5,-336 -519.5,-336 -519.5,-450 -519.5,-450 -519.5,-456 -525.5,-462 -531.5,-462 -531.5,-462 -652.5,-462 -652.5,-462 -658.5,-462 -664.5,-456 -664.5,-450 -664.5,-450 -664.5,-336 -664.5,-336 -664.5,-330 -658.5,-324 -652.5,-324"/>
|
||||
<text text-anchor="middle" x="-592" y="-446.8" font-family="Times,serif" font-size="14.00">API::AdminsController</text>
|
||||
<polyline fill="none" stroke="black" points="-664.5,-439 -519.5,-439 "/>
|
||||
<text text-anchor="start" x="-656.5" y="-423.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-656.5" y="-408.8" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-656.5" y="-393.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-664.5,-386 -519.5,-386 "/>
|
||||
<polyline fill="none" stroke="black" points="-664.5,-362 -519.5,-362 "/>
|
||||
<text text-anchor="start" x="-656.5" y="-346.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-656.5" y="-331.8" font-family="Times,serif" font-size="14.00">admin_params</text>
|
||||
<g id="node42" class="node"><title>API::AdminsController</title>
|
||||
<path fill="none" stroke="black" d="M88.5,-685C88.5,-685 209.5,-685 209.5,-685 215.5,-685 221.5,-691 221.5,-697 221.5,-697 221.5,-811 221.5,-811 221.5,-817 215.5,-823 209.5,-823 209.5,-823 88.5,-823 88.5,-823 82.5,-823 76.5,-817 76.5,-811 76.5,-811 76.5,-697 76.5,-697 76.5,-691 82.5,-685 88.5,-685"/>
|
||||
<text text-anchor="middle" x="149" y="-807.8" font-family="Times,serif" font-size="14.00">API::AdminsController</text>
|
||||
<polyline fill="none" stroke="black" points="76.5,-800 221.5,-800 "/>
|
||||
<text text-anchor="start" x="84.5" y="-784.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="84.5" y="-769.8" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="84.5" y="-754.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="76.5,-747 221.5,-747 "/>
|
||||
<polyline fill="none" stroke="black" points="76.5,-723 221.5,-723 "/>
|
||||
<text text-anchor="start" x="84.5" y="-707.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="84.5" y="-692.8" font-family="Times,serif" font-size="14.00">admin_params</text>
|
||||
</g>
|
||||
<!-- API::GroupsController -->
|
||||
<g id="node42" class="node"><title>API::GroupsController</title>
|
||||
<g id="node43" class="node"><title>API::GroupsController</title>
|
||||
<path fill="none" stroke="black" d="M-671.5,-0.5C-671.5,-0.5 -554.5,-0.5 -554.5,-0.5 -548.5,-0.5 -542.5,-6.5 -542.5,-12.5 -542.5,-12.5 -542.5,-141.5 -542.5,-141.5 -542.5,-147.5 -548.5,-153.5 -554.5,-153.5 -554.5,-153.5 -671.5,-153.5 -671.5,-153.5 -677.5,-153.5 -683.5,-147.5 -683.5,-141.5 -683.5,-141.5 -683.5,-12.5 -683.5,-12.5 -683.5,-6.5 -677.5,-0.5 -671.5,-0.5"/>
|
||||
<text text-anchor="middle" x="-613" y="-138.3" font-family="Times,serif" font-size="14.00">API::GroupsController</text>
|
||||
<polyline fill="none" stroke="black" points="-683.5,-130.5 -542.5,-130.5 "/>
|
||||
@ -597,7 +607,7 @@
|
||||
<text text-anchor="start" x="-675.5" y="-8.3" font-family="Times,serif" font-size="14.00">group_params</text>
|
||||
</g>
|
||||
<!-- API::AvailabilitiesController -->
|
||||
<g id="node43" class="node"><title>API::AvailabilitiesController</title>
|
||||
<g id="node44" class="node"><title>API::AvailabilitiesController</title>
|
||||
<path fill="none" stroke="black" d="M-101.5,189C-101.5,189 81.5,189 81.5,189 87.5,189 93.5,183 93.5,177 93.5,177 93.5,-147 93.5,-147 93.5,-153 87.5,-159 81.5,-159 81.5,-159 -101.5,-159 -101.5,-159 -107.5,-159 -113.5,-153 -113.5,-147 -113.5,-147 -113.5,177 -113.5,177 -113.5,183 -107.5,189 -101.5,189"/>
|
||||
<text text-anchor="middle" x="-10" y="-143.8" font-family="Times,serif" font-size="14.00">API::AvailabilitiesController</text>
|
||||
<polyline fill="none" stroke="black" points="-113.5,-136 93.5,-136 "/>
|
||||
@ -624,207 +634,237 @@
|
||||
<text text-anchor="start" x="-105.5" y="181.2" font-family="Times,serif" font-size="14.00">verify_training_event_is_reserved</text>
|
||||
</g>
|
||||
<!-- API::UsersController -->
|
||||
<g id="node44" class="node"><title>API::UsersController</title>
|
||||
<path fill="none" stroke="black" d="M582,-741.5C582,-741.5 690,-741.5 690,-741.5 696,-741.5 702,-747.5 702,-753.5 702,-753.5 702,-852.5 702,-852.5 702,-858.5 696,-864.5 690,-864.5 690,-864.5 582,-864.5 582,-864.5 576,-864.5 570,-858.5 570,-852.5 570,-852.5 570,-753.5 570,-753.5 570,-747.5 576,-741.5 582,-741.5"/>
|
||||
<text text-anchor="middle" x="636" y="-849.3" font-family="Times,serif" font-size="14.00">API::UsersController</text>
|
||||
<polyline fill="none" stroke="black" points="570,-841.5 702,-841.5 "/>
|
||||
<text text-anchor="start" x="578" y="-826.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="578" y="-811.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="570,-803.5 702,-803.5 "/>
|
||||
<polyline fill="none" stroke="black" points="570,-779.5 702,-779.5 "/>
|
||||
<text text-anchor="start" x="578" y="-764.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="578" y="-749.3" font-family="Times,serif" font-size="14.00">partner_params</text>
|
||||
<g id="node45" class="node"><title>API::UsersController</title>
|
||||
<path fill="none" stroke="black" d="M772,550.5C772,550.5 880,550.5 880,550.5 886,550.5 892,544.5 892,538.5 892,538.5 892,439.5 892,439.5 892,433.5 886,427.5 880,427.5 880,427.5 772,427.5 772,427.5 766,427.5 760,433.5 760,439.5 760,439.5 760,538.5 760,538.5 760,544.5 766,550.5 772,550.5"/>
|
||||
<text text-anchor="middle" x="826" y="442.7" font-family="Times,serif" font-size="14.00">API::UsersController</text>
|
||||
<polyline fill="none" stroke="black" points="760,450.5 892,450.5 "/>
|
||||
<text text-anchor="start" x="768" y="465.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="768" y="480.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="760,488.5 892,488.5 "/>
|
||||
<polyline fill="none" stroke="black" points="760,512.5 892,512.5 "/>
|
||||
<text text-anchor="start" x="768" y="527.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="768" y="542.7" font-family="Times,serif" font-size="14.00">partner_params</text>
|
||||
</g>
|
||||
<!-- API::ProjectsController -->
|
||||
<g id="node45" class="node"><title>API::ProjectsController</title>
|
||||
<path fill="none" stroke="black" d="M145.5,398C145.5,398 266.5,398 266.5,398 272.5,398 278.5,392 278.5,386 278.5,386 278.5,182 278.5,182 278.5,176 272.5,170 266.5,170 266.5,170 145.5,170 145.5,170 139.5,170 133.5,176 133.5,182 133.5,182 133.5,386 133.5,386 133.5,392 139.5,398 145.5,398"/>
|
||||
<text text-anchor="middle" x="206" y="185.2" font-family="Times,serif" font-size="14.00">API::ProjectsController</text>
|
||||
<polyline fill="none" stroke="black" points="133.5,193 278.5,193 "/>
|
||||
<text text-anchor="start" x="141.5" y="208.2" font-family="Times,serif" font-size="14.00">collaborator_valid</text>
|
||||
<text text-anchor="start" x="141.5" y="223.2" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="141.5" y="238.2" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="141.5" y="253.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="141.5" y="268.2" font-family="Times,serif" font-size="14.00">last_published</text>
|
||||
<text text-anchor="start" x="141.5" y="283.2" font-family="Times,serif" font-size="14.00">search</text>
|
||||
<text text-anchor="start" x="141.5" y="298.2" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="141.5" y="313.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="133.5,321 278.5,321 "/>
|
||||
<polyline fill="none" stroke="black" points="133.5,345 278.5,345 "/>
|
||||
<text text-anchor="start" x="141.5" y="360.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="141.5" y="375.2" font-family="Times,serif" font-size="14.00">project_params</text>
|
||||
<text text-anchor="start" x="141.5" y="390.2" font-family="Times,serif" font-size="14.00">set_project</text>
|
||||
<g id="node46" class="node"><title>API::ProjectsController</title>
|
||||
<path fill="none" stroke="black" d="M-291.5,18.5C-291.5,18.5 -170.5,18.5 -170.5,18.5 -164.5,18.5 -158.5,12.5 -158.5,6.5 -158.5,6.5 -158.5,-212.5 -158.5,-212.5 -158.5,-218.5 -164.5,-224.5 -170.5,-224.5 -170.5,-224.5 -291.5,-224.5 -291.5,-224.5 -297.5,-224.5 -303.5,-218.5 -303.5,-212.5 -303.5,-212.5 -303.5,6.5 -303.5,6.5 -303.5,12.5 -297.5,18.5 -291.5,18.5"/>
|
||||
<text text-anchor="middle" x="-231" y="-209.3" font-family="Times,serif" font-size="14.00">API::ProjectsController</text>
|
||||
<polyline fill="none" stroke="black" points="-303.5,-201.5 -158.5,-201.5 "/>
|
||||
<text text-anchor="start" x="-295.5" y="-186.3" font-family="Times,serif" font-size="14.00">allowed_extensions</text>
|
||||
<text text-anchor="start" x="-295.5" y="-171.3" font-family="Times,serif" font-size="14.00">collaborator_valid</text>
|
||||
<text text-anchor="start" x="-295.5" y="-156.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-295.5" y="-141.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-295.5" y="-126.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-295.5" y="-111.3" font-family="Times,serif" font-size="14.00">last_published</text>
|
||||
<text text-anchor="start" x="-295.5" y="-96.3" font-family="Times,serif" font-size="14.00">search</text>
|
||||
<text text-anchor="start" x="-295.5" y="-81.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-295.5" y="-66.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-303.5,-58.5 -158.5,-58.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-303.5,-34.5 -158.5,-34.5 "/>
|
||||
<text text-anchor="start" x="-295.5" y="-19.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-295.5" y="-4.3" font-family="Times,serif" font-size="14.00">project_params</text>
|
||||
<text text-anchor="start" x="-295.5" y="10.7" font-family="Times,serif" font-size="14.00">set_project</text>
|
||||
</g>
|
||||
<!-- API::WalletController -->
|
||||
<g id="node46" class="node"><title>API::WalletController</title>
|
||||
<path fill="none" stroke="black" d="M-159,-722.5C-159,-722.5 -45,-722.5 -45,-722.5 -39,-722.5 -33,-728.5 -33,-734.5 -33,-734.5 -33,-833.5 -33,-833.5 -33,-839.5 -39,-845.5 -45,-845.5 -45,-845.5 -159,-845.5 -159,-845.5 -165,-845.5 -171,-839.5 -171,-833.5 -171,-833.5 -171,-734.5 -171,-734.5 -171,-728.5 -165,-722.5 -159,-722.5"/>
|
||||
<text text-anchor="middle" x="-102" y="-830.3" font-family="Times,serif" font-size="14.00">API::WalletController</text>
|
||||
<polyline fill="none" stroke="black" points="-171,-822.5 -33,-822.5 "/>
|
||||
<text text-anchor="start" x="-163" y="-807.3" font-family="Times,serif" font-size="14.00">by_user</text>
|
||||
<text text-anchor="start" x="-163" y="-792.3" font-family="Times,serif" font-size="14.00">credit</text>
|
||||
<text text-anchor="start" x="-163" y="-777.3" font-family="Times,serif" font-size="14.00">transactions</text>
|
||||
<polyline fill="none" stroke="black" points="-171,-769.5 -33,-769.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-171,-745.5 -33,-745.5 "/>
|
||||
<text text-anchor="start" x="-163" y="-730.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<g id="node47" class="node"><title>API::WalletController</title>
|
||||
<path fill="none" stroke="black" d="M734,322.5C734,322.5 848,322.5 848,322.5 854,322.5 860,316.5 860,310.5 860,310.5 860,211.5 860,211.5 860,205.5 854,199.5 848,199.5 848,199.5 734,199.5 734,199.5 728,199.5 722,205.5 722,211.5 722,211.5 722,310.5 722,310.5 722,316.5 728,322.5 734,322.5"/>
|
||||
<text text-anchor="middle" x="791" y="214.7" font-family="Times,serif" font-size="14.00">API::WalletController</text>
|
||||
<polyline fill="none" stroke="black" points="722,222.5 860,222.5 "/>
|
||||
<text text-anchor="start" x="730" y="237.7" font-family="Times,serif" font-size="14.00">by_user</text>
|
||||
<text text-anchor="start" x="730" y="252.7" font-family="Times,serif" font-size="14.00">credit</text>
|
||||
<text text-anchor="start" x="730" y="267.7" font-family="Times,serif" font-size="14.00">transactions</text>
|
||||
<polyline fill="none" stroke="black" points="722,275.5 860,275.5 "/>
|
||||
<polyline fill="none" stroke="black" points="722,299.5 860,299.5 "/>
|
||||
<text text-anchor="start" x="730" y="314.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- API::NotificationsController -->
|
||||
<g id="node47" class="node"><title>API::NotificationsController</title>
|
||||
<path fill="none" stroke="black" d="M335,645.5C335,645.5 483,645.5 483,645.5 489,645.5 495,639.5 495,633.5 495,633.5 495,504.5 495,504.5 495,498.5 489,492.5 483,492.5 483,492.5 335,492.5 335,492.5 329,492.5 323,498.5 323,504.5 323,504.5 323,633.5 323,633.5 323,639.5 329,645.5 335,645.5"/>
|
||||
<text text-anchor="middle" x="409" y="507.7" font-family="Times,serif" font-size="14.00">API::NotificationsController</text>
|
||||
<polyline fill="none" stroke="black" points="323,515.5 495,515.5 "/>
|
||||
<text text-anchor="start" x="331" y="530.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="331" y="545.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="331" y="560.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<text text-anchor="start" x="331" y="575.7" font-family="Times,serif" font-size="14.00">update_all</text>
|
||||
<polyline fill="none" stroke="black" points="323,583.5 495,583.5 "/>
|
||||
<polyline fill="none" stroke="black" points="323,607.5 495,607.5 "/>
|
||||
<text text-anchor="start" x="331" y="622.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="331" y="637.7" font-family="Times,serif" font-size="14.00">set_notification</text>
|
||||
<g id="node48" class="node"><title>API::NotificationsController</title>
|
||||
<path fill="none" stroke="black" d="M240,645.5C240,645.5 388,645.5 388,645.5 394,645.5 400,639.5 400,633.5 400,633.5 400,504.5 400,504.5 400,498.5 394,492.5 388,492.5 388,492.5 240,492.5 240,492.5 234,492.5 228,498.5 228,504.5 228,504.5 228,633.5 228,633.5 228,639.5 234,645.5 240,645.5"/>
|
||||
<text text-anchor="middle" x="314" y="507.7" font-family="Times,serif" font-size="14.00">API::NotificationsController</text>
|
||||
<polyline fill="none" stroke="black" points="228,515.5 400,515.5 "/>
|
||||
<text text-anchor="start" x="236" y="530.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="236" y="545.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="236" y="560.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<text text-anchor="start" x="236" y="575.7" font-family="Times,serif" font-size="14.00">update_all</text>
|
||||
<polyline fill="none" stroke="black" points="228,583.5 400,583.5 "/>
|
||||
<polyline fill="none" stroke="black" points="228,607.5 400,607.5 "/>
|
||||
<text text-anchor="start" x="236" y="622.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="236" y="637.7" font-family="Times,serif" font-size="14.00">set_notification</text>
|
||||
</g>
|
||||
<!-- API::TrainingsController -->
|
||||
<g id="node48" class="node"><title>API::TrainingsController</title>
|
||||
<path fill="none" stroke="black" d="M468.5,-133.5C468.5,-133.5 597.5,-133.5 597.5,-133.5 603.5,-133.5 609.5,-139.5 609.5,-145.5 609.5,-145.5 609.5,-334.5 609.5,-334.5 609.5,-340.5 603.5,-346.5 597.5,-346.5 597.5,-346.5 468.5,-346.5 468.5,-346.5 462.5,-346.5 456.5,-340.5 456.5,-334.5 456.5,-334.5 456.5,-145.5 456.5,-145.5 456.5,-139.5 462.5,-133.5 468.5,-133.5"/>
|
||||
<text text-anchor="middle" x="533" y="-331.3" font-family="Times,serif" font-size="14.00">API::TrainingsController</text>
|
||||
<polyline fill="none" stroke="black" points="456.5,-323.5 609.5,-323.5 "/>
|
||||
<text text-anchor="start" x="464.5" y="-308.3" font-family="Times,serif" font-size="14.00">availabilities</text>
|
||||
<text text-anchor="start" x="464.5" y="-293.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="464.5" y="-278.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="464.5" y="-263.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="464.5" y="-248.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="464.5" y="-233.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="456.5,-225.5 609.5,-225.5 "/>
|
||||
<polyline fill="none" stroke="black" points="456.5,-201.5 609.5,-201.5 "/>
|
||||
<text text-anchor="start" x="464.5" y="-186.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="464.5" y="-171.3" font-family="Times,serif" font-size="14.00">set_training</text>
|
||||
<text text-anchor="start" x="464.5" y="-156.3" font-family="Times,serif" font-size="14.00">training_params</text>
|
||||
<text text-anchor="start" x="464.5" y="-141.3" font-family="Times,serif" font-size="14.00">valid_training_params</text>
|
||||
<g id="node49" class="node"><title>API::TrainingsController</title>
|
||||
<path fill="none" stroke="black" d="M468.5,-399.5C468.5,-399.5 597.5,-399.5 597.5,-399.5 603.5,-399.5 609.5,-405.5 609.5,-411.5 609.5,-411.5 609.5,-600.5 609.5,-600.5 609.5,-606.5 603.5,-612.5 597.5,-612.5 597.5,-612.5 468.5,-612.5 468.5,-612.5 462.5,-612.5 456.5,-606.5 456.5,-600.5 456.5,-600.5 456.5,-411.5 456.5,-411.5 456.5,-405.5 462.5,-399.5 468.5,-399.5"/>
|
||||
<text text-anchor="middle" x="533" y="-597.3" font-family="Times,serif" font-size="14.00">API::TrainingsController</text>
|
||||
<polyline fill="none" stroke="black" points="456.5,-589.5 609.5,-589.5 "/>
|
||||
<text text-anchor="start" x="464.5" y="-574.3" font-family="Times,serif" font-size="14.00">availabilities</text>
|
||||
<text text-anchor="start" x="464.5" y="-559.3" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="464.5" y="-544.3" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="464.5" y="-529.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="464.5" y="-514.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="464.5" y="-499.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="456.5,-491.5 609.5,-491.5 "/>
|
||||
<polyline fill="none" stroke="black" points="456.5,-467.5 609.5,-467.5 "/>
|
||||
<text text-anchor="start" x="464.5" y="-452.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="464.5" y="-437.3" font-family="Times,serif" font-size="14.00">set_training</text>
|
||||
<text text-anchor="start" x="464.5" y="-422.3" font-family="Times,serif" font-size="14.00">training_params</text>
|
||||
<text text-anchor="start" x="464.5" y="-407.3" font-family="Times,serif" font-size="14.00">valid_training_params</text>
|
||||
</g>
|
||||
<!-- API::SettingsController -->
|
||||
<g id="node49" class="node"><title>API::SettingsController</title>
|
||||
<path fill="none" stroke="black" d="M657.5,-57.5C657.5,-57.5 792.5,-57.5 792.5,-57.5 798.5,-57.5 804.5,-63.5 804.5,-69.5 804.5,-69.5 804.5,-198.5 804.5,-198.5 804.5,-204.5 798.5,-210.5 792.5,-210.5 792.5,-210.5 657.5,-210.5 657.5,-210.5 651.5,-210.5 645.5,-204.5 645.5,-198.5 645.5,-198.5 645.5,-69.5 645.5,-69.5 645.5,-63.5 651.5,-57.5 657.5,-57.5"/>
|
||||
<text text-anchor="middle" x="725" y="-195.3" font-family="Times,serif" font-size="14.00">API::SettingsController</text>
|
||||
<polyline fill="none" stroke="black" points="645.5,-187.5 804.5,-187.5 "/>
|
||||
<text text-anchor="start" x="653.5" y="-172.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="653.5" y="-157.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="653.5" y="-142.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="645.5,-134.5 804.5,-134.5 "/>
|
||||
<polyline fill="none" stroke="black" points="645.5,-110.5 804.5,-110.5 "/>
|
||||
<text text-anchor="start" x="653.5" y="-95.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="653.5" y="-80.3" font-family="Times,serif" font-size="14.00">names_as_string_to_array</text>
|
||||
<text text-anchor="start" x="653.5" y="-65.3" font-family="Times,serif" font-size="14.00">setting_params</text>
|
||||
<g id="node50" class="node"><title>API::SettingsController</title>
|
||||
<path fill="none" stroke="black" d="M277.5,-646.5C277.5,-646.5 412.5,-646.5 412.5,-646.5 418.5,-646.5 424.5,-652.5 424.5,-658.5 424.5,-658.5 424.5,-787.5 424.5,-787.5 424.5,-793.5 418.5,-799.5 412.5,-799.5 412.5,-799.5 277.5,-799.5 277.5,-799.5 271.5,-799.5 265.5,-793.5 265.5,-787.5 265.5,-787.5 265.5,-658.5 265.5,-658.5 265.5,-652.5 271.5,-646.5 277.5,-646.5"/>
|
||||
<text text-anchor="middle" x="345" y="-784.3" font-family="Times,serif" font-size="14.00">API::SettingsController</text>
|
||||
<polyline fill="none" stroke="black" points="265.5,-776.5 424.5,-776.5 "/>
|
||||
<text text-anchor="start" x="273.5" y="-761.3" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="273.5" y="-746.3" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="273.5" y="-731.3" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="265.5,-723.5 424.5,-723.5 "/>
|
||||
<polyline fill="none" stroke="black" points="265.5,-699.5 424.5,-699.5 "/>
|
||||
<text text-anchor="start" x="273.5" y="-684.3" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="273.5" y="-669.3" font-family="Times,serif" font-size="14.00">names_as_string_to_array</text>
|
||||
<text text-anchor="start" x="273.5" y="-654.3" font-family="Times,serif" font-size="14.00">setting_params</text>
|
||||
</g>
|
||||
<!-- API::OpenAPIClientsController -->
|
||||
<g id="node50" class="node"><title>API::OpenAPIClientsController</title>
|
||||
<path fill="none" stroke="black" d="M544.5,-532C544.5,-532 711.5,-532 711.5,-532 717.5,-532 723.5,-538 723.5,-544 723.5,-544 723.5,-688 723.5,-688 723.5,-694 717.5,-700 711.5,-700 711.5,-700 544.5,-700 544.5,-700 538.5,-700 532.5,-694 532.5,-688 532.5,-688 532.5,-544 532.5,-544 532.5,-538 538.5,-532 544.5,-532"/>
|
||||
<text text-anchor="middle" x="628" y="-684.8" font-family="Times,serif" font-size="14.00">API::OpenAPIClientsController</text>
|
||||
<polyline fill="none" stroke="black" points="532.5,-677 723.5,-677 "/>
|
||||
<text text-anchor="start" x="540.5" y="-661.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="540.5" y="-646.8" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="540.5" y="-631.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="540.5" y="-616.8" font-family="Times,serif" font-size="14.00">reset_token</text>
|
||||
<text text-anchor="start" x="540.5" y="-601.8" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="532.5,-594 723.5,-594 "/>
|
||||
<polyline fill="none" stroke="black" points="532.5,-570 723.5,-570 "/>
|
||||
<text text-anchor="start" x="540.5" y="-554.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="540.5" y="-539.8" font-family="Times,serif" font-size="14.00">client_params</text>
|
||||
<g id="node51" class="node"><title>API::OpenAPIClientsController</title>
|
||||
<path fill="none" stroke="black" d="M544.5,532C544.5,532 711.5,532 711.5,532 717.5,532 723.5,526 723.5,520 723.5,520 723.5,376 723.5,376 723.5,370 717.5,364 711.5,364 711.5,364 544.5,364 544.5,364 538.5,364 532.5,370 532.5,376 532.5,376 532.5,520 532.5,520 532.5,526 538.5,532 544.5,532"/>
|
||||
<text text-anchor="middle" x="628" y="379.2" font-family="Times,serif" font-size="14.00">API::OpenAPIClientsController</text>
|
||||
<polyline fill="none" stroke="black" points="532.5,387 723.5,387 "/>
|
||||
<text text-anchor="start" x="540.5" y="402.2" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="540.5" y="417.2" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="540.5" y="432.2" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="540.5" y="447.2" font-family="Times,serif" font-size="14.00">reset_token</text>
|
||||
<text text-anchor="start" x="540.5" y="462.2" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="532.5,470 723.5,470 "/>
|
||||
<polyline fill="none" stroke="black" points="532.5,494 723.5,494 "/>
|
||||
<text text-anchor="start" x="540.5" y="509.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="540.5" y="524.2" font-family="Times,serif" font-size="14.00">client_params</text>
|
||||
</g>
|
||||
<!-- API::InvoicesController -->
|
||||
<g id="node51" class="node"><title>API::InvoicesController</title>
|
||||
<path fill="none" stroke="black" d="M354.5,-646C354.5,-646 477.5,-646 477.5,-646 483.5,-646 489.5,-652 489.5,-658 489.5,-658 489.5,-802 489.5,-802 489.5,-808 483.5,-814 477.5,-814 477.5,-814 354.5,-814 354.5,-814 348.5,-814 342.5,-808 342.5,-802 342.5,-802 342.5,-658 342.5,-658 342.5,-652 348.5,-646 354.5,-646"/>
|
||||
<text text-anchor="middle" x="416" y="-798.8" font-family="Times,serif" font-size="14.00">API::InvoicesController</text>
|
||||
<polyline fill="none" stroke="black" points="342.5,-791 489.5,-791 "/>
|
||||
<text text-anchor="start" x="350.5" y="-775.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="350.5" y="-760.8" font-family="Times,serif" font-size="14.00">download</text>
|
||||
<text text-anchor="start" x="350.5" y="-745.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="350.5" y="-730.8" font-family="Times,serif" font-size="14.00">list</text>
|
||||
<polyline fill="none" stroke="black" points="342.5,-723 489.5,-723 "/>
|
||||
<polyline fill="none" stroke="black" points="342.5,-699 489.5,-699 "/>
|
||||
<text text-anchor="start" x="350.5" y="-683.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="350.5" y="-668.8" font-family="Times,serif" font-size="14.00">avoir_params</text>
|
||||
<text text-anchor="start" x="350.5" y="-653.8" font-family="Times,serif" font-size="14.00">set_invoice</text>
|
||||
<g id="node52" class="node"><title>API::InvoicesController</title>
|
||||
<path fill="none" stroke="black" d="M-215.5,-646C-215.5,-646 -92.5,-646 -92.5,-646 -86.5,-646 -80.5,-652 -80.5,-658 -80.5,-658 -80.5,-802 -80.5,-802 -80.5,-808 -86.5,-814 -92.5,-814 -92.5,-814 -215.5,-814 -215.5,-814 -221.5,-814 -227.5,-808 -227.5,-802 -227.5,-802 -227.5,-658 -227.5,-658 -227.5,-652 -221.5,-646 -215.5,-646"/>
|
||||
<text text-anchor="middle" x="-154" y="-798.8" font-family="Times,serif" font-size="14.00">API::InvoicesController</text>
|
||||
<polyline fill="none" stroke="black" points="-227.5,-791 -80.5,-791 "/>
|
||||
<text text-anchor="start" x="-219.5" y="-775.8" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-219.5" y="-760.8" font-family="Times,serif" font-size="14.00">download</text>
|
||||
<text text-anchor="start" x="-219.5" y="-745.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-219.5" y="-730.8" font-family="Times,serif" font-size="14.00">list</text>
|
||||
<polyline fill="none" stroke="black" points="-227.5,-723 -80.5,-723 "/>
|
||||
<polyline fill="none" stroke="black" points="-227.5,-699 -80.5,-699 "/>
|
||||
<text text-anchor="start" x="-219.5" y="-683.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-219.5" y="-668.8" font-family="Times,serif" font-size="14.00">avoir_params</text>
|
||||
<text text-anchor="start" x="-219.5" y="-653.8" font-family="Times,serif" font-size="14.00">set_invoice</text>
|
||||
</g>
|
||||
<!-- API::LicencesController -->
|
||||
<g id="node52" class="node"><title>API::LicencesController</title>
|
||||
<path fill="none" stroke="black" d="M638.5,626.5C638.5,626.5 763.5,626.5 763.5,626.5 769.5,626.5 775.5,620.5 775.5,614.5 775.5,614.5 775.5,455.5 775.5,455.5 775.5,449.5 769.5,443.5 763.5,443.5 763.5,443.5 638.5,443.5 638.5,443.5 632.5,443.5 626.5,449.5 626.5,455.5 626.5,455.5 626.5,614.5 626.5,614.5 626.5,620.5 632.5,626.5 638.5,626.5"/>
|
||||
<text text-anchor="middle" x="701" y="458.7" font-family="Times,serif" font-size="14.00">API::LicencesController</text>
|
||||
<polyline fill="none" stroke="black" points="626.5,466.5 775.5,466.5 "/>
|
||||
<text text-anchor="start" x="634.5" y="481.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="634.5" y="496.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="634.5" y="511.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="634.5" y="526.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="634.5" y="541.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="626.5,549.5 775.5,549.5 "/>
|
||||
<polyline fill="none" stroke="black" points="626.5,573.5 775.5,573.5 "/>
|
||||
<text text-anchor="start" x="634.5" y="588.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="634.5" y="603.7" font-family="Times,serif" font-size="14.00">licence_params</text>
|
||||
<text text-anchor="start" x="634.5" y="618.7" font-family="Times,serif" font-size="14.00">set_licence</text>
|
||||
<g id="node53" class="node"><title>API::LicencesController</title>
|
||||
<path fill="none" stroke="black" d="M-406.5,645.5C-406.5,645.5 -281.5,645.5 -281.5,645.5 -275.5,645.5 -269.5,639.5 -269.5,633.5 -269.5,633.5 -269.5,474.5 -269.5,474.5 -269.5,468.5 -275.5,462.5 -281.5,462.5 -281.5,462.5 -406.5,462.5 -406.5,462.5 -412.5,462.5 -418.5,468.5 -418.5,474.5 -418.5,474.5 -418.5,633.5 -418.5,633.5 -418.5,639.5 -412.5,645.5 -406.5,645.5"/>
|
||||
<text text-anchor="middle" x="-344" y="477.7" font-family="Times,serif" font-size="14.00">API::LicencesController</text>
|
||||
<polyline fill="none" stroke="black" points="-418.5,485.5 -269.5,485.5 "/>
|
||||
<text text-anchor="start" x="-410.5" y="500.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<text text-anchor="start" x="-410.5" y="515.7" font-family="Times,serif" font-size="14.00">destroy</text>
|
||||
<text text-anchor="start" x="-410.5" y="530.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<text text-anchor="start" x="-410.5" y="545.7" font-family="Times,serif" font-size="14.00">show</text>
|
||||
<text text-anchor="start" x="-410.5" y="560.7" font-family="Times,serif" font-size="14.00">update</text>
|
||||
<polyline fill="none" stroke="black" points="-418.5,568.5 -269.5,568.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-418.5,592.5 -269.5,592.5 "/>
|
||||
<text text-anchor="start" x="-410.5" y="607.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-410.5" y="622.7" font-family="Times,serif" font-size="14.00">licence_params</text>
|
||||
<text text-anchor="start" x="-410.5" y="637.7" font-family="Times,serif" font-size="14.00">set_licence</text>
|
||||
</g>
|
||||
<!-- SocialBotController -->
|
||||
<g id="node53" class="node"><title>SocialBotController</title>
|
||||
<path fill="none" stroke="black" d="M-235.5,759.5C-235.5,759.5 -134.5,759.5 -134.5,759.5 -128.5,759.5 -122.5,753.5 -122.5,747.5 -122.5,747.5 -122.5,678.5 -122.5,678.5 -122.5,672.5 -128.5,666.5 -134.5,666.5 -134.5,666.5 -235.5,666.5 -235.5,666.5 -241.5,666.5 -247.5,672.5 -247.5,678.5 -247.5,678.5 -247.5,747.5 -247.5,747.5 -247.5,753.5 -241.5,759.5 -235.5,759.5"/>
|
||||
<text text-anchor="middle" x="-185" y="681.7" font-family="Times,serif" font-size="14.00">SocialBotController</text>
|
||||
<polyline fill="none" stroke="black" points="-247.5,689.5 -122.5,689.5 "/>
|
||||
<text text-anchor="start" x="-239.5" y="704.7" font-family="Times,serif" font-size="14.00">share</text>
|
||||
<polyline fill="none" stroke="black" points="-247.5,712.5 -122.5,712.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-247.5,736.5 -122.5,736.5 "/>
|
||||
<text text-anchor="start" x="-239.5" y="751.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<g id="node54" class="node"><title>SocialBotController</title>
|
||||
<path fill="none" stroke="black" d="M-748.5,436.5C-748.5,436.5 -647.5,436.5 -647.5,436.5 -641.5,436.5 -635.5,430.5 -635.5,424.5 -635.5,424.5 -635.5,355.5 -635.5,355.5 -635.5,349.5 -641.5,343.5 -647.5,343.5 -647.5,343.5 -748.5,343.5 -748.5,343.5 -754.5,343.5 -760.5,349.5 -760.5,355.5 -760.5,355.5 -760.5,424.5 -760.5,424.5 -760.5,430.5 -754.5,436.5 -748.5,436.5"/>
|
||||
<text text-anchor="middle" x="-698" y="358.7" font-family="Times,serif" font-size="14.00">SocialBotController</text>
|
||||
<polyline fill="none" stroke="black" points="-760.5,366.5 -635.5,366.5 "/>
|
||||
<text text-anchor="start" x="-752.5" y="381.7" font-family="Times,serif" font-size="14.00">share</text>
|
||||
<polyline fill="none" stroke="black" points="-760.5,389.5 -635.5,389.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-760.5,413.5 -635.5,413.5 "/>
|
||||
<text text-anchor="start" x="-752.5" y="428.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- PasswordsController -->
|
||||
<g id="node54" class="node"><title>PasswordsController</title>
|
||||
<path fill="none" stroke="black" d="M259.5,778.5C259.5,778.5 364.5,778.5 364.5,778.5 370.5,778.5 376.5,772.5 376.5,766.5 376.5,766.5 376.5,697.5 376.5,697.5 376.5,691.5 370.5,685.5 364.5,685.5 364.5,685.5 259.5,685.5 259.5,685.5 253.5,685.5 247.5,691.5 247.5,697.5 247.5,697.5 247.5,766.5 247.5,766.5 247.5,772.5 253.5,778.5 259.5,778.5"/>
|
||||
<text text-anchor="middle" x="312" y="700.7" font-family="Times,serif" font-size="14.00">PasswordsController</text>
|
||||
<polyline fill="none" stroke="black" points="247.5,708.5 376.5,708.5 "/>
|
||||
<text text-anchor="start" x="255.5" y="723.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<polyline fill="none" stroke="black" points="247.5,731.5 376.5,731.5 "/>
|
||||
<polyline fill="none" stroke="black" points="247.5,755.5 376.5,755.5 "/>
|
||||
<text text-anchor="start" x="255.5" y="770.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<g id="node55" class="node"><title>PasswordsController</title>
|
||||
<path fill="none" stroke="black" d="M-538.5,778.5C-538.5,778.5 -433.5,778.5 -433.5,778.5 -427.5,778.5 -421.5,772.5 -421.5,766.5 -421.5,766.5 -421.5,697.5 -421.5,697.5 -421.5,691.5 -427.5,685.5 -433.5,685.5 -433.5,685.5 -538.5,685.5 -538.5,685.5 -544.5,685.5 -550.5,691.5 -550.5,697.5 -550.5,697.5 -550.5,766.5 -550.5,766.5 -550.5,772.5 -544.5,778.5 -538.5,778.5"/>
|
||||
<text text-anchor="middle" x="-486" y="700.7" font-family="Times,serif" font-size="14.00">PasswordsController</text>
|
||||
<polyline fill="none" stroke="black" points="-550.5,708.5 -421.5,708.5 "/>
|
||||
<text text-anchor="start" x="-542.5" y="723.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<polyline fill="none" stroke="black" points="-550.5,731.5 -421.5,731.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-550.5,755.5 -421.5,755.5 "/>
|
||||
<text text-anchor="start" x="-542.5" y="770.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- ApplicationController -->
|
||||
<g id="node55" class="node"><title>ApplicationController</title>
|
||||
<path fill="none" stroke="black" d="M-26,-533C-26,-533 144,-533 144,-533 150,-533 156,-539 156,-545 156,-545 156,-673 156,-673 156,-679 150,-685 144,-685 144,-685 -26,-685 -26,-685 -32,-685 -38,-679 -38,-673 -38,-673 -38,-545 -38,-545 -38,-539 -32,-533 -26,-533"/>
|
||||
<text text-anchor="middle" x="59" y="-669.8" font-family="Times,serif" font-size="14.00">ApplicationController</text>
|
||||
<polyline fill="none" stroke="black" points="-38,-662 156,-662 "/>
|
||||
<text text-anchor="start" x="-30" y="-646.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="-38,-639 156,-639 "/>
|
||||
<text text-anchor="start" x="-30" y="-623.8" font-family="Times,serif" font-size="14.00">configure_permitted_parameters</text>
|
||||
<text text-anchor="start" x="-30" y="-608.8" font-family="Times,serif" font-size="14.00">default_url_options</text>
|
||||
<text text-anchor="start" x="-30" y="-593.8" font-family="Times,serif" font-size="14.00">permission_denied</text>
|
||||
<text text-anchor="start" x="-30" y="-578.8" font-family="Times,serif" font-size="14.00">set_csrf_cookie</text>
|
||||
<text text-anchor="start" x="-30" y="-563.8" font-family="Times,serif" font-size="14.00">verified_request?</text>
|
||||
<polyline fill="none" stroke="black" points="-38,-556 156,-556 "/>
|
||||
<text text-anchor="start" x="-30" y="-540.8" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<g id="node56" class="node"><title>ApplicationController</title>
|
||||
<path fill="none" stroke="black" d="M544,94C544,94 714,94 714,94 720,94 726,88 726,82 726,82 726,-46 726,-46 726,-52 720,-58 714,-58 714,-58 544,-58 544,-58 538,-58 532,-52 532,-46 532,-46 532,82 532,82 532,88 538,94 544,94"/>
|
||||
<text text-anchor="middle" x="629" y="-42.8" font-family="Times,serif" font-size="14.00">ApplicationController</text>
|
||||
<polyline fill="none" stroke="black" points="532,-35 726,-35 "/>
|
||||
<text text-anchor="start" x="540" y="-19.8" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="532,-12 726,-12 "/>
|
||||
<text text-anchor="start" x="540" y="3.2" font-family="Times,serif" font-size="14.00">configure_permitted_parameters</text>
|
||||
<text text-anchor="start" x="540" y="18.2" font-family="Times,serif" font-size="14.00">default_url_options</text>
|
||||
<text text-anchor="start" x="540" y="33.2" font-family="Times,serif" font-size="14.00">permission_denied</text>
|
||||
<text text-anchor="start" x="540" y="48.2" font-family="Times,serif" font-size="14.00">set_csrf_cookie</text>
|
||||
<text text-anchor="start" x="540" y="63.2" font-family="Times,serif" font-size="14.00">verified_request?</text>
|
||||
<polyline fill="none" stroke="black" points="532,71 726,71 "/>
|
||||
<text text-anchor="start" x="540" y="86.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- Users::OmniauthCallbacksController -->
|
||||
<g id="node56" class="node"><title>Users::OmniauthCallbacksController</title>
|
||||
<path fill="none" stroke="black" d="M-425,436C-425,436 -231,436 -231,436 -225,436 -219,430 -219,424 -219,424 -219,310 -219,310 -219,304 -225,298 -231,298 -231,298 -425,298 -425,298 -431,298 -437,304 -437,310 -437,310 -437,424 -437,424 -437,430 -431,436 -425,436"/>
|
||||
<text text-anchor="middle" x="-328" y="313.2" font-family="Times,serif" font-size="14.00">Users::OmniauthCallbacksController</text>
|
||||
<polyline fill="none" stroke="black" points="-437,321 -219,321 "/>
|
||||
<text text-anchor="start" x="-429" y="336.2" font-family="Times,serif" font-size="14.00">database-fablab</text>
|
||||
<polyline fill="none" stroke="black" points="-437,344 -219,344 "/>
|
||||
<polyline fill="none" stroke="black" points="-437,368 -219,368 "/>
|
||||
<text text-anchor="start" x="-429" y="383.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-429" y="398.2" font-family="Times,serif" font-size="14.00">email_exists?</text>
|
||||
<text text-anchor="start" x="-429" y="413.2" font-family="Times,serif" font-size="14.00">generate_unique_username</text>
|
||||
<text text-anchor="start" x="-429" y="428.2" font-family="Times,serif" font-size="14.00">username_exists?</text>
|
||||
<g id="node57" class="node"><title>Users::OmniauthCallbacksController</title>
|
||||
<path fill="none" stroke="black" d="M-406,417C-406,417 -212,417 -212,417 -206,417 -200,411 -200,405 -200,405 -200,291 -200,291 -200,285 -206,279 -212,279 -212,279 -406,279 -406,279 -412,279 -418,285 -418,291 -418,291 -418,405 -418,405 -418,411 -412,417 -406,417"/>
|
||||
<text text-anchor="middle" x="-309" y="294.2" font-family="Times,serif" font-size="14.00">Users::OmniauthCallbacksController</text>
|
||||
<polyline fill="none" stroke="black" points="-418,302 -200,302 "/>
|
||||
<text text-anchor="start" x="-410" y="317.2" font-family="Times,serif" font-size="14.00">database-fablab</text>
|
||||
<polyline fill="none" stroke="black" points="-418,325 -200,325 "/>
|
||||
<polyline fill="none" stroke="black" points="-418,349 -200,349 "/>
|
||||
<text text-anchor="start" x="-410" y="364.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<text text-anchor="start" x="-410" y="379.2" font-family="Times,serif" font-size="14.00">email_exists?</text>
|
||||
<text text-anchor="start" x="-410" y="394.2" font-family="Times,serif" font-size="14.00">generate_unique_username</text>
|
||||
<text text-anchor="start" x="-410" y="409.2" font-family="Times,serif" font-size="14.00">username_exists?</text>
|
||||
</g>
|
||||
<!-- WebhooksController -->
|
||||
<g id="node57" class="node"><title>WebhooksController</title>
|
||||
<path fill="none" stroke="black" d="M791.5,132.5C791.5,132.5 898.5,132.5 898.5,132.5 904.5,132.5 910.5,126.5 910.5,120.5 910.5,120.5 910.5,51.5 910.5,51.5 910.5,45.5 904.5,39.5 898.5,39.5 898.5,39.5 791.5,39.5 791.5,39.5 785.5,39.5 779.5,45.5 779.5,51.5 779.5,51.5 779.5,120.5 779.5,120.5 779.5,126.5 785.5,132.5 791.5,132.5"/>
|
||||
<text text-anchor="middle" x="845" y="54.7" font-family="Times,serif" font-size="14.00">WebhooksController</text>
|
||||
<polyline fill="none" stroke="black" points="779.5,62.5 910.5,62.5 "/>
|
||||
<text text-anchor="start" x="787.5" y="77.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<polyline fill="none" stroke="black" points="779.5,85.5 910.5,85.5 "/>
|
||||
<polyline fill="none" stroke="black" points="779.5,109.5 910.5,109.5 "/>
|
||||
<text text-anchor="start" x="787.5" y="124.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<g id="node58" class="node"><title>WebhooksController</title>
|
||||
<path fill="none" stroke="black" d="M563.5,816.5C563.5,816.5 670.5,816.5 670.5,816.5 676.5,816.5 682.5,810.5 682.5,804.5 682.5,804.5 682.5,735.5 682.5,735.5 682.5,729.5 676.5,723.5 670.5,723.5 670.5,723.5 563.5,723.5 563.5,723.5 557.5,723.5 551.5,729.5 551.5,735.5 551.5,735.5 551.5,804.5 551.5,804.5 551.5,810.5 557.5,816.5 563.5,816.5"/>
|
||||
<text text-anchor="middle" x="617" y="738.7" font-family="Times,serif" font-size="14.00">WebhooksController</text>
|
||||
<polyline fill="none" stroke="black" points="551.5,746.5 682.5,746.5 "/>
|
||||
<text text-anchor="start" x="559.5" y="761.7" font-family="Times,serif" font-size="14.00">create</text>
|
||||
<polyline fill="none" stroke="black" points="551.5,769.5 682.5,769.5 "/>
|
||||
<polyline fill="none" stroke="black" points="551.5,793.5 682.5,793.5 "/>
|
||||
<text text-anchor="start" x="559.5" y="808.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- Rss::RssController -->
|
||||
<g id="node59" class="node"><title>Rss::RssController</title>
|
||||
<path fill="none" stroke="black" d="M-367.5,778C-367.5,778 -272.5,778 -272.5,778 -266.5,778 -260.5,772 -260.5,766 -260.5,766 -260.5,696 -260.5,696 -260.5,690 -266.5,684 -272.5,684 -272.5,684 -367.5,684 -367.5,684 -373.5,684 -379.5,690 -379.5,696 -379.5,696 -379.5,766 -379.5,766 -379.5,772 -373.5,778 -367.5,778"/>
|
||||
<text text-anchor="middle" x="-320" y="699.2" font-family="Times,serif" font-size="14.00">Rss::RssController</text>
|
||||
<polyline fill="none" stroke="black" points="-379.5,707 -260.5,707 "/>
|
||||
<polyline fill="none" stroke="black" points="-379.5,731 -260.5,731 "/>
|
||||
<polyline fill="none" stroke="black" points="-379.5,755 -260.5,755 "/>
|
||||
<text text-anchor="start" x="-371.5" y="770.2" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- Rss::EventsController -->
|
||||
<g id="node60" class="node"><title>Rss::EventsController</title>
|
||||
<path fill="none" stroke="black" d="M734,816.5C734,816.5 846,816.5 846,816.5 852,816.5 858,810.5 858,804.5 858,804.5 858,735.5 858,735.5 858,729.5 852,723.5 846,723.5 846,723.5 734,723.5 734,723.5 728,723.5 722,729.5 722,735.5 722,735.5 722,804.5 722,804.5 722,810.5 728,816.5 734,816.5"/>
|
||||
<text text-anchor="middle" x="790" y="738.7" font-family="Times,serif" font-size="14.00">Rss::EventsController</text>
|
||||
<polyline fill="none" stroke="black" points="722,746.5 858,746.5 "/>
|
||||
<text text-anchor="start" x="730" y="761.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="722,769.5 858,769.5 "/>
|
||||
<polyline fill="none" stroke="black" points="722,793.5 858,793.5 "/>
|
||||
<text text-anchor="start" x="730" y="808.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- Rss::ProjectsController -->
|
||||
<g id="node61" class="node"><title>Rss::ProjectsController</title>
|
||||
<path fill="none" stroke="black" d="M221.5,778.5C221.5,778.5 340.5,778.5 340.5,778.5 346.5,778.5 352.5,772.5 352.5,766.5 352.5,766.5 352.5,697.5 352.5,697.5 352.5,691.5 346.5,685.5 340.5,685.5 340.5,685.5 221.5,685.5 221.5,685.5 215.5,685.5 209.5,691.5 209.5,697.5 209.5,697.5 209.5,766.5 209.5,766.5 209.5,772.5 215.5,778.5 221.5,778.5"/>
|
||||
<text text-anchor="middle" x="281" y="700.7" font-family="Times,serif" font-size="14.00">Rss::ProjectsController</text>
|
||||
<polyline fill="none" stroke="black" points="209.5,708.5 352.5,708.5 "/>
|
||||
<text text-anchor="start" x="217.5" y="723.7" font-family="Times,serif" font-size="14.00">index</text>
|
||||
<polyline fill="none" stroke="black" points="209.5,731.5 352.5,731.5 "/>
|
||||
<polyline fill="none" stroke="black" points="209.5,755.5 352.5,755.5 "/>
|
||||
<text text-anchor="start" x="217.5" y="770.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
<!-- ConfirmationsController -->
|
||||
<g id="node58" class="node"><title>ConfirmationsController</title>
|
||||
<path fill="none" stroke="black" d="M-728.5,740.5C-728.5,740.5 -581.5,740.5 -581.5,740.5 -575.5,740.5 -569.5,734.5 -569.5,728.5 -569.5,728.5 -569.5,659.5 -569.5,659.5 -569.5,653.5 -575.5,647.5 -581.5,647.5 -581.5,647.5 -728.5,647.5 -728.5,647.5 -734.5,647.5 -740.5,653.5 -740.5,659.5 -740.5,659.5 -740.5,728.5 -740.5,728.5 -740.5,734.5 -734.5,740.5 -728.5,740.5"/>
|
||||
<text text-anchor="middle" x="-655" y="662.7" font-family="Times,serif" font-size="14.00">ConfirmationsController</text>
|
||||
<polyline fill="none" stroke="black" points="-740.5,670.5 -569.5,670.5 "/>
|
||||
<text text-anchor="start" x="-732.5" y="685.7" font-family="Times,serif" font-size="14.00">after_confirmation_path_for</text>
|
||||
<polyline fill="none" stroke="black" points="-740.5,693.5 -569.5,693.5 "/>
|
||||
<polyline fill="none" stroke="black" points="-740.5,717.5 -569.5,717.5 "/>
|
||||
<text text-anchor="start" x="-732.5" y="732.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
<g id="node62" class="node"><title>ConfirmationsController</title>
|
||||
<path fill="none" stroke="black" d="M772.5,170.5C772.5,170.5 919.5,170.5 919.5,170.5 925.5,170.5 931.5,164.5 931.5,158.5 931.5,158.5 931.5,89.5 931.5,89.5 931.5,83.5 925.5,77.5 919.5,77.5 919.5,77.5 772.5,77.5 772.5,77.5 766.5,77.5 760.5,83.5 760.5,89.5 760.5,89.5 760.5,158.5 760.5,158.5 760.5,164.5 766.5,170.5 772.5,170.5"/>
|
||||
<text text-anchor="middle" x="846" y="92.7" font-family="Times,serif" font-size="14.00">ConfirmationsController</text>
|
||||
<polyline fill="none" stroke="black" points="760.5,100.5 931.5,100.5 "/>
|
||||
<text text-anchor="start" x="768.5" y="115.7" font-family="Times,serif" font-size="14.00">after_confirmation_path_for</text>
|
||||
<polyline fill="none" stroke="black" points="760.5,123.5 931.5,123.5 "/>
|
||||
<polyline fill="none" stroke="black" points="760.5,147.5 931.5,147.5 "/>
|
||||
<text text-anchor="start" x="768.5" y="162.7" font-family="Times,serif" font-size="14.00">_layout</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 84 KiB |
@ -12,8 +12,8 @@
|
||||
<!-- _diagram_info -->
|
||||
<g id="node1" class="node"><title>_diagram_info</title>
|
||||
<text text-anchor="start" x="1417" y="-759.6" font-family="Times,serif" font-size="13.00">Models diagram</text>
|
||||
<text text-anchor="start" x="1417" y="-745.6" font-family="Times,serif" font-size="13.00">Date: Sep 15 2016 - 17:48</text>
|
||||
<text text-anchor="start" x="1417" y="-731.6" font-family="Times,serif" font-size="13.00">Migration version: 20160915105234</text>
|
||||
<text text-anchor="start" x="1417" y="-745.6" font-family="Times,serif" font-size="13.00">Date: Nov 23 2016 - 10:21</text>
|
||||
<text text-anchor="start" x="1417" y="-731.6" font-family="Times,serif" font-size="13.00">Migration version: 20160922155555</text>
|
||||
<text text-anchor="start" x="1417" y="-717.6" font-family="Times,serif" font-size="13.00">Generated by RailRoady 1.4.0</text>
|
||||
<text text-anchor="start" x="1417" y="-703.6" font-family="Times,serif" font-size="13.00">http://railroady.prestonlee.com</text>
|
||||
</g>
|
||||
@ -29,9 +29,9 @@
|
||||
</g>
|
||||
<!-- Group->Price -->
|
||||
<g id="edge4" class="edge"><title>Group->Price</title>
|
||||
<path fill="none" stroke="#006630" d="M1715.11,-730.884C1831.04,-719.622 2160.87,-669.975 2296,-464 2304.78,-450.622 2300.73,-443.284 2296,-428 2287.39,-400.209 2245.03,-337.779 2222,-320 2168.92,-279.021 2141.65,-295.375 2080,-269 2078.84,-268.504 2077.66,-267.986 2076.48,-267.454"/>
|
||||
<ellipse fill="none" stroke="#006630" cx="1710.8" cy="-731.287" rx="4" ry="4"/>
|
||||
<polygon fill="#006630" stroke="#006630" points="2076.45,-267.441 2069.32,-259.111 2071.93,-265.312 2067.4,-263.183 2067.4,-263.183 2067.4,-263.183 2071.93,-265.312 2065.49,-267.255 2076.45,-267.441 2076.45,-267.441"/>
|
||||
<path fill="none" stroke="#a14fcc" d="M1715.11,-730.884C1831.04,-719.622 2160.87,-669.975 2296,-464 2304.78,-450.622 2300.73,-443.284 2296,-428 2287.39,-400.209 2245.03,-337.779 2222,-320 2168.92,-279.021 2141.65,-295.375 2080,-269 2078.84,-268.504 2077.66,-267.986 2076.48,-267.454"/>
|
||||
<ellipse fill="none" stroke="#a14fcc" cx="1710.8" cy="-731.287" rx="4" ry="4"/>
|
||||
<polygon fill="#a14fcc" stroke="#a14fcc" points="2076.45,-267.441 2069.32,-259.111 2071.93,-265.312 2067.4,-263.183 2067.4,-263.183 2067.4,-263.183 2071.93,-265.312 2065.49,-267.255 2076.45,-267.441 2076.45,-267.441"/>
|
||||
<text text-anchor="middle" x="2327.5" y="-496.3" font-family="Times,serif" font-size="14.00">machines_prices</text>
|
||||
</g>
|
||||
<!-- TrainingsPricing -->
|
||||
@ -41,9 +41,9 @@
|
||||
</g>
|
||||
<!-- Group->TrainingsPricing -->
|
||||
<g id="edge3" class="edge"><title>Group->TrainingsPricing</title>
|
||||
<path fill="none" stroke="#58cc84" d="M1685.84,-710.312C1702.88,-673.545 1731.48,-600.276 1724,-536 1721.55,-514.975 1715.96,-491.709 1711.16,-474.24"/>
|
||||
<ellipse fill="none" stroke="#58cc84" cx="1684.11" cy="-713.971" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#58cc84" stroke="#58cc84" points="1711.04,-473.804 1712.64,-462.956 1709.67,-468.994 1708.31,-464.183 1708.31,-464.183 1708.31,-464.183 1709.67,-468.994 1703.98,-465.411 1711.04,-473.804 1711.04,-473.804"/>
|
||||
<path fill="none" stroke="#19bdcf" d="M1685.84,-710.312C1702.88,-673.545 1731.48,-600.276 1724,-536 1721.55,-514.975 1715.96,-491.709 1711.16,-474.24"/>
|
||||
<ellipse fill="none" stroke="#19bdcf" cx="1684.11" cy="-713.971" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#19bdcf" stroke="#19bdcf" points="1711.04,-473.804 1712.64,-462.956 1709.67,-468.994 1708.31,-464.183 1708.31,-464.183 1708.31,-464.183 1709.67,-468.994 1703.98,-465.411 1711.04,-473.804 1711.04,-473.804"/>
|
||||
</g>
|
||||
<!-- Plan -->
|
||||
<g id="node34" class="node"><title>Plan</title>
|
||||
@ -52,9 +52,9 @@
|
||||
</g>
|
||||
<!-- Group->Plan -->
|
||||
<g id="edge1" class="edge"><title>Group->Plan</title>
|
||||
<path fill="none" stroke="#11750a" d="M1653.27,-712.806C1632.95,-691.087 1605,-658.264 1605,-642 1605,-642 1605,-642 1605,-445 1605,-361.586 1731.68,-343.615 1796.6,-339.882"/>
|
||||
<ellipse fill="none" stroke="#11750a" cx="1656.28" cy="-715.983" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#11750a" stroke="#11750a" points="1796.84,-339.87 1807.05,-343.877 1801.84,-339.626 1806.83,-339.382 1806.83,-339.382 1806.83,-339.382 1801.84,-339.626 1806.61,-334.888 1796.84,-339.87 1796.84,-339.87"/>
|
||||
<path fill="none" stroke="#af6a52" d="M1653.27,-712.806C1632.95,-691.087 1605,-658.264 1605,-642 1605,-642 1605,-642 1605,-445 1605,-361.586 1731.68,-343.615 1796.6,-339.882"/>
|
||||
<ellipse fill="none" stroke="#af6a52" cx="1656.28" cy="-715.983" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#af6a52" stroke="#af6a52" points="1796.84,-339.87 1807.05,-343.877 1801.84,-339.626 1806.83,-339.382 1806.83,-339.382 1806.83,-339.382 1801.84,-339.626 1806.61,-334.888 1796.84,-339.87 1796.84,-339.87"/>
|
||||
</g>
|
||||
<!-- User -->
|
||||
<g id="node41" class="node"><title>User</title>
|
||||
@ -63,9 +63,9 @@
|
||||
</g>
|
||||
<!-- Group->User -->
|
||||
<g id="edge2" class="edge"><title>Group->User</title>
|
||||
<path fill="none" stroke="#329972" d="M1655.09,-712.48C1648.43,-706.183 1640.46,-699.94 1632,-696 1568.68,-666.524 1359.68,-649.961 1274.07,-644.271"/>
|
||||
<ellipse fill="none" stroke="#329972" cx="1658" cy="-715.387" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#329972" stroke="#329972" points="1274,-644.266 1264.31,-639.125 1269.01,-643.941 1264.02,-643.615 1264.02,-643.615 1264.02,-643.615 1269.01,-643.941 1263.72,-648.106 1274,-644.266 1274,-644.266"/>
|
||||
<path fill="none" stroke="#65240f" d="M1655.09,-712.48C1648.43,-706.183 1640.46,-699.94 1632,-696 1568.68,-666.524 1359.68,-649.961 1274.07,-644.271"/>
|
||||
<ellipse fill="none" stroke="#65240f" cx="1658" cy="-715.387" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#65240f" stroke="#65240f" points="1274,-644.266 1264.31,-639.125 1269.01,-643.941 1264.02,-643.615 1264.02,-643.615 1264.02,-643.615 1269.01,-643.941 1263.72,-648.106 1274,-644.266 1274,-644.266"/>
|
||||
</g>
|
||||
<!-- InvoiceItem -->
|
||||
<g id="node3" class="node"><title>InvoiceItem</title>
|
||||
@ -74,9 +74,9 @@
|
||||
</g>
|
||||
<!-- InvoiceItem->InvoiceItem -->
|
||||
<g id="edge5" class="edge"><title>InvoiceItem->InvoiceItem</title>
|
||||
<path fill="none" stroke="#31cfee" d="M1611.5,-24.0146C1619.56,-23.0195 1624.95,-21.0146 1624.95,-18 1624.95,-14.9854 1619.56,-12.9805 1611.5,-11.9854"/>
|
||||
<ellipse fill="none" stroke="#31cfee" cx="1607.42" cy="-24.3334" rx="4" ry="4"/>
|
||||
<ellipse fill="#31cfee" stroke="#31cfee" cx="1607.42" cy="-11.6666" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#0523be" d="M1611.5,-24.0146C1619.56,-23.0195 1624.95,-21.0146 1624.95,-18 1624.95,-14.9854 1619.56,-12.9805 1611.5,-11.9854"/>
|
||||
<ellipse fill="none" stroke="#0523be" cx="1607.42" cy="-24.3334" rx="4" ry="4"/>
|
||||
<ellipse fill="#0523be" stroke="#0523be" cx="1607.42" cy="-11.6666" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- AvailabilityTag -->
|
||||
<g id="node5" class="node"><title>AvailabilityTag</title>
|
||||
@ -105,9 +105,9 @@
|
||||
</g>
|
||||
<!-- OpenAPI::Client->OpenAPI::CallsCountTracing -->
|
||||
<g id="edge6" class="edge"><title>OpenAPI::Client->OpenAPI::CallsCountTracing</title>
|
||||
<path fill="none" stroke="#b4eee0" d="M2962,-708.451C2962,-696.315 2962,-681.795 2962,-669.427"/>
|
||||
<ellipse fill="none" stroke="#b4eee0" cx="2962" cy="-712.696" rx="4" ry="4"/>
|
||||
<polygon fill="#b4eee0" stroke="#b4eee0" points="2962,-669.227 2966.5,-659.227 2962,-664.227 2962,-659.227 2962,-659.227 2962,-659.227 2962,-664.227 2957.5,-659.227 2962,-669.227 2962,-669.227"/>
|
||||
<path fill="none" stroke="#7f74f4" d="M2962,-708.451C2962,-696.315 2962,-681.795 2962,-669.427"/>
|
||||
<ellipse fill="none" stroke="#7f74f4" cx="2962" cy="-712.696" rx="4" ry="4"/>
|
||||
<polygon fill="#7f74f4" stroke="#7f74f4" points="2962,-669.227 2966.5,-659.227 2962,-664.227 2962,-659.227 2962,-659.227 2962,-659.227 2962,-664.227 2957.5,-659.227 2962,-669.227 2962,-669.227"/>
|
||||
</g>
|
||||
<!-- OpenAPI::ParameterError -->
|
||||
<g id="node10" class="node"><title>OpenAPI::ParameterError</title>
|
||||
@ -131,15 +131,15 @@
|
||||
</g>
|
||||
<!-- Tag->AvailabilityTag -->
|
||||
<g id="edge9" class="edge"><title>Tag->AvailabilityTag</title>
|
||||
<path fill="none" stroke="#5ef550" d="M2324.31,-724.872C2363.52,-713.009 2430.86,-690.077 2483,-659 2514.97,-639.945 2519.35,-629.911 2547,-605 2556.36,-596.571 2566.38,-587.05 2575.11,-578.596"/>
|
||||
<ellipse fill="none" stroke="#5ef550" cx="2320.22" cy="-726.092" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#5ef550" stroke="#5ef550" points="2575.24,-578.473 2585.54,-574.717 2578.82,-574.984 2582.4,-571.494 2582.4,-571.494 2582.4,-571.494 2578.82,-574.984 2579.26,-568.271 2575.24,-578.473 2575.24,-578.473"/>
|
||||
<path fill="none" stroke="#b5c376" d="M2324.31,-724.872C2363.52,-713.009 2430.86,-690.077 2483,-659 2514.97,-639.945 2519.35,-629.911 2547,-605 2556.36,-596.571 2566.38,-587.05 2575.11,-578.596"/>
|
||||
<ellipse fill="none" stroke="#b5c376" cx="2320.22" cy="-726.092" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#b5c376" stroke="#b5c376" points="2575.24,-578.473 2585.54,-574.717 2578.82,-574.984 2582.4,-571.494 2582.4,-571.494 2582.4,-571.494 2578.82,-574.984 2579.26,-568.271 2575.24,-578.473 2575.24,-578.473"/>
|
||||
</g>
|
||||
<!-- Tag->User -->
|
||||
<g id="edge8" class="edge"><title>Tag->User</title>
|
||||
<path fill="none" stroke="#63a808" d="M2255.18,-730.79C2092.31,-716.586 1437.41,-659.476 1274.05,-645.231"/>
|
||||
<polygon fill="#63a808" stroke="#63a808" points="2255.43,-730.811 2265,-736.163 2260.41,-731.245 2265.39,-731.68 2265.39,-731.68 2265.39,-731.68 2260.41,-731.245 2265.78,-727.197 2255.43,-730.811 2255.43,-730.811"/>
|
||||
<polygon fill="#63a808" stroke="#63a808" points="1273.98,-645.225 1264.41,-639.873 1269,-644.79 1264.02,-644.356 1264.02,-644.356 1264.02,-644.356 1269,-644.79 1263.62,-648.839 1273.98,-645.225 1273.98,-645.225"/>
|
||||
<path fill="none" stroke="#77fe75" d="M2255.18,-730.79C2092.31,-716.586 1437.41,-659.476 1274.05,-645.231"/>
|
||||
<polygon fill="#77fe75" stroke="#77fe75" points="2255.43,-730.811 2265,-736.163 2260.41,-731.245 2265.39,-731.68 2265.39,-731.68 2265.39,-731.68 2260.41,-731.245 2265.78,-727.197 2255.43,-730.811 2255.43,-730.811"/>
|
||||
<polygon fill="#77fe75" stroke="#77fe75" points="1273.98,-645.225 1264.41,-639.873 1269,-644.79 1264.02,-644.356 1264.02,-644.356 1264.02,-644.356 1269,-644.79 1263.62,-648.839 1273.98,-645.225 1273.98,-645.225"/>
|
||||
</g>
|
||||
<!-- Availability -->
|
||||
<g id="node53" class="node"><title>Availability</title>
|
||||
@ -148,9 +148,9 @@
|
||||
</g>
|
||||
<!-- Tag->Availability -->
|
||||
<g id="edge10" class="edge"><title>Tag->Availability</title>
|
||||
<path fill="none" stroke="#45ee79" d="M2318.2,-715.315C2339.3,-700.27 2368.96,-679.113 2391.01,-663.391"/>
|
||||
<polygon fill="#45ee79" stroke="#45ee79" points="2318.08,-715.401 2307.32,-717.544 2314.01,-718.305 2309.94,-721.208 2309.94,-721.208 2309.94,-721.208 2314.01,-718.305 2312.55,-724.872 2318.08,-715.401 2318.08,-715.401"/>
|
||||
<polygon fill="#45ee79" stroke="#45ee79" points="2391.2,-663.251 2401.96,-661.108 2395.27,-660.347 2399.34,-657.444 2399.34,-657.444 2399.34,-657.444 2395.27,-660.347 2396.73,-653.78 2391.2,-663.251 2391.2,-663.251"/>
|
||||
<path fill="none" stroke="#cd6529" d="M2318.2,-715.315C2339.3,-700.27 2368.96,-679.113 2391.01,-663.391"/>
|
||||
<polygon fill="#cd6529" stroke="#cd6529" points="2318.08,-715.401 2307.32,-717.544 2314.01,-718.305 2309.94,-721.208 2309.94,-721.208 2309.94,-721.208 2314.01,-718.305 2312.55,-724.872 2318.08,-715.401 2318.08,-715.401"/>
|
||||
<polygon fill="#cd6529" stroke="#cd6529" points="2391.2,-663.251 2401.96,-661.108 2395.27,-660.347 2399.34,-657.444 2399.34,-657.444 2399.34,-657.444 2395.27,-660.347 2396.73,-653.78 2391.2,-663.251 2391.2,-663.251"/>
|
||||
</g>
|
||||
<!-- UserTag -->
|
||||
<g id="node66" class="node"><title>UserTag</title>
|
||||
@ -159,9 +159,9 @@
|
||||
</g>
|
||||
<!-- Tag->UserTag -->
|
||||
<g id="edge7" class="edge"><title>Tag->UserTag</title>
|
||||
<path fill="none" stroke="#a0a58f" d="M2259.97,-724.724C2157.02,-694.903 1834.4,-601.46 1717.15,-567.497"/>
|
||||
<ellipse fill="none" stroke="#a0a58f" cx="2263.93" cy="-725.87" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#a0a58f" stroke="#a0a58f" points="1717.03,-567.464 1708.68,-560.36 1712.23,-566.073 1707.43,-564.682 1707.43,-564.682 1707.43,-564.682 1712.23,-566.073 1706.18,-569.005 1717.03,-567.464 1717.03,-567.464"/>
|
||||
<path fill="none" stroke="#fa3f43" d="M2259.97,-724.724C2157.02,-694.903 1834.4,-601.46 1717.15,-567.497"/>
|
||||
<ellipse fill="none" stroke="#fa3f43" cx="2263.93" cy="-725.87" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#fa3f43" stroke="#fa3f43" points="1717.03,-567.464 1708.68,-560.36 1712.23,-566.073 1707.43,-564.682 1707.43,-564.682 1707.43,-564.682 1712.23,-566.073 1706.18,-569.005 1717.03,-567.464 1717.03,-567.464"/>
|
||||
</g>
|
||||
<!-- Event -->
|
||||
<g id="node14" class="node"><title>Event</title>
|
||||
@ -175,9 +175,9 @@
|
||||
</g>
|
||||
<!-- Event->PriceCategory -->
|
||||
<g id="edge16" class="edge"><title>Event->PriceCategory</title>
|
||||
<path fill="none" stroke="#f73fa0" d="M2810.41,-544.337C2836.12,-538.092 2870.52,-528.87 2900,-518 2939.73,-503.352 2983.32,-482.282 3013.41,-466.901"/>
|
||||
<polygon fill="#f73fa0" stroke="#f73fa0" points="2810.39,-544.342 2799.61,-542.286 2805.52,-545.503 2800.66,-546.664 2800.66,-546.664 2800.66,-546.664 2805.52,-545.503 2801.7,-551.041 2810.39,-544.342 2810.39,-544.342"/>
|
||||
<polygon fill="#f73fa0" stroke="#f73fa0" points="3013.8,-466.703 3024.75,-466.122 3018.24,-464.412 3022.68,-462.122 3022.68,-462.122 3022.68,-462.122 3018.24,-464.412 3020.62,-458.122 3013.8,-466.703 3013.8,-466.703"/>
|
||||
<path fill="none" stroke="#af4723" d="M2810.41,-544.337C2836.12,-538.092 2870.52,-528.87 2900,-518 2939.73,-503.352 2983.32,-482.282 3013.41,-466.901"/>
|
||||
<polygon fill="#af4723" stroke="#af4723" points="2810.39,-544.342 2799.61,-542.286 2805.52,-545.503 2800.66,-546.664 2800.66,-546.664 2800.66,-546.664 2805.52,-545.503 2801.7,-551.041 2810.39,-544.342 2810.39,-544.342"/>
|
||||
<polygon fill="#af4723" stroke="#af4723" points="3013.8,-466.703 3024.75,-466.122 3018.24,-464.412 3022.68,-462.122 3022.68,-462.122 3022.68,-462.122 3018.24,-464.412 3020.62,-458.122 3013.8,-466.703 3013.8,-466.703"/>
|
||||
</g>
|
||||
<!-- EventTheme -->
|
||||
<g id="node38" class="node"><title>EventTheme</title>
|
||||
@ -186,9 +186,9 @@
|
||||
</g>
|
||||
<!-- Event->EventTheme -->
|
||||
<g id="edge14" class="edge"><title>Event->EventTheme</title>
|
||||
<path fill="none" stroke="#9f59df" d="M2746.96,-532.261C2725.19,-514.234 2693.72,-488.172 2671.31,-469.614"/>
|
||||
<polygon fill="#9f59df" stroke="#9f59df" points="2747.04,-532.326 2751.87,-542.17 2750.89,-535.515 2754.74,-538.704 2754.74,-538.704 2754.74,-538.704 2750.89,-535.515 2757.61,-535.239 2747.04,-532.326 2747.04,-532.326"/>
|
||||
<polygon fill="#9f59df" stroke="#9f59df" points="2671.2,-469.524 2666.37,-459.68 2667.35,-466.335 2663.5,-463.146 2663.5,-463.146 2663.5,-463.146 2667.35,-466.335 2660.63,-466.612 2671.2,-469.524 2671.2,-469.524"/>
|
||||
<path fill="none" stroke="#d578a9" d="M2746.96,-532.261C2725.19,-514.234 2693.72,-488.172 2671.31,-469.614"/>
|
||||
<polygon fill="#d578a9" stroke="#d578a9" points="2747.04,-532.326 2751.87,-542.17 2750.89,-535.515 2754.74,-538.704 2754.74,-538.704 2754.74,-538.704 2750.89,-535.515 2757.61,-535.239 2747.04,-532.326 2747.04,-532.326"/>
|
||||
<polygon fill="#d578a9" stroke="#d578a9" points="2671.2,-469.524 2666.37,-459.68 2667.35,-466.335 2663.5,-463.146 2663.5,-463.146 2663.5,-463.146 2667.35,-466.335 2660.63,-466.612 2671.2,-469.524 2671.2,-469.524"/>
|
||||
</g>
|
||||
<!-- EventImage -->
|
||||
<g id="node43" class="node"><title>EventImage</title>
|
||||
@ -197,9 +197,9 @@
|
||||
</g>
|
||||
<!-- Event->EventImage -->
|
||||
<g id="edge11" class="edge"><title>Event->EventImage</title>
|
||||
<path fill="none" stroke="#a81f13" d="M2772,-527.795C2772,-511.123 2772,-489.335 2772,-472.586"/>
|
||||
<ellipse fill="none" stroke="#a81f13" cx="2772" cy="-531.969" rx="4" ry="4"/>
|
||||
<ellipse fill="#a81f13" stroke="#a81f13" cx="2772" cy="-468.341" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#acd810" d="M2772,-527.795C2772,-511.123 2772,-489.335 2772,-472.586"/>
|
||||
<ellipse fill="none" stroke="#acd810" cx="2772" cy="-531.969" rx="4" ry="4"/>
|
||||
<ellipse fill="#acd810" stroke="#acd810" cx="2772" cy="-468.341" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- Reservation -->
|
||||
<g id="node58" class="node"><title>Reservation</title>
|
||||
@ -208,9 +208,9 @@
|
||||
</g>
|
||||
<!-- Event->Reservation -->
|
||||
<g id="edge13" class="edge"><title>Event->Reservation</title>
|
||||
<path fill="none" stroke="#38da31" d="M2735.73,-544.355C2693.35,-532.604 2623.39,-507.851 2579,-464 2550.76,-436.105 2532.21,-393.35 2522.4,-365.782"/>
|
||||
<ellipse fill="none" stroke="#38da31" cx="2739.7" cy="-545.426" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#38da31" stroke="#38da31" points="2522.3,-365.486 2523.33,-354.568 2520.69,-360.754 2519.07,-356.022 2519.07,-356.022 2519.07,-356.022 2520.69,-360.754 2514.82,-357.475 2522.3,-365.486 2522.3,-365.486"/>
|
||||
<path fill="none" stroke="#07501d" d="M2735.73,-544.355C2693.35,-532.604 2623.39,-507.851 2579,-464 2550.76,-436.105 2532.21,-393.35 2522.4,-365.782"/>
|
||||
<ellipse fill="none" stroke="#07501d" cx="2739.7" cy="-545.426" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#07501d" stroke="#07501d" points="2522.3,-365.486 2523.33,-354.568 2520.69,-360.754 2519.07,-356.022 2519.07,-356.022 2519.07,-356.022 2520.69,-360.754 2514.82,-357.475 2522.3,-365.486 2522.3,-365.486"/>
|
||||
</g>
|
||||
<!-- EventPriceCategory -->
|
||||
<g id="node64" class="node"><title>EventPriceCategory</title>
|
||||
@ -219,9 +219,9 @@
|
||||
</g>
|
||||
<!-- Event->EventPriceCategory -->
|
||||
<g id="edge15" class="edge"><title>Event->EventPriceCategory</title>
|
||||
<path fill="none" stroke="#c7e71d" d="M2791.8,-531.281C2806.17,-514.246 2824.81,-489.263 2835,-464 2847.86,-432.116 2852.1,-392.456 2853.45,-366.47"/>
|
||||
<ellipse fill="none" stroke="#c7e71d" cx="2788.94" cy="-534.597" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#c7e71d" stroke="#c7e71d" points="2853.46,-366.225 2858.36,-356.417 2853.66,-361.229 2853.87,-356.233 2853.87,-356.233 2853.87,-356.233 2853.66,-361.229 2849.37,-356.049 2853.46,-366.225 2853.46,-366.225"/>
|
||||
<path fill="none" stroke="#e922b8" d="M2791.8,-531.281C2806.17,-514.246 2824.81,-489.263 2835,-464 2847.86,-432.116 2852.1,-392.456 2853.45,-366.47"/>
|
||||
<ellipse fill="none" stroke="#e922b8" cx="2788.94" cy="-534.597" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#e922b8" stroke="#e922b8" points="2853.46,-366.225 2858.36,-356.417 2853.66,-361.229 2853.87,-356.233 2853.87,-356.233 2853.87,-356.233 2853.66,-361.229 2849.37,-356.049 2853.46,-366.225 2853.46,-366.225"/>
|
||||
</g>
|
||||
<!-- EventFile -->
|
||||
<g id="node65" class="node"><title>EventFile</title>
|
||||
@ -230,9 +230,9 @@
|
||||
</g>
|
||||
<!-- Event->EventFile -->
|
||||
<g id="edge12" class="edge"><title>Event->EventFile</title>
|
||||
<path fill="none" stroke="#b901f0" d="M2808.6,-544.58C2827.49,-539.064 2850.23,-530.512 2868,-518 2885.31,-505.812 2900.46,-487.302 2911.08,-472.237"/>
|
||||
<ellipse fill="none" stroke="#b901f0" cx="2804.62" cy="-545.689" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#b901f0" stroke="#b901f0" points="2911.16,-472.109 2920.51,-466.368 2913.97,-467.974 2916.78,-463.838 2916.78,-463.838 2916.78,-463.838 2913.97,-467.974 2913.06,-461.309 2911.16,-472.109 2911.16,-472.109"/>
|
||||
<path fill="none" stroke="#7e9ae5" d="M2808.6,-544.58C2827.49,-539.064 2850.23,-530.512 2868,-518 2885.31,-505.812 2900.46,-487.302 2911.08,-472.237"/>
|
||||
<ellipse fill="none" stroke="#7e9ae5" cx="2804.62" cy="-545.689" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#7e9ae5" stroke="#7e9ae5" points="2911.16,-472.109 2920.51,-466.368 2913.97,-467.974 2916.78,-463.838 2916.78,-463.838 2916.78,-463.838 2913.97,-467.974 2913.06,-461.309 2911.16,-472.109 2911.16,-472.109"/>
|
||||
</g>
|
||||
<!-- StatisticSubType -->
|
||||
<g id="node15" class="node"><title>StatisticSubType</title>
|
||||
@ -246,9 +246,9 @@
|
||||
</g>
|
||||
<!-- StatisticSubType->StatisticType -->
|
||||
<g id="edge18" class="edge"><title>StatisticSubType->StatisticType</title>
|
||||
<path fill="none" stroke="#ef9784" d="M3311.53,-706.691C3314.38,-694.795 3317.7,-680.889 3320.54,-669.025"/>
|
||||
<polygon fill="#ef9784" stroke="#ef9784" points="3311.46,-706.97 3304.76,-715.649 3310.3,-711.833 3309.14,-716.696 3309.14,-716.696 3309.14,-716.696 3310.3,-711.833 3313.51,-717.742 3311.46,-706.97 3311.46,-706.97"/>
|
||||
<polygon fill="#ef9784" stroke="#ef9784" points="3320.55,-668.953 3327.26,-660.274 3321.72,-664.09 3322.88,-659.227 3322.88,-659.227 3322.88,-659.227 3321.72,-664.09 3318.5,-658.18 3320.55,-668.953 3320.55,-668.953"/>
|
||||
<path fill="none" stroke="#878b25" d="M3311.53,-706.691C3314.38,-694.795 3317.7,-680.889 3320.54,-669.025"/>
|
||||
<polygon fill="#878b25" stroke="#878b25" points="3311.46,-706.97 3304.76,-715.649 3310.3,-711.833 3309.14,-716.696 3309.14,-716.696 3309.14,-716.696 3310.3,-711.833 3313.51,-717.742 3311.46,-706.97 3311.46,-706.97"/>
|
||||
<polygon fill="#878b25" stroke="#878b25" points="3320.55,-668.953 3327.26,-660.274 3321.72,-664.09 3322.88,-659.227 3322.88,-659.227 3322.88,-659.227 3321.72,-664.09 3318.5,-658.18 3320.55,-668.953 3320.55,-668.953"/>
|
||||
</g>
|
||||
<!-- StatisticTypeSubType -->
|
||||
<g id="node76" class="node"><title>StatisticTypeSubType</title>
|
||||
@ -257,9 +257,9 @@
|
||||
</g>
|
||||
<!-- StatisticSubType->StatisticTypeSubType -->
|
||||
<g id="edge17" class="edge"><title>StatisticSubType->StatisticTypeSubType</title>
|
||||
<path fill="none" stroke="#b88034" d="M3286.29,-710.739C3259.17,-677.032 3209.15,-614.853 3181.21,-580.128"/>
|
||||
<ellipse fill="none" stroke="#b88034" cx="3288.95" cy="-714.043" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b88034" stroke="#b88034" points="3180.88,-579.717 3178.12,-569.105 3177.75,-575.821 3174.62,-571.926 3174.62,-571.926 3174.62,-571.926 3177.75,-575.821 3171.11,-574.746 3180.88,-579.717 3180.88,-579.717"/>
|
||||
<path fill="none" stroke="#936f5f" d="M3286.29,-710.739C3259.17,-677.032 3209.15,-614.853 3181.21,-580.128"/>
|
||||
<ellipse fill="none" stroke="#936f5f" cx="3288.95" cy="-714.043" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#936f5f" stroke="#936f5f" points="3180.88,-579.717 3178.12,-569.105 3177.75,-575.821 3174.62,-571.926 3174.62,-571.926 3174.62,-571.926 3177.75,-575.821 3171.11,-574.746 3180.88,-579.717 3180.88,-579.717"/>
|
||||
</g>
|
||||
<!-- Project -->
|
||||
<g id="node16" class="node"><title>Project</title>
|
||||
@ -268,15 +268,15 @@
|
||||
</g>
|
||||
<!-- Project->ProjectImage -->
|
||||
<g id="edge19" class="edge"><title>Project->ProjectImage</title>
|
||||
<path fill="none" stroke="#ac40b3" d="M882.033,-533.098C904.327,-514.636 937.409,-487.239 960.24,-468.332"/>
|
||||
<ellipse fill="none" stroke="#ac40b3" cx="878.879" cy="-535.71" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#ac40b3" stroke="#ac40b3" cx="963.6" cy="-465.55" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#b8a811" d="M882.033,-533.098C904.327,-514.636 937.409,-487.239 960.24,-468.332"/>
|
||||
<ellipse fill="none" stroke="#b8a811" cx="878.879" cy="-535.71" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#b8a811" stroke="#b8a811" cx="963.6" cy="-465.55" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Project->User -->
|
||||
<g id="edge25" class="edge"><title>Project->User</title>
|
||||
<path fill="none" stroke="#1a1cdd" d="M886.916,-574.853C903.947,-585.553 926.339,-597.97 948,-605 1034.94,-633.214 1143.27,-639.032 1199.38,-640.016"/>
|
||||
<polygon fill="#1a1cdd" stroke="#1a1cdd" points="886.448,-574.551 880.485,-565.348 882.247,-571.84 878.045,-569.129 878.045,-569.129 878.045,-569.129 882.247,-571.84 875.606,-572.911 886.448,-574.551 886.448,-574.551"/>
|
||||
<polygon fill="#1a1cdd" stroke="#1a1cdd" points="1199.56,-640.019 1209.5,-644.651 1204.56,-640.085 1209.56,-640.151 1209.56,-640.151 1209.56,-640.151 1204.56,-640.085 1209.62,-635.652 1199.56,-640.019 1199.56,-640.019"/>
|
||||
<path fill="none" stroke="#3a34f3" d="M886.916,-574.853C903.947,-585.553 926.339,-597.97 948,-605 1034.94,-633.214 1143.27,-639.032 1199.38,-640.016"/>
|
||||
<polygon fill="#3a34f3" stroke="#3a34f3" points="886.448,-574.551 880.485,-565.348 882.247,-571.84 878.045,-569.129 878.045,-569.129 878.045,-569.129 882.247,-571.84 875.606,-572.911 886.448,-574.551 886.448,-574.551"/>
|
||||
<polygon fill="#3a34f3" stroke="#3a34f3" points="1199.56,-640.019 1209.5,-644.651 1204.56,-640.085 1209.56,-640.151 1209.56,-640.151 1209.56,-640.151 1204.56,-640.085 1209.62,-635.652 1199.56,-640.019 1199.56,-640.019"/>
|
||||
</g>
|
||||
<!-- Theme -->
|
||||
<g id="node47" class="node"><title>Theme</title>
|
||||
@ -285,9 +285,9 @@
|
||||
</g>
|
||||
<!-- Project->Theme -->
|
||||
<g id="edge23" class="edge"><title>Project->Theme</title>
|
||||
<path fill="none" stroke="#8e0c53" d="M821.856,-537.867C807.782,-531.848 791.565,-524.757 777,-518 739.048,-500.394 696.138,-478.867 667.31,-464.164"/>
|
||||
<polygon fill="#8e0c53" stroke="#8e0c53" points="822.008,-537.932 829.449,-545.986 826.609,-539.888 831.21,-541.845 831.21,-541.845 831.21,-541.845 826.609,-539.888 832.971,-537.704 822.008,-537.932 822.008,-537.932"/>
|
||||
<polygon fill="#8e0c53" stroke="#8e0c53" points="667.004,-464.007 660.15,-455.448 662.553,-461.731 658.101,-459.454 658.101,-459.454 658.101,-459.454 662.553,-461.731 656.052,-463.461 667.004,-464.007 667.004,-464.007"/>
|
||||
<path fill="none" stroke="#fbb530" d="M821.856,-537.867C807.782,-531.848 791.565,-524.757 777,-518 739.048,-500.394 696.138,-478.867 667.31,-464.164"/>
|
||||
<polygon fill="#fbb530" stroke="#fbb530" points="822.008,-537.932 829.449,-545.986 826.609,-539.888 831.21,-541.845 831.21,-541.845 831.21,-541.845 826.609,-539.888 832.971,-537.704 822.008,-537.932 822.008,-537.932"/>
|
||||
<polygon fill="#fbb530" stroke="#fbb530" points="667.004,-464.007 660.15,-455.448 662.553,-461.731 658.101,-459.454 658.101,-459.454 658.101,-459.454 662.553,-461.731 656.052,-463.461 667.004,-464.007 667.004,-464.007"/>
|
||||
</g>
|
||||
<!-- ProjectCao -->
|
||||
<g id="node48" class="node"><title>ProjectCao</title>
|
||||
@ -296,9 +296,9 @@
|
||||
</g>
|
||||
<!-- Project->ProjectCao -->
|
||||
<g id="edge20" class="edge"><title>Project->ProjectCao</title>
|
||||
<path fill="none" stroke="#327797" d="M834.909,-532.603C814.512,-514.585 784.809,-488.348 763.672,-469.677"/>
|
||||
<ellipse fill="none" stroke="#327797" cx="838.064" cy="-535.389" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#327797" stroke="#327797" points="763.523,-469.545 759.007,-459.552 759.775,-466.235 756.028,-462.925 756.028,-462.925 756.028,-462.925 759.775,-466.235 753.049,-466.297 763.523,-469.545 763.523,-469.545"/>
|
||||
<path fill="none" stroke="#9e82a2" d="M834.909,-532.603C814.512,-514.585 784.809,-488.348 763.672,-469.677"/>
|
||||
<ellipse fill="none" stroke="#9e82a2" cx="838.064" cy="-535.389" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#9e82a2" stroke="#9e82a2" points="763.523,-469.545 759.007,-459.552 759.775,-466.235 756.028,-462.925 756.028,-462.925 756.028,-462.925 759.775,-466.235 753.049,-466.297 763.523,-469.545 763.523,-469.545"/>
|
||||
</g>
|
||||
<!-- ProjectStep -->
|
||||
<g id="node57" class="node"><title>ProjectStep</title>
|
||||
@ -307,9 +307,9 @@
|
||||
</g>
|
||||
<!-- Project->ProjectStep -->
|
||||
<g id="edge26" class="edge"><title>Project->ProjectStep</title>
|
||||
<path fill="none" stroke="#2e99d6" d="M816.494,-545.566C784.993,-539.459 740.806,-529.892 703,-518 655.491,-503.056 602.773,-480.689 567.951,-465.066"/>
|
||||
<ellipse fill="none" stroke="#2e99d6" cx="820.692" cy="-546.368" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#2e99d6" stroke="#2e99d6" points="567.735,-464.968 560.476,-456.749 563.179,-462.909 558.623,-460.849 558.623,-460.849 558.623,-460.849 563.179,-462.909 556.769,-464.95 567.735,-464.968 567.735,-464.968"/>
|
||||
<path fill="none" stroke="#aa4f0e" d="M816.494,-545.566C784.993,-539.459 740.806,-529.892 703,-518 655.491,-503.056 602.773,-480.689 567.951,-465.066"/>
|
||||
<ellipse fill="none" stroke="#aa4f0e" cx="820.692" cy="-546.368" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#aa4f0e" stroke="#aa4f0e" points="567.735,-464.968 560.476,-456.749 563.179,-462.909 558.623,-460.849 558.623,-460.849 558.623,-460.849 563.179,-462.909 556.769,-464.95 567.735,-464.968 567.735,-464.968"/>
|
||||
</g>
|
||||
<!-- ProjectUser -->
|
||||
<g id="node74" class="node"><title>ProjectUser</title>
|
||||
@ -318,9 +318,9 @@
|
||||
</g>
|
||||
<!-- Project->ProjectUser -->
|
||||
<g id="edge24" class="edge"><title>Project->ProjectUser</title>
|
||||
<path fill="none" stroke="#45e07f" d="M814.457,-549.806C763.445,-545.422 676.66,-535.954 604,-518 574.417,-510.69 498.943,-482.275 450.753,-463.684"/>
|
||||
<ellipse fill="none" stroke="#45e07f" cx="818.649" cy="-550.158" rx="4" ry="4"/>
|
||||
<polygon fill="#45e07f" stroke="#45e07f" points="450.533,-463.599 442.829,-455.794 445.869,-461.795 441.206,-459.991 441.206,-459.991 441.206,-459.991 445.869,-461.795 439.582,-464.188 450.533,-463.599 450.533,-463.599"/>
|
||||
<path fill="none" stroke="#dede23" d="M814.457,-549.806C763.445,-545.422 676.66,-535.954 604,-518 574.417,-510.69 498.943,-482.275 450.753,-463.684"/>
|
||||
<ellipse fill="none" stroke="#dede23" cx="818.649" cy="-550.158" rx="4" ry="4"/>
|
||||
<polygon fill="#dede23" stroke="#dede23" points="450.533,-463.599 442.829,-455.794 445.869,-461.795 441.206,-459.991 441.206,-459.991 441.206,-459.991 445.869,-461.795 439.582,-464.188 450.533,-463.599 450.533,-463.599"/>
|
||||
</g>
|
||||
<!-- Machine -->
|
||||
<g id="node83" class="node"><title>Machine</title>
|
||||
@ -329,9 +329,9 @@
|
||||
</g>
|
||||
<!-- Project->Machine -->
|
||||
<g id="edge21" class="edge"><title>Project->Machine</title>
|
||||
<path fill="none" stroke="#6b2f6b" d="M903.626,-549.208C1038.22,-537.892 1445.3,-502.738 1782,-464 1807.6,-461.054 1836.04,-457.293 1859.51,-454.058"/>
|
||||
<polygon fill="#6b2f6b" stroke="#6b2f6b" points="903.262,-549.238 892.921,-545.59 898.28,-549.656 893.297,-550.075 893.297,-550.075 893.297,-550.075 898.28,-549.656 893.674,-554.559 903.262,-549.238 903.262,-549.238"/>
|
||||
<polygon fill="#6b2f6b" stroke="#6b2f6b" points="1859.67,-454.036 1870.19,-457.118 1864.62,-453.348 1869.57,-452.66 1869.57,-452.66 1869.57,-452.66 1864.62,-453.348 1868.96,-448.203 1859.67,-454.036 1859.67,-454.036"/>
|
||||
<path fill="none" stroke="#acefc4" d="M903.626,-549.208C1038.22,-537.892 1445.3,-502.738 1782,-464 1807.6,-461.054 1836.04,-457.293 1859.51,-454.058"/>
|
||||
<polygon fill="#acefc4" stroke="#acefc4" points="903.262,-549.238 892.921,-545.59 898.28,-549.656 893.297,-550.075 893.297,-550.075 893.297,-550.075 898.28,-549.656 893.674,-554.559 903.262,-549.238 903.262,-549.238"/>
|
||||
<polygon fill="#acefc4" stroke="#acefc4" points="1859.67,-454.036 1870.19,-457.118 1864.62,-453.348 1869.57,-452.66 1869.57,-452.66 1869.57,-452.66 1864.62,-453.348 1868.96,-448.203 1859.67,-454.036 1859.67,-454.036"/>
|
||||
</g>
|
||||
<!-- Component -->
|
||||
<g id="node85" class="node"><title>Component</title>
|
||||
@ -340,9 +340,9 @@
|
||||
</g>
|
||||
<!-- Project->Component -->
|
||||
<g id="edge22" class="edge"><title>Project->Component</title>
|
||||
<path fill="none" stroke="#c6e330" d="M858,-525.931C858,-510.187 858,-490.393 858,-474.566"/>
|
||||
<polygon fill="#c6e330" stroke="#c6e330" points="858,-525.969 853.5,-535.969 858,-530.969 858,-535.969 858,-535.969 858,-535.969 858,-530.969 862.5,-535.969 858,-525.969 858,-525.969"/>
|
||||
<polygon fill="#c6e330" stroke="#c6e330" points="858,-474.341 862.5,-464.341 858,-469.341 858,-464.341 858,-464.341 858,-464.341 858,-469.341 853.5,-464.341 858,-474.341 858,-474.341"/>
|
||||
<path fill="none" stroke="#d6da9f" d="M858,-525.931C858,-510.187 858,-490.393 858,-474.566"/>
|
||||
<polygon fill="#d6da9f" stroke="#d6da9f" points="858,-525.969 853.5,-535.969 858,-530.969 858,-535.969 858,-535.969 858,-535.969 858,-530.969 862.5,-535.969 858,-525.969 858,-525.969"/>
|
||||
<polygon fill="#d6da9f" stroke="#d6da9f" points="858,-474.341 862.5,-464.341 858,-469.341 858,-464.341 858,-464.341 858,-464.341 858,-469.341 853.5,-464.341 858,-474.341 858,-474.341"/>
|
||||
</g>
|
||||
<!-- CustomAsset -->
|
||||
<g id="node17" class="node"><title>CustomAsset</title>
|
||||
@ -356,9 +356,9 @@
|
||||
</g>
|
||||
<!-- CustomAsset->CustomAssetFile -->
|
||||
<g id="edge27" class="edge"><title>CustomAsset->CustomAssetFile</title>
|
||||
<path fill="none" stroke="#6fa331" d="M3474,-708.451C3474,-695.702 3474,-680.322 3474,-667.57"/>
|
||||
<ellipse fill="none" stroke="#6fa331" cx="3474" cy="-712.696" rx="4" ry="4"/>
|
||||
<ellipse fill="#6fa331" stroke="#6fa331" cx="3474" cy="-663.227" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#eab001" d="M3474,-708.451C3474,-695.702 3474,-680.322 3474,-667.57"/>
|
||||
<ellipse fill="none" stroke="#eab001" cx="3474" cy="-712.696" rx="4" ry="4"/>
|
||||
<ellipse fill="#eab001" stroke="#eab001" cx="3474" cy="-663.227" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- AgeRange -->
|
||||
<g id="node18" class="node"><title>AgeRange</title>
|
||||
@ -367,9 +367,9 @@
|
||||
</g>
|
||||
<!-- AgeRange->Event -->
|
||||
<g id="edge28" class="edge"><title>AgeRange->Event</title>
|
||||
<path fill="none" stroke="#f20c3b" d="M2696.47,-618.567C2711.96,-605.532 2731.65,-588.957 2747.05,-576.001"/>
|
||||
<ellipse fill="none" stroke="#f20c3b" cx="2693.06" cy="-621.437" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f20c3b" stroke="#f20c3b" points="2747.45,-575.66 2758,-572.664 2751.28,-572.441 2755.1,-569.221 2755.1,-569.221 2755.1,-569.221 2751.28,-572.441 2752.2,-565.778 2747.45,-575.66 2747.45,-575.66"/>
|
||||
<path fill="none" stroke="#4b3315" d="M2696.47,-618.567C2711.96,-605.532 2731.65,-588.957 2747.05,-576.001"/>
|
||||
<ellipse fill="none" stroke="#4b3315" cx="2693.06" cy="-621.437" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#4b3315" stroke="#4b3315" points="2747.45,-575.66 2758,-572.664 2751.28,-572.441 2755.1,-569.221 2755.1,-569.221 2755.1,-569.221 2751.28,-572.441 2752.2,-565.778 2747.45,-575.66 2747.45,-575.66"/>
|
||||
</g>
|
||||
<!-- Wallet -->
|
||||
<g id="node19" class="node"><title>Wallet</title>
|
||||
@ -383,9 +383,9 @@
|
||||
</g>
|
||||
<!-- Wallet->WalletTransaction -->
|
||||
<g id="edge29" class="edge"><title>Wallet->WalletTransaction</title>
|
||||
<path fill="none" stroke="#b0417b" d="M342.079,-473.39C343.29,-459.865 344.977,-443.003 347,-428 347.346,-425.434 347.74,-422.768 348.157,-420.103"/>
|
||||
<ellipse fill="none" stroke="#b0417b" cx="341.7" cy="-477.759" rx="4" ry="4"/>
|
||||
<polygon fill="#b0417b" stroke="#b0417b" points="348.188,-419.917 354.264,-410.789 349.006,-414.985 349.825,-410.052 349.825,-410.052 349.825,-410.052 349.006,-414.985 345.386,-409.315 348.188,-419.917 348.188,-419.917"/>
|
||||
<path fill="none" stroke="#677999" d="M342.079,-473.39C343.29,-459.865 344.977,-443.003 347,-428 347.346,-425.434 347.74,-422.768 348.157,-420.103"/>
|
||||
<ellipse fill="none" stroke="#677999" cx="341.7" cy="-477.759" rx="4" ry="4"/>
|
||||
<polygon fill="#677999" stroke="#677999" points="348.188,-419.917 354.264,-410.789 349.006,-414.985 349.825,-410.052 349.825,-410.052 349.825,-410.052 349.006,-414.985 345.386,-409.315 348.188,-419.917 348.188,-419.917"/>
|
||||
</g>
|
||||
<!-- Stats::Event -->
|
||||
<g id="node20" class="node"><title>Stats::Event</title>
|
||||
@ -424,9 +424,9 @@
|
||||
</g>
|
||||
<!-- PriceCategory->EventPriceCategory -->
|
||||
<g id="edge30" class="edge"><title>PriceCategory->EventPriceCategory</title>
|
||||
<path fill="none" stroke="#7b3b88" d="M3015.52,-425.91C2980.87,-407.265 2928.28,-378.967 2892.6,-359.767"/>
|
||||
<ellipse fill="none" stroke="#7b3b88" cx="3019.25" cy="-427.917" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#7b3b88" stroke="#7b3b88" points="2892.27,-359.59 2885.59,-350.889 2887.86,-357.221 2883.46,-354.851 2883.46,-354.851 2883.46,-354.851 2887.86,-357.221 2881.33,-358.814 2892.27,-359.59 2892.27,-359.59"/>
|
||||
<path fill="none" stroke="#30a7a5" d="M3015.52,-425.91C2980.87,-407.265 2928.28,-378.967 2892.6,-359.767"/>
|
||||
<ellipse fill="none" stroke="#30a7a5" cx="3019.25" cy="-427.917" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#30a7a5" stroke="#30a7a5" points="2892.27,-359.59 2885.59,-350.889 2887.86,-357.221 2883.46,-354.851 2883.46,-354.851 2883.46,-354.851 2887.86,-357.221 2881.33,-358.814 2892.27,-359.59 2892.27,-359.59"/>
|
||||
</g>
|
||||
<!-- Invoice -->
|
||||
<g id="node28" class="node"><title>Invoice</title>
|
||||
@ -435,15 +435,15 @@
|
||||
</g>
|
||||
<!-- Invoice->InvoiceItem -->
|
||||
<g id="edge31" class="edge"><title>Invoice->InvoiceItem</title>
|
||||
<path fill="none" stroke="#ae4ae7" d="M1436.96,-74.2945C1459.77,-63.4254 1490.22,-48.9176 1514.2,-37.4896"/>
|
||||
<ellipse fill="none" stroke="#ae4ae7" cx="1433.23" cy="-76.074" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#ae4ae7" stroke="#ae4ae7" points="1514.35,-37.4189 1525.31,-37.1796 1518.86,-35.2681 1523.37,-33.1172 1523.37,-33.1172 1523.37,-33.1172 1518.86,-35.2681 1521.44,-29.0548 1514.35,-37.4189 1514.35,-37.4189"/>
|
||||
<path fill="none" stroke="#031c4a" d="M1436.96,-74.2945C1459.77,-63.4254 1490.22,-48.9176 1514.2,-37.4896"/>
|
||||
<ellipse fill="none" stroke="#031c4a" cx="1433.23" cy="-76.074" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#031c4a" stroke="#031c4a" points="1514.35,-37.4189 1525.31,-37.1796 1518.86,-35.2681 1523.37,-33.1172 1523.37,-33.1172 1523.37,-33.1172 1518.86,-35.2681 1521.44,-29.0548 1514.35,-37.4189 1514.35,-37.4189"/>
|
||||
</g>
|
||||
<!-- Invoice->Invoice -->
|
||||
<g id="edge32" class="edge"><title>Invoice->Invoice</title>
|
||||
<path fill="none" stroke="#9aef0b" d="M1446.47,-97.3281C1453.89,-96.4844 1459.05,-94.375 1459.05,-91 1459.05,-87.625 1453.89,-85.5156 1446.47,-84.6719"/>
|
||||
<ellipse fill="none" stroke="#9aef0b" cx="1442.4" cy="-97.541" rx="4" ry="4"/>
|
||||
<ellipse fill="#9aef0b" stroke="#9aef0b" cx="1442.4" cy="-84.459" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#3a06e4" d="M1446.47,-97.3281C1453.89,-96.4844 1459.05,-94.375 1459.05,-91 1459.05,-87.625 1453.89,-85.5156 1446.47,-84.6719"/>
|
||||
<ellipse fill="none" stroke="#3a06e4" cx="1442.4" cy="-97.541" rx="4" ry="4"/>
|
||||
<ellipse fill="#3a06e4" stroke="#3a06e4" cx="1442.4" cy="-84.459" rx="4" ry="4"/>
|
||||
<text text-anchor="middle" x="1473.05" y="-87.3" font-family="Times,serif" font-size="14.00">avoir</text>
|
||||
</g>
|
||||
<!-- PlanFile -->
|
||||
@ -458,9 +458,9 @@
|
||||
</g>
|
||||
<!-- OfferDay->Invoice -->
|
||||
<g id="edge33" class="edge"><title>OfferDay->Invoice</title>
|
||||
<path fill="none" stroke="#479ec1" d="M1291.86,-158.656C1315.74,-144.46 1348.68,-124.88 1372.68,-110.615"/>
|
||||
<ellipse fill="none" stroke="#479ec1" cx="1288.37" cy="-160.729" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#479ec1" stroke="#479ec1" points="1372.81,-110.541 1383.7,-109.299 1377.11,-107.986 1381.4,-105.431 1381.4,-105.431 1381.4,-105.431 1377.11,-107.986 1379.1,-101.563 1372.81,-110.541 1372.81,-110.541"/>
|
||||
<path fill="none" stroke="#9bd28b" d="M1291.86,-158.656C1315.74,-144.46 1348.68,-124.88 1372.68,-110.615"/>
|
||||
<ellipse fill="none" stroke="#9bd28b" cx="1288.37" cy="-160.729" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#9bd28b" stroke="#9bd28b" points="1372.81,-110.541 1383.7,-109.299 1377.11,-107.986 1381.4,-105.431 1381.4,-105.431 1381.4,-105.431 1377.11,-107.986 1379.1,-101.563 1372.81,-110.541 1372.81,-110.541"/>
|
||||
</g>
|
||||
<!-- StatisticIndex -->
|
||||
<g id="node59" class="node"><title>StatisticIndex</title>
|
||||
@ -469,15 +469,15 @@
|
||||
</g>
|
||||
<!-- StatisticType->StatisticIndex -->
|
||||
<g id="edge34" class="edge"><title>StatisticType->StatisticIndex</title>
|
||||
<path fill="none" stroke="#81d9fd" d="M3320.77,-614.694C3320.08,-603.869 3320.08,-591.254 3320.76,-580.417"/>
|
||||
<ellipse fill="none" stroke="#81d9fd" cx="3321.11" cy="-618.813" rx="4" ry="4"/>
|
||||
<ellipse fill="#81d9fd" stroke="#81d9fd" cx="3321.12" cy="-576.161" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#d56ba4" d="M3320.77,-614.694C3320.08,-603.869 3320.08,-591.254 3320.76,-580.417"/>
|
||||
<ellipse fill="none" stroke="#d56ba4" cx="3321.11" cy="-618.813" rx="4" ry="4"/>
|
||||
<ellipse fill="#d56ba4" stroke="#d56ba4" cx="3321.12" cy="-576.161" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- StatisticType->StatisticTypeSubType -->
|
||||
<g id="edge35" class="edge"><title>StatisticType->StatisticTypeSubType</title>
|
||||
<path fill="none" stroke="#1ac5ae" d="M3291.25,-621.692C3264.78,-608.14 3228.7,-589.666 3201.23,-575.599"/>
|
||||
<ellipse fill="none" stroke="#1ac5ae" cx="3294.9" cy="-623.565" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#1ac5ae" stroke="#1ac5ae" points="3201.17,-575.568 3194.32,-567.005 3196.72,-573.289 3192.27,-571.01 3192.27,-571.01 3192.27,-571.01 3196.72,-573.289 3190.22,-575.016 3201.17,-575.568 3201.17,-575.568"/>
|
||||
<path fill="none" stroke="#b9f8f3" d="M3291.25,-621.692C3264.78,-608.14 3228.7,-589.666 3201.23,-575.599"/>
|
||||
<ellipse fill="none" stroke="#b9f8f3" cx="3294.9" cy="-623.565" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b9f8f3" stroke="#b9f8f3" points="3201.17,-575.568 3194.32,-567.005 3196.72,-573.289 3192.27,-571.01 3192.27,-571.01 3192.27,-571.01 3196.72,-573.289 3190.22,-575.016 3201.17,-575.568 3201.17,-575.568"/>
|
||||
</g>
|
||||
<!-- StatisticCustomAggregation -->
|
||||
<g id="node77" class="node"><title>StatisticCustomAggregation</title>
|
||||
@ -486,9 +486,9 @@
|
||||
</g>
|
||||
<!-- StatisticType->StatisticCustomAggregation -->
|
||||
<g id="edge36" class="edge"><title>StatisticType->StatisticCustomAggregation</title>
|
||||
<path fill="none" stroke="#912df1" d="M3365.77,-622.47C3395.99,-608.808 3438,-589.812 3469.76,-575.456"/>
|
||||
<ellipse fill="none" stroke="#912df1" cx="3362.11" cy="-624.125" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#912df1" stroke="#912df1" points="3470.14,-575.281 3481.11,-575.261 3474.7,-573.221 3479.26,-571.161 3479.26,-571.161 3479.26,-571.161 3474.7,-573.221 3477.4,-567.061 3470.14,-575.281 3470.14,-575.281"/>
|
||||
<path fill="none" stroke="#ad6126" d="M3365.77,-622.47C3395.99,-608.808 3438,-589.812 3469.76,-575.456"/>
|
||||
<ellipse fill="none" stroke="#ad6126" cx="3362.11" cy="-624.125" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#ad6126" stroke="#ad6126" points="3470.14,-575.281 3481.11,-575.261 3474.7,-573.221 3479.26,-571.161 3479.26,-571.161 3479.26,-571.161 3474.7,-573.221 3477.4,-567.061 3470.14,-575.281 3470.14,-575.281"/>
|
||||
</g>
|
||||
<!-- Address -->
|
||||
<g id="node33" class="node"><title>Address</title>
|
||||
@ -497,15 +497,15 @@
|
||||
</g>
|
||||
<!-- Plan->Price -->
|
||||
<g id="edge43" class="edge"><title>Plan->Price</title>
|
||||
<path fill="none" stroke="#e32396" d="M1866.99,-328.928C1879.76,-325.933 1894.52,-322.628 1908,-320 1957.48,-310.351 1979.12,-331.511 2020,-302 2028.04,-296.196 2033.79,-287.151 2037.8,-278.342"/>
|
||||
<ellipse fill="none" stroke="#e32396" cx="1862.81" cy="-329.918" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#e32396" stroke="#e32396" points="2037.8,-278.331 2045.68,-270.701 2039.65,-273.685 2041.5,-269.039 2041.5,-269.039 2041.5,-269.039 2039.65,-273.685 2037.32,-267.376 2037.8,-278.331 2037.8,-278.331"/>
|
||||
<path fill="none" stroke="#ca1eae" d="M1866.99,-328.928C1879.76,-325.933 1894.52,-322.628 1908,-320 1957.48,-310.351 1979.12,-331.511 2020,-302 2028.04,-296.196 2033.79,-287.151 2037.8,-278.342"/>
|
||||
<ellipse fill="none" stroke="#ca1eae" cx="1862.81" cy="-329.918" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#ca1eae" stroke="#ca1eae" points="2037.8,-278.331 2045.68,-270.701 2039.65,-273.685 2041.5,-269.039 2041.5,-269.039 2041.5,-269.039 2039.65,-273.685 2037.32,-267.376 2037.8,-278.331 2037.8,-278.331"/>
|
||||
</g>
|
||||
<!-- Plan->PlanFile -->
|
||||
<g id="edge42" class="edge"><title>Plan->PlanFile</title>
|
||||
<path fill="none" stroke="#70107d" d="M1867.96,-330.941C1900.06,-323.702 1940.86,-309.643 1923,-287 1921.36,-284.915 1862.62,-271.297 1820.16,-261.677"/>
|
||||
<ellipse fill="none" stroke="#70107d" cx="1863.93" cy="-331.8" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#70107d" stroke="#70107d" cx="1816.07" cy="-260.753" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#07ee1d" d="M1867.96,-330.941C1900.06,-323.702 1940.86,-309.643 1923,-287 1921.36,-284.915 1862.62,-271.297 1820.16,-261.677"/>
|
||||
<ellipse fill="none" stroke="#07ee1d" cx="1863.93" cy="-331.8" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#07ee1d" stroke="#07ee1d" cx="1816.07" cy="-260.753" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- Credit -->
|
||||
<g id="node44" class="node"><title>Credit</title>
|
||||
@ -514,22 +514,22 @@
|
||||
</g>
|
||||
<!-- Plan->Credit -->
|
||||
<g id="edge37" class="edge"><title>Plan->Credit</title>
|
||||
<path fill="none" stroke="#f84fb3" d="M1808.96,-320.296C1790.66,-308.946 1764.79,-294.653 1740,-287 1645.23,-257.744 1527.87,-252.294 1465.94,-251.659"/>
|
||||
<ellipse fill="none" stroke="#f84fb3" cx="1812.45" cy="-322.501" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f84fb3" stroke="#f84fb3" points="1465.76,-251.658 1455.79,-247.093 1460.76,-251.626 1455.76,-251.593 1455.76,-251.593 1455.76,-251.593 1460.76,-251.626 1455.73,-256.093 1465.76,-251.658 1465.76,-251.658"/>
|
||||
<path fill="none" stroke="#04e781" d="M1808.96,-320.296C1790.66,-308.946 1764.79,-294.653 1740,-287 1645.23,-257.744 1527.87,-252.294 1465.94,-251.659"/>
|
||||
<ellipse fill="none" stroke="#04e781" cx="1812.45" cy="-322.501" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#04e781" stroke="#04e781" points="1465.76,-251.658 1455.79,-247.093 1460.76,-251.626 1455.76,-251.593 1455.76,-251.593 1455.76,-251.593 1460.76,-251.626 1455.73,-256.093 1465.76,-251.658 1465.76,-251.658"/>
|
||||
</g>
|
||||
<!-- Plan->Credit -->
|
||||
<g id="edge38" class="edge"><title>Plan->Credit</title>
|
||||
<path fill="none" stroke="#546aa8" d="M1814.44,-316.243C1803.12,-305.611 1787.98,-293.554 1772,-287 1717.54,-264.66 1546.31,-256.101 1465.73,-253.249"/>
|
||||
<ellipse fill="none" stroke="#546aa8" cx="1817.45" cy="-319.17" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#546aa8" stroke="#546aa8" points="1465.43,-253.239 1455.59,-248.402 1460.44,-253.069 1455.44,-252.899 1455.44,-252.899 1455.44,-252.899 1460.44,-253.069 1455.29,-257.396 1465.43,-253.239 1465.43,-253.239"/>
|
||||
<path fill="none" stroke="#f2978d" d="M1814.44,-316.243C1803.12,-305.611 1787.98,-293.554 1772,-287 1717.54,-264.66 1546.31,-256.101 1465.73,-253.249"/>
|
||||
<ellipse fill="none" stroke="#f2978d" cx="1817.45" cy="-319.17" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f2978d" stroke="#f2978d" points="1465.43,-253.239 1455.59,-248.402 1460.44,-253.069 1455.44,-252.899 1455.44,-252.899 1455.44,-252.899 1460.44,-253.069 1455.29,-257.396 1465.43,-253.239 1465.43,-253.239"/>
|
||||
<text text-anchor="middle" x="1839.5" y="-290.8" font-family="Times,serif" font-size="14.00">training_credits</text>
|
||||
</g>
|
||||
<!-- Plan->Credit -->
|
||||
<g id="edge39" class="edge"><title>Plan->Credit</title>
|
||||
<path fill="none" stroke="#158006" d="M1799.18,-332.862C1761.03,-327.789 1698.28,-317.856 1646,-302 1629.8,-297.088 1627.2,-291.912 1611,-287 1561.78,-272.071 1503.27,-262.392 1464.75,-257.077"/>
|
||||
<ellipse fill="none" stroke="#158006" cx="1803.44" cy="-333.415" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#158006" stroke="#158006" points="1464.35,-257.024 1455.04,-251.233 1459.4,-256.359 1454.44,-255.693 1454.44,-255.693 1454.44,-255.693 1459.4,-256.359 1453.84,-260.153 1464.35,-257.024 1464.35,-257.024"/>
|
||||
<path fill="none" stroke="#064c39" d="M1799.18,-332.862C1761.03,-327.789 1698.28,-317.856 1646,-302 1629.8,-297.088 1627.2,-291.912 1611,-287 1561.78,-272.071 1503.27,-262.392 1464.75,-257.077"/>
|
||||
<ellipse fill="none" stroke="#064c39" cx="1803.44" cy="-333.415" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#064c39" stroke="#064c39" points="1464.35,-257.024 1455.04,-251.233 1459.4,-256.359 1454.44,-255.693 1454.44,-255.693 1454.44,-255.693 1459.4,-256.359 1453.84,-260.153 1464.35,-257.024 1464.35,-257.024"/>
|
||||
<text text-anchor="middle" x="1691" y="-290.8" font-family="Times,serif" font-size="14.00">machine_credits</text>
|
||||
</g>
|
||||
<!-- Subscription -->
|
||||
@ -539,9 +539,9 @@
|
||||
</g>
|
||||
<!-- Plan->Subscription -->
|
||||
<g id="edge40" class="edge"><title>Plan->Subscription</title>
|
||||
<path fill="none" stroke="#7c49f4" d="M1799.01,-334.618C1712.55,-328.644 1490.48,-312.729 1417,-302 1352.19,-292.537 1278.55,-276.283 1230.35,-264.883"/>
|
||||
<ellipse fill="none" stroke="#7c49f4" cx="1803.2" cy="-334.907" rx="4" ry="4"/>
|
||||
<polygon fill="#7c49f4" stroke="#7c49f4" points="1230.19,-264.845 1221.5,-258.15 1225.32,-263.686 1220.46,-262.528 1220.46,-262.528 1220.46,-262.528 1225.32,-263.686 1219.42,-266.905 1230.19,-264.845 1230.19,-264.845"/>
|
||||
<path fill="none" stroke="#61c997" d="M1799.01,-334.618C1712.55,-328.644 1490.48,-312.729 1417,-302 1352.19,-292.537 1278.55,-276.283 1230.35,-264.883"/>
|
||||
<ellipse fill="none" stroke="#61c997" cx="1803.2" cy="-334.907" rx="4" ry="4"/>
|
||||
<polygon fill="#61c997" stroke="#61c997" points="1230.19,-264.845 1221.5,-258.15 1225.32,-263.686 1220.46,-262.528 1220.46,-262.528 1220.46,-262.528 1225.32,-263.686 1219.42,-266.905 1230.19,-264.845 1230.19,-264.845"/>
|
||||
</g>
|
||||
<!-- PlanImage -->
|
||||
<g id="node75" class="node"><title>PlanImage</title>
|
||||
@ -550,9 +550,9 @@
|
||||
</g>
|
||||
<!-- Plan->PlanImage -->
|
||||
<g id="edge41" class="edge"><title>Plan->PlanImage</title>
|
||||
<path fill="none" stroke="#8fb631" d="M1867.5,-330.385C1895.19,-324.158 1931.32,-314.008 1940,-302 1946.34,-293.231 1942.19,-282.978 1935.27,-274.048"/>
|
||||
<ellipse fill="none" stroke="#8fb631" cx="1863.49" cy="-331.26" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#8fb631" stroke="#8fb631" cx="1932.47" cy="-270.836" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#f3f845" d="M1867.5,-330.385C1895.19,-324.158 1931.32,-314.008 1940,-302 1946.34,-293.231 1942.19,-282.978 1935.27,-274.048"/>
|
||||
<ellipse fill="none" stroke="#f3f845" cx="1863.49" cy="-331.26" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#f3f845" stroke="#f3f845" cx="1932.47" cy="-270.836" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- MachineFile -->
|
||||
<g id="node35" class="node"><title>MachineFile</title>
|
||||
@ -566,9 +566,9 @@
|
||||
</g>
|
||||
<!-- Organization->Address -->
|
||||
<g id="edge44" class="edge"><title>Organization->Address</title>
|
||||
<path fill="none" stroke="#82d164" d="M113.435,-420.271C106.869,-403.296 98.1874,-380.85 91.6115,-363.849"/>
|
||||
<ellipse fill="none" stroke="#82d164" cx="114.97" cy="-424.239" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#82d164" stroke="#82d164" cx="90.014" cy="-359.719" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#bbe3bb" d="M113.435,-420.271C106.869,-403.296 98.1874,-380.85 91.6115,-363.849"/>
|
||||
<ellipse fill="none" stroke="#bbe3bb" cx="114.97" cy="-424.239" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#bbe3bb" stroke="#bbe3bb" cx="90.014" cy="-359.719" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- StatisticGraph -->
|
||||
<g id="node37" class="node"><title>StatisticGraph</title>
|
||||
@ -587,47 +587,47 @@
|
||||
</g>
|
||||
<!-- Licence->Project -->
|
||||
<g id="edge45" class="edge"><title>Licence->Project</title>
|
||||
<path fill="none" stroke="#890dfc" d="M858,-614.694C858,-604.512 858,-592.747 858,-582.367"/>
|
||||
<ellipse fill="none" stroke="#890dfc" cx="858" cy="-618.799" rx="4" ry="4"/>
|
||||
<polygon fill="#890dfc" stroke="#890dfc" points="858,-582.175 862.5,-572.175 858,-577.175 858,-572.175 858,-572.175 858,-572.175 858,-577.175 853.5,-572.175 858,-582.175 858,-582.175"/>
|
||||
<path fill="none" stroke="#2b1e6a" d="M858,-614.694C858,-604.512 858,-592.747 858,-582.367"/>
|
||||
<ellipse fill="none" stroke="#2b1e6a" cx="858" cy="-618.799" rx="4" ry="4"/>
|
||||
<polygon fill="#2b1e6a" stroke="#2b1e6a" points="858,-582.175 862.5,-572.175 858,-577.175 858,-572.175 858,-572.175 858,-572.175 858,-577.175 853.5,-572.175 858,-582.175 858,-582.175"/>
|
||||
</g>
|
||||
<!-- User->Project -->
|
||||
<g id="edge49" class="edge"><title>User->Project</title>
|
||||
<path fill="none" stroke="#7a03b6" d="M1201.68,-637.466C1153.3,-633.439 1064,-624.008 990,-605 971.555,-600.262 926.853,-582.848 894.574,-569.895"/>
|
||||
<ellipse fill="none" stroke="#7a03b6" cx="1205.95" cy="-637.812" rx="4" ry="4"/>
|
||||
<polygon fill="#7a03b6" stroke="#7a03b6" points="894.274,-569.774 886.68,-561.864 889.636,-567.906 884.998,-566.038 884.998,-566.038 884.998,-566.038 889.636,-567.906 883.317,-570.212 894.274,-569.774 894.274,-569.774"/>
|
||||
<path fill="none" stroke="#bfdfe6" d="M1201.68,-637.466C1153.3,-633.439 1064,-624.008 990,-605 971.555,-600.262 926.853,-582.848 894.574,-569.895"/>
|
||||
<ellipse fill="none" stroke="#bfdfe6" cx="1205.95" cy="-637.812" rx="4" ry="4"/>
|
||||
<polygon fill="#bfdfe6" stroke="#bfdfe6" points="894.274,-569.774 886.68,-561.864 889.636,-567.906 884.998,-566.038 884.998,-566.038 884.998,-566.038 889.636,-567.906 883.317,-570.212 894.274,-569.774 894.274,-569.774"/>
|
||||
<text text-anchor="middle" x="1024" y="-593.8" font-family="Times,serif" font-size="14.00">my_projects</text>
|
||||
</g>
|
||||
<!-- User->Wallet -->
|
||||
<g id="edge61" class="edge"><title>User->Wallet</title>
|
||||
<path fill="none" stroke="#317495" d="M1201.87,-637.078C1142,-631.909 1016.46,-620.244 911,-605 710.13,-575.964 471.869,-528.237 379.405,-509.207"/>
|
||||
<ellipse fill="none" stroke="#317495" cx="1205.88" cy="-637.422" rx="4" ry="4"/>
|
||||
<ellipse fill="#317495" stroke="#317495" cx="375.354" cy="-508.371" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#6c68a2" d="M1201.87,-637.078C1142,-631.909 1016.46,-620.244 911,-605 710.13,-575.964 471.869,-528.237 379.405,-509.207"/>
|
||||
<ellipse fill="none" stroke="#6c68a2" cx="1205.88" cy="-637.422" rx="4" ry="4"/>
|
||||
<ellipse fill="#6c68a2" stroke="#6c68a2" cx="375.354" cy="-508.371" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- User->Invoice -->
|
||||
<g id="edge59" class="edge"><title>User->Invoice</title>
|
||||
<path fill="none" stroke="#3cec05" d="M1201.8,-637.989C1141.19,-634.573 1013.22,-627.564 905,-623 663.749,-612.826 602.59,-625.547 362,-605 281.086,-598.09 0,-636.208 0,-555 0,-555 0,-555 0,-177 0,-107.484 1111.13,-94.3827 1356.45,-92.3374"/>
|
||||
<ellipse fill="none" stroke="#3cec05" cx="1205.9" cy="-638.221" rx="4" ry="4"/>
|
||||
<polygon fill="#3cec05" stroke="#3cec05" points="1356.81,-92.3345 1366.84,-96.7532 1361.81,-92.2939 1366.81,-92.2533 1366.81,-92.2533 1366.81,-92.2533 1361.81,-92.2939 1366.77,-87.7535 1356.81,-92.3345 1356.81,-92.3345"/>
|
||||
<path fill="none" stroke="#c5e16d" d="M1201.8,-637.989C1141.19,-634.573 1013.22,-627.564 905,-623 663.749,-612.826 602.59,-625.547 362,-605 281.086,-598.09 0,-636.208 0,-555 0,-555 0,-555 0,-177 0,-107.484 1111.13,-94.3827 1356.45,-92.3374"/>
|
||||
<ellipse fill="none" stroke="#c5e16d" cx="1205.9" cy="-638.221" rx="4" ry="4"/>
|
||||
<polygon fill="#c5e16d" stroke="#c5e16d" points="1356.81,-92.3345 1366.84,-96.7532 1361.81,-92.2939 1366.81,-92.2533 1366.81,-92.2533 1366.81,-92.2533 1361.81,-92.2939 1366.77,-87.7535 1356.81,-92.3345 1356.81,-92.3345"/>
|
||||
</g>
|
||||
<!-- User->Credit -->
|
||||
<g id="edge56" class="edge"><title>User->Credit</title>
|
||||
<path fill="none" stroke="#f5a7a0" d="M1246.42,-613.615C1258.18,-579.532 1277.96,-518.143 1288,-464 1302.39,-386.374 1253,-348.101 1303,-287 1321.5,-264.389 1353.73,-255.88 1380.13,-252.894"/>
|
||||
<polygon fill="#f5a7a0" stroke="#f5a7a0" points="1246.35,-613.836 1238.8,-621.795 1244.7,-618.557 1243.05,-623.277 1243.05,-623.277 1243.05,-623.277 1244.7,-618.557 1247.3,-624.76 1246.35,-613.836 1246.35,-613.836"/>
|
||||
<polygon fill="#f5a7a0" stroke="#f5a7a0" points="1380.33,-252.876 1390.7,-256.459 1385.31,-252.427 1390.29,-251.977 1390.29,-251.977 1390.29,-251.977 1385.31,-252.427 1389.89,-247.495 1380.33,-252.876 1380.33,-252.876"/>
|
||||
<path fill="none" stroke="#3c79c6" d="M1246.42,-613.615C1258.18,-579.532 1277.96,-518.143 1288,-464 1302.39,-386.374 1253,-348.101 1303,-287 1321.5,-264.389 1353.73,-255.88 1380.13,-252.894"/>
|
||||
<polygon fill="#3c79c6" stroke="#3c79c6" points="1246.35,-613.836 1238.8,-621.795 1244.7,-618.557 1243.05,-623.277 1243.05,-623.277 1243.05,-623.277 1244.7,-618.557 1247.3,-624.76 1246.35,-613.836 1246.35,-613.836"/>
|
||||
<polygon fill="#3c79c6" stroke="#3c79c6" points="1380.33,-252.876 1390.7,-256.459 1385.31,-252.427 1390.29,-251.977 1390.29,-251.977 1390.29,-251.977 1385.31,-252.427 1389.89,-247.495 1380.33,-252.876 1380.33,-252.876"/>
|
||||
</g>
|
||||
<!-- User->Credit -->
|
||||
<g id="edge57" class="edge"><title>User->Credit</title>
|
||||
<path fill="none" stroke="#890254" d="M1257.2,-617.546C1260.35,-613.515 1263.42,-609.243 1266,-605 1274.28,-591.389 1273.93,-586.73 1280,-572 1331.98,-445.865 1324.3,-404.277 1394,-287 1396.38,-283 1399.2,-278.985 1402.13,-275.175"/>
|
||||
<polygon fill="#890254" stroke="#890254" points="1257.09,-617.68 1247.25,-622.529 1253.91,-621.536 1250.72,-625.393 1250.72,-625.393 1250.72,-625.393 1253.91,-621.536 1254.19,-628.257 1257.09,-617.68 1257.09,-617.68"/>
|
||||
<polygon fill="#890254" stroke="#890254" points="1402.28,-274.992 1412.09,-270.093 1405.44,-271.12 1408.61,-267.247 1408.61,-267.247 1408.61,-267.247 1405.44,-271.12 1405.12,-264.4 1402.28,-274.992 1402.28,-274.992"/>
|
||||
<path fill="none" stroke="#b3af9b" d="M1257.2,-617.546C1260.35,-613.515 1263.42,-609.243 1266,-605 1274.28,-591.389 1273.93,-586.73 1280,-572 1331.98,-445.865 1324.3,-404.277 1394,-287 1396.38,-283 1399.2,-278.985 1402.13,-275.175"/>
|
||||
<polygon fill="#b3af9b" stroke="#b3af9b" points="1257.09,-617.68 1247.25,-622.529 1253.91,-621.536 1250.72,-625.393 1250.72,-625.393 1250.72,-625.393 1253.91,-621.536 1254.19,-628.257 1257.09,-617.68 1257.09,-617.68"/>
|
||||
<polygon fill="#b3af9b" stroke="#b3af9b" points="1402.28,-274.992 1412.09,-270.093 1405.44,-271.12 1408.61,-267.247 1408.61,-267.247 1408.61,-267.247 1405.44,-271.12 1405.12,-264.4 1402.28,-274.992 1402.28,-274.992"/>
|
||||
<text text-anchor="middle" x="1372.5" y="-442.3" font-family="Times,serif" font-size="14.00">training_credits</text>
|
||||
</g>
|
||||
<!-- User->Credit -->
|
||||
<g id="edge58" class="edge"><title>User->Credit</title>
|
||||
<path fill="none" stroke="#c01104" d="M1217.69,-616.551C1206.26,-600.303 1194,-577.605 1194,-555 1194,-555 1194,-555 1194,-337 1194,-297.35 1316.19,-270.272 1382.06,-258.555"/>
|
||||
<polygon fill="#c01104" stroke="#c01104" points="1217.9,-616.843 1220.25,-627.555 1220.88,-620.858 1223.86,-624.872 1223.86,-624.872 1223.86,-624.872 1220.88,-620.858 1227.48,-622.189 1217.9,-616.843 1217.9,-616.843"/>
|
||||
<polygon fill="#c01104" stroke="#c01104" points="1382.26,-258.519 1392.89,-261.241 1387.19,-257.663 1392.12,-256.807 1392.12,-256.807 1392.12,-256.807 1387.19,-257.663 1391.35,-252.374 1382.26,-258.519 1382.26,-258.519"/>
|
||||
<path fill="none" stroke="#0d663a" d="M1217.69,-616.551C1206.26,-600.303 1194,-577.605 1194,-555 1194,-555 1194,-555 1194,-337 1194,-297.35 1316.19,-270.272 1382.06,-258.555"/>
|
||||
<polygon fill="#0d663a" stroke="#0d663a" points="1217.9,-616.843 1220.25,-627.555 1220.88,-620.858 1223.86,-624.872 1223.86,-624.872 1223.86,-624.872 1220.88,-620.858 1227.48,-622.189 1217.9,-616.843 1217.9,-616.843"/>
|
||||
<polygon fill="#0d663a" stroke="#0d663a" points="1382.26,-258.519 1392.89,-261.241 1387.19,-257.663 1392.12,-256.807 1392.12,-256.807 1392.12,-256.807 1387.19,-257.663 1391.35,-252.374 1382.26,-258.519 1382.26,-258.519"/>
|
||||
<text text-anchor="middle" x="1239" y="-442.3" font-family="Times,serif" font-size="14.00">machine_credits</text>
|
||||
</g>
|
||||
<!-- Role -->
|
||||
@ -637,9 +637,9 @@
|
||||
</g>
|
||||
<!-- User->Role -->
|
||||
<g id="edge47" class="edge"><title>User->Role</title>
|
||||
<path fill="none" stroke="#787c74" d="M1199.57,-637.008C1150.89,-630.838 1072,-612.039 1072,-555 1072,-555 1072,-555 1072,-337 1072,-317.731 1073.04,-296.033 1074.06,-279.382"/>
|
||||
<polygon fill="#787c74" stroke="#787c74" points="1199.82,-637.036 1209.24,-642.643 1204.79,-637.604 1209.75,-638.172 1209.75,-638.172 1209.75,-638.172 1204.79,-637.604 1210.26,-633.701 1199.82,-637.036 1199.82,-637.036"/>
|
||||
<polygon fill="#787c74" stroke="#787c74" points="1074.07,-279.224 1079.2,-269.536 1074.39,-274.235 1074.71,-269.245 1074.71,-269.245 1074.71,-269.245 1074.39,-274.235 1070.22,-268.955 1074.07,-279.224 1074.07,-279.224"/>
|
||||
<path fill="none" stroke="#2a23fd" d="M1199.57,-637.008C1150.89,-630.838 1072,-612.039 1072,-555 1072,-555 1072,-555 1072,-337 1072,-317.731 1073.04,-296.033 1074.06,-279.382"/>
|
||||
<polygon fill="#2a23fd" stroke="#2a23fd" points="1199.82,-637.036 1209.24,-642.643 1204.79,-637.604 1209.75,-638.172 1209.75,-638.172 1209.75,-638.172 1204.79,-637.604 1210.26,-633.701 1199.82,-637.036 1199.82,-637.036"/>
|
||||
<polygon fill="#2a23fd" stroke="#2a23fd" points="1074.07,-279.224 1079.2,-269.536 1074.39,-274.235 1074.71,-269.245 1074.71,-269.245 1074.71,-269.245 1074.39,-274.235 1070.22,-268.955 1074.07,-279.224 1074.07,-279.224"/>
|
||||
</g>
|
||||
<!-- Notification -->
|
||||
<g id="node54" class="node"><title>Notification</title>
|
||||
@ -648,15 +648,15 @@
|
||||
</g>
|
||||
<!-- User->Notification -->
|
||||
<g id="edge46" class="edge"><title>User->Notification</title>
|
||||
<path fill="none" stroke="#b3b3c1" d="M1269.39,-630.635C1288.24,-624.563 1312.13,-615.78 1332,-605 1346.3,-597.24 1360.93,-586.686 1372.85,-577.274"/>
|
||||
<ellipse fill="none" stroke="#b3b3c1" cx="1265.47" cy="-631.869" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#b3b3c1" stroke="#b3b3c1" points="1372.86,-577.271 1383.47,-574.49 1376.75,-574.13 1380.64,-570.989 1380.64,-570.989 1380.64,-570.989 1376.75,-574.13 1377.81,-567.487 1372.86,-577.271 1372.86,-577.271"/>
|
||||
<path fill="none" stroke="#074552" d="M1269.39,-630.635C1288.24,-624.563 1312.13,-615.78 1332,-605 1346.3,-597.24 1360.93,-586.686 1372.85,-577.274"/>
|
||||
<ellipse fill="none" stroke="#074552" cx="1265.47" cy="-631.869" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#074552" stroke="#074552" points="1372.86,-577.271 1383.47,-574.49 1376.75,-574.13 1380.64,-570.989 1380.64,-570.989 1380.64,-570.989 1376.75,-574.13 1377.81,-567.487 1372.86,-577.271 1372.86,-577.271"/>
|
||||
</g>
|
||||
<!-- User->Subscription -->
|
||||
<g id="edge54" class="edge"><title>User->Subscription</title>
|
||||
<path fill="none" stroke="#6e04f8" d="M1202.4,-635.249C1180.59,-630.695 1153.05,-621.888 1134,-605 1115.56,-588.646 1110,-579.65 1110,-555 1110,-555 1110,-555 1110,-337 1110,-311.598 1128.75,-289.438 1146.55,-274.118"/>
|
||||
<ellipse fill="none" stroke="#6e04f8" cx="1206.52" cy="-636.04" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#6e04f8" stroke="#6e04f8" points="1146.84,-273.885 1157.44,-271.065 1150.72,-270.729 1154.6,-267.574 1154.6,-267.574 1154.6,-267.574 1150.72,-270.729 1151.76,-264.083 1146.84,-273.885 1146.84,-273.885"/>
|
||||
<path fill="none" stroke="#fba6b4" d="M1202.4,-635.249C1180.59,-630.695 1153.05,-621.888 1134,-605 1115.56,-588.646 1110,-579.65 1110,-555 1110,-555 1110,-555 1110,-337 1110,-311.598 1128.75,-289.438 1146.55,-274.118"/>
|
||||
<ellipse fill="none" stroke="#fba6b4" cx="1206.52" cy="-636.04" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#fba6b4" stroke="#fba6b4" points="1146.84,-273.885 1157.44,-271.065 1150.72,-270.729 1154.6,-267.574 1154.6,-267.574 1154.6,-267.574 1150.72,-270.729 1151.76,-264.083 1146.84,-273.885 1146.84,-273.885"/>
|
||||
</g>
|
||||
<!-- Training -->
|
||||
<g id="node56" class="node"><title>Training</title>
|
||||
@ -665,15 +665,15 @@
|
||||
</g>
|
||||
<!-- User->Training -->
|
||||
<g id="edge53" class="edge"><title>User->Training</title>
|
||||
<path fill="none" stroke="#d48b71" d="M1274.68,-637.802C1342.57,-633.549 1489.85,-622.997 1613,-605 1685.11,-594.462 1767.89,-576.795 1817.77,-565.529"/>
|
||||
<polygon fill="#d48b71" stroke="#d48b71" points="1274.46,-637.815 1264.2,-633.939 1269.47,-638.122 1264.48,-638.43 1264.48,-638.43 1264.48,-638.43 1269.47,-638.122 1264.76,-642.922 1274.46,-637.815 1274.46,-637.815"/>
|
||||
<polygon fill="#d48b71" stroke="#d48b71" points="1817.85,-565.512 1828.6,-567.685 1822.72,-564.404 1827.6,-563.297 1827.6,-563.297 1827.6,-563.297 1822.72,-564.404 1826.6,-558.908 1817.85,-565.512 1817.85,-565.512"/>
|
||||
<path fill="none" stroke="#65edd3" d="M1274.68,-637.802C1342.57,-633.549 1489.85,-622.997 1613,-605 1685.11,-594.462 1767.89,-576.795 1817.77,-565.529"/>
|
||||
<polygon fill="#65edd3" stroke="#65edd3" points="1274.46,-637.815 1264.2,-633.939 1269.47,-638.122 1264.48,-638.43 1264.48,-638.43 1264.48,-638.43 1269.47,-638.122 1264.76,-642.922 1274.46,-637.815 1274.46,-637.815"/>
|
||||
<polygon fill="#65edd3" stroke="#65edd3" points="1817.85,-565.512 1828.6,-567.685 1822.72,-564.404 1827.6,-563.297 1827.6,-563.297 1827.6,-563.297 1822.72,-564.404 1826.6,-558.908 1817.85,-565.512 1817.85,-565.512"/>
|
||||
</g>
|
||||
<!-- User->Reservation -->
|
||||
<g id="edge51" class="edge"><title>User->Reservation</title>
|
||||
<path fill="none" stroke="#637876" d="M1272.42,-637.776C1346.27,-632.996 1522.05,-620.878 1669,-605 1890.21,-581.098 1946.78,-574.432 2162,-518 2201.37,-507.678 2300.48,-481.962 2337,-464 2394.88,-435.531 2454.63,-389.12 2487.78,-361.574"/>
|
||||
<ellipse fill="none" stroke="#637876" cx="1268.33" cy="-638.039" rx="4" ry="4"/>
|
||||
<polygon fill="#637876" stroke="#637876" points="2487.96,-361.427 2498.51,-358.448 2491.79,-358.213 2495.62,-355 2495.62,-355 2495.62,-355 2491.79,-358.213 2492.73,-351.552 2487.96,-361.427 2487.96,-361.427"/>
|
||||
<path fill="none" stroke="#5e9c43" d="M1272.42,-637.776C1346.27,-632.996 1522.05,-620.878 1669,-605 1890.21,-581.098 1946.78,-574.432 2162,-518 2201.37,-507.678 2300.48,-481.962 2337,-464 2394.88,-435.531 2454.63,-389.12 2487.78,-361.574"/>
|
||||
<ellipse fill="none" stroke="#5e9c43" cx="1268.33" cy="-638.039" rx="4" ry="4"/>
|
||||
<polygon fill="#5e9c43" stroke="#5e9c43" points="2487.96,-361.427 2498.51,-358.448 2491.79,-358.213 2495.62,-355 2495.62,-355 2495.62,-355 2491.79,-358.213 2492.73,-351.552 2487.96,-361.427 2487.96,-361.427"/>
|
||||
</g>
|
||||
<!-- UsersCredit -->
|
||||
<g id="node61" class="node"><title>UsersCredit</title>
|
||||
@ -682,15 +682,15 @@
|
||||
</g>
|
||||
<!-- User->UsersCredit -->
|
||||
<g id="edge55" class="edge"><title>User->UsersCredit</title>
|
||||
<path fill="none" stroke="#f8d697" d="M1213.68,-621.475C1208.61,-616.558 1203.68,-610.946 1200,-605 1191.94,-591.965 1193.62,-586.891 1190,-572 1163.5,-463.089 1124.99,-417.662 1180,-320 1189.76,-302.672 1292.5,-234.411 1346,-199.622"/>
|
||||
<ellipse fill="none" stroke="#f8d697" cx="1216.66" cy="-624.206" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f8d697" stroke="#f8d697" points="1346.07,-199.58 1356.9,-197.912 1350.26,-196.859 1354.46,-194.137 1354.46,-194.137 1354.46,-194.137 1350.26,-196.859 1352.01,-190.362 1346.07,-199.58 1346.07,-199.58"/>
|
||||
<path fill="none" stroke="#429589" d="M1213.68,-621.475C1208.61,-616.558 1203.68,-610.946 1200,-605 1191.94,-591.965 1193.62,-586.891 1190,-572 1163.5,-463.089 1124.99,-417.662 1180,-320 1189.76,-302.672 1292.5,-234.411 1346,-199.622"/>
|
||||
<ellipse fill="none" stroke="#429589" cx="1216.66" cy="-624.206" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#429589" stroke="#429589" points="1346.07,-199.58 1356.9,-197.912 1350.26,-196.859 1354.46,-194.137 1354.46,-194.137 1354.46,-194.137 1350.26,-196.859 1352.01,-190.362 1346.07,-199.58 1346.07,-199.58"/>
|
||||
</g>
|
||||
<!-- User->UserTag -->
|
||||
<g id="edge60" class="edge"><title>User->UserTag</title>
|
||||
<path fill="none" stroke="#911e7e" d="M1272.57,-640.889C1336.01,-641.494 1472.24,-638.328 1581,-605 1603.39,-598.14 1626.59,-585.677 1644.22,-574.911"/>
|
||||
<ellipse fill="none" stroke="#911e7e" cx="1268.47" cy="-640.837" rx="4" ry="4"/>
|
||||
<polygon fill="#911e7e" stroke="#911e7e" points="1644.42,-574.784 1655.28,-573.288 1648.66,-572.129 1652.89,-569.474 1652.89,-569.474 1652.89,-569.474 1648.66,-572.129 1650.5,-565.661 1644.42,-574.784 1644.42,-574.784"/>
|
||||
<path fill="none" stroke="#68864b" d="M1272.57,-640.889C1336.01,-641.494 1472.24,-638.328 1581,-605 1603.39,-598.14 1626.59,-585.677 1644.22,-574.911"/>
|
||||
<ellipse fill="none" stroke="#68864b" cx="1268.47" cy="-640.837" rx="4" ry="4"/>
|
||||
<polygon fill="#68864b" stroke="#68864b" points="1644.42,-574.784 1655.28,-573.288 1648.66,-572.129 1652.89,-569.474 1652.89,-569.474 1652.89,-569.474 1648.66,-572.129 1650.5,-565.661 1644.42,-574.784 1644.42,-574.784"/>
|
||||
</g>
|
||||
<!-- Export -->
|
||||
<g id="node67" class="node"><title>Export</title>
|
||||
@ -699,9 +699,9 @@
|
||||
</g>
|
||||
<!-- User->Export -->
|
||||
<g id="edge62" class="edge"><title>User->Export</title>
|
||||
<path fill="none" stroke="#b307dc" d="M1269.51,-631.116C1313.36,-618.91 1393.72,-595.754 1461,-572 1463.52,-571.111 1466.11,-570.172 1468.72,-569.211"/>
|
||||
<ellipse fill="none" stroke="#b307dc" cx="1265.62" cy="-632.196" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#b307dc" stroke="#b307dc" points="1468.74,-569.201 1479.68,-569.892 1473.42,-567.441 1478.1,-565.68 1478.1,-565.68 1478.1,-565.68 1473.42,-567.441 1476.52,-561.468 1468.74,-569.201 1468.74,-569.201"/>
|
||||
<path fill="none" stroke="#474558" d="M1269.51,-631.116C1313.36,-618.91 1393.72,-595.754 1461,-572 1463.52,-571.111 1466.11,-570.172 1468.72,-569.211"/>
|
||||
<ellipse fill="none" stroke="#474558" cx="1265.62" cy="-632.196" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#474558" stroke="#474558" points="1468.74,-569.201 1479.68,-569.892 1473.42,-567.441 1478.1,-565.68 1478.1,-565.68 1478.1,-565.68 1473.42,-567.441 1476.52,-561.468 1468.74,-569.201 1468.74,-569.201"/>
|
||||
</g>
|
||||
<!-- UserTraining -->
|
||||
<g id="node73" class="node"><title>UserTraining</title>
|
||||
@ -710,15 +710,15 @@
|
||||
</g>
|
||||
<!-- User->UserTraining -->
|
||||
<g id="edge52" class="edge"><title>User->UserTraining</title>
|
||||
<path fill="none" stroke="#d3106a" d="M1272.25,-637.691C1346.24,-632.032 1513.73,-614.693 1548,-572 1570.93,-543.437 1552.44,-500.003 1536.28,-472.582"/>
|
||||
<ellipse fill="none" stroke="#d3106a" cx="1268.12" cy="-637.998" rx="4" ry="4"/>
|
||||
<polygon fill="#d3106a" stroke="#d3106a" points="1536.2,-472.452 1534.79,-461.579 1533.58,-468.197 1530.96,-463.941 1530.96,-463.941 1530.96,-463.941 1533.58,-468.197 1527.12,-466.303 1536.2,-472.452 1536.2,-472.452"/>
|
||||
<path fill="none" stroke="#8dc9f9" d="M1272.25,-637.691C1346.24,-632.032 1513.73,-614.693 1548,-572 1570.93,-543.437 1552.44,-500.003 1536.28,-472.582"/>
|
||||
<ellipse fill="none" stroke="#8dc9f9" cx="1268.12" cy="-637.998" rx="4" ry="4"/>
|
||||
<polygon fill="#8dc9f9" stroke="#8dc9f9" points="1536.2,-472.452 1534.79,-461.579 1533.58,-468.197 1530.96,-463.941 1530.96,-463.941 1530.96,-463.941 1533.58,-468.197 1527.12,-466.303 1536.2,-472.452 1536.2,-472.452"/>
|
||||
</g>
|
||||
<!-- User->ProjectUser -->
|
||||
<g id="edge50" class="edge"><title>User->ProjectUser</title>
|
||||
<path fill="none" stroke="#09601f" d="M1201.82,-637.38C1141.89,-632.659 1016.25,-621.64 911,-605 724.858,-575.572 666.281,-598.741 496,-518 471.459,-506.363 447.74,-486.566 431.123,-470.828"/>
|
||||
<ellipse fill="none" stroke="#09601f" cx="1205.84" cy="-637.694" rx="4" ry="4"/>
|
||||
<polygon fill="#09601f" stroke="#09601f" points="430.735,-470.451 426.7,-460.254 427.149,-466.966 423.563,-463.482 423.563,-463.482 423.563,-463.482 427.149,-466.966 420.427,-466.709 430.735,-470.451 430.735,-470.451"/>
|
||||
<path fill="none" stroke="#505fdd" d="M1201.82,-637.38C1141.89,-632.659 1016.25,-621.64 911,-605 724.858,-575.572 666.281,-598.741 496,-518 471.459,-506.363 447.74,-486.566 431.123,-470.828"/>
|
||||
<ellipse fill="none" stroke="#505fdd" cx="1205.84" cy="-637.694" rx="4" ry="4"/>
|
||||
<polygon fill="#505fdd" stroke="#505fdd" points="430.735,-470.451 426.7,-460.254 427.149,-466.966 423.563,-463.482 423.563,-463.482 423.563,-463.482 427.149,-466.966 420.427,-466.709 430.735,-470.451 430.735,-470.451"/>
|
||||
</g>
|
||||
<!-- Profile -->
|
||||
<g id="node87" class="node"><title>Profile</title>
|
||||
@ -727,9 +727,9 @@
|
||||
</g>
|
||||
<!-- User->Profile -->
|
||||
<g id="edge48" class="edge"><title>User->Profile</title>
|
||||
<path fill="none" stroke="#ce2222" d="M1201.8,-638.079C1141.18,-634.799 1013.2,-627.988 905,-623 709.932,-614.007 660.119,-626.213 466,-605 379.388,-595.535 279.157,-575.366 225.224,-563.743"/>
|
||||
<ellipse fill="none" stroke="#ce2222" cx="1205.9" cy="-638.302" rx="4" ry="4"/>
|
||||
<ellipse fill="#ce2222" stroke="#ce2222" cx="221.201" cy="-562.871" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#1c269d" d="M1201.8,-638.079C1141.18,-634.799 1013.2,-627.988 905,-623 709.932,-614.007 660.119,-626.213 466,-605 379.388,-595.535 279.157,-575.366 225.224,-563.743"/>
|
||||
<ellipse fill="none" stroke="#1c269d" cx="1205.9" cy="-638.302" rx="4" ry="4"/>
|
||||
<ellipse fill="#1c269d" stroke="#1c269d" cx="221.201" cy="-562.871" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- ProjectStepImage -->
|
||||
<g id="node42" class="node"><title>ProjectStepImage</title>
|
||||
@ -738,9 +738,9 @@
|
||||
</g>
|
||||
<!-- Credit->UsersCredit -->
|
||||
<g id="edge63" class="edge"><title>Credit->UsersCredit</title>
|
||||
<path fill="none" stroke="#80da29" d="M1408.36,-226.895C1403.88,-219.83 1398.93,-212.016 1394.34,-204.785"/>
|
||||
<ellipse fill="none" stroke="#80da29" cx="1410.65" cy="-230.51" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#80da29" stroke="#80da29" points="1394.15,-204.484 1392.6,-193.628 1391.47,-200.261 1388.8,-196.037 1388.8,-196.037 1388.8,-196.037 1391.47,-200.261 1385,-198.446 1394.15,-204.484 1394.15,-204.484"/>
|
||||
<path fill="none" stroke="#347295" d="M1408.36,-226.895C1403.88,-219.83 1398.93,-212.016 1394.34,-204.785"/>
|
||||
<ellipse fill="none" stroke="#347295" cx="1410.65" cy="-230.51" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#347295" stroke="#347295" points="1394.15,-204.484 1392.6,-193.628 1391.47,-200.261 1388.8,-196.037 1388.8,-196.037 1388.8,-196.037 1391.47,-200.261 1385,-198.446 1394.15,-204.484 1394.15,-204.484"/>
|
||||
</g>
|
||||
<!-- PartnerPlan -->
|
||||
<g id="node45" class="node"><title>PartnerPlan</title>
|
||||
@ -749,53 +749,53 @@
|
||||
</g>
|
||||
<!-- PartnerPlan->Price -->
|
||||
<g id="edge70" class="edge"><title>PartnerPlan->Price</title>
|
||||
<path fill="none" stroke="#df8326" d="M1571.95,-335.253C1646.29,-332.205 1776.57,-323.967 1886,-302 1930.67,-293.033 1980.54,-276.334 2012.55,-264.713"/>
|
||||
<ellipse fill="none" stroke="#df8326" cx="1567.61" cy="-335.425" rx="4" ry="4"/>
|
||||
<polygon fill="#df8326" stroke="#df8326" points="2012.9,-264.585 2023.84,-265.359 2017.59,-262.86 2022.28,-261.135 2022.28,-261.135 2022.28,-261.135 2017.59,-262.86 2020.73,-256.912 2012.9,-264.585 2012.9,-264.585"/>
|
||||
<path fill="none" stroke="#ce328f" d="M1571.95,-335.253C1646.29,-332.205 1776.57,-323.967 1886,-302 1930.67,-293.033 1980.54,-276.334 2012.55,-264.713"/>
|
||||
<ellipse fill="none" stroke="#ce328f" cx="1567.61" cy="-335.425" rx="4" ry="4"/>
|
||||
<polygon fill="#ce328f" stroke="#ce328f" points="2012.9,-264.585 2023.84,-265.359 2017.59,-262.86 2022.28,-261.135 2022.28,-261.135 2022.28,-261.135 2017.59,-262.86 2020.73,-256.912 2012.9,-264.585 2012.9,-264.585"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->PlanFile -->
|
||||
<g id="edge69" class="edge"><title>PartnerPlan->PlanFile</title>
|
||||
<path fill="none" stroke="#270aba" d="M1570.75,-332.694C1627.73,-327.666 1709.49,-317.94 1737,-302 1747.84,-295.721 1756.88,-285.286 1763.61,-275.568"/>
|
||||
<ellipse fill="none" stroke="#270aba" cx="1566.52" cy="-333.059" rx="4" ry="4"/>
|
||||
<ellipse fill="#270aba" stroke="#270aba" cx="1765.91" cy="-272.039" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#f13c6a" d="M1570.75,-332.694C1627.73,-327.666 1709.49,-317.94 1737,-302 1747.84,-295.721 1756.88,-285.286 1763.61,-275.568"/>
|
||||
<ellipse fill="none" stroke="#f13c6a" cx="1566.52" cy="-333.059" rx="4" ry="4"/>
|
||||
<ellipse fill="#f13c6a" stroke="#f13c6a" cx="1765.91" cy="-272.039" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->Credit -->
|
||||
<g id="edge64" class="edge"><title>PartnerPlan->Credit</title>
|
||||
<path fill="none" stroke="#47abbb" d="M1453.91,-331.18C1435.59,-326.284 1417.23,-317.529 1406,-302 1400.64,-294.579 1402.04,-285.338 1405.76,-276.827"/>
|
||||
<ellipse fill="none" stroke="#47abbb" cx="1457.85" cy="-332.121" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#47abbb" stroke="#47abbb" points="1405.76,-276.816 1414.45,-270.121 1408.12,-272.407 1410.48,-267.998 1410.48,-267.998 1410.48,-267.998 1408.12,-272.407 1406.51,-265.875 1405.76,-276.816 1405.76,-276.816"/>
|
||||
<path fill="none" stroke="#7a22e1" d="M1453.91,-331.18C1435.59,-326.284 1417.23,-317.529 1406,-302 1400.64,-294.579 1402.04,-285.338 1405.76,-276.827"/>
|
||||
<ellipse fill="none" stroke="#7a22e1" cx="1457.85" cy="-332.121" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#7a22e1" stroke="#7a22e1" points="1405.76,-276.816 1414.45,-270.121 1408.12,-272.407 1410.48,-267.998 1410.48,-267.998 1410.48,-267.998 1408.12,-272.407 1406.51,-265.875 1405.76,-276.816 1405.76,-276.816"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->Credit -->
|
||||
<g id="edge65" class="edge"><title>PartnerPlan->Credit</title>
|
||||
<path fill="none" stroke="#0a76d4" d="M1459.33,-326.118C1446.46,-320.93 1434.09,-313.279 1426,-302 1421.35,-295.514 1419.65,-287.252 1419.38,-279.321"/>
|
||||
<ellipse fill="none" stroke="#0a76d4" cx="1463.17" cy="-327.523" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#0a76d4" stroke="#0a76d4" points="1419.38,-279.257 1424.22,-269.416 1419.55,-274.26 1419.72,-269.263 1419.72,-269.263 1419.72,-269.263 1419.55,-274.26 1415.22,-269.109 1419.38,-279.257 1419.38,-279.257"/>
|
||||
<path fill="none" stroke="#0ba4d0" d="M1459.33,-326.118C1446.46,-320.93 1434.09,-313.279 1426,-302 1421.35,-295.514 1419.65,-287.252 1419.38,-279.321"/>
|
||||
<ellipse fill="none" stroke="#0ba4d0" cx="1463.17" cy="-327.523" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#0ba4d0" stroke="#0ba4d0" points="1419.38,-279.257 1424.22,-269.416 1419.55,-274.26 1419.72,-269.263 1419.72,-269.263 1419.72,-269.263 1419.55,-274.26 1415.22,-269.109 1419.38,-279.257 1419.38,-279.257"/>
|
||||
<text text-anchor="middle" x="1468.5" y="-290.8" font-family="Times,serif" font-size="14.00">training_credits</text>
|
||||
</g>
|
||||
<!-- PartnerPlan->Credit -->
|
||||
<g id="edge66" class="edge"><title>PartnerPlan->Credit</title>
|
||||
<path fill="none" stroke="#8138d2" d="M1516.86,-311.62C1517.16,-303.142 1515.9,-294.064 1511,-287 1500.35,-271.638 1481.81,-263.017 1464.48,-258.18"/>
|
||||
<ellipse fill="none" stroke="#8138d2" cx="1516.48" cy="-315.817" rx="4" ry="4"/>
|
||||
<polygon fill="#8138d2" stroke="#8138d2" points="1464.2,-258.113 1455.55,-251.375 1459.34,-256.93 1454.48,-255.747 1454.48,-255.747 1454.48,-255.747 1459.34,-256.93 1453.42,-260.12 1464.2,-258.113 1464.2,-258.113"/>
|
||||
<path fill="none" stroke="#79a090" d="M1516.86,-311.62C1517.16,-303.142 1515.9,-294.064 1511,-287 1500.35,-271.638 1481.81,-263.017 1464.48,-258.18"/>
|
||||
<ellipse fill="none" stroke="#79a090" cx="1516.48" cy="-315.817" rx="4" ry="4"/>
|
||||
<polygon fill="#79a090" stroke="#79a090" points="1464.2,-258.113 1455.55,-251.375 1459.34,-256.93 1454.48,-255.747 1454.48,-255.747 1454.48,-255.747 1459.34,-256.93 1453.42,-260.12 1464.2,-258.113 1464.2,-258.113"/>
|
||||
<text text-anchor="middle" x="1562" y="-290.8" font-family="Times,serif" font-size="14.00">machine_credits</text>
|
||||
</g>
|
||||
<!-- PartnerPlan->Role -->
|
||||
<g id="edge71" class="edge"><title>PartnerPlan->Role</title>
|
||||
<path fill="none" stroke="#02cf44" d="M1453.6,-332.129C1374.95,-324.425 1231.31,-306.302 1114,-269 1111.59,-268.233 1109.13,-267.359 1106.67,-266.42"/>
|
||||
<ellipse fill="none" stroke="#02cf44" cx="1457.95" cy="-332.548" rx="4" ry="4"/>
|
||||
<polygon fill="#02cf44" stroke="#02cf44" points="1106.61,-266.395 1099.09,-258.414 1101.99,-264.484 1097.37,-262.573 1097.37,-262.573 1097.37,-262.573 1101.99,-264.484 1095.65,-266.731 1106.61,-266.395 1106.61,-266.395"/>
|
||||
<path fill="none" stroke="#b819db" d="M1453.6,-332.129C1374.95,-324.425 1231.31,-306.302 1114,-269 1111.59,-268.233 1109.13,-267.359 1106.67,-266.42"/>
|
||||
<ellipse fill="none" stroke="#b819db" cx="1457.95" cy="-332.548" rx="4" ry="4"/>
|
||||
<polygon fill="#b819db" stroke="#b819db" points="1106.61,-266.395 1099.09,-258.414 1101.99,-264.484 1097.37,-262.573 1097.37,-262.573 1097.37,-262.573 1101.99,-264.484 1095.65,-266.731 1106.61,-266.395 1106.61,-266.395"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->Subscription -->
|
||||
<g id="edge67" class="edge"><title>PartnerPlan->Subscription</title>
|
||||
<path fill="none" stroke="#9f5a82" d="M1457.36,-328.578C1420.53,-322.42 1371,-313.204 1328,-302 1308.07,-296.807 1259.95,-280.516 1223.54,-267.926"/>
|
||||
<ellipse fill="none" stroke="#9f5a82" cx="1461.54" cy="-329.269" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#9f5a82" stroke="#9f5a82" points="1223.54,-267.926 1215.57,-260.399 1218.82,-266.288 1214.09,-264.65 1214.09,-264.65 1214.09,-264.65 1218.82,-266.288 1212.62,-268.902 1223.54,-267.926 1223.54,-267.926"/>
|
||||
<path fill="none" stroke="#47df46" d="M1457.36,-328.578C1420.53,-322.42 1371,-313.204 1328,-302 1308.07,-296.807 1259.95,-280.516 1223.54,-267.926"/>
|
||||
<ellipse fill="none" stroke="#47df46" cx="1461.54" cy="-329.269" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#47df46" stroke="#47df46" points="1223.54,-267.926 1215.57,-260.399 1218.82,-266.288 1214.09,-264.65 1214.09,-264.65 1214.09,-264.65 1218.82,-266.288 1212.62,-268.902 1223.54,-267.926 1223.54,-267.926"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->PlanImage -->
|
||||
<g id="edge68" class="edge"><title>PartnerPlan->PlanImage</title>
|
||||
<path fill="none" stroke="#d175e4" d="M1570.11,-331.779C1620.72,-326.526 1695.83,-317.023 1760,-302 1798.38,-293.014 1840.91,-278.504 1871.02,-267.423"/>
|
||||
<ellipse fill="none" stroke="#d175e4" cx="1565.87" cy="-332.211" rx="4" ry="4"/>
|
||||
<ellipse fill="#d175e4" stroke="#d175e4" cx="1875.04" cy="-265.933" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#6e8026" d="M1570.11,-331.779C1620.72,-326.526 1695.83,-317.023 1760,-302 1798.38,-293.014 1840.91,-278.504 1871.02,-267.423"/>
|
||||
<ellipse fill="none" stroke="#6e8026" cx="1565.87" cy="-332.211" rx="4" ry="4"/>
|
||||
<ellipse fill="#6e8026" stroke="#6e8026" cx="1875.04" cy="-265.933" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- OAuth2Provider -->
|
||||
<g id="node46" class="node"><title>OAuth2Provider</title>
|
||||
@ -804,9 +804,9 @@
|
||||
</g>
|
||||
<!-- OAuth2Provider->OAuth2Mapping -->
|
||||
<g id="edge73" class="edge"><title>OAuth2Provider->OAuth2Mapping</title>
|
||||
<path fill="none" stroke="#0de20c" d="M4405,-708.451C4405,-696.315 4405,-681.795 4405,-669.427"/>
|
||||
<ellipse fill="none" stroke="#0de20c" cx="4405" cy="-712.696" rx="4" ry="4"/>
|
||||
<polygon fill="#0de20c" stroke="#0de20c" points="4405,-669.227 4409.5,-659.227 4405,-664.227 4405,-659.227 4405,-659.227 4405,-659.227 4405,-664.227 4400.5,-659.227 4405,-669.227 4405,-669.227"/>
|
||||
<path fill="none" stroke="#2b7943" d="M4405,-708.451C4405,-696.315 4405,-681.795 4405,-669.427"/>
|
||||
<ellipse fill="none" stroke="#2b7943" cx="4405" cy="-712.696" rx="4" ry="4"/>
|
||||
<polygon fill="#2b7943" stroke="#2b7943" points="4405,-669.227 4409.5,-659.227 4405,-664.227 4405,-659.227 4405,-659.227 4405,-659.227 4405,-664.227 4400.5,-659.227 4405,-669.227 4405,-669.227"/>
|
||||
</g>
|
||||
<!-- AuthProvider -->
|
||||
<g id="node71" class="node"><title>AuthProvider</title>
|
||||
@ -815,9 +815,9 @@
|
||||
</g>
|
||||
<!-- OAuth2Provider->AuthProvider -->
|
||||
<g id="edge72" class="edge"><title>OAuth2Provider->AuthProvider</title>
|
||||
<path fill="none" stroke="#3cf1a6" d="M4438.45,-714.015C4464.52,-698.44 4500.52,-676.937 4526.38,-661.49"/>
|
||||
<ellipse fill="none" stroke="#3cf1a6" cx="4434.91" cy="-716.133" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#3cf1a6" stroke="#3cf1a6" cx="4529.95" cy="-659.355" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#84680e" d="M4438.45,-714.015C4464.52,-698.44 4500.52,-676.937 4526.38,-661.49"/>
|
||||
<ellipse fill="none" stroke="#84680e" cx="4434.91" cy="-716.133" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#84680e" stroke="#84680e" cx="4529.95" cy="-659.355" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Asset -->
|
||||
<g id="node50" class="node"><title>Asset</title>
|
||||
@ -836,33 +836,33 @@
|
||||
</g>
|
||||
<!-- DatabaseProvider->AuthProvider -->
|
||||
<g id="edge74" class="edge"><title>DatabaseProvider->AuthProvider</title>
|
||||
<path fill="none" stroke="#6c0c3f" d="M4564.06,-708.451C4563.09,-695.702 4561.92,-680.322 4560.95,-667.57"/>
|
||||
<ellipse fill="none" stroke="#6c0c3f" cx="4564.38" cy="-712.707" rx="4" ry="4"/>
|
||||
<ellipse fill="#6c0c3f" stroke="#6c0c3f" cx="4560.61" cy="-663.215" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#88bf0e" d="M4564.06,-708.451C4563.09,-695.702 4561.92,-680.322 4560.95,-667.57"/>
|
||||
<ellipse fill="none" stroke="#88bf0e" cx="4564.38" cy="-712.707" rx="4" ry="4"/>
|
||||
<ellipse fill="#88bf0e" stroke="#88bf0e" cx="4560.61" cy="-663.215" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- Availability->AvailabilityTag -->
|
||||
<g id="edge82" class="edge"><title>Availability->AvailabilityTag</title>
|
||||
<path fill="none" stroke="#e4b481" d="M2467.44,-625.711C2484.03,-620.011 2502.65,-612.915 2519,-605 2535.73,-596.904 2553.34,-586.164 2567.77,-576.713"/>
|
||||
<ellipse fill="none" stroke="#e4b481" cx="2463.26" cy="-627.117" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#e4b481" stroke="#e4b481" points="2567.98,-576.572 2578.8,-574.776 2572.14,-573.801 2576.3,-571.03 2576.3,-571.03 2576.3,-571.03 2572.14,-573.801 2573.81,-567.284 2567.98,-576.572 2567.98,-576.572"/>
|
||||
<path fill="none" stroke="#0ee210" d="M2467.44,-625.711C2484.03,-620.011 2502.65,-612.915 2519,-605 2535.73,-596.904 2553.34,-586.164 2567.77,-576.713"/>
|
||||
<ellipse fill="none" stroke="#0ee210" cx="2463.26" cy="-627.117" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#0ee210" stroke="#0ee210" points="2567.98,-576.572 2578.8,-574.776 2572.14,-573.801 2576.3,-571.03 2576.3,-571.03 2576.3,-571.03 2572.14,-573.801 2573.81,-567.284 2567.98,-576.572 2567.98,-576.572"/>
|
||||
</g>
|
||||
<!-- Availability->Event -->
|
||||
<g id="edge81" class="edge"><title>Availability->Event</title>
|
||||
<path fill="none" stroke="#4b95ef" d="M2470.53,-628.004C2541.93,-610.715 2672.12,-579.186 2735.45,-563.85"/>
|
||||
<ellipse fill="none" stroke="#4b95ef" cx="2466.53" cy="-628.974" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#4b95ef" stroke="#4b95ef" cx="2739.68" cy="-562.827" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#1f571e" d="M2470.53,-628.004C2541.93,-610.715 2672.12,-579.186 2735.45,-563.85"/>
|
||||
<ellipse fill="none" stroke="#1f571e" cx="2466.53" cy="-628.974" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#1f571e" stroke="#1f571e" cx="2739.68" cy="-562.827" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- Availability->Training -->
|
||||
<g id="edge78" class="edge"><title>Availability->Training</title>
|
||||
<path fill="none" stroke="#4ecbfa" d="M2365.92,-629.711C2329.57,-622.859 2280.91,-613.573 2238,-605 2205.95,-598.596 2198.27,-595.214 2166,-590 2077.3,-575.667 1973.06,-564.958 1912.86,-559.365"/>
|
||||
<polygon fill="#4ecbfa" stroke="#4ecbfa" points="2366.01,-629.726 2375,-635.998 2370.92,-630.651 2375.84,-631.576 2375.84,-631.576 2375.84,-631.576 2370.92,-630.651 2376.67,-627.153 2366.01,-629.726 2366.01,-629.726"/>
|
||||
<polygon fill="#4ecbfa" stroke="#4ecbfa" points="1912.82,-559.362 1903.28,-553.965 1907.84,-558.904 1902.86,-558.447 1902.86,-558.447 1902.86,-558.447 1907.84,-558.904 1902.45,-562.928 1912.82,-559.362 1912.82,-559.362"/>
|
||||
<path fill="none" stroke="#922eed" d="M2365.92,-629.711C2329.57,-622.859 2280.91,-613.573 2238,-605 2205.95,-598.596 2198.27,-595.214 2166,-590 2077.3,-575.667 1973.06,-564.958 1912.86,-559.365"/>
|
||||
<polygon fill="#922eed" stroke="#922eed" points="2366.01,-629.726 2375,-635.998 2370.92,-630.651 2375.84,-631.576 2375.84,-631.576 2375.84,-631.576 2370.92,-630.651 2376.67,-627.153 2366.01,-629.726 2366.01,-629.726"/>
|
||||
<polygon fill="#922eed" stroke="#922eed" points="1912.82,-559.362 1903.28,-553.965 1907.84,-558.904 1902.86,-558.447 1902.86,-558.447 1902.86,-558.447 1907.84,-558.904 1902.45,-562.928 1912.82,-559.362 1912.82,-559.362"/>
|
||||
</g>
|
||||
<!-- Availability->Reservation -->
|
||||
<g id="edge80" class="edge"><title>Availability->Reservation</title>
|
||||
<path fill="none" stroke="#87cd86" d="M2431.88,-613.533C2432.97,-610.667 2434.03,-607.782 2435,-605 2465.07,-518.52 2494.03,-413.837 2506.96,-365.644"/>
|
||||
<polygon fill="#87cd86" stroke="#87cd86" points="2431.81,-613.721 2423.96,-621.383 2429.98,-618.375 2428.15,-623.028 2428.15,-623.028 2428.15,-623.028 2429.98,-618.375 2432.34,-624.674 2431.81,-613.721 2431.81,-613.721"/>
|
||||
<polygon fill="#87cd86" stroke="#87cd86" points="2506.96,-365.638 2513.89,-357.138 2508.25,-360.808 2509.54,-355.977 2509.54,-355.977 2509.54,-355.977 2508.25,-360.808 2505.19,-354.816 2506.96,-365.638 2506.96,-365.638"/>
|
||||
<path fill="none" stroke="#ac10d3" d="M2431.88,-613.533C2432.97,-610.667 2434.03,-607.782 2435,-605 2465.07,-518.52 2494.03,-413.837 2506.96,-365.644"/>
|
||||
<polygon fill="#ac10d3" stroke="#ac10d3" points="2431.81,-613.721 2423.96,-621.383 2429.98,-618.375 2428.15,-623.028 2428.15,-623.028 2428.15,-623.028 2429.98,-618.375 2432.34,-624.674 2431.81,-613.721 2431.81,-613.721"/>
|
||||
<polygon fill="#ac10d3" stroke="#ac10d3" points="2506.96,-365.638 2513.89,-357.138 2508.25,-360.808 2509.54,-355.977 2509.54,-355.977 2509.54,-355.977 2508.25,-360.808 2505.19,-354.816 2506.96,-365.638 2506.96,-365.638"/>
|
||||
</g>
|
||||
<!-- Slot -->
|
||||
<g id="node63" class="node"><title>Slot</title>
|
||||
@ -871,9 +871,9 @@
|
||||
</g>
|
||||
<!-- Availability->Slot -->
|
||||
<g id="edge79" class="edge"><title>Availability->Slot</title>
|
||||
<path fill="none" stroke="#017a97" d="M2442.42,-617.544C2445.81,-613.512 2449.14,-609.239 2452,-605 2521.14,-502.509 2547.69,-476.345 2576,-356 2582.19,-329.698 2574.68,-299.323 2567.16,-278.218"/>
|
||||
<ellipse fill="none" stroke="#017a97" cx="2439.72" cy="-620.633" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#017a97" stroke="#017a97" points="2567.08,-278.008 2567.74,-267.062 2565.31,-273.334 2563.53,-268.66 2563.53,-268.66 2563.53,-268.66 2565.31,-273.334 2559.32,-270.259 2567.08,-278.008 2567.08,-278.008"/>
|
||||
<path fill="none" stroke="#af2337" d="M2442.42,-617.544C2445.81,-613.512 2449.14,-609.239 2452,-605 2521.14,-502.509 2547.69,-476.345 2576,-356 2582.19,-329.698 2574.68,-299.323 2567.16,-278.218"/>
|
||||
<ellipse fill="none" stroke="#af2337" cx="2439.72" cy="-620.633" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#af2337" stroke="#af2337" points="2567.08,-278.008 2567.74,-267.062 2565.31,-273.334 2563.53,-268.66 2563.53,-268.66 2563.53,-268.66 2565.31,-273.334 2559.32,-270.259 2567.08,-278.008 2567.08,-278.008"/>
|
||||
</g>
|
||||
<!-- MachinesAvailability -->
|
||||
<g id="node68" class="node"><title>MachinesAvailability</title>
|
||||
@ -882,9 +882,9 @@
|
||||
</g>
|
||||
<!-- Availability->MachinesAvailability -->
|
||||
<g id="edge75" class="edge"><title>Availability->MachinesAvailability</title>
|
||||
<path fill="none" stroke="#29ed19" d="M2420.72,-614.486C2419.93,-582.999 2417.06,-527.982 2407,-482 2397.82,-440.08 2379.69,-393.644 2367.71,-365.39"/>
|
||||
<ellipse fill="none" stroke="#29ed19" cx="2420.81" cy="-618.717" rx="4" ry="4"/>
|
||||
<polygon fill="#29ed19" stroke="#29ed19" points="2367.7,-365.377 2367.88,-354.412 2365.73,-360.784 2363.75,-356.191 2363.75,-356.191 2363.75,-356.191 2365.73,-360.784 2359.62,-357.97 2367.7,-365.377 2367.7,-365.377"/>
|
||||
<path fill="none" stroke="#246705" d="M2420.72,-614.486C2419.93,-582.999 2417.06,-527.982 2407,-482 2397.82,-440.08 2379.69,-393.644 2367.71,-365.39"/>
|
||||
<ellipse fill="none" stroke="#246705" cx="2420.81" cy="-618.717" rx="4" ry="4"/>
|
||||
<polygon fill="#246705" stroke="#246705" points="2367.7,-365.377 2367.88,-354.412 2365.73,-360.784 2363.75,-356.191 2363.75,-356.191 2363.75,-356.191 2365.73,-360.784 2359.62,-357.97 2367.7,-365.377 2367.7,-365.377"/>
|
||||
</g>
|
||||
<!-- TrainingsAvailability -->
|
||||
<g id="node80" class="node"><title>TrainingsAvailability</title>
|
||||
@ -893,93 +893,93 @@
|
||||
</g>
|
||||
<!-- Availability->TrainingsAvailability -->
|
||||
<g id="edge77" class="edge"><title>Availability->TrainingsAvailability</title>
|
||||
<path fill="none" stroke="#d8d953" d="M2396.45,-618.467C2354.81,-581.936 2270.66,-508.115 2227.64,-470.372"/>
|
||||
<ellipse fill="none" stroke="#d8d953" cx="2399.61" cy="-621.239" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#d8d953" stroke="#d8d953" points="2227.62,-470.356 2223.07,-460.379 2223.87,-467.059 2220.11,-463.762 2220.11,-463.762 2220.11,-463.762 2223.87,-467.059 2217.14,-467.144 2227.62,-470.356 2227.62,-470.356"/>
|
||||
<path fill="none" stroke="#f4a2a0" d="M2396.45,-618.467C2354.81,-581.936 2270.66,-508.115 2227.64,-470.372"/>
|
||||
<ellipse fill="none" stroke="#f4a2a0" cx="2399.61" cy="-621.239" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f4a2a0" stroke="#f4a2a0" points="2227.62,-470.356 2223.07,-460.379 2223.87,-467.059 2220.11,-463.762 2220.11,-463.762 2220.11,-463.762 2223.87,-467.059 2217.14,-467.144 2227.62,-470.356 2227.62,-470.356"/>
|
||||
</g>
|
||||
<!-- Availability->Machine -->
|
||||
<g id="edge76" class="edge"><title>Availability->Machine</title>
|
||||
<path fill="none" stroke="#7ba192" d="M2377.39,-623.562C2279.55,-586.682 2043.73,-497.787 1949.19,-462.151"/>
|
||||
<polygon fill="#7ba192" stroke="#7ba192" points="2377.65,-623.66 2385.42,-631.398 2382.33,-625.424 2387.01,-627.187 2387.01,-627.187 2387.01,-627.187 2382.33,-625.424 2388.6,-622.976 2377.65,-623.66 2377.65,-623.66"/>
|
||||
<polygon fill="#7ba192" stroke="#7ba192" points="1949.06,-462.1 1941.29,-454.362 1944.38,-460.336 1939.7,-458.573 1939.7,-458.573 1939.7,-458.573 1944.38,-460.336 1938.11,-462.783 1949.06,-462.1 1949.06,-462.1"/>
|
||||
<path fill="none" stroke="#90afb1" d="M2377.39,-623.562C2279.55,-586.682 2043.73,-497.787 1949.19,-462.151"/>
|
||||
<polygon fill="#90afb1" stroke="#90afb1" points="2377.65,-623.66 2385.42,-631.398 2382.33,-625.424 2387.01,-627.187 2387.01,-627.187 2387.01,-627.187 2382.33,-625.424 2388.6,-622.976 2377.65,-623.66 2377.65,-623.66"/>
|
||||
<polygon fill="#90afb1" stroke="#90afb1" points="1949.06,-462.1 1941.29,-454.362 1944.38,-460.336 1939.7,-458.573 1939.7,-458.573 1939.7,-458.573 1944.38,-460.336 1938.11,-462.783 1949.06,-462.1 1949.06,-462.1"/>
|
||||
</g>
|
||||
<!-- Subscription->Invoice -->
|
||||
<g id="edge83" class="edge"><title>Subscription->Invoice</title>
|
||||
<path fill="none" stroke="#548f57" d="M1180.37,-224.669C1183.53,-204.666 1190.88,-177.326 1208,-160 1248.07,-119.437 1313.54,-103.038 1357.66,-96.4286"/>
|
||||
<ellipse fill="none" stroke="#548f57" cx="1179.81" cy="-228.78" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#548f57" stroke="#548f57" points="1357.94,-96.391 1368.46,-99.478 1362.89,-95.7057 1367.84,-95.0204 1367.84,-95.0204 1367.84,-95.0204 1362.89,-95.7057 1367.22,-90.5629 1357.94,-96.391 1357.94,-96.391"/>
|
||||
<path fill="none" stroke="#f962c0" d="M1180.37,-224.669C1183.53,-204.666 1190.88,-177.326 1208,-160 1248.07,-119.437 1313.54,-103.038 1357.66,-96.4286"/>
|
||||
<ellipse fill="none" stroke="#f962c0" cx="1179.81" cy="-228.78" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#f962c0" stroke="#f962c0" points="1357.94,-96.391 1368.46,-99.478 1362.89,-95.7057 1367.84,-95.0204 1367.84,-95.0204 1367.84,-95.0204 1362.89,-95.7057 1367.22,-90.5629 1357.94,-96.391 1357.94,-96.391"/>
|
||||
</g>
|
||||
<!-- Subscription->OfferDay -->
|
||||
<g id="edge84" class="edge"><title>Subscription->OfferDay</title>
|
||||
<path fill="none" stroke="#885f8a" d="M1203.25,-228.397C1213.32,-219.783 1224.91,-209.873 1235.05,-201.201"/>
|
||||
<ellipse fill="none" stroke="#885f8a" cx="1199.87" cy="-231.289" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#885f8a" stroke="#885f8a" points="1235.21,-201.06 1245.74,-197.979 1239.01,-197.81 1242.81,-194.559 1242.81,-194.559 1242.81,-194.559 1239.01,-197.81 1239.89,-191.14 1235.21,-201.06 1235.21,-201.06"/>
|
||||
<path fill="none" stroke="#228885" d="M1203.25,-228.397C1213.32,-219.783 1224.91,-209.873 1235.05,-201.201"/>
|
||||
<ellipse fill="none" stroke="#228885" cx="1199.87" cy="-231.289" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#228885" stroke="#228885" points="1235.21,-201.06 1245.74,-197.979 1239.01,-197.81 1242.81,-194.559 1242.81,-194.559 1242.81,-194.559 1239.01,-197.81 1239.89,-191.14 1235.21,-201.06 1235.21,-201.06"/>
|
||||
</g>
|
||||
<!-- Training->TrainingImage -->
|
||||
<g id="edge85" class="edge"><title>Training->TrainingImage</title>
|
||||
<path fill="none" stroke="#906a44" d="M1892.63,-534.527C1922.82,-515.698 1969.53,-486.577 2000.67,-467.161"/>
|
||||
<ellipse fill="none" stroke="#906a44" cx="1888.97" cy="-536.808" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#906a44" stroke="#906a44" cx="2004.45" cy="-464.805" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#9b4dc2" d="M1892.63,-534.527C1922.82,-515.698 1969.53,-486.577 2000.67,-467.161"/>
|
||||
<ellipse fill="none" stroke="#9b4dc2" cx="1888.97" cy="-536.808" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#9b4dc2" stroke="#9b4dc2" cx="2004.45" cy="-464.805" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Training->TrainingsPricing -->
|
||||
<g id="edge90" class="edge"><title>Training->TrainingsPricing</title>
|
||||
<path fill="none" stroke="#658e60" d="M1824.04,-539.025C1811.54,-533.533 1798.08,-526.487 1787,-518 1770.47,-505.332 1772.58,-495.82 1757,-482 1751.48,-477.107 1745.22,-472.411 1738.97,-468.135"/>
|
||||
<ellipse fill="none" stroke="#658e60" cx="1827.99" cy="-540.688" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#658e60" stroke="#658e60" points="1738.87,-468.072 1732.98,-458.824 1734.69,-465.329 1730.51,-462.586 1730.51,-462.586 1730.51,-462.586 1734.69,-465.329 1728.04,-466.348 1738.87,-468.072 1738.87,-468.072"/>
|
||||
<path fill="none" stroke="#c6a8a3" d="M1824.04,-539.025C1811.54,-533.533 1798.08,-526.487 1787,-518 1770.47,-505.332 1772.58,-495.82 1757,-482 1751.48,-477.107 1745.22,-472.411 1738.97,-468.135"/>
|
||||
<ellipse fill="none" stroke="#c6a8a3" cx="1827.99" cy="-540.688" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#c6a8a3" stroke="#c6a8a3" points="1738.87,-468.072 1732.98,-458.824 1734.69,-465.329 1730.51,-462.586 1730.51,-462.586 1730.51,-462.586 1734.69,-465.329 1728.04,-466.348 1738.87,-468.072 1738.87,-468.072"/>
|
||||
</g>
|
||||
<!-- Training->Plan -->
|
||||
<g id="edge92" class="edge"><title>Training->Plan</title>
|
||||
<path fill="none" stroke="#8fe863" d="M1859.3,-525.685C1853.72,-484.505 1843.21,-406.991 1837.66,-365.998"/>
|
||||
<polygon fill="#8fe863" stroke="#8fe863" points="1859.33,-525.94 1856.22,-536.454 1860,-530.895 1860.68,-535.849 1860.68,-535.849 1860.68,-535.849 1860,-530.895 1865.14,-535.245 1859.33,-525.94 1859.33,-525.94"/>
|
||||
<polygon fill="#8fe863" stroke="#8fe863" points="1837.64,-365.845 1840.75,-355.331 1836.97,-360.89 1836.29,-355.935 1836.29,-355.935 1836.29,-355.935 1836.97,-360.89 1831.84,-356.54 1837.64,-365.845 1837.64,-365.845"/>
|
||||
<path fill="none" stroke="#dd0066" d="M1859.3,-525.685C1853.72,-484.505 1843.21,-406.991 1837.66,-365.998"/>
|
||||
<polygon fill="#dd0066" stroke="#dd0066" points="1859.33,-525.94 1856.22,-536.454 1860,-530.895 1860.68,-535.849 1860.68,-535.849 1860.68,-535.849 1860,-530.895 1865.14,-535.245 1859.33,-525.94 1859.33,-525.94"/>
|
||||
<polygon fill="#dd0066" stroke="#dd0066" points="1837.64,-365.845 1840.75,-355.331 1836.97,-360.89 1836.29,-355.935 1836.29,-355.935 1836.29,-355.935 1836.97,-360.89 1831.84,-356.54 1837.64,-365.845 1837.64,-365.845"/>
|
||||
</g>
|
||||
<!-- Training->Credit -->
|
||||
<g id="edge91" class="edge"><title>Training->Credit</title>
|
||||
<path fill="none" stroke="#7008ed" d="M1853.77,-528.166C1841.76,-499.426 1817.97,-452.871 1782,-428 1658.17,-342.371 1582.45,-429.394 1451,-356 1421.91,-339.757 1411.46,-332.901 1399,-302 1395.51,-293.343 1398.1,-284.073 1402.68,-275.896"/>
|
||||
<ellipse fill="none" stroke="#7008ed" cx="1855.34" cy="-532.059" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#7008ed" stroke="#7008ed" points="1402.69,-275.868 1411.97,-270.017 1405.46,-271.7 1408.22,-267.532 1408.22,-267.532 1408.22,-267.532 1405.46,-271.7 1404.47,-265.046 1402.69,-275.868 1402.69,-275.868"/>
|
||||
<path fill="none" stroke="#60713b" d="M1853.77,-528.166C1841.76,-499.426 1817.97,-452.871 1782,-428 1658.17,-342.371 1582.45,-429.394 1451,-356 1421.91,-339.757 1411.46,-332.901 1399,-302 1395.51,-293.343 1398.1,-284.073 1402.68,-275.896"/>
|
||||
<ellipse fill="none" stroke="#60713b" cx="1855.34" cy="-532.059" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#60713b" stroke="#60713b" points="1402.69,-275.868 1411.97,-270.017 1405.46,-271.7 1408.22,-267.532 1408.22,-267.532 1408.22,-267.532 1405.46,-271.7 1404.47,-265.046 1402.69,-275.868 1402.69,-275.868"/>
|
||||
</g>
|
||||
<!-- Training->Reservation -->
|
||||
<g id="edge88" class="edge"><title>Training->Reservation</title>
|
||||
<path fill="none" stroke="#3bf1eb" d="M1908.32,-544.643C1945.39,-537.732 1999.15,-527.539 2046,-518 2157.39,-495.321 2192.49,-510.987 2296,-464 2357.03,-436.296 2357.96,-405.714 2417,-374 2432.15,-365.862 2449.59,-358.903 2465.47,-353.385"/>
|
||||
<ellipse fill="none" stroke="#3bf1eb" cx="1904.14" cy="-545.421" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#3bf1eb" stroke="#3bf1eb" points="2465.64,-353.327 2476.55,-354.402 2470.38,-351.732 2475.11,-350.137 2475.11,-350.137 2475.11,-350.137 2470.38,-351.732 2473.68,-345.872 2465.64,-353.327 2465.64,-353.327"/>
|
||||
<path fill="none" stroke="#ebc1cd" d="M1908.32,-544.643C1945.39,-537.732 1999.15,-527.539 2046,-518 2157.39,-495.321 2192.49,-510.987 2296,-464 2357.03,-436.296 2357.96,-405.714 2417,-374 2432.15,-365.862 2449.59,-358.903 2465.47,-353.385"/>
|
||||
<ellipse fill="none" stroke="#ebc1cd" cx="1904.14" cy="-545.421" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#ebc1cd" stroke="#ebc1cd" points="2465.64,-353.327 2476.55,-354.402 2470.38,-351.732 2475.11,-350.137 2475.11,-350.137 2475.11,-350.137 2470.38,-351.732 2473.68,-345.872 2465.64,-353.327 2465.64,-353.327"/>
|
||||
</g>
|
||||
<!-- Training->UserTraining -->
|
||||
<g id="edge89" class="edge"><title>Training->UserTraining</title>
|
||||
<path fill="none" stroke="#3b526f" d="M1822.55,-540.535C1759.16,-521.001 1636.6,-483.238 1568.2,-462.16"/>
|
||||
<ellipse fill="none" stroke="#3b526f" cx="1826.5" cy="-541.754" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#3b526f" stroke="#3b526f" points="1568.07,-462.12 1559.84,-454.875 1563.29,-460.648 1558.51,-459.176 1558.51,-459.176 1558.51,-459.176 1563.29,-460.648 1557.19,-463.476 1568.07,-462.12 1568.07,-462.12"/>
|
||||
<path fill="none" stroke="#cfdecc" d="M1822.55,-540.535C1759.16,-521.001 1636.6,-483.238 1568.2,-462.16"/>
|
||||
<ellipse fill="none" stroke="#cfdecc" cx="1826.5" cy="-541.754" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#cfdecc" stroke="#cfdecc" points="1568.07,-462.12 1559.84,-454.875 1563.29,-460.648 1558.51,-459.176 1558.51,-459.176 1558.51,-459.176 1563.29,-460.648 1557.19,-463.476 1568.07,-462.12 1568.07,-462.12"/>
|
||||
</g>
|
||||
<!-- Training->TrainingsAvailability -->
|
||||
<g id="edge87" class="edge"><title>Training->TrainingsAvailability</title>
|
||||
<path fill="none" stroke="#c1eafa" d="M1903.19,-540.395C1963.49,-521.484 2077.55,-485.715 2145.67,-464.351"/>
|
||||
<ellipse fill="none" stroke="#c1eafa" cx="1899.23" cy="-541.639" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#c1eafa" stroke="#c1eafa" points="2145.84,-464.3 2156.72,-465.601 2150.61,-462.804 2155.38,-461.308 2155.38,-461.308 2155.38,-461.308 2150.61,-462.804 2154.03,-457.014 2145.84,-464.3 2145.84,-464.3"/>
|
||||
<path fill="none" stroke="#ac369f" d="M1903.19,-540.395C1963.49,-521.484 2077.55,-485.715 2145.67,-464.351"/>
|
||||
<ellipse fill="none" stroke="#ac369f" cx="1899.23" cy="-541.639" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#ac369f" stroke="#ac369f" points="2145.84,-464.3 2156.72,-465.601 2150.61,-462.804 2155.38,-461.308 2155.38,-461.308 2155.38,-461.308 2150.61,-462.804 2154.03,-457.014 2145.84,-464.3 2145.84,-464.3"/>
|
||||
</g>
|
||||
<!-- Training->Machine -->
|
||||
<g id="edge86" class="edge"><title>Training->Machine</title>
|
||||
<path fill="none" stroke="#49d7f2" d="M1874.42,-526.676C1881.47,-510.445 1890.47,-489.7 1897.52,-473.447"/>
|
||||
<polygon fill="#49d7f2" stroke="#49d7f2" points="1874.37,-526.796 1866.26,-534.178 1872.38,-531.383 1870.39,-535.969 1870.39,-535.969 1870.39,-535.969 1872.38,-531.383 1874.52,-537.761 1874.37,-526.796 1874.37,-526.796"/>
|
||||
<polygon fill="#49d7f2" stroke="#49d7f2" points="1897.65,-473.162 1905.76,-465.78 1899.64,-468.575 1901.63,-463.988 1901.63,-463.988 1901.63,-463.988 1899.64,-468.575 1897.5,-462.197 1897.65,-473.162 1897.65,-473.162"/>
|
||||
<path fill="none" stroke="#c378c8" d="M1874.42,-526.676C1881.47,-510.445 1890.47,-489.7 1897.52,-473.447"/>
|
||||
<polygon fill="#c378c8" stroke="#c378c8" points="1874.37,-526.796 1866.26,-534.178 1872.38,-531.383 1870.39,-535.969 1870.39,-535.969 1870.39,-535.969 1872.38,-531.383 1874.52,-537.761 1874.37,-526.796 1874.37,-526.796"/>
|
||||
<polygon fill="#c378c8" stroke="#c378c8" points="1897.65,-473.162 1905.76,-465.78 1899.64,-468.575 1901.63,-463.988 1901.63,-463.988 1901.63,-463.988 1899.64,-468.575 1897.5,-462.197 1897.65,-473.162 1897.65,-473.162"/>
|
||||
</g>
|
||||
<!-- ProjectStep->ProjectStepImage -->
|
||||
<g id="edge93" class="edge"><title>ProjectStep->ProjectStepImage</title>
|
||||
<path fill="none" stroke="#d7b035" d="M529,-419.795C529,-403.123 529,-381.335 529,-364.586"/>
|
||||
<ellipse fill="none" stroke="#d7b035" cx="529" cy="-423.969" rx="4" ry="4"/>
|
||||
<ellipse fill="#d7b035" stroke="#d7b035" cx="529" cy="-360.341" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#bb9df6" d="M529,-419.795C529,-403.735 529,-382.927 529,-366.45"/>
|
||||
<ellipse fill="none" stroke="#bb9df6" cx="529" cy="-423.969" rx="4" ry="4"/>
|
||||
<polygon fill="#bb9df6" stroke="#bb9df6" points="529,-366.341 533.5,-356.341 529,-361.341 529,-356.341 529,-356.341 529,-356.341 529,-361.341 524.5,-356.341 529,-366.341 529,-366.341"/>
|
||||
</g>
|
||||
<!-- Reservation->Invoice -->
|
||||
<g id="edge96" class="edge"><title>Reservation->Invoice</title>
|
||||
<path fill="none" stroke="#ce1d45" d="M2468.49,-323.097C2390.59,-299.959 2226.33,-254.018 2084,-233 1950.75,-213.322 1596.98,-260.995 1479,-196 1462.35,-186.83 1434.55,-143.629 1417.88,-115.871"/>
|
||||
<ellipse fill="none" stroke="#ce1d45" cx="2472.37" cy="-324.255" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#ce1d45" stroke="#ce1d45" cx="1415.73" cy="-112.272" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#79aa8c" d="M2468.49,-323.097C2390.59,-299.959 2226.33,-254.018 2084,-233 1950.75,-213.322 1596.98,-260.995 1479,-196 1462.35,-186.83 1434.55,-143.629 1417.88,-115.871"/>
|
||||
<ellipse fill="none" stroke="#79aa8c" cx="2472.37" cy="-324.255" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#79aa8c" stroke="#79aa8c" cx="1415.73" cy="-112.272" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Reservation->Slot -->
|
||||
<g id="edge94" class="edge"><title>Reservation->Slot</title>
|
||||
<path fill="none" stroke="#4264e8" d="M2525.99,-312.728C2531.41,-301.764 2537.81,-288.804 2543.31,-277.678"/>
|
||||
<ellipse fill="none" stroke="#4264e8" cx="2524.07" cy="-316.621" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#4264e8" stroke="#4264e8" points="2543.43,-277.434 2551.9,-270.463 2545.65,-272.952 2547.86,-268.469 2547.86,-268.469 2547.86,-268.469 2545.65,-272.952 2543.83,-266.476 2543.43,-277.434 2543.43,-277.434"/>
|
||||
<path fill="none" stroke="#ee8911" d="M2525.99,-312.728C2531.41,-301.764 2537.81,-288.804 2543.31,-277.678"/>
|
||||
<ellipse fill="none" stroke="#ee8911" cx="2524.07" cy="-316.621" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#ee8911" stroke="#ee8911" points="2543.43,-277.434 2551.9,-270.463 2545.65,-272.952 2547.86,-268.469 2547.86,-268.469 2547.86,-268.469 2545.65,-272.952 2543.83,-266.476 2543.43,-277.434 2543.43,-277.434"/>
|
||||
</g>
|
||||
<!-- Ticket -->
|
||||
<g id="node89" class="node"><title>Ticket</title>
|
||||
@ -988,21 +988,21 @@
|
||||
</g>
|
||||
<!-- Reservation->Ticket -->
|
||||
<g id="edge95" class="edge"><title>Reservation->Ticket</title>
|
||||
<path fill="none" stroke="#111459" d="M2552.31,-319.678C2586.37,-304.282 2635.66,-281.992 2668.26,-267.256"/>
|
||||
<ellipse fill="none" stroke="#111459" cx="2548.27" cy="-321.506" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#111459" stroke="#111459" points="2668.28,-267.247 2679.24,-267.228 2672.83,-265.187 2677.39,-263.127 2677.39,-263.127 2677.39,-263.127 2672.83,-265.187 2675.54,-259.027 2668.28,-267.247 2668.28,-267.247"/>
|
||||
<path fill="none" stroke="#16fc8d" d="M2552.31,-319.678C2586.37,-304.282 2635.66,-281.992 2668.26,-267.256"/>
|
||||
<ellipse fill="none" stroke="#16fc8d" cx="2548.27" cy="-321.506" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#16fc8d" stroke="#16fc8d" points="2668.28,-267.247 2679.24,-267.228 2672.83,-265.187 2677.39,-263.127 2677.39,-263.127 2677.39,-263.127 2672.83,-265.187 2675.54,-259.027 2668.28,-267.247 2668.28,-267.247"/>
|
||||
</g>
|
||||
<!-- StatisticIndex->StatisticType -->
|
||||
<g id="edge97" class="edge"><title>StatisticIndex->StatisticType</title>
|
||||
<path fill="none" stroke="#fa5527" d="M3333.23,-580.314C3333.88,-590.527 3333.92,-602.332 3333.35,-612.734"/>
|
||||
<ellipse fill="none" stroke="#fa5527" cx="3332.88" cy="-576.161" rx="4" ry="4"/>
|
||||
<polygon fill="#fa5527" stroke="#fa5527" points="3333.34,-612.83 3328.06,-622.442 3332.94,-617.815 3332.55,-622.799 3332.55,-622.799 3332.55,-622.799 3332.94,-617.815 3337.03,-623.156 3333.34,-612.83 3333.34,-612.83"/>
|
||||
<path fill="none" stroke="#e3a4e8" d="M3333.23,-580.314C3333.88,-590.527 3333.92,-602.332 3333.35,-612.734"/>
|
||||
<ellipse fill="none" stroke="#e3a4e8" cx="3332.88" cy="-576.161" rx="4" ry="4"/>
|
||||
<polygon fill="#e3a4e8" stroke="#e3a4e8" points="3333.34,-612.83 3328.06,-622.442 3332.94,-617.815 3332.55,-622.799 3332.55,-622.799 3332.55,-622.799 3332.94,-617.815 3337.03,-623.156 3333.34,-612.83 3333.34,-612.83"/>
|
||||
</g>
|
||||
<!-- StatisticIndex->StatisticGraph -->
|
||||
<g id="edge99" class="edge"><title>StatisticIndex->StatisticGraph</title>
|
||||
<path fill="none" stroke="#091444" d="M3299.72,-531.734C3276.03,-513.271 3241.91,-486.676 3218.23,-468.225"/>
|
||||
<ellipse fill="none" stroke="#091444" cx="3303.19" cy="-534.442" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#091444" stroke="#091444" cx="3215" cy="-465.71" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#ab8e67" d="M3299.72,-531.734C3276.03,-513.271 3241.91,-486.676 3218.23,-468.225"/>
|
||||
<ellipse fill="none" stroke="#ab8e67" cx="3303.19" cy="-534.442" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#ab8e67" stroke="#ab8e67" cx="3215" cy="-465.71" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- StatisticField -->
|
||||
<g id="node60" class="node"><title>StatisticField</title>
|
||||
@ -1011,27 +1011,27 @@
|
||||
</g>
|
||||
<!-- StatisticIndex->StatisticField -->
|
||||
<g id="edge98" class="edge"><title>StatisticIndex->StatisticField</title>
|
||||
<path fill="none" stroke="#febc7d" d="M3321.15,-527.743C3319.99,-511.577 3319.95,-490.617 3321.02,-474.103"/>
|
||||
<ellipse fill="none" stroke="#febc7d" cx="3321.53" cy="-531.985" rx="4" ry="4"/>
|
||||
<polygon fill="#febc7d" stroke="#febc7d" points="3321.04,-473.952 3326.37,-464.372 3321.46,-468.97 3321.89,-463.988 3321.89,-463.988 3321.89,-463.988 3321.46,-468.97 3317.41,-463.605 3321.04,-473.952 3321.04,-473.952"/>
|
||||
<path fill="none" stroke="#34cc74" d="M3321.15,-527.743C3319.99,-511.577 3319.95,-490.617 3321.02,-474.103"/>
|
||||
<ellipse fill="none" stroke="#34cc74" cx="3321.53" cy="-531.985" rx="4" ry="4"/>
|
||||
<polygon fill="#34cc74" stroke="#34cc74" points="3321.04,-473.952 3326.37,-464.372 3321.46,-468.97 3321.89,-463.988 3321.89,-463.988 3321.89,-463.988 3321.46,-468.97 3317.41,-463.605 3321.04,-473.952 3321.04,-473.952"/>
|
||||
</g>
|
||||
<!-- StatisticField->StatisticIndex -->
|
||||
<g id="edge100" class="edge"><title>StatisticField->StatisticIndex</title>
|
||||
<path fill="none" stroke="#695094" d="M3332.85,-472.236C3334.05,-489.013 3334.05,-510.962 3332.85,-527.743"/>
|
||||
<ellipse fill="none" stroke="#695094" cx="3332.47" cy="-467.973" rx="4" ry="4"/>
|
||||
<ellipse fill="#695094" stroke="#695094" cx="3332.47" cy="-531.985" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#7b38bf" d="M3332.85,-472.236C3334.05,-489.013 3334.05,-510.962 3332.85,-527.743"/>
|
||||
<ellipse fill="none" stroke="#7b38bf" cx="3332.47" cy="-467.973" rx="4" ry="4"/>
|
||||
<ellipse fill="#7b38bf" stroke="#7b38bf" cx="3332.47" cy="-531.985" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- WalletTransaction->Invoice -->
|
||||
<g id="edge101" class="edge"><title>WalletTransaction->Invoice</title>
|
||||
<path fill="none" stroke="#d7e38a" d="M363.241,-366.13C370.145,-347.123 378,-320.094 378,-295.5 378,-295.5 378,-295.5 378,-177 378,-127.03 1161.17,-99.4935 1359.02,-93.3342"/>
|
||||
<ellipse fill="none" stroke="#d7e38a" cx="361.777" cy="-370.011" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#d7e38a" stroke="#d7e38a" cx="1363.18" cy="-93.2056" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#1ec1ce" d="M363.241,-366.13C370.145,-347.123 378,-320.094 378,-295.5 378,-295.5 378,-295.5 378,-177 378,-127.03 1161.17,-99.4935 1359.02,-93.3342"/>
|
||||
<ellipse fill="none" stroke="#1ec1ce" cx="361.777" cy="-370.011" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#1ec1ce" stroke="#1ec1ce" cx="1363.18" cy="-93.2056" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- EventPriceCategory->Ticket -->
|
||||
<g id="edge102" class="edge"><title>EventPriceCategory->Ticket</title>
|
||||
<path fill="none" stroke="#76d860" d="M2818.29,-317.029C2792.56,-302.644 2758.18,-283.414 2733.48,-269.603"/>
|
||||
<ellipse fill="none" stroke="#76d860" cx="2821.92" cy="-319.06" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#76d860" stroke="#76d860" points="2733.25,-269.477 2726.72,-260.669 2728.89,-267.037 2724.53,-264.596 2724.53,-264.596 2724.53,-264.596 2728.89,-267.037 2722.33,-268.524 2733.25,-269.477 2733.25,-269.477"/>
|
||||
<path fill="none" stroke="#b85669" d="M2818.29,-317.029C2792.56,-302.644 2758.18,-283.414 2733.48,-269.603"/>
|
||||
<ellipse fill="none" stroke="#b85669" cx="2821.92" cy="-319.06" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b85669" stroke="#b85669" points="2733.25,-269.477 2726.72,-260.669 2728.89,-267.037 2724.53,-264.596 2724.53,-264.596 2724.53,-264.596 2728.89,-267.037 2722.33,-268.524 2733.25,-269.477 2733.25,-269.477"/>
|
||||
</g>
|
||||
<!-- Avoir -->
|
||||
<g id="node69" class="node"><title>Avoir</title>
|
||||
@ -1040,15 +1040,15 @@
|
||||
</g>
|
||||
<!-- Avoir->InvoiceItem -->
|
||||
<g id="edge103" class="edge"><title>Avoir->InvoiceItem</title>
|
||||
<path fill="none" stroke="#8fa511" d="M1604.51,-152.431C1593.33,-123.46 1574.81,-75.4807 1563.28,-45.6379"/>
|
||||
<ellipse fill="none" stroke="#8fa511" cx="1606.03" cy="-156.36" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#8fa511" stroke="#8fa511" points="1563.27,-45.5951 1563.86,-34.6454 1561.47,-40.9306 1559.67,-36.2662 1559.67,-36.2662 1559.67,-36.2662 1561.47,-40.9306 1555.47,-37.887 1563.27,-45.5951 1563.27,-45.5951"/>
|
||||
<path fill="none" stroke="#7e418b" d="M1604.51,-152.431C1593.33,-123.46 1574.81,-75.4807 1563.28,-45.6379"/>
|
||||
<ellipse fill="none" stroke="#7e418b" cx="1606.03" cy="-156.36" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#7e418b" stroke="#7e418b" points="1563.27,-45.5951 1563.86,-34.6454 1561.47,-40.9306 1559.67,-36.2662 1559.67,-36.2662 1559.67,-36.2662 1561.47,-40.9306 1555.47,-37.887 1563.27,-45.5951 1563.27,-45.5951"/>
|
||||
</g>
|
||||
<!-- Avoir->Invoice -->
|
||||
<g id="edge104" class="edge"><title>Avoir->Invoice</title>
|
||||
<path fill="none" stroke="#b6e2a0" d="M1582.65,-162.976C1559.41,-152.706 1526.89,-138.596 1498,-127 1479.22,-119.462 1458.12,-111.556 1440.68,-105.169"/>
|
||||
<ellipse fill="none" stroke="#b6e2a0" cx="1586.5" cy="-164.682" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#b6e2a0" stroke="#b6e2a0" cx="1436.7" cy="-103.718" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#234dd8" d="M1582.65,-162.976C1559.41,-152.706 1526.89,-138.596 1498,-127 1479.22,-119.462 1458.12,-111.556 1440.68,-105.169"/>
|
||||
<ellipse fill="none" stroke="#234dd8" cx="1586.5" cy="-164.682" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#234dd8" stroke="#234dd8" cx="1436.7" cy="-103.718" rx="4.00001" ry="4.00001"/>
|
||||
<text text-anchor="middle" x="1548" y="-130.8" font-family="Times,serif" font-size="14.00">avoir</text>
|
||||
</g>
|
||||
<!-- NotificationType -->
|
||||
@ -1068,9 +1068,9 @@
|
||||
</g>
|
||||
<!-- Coupon->Invoice -->
|
||||
<g id="edge105" class="edge"><title>Coupon->Invoice</title>
|
||||
<path fill="none" stroke="#3887e2" d="M1505.92,-154.906C1496.76,-145.589 1485.41,-135.058 1474,-127 1463.68,-119.715 1451.62,-113.105 1440.45,-107.641"/>
|
||||
<ellipse fill="none" stroke="#3887e2" cx="1508.83" cy="-157.934" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#3887e2" stroke="#3887e2" points="1440.38,-107.605 1433.26,-99.2625 1435.86,-105.468 1431.34,-103.331 1431.34,-103.331 1431.34,-103.331 1435.86,-105.468 1429.41,-107.399 1440.38,-107.605 1440.38,-107.605"/>
|
||||
<path fill="none" stroke="#63dd25" d="M1505.92,-154.906C1496.76,-145.589 1485.41,-135.058 1474,-127 1463.68,-119.715 1451.62,-113.105 1440.45,-107.641"/>
|
||||
<ellipse fill="none" stroke="#63dd25" cx="1508.83" cy="-157.934" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#63dd25" stroke="#63dd25" points="1440.38,-107.605 1433.26,-99.2625 1435.86,-105.468 1431.34,-103.331 1431.34,-103.331 1431.34,-103.331 1435.86,-105.468 1429.41,-107.399 1440.38,-107.605 1440.38,-107.605"/>
|
||||
</g>
|
||||
<!-- Category -->
|
||||
<g id="node79" class="node"><title>Category</title>
|
||||
@ -1079,9 +1079,9 @@
|
||||
</g>
|
||||
<!-- Category->Event -->
|
||||
<g id="edge106" class="edge"><title>Category->Event</title>
|
||||
<path fill="none" stroke="#488a4c" d="M2777.62,-614.694C2776.66,-604.512 2775.55,-592.747 2774.58,-582.367"/>
|
||||
<ellipse fill="none" stroke="#488a4c" cx="2778.01" cy="-618.817" rx="4" ry="4"/>
|
||||
<polygon fill="#488a4c" stroke="#488a4c" points="2774.55,-582.131 2778.1,-571.754 2774.09,-577.153 2773.62,-572.175 2773.62,-572.175 2773.62,-572.175 2774.09,-577.153 2769.14,-572.597 2774.55,-582.131 2774.55,-582.131"/>
|
||||
<path fill="none" stroke="#595385" d="M2777.62,-614.694C2776.66,-604.512 2775.55,-592.747 2774.58,-582.367"/>
|
||||
<ellipse fill="none" stroke="#595385" cx="2778.01" cy="-618.817" rx="4" ry="4"/>
|
||||
<polygon fill="#595385" stroke="#595385" points="2774.55,-582.131 2778.1,-571.754 2774.09,-577.153 2773.62,-572.175 2773.62,-572.175 2773.62,-572.175 2774.09,-577.153 2769.14,-572.597 2774.55,-582.131 2774.55,-582.131"/>
|
||||
</g>
|
||||
<!-- MachineImage -->
|
||||
<g id="node81" class="node"><title>MachineImage</title>
|
||||
@ -1095,45 +1095,45 @@
|
||||
</g>
|
||||
<!-- Machine->Price -->
|
||||
<g id="edge110" class="edge"><title>Machine->Price</title>
|
||||
<path fill="none" stroke="#fe3d0f" d="M1946.69,-430.002C1976.97,-415.792 2017.68,-391.335 2038,-356 2051.42,-332.66 2051.95,-301.353 2050.04,-279.205"/>
|
||||
<ellipse fill="none" stroke="#fe3d0f" cx="1942.88" cy="-431.738" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#fe3d0f" stroke="#fe3d0f" points="2050.02,-279.085 2053.42,-268.658 2049.49,-274.114 2048.95,-269.143 2048.95,-269.143 2048.95,-269.143 2049.49,-274.114 2044.47,-269.628 2050.02,-279.085 2050.02,-279.085"/>
|
||||
<path fill="none" stroke="#9a24f7" d="M1946.69,-430.002C1976.97,-415.792 2017.68,-391.335 2038,-356 2051.42,-332.66 2051.95,-301.353 2050.04,-279.205"/>
|
||||
<ellipse fill="none" stroke="#9a24f7" cx="1942.88" cy="-431.738" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#9a24f7" stroke="#9a24f7" points="2050.02,-279.085 2053.42,-268.658 2049.49,-274.114 2048.95,-269.143 2048.95,-269.143 2048.95,-269.143 2049.49,-274.114 2044.47,-269.628 2050.02,-279.085 2050.02,-279.085"/>
|
||||
</g>
|
||||
<!-- Machine->Plan -->
|
||||
<g id="edge113" class="edge"><title>Machine->Plan</title>
|
||||
<path fill="none" stroke="#b0edb2" d="M1887.07,-421.317C1883.92,-417.614 1880.8,-413.764 1878,-410 1867.1,-395.35 1856.27,-377.931 1848.09,-364.013"/>
|
||||
<polygon fill="#b0edb2" stroke="#b0edb2" points="1887.3,-421.585 1890.51,-432.07 1890.6,-425.344 1893.89,-429.103 1893.89,-429.103 1893.89,-429.103 1890.6,-425.344 1897.28,-426.136 1887.3,-421.585 1887.3,-421.585"/>
|
||||
<polygon fill="#b0edb2" stroke="#b0edb2" points="1847.89,-363.667 1846.77,-352.759 1845.38,-359.341 1842.88,-355.014 1842.88,-355.014 1842.88,-355.014 1845.38,-359.341 1838.98,-357.27 1847.89,-363.667 1847.89,-363.667"/>
|
||||
<path fill="none" stroke="#b1de48" d="M1887.07,-421.317C1883.92,-417.614 1880.8,-413.764 1878,-410 1867.1,-395.35 1856.27,-377.931 1848.09,-364.013"/>
|
||||
<polygon fill="#b1de48" stroke="#b1de48" points="1887.3,-421.585 1890.51,-432.07 1890.6,-425.344 1893.89,-429.103 1893.89,-429.103 1893.89,-429.103 1890.6,-425.344 1897.28,-426.136 1887.3,-421.585 1887.3,-421.585"/>
|
||||
<polygon fill="#b1de48" stroke="#b1de48" points="1847.89,-363.667 1846.77,-352.759 1845.38,-359.341 1842.88,-355.014 1842.88,-355.014 1842.88,-355.014 1845.38,-359.341 1838.98,-357.27 1847.89,-363.667 1847.89,-363.667"/>
|
||||
</g>
|
||||
<!-- Machine->MachineFile -->
|
||||
<g id="edge108" class="edge"><title>Machine->MachineFile</title>
|
||||
<path fill="none" stroke="#541673" d="M1923.19,-421.504C1933.33,-404.701 1946.98,-382.092 1957.43,-364.791"/>
|
||||
<ellipse fill="none" stroke="#541673" cx="1921.07" cy="-425.013" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#541673" stroke="#541673" points="1957.69,-364.357 1966.71,-358.122 1960.27,-360.076 1962.86,-355.796 1962.86,-355.796 1962.86,-355.796 1960.27,-360.076 1959.01,-353.47 1957.69,-364.357 1957.69,-364.357"/>
|
||||
<path fill="none" stroke="#06a394" d="M1923.19,-421.504C1933.33,-404.701 1946.98,-382.092 1957.43,-364.791"/>
|
||||
<ellipse fill="none" stroke="#06a394" cx="1921.07" cy="-425.013" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#06a394" stroke="#06a394" points="1957.69,-364.357 1966.71,-358.122 1960.27,-360.076 1962.86,-355.796 1962.86,-355.796 1962.86,-355.796 1960.27,-360.076 1959.01,-353.47 1957.69,-364.357 1957.69,-364.357"/>
|
||||
</g>
|
||||
<!-- Machine->Credit -->
|
||||
<g id="edge112" class="edge"><title>Machine->Credit</title>
|
||||
<path fill="none" stroke="#b195b7" d="M1909,-419.576C1908.43,-379.537 1904.79,-304.531 1886,-287 1878.35,-279.858 1578.16,-261.256 1465.3,-254.499"/>
|
||||
<ellipse fill="none" stroke="#b195b7" cx="1909.05" cy="-423.788" rx="4" ry="4"/>
|
||||
<polygon fill="#b195b7" stroke="#b195b7" points="1465.28,-254.498 1455.57,-249.409 1460.29,-254.199 1455.3,-253.901 1455.3,-253.901 1455.3,-253.901 1460.29,-254.199 1455.03,-258.393 1465.28,-254.498 1465.28,-254.498"/>
|
||||
<path fill="none" stroke="#f8ae11" d="M1909,-419.576C1908.43,-379.537 1904.79,-304.531 1886,-287 1878.35,-279.858 1578.16,-261.256 1465.3,-254.499"/>
|
||||
<ellipse fill="none" stroke="#f8ae11" cx="1909.05" cy="-423.788" rx="4" ry="4"/>
|
||||
<polygon fill="#f8ae11" stroke="#f8ae11" points="1465.28,-254.498 1455.57,-249.409 1460.29,-254.199 1455.3,-253.901 1455.3,-253.901 1455.3,-253.901 1460.29,-254.199 1455.03,-258.393 1465.28,-254.498 1465.28,-254.498"/>
|
||||
</g>
|
||||
<!-- Machine->Reservation -->
|
||||
<g id="edge111" class="edge"><title>Machine->Reservation</title>
|
||||
<path fill="none" stroke="#7cb185" d="M1947.58,-431.049C1951.74,-429.875 1955.93,-428.824 1960,-428 2060.93,-407.566 2089.04,-424.461 2191,-410 2308.28,-393.366 2336.82,-383.676 2452,-356 2456.15,-355.003 2460.45,-353.924 2464.75,-352.81"/>
|
||||
<ellipse fill="none" stroke="#7cb185" cx="1943.52" cy="-432.276" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#7cb185" stroke="#7cb185" points="2465.07,-352.725 2475.89,-354.521 2469.91,-351.447 2474.74,-350.17 2474.74,-350.17 2474.74,-350.17 2469.91,-351.447 2473.59,-345.819 2465.07,-352.725 2465.07,-352.725"/>
|
||||
<path fill="none" stroke="#36743f" d="M1947.58,-431.049C1951.74,-429.875 1955.93,-428.824 1960,-428 2060.93,-407.566 2089.04,-424.461 2191,-410 2308.28,-393.366 2336.82,-383.676 2452,-356 2456.15,-355.003 2460.45,-353.924 2464.75,-352.81"/>
|
||||
<ellipse fill="none" stroke="#36743f" cx="1943.52" cy="-432.276" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#36743f" stroke="#36743f" points="2465.07,-352.725 2475.89,-354.521 2469.91,-351.447 2474.74,-350.17 2474.74,-350.17 2474.74,-350.17 2469.91,-351.447 2473.59,-345.819 2465.07,-352.725 2465.07,-352.725"/>
|
||||
</g>
|
||||
<!-- Machine->MachinesAvailability -->
|
||||
<g id="edge109" class="edge"><title>Machine->MachinesAvailability</title>
|
||||
<path fill="none" stroke="#efd384" d="M1947.62,-431.225C1951.77,-430.017 1955.95,-428.91 1960,-428 2025.08,-413.379 2043.63,-423.256 2109,-410 2177.05,-396.201 2253.65,-372.94 2303.25,-356.822"/>
|
||||
<ellipse fill="none" stroke="#efd384" cx="1943.56" cy="-432.473" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#efd384" stroke="#efd384" points="2303.29,-356.807 2314.19,-357.975 2308.04,-355.253 2312.8,-353.698 2312.8,-353.698 2312.8,-353.698 2308.04,-355.253 2311.4,-349.421 2303.29,-356.807 2303.29,-356.807"/>
|
||||
<path fill="none" stroke="#151978" d="M1947.62,-431.225C1951.77,-430.017 1955.95,-428.91 1960,-428 2025.08,-413.379 2043.63,-423.256 2109,-410 2177.05,-396.201 2253.65,-372.94 2303.25,-356.822"/>
|
||||
<ellipse fill="none" stroke="#151978" cx="1943.56" cy="-432.473" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#151978" stroke="#151978" points="2303.29,-356.807 2314.19,-357.975 2308.04,-355.253 2312.8,-353.698 2312.8,-353.698 2312.8,-353.698 2308.04,-355.253 2311.4,-349.421 2303.29,-356.807 2303.29,-356.807"/>
|
||||
</g>
|
||||
<!-- Machine->MachineImage -->
|
||||
<g id="edge107" class="edge"><title>Machine->MachineImage</title>
|
||||
<path fill="none" stroke="#88cbfa" d="M1947.83,-431.342C1951.91,-430.121 1956.02,-428.978 1960,-428 2008.53,-416.059 2025.99,-431.721 2071,-410 2094.44,-398.688 2115.9,-378.051 2130.35,-361.931"/>
|
||||
<ellipse fill="none" stroke="#88cbfa" cx="1943.87" cy="-432.575" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#88cbfa" stroke="#88cbfa" cx="2133.09" cy="-358.794" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#43e426" d="M1947.83,-431.342C1951.91,-430.121 1956.02,-428.978 1960,-428 2008.53,-416.059 2025.99,-431.721 2071,-410 2094.44,-398.688 2115.9,-378.051 2130.35,-361.931"/>
|
||||
<ellipse fill="none" stroke="#43e426" cx="1943.87" cy="-432.575" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#43e426" stroke="#43e426" cx="2133.09" cy="-358.794" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Abuse -->
|
||||
<g id="node84" class="node"><title>Abuse</title>
|
||||
@ -1142,21 +1142,21 @@
|
||||
</g>
|
||||
<!-- Profile->UserAvatar -->
|
||||
<g id="edge114" class="edge"><title>Profile->UserAvatar</title>
|
||||
<path fill="none" stroke="#d0c381" d="M199.965,-529.504C210.321,-512.079 224.389,-488.41 234.801,-470.891"/>
|
||||
<ellipse fill="none" stroke="#d0c381" cx="197.887" cy="-532.999" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#d0c381" stroke="#d0c381" cx="236.974" cy="-467.235" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#95af08" d="M199.965,-529.504C210.321,-512.079 224.389,-488.41 234.801,-470.891"/>
|
||||
<ellipse fill="none" stroke="#95af08" cx="197.887" cy="-532.999" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#95af08" stroke="#95af08" cx="236.974" cy="-467.235" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Profile->Address -->
|
||||
<g id="edge115" class="edge"><title>Profile->Address</title>
|
||||
<path fill="none" stroke="#ca746e" d="M150.685,-539.775C119.689,-526.051 76.5874,-501.311 57,-464 40.0533,-431.719 55.2699,-389.222 68.2728,-363.024"/>
|
||||
<ellipse fill="none" stroke="#ca746e" cx="154.605" cy="-541.453" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#ca746e" stroke="#ca746e" cx="70.188" cy="-359.321" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#ab1ecb" d="M150.685,-539.775C119.689,-526.051 76.5874,-501.311 57,-464 40.0533,-431.719 55.2699,-389.222 68.2728,-363.024"/>
|
||||
<ellipse fill="none" stroke="#ab1ecb" cx="154.605" cy="-541.453" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#ab1ecb" stroke="#ab1ecb" cx="70.188" cy="-359.321" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Profile->Organization -->
|
||||
<g id="edge116" class="edge"><title>Profile->Organization</title>
|
||||
<path fill="none" stroke="#123fa9" d="M172.035,-529.504C161.679,-512.079 147.611,-488.41 137.199,-470.891"/>
|
||||
<ellipse fill="none" stroke="#123fa9" cx="174.113" cy="-532.999" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#123fa9" stroke="#123fa9" cx="135.026" cy="-467.235" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#0ad988" d="M172.035,-529.504C161.679,-512.079 147.611,-488.41 137.199,-470.891"/>
|
||||
<ellipse fill="none" stroke="#0ad988" cx="174.113" cy="-532.999" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#0ad988" stroke="#0ad988" cx="135.026" cy="-467.235" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Setting -->
|
||||
<g id="node88" class="node"><title>Setting</title>
|
||||
|
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 89 KiB |
@ -4,29 +4,29 @@
|
||||
<!-- Generated by graphviz version 2.38.0 (20140413.2041)
|
||||
-->
|
||||
<!-- Title: models_diagram Pages: 1 -->
|
||||
<svg width="8820pt" height="3096pt"
|
||||
viewBox="0.00 0.00 8820.00 3096.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 3092)">
|
||||
<svg width="8820pt" height="3111pt"
|
||||
viewBox="0.00 0.00 8820.00 3111.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 3107)">
|
||||
<title>models_diagram</title>
|
||||
<polygon fill="none" stroke="none" points="-4,4 -4,-3092 8816,-3092 8816,4 -4,4"/>
|
||||
<polygon fill="none" stroke="none" points="-4,4 -4,-3107 8816,-3107 8816,4 -4,4"/>
|
||||
<!-- _diagram_info -->
|
||||
<g id="node1" class="node"><title>_diagram_info</title>
|
||||
<text text-anchor="start" x="2692" y="-3029.1" font-family="Times,serif" font-size="13.00">Models diagram</text>
|
||||
<text text-anchor="start" x="2692" y="-3015.1" font-family="Times,serif" font-size="13.00">Date: Sep 15 2016 - 17:48</text>
|
||||
<text text-anchor="start" x="2692" y="-3001.1" font-family="Times,serif" font-size="13.00">Migration version: 20160915105234</text>
|
||||
<text text-anchor="start" x="2692" y="-2987.1" font-family="Times,serif" font-size="13.00">Generated by RailRoady 1.4.0</text>
|
||||
<text text-anchor="start" x="2692" y="-2973.1" font-family="Times,serif" font-size="13.00">http://railroady.prestonlee.com</text>
|
||||
<text text-anchor="start" x="2692" y="-3036.6" font-family="Times,serif" font-size="13.00">Models diagram</text>
|
||||
<text text-anchor="start" x="2692" y="-3022.6" font-family="Times,serif" font-size="13.00">Date: Nov 23 2016 - 10:20</text>
|
||||
<text text-anchor="start" x="2692" y="-3008.6" font-family="Times,serif" font-size="13.00">Migration version: 20160922155555</text>
|
||||
<text text-anchor="start" x="2692" y="-2994.6" font-family="Times,serif" font-size="13.00">Generated by RailRoady 1.4.0</text>
|
||||
<text text-anchor="start" x="2692" y="-2980.6" font-family="Times,serif" font-size="13.00">http://railroady.prestonlee.com</text>
|
||||
</g>
|
||||
<!-- Group -->
|
||||
<g id="node2" class="node"><title>Group</title>
|
||||
<path fill="none" stroke="black" d="M2928,-2951.5C2928,-2951.5 3148,-2951.5 3148,-2951.5 3154,-2951.5 3160,-2957.5 3160,-2963.5 3160,-2963.5 3160,-3045.5 3160,-3045.5 3160,-3051.5 3154,-3057.5 3148,-3057.5 3148,-3057.5 2928,-3057.5 2928,-3057.5 2922,-3057.5 2916,-3051.5 2916,-3045.5 2916,-3045.5 2916,-2963.5 2916,-2963.5 2916,-2957.5 2922,-2951.5 2928,-2951.5"/>
|
||||
<text text-anchor="middle" x="3038" y="-3042.3" font-family="Times,serif" font-size="14.00">Group</text>
|
||||
<polyline fill="none" stroke="black" points="2916,-3034.5 3160,-3034.5 "/>
|
||||
<text text-anchor="start" x="2924" y="-3019.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="2924" y="-3004.3" font-family="Times,serif" font-size="14.00">name :character varying(255)</text>
|
||||
<text text-anchor="start" x="2924" y="-2989.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="2924" y="-2974.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="2924" y="-2959.3" font-family="Times,serif" font-size="14.00">slug :character varying(255)</text>
|
||||
<path fill="none" stroke="black" d="M2928,-2959C2928,-2959 3148,-2959 3148,-2959 3154,-2959 3160,-2965 3160,-2971 3160,-2971 3160,-3053 3160,-3053 3160,-3059 3154,-3065 3148,-3065 3148,-3065 2928,-3065 2928,-3065 2922,-3065 2916,-3059 2916,-3053 2916,-3053 2916,-2971 2916,-2971 2916,-2965 2922,-2959 2928,-2959"/>
|
||||
<text text-anchor="middle" x="3038" y="-3049.8" font-family="Times,serif" font-size="14.00">Group</text>
|
||||
<polyline fill="none" stroke="black" points="2916,-3042 3160,-3042 "/>
|
||||
<text text-anchor="start" x="2924" y="-3026.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="2924" y="-3011.8" font-family="Times,serif" font-size="14.00">name :character varying(255)</text>
|
||||
<text text-anchor="start" x="2924" y="-2996.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="2924" y="-2981.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="2924" y="-2966.8" font-family="Times,serif" font-size="14.00">slug :character varying(255)</text>
|
||||
</g>
|
||||
<!-- Price -->
|
||||
<g id="node4" class="node"><title>Price</title>
|
||||
@ -44,9 +44,9 @@
|
||||
</g>
|
||||
<!-- Group->Price -->
|
||||
<g id="edge4" class="edge"><title>Group->Price</title>
|
||||
<path fill="none" stroke="#dc9f1a" d="M3096.28,-2945.49C3260.23,-2777.61 3723.72,-2269.55 3882,-1741 3899.47,-1682.67 3909.76,-1658.19 3882,-1604 3875.76,-1591.81 3867.12,-1595.23 3857,-1586 3776.46,-1512.56 3741.58,-1500.01 3696,-1401 3647.71,-1296.12 3731.75,-1232.84 3658,-1144 3613.56,-1090.47 3571.28,-1125.95 3510,-1093 3500.34,-1087.81 3490.65,-1081.9 3481.15,-1075.62"/>
|
||||
<ellipse fill="none" stroke="#dc9f1a" cx="3093.38" cy="-2948.46" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#dc9f1a" stroke="#dc9f1a" points="3481.15,-1075.62 3475.39,-1066.29 3477.01,-1072.82 3472.87,-1070.02 3472.87,-1070.02 3472.87,-1070.02 3477.01,-1072.82 3470.35,-1073.75 3481.15,-1075.62 3481.15,-1075.62"/>
|
||||
<path fill="none" stroke="#a07d05" d="M3095.65,-2953.15C3258.95,-2784.64 3723.05,-2272.4 3882,-1741 3899.45,-1682.67 3909.76,-1658.19 3882,-1604 3875.76,-1591.81 3867.12,-1595.23 3857,-1586 3776.46,-1512.56 3741.58,-1500.01 3696,-1401 3647.71,-1296.12 3731.75,-1232.84 3658,-1144 3613.56,-1090.47 3571.28,-1125.95 3510,-1093 3500.34,-1087.81 3490.65,-1081.9 3481.15,-1075.62"/>
|
||||
<ellipse fill="none" stroke="#a07d05" cx="3092.76" cy="-2956.13" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#a07d05" stroke="#a07d05" points="3481.15,-1075.62 3475.39,-1066.29 3477.01,-1072.82 3472.87,-1070.02 3472.87,-1070.02 3472.87,-1070.02 3477.01,-1072.82 3470.35,-1073.75 3481.15,-1075.62 3481.15,-1075.62"/>
|
||||
<text text-anchor="middle" x="3922.5" y="-1808.8" font-family="Times,serif" font-size="14.00">machines_prices</text>
|
||||
</g>
|
||||
<!-- TrainingsPricing -->
|
||||
@ -63,9 +63,9 @@
|
||||
</g>
|
||||
<!-- Group->TrainingsPricing -->
|
||||
<g id="edge3" class="edge"><title>Group->TrainingsPricing</title>
|
||||
<path fill="none" stroke="#39a7de" d="M3053.52,-2943.43C3083.17,-2825.24 3146.86,-2553.77 3169,-2321 3178.19,-2224.33 3233.72,-1956.4 3169,-1884 3145.16,-1857.32 3039.26,-1885.09 3009,-1866 2963.85,-1837.52 2932.87,-1785.23 2913.71,-1742.33"/>
|
||||
<ellipse fill="none" stroke="#39a7de" cx="3052.51" cy="-2947.45" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#39a7de" stroke="#39a7de" points="2913.66,-1742.22 2913.81,-1731.26 2911.67,-1737.64 2909.68,-1733.05 2909.68,-1733.05 2909.68,-1733.05 2911.67,-1737.64 2905.55,-1734.84 2913.66,-1742.22 2913.66,-1742.22"/>
|
||||
<path fill="none" stroke="#e28ecf" d="M3053.41,-2950.71C3083.01,-2831.44 3146.84,-2556.56 3169,-2321 3178.1,-2224.32 3233.72,-1956.4 3169,-1884 3145.16,-1857.32 3039.26,-1885.09 3009,-1866 2963.85,-1837.52 2932.87,-1785.23 2913.71,-1742.33"/>
|
||||
<ellipse fill="none" stroke="#e28ecf" cx="3052.39" cy="-2954.8" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#e28ecf" stroke="#e28ecf" points="2913.66,-1742.22 2913.81,-1731.26 2911.67,-1737.64 2909.68,-1733.05 2909.68,-1733.05 2909.68,-1733.05 2911.67,-1737.64 2905.55,-1734.84 2913.66,-1742.22 2913.66,-1742.22"/>
|
||||
</g>
|
||||
<!-- Plan -->
|
||||
<g id="node34" class="node"><title>Plan</title>
|
||||
@ -90,9 +90,9 @@
|
||||
</g>
|
||||
<!-- Group->Plan -->
|
||||
<g id="edge1" class="edge"><title>Group->Plan</title>
|
||||
<path fill="none" stroke="#aecb6f" d="M3024.54,-2943.18C2998.49,-2824.56 2940.78,-2552.37 2907,-2321 2878.8,-2127.84 2924.48,-2069.27 2863,-1884 2842.6,-1822.51 2833.81,-1804.81 2788,-1759 2777.01,-1748.01 2765.66,-1754.53 2758,-1741 2698.3,-1635.55 2754.92,-1505.14 2818.23,-1408.87"/>
|
||||
<ellipse fill="none" stroke="#aecb6f" cx="3025.42" cy="-2947.2" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#aecb6f" stroke="#aecb6f" points="2818.24,-1408.86 2827.53,-1403.04 2821.01,-1404.7 2823.78,-1400.54 2823.78,-1400.54 2823.78,-1400.54 2821.01,-1404.7 2820.04,-1398.05 2818.24,-1408.86 2818.24,-1408.86"/>
|
||||
<path fill="none" stroke="#a8bdca" d="M3024.76,-2950.91C2998.84,-2831.46 2940.99,-2555.44 2907,-2321 2878.99,-2127.82 2924.48,-2069.27 2863,-1884 2842.6,-1822.51 2833.81,-1804.81 2788,-1759 2777.01,-1748.01 2765.66,-1754.53 2758,-1741 2698.3,-1635.55 2754.92,-1505.14 2818.23,-1408.87"/>
|
||||
<ellipse fill="none" stroke="#a8bdca" cx="3025.64" cy="-2954.98" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#a8bdca" stroke="#a8bdca" points="2818.24,-1408.86 2827.53,-1403.04 2821.01,-1404.7 2823.78,-1400.54 2823.78,-1400.54 2823.78,-1400.54 2821.01,-1404.7 2820.04,-1398.05 2818.24,-1408.86 2818.24,-1408.86"/>
|
||||
</g>
|
||||
<!-- User -->
|
||||
<g id="node41" class="node"><title>User</title>
|
||||
@ -134,9 +134,9 @@
|
||||
</g>
|
||||
<!-- Group->User -->
|
||||
<g id="edge2" class="edge"><title>Group->User</title>
|
||||
<path fill="none" stroke="#736a3f" d="M2953.04,-2947.17C2937.95,-2937.99 2922.2,-2928.91 2907,-2921 2731.43,-2829.68 2520.77,-2744.48 2377.54,-2689.96"/>
|
||||
<ellipse fill="none" stroke="#736a3f" cx="2956.51" cy="-2949.3" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#736a3f" stroke="#736a3f" points="2377.12,-2689.8 2369.37,-2682.04 2372.44,-2688.03 2367.77,-2686.25 2367.77,-2686.25 2367.77,-2686.25 2372.44,-2688.03 2366.17,-2690.46 2377.12,-2689.8 2377.12,-2689.8"/>
|
||||
<path fill="none" stroke="#e96d88" d="M2961.1,-2954.33C2943.73,-2942.62 2925.07,-2930.86 2907,-2921 2732.86,-2825.96 2521.27,-2741.21 2377.43,-2687.81"/>
|
||||
<ellipse fill="none" stroke="#e96d88" cx="2964.64" cy="-2956.73" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#e96d88" stroke="#e96d88" points="2377,-2687.65 2369.18,-2679.96 2372.31,-2685.92 2367.62,-2684.18 2367.62,-2684.18 2367.62,-2684.18 2372.31,-2685.92 2366.06,-2688.4 2377,-2687.65 2377,-2687.65"/>
|
||||
</g>
|
||||
<!-- InvoiceItem -->
|
||||
<g id="node3" class="node"><title>InvoiceItem</title>
|
||||
@ -155,9 +155,9 @@
|
||||
</g>
|
||||
<!-- InvoiceItem->InvoiceItem -->
|
||||
<g id="edge5" class="edge"><title>InvoiceItem->InvoiceItem</title>
|
||||
<path fill="none" stroke="#6cf958" d="M3292.65,-95.1444C3298.87,-92.1865 3302.5,-88.305 3302.5,-83.5 3302.5,-78.695 3298.87,-74.8135 3292.65,-71.8556"/>
|
||||
<ellipse fill="none" stroke="#6cf958" cx="3288.69" cy="-96.6063" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#6cf958" stroke="#6cf958" cx="3288.69" cy="-70.3937" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#3fc02d" d="M3292.65,-95.1444C3298.87,-92.1865 3302.5,-88.305 3302.5,-83.5 3302.5,-78.695 3298.87,-74.8135 3292.65,-71.8556"/>
|
||||
<ellipse fill="none" stroke="#3fc02d" cx="3288.69" cy="-96.6063" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#3fc02d" stroke="#3fc02d" cx="3288.69" cy="-70.3937" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- AvailabilityTag -->
|
||||
<g id="node5" class="node"><title>AvailabilityTag</title>
|
||||
@ -172,8 +172,8 @@
|
||||
</g>
|
||||
<!-- OpenAPI -->
|
||||
<g id="node6" class="node"><title>OpenAPI</title>
|
||||
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="4422,-3022.5 4354,-3022.5 4354,-2986.5 4422,-2986.5 4422,-3022.5"/>
|
||||
<text text-anchor="middle" x="4388" y="-3000.8" font-family="Times,serif" font-size="14.00">OpenAPI</text>
|
||||
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="4422,-3030 4354,-3030 4354,-2994 4422,-2994 4422,-3030"/>
|
||||
<text text-anchor="middle" x="4388" y="-3008.3" font-family="Times,serif" font-size="14.00">OpenAPI</text>
|
||||
</g>
|
||||
<!-- TrainingImage -->
|
||||
<g id="node7" class="node"><title>TrainingImage</title>
|
||||
@ -190,15 +190,15 @@
|
||||
</g>
|
||||
<!-- OpenAPI::Client -->
|
||||
<g id="node8" class="node"><title>OpenAPI::Client</title>
|
||||
<path fill="none" stroke="black" d="M4908,-2944C4908,-2944 5128,-2944 5128,-2944 5134,-2944 5140,-2950 5140,-2956 5140,-2956 5140,-3053 5140,-3053 5140,-3059 5134,-3065 5128,-3065 5128,-3065 4908,-3065 4908,-3065 4902,-3065 4896,-3059 4896,-3053 4896,-3053 4896,-2956 4896,-2956 4896,-2950 4902,-2944 4908,-2944"/>
|
||||
<text text-anchor="middle" x="5018" y="-3049.8" font-family="Times,serif" font-size="14.00">OpenAPI::Client</text>
|
||||
<polyline fill="none" stroke="black" points="4896,-3042 5140,-3042 "/>
|
||||
<text text-anchor="start" x="4904" y="-3026.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="4904" y="-3011.8" font-family="Times,serif" font-size="14.00">name :character varying</text>
|
||||
<text text-anchor="start" x="4904" y="-2996.8" font-family="Times,serif" font-size="14.00">calls_count :integer</text>
|
||||
<text text-anchor="start" x="4904" y="-2981.8" font-family="Times,serif" font-size="14.00">token :character varying</text>
|
||||
<text text-anchor="start" x="4904" y="-2966.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="4904" y="-2951.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M4908,-2951.5C4908,-2951.5 5128,-2951.5 5128,-2951.5 5134,-2951.5 5140,-2957.5 5140,-2963.5 5140,-2963.5 5140,-3060.5 5140,-3060.5 5140,-3066.5 5134,-3072.5 5128,-3072.5 5128,-3072.5 4908,-3072.5 4908,-3072.5 4902,-3072.5 4896,-3066.5 4896,-3060.5 4896,-3060.5 4896,-2963.5 4896,-2963.5 4896,-2957.5 4902,-2951.5 4908,-2951.5"/>
|
||||
<text text-anchor="middle" x="5018" y="-3057.3" font-family="Times,serif" font-size="14.00">OpenAPI::Client</text>
|
||||
<polyline fill="none" stroke="black" points="4896,-3049.5 5140,-3049.5 "/>
|
||||
<text text-anchor="start" x="4904" y="-3034.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="4904" y="-3019.3" font-family="Times,serif" font-size="14.00">name :character varying</text>
|
||||
<text text-anchor="start" x="4904" y="-3004.3" font-family="Times,serif" font-size="14.00">calls_count :integer</text>
|
||||
<text text-anchor="start" x="4904" y="-2989.3" font-family="Times,serif" font-size="14.00">token :character varying</text>
|
||||
<text text-anchor="start" x="4904" y="-2974.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="4904" y="-2959.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
<!-- OpenAPI::CallsCountTracing -->
|
||||
<g id="node9" class="node"><title>OpenAPI::CallsCountTracing</title>
|
||||
@ -214,16 +214,16 @@
|
||||
</g>
|
||||
<!-- OpenAPI::Client->OpenAPI::CallsCountTracing -->
|
||||
<g id="edge6" class="edge"><title>OpenAPI::Client->OpenAPI::CallsCountTracing</title>
|
||||
<path fill="none" stroke="#06abf7" d="M5018,-2935.34C5018,-2868.25 5018,-2766.28 5018,-2698.67"/>
|
||||
<ellipse fill="none" stroke="#06abf7" cx="5018" cy="-2939.75" rx="4" ry="4"/>
|
||||
<polygon fill="#06abf7" stroke="#06abf7" points="5018,-2698.54 5022.5,-2688.54 5018,-2693.54 5018,-2688.54 5018,-2688.54 5018,-2688.54 5018,-2693.54 5013.5,-2688.54 5018,-2698.54 5018,-2698.54"/>
|
||||
<path fill="none" stroke="#532d07" d="M5018,-2943.14C5018,-2874.38 5018,-2768.51 5018,-2698.99"/>
|
||||
<ellipse fill="none" stroke="#532d07" cx="5018" cy="-2947.31" rx="4" ry="4"/>
|
||||
<polygon fill="#532d07" stroke="#532d07" points="5018,-2698.58 5022.5,-2688.58 5018,-2693.58 5018,-2688.58 5018,-2688.58 5018,-2688.58 5018,-2693.58 5013.5,-2688.58 5018,-2698.58 5018,-2698.58"/>
|
||||
</g>
|
||||
<!-- OpenAPI::ParameterError -->
|
||||
<g id="node10" class="node"><title>OpenAPI::ParameterError</title>
|
||||
<polygon fill="none" stroke="black" points="5203.5,-2981.5 5203.5,-3027.5 5362.5,-3027.5 5362.5,-2981.5 5203.5,-2981.5"/>
|
||||
<text text-anchor="middle" x="5283" y="-3012.3" font-family="Times,serif" font-size="14.00">OpenAPI::ParameterError</text>
|
||||
<polyline fill="none" stroke="black" points="5203.5,-3004.5 5362.5,-3004.5 "/>
|
||||
<text text-anchor="middle" x="5283" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="5203.5,-2989 5203.5,-3035 5362.5,-3035 5362.5,-2989 5203.5,-2989"/>
|
||||
<text text-anchor="middle" x="5283" y="-3019.8" font-family="Times,serif" font-size="14.00">OpenAPI::ParameterError</text>
|
||||
<polyline fill="none" stroke="black" points="5203.5,-3012 5362.5,-3012 "/>
|
||||
<text text-anchor="middle" x="5283" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- UserAvatar -->
|
||||
<g id="node11" class="node"><title>UserAvatar</title>
|
||||
@ -253,25 +253,25 @@
|
||||
</g>
|
||||
<!-- Tag -->
|
||||
<g id="node13" class="node"><title>Tag</title>
|
||||
<path fill="none" stroke="black" d="M3715,-2959C3715,-2959 3935,-2959 3935,-2959 3941,-2959 3947,-2965 3947,-2971 3947,-2971 3947,-3038 3947,-3038 3947,-3044 3941,-3050 3935,-3050 3935,-3050 3715,-3050 3715,-3050 3709,-3050 3703,-3044 3703,-3038 3703,-3038 3703,-2971 3703,-2971 3703,-2965 3709,-2959 3715,-2959"/>
|
||||
<text text-anchor="middle" x="3825" y="-3034.8" font-family="Times,serif" font-size="14.00">Tag</text>
|
||||
<polyline fill="none" stroke="black" points="3703,-3027 3947,-3027 "/>
|
||||
<text text-anchor="start" x="3711" y="-3011.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="3711" y="-2996.8" font-family="Times,serif" font-size="14.00">name :character varying</text>
|
||||
<text text-anchor="start" x="3711" y="-2981.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="3711" y="-2966.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M3715,-2966.5C3715,-2966.5 3935,-2966.5 3935,-2966.5 3941,-2966.5 3947,-2972.5 3947,-2978.5 3947,-2978.5 3947,-3045.5 3947,-3045.5 3947,-3051.5 3941,-3057.5 3935,-3057.5 3935,-3057.5 3715,-3057.5 3715,-3057.5 3709,-3057.5 3703,-3051.5 3703,-3045.5 3703,-3045.5 3703,-2978.5 3703,-2978.5 3703,-2972.5 3709,-2966.5 3715,-2966.5"/>
|
||||
<text text-anchor="middle" x="3825" y="-3042.3" font-family="Times,serif" font-size="14.00">Tag</text>
|
||||
<polyline fill="none" stroke="black" points="3703,-3034.5 3947,-3034.5 "/>
|
||||
<text text-anchor="start" x="3711" y="-3019.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="3711" y="-3004.3" font-family="Times,serif" font-size="14.00">name :character varying</text>
|
||||
<text text-anchor="start" x="3711" y="-2989.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="3711" y="-2974.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
<!-- Tag->AvailabilityTag -->
|
||||
<g id="edge9" class="edge"><title>Tag->AvailabilityTag</title>
|
||||
<path fill="none" stroke="#59c59b" d="M3955.13,-2985.62C4019.95,-2969.8 4093.73,-2940.03 4138,-2884 4225.68,-2773.02 4238.91,-2331.39 4240.76,-2166.24"/>
|
||||
<ellipse fill="none" stroke="#59c59b" cx="3951.17" cy="-2986.55" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#59c59b" stroke="#59c59b" points="4240.77,-2165.77 4245.37,-2155.82 4240.82,-2160.77 4240.87,-2155.77 4240.87,-2155.77 4240.87,-2155.77 4240.82,-2160.77 4236.37,-2155.73 4240.77,-2165.77 4240.77,-2165.77"/>
|
||||
<path fill="none" stroke="#afc0dd" d="M3954.93,-2989.98C4019.89,-2972.61 4093.87,-2941.06 4138,-2884 4224.52,-2772.12 4238.47,-2331.04 4240.63,-2166.14"/>
|
||||
<ellipse fill="none" stroke="#afc0dd" cx="3950.93" cy="-2991.03" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#afc0dd" stroke="#afc0dd" points="4240.64,-2165.69 4245.26,-2155.74 4240.7,-2160.69 4240.76,-2155.69 4240.76,-2155.69 4240.76,-2155.69 4240.7,-2160.69 4236.26,-2155.63 4240.64,-2165.69 4240.64,-2165.69"/>
|
||||
</g>
|
||||
<!-- Tag->User -->
|
||||
<g id="edge8" class="edge"><title>Tag->User</title>
|
||||
<path fill="none" stroke="#5afd6f" d="M3692.79,-2972.82C3400.35,-2904.97 2699.14,-2742.26 2377.43,-2667.62"/>
|
||||
<polygon fill="#5afd6f" stroke="#5afd6f" points="3692.95,-2972.86 3701.68,-2979.5 3697.82,-2973.99 3702.69,-2975.12 3702.69,-2975.12 3702.69,-2975.12 3697.82,-2973.99 3703.71,-2970.74 3692.95,-2972.86 3692.95,-2972.86"/>
|
||||
<polygon fill="#5afd6f" stroke="#5afd6f" points="2377.3,-2667.59 2368.57,-2660.94 2372.43,-2666.46 2367.56,-2665.33 2367.56,-2665.33 2367.56,-2665.33 2372.43,-2666.46 2366.54,-2669.71 2377.3,-2667.59 2377.3,-2667.59"/>
|
||||
<path fill="none" stroke="#82ea2d" d="M3692.79,-2979.71C3400.35,-2910.49 2699.14,-2744.53 2377.43,-2668.39"/>
|
||||
<polygon fill="#82ea2d" stroke="#82ea2d" points="3692.96,-2979.75 3701.66,-2986.43 3697.83,-2980.9 3702.69,-2982.05 3702.69,-2982.05 3702.69,-2982.05 3697.83,-2980.9 3703.73,-2977.67 3692.96,-2979.75 3692.96,-2979.75"/>
|
||||
<polygon fill="#82ea2d" stroke="#82ea2d" points="2377.29,-2668.36 2368.59,-2661.67 2372.42,-2667.2 2367.56,-2666.05 2367.56,-2666.05 2367.56,-2666.05 2372.42,-2667.2 2366.52,-2670.43 2377.29,-2668.36 2377.29,-2668.36"/>
|
||||
</g>
|
||||
<!-- Availability -->
|
||||
<g id="node53" class="node"><title>Availability</title>
|
||||
@ -289,9 +289,9 @@
|
||||
</g>
|
||||
<!-- Tag->Availability -->
|
||||
<g id="edge10" class="edge"><title>Tag->Availability</title>
|
||||
<path fill="none" stroke="#616c0f" d="M3851.25,-2949.49C3881.38,-2887.48 3931.17,-2785.03 3966.33,-2712.68"/>
|
||||
<polygon fill="#616c0f" stroke="#616c0f" points="3851.14,-2949.7 3842.73,-2956.73 3848.96,-2954.2 3846.77,-2958.7 3846.77,-2958.7 3846.77,-2958.7 3848.96,-2954.2 3850.82,-2960.67 3851.14,-2949.7 3851.14,-2949.7"/>
|
||||
<polygon fill="#616c0f" stroke="#616c0f" points="3966.39,-2712.56 3974.81,-2705.53 3968.58,-2708.06 3970.76,-2703.56 3970.76,-2703.56 3970.76,-2703.56 3968.58,-2708.06 3966.72,-2701.6 3966.39,-2712.56 3966.39,-2712.56"/>
|
||||
<path fill="none" stroke="#4040b7" d="M3850.72,-2957.01C3880.97,-2893.53 3931.53,-2787.41 3966.92,-2713.11"/>
|
||||
<polygon fill="#4040b7" stroke="#4040b7" points="3850.54,-2957.4 3842.17,-2964.5 3848.38,-2961.92 3846.23,-2966.43 3846.23,-2966.43 3846.23,-2966.43 3848.38,-2961.92 3850.3,-2968.37 3850.54,-2957.4 3850.54,-2957.4"/>
|
||||
<polygon fill="#4040b7" stroke="#4040b7" points="3967.08,-2712.79 3975.44,-2705.7 3969.23,-2708.28 3971.38,-2703.76 3971.38,-2703.76 3971.38,-2703.76 3969.23,-2708.28 3967.32,-2701.83 3967.08,-2712.79 3967.08,-2712.79"/>
|
||||
</g>
|
||||
<!-- UserTag -->
|
||||
<g id="node66" class="node"><title>UserTag</title>
|
||||
@ -306,9 +306,9 @@
|
||||
</g>
|
||||
<!-- Tag->UserTag -->
|
||||
<g id="edge7" class="edge"><title>Tag->UserTag</title>
|
||||
<path fill="none" stroke="#c0d245" d="M3776.66,-2952.79C3670.7,-2841.06 3411.17,-2564.29 3207,-2321 3163.45,-2269.1 3116.34,-2208.03 3082.95,-2163.83"/>
|
||||
<ellipse fill="none" stroke="#c0d245" cx="3779.44" cy="-2955.72" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#c0d245" stroke="#c0d245" points="3082.9,-2163.77 3080.47,-2153.07 3079.89,-2159.78 3076.88,-2155.78 3076.88,-2155.78 3076.88,-2155.78 3079.89,-2159.78 3073.28,-2158.49 3082.9,-2163.77 3082.9,-2163.77"/>
|
||||
<path fill="none" stroke="#653b29" d="M3777.52,-2960.47C3672.23,-2847.88 3412.25,-2566.92 3207,-2321 3163.59,-2268.98 3116.46,-2207.92 3083.03,-2163.76"/>
|
||||
<ellipse fill="none" stroke="#653b29" cx="3780.29" cy="-2963.43" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#653b29" stroke="#653b29" points="3082.98,-2163.7 3080.54,-2153.01 3079.97,-2159.71 3076.95,-2155.72 3076.95,-2155.72 3076.95,-2155.72 3079.97,-2159.71 3073.36,-2158.43 3082.98,-2163.7 3082.98,-2163.7"/>
|
||||
</g>
|
||||
<!-- Event -->
|
||||
<g id="node14" class="node"><title>Event</title>
|
||||
@ -341,9 +341,9 @@
|
||||
</g>
|
||||
<!-- Event->PriceCategory -->
|
||||
<g id="edge16" class="edge"><title>Event->PriceCategory</title>
|
||||
<path fill="none" stroke="#031475" d="M4673.38,-2002.21C4783.51,-1918.34 4937.46,-1801.1 5028.63,-1731.66"/>
|
||||
<polygon fill="#031475" stroke="#031475" points="4673.25,-2002.31 4662.57,-2004.79 4669.27,-2005.34 4665.29,-2008.37 4665.29,-2008.37 4665.29,-2008.37 4669.27,-2005.34 4668.02,-2011.95 4673.25,-2002.31 4673.25,-2002.31"/>
|
||||
<polygon fill="#031475" stroke="#031475" points="5028.75,-1731.57 5039.43,-1729.09 5032.73,-1728.54 5036.71,-1725.51 5036.71,-1725.51 5036.71,-1725.51 5032.73,-1728.54 5033.98,-1721.93 5028.75,-1731.57 5028.75,-1731.57"/>
|
||||
<path fill="none" stroke="#b9576b" d="M4673.38,-2002.21C4783.51,-1918.34 4937.46,-1801.1 5028.63,-1731.66"/>
|
||||
<polygon fill="#b9576b" stroke="#b9576b" points="4673.25,-2002.31 4662.57,-2004.79 4669.27,-2005.34 4665.29,-2008.37 4665.29,-2008.37 4665.29,-2008.37 4669.27,-2005.34 4668.02,-2011.95 4673.25,-2002.31 4673.25,-2002.31"/>
|
||||
<polygon fill="#b9576b" stroke="#b9576b" points="5028.75,-1731.57 5039.43,-1729.09 5032.73,-1728.54 5036.71,-1725.51 5036.71,-1725.51 5036.71,-1725.51 5032.73,-1728.54 5033.98,-1721.93 5028.75,-1731.57 5028.75,-1731.57"/>
|
||||
</g>
|
||||
<!-- EventTheme -->
|
||||
<g id="node38" class="node"><title>EventTheme</title>
|
||||
@ -358,9 +358,9 @@
|
||||
</g>
|
||||
<!-- Event->EventTheme -->
|
||||
<g id="edge14" class="edge"><title>Event->EventTheme</title>
|
||||
<path fill="none" stroke="#92fca1" d="M4473.6,-1988.13C4423.73,-1906.67 4358.44,-1800.01 4318.13,-1734.16"/>
|
||||
<polygon fill="#92fca1" stroke="#92fca1" points="4473.69,-1988.27 4475.07,-1999.15 4476.3,-1992.53 4478.91,-1996.8 4478.91,-1996.8 4478.91,-1996.8 4476.3,-1992.53 4482.75,-1994.45 4473.69,-1988.27 4473.69,-1988.27"/>
|
||||
<polygon fill="#92fca1" stroke="#92fca1" points="4318.08,-1734.07 4316.7,-1723.19 4315.47,-1729.81 4312.86,-1725.54 4312.86,-1725.54 4312.86,-1725.54 4315.47,-1729.81 4309.02,-1727.89 4318.08,-1734.07 4318.08,-1734.07"/>
|
||||
<path fill="none" stroke="#5322d6" d="M4473.6,-1988.13C4423.73,-1906.67 4358.44,-1800.01 4318.13,-1734.16"/>
|
||||
<polygon fill="#5322d6" stroke="#5322d6" points="4473.69,-1988.27 4475.07,-1999.15 4476.3,-1992.53 4478.91,-1996.8 4478.91,-1996.8 4478.91,-1996.8 4476.3,-1992.53 4482.75,-1994.45 4473.69,-1988.27 4473.69,-1988.27"/>
|
||||
<polygon fill="#5322d6" stroke="#5322d6" points="4318.08,-1734.07 4316.7,-1723.19 4315.47,-1729.81 4312.86,-1725.54 4312.86,-1725.54 4312.86,-1725.54 4315.47,-1729.81 4309.02,-1727.89 4318.08,-1734.07 4318.08,-1734.07"/>
|
||||
</g>
|
||||
<!-- EventImage -->
|
||||
<g id="node43" class="node"><title>EventImage</title>
|
||||
@ -377,9 +377,9 @@
|
||||
</g>
|
||||
<!-- Event->EventImage -->
|
||||
<g id="edge11" class="edge"><title>Event->EventImage</title>
|
||||
<path fill="none" stroke="#869c15" d="M4543,-1988.76C4543,-1913.12 4543,-1815.56 4543,-1749.13"/>
|
||||
<ellipse fill="none" stroke="#869c15" cx="4543" cy="-1992.8" rx="4" ry="4"/>
|
||||
<ellipse fill="#869c15" stroke="#869c15" cx="4543" cy="-1744.78" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#74ab65" d="M4543,-1988.76C4543,-1913.12 4543,-1815.56 4543,-1749.13"/>
|
||||
<ellipse fill="none" stroke="#74ab65" cx="4543" cy="-1992.8" rx="4" ry="4"/>
|
||||
<ellipse fill="#74ab65" stroke="#74ab65" cx="4543" cy="-1744.78" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- Reservation -->
|
||||
<g id="node58" class="node"><title>Reservation</title>
|
||||
@ -398,9 +398,9 @@
|
||||
</g>
|
||||
<!-- Event->Reservation -->
|
||||
<g id="edge13" class="edge"><title>Event->Reservation</title>
|
||||
<path fill="none" stroke="#74f915" d="M4470.95,-1989.98C4443.22,-1952.97 4409.2,-1913.68 4372,-1884 4357.39,-1872.34 4350.22,-1875.28 4334,-1866 4248.18,-1816.92 4206.89,-1821.85 4150,-1741 4064.95,-1620.13 4122.19,-1556.1 4067,-1419 4059.72,-1400.9 4050.6,-1382.27 4041.11,-1364.63"/>
|
||||
<ellipse fill="none" stroke="#74f915" cx="4473.67" cy="-1993.65" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#74f915" stroke="#74f915" points="4040.92,-1364.28 4040.07,-1353.35 4038.52,-1359.9 4036.12,-1355.51 4036.12,-1355.51 4036.12,-1355.51 4038.52,-1359.9 4032.18,-1357.67 4040.92,-1364.28 4040.92,-1364.28"/>
|
||||
<path fill="none" stroke="#489197" d="M4470.95,-1989.98C4443.22,-1952.97 4409.2,-1913.68 4372,-1884 4357.39,-1872.34 4350.22,-1875.28 4334,-1866 4248.18,-1816.92 4206.89,-1821.85 4150,-1741 4064.95,-1620.13 4122.19,-1556.1 4067,-1419 4059.72,-1400.9 4050.6,-1382.27 4041.11,-1364.63"/>
|
||||
<ellipse fill="none" stroke="#489197" cx="4473.67" cy="-1993.65" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#489197" stroke="#489197" points="4040.92,-1364.28 4040.07,-1353.35 4038.52,-1359.9 4036.12,-1355.51 4036.12,-1355.51 4036.12,-1355.51 4038.52,-1359.9 4032.18,-1357.67 4040.92,-1364.28 4040.92,-1364.28"/>
|
||||
</g>
|
||||
<!-- EventPriceCategory -->
|
||||
<g id="node64" class="node"><title>EventPriceCategory</title>
|
||||
@ -416,9 +416,9 @@
|
||||
</g>
|
||||
<!-- Event->EventPriceCategory -->
|
||||
<g id="edge15" class="edge"><title>Event->EventPriceCategory</title>
|
||||
<path fill="none" stroke="#fea59e" d="M4593.99,-1989.15C4623.11,-1919.29 4657.1,-1826.73 4674,-1741 4701.4,-1601.96 4700.28,-1435.31 4696.79,-1343.26"/>
|
||||
<ellipse fill="none" stroke="#fea59e" cx="4592.37" cy="-1993.01" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#fea59e" stroke="#fea59e" points="4696.78,-1343.21 4700.88,-1333.04 4696.58,-1338.22 4696.38,-1333.22 4696.38,-1333.22 4696.38,-1333.22 4696.58,-1338.22 4691.89,-1333.4 4696.78,-1343.21 4696.78,-1343.21"/>
|
||||
<path fill="none" stroke="#779015" d="M4593.99,-1989.15C4623.11,-1919.29 4657.1,-1826.73 4674,-1741 4701.4,-1601.96 4700.28,-1435.31 4696.79,-1343.26"/>
|
||||
<ellipse fill="none" stroke="#779015" cx="4592.37" cy="-1993.01" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#779015" stroke="#779015" points="4696.78,-1343.21 4700.88,-1333.04 4696.58,-1338.22 4696.38,-1333.22 4696.38,-1333.22 4696.38,-1333.22 4696.58,-1338.22 4691.89,-1333.4 4696.78,-1343.21 4696.78,-1343.21"/>
|
||||
</g>
|
||||
<!-- EventFile -->
|
||||
<g id="node65" class="node"><title>EventFile</title>
|
||||
@ -435,20 +435,20 @@
|
||||
</g>
|
||||
<!-- Event->EventFile -->
|
||||
<g id="edge12" class="edge"><title>Event->EventFile</title>
|
||||
<path fill="none" stroke="#b83157" d="M4621.02,-1990.19C4674.16,-1914.38 4743.1,-1816.03 4789.95,-1749.18"/>
|
||||
<ellipse fill="none" stroke="#b83157" cx="4618.68" cy="-1993.52" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b83157" stroke="#b83157" points="4790.1,-1748.97 4799.53,-1743.36 4792.97,-1744.87 4795.84,-1740.78 4795.84,-1740.78 4795.84,-1740.78 4792.97,-1744.87 4792.16,-1738.2 4790.1,-1748.97 4790.1,-1748.97"/>
|
||||
<path fill="none" stroke="#aa56eb" d="M4621.02,-1990.19C4674.16,-1914.38 4743.1,-1816.03 4789.95,-1749.18"/>
|
||||
<ellipse fill="none" stroke="#aa56eb" cx="4618.68" cy="-1993.52" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#aa56eb" stroke="#aa56eb" points="4790.1,-1748.97 4799.53,-1743.36 4792.97,-1744.87 4795.84,-1740.78 4795.84,-1740.78 4795.84,-1740.78 4792.97,-1744.87 4792.16,-1738.2 4790.1,-1748.97 4790.1,-1748.97"/>
|
||||
</g>
|
||||
<!-- StatisticSubType -->
|
||||
<g id="node15" class="node"><title>StatisticSubType</title>
|
||||
<path fill="none" stroke="black" d="M5416,-2951.5C5416,-2951.5 5636,-2951.5 5636,-2951.5 5642,-2951.5 5648,-2957.5 5648,-2963.5 5648,-2963.5 5648,-3045.5 5648,-3045.5 5648,-3051.5 5642,-3057.5 5636,-3057.5 5636,-3057.5 5416,-3057.5 5416,-3057.5 5410,-3057.5 5404,-3051.5 5404,-3045.5 5404,-3045.5 5404,-2963.5 5404,-2963.5 5404,-2957.5 5410,-2951.5 5416,-2951.5"/>
|
||||
<text text-anchor="middle" x="5526" y="-3042.3" font-family="Times,serif" font-size="14.00">StatisticSubType</text>
|
||||
<polyline fill="none" stroke="black" points="5404,-3034.5 5648,-3034.5 "/>
|
||||
<text text-anchor="start" x="5412" y="-3019.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="5412" y="-3004.3" font-family="Times,serif" font-size="14.00">key :character varying(255)</text>
|
||||
<text text-anchor="start" x="5412" y="-2989.3" font-family="Times,serif" font-size="14.00">label :character varying(255)</text>
|
||||
<text text-anchor="start" x="5412" y="-2974.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="5412" y="-2959.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M5416,-2959C5416,-2959 5636,-2959 5636,-2959 5642,-2959 5648,-2965 5648,-2971 5648,-2971 5648,-3053 5648,-3053 5648,-3059 5642,-3065 5636,-3065 5636,-3065 5416,-3065 5416,-3065 5410,-3065 5404,-3059 5404,-3053 5404,-3053 5404,-2971 5404,-2971 5404,-2965 5410,-2959 5416,-2959"/>
|
||||
<text text-anchor="middle" x="5526" y="-3049.8" font-family="Times,serif" font-size="14.00">StatisticSubType</text>
|
||||
<polyline fill="none" stroke="black" points="5404,-3042 5648,-3042 "/>
|
||||
<text text-anchor="start" x="5412" y="-3026.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="5412" y="-3011.8" font-family="Times,serif" font-size="14.00">key :character varying(255)</text>
|
||||
<text text-anchor="start" x="5412" y="-2996.8" font-family="Times,serif" font-size="14.00">label :character varying(255)</text>
|
||||
<text text-anchor="start" x="5412" y="-2981.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="5412" y="-2966.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
<!-- StatisticType -->
|
||||
<g id="node32" class="node"><title>StatisticType</title>
|
||||
@ -466,9 +466,9 @@
|
||||
</g>
|
||||
<!-- StatisticSubType->StatisticType -->
|
||||
<g id="edge18" class="edge"><title>StatisticSubType->StatisticType</title>
|
||||
<path fill="none" stroke="#7abd4b" d="M5557.12,-2942.48C5588.99,-2880 5638.75,-2782.44 5674.28,-2712.75"/>
|
||||
<polygon fill="#7abd4b" stroke="#7abd4b" points="5557.1,-2942.52 5548.55,-2949.38 5554.83,-2946.97 5552.56,-2951.43 5552.56,-2951.43 5552.56,-2951.43 5554.83,-2946.97 5556.57,-2953.47 5557.1,-2942.52 5557.1,-2942.52"/>
|
||||
<polygon fill="#7abd4b" stroke="#7abd4b" points="5674.44,-2712.45 5682.99,-2705.59 5676.71,-2708 5678.98,-2703.54 5678.98,-2703.54 5678.98,-2703.54 5676.71,-2708 5674.97,-2701.5 5674.44,-2712.45 5674.44,-2712.45"/>
|
||||
<path fill="none" stroke="#d14f74" d="M5556.75,-2949.51C5588.86,-2885.27 5639.45,-2784.1 5675.19,-2712.63"/>
|
||||
<polygon fill="#d14f74" stroke="#d14f74" points="5556.63,-2949.74 5548.13,-2956.67 5554.39,-2954.21 5552.16,-2958.69 5552.16,-2958.69 5552.16,-2958.69 5554.39,-2954.21 5556.18,-2960.7 5556.63,-2949.74 5556.63,-2949.74"/>
|
||||
<polygon fill="#d14f74" stroke="#d14f74" points="5675.21,-2712.57 5683.71,-2705.64 5677.45,-2708.1 5679.69,-2703.63 5679.69,-2703.63 5679.69,-2703.63 5677.45,-2708.1 5675.66,-2701.61 5675.21,-2712.57 5675.21,-2712.57"/>
|
||||
</g>
|
||||
<!-- StatisticTypeSubType -->
|
||||
<g id="node76" class="node"><title>StatisticTypeSubType</title>
|
||||
@ -483,9 +483,9 @@
|
||||
</g>
|
||||
<!-- StatisticSubType->StatisticTypeSubType -->
|
||||
<g id="edge17" class="edge"><title>StatisticSubType->StatisticTypeSubType</title>
|
||||
<path fill="none" stroke="#b144e0" d="M5521.23,-2943.03C5508.35,-2779.72 5472.94,-2330.9 5459.9,-2165.64"/>
|
||||
<ellipse fill="none" stroke="#b144e0" cx="5521.56" cy="-2947.23" rx="4" ry="4"/>
|
||||
<polygon fill="#b144e0" stroke="#b144e0" points="5459.9,-2165.61 5463.6,-2155.29 5459.51,-2160.63 5459.11,-2155.64 5459.11,-2155.64 5459.11,-2155.64 5459.51,-2160.63 5454.63,-2155.99 5459.9,-2165.61 5459.9,-2165.61"/>
|
||||
<path fill="none" stroke="#00dad1" d="M5521.3,-2950.97C5508.47,-2786.92 5472.9,-2332.28 5459.87,-2165.7"/>
|
||||
<ellipse fill="none" stroke="#00dad1" cx="5521.62" cy="-2954.96" rx="4" ry="4"/>
|
||||
<polygon fill="#00dad1" stroke="#00dad1" points="5459.86,-2165.59 5463.56,-2155.27 5459.47,-2160.61 5459.08,-2155.62 5459.08,-2155.62 5459.08,-2155.62 5459.47,-2160.61 5454.59,-2155.97 5459.86,-2165.59 5459.86,-2165.59"/>
|
||||
</g>
|
||||
<!-- Project -->
|
||||
<g id="node16" class="node"><title>Project</title>
|
||||
@ -506,15 +506,15 @@
|
||||
</g>
|
||||
<!-- Project->ProjectImage -->
|
||||
<g id="edge19" class="edge"><title>Project->ProjectImage</title>
|
||||
<path fill="none" stroke="#554c5d" d="M1754.79,-1997.22C1796.05,-1920.11 1851.25,-1816.95 1888.13,-1748.01"/>
|
||||
<ellipse fill="none" stroke="#554c5d" cx="1752.85" cy="-2000.85" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#554c5d" stroke="#554c5d" cx="1890.2" cy="-1744.14" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#7a293d" d="M1754.79,-1997.22C1796.05,-1920.11 1851.25,-1816.95 1888.13,-1748.01"/>
|
||||
<ellipse fill="none" stroke="#7a293d" cx="1752.85" cy="-2000.85" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#7a293d" stroke="#7a293d" cx="1890.2" cy="-1744.14" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Project->User -->
|
||||
<g id="edge25" class="edge"><title>Project->User</title>
|
||||
<path fill="none" stroke="#b0c6db" d="M1753.27,-2209.74C1780.04,-2256.7 1814.97,-2310.91 1854,-2354 1910.14,-2415.97 1981.83,-2473.9 2046.23,-2520.31"/>
|
||||
<polygon fill="#b0c6db" stroke="#b0c6db" points="1753.11,-2209.46 1752.11,-2198.54 1750.65,-2205.11 1748.19,-2200.75 1748.19,-2200.75 1748.19,-2200.75 1750.65,-2205.11 1744.27,-2202.96 1753.11,-2209.46 1753.11,-2209.46"/>
|
||||
<polygon fill="#b0c6db" stroke="#b0c6db" points="2046.32,-2520.37 2051.83,-2529.86 2050.38,-2523.29 2054.45,-2526.2 2054.45,-2526.2 2054.45,-2526.2 2050.38,-2523.29 2057.07,-2522.54 2046.32,-2520.37 2046.32,-2520.37"/>
|
||||
<path fill="none" stroke="#f6ec0c" d="M1753.27,-2209.74C1780.04,-2256.7 1814.97,-2310.91 1854,-2354 1910.14,-2415.97 1981.83,-2473.9 2046.23,-2520.31"/>
|
||||
<polygon fill="#f6ec0c" stroke="#f6ec0c" points="1753.11,-2209.46 1752.11,-2198.54 1750.65,-2205.11 1748.19,-2200.75 1748.19,-2200.75 1748.19,-2200.75 1750.65,-2205.11 1744.27,-2202.96 1753.11,-2209.46 1753.11,-2209.46"/>
|
||||
<polygon fill="#f6ec0c" stroke="#f6ec0c" points="2046.32,-2520.37 2051.83,-2529.86 2050.38,-2523.29 2054.45,-2526.2 2054.45,-2526.2 2054.45,-2526.2 2050.38,-2523.29 2057.07,-2522.54 2046.32,-2520.37 2046.32,-2520.37"/>
|
||||
</g>
|
||||
<!-- Theme -->
|
||||
<g id="node47" class="node"><title>Theme</title>
|
||||
@ -526,9 +526,9 @@
|
||||
</g>
|
||||
<!-- Project->Theme -->
|
||||
<g id="edge23" class="edge"><title>Project->Theme</title>
|
||||
<path fill="none" stroke="#e4e243" d="M1587.7,-1997.49C1488.06,-1904.38 1347.6,-1773.12 1280.15,-1710.08"/>
|
||||
<polygon fill="#e4e243" stroke="#e4e243" points="1587.77,-1997.55 1592,-2007.67 1591.42,-2000.97 1595.07,-2004.38 1595.07,-2004.38 1595.07,-2004.38 1591.42,-2000.97 1598.15,-2001.09 1587.77,-1997.55 1587.77,-1997.55"/>
|
||||
<polygon fill="#e4e243" stroke="#e4e243" points="1279.99,-1709.93 1275.75,-1699.82 1276.33,-1706.52 1272.68,-1703.11 1272.68,-1703.11 1272.68,-1703.11 1276.33,-1706.52 1269.61,-1706.39 1279.99,-1709.93 1279.99,-1709.93"/>
|
||||
<path fill="none" stroke="#e83be2" d="M1587.7,-1997.49C1488.06,-1904.38 1347.6,-1773.12 1280.15,-1710.08"/>
|
||||
<polygon fill="#e83be2" stroke="#e83be2" points="1587.77,-1997.55 1592,-2007.67 1591.42,-2000.97 1595.07,-2004.38 1595.07,-2004.38 1595.07,-2004.38 1591.42,-2000.97 1598.15,-2001.09 1587.77,-1997.55 1587.77,-1997.55"/>
|
||||
<polygon fill="#e83be2" stroke="#e83be2" points="1279.99,-1709.93 1275.75,-1699.82 1276.33,-1706.52 1272.68,-1703.11 1272.68,-1703.11 1272.68,-1703.11 1276.33,-1706.52 1269.61,-1706.39 1279.99,-1709.93 1279.99,-1709.93"/>
|
||||
</g>
|
||||
<!-- ProjectCao -->
|
||||
<g id="node48" class="node"><title>ProjectCao</title>
|
||||
@ -545,9 +545,9 @@
|
||||
</g>
|
||||
<!-- Project->ProjectCao -->
|
||||
<g id="edge20" class="edge"><title>Project->ProjectCao</title>
|
||||
<path fill="none" stroke="#4b18e9" d="M1643.21,-1997.22C1602.28,-1920.74 1547.65,-1818.62 1510.77,-1749.69"/>
|
||||
<ellipse fill="none" stroke="#4b18e9" cx="1645.15" cy="-2000.85" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#4b18e9" stroke="#4b18e9" points="1510.63,-1749.43 1509.88,-1738.49 1508.27,-1745.02 1505.91,-1740.62 1505.91,-1740.62 1505.91,-1740.62 1508.27,-1745.02 1501.94,-1742.74 1510.63,-1749.43 1510.63,-1749.43"/>
|
||||
<path fill="none" stroke="#b90b08" d="M1643.21,-1997.22C1602.28,-1920.74 1547.65,-1818.62 1510.77,-1749.69"/>
|
||||
<ellipse fill="none" stroke="#b90b08" cx="1645.15" cy="-2000.85" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b90b08" stroke="#b90b08" points="1510.63,-1749.43 1509.88,-1738.49 1508.27,-1745.02 1505.91,-1740.62 1505.91,-1740.62 1505.91,-1740.62 1508.27,-1745.02 1501.94,-1742.74 1510.63,-1749.43 1510.63,-1749.43"/>
|
||||
</g>
|
||||
<!-- ProjectStep -->
|
||||
<g id="node57" class="node"><title>ProjectStep</title>
|
||||
@ -564,9 +564,9 @@
|
||||
</g>
|
||||
<!-- Project->ProjectStep -->
|
||||
<g id="edge26" class="edge"><title>Project->ProjectStep</title>
|
||||
<path fill="none" stroke="#482831" d="M1564.87,-2017.94C1437.81,-1938.78 1248.95,-1821.12 1128.16,-1745.87"/>
|
||||
<ellipse fill="none" stroke="#482831" cx="1568.4" cy="-2020.13" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#482831" stroke="#482831" points="1128.07,-1745.81 1121.97,-1736.71 1123.83,-1743.17 1119.59,-1740.53 1119.59,-1740.53 1119.59,-1740.53 1123.83,-1743.17 1117.21,-1744.35 1128.07,-1745.81 1128.07,-1745.81"/>
|
||||
<path fill="none" stroke="#25fda0" d="M1564.87,-2017.94C1437.81,-1938.78 1248.95,-1821.12 1128.16,-1745.87"/>
|
||||
<ellipse fill="none" stroke="#25fda0" cx="1568.4" cy="-2020.13" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#25fda0" stroke="#25fda0" points="1128.07,-1745.81 1121.97,-1736.71 1123.83,-1743.17 1119.59,-1740.53 1119.59,-1740.53 1119.59,-1740.53 1123.83,-1743.17 1117.21,-1744.35 1128.07,-1745.81 1128.07,-1745.81"/>
|
||||
</g>
|
||||
<!-- ProjectUser -->
|
||||
<g id="node74" class="node"><title>ProjectUser</title>
|
||||
@ -583,9 +583,9 @@
|
||||
</g>
|
||||
<!-- Project->ProjectUser -->
|
||||
<g id="edge24" class="edge"><title>Project->ProjectUser</title>
|
||||
<path fill="none" stroke="#d0c029" d="M1564.72,-2016.06C1485.89,-1969.81 1382.64,-1915.79 1284,-1884 1229.74,-1866.51 1211.74,-1881.92 1157,-1866 1030.85,-1829.31 1003.53,-1801.05 881.613,-1741.3"/>
|
||||
<ellipse fill="none" stroke="#d0c029" cx="1568.35" cy="-2018.19" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#d0c029" stroke="#d0c029" points="881.27,-1741.13 874.25,-1732.71 876.775,-1738.94 872.279,-1736.75 872.279,-1736.75 872.279,-1736.75 876.775,-1738.94 870.309,-1740.8 881.27,-1741.13 881.27,-1741.13"/>
|
||||
<path fill="none" stroke="#cad9f4" d="M1564.72,-2016.06C1485.89,-1969.81 1382.64,-1915.79 1284,-1884 1229.74,-1866.51 1211.74,-1881.92 1157,-1866 1030.85,-1829.31 1003.53,-1801.05 881.613,-1741.3"/>
|
||||
<ellipse fill="none" stroke="#cad9f4" cx="1568.35" cy="-2018.19" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#cad9f4" stroke="#cad9f4" points="881.27,-1741.13 874.25,-1732.71 876.775,-1738.94 872.279,-1736.75 872.279,-1736.75 872.279,-1736.75 876.775,-1738.94 870.309,-1740.8 881.27,-1741.13 881.27,-1741.13"/>
|
||||
</g>
|
||||
<!-- Machine -->
|
||||
<g id="node83" class="node"><title>Machine</title>
|
||||
@ -602,9 +602,9 @@
|
||||
</g>
|
||||
<!-- Project->Machine -->
|
||||
<g id="edge21" class="edge"><title>Project->Machine</title>
|
||||
<path fill="none" stroke="#fe0ba1" d="M1835.52,-2043.83C1953.39,-1995.79 2129.1,-1928.29 2287,-1884 2606.58,-1794.35 2698.73,-1824.39 3020,-1741 3044.47,-1734.65 3070.28,-1727.01 3095.06,-1719.19"/>
|
||||
<polygon fill="#fe0ba1" stroke="#fe0ba1" points="1835.33,-2043.91 1824.37,-2043.53 1830.7,-2045.8 1826.07,-2047.69 1826.07,-2047.69 1826.07,-2047.69 1830.7,-2045.8 1827.78,-2051.86 1835.33,-2043.91 1835.33,-2043.91"/>
|
||||
<polygon fill="#fe0ba1" stroke="#fe0ba1" points="3095.34,-1719.1 3106.23,-1720.36 3100.1,-1717.59 3104.87,-1716.07 3104.87,-1716.07 3104.87,-1716.07 3100.1,-1717.59 3103.5,-1711.78 3095.34,-1719.1 3095.34,-1719.1"/>
|
||||
<path fill="none" stroke="#45754c" d="M1835.52,-2043.83C1953.39,-1995.79 2129.1,-1928.29 2287,-1884 2606.58,-1794.35 2698.73,-1824.39 3020,-1741 3044.47,-1734.65 3070.28,-1727.01 3095.06,-1719.19"/>
|
||||
<polygon fill="#45754c" stroke="#45754c" points="1835.33,-2043.91 1824.37,-2043.53 1830.7,-2045.8 1826.07,-2047.69 1826.07,-2047.69 1826.07,-2047.69 1830.7,-2045.8 1827.78,-2051.86 1835.33,-2043.91 1835.33,-2043.91"/>
|
||||
<polygon fill="#45754c" stroke="#45754c" points="3095.34,-1719.1 3106.23,-1720.36 3100.1,-1717.59 3104.87,-1716.07 3104.87,-1716.07 3104.87,-1716.07 3100.1,-1717.59 3103.5,-1711.78 3095.34,-1719.1 3095.34,-1719.1"/>
|
||||
</g>
|
||||
<!-- Component -->
|
||||
<g id="node85" class="node"><title>Component</title>
|
||||
@ -616,19 +616,19 @@
|
||||
</g>
|
||||
<!-- Project->Component -->
|
||||
<g id="edge22" class="edge"><title>Project->Component</title>
|
||||
<path fill="none" stroke="#48ab8e" d="M1699,-1994.28C1699,-1903.05 1699,-1776.98 1699,-1713.48"/>
|
||||
<polygon fill="#48ab8e" stroke="#48ab8e" points="1699,-1994.38 1694.5,-2004.38 1699,-1999.38 1699,-2004.38 1699,-2004.38 1699,-2004.38 1699,-1999.38 1703.5,-2004.38 1699,-1994.38 1699,-1994.38"/>
|
||||
<polygon fill="#48ab8e" stroke="#48ab8e" points="1699,-1713.11 1703.5,-1703.11 1699,-1708.11 1699,-1703.11 1699,-1703.11 1699,-1703.11 1699,-1708.11 1694.5,-1703.11 1699,-1713.11 1699,-1713.11"/>
|
||||
<path fill="none" stroke="#f0ac5d" d="M1699,-1994.28C1699,-1903.05 1699,-1776.98 1699,-1713.48"/>
|
||||
<polygon fill="#f0ac5d" stroke="#f0ac5d" points="1699,-1994.38 1694.5,-2004.38 1699,-1999.38 1699,-2004.38 1699,-2004.38 1699,-2004.38 1699,-1999.38 1703.5,-2004.38 1699,-1994.38 1699,-1994.38"/>
|
||||
<polygon fill="#f0ac5d" stroke="#f0ac5d" points="1699,-1713.11 1703.5,-1703.11 1699,-1708.11 1699,-1703.11 1699,-1703.11 1699,-1703.11 1699,-1708.11 1694.5,-1703.11 1699,-1713.11 1699,-1713.11"/>
|
||||
</g>
|
||||
<!-- CustomAsset -->
|
||||
<g id="node17" class="node"><title>CustomAsset</title>
|
||||
<path fill="none" stroke="black" d="M5869,-2959C5869,-2959 6089,-2959 6089,-2959 6095,-2959 6101,-2965 6101,-2971 6101,-2971 6101,-3038 6101,-3038 6101,-3044 6095,-3050 6089,-3050 6089,-3050 5869,-3050 5869,-3050 5863,-3050 5857,-3044 5857,-3038 5857,-3038 5857,-2971 5857,-2971 5857,-2965 5863,-2959 5869,-2959"/>
|
||||
<text text-anchor="middle" x="5979" y="-3034.8" font-family="Times,serif" font-size="14.00">CustomAsset</text>
|
||||
<polyline fill="none" stroke="black" points="5857,-3027 6101,-3027 "/>
|
||||
<text text-anchor="start" x="5865" y="-3011.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="5865" y="-2996.8" font-family="Times,serif" font-size="14.00">name :character varying</text>
|
||||
<text text-anchor="start" x="5865" y="-2981.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="5865" y="-2966.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M5869,-2966.5C5869,-2966.5 6089,-2966.5 6089,-2966.5 6095,-2966.5 6101,-2972.5 6101,-2978.5 6101,-2978.5 6101,-3045.5 6101,-3045.5 6101,-3051.5 6095,-3057.5 6089,-3057.5 6089,-3057.5 5869,-3057.5 5869,-3057.5 5863,-3057.5 5857,-3051.5 5857,-3045.5 5857,-3045.5 5857,-2978.5 5857,-2978.5 5857,-2972.5 5863,-2966.5 5869,-2966.5"/>
|
||||
<text text-anchor="middle" x="5979" y="-3042.3" font-family="Times,serif" font-size="14.00">CustomAsset</text>
|
||||
<polyline fill="none" stroke="black" points="5857,-3034.5 6101,-3034.5 "/>
|
||||
<text text-anchor="start" x="5865" y="-3019.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="5865" y="-3004.3" font-family="Times,serif" font-size="14.00">name :character varying</text>
|
||||
<text text-anchor="start" x="5865" y="-2989.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="5865" y="-2974.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
<!-- CustomAssetFile -->
|
||||
<g id="node86" class="node"><title>CustomAssetFile</title>
|
||||
@ -645,9 +645,9 @@
|
||||
</g>
|
||||
<!-- CustomAsset->CustomAssetFile -->
|
||||
<g id="edge27" class="edge"><title>CustomAsset->CustomAssetFile</title>
|
||||
<path fill="none" stroke="#51b285" d="M5979,-2950.41C5979,-2886.16 5979,-2777.55 5979,-2704.58"/>
|
||||
<ellipse fill="none" stroke="#51b285" cx="5979" cy="-2954.7" rx="4" ry="4"/>
|
||||
<ellipse fill="#51b285" stroke="#51b285" cx="5979" cy="-2700.31" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#618d80" d="M5979,-2958.36C5979,-2892.44 5979,-2779.08 5979,-2704.07"/>
|
||||
<ellipse fill="none" stroke="#618d80" cx="5979" cy="-2962.43" rx="4" ry="4"/>
|
||||
<ellipse fill="#618d80" stroke="#618d80" cx="5979" cy="-2700.03" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- AgeRange -->
|
||||
<g id="node18" class="node"><title>AgeRange</title>
|
||||
@ -662,9 +662,9 @@
|
||||
</g>
|
||||
<!-- AgeRange->Event -->
|
||||
<g id="edge28" class="edge"><title>AgeRange->Event</title>
|
||||
<path fill="none" stroke="#59f930" d="M4403.94,-2567.19C4429.38,-2482.36 4476.43,-2325.46 4508.7,-2217.86"/>
|
||||
<ellipse fill="none" stroke="#59f930" cx="4402.78" cy="-2571.06" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#59f930" stroke="#59f930" points="4508.71,-2217.83 4515.9,-2209.54 4510.15,-2213.04 4511.58,-2208.25 4511.58,-2208.25 4511.58,-2208.25 4510.15,-2213.04 4507.27,-2206.96 4508.71,-2217.83 4508.71,-2217.83"/>
|
||||
<path fill="none" stroke="#c69de0" d="M4403.94,-2567.19C4429.38,-2482.36 4476.43,-2325.46 4508.7,-2217.86"/>
|
||||
<ellipse fill="none" stroke="#c69de0" cx="4402.78" cy="-2571.06" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#c69de0" stroke="#c69de0" points="4508.71,-2217.83 4515.9,-2209.54 4510.15,-2213.04 4511.58,-2208.25 4511.58,-2208.25 4511.58,-2208.25 4510.15,-2213.04 4507.27,-2206.96 4508.71,-2217.83 4508.71,-2217.83"/>
|
||||
</g>
|
||||
<!-- Wallet -->
|
||||
<g id="node19" class="node"><title>Wallet</title>
|
||||
@ -694,64 +694,64 @@
|
||||
</g>
|
||||
<!-- Wallet->WalletTransaction -->
|
||||
<g id="edge29" class="edge"><title>Wallet->WalletTransaction</title>
|
||||
<path fill="none" stroke="#3e0178" d="M622.329,-1751.57C621.037,-1748.06 619.91,-1744.52 619,-1741 603.78,-1682.04 606.032,-1663.49 619,-1604 619.623,-1601.14 620.334,-1598.27 621.121,-1595.4"/>
|
||||
<ellipse fill="none" stroke="#3e0178" cx="623.904" cy="-1755.48" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#3e0178" stroke="#3e0178" points="621.183,-1595.19 628.381,-1586.92 622.628,-1590.41 624.073,-1585.62 624.073,-1585.62 624.073,-1585.62 622.628,-1590.41 619.765,-1584.32 621.183,-1595.19 621.183,-1595.19"/>
|
||||
<path fill="none" stroke="#400a8d" d="M622.329,-1751.57C621.037,-1748.06 619.91,-1744.52 619,-1741 603.78,-1682.04 606.032,-1663.49 619,-1604 619.623,-1601.14 620.334,-1598.27 621.121,-1595.4"/>
|
||||
<ellipse fill="none" stroke="#400a8d" cx="623.904" cy="-1755.48" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#400a8d" stroke="#400a8d" points="621.183,-1595.19 628.381,-1586.92 622.628,-1590.41 624.073,-1585.62 624.073,-1585.62 624.073,-1585.62 622.628,-1590.41 619.765,-1584.32 621.183,-1595.19 621.183,-1595.19"/>
|
||||
</g>
|
||||
<!-- Stats::Event -->
|
||||
<g id="node20" class="node"><title>Stats::Event</title>
|
||||
<polygon fill="none" stroke="black" points="6119,-2981.5 6119,-3027.5 6201,-3027.5 6201,-2981.5 6119,-2981.5"/>
|
||||
<text text-anchor="middle" x="6160" y="-3012.3" font-family="Times,serif" font-size="14.00">Stats::Event</text>
|
||||
<polyline fill="none" stroke="black" points="6119,-3004.5 6201,-3004.5 "/>
|
||||
<text text-anchor="middle" x="6160" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="6119,-2989 6119,-3035 6201,-3035 6201,-2989 6119,-2989"/>
|
||||
<text text-anchor="middle" x="6160" y="-3019.8" font-family="Times,serif" font-size="14.00">Stats::Event</text>
|
||||
<polyline fill="none" stroke="black" points="6119,-3012 6201,-3012 "/>
|
||||
<text text-anchor="middle" x="6160" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Stats::Project -->
|
||||
<g id="node21" class="node"><title>Stats::Project</title>
|
||||
<polygon fill="none" stroke="black" points="6219.5,-2981.5 6219.5,-3027.5 6308.5,-3027.5 6308.5,-2981.5 6219.5,-2981.5"/>
|
||||
<text text-anchor="middle" x="6264" y="-3012.3" font-family="Times,serif" font-size="14.00">Stats::Project</text>
|
||||
<polyline fill="none" stroke="black" points="6219.5,-3004.5 6308.5,-3004.5 "/>
|
||||
<text text-anchor="middle" x="6264" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="6219.5,-2989 6219.5,-3035 6308.5,-3035 6308.5,-2989 6219.5,-2989"/>
|
||||
<text text-anchor="middle" x="6264" y="-3019.8" font-family="Times,serif" font-size="14.00">Stats::Project</text>
|
||||
<polyline fill="none" stroke="black" points="6219.5,-3012 6308.5,-3012 "/>
|
||||
<text text-anchor="middle" x="6264" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Stats::User -->
|
||||
<g id="node22" class="node"><title>Stats::User</title>
|
||||
<polygon fill="none" stroke="black" points="6327,-2981.5 6327,-3027.5 6403,-3027.5 6403,-2981.5 6327,-2981.5"/>
|
||||
<text text-anchor="middle" x="6365" y="-3012.3" font-family="Times,serif" font-size="14.00">Stats::User</text>
|
||||
<polyline fill="none" stroke="black" points="6327,-3004.5 6403,-3004.5 "/>
|
||||
<text text-anchor="middle" x="6365" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="6327,-2989 6327,-3035 6403,-3035 6403,-2989 6327,-2989"/>
|
||||
<text text-anchor="middle" x="6365" y="-3019.8" font-family="Times,serif" font-size="14.00">Stats::User</text>
|
||||
<polyline fill="none" stroke="black" points="6327,-3012 6403,-3012 "/>
|
||||
<text text-anchor="middle" x="6365" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Stats::Subscription -->
|
||||
<g id="node23" class="node"><title>Stats::Subscription</title>
|
||||
<polygon fill="none" stroke="black" points="6421.5,-2981.5 6421.5,-3027.5 6540.5,-3027.5 6540.5,-2981.5 6421.5,-2981.5"/>
|
||||
<text text-anchor="middle" x="6481" y="-3012.3" font-family="Times,serif" font-size="14.00">Stats::Subscription</text>
|
||||
<polyline fill="none" stroke="black" points="6421.5,-3004.5 6540.5,-3004.5 "/>
|
||||
<text text-anchor="middle" x="6481" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="6421.5,-2989 6421.5,-3035 6540.5,-3035 6540.5,-2989 6421.5,-2989"/>
|
||||
<text text-anchor="middle" x="6481" y="-3019.8" font-family="Times,serif" font-size="14.00">Stats::Subscription</text>
|
||||
<polyline fill="none" stroke="black" points="6421.5,-3012 6540.5,-3012 "/>
|
||||
<text text-anchor="middle" x="6481" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Stats::Training -->
|
||||
<g id="node24" class="node"><title>Stats::Training</title>
|
||||
<polygon fill="none" stroke="black" points="6558.5,-2981.5 6558.5,-3027.5 6655.5,-3027.5 6655.5,-2981.5 6558.5,-2981.5"/>
|
||||
<text text-anchor="middle" x="6607" y="-3012.3" font-family="Times,serif" font-size="14.00">Stats::Training</text>
|
||||
<polyline fill="none" stroke="black" points="6558.5,-3004.5 6655.5,-3004.5 "/>
|
||||
<text text-anchor="middle" x="6607" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="6558.5,-2989 6558.5,-3035 6655.5,-3035 6655.5,-2989 6558.5,-2989"/>
|
||||
<text text-anchor="middle" x="6607" y="-3019.8" font-family="Times,serif" font-size="14.00">Stats::Training</text>
|
||||
<polyline fill="none" stroke="black" points="6558.5,-3012 6655.5,-3012 "/>
|
||||
<text text-anchor="middle" x="6607" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Stats::Account -->
|
||||
<g id="node25" class="node"><title>Stats::Account</title>
|
||||
<polygon fill="none" stroke="black" points="6674,-2981.5 6674,-3027.5 6770,-3027.5 6770,-2981.5 6674,-2981.5"/>
|
||||
<text text-anchor="middle" x="6722" y="-3012.3" font-family="Times,serif" font-size="14.00">Stats::Account</text>
|
||||
<polyline fill="none" stroke="black" points="6674,-3004.5 6770,-3004.5 "/>
|
||||
<text text-anchor="middle" x="6722" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="6674,-2989 6674,-3035 6770,-3035 6770,-2989 6674,-2989"/>
|
||||
<text text-anchor="middle" x="6722" y="-3019.8" font-family="Times,serif" font-size="14.00">Stats::Account</text>
|
||||
<polyline fill="none" stroke="black" points="6674,-3012 6770,-3012 "/>
|
||||
<text text-anchor="middle" x="6722" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Stats::Machine -->
|
||||
<g id="node26" class="node"><title>Stats::Machine</title>
|
||||
<polygon fill="none" stroke="black" points="6788,-2981.5 6788,-3027.5 6886,-3027.5 6886,-2981.5 6788,-2981.5"/>
|
||||
<text text-anchor="middle" x="6837" y="-3012.3" font-family="Times,serif" font-size="14.00">Stats::Machine</text>
|
||||
<polyline fill="none" stroke="black" points="6788,-3004.5 6886,-3004.5 "/>
|
||||
<text text-anchor="middle" x="6837" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="6788,-2989 6788,-3035 6886,-3035 6886,-2989 6788,-2989"/>
|
||||
<text text-anchor="middle" x="6837" y="-3019.8" font-family="Times,serif" font-size="14.00">Stats::Machine</text>
|
||||
<polyline fill="none" stroke="black" points="6788,-3012 6886,-3012 "/>
|
||||
<text text-anchor="middle" x="6837" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- PriceCategory->EventPriceCategory -->
|
||||
<g id="edge30" class="edge"><title>PriceCategory->EventPriceCategory</title>
|
||||
<path fill="none" stroke="#7a110c" d="M5045.19,-1613.73C4970.06,-1541.14 4841.39,-1416.84 4762.11,-1340.27"/>
|
||||
<ellipse fill="none" stroke="#7a110c" cx="5048.26" cy="-1616.69" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#7a110c" stroke="#7a110c" points="4761.79,-1339.96 4757.73,-1329.77 4758.2,-1336.48 4754.6,-1333.01 4754.6,-1333.01 4754.6,-1333.01 4758.2,-1336.48 4751.47,-1336.24 4761.79,-1339.96 4761.79,-1339.96"/>
|
||||
<path fill="none" stroke="#90c331" d="M5045.19,-1613.73C4970.06,-1541.14 4841.39,-1416.84 4762.11,-1340.27"/>
|
||||
<ellipse fill="none" stroke="#90c331" cx="5048.26" cy="-1616.69" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#90c331" stroke="#90c331" points="4761.79,-1339.96 4757.73,-1329.77 4758.2,-1336.48 4754.6,-1333.01 4754.6,-1333.01 4754.6,-1333.01 4758.2,-1336.48 4751.47,-1336.24 4761.79,-1339.96 4761.79,-1339.96"/>
|
||||
</g>
|
||||
<!-- Invoice -->
|
||||
<g id="node28" class="node"><title>Invoice</title>
|
||||
@ -779,15 +779,15 @@
|
||||
</g>
|
||||
<!-- Invoice->InvoiceItem -->
|
||||
<g id="edge31" class="edge"><title>Invoice->InvoiceItem</title>
|
||||
<path fill="none" stroke="#b1dda5" d="M2787.25,-283.911C2857.57,-245.782 2944.58,-198.599 3016.31,-159.703"/>
|
||||
<ellipse fill="none" stroke="#b1dda5" cx="2783.73" cy="-285.821" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b1dda5" stroke="#b1dda5" points="3016.64,-159.526 3027.58,-158.715 3021.04,-157.142 3025.43,-154.759 3025.43,-154.759 3025.43,-154.759 3021.04,-157.142 3023.29,-150.803 3016.64,-159.526 3016.64,-159.526"/>
|
||||
<path fill="none" stroke="#c6053c" d="M2787.25,-283.911C2857.57,-245.782 2944.58,-198.599 3016.31,-159.703"/>
|
||||
<ellipse fill="none" stroke="#c6053c" cx="2783.73" cy="-285.821" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#c6053c" stroke="#c6053c" points="3016.64,-159.526 3027.58,-158.715 3021.04,-157.142 3025.43,-154.759 3025.43,-154.759 3025.43,-154.759 3021.04,-157.142 3023.29,-150.803 3016.64,-159.526 3016.64,-159.526"/>
|
||||
</g>
|
||||
<!-- Invoice->Invoice -->
|
||||
<g id="edge32" class="edge"><title>Invoice->Invoice</title>
|
||||
<path fill="none" stroke="#6f21fa" d="M2787.31,-375.636C2794.03,-370.546 2798,-363.667 2798,-355 2798,-346.333 2794.03,-339.454 2787.31,-334.364"/>
|
||||
<ellipse fill="none" stroke="#6f21fa" cx="2783.82" cy="-377.739" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#6f21fa" stroke="#6f21fa" cx="2783.82" cy="-332.261" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#83c0a9" d="M2787.31,-375.636C2794.03,-370.546 2798,-363.667 2798,-355 2798,-346.333 2794.03,-339.454 2787.31,-334.364"/>
|
||||
<ellipse fill="none" stroke="#83c0a9" cx="2783.82" cy="-377.739" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#83c0a9" stroke="#83c0a9" cx="2783.82" cy="-332.261" rx="4.00002" ry="4.00002"/>
|
||||
<text text-anchor="middle" x="2812" y="-351.3" font-family="Times,serif" font-size="14.00">avoir</text>
|
||||
</g>
|
||||
<!-- PlanFile -->
|
||||
@ -817,9 +817,9 @@
|
||||
</g>
|
||||
<!-- OfferDay->Invoice -->
|
||||
<g id="edge33" class="edge"><title>OfferDay->Invoice</title>
|
||||
<path fill="none" stroke="#65d87d" d="M2408.37,-641.271C2431.27,-615.049 2457.87,-584.589 2482,-557 2497.23,-539.586 2513.2,-521.328 2529.06,-503.216"/>
|
||||
<ellipse fill="none" stroke="#65d87d" cx="2405.57" cy="-644.479" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#65d87d" stroke="#65d87d" points="2529.25,-502.99 2539.23,-498.429 2532.55,-499.228 2535.84,-495.465 2535.84,-495.465 2535.84,-495.465 2532.55,-499.228 2532.45,-492.501 2529.25,-502.99 2529.25,-502.99"/>
|
||||
<path fill="none" stroke="#c6fe8b" d="M2408.37,-641.271C2431.27,-615.049 2457.87,-584.589 2482,-557 2497.23,-539.586 2513.2,-521.328 2529.06,-503.216"/>
|
||||
<ellipse fill="none" stroke="#c6fe8b" cx="2405.57" cy="-644.479" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#c6fe8b" stroke="#c6fe8b" points="2529.25,-502.99 2539.23,-498.429 2532.55,-499.228 2535.84,-495.465 2535.84,-495.465 2535.84,-495.465 2532.55,-499.228 2532.45,-492.501 2529.25,-502.99 2529.25,-502.99"/>
|
||||
</g>
|
||||
<!-- StatisticIndex -->
|
||||
<g id="node59" class="node"><title>StatisticIndex</title>
|
||||
@ -836,15 +836,15 @@
|
||||
</g>
|
||||
<!-- StatisticType->StatisticIndex -->
|
||||
<g id="edge34" class="edge"><title>StatisticType->StatisticIndex</title>
|
||||
<path fill="none" stroke="#b19a7c" d="M5711.91,-2544.03C5709.64,-2443.46 5709.7,-2275.43 5712.1,-2178.56"/>
|
||||
<ellipse fill="none" stroke="#b19a7c" cx="5712.01" cy="-2548.27" rx="4" ry="4"/>
|
||||
<ellipse fill="#b19a7c" stroke="#b19a7c" cx="5712.2" cy="-2174.56" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#42cbe1" d="M5711.91,-2544.03C5709.64,-2443.46 5709.7,-2275.43 5712.1,-2178.56"/>
|
||||
<ellipse fill="none" stroke="#42cbe1" cx="5712.01" cy="-2548.27" rx="4" ry="4"/>
|
||||
<ellipse fill="#42cbe1" stroke="#42cbe1" cx="5712.2" cy="-2174.56" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- StatisticType->StatisticTypeSubType -->
|
||||
<g id="edge35" class="edge"><title>StatisticType->StatisticTypeSubType</title>
|
||||
<path fill="none" stroke="#c0d68a" d="M5675.91,-2544.9C5623.19,-2439.56 5532.92,-2259.2 5485.76,-2164.95"/>
|
||||
<ellipse fill="none" stroke="#c0d68a" cx="5677.81" cy="-2548.7" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#c0d68a" stroke="#c0d68a" points="5485.67,-2164.77 5485.21,-2153.82 5483.43,-2160.3 5481.19,-2155.83 5481.19,-2155.83 5481.19,-2155.83 5483.43,-2160.3 5477.17,-2157.85 5485.67,-2164.77 5485.67,-2164.77"/>
|
||||
<path fill="none" stroke="#62c87e" d="M5675.91,-2544.9C5623.19,-2439.56 5532.92,-2259.2 5485.76,-2164.95"/>
|
||||
<ellipse fill="none" stroke="#62c87e" cx="5677.81" cy="-2548.7" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#62c87e" stroke="#62c87e" points="5485.67,-2164.77 5485.21,-2153.82 5483.43,-2160.3 5481.19,-2155.83 5481.19,-2155.83 5481.19,-2155.83 5483.43,-2160.3 5477.17,-2157.85 5485.67,-2164.77 5485.67,-2164.77"/>
|
||||
</g>
|
||||
<!-- StatisticCustomAggregation -->
|
||||
<g id="node77" class="node"><title>StatisticCustomAggregation</title>
|
||||
@ -862,9 +862,9 @@
|
||||
</g>
|
||||
<!-- StatisticType->StatisticCustomAggregation -->
|
||||
<g id="edge36" class="edge"><title>StatisticType->StatisticCustomAggregation</title>
|
||||
<path fill="none" stroke="#f4efaa" d="M5758.12,-2544.85C5806.97,-2447.23 5888.03,-2285.26 5937.19,-2187.04"/>
|
||||
<ellipse fill="none" stroke="#f4efaa" cx="5756.19" cy="-2548.7" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f4efaa" stroke="#f4efaa" points="5937.22,-2186.97 5945.72,-2180.04 5939.46,-2182.5 5941.7,-2178.03 5941.7,-2178.03 5941.7,-2178.03 5939.46,-2182.5 5937.68,-2176.01 5937.22,-2186.97 5937.22,-2186.97"/>
|
||||
<path fill="none" stroke="#007425" d="M5758.12,-2544.85C5806.97,-2447.23 5888.03,-2285.26 5937.19,-2187.04"/>
|
||||
<ellipse fill="none" stroke="#007425" cx="5756.19" cy="-2548.7" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#007425" stroke="#007425" points="5937.22,-2186.97 5945.72,-2180.04 5939.46,-2182.5 5941.7,-2178.03 5941.7,-2178.03 5941.7,-2178.03 5939.46,-2182.5 5937.68,-2176.01 5937.22,-2186.97 5937.22,-2186.97"/>
|
||||
</g>
|
||||
<!-- Address -->
|
||||
<g id="node33" class="node"><title>Address</title>
|
||||
@ -885,15 +885,15 @@
|
||||
</g>
|
||||
<!-- Plan->Price -->
|
||||
<g id="edge43" class="edge"><title>Plan->Price</title>
|
||||
<path fill="none" stroke="#b54a1a" d="M3056.35,-1164.43C3069.27,-1156.69 3082.58,-1149.7 3096,-1144 3143.22,-1123.96 3162.78,-1146.04 3210,-1126 3239.06,-1113.66 3267.66,-1095.39 3292.98,-1076.4"/>
|
||||
<ellipse fill="none" stroke="#b54a1a" cx="3052.62" cy="-1166.72" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b54a1a" stroke="#b54a1a" points="3293.13,-1076.29 3303.81,-1073.8 3297.1,-1073.25 3301.08,-1070.22 3301.08,-1070.22 3301.08,-1070.22 3297.1,-1073.25 3298.35,-1066.64 3293.13,-1076.29 3293.13,-1076.29"/>
|
||||
<path fill="none" stroke="#489792" d="M3056.35,-1164.43C3069.27,-1156.69 3082.58,-1149.7 3096,-1144 3143.22,-1123.96 3162.78,-1146.04 3210,-1126 3239.06,-1113.66 3267.66,-1095.39 3292.98,-1076.4"/>
|
||||
<ellipse fill="none" stroke="#489792" cx="3052.62" cy="-1166.72" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#489792" stroke="#489792" points="3293.13,-1076.29 3303.81,-1073.8 3297.1,-1073.25 3301.08,-1070.22 3301.08,-1070.22 3301.08,-1070.22 3297.1,-1073.25 3298.35,-1066.64 3293.13,-1076.29 3293.13,-1076.29"/>
|
||||
</g>
|
||||
<!-- Plan->PlanFile -->
|
||||
<g id="edge42" class="edge"><title>Plan->PlanFile</title>
|
||||
<path fill="none" stroke="#a80c34" d="M3055.01,-1186.61C3076.29,-1162.54 3085.81,-1136.06 3066,-1111 3044.47,-1083.77 3021.46,-1107.67 2990,-1093 2974.87,-1085.95 2959.78,-1076.99 2945.5,-1067.36"/>
|
||||
<ellipse fill="none" stroke="#a80c34" cx="3052.09" cy="-1189.75" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#a80c34" stroke="#a80c34" cx="2941.85" cy="-1064.86" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#caf08f" d="M3055.01,-1186.61C3076.29,-1162.54 3085.81,-1136.06 3066,-1111 3044.47,-1083.77 3021.46,-1107.67 2990,-1093 2974.87,-1085.95 2959.78,-1076.99 2945.5,-1067.36"/>
|
||||
<ellipse fill="none" stroke="#caf08f" cx="3052.09" cy="-1189.75" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#caf08f" stroke="#caf08f" cx="2941.85" cy="-1064.86" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Credit -->
|
||||
<g id="node44" class="node"><title>Credit</title>
|
||||
@ -910,22 +910,22 @@
|
||||
</g>
|
||||
<!-- Plan->Credit -->
|
||||
<g id="edge37" class="edge"><title>Plan->Credit</title>
|
||||
<path fill="none" stroke="#d69cbd" d="M2904.37,-1137.18C2898.67,-1127.36 2891.64,-1118.42 2883,-1111 2856.69,-1088.41 2760.53,-1105.01 2728,-1093 2710.83,-1086.66 2693.7,-1077.89 2677.55,-1068.2"/>
|
||||
<ellipse fill="none" stroke="#d69cbd" cx="2906.4" cy="-1140.95" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#d69cbd" stroke="#d69cbd" points="2677.19,-1067.97 2671.04,-1058.89 2672.94,-1065.35 2668.68,-1062.72 2668.68,-1062.72 2668.68,-1062.72 2672.94,-1065.35 2666.32,-1066.55 2677.19,-1067.97 2677.19,-1067.97"/>
|
||||
<path fill="none" stroke="#146954" d="M2904.37,-1137.18C2898.67,-1127.36 2891.64,-1118.42 2883,-1111 2856.69,-1088.41 2760.53,-1105.01 2728,-1093 2710.83,-1086.66 2693.7,-1077.89 2677.55,-1068.2"/>
|
||||
<ellipse fill="none" stroke="#146954" cx="2906.4" cy="-1140.95" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#146954" stroke="#146954" points="2677.19,-1067.97 2671.04,-1058.89 2672.94,-1065.35 2668.68,-1062.72 2668.68,-1062.72 2668.68,-1062.72 2672.94,-1065.35 2666.32,-1066.55 2677.19,-1067.97 2677.19,-1067.97"/>
|
||||
</g>
|
||||
<!-- Plan->Credit -->
|
||||
<g id="edge38" class="edge"><title>Plan->Credit</title>
|
||||
<path fill="none" stroke="#594dfe" d="M2922.24,-1136.87C2917.72,-1127.27 2911.77,-1118.46 2904,-1111 2875.64,-1083.77 2764.97,-1106.37 2728,-1093 2710.67,-1086.73 2693.4,-1077.95 2677.14,-1068.2"/>
|
||||
<ellipse fill="none" stroke="#594dfe" cx="2923.86" cy="-1140.67" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#594dfe" stroke="#594dfe" points="2676.72,-1067.94 2670.57,-1058.86 2672.46,-1065.32 2668.21,-1062.69 2668.21,-1062.69 2668.21,-1062.69 2672.46,-1065.32 2665.85,-1066.52 2676.72,-1067.94 2676.72,-1067.94"/>
|
||||
<path fill="none" stroke="#a8690b" d="M2922.24,-1136.87C2917.72,-1127.27 2911.77,-1118.46 2904,-1111 2875.64,-1083.77 2764.97,-1106.37 2728,-1093 2710.67,-1086.73 2693.4,-1077.95 2677.14,-1068.2"/>
|
||||
<ellipse fill="none" stroke="#a8690b" cx="2923.86" cy="-1140.67" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#a8690b" stroke="#a8690b" points="2676.72,-1067.94 2670.57,-1058.86 2672.46,-1065.32 2668.21,-1062.69 2668.21,-1062.69 2668.21,-1062.69 2672.46,-1065.32 2665.85,-1066.52 2676.72,-1067.94 2676.72,-1067.94"/>
|
||||
<text text-anchor="middle" x="2957.5" y="-1114.8" font-family="Times,serif" font-size="14.00">training_credits</text>
|
||||
</g>
|
||||
<!-- Plan->Credit -->
|
||||
<g id="edge39" class="edge"><title>Plan->Credit</title>
|
||||
<path fill="none" stroke="#0eb22d" d="M2798.67,-1147.18C2797.45,-1146.11 2796.22,-1145.05 2795,-1144 2776.75,-1128.27 2771.51,-1125.14 2752,-1111 2732.65,-1096.98 2711.81,-1082.36 2691.59,-1068.42"/>
|
||||
<ellipse fill="none" stroke="#0eb22d" cx="2801.83" cy="-1149.95" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#0eb22d" stroke="#0eb22d" points="2691.51,-1068.36 2685.83,-1058.99 2687.39,-1065.53 2683.28,-1062.69 2683.28,-1062.69 2683.28,-1062.69 2687.39,-1065.53 2680.72,-1066.4 2691.51,-1068.36 2691.51,-1068.36"/>
|
||||
<path fill="none" stroke="#90531a" d="M2798.67,-1147.18C2797.45,-1146.11 2796.22,-1145.05 2795,-1144 2776.75,-1128.27 2771.51,-1125.14 2752,-1111 2732.65,-1096.98 2711.81,-1082.36 2691.59,-1068.42"/>
|
||||
<ellipse fill="none" stroke="#90531a" cx="2801.83" cy="-1149.95" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#90531a" stroke="#90531a" points="2691.51,-1068.36 2685.83,-1058.99 2687.39,-1065.53 2683.28,-1062.69 2683.28,-1062.69 2683.28,-1062.69 2687.39,-1065.53 2680.72,-1066.4 2691.51,-1068.36 2691.51,-1068.36"/>
|
||||
<text text-anchor="middle" x="2818" y="-1114.8" font-family="Times,serif" font-size="14.00">machine_credits</text>
|
||||
</g>
|
||||
<!-- Subscription -->
|
||||
@ -944,9 +944,9 @@
|
||||
</g>
|
||||
<!-- Plan->Subscription -->
|
||||
<g id="edge40" class="edge"><title>Plan->Subscription</title>
|
||||
<path fill="none" stroke="#a1c622" d="M2797.5,-1145.15C2796.67,-1144.76 2795.84,-1144.38 2795,-1144 2747.64,-1122.7 2613.05,-1135.52 2562,-1126 2511.82,-1116.65 2499.79,-1110.91 2452,-1093 2426.28,-1083.36 2399.29,-1072.08 2373.46,-1060.69"/>
|
||||
<ellipse fill="none" stroke="#a1c622" cx="2801.34" cy="-1147.07" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#a1c622" stroke="#a1c622" points="2373.14,-1060.55 2365.83,-1052.38 2368.57,-1058.52 2364,-1056.49 2364,-1056.49 2364,-1056.49 2368.57,-1058.52 2362.17,-1060.6 2373.14,-1060.55 2373.14,-1060.55"/>
|
||||
<path fill="none" stroke="#b2df44" d="M2797.5,-1145.15C2796.67,-1144.76 2795.84,-1144.38 2795,-1144 2747.64,-1122.7 2613.05,-1135.52 2562,-1126 2511.82,-1116.65 2499.79,-1110.91 2452,-1093 2426.28,-1083.36 2399.29,-1072.08 2373.46,-1060.69"/>
|
||||
<ellipse fill="none" stroke="#b2df44" cx="2801.34" cy="-1147.07" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b2df44" stroke="#b2df44" points="2373.14,-1060.55 2365.83,-1052.38 2368.57,-1058.52 2364,-1056.49 2364,-1056.49 2364,-1056.49 2368.57,-1058.52 2362.17,-1060.6 2373.14,-1060.55 2373.14,-1060.55"/>
|
||||
</g>
|
||||
<!-- PlanImage -->
|
||||
<g id="node75" class="node"><title>PlanImage</title>
|
||||
@ -963,9 +963,9 @@
|
||||
</g>
|
||||
<!-- Plan->PlanImage -->
|
||||
<g id="edge41" class="edge"><title>Plan->PlanImage</title>
|
||||
<path fill="none" stroke="#86401c" d="M3054.56,-1165.58C3065.49,-1153.02 3075.57,-1139.75 3084,-1126 3094.27,-1109.24 3101.78,-1089.52 3107.24,-1070.57"/>
|
||||
<ellipse fill="none" stroke="#86401c" cx="3051.78" cy="-1168.7" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#86401c" stroke="#86401c" cx="3108.32" cy="-1066.65" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#604d25" d="M3054.56,-1165.58C3065.49,-1153.02 3075.57,-1139.75 3084,-1126 3094.27,-1109.24 3101.78,-1089.52 3107.24,-1070.57"/>
|
||||
<ellipse fill="none" stroke="#604d25" cx="3051.78" cy="-1168.7" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#604d25" stroke="#604d25" cx="3108.32" cy="-1066.65" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- MachineFile -->
|
||||
<g id="node35" class="node"><title>MachineFile</title>
|
||||
@ -993,9 +993,9 @@
|
||||
</g>
|
||||
<!-- Organization->Address -->
|
||||
<g id="edge44" class="edge"><title>Organization->Address</title>
|
||||
<path fill="none" stroke="#341e8c" d="M183.6,-1611.11C179.113,-1549.53 172.064,-1452.79 166.659,-1378.61"/>
|
||||
<ellipse fill="none" stroke="#341e8c" cx="183.918" cy="-1615.48" rx="4" ry="4"/>
|
||||
<ellipse fill="#341e8c" stroke="#341e8c" cx="166.366" cy="-1374.59" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#6b7c45" d="M183.6,-1611.11C179.113,-1549.53 172.064,-1452.79 166.659,-1378.61"/>
|
||||
<ellipse fill="none" stroke="#6b7c45" cx="183.918" cy="-1615.48" rx="4" ry="4"/>
|
||||
<ellipse fill="#6b7c45" stroke="#6b7c45" cx="166.366" cy="-1374.59" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- StatisticGraph -->
|
||||
<g id="node37" class="node"><title>StatisticGraph</title>
|
||||
@ -1036,47 +1036,47 @@
|
||||
</g>
|
||||
<!-- Licence->Project -->
|
||||
<g id="edge45" class="edge"><title>Licence->Project</title>
|
||||
<path fill="none" stroke="#10cb84" d="M1699,-2581.67C1699,-2499.67 1699,-2324.67 1699,-2210.66"/>
|
||||
<ellipse fill="none" stroke="#10cb84" cx="1699" cy="-2585.77" rx="4" ry="4"/>
|
||||
<polygon fill="#10cb84" stroke="#10cb84" points="1699,-2210.51 1703.5,-2200.51 1699,-2205.51 1699,-2200.51 1699,-2200.51 1699,-2200.51 1699,-2205.51 1694.5,-2200.51 1699,-2210.51 1699,-2210.51"/>
|
||||
<path fill="none" stroke="#bacf74" d="M1699,-2581.67C1699,-2499.67 1699,-2324.67 1699,-2210.66"/>
|
||||
<ellipse fill="none" stroke="#bacf74" cx="1699" cy="-2585.77" rx="4" ry="4"/>
|
||||
<polygon fill="#bacf74" stroke="#bacf74" points="1699,-2210.51 1703.5,-2200.51 1699,-2205.51 1699,-2200.51 1699,-2200.51 1699,-2200.51 1699,-2205.51 1694.5,-2200.51 1699,-2210.51 1699,-2210.51"/>
|
||||
</g>
|
||||
<!-- User->Project -->
|
||||
<g id="edge49" class="edge"><title>User->Project</title>
|
||||
<path fill="none" stroke="#8a9e90" d="M2048.5,-2460.85C1967.49,-2378.02 1871.99,-2280.37 1801.31,-2208.1"/>
|
||||
<ellipse fill="none" stroke="#8a9e90" cx="2051.46" cy="-2463.87" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#8a9e90" stroke="#8a9e90" points="1801.11,-2207.9 1797.33,-2197.6 1797.61,-2204.32 1794.11,-2200.75 1794.11,-2200.75 1794.11,-2200.75 1797.61,-2204.32 1790.9,-2203.9 1801.11,-2207.9 1801.11,-2207.9"/>
|
||||
<path fill="none" stroke="#316bec" d="M2048.5,-2460.85C1967.49,-2378.02 1871.99,-2280.37 1801.31,-2208.1"/>
|
||||
<ellipse fill="none" stroke="#316bec" cx="2051.46" cy="-2463.87" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#316bec" stroke="#316bec" points="1801.11,-2207.9 1797.33,-2197.6 1797.61,-2204.32 1794.11,-2200.75 1794.11,-2200.75 1794.11,-2200.75 1797.61,-2204.32 1790.9,-2203.9 1801.11,-2207.9 1801.11,-2207.9"/>
|
||||
<text text-anchor="middle" x="1974" y="-2342.8" font-family="Times,serif" font-size="14.00">my_projects</text>
|
||||
</g>
|
||||
<!-- User->Wallet -->
|
||||
<g id="edge61" class="edge"><title>User->Wallet</title>
|
||||
<path fill="none" stroke="#5df8b8" d="M2046.97,-2508.19C1973.54,-2459.8 1884.03,-2407.1 1797,-2372 1698.28,-2332.19 1662.51,-2358.78 1563,-2321 1240.04,-2198.39 893.083,-1974.68 739.322,-1870.15"/>
|
||||
<ellipse fill="none" stroke="#5df8b8" cx="2050.69" cy="-2510.65" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#5df8b8" stroke="#5df8b8" cx="735.899" cy="-1867.82" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#493ebf" d="M2046.97,-2508.19C1973.54,-2459.8 1884.03,-2407.1 1797,-2372 1698.28,-2332.19 1662.51,-2358.78 1563,-2321 1240.04,-2198.39 893.083,-1974.68 739.322,-1870.15"/>
|
||||
<ellipse fill="none" stroke="#493ebf" cx="2050.69" cy="-2510.65" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#493ebf" stroke="#493ebf" cx="735.899" cy="-1867.82" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- User->Invoice -->
|
||||
<g id="edge59" class="edge"><title>User->Invoice</title>
|
||||
<path fill="none" stroke="#adad8b" d="M2047.48,-2498.19C1975,-2448.81 1886.07,-2398.09 1797,-2372 1743.36,-2356.29 846.861,-2356.03 791,-2354 656.888,-2349.13 308.468,-2380.14 188,-2321 73.302,-2264.69 0,-2231.27 0,-2103.5 0,-2103.5 0,-2103.5 0,-707 0,-449.368 1988.03,-374.827 2525.45,-359.384"/>
|
||||
<ellipse fill="none" stroke="#adad8b" cx="2051.15" cy="-2500.7" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#adad8b" stroke="#adad8b" points="2525.57,-359.38 2535.7,-363.593 2530.57,-359.238 2535.57,-359.095 2535.57,-359.095 2535.57,-359.095 2530.57,-359.238 2535.44,-354.597 2525.57,-359.38 2525.57,-359.38"/>
|
||||
<path fill="none" stroke="#e9248e" d="M2047.48,-2498.19C1975,-2448.81 1886.07,-2398.09 1797,-2372 1743.36,-2356.29 846.861,-2356.03 791,-2354 656.888,-2349.13 308.468,-2380.14 188,-2321 73.302,-2264.69 0,-2231.27 0,-2103.5 0,-2103.5 0,-2103.5 0,-707 0,-449.368 1988.03,-374.827 2525.45,-359.384"/>
|
||||
<ellipse fill="none" stroke="#e9248e" cx="2051.15" cy="-2500.7" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#e9248e" stroke="#e9248e" points="2525.57,-359.38 2535.7,-363.593 2530.57,-359.238 2535.57,-359.095 2535.57,-359.095 2535.57,-359.095 2530.57,-359.238 2535.44,-354.597 2525.57,-359.38 2525.57,-359.38"/>
|
||||
</g>
|
||||
<!-- User->Credit -->
|
||||
<g id="edge56" class="edge"><title>User->Credit</title>
|
||||
<path fill="none" stroke="#26cf78" d="M2212.54,-2362.11C2216.83,-2219.6 2227.76,-2041.29 2254,-1884 2264.86,-1818.9 2280.86,-1805.67 2294,-1741 2347.28,-1478.83 2322.3,-1407.06 2371,-1144 2373.75,-1129.16 2369.91,-1123.04 2379,-1111 2382.07,-1106.93 2414,-1088.35 2451.72,-1067.24"/>
|
||||
<polygon fill="#26cf78" stroke="#26cf78" points="2212.54,-2362.31 2207.75,-2372.18 2212.39,-2367.31 2212.25,-2372.31 2212.25,-2372.31 2212.25,-2372.31 2212.39,-2367.31 2216.74,-2372.44 2212.54,-2362.31 2212.54,-2362.31"/>
|
||||
<polygon fill="#26cf78" stroke="#26cf78" points="2452.16,-1066.99 2463.09,-1066.05 2456.53,-1064.55 2460.9,-1062.12 2460.9,-1062.12 2460.9,-1062.12 2456.53,-1064.55 2458.7,-1058.19 2452.16,-1066.99 2452.16,-1066.99"/>
|
||||
<path fill="none" stroke="#afe689" d="M2212.54,-2362.11C2216.83,-2219.6 2227.76,-2041.29 2254,-1884 2264.86,-1818.9 2280.86,-1805.67 2294,-1741 2347.28,-1478.83 2322.3,-1407.06 2371,-1144 2373.75,-1129.16 2369.91,-1123.04 2379,-1111 2382.07,-1106.93 2414,-1088.35 2451.72,-1067.24"/>
|
||||
<polygon fill="#afe689" stroke="#afe689" points="2212.54,-2362.31 2207.75,-2372.18 2212.39,-2367.31 2212.25,-2372.31 2212.25,-2372.31 2212.25,-2372.31 2212.39,-2367.31 2216.74,-2372.44 2212.54,-2362.31 2212.54,-2362.31"/>
|
||||
<polygon fill="#afe689" stroke="#afe689" points="2452.16,-1066.99 2463.09,-1066.05 2456.53,-1064.55 2460.9,-1062.12 2460.9,-1062.12 2460.9,-1062.12 2456.53,-1064.55 2458.7,-1058.19 2452.16,-1066.99 2452.16,-1066.99"/>
|
||||
</g>
|
||||
<!-- User->Credit -->
|
||||
<g id="edge57" class="edge"><title>User->Credit</title>
|
||||
<path fill="none" stroke="#6203c4" d="M2243.53,-2362.26C2245.08,-2348.31 2246.58,-2334.49 2248,-2321 2268.37,-2127.07 2251.8,-2075.79 2287,-1884 2302.42,-1799.99 2461.39,-1222.52 2495,-1144 2505.51,-1119.45 2519.37,-1094 2532.97,-1071.24"/>
|
||||
<polygon fill="#6203c4" stroke="#6203c4" points="2243.51,-2362.5 2237.92,-2371.94 2242.95,-2367.47 2242.39,-2372.44 2242.39,-2372.44 2242.39,-2372.44 2242.95,-2367.47 2246.87,-2372.94 2243.51,-2362.5 2243.51,-2362.5"/>
|
||||
<polygon fill="#6203c4" stroke="#6203c4" points="2532.98,-1071.22 2542.01,-1064.99 2535.57,-1066.94 2538.16,-1062.66 2538.16,-1062.66 2538.16,-1062.66 2535.57,-1066.94 2534.31,-1060.33 2532.98,-1071.22 2532.98,-1071.22"/>
|
||||
<path fill="none" stroke="#a96bda" d="M2243.53,-2362.26C2245.08,-2348.31 2246.58,-2334.49 2248,-2321 2268.37,-2127.07 2251.8,-2075.79 2287,-1884 2302.42,-1799.99 2461.39,-1222.52 2495,-1144 2505.51,-1119.45 2519.37,-1094 2532.97,-1071.24"/>
|
||||
<polygon fill="#a96bda" stroke="#a96bda" points="2243.51,-2362.5 2237.92,-2371.94 2242.95,-2367.47 2242.39,-2372.44 2242.39,-2372.44 2242.39,-2372.44 2242.95,-2367.47 2246.87,-2372.94 2243.51,-2362.5 2243.51,-2362.5"/>
|
||||
<polygon fill="#a96bda" stroke="#a96bda" points="2532.98,-1071.22 2542.01,-1064.99 2535.57,-1066.94 2538.16,-1062.66 2538.16,-1062.66 2538.16,-1062.66 2535.57,-1066.94 2534.31,-1060.33 2532.98,-1071.22 2532.98,-1071.22"/>
|
||||
<text text-anchor="middle" x="2401.5" y="-1668.8" font-family="Times,serif" font-size="14.00">training_credits</text>
|
||||
</g>
|
||||
<!-- User->Credit -->
|
||||
<g id="edge58" class="edge"><title>User->Credit</title>
|
||||
<path fill="none" stroke="#92a9b9" d="M2186.18,-2362.18C2172.02,-2154.79 2163.53,-1859.61 2200,-1604 2230.08,-1393.19 2222.86,-1325.64 2334,-1144 2345.16,-1125.76 2351.41,-1123.15 2369,-1111 2384.05,-1100.61 2389.76,-1101.41 2406,-1093 2421.64,-1084.9 2437.95,-1076.22 2454.07,-1067.51"/>
|
||||
<polygon fill="#92a9b9" stroke="#92a9b9" points="2186.19,-2362.32 2182.39,-2372.61 2186.53,-2367.31 2186.88,-2372.3 2186.88,-2372.3 2186.88,-2372.3 2186.53,-2367.31 2191.37,-2371.99 2186.19,-2362.32 2186.19,-2362.32"/>
|
||||
<polygon fill="#92a9b9" stroke="#92a9b9" points="2454.21,-1067.44 2465.14,-1066.63 2458.6,-1065.05 2463,-1062.67 2463,-1062.67 2463,-1062.67 2458.6,-1065.05 2460.85,-1058.71 2454.21,-1067.44 2454.21,-1067.44"/>
|
||||
<path fill="none" stroke="#cef91d" d="M2186.18,-2362.18C2172.02,-2154.79 2163.53,-1859.61 2200,-1604 2230.08,-1393.19 2222.86,-1325.64 2334,-1144 2345.16,-1125.76 2351.41,-1123.15 2369,-1111 2384.05,-1100.61 2389.76,-1101.41 2406,-1093 2421.64,-1084.9 2437.95,-1076.22 2454.07,-1067.51"/>
|
||||
<polygon fill="#cef91d" stroke="#cef91d" points="2186.19,-2362.32 2182.39,-2372.61 2186.53,-2367.31 2186.88,-2372.3 2186.88,-2372.3 2186.88,-2372.3 2186.53,-2367.31 2191.37,-2371.99 2186.19,-2362.32 2186.19,-2362.32"/>
|
||||
<polygon fill="#cef91d" stroke="#cef91d" points="2454.21,-1067.44 2465.14,-1066.63 2458.6,-1065.05 2463,-1062.67 2463,-1062.67 2463,-1062.67 2458.6,-1065.05 2460.85,-1058.71 2454.21,-1067.44 2454.21,-1067.44"/>
|
||||
<text text-anchor="middle" x="2245" y="-1668.8" font-family="Times,serif" font-size="14.00">machine_credits</text>
|
||||
</g>
|
||||
<!-- Role -->
|
||||
@ -1093,9 +1093,9 @@
|
||||
</g>
|
||||
<!-- User->Role -->
|
||||
<g id="edge47" class="edge"><title>User->Role</title>
|
||||
<path fill="none" stroke="#34d90b" d="M2116.76,-2362.37C2094.96,-2280.47 2078,-2189.22 2078,-2103.5 2078,-2103.5 2078,-2103.5 2078,-1271.5 2078,-1196.8 2043.27,-1118.07 2013.2,-1063.9"/>
|
||||
<polygon fill="#34d90b" stroke="#34d90b" points="2116.84,-2362.65 2115.1,-2373.48 2118.14,-2367.48 2119.44,-2372.31 2119.44,-2372.31 2119.44,-2372.31 2118.14,-2367.48 2123.79,-2371.13 2116.84,-2362.65 2116.84,-2362.65"/>
|
||||
<polygon fill="#34d90b" stroke="#34d90b" points="2013.14,-1063.8 2012.15,-1052.88 2010.69,-1059.44 2008.23,-1055.09 2008.23,-1055.09 2008.23,-1055.09 2010.69,-1059.44 2004.31,-1057.3 2013.14,-1063.8 2013.14,-1063.8"/>
|
||||
<path fill="none" stroke="#5963b9" d="M2116.76,-2362.37C2094.96,-2280.47 2078,-2189.22 2078,-2103.5 2078,-2103.5 2078,-2103.5 2078,-1271.5 2078,-1196.8 2043.27,-1118.07 2013.2,-1063.9"/>
|
||||
<polygon fill="#5963b9" stroke="#5963b9" points="2116.84,-2362.65 2115.1,-2373.48 2118.14,-2367.48 2119.44,-2372.31 2119.44,-2372.31 2119.44,-2372.31 2118.14,-2367.48 2123.79,-2371.13 2116.84,-2362.65 2116.84,-2362.65"/>
|
||||
<polygon fill="#5963b9" stroke="#5963b9" points="2013.14,-1063.8 2012.15,-1052.88 2010.69,-1059.44 2008.23,-1055.09 2008.23,-1055.09 2008.23,-1055.09 2010.69,-1059.44 2004.31,-1057.3 2013.14,-1063.8 2013.14,-1063.8"/>
|
||||
</g>
|
||||
<!-- Notification -->
|
||||
<g id="node54" class="node"><title>Notification</title>
|
||||
@ -1116,15 +1116,15 @@
|
||||
</g>
|
||||
<!-- User->Notification -->
|
||||
<g id="edge46" class="edge"><title>User->Notification</title>
|
||||
<path fill="none" stroke="#8dcd57" d="M2319.76,-2364.63C2342.44,-2309.9 2365.11,-2255.22 2383.8,-2210.13"/>
|
||||
<ellipse fill="none" stroke="#8dcd57" cx="2318.17" cy="-2368.46" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#8dcd57" stroke="#8dcd57" points="2383.9,-2209.9 2391.88,-2202.38 2385.81,-2205.28 2387.73,-2200.66 2387.73,-2200.66 2387.73,-2200.66 2385.81,-2205.28 2383.57,-2198.94 2383.9,-2209.9 2383.9,-2209.9"/>
|
||||
<path fill="none" stroke="#2f39c3" d="M2319.76,-2364.63C2342.44,-2309.9 2365.11,-2255.22 2383.8,-2210.13"/>
|
||||
<ellipse fill="none" stroke="#2f39c3" cx="2318.17" cy="-2368.46" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#2f39c3" stroke="#2f39c3" points="2383.9,-2209.9 2391.88,-2202.38 2385.81,-2205.28 2387.73,-2200.66 2387.73,-2200.66 2387.73,-2200.66 2385.81,-2205.28 2383.57,-2198.94 2383.9,-2209.9 2383.9,-2209.9"/>
|
||||
</g>
|
||||
<!-- User->Subscription -->
|
||||
<g id="edge54" class="edge"><title>User->Subscription</title>
|
||||
<path fill="none" stroke="#2359a5" d="M2141.86,-2364.23C2141.22,-2360.8 2140.6,-2357.39 2140,-2354 2120.53,-2243.86 2116,-2215.34 2116,-2103.5 2116,-2103.5 2116,-2103.5 2116,-1271.5 2116,-1198.3 2121.32,-1177 2153,-1111 2158.25,-1100.06 2164.56,-1089.09 2171.33,-1078.49"/>
|
||||
<ellipse fill="none" stroke="#2359a5" cx="2142.64" cy="-2368.32" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#2359a5" stroke="#2359a5" points="2171.37,-1078.44 2180.62,-1072.55 2174.11,-1074.26 2176.86,-1070.08 2176.86,-1070.08 2176.86,-1070.08 2174.11,-1074.26 2173.09,-1067.61 2171.37,-1078.44 2171.37,-1078.44"/>
|
||||
<path fill="none" stroke="#8b5cf4" d="M2141.86,-2364.23C2141.22,-2360.8 2140.6,-2357.39 2140,-2354 2120.53,-2243.86 2116,-2215.34 2116,-2103.5 2116,-2103.5 2116,-2103.5 2116,-1271.5 2116,-1198.3 2121.32,-1177 2153,-1111 2158.25,-1100.06 2164.56,-1089.09 2171.33,-1078.49"/>
|
||||
<ellipse fill="none" stroke="#8b5cf4" cx="2142.64" cy="-2368.32" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#8b5cf4" stroke="#8b5cf4" points="2171.37,-1078.44 2180.62,-1072.55 2174.11,-1074.26 2176.86,-1070.08 2176.86,-1070.08 2176.86,-1070.08 2174.11,-1074.26 2173.09,-1067.61 2171.37,-1078.44 2171.37,-1078.44"/>
|
||||
</g>
|
||||
<!-- Training -->
|
||||
<g id="node56" class="node"><title>Training</title>
|
||||
@ -1142,15 +1142,15 @@
|
||||
</g>
|
||||
<!-- User->Training -->
|
||||
<g id="edge53" class="edge"><title>User->Training</title>
|
||||
<path fill="none" stroke="#a15087" d="M2377.67,-2604.59C2580.06,-2570.82 2924.6,-2491.71 3169,-2321 3218.9,-2286.14 3260.97,-2232.17 3290.64,-2186.72"/>
|
||||
<polygon fill="#a15087" stroke="#a15087" points="2377.41,-2604.63 2366.81,-2601.82 2372.48,-2605.45 2367.54,-2606.26 2367.54,-2606.26 2367.54,-2606.26 2372.48,-2605.45 2368.28,-2610.7 2377.41,-2604.63 2377.41,-2604.63"/>
|
||||
<polygon fill="#a15087" stroke="#a15087" points="3290.82,-2186.45 3300.01,-2180.48 3293.52,-2182.25 3296.23,-2178.04 3296.23,-2178.04 3296.23,-2178.04 3293.52,-2182.25 3292.44,-2175.61 3290.82,-2186.45 3290.82,-2186.45"/>
|
||||
<path fill="none" stroke="#dce834" d="M2377.67,-2604.59C2580.06,-2570.82 2924.6,-2491.71 3169,-2321 3218.9,-2286.14 3260.97,-2232.17 3290.64,-2186.72"/>
|
||||
<polygon fill="#dce834" stroke="#dce834" points="2377.41,-2604.63 2366.81,-2601.82 2372.48,-2605.45 2367.54,-2606.26 2367.54,-2606.26 2367.54,-2606.26 2372.48,-2605.45 2368.28,-2610.7 2377.41,-2604.63 2377.41,-2604.63"/>
|
||||
<polygon fill="#dce834" stroke="#dce834" points="3290.82,-2186.45 3300.01,-2180.48 3293.52,-2182.25 3296.23,-2178.04 3296.23,-2178.04 3296.23,-2178.04 3293.52,-2182.25 3292.44,-2175.61 3290.82,-2186.45 3290.82,-2186.45"/>
|
||||
</g>
|
||||
<!-- User->Reservation -->
|
||||
<g id="edge51" class="edge"><title>User->Reservation</title>
|
||||
<path fill="none" stroke="#b68989" d="M2375.73,-2622.21C2630.54,-2607.51 3126.57,-2549.2 3469,-2321 3533.49,-2278.03 3820.55,-1806.21 3882,-1759 3899.41,-1745.63 3912.82,-1756.86 3928,-1741 3978.35,-1688.41 3968.6,-1657.74 3981,-1586 3993.65,-1512.82 3993.91,-1428.55 3991.42,-1365.98"/>
|
||||
<ellipse fill="none" stroke="#b68989" cx="2371.51" cy="-2622.44" rx="4" ry="4"/>
|
||||
<polygon fill="#b68989" stroke="#b68989" points="3991.41,-1365.73 3995.48,-1355.54 3991.2,-1360.73 3990.98,-1355.74 3990.98,-1355.74 3990.98,-1355.74 3991.2,-1360.73 3986.49,-1355.93 3991.41,-1365.73 3991.41,-1365.73"/>
|
||||
<path fill="none" stroke="#2b8f54" d="M2375.73,-2622.21C2630.54,-2607.51 3126.57,-2549.2 3469,-2321 3533.49,-2278.03 3820.55,-1806.21 3882,-1759 3899.41,-1745.63 3912.82,-1756.86 3928,-1741 3978.35,-1688.41 3968.6,-1657.74 3981,-1586 3993.65,-1512.82 3993.91,-1428.55 3991.42,-1365.98"/>
|
||||
<ellipse fill="none" stroke="#2b8f54" cx="2371.51" cy="-2622.44" rx="4" ry="4"/>
|
||||
<polygon fill="#2b8f54" stroke="#2b8f54" points="3991.41,-1365.73 3995.48,-1355.54 3991.2,-1360.73 3990.98,-1355.74 3990.98,-1355.74 3990.98,-1355.74 3991.2,-1360.73 3986.49,-1355.93 3991.41,-1365.73 3991.41,-1365.73"/>
|
||||
</g>
|
||||
<!-- UsersCredit -->
|
||||
<g id="node61" class="node"><title>UsersCredit</title>
|
||||
@ -1166,15 +1166,15 @@
|
||||
</g>
|
||||
<!-- User->UsersCredit -->
|
||||
<g id="edge55" class="edge"><title>User->UsersCredit</title>
|
||||
<path fill="none" stroke="#a47d08" d="M2174.4,-2364.1C2173.07,-2349.54 2171.92,-2335.1 2171,-2321 2162.5,-2190.36 2144.05,-1246.89 2225,-1144 2268.02,-1089.32 2322.6,-1140.96 2373,-1093 2441.33,-1027.97 2403.01,-976.613 2452,-896 2456.14,-889.188 2509.9,-827.07 2554.18,-776.268"/>
|
||||
<ellipse fill="none" stroke="#a47d08" cx="2174.78" cy="-2368.22" rx="4" ry="4"/>
|
||||
<polygon fill="#a47d08" stroke="#a47d08" points="2554.34,-776.08 2564.31,-771.5 2557.63,-772.312 2560.91,-768.543 2560.91,-768.543 2560.91,-768.543 2557.63,-772.312 2557.52,-765.586 2554.34,-776.08 2554.34,-776.08"/>
|
||||
<path fill="none" stroke="#f81dc7" d="M2174.4,-2364.1C2173.07,-2349.54 2171.92,-2335.1 2171,-2321 2162.5,-2190.36 2144.05,-1246.89 2225,-1144 2268.02,-1089.32 2322.6,-1140.96 2373,-1093 2441.33,-1027.97 2403.01,-976.613 2452,-896 2456.14,-889.188 2509.9,-827.07 2554.18,-776.268"/>
|
||||
<ellipse fill="none" stroke="#f81dc7" cx="2174.78" cy="-2368.22" rx="4" ry="4"/>
|
||||
<polygon fill="#f81dc7" stroke="#f81dc7" points="2554.34,-776.08 2564.31,-771.5 2557.63,-772.312 2560.91,-768.543 2560.91,-768.543 2560.91,-768.543 2557.63,-772.312 2557.52,-765.586 2554.34,-776.08 2554.34,-776.08"/>
|
||||
</g>
|
||||
<!-- User->UserTag -->
|
||||
<g id="edge60" class="edge"><title>User->UserTag</title>
|
||||
<path fill="none" stroke="#ea0e6d" d="M2375.51,-2586.38C2516.43,-2545.41 2718.99,-2471.23 2864,-2354 2928.17,-2302.13 2978.69,-2220.59 3008.4,-2164.72"/>
|
||||
<ellipse fill="none" stroke="#ea0e6d" cx="2371.43" cy="-2587.56" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#ea0e6d" stroke="#ea0e6d" points="3008.52,-2164.5 3017.15,-2157.73 3010.84,-2160.07 3013.17,-2155.64 3013.17,-2155.64 3013.17,-2155.64 3010.84,-2160.07 3009.18,-2153.55 3008.52,-2164.5 3008.52,-2164.5"/>
|
||||
<path fill="none" stroke="#f51ca6" d="M2375.51,-2586.38C2516.43,-2545.41 2718.99,-2471.23 2864,-2354 2928.17,-2302.13 2978.69,-2220.59 3008.4,-2164.72"/>
|
||||
<ellipse fill="none" stroke="#f51ca6" cx="2371.43" cy="-2587.56" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#f51ca6" stroke="#f51ca6" points="3008.52,-2164.5 3017.15,-2157.73 3010.84,-2160.07 3013.17,-2155.64 3013.17,-2155.64 3013.17,-2155.64 3010.84,-2160.07 3009.18,-2153.55 3008.52,-2164.5 3008.52,-2164.5"/>
|
||||
</g>
|
||||
<!-- Export -->
|
||||
<g id="node67" class="node"><title>Export</title>
|
||||
@ -1192,9 +1192,9 @@
|
||||
</g>
|
||||
<!-- User->Export -->
|
||||
<g id="edge62" class="edge"><title>User->Export</title>
|
||||
<path fill="none" stroke="#f8ca5a" d="M2373.76,-2505.85C2438.47,-2453.19 2510.94,-2388.22 2568,-2321 2602.63,-2280.21 2634.04,-2229.32 2657.52,-2187.03"/>
|
||||
<ellipse fill="none" stroke="#f8ca5a" cx="2370.63" cy="-2508.39" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f8ca5a" stroke="#f8ca5a" points="2657.59,-2186.9 2666.36,-2180.31 2660,-2182.52 2662.41,-2178.14 2662.41,-2178.14 2662.41,-2178.14 2660,-2182.52 2658.47,-2175.97 2657.59,-2186.9 2657.59,-2186.9"/>
|
||||
<path fill="none" stroke="#1ca38c" d="M2373.76,-2505.85C2438.47,-2453.19 2510.94,-2388.22 2568,-2321 2602.63,-2280.21 2634.04,-2229.32 2657.52,-2187.03"/>
|
||||
<ellipse fill="none" stroke="#1ca38c" cx="2370.63" cy="-2508.39" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#1ca38c" stroke="#1ca38c" points="2657.59,-2186.9 2666.36,-2180.31 2660,-2182.52 2662.41,-2178.14 2662.41,-2178.14 2662.41,-2178.14 2660,-2182.52 2658.47,-2175.97 2657.59,-2186.9 2657.59,-2186.9"/>
|
||||
</g>
|
||||
<!-- UserTraining -->
|
||||
<g id="node73" class="node"><title>UserTraining</title>
|
||||
@ -1209,15 +1209,15 @@
|
||||
</g>
|
||||
<!-- User->UserTraining -->
|
||||
<g id="edge52" class="edge"><title>User->UserTraining</title>
|
||||
<path fill="none" stroke="#474906" d="M2375.42,-2596.26C2523.32,-2558.96 2732.09,-2480.12 2831,-2321 2882.27,-2238.52 2871.26,-1972.37 2831,-1884 2801.8,-1819.91 2742.38,-1767.76 2689.73,-1731.4"/>
|
||||
<ellipse fill="none" stroke="#474906" cx="2371.42" cy="-2597.26" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#474906" stroke="#474906" points="2689.62,-1731.33 2683.87,-1721.98 2685.48,-1728.52 2681.34,-1725.71 2681.34,-1725.71 2681.34,-1725.71 2685.48,-1728.52 2678.81,-1729.43 2689.62,-1731.33 2689.62,-1731.33"/>
|
||||
<path fill="none" stroke="#51685a" d="M2375.42,-2596.26C2523.32,-2558.96 2732.09,-2480.12 2831,-2321 2882.27,-2238.52 2871.26,-1972.37 2831,-1884 2801.8,-1819.91 2742.38,-1767.76 2689.73,-1731.4"/>
|
||||
<ellipse fill="none" stroke="#51685a" cx="2371.42" cy="-2597.26" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#51685a" stroke="#51685a" points="2689.62,-1731.33 2683.87,-1721.98 2685.48,-1728.52 2681.34,-1725.71 2681.34,-1725.71 2681.34,-1725.71 2685.48,-1728.52 2678.81,-1729.43 2689.62,-1731.33 2689.62,-1731.33"/>
|
||||
</g>
|
||||
<!-- User->ProjectUser -->
|
||||
<g id="edge50" class="edge"><title>User->ProjectUser</title>
|
||||
<path fill="none" stroke="#752306" d="M2046.97,-2508.19C1973.54,-2459.8 1884.03,-2407.1 1797,-2372 1698.28,-2332.19 1660.44,-2363.83 1563,-2321 1241.5,-2179.69 1177.53,-2101.48 917,-1866 877.622,-1830.41 838.477,-1785.9 807.994,-1748.65"/>
|
||||
<ellipse fill="none" stroke="#752306" cx="2050.69" cy="-2510.65" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#752306" stroke="#752306" points="807.933,-1748.58 805.115,-1737.98 804.778,-1744.7 801.624,-1740.82 801.624,-1740.82 801.624,-1740.82 804.778,-1744.7 798.132,-1743.66 807.933,-1748.58 807.933,-1748.58"/>
|
||||
<path fill="none" stroke="#a6f2a4" d="M2046.97,-2508.19C1973.54,-2459.8 1884.03,-2407.1 1797,-2372 1698.28,-2332.19 1660.44,-2363.83 1563,-2321 1241.5,-2179.69 1177.53,-2101.48 917,-1866 877.622,-1830.41 838.477,-1785.9 807.994,-1748.65"/>
|
||||
<ellipse fill="none" stroke="#a6f2a4" cx="2050.69" cy="-2510.65" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#a6f2a4" stroke="#a6f2a4" points="807.933,-1748.58 805.115,-1737.98 804.778,-1744.7 801.624,-1740.82 801.624,-1740.82 801.624,-1740.82 804.778,-1744.7 798.132,-1743.66 807.933,-1748.58 807.933,-1748.58"/>
|
||||
</g>
|
||||
<!-- Profile -->
|
||||
<g id="node87" class="node"><title>Profile</title>
|
||||
@ -1254,9 +1254,9 @@
|
||||
</g>
|
||||
<!-- User->Profile -->
|
||||
<g id="edge48" class="edge"><title>User->Profile</title>
|
||||
<path fill="none" stroke="#d861ed" d="M2047.47,-2498.23C1974.99,-2448.86 1886.06,-2398.13 1797,-2372 1694.95,-2342.05 943.466,-2378.61 840,-2354 698.381,-2320.32 549.994,-2244.39 447.968,-2184.9"/>
|
||||
<ellipse fill="none" stroke="#d861ed" cx="2051.13" cy="-2500.74" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#d861ed" stroke="#d861ed" cx="444.461" cy="-2182.85" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#95a94f" d="M2047.47,-2498.23C1974.99,-2448.86 1886.06,-2398.13 1797,-2372 1694.95,-2342.05 943.466,-2378.61 840,-2354 698.381,-2320.32 549.994,-2244.39 447.968,-2184.9"/>
|
||||
<ellipse fill="none" stroke="#95a94f" cx="2051.13" cy="-2500.74" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#95a94f" stroke="#95a94f" cx="444.461" cy="-2182.85" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- ProjectStepImage -->
|
||||
<g id="node42" class="node"><title>ProjectStepImage</title>
|
||||
@ -1273,9 +1273,9 @@
|
||||
</g>
|
||||
<!-- Credit->UsersCredit -->
|
||||
<g id="edge63" class="edge"><title>Credit->UsersCredit</title>
|
||||
<path fill="none" stroke="#189ac6" d="M2590.91,-918.458C2595.48,-875.187 2601.17,-821.143 2605.64,-778.791"/>
|
||||
<ellipse fill="none" stroke="#189ac6" cx="2590.49" cy="-922.46" rx="4" ry="4"/>
|
||||
<polygon fill="#189ac6" stroke="#189ac6" points="2605.64,-778.787 2611.16,-769.314 2606.17,-773.814 2606.69,-768.842 2606.69,-768.842 2606.69,-768.842 2606.17,-773.814 2602.21,-768.37 2605.64,-778.787 2605.64,-778.787"/>
|
||||
<path fill="none" stroke="#89bbba" d="M2590.91,-918.458C2595.48,-875.187 2601.17,-821.143 2605.64,-778.791"/>
|
||||
<ellipse fill="none" stroke="#89bbba" cx="2590.49" cy="-922.46" rx="4" ry="4"/>
|
||||
<polygon fill="#89bbba" stroke="#89bbba" points="2605.64,-778.787 2611.16,-769.314 2606.17,-773.814 2606.69,-768.842 2606.69,-768.842 2606.69,-768.842 2606.17,-773.814 2602.21,-768.37 2605.64,-778.787 2605.64,-778.787"/>
|
||||
</g>
|
||||
<!-- PartnerPlan -->
|
||||
<g id="node45" class="node"><title>PartnerPlan</title>
|
||||
@ -1300,74 +1300,75 @@
|
||||
</g>
|
||||
<!-- PartnerPlan->Price -->
|
||||
<g id="edge70" class="edge"><title>PartnerPlan->Price</title>
|
||||
<path fill="none" stroke="#05a07f" d="M2793.51,-1145.16C2794.33,-1144.77 2795.17,-1144.38 2796,-1144 2838.23,-1124.78 2957.88,-1131.06 3004,-1126 3114.53,-1113.87 3148.99,-1134.87 3252,-1093 3263.61,-1088.28 3275.11,-1082.29 3286.2,-1075.6"/>
|
||||
<ellipse fill="none" stroke="#05a07f" cx="2789.67" cy="-1147.1" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#05a07f" stroke="#05a07f" points="3286.52,-1075.4 3297.38,-1073.91 3290.76,-1072.75 3294.99,-1070.1 3294.99,-1070.1 3294.99,-1070.1 3290.76,-1072.75 3292.61,-1066.28 3286.52,-1075.4 3286.52,-1075.4"/>
|
||||
<path fill="none" stroke="#6d40f2" d="M2793.51,-1145.16C2794.33,-1144.77 2795.17,-1144.38 2796,-1144 2838.23,-1124.78 2957.88,-1131.06 3004,-1126 3114.53,-1113.87 3148.99,-1134.87 3252,-1093 3263.61,-1088.28 3275.11,-1082.29 3286.2,-1075.6"/>
|
||||
<ellipse fill="none" stroke="#6d40f2" cx="2789.67" cy="-1147.1" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#6d40f2" stroke="#6d40f2" points="3286.52,-1075.4 3297.38,-1073.91 3290.76,-1072.75 3294.99,-1070.1 3294.99,-1070.1 3294.99,-1070.1 3290.76,-1072.75 3292.61,-1066.28 3286.52,-1075.4 3286.52,-1075.4"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->PlanFile -->
|
||||
<g id="edge69" class="edge"><title>PartnerPlan->PlanFile</title>
|
||||
<path fill="none" stroke="#90bfe5" d="M2793.58,-1145.31C2794.38,-1144.87 2795.19,-1144.43 2796,-1144 2829.7,-1126.05 2856,-1155.69 2880,-1126 2892.61,-1110.4 2894.16,-1090.25 2890.74,-1070.46"/>
|
||||
<ellipse fill="none" stroke="#90bfe5" cx="2789.84" cy="-1147.47" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#90bfe5" stroke="#90bfe5" cx="2889.93" cy="-1066.53" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#de0511" d="M2793.58,-1145.31C2794.38,-1144.87 2795.19,-1144.43 2796,-1144 2829.7,-1126.05 2856,-1155.69 2880,-1126 2892.61,-1110.4 2894.16,-1090.25 2890.74,-1070.46"/>
|
||||
<ellipse fill="none" stroke="#de0511" cx="2789.84" cy="-1147.47" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#de0511" stroke="#de0511" cx="2889.93" cy="-1066.53" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->Credit -->
|
||||
<g id="edge64" class="edge"><title>PartnerPlan->Credit</title>
|
||||
<path fill="none" stroke="#a71152" d="M2553.26,-1137.03C2551.71,-1133.38 2550.29,-1129.7 2549,-1126 2543.03,-1108.83 2543.81,-1090.08 2547.79,-1072.28"/>
|
||||
<ellipse fill="none" stroke="#a71152" cx="2554.96" cy="-1140.83" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#a71152" stroke="#a71152" points="2547.82,-1072.18 2554.67,-1063.62 2549.07,-1067.34 2550.31,-1062.5 2550.31,-1062.5 2550.31,-1062.5 2549.07,-1067.34 2545.96,-1061.38 2547.82,-1072.18 2547.82,-1072.18"/>
|
||||
<path fill="none" stroke="#43ad88" d="M2553.26,-1137.03C2551.71,-1133.38 2550.29,-1129.7 2549,-1126 2543.03,-1108.83 2543.81,-1090.08 2547.79,-1072.28"/>
|
||||
<ellipse fill="none" stroke="#43ad88" cx="2554.96" cy="-1140.83" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#43ad88" stroke="#43ad88" points="2547.82,-1072.18 2554.67,-1063.62 2549.07,-1067.34 2550.31,-1062.5 2550.31,-1062.5 2550.31,-1062.5 2549.07,-1067.34 2545.96,-1061.38 2547.82,-1072.18 2547.82,-1072.18"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->Credit -->
|
||||
<g id="edge65" class="edge"><title>PartnerPlan->Credit</title>
|
||||
<path fill="none" stroke="#a802df" d="M2572.46,-1136.51C2571.2,-1133.02 2570.04,-1129.51 2569,-1126 2564,-1109.2 2563.27,-1090.72 2564.69,-1073.08"/>
|
||||
<ellipse fill="none" stroke="#a802df" cx="2573.95" cy="-1140.39" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#a802df" stroke="#a802df" points="2564.73,-1072.76 2570.24,-1063.28 2565.25,-1067.79 2565.76,-1062.81 2565.76,-1062.81 2565.76,-1062.81 2565.25,-1067.79 2561.29,-1062.35 2564.73,-1072.76 2564.73,-1072.76"/>
|
||||
<path fill="none" stroke="#1784fb" d="M2572.46,-1136.51C2571.2,-1133.02 2570.04,-1129.51 2569,-1126 2564,-1109.2 2563.27,-1090.72 2564.69,-1073.08"/>
|
||||
<ellipse fill="none" stroke="#1784fb" cx="2573.95" cy="-1140.39" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#1784fb" stroke="#1784fb" points="2564.73,-1072.76 2570.24,-1063.28 2565.25,-1067.79 2565.76,-1062.81 2565.76,-1062.81 2565.76,-1062.81 2565.25,-1067.79 2561.29,-1062.35 2564.73,-1072.76 2564.73,-1072.76"/>
|
||||
<text text-anchor="middle" x="2611.5" y="-1114.8" font-family="Times,serif" font-size="14.00">training_credits</text>
|
||||
</g>
|
||||
<!-- PartnerPlan->Credit -->
|
||||
<g id="edge66" class="edge"><title>PartnerPlan->Credit</title>
|
||||
<path fill="none" stroke="#af1897" d="M2660.4,-1136.29C2658.69,-1127.65 2656.58,-1119.15 2654,-1111 2649.8,-1097.73 2643.75,-1084.42 2636.93,-1071.81"/>
|
||||
<ellipse fill="none" stroke="#af1897" cx="2661.14" cy="-1140.33" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#af1897" stroke="#af1897" points="2636.74,-1071.48 2635.76,-1060.55 2634.29,-1067.12 2631.84,-1062.76 2631.84,-1062.76 2631.84,-1062.76 2634.29,-1067.12 2627.92,-1064.96 2636.74,-1071.48 2636.74,-1071.48"/>
|
||||
<path fill="none" stroke="#151cd0" d="M2660.4,-1136.29C2658.69,-1127.65 2656.58,-1119.15 2654,-1111 2649.8,-1097.73 2643.75,-1084.42 2636.93,-1071.81"/>
|
||||
<ellipse fill="none" stroke="#151cd0" cx="2661.14" cy="-1140.33" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#151cd0" stroke="#151cd0" points="2636.74,-1071.48 2635.76,-1060.55 2634.29,-1067.12 2631.84,-1062.76 2631.84,-1062.76 2631.84,-1062.76 2634.29,-1067.12 2627.92,-1064.96 2636.74,-1071.48 2636.74,-1071.48"/>
|
||||
<text text-anchor="middle" x="2703" y="-1114.8" font-family="Times,serif" font-size="14.00">machine_credits</text>
|
||||
</g>
|
||||
<!-- PartnerPlan->Role -->
|
||||
<g id="edge71" class="edge"><title>PartnerPlan->Role</title>
|
||||
<path fill="none" stroke="#bd8e90" d="M2533.94,-1243.34C2416.64,-1214.94 2241.51,-1164.98 2101,-1093 2083.6,-1084.08 2066.06,-1072.89 2049.73,-1061.3"/>
|
||||
<ellipse fill="none" stroke="#bd8e90" cx="2538.04" cy="-1244.32" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#bd8e90" stroke="#bd8e90" points="2049.41,-1061.07 2043.94,-1051.57 2045.35,-1058.14 2041.3,-1055.22 2041.3,-1055.22 2041.3,-1055.22 2045.35,-1058.14 2038.67,-1058.86 2049.41,-1061.07 2049.41,-1061.07"/>
|
||||
<path fill="none" stroke="#16c4eb" d="M2533.94,-1243.34C2416.64,-1214.94 2241.51,-1164.98 2101,-1093 2083.6,-1084.08 2066.06,-1072.89 2049.73,-1061.3"/>
|
||||
<ellipse fill="none" stroke="#16c4eb" cx="2538.04" cy="-1244.32" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#16c4eb" stroke="#16c4eb" points="2049.41,-1061.07 2043.94,-1051.57 2045.35,-1058.14 2041.3,-1055.22 2041.3,-1055.22 2041.3,-1055.22 2045.35,-1058.14 2038.67,-1058.86 2049.41,-1061.07 2049.41,-1061.07"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->Subscription -->
|
||||
<g id="edge67" class="edge"><title>PartnerPlan->Subscription</title>
|
||||
<path fill="none" stroke="#6fe3a8" d="M2535.21,-1188.71C2503.42,-1168.24 2469.46,-1146.34 2438,-1126 2412.89,-1109.76 2386.03,-1092.36 2360.39,-1075.72"/>
|
||||
<ellipse fill="none" stroke="#6fe3a8" cx="2538.6" cy="-1190.89" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#6fe3a8" stroke="#6fe3a8" points="2360.14,-1075.55 2354.2,-1066.33 2355.94,-1072.83 2351.75,-1070.11 2351.75,-1070.11 2351.75,-1070.11 2355.94,-1072.83 2349.3,-1073.88 2360.14,-1075.55 2360.14,-1075.55"/>
|
||||
<path fill="none" stroke="#ce9a74" d="M2535.21,-1188.71C2503.42,-1168.24 2469.46,-1146.34 2438,-1126 2412.89,-1109.76 2386.03,-1092.36 2360.39,-1075.72"/>
|
||||
<ellipse fill="none" stroke="#ce9a74" cx="2538.6" cy="-1190.89" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#ce9a74" stroke="#ce9a74" points="2360.14,-1075.55 2354.2,-1066.33 2355.94,-1072.83 2351.75,-1070.11 2351.75,-1070.11 2351.75,-1070.11 2355.94,-1072.83 2349.3,-1073.88 2360.14,-1075.55 2360.14,-1075.55"/>
|
||||
</g>
|
||||
<!-- PartnerPlan->PlanImage -->
|
||||
<g id="edge68" class="edge"><title>PartnerPlan->PlanImage</title>
|
||||
<path fill="none" stroke="#1894ae" d="M2793.56,-1145.27C2794.37,-1144.84 2795.18,-1144.42 2796,-1144 2837.42,-1122.93 2854.1,-1137.97 2899,-1126 2940.57,-1114.92 2952.12,-1113.39 2990,-1093 3003.94,-1085.49 3018.04,-1076.62 3031.56,-1067.33"/>
|
||||
<ellipse fill="none" stroke="#1894ae" cx="2789.79" cy="-1147.36" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#1894ae" stroke="#1894ae" cx="3034.86" cy="-1065.03" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#a997c9" d="M2793.56,-1145.27C2794.37,-1144.84 2795.18,-1144.42 2796,-1144 2837.42,-1122.93 2854.1,-1137.97 2899,-1126 2940.57,-1114.92 2952.12,-1113.39 2990,-1093 3003.94,-1085.49 3018.04,-1076.62 3031.56,-1067.33"/>
|
||||
<ellipse fill="none" stroke="#a997c9" cx="2789.79" cy="-1147.36" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#a997c9" stroke="#a997c9" cx="3034.86" cy="-1065.03" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- OAuth2Provider -->
|
||||
<g id="node46" class="node"><title>OAuth2Provider</title>
|
||||
<path fill="none" stroke="black" d="M6916,-2921.5C6916,-2921.5 7136,-2921.5 7136,-2921.5 7142,-2921.5 7148,-2927.5 7148,-2933.5 7148,-2933.5 7148,-3075.5 7148,-3075.5 7148,-3081.5 7142,-3087.5 7136,-3087.5 7136,-3087.5 6916,-3087.5 6916,-3087.5 6910,-3087.5 6904,-3081.5 6904,-3075.5 6904,-3075.5 6904,-2933.5 6904,-2933.5 6904,-2927.5 6910,-2921.5 6916,-2921.5"/>
|
||||
<text text-anchor="middle" x="7026" y="-3072.3" font-family="Times,serif" font-size="14.00">OAuth2Provider</text>
|
||||
<polyline fill="none" stroke="black" points="6904,-3064.5 7148,-3064.5 "/>
|
||||
<text text-anchor="start" x="6912" y="-3049.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="6912" y="-3034.3" font-family="Times,serif" font-size="14.00">base_url :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-3019.3" font-family="Times,serif" font-size="14.00">token_endpoint :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-3004.3" font-family="Times,serif" font-size="14.00">authorization_endpoint :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-2989.3" font-family="Times,serif" font-size="14.00">client_id :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-2974.3" font-family="Times,serif" font-size="14.00">client_secret :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-2959.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="6912" y="-2944.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="6912" y="-2929.3" font-family="Times,serif" font-size="14.00">profile_url :character varying</text>
|
||||
<path fill="none" stroke="black" d="M6916,-2921.5C6916,-2921.5 7136,-2921.5 7136,-2921.5 7142,-2921.5 7148,-2927.5 7148,-2933.5 7148,-2933.5 7148,-3090.5 7148,-3090.5 7148,-3096.5 7142,-3102.5 7136,-3102.5 7136,-3102.5 6916,-3102.5 6916,-3102.5 6910,-3102.5 6904,-3096.5 6904,-3090.5 6904,-3090.5 6904,-2933.5 6904,-2933.5 6904,-2927.5 6910,-2921.5 6916,-2921.5"/>
|
||||
<text text-anchor="middle" x="7026" y="-3087.3" font-family="Times,serif" font-size="14.00">OAuth2Provider</text>
|
||||
<polyline fill="none" stroke="black" points="6904,-3079.5 7148,-3079.5 "/>
|
||||
<text text-anchor="start" x="6912" y="-3064.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="6912" y="-3049.3" font-family="Times,serif" font-size="14.00">base_url :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-3034.3" font-family="Times,serif" font-size="14.00">token_endpoint :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-3019.3" font-family="Times,serif" font-size="14.00">authorization_endpoint :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-3004.3" font-family="Times,serif" font-size="14.00">client_id :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-2989.3" font-family="Times,serif" font-size="14.00">client_secret :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-2974.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="6912" y="-2959.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="6912" y="-2944.3" font-family="Times,serif" font-size="14.00">profile_url :character varying</text>
|
||||
<text text-anchor="start" x="6912" y="-2929.3" font-family="Times,serif" font-size="14.00">logout_endpoint :character varying</text>
|
||||
</g>
|
||||
<!-- OAuth2Provider->OAuth2Mapping -->
|
||||
<g id="edge73" class="edge"><title>OAuth2Provider->OAuth2Mapping</title>
|
||||
<path fill="none" stroke="#fa7940" d="M7026,-2913.11C7026,-2857.44 7026,-2786 7026,-2728.69"/>
|
||||
<ellipse fill="none" stroke="#fa7940" cx="7026" cy="-2917.31" rx="4" ry="4"/>
|
||||
<polygon fill="#fa7940" stroke="#fa7940" points="7026,-2728.52 7030.5,-2718.52 7026,-2723.52 7026,-2718.52 7026,-2718.52 7026,-2718.52 7026,-2723.52 7021.5,-2718.52 7026,-2728.52 7026,-2728.52"/>
|
||||
<path fill="none" stroke="#b40691" d="M7026,-2913.09C7026,-2856.55 7026,-2785.6 7026,-2728.74"/>
|
||||
<ellipse fill="none" stroke="#b40691" cx="7026" cy="-2917.44" rx="4" ry="4"/>
|
||||
<polygon fill="#b40691" stroke="#b40691" points="7026,-2728.66 7030.5,-2718.66 7026,-2723.66 7026,-2718.66 7026,-2718.66 7026,-2718.66 7026,-2723.66 7021.5,-2718.66 7026,-2728.66 7026,-2728.66"/>
|
||||
</g>
|
||||
<!-- AuthProvider -->
|
||||
<g id="node71" class="node"><title>AuthProvider</title>
|
||||
@ -1384,66 +1385,66 @@
|
||||
</g>
|
||||
<!-- OAuth2Provider->AuthProvider -->
|
||||
<g id="edge72" class="edge"><title>OAuth2Provider->AuthProvider</title>
|
||||
<path fill="none" stroke="#67e662" d="M7129.87,-2915.43C7139.55,-2905.3 7148.79,-2894.73 7157,-2884 7199.6,-2828.31 7234.98,-2756.69 7258.19,-2703.54"/>
|
||||
<ellipse fill="none" stroke="#67e662" cx="7126.91" cy="-2918.48" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#67e662" stroke="#67e662" cx="7259.8" cy="-2699.84" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#ad658a" d="M7131.11,-2915.39C7140.32,-2905.19 7149.12,-2894.64 7157,-2884 7198.67,-2827.76 7234.09,-2756.36 7257.56,-2703.42"/>
|
||||
<ellipse fill="none" stroke="#ad658a" cx="7128.34" cy="-2918.41" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#ad658a" stroke="#ad658a" cx="7259.18" cy="-2699.74" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Asset -->
|
||||
<g id="node50" class="node"><title>Asset</title>
|
||||
<path fill="none" stroke="black" d="M7440,-2936.5C7440,-2936.5 7660,-2936.5 7660,-2936.5 7666,-2936.5 7672,-2942.5 7672,-2948.5 7672,-2948.5 7672,-3060.5 7672,-3060.5 7672,-3066.5 7666,-3072.5 7660,-3072.5 7660,-3072.5 7440,-3072.5 7440,-3072.5 7434,-3072.5 7428,-3066.5 7428,-3060.5 7428,-3060.5 7428,-2948.5 7428,-2948.5 7428,-2942.5 7434,-2936.5 7440,-2936.5"/>
|
||||
<text text-anchor="middle" x="7550" y="-3057.3" font-family="Times,serif" font-size="14.00">Asset</text>
|
||||
<polyline fill="none" stroke="black" points="7428,-3049.5 7672,-3049.5 "/>
|
||||
<text text-anchor="start" x="7436" y="-3034.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="7436" y="-3019.3" font-family="Times,serif" font-size="14.00">viewable_id :integer</text>
|
||||
<text text-anchor="start" x="7436" y="-3004.3" font-family="Times,serif" font-size="14.00">viewable_type :character varying(255)</text>
|
||||
<text text-anchor="start" x="7436" y="-2989.3" font-family="Times,serif" font-size="14.00">attachment :character varying(255)</text>
|
||||
<text text-anchor="start" x="7436" y="-2974.3" font-family="Times,serif" font-size="14.00">type :character varying(255)</text>
|
||||
<text text-anchor="start" x="7436" y="-2959.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="7436" y="-2944.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M7440,-2944C7440,-2944 7660,-2944 7660,-2944 7666,-2944 7672,-2950 7672,-2956 7672,-2956 7672,-3068 7672,-3068 7672,-3074 7666,-3080 7660,-3080 7660,-3080 7440,-3080 7440,-3080 7434,-3080 7428,-3074 7428,-3068 7428,-3068 7428,-2956 7428,-2956 7428,-2950 7434,-2944 7440,-2944"/>
|
||||
<text text-anchor="middle" x="7550" y="-3064.8" font-family="Times,serif" font-size="14.00">Asset</text>
|
||||
<polyline fill="none" stroke="black" points="7428,-3057 7672,-3057 "/>
|
||||
<text text-anchor="start" x="7436" y="-3041.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="7436" y="-3026.8" font-family="Times,serif" font-size="14.00">viewable_id :integer</text>
|
||||
<text text-anchor="start" x="7436" y="-3011.8" font-family="Times,serif" font-size="14.00">viewable_type :character varying(255)</text>
|
||||
<text text-anchor="start" x="7436" y="-2996.8" font-family="Times,serif" font-size="14.00">attachment :character varying(255)</text>
|
||||
<text text-anchor="start" x="7436" y="-2981.8" font-family="Times,serif" font-size="14.00">type :character varying(255)</text>
|
||||
<text text-anchor="start" x="7436" y="-2966.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="7436" y="-2951.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
<!-- Project::OpenlabSync -->
|
||||
<g id="node51" class="node"><title>Project::OpenlabSync</title>
|
||||
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="7825.5,-3022.5 7690.5,-3022.5 7690.5,-2986.5 7825.5,-2986.5 7825.5,-3022.5"/>
|
||||
<text text-anchor="middle" x="7758" y="-3000.8" font-family="Times,serif" font-size="14.00">Project::OpenlabSync</text>
|
||||
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="7825.5,-3030 7690.5,-3030 7690.5,-2994 7825.5,-2994 7825.5,-3030"/>
|
||||
<text text-anchor="middle" x="7758" y="-3008.3" font-family="Times,serif" font-size="14.00">Project::OpenlabSync</text>
|
||||
</g>
|
||||
<!-- DatabaseProvider -->
|
||||
<g id="node52" class="node"><title>DatabaseProvider</title>
|
||||
<path fill="none" stroke="black" d="M7178,-2966.5C7178,-2966.5 7398,-2966.5 7398,-2966.5 7404,-2966.5 7410,-2972.5 7410,-2978.5 7410,-2978.5 7410,-3030.5 7410,-3030.5 7410,-3036.5 7404,-3042.5 7398,-3042.5 7398,-3042.5 7178,-3042.5 7178,-3042.5 7172,-3042.5 7166,-3036.5 7166,-3030.5 7166,-3030.5 7166,-2978.5 7166,-2978.5 7166,-2972.5 7172,-2966.5 7178,-2966.5"/>
|
||||
<text text-anchor="middle" x="7288" y="-3027.3" font-family="Times,serif" font-size="14.00">DatabaseProvider</text>
|
||||
<polyline fill="none" stroke="black" points="7166,-3019.5 7410,-3019.5 "/>
|
||||
<text text-anchor="start" x="7174" y="-3004.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="7174" y="-2989.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="7174" y="-2974.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M7178,-2974C7178,-2974 7398,-2974 7398,-2974 7404,-2974 7410,-2980 7410,-2986 7410,-2986 7410,-3038 7410,-3038 7410,-3044 7404,-3050 7398,-3050 7398,-3050 7178,-3050 7178,-3050 7172,-3050 7166,-3044 7166,-3038 7166,-3038 7166,-2986 7166,-2986 7166,-2980 7172,-2974 7178,-2974"/>
|
||||
<text text-anchor="middle" x="7288" y="-3034.8" font-family="Times,serif" font-size="14.00">DatabaseProvider</text>
|
||||
<polyline fill="none" stroke="black" points="7166,-3027 7410,-3027 "/>
|
||||
<text text-anchor="start" x="7174" y="-3011.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="7174" y="-2996.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="7174" y="-2981.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
<!-- DatabaseProvider->AuthProvider -->
|
||||
<g id="edge74" class="edge"><title>DatabaseProvider->AuthProvider</title>
|
||||
<path fill="none" stroke="#0aea59" d="M7288,-2958.16C7288,-2895.19 7288,-2780.44 7288,-2704.45"/>
|
||||
<ellipse fill="none" stroke="#0aea59" cx="7288" cy="-2962.22" rx="4" ry="4"/>
|
||||
<ellipse fill="#0aea59" stroke="#0aea59" cx="7288" cy="-2700.3" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#83b5b6" d="M7288,-2965.43C7288,-2900.94 7288,-2782.27 7288,-2704.51"/>
|
||||
<ellipse fill="none" stroke="#83b5b6" cx="7288" cy="-2969.68" rx="4" ry="4"/>
|
||||
<ellipse fill="#83b5b6" stroke="#83b5b6" cx="7288" cy="-2700.17" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- Availability->AvailabilityTag -->
|
||||
<g id="edge82" class="edge"><title>Availability->AvailabilityTag</title>
|
||||
<path fill="none" stroke="#b1e440" d="M4043.7,-2544.9C4090.74,-2439.66 4171.24,-2259.56 4213.4,-2165.24"/>
|
||||
<ellipse fill="none" stroke="#b1e440" cx="4042.03" cy="-2548.62" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b1e440" stroke="#b1e440" points="4213.53,-2164.96 4221.72,-2157.67 4215.57,-2160.4 4217.61,-2155.83 4217.61,-2155.83 4217.61,-2155.83 4215.57,-2160.4 4213.5,-2153.99 4213.53,-2164.96 4213.53,-2164.96"/>
|
||||
<path fill="none" stroke="#095859" d="M4043.7,-2544.9C4090.74,-2439.66 4171.24,-2259.56 4213.4,-2165.24"/>
|
||||
<ellipse fill="none" stroke="#095859" cx="4042.03" cy="-2548.62" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#095859" stroke="#095859" points="4213.53,-2164.96 4221.72,-2157.67 4215.57,-2160.4 4217.61,-2155.83 4217.61,-2155.83 4217.61,-2155.83 4215.57,-2160.4 4213.5,-2153.99 4213.53,-2164.96 4213.53,-2164.96"/>
|
||||
</g>
|
||||
<!-- Availability->Event -->
|
||||
<g id="edge81" class="edge"><title>Availability->Event</title>
|
||||
<path fill="none" stroke="#8ac918" d="M4071.16,-2546.09C4117.69,-2491.47 4184.58,-2420.71 4255,-2372 4301.65,-2339.73 4327.11,-2355.68 4372,-2321 4410,-2291.64 4444.4,-2252.05 4472.21,-2214.69"/>
|
||||
<ellipse fill="none" stroke="#8ac918" cx="4068.46" cy="-2549.28" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#8ac918" stroke="#8ac918" cx="4474.6" cy="-2211.45" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#41747f" d="M4071.16,-2546.09C4117.69,-2491.47 4184.58,-2420.71 4255,-2372 4301.65,-2339.73 4327.11,-2355.68 4372,-2321 4410,-2291.64 4444.4,-2252.05 4472.21,-2214.69"/>
|
||||
<ellipse fill="none" stroke="#41747f" cx="4068.46" cy="-2549.28" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#41747f" stroke="#41747f" cx="4474.6" cy="-2211.45" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Availability->Training -->
|
||||
<g id="edge78" class="edge"><title>Availability->Training</title>
|
||||
<path fill="none" stroke="#1662e2" d="M3956.31,-2543.96C3920.95,-2490.55 3870.18,-2422.04 3814,-2372 3792.43,-2352.78 3785.32,-2348.4 3758,-2339 3699.93,-2319.01 3677.73,-2344.52 3621,-2321 3545.43,-2289.68 3472.55,-2232.82 3419.68,-2185.1"/>
|
||||
<polygon fill="#1662e2" stroke="#1662e2" points="3956.36,-2544.03 3958.09,-2554.86 3959.11,-2548.21 3961.85,-2552.39 3961.85,-2552.39 3961.85,-2552.39 3959.11,-2548.21 3965.61,-2549.92 3956.36,-2544.03 3956.36,-2544.03"/>
|
||||
<polygon fill="#1662e2" stroke="#1662e2" points="3419.42,-2184.86 3415.05,-2174.8 3415.72,-2181.5 3412.02,-2178.13 3412.02,-2178.13 3412.02,-2178.13 3415.72,-2181.5 3408.99,-2181.46 3419.42,-2184.86 3419.42,-2184.86"/>
|
||||
<path fill="none" stroke="#74d427" d="M3956.31,-2543.96C3920.95,-2490.55 3870.18,-2422.04 3814,-2372 3792.43,-2352.78 3785.32,-2348.4 3758,-2339 3699.93,-2319.01 3677.73,-2344.52 3621,-2321 3545.43,-2289.68 3472.55,-2232.82 3419.68,-2185.1"/>
|
||||
<polygon fill="#74d427" stroke="#74d427" points="3956.36,-2544.03 3958.09,-2554.86 3959.11,-2548.21 3961.85,-2552.39 3961.85,-2552.39 3961.85,-2552.39 3959.11,-2548.21 3965.61,-2549.92 3956.36,-2544.03 3956.36,-2544.03"/>
|
||||
<polygon fill="#74d427" stroke="#74d427" points="3419.42,-2184.86 3415.05,-2174.8 3415.72,-2181.5 3412.02,-2178.13 3412.02,-2178.13 3412.02,-2178.13 3415.72,-2181.5 3408.99,-2181.46 3419.42,-2184.86 3419.42,-2184.86"/>
|
||||
</g>
|
||||
<!-- Availability->Reservation -->
|
||||
<g id="edge80" class="edge"><title>Availability->Reservation</title>
|
||||
<path fill="none" stroke="#a5e52c" d="M4012.19,-2542.1C4015.28,-2488.24 4018.97,-2417.05 4021,-2354 4034.36,-1938.64 4089.8,-1830.1 4029,-1419 4026.39,-1401.38 4022.1,-1382.93 4017.2,-1365.33"/>
|
||||
<polygon fill="#a5e52c" stroke="#a5e52c" points="4012.18,-2542.31 4007.11,-2552.04 4011.89,-2547.3 4011.6,-2552.3 4011.6,-2552.3 4011.6,-2552.3 4011.89,-2547.3 4016.09,-2552.55 4012.18,-2542.31 4012.18,-2542.31"/>
|
||||
<polygon fill="#a5e52c" stroke="#a5e52c" points="4017.18,-1365.25 4018.74,-1354.4 4015.8,-1360.45 4014.42,-1355.64 4014.42,-1355.64 4014.42,-1355.64 4015.8,-1360.45 4010.09,-1356.88 4017.18,-1365.25 4017.18,-1365.25"/>
|
||||
<path fill="none" stroke="#dc1723" d="M4012.19,-2542.1C4015.28,-2488.24 4018.97,-2417.05 4021,-2354 4034.36,-1938.64 4089.8,-1830.1 4029,-1419 4026.39,-1401.38 4022.1,-1382.93 4017.2,-1365.33"/>
|
||||
<polygon fill="#dc1723" stroke="#dc1723" points="4012.18,-2542.31 4007.11,-2552.04 4011.89,-2547.3 4011.6,-2552.3 4011.6,-2552.3 4011.6,-2552.3 4011.89,-2547.3 4016.09,-2552.55 4012.18,-2542.31 4012.18,-2542.31"/>
|
||||
<polygon fill="#dc1723" stroke="#dc1723" points="4017.18,-1365.25 4018.74,-1354.4 4015.8,-1360.45 4014.42,-1355.64 4014.42,-1355.64 4014.42,-1355.64 4015.8,-1360.45 4010.09,-1356.88 4017.18,-1365.25 4017.18,-1365.25"/>
|
||||
</g>
|
||||
<!-- Slot -->
|
||||
<g id="node63" class="node"><title>Slot</title>
|
||||
@ -1464,9 +1465,9 @@
|
||||
</g>
|
||||
<!-- Availability->Slot -->
|
||||
<g id="edge79" class="edge"><title>Availability->Slot</title>
|
||||
<path fill="none" stroke="#0a851e" d="M4020.92,-2544.25C4030.83,-2482.81 4043.79,-2396.87 4052,-2321 4096.07,-1913.5 4101.77,-1810.63 4116,-1401 4119.97,-1286.85 4127.73,-1257.62 4116,-1144 4114.61,-1130.51 4112.52,-1116.43 4110.07,-1102.56"/>
|
||||
<ellipse fill="none" stroke="#0a851e" cx="4020.24" cy="-2548.43" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#0a851e" stroke="#0a851e" points="4110.03,-1102.34 4112.66,-1091.69 4109.13,-1097.42 4108.23,-1092.5 4108.23,-1092.5 4108.23,-1092.5 4109.13,-1097.42 4103.81,-1093.31 4110.03,-1102.34 4110.03,-1102.34"/>
|
||||
<path fill="none" stroke="#980953" d="M4020.92,-2544.25C4030.83,-2482.81 4043.79,-2396.87 4052,-2321 4096.07,-1913.5 4101.77,-1810.63 4116,-1401 4119.97,-1286.85 4127.73,-1257.62 4116,-1144 4114.61,-1130.51 4112.52,-1116.43 4110.07,-1102.56"/>
|
||||
<ellipse fill="none" stroke="#980953" cx="4020.24" cy="-2548.43" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#980953" stroke="#980953" points="4110.03,-1102.34 4112.66,-1091.69 4109.13,-1097.42 4108.23,-1092.5 4108.23,-1092.5 4108.23,-1092.5 4109.13,-1097.42 4103.81,-1093.31 4110.03,-1102.34 4110.03,-1102.34"/>
|
||||
</g>
|
||||
<!-- MachinesAvailability -->
|
||||
<g id="node68" class="node"><title>MachinesAvailability</title>
|
||||
@ -1479,9 +1480,9 @@
|
||||
</g>
|
||||
<!-- Availability->MachinesAvailability -->
|
||||
<g id="edge75" class="edge"><title>Availability->MachinesAvailability</title>
|
||||
<path fill="none" stroke="#296f1a" d="M4009.91,-2544.18C4015.79,-2357.12 4025.9,-1906.77 3993,-1759 3954.83,-1587.58 3853.16,-1403.07 3803.33,-1319.4"/>
|
||||
<ellipse fill="none" stroke="#296f1a" cx="4009.77" cy="-2548.35" rx="4" ry="4"/>
|
||||
<polygon fill="#296f1a" stroke="#296f1a" points="3803.24,-1319.24 3801.96,-1308.35 3800.67,-1314.95 3798.1,-1310.67 3798.1,-1310.67 3798.1,-1310.67 3800.67,-1314.95 3794.24,-1312.98 3803.24,-1319.24 3803.24,-1319.24"/>
|
||||
<path fill="none" stroke="#7261dc" d="M4009.91,-2544.18C4015.79,-2357.12 4025.9,-1906.77 3993,-1759 3954.83,-1587.58 3853.16,-1403.07 3803.33,-1319.4"/>
|
||||
<ellipse fill="none" stroke="#7261dc" cx="4009.77" cy="-2548.35" rx="4" ry="4"/>
|
||||
<polygon fill="#7261dc" stroke="#7261dc" points="3803.24,-1319.24 3801.96,-1308.35 3800.67,-1314.95 3798.1,-1310.67 3798.1,-1310.67 3798.1,-1310.67 3800.67,-1314.95 3794.24,-1312.98 3803.24,-1319.24 3803.24,-1319.24"/>
|
||||
</g>
|
||||
<!-- TrainingsAvailability -->
|
||||
<g id="node80" class="node"><title>TrainingsAvailability</title>
|
||||
@ -1496,93 +1497,93 @@
|
||||
</g>
|
||||
<!-- Availability->TrainingsAvailability -->
|
||||
<g id="edge77" class="edge"><title>Availability->TrainingsAvailability</title>
|
||||
<path fill="none" stroke="#3c23a0" d="M3984.82,-2544.38C3934.45,-2356.76 3812.35,-1902.02 3767.71,-1735.73"/>
|
||||
<ellipse fill="none" stroke="#3c23a0" cx="3985.87" cy="-2548.32" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#3c23a0" stroke="#3c23a0" points="3767.6,-1735.33 3769.35,-1724.5 3766.3,-1730.5 3765.01,-1725.67 3765.01,-1725.67 3765.01,-1725.67 3766.3,-1730.5 3760.66,-1726.84 3767.6,-1735.33 3767.6,-1735.33"/>
|
||||
<path fill="none" stroke="#85bfd0" d="M3984.82,-2544.38C3934.45,-2356.76 3812.35,-1902.02 3767.71,-1735.73"/>
|
||||
<ellipse fill="none" stroke="#85bfd0" cx="3985.87" cy="-2548.32" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#85bfd0" stroke="#85bfd0" points="3767.6,-1735.33 3769.35,-1724.5 3766.3,-1730.5 3765.01,-1725.67 3765.01,-1725.67 3765.01,-1725.67 3766.3,-1730.5 3760.66,-1726.84 3767.6,-1735.33 3767.6,-1735.33"/>
|
||||
</g>
|
||||
<!-- Availability->Machine -->
|
||||
<g id="edge76" class="edge"><title>Availability->Machine</title>
|
||||
<path fill="none" stroke="#6450db" d="M3950.53,-2544.11C3835.21,-2375.65 3574.63,-1999.5 3469,-1884 3424.06,-1834.86 3368.3,-1785.7 3321.64,-1747.26"/>
|
||||
<polygon fill="#6450db" stroke="#6450db" points="3950.6,-2544.2 3952.54,-2555 3953.43,-2548.33 3956.25,-2552.46 3956.25,-2552.46 3956.25,-2552.46 3953.43,-2548.33 3959.96,-2549.92 3950.6,-2544.2 3950.6,-2544.2"/>
|
||||
<polygon fill="#6450db" stroke="#6450db" points="3321.37,-1747.04 3316.49,-1737.22 3317.5,-1743.87 3313.63,-1740.7 3313.63,-1740.7 3313.63,-1740.7 3317.5,-1743.87 3310.78,-1744.18 3321.37,-1747.04 3321.37,-1747.04"/>
|
||||
<path fill="none" stroke="#5c9253" d="M3950.53,-2544.11C3835.21,-2375.65 3574.63,-1999.5 3469,-1884 3424.06,-1834.86 3368.3,-1785.7 3321.64,-1747.26"/>
|
||||
<polygon fill="#5c9253" stroke="#5c9253" points="3950.6,-2544.2 3952.54,-2555 3953.43,-2548.33 3956.25,-2552.46 3956.25,-2552.46 3956.25,-2552.46 3953.43,-2548.33 3959.96,-2549.92 3950.6,-2544.2 3950.6,-2544.2"/>
|
||||
<polygon fill="#5c9253" stroke="#5c9253" points="3321.37,-1747.04 3316.49,-1737.22 3317.5,-1743.87 3313.63,-1740.7 3313.63,-1740.7 3313.63,-1740.7 3317.5,-1743.87 3310.78,-1744.18 3321.37,-1747.04 3321.37,-1747.04"/>
|
||||
</g>
|
||||
<!-- Subscription->Invoice -->
|
||||
<g id="edge83" class="edge"><title>Subscription->Invoice</title>
|
||||
<path fill="none" stroke="#415b2a" d="M2207.62,-911.065C2179.79,-817.425 2151.5,-663.798 2220,-557 2286.95,-452.615 2423.2,-401.725 2526.06,-377.377"/>
|
||||
<ellipse fill="none" stroke="#415b2a" cx="2208.81" cy="-914.989" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#415b2a" stroke="#415b2a" points="2526.16,-377.353 2536.92,-379.487 2531.03,-376.228 2535.91,-375.102 2535.91,-375.102 2535.91,-375.102 2531.03,-376.228 2534.89,-370.718 2526.16,-377.353 2526.16,-377.353"/>
|
||||
<path fill="none" stroke="#0a3d71" d="M2207.62,-911.065C2179.79,-817.425 2151.5,-663.798 2220,-557 2286.95,-452.615 2423.2,-401.725 2526.06,-377.377"/>
|
||||
<ellipse fill="none" stroke="#0a3d71" cx="2208.81" cy="-914.989" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#0a3d71" stroke="#0a3d71" points="2526.16,-377.353 2536.92,-379.487 2531.03,-376.228 2535.91,-375.102 2535.91,-375.102 2535.91,-375.102 2531.03,-376.228 2534.89,-370.718 2526.16,-377.353 2526.16,-377.353"/>
|
||||
</g>
|
||||
<!-- Subscription->OfferDay -->
|
||||
<g id="edge84" class="edge"><title>Subscription->OfferDay</title>
|
||||
<path fill="none" stroke="#138393" d="M2269.96,-911.253C2286.83,-869.147 2307.14,-818.454 2323.21,-778.353"/>
|
||||
<ellipse fill="none" stroke="#138393" cx="2268.44" cy="-915.038" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#138393" stroke="#138393" points="2323.27,-778.205 2331.17,-770.596 2325.13,-773.564 2326.99,-768.922 2326.99,-768.922 2326.99,-768.922 2325.13,-773.564 2322.81,-767.249 2323.27,-778.205 2323.27,-778.205"/>
|
||||
<path fill="none" stroke="#e405b4" d="M2269.96,-911.253C2286.83,-869.147 2307.14,-818.454 2323.21,-778.353"/>
|
||||
<ellipse fill="none" stroke="#e405b4" cx="2268.44" cy="-915.038" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#e405b4" stroke="#e405b4" points="2323.27,-778.205 2331.17,-770.596 2325.13,-773.564 2326.99,-768.922 2326.99,-768.922 2326.99,-768.922 2325.13,-773.564 2322.81,-767.249 2323.27,-778.205 2323.27,-778.205"/>
|
||||
</g>
|
||||
<!-- Training->TrainingImage -->
|
||||
<g id="edge85" class="edge"><title>Training->TrainingImage</title>
|
||||
<path fill="none" stroke="#25c9d2" d="M3367.02,-2019.24C3394.67,-1940.87 3435.93,-1823.92 3462.66,-1748.17"/>
|
||||
<ellipse fill="none" stroke="#25c9d2" cx="3365.63" cy="-2023.18" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#25c9d2" stroke="#25c9d2" cx="3464.03" cy="-1744.29" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#5317ca" d="M3367.02,-2019.24C3394.67,-1940.87 3435.93,-1823.92 3462.66,-1748.17"/>
|
||||
<ellipse fill="none" stroke="#5317ca" cx="3365.63" cy="-2023.18" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#5317ca" stroke="#5317ca" cx="3464.03" cy="-1744.29" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- Training->TrainingsPricing -->
|
||||
<g id="edge90" class="edge"><title>Training->TrainingsPricing</title>
|
||||
<path fill="none" stroke="#6a533c" d="M3307.99,-2019.22C3286.15,-1971.59 3251.63,-1915.07 3202,-1884 3170.18,-1864.08 3062.45,-1890.5 3034,-1866 2996.75,-1833.93 3033.67,-1799.63 3006,-1759 3001.57,-1752.49 2996.47,-1746.3 2990.94,-1740.44"/>
|
||||
<ellipse fill="none" stroke="#6a533c" cx="3309.75" cy="-2023.14" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#6a533c" stroke="#6a533c" points="2990.78,-1740.28 2986.91,-1730.02 2987.25,-1736.74 2983.72,-1733.2 2983.72,-1733.2 2983.72,-1733.2 2987.25,-1736.74 2980.53,-1736.38 2990.78,-1740.28 2990.78,-1740.28"/>
|
||||
<path fill="none" stroke="#6a451c" d="M3307.99,-2019.22C3286.15,-1971.59 3251.63,-1915.07 3202,-1884 3170.18,-1864.08 3062.45,-1890.5 3034,-1866 2996.75,-1833.93 3033.67,-1799.63 3006,-1759 3001.57,-1752.49 2996.47,-1746.3 2990.94,-1740.44"/>
|
||||
<ellipse fill="none" stroke="#6a451c" cx="3309.75" cy="-2023.14" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#6a451c" stroke="#6a451c" points="2990.78,-1740.28 2986.91,-1730.02 2987.25,-1736.74 2983.72,-1733.2 2983.72,-1733.2 2983.72,-1733.2 2987.25,-1736.74 2980.53,-1736.38 2990.78,-1740.28 2990.78,-1740.28"/>
|
||||
</g>
|
||||
<!-- Training->Plan -->
|
||||
<g id="edge92" class="edge"><title>Training->Plan</title>
|
||||
<path fill="none" stroke="#733a25" d="M3288.06,-2018.23C3262.98,-1977.3 3231.68,-1927.54 3202,-1884 3157.44,-1818.63 3131.9,-1811.5 3096,-1741 3067.04,-1684.13 3073.93,-1664.29 3053,-1604 3030.73,-1539.85 3004.19,-1469.45 2981.22,-1410.17"/>
|
||||
<polygon fill="#733a25" stroke="#733a25" points="3288.1,-2018.29 3289.48,-2029.17 3290.71,-2022.56 3293.32,-2026.82 3293.32,-2026.82 3293.32,-2026.82 3290.71,-2022.56 3297.16,-2024.48 3288.1,-2018.29 3288.1,-2018.29"/>
|
||||
<polygon fill="#733a25" stroke="#733a25" points="2981.18,-1410.08 2981.76,-1399.13 2979.37,-1405.42 2977.56,-1400.76 2977.56,-1400.76 2977.56,-1400.76 2979.37,-1405.42 2973.37,-1402.39 2981.18,-1410.08 2981.18,-1410.08"/>
|
||||
<path fill="none" stroke="#a75dc5" d="M3288.06,-2018.23C3262.98,-1977.3 3231.68,-1927.54 3202,-1884 3157.44,-1818.63 3131.9,-1811.5 3096,-1741 3067.04,-1684.13 3073.93,-1664.29 3053,-1604 3030.73,-1539.85 3004.19,-1469.45 2981.22,-1410.17"/>
|
||||
<polygon fill="#a75dc5" stroke="#a75dc5" points="3288.1,-2018.29 3289.48,-2029.17 3290.71,-2022.56 3293.32,-2026.82 3293.32,-2026.82 3293.32,-2026.82 3290.71,-2022.56 3297.16,-2024.48 3288.1,-2018.29 3288.1,-2018.29"/>
|
||||
<polygon fill="#a75dc5" stroke="#a75dc5" points="2981.18,-1410.08 2981.76,-1399.13 2979.37,-1405.42 2977.56,-1400.76 2977.56,-1400.76 2977.56,-1400.76 2979.37,-1405.42 2973.37,-1402.39 2981.18,-1410.08 2981.18,-1410.08"/>
|
||||
</g>
|
||||
<!-- Training->Credit -->
|
||||
<g id="edge91" class="edge"><title>Training->Credit</title>
|
||||
<path fill="none" stroke="#f12079" d="M3305.49,-2019.54C3282.66,-1972.61 3247.48,-1916.72 3199,-1884 3163.02,-1859.71 3136.54,-1893.56 3103,-1866 3056.77,-1828.01 3071.16,-1798.01 3053,-1741 3033.99,-1681.33 3060.64,-1651.65 3020,-1604 3010.49,-1592.85 2541.13,-1413.2 2533,-1401 2467.14,-1302.2 2508.79,-1159.22 2545.51,-1072.09"/>
|
||||
<ellipse fill="none" stroke="#f12079" cx="3307.33" cy="-2023.38" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f12079" stroke="#f12079" points="2545.56,-1071.98 2553.64,-1064.57 2547.53,-1067.39 2549.5,-1062.79 2549.5,-1062.79 2549.5,-1062.79 2547.53,-1067.39 2545.37,-1061.02 2545.56,-1071.98 2545.56,-1071.98"/>
|
||||
<path fill="none" stroke="#cc2260" d="M3305.49,-2019.54C3282.66,-1972.61 3247.48,-1916.72 3199,-1884 3163.02,-1859.71 3136.54,-1893.56 3103,-1866 3056.77,-1828.01 3071.16,-1798.01 3053,-1741 3033.99,-1681.33 3060.64,-1651.65 3020,-1604 3010.49,-1592.85 2541.13,-1413.2 2533,-1401 2467.14,-1302.2 2508.79,-1159.22 2545.51,-1072.09"/>
|
||||
<ellipse fill="none" stroke="#cc2260" cx="3307.33" cy="-2023.38" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#cc2260" stroke="#cc2260" points="2545.56,-1071.98 2553.64,-1064.57 2547.53,-1067.39 2549.5,-1062.79 2549.5,-1062.79 2549.5,-1062.79 2547.53,-1067.39 2545.37,-1061.02 2545.56,-1071.98 2545.56,-1071.98"/>
|
||||
</g>
|
||||
<!-- Training->Reservation -->
|
||||
<g id="edge88" class="edge"><title>Training->Reservation</title>
|
||||
<path fill="none" stroke="#0e20e9" d="M3458.79,-2022.25C3617.97,-1917.7 3878.44,-1746.19 3882,-1741 3959.6,-1627.86 3979.95,-1466.24 3984.62,-1365.71"/>
|
||||
<ellipse fill="none" stroke="#0e20e9" cx="3455.1" cy="-2024.67" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#0e20e9" stroke="#0e20e9" points="3984.62,-1365.56 3989.54,-1355.76 3984.83,-1360.56 3985.05,-1355.57 3985.05,-1355.57 3985.05,-1355.57 3984.83,-1360.56 3980.55,-1355.38 3984.62,-1365.56 3984.62,-1365.56"/>
|
||||
<path fill="none" stroke="#95daca" d="M3458.79,-2022.25C3617.97,-1917.7 3878.44,-1746.19 3882,-1741 3959.6,-1627.86 3979.95,-1466.24 3984.62,-1365.71"/>
|
||||
<ellipse fill="none" stroke="#95daca" cx="3455.1" cy="-2024.67" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#95daca" stroke="#95daca" points="3984.62,-1365.56 3989.54,-1355.76 3984.83,-1360.56 3985.05,-1355.57 3985.05,-1355.57 3985.05,-1355.57 3984.83,-1360.56 3980.55,-1355.38 3984.62,-1365.56 3984.62,-1365.56"/>
|
||||
</g>
|
||||
<!-- Training->UserTraining -->
|
||||
<g id="edge89" class="edge"><title>Training->UserTraining</title>
|
||||
<path fill="none" stroke="#c40e86" d="M3296.42,-2019.76C3267.5,-1971.83 3224.23,-1914.81 3169,-1884 3103.8,-1847.63 3071.23,-1893.93 3002,-1866 2930.03,-1836.96 2935.06,-1790.21 2864,-1759 2820.25,-1739.78 2804,-1753.93 2758,-1741 2745.64,-1737.52 2732.94,-1733.45 2720.33,-1729.06"/>
|
||||
<ellipse fill="none" stroke="#c40e86" cx="3298.54" cy="-2023.32" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#c40e86" stroke="#c40e86" points="2720.13,-1728.99 2712.22,-1721.4 2715.42,-1727.31 2710.71,-1725.64 2710.71,-1725.64 2710.71,-1725.64 2715.42,-1727.31 2709.2,-1729.88 2720.13,-1728.99 2720.13,-1728.99"/>
|
||||
<path fill="none" stroke="#56edf6" d="M3296.42,-2019.76C3267.5,-1971.83 3224.23,-1914.81 3169,-1884 3103.8,-1847.63 3071.23,-1893.93 3002,-1866 2930.03,-1836.96 2935.06,-1790.21 2864,-1759 2820.25,-1739.78 2804,-1753.93 2758,-1741 2745.64,-1737.52 2732.94,-1733.45 2720.33,-1729.06"/>
|
||||
<ellipse fill="none" stroke="#56edf6" cx="3298.54" cy="-2023.32" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#56edf6" stroke="#56edf6" points="2720.13,-1728.99 2712.22,-1721.4 2715.42,-1727.31 2710.71,-1725.64 2710.71,-1725.64 2710.71,-1725.64 2715.42,-1727.31 2709.2,-1729.88 2720.13,-1728.99 2720.13,-1728.99"/>
|
||||
</g>
|
||||
<!-- Training->TrainingsAvailability -->
|
||||
<g id="edge87" class="edge"><title>Training->TrainingsAvailability</title>
|
||||
<path fill="none" stroke="#5f0c7f" d="M3415.62,-2021.06C3496.39,-1937.36 3620.98,-1808.24 3693.4,-1733.2"/>
|
||||
<ellipse fill="none" stroke="#5f0c7f" cx="3412.72" cy="-2024.07" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#5f0c7f" stroke="#5f0c7f" points="3693.72,-1732.86 3703.91,-1728.78 3697.2,-1729.26 3700.67,-1725.66 3700.67,-1725.66 3700.67,-1725.66 3697.2,-1729.26 3697.43,-1722.54 3693.72,-1732.86 3693.72,-1732.86"/>
|
||||
<path fill="none" stroke="#f0ceb1" d="M3415.62,-2021.06C3496.39,-1937.36 3620.98,-1808.24 3693.4,-1733.2"/>
|
||||
<ellipse fill="none" stroke="#f0ceb1" cx="3412.72" cy="-2024.07" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f0ceb1" stroke="#f0ceb1" points="3693.72,-1732.86 3703.91,-1728.78 3697.2,-1729.26 3700.67,-1725.66 3700.67,-1725.66 3700.67,-1725.66 3697.2,-1729.26 3697.43,-1722.54 3693.72,-1732.86 3693.72,-1732.86"/>
|
||||
</g>
|
||||
<!-- Training->Machine -->
|
||||
<g id="edge86" class="edge"><title>Training->Machine</title>
|
||||
<path fill="none" stroke="#17a248" d="M3316.15,-2017.27C3296.03,-1939.69 3266.43,-1825.56 3246.94,-1750.4"/>
|
||||
<polygon fill="#17a248" stroke="#17a248" points="3316.15,-2017.27 3314.31,-2028.08 3317.41,-2022.11 3318.67,-2026.95 3318.67,-2026.95 3318.67,-2026.95 3317.41,-2022.11 3323.02,-2025.82 3316.15,-2017.27 3316.15,-2017.27"/>
|
||||
<polygon fill="#17a248" stroke="#17a248" points="3246.89,-1750.19 3248.74,-1739.38 3245.64,-1745.35 3244.38,-1740.51 3244.38,-1740.51 3244.38,-1740.51 3245.64,-1745.35 3240.02,-1741.64 3246.89,-1750.19 3246.89,-1750.19"/>
|
||||
<path fill="none" stroke="#9046d9" d="M3316.15,-2017.27C3296.03,-1939.69 3266.43,-1825.56 3246.94,-1750.4"/>
|
||||
<polygon fill="#9046d9" stroke="#9046d9" points="3316.15,-2017.27 3314.31,-2028.08 3317.41,-2022.11 3318.67,-2026.95 3318.67,-2026.95 3318.67,-2026.95 3317.41,-2022.11 3323.02,-2025.82 3316.15,-2017.27 3316.15,-2017.27"/>
|
||||
<polygon fill="#9046d9" stroke="#9046d9" points="3246.89,-1750.19 3248.74,-1739.38 3245.64,-1745.35 3244.38,-1740.51 3244.38,-1740.51 3244.38,-1740.51 3245.64,-1745.35 3240.02,-1741.64 3246.89,-1750.19 3246.89,-1750.19"/>
|
||||
</g>
|
||||
<!-- ProjectStep->ProjectStepImage -->
|
||||
<g id="edge93" class="edge"><title>ProjectStep->ProjectStepImage</title>
|
||||
<path fill="none" stroke="#a38493" d="M1012,-1596.08C1012,-1525.1 1012,-1419.4 1012,-1348.54"/>
|
||||
<ellipse fill="none" stroke="#a38493" cx="1012" cy="-1600.43" rx="4" ry="4"/>
|
||||
<ellipse fill="#a38493" stroke="#a38493" cx="1012" cy="-1344.51" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#88f6e2" d="M1012,-1596.08C1012,-1525.82 1012,-1421.54 1012,-1350.71"/>
|
||||
<ellipse fill="none" stroke="#88f6e2" cx="1012" cy="-1600.43" rx="4" ry="4"/>
|
||||
<polygon fill="#88f6e2" stroke="#88f6e2" points="1012,-1350.51 1016.5,-1340.51 1012,-1345.51 1012,-1340.51 1012,-1340.51 1012,-1340.51 1012,-1345.51 1007.5,-1340.51 1012,-1350.51 1012,-1350.51"/>
|
||||
</g>
|
||||
<!-- Reservation->Invoice -->
|
||||
<g id="edge96" class="edge"><title>Reservation->Invoice</title>
|
||||
<path fill="none" stroke="#d14f9b" d="M3908.5,-1183.48C3822.92,-1092.2 3675.02,-954.754 3514,-896 3402.88,-855.453 3084.86,-919.14 2983,-859 2914.07,-818.299 2810.46,-644.553 2738.85,-512.554"/>
|
||||
<ellipse fill="none" stroke="#d14f9b" cx="3911.32" cy="-1186.5" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#d14f9b" stroke="#d14f9b" cx="2736.94" cy="-509.027" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#eecf27" d="M3908.5,-1183.48C3822.92,-1092.2 3675.02,-954.754 3514,-896 3402.88,-855.453 3084.86,-919.14 2983,-859 2914.07,-818.299 2810.46,-644.553 2738.85,-512.554"/>
|
||||
<ellipse fill="none" stroke="#eecf27" cx="3911.32" cy="-1186.5" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#eecf27" stroke="#eecf27" cx="2736.94" cy="-509.027" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Reservation->Slot -->
|
||||
<g id="edge94" class="edge"><title>Reservation->Slot</title>
|
||||
<path fill="none" stroke="#1c1555" d="M4017.47,-1181.89C4026.66,-1156.53 4036.75,-1128.68 4046.26,-1102.42"/>
|
||||
<ellipse fill="none" stroke="#1c1555" cx="4016.1" cy="-1185.68" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#1c1555" stroke="#1c1555" points="4046.33,-1102.22 4053.97,-1094.35 4048.04,-1097.52 4049.74,-1092.82 4049.74,-1092.82 4049.74,-1092.82 4048.04,-1097.52 4045.51,-1091.28 4046.33,-1102.22 4046.33,-1102.22"/>
|
||||
<path fill="none" stroke="#bcb041" d="M4017.47,-1181.89C4026.66,-1156.53 4036.75,-1128.68 4046.26,-1102.42"/>
|
||||
<ellipse fill="none" stroke="#bcb041" cx="4016.1" cy="-1185.68" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#bcb041" stroke="#bcb041" points="4046.33,-1102.22 4053.97,-1094.35 4048.04,-1097.52 4049.74,-1092.82 4049.74,-1092.82 4049.74,-1092.82 4048.04,-1097.52 4045.51,-1091.28 4046.33,-1102.22 4046.33,-1102.22"/>
|
||||
</g>
|
||||
<!-- Ticket -->
|
||||
<g id="node89" class="node"><title>Ticket</title>
|
||||
@ -1598,21 +1599,21 @@
|
||||
</g>
|
||||
<!-- Reservation->Ticket -->
|
||||
<g id="edge95" class="edge"><title>Reservation->Ticket</title>
|
||||
<path fill="none" stroke="#1bcdd4" d="M4113.81,-1187.85C4176.61,-1147.07 4251.01,-1098.75 4309.53,-1060.75"/>
|
||||
<ellipse fill="none" stroke="#1bcdd4" cx="4110.43" cy="-1190.05" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#1bcdd4" stroke="#1bcdd4" points="4309.66,-1060.66 4320.5,-1058.99 4313.85,-1057.94 4318.05,-1055.22 4318.05,-1055.22 4318.05,-1055.22 4313.85,-1057.94 4315.6,-1051.44 4309.66,-1060.66 4309.66,-1060.66"/>
|
||||
<path fill="none" stroke="#688c8e" d="M4113.81,-1187.85C4176.61,-1147.07 4251.01,-1098.75 4309.53,-1060.75"/>
|
||||
<ellipse fill="none" stroke="#688c8e" cx="4110.43" cy="-1190.05" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#688c8e" stroke="#688c8e" points="4309.66,-1060.66 4320.5,-1058.99 4313.85,-1057.94 4318.05,-1055.22 4318.05,-1055.22 4318.05,-1055.22 4313.85,-1057.94 4315.6,-1051.44 4309.66,-1060.66 4309.66,-1060.66"/>
|
||||
</g>
|
||||
<!-- StatisticIndex->StatisticType -->
|
||||
<g id="edge97" class="edge"><title>StatisticIndex->StatisticType</title>
|
||||
<path fill="none" stroke="#5d82c3" d="M5721.91,-2178.8C5724.29,-2275.11 5724.36,-2441.46 5722.13,-2542.16"/>
|
||||
<ellipse fill="none" stroke="#5d82c3" cx="5721.8" cy="-2174.56" rx="4" ry="4"/>
|
||||
<polygon fill="#5d82c3" stroke="#5d82c3" points="5722.13,-2542.28 5717.39,-2552.17 5722.01,-2547.27 5721.89,-2552.27 5721.89,-2552.27 5721.89,-2552.27 5722.01,-2547.27 5726.39,-2552.38 5722.13,-2542.28 5722.13,-2542.28"/>
|
||||
<path fill="none" stroke="#e7894b" d="M5721.91,-2178.8C5724.29,-2275.11 5724.36,-2441.46 5722.13,-2542.16"/>
|
||||
<ellipse fill="none" stroke="#e7894b" cx="5721.8" cy="-2174.56" rx="4" ry="4"/>
|
||||
<polygon fill="#e7894b" stroke="#e7894b" points="5722.13,-2542.28 5717.39,-2552.17 5722.01,-2547.27 5721.89,-2552.27 5721.89,-2552.27 5721.89,-2552.27 5722.01,-2547.27 5726.39,-2552.38 5722.13,-2542.28 5722.13,-2542.28"/>
|
||||
</g>
|
||||
<!-- StatisticIndex->StatisticGraph -->
|
||||
<g id="edge99" class="edge"><title>StatisticIndex->StatisticGraph</title>
|
||||
<path fill="none" stroke="#92f2db" d="M5672.68,-2027.31C5647.42,-1985.19 5615.11,-1931.54 5586,-1884 5556.47,-1835.76 5522.74,-1781.59 5496.9,-1740.28"/>
|
||||
<ellipse fill="none" stroke="#92f2db" cx="5674.77" cy="-2030.8" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#92f2db" stroke="#92f2db" cx="5494.62" cy="-1736.63" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#14ae4f" d="M5672.68,-2027.31C5647.42,-1985.19 5615.11,-1931.54 5586,-1884 5556.47,-1835.76 5522.74,-1781.59 5496.9,-1740.28"/>
|
||||
<ellipse fill="none" stroke="#14ae4f" cx="5674.77" cy="-2030.8" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#14ae4f" stroke="#14ae4f" cx="5494.62" cy="-1736.63" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- StatisticField -->
|
||||
<g id="node60" class="node"><title>StatisticField</title>
|
||||
@ -1629,27 +1630,27 @@
|
||||
</g>
|
||||
<!-- StatisticIndex->StatisticField -->
|
||||
<g id="edge98" class="edge"><title>StatisticIndex->StatisticField</title>
|
||||
<path fill="none" stroke="#644b81" d="M5711.71,-2026C5709.78,-1948.69 5709.76,-1829.11 5711.66,-1751.06"/>
|
||||
<ellipse fill="none" stroke="#644b81" cx="5711.82" cy="-2030.16" rx="4" ry="4"/>
|
||||
<polygon fill="#644b81" stroke="#644b81" points="5711.67,-1750.8 5716.42,-1740.92 5711.8,-1745.8 5711.93,-1740.81 5711.93,-1740.81 5711.93,-1740.81 5711.8,-1745.8 5707.43,-1740.69 5711.67,-1750.8 5711.67,-1750.8"/>
|
||||
<path fill="none" stroke="#56c132" d="M5711.71,-2026C5709.78,-1948.69 5709.76,-1829.11 5711.66,-1751.06"/>
|
||||
<ellipse fill="none" stroke="#56c132" cx="5711.82" cy="-2030.16" rx="4" ry="4"/>
|
||||
<polygon fill="#56c132" stroke="#56c132" points="5711.67,-1750.8 5716.42,-1740.92 5711.8,-1745.8 5711.93,-1740.81 5711.93,-1740.81 5711.93,-1740.81 5711.8,-1745.8 5707.43,-1740.69 5711.67,-1750.8 5711.67,-1750.8"/>
|
||||
</g>
|
||||
<!-- StatisticField->StatisticIndex -->
|
||||
<g id="edge100" class="edge"><title>StatisticField->StatisticIndex</title>
|
||||
<path fill="none" stroke="#056b79" d="M5722.29,-1749.16C5724.24,-1827.15 5724.24,-1948.06 5722.29,-2026"/>
|
||||
<ellipse fill="none" stroke="#056b79" cx="5722.18" cy="-1744.8" rx="4" ry="4"/>
|
||||
<ellipse fill="#056b79" stroke="#056b79" cx="5722.18" cy="-2030.16" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#be984f" d="M5722.29,-1749.16C5724.24,-1827.15 5724.24,-1948.06 5722.29,-2026"/>
|
||||
<ellipse fill="none" stroke="#be984f" cx="5722.18" cy="-1744.8" rx="4" ry="4"/>
|
||||
<ellipse fill="#be984f" stroke="#be984f" cx="5722.18" cy="-2030.16" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- WalletTransaction->Invoice -->
|
||||
<g id="edge101" class="edge"><title>WalletTransaction->Invoice</title>
|
||||
<path fill="none" stroke="#e19f5e" d="M714.385,-1412.12C751.511,-1336.52 796,-1224.1 796,-1119.5 796,-1119.5 796,-1119.5 796,-707 796,-530.491 2104.81,-403.231 2527.83,-366.708"/>
|
||||
<ellipse fill="none" stroke="#e19f5e" cx="712.594" cy="-1415.73" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#e19f5e" stroke="#e19f5e" cx="2531.84" cy="-366.363" rx="4" ry="4"/>
|
||||
<path fill="none" stroke="#40d7f0" d="M714.385,-1412.12C751.511,-1336.52 796,-1224.1 796,-1119.5 796,-1119.5 796,-1119.5 796,-707 796,-530.491 2104.81,-403.231 2527.83,-366.708"/>
|
||||
<ellipse fill="none" stroke="#40d7f0" cx="712.594" cy="-1415.73" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#40d7f0" stroke="#40d7f0" cx="2531.84" cy="-366.363" rx="4" ry="4"/>
|
||||
</g>
|
||||
<!-- EventPriceCategory->Ticket -->
|
||||
<g id="edge102" class="edge"><title>EventPriceCategory->Ticket</title>
|
||||
<path fill="none" stroke="#b58008" d="M4626.01,-1206.17C4581.62,-1162.88 4523.54,-1106.23 4478.78,-1062.58"/>
|
||||
<ellipse fill="none" stroke="#b58008" cx="4629.08" cy="-1209.16" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#b58008" stroke="#b58008" points="4478.6,-1062.4 4474.58,-1052.2 4475.02,-1058.91 4471.44,-1055.42 4471.44,-1055.42 4471.44,-1055.42 4475.02,-1058.91 4468.29,-1058.64 4478.6,-1062.4 4478.6,-1062.4"/>
|
||||
<path fill="none" stroke="#1e8cc8" d="M4626.01,-1206.17C4581.62,-1162.88 4523.54,-1106.23 4478.78,-1062.58"/>
|
||||
<ellipse fill="none" stroke="#1e8cc8" cx="4629.08" cy="-1209.16" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#1e8cc8" stroke="#1e8cc8" points="4478.6,-1062.4 4474.58,-1052.2 4475.02,-1058.91 4471.44,-1055.42 4471.44,-1055.42 4471.44,-1055.42 4475.02,-1058.91 4468.29,-1058.64 4478.6,-1062.4 4478.6,-1062.4"/>
|
||||
</g>
|
||||
<!-- Avoir -->
|
||||
<g id="node69" class="node"><title>Avoir</title>
|
||||
@ -1677,33 +1678,33 @@
|
||||
</g>
|
||||
<!-- Avoir->InvoiceItem -->
|
||||
<g id="edge103" class="edge"><title>Avoir->InvoiceItem</title>
|
||||
<path fill="none" stroke="#e262c2" d="M3320.23,-549.907C3278.39,-432.045 3222.54,-274.731 3187.68,-176.538"/>
|
||||
<ellipse fill="none" stroke="#e262c2" cx="3321.59" cy="-553.73" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#e262c2" stroke="#e262c2" points="3187.61,-176.353 3188.5,-165.423 3185.94,-171.641 3184.26,-166.929 3184.26,-166.929 3184.26,-166.929 3185.94,-171.641 3180.02,-168.434 3187.61,-176.353 3187.61,-176.353"/>
|
||||
<path fill="none" stroke="#b610f6" d="M3320.23,-549.907C3278.39,-432.045 3222.54,-274.731 3187.68,-176.538"/>
|
||||
<ellipse fill="none" stroke="#b610f6" cx="3321.59" cy="-553.73" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#b610f6" stroke="#b610f6" points="3187.61,-176.353 3188.5,-165.423 3185.94,-171.641 3184.26,-166.929 3184.26,-166.929 3184.26,-166.929 3185.94,-171.641 3180.02,-168.434 3187.61,-176.353 3187.61,-176.353"/>
|
||||
</g>
|
||||
<!-- Avoir->Invoice -->
|
||||
<g id="edge104" class="edge"><title>Avoir->Invoice</title>
|
||||
<path fill="none" stroke="#ca2a75" d="M3247.26,-558.534C3246.51,-558.017 3245.75,-557.506 3245,-557 3103.79,-462.166 2913.45,-407.849 2788.31,-380.147"/>
|
||||
<ellipse fill="none" stroke="#ca2a75" cx="3250.7" cy="-560.996" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#ca2a75" stroke="#ca2a75" cx="2784.07" cy="-379.217" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#ec61f7" d="M3247.26,-558.534C3246.51,-558.017 3245.75,-557.506 3245,-557 3103.79,-462.166 2913.45,-407.849 2788.31,-380.147"/>
|
||||
<ellipse fill="none" stroke="#ec61f7" cx="3250.7" cy="-560.996" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#ec61f7" stroke="#ec61f7" cx="2784.07" cy="-379.217" rx="4.00001" ry="4.00001"/>
|
||||
<text text-anchor="middle" x="3217" y="-527.8" font-family="Times,serif" font-size="14.00">avoir</text>
|
||||
</g>
|
||||
<!-- NotificationType -->
|
||||
<g id="node70" class="node"><title>NotificationType</title>
|
||||
<polygon fill="none" stroke="black" points="7844,-2981.5 7844,-3027.5 7954,-3027.5 7954,-2981.5 7844,-2981.5"/>
|
||||
<text text-anchor="middle" x="7899" y="-3012.3" font-family="Times,serif" font-size="14.00">NotificationType</text>
|
||||
<polyline fill="none" stroke="black" points="7844,-3004.5 7954,-3004.5 "/>
|
||||
<text text-anchor="middle" x="7899" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="7844,-2989 7844,-3035 7954,-3035 7954,-2989 7844,-2989"/>
|
||||
<text text-anchor="middle" x="7899" y="-3019.8" font-family="Times,serif" font-size="14.00">NotificationType</text>
|
||||
<polyline fill="none" stroke="black" points="7844,-3012 7954,-3012 "/>
|
||||
<text text-anchor="middle" x="7899" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Stylesheet -->
|
||||
<g id="node72" class="node"><title>Stylesheet</title>
|
||||
<path fill="none" stroke="black" d="M7984,-2959C7984,-2959 8204,-2959 8204,-2959 8210,-2959 8216,-2965 8216,-2971 8216,-2971 8216,-3038 8216,-3038 8216,-3044 8210,-3050 8204,-3050 8204,-3050 7984,-3050 7984,-3050 7978,-3050 7972,-3044 7972,-3038 7972,-3038 7972,-2971 7972,-2971 7972,-2965 7978,-2959 7984,-2959"/>
|
||||
<text text-anchor="middle" x="8094" y="-3034.8" font-family="Times,serif" font-size="14.00">Stylesheet</text>
|
||||
<polyline fill="none" stroke="black" points="7972,-3027 8216,-3027 "/>
|
||||
<text text-anchor="start" x="7980" y="-3011.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="7980" y="-2996.8" font-family="Times,serif" font-size="14.00">contents :text</text>
|
||||
<text text-anchor="start" x="7980" y="-2981.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="7980" y="-2966.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M7984,-2966.5C7984,-2966.5 8204,-2966.5 8204,-2966.5 8210,-2966.5 8216,-2972.5 8216,-2978.5 8216,-2978.5 8216,-3045.5 8216,-3045.5 8216,-3051.5 8210,-3057.5 8204,-3057.5 8204,-3057.5 7984,-3057.5 7984,-3057.5 7978,-3057.5 7972,-3051.5 7972,-3045.5 7972,-3045.5 7972,-2978.5 7972,-2978.5 7972,-2972.5 7978,-2966.5 7984,-2966.5"/>
|
||||
<text text-anchor="middle" x="8094" y="-3042.3" font-family="Times,serif" font-size="14.00">Stylesheet</text>
|
||||
<polyline fill="none" stroke="black" points="7972,-3034.5 8216,-3034.5 "/>
|
||||
<text text-anchor="start" x="7980" y="-3019.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="7980" y="-3004.3" font-family="Times,serif" font-size="14.00">contents :text</text>
|
||||
<text text-anchor="start" x="7980" y="-2989.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="7980" y="-2974.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
<!-- Coupon -->
|
||||
<g id="node78" class="node"><title>Coupon</title>
|
||||
@ -1723,9 +1724,9 @@
|
||||
</g>
|
||||
<!-- Coupon->Invoice -->
|
||||
<g id="edge105" class="edge"><title>Coupon->Invoice</title>
|
||||
<path fill="none" stroke="#426e2a" d="M3054.71,-610.618C3033.09,-580.448 3006.81,-548.637 2978,-524 2922.33,-476.382 2850.87,-437.254 2789.61,-408.776"/>
|
||||
<ellipse fill="none" stroke="#426e2a" cx="3057.22" cy="-614.167" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#426e2a" stroke="#426e2a" points="2789.35,-408.654 2782.14,-400.387 2784.81,-406.565 2780.26,-404.475 2780.26,-404.475 2780.26,-404.475 2784.81,-406.565 2778.38,-408.563 2789.35,-408.654 2789.35,-408.654"/>
|
||||
<path fill="none" stroke="#58dacf" d="M3054.71,-610.618C3033.09,-580.448 3006.81,-548.637 2978,-524 2922.33,-476.382 2850.87,-437.254 2789.61,-408.776"/>
|
||||
<ellipse fill="none" stroke="#58dacf" cx="3057.22" cy="-614.167" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#58dacf" stroke="#58dacf" points="2789.35,-408.654 2782.14,-400.387 2784.81,-406.565 2780.26,-404.475 2780.26,-404.475 2780.26,-404.475 2784.81,-406.565 2778.38,-408.563 2789.35,-408.654 2789.35,-408.654"/>
|
||||
</g>
|
||||
<!-- Category -->
|
||||
<g id="node79" class="node"><title>Category</title>
|
||||
@ -1740,9 +1741,9 @@
|
||||
</g>
|
||||
<!-- Category->Event -->
|
||||
<g id="edge106" class="edge"><title>Category->Event</title>
|
||||
<path fill="none" stroke="#368a81" d="M4635.95,-2566.93C4618.94,-2482.12 4587.56,-2325.65 4566,-2218.17"/>
|
||||
<ellipse fill="none" stroke="#368a81" cx="4636.76" cy="-2570.97" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#368a81" stroke="#368a81" points="4565.98,-2218.06 4568.42,-2207.37 4564.99,-2213.15 4564.01,-2208.25 4564.01,-2208.25 4564.01,-2208.25 4564.99,-2213.15 4559.6,-2209.14 4565.98,-2218.06 4565.98,-2218.06"/>
|
||||
<path fill="none" stroke="#a12d34" d="M4635.95,-2566.93C4618.94,-2482.12 4587.56,-2325.65 4566,-2218.17"/>
|
||||
<ellipse fill="none" stroke="#a12d34" cx="4636.76" cy="-2570.97" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#a12d34" stroke="#a12d34" points="4565.98,-2218.06 4568.42,-2207.37 4564.99,-2213.15 4564.01,-2208.25 4564.01,-2208.25 4564.01,-2208.25 4564.99,-2213.15 4559.6,-2209.14 4565.98,-2218.06 4565.98,-2218.06"/>
|
||||
</g>
|
||||
<!-- MachineImage -->
|
||||
<g id="node81" class="node"><title>MachineImage</title>
|
||||
@ -1759,96 +1760,96 @@
|
||||
</g>
|
||||
<!-- Feed -->
|
||||
<g id="node82" class="node"><title>Feed</title>
|
||||
<polygon fill="none" stroke="black" points="8234,-2981.5 8234,-3027.5 8288,-3027.5 8288,-2981.5 8234,-2981.5"/>
|
||||
<text text-anchor="middle" x="8261" y="-3012.3" font-family="Times,serif" font-size="14.00">Feed</text>
|
||||
<polyline fill="none" stroke="black" points="8234,-3004.5 8288,-3004.5 "/>
|
||||
<text text-anchor="middle" x="8261" y="-2989.3" font-family="Times,serif" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="8234,-2989 8234,-3035 8288,-3035 8288,-2989 8234,-2989"/>
|
||||
<text text-anchor="middle" x="8261" y="-3019.8" font-family="Times,serif" font-size="14.00">Feed</text>
|
||||
<polyline fill="none" stroke="black" points="8234,-3012 8288,-3012 "/>
|
||||
<text text-anchor="middle" x="8261" y="-2996.8" font-family="Times,serif" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Machine->Price -->
|
||||
<g id="edge110" class="edge"><title>Machine->Price</title>
|
||||
<path fill="none" stroke="#56d0c3" d="M3272.71,-1597.34C3302.7,-1544.63 3339.65,-1471.04 3358,-1401 3386.32,-1292.93 3389.17,-1163.36 3387.22,-1080.26"/>
|
||||
<ellipse fill="none" stroke="#56d0c3" cx="3270.7" cy="-1600.84" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#56d0c3" stroke="#56d0c3" points="3387.22,-1080.11 3391.45,-1069.99 3387.08,-1075.11 3386.95,-1070.11 3386.95,-1070.11 3386.95,-1070.11 3387.08,-1075.11 3382.45,-1070.23 3387.22,-1080.11 3387.22,-1080.11"/>
|
||||
<path fill="none" stroke="#555d9e" d="M3272.71,-1597.34C3302.7,-1544.63 3339.65,-1471.04 3358,-1401 3386.32,-1292.93 3389.17,-1163.36 3387.22,-1080.26"/>
|
||||
<ellipse fill="none" stroke="#555d9e" cx="3270.7" cy="-1600.84" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#555d9e" stroke="#555d9e" points="3387.22,-1080.11 3391.45,-1069.99 3387.08,-1075.11 3386.95,-1070.11 3386.95,-1070.11 3386.95,-1070.11 3387.08,-1075.11 3382.45,-1070.23 3387.22,-1080.11 3387.22,-1080.11"/>
|
||||
</g>
|
||||
<!-- Machine->Plan -->
|
||||
<g id="edge113" class="edge"><title>Machine->Plan</title>
|
||||
<path fill="none" stroke="#1650b6" d="M3098.92,-1596.59C3096.09,-1593.18 3093.44,-1589.66 3091,-1586 3049.26,-1523.37 3096.34,-1486.47 3063,-1419 3060.4,-1413.74 3057.55,-1408.53 3054.48,-1403.4"/>
|
||||
<polygon fill="#1650b6" stroke="#1650b6" points="3099.16,-1596.86 3102.48,-1607.31 3102.49,-1600.58 3105.83,-1604.31 3105.83,-1604.31 3105.83,-1604.31 3102.49,-1600.58 3109.18,-1601.31 3099.16,-1596.86 3099.16,-1596.86"/>
|
||||
<polygon fill="#1650b6" stroke="#1650b6" points="3054.44,-1403.32 3052.96,-1392.46 3051.79,-1399.08 3049.14,-1394.84 3049.14,-1394.84 3049.14,-1394.84 3051.79,-1399.08 3045.33,-1397.22 3054.44,-1403.32 3054.44,-1403.32"/>
|
||||
<path fill="none" stroke="#cd027d" d="M3098.92,-1596.59C3096.09,-1593.18 3093.44,-1589.66 3091,-1586 3049.26,-1523.37 3096.34,-1486.47 3063,-1419 3060.4,-1413.74 3057.55,-1408.53 3054.48,-1403.4"/>
|
||||
<polygon fill="#cd027d" stroke="#cd027d" points="3099.16,-1596.86 3102.48,-1607.31 3102.49,-1600.58 3105.83,-1604.31 3105.83,-1604.31 3105.83,-1604.31 3102.49,-1600.58 3109.18,-1601.31 3099.16,-1596.86 3099.16,-1596.86"/>
|
||||
<polygon fill="#cd027d" stroke="#cd027d" points="3054.44,-1403.32 3052.96,-1392.46 3051.79,-1399.08 3049.14,-1394.84 3049.14,-1394.84 3049.14,-1394.84 3051.79,-1399.08 3045.33,-1397.22 3054.44,-1403.32 3054.44,-1403.32"/>
|
||||
</g>
|
||||
<!-- Machine->MachineFile -->
|
||||
<g id="edge108" class="edge"><title>Machine->MachineFile</title>
|
||||
<path fill="none" stroke="#e0b276" d="M3227,-1596.08C3227,-1525.82 3227,-1421.54 3227,-1350.71"/>
|
||||
<ellipse fill="none" stroke="#e0b276" cx="3227" cy="-1600.43" rx="4" ry="4"/>
|
||||
<polygon fill="#e0b276" stroke="#e0b276" points="3227,-1350.51 3231.5,-1340.51 3227,-1345.51 3227,-1340.51 3227,-1340.51 3227,-1340.51 3227,-1345.51 3222.5,-1340.51 3227,-1350.51 3227,-1350.51"/>
|
||||
<path fill="none" stroke="#d21c8e" d="M3227,-1596.08C3227,-1525.82 3227,-1421.54 3227,-1350.71"/>
|
||||
<ellipse fill="none" stroke="#d21c8e" cx="3227" cy="-1600.43" rx="4" ry="4"/>
|
||||
<polygon fill="#d21c8e" stroke="#d21c8e" points="3227,-1350.51 3231.5,-1340.51 3227,-1345.51 3227,-1340.51 3227,-1340.51 3227,-1340.51 3227,-1345.51 3222.5,-1340.51 3227,-1350.51 3227,-1350.51"/>
|
||||
</g>
|
||||
<!-- Machine->Credit -->
|
||||
<g id="edge112" class="edge"><title>Machine->Credit</title>
|
||||
<path fill="none" stroke="#e9a441" d="M3183.46,-1597.36C3154.27,-1544.37 3117.4,-1470.44 3096,-1401 3062,-1290.66 3121.71,-1240.29 3058,-1144 2995.82,-1050.02 2833.27,-1128.89 2728,-1093 2710.03,-1086.87 2692.18,-1077.91 2675.46,-1067.87"/>
|
||||
<ellipse fill="none" stroke="#e9a441" cx="3185.41" cy="-1600.87" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#e9a441" stroke="#e9a441" points="2675.33,-1067.8 2669.2,-1058.71 2671.08,-1065.17 2666.83,-1062.53 2666.83,-1062.53 2666.83,-1062.53 2671.08,-1065.17 2664.46,-1066.36 2675.33,-1067.8 2675.33,-1067.8"/>
|
||||
<path fill="none" stroke="#0892d4" d="M3183.46,-1597.36C3154.27,-1544.37 3117.4,-1470.44 3096,-1401 3062,-1290.66 3121.71,-1240.29 3058,-1144 2995.82,-1050.02 2833.27,-1128.89 2728,-1093 2710.03,-1086.87 2692.18,-1077.91 2675.46,-1067.87"/>
|
||||
<ellipse fill="none" stroke="#0892d4" cx="3185.41" cy="-1600.87" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#0892d4" stroke="#0892d4" points="2675.33,-1067.8 2669.2,-1058.71 2671.08,-1065.17 2666.83,-1062.53 2666.83,-1062.53 2666.83,-1062.53 2671.08,-1065.17 2664.46,-1066.36 2675.33,-1067.8 2675.33,-1067.8"/>
|
||||
</g>
|
||||
<!-- Machine->Reservation -->
|
||||
<g id="edge111" class="edge"><title>Machine->Reservation</title>
|
||||
<path fill="none" stroke="#b09aef" d="M3356.89,-1604.32C3357.26,-1604.21 3357.63,-1604.11 3358,-1604 3449.3,-1577.74 3481.17,-1616.93 3571,-1586 3713.08,-1537.07 3736.72,-1494.95 3854,-1401 3868.76,-1389.17 3883.76,-1375.94 3898.07,-1362.6"/>
|
||||
<ellipse fill="none" stroke="#b09aef" cx="3352.94" cy="-1605.55" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#b09aef" stroke="#b09aef" points="3898.2,-1362.47 3908.57,-1358.89 3901.84,-1359.04 3905.49,-1355.62 3905.49,-1355.62 3905.49,-1355.62 3901.84,-1359.04 3902.4,-1352.34 3898.2,-1362.47 3898.2,-1362.47"/>
|
||||
<path fill="none" stroke="#bb166b" d="M3356.89,-1604.32C3357.26,-1604.21 3357.63,-1604.11 3358,-1604 3449.3,-1577.74 3481.17,-1616.93 3571,-1586 3713.08,-1537.07 3736.72,-1494.95 3854,-1401 3868.76,-1389.17 3883.76,-1375.94 3898.07,-1362.6"/>
|
||||
<ellipse fill="none" stroke="#bb166b" cx="3352.94" cy="-1605.55" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#bb166b" stroke="#bb166b" points="3898.2,-1362.47 3908.57,-1358.89 3901.84,-1359.04 3905.49,-1355.62 3905.49,-1355.62 3905.49,-1355.62 3901.84,-1359.04 3902.4,-1352.34 3898.2,-1362.47 3898.2,-1362.47"/>
|
||||
</g>
|
||||
<!-- Machine->MachinesAvailability -->
|
||||
<g id="edge109" class="edge"><title>Machine->MachinesAvailability</title>
|
||||
<path fill="none" stroke="#0a7e7e" d="M3356.91,-1604.38C3357.27,-1604.25 3357.64,-1604.12 3358,-1604 3398.63,-1590.01 3414.51,-1605.11 3453,-1586 3581.24,-1522.35 3691.3,-1389.04 3743.2,-1318.88"/>
|
||||
<ellipse fill="none" stroke="#0a7e7e" cx="3353.01" cy="-1605.79" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#0a7e7e" stroke="#0a7e7e" points="3743.32,-1318.71 3752.86,-1313.31 3746.28,-1314.68 3749.23,-1310.65 3749.23,-1310.65 3749.23,-1310.65 3746.28,-1314.68 3745.61,-1307.99 3743.32,-1318.71 3743.32,-1318.71"/>
|
||||
<path fill="none" stroke="#c4e816" d="M3356.91,-1604.38C3357.27,-1604.25 3357.64,-1604.12 3358,-1604 3398.63,-1590.01 3414.51,-1605.11 3453,-1586 3581.24,-1522.35 3691.3,-1389.04 3743.2,-1318.88"/>
|
||||
<ellipse fill="none" stroke="#c4e816" cx="3353.01" cy="-1605.79" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#c4e816" stroke="#c4e816" points="3743.32,-1318.71 3752.86,-1313.31 3746.28,-1314.68 3749.23,-1310.65 3749.23,-1310.65 3749.23,-1310.65 3746.28,-1314.68 3745.61,-1307.99 3743.32,-1318.71 3743.32,-1318.71"/>
|
||||
</g>
|
||||
<!-- Machine->MachineImage -->
|
||||
<g id="edge107" class="edge"><title>Machine->MachineImage</title>
|
||||
<path fill="none" stroke="#fcc614" d="M3356.49,-1604.41C3376.31,-1594.06 3390.49,-1586.55 3391,-1586 3453.94,-1518.49 3490.67,-1417.23 3509.76,-1348.41"/>
|
||||
<ellipse fill="none" stroke="#fcc614" cx="3352.81" cy="-1606.34" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#fcc614" stroke="#fcc614" cx="3510.84" cy="-1344.46" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#012c4b" d="M3356.49,-1604.41C3376.31,-1594.06 3390.49,-1586.55 3391,-1586 3453.94,-1518.49 3490.67,-1417.23 3509.76,-1348.41"/>
|
||||
<ellipse fill="none" stroke="#012c4b" cx="3352.81" cy="-1606.34" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#012c4b" stroke="#012c4b" cx="3510.84" cy="-1344.46" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- Abuse -->
|
||||
<g id="node84" class="node"><title>Abuse</title>
|
||||
<path fill="none" stroke="black" d="M8318,-2921.5C8318,-2921.5 8538,-2921.5 8538,-2921.5 8544,-2921.5 8550,-2927.5 8550,-2933.5 8550,-2933.5 8550,-3075.5 8550,-3075.5 8550,-3081.5 8544,-3087.5 8538,-3087.5 8538,-3087.5 8318,-3087.5 8318,-3087.5 8312,-3087.5 8306,-3081.5 8306,-3075.5 8306,-3075.5 8306,-2933.5 8306,-2933.5 8306,-2927.5 8312,-2921.5 8318,-2921.5"/>
|
||||
<text text-anchor="middle" x="8428" y="-3072.3" font-family="Times,serif" font-size="14.00">Abuse</text>
|
||||
<polyline fill="none" stroke="black" points="8306,-3064.5 8550,-3064.5 "/>
|
||||
<text text-anchor="start" x="8314" y="-3049.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="8314" y="-3034.3" font-family="Times,serif" font-size="14.00">signaled_id :integer</text>
|
||||
<text text-anchor="start" x="8314" y="-3019.3" font-family="Times,serif" font-size="14.00">signaled_type :character varying</text>
|
||||
<text text-anchor="start" x="8314" y="-3004.3" font-family="Times,serif" font-size="14.00">first_name :character varying</text>
|
||||
<text text-anchor="start" x="8314" y="-2989.3" font-family="Times,serif" font-size="14.00">last_name :character varying</text>
|
||||
<text text-anchor="start" x="8314" y="-2974.3" font-family="Times,serif" font-size="14.00">email :character varying</text>
|
||||
<text text-anchor="start" x="8314" y="-2959.3" font-family="Times,serif" font-size="14.00">message :text</text>
|
||||
<text text-anchor="start" x="8314" y="-2944.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="8314" y="-2929.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M8318,-2929C8318,-2929 8538,-2929 8538,-2929 8544,-2929 8550,-2935 8550,-2941 8550,-2941 8550,-3083 8550,-3083 8550,-3089 8544,-3095 8538,-3095 8538,-3095 8318,-3095 8318,-3095 8312,-3095 8306,-3089 8306,-3083 8306,-3083 8306,-2941 8306,-2941 8306,-2935 8312,-2929 8318,-2929"/>
|
||||
<text text-anchor="middle" x="8428" y="-3079.8" font-family="Times,serif" font-size="14.00">Abuse</text>
|
||||
<polyline fill="none" stroke="black" points="8306,-3072 8550,-3072 "/>
|
||||
<text text-anchor="start" x="8314" y="-3056.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="8314" y="-3041.8" font-family="Times,serif" font-size="14.00">signaled_id :integer</text>
|
||||
<text text-anchor="start" x="8314" y="-3026.8" font-family="Times,serif" font-size="14.00">signaled_type :character varying</text>
|
||||
<text text-anchor="start" x="8314" y="-3011.8" font-family="Times,serif" font-size="14.00">first_name :character varying</text>
|
||||
<text text-anchor="start" x="8314" y="-2996.8" font-family="Times,serif" font-size="14.00">last_name :character varying</text>
|
||||
<text text-anchor="start" x="8314" y="-2981.8" font-family="Times,serif" font-size="14.00">email :character varying</text>
|
||||
<text text-anchor="start" x="8314" y="-2966.8" font-family="Times,serif" font-size="14.00">message :text</text>
|
||||
<text text-anchor="start" x="8314" y="-2951.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="8314" y="-2936.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
<!-- Profile->UserAvatar -->
|
||||
<g id="edge114" class="edge"><title>Profile->UserAvatar</title>
|
||||
<path fill="none" stroke="#af542b" d="M387.806,-1876.7C401.96,-1830.45 415.909,-1784.88 426.998,-1748.65"/>
|
||||
<ellipse fill="none" stroke="#af542b" cx="386.63" cy="-1880.54" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#af542b" stroke="#af542b" cx="428.293" cy="-1744.42" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#7cecd6" d="M387.806,-1876.7C401.96,-1830.45 415.909,-1784.88 426.998,-1748.65"/>
|
||||
<ellipse fill="none" stroke="#7cecd6" cx="386.63" cy="-1880.54" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#7cecd6" stroke="#7cecd6" cx="428.293" cy="-1744.42" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- Profile->Address -->
|
||||
<g id="edge115" class="edge"><title>Profile->Address</title>
|
||||
<path fill="none" stroke="#9185dc" d="M191.536,-1968.95C139.045,-1905.32 84.2238,-1824.77 57,-1741 17.3358,-1618.96 62.6798,-1473.98 104.883,-1378.18"/>
|
||||
<ellipse fill="none" stroke="#9185dc" cx="194.378" cy="-1972.37" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#9185dc" stroke="#9185dc" cx="106.546" cy="-1374.45" rx="4.00002" ry="4.00002"/>
|
||||
<path fill="none" stroke="#b8e1c9" d="M191.536,-1968.95C139.045,-1905.32 84.2238,-1824.77 57,-1741 17.3358,-1618.96 62.6798,-1473.98 104.883,-1378.18"/>
|
||||
<ellipse fill="none" stroke="#b8e1c9" cx="194.378" cy="-1972.37" rx="4.00002" ry="4.00002"/>
|
||||
<ellipse fill="#b8e1c9" stroke="#b8e1c9" cx="106.546" cy="-1374.45" rx="4.00002" ry="4.00002"/>
|
||||
</g>
|
||||
<!-- Profile->Organization -->
|
||||
<g id="edge116" class="edge"><title>Profile->Organization</title>
|
||||
<path fill="none" stroke="#c2ae3a" d="M250.101,-1876.39C233.967,-1823.68 218.11,-1771.87 206.457,-1733.8"/>
|
||||
<ellipse fill="none" stroke="#c2ae3a" cx="251.37" cy="-1880.54" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#c2ae3a" stroke="#c2ae3a" cx="205.207" cy="-1729.72" rx="4.00001" ry="4.00001"/>
|
||||
<path fill="none" stroke="#60c417" d="M250.101,-1876.39C233.967,-1823.68 218.11,-1771.87 206.457,-1733.8"/>
|
||||
<ellipse fill="none" stroke="#60c417" cx="251.37" cy="-1880.54" rx="4.00001" ry="4.00001"/>
|
||||
<ellipse fill="#60c417" stroke="#60c417" cx="205.207" cy="-1729.72" rx="4.00001" ry="4.00001"/>
|
||||
</g>
|
||||
<!-- Setting -->
|
||||
<g id="node88" class="node"><title>Setting</title>
|
||||
<path fill="none" stroke="black" d="M8580,-2951.5C8580,-2951.5 8800,-2951.5 8800,-2951.5 8806,-2951.5 8812,-2957.5 8812,-2963.5 8812,-2963.5 8812,-3045.5 8812,-3045.5 8812,-3051.5 8806,-3057.5 8800,-3057.5 8800,-3057.5 8580,-3057.5 8580,-3057.5 8574,-3057.5 8568,-3051.5 8568,-3045.5 8568,-3045.5 8568,-2963.5 8568,-2963.5 8568,-2957.5 8574,-2951.5 8580,-2951.5"/>
|
||||
<text text-anchor="middle" x="8690" y="-3042.3" font-family="Times,serif" font-size="14.00">Setting</text>
|
||||
<polyline fill="none" stroke="black" points="8568,-3034.5 8812,-3034.5 "/>
|
||||
<text text-anchor="start" x="8576" y="-3019.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="8576" y="-3004.3" font-family="Times,serif" font-size="14.00">name :character varying</text>
|
||||
<text text-anchor="start" x="8576" y="-2989.3" font-family="Times,serif" font-size="14.00">value :text</text>
|
||||
<text text-anchor="start" x="8576" y="-2974.3" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="8576" y="-2959.3" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
<path fill="none" stroke="black" d="M8580,-2959C8580,-2959 8800,-2959 8800,-2959 8806,-2959 8812,-2965 8812,-2971 8812,-2971 8812,-3053 8812,-3053 8812,-3059 8806,-3065 8800,-3065 8800,-3065 8580,-3065 8580,-3065 8574,-3065 8568,-3059 8568,-3053 8568,-3053 8568,-2971 8568,-2971 8568,-2965 8574,-2959 8580,-2959"/>
|
||||
<text text-anchor="middle" x="8690" y="-3049.8" font-family="Times,serif" font-size="14.00">Setting</text>
|
||||
<polyline fill="none" stroke="black" points="8568,-3042 8812,-3042 "/>
|
||||
<text text-anchor="start" x="8576" y="-3026.8" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="8576" y="-3011.8" font-family="Times,serif" font-size="14.00">name :character varying</text>
|
||||
<text text-anchor="start" x="8576" y="-2996.8" font-family="Times,serif" font-size="14.00">value :text</text>
|
||||
<text text-anchor="start" x="8576" y="-2981.8" font-family="Times,serif" font-size="14.00">created_at :timestamp without time zone</text>
|
||||
<text text-anchor="start" x="8576" y="-2966.8" font-family="Times,serif" font-size="14.00">updated_at :timestamp without time zone</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 192 KiB |