diff --git a/Documentation/PHP - PHP ARCHITECTURE.pdf b/Documentation/PHP - PHP ARCHITECTURE.pdf new file mode 100644 index 0000000..21b28f4 Binary files /dev/null and b/Documentation/PHP - PHP ARCHITECTURE.pdf differ diff --git a/Documentation/classe/BDD.png b/Documentation/classe/BDD.png new file mode 100644 index 0000000..809d4df Binary files /dev/null and b/Documentation/classe/BDD.png differ diff --git a/Documentation/classe/classDiagram.md b/Documentation/classe/classDiagram.md new file mode 100644 index 0000000..ba63caa --- /dev/null +++ b/Documentation/classe/classDiagram.md @@ -0,0 +1,90 @@ +```plantuml +@startuml "BDD" + +class Scientifique{ + nom : String + prenom : String + photo : Raw + dateNaissance : Date + descriptif : String + ratioTrouvee : Float +} + +class Thematique{ + libelle : String +} + +class Sexe{ + libelle : String +} + +class "Difficulte"{ + libelle: String +} + +class Indice{ + indice : String +} + +Scientifique "*" --> "1..*" Thematique +Scientifique "*" --> "1" Sexe +Scientifique "*" --> "1" "Difficulte" +Scientifique "*" <-- "*"Utilisateur : A découvert < +Scientifique .. Admin : Gérer < +Scientifique "1" --> "*" Indice + + +class Question{ + question : String +} + +class Reponse{ + reponse : String +} + +Question "1" --> "1..*" Reponse +Reponse "0..*" --> "1" Scientifique + +abstract class Joueur{ + pseudo : String {unique} +} + +class Utilisateur{ + email : String {unique} + motDePasse : Hash +} + +class Invite{ + idSession : Integer +} + +Joueur <|-- Utilisateur +Joueur <|-- Invite + +class Admin{ + email : String {unique} + motDePasse : Hash +} + +abstract class Jeu{ + nom : String + nbrParties : Integer +} + +Jeu .. Scientifique : Accède > + +class Pendu extends Jeu + +Pendu "1" --> "1..*" Scientifique + +class Partie{ + codeInvitation : String + isFinished : Boolean +} + +Partie "*" --> "1" Jeu + +Partie "1" --> "1..*" Joueur + +@enduml +``` \ No newline at end of file diff --git a/Documentation/classe_participante/Diagramme de classes participantes lancer une partie.png b/Documentation/classe_participante/Diagramme de classes participantes lancer une partie.png new file mode 100644 index 0000000..fdb508b Binary files /dev/null and b/Documentation/classe_participante/Diagramme de classes participantes lancer une partie.png differ diff --git a/Documentation/classe_participante/classParticipante.pu b/Documentation/classe_participante/classParticipante.pu new file mode 100644 index 0000000..40f3aed --- /dev/null +++ b/Documentation/classe_participante/classParticipante.pu @@ -0,0 +1,130 @@ +Logiciel : plantuml +https://plantuml.com/fr/ + +@startuml "Diagramme de classes participantes PHP" + +class FrontController <>{ + +} + +FrontController --> ControllerAdmin +FrontController --> ControllerUtilisateur +FrontController --> ControllerInvite + +class ControllerUtilisateur <>{ + +} + +ControllerUtilisateur --> ControllerLancerJeu + +class ControllerInvite <>{ + +} + +ControllerInvite --> ControllerLancerJeu + +class ControllerAdmin <>{ + +} + +class ControllerLancerJeu <>{ + lancerJeuAléatoirement() + lancerJeu() +} + + +class Accueil <>{ + rejoindrePartie() + lancerUnJeu() + seConnecter() + seDeconnecter() +} + +Accueil --> RejoindrePartie +Accueil --> LancerUnJeu +Accueil --> Connexion + +class RejoindrePartie <>{ + codeInvitation : String + rejoindrePartie() +} + +class LancerUnJeu <>{ + jeux : Array + choisirJeu() + choisirJeuAléatoirement() +} + +class Connexion <>{ + email : String + motDePasse : String + seConnecter() +} + +Connexion --> EspacePersonnel + +class EspacePersonnel <>{ + scientifiqueTrouvés : Array + accéderFicheScientifique() + ChangerPseudo() +} + +EspacePersonnel --> DetailsScientifique +EspacePersonnel --> ChangerPseudo + +class DetailsScientifique <>{ + nom : String + prenom : String + photo : String + dateNaissance : Date + descriptif : String + thematiques : Array + retourEspacePersonnel() +} + +class ChangerPseudo <>{ + pseudo : String + setPseudo() +} + + + + + +class Scientifique <>{ + nom : String + prenom : String + photo : Raw + dateNaissance : Date + descriptif : String + ratioTrouvee : Float +} + +class Thematique <>{ + libelle : String +} + +class "Difficulté" <>{ + libelle: String +} + +abstract Compte <>{ + email : String + motDePasse : Hash +} + +class Utilisateur <>{ + pseudo : String +} + +class Admin <>{ +} + + +class Jeu <>{ + nom : String + nbrParties : Integer +} + + +@enduml \ No newline at end of file diff --git a/Documentation/classe_participante/lancerUnePartie.pu b/Documentation/classe_participante/lancerUnePartie.pu new file mode 100644 index 0000000..a1ed21a --- /dev/null +++ b/Documentation/classe_participante/lancerUnePartie.pu @@ -0,0 +1,90 @@ +Logiciel : plantuml +https://plantuml.com/fr/ + +@startuml "Diagramme de classes participantes lancer une partie" +class Invité <>{} + +Invité --> Accueil : 1 +Accueil --> FrontController : 2 +LancerUnJeu --> FrontController : 9 + +class FrontController <>{ + +} + +FrontController --> ControllerInvite : 3 , 1O, 16, 24 + + +class ControllerInvite <>{ + +} + +ControllerInvite --> ControllerLancerJeu : 4, 11, 17, 25 + + +class ControllerLancerJeu <>{ + lancerJeuAléatoirement() + lancerJeu() +} +ControllerLancerJeu --> LancerUnJeu : 6 +ControllerLancerJeu --> Jeu : 5 +ControllerLancerJeu --> SaisirPseudo : 12 +ControllerLancerJeu --> Difficulté : 18 +ControllerLancerJeu --> Thematique : 19 +ControllerLancerJeu --> ConfigurerUnjeu : 20 +ControllerLancerJeu --> VueDuJeu : 26 + +class Accueil <>{ + rejoindrePartie() + lancerUnJeu() + seConnecter() + seDeconnecter() +} + +class VueDuJeu <>{ + +} +VueDuJeu --> Invité : 27 + +class SaisirPseudo <>{ + pseudo : String + valider() +} +SaisirPseudo --> Invité : 13 +SaisirPseudo <-- Invité : 14 +SaisirPseudo --> FrontController : 15 + +class LancerUnJeu <>{ + jeux : Array + choisirJeu() + choisirJeuAléatoirement() +} + +class ConfigurerUnjeu <>{ + difficulté : Integer + thématique : Integer + valider() +} +Invité <-- ConfigurerUnjeu : 21 +Invité --> ConfigurerUnjeu : 22 +ConfigurerUnjeu --> FrontController : 23 + +LancerUnJeu --> Invité : 7 +LancerUnJeu <-- Invité : 8 + + + +class Thematique <>{ + libelle : String +} + +class "Difficulté" <>{ + libelle: String +} + +class Jeu <>{ + nom : String + nbrParties : Integer +} + +@enduml \ No newline at end of file diff --git a/Documentation/conception/Conception.svg b/Documentation/conception/Conception.svg new file mode 100644 index 0000000..747a92c --- /dev/null +++ b/Documentation/conception/Conception.svg @@ -0,0 +1,3697 @@ + + + + + + + + + + + + + + + + + + + + + + + +Scientifique + + + + + + +-id: int + + + + + + +-nom: string + + + + + + +-prenom: string + + + + + + +-dateNaissance: date + + + + + + +-descriptif: string + + + + + + +-ratioTrouvee: float + + + + + + ++Scientifique(id: int, nom: string, prenom: string, dateNaissance: date, descriptif: string, ratiotrouvee: float, thematique: Thematique, sexe: Sexe, difficulte: Difficulte) + + + + + + + + + + + + + + + + + + + + + +Thematique + + + + + + +-id: int + + + + + + +-libelle: string + + + + + + ++Thematique(id: int, libelle: string) + + + + + + + + + + + + + + + +0..* + + + + + + + + + +-thematique + + + + + + + + + +1 + + + + + + + + + + + + + + + + + + + + + +Difficulte + + + + + + +-id: int + + + + + + +-libelle: string + + + + + + ++Difficulte(id: int, libelle: string) + + + + + + + + + + + + + + + +-difficulte + + + + + + + + + +0..* + + + + + + + + + +1 + + + + + + + + + + + + + + + + + + + + + +Sexe + + + + + + +-id: int + + + + + + +-libelle: string + + + + + + ++Sexe(id: int, libelle: string) + + + + + + + + + + + + +1 + + + + + + + + + +0..* + + + + + + +-sexe + + + + + + + + + + + + + + + + + + + + + +Joueur + + + + + + +-id: int + + + + + + +-pseudo: string + + + + + + ++Joueur(id int, pseudo string) + + + + + + + + + + + + + + + + + + + + + +Utilisateur + + + + + + +-email: string + + + + + + +-motDePasse: string + + + + + + ++Utilisateur(id int, pseudo string, email string, motdepasse string) + + + + + + + + + + + + + + + + + + + + + +Invite + + + + + + +-idSession: string + + + + + + ++Invite(id int, pseudo string, idsession string) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +-scientifiquesDecouverts + + + + + + + + + +0..* + + + + + + + + + +0..* + + + + + + + + + + + + + + + + + + + + + +JeuDB + + + + + + +-id: int + + + + + + +-nom: string + + + + + + +-nbParties: int + + + + + + ++Jeu(id int, nom string, nbParties: int) + + + + + + + + + + + + + + + + + + + + + + + + + + + +Partie + + + + + + +-id: int + + + + + + +-codeInvitation: string + + + + + + ++Partie(int: id, codeInvitation: string, jeu: JeuDB) + + + + + + + + + + + + + + + +-jeu + + + + + + + + + +0..* + + + + + + + + + +1 + + + + + + + + + + + + + + + +-joueurs + + + + + + + + + +0..1 + + + + + + + + + +1..* + + + + + + + + + + + + + + + + + + + + + +Admin + + + + + + +-id: int + + + + + + +-email: string + + + + + + +-motDePasse: string + + + + + + ++Admin(id: int, email: string, motDePasse: string) + + + + + + + + + + + + + + + + + + + + + +Indice + + + + + + +-id: int + + + + + + +-indice: string + + + + + + ++Indice(id int, indice string) + + + + + + + + + + + + + + + +-indices + + + + + + + + + +1 + + + + + + + + + +0..* + + + + + + + + + + + + + + + + + + + + + + + + + + + +Question + + + + + + +-id: int + + + + + + +-question: string + + + + + + ++Question(id: int, question: string) + + + + + + + + + + + + + + + + + + + + + +Reponse + + + + + + +-id: int + + + + + + +-reponse + + + + + + ++Reponse(id: int, reponse: string) + + + + + + + + + + + + + + + + + + + + + +-reponses + + + + + + + + + +1 + + + + + + + + + +2..* + + + + + + + + + + + + + + + +-scientifique + + + + + + + + + +0..* + + + + + + + + + +1 + + + + + + + + + + + + + + + + + + + + + +QuestionGateway + + + + + + ++QuestionGateway(con: Connection) + + + + + + ++getRandom(): Question + + + + + + ++getFromId(id: int): Question + + + + + + + + + + + + + + + + + + + + + + + + + + + +ReponseGateway + + + + + + ++ReponseGateway(con: Connection) + + + + + + ++getFromId(id: int): Reponse + + + + + + ++getFromQuestion(idQuestion: int): List<Reponse> + + + + + + + + + + + + + + + + + + + + + +Gateway + + + + + + ++Gateway(con: Connection) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IndiceGateway + + + + + + ++IndiceGateway(con: Connection) + + + + + + ++getFromId(id: int): array + + + + + + ++getFromScientifique(idScientifique: int): array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ThematiqueGateway + + + + + + ++ThematiqueGateway(con Connection) + + + + + + ++getFromId(id int): array + + + + + + ++getAll(): array + + + + + + ++getFromScientifique(idScientifique int): array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SexeGateway + + + + + + ++SexeGateway(con: Connection) + + + + + + ++getFromId(id: int): array + + + + + + ++getFromScientifique(idScientifique: int): array + + + + + + ++getAll(): array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +DifficulteGateway + + + + + + ++DifficulteGateway(con: Connection) + + + + + + ++getFromId(id: int): array + + + + + + ++getFromScientifique(idScientifique: int): array + + + + + + ++getAll(): array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +AdminGateway + + + + + + ++AdminGateway(con: Connection) + + + + + + ++getFromId(id: int): array + + + + + + ++getFromEmail(email: string): array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +InviteGateway + + + + + + ++InviteGateway(con Connection) + + + + + + ++getFromId(int id): array + + + + + + ++getFromIdSession(idSession string): array + + + + + + ++insertInvite(pseudo string, idSession string): bool + + + + + + ++supprimerInvite(id int): bool + + + + + + + + + + + + + + + + + + + + + +UtilisateurGateway + + + + + + ++UtilisateurGateway(con Connection) + + + + + + ++getFromId(int id): array + + + + + + ++getFromEmail(email string): array + + + + + + ++insertUtilisateur(pseudo string, email string, motdepasse string): bool + + + + + + ++supprimerUtilisateur(id int): bool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PartieGateway + + + + + + ++PartieGateway(con: Connection) + + + + + + ++getFromId(id: int): Partie + + + + + + ++getFromCodeInvitation(code: string): Partie + + + + + + ++creerPartie(jeu: JeuDB, joueur: Joueur): Partie + + + + + + ++rejoindrePartie(codeInvitation: string, joueur: Joueur): bool + + + + + + ++supprimerPartie(id: int): bool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +JeuGateway + + + + + + ++JeuGateway(con: Connection) + + + + + + ++getFromId(id: int): JeuDB + + + + + + ++getAll(): List<Jeu> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ScientifiqueGateway + + + + + + ++ScientifiqueGateway(con: Connection) + + + + + + ++getFromId(id: int): array + + + + + + ++getRandomFromDifficulte(difficulte: Difficulte): array + + + + + + ++getRandom(): array + + + + + + ++deleteScientifique(id: int): bool + + + + + + ++insertScientifique(nom: string, prenom: string, dateNaissance: date, descriptif: string, thematique: Thematique, sexe: Sexe, difficulte: Difficulte): bool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +AdminController + + + + + + ++AdminController(con: Connection) + + + + + + ++defaultAction(params: array) + + + + + + ++notLogged(params: array) + + + + + + ++stats(params: array) + + + + + + ++ajouterScientifiques(params: array) + + + + + + ++listeScientifiques(params: array) + + + + + + +-verifierDonnees() + + + + + + + + + + + + + + + + + + + + + +FrontController + + + + + + ++FrontController() + + + + + + +-callController(controller: string, match: array) + + + + + + + + + + + + + + + + + + + + + +InviteController + + + + + + ++InviteController(con: Connection) + + + + + + ++creerUnePartie() + + + + + + ++rejoindreUnePartie() + + + + + + ++choisirPseudo() + + + + + + ++creerUnCompte() + + + + + + ++connexion() + + + + + + ++jouer() + + + + + + + + + + + + + + + + + + + + + +UserController + + + + + + ++UserController(con: Connection) + + + + + + ++listerLesScientifiquesDecouvert() + + + + + + ++deconnexion() + + + + + + ++afficherDetailScientifique() + + + + + + + + + + + + + + + + + + + + + + + + + + + +Validation + + + + + + ++valAlpha(str: string) + + + + + + + ++valAlphaNum(str: string) + + + + + + + ++valInteger(val: int, min: int, max: int) + + + + + + + ++valFloat(val: float, min: float, max: float) + + + + + + + ++valEmail(email: string) + + + + + + + ++valRole(id: int) + + + + + + + + + + + + + + + + + + + + + + +Role + + + + + + +-id: int + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Connection + + + + + + +-stmt: PDOStatement + + + + + + ++Connection(dsn: string, username: string, password: string) + + + + + + ++executeQuery(query: string, params: array) + + + + + + ++getResults(): array + + + + + + ++getOneResult(): array + + + + + + + + + + + + + + + +-con + + + + + + + + + +0..* + + + + + + + + + +1 + + + + + + + + + + + + + + + +con + + + + + + + + + +0..* + + + + + + + + + +1 + + + + + + + + + + + + + + + + + + + + + +InviteModel + + + + + + ++InviteModel(con: Connection) + + + + + + ++isInvite(): bool + + + + + + + ++getById(int: id): Invite + + + + + + ++getFromIdSession(idSession string) + + + + + + ++supprimerInvite(id int): bool + + + + + + ++insertInvite(invite Invite): bool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +UtilisateurModel + + + + + + ++UtilisateurModel(con Connection) + + + + + + ++isUtilisateur(): bool + + + + + + + ++getFromId(int id): Utilisateur + + + + + + ++getFromEmail(email string): Utilisateur + + + + + + ++insertUtilisateur(pseudo string, email string, motdepasse string): bool + + + + + + ++supprimerUtilisateur(id int): bool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ModelAdmin + + + + + + ++ModelAdmin(con Connection) + + + + + + ++isAdmin(): bool + + + + + + + ++getFromId(id: int): Admin + + + + + + ++getFromEmail(email: String): Admin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ReponseModel + + + + + + ++ReponseModel() + + + + + + ++getFromId(id: int): Reponse + + + + + + ++getFromQuestion(idQuestion: int): reponse + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IndiceModel + + + + + + ++IndiceModel(con: Connection) + + + + + + ++getFromId(): Indice + + + + + + ++getFromScientifique(idScientifique: int): List<Indice> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SexeModel + + + + + + ++SexeModel(con Connection) + + + + + + ++getFromId(): Sexe + + + + + + ++getFromScientifique(idScientifique int): Sexe + + + + + + ++getAll(): List<Sexe> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ThematiqueModel + + + + + + ++ThematiqueModel(con: Connection) + + + + + + ++getFromId(): List<Thematique> + + + + + + ++getFromScientifique(idScientifique: int): Thematique + + + + + + ++getAll(): List<Thematique> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +DifficulteModel + + + + + + ++DifficulteModel(con: Connection) + + + + + + ++getFromId(id: int): Difficulte + + + + + + ++getFromScientifique(idScientifique: int): Difficulte + + + + + + ++getAll(): List<Difficulte> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ScientifiqueModel + + + + + + ++ScientifiqueModel(con: Connection) + + + + + + ++getFromId(id: int): Scientifique + + + + + + ++getRandomFromDifficulte(difficulte: Difficulte): List<Scientifique> + + + + + + ++deleteScientifique(id: int): bool + + + + + + ++insertScientifique(nom: string, prenom: string, dateNaissance: date, descriptif: string, thematique: Thematique, sexe: Sexe, difficulte: Difficulte): Scientifique + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +MdlPendu + + + + + + +-idJeu: int + + + + + + + +-nbErreur: int + + + + + + +-nbTours: int + + + + + + +-lettres: array + + + + + + ++MdlPendu(joueur: Joueur, scientifique: Scientifique) + + + + + + ++jouer(lettre: char): String + + + + + + ++aGagne(): bool + + + + + + ++aPerdu(): bool + + + + + + ++getMot(): String + + + + + + ++getDecouvert(): String + + + + + + ++getScientifique(): Scientifique + + + + + + + + + + + + + + + +-scientifique + + + + + + + + + +0..* + + + + + + + + + +1 + + + + + + + + + + + + + + + + + + + + + +MdlQuiEstCe + + + + + + +-idJeu: int + + + + + + + +-scientifiqueTrouve: bool + + + + + + +-partieAbandonnee: bool + + + + + + ++MdlQuiEstCe(joueurA: Joueur, joueurB: Joueur, scientifique: Scientifique) + + + + + + ++jouer(question: String) + + + + + + ++jouer(reponse: bool) + + + + + + ++aGagne(): bool + + + + + + ++getScientifique(): Scientifique + + + + + + ++abandonner() + + + + + + ++scientifiqueTrouve() + + + + + + ++getGagnant(): Joueur + + + + + + ++getPerdant(): Joueur + + + + + + + + + + + + + + + + + + + + + +Configuration + + + + + + +-difficultes: array + + + + + + +-thematiques: array + + + + + + +-scientifique: Scientifique + + + + + + ++Configuration() + + + + + + ++selectionnerDifficulte(): array + + + + + + ++selectionnerThematique(): array + + + + + + ++selectionnerScientifique(): Scientifique + + + + + + ++tirageAleratoire(): Scientifique + + + + + + + + + + + + + + + +0..* + + + + + + + + + + + + + + + + + + + + + +«interface» + + + + + + +JeuUnContreUn + + + + + + ++JeuUnContreUn(joueurA: Joueur, joueurB: Joueur, configuration Configuration) + + + + + + + + + + + + + + + +-joueurA + + + + + + + + + +0..* + + + + + + + + + +1 + + + + + + + + + + + + + + + +-joueurB + + + + + + + + + +0..* + + + + + + + + + +1 + + + + + + + + + + + + + + + + + + +Prochain tour + + + + + + ++prochainTour(): void + + + + + + + + + + + + + + + + + + + + + +Gagnants + + + + + + ++getGagnants(): array + + + + + + + + + + + + + + + + + + +Perdants + + + + + + ++getPerdants(): array + + + + + + + + + + + + + + + + + + + + + + + + +Termine + + + + + + ++estTermine(): bool + + + + + + + + + + + + + + + + + + + + + + + + +JeuQuiEstCe + + + + + + ++JeuQuiEstCe(joueurA: Joueur, joueurB: Joueur, configuration Configuration) + + + + + + ++prochainTour() + + + + + + ++getGagnants() + + + + + + ++getPerdants() + + + + + + ++estTermine() + + + + + + ++demarrer() + + + + + + + + + + + + + + + + + + + + + + + + +-jeu + + + + + + + + + +1 + + + + + + + + + +1 + + + + + + + + + + + + + + + + + + + + + +JeuPendu + + + + + + ++JeuPendu(joueur: Joueur, configuration Configuration) + + + + + + ++prochainTour() + + + + + + ++getGagnants() + + + + + + ++getPerdants() + + + + + + ++estTermine() + + + + + + ++demarrer() + + + + + + + + + + + + + + + + + + + + + +Demarrer + + + + + + ++demarrer(): void + + + + + + + + + + + + + + + + + + + + + + + + +«interface» + + + + + + +JeuSolo + + + + + + ++JeuSolo(joueur: Joueur, configuration Configuration) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +-jeu + + + + + + + + + +1 + + + + + + + + + +1 + + + + + + + + + + + + + diff --git a/Documentation/conception/star_uml.mdj b/Documentation/conception/star_uml.mdj new file mode 100644 index 0000000..5341268 --- /dev/null +++ b/Documentation/conception/star_uml.mdj @@ -0,0 +1 @@ +{"_type":"Project","_id":"AAAAAAFF+h6SjaM2Hec=","name":"Untitled","ownedElements":[{"_type":"UMLModel","_id":"AAAAAAFF+qBWK6M3Z8Y=","_parent":{"$ref":"AAAAAAFF+h6SjaM2Hec="},"name":"Model","ownedElements":[{"_type":"UMLClassDiagram","_id":"AAAAAAFF+qBtyKM79qY=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Main","defaultDiagram":true,"ownedViews":[{"_type":"UMLClassView","_id":"AAAAAAGMC95HQGCp4K8=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMC95HQGCqs0Q=","_parent":{"$ref":"AAAAAAGMC95HQGCp4K8="},"model":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMC95HQGCrsIc=","_parent":{"$ref":"AAAAAAGMC95HQGCqs0Q="},"visible":false,"font":"Arial;13;0","left":2048,"top":1904,"height":13},{"_type":"LabelView","_id":"AAAAAAGMC95HQGCsrWQ=","_parent":{"$ref":"AAAAAAGMC95HQGCqs0Q="},"font":"Arial;13;1","left":1213,"top":1143,"width":939.513671875,"height":13,"text":"Scientifique"},{"_type":"LabelView","_id":"AAAAAAGMC95HQGCtcj4=","_parent":{"$ref":"AAAAAAGMC95HQGCqs0Q="},"visible":false,"font":"Arial;13;0","left":2048,"top":1904,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMC95HQGCuqCY=","_parent":{"$ref":"AAAAAAGMC95HQGCqs0Q="},"visible":false,"font":"Arial;13;0","left":2048,"top":1904,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1208,"top":1136,"width":949.513671875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMC95HQGCrsIc="},"nameLabel":{"$ref":"AAAAAAGMC95HQGCsrWQ="},"namespaceLabel":{"$ref":"AAAAAAGMC95HQGCtcj4="},"propertyLabel":{"$ref":"AAAAAAGMC95HQGCuqCY="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMC95HQGCv0XI=","_parent":{"$ref":"AAAAAAGMC95HQGCp4K8="},"model":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMC+FAOWDVGBY=","_parent":{"$ref":"AAAAAAGMC95HQGCv0XI="},"model":{"$ref":"AAAAAAGMC+FAM2DSheU="},"font":"Arial;13;0","left":1213,"top":1166,"width":939.513671875,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+GR3GDdC/A=","_parent":{"$ref":"AAAAAAGMC95HQGCv0XI="},"model":{"$ref":"AAAAAAGMC+GR2WDaBwU="},"font":"Arial;13;0","left":1213,"top":1181,"width":939.513671875,"height":13,"text":"-nom: string","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+H4yGDnXgQ=","_parent":{"$ref":"AAAAAAGMC95HQGCv0XI="},"model":{"$ref":"AAAAAAGMC+H4xmDk0bM="},"font":"Arial;13;0","left":1213,"top":1196,"width":939.513671875,"height":13,"text":"-prenom: string","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+I6HWDwPa8=","_parent":{"$ref":"AAAAAAGMC95HQGCv0XI="},"model":{"$ref":"AAAAAAGMC+I6G2Dtprs="},"font":"Arial;13;0","left":1213,"top":1211,"width":939.513671875,"height":13,"text":"-dateNaissance: date","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+JjKmD4+uQ=","_parent":{"$ref":"AAAAAAGMC95HQGCv0XI="},"model":{"$ref":"AAAAAAGMC+JjJ2D1X58="},"font":"Arial;13;0","left":1213,"top":1226,"width":939.513671875,"height":13,"text":"-descriptif: string","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+Klo2EA76A=","_parent":{"$ref":"AAAAAAGMC95HQGCv0XI="},"model":{"$ref":"AAAAAAGMC+KloGD9Qi8="},"font":"Arial;13;0","left":1213,"top":1241,"width":939.513671875,"height":13,"text":"-ratioTrouvee: float","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+LZcWEIai8=","_parent":{"$ref":"AAAAAAGMC95HQGCv0XI="},"model":{"$ref":"AAAAAAGMC+LZb2EF+No="},"visible":false,"font":"Arial;13;0","left":2237,"top":2208,"width":127.115234375,"height":13,"text":"+Attribute1","horizontalAlignment":0}],"font":"Arial;13;0","left":1208,"top":1161,"width":949.513671875,"height":98},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMC95HQWCwyzY=","_parent":{"$ref":"AAAAAAGMC95HQGCp4K8="},"model":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHrIpvFU74c=","_parent":{"$ref":"AAAAAAGMC95HQWCwyzY="},"model":{"$ref":"AAAAAAGMDHrIofFRVyo="},"font":"Arial;13;0","left":1213,"top":1264,"width":939.513671875,"height":13,"text":"+Scientifique(id: int, nom: string, prenom: string, dateNaissance: date, descriptif: string, ratiotrouvee: float, thematique: Thematique, sexe: Sexe, difficulte: Difficulte)","horizontalAlignment":0}],"font":"Arial;13;0","left":1208,"top":1259,"width":949.513671875,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMC95HQWCxZiY=","_parent":{"$ref":"AAAAAAGMC95HQGCp4K8="},"model":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"visible":false,"font":"Arial;13;0","left":1448,"top":944,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMC95HQWCy09w=","_parent":{"$ref":"AAAAAAGMC95HQGCp4K8="},"model":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"visible":false,"font":"Arial;13;0","left":1448,"top":944,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1208,"top":1136,"width":948.513671875,"height":148,"nameCompartment":{"$ref":"AAAAAAGMC95HQGCqs0Q="},"attributeCompartment":{"$ref":"AAAAAAGMC95HQGCv0XI="},"operationCompartment":{"$ref":"AAAAAAGMC95HQWCwyzY="},"receptionCompartment":{"$ref":"AAAAAAGMC95HQWCxZiY="},"templateParameterCompartment":{"$ref":"AAAAAAGMC95HQWCy09w="}},{"_type":"UMLClassView","_id":"AAAAAAGMC+P422EPw/o=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMC+P422EN2ug="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMC+P422EQflo=","_parent":{"$ref":"AAAAAAGMC+P422EPw/o="},"model":{"$ref":"AAAAAAGMC+P422EN2ug="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMC+P422ERp20=","_parent":{"$ref":"AAAAAAGMC+P422EQflo="},"visible":false,"font":"Arial;13;0","left":672,"top":1936,"height":13},{"_type":"LabelView","_id":"AAAAAAGMC+P422ESDy8=","_parent":{"$ref":"AAAAAAGMC+P422EQflo="},"font":"Arial;13;1","left":797,"top":1159,"width":196.45068359375,"height":13,"text":"Thematique"},{"_type":"LabelView","_id":"AAAAAAGMC+P422ETunA=","_parent":{"$ref":"AAAAAAGMC+P422EQflo="},"visible":false,"font":"Arial;13;0","left":672,"top":1936,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMC+P422EUkTo=","_parent":{"$ref":"AAAAAAGMC+P422EQflo="},"visible":false,"font":"Arial;13;0","left":672,"top":1936,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":792,"top":1152,"width":206.45068359375,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMC+P422ERp20="},"nameLabel":{"$ref":"AAAAAAGMC+P422ESDy8="},"namespaceLabel":{"$ref":"AAAAAAGMC+P422ETunA="},"propertyLabel":{"$ref":"AAAAAAGMC+P422EUkTo="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMC+P422EVhZw=","_parent":{"$ref":"AAAAAAGMC+P422EPw/o="},"model":{"$ref":"AAAAAAGMC+P422EN2ug="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMC+Qve2E6/w4=","_parent":{"$ref":"AAAAAAGMC+P422EVhZw="},"model":{"$ref":"AAAAAAGMC+QvdWE354w="},"font":"Arial;13;0","left":797,"top":1182,"width":196.45068359375,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+RjWGFBcbQ=","_parent":{"$ref":"AAAAAAGMC+P422EVhZw="},"model":{"$ref":"AAAAAAGMC+RjVWE+Lck="},"font":"Arial;13;0","left":797,"top":1197,"width":196.45068359375,"height":13,"text":"-libelle: string","horizontalAlignment":0}],"font":"Arial;13;0","left":792,"top":1177,"width":206.45068359375,"height":38},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMC+P422EWDK4=","_parent":{"$ref":"AAAAAAGMC+P422EPw/o="},"model":{"$ref":"AAAAAAGMC+P422EN2ug="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHeQsdI/cs8=","_parent":{"$ref":"AAAAAAGMC+P422EWDK4="},"model":{"$ref":"AAAAAAGMDHeQrNI83BM="},"font":"Arial;13;0","left":797,"top":1220,"width":196.45068359375,"height":13,"text":"+Thematique(id: int, libelle: string)","horizontalAlignment":0}],"font":"Arial;13;0","left":792,"top":1215,"width":206.45068359375,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMC+P422EXfE0=","_parent":{"$ref":"AAAAAAGMC+P422EPw/o="},"model":{"$ref":"AAAAAAGMC+P422EN2ug="},"visible":false,"font":"Arial;13;0","left":336,"top":968,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMC+P422EYONQ=","_parent":{"$ref":"AAAAAAGMC+P422EPw/o="},"model":{"$ref":"AAAAAAGMC+P422EN2ug="},"visible":false,"font":"Arial;13;0","left":336,"top":968,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":792,"top":1152,"width":205.45068359375,"height":86,"nameCompartment":{"$ref":"AAAAAAGMC+P422EQflo="},"attributeCompartment":{"$ref":"AAAAAAGMC+P422EVhZw="},"operationCompartment":{"$ref":"AAAAAAGMC+P422EWDK4="},"receptionCompartment":{"$ref":"AAAAAAGMC+P422EXfE0="},"templateParameterCompartment":{"$ref":"AAAAAAGMC+P422EYONQ="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMC+Sx92FJGY0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMC+Sx92FFtPs="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FKhxk=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FFtPs="},"visible":false,"font":"Arial;13;0","left":1146,"top":1081,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FLAyc=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FFtPs="},"visible":null,"font":"Arial;13;0","left":1146,"top":1096,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FMuwU=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FFtPs="},"visible":false,"font":"Arial;13;0","left":1147,"top":1051,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FNF7o=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FGPPc="},"visible":false,"font":"Arial;13;0","left":1369,"top":1104,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FO8GE=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FGPPc="},"visible":false,"font":"Arial;13;0","left":1355,"top":1101,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FPKUY=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FGPPc="},"font":"Arial;13;0","left":1387,"top":1108,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FQ6pU=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FHac8="},"font":"Arial;13;0","left":910,"top":1087,"width":71.91259765625,"height":13,"alpha":-0.5429510168207747,"distance":67.7421582177598,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"text":"-thematique"},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FRwAM=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FHac8="},"visible":false,"font":"Arial;13;0","left":939,"top":1117,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+Sx92FSqzY=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FHac8="},"font":"Arial;13;0","left":895,"top":1124,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMC+Sx92FTjy8=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FGPPc="},"visible":false,"font":"Arial;13;0","left":767,"top":968,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMC+Sx92FUMD8=","_parent":{"$ref":"AAAAAAGMC+Sx92FJGY0="},"model":{"$ref":"AAAAAAGMC+Sx92FHac8="},"visible":false,"font":"Arial;13;0","left":767,"top":968,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC+P422EPw/o="},"tail":{"$ref":"AAAAAAGMC95HQGCp4K8="},"points":"1384:1136;1384:1072;911:1072;911:1152","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMC+Sx92FKhxk="},"stereotypeLabel":{"$ref":"AAAAAAGMC+Sx92FLAyc="},"propertyLabel":{"$ref":"AAAAAAGMC+Sx92FMuwU="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMC+Sx92FNF7o="},"tailPropertyLabel":{"$ref":"AAAAAAGMC+Sx92FO8GE="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMC+Sx92FPKUY="},"headRoleNameLabel":{"$ref":"AAAAAAGMC+Sx92FQ6pU="},"headPropertyLabel":{"$ref":"AAAAAAGMC+Sx92FRwAM="},"headMultiplicityLabel":{"$ref":"AAAAAAGMC+Sx92FSqzY="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMC+Sx92FTjy8="},"headQualifiersCompartment":{"$ref":"AAAAAAGMC+Sx92FUMD8="}},{"_type":"UMLClassView","_id":"AAAAAAGMC+YI82aKmzo=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMC+YI8maIQdw="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMC+YI82aLqAk=","_parent":{"$ref":"AAAAAAGMC+YI82aKmzo="},"model":{"$ref":"AAAAAAGMC+YI8maIQdw="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMC+YI82aMqT8=","_parent":{"$ref":"AAAAAAGMC+YI82aLqAk="},"visible":false,"font":"Arial;13;0","left":1024,"top":2496,"height":13},{"_type":"LabelView","_id":"AAAAAAGMC+YI82aNW2k=","_parent":{"$ref":"AAAAAAGMC+YI82aLqAk="},"font":"Arial;13;1","left":1021,"top":1559,"width":177.4140625,"height":13,"text":"Difficulte"},{"_type":"LabelView","_id":"AAAAAAGMC+YI82aOxJo=","_parent":{"$ref":"AAAAAAGMC+YI82aLqAk="},"visible":false,"font":"Arial;13;0","left":1024,"top":2496,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMC+YI82aPRVM=","_parent":{"$ref":"AAAAAAGMC+YI82aLqAk="},"visible":false,"font":"Arial;13;0","left":1024,"top":2496,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1016,"top":1552,"width":187.4140625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMC+YI82aMqT8="},"nameLabel":{"$ref":"AAAAAAGMC+YI82aNW2k="},"namespaceLabel":{"$ref":"AAAAAAGMC+YI82aOxJo="},"propertyLabel":{"$ref":"AAAAAAGMC+YI82aPRVM="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMC+YI82aQtFA=","_parent":{"$ref":"AAAAAAGMC+YI82aKmzo="},"model":{"$ref":"AAAAAAGMC+YI8maIQdw="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMC+Y5S2cAvc8=","_parent":{"$ref":"AAAAAAGMC+YI82aQtFA="},"model":{"$ref":"AAAAAAGMC+Y5RWb6mRU="},"font":"Arial;13;0","left":1021,"top":1582,"width":177.4140625,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+ZYRWdPgjo=","_parent":{"$ref":"AAAAAAGMC+YI82aQtFA="},"model":{"$ref":"AAAAAAGMC+ZYQmdJHTY="},"font":"Arial;13;0","left":1021,"top":1597,"width":177.4140625,"height":13,"text":"-libelle: string","horizontalAlignment":0}],"font":"Arial;13;0","left":1016,"top":1577,"width":187.4140625,"height":38},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMC+YI82aRy/E=","_parent":{"$ref":"AAAAAAGMC+YI82aKmzo="},"model":{"$ref":"AAAAAAGMC+YI8maIQdw="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHfeN9eeVFY=","_parent":{"$ref":"AAAAAAGMC+YI82aRy/E="},"model":{"$ref":"AAAAAAGMDHfeMteYAcs="},"font":"Arial;13;0","left":1021,"top":1620,"width":177.4140625,"height":13,"text":"+Difficulte(id: int, libelle: string)","horizontalAlignment":0}],"font":"Arial;13;0","left":1016,"top":1615,"width":187.4140625,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMC+YI82aSMqk=","_parent":{"$ref":"AAAAAAGMC+YI82aKmzo="},"model":{"$ref":"AAAAAAGMC+YI8maIQdw="},"visible":false,"font":"Arial;13;0","left":512,"top":1248,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMC+YI82aTDZ8=","_parent":{"$ref":"AAAAAAGMC+YI82aKmzo="},"model":{"$ref":"AAAAAAGMC+YI8maIQdw="},"visible":false,"font":"Arial;13;0","left":512,"top":1248,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1016,"top":1552,"width":186.4140625,"height":86,"nameCompartment":{"$ref":"AAAAAAGMC+YI82aLqAk="},"attributeCompartment":{"$ref":"AAAAAAGMC+YI82aQtFA="},"operationCompartment":{"$ref":"AAAAAAGMC+YI82aRy/E="},"receptionCompartment":{"$ref":"AAAAAAGMC+YI82aSMqk="},"templateParameterCompartment":{"$ref":"AAAAAAGMC+YI82aTDZ8="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMC+aFY2fPb7E=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMC+aFY2fLJ/c="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fQhdU=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fLJ/c="},"font":"Arial;13;0","left":1110,"top":1241,"width":51.7841796875,"height":13,"alpha":0.6682894673102405,"distance":48.41487374764082,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"edgePosition":1,"text":"-difficulte"},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fRHqE=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fLJ/c="},"visible":null,"font":"Arial;13;0","left":1135,"top":1203,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fSnS8=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fLJ/c="},"visible":false,"font":"Arial;13;0","left":1090,"top":1204,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fTIuE=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fM3Vw="},"visible":false,"font":"Arial;13;0","left":1182,"top":1218,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fURaM=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fM3Vw="},"visible":false,"font":"Arial;13;0","left":1179,"top":1232,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fV1fE=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fM3Vw="},"font":"Arial;13;0","left":1177,"top":1191,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fW67c=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fNwIg="},"visible":false,"font":"Arial;13;0","left":1120,"top":1520,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fXTgA=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fNwIg="},"visible":false,"font":"Arial;13;0","left":1133,"top":1517,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+aFY2fYoiM=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fNwIg="},"font":"Arial;13;0","left":1089,"top":1524,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMC+aFY2fZBD0=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fM3Vw="},"visible":false,"font":"Arial;13;0","left":767,"top":968,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMC+aFY2fa+F4=","_parent":{"$ref":"AAAAAAGMC+aFY2fPb7E="},"model":{"$ref":"AAAAAAGMC+aFY2fNwIg="},"visible":false,"font":"Arial;13;0","left":767,"top":968,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC+YI82aKmzo="},"tail":{"$ref":"AAAAAAGMC95HQGCp4K8="},"points":"1208:1210;1105:1210;1105:1552","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMC+aFY2fQhdU="},"stereotypeLabel":{"$ref":"AAAAAAGMC+aFY2fRHqE="},"propertyLabel":{"$ref":"AAAAAAGMC+aFY2fSnS8="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMC+aFY2fTIuE="},"tailPropertyLabel":{"$ref":"AAAAAAGMC+aFY2fURaM="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMC+aFY2fV1fE="},"headRoleNameLabel":{"$ref":"AAAAAAGMC+aFY2fW67c="},"headPropertyLabel":{"$ref":"AAAAAAGMC+aFY2fXTgA="},"headMultiplicityLabel":{"$ref":"AAAAAAGMC+aFY2fYoiM="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMC+aFY2fZBD0="},"headQualifiersCompartment":{"$ref":"AAAAAAGMC+aFY2fa+F4="}},{"_type":"UMLClassView","_id":"AAAAAAGMC+fb3W5F61E=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMC+fb3W5G8Ew=","_parent":{"$ref":"AAAAAAGMC+fb3W5F61E="},"model":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMC+fb3W5Hn8E=","_parent":{"$ref":"AAAAAAGMC+fb3W5G8Ew="},"visible":false,"font":"Arial;13;0","left":704,"top":1952,"height":13},{"_type":"LabelView","_id":"AAAAAAGMC+fb3W5IiZ8=","_parent":{"$ref":"AAAAAAGMC+fb3W5G8Ew="},"font":"Arial;13;1","left":909,"top":1399,"width":157.431640625,"height":13,"text":"Sexe"},{"_type":"LabelView","_id":"AAAAAAGMC+fb3W5JVpM=","_parent":{"$ref":"AAAAAAGMC+fb3W5G8Ew="},"visible":false,"font":"Arial;13;0","left":704,"top":1952,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMC+fb3W5Kq8o=","_parent":{"$ref":"AAAAAAGMC+fb3W5G8Ew="},"visible":false,"font":"Arial;13;0","left":704,"top":1952,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":904,"top":1392,"width":167.431640625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMC+fb3W5Hn8E="},"nameLabel":{"$ref":"AAAAAAGMC+fb3W5IiZ8="},"namespaceLabel":{"$ref":"AAAAAAGMC+fb3W5JVpM="},"propertyLabel":{"$ref":"AAAAAAGMC+fb3W5Kq8o="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMC+fb3W5LX84=","_parent":{"$ref":"AAAAAAGMC+fb3W5F61E="},"model":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMC+h3T3Isf1E=","_parent":{"$ref":"AAAAAAGMC+fb3W5LX84="},"model":{"$ref":"AAAAAAGMC+h3SHIjv6c="},"font":"Arial;13;0","left":909,"top":1422,"width":157.431640625,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMC+iKAnLDnW4=","_parent":{"$ref":"AAAAAAGMC+fb3W5LX84="},"model":{"$ref":"AAAAAAGMC+iJ/3K60Eo="},"font":"Arial;13;0","left":909,"top":1437,"width":157.431640625,"height":13,"text":"-libelle: string","horizontalAlignment":0}],"font":"Arial;13;0","left":904,"top":1417,"width":167.431640625,"height":38},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMC+fb3W5MG2A=","_parent":{"$ref":"AAAAAAGMC+fb3W5F61E="},"model":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHe6AdUOrWo=","_parent":{"$ref":"AAAAAAGMC+fb3W5MG2A="},"model":{"$ref":"AAAAAAGMDHe5+9UFlpg="},"font":"Arial;13;0","left":909,"top":1460,"width":157.431640625,"height":13,"text":"+Sexe(id: int, libelle: string)","horizontalAlignment":0}],"font":"Arial;13;0","left":904,"top":1455,"width":167.431640625,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMC+fb3W5NHpU=","_parent":{"$ref":"AAAAAAGMC+fb3W5F61E="},"model":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"visible":false,"font":"Arial;13;0","left":352,"top":976,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMC+fb3W5OdwU=","_parent":{"$ref":"AAAAAAGMC+fb3W5F61E="},"model":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"visible":false,"font":"Arial;13;0","left":352,"top":976,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":904,"top":1392,"width":166.431640625,"height":86,"nameCompartment":{"$ref":"AAAAAAGMC+fb3W5G8Ew="},"attributeCompartment":{"$ref":"AAAAAAGMC+fb3W5LX84="},"operationCompartment":{"$ref":"AAAAAAGMC+fb3W5MG2A="},"receptionCompartment":{"$ref":"AAAAAAGMC+fb3W5NHpU="},"templateParameterCompartment":{"$ref":"AAAAAAGMC+fb3W5OdwU="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMC+irJnMZO+M=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMC+irJnMV3jE="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJnMalP8=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMV3jE="},"visible":false,"font":"Arial;13;0","left":1032,"top":1147,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJnMbDOU=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMV3jE="},"visible":null,"font":"Arial;13;0","left":1032,"top":1132,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJnMcaW4=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMV3jE="},"visible":false,"font":"Arial;13;0","left":1032,"top":1177,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJnMdfRA=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMWxkQ="},"visible":false,"font":"Arial;13;0","left":1017,"top":1360,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJnMe63Y=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMWxkQ="},"visible":false,"font":"Arial;13;0","left":1003,"top":1357,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJnMfka8=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMWxkQ="},"font":"Arial;13;0","left":1041,"top":1364,"width":7.22998046875,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="},"edgePosition":2,"text":"1"},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJnMgzj4=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMXk2M="},"visible":false,"font":"Arial;13;0","left":1182,"top":1147,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJnMhBVU=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMXk2M="},"visible":false,"font":"Arial;13;0","left":1179,"top":1133,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMC+irJ3MiUBE=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMXk2M="},"font":"Arial;13;0","left":1177,"top":1174,"width":19.5126953125,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMC+irJnMZO+M="},"text":"0..*"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMC+irJ3MjDfk=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMWxkQ="},"visible":false,"font":"Arial;13;0","left":767,"top":968,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMC+irJ3Mk++I=","_parent":{"$ref":"AAAAAAGMC+irJnMZO+M="},"model":{"$ref":"AAAAAAGMC+irJnMXk2M="},"visible":false,"font":"Arial;13;0","left":767,"top":968,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC95HQGCp4K8="},"tail":{"$ref":"AAAAAAGMC+fb3W5F61E="},"points":"1032:1392;1032:1168;1208:1168","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMC+irJnMalP8="},"stereotypeLabel":{"$ref":"AAAAAAGMC+irJnMbDOU="},"propertyLabel":{"$ref":"AAAAAAGMC+irJnMcaW4="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMC+irJnMdfRA="},"tailPropertyLabel":{"$ref":"AAAAAAGMC+irJnMe63Y="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMC+irJnMfka8="},"headRoleNameLabel":{"$ref":"AAAAAAGMC+irJnMgzj4="},"headPropertyLabel":{"$ref":"AAAAAAGMC+irJnMhBVU="},"headMultiplicityLabel":{"$ref":"AAAAAAGMC+irJ3MiUBE="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMC+irJ3MjDfk="},"headQualifiersCompartment":{"$ref":"AAAAAAGMC+irJ3Mk++I="}},{"_type":"UMLTextView","_id":"AAAAAAGMC+l64o5oeqY=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"font":"Arial;13;0","left":1032,"top":1328,"width":100,"height":25,"text":"-sexe"},{"_type":"UMLClassView","_id":"AAAAAAGMC/AivaOOebM=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMC/AivKOMyoc="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMC/AivaOPz4U=","_parent":{"$ref":"AAAAAAGMC/AivaOOebM="},"model":{"$ref":"AAAAAAGMC/AivKOMyoc="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMC/AivaOQOEM=","_parent":{"$ref":"AAAAAAGMC/AivaOPz4U="},"visible":false,"font":"Arial;13;0","left":2912,"top":864,"height":13},{"_type":"LabelView","_id":"AAAAAAGMC/AivaORFAk=","_parent":{"$ref":"AAAAAAGMC/AivaOPz4U="},"font":"Arial;13;3","left":1989,"top":583,"width":169.7333984375,"height":13,"text":"Joueur"},{"_type":"LabelView","_id":"AAAAAAGMC/AivaOSMOA=","_parent":{"$ref":"AAAAAAGMC/AivaOPz4U="},"visible":false,"font":"Arial;13;0","left":2912,"top":864,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMC/AivaOTTCE=","_parent":{"$ref":"AAAAAAGMC/AivaOPz4U="},"visible":false,"font":"Arial;13;0","left":2912,"top":864,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1984,"top":576,"width":179.7333984375,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMC/AivaOQOEM="},"nameLabel":{"$ref":"AAAAAAGMC/AivaORFAk="},"namespaceLabel":{"$ref":"AAAAAAGMC/AivaOSMOA="},"propertyLabel":{"$ref":"AAAAAAGMC/AivaOTTCE="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMC/AivaOU21c=","_parent":{"$ref":"AAAAAAGMC/AivaOOebM="},"model":{"$ref":"AAAAAAGMC/AivKOMyoc="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDAlZratDW2A=","_parent":{"$ref":"AAAAAAGMC/AivaOU21c="},"model":{"$ref":"AAAAAAGMDAlZpqs3g/w="},"font":"Arial;13;0","left":1989,"top":606,"width":169.7333984375,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDAl4bKw9qCs=","_parent":{"$ref":"AAAAAAGMC/AivaOU21c="},"model":{"$ref":"AAAAAAGMDAl4aKwxmE8="},"font":"Arial;13;0","left":1989,"top":621,"width":169.7333984375,"height":13,"text":"-pseudo: string","horizontalAlignment":0}],"font":"Arial;13;0","left":1984,"top":601,"width":179.7333984375,"height":38},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMC/AivaOVSNg=","_parent":{"$ref":"AAAAAAGMC/AivaOOebM="},"model":{"$ref":"AAAAAAGMC/AivKOMyoc="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHjo7eSrVko=","_parent":{"$ref":"AAAAAAGMC/AivaOVSNg="},"model":{"$ref":"AAAAAAGMDHjo5uSf2lQ="},"font":"Arial;13;0","left":1989,"top":644,"width":169.7333984375,"height":13,"text":"+Joueur(id int, pseudo string)","horizontalAlignment":0}],"font":"Arial;13;0","left":1984,"top":639,"width":179.7333984375,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMC/AivaOWsDQ=","_parent":{"$ref":"AAAAAAGMC/AivaOOebM="},"model":{"$ref":"AAAAAAGMC/AivKOMyoc="},"visible":false,"font":"Arial;13;0","left":1456,"top":432,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMC/AivaOXqWg=","_parent":{"$ref":"AAAAAAGMC/AivaOOebM="},"model":{"$ref":"AAAAAAGMC/AivKOMyoc="},"visible":false,"font":"Arial;13;0","left":1456,"top":432,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1984,"top":576,"width":178.7333984375,"height":86,"nameCompartment":{"$ref":"AAAAAAGMC/AivaOPz4U="},"attributeCompartment":{"$ref":"AAAAAAGMC/AivaOU21c="},"operationCompartment":{"$ref":"AAAAAAGMC/AivaOVSNg="},"receptionCompartment":{"$ref":"AAAAAAGMC/AivaOWsDQ="},"templateParameterCompartment":{"$ref":"AAAAAAGMC/AivaOXqWg="}},{"_type":"UMLClassView","_id":"AAAAAAGMDAzKCK1jetI=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDAzKB61hTcc="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDAzKCK1kYeM=","_parent":{"$ref":"AAAAAAGMDAzKCK1jetI="},"model":{"$ref":"AAAAAAGMDAzKB61hTcc="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDAzKCK1lGwI=","_parent":{"$ref":"AAAAAAGMDAzKCK1kYeM="},"visible":false,"font":"Arial;13;0","left":3024,"top":432,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDAzKCK1mCNg=","_parent":{"$ref":"AAAAAAGMDAzKCK1kYeM="},"font":"Arial;13;1","left":2221,"top":647,"width":374.9150390625,"height":13,"text":"Utilisateur"},{"_type":"LabelView","_id":"AAAAAAGMDAzKCK1npVI=","_parent":{"$ref":"AAAAAAGMDAzKCK1kYeM="},"visible":false,"font":"Arial;13;0","left":3024,"top":432,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDAzKCK1oKco=","_parent":{"$ref":"AAAAAAGMDAzKCK1kYeM="},"visible":false,"font":"Arial;13;0","left":3024,"top":432,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2216,"top":640,"width":384.9150390625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDAzKCK1lGwI="},"nameLabel":{"$ref":"AAAAAAGMDAzKCK1mCNg="},"namespaceLabel":{"$ref":"AAAAAAGMDAzKCK1npVI="},"propertyLabel":{"$ref":"AAAAAAGMDAzKCK1oKco="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDAzKCK1pVGU=","_parent":{"$ref":"AAAAAAGMDAzKCK1jetI="},"model":{"$ref":"AAAAAAGMDAzKB61hTcc="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDAz3S65vuK0=","_parent":{"$ref":"AAAAAAGMDAzKCK1pVGU="},"model":{"$ref":"AAAAAAGMDAz3Ra5jMwc="},"visible":false,"font":"Arial;13;0","left":3733,"top":886,"width":118.76171875,"height":13,"text":"-idJoueur: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDA0PFa88HOA=","_parent":{"$ref":"AAAAAAGMDAzKCK1pVGU="},"model":{"$ref":"AAAAAAGMDA0PEq8w0/A="},"font":"Arial;13;0","left":2221,"top":672,"width":374.9150390625,"height":13,"text":"-email: string","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDA0rBLAJq7k=","_parent":{"$ref":"AAAAAAGMDAzKCK1pVGU="},"model":{"$ref":"AAAAAAGMDA0rAK/9vj8="},"font":"Arial;13;0","left":2221,"top":687,"width":374.9150390625,"height":13,"text":"-motDePasse: string","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDA1dmbE5zDQ=","_parent":{"$ref":"AAAAAAGMDAzKCK1pVGU="},"model":{"$ref":"AAAAAAGMDA1dlbEt4mY="},"visible":false,"font":"Arial;13;0","left":3733,"top":931,"width":118.76171875,"height":13,"text":"+Attribute1","horizontalAlignment":0}],"font":"Arial;13;0","left":2216,"top":665,"width":384.9150390625,"height":40},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDAzKCK1q+ZI=","_parent":{"$ref":"AAAAAAGMDAzKCK1jetI="},"model":{"$ref":"AAAAAAGMDAzKB61hTcc="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHgUFt1iMsQ=","_parent":{"$ref":"AAAAAAGMDAzKCK1q+ZI="},"model":{"$ref":"AAAAAAGMDHgUEN1WavU="},"font":"Arial;13;0","left":2221,"top":710,"width":374.9150390625,"height":13,"text":"+Utilisateur(id int, pseudo string, email string, motdepasse string)","horizontalAlignment":0}],"font":"Arial;13;0","left":2216,"top":705,"width":384.9150390625,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDAzKCK1rlaM=","_parent":{"$ref":"AAAAAAGMDAzKCK1jetI="},"model":{"$ref":"AAAAAAGMDAzKB61hTcc="},"visible":false,"font":"Arial;13;0","left":1744,"top":176,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDAzKCK1s/ek=","_parent":{"$ref":"AAAAAAGMDAzKCK1jetI="},"model":{"$ref":"AAAAAAGMDAzKB61hTcc="},"visible":false,"font":"Arial;13;0","left":1744,"top":176,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2216,"top":640,"width":383.9150390625,"height":88,"nameCompartment":{"$ref":"AAAAAAGMDAzKCK1kYeM="},"attributeCompartment":{"$ref":"AAAAAAGMDAzKCK1pVGU="},"operationCompartment":{"$ref":"AAAAAAGMDAzKCK1q+ZI="},"receptionCompartment":{"$ref":"AAAAAAGMDAzKCK1rlaM="},"templateParameterCompartment":{"$ref":"AAAAAAGMDAzKCK1s/ek="}},{"_type":"UMLClassView","_id":"AAAAAAGMDA2vdbQsCdU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDA2vdbQtxB4=","_parent":{"$ref":"AAAAAAGMDA2vdbQsCdU="},"model":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDA2vdbQu0hM=","_parent":{"$ref":"AAAAAAGMDA2vdbQtxB4="},"visible":false,"font":"Arial;13;0","left":2544,"top":-96,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDA2vdbQvUuA=","_parent":{"$ref":"AAAAAAGMDA2vdbQtxB4="},"font":"Arial;13;1","left":2157,"top":399,"width":257.876953125,"height":13,"text":"Invite"},{"_type":"LabelView","_id":"AAAAAAGMDA2vdbQwOWM=","_parent":{"$ref":"AAAAAAGMDA2vdbQtxB4="},"visible":false,"font":"Arial;13;0","left":2544,"top":-96,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDA2vdbQxnMA=","_parent":{"$ref":"AAAAAAGMDA2vdbQtxB4="},"visible":false,"font":"Arial;13;0","left":2544,"top":-96,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2152,"top":392,"width":267.876953125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDA2vdbQu0hM="},"nameLabel":{"$ref":"AAAAAAGMDA2vdbQvUuA="},"namespaceLabel":{"$ref":"AAAAAAGMDA2vdbQwOWM="},"propertyLabel":{"$ref":"AAAAAAGMDA2vdbQxnMA="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDA2vdbQy2rg=","_parent":{"$ref":"AAAAAAGMDA2vdbQsCdU="},"model":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDA39BLUmXUU=","_parent":{"$ref":"AAAAAAGMDA2vdbQy2rg="},"model":{"$ref":"AAAAAAGMDA38/rUaZxM="},"font":"Arial;13;0","left":2157,"top":422,"width":257.876953125,"height":13,"text":"-idSession: string","horizontalAlignment":0}],"font":"Arial;13;0","left":2152,"top":417,"width":267.876953125,"height":23},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDA2vdbQzoz4=","_parent":{"$ref":"AAAAAAGMDA2vdbQsCdU="},"model":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHiB2uGOaDQ=","_parent":{"$ref":"AAAAAAGMDA2vdbQzoz4="},"model":{"$ref":"AAAAAAGMDHiB1OGCLP4="},"font":"Arial;13;0","left":2157,"top":445,"width":257.876953125,"height":13,"text":"+Invite(id int, pseudo string, idsession string)","horizontalAlignment":0}],"font":"Arial;13;0","left":2152,"top":440,"width":267.876953125,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDA2vdbQ0p08=","_parent":{"$ref":"AAAAAAGMDA2vdbQsCdU="},"model":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"visible":false,"font":"Arial;13;0","left":1296,"top":-24,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDA2vdbQ1+Ig=","_parent":{"$ref":"AAAAAAGMDA2vdbQsCdU="},"model":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"visible":false,"font":"Arial;13;0","left":1296,"top":-24,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2152,"top":392,"width":266.876953125,"height":71,"nameCompartment":{"$ref":"AAAAAAGMDA2vdbQtxB4="},"attributeCompartment":{"$ref":"AAAAAAGMDA2vdbQy2rg="},"operationCompartment":{"$ref":"AAAAAAGMDA2vdbQzoz4="},"receptionCompartment":{"$ref":"AAAAAAGMDA2vdbQ0p08="},"templateParameterCompartment":{"$ref":"AAAAAAGMDA2vdbQ1+Ig="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDA5+iL/HoDc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDA5+iL/F2AA="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDA5+iL/Iwmk=","_parent":{"$ref":"AAAAAAGMDA5+iL/HoDc="},"model":{"$ref":"AAAAAAGMDA5+iL/F2AA="},"visible":false,"font":"Arial;13;0","left":2188,"top":656,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDA5+iL/HoDc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDA5+iL/J4HA=","_parent":{"$ref":"AAAAAAGMDA5+iL/HoDc="},"model":{"$ref":"AAAAAAGMDA5+iL/F2AA="},"visible":null,"font":"Arial;13;0","left":2188,"top":671,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDA5+iL/HoDc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDA5+iL/K9KE=","_parent":{"$ref":"AAAAAAGMDA5+iL/HoDc="},"model":{"$ref":"AAAAAAGMDA5+iL/F2AA="},"visible":false,"font":"Arial;13;0","left":2189,"top":626,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDA5+iL/HoDc="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC/AivaOOebM="},"tail":{"$ref":"AAAAAAGMDAzKCK1jetI="},"points":"2216:647;2163:647","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDA5+iL/Iwmk="},"stereotypeLabel":{"$ref":"AAAAAAGMDA5+iL/J4HA="},"propertyLabel":{"$ref":"AAAAAAGMDA5+iL/K9KE="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDBIHQs4ZKvE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBIHQs4X7Fg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDBIHQs4aK+o=","_parent":{"$ref":"AAAAAAGMDBIHQs4ZKvE="},"model":{"$ref":"AAAAAAGMDBIHQs4X7Fg="},"visible":false,"font":"Arial;13;0","left":2335,"top":588,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBIHQs4ZKvE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBIHQs4bs7Q=","_parent":{"$ref":"AAAAAAGMDBIHQs4ZKvE="},"model":{"$ref":"AAAAAAGMDBIHQs4X7Fg="},"visible":null,"font":"Arial;13;0","left":2335,"top":603,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBIHQs4ZKvE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBIHQs4c+5Q=","_parent":{"$ref":"AAAAAAGMDBIHQs4ZKvE="},"model":{"$ref":"AAAAAAGMDBIHQs4X7Fg="},"visible":false,"font":"Arial;13;0","left":2336,"top":558,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBIHQs4ZKvE="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC/AivaOOebM="},"tail":{"$ref":"AAAAAAGMDA2vdbQsCdU="},"points":"2336:463;2336:579;2163:579","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDBIHQs4aK+o="},"stereotypeLabel":{"$ref":"AAAAAAGMDBIHQs4bs7Q="},"propertyLabel":{"$ref":"AAAAAAGMDBIHQs4c+5Q="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMDBO6Y9IhsKI=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBO6YtIdU6M="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9IiYoY=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6YtIdU6M="},"font":"Arial;13;0","left":2017,"top":677,"width":141.6162109375,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"edgePosition":1,"text":"-scientifiquesDecouverts"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9Ij3fg=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6YtIdU6M="},"visible":null,"font":"Arial;13;0","left":2102,"top":677,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9IkY3k=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6YtIdU6M="},"visible":false,"font":"Arial;13;0","left":2057,"top":678,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9IlP8E=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6Y9IeEos="},"visible":false,"font":"Arial;13;0","left":2190,"top":692,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9ImQSE=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6Y9IeEos="},"visible":false,"font":"Arial;13;0","left":2187,"top":706,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9InGjw=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6Y9IeEos="},"font":"Arial;13;0","left":2185,"top":665,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9IodLs=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6Y9IfnJo="},"visible":false,"font":"Arial;13;0","left":2087,"top":1104,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9IpHRY=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6Y9IfnJo="},"visible":false,"font":"Arial;13;0","left":2100,"top":1101,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBO6Y9Iqo+w=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6Y9IfnJo="},"font":"Arial;13;0","left":2050,"top":1108,"width":19.5126953125,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"text":"0..*"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDBO6Y9Irm2M=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6Y9IeEos="},"visible":false,"font":"Arial;13;0","left":888,"top":256,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDBO6Y9Is/ik=","_parent":{"$ref":"AAAAAAGMDBO6Y9IhsKI="},"model":{"$ref":"AAAAAAGMDBO6Y9IfnJo="},"visible":false,"font":"Arial;13;0","left":888,"top":256,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC95HQGCp4K8="},"tail":{"$ref":"AAAAAAGMDAzKCK1jetI="},"points":"2216:684;2072:684;2072:1136","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDBO6Y9IiYoY="},"stereotypeLabel":{"$ref":"AAAAAAGMDBO6Y9Ij3fg="},"propertyLabel":{"$ref":"AAAAAAGMDBO6Y9IkY3k="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMDBO6Y9IlP8E="},"tailPropertyLabel":{"$ref":"AAAAAAGMDBO6Y9ImQSE="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMDBO6Y9InGjw="},"headRoleNameLabel":{"$ref":"AAAAAAGMDBO6Y9IodLs="},"headPropertyLabel":{"$ref":"AAAAAAGMDBO6Y9IpHRY="},"headMultiplicityLabel":{"$ref":"AAAAAAGMDBO6Y9Iqo+w="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMDBO6Y9Irm2M="},"headQualifiersCompartment":{"$ref":"AAAAAAGMDBO6Y9Is/ik="}},{"_type":"UMLClassView","_id":"AAAAAAGMDBVhtuKXEZ0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDBVhtuKYX5E=","_parent":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"model":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDBVhtuKZ+Do=","_parent":{"$ref":"AAAAAAGMDBVhtuKYX5E="},"visible":false,"font":"Arial;13;0","left":1952,"top":640,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDBVhtuKaVe4=","_parent":{"$ref":"AAAAAAGMDBVhtuKYX5E="},"font":"Arial;13;1","left":1381,"top":471,"width":216.6806640625,"height":13,"text":"JeuDB"},{"_type":"LabelView","_id":"AAAAAAGMDBVhtuKbxLQ=","_parent":{"$ref":"AAAAAAGMDBVhtuKYX5E="},"visible":false,"font":"Arial;13;0","left":1952,"top":640,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDBVht+KcSzc=","_parent":{"$ref":"AAAAAAGMDBVhtuKYX5E="},"visible":false,"font":"Arial;13;0","left":1952,"top":640,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1376,"top":464,"width":226.6806640625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDBVhtuKZ+Do="},"nameLabel":{"$ref":"AAAAAAGMDBVhtuKaVe4="},"namespaceLabel":{"$ref":"AAAAAAGMDBVhtuKbxLQ="},"propertyLabel":{"$ref":"AAAAAAGMDBVht+KcSzc="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDBVht+KdGxI=","_parent":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"model":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDBV8EuPWeyo=","_parent":{"$ref":"AAAAAAGMDBVht+KdGxI="},"model":{"$ref":"AAAAAAGMDBV8DOPHf/U="},"font":"Arial;13;0","left":1381,"top":494,"width":216.6806640625,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDBWQZ+TljPw=","_parent":{"$ref":"AAAAAAGMDBVht+KdGxI="},"model":{"$ref":"AAAAAAGMDBWQY+TWY+U="},"font":"Arial;13;0","left":1381,"top":509,"width":216.6806640625,"height":13,"text":"-nom: string","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDBWyfuVwJY4=","_parent":{"$ref":"AAAAAAGMDBVht+KdGxI="},"model":{"$ref":"AAAAAAGMDBWye+VhX/M="},"font":"Arial;13;0","left":1381,"top":524,"width":216.6806640625,"height":13,"text":"-nbParties: int","horizontalAlignment":0}],"font":"Arial;13;0","left":1376,"top":489,"width":226.6806640625,"height":53},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDBVht+KeNPk=","_parent":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"model":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHqFpezKWR4=","_parent":{"$ref":"AAAAAAGMDBVht+KeNPk="},"model":{"$ref":"AAAAAAGMDHqFney7za4="},"font":"Arial;13;0","left":1381,"top":547,"width":216.6806640625,"height":13,"text":"+Jeu(id int, nom string, nbParties: int)","horizontalAlignment":0}],"font":"Arial;13;0","left":1376,"top":542,"width":226.6806640625,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDBVht+KfDLQ=","_parent":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"model":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"visible":false,"font":"Arial;13;0","left":976,"top":320,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDBVht+KglvE=","_parent":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"model":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"visible":false,"font":"Arial;13;0","left":976,"top":320,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1376,"top":464,"width":225.6806640625,"height":101,"nameCompartment":{"$ref":"AAAAAAGMDBVhtuKYX5E="},"attributeCompartment":{"$ref":"AAAAAAGMDBVht+KdGxI="},"operationCompartment":{"$ref":"AAAAAAGMDBVht+KeNPk="},"receptionCompartment":{"$ref":"AAAAAAGMDBVht+KfDLQ="},"templateParameterCompartment":{"$ref":"AAAAAAGMDBVht+KglvE="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMDBYkCOfD9Yg=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBYkB+fBmXg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDBYkCOfEBnc=","_parent":{"$ref":"AAAAAAGMDBYkCOfD9Yg="},"model":{"$ref":"AAAAAAGMDBYkB+fBmXg="},"visible":false,"font":"Arial;13;0","left":1515,"top":843,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBYkCOfD9Yg="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBYkCOfF7CQ=","_parent":{"$ref":"AAAAAAGMDBYkCOfD9Yg="},"model":{"$ref":"AAAAAAGMDBYkB+fBmXg="},"visible":null,"font":"Arial;13;0","left":1530,"top":843,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBYkCOfD9Yg="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBYkCOfGGfU=","_parent":{"$ref":"AAAAAAGMDBYkCOfD9Yg="},"model":{"$ref":"AAAAAAGMDBYkB+fBmXg="},"visible":false,"font":"Arial;13;0","left":1485,"top":844,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBYkCOfD9Yg="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC95HQGCp4K8="},"tail":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"points":"1500:565;1500:1136","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDBYkCOfEBnc="},"stereotypeLabel":{"$ref":"AAAAAAGMDBYkCOfF7CQ="},"propertyLabel":{"$ref":"AAAAAAGMDBYkCOfGGfU="}},{"_type":"UMLClassView","_id":"AAAAAAGMDBZil+iIe4Q=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBZil+iGdXI="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDBZil+iJkPQ=","_parent":{"$ref":"AAAAAAGMDBZil+iIe4Q="},"model":{"$ref":"AAAAAAGMDBZil+iGdXI="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDBZil+iKMIY=","_parent":{"$ref":"AAAAAAGMDBZil+iJkPQ="},"visible":false,"font":"Arial;13;0","left":2080,"top":640,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDBZil+iL+o0=","_parent":{"$ref":"AAAAAAGMDBZil+iJkPQ="},"font":"Arial;13;1","left":1653,"top":479,"width":279.55419921875,"height":13,"text":"Partie"},{"_type":"LabelView","_id":"AAAAAAGMDBZil+iMhQs=","_parent":{"$ref":"AAAAAAGMDBZil+iJkPQ="},"visible":false,"font":"Arial;13;0","left":2080,"top":640,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDBZil+iNcYs=","_parent":{"$ref":"AAAAAAGMDBZil+iJkPQ="},"visible":false,"font":"Arial;13;0","left":2080,"top":640,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1648,"top":472,"width":289.55419921875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDBZil+iKMIY="},"nameLabel":{"$ref":"AAAAAAGMDBZil+iL+o0="},"namespaceLabel":{"$ref":"AAAAAAGMDBZil+iMhQs="},"propertyLabel":{"$ref":"AAAAAAGMDBZil+iNcYs="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDBZil+iO2Tc=","_parent":{"$ref":"AAAAAAGMDBZil+iIe4Q="},"model":{"$ref":"AAAAAAGMDBZil+iGdXI="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDBZzMelDuc0=","_parent":{"$ref":"AAAAAAGMDBZil+iO2Tc="},"model":{"$ref":"AAAAAAGMDBZzK+k04sI="},"font":"Arial;13;0","left":1653,"top":502,"width":279.55419921875,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDBaHv+nOn+8=","_parent":{"$ref":"AAAAAAGMDBZil+iO2Tc="},"model":{"$ref":"AAAAAAGMDBaHu+m/kzQ="},"font":"Arial;13;0","left":1653,"top":517,"width":279.55419921875,"height":13,"text":"-codeInvitation: string","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDBaoIupZOh4=","_parent":{"$ref":"AAAAAAGMDBZil+iO2Tc="},"model":{"$ref":"AAAAAAGMDBaoH+pKCU8="},"visible":false,"font":"Arial;13;0","left":2693,"top":852,"width":124.5634765625,"height":13,"text":"+Attribute1","horizontalAlignment":0}],"font":"Arial;13;0","left":1648,"top":497,"width":289.55419921875,"height":38},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDBZil+iPqfU=","_parent":{"$ref":"AAAAAAGMDBZil+iIe4Q="},"model":{"$ref":"AAAAAAGMDBZil+iGdXI="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHkXVemTUt8=","_parent":{"$ref":"AAAAAAGMDBZil+iPqfU="},"model":{"$ref":"AAAAAAGMDHkXT+mETgE="},"font":"Arial;13;0","left":1653,"top":540,"width":279.55419921875,"height":13,"text":"+Partie(int: id, codeInvitation: string, jeu: JeuDB)","horizontalAlignment":0}],"font":"Arial;13;0","left":1648,"top":535,"width":289.55419921875,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDBZil+iQO6w=","_parent":{"$ref":"AAAAAAGMDBZil+iIe4Q="},"model":{"$ref":"AAAAAAGMDBZil+iGdXI="},"visible":false,"font":"Arial;13;0","left":1040,"top":320,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDBZil+iRa0U=","_parent":{"$ref":"AAAAAAGMDBZil+iIe4Q="},"model":{"$ref":"AAAAAAGMDBZil+iGdXI="},"visible":false,"font":"Arial;13;0","left":1040,"top":320,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1648,"top":472,"width":288.55419921875,"height":88,"nameCompartment":{"$ref":"AAAAAAGMDBZil+iJkPQ="},"attributeCompartment":{"$ref":"AAAAAAGMDBZil+iO2Tc="},"operationCompartment":{"$ref":"AAAAAAGMDBZil+iPqfU="},"receptionCompartment":{"$ref":"AAAAAAGMDBZil+iQO6w="},"templateParameterCompartment":{"$ref":"AAAAAAGMDBZil+iRa0U="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMDBgUxO9fS4o=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBgUxO9bA0s="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9gIIA=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9bA0s="},"font":"Arial;13;0","left":1614,"top":524,"width":21.67724609375,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"edgePosition":1,"text":"-jeu"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9hvGQ=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9bA0s="},"visible":null,"font":"Arial;13;0","left":1624,"top":539,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9i9AU=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9bA0s="},"visible":false,"font":"Arial;13;0","left":1625,"top":494,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9jkeY=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9cOt0="},"visible":false,"font":"Arial;13;0","left":1622,"top":523,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9keFs=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9cOt0="},"visible":false,"font":"Arial;13;0","left":1619,"top":537,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9lFyQ=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9cOt0="},"font":"Arial;13;0","left":1617,"top":496,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9mNu4=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9dkUI="},"visible":false,"font":"Arial;13;0","left":1627,"top":523,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9ndbo=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9dkUI="},"visible":false,"font":"Arial;13;0","left":1630,"top":537,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBgUxO9oKB8=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9dkUI="},"font":"Arial;13;0","left":1620,"top":496,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDBgUxO9pqNM=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9cOt0="},"visible":false,"font":"Arial;13;0","left":744,"top":272,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDBgUxO9qVK0=","_parent":{"$ref":"AAAAAAGMDBgUxO9fS4o="},"model":{"$ref":"AAAAAAGMDBgUxO9dkUI="},"visible":false,"font":"Arial;13;0","left":744,"top":272,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"tail":{"$ref":"AAAAAAGMDBZil+iIe4Q="},"points":"1648:515;1602:515","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDBgUxO9gIIA="},"stereotypeLabel":{"$ref":"AAAAAAGMDBgUxO9hvGQ="},"propertyLabel":{"$ref":"AAAAAAGMDBgUxO9i9AU="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMDBgUxO9jkeY="},"tailPropertyLabel":{"$ref":"AAAAAAGMDBgUxO9keFs="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMDBgUxO9lFyQ="},"headRoleNameLabel":{"$ref":"AAAAAAGMDBgUxO9mNu4="},"headPropertyLabel":{"$ref":"AAAAAAGMDBgUxO9ndbo="},"headMultiplicityLabel":{"$ref":"AAAAAAGMDBgUxO9oKB8="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMDBgUxO9pqNM="},"headQualifiersCompartment":{"$ref":"AAAAAAGMDBgUxO9qVK0="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMDBiZJPgZUEw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBiZJPgV7QA="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPga3vI=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgV7QA="},"font":"Arial;13;0","left":2016,"top":489,"width":46.96630859375,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"edgePosition":1,"text":"-joueurs"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPgbUMw=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgV7QA="},"visible":null,"font":"Arial;13;0","left":2054,"top":489,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPgcITA=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgV7QA="},"visible":false,"font":"Arial;13;0","left":2010,"top":490,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPgd5zI=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgWBiE="},"visible":false,"font":"Arial;13;0","left":1962,"top":475,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPge5hQ=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgWBiE="},"visible":false,"font":"Arial;13;0","left":1965,"top":461,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPgfc6Y=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgWBiE="},"font":"Arial;13;0","left":1948,"top":502,"width":21.68359375,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"edgePosition":2,"text":"0..1"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPggwS8=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgXaCM="},"visible":false,"font":"Arial;13;0","left":2040,"top":544,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPghoT4=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgXaCM="},"visible":false,"font":"Arial;13;0","left":2053,"top":541,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBiZJPgiZW0=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgXaCM="},"font":"Arial;13;0","left":2003,"top":548,"width":19.5126953125,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"text":"1..*"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDBiZJPgje5U=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgWBiE="},"visible":false,"font":"Arial;13;0","left":744,"top":272,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDBiZJPgk+HY=","_parent":{"$ref":"AAAAAAGMDBiZJPgZUEw="},"model":{"$ref":"AAAAAAGMDBiZJPgXaCM="},"visible":false,"font":"Arial;13;0","left":744,"top":272,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC/AivaOOebM="},"tail":{"$ref":"AAAAAAGMDBZil+iIe4Q="},"points":"1937:496;2025:496;2025:576","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDBiZJPga3vI="},"stereotypeLabel":{"$ref":"AAAAAAGMDBiZJPgbUMw="},"propertyLabel":{"$ref":"AAAAAAGMDBiZJPgcITA="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMDBiZJPgd5zI="},"tailPropertyLabel":{"$ref":"AAAAAAGMDBiZJPge5hQ="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMDBiZJPgfc6Y="},"headRoleNameLabel":{"$ref":"AAAAAAGMDBiZJPggwS8="},"headPropertyLabel":{"$ref":"AAAAAAGMDBiZJPghoT4="},"headMultiplicityLabel":{"$ref":"AAAAAAGMDBiZJPgiZW0="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMDBiZJPgje5U="},"headQualifiersCompartment":{"$ref":"AAAAAAGMDBiZJPgk+HY="}},{"_type":"UMLClassView","_id":"AAAAAAGMDBqwaPw/sTA=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDBqwaPxAHP0=","_parent":{"$ref":"AAAAAAGMDBqwaPw/sTA="},"model":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDBqwaPxBs40=","_parent":{"$ref":"AAAAAAGMDBqwaPxAHP0="},"visible":false,"font":"Arial;13;0","left":2976,"top":1008,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDBqwaPxCwyI=","_parent":{"$ref":"AAAAAAGMDBqwaPxAHP0="},"font":"Arial;13;1","left":2253,"top":959,"width":283.1279296875,"height":13,"text":"Admin"},{"_type":"LabelView","_id":"AAAAAAGMDBqwaPxDJRk=","_parent":{"$ref":"AAAAAAGMDBqwaPxAHP0="},"visible":false,"font":"Arial;13;0","left":2976,"top":1008,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDBqwaPxEsDw=","_parent":{"$ref":"AAAAAAGMDBqwaPxAHP0="},"visible":false,"font":"Arial;13;0","left":2976,"top":1008,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2248,"top":952,"width":293.1279296875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDBqwaPxBs40="},"nameLabel":{"$ref":"AAAAAAGMDBqwaPxCwyI="},"namespaceLabel":{"$ref":"AAAAAAGMDBqwaPxDJRk="},"propertyLabel":{"$ref":"AAAAAAGMDBqwaPxEsDw="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDBqwaPxFD20=","_parent":{"$ref":"AAAAAAGMDBqwaPw/sTA="},"model":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDBrCsP4Iq0w=","_parent":{"$ref":"AAAAAAGMDBqwaPxFD20="},"model":{"$ref":"AAAAAAGMDBrCqf3zBpk="},"font":"Arial;13;0","left":2253,"top":982,"width":283.1279296875,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDBrpeP+beYg=","_parent":{"$ref":"AAAAAAGMDBqwaPxFD20="},"model":{"$ref":"AAAAAAGMDBrpdP+GlnM="},"font":"Arial;13;0","left":2253,"top":997,"width":283.1279296875,"height":13,"text":"-email: string","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDBtPHQIGors=","_parent":{"$ref":"AAAAAAGMDBqwaPxFD20="},"model":{"$ref":"AAAAAAGMDBtPGQHxwr8="},"font":"Arial;13;0","left":2253,"top":1012,"width":283.1279296875,"height":13,"text":"-motDePasse: string","horizontalAlignment":0}],"font":"Arial;13;0","left":2248,"top":977,"width":293.1279296875,"height":53},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDBqwaPxGLVw=","_parent":{"$ref":"AAAAAAGMDBqwaPw/sTA="},"model":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHvMjvXSMtM=","_parent":{"$ref":"AAAAAAGMDBqwaPxGLVw="},"model":{"$ref":"AAAAAAGMDHvMhvW9p7Y="},"font":"Arial;13;0","left":2253,"top":1035,"width":283.1279296875,"height":13,"text":"+Admin(id: int, email: string, motDePasse: string)","horizontalAlignment":0}],"font":"Arial;13;0","left":2248,"top":1030,"width":293.1279296875,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDBqwaPxHdx8=","_parent":{"$ref":"AAAAAAGMDBqwaPw/sTA="},"model":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"visible":false,"font":"Arial;13;0","left":1480,"top":624,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDBqwaPxIVtQ=","_parent":{"$ref":"AAAAAAGMDBqwaPw/sTA="},"model":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"visible":false,"font":"Arial;13;0","left":1480,"top":624,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2248,"top":952,"width":292.1279296875,"height":101,"nameCompartment":{"$ref":"AAAAAAGMDBqwaPxAHP0="},"attributeCompartment":{"$ref":"AAAAAAGMDBqwaPxFD20="},"operationCompartment":{"$ref":"AAAAAAGMDBqwaPxGLVw="},"receptionCompartment":{"$ref":"AAAAAAGMDBqwaPxHdx8="},"templateParameterCompartment":{"$ref":"AAAAAAGMDBqwaPxIVtQ="}},{"_type":"UMLClassView","_id":"AAAAAAGMDBuarwhgNik=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBuarwheVvc="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDBuarwhhIGw=","_parent":{"$ref":"AAAAAAGMDBuarwhgNik="},"model":{"$ref":"AAAAAAGMDBuarwheVvc="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDBuarwhir74=","_parent":{"$ref":"AAAAAAGMDBuarwhhIGw="},"visible":false,"font":"Arial;13;0","left":2656,"top":1136,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDBuarwhj67Q=","_parent":{"$ref":"AAAAAAGMDBuarwhhIGw="},"font":"Arial;13;1","left":1413,"top":855,"width":155.99072265625,"height":13,"text":"Indice"},{"_type":"LabelView","_id":"AAAAAAGMDBuarwhky9g=","_parent":{"$ref":"AAAAAAGMDBuarwhhIGw="},"visible":false,"font":"Arial;13;0","left":2656,"top":1136,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDBuarwhlT5M=","_parent":{"$ref":"AAAAAAGMDBuarwhhIGw="},"visible":false,"font":"Arial;13;0","left":2656,"top":1136,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1408,"top":848,"width":165.99072265625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDBuarwhir74="},"nameLabel":{"$ref":"AAAAAAGMDBuarwhj67Q="},"namespaceLabel":{"$ref":"AAAAAAGMDBuarwhky9g="},"propertyLabel":{"$ref":"AAAAAAGMDBuarwhlT5M="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDBuarwhmHBU=","_parent":{"$ref":"AAAAAAGMDBuarwhgNik="},"model":{"$ref":"AAAAAAGMDBuarwheVvc="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDBuv3gljcvo=","_parent":{"$ref":"AAAAAAGMDBuarwhmHBU="},"model":{"$ref":"AAAAAAGMDBuv1glOITM="},"font":"Arial;13;0","left":1413,"top":878,"width":155.99072265625,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDBvBrAowQqY=","_parent":{"$ref":"AAAAAAGMDBuarwhmHBU="},"model":{"$ref":"AAAAAAGMDBvBqAobOtM="},"font":"Arial;13;0","left":1413,"top":893,"width":155.99072265625,"height":13,"text":"-indice: string","horizontalAlignment":0}],"font":"Arial;13;0","left":1408,"top":873,"width":165.99072265625,"height":38},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDBuasAhnc/s=","_parent":{"$ref":"AAAAAAGMDBuarwhgNik="},"model":{"$ref":"AAAAAAGMDBuarwheVvc="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHc/Ycxdx3c=","_parent":{"$ref":"AAAAAAGMDBuasAhnc/s="},"model":{"$ref":"AAAAAAGMDHc/WsxID0I="},"font":"Arial;13;0","left":1413,"top":916,"width":155.99072265625,"height":13,"text":"+Indice(id int, indice string)","horizontalAlignment":0}],"font":"Arial;13;0","left":1408,"top":911,"width":165.99072265625,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDBuasAhozr8=","_parent":{"$ref":"AAAAAAGMDBuarwhgNik="},"model":{"$ref":"AAAAAAGMDBuarwheVvc="},"visible":false,"font":"Arial;13;0","left":1328,"top":568,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDBuasAhpA9E=","_parent":{"$ref":"AAAAAAGMDBuarwhgNik="},"model":{"$ref":"AAAAAAGMDBuarwheVvc="},"visible":false,"font":"Arial;13;0","left":1328,"top":568,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1408,"top":848,"width":164.99072265625,"height":86,"nameCompartment":{"$ref":"AAAAAAGMDBuarwhhIGw="},"attributeCompartment":{"$ref":"AAAAAAGMDBuarwhmHBU="},"operationCompartment":{"$ref":"AAAAAAGMDBuasAhnc/s="},"receptionCompartment":{"$ref":"AAAAAAGMDBuasAhozr8="},"templateParameterCompartment":{"$ref":"AAAAAAGMDBuasAhpA9E="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMDBwMHwz2vog=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBwMHgzyyTI="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz3v1M=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgzyyTI="},"font":"Arial;13;0","left":1477,"top":1028,"width":44.79541015625,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="},"edgePosition":1,"text":"-indices"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz4GYc=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgzyyTI="},"visible":null,"font":"Arial;13;0","left":1484,"top":1028,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz5ECU=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgzyyTI="},"visible":false,"font":"Arial;13;0","left":1529,"top":1029,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz6tyM=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgzzW3c="},"visible":false,"font":"Arial;13;0","left":1499,"top":1104,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz7vHI=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgzzW3c="},"visible":false,"font":"Arial;13;0","left":1485,"top":1101,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz8NhY=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgzzW3c="},"font":"Arial;13;0","left":1523,"top":1108,"width":7.22998046875,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="},"edgePosition":2,"text":"1"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz9mDU=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgz06uw="},"visible":false,"font":"Arial;13;0","left":1499,"top":953,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz+0mk=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgz06uw="},"visible":false,"font":"Arial;13;0","left":1485,"top":956,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBwMHwz/VSA=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgz06uw="},"font":"Arial;13;0","left":1517,"top":949,"width":19.5126953125,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDBwMHwz2vog="},"text":"0..*"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDBwMHw0A/CQ=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgzzW3c="},"visible":false,"font":"Arial;13;0","left":744,"top":272,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDBwMHw0BJH4=","_parent":{"$ref":"AAAAAAGMDBwMHwz2vog="},"model":{"$ref":"AAAAAAGMDBwMHgz06uw="},"visible":false,"font":"Arial;13;0","left":744,"top":272,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDBuarwhgNik="},"tail":{"$ref":"AAAAAAGMC95HQGCp4K8="},"points":"1514:1136;1514:934","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDBwMHwz3v1M="},"stereotypeLabel":{"$ref":"AAAAAAGMDBwMHwz4GYc="},"propertyLabel":{"$ref":"AAAAAAGMDBwMHwz5ECU="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMDBwMHwz6tyM="},"tailPropertyLabel":{"$ref":"AAAAAAGMDBwMHwz7vHI="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMDBwMHwz8NhY="},"headRoleNameLabel":{"$ref":"AAAAAAGMDBwMHwz9mDU="},"headPropertyLabel":{"$ref":"AAAAAAGMDBwMHwz+0mk="},"headMultiplicityLabel":{"$ref":"AAAAAAGMDBwMHwz/VSA="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMDBwMHw0A/CQ="},"headQualifiersCompartment":{"$ref":"AAAAAAGMDBwMHw0BJH4="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMDBx1bBWgeEc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDBx1bBWeg2U="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDBx1bBWhdig=","_parent":{"$ref":"AAAAAAGMDBx1bBWgeEc="},"model":{"$ref":"AAAAAAGMDBx1bBWeg2U="},"visible":false,"font":"Arial;13;0","left":1502,"top":699,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBx1bBWgeEc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBx1bBWirR4=","_parent":{"$ref":"AAAAAAGMDBx1bBWgeEc="},"model":{"$ref":"AAAAAAGMDBx1bBWeg2U="},"visible":null,"font":"Arial;13;0","left":1517,"top":699,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDBx1bBWgeEc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDBx1bBWjeCU=","_parent":{"$ref":"AAAAAAGMDBx1bBWgeEc="},"model":{"$ref":"AAAAAAGMDBx1bBWeg2U="},"visible":false,"font":"Arial;13;0","left":1472,"top":700,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDBx1bBWgeEc="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDBuarwhgNik="},"tail":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"points":"1487:565;1487:848","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDBx1bBWhdig="},"stereotypeLabel":{"$ref":"AAAAAAGMDBx1bBWirR4="},"propertyLabel":{"$ref":"AAAAAAGMDBx1bBWjeCU="}},{"_type":"UMLClassView","_id":"AAAAAAGMDB+czTaE+W0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDB+czDaCSSs="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDB+czTaFugQ=","_parent":{"$ref":"AAAAAAGMDB+czTaE+W0="},"model":{"$ref":"AAAAAAGMDB+czDaCSSs="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDB+czTaG5BM=","_parent":{"$ref":"AAAAAAGMDB+czTaFugQ="},"visible":false,"font":"Arial;13;0","left":1840,"top":64,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDB+czTaHiEo=","_parent":{"$ref":"AAAAAAGMDB+czTaFugQ="},"font":"Arial;13;1","left":1013,"top":479,"width":195.73974609375,"height":13,"text":"Question"},{"_type":"LabelView","_id":"AAAAAAGMDB+czTaIXl4=","_parent":{"$ref":"AAAAAAGMDB+czTaFugQ="},"visible":false,"font":"Arial;13;0","left":1840,"top":64,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDB+czTaJia0=","_parent":{"$ref":"AAAAAAGMDB+czTaFugQ="},"visible":false,"font":"Arial;13;0","left":1840,"top":64,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1008,"top":472,"width":205.73974609375,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDB+czTaG5BM="},"nameLabel":{"$ref":"AAAAAAGMDB+czTaHiEo="},"namespaceLabel":{"$ref":"AAAAAAGMDB+czTaIXl4="},"propertyLabel":{"$ref":"AAAAAAGMDB+czTaJia0="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDB+czTaKmSo=","_parent":{"$ref":"AAAAAAGMDB+czTaE+W0="},"model":{"$ref":"AAAAAAGMDB+czDaCSSs="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDB/QzDqK/L4=","_parent":{"$ref":"AAAAAAGMDB+czTaKmSo="},"model":{"$ref":"AAAAAAGMDB/QxTpysiU="},"font":"Arial;13;0","left":1013,"top":502,"width":195.73974609375,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDB/j5Txfq00=","_parent":{"$ref":"AAAAAAGMDB+czTaKmSo="},"model":{"$ref":"AAAAAAGMDB/j4DxHGZI="},"font":"Arial;13;0","left":1013,"top":517,"width":195.73974609375,"height":13,"text":"-question: string","horizontalAlignment":0}],"font":"Arial;13;0","left":1008,"top":497,"width":205.73974609375,"height":38},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDB+czTaLLxQ=","_parent":{"$ref":"AAAAAAGMDB+czTaE+W0="},"model":{"$ref":"AAAAAAGMDB+czDaCSSs="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHbKNcOjRvE=","_parent":{"$ref":"AAAAAAGMDB+czTaLLxQ="},"model":{"$ref":"AAAAAAGMDHbKL8OLehg="},"font":"Arial;13;0","left":1013,"top":540,"width":195.73974609375,"height":13,"text":"+Question(id: int, question: string)","horizontalAlignment":0}],"font":"Arial;13;0","left":1008,"top":535,"width":205.73974609375,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDB+czTaMec8=","_parent":{"$ref":"AAAAAAGMDB+czTaE+W0="},"model":{"$ref":"AAAAAAGMDB+czDaCSSs="},"visible":false,"font":"Arial;13;0","left":920,"top":32,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDB+czTaNQAk=","_parent":{"$ref":"AAAAAAGMDB+czTaE+W0="},"model":{"$ref":"AAAAAAGMDB+czDaCSSs="},"visible":false,"font":"Arial;13;0","left":920,"top":32,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1008,"top":472,"width":204.73974609375,"height":86,"nameCompartment":{"$ref":"AAAAAAGMDB+czTaFugQ="},"attributeCompartment":{"$ref":"AAAAAAGMDB+czTaKmSo="},"operationCompartment":{"$ref":"AAAAAAGMDB+czTaLLxQ="},"receptionCompartment":{"$ref":"AAAAAAGMDB+czTaMec8="},"templateParameterCompartment":{"$ref":"AAAAAAGMDB+czTaNQAk="}},{"_type":"UMLClassView","_id":"AAAAAAGMDB+zgDfU87A=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDB+zgDfVY9k=","_parent":{"$ref":"AAAAAAGMDB+zgDfU87A="},"model":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDB+zgDfWe7k=","_parent":{"$ref":"AAAAAAGMDB+zgDfVY9k="},"visible":false,"font":"Arial;13;0","left":1824,"top":256,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDB+zgDfX5q8=","_parent":{"$ref":"AAAAAAGMDB+zgDfVY9k="},"font":"Arial;13;1","left":1013,"top":663,"width":193.5751953125,"height":13,"text":"Reponse"},{"_type":"LabelView","_id":"AAAAAAGMDB+zgDfYp8U=","_parent":{"$ref":"AAAAAAGMDB+zgDfVY9k="},"visible":false,"font":"Arial;13;0","left":1824,"top":256,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDB+zgDfZh7U=","_parent":{"$ref":"AAAAAAGMDB+zgDfVY9k="},"visible":false,"font":"Arial;13;0","left":1824,"top":256,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1008,"top":656,"width":203.5751953125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDB+zgDfWe7k="},"nameLabel":{"$ref":"AAAAAAGMDB+zgDfX5q8="},"namespaceLabel":{"$ref":"AAAAAAGMDB+zgDfYp8U="},"propertyLabel":{"$ref":"AAAAAAGMDB+zgDfZh7U="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDB+zgDfa+o8=","_parent":{"$ref":"AAAAAAGMDB+zgDfU87A="},"model":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDCAB4z7caPg=","_parent":{"$ref":"AAAAAAGMDB+zgDfa+o8="},"model":{"$ref":"AAAAAAGMDCAB3j7EjW4="},"font":"Arial;13;0","left":1013,"top":686,"width":193.5751953125,"height":13,"text":"-id: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMDCAdV0Cxs/M=","_parent":{"$ref":"AAAAAAGMDB+zgDfa+o8="},"model":{"$ref":"AAAAAAGMDCAdU0CZOjA="},"font":"Arial;13;0","left":1013,"top":701,"width":193.5751953125,"height":13,"text":"-reponse","horizontalAlignment":0}],"font":"Arial;13;0","left":1008,"top":681,"width":203.5751953125,"height":38},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDB+zgDfb0lY=","_parent":{"$ref":"AAAAAAGMDB+zgDfU87A="},"model":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHcHqsdfaeU=","_parent":{"$ref":"AAAAAAGMDB+zgDfb0lY="},"model":{"$ref":"AAAAAAGMDHcHpMdHSio="},"font":"Arial;13;0","left":1013,"top":724,"width":193.5751953125,"height":13,"text":"+Reponse(id: int, reponse: string)","horizontalAlignment":0}],"font":"Arial;13;0","left":1008,"top":719,"width":203.5751953125,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDB+zgDfcLgs=","_parent":{"$ref":"AAAAAAGMDB+zgDfU87A="},"model":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"visible":false,"font":"Arial;13;0","left":912,"top":128,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDB+zgDfd9H0=","_parent":{"$ref":"AAAAAAGMDB+zgDfU87A="},"model":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"visible":false,"font":"Arial;13;0","left":912,"top":128,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1008,"top":656,"width":202.5751953125,"height":86,"nameCompartment":{"$ref":"AAAAAAGMDB+zgDfVY9k="},"attributeCompartment":{"$ref":"AAAAAAGMDB+zgDfa+o8="},"operationCompartment":{"$ref":"AAAAAAGMDB+zgDfb0lY="},"receptionCompartment":{"$ref":"AAAAAAGMDB+zgDfcLgs="},"templateParameterCompartment":{"$ref":"AAAAAAGMDB+zgDfd9H0="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMDCBfPFLabfw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDCBfO1LYx6A="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDCBfPFLbeqs=","_parent":{"$ref":"AAAAAAGMDCBfPFLabfw="},"model":{"$ref":"AAAAAAGMDCBfO1LYx6A="},"visible":false,"font":"Arial;13;0","left":1293,"top":524,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDCBfPFLabfw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCBfPFLc35c=","_parent":{"$ref":"AAAAAAGMDCBfPFLabfw="},"model":{"$ref":"AAAAAAGMDCBfO1LYx6A="},"visible":null,"font":"Arial;13;0","left":1293,"top":539,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDCBfPFLabfw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCBfPFLdG7A=","_parent":{"$ref":"AAAAAAGMDCBfPFLabfw="},"model":{"$ref":"AAAAAAGMDCBfO1LYx6A="},"visible":false,"font":"Arial;13;0","left":1294,"top":494,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDCBfPFLabfw="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDB+czTaE+W0="},"tail":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"points":"1376:515;1213:515","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDCBfPFLbeqs="},"stereotypeLabel":{"$ref":"AAAAAAGMDCBfPFLc35c="},"propertyLabel":{"$ref":"AAAAAAGMDCBfPFLdG7A="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMDCCdtlU55Dw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDCCdtVU1iJQ="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlU6XQ0=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU1iJQ="},"font":"Arial;13;0","left":1092,"top":600,"width":57.80810546875,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"edgePosition":1,"text":"-reponses"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlU7Juc=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU1iJQ="},"visible":null,"font":"Arial;13;0","left":1135,"top":600,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlU8L90=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU1iJQ="},"visible":false,"font":"Arial;13;0","left":1091,"top":601,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlU9M4I=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU27+s="},"visible":false,"font":"Arial;13;0","left":1121,"top":577,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlU+c1A=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU27+s="},"visible":false,"font":"Arial;13;0","left":1134,"top":580,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlU/OXo=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU27+s="},"font":"Arial;13;0","left":1090,"top":573,"width":7.22998046875,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"edgePosition":2,"text":"1"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlVAdZ0=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU3/l4="},"visible":false,"font":"Arial;13;0","left":1121,"top":624,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlVBOvg=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU3/l4="},"visible":false,"font":"Arial;13;0","left":1134,"top":621,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCCdtlVCVUE=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU3/l4="},"font":"Arial;13;0","left":1084,"top":628,"width":19.5126953125,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"text":"2..*"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDCCdtlVD9ho=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU27+s="},"visible":false,"font":"Arial;13;0","left":744,"top":272,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDCCdtlVEJwc=","_parent":{"$ref":"AAAAAAGMDCCdtlU55Dw="},"model":{"$ref":"AAAAAAGMDCCdtVU3/l4="},"visible":false,"font":"Arial;13;0","left":744,"top":272,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDB+zgDfU87A="},"tail":{"$ref":"AAAAAAGMDB+czTaE+W0="},"points":"1106:558;1106:656","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDCCdtlU6XQ0="},"stereotypeLabel":{"$ref":"AAAAAAGMDCCdtlU7Juc="},"propertyLabel":{"$ref":"AAAAAAGMDCCdtlU8L90="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMDCCdtlU9M4I="},"tailPropertyLabel":{"$ref":"AAAAAAGMDCCdtlU+c1A="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMDCCdtlU/OXo="},"headRoleNameLabel":{"$ref":"AAAAAAGMDCCdtlVAdZ0="},"headPropertyLabel":{"$ref":"AAAAAAGMDCCdtlVBOvg="},"headMultiplicityLabel":{"$ref":"AAAAAAGMDCCdtlVCVUE="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMDCCdtlVD9ho="},"headQualifiersCompartment":{"$ref":"AAAAAAGMDCCdtlVEJwc="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMDCHlLWryOqQ=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDCHlLWruLMI="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWrzJKA=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWruLMI="},"font":"Arial;13;0","left":1109,"top":1218,"width":69.3671875,"height":13,"alpha":-2.130693315932167,"distance":17.08800749063506,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"edgePosition":1,"text":"-scientifique"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWr0TO0=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWruLMI="},"visible":null,"font":"Arial;13;0","left":1153,"top":1174,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWr1DIM=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWruLMI="},"visible":false,"font":"Arial;13;0","left":1153,"top":1219,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWr2TWE=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWrvrsY="},"visible":false,"font":"Arial;13;0","left":1168,"top":761,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWr3twc=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWrvrsY="},"visible":false,"font":"Arial;13;0","left":1181,"top":764,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWr4nq0=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWrvrsY="},"font":"Arial;13;0","left":1131,"top":757,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWr5RPA=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWrwjrw="},"visible":false,"font":"Arial;13;0","left":1182,"top":1189,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWr6irU=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWrwjrw="},"visible":false,"font":"Arial;13;0","left":1179,"top":1175,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMDCHlLWr7X/0=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWrwjrw="},"font":"Arial;13;0","left":1183,"top":1216,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDCHlLWr890w=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWrvrsY="},"visible":false,"font":"Arial;13;0","left":631,"top":880,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMDCHlLWr9MtQ=","_parent":{"$ref":"AAAAAAGMDCHlLWryOqQ="},"model":{"$ref":"AAAAAAGMDCHlLWrwjrw="},"visible":false,"font":"Arial;13;0","left":631,"top":880,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC95HQGCp4K8="},"tail":{"$ref":"AAAAAAGMDB+zgDfU87A="},"points":"1153:742;1153:1210;1208:1210","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDCHlLWrzJKA="},"stereotypeLabel":{"$ref":"AAAAAAGMDCHlLWr0TO0="},"propertyLabel":{"$ref":"AAAAAAGMDCHlLWr1DIM="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMDCHlLWr2TWE="},"tailPropertyLabel":{"$ref":"AAAAAAGMDCHlLWr3twc="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMDCHlLWr4nq0="},"headRoleNameLabel":{"$ref":"AAAAAAGMDCHlLWr5RPA="},"headPropertyLabel":{"$ref":"AAAAAAGMDCHlLWr6irU="},"headMultiplicityLabel":{"$ref":"AAAAAAGMDCHlLWr7X/0="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMDCHlLWr890w="},"headQualifiersCompartment":{"$ref":"AAAAAAGMDCHlLWr9MtQ="}},{"_type":"UMLClassView","_id":"AAAAAAGMDFZUD6SJFBc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDFZUD6SKJmc=","_parent":{"$ref":"AAAAAAGMDFZUD6SJFBc="},"model":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDFZUD6SLGAg=","_parent":{"$ref":"AAAAAAGMDFZUD6SKJmc="},"visible":false,"font":"Arial;13;0","left":1888,"top":496,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDFZUD6SMUio=","_parent":{"$ref":"AAAAAAGMDFZUD6SKJmc="},"font":"Arial;13;1","left":1005,"top":287,"width":214.53515625,"height":13,"text":"QuestionGateway"},{"_type":"LabelView","_id":"AAAAAAGMDFZUD6SN6og=","_parent":{"$ref":"AAAAAAGMDFZUD6SKJmc="},"visible":false,"font":"Arial;13;0","left":1888,"top":496,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDFZUD6SOQWs=","_parent":{"$ref":"AAAAAAGMDFZUD6SKJmc="},"visible":false,"font":"Arial;13;0","left":1888,"top":496,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1000,"top":280,"width":224.53515625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDFZUD6SLGAg="},"nameLabel":{"$ref":"AAAAAAGMDFZUD6SMUio="},"namespaceLabel":{"$ref":"AAAAAAGMDFZUD6SN6og="},"propertyLabel":{"$ref":"AAAAAAGMDFZUD6SOQWs="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDFZUD6SP02o=","_parent":{"$ref":"AAAAAAGMDFZUD6SJFBc="},"model":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"font":"Arial;13;0","left":1000,"top":305,"width":224.53515625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDFZUD6SQys4=","_parent":{"$ref":"AAAAAAGMDFZUD6SJFBc="},"model":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDFc1Wa9/MFU=","_parent":{"$ref":"AAAAAAGMDFZUD6SQys4="},"model":{"$ref":"AAAAAAGMDFc1U69he3g="},"font":"Arial;13;0","left":1005,"top":320,"width":214.53515625,"height":13,"text":"+QuestionGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDFdv1rIrCe8=","_parent":{"$ref":"AAAAAAGMDFZUD6SQys4="},"model":{"$ref":"AAAAAAGMDFdv0bINGPU="},"font":"Arial;13;0","left":1005,"top":335,"width":214.53515625,"height":13,"text":"+getRandom(): Question","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDFeXMrN4EQo=","_parent":{"$ref":"AAAAAAGMDFZUD6SQys4="},"model":{"$ref":"AAAAAAGMDFeXLLNagEc="},"font":"Arial;13;0","left":1005,"top":350,"width":214.53515625,"height":13,"text":"+getFromId(id: int): Question","horizontalAlignment":0}],"font":"Arial;13;0","left":1000,"top":315,"width":224.53515625,"height":53},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDFZUD6SRvxg=","_parent":{"$ref":"AAAAAAGMDFZUD6SJFBc="},"model":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"visible":false,"font":"Arial;13;0","left":944,"top":248,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDFZUD6SSoi0=","_parent":{"$ref":"AAAAAAGMDFZUD6SJFBc="},"model":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"visible":false,"font":"Arial;13;0","left":944,"top":248,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1000,"top":280,"width":223.53515625,"height":101,"nameCompartment":{"$ref":"AAAAAAGMDFZUD6SKJmc="},"attributeCompartment":{"$ref":"AAAAAAGMDFZUD6SP02o="},"operationCompartment":{"$ref":"AAAAAAGMDFZUD6SQys4="},"receptionCompartment":{"$ref":"AAAAAAGMDFZUD6SRvxg="},"templateParameterCompartment":{"$ref":"AAAAAAGMDFZUD6SSoi0="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMDFgZpLczKdw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDFgZpLcxcgs="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDFgZpLc01pU=","_parent":{"$ref":"AAAAAAGMDFgZpLczKdw="},"model":{"$ref":"AAAAAAGMDFgZpLcxcgs="},"visible":false,"font":"Arial;13;0","left":1122,"top":419,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDFgZpLczKdw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDFgZpLc1bWE=","_parent":{"$ref":"AAAAAAGMDFgZpLczKdw="},"model":{"$ref":"AAAAAAGMDFgZpLcxcgs="},"visible":null,"font":"Arial;13;0","left":1137,"top":419,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDFgZpLczKdw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDFgZpLc2/sI=","_parent":{"$ref":"AAAAAAGMDFgZpLczKdw="},"model":{"$ref":"AAAAAAGMDFgZpLcxcgs="},"visible":false,"font":"Arial;13;0","left":1093,"top":420,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDFgZpLczKdw="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDB+czTaE+W0="},"tail":{"$ref":"AAAAAAGMDFZUD6SJFBc="},"points":"1108:381;1108:472","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDFgZpLc01pU="},"stereotypeLabel":{"$ref":"AAAAAAGMDFgZpLc1bWE="},"propertyLabel":{"$ref":"AAAAAAGMDFgZpLc2/sI="}},{"_type":"UMLClassView","_id":"AAAAAAGMDFhT/MjJLGE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDFhT/MjKlhk=","_parent":{"$ref":"AAAAAAGMDFhT/MjJLGE="},"model":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDFhT/MjLS/c=","_parent":{"$ref":"AAAAAAGMDFhT/MjKlhk="},"visible":false,"font":"Arial;13;0","left":688,"top":592,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDFhT/MjM5nA=","_parent":{"$ref":"AAAAAAGMDFhT/MjKlhk="},"font":"Arial;13;1","left":549,"top":655,"width":317.1513671875,"height":13,"text":"ReponseGateway"},{"_type":"LabelView","_id":"AAAAAAGMDFhT/MjNrl0=","_parent":{"$ref":"AAAAAAGMDFhT/MjKlhk="},"visible":false,"font":"Arial;13;0","left":688,"top":592,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDFhT/MjOljo=","_parent":{"$ref":"AAAAAAGMDFhT/MjKlhk="},"visible":false,"font":"Arial;13;0","left":688,"top":592,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":544,"top":648,"width":327.1513671875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDFhT/MjLS/c="},"nameLabel":{"$ref":"AAAAAAGMDFhT/MjM5nA="},"namespaceLabel":{"$ref":"AAAAAAGMDFhT/MjNrl0="},"propertyLabel":{"$ref":"AAAAAAGMDFhT/MjOljo="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDFhT/MjPLbw=","_parent":{"$ref":"AAAAAAGMDFhT/MjJLGE="},"model":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"font":"Arial;13;0","left":544,"top":673,"width":327.1513671875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDFhT/MjQ2Jk=","_parent":{"$ref":"AAAAAAGMDFhT/MjJLGE="},"model":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDFwAUQCI/tw=","_parent":{"$ref":"AAAAAAGMDFhT/MjQ2Jk="},"model":{"$ref":"AAAAAAGMDFwARwBqDhM="},"font":"Arial;13;0","left":549,"top":688,"width":317.1513671875,"height":13,"text":"+ReponseGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDFn8G/D76SI=","_parent":{"$ref":"AAAAAAGMDFhT/MjQ2Jk="},"model":{"$ref":"AAAAAAGMDFn8FfDdNSM="},"font":"Arial;13;0","left":549,"top":703,"width":317.1513671875,"height":13,"text":"+getFromId(id: int): Reponse","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDFpVsPOOz2c=","_parent":{"$ref":"AAAAAAGMDFhT/MjQ2Jk="},"model":{"$ref":"AAAAAAGMDFpVqvNwPv8="},"font":"Arial;13;0","left":549,"top":718,"width":317.1513671875,"height":13,"text":"+getFromQuestion(idQuestion: int): List","horizontalAlignment":0}],"font":"Arial;13;0","left":544,"top":683,"width":327.1513671875,"height":53},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDFhT/MjRuRY=","_parent":{"$ref":"AAAAAAGMDFhT/MjJLGE="},"model":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"visible":false,"font":"Arial;13;0","left":344,"top":296,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDFhT/MjSRlA=","_parent":{"$ref":"AAAAAAGMDFhT/MjJLGE="},"model":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"visible":false,"font":"Arial;13;0","left":344,"top":296,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":544,"top":648,"width":326.1513671875,"height":88,"nameCompartment":{"$ref":"AAAAAAGMDFhT/MjKlhk="},"attributeCompartment":{"$ref":"AAAAAAGMDFhT/MjPLbw="},"operationCompartment":{"$ref":"AAAAAAGMDFhT/MjQ2Jk="},"receptionCompartment":{"$ref":"AAAAAAGMDFhT/MjRuRY="},"templateParameterCompartment":{"$ref":"AAAAAAGMDFhT/MjSRlA="}},{"_type":"UMLClassView","_id":"AAAAAAGMDFj8ltGFB+4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDFj8ltGGWPA=","_parent":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"model":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDFj8ltGH3O8=","_parent":{"$ref":"AAAAAAGMDFj8ltGGWPA="},"visible":false,"font":"Arial;13;0","left":224,"top":-208,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDFj8ltGIxcU=","_parent":{"$ref":"AAAAAAGMDFj8ltGGWPA="},"font":"Arial;13;3","left":205,"top":87,"width":162.50341796875,"height":13,"text":"Gateway"},{"_type":"LabelView","_id":"AAAAAAGMDFj8ltGJbw4=","_parent":{"$ref":"AAAAAAGMDFj8ltGGWPA="},"visible":false,"font":"Arial;13;0","left":224,"top":-208,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDFj8ltGK0QA=","_parent":{"$ref":"AAAAAAGMDFj8ltGGWPA="},"visible":false,"font":"Arial;13;0","left":224,"top":-208,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":200,"top":80,"width":172.50341796875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDFj8ltGH3O8="},"nameLabel":{"$ref":"AAAAAAGMDFj8ltGIxcU="},"namespaceLabel":{"$ref":"AAAAAAGMDFj8ltGJbw4="},"propertyLabel":{"$ref":"AAAAAAGMDFj8ltGK0QA="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDFj8ltGLTro=","_parent":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"model":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDFk/mtbe4qY=","_parent":{"$ref":"AAAAAAGMDFj8ltGLTro="},"model":{"$ref":"AAAAAAGMDFk/lNbAwpw="},"visible":false,"font":"Arial;13;0","left":205,"top":110,"width":158.8916015625,"height":13,"text":"-con: Connection","horizontalAlignment":0}],"font":"Arial;13;0","left":200,"top":105,"width":172.50341796875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDFj8ltGM2kY=","_parent":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"model":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDFmHLNk3Oaw=","_parent":{"$ref":"AAAAAAGMDFj8ltGM2kY="},"model":{"$ref":"AAAAAAGMDFmHJtkZT84="},"font":"Arial;13;0","left":205,"top":120,"width":162.50341796875,"height":13,"text":"+Gateway(con: Connection)","horizontalAlignment":0}],"font":"Arial;13;0","left":200,"top":115,"width":172.50341796875,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDFj8ltGNzJs=","_parent":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"model":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"visible":false,"font":"Arial;13;0","left":112,"top":-104,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDFj8ltGOGcM=","_parent":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"model":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"visible":false,"font":"Arial;13;0","left":112,"top":-104,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":200,"top":80,"width":171.50341796875,"height":71,"nameCompartment":{"$ref":"AAAAAAGMDFj8ltGGWPA="},"attributeCompartment":{"$ref":"AAAAAAGMDFj8ltGLTro="},"operationCompartment":{"$ref":"AAAAAAGMDFj8ltGM2kY="},"receptionCompartment":{"$ref":"AAAAAAGMDFj8ltGNzJs="},"templateParameterCompartment":{"$ref":"AAAAAAGMDFj8ltGOGcM="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDFm6tdwzpfQ=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDFm6tNwxUSo="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDFm6tdw0Yf8=","_parent":{"$ref":"AAAAAAGMDFm6tdwzpfQ="},"model":{"$ref":"AAAAAAGMDFm6tNwxUSo="},"visible":false,"font":"Arial;13;0","left":273,"top":315,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDFm6tdwzpfQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDFm6tdw1fIk=","_parent":{"$ref":"AAAAAAGMDFm6tdwzpfQ="},"model":{"$ref":"AAAAAAGMDFm6tNwxUSo="},"visible":null,"font":"Arial;13;0","left":258,"top":315,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDFm6tdwzpfQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDFm6tdw2cY0=","_parent":{"$ref":"AAAAAAGMDFm6tdwzpfQ="},"model":{"$ref":"AAAAAAGMDFm6tNwxUSo="},"visible":false,"font":"Arial;13;0","left":303,"top":316,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDFm6tdwzpfQ="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDFZUD6SJFBc="},"points":"1000:322;288:322;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDFm6tdw0Yf8="},"stereotypeLabel":{"$ref":"AAAAAAGMDFm6tdw1fIk="},"propertyLabel":{"$ref":"AAAAAAGMDFm6tdw2cY0="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDFnGTN9uxwc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDFnGTN9sX4g="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDFnGTN9vcPo=","_parent":{"$ref":"AAAAAAGMDFnGTN9uxwc="},"model":{"$ref":"AAAAAAGMDFnGTN9sX4g="},"visible":false,"font":"Arial;13;0","left":273,"top":691,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDFnGTN9uxwc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDFnGTN9wVFM=","_parent":{"$ref":"AAAAAAGMDFnGTN9uxwc="},"model":{"$ref":"AAAAAAGMDFnGTN9sX4g="},"visible":null,"font":"Arial;13;0","left":258,"top":691,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDFnGTN9uxwc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDFnGTN9xkxU=","_parent":{"$ref":"AAAAAAGMDFnGTN9uxwc="},"model":{"$ref":"AAAAAAGMDFnGTN9sX4g="},"visible":false,"font":"Arial;13;0","left":303,"top":692,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDFnGTN9uxwc="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDFhT/MjJLGE="},"points":"544:698;288:698;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDFnGTN9vcPo="},"stereotypeLabel":{"$ref":"AAAAAAGMDFnGTN9wVFM="},"propertyLabel":{"$ref":"AAAAAAGMDFnGTN9xkxU="}},{"_type":"UMLClassView","_id":"AAAAAAGMDFvWtfxbzWQ=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDFvWtfxcTio=","_parent":{"$ref":"AAAAAAGMDFvWtfxbzWQ="},"model":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDFvWtfxd8gY=","_parent":{"$ref":"AAAAAAGMDFvWtfxcTio="},"visible":false,"font":"Arial;13;0","left":544,"top":880,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDFvWtfxeEMM=","_parent":{"$ref":"AAAAAAGMDFvWtfxcTio="},"font":"Arial;13;1","left":397,"top":855,"width":346.0458984375,"height":13,"text":"IndiceGateway"},{"_type":"LabelView","_id":"AAAAAAGMDFvWtfxfS9E=","_parent":{"$ref":"AAAAAAGMDFvWtfxcTio="},"visible":false,"font":"Arial;13;0","left":544,"top":880,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDFvWtfxgoy4=","_parent":{"$ref":"AAAAAAGMDFvWtfxcTio="},"visible":false,"font":"Arial;13;0","left":544,"top":880,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":392,"top":848,"width":356.0458984375,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDFvWtfxd8gY="},"nameLabel":{"$ref":"AAAAAAGMDFvWtfxeEMM="},"namespaceLabel":{"$ref":"AAAAAAGMDFvWtfxfS9E="},"propertyLabel":{"$ref":"AAAAAAGMDFvWtfxgoy4="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDFvWtfxhHYc=","_parent":{"$ref":"AAAAAAGMDFvWtfxbzWQ="},"model":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"font":"Arial;13;0","left":392,"top":873,"width":356.0458984375,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDFvWtfxiu0M=","_parent":{"$ref":"AAAAAAGMDFvWtfxbzWQ="},"model":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDFxh+wus7cs=","_parent":{"$ref":"AAAAAAGMDFvWtfxiu0M="},"model":{"$ref":"AAAAAAGMDFxh9AuOplo="},"font":"Arial;13;0","left":397,"top":888,"width":346.0458984375,"height":13,"text":"+IndiceGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDFyQBQ4ioYk=","_parent":{"$ref":"AAAAAAGMDFvWtfxiu0M="},"model":{"$ref":"AAAAAAGMDFyP/g4EXq8="},"font":"Arial;13;0","left":397,"top":903,"width":346.0458984375,"height":13,"text":"+getFromId(id: int): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDFy/EA+MGtE=","_parent":{"$ref":"AAAAAAGMDFvWtfxiu0M="},"model":{"$ref":"AAAAAAGMDFy/Cw9uGAE="},"font":"Arial;13;0","left":397,"top":918,"width":346.0458984375,"height":13,"text":"+getFromScientifique(idScientifique: int): array","horizontalAlignment":0}],"font":"Arial;13;0","left":392,"top":883,"width":356.0458984375,"height":53},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDFvWtfxji0s=","_parent":{"$ref":"AAAAAAGMDFvWtfxbzWQ="},"model":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"visible":false,"font":"Arial;13;0","left":272,"top":440,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDFvWtfxkkWE=","_parent":{"$ref":"AAAAAAGMDFvWtfxbzWQ="},"model":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"visible":false,"font":"Arial;13;0","left":272,"top":440,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":392,"top":848,"width":355.0458984375,"height":88,"nameCompartment":{"$ref":"AAAAAAGMDFvWtfxcTio="},"attributeCompartment":{"$ref":"AAAAAAGMDFvWtfxhHYc="},"operationCompartment":{"$ref":"AAAAAAGMDFvWtfxiu0M="},"receptionCompartment":{"$ref":"AAAAAAGMDFvWtfxji0s="},"templateParameterCompartment":{"$ref":"AAAAAAGMDFvWtfxkkWE="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDF1P1BjhCHE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDF1P1BjfLws="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDF1P1BjicLY=","_parent":{"$ref":"AAAAAAGMDF1P1BjhCHE="},"model":{"$ref":"AAAAAAGMDF1P1BjfLws="},"visible":false,"font":"Arial;13;0","left":273,"top":885,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDF1P1BjhCHE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDF1P1BjjGtM=","_parent":{"$ref":"AAAAAAGMDF1P1BjhCHE="},"model":{"$ref":"AAAAAAGMDF1P1BjfLws="},"visible":null,"font":"Arial;13;0","left":258,"top":885,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDF1P1BjhCHE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDF1P1BjkPOo=","_parent":{"$ref":"AAAAAAGMDF1P1BjhCHE="},"model":{"$ref":"AAAAAAGMDF1P1BjfLws="},"visible":false,"font":"Arial;13;0","left":303,"top":886,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDF1P1BjhCHE="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDFvWtfxbzWQ="},"points":"392:892;288:892;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDF1P1BjicLY="},"stereotypeLabel":{"$ref":"AAAAAAGMDF1P1BjjGtM="},"propertyLabel":{"$ref":"AAAAAAGMDF1P1BjkPOo="}},{"_type":"UMLClassView","_id":"AAAAAAGMDF5TZDXQeNs=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDF5TZDXRe9A=","_parent":{"$ref":"AAAAAAGMDF5TZDXQeNs="},"model":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDF5TZDXSfhw=","_parent":{"$ref":"AAAAAAGMDF5TZDXRe9A="},"visible":false,"font":"Arial;13;0","left":352,"top":1136,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDF5TZDXTMuw=","_parent":{"$ref":"AAAAAAGMDF5TZDXRe9A="},"font":"Arial;13;1","left":357,"top":1151,"width":264.37060546875,"height":13,"text":"ThematiqueGateway"},{"_type":"LabelView","_id":"AAAAAAGMDF5TZDXUHTY=","_parent":{"$ref":"AAAAAAGMDF5TZDXRe9A="},"visible":false,"font":"Arial;13;0","left":352,"top":1136,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDF5TZDXVot0=","_parent":{"$ref":"AAAAAAGMDF5TZDXRe9A="},"visible":false,"font":"Arial;13;0","left":352,"top":1136,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":352,"top":1144,"width":274.37060546875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDF5TZDXSfhw="},"nameLabel":{"$ref":"AAAAAAGMDF5TZDXTMuw="},"namespaceLabel":{"$ref":"AAAAAAGMDF5TZDXUHTY="},"propertyLabel":{"$ref":"AAAAAAGMDF5TZDXVot0="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDF5TZDXW/iY=","_parent":{"$ref":"AAAAAAGMDF5TZDXQeNs="},"model":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"font":"Arial;13;0","left":352,"top":1169,"width":274.37060546875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDF5TZDXXKlg=","_parent":{"$ref":"AAAAAAGMDF5TZDXQeNs="},"model":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDF6eVDtCJnE=","_parent":{"$ref":"AAAAAAGMDF5TZDXXKlg="},"model":{"$ref":"AAAAAAGMDF6eSzsk2es="},"font":"Arial;13;0","left":357,"top":1184,"width":264.37060546875,"height":13,"text":"+ThematiqueGateway(con Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGAUsj24Amk=","_parent":{"$ref":"AAAAAAGMDF5TZDXXKlg="},"model":{"$ref":"AAAAAAGMDGAUrD2akJo="},"font":"Arial;13;0","left":357,"top":1199,"width":264.37060546875,"height":13,"text":"+getFromId(id int): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGB4yD8izcE=","_parent":{"$ref":"AAAAAAGMDF5TZDXXKlg="},"model":{"$ref":"AAAAAAGMDGB4wz8Eh8s="},"font":"Arial;13;0","left":357,"top":1214,"width":264.37060546875,"height":13,"text":"+getAll(): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGCtvEBv2nQ=","_parent":{"$ref":"AAAAAAGMDF5TZDXXKlg="},"model":{"$ref":"AAAAAAGMDGCttUBR93E="},"font":"Arial;13;0","left":357,"top":1229,"width":264.37060546875,"height":13,"text":"+getFromScientifique(idScientifique int): array","horizontalAlignment":0}],"font":"Arial;13;0","left":352,"top":1179,"width":274.37060546875,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDF5TZDXYcok=","_parent":{"$ref":"AAAAAAGMDF5TZDXQeNs="},"model":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"visible":false,"font":"Arial;13;0","left":176,"top":568,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDF5TZTXZYqs=","_parent":{"$ref":"AAAAAAGMDF5TZDXQeNs="},"model":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"visible":false,"font":"Arial;13;0","left":176,"top":568,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":352,"top":1144,"width":273.37060546875,"height":103,"nameCompartment":{"$ref":"AAAAAAGMDF5TZDXRe9A="},"attributeCompartment":{"$ref":"AAAAAAGMDF5TZDXW/iY="},"operationCompartment":{"$ref":"AAAAAAGMDF5TZDXXKlg="},"receptionCompartment":{"$ref":"AAAAAAGMDF5TZDXYcok="},"templateParameterCompartment":{"$ref":"AAAAAAGMDF5TZTXZYqs="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDGLbbEhJ9bw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGLbbEhHlC4="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDGLbbEhKWG8=","_parent":{"$ref":"AAAAAAGMDGLbbEhJ9bw="},"model":{"$ref":"AAAAAAGMDGLbbEhHlC4="},"visible":false,"font":"Arial;13;0","left":273,"top":1188,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGLbbEhJ9bw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGLbbEhLedg=","_parent":{"$ref":"AAAAAAGMDGLbbEhJ9bw="},"model":{"$ref":"AAAAAAGMDGLbbEhHlC4="},"visible":null,"font":"Arial;13;0","left":258,"top":1188,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDGLbbEhJ9bw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGLbbEhMjW4=","_parent":{"$ref":"AAAAAAGMDGLbbEhJ9bw="},"model":{"$ref":"AAAAAAGMDGLbbEhHlC4="},"visible":false,"font":"Arial;13;0","left":303,"top":1189,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGLbbEhJ9bw="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDF5TZDXQeNs="},"points":"352:1195;288:1195;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDGLbbEhKWG8="},"stereotypeLabel":{"$ref":"AAAAAAGMDGLbbEhLedg="},"propertyLabel":{"$ref":"AAAAAAGMDGLbbEhMjW4="}},{"_type":"UMLClassView","_id":"AAAAAAGMDGNZDFHpsso=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDGNZDFHqvHI=","_parent":{"$ref":"AAAAAAGMDGNZDFHpsso="},"model":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDGNZDFHrt6M=","_parent":{"$ref":"AAAAAAGMDGNZDFHqvHI="},"visible":false,"font":"Arial;13;0","left":-480,"top":1328,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDGNZDFHsZwk=","_parent":{"$ref":"AAAAAAGMDGNZDFHqvHI="},"font":"Arial;13;1","left":421,"top":1391,"width":267.982421875,"height":13,"text":"SexeGateway"},{"_type":"LabelView","_id":"AAAAAAGMDGNZDFHt+0E=","_parent":{"$ref":"AAAAAAGMDGNZDFHqvHI="},"visible":false,"font":"Arial;13;0","left":-480,"top":1328,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDGNZDFHuHEc=","_parent":{"$ref":"AAAAAAGMDGNZDFHqvHI="},"visible":false,"font":"Arial;13;0","left":-480,"top":1328,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":416,"top":1384,"width":277.982421875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDGNZDFHrt6M="},"nameLabel":{"$ref":"AAAAAAGMDGNZDFHsZwk="},"namespaceLabel":{"$ref":"AAAAAAGMDGNZDFHt+0E="},"propertyLabel":{"$ref":"AAAAAAGMDGNZDFHuHEc="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDGNZDFHv85s=","_parent":{"$ref":"AAAAAAGMDGNZDFHpsso="},"model":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"font":"Arial;13;0","left":416,"top":1409,"width":277.982421875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDGNZDFHwNsI=","_parent":{"$ref":"AAAAAAGMDGNZDFHpsso="},"model":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDGOJCFujyRc=","_parent":{"$ref":"AAAAAAGMDGNZDFHwNsI="},"model":{"$ref":"AAAAAAGMDGOJAVuF8vU="},"font":"Arial;13;0","left":421,"top":1424,"width":267.982421875,"height":13,"text":"+SexeGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGPBKGMpOMU=","_parent":{"$ref":"AAAAAAGMDGNZDFHwNsI="},"model":{"$ref":"AAAAAAGMDGPBImMLmI0="},"font":"Arial;13;0","left":421,"top":1439,"width":267.982421875,"height":13,"text":"+getFromId(id: int): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGQA4WXynIA=","_parent":{"$ref":"AAAAAAGMDGNZDFHwNsI="},"model":{"$ref":"AAAAAAGMDGQA2WXUsh8="},"font":"Arial;13;0","left":421,"top":1454,"width":267.982421875,"height":13,"text":"+getFromScientifique(idScientifique: int): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGREXWdcVkw=","_parent":{"$ref":"AAAAAAGMDGNZDFHwNsI="},"model":{"$ref":"AAAAAAGMDGREV2c+PoM="},"font":"Arial;13;0","left":421,"top":1469,"width":267.982421875,"height":13,"text":"+getAll(): array","horizontalAlignment":0}],"font":"Arial;13;0","left":416,"top":1419,"width":277.982421875,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDGNZDFHx+1c=","_parent":{"$ref":"AAAAAAGMDGNZDFHpsso="},"model":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"visible":false,"font":"Arial;13;0","left":-240,"top":664,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDGNZDFHyWTU=","_parent":{"$ref":"AAAAAAGMDGNZDFHpsso="},"model":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"visible":false,"font":"Arial;13;0","left":-240,"top":664,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":416,"top":1384,"width":276.982421875,"height":103,"nameCompartment":{"$ref":"AAAAAAGMDGNZDFHqvHI="},"attributeCompartment":{"$ref":"AAAAAAGMDGNZDFHv85s="},"operationCompartment":{"$ref":"AAAAAAGMDGNZDFHwNsI="},"receptionCompartment":{"$ref":"AAAAAAGMDGNZDFHx+1c="},"templateParameterCompartment":{"$ref":"AAAAAAGMDGNZDFHyWTU="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDGN7FFi4ShU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGN7E1i26xY="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDGN7FFi5AcA=","_parent":{"$ref":"AAAAAAGMDGN7FFi4ShU="},"model":{"$ref":"AAAAAAGMDGN7E1i26xY="},"visible":false,"font":"Arial;13;0","left":273,"top":1428,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGN7FFi4ShU="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGN7FFi6Mxo=","_parent":{"$ref":"AAAAAAGMDGN7FFi4ShU="},"model":{"$ref":"AAAAAAGMDGN7E1i26xY="},"visible":null,"font":"Arial;13;0","left":258,"top":1428,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDGN7FFi4ShU="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGN7FFi7ZN0=","_parent":{"$ref":"AAAAAAGMDGN7FFi4ShU="},"model":{"$ref":"AAAAAAGMDGN7E1i26xY="},"visible":false,"font":"Arial;13;0","left":303,"top":1429,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGN7FFi4ShU="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDGNZDFHpsso="},"points":"416:1435;288:1435;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDGN7FFi5AcA="},"stereotypeLabel":{"$ref":"AAAAAAGMDGN7FFi6Mxo="},"propertyLabel":{"$ref":"AAAAAAGMDGN7FFi7ZN0="}},{"_type":"UMLClassView","_id":"AAAAAAGMDGYkGpB81dU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDGYkGpB9mxc=","_parent":{"$ref":"AAAAAAGMDGYkGpB81dU="},"model":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDGYkGpB+xGs=","_parent":{"$ref":"AAAAAAGMDGYkGpB9mxc="},"visible":false,"font":"Arial;13;0","left":-1440,"top":1712,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDGYkGpB/NNQ=","_parent":{"$ref":"AAAAAAGMDGYkGpB9mxc="},"font":"Arial;13;1","left":317,"top":1551,"width":284.36572265625,"height":13,"text":"DifficulteGateway"},{"_type":"LabelView","_id":"AAAAAAGMDGYkGpCAAEo=","_parent":{"$ref":"AAAAAAGMDGYkGpB9mxc="},"visible":false,"font":"Arial;13;0","left":-1440,"top":1712,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDGYkGpCBl4w=","_parent":{"$ref":"AAAAAAGMDGYkGpB9mxc="},"visible":false,"font":"Arial;13;0","left":-1440,"top":1712,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":312,"top":1544,"width":294.36572265625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDGYkGpB+xGs="},"nameLabel":{"$ref":"AAAAAAGMDGYkGpB/NNQ="},"namespaceLabel":{"$ref":"AAAAAAGMDGYkGpCAAEo="},"propertyLabel":{"$ref":"AAAAAAGMDGYkGpCBl4w="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDGYkGpCCVzk=","_parent":{"$ref":"AAAAAAGMDGYkGpB81dU="},"model":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"font":"Arial;13;0","left":312,"top":1569,"width":294.36572265625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDGYkGpCDwpI=","_parent":{"$ref":"AAAAAAGMDGYkGpB81dU="},"model":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDGZdIpT7pcM=","_parent":{"$ref":"AAAAAAGMDGYkGpCDwpI="},"model":{"$ref":"AAAAAAGMDGZdGJTdyAc="},"font":"Arial;13;0","left":317,"top":1584,"width":284.36572265625,"height":13,"text":"+DifficulteGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGaEwZZIx9I=","_parent":{"$ref":"AAAAAAGMDGYkGpCDwpI="},"model":{"$ref":"AAAAAAGMDGaEuZYq32g="},"font":"Arial;13;0","left":317,"top":1599,"width":284.36572265625,"height":13,"text":"+getFromId(id: int): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGa6j5ey4YI=","_parent":{"$ref":"AAAAAAGMDGYkGpCDwpI="},"model":{"$ref":"AAAAAAGMDGa6iJeUru0="},"font":"Arial;13;0","left":317,"top":1614,"width":284.36572265625,"height":13,"text":"+getFromScientifique(idScientifique: int): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGcEDJkcVj0=","_parent":{"$ref":"AAAAAAGMDGYkGpCDwpI="},"model":{"$ref":"AAAAAAGMDGcD95j+3zM="},"font":"Arial;13;0","left":317,"top":1629,"width":284.36572265625,"height":13,"text":"+getAll(): array","horizontalAlignment":0}],"font":"Arial;13;0","left":312,"top":1579,"width":294.36572265625,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDGYkGpCExXA=","_parent":{"$ref":"AAAAAAGMDGYkGpB81dU="},"model":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"visible":false,"font":"Arial;13;0","left":-720,"top":856,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDGYkGpCFQkM=","_parent":{"$ref":"AAAAAAGMDGYkGpB81dU="},"model":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"visible":false,"font":"Arial;13;0","left":-720,"top":856,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":312,"top":1544,"width":293.36572265625,"height":103,"nameCompartment":{"$ref":"AAAAAAGMDGYkGpB9mxc="},"attributeCompartment":{"$ref":"AAAAAAGMDGYkGpCCVzk="},"operationCompartment":{"$ref":"AAAAAAGMDGYkGpCDwpI="},"receptionCompartment":{"$ref":"AAAAAAGMDGYkGpCExXA="},"templateParameterCompartment":{"$ref":"AAAAAAGMDGYkGpCFQkM="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDGdWEqf5U9U=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGdWEqf3YfY="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDGdWEqf6ZLY=","_parent":{"$ref":"AAAAAAGMDGdWEqf5U9U="},"model":{"$ref":"AAAAAAGMDGdWEqf3YfY="},"visible":false,"font":"Arial;13;0","left":273,"top":1588,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGdWEqf5U9U="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGdWEqf78ic=","_parent":{"$ref":"AAAAAAGMDGdWEqf5U9U="},"model":{"$ref":"AAAAAAGMDGdWEqf3YfY="},"visible":null,"font":"Arial;13;0","left":258,"top":1588,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDGdWEqf5U9U="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGdWEqf8OnY=","_parent":{"$ref":"AAAAAAGMDGdWEqf5U9U="},"model":{"$ref":"AAAAAAGMDGdWEqf3YfY="},"visible":false,"font":"Arial;13;0","left":303,"top":1589,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGdWEqf5U9U="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDGYkGpB81dU="},"points":"312:1595;288:1595;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDGdWEqf6ZLY="},"stereotypeLabel":{"$ref":"AAAAAAGMDGdWEqf78ic="},"propertyLabel":{"$ref":"AAAAAAGMDGdWEqf8OnY="}},{"_type":"UMLClassView","_id":"AAAAAAGMDGffwa3Y3FM=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGffwa3WW6c="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDGffwa3Zw/Y=","_parent":{"$ref":"AAAAAAGMDGffwa3Y3FM="},"model":{"$ref":"AAAAAAGMDGffwa3WW6c="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDGffwa3agxM=","_parent":{"$ref":"AAAAAAGMDGffwa3Zw/Y="},"visible":false,"font":"Arial;13;0","left":2272,"top":464,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDGffwa3bdRc=","_parent":{"$ref":"AAAAAAGMDGffwa3Zw/Y="},"font":"Arial;13;1","left":2573,"top":935,"width":208.6953125,"height":13,"text":"AdminGateway"},{"_type":"LabelView","_id":"AAAAAAGMDGffwa3cAW4=","_parent":{"$ref":"AAAAAAGMDGffwa3Zw/Y="},"visible":false,"font":"Arial;13;0","left":2272,"top":464,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDGffwa3djSQ=","_parent":{"$ref":"AAAAAAGMDGffwa3Zw/Y="},"visible":false,"font":"Arial;13;0","left":2272,"top":464,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2568,"top":928,"width":218.6953125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDGffwa3agxM="},"nameLabel":{"$ref":"AAAAAAGMDGffwa3bdRc="},"namespaceLabel":{"$ref":"AAAAAAGMDGffwa3cAW4="},"propertyLabel":{"$ref":"AAAAAAGMDGffwa3djSQ="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDGffwa3eICY=","_parent":{"$ref":"AAAAAAGMDGffwa3Y3FM="},"model":{"$ref":"AAAAAAGMDGffwa3WW6c="},"font":"Arial;13;0","left":2568,"top":953,"width":218.6953125,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDGffwa3frQ4=","_parent":{"$ref":"AAAAAAGMDGffwa3Y3FM="},"model":{"$ref":"AAAAAAGMDGffwa3WW6c="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDGf/eLBwZdQ=","_parent":{"$ref":"AAAAAAGMDGffwa3frQ4="},"model":{"$ref":"AAAAAAGMDGf/brBSXSo="},"font":"Arial;13;0","left":2573,"top":968,"width":208.6953125,"height":13,"text":"+AdminGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGg1SLG9kXA=","_parent":{"$ref":"AAAAAAGMDGffwa3frQ4="},"model":{"$ref":"AAAAAAGMDGg1QLGftYQ="},"font":"Arial;13;0","left":2573,"top":983,"width":208.6953125,"height":13,"text":"+getFromId(id: int): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGh/Oboeb9U=","_parent":{"$ref":"AAAAAAGMDGffwa3frQ4="},"model":{"$ref":"AAAAAAGMDGh/MroA4fk="},"font":"Arial;13;0","left":2573,"top":998,"width":208.6953125,"height":13,"text":"+getFromEmail(email: string): array","horizontalAlignment":0}],"font":"Arial;13;0","left":2568,"top":963,"width":218.6953125,"height":53},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDGffwa3gtFI=","_parent":{"$ref":"AAAAAAGMDGffwa3Y3FM="},"model":{"$ref":"AAAAAAGMDGffwa3WW6c="},"visible":false,"font":"Arial;13;0","left":1128,"top":352,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDGffwa3hrPU=","_parent":{"$ref":"AAAAAAGMDGffwa3Y3FM="},"model":{"$ref":"AAAAAAGMDGffwa3WW6c="},"visible":false,"font":"Arial;13;0","left":1128,"top":352,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2568,"top":928,"width":217.6953125,"height":88,"nameCompartment":{"$ref":"AAAAAAGMDGffwa3Zw/Y="},"attributeCompartment":{"$ref":"AAAAAAGMDGffwa3eICY="},"operationCompartment":{"$ref":"AAAAAAGMDGffwa3frQ4="},"receptionCompartment":{"$ref":"AAAAAAGMDGffwa3gtFI="},"templateParameterCompartment":{"$ref":"AAAAAAGMDGffwa3hrPU="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDGlOs9U7o1c=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGlOs9U5mfI="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDGlOs9U8I4Y=","_parent":{"$ref":"AAAAAAGMDGlOs9U7o1c="},"model":{"$ref":"AAAAAAGMDGlOs9U5mfI="},"visible":false,"font":"Arial;13;0","left":3273,"top":536,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGlOs9U7o1c="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGlOs9U9Aj4=","_parent":{"$ref":"AAAAAAGMDGlOs9U7o1c="},"model":{"$ref":"AAAAAAGMDGlOs9U5mfI="},"visible":null,"font":"Arial;13;0","left":3258,"top":536,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDGlOs9U7o1c="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGlOs9U+vXA=","_parent":{"$ref":"AAAAAAGMDGlOs9U7o1c="},"model":{"$ref":"AAAAAAGMDGlOs9U5mfI="},"visible":false,"font":"Arial;13;0","left":3303,"top":537,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGlOs9U7o1c="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDGffwa3Y3FM="},"points":"2786:972;3288:972;3288:115;372:115","nameLabel":{"$ref":"AAAAAAGMDGlOs9U8I4Y="},"stereotypeLabel":{"$ref":"AAAAAAGMDGlOs9U9Aj4="},"propertyLabel":{"$ref":"AAAAAAGMDGlOs9U+vXA="}},{"_type":"UMLClassView","_id":"AAAAAAGMDGmmJOtA6I8=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDGmmJOtBmig=","_parent":{"$ref":"AAAAAAGMDGmmJOtA6I8="},"model":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDGmmJOtC56s=","_parent":{"$ref":"AAAAAAGMDGmmJOtBmig="},"visible":false,"font":"Arial;13;0","left":2512,"top":-304,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDGmmJetD5OA=","_parent":{"$ref":"AAAAAAGMDGmmJOtBmig="},"font":"Arial;13;1","left":2749,"top":247,"width":295.44873046875,"height":13,"text":"InviteGateway"},{"_type":"LabelView","_id":"AAAAAAGMDGmmJetEp8c=","_parent":{"$ref":"AAAAAAGMDGmmJOtBmig="},"visible":false,"font":"Arial;13;0","left":2512,"top":-304,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDGmmJetF69Q=","_parent":{"$ref":"AAAAAAGMDGmmJOtBmig="},"visible":false,"font":"Arial;13;0","left":2512,"top":-304,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2744,"top":240,"width":305.44873046875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDGmmJOtC56s="},"nameLabel":{"$ref":"AAAAAAGMDGmmJetD5OA="},"namespaceLabel":{"$ref":"AAAAAAGMDGmmJetEp8c="},"propertyLabel":{"$ref":"AAAAAAGMDGmmJetF69Q="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDGmmJetGGO8=","_parent":{"$ref":"AAAAAAGMDGmmJOtA6I8="},"model":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMDGnPQe3YNMg=","_parent":{"$ref":"AAAAAAGMDGmmJetGGO8="},"model":{"$ref":"AAAAAAGMDGnPN+26W7Y="},"visible":false,"font":"Arial;13;0","left":4005,"top":118,"width":88.42626953125,"height":13,"text":"+Attribute1","horizontalAlignment":0}],"font":"Arial;13;0","left":2744,"top":265,"width":305.44873046875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDGmmJetH9Xc=","_parent":{"$ref":"AAAAAAGMDGmmJOtA6I8="},"model":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDGoVU/DTYFg=","_parent":{"$ref":"AAAAAAGMDGmmJetH9Xc="},"model":{"$ref":"AAAAAAGMDGoVTPC1mJY="},"font":"Arial;13;0","left":2749,"top":280,"width":295.44873046875,"height":13,"text":"+InviteGateway(con Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGpBevIgFGs=","_parent":{"$ref":"AAAAAAGMDGmmJetH9Xc="},"model":{"$ref":"AAAAAAGMDGpBc/ICC+0="},"font":"Arial;13;0","left":2749,"top":295,"width":295.44873046875,"height":13,"text":"+getFromId(int id): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGqLd/RihIE=","_parent":{"$ref":"AAAAAAGMDGmmJetH9Xc="},"model":{"$ref":"AAAAAAGMDGqLcPREj+A="},"font":"Arial;13;0","left":2749,"top":310,"width":295.44873046875,"height":13,"text":"+getFromIdSession(idSession string): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGuYFfgDQQc=","_parent":{"$ref":"AAAAAAGMDGmmJetH9Xc="},"model":{"$ref":"AAAAAAGMDGuYDvflrwA="},"visible":false,"font":"Arial;13;0","left":4005,"top":173,"width":252.80517578125,"height":13,"text":"+Operation1()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDG2COjrtr80=","_parent":{"$ref":"AAAAAAGMDGmmJetH9Xc="},"model":{"$ref":"AAAAAAGMDG2CMDrPNBI="},"font":"Arial;13;0","left":2749,"top":325,"width":295.44873046875,"height":13,"text":"+insertInvite(pseudo string, idSession string): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHXVMJxOokU=","_parent":{"$ref":"AAAAAAGMDGmmJetH9Xc="},"model":{"$ref":"AAAAAAGMDHXVJZww6qo="},"font":"Arial;13;0","left":2749,"top":340,"width":295.44873046875,"height":13,"text":"+supprimerInvite(id int): bool","horizontalAlignment":0}],"font":"Arial;13;0","left":2744,"top":275,"width":305.44873046875,"height":83},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDGmmJetITpE=","_parent":{"$ref":"AAAAAAGMDGmmJOtA6I8="},"model":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"visible":false,"font":"Arial;13;0","left":1280,"top":-128,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDGmmJetJxXk=","_parent":{"$ref":"AAAAAAGMDGmmJOtA6I8="},"model":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"visible":false,"font":"Arial;13;0","left":1280,"top":-128,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2744,"top":240,"width":304.44873046875,"height":118,"nameCompartment":{"$ref":"AAAAAAGMDGmmJOtBmig="},"attributeCompartment":{"$ref":"AAAAAAGMDGmmJetGGO8="},"operationCompartment":{"$ref":"AAAAAAGMDGmmJetH9Xc="},"receptionCompartment":{"$ref":"AAAAAAGMDGmmJetITpE="},"templateParameterCompartment":{"$ref":"AAAAAAGMDGmmJetJxXk="}},{"_type":"UMLClassView","_id":"AAAAAAGMDGvvd/xdb+8=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDGvvd/xeCRw=","_parent":{"$ref":"AAAAAAGMDGvvd/xdb+8="},"model":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDGvvePxfN8w=","_parent":{"$ref":"AAAAAAGMDGvvd/xeCRw="},"visible":false,"font":"Arial;13;0","left":2224,"top":672,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDGvvePxgKck=","_parent":{"$ref":"AAAAAAGMDGvvd/xeCRw="},"font":"Arial;13;1","left":2653,"top":615,"width":437.03955078125,"height":13,"text":"UtilisateurGateway"},{"_type":"LabelView","_id":"AAAAAAGMDGvvePxhByY=","_parent":{"$ref":"AAAAAAGMDGvvd/xeCRw="},"visible":false,"font":"Arial;13;0","left":2224,"top":672,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDGvvePxim/s=","_parent":{"$ref":"AAAAAAGMDGvvd/xeCRw="},"visible":false,"font":"Arial;13;0","left":2224,"top":672,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2648,"top":608,"width":447.03955078125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDGvvePxfN8w="},"nameLabel":{"$ref":"AAAAAAGMDGvvePxgKck="},"namespaceLabel":{"$ref":"AAAAAAGMDGvvePxhByY="},"propertyLabel":{"$ref":"AAAAAAGMDGvvePxim/s="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDGvvePxj+bs=","_parent":{"$ref":"AAAAAAGMDGvvd/xdb+8="},"model":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"font":"Arial;13;0","left":2648,"top":633,"width":447.03955078125,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDGvvePxkxnY=","_parent":{"$ref":"AAAAAAGMDGvvd/xdb+8="},"model":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDGwNBf71KmY=","_parent":{"$ref":"AAAAAAGMDGvvePxkxnY="},"model":{"$ref":"AAAAAAGMDGwM/f7Xugw="},"font":"Arial;13;0","left":2653,"top":648,"width":437.03955078125,"height":13,"text":"+UtilisateurGateway(con Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGwsYQBCy8g=","_parent":{"$ref":"AAAAAAGMDGvvePxkxnY="},"model":{"$ref":"AAAAAAGMDGwsWgAkBlU="},"font":"Arial;13;0","left":2653,"top":663,"width":437.03955078125,"height":13,"text":"+getFromId(int id): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGxOugGs3Rc=","_parent":{"$ref":"AAAAAAGMDGvvePxkxnY="},"model":{"$ref":"AAAAAAGMDGxOswGOUgc="},"font":"Arial;13;0","left":2653,"top":678,"width":437.03955078125,"height":13,"text":"+getFromEmail(email string): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDGx8fAMWRfA=","_parent":{"$ref":"AAAAAAGMDGvvePxkxnY="},"model":{"$ref":"AAAAAAGMDGx8YwL4bPg="},"visible":false,"font":"Arial;13;0","left":3765,"top":1029,"width":229.642578125,"height":13,"text":"+Operation1()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDG4KeD4Jom4=","_parent":{"$ref":"AAAAAAGMDGvvePxkxnY="},"model":{"$ref":"AAAAAAGMDG4KbD3rsds="},"font":"Arial;13;0","left":2653,"top":693,"width":437.03955078125,"height":13,"text":"+insertUtilisateur(pseudo string, email string, motdepasse string): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHYRiqAKqDs=","_parent":{"$ref":"AAAAAAGMDGvvePxkxnY="},"model":{"$ref":"AAAAAAGMDHYRgZ/sMWo="},"font":"Arial;13;0","left":2653,"top":708,"width":437.03955078125,"height":13,"text":"+supprimerUtilisateur(id int): bool","horizontalAlignment":0}],"font":"Arial;13;0","left":2648,"top":643,"width":447.03955078125,"height":83},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDGvvePxlbtk=","_parent":{"$ref":"AAAAAAGMDGvvd/xdb+8="},"model":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"visible":false,"font":"Arial;13;0","left":1256,"top":320,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDGvvePxmGeg=","_parent":{"$ref":"AAAAAAGMDGvvd/xdb+8="},"model":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"visible":false,"font":"Arial;13;0","left":1256,"top":320,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2648,"top":608,"width":446.03955078125,"height":118,"nameCompartment":{"$ref":"AAAAAAGMDGvvd/xeCRw="},"attributeCompartment":{"$ref":"AAAAAAGMDGvvePxj+bs="},"operationCompartment":{"$ref":"AAAAAAGMDGvvePxkxnY="},"receptionCompartment":{"$ref":"AAAAAAGMDGvvePxlbtk="},"templateParameterCompartment":{"$ref":"AAAAAAGMDGvvePxmGeg="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMDGzQORGt6yk=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGzQORGrhHA="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDGzQORGung0=","_parent":{"$ref":"AAAAAAGMDGzQORGt6yk="},"model":{"$ref":"AAAAAAGMDGzQORGrhHA="},"visible":false,"font":"Arial;13;0","left":2623,"top":689,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGzQORGt6yk="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGzQORGvhtE=","_parent":{"$ref":"AAAAAAGMDGzQORGt6yk="},"model":{"$ref":"AAAAAAGMDGzQORGrhHA="},"visible":null,"font":"Arial;13;0","left":2623,"top":704,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDGzQORGt6yk="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGzQORGwL18=","_parent":{"$ref":"AAAAAAGMDGzQORGt6yk="},"model":{"$ref":"AAAAAAGMDGzQORGrhHA="},"visible":false,"font":"Arial;13;0","left":2624,"top":659,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGzQORGt6yk="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDAzKCK1jetI="},"tail":{"$ref":"AAAAAAGMDGvvd/xdb+8="},"points":"2648:680;2600:680","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDGzQORGung0="},"stereotypeLabel":{"$ref":"AAAAAAGMDGzQORGvhtE="},"propertyLabel":{"$ref":"AAAAAAGMDGzQORGwL18="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDGz53SFrRf4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDGz53SFp5fI="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDGz53iFsxw0=","_parent":{"$ref":"AAAAAAGMDGz53SFrRf4="},"model":{"$ref":"AAAAAAGMDGz53SFp5fI="},"visible":false,"font":"Arial;13;0","left":3273,"top":216,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGz53SFrRf4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGz53iFtlWA=","_parent":{"$ref":"AAAAAAGMDGz53SFrRf4="},"model":{"$ref":"AAAAAAGMDGz53SFp5fI="},"visible":null,"font":"Arial;13;0","left":3258,"top":216,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDGz53SFrRf4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDGz53iFuF0A=","_parent":{"$ref":"AAAAAAGMDGz53SFrRf4="},"model":{"$ref":"AAAAAAGMDGz53SFp5fI="},"visible":false,"font":"Arial;13;0","left":3303,"top":217,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDGz53SFrRf4="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDGmmJOtA6I8="},"points":"3048:331;3288:331;3288:115;372:115","nameLabel":{"$ref":"AAAAAAGMDGz53iFsxw0="},"stereotypeLabel":{"$ref":"AAAAAAGMDGz53iFtlWA="},"propertyLabel":{"$ref":"AAAAAAGMDGz53iFuF0A="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDG0H1iT3wWo=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDG0H1iT1tHc="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDG0H1iT49To=","_parent":{"$ref":"AAAAAAGMDG0H1iT3wWo="},"model":{"$ref":"AAAAAAGMDG0H1iT1tHc="},"visible":false,"font":"Arial;13;0","left":3273,"top":372,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDG0H1iT3wWo="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDG0H1iT5Oa0=","_parent":{"$ref":"AAAAAAGMDG0H1iT3wWo="},"model":{"$ref":"AAAAAAGMDG0H1iT1tHc="},"visible":null,"font":"Arial;13;0","left":3258,"top":372,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDG0H1iT3wWo="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDG0H1iT6mk8=","_parent":{"$ref":"AAAAAAGMDG0H1iT3wWo="},"model":{"$ref":"AAAAAAGMDG0H1iT1tHc="},"visible":false,"font":"Arial;13;0","left":3303,"top":373,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDG0H1iT3wWo="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDGvvd/xdb+8="},"points":"3094:643;3288:643;3288:115;372:115","nameLabel":{"$ref":"AAAAAAGMDG0H1iT49To="},"stereotypeLabel":{"$ref":"AAAAAAGMDG0H1iT5Oa0="},"propertyLabel":{"$ref":"AAAAAAGMDG0H1iT6mk8="}},{"_type":"UMLClassView","_id":"AAAAAAGMDG0t3i+vB8o=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDG0t3i+wuek=","_parent":{"$ref":"AAAAAAGMDG0t3i+vB8o="},"model":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDG0t3i+xrtQ=","_parent":{"$ref":"AAAAAAGMDG0t3i+wuek="},"visible":false,"font":"Arial;13;0","left":608,"top":224,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDG0t3i+yBZw=","_parent":{"$ref":"AAAAAAGMDG0t3i+wuek="},"font":"Arial;13;1","left":1605,"top":167,"width":343.1640625,"height":13,"text":"PartieGateway"},{"_type":"LabelView","_id":"AAAAAAGMDG0t3i+zJyg=","_parent":{"$ref":"AAAAAAGMDG0t3i+wuek="},"visible":false,"font":"Arial;13;0","left":608,"top":224,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDG0t3i+0QMs=","_parent":{"$ref":"AAAAAAGMDG0t3i+wuek="},"visible":false,"font":"Arial;13;0","left":608,"top":224,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1600,"top":160,"width":353.1640625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDG0t3i+xrtQ="},"nameLabel":{"$ref":"AAAAAAGMDG0t3i+yBZw="},"namespaceLabel":{"$ref":"AAAAAAGMDG0t3i+zJyg="},"propertyLabel":{"$ref":"AAAAAAGMDG0t3i+0QMs="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDG0t3i+1j2M=","_parent":{"$ref":"AAAAAAGMDG0t3i+vB8o="},"model":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"font":"Arial;13;0","left":1600,"top":185,"width":353.1640625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDG0t3i+2LD4=","_parent":{"$ref":"AAAAAAGMDG0t3i+vB8o="},"model":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDG7MFUpySlM=","_parent":{"$ref":"AAAAAAGMDG0t3i+2LD4="},"model":{"$ref":"AAAAAAGMDG7MDUpUBmA="},"font":"Arial;13;0","left":1605,"top":200,"width":343.1640625,"height":13,"text":"+PartieGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDG7skUzob5U=","_parent":{"$ref":"AAAAAAGMDG0t3i+2LD4="},"model":{"$ref":"AAAAAAGMDG7sikzKhfc="},"font":"Arial;13;0","left":1605,"top":215,"width":343.1640625,"height":13,"text":"+getFromId(id: int): Partie","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDG+hgFBTGEk=","_parent":{"$ref":"AAAAAAGMDG0t3i+2LD4="},"model":{"$ref":"AAAAAAGMDG+heFA1hZY="},"font":"Arial;13;0","left":1605,"top":230,"width":343.1640625,"height":13,"text":"+getFromCodeInvitation(code: string): Partie","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDG/ozlG95f8=","_parent":{"$ref":"AAAAAAGMDG0t3i+2LD4="},"model":{"$ref":"AAAAAAGMDG/oxlGfEDw="},"font":"Arial;13;0","left":1605,"top":245,"width":343.1640625,"height":13,"text":"+creerPartie(jeu: JeuDB, joueur: Joueur): Partie","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHBG4VRtuDU=","_parent":{"$ref":"AAAAAAGMDG0t3i+2LD4="},"model":{"$ref":"AAAAAAGMDHBG2VRPEnY="},"font":"Arial;13;0","left":1605,"top":260,"width":343.1640625,"height":13,"text":"+rejoindrePartie(codeInvitation: string, joueur: Joueur): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHC50VeHnbQ=","_parent":{"$ref":"AAAAAAGMDG0t3i+2LD4="},"model":{"$ref":"AAAAAAGMDHC5xldpdms="},"font":"Arial;13;0","left":1605,"top":275,"width":343.1640625,"height":13,"text":"+supprimerPartie(id: int): bool","horizontalAlignment":0}],"font":"Arial;13;0","left":1600,"top":195,"width":353.1640625,"height":98},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDG0t3y+3FUY=","_parent":{"$ref":"AAAAAAGMDG0t3i+vB8o="},"model":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"visible":false,"font":"Arial;13;0","left":304,"top":112,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDG0t3y+4cuM=","_parent":{"$ref":"AAAAAAGMDG0t3i+vB8o="},"model":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"visible":false,"font":"Arial;13;0","left":304,"top":112,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1600,"top":160,"width":352.1640625,"height":133,"nameCompartment":{"$ref":"AAAAAAGMDG0t3i+wuek="},"attributeCompartment":{"$ref":"AAAAAAGMDG0t3i+1j2M="},"operationCompartment":{"$ref":"AAAAAAGMDG0t3i+2LD4="},"receptionCompartment":{"$ref":"AAAAAAGMDG0t3y+3FUY="},"templateParameterCompartment":{"$ref":"AAAAAAGMDG0t3y+4cuM="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMDHEj4l+Y7qQ=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDHEj4l+WlbI="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDHEj4l+Z2aw=","_parent":{"$ref":"AAAAAAGMDHEj4l+Y7qQ="},"model":{"$ref":"AAAAAAGMDHEj4l+WlbI="},"visible":false,"font":"Arial;13;0","left":1787,"top":375,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHEj4l+Y7qQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHEj4l+a9g8=","_parent":{"$ref":"AAAAAAGMDHEj4l+Y7qQ="},"model":{"$ref":"AAAAAAGMDHEj4l+WlbI="},"visible":null,"font":"Arial;13;0","left":1802,"top":375,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDHEj4l+Y7qQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHEj4l+bzUk=","_parent":{"$ref":"AAAAAAGMDHEj4l+Y7qQ="},"model":{"$ref":"AAAAAAGMDHEj4l+WlbI="},"visible":false,"font":"Arial;13;0","left":1758,"top":376,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHEj4l+Y7qQ="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDBZil+iIe4Q="},"tail":{"$ref":"AAAAAAGMDG0t3i+vB8o="},"points":"1773:293;1773:472","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDHEj4l+Z2aw="},"stereotypeLabel":{"$ref":"AAAAAAGMDHEj4l+a9g8="},"propertyLabel":{"$ref":"AAAAAAGMDHEj4l+bzUk="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDHE6KWn/cgc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDHE6KWn9Lok="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDHE6KWoAQt8=","_parent":{"$ref":"AAAAAAGMDHE6KWn/cgc="},"model":{"$ref":"AAAAAAGMDHE6KWn9Lok="},"visible":false,"font":"Arial;13;0","left":273,"top":219,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHE6KWn/cgc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHE6KWoBMS8=","_parent":{"$ref":"AAAAAAGMDHE6KWn/cgc="},"model":{"$ref":"AAAAAAGMDHE6KWn9Lok="},"visible":null,"font":"Arial;13;0","left":258,"top":219,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDHE6KWn/cgc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHE6KWoCAFU=","_parent":{"$ref":"AAAAAAGMDHE6KWn/cgc="},"model":{"$ref":"AAAAAAGMDHE6KWn9Lok="},"visible":false,"font":"Arial;13;0","left":302,"top":220,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHE6KWn/cgc="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDG0t3i+vB8o="},"points":"1600:226;288:226;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDHE6KWoAQt8="},"stereotypeLabel":{"$ref":"AAAAAAGMDHE6KWoBMS8="},"propertyLabel":{"$ref":"AAAAAAGMDHE6KWoCAFU="}},{"_type":"UMLClassView","_id":"AAAAAAGMDHFVK3EGWpU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDHFVK3EELXY="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDHFVK3EHIuc=","_parent":{"$ref":"AAAAAAGMDHFVK3EGWpU="},"model":{"$ref":"AAAAAAGMDHFVK3EELXY="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDHFVK3EIF0Y=","_parent":{"$ref":"AAAAAAGMDHFVK3EHIuc="},"visible":false,"font":"Arial;13;0","left":1120,"top":416,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDHFVK3EJX9k=","_parent":{"$ref":"AAAAAAGMDHFVK3EHIuc="},"font":"Arial;13;1","left":1397,"top":255,"width":183.46337890625,"height":13,"text":"JeuGateway"},{"_type":"LabelView","_id":"AAAAAAGMDHFVK3EKEPU=","_parent":{"$ref":"AAAAAAGMDHFVK3EHIuc="},"visible":false,"font":"Arial;13;0","left":1120,"top":416,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDHFVK3EL8Mk=","_parent":{"$ref":"AAAAAAGMDHFVK3EHIuc="},"visible":false,"font":"Arial;13;0","left":1120,"top":416,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1392,"top":248,"width":193.46337890625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDHFVK3EIF0Y="},"nameLabel":{"$ref":"AAAAAAGMDHFVK3EJX9k="},"namespaceLabel":{"$ref":"AAAAAAGMDHFVK3EKEPU="},"propertyLabel":{"$ref":"AAAAAAGMDHFVK3EL8Mk="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDHFVK3EMpqg=","_parent":{"$ref":"AAAAAAGMDHFVK3EGWpU="},"model":{"$ref":"AAAAAAGMDHFVK3EELXY="},"font":"Arial;13;0","left":1392,"top":273,"width":193.46337890625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDHFVK3ENEvE=","_parent":{"$ref":"AAAAAAGMDHFVK3EGWpU="},"model":{"$ref":"AAAAAAGMDHFVK3EELXY="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHFmWXJ1wq4=","_parent":{"$ref":"AAAAAAGMDHFVK3ENEvE="},"model":{"$ref":"AAAAAAGMDHFmTnJXebM="},"font":"Arial;13;0","left":1397,"top":288,"width":183.46337890625,"height":13,"text":"+JeuGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHGEv3PCek0=","_parent":{"$ref":"AAAAAAGMDHFVK3ENEvE="},"model":{"$ref":"AAAAAAGMDHGEtnOkQ84="},"font":"Arial;13;0","left":1397,"top":303,"width":183.46337890625,"height":13,"text":"+getFromId(id: int): JeuDB","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHGq3nUsnTA=","_parent":{"$ref":"AAAAAAGMDHFVK3ENEvE="},"model":{"$ref":"AAAAAAGMDHGq13UOsEs="},"font":"Arial;13;0","left":1397,"top":318,"width":183.46337890625,"height":13,"text":"+getAll(): List","horizontalAlignment":0}],"font":"Arial;13;0","left":1392,"top":283,"width":193.46337890625,"height":53},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDHFVK3EOVWs=","_parent":{"$ref":"AAAAAAGMDHFVK3EGWpU="},"model":{"$ref":"AAAAAAGMDHFVK3EELXY="},"visible":false,"font":"Arial;13;0","left":560,"top":208,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDHFVK3EPctk=","_parent":{"$ref":"AAAAAAGMDHFVK3EGWpU="},"model":{"$ref":"AAAAAAGMDHFVK3EELXY="},"visible":false,"font":"Arial;13;0","left":560,"top":208,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1392,"top":248,"width":192.46337890625,"height":88,"nameCompartment":{"$ref":"AAAAAAGMDHFVK3EHIuc="},"attributeCompartment":{"$ref":"AAAAAAGMDHFVK3EMpqg="},"operationCompartment":{"$ref":"AAAAAAGMDHFVK3ENEvE="},"receptionCompartment":{"$ref":"AAAAAAGMDHFVK3EOVWs="},"templateParameterCompartment":{"$ref":"AAAAAAGMDHFVK3EPctk="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMDHH7uHmiBG8=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDHH7uHmgAlg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDHH7uHmj99c=","_parent":{"$ref":"AAAAAAGMDHH7uHmiBG8="},"model":{"$ref":"AAAAAAGMDHH7uHmgAlg="},"visible":false,"font":"Arial;13;0","left":1500,"top":393,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHH7uHmiBG8="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHH7uHmkAFM=","_parent":{"$ref":"AAAAAAGMDHH7uHmiBG8="},"model":{"$ref":"AAAAAAGMDHH7uHmgAlg="},"visible":null,"font":"Arial;13;0","left":1515,"top":393,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDHH7uHmiBG8="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHH7uHmlXRo=","_parent":{"$ref":"AAAAAAGMDHH7uHmiBG8="},"model":{"$ref":"AAAAAAGMDHH7uHmgAlg="},"visible":false,"font":"Arial;13;0","left":1471,"top":394,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHH7uHmiBG8="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDBVhtuKXEZ0="},"tail":{"$ref":"AAAAAAGMDHFVK3EGWpU="},"points":"1486:336;1486:464","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDHH7uHmj99c="},"stereotypeLabel":{"$ref":"AAAAAAGMDHH7uHmkAFM="},"propertyLabel":{"$ref":"AAAAAAGMDHH7uHmlXRo="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDHIaHIIIwn4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDHIaHIIG4xw="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDHIaHIIJM20=","_parent":{"$ref":"AAAAAAGMDHIaHIIIwn4="},"model":{"$ref":"AAAAAAGMDHIaHIIG4xw="},"visible":false,"font":"Arial;13;0","left":273,"top":253,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHIaHIIIwn4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHIaHIIKxaU=","_parent":{"$ref":"AAAAAAGMDHIaHIIIwn4="},"model":{"$ref":"AAAAAAGMDHIaHIIG4xw="},"visible":null,"font":"Arial;13;0","left":258,"top":253,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDHIaHIIIwn4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHIaHIILmdE=","_parent":{"$ref":"AAAAAAGMDHIaHIIIwn4="},"model":{"$ref":"AAAAAAGMDHIaHIIG4xw="},"visible":false,"font":"Arial;13;0","left":303,"top":254,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHIaHIIIwn4="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDHFVK3EGWpU="},"points":"1392:260;288:260;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDHIaHIIJM20="},"stereotypeLabel":{"$ref":"AAAAAAGMDHIaHIIKxaU="},"propertyLabel":{"$ref":"AAAAAAGMDHIaHIILmdE="}},{"_type":"UMLClassView","_id":"AAAAAAGMDHI224Ty8RM=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDHI224Tw0p0="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMDHI224TzPmw=","_parent":{"$ref":"AAAAAAGMDHI224Ty8RM="},"model":{"$ref":"AAAAAAGMDHI224Tw0p0="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMDHI224T0vC4=","_parent":{"$ref":"AAAAAAGMDHI224TzPmw="},"visible":false,"font":"Arial;13;0","left":160,"top":2016,"height":13},{"_type":"LabelView","_id":"AAAAAAGMDHI224T1xhQ=","_parent":{"$ref":"AAAAAAGMDHI224TzPmw="},"font":"Arial;13;1","left":1229,"top":1495,"width":874.48828125,"height":13,"text":"ScientifiqueGateway"},{"_type":"LabelView","_id":"AAAAAAGMDHI224T2jKI=","_parent":{"$ref":"AAAAAAGMDHI224TzPmw="},"visible":false,"font":"Arial;13;0","left":160,"top":2016,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMDHI224T3t/g=","_parent":{"$ref":"AAAAAAGMDHI224TzPmw="},"visible":false,"font":"Arial;13;0","left":160,"top":2016,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1224,"top":1488,"width":884.48828125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMDHI224T0vC4="},"nameLabel":{"$ref":"AAAAAAGMDHI224T1xhQ="},"namespaceLabel":{"$ref":"AAAAAAGMDHI224T2jKI="},"propertyLabel":{"$ref":"AAAAAAGMDHI224T3t/g="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMDHI224T4LK0=","_parent":{"$ref":"AAAAAAGMDHI224Ty8RM="},"model":{"$ref":"AAAAAAGMDHI224Tw0p0="},"font":"Arial;13;0","left":1224,"top":1513,"width":884.48828125,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMDHI224T5EXA=","_parent":{"$ref":"AAAAAAGMDHI224Ty8RM="},"model":{"$ref":"AAAAAAGMDHI224Tw0p0="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMDHJzm4ZhHFU=","_parent":{"$ref":"AAAAAAGMDHI224T5EXA="},"model":{"$ref":"AAAAAAGMDHJzkYZDlH0="},"font":"Arial;13;0","left":1229,"top":1528,"width":874.48828125,"height":13,"text":"+ScientifiqueGateway(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHK1bIeuspA=","_parent":{"$ref":"AAAAAAGMDHI224T5EXA="},"model":{"$ref":"AAAAAAGMDHK1XIeQHYQ="},"font":"Arial;13;0","left":1229,"top":1543,"width":874.48828125,"height":13,"text":"+getFromId(id: int): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHMMA4kYFHk=","_parent":{"$ref":"AAAAAAGMDHI224T5EXA="},"model":{"$ref":"AAAAAAGMDHML/Ij6luU="},"font":"Arial;13;0","left":1229,"top":1558,"width":874.48828125,"height":13,"text":"+getRandomFromDifficulte(difficulte: Difficulte): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHN8Q4qCtLA=","_parent":{"$ref":"AAAAAAGMDHI224T5EXA="},"model":{"$ref":"AAAAAAGMDHN8O4pkvvg="},"font":"Arial;13;0","left":1229,"top":1573,"width":874.48828125,"height":13,"text":"+getRandom(): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHO92Y1/SgU=","_parent":{"$ref":"AAAAAAGMDHI224T5EXA="},"model":{"$ref":"AAAAAAGMDHO9z41hUGg="},"font":"Arial;13;0","left":1229,"top":1588,"width":874.48828125,"height":13,"text":"+deleteScientifique(id: int): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMDHP2S47pmSo=","_parent":{"$ref":"AAAAAAGMDHI224T5EXA="},"model":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"font":"Arial;13;0","left":1229,"top":1603,"width":874.48828125,"height":13,"text":"+insertScientifique(nom: string, prenom: string, dateNaissance: date, descriptif: string, thematique: Thematique, sexe: Sexe, difficulte: Difficulte): bool","horizontalAlignment":0}],"font":"Arial;13;0","left":1224,"top":1523,"width":884.48828125,"height":98},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMDHI224T6L20=","_parent":{"$ref":"AAAAAAGMDHI224Ty8RM="},"model":{"$ref":"AAAAAAGMDHI224Tw0p0="},"visible":false,"font":"Arial;13;0","left":80,"top":1008,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMDHI224T7hDw=","_parent":{"$ref":"AAAAAAGMDHI224Ty8RM="},"model":{"$ref":"AAAAAAGMDHI224Tw0p0="},"visible":false,"font":"Arial;13;0","left":80,"top":1008,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1224,"top":1488,"width":883.48828125,"height":133,"nameCompartment":{"$ref":"AAAAAAGMDHI224TzPmw="},"attributeCompartment":{"$ref":"AAAAAAGMDHI224T4LK0="},"operationCompartment":{"$ref":"AAAAAAGMDHI224T5EXA="},"receptionCompartment":{"$ref":"AAAAAAGMDHI224T6L20="},"templateParameterCompartment":{"$ref":"AAAAAAGMDHI224T7hDw="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMDHau67150PY=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMDHau6713bdw="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMDHau6716Ocw=","_parent":{"$ref":"AAAAAAGMDHau67150PY="},"model":{"$ref":"AAAAAAGMDHau6713bdw="},"visible":false,"font":"Arial;13;0","left":1071,"top":1777,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHau67150PY="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHau6717+QQ=","_parent":{"$ref":"AAAAAAGMDHau67150PY="},"model":{"$ref":"AAAAAAGMDHau6713bdw="},"visible":null,"font":"Arial;13;0","left":1071,"top":1792,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMDHau67150PY="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMDHau6718Cxw=","_parent":{"$ref":"AAAAAAGMDHau67150PY="},"model":{"$ref":"AAAAAAGMDHau6713bdw="},"visible":false,"font":"Arial;13;0","left":1072,"top":1747,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMDHau67150PY="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"tail":{"$ref":"AAAAAAGMDHI224Ty8RM="},"points":"1856:1621;1856:1768;288:1768;288:151","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMDHau6716Ocw="},"stereotypeLabel":{"$ref":"AAAAAAGMDHau6717+QQ="},"propertyLabel":{"$ref":"AAAAAAGMDHau6718Cxw="}},{"_type":"UMLClassView","_id":"AAAAAAGMEdWBD1zmSGw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEdWBD1znJuo=","_parent":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"model":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEdWBD1zog88=","_parent":{"$ref":"AAAAAAGMEdWBD1znJuo="},"visible":false,"font":"Arial;13;0","left":64,"top":140,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEdWBD1zpy6w=","_parent":{"$ref":"AAAAAAGMEdWBD1znJuo="},"font":"Arial;13;1","left":2541,"top":1415,"width":210.89794921875,"height":13,"text":"AdminController"},{"_type":"LabelView","_id":"AAAAAAGMEdWBD1zqzzI=","_parent":{"$ref":"AAAAAAGMEdWBD1znJuo="},"visible":false,"font":"Arial;13;0","left":64,"top":140,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEdWBD1zrjbI=","_parent":{"$ref":"AAAAAAGMEdWBD1znJuo="},"visible":false,"font":"Arial;13;0","left":2525,"top":1534,"width":103.552734375,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2536,"top":1408,"width":220.89794921875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEdWBD1zog88="},"nameLabel":{"$ref":"AAAAAAGMEdWBD1zpy6w="},"namespaceLabel":{"$ref":"AAAAAAGMEdWBD1zqzzI="},"propertyLabel":{"$ref":"AAAAAAGMEdWBD1zrjbI="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEdWBD1zsI24=","_parent":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"model":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"font":"Arial;13;0","left":2536,"top":1433,"width":220.89794921875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEdWBD1ztCcI=","_parent":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"model":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEk1kTetsbFo=","_parent":{"$ref":"AAAAAAGMEdWBD1ztCcI="},"model":{"$ref":"AAAAAAGMEk1kOutO8os="},"font":"Arial;13;0","left":2541,"top":1448,"width":210.89794921875,"height":13,"text":"+AdminController(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEk7IWPdCqwM=","_parent":{"$ref":"AAAAAAGMEdWBD1ztCcI="},"model":{"$ref":"AAAAAAGMEk7IR/ck51o="},"font":"Arial;13;0","left":2541,"top":1463,"width":210.89794921875,"height":13,"text":"+defaultAction(params: array)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEk8XVfpjjTs=","_parent":{"$ref":"AAAAAAGMEdWBD1ztCcI="},"model":{"$ref":"AAAAAAGMEk8XRPpFqZE="},"font":"Arial;13;0","left":2541,"top":1478,"width":210.89794921875,"height":13,"text":"+notLogged(params: array)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEk9Kev2EYUU=","_parent":{"$ref":"AAAAAAGMEdWBD1ztCcI="},"model":{"$ref":"AAAAAAGMEk9Kbf1ma/M="},"font":"Arial;13;0","left":2541,"top":1493,"width":210.89794921875,"height":13,"text":"+stats(params: array)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEk9VqP/cQtg=","_parent":{"$ref":"AAAAAAGMEdWBD1ztCcI="},"model":{"$ref":"AAAAAAGMEk9Vnf++1x0="},"font":"Arial;13;0","left":2541,"top":1508,"width":210.89794921875,"height":13,"text":"+ajouterScientifiques(params: array)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEk9ndQUvtkE=","_parent":{"$ref":"AAAAAAGMEdWBD1ztCcI="},"model":{"$ref":"AAAAAAGMEk9nZAURlWk="},"font":"Arial;13;0","left":2541,"top":1523,"width":210.89794921875,"height":13,"text":"+listeScientifiques(params: array)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMElAG9Ax2TB4=","_parent":{"$ref":"AAAAAAGMEdWBD1ztCcI="},"model":{"$ref":"AAAAAAGMElAG4gxYetQ="},"font":"Arial;13;0","left":2541,"top":1538,"width":210.89794921875,"height":13,"text":"-verifierDonnees()","horizontalAlignment":0}],"font":"Arial;13;0","left":2536,"top":1443,"width":220.89794921875,"height":113},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEdWBD1zunvk=","_parent":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"model":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"visible":false,"font":"Arial;13;0","left":144,"top":-12,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEdWBD1zvYMs=","_parent":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"model":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"visible":false,"font":"Arial;13;0","left":144,"top":-12,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2536,"top":1408,"width":219.89794921875,"height":148,"nameCompartment":{"$ref":"AAAAAAGMEdWBD1znJuo="},"attributeCompartment":{"$ref":"AAAAAAGMEdWBD1zsI24="},"operationCompartment":{"$ref":"AAAAAAGMEdWBD1ztCcI="},"receptionCompartment":{"$ref":"AAAAAAGMEdWBD1zunvk="},"templateParameterCompartment":{"$ref":"AAAAAAGMEdWBD1zvYMs="}},{"_type":"UMLClassView","_id":"AAAAAAGMEddVzYAcRLs=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEdc1q329gIA="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEddVzYAdr6I=","_parent":{"$ref":"AAAAAAGMEddVzYAcRLs="},"model":{"$ref":"AAAAAAGMEdc1q329gIA="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEddVzYAeJwk=","_parent":{"$ref":"AAAAAAGMEddVzYAdr6I="},"visible":false,"font":"Arial;13;0","left":170,"top":-456,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEddVzYAfQjQ=","_parent":{"$ref":"AAAAAAGMEddVzYAdr6I="},"font":"Arial;13;1","left":2813,"top":1231,"width":261.79345703125,"height":13,"text":"FrontController"},{"_type":"LabelView","_id":"AAAAAAGMEddVzYAglYQ=","_parent":{"$ref":"AAAAAAGMEddVzYAdr6I="},"visible":false,"font":"Arial;13;0","left":170,"top":-456,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEddVzYAhnxA=","_parent":{"$ref":"AAAAAAGMEddVzYAdr6I="},"visible":false,"font":"Arial;13;0","left":2789,"top":1246,"width":207.552734375,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2808,"top":1224,"width":271.79345703125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEddVzYAeJwk="},"nameLabel":{"$ref":"AAAAAAGMEddVzYAfQjQ="},"namespaceLabel":{"$ref":"AAAAAAGMEddVzYAglYQ="},"propertyLabel":{"$ref":"AAAAAAGMEddVzYAhnxA="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEddVzYAi6Fw=","_parent":{"$ref":"AAAAAAGMEddVzYAcRLs="},"model":{"$ref":"AAAAAAGMEdc1q329gIA="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMEgF/p6gMROo=","_parent":{"$ref":"AAAAAAGMEddVzYAi6Fw="},"model":{"$ref":"AAAAAAGMEgF/lqfukfI="},"visible":false,"font":"Arial;13;0","left":2813,"top":1254,"width":261.79345703125,"height":13,"text":"-con: Connection","horizontalAlignment":0}],"font":"Arial;13;0","left":2808,"top":1249,"width":271.79345703125,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEddVzYAjvpU=","_parent":{"$ref":"AAAAAAGMEddVzYAcRLs="},"model":{"$ref":"AAAAAAGMEdc1q329gIA="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEihVtCG+oB8=","_parent":{"$ref":"AAAAAAGMEddVzYAjvpU="},"model":{"$ref":"AAAAAAGMEihVoCGgdIk="},"font":"Arial;13;0","left":2813,"top":1264,"width":261.79345703125,"height":13,"text":"+FrontController()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEgL/ebosHuw=","_parent":{"$ref":"AAAAAAGMEddVzYAjvpU="},"model":{"$ref":"AAAAAAGMEgL/a7oOVdg="},"font":"Arial;13;0","left":2813,"top":1279,"width":261.79345703125,"height":13,"text":"-callController(controller: string, match: array)","horizontalAlignment":0}],"font":"Arial;13;0","left":2808,"top":1259,"width":271.79345703125,"height":38},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEddVzYAkwDk=","_parent":{"$ref":"AAAAAAGMEddVzYAcRLs="},"model":{"$ref":"AAAAAAGMEdc1q329gIA="},"visible":false,"font":"Arial;13;0","left":2840,"top":1157,"width":217.552734375,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEddVzYAlp4U=","_parent":{"$ref":"AAAAAAGMEddVzYAcRLs="},"model":{"$ref":"AAAAAAGMEdc1q329gIA="},"visible":false,"font":"Arial;13;0","left":261,"top":-404,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2808,"top":1224,"width":270.79345703125,"height":86,"nameCompartment":{"$ref":"AAAAAAGMEddVzYAdr6I="},"attributeCompartment":{"$ref":"AAAAAAGMEddVzYAi6Fw="},"operationCompartment":{"$ref":"AAAAAAGMEddVzYAjvpU="},"receptionCompartment":{"$ref":"AAAAAAGMEddVzYAkwDk="},"templateParameterCompartment":{"$ref":"AAAAAAGMEddVzYAlp4U="}},{"_type":"UMLClassView","_id":"AAAAAAGMEddZT4Dl/Kc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEdc3xH338V4="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEddZT4Dm5f8=","_parent":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"model":{"$ref":"AAAAAAGMEdc3xH338V4="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEddZT4DnZDc=","_parent":{"$ref":"AAAAAAGMEddZT4Dm5f8="},"visible":false,"font":"Arial;13;0","left":-210,"top":-376,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEddZT4Dodts=","_parent":{"$ref":"AAAAAAGMEddZT4Dm5f8="},"font":"Arial;13;1","left":3133,"top":1407,"width":198.6279296875,"height":13,"text":"InviteController"},{"_type":"LabelView","_id":"AAAAAAGMEddZT4DpbqY=","_parent":{"$ref":"AAAAAAGMEddZT4Dm5f8="},"visible":false,"font":"Arial;13;0","left":-210,"top":-376,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEddZT4DqWBQ=","_parent":{"$ref":"AAAAAAGMEddZT4Dm5f8="},"visible":false,"font":"Arial;13;0","left":-210,"top":-376,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3128,"top":1400,"width":208.6279296875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEddZT4DnZDc="},"nameLabel":{"$ref":"AAAAAAGMEddZT4Dodts="},"namespaceLabel":{"$ref":"AAAAAAGMEddZT4DpbqY="},"propertyLabel":{"$ref":"AAAAAAGMEddZT4DqWBQ="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEddZT4DrsmM=","_parent":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"model":{"$ref":"AAAAAAGMEdc3xH338V4="},"font":"Arial;13;0","left":3128,"top":1425,"width":208.6279296875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEddZT4Ds9GY=","_parent":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"model":{"$ref":"AAAAAAGMEdc3xH338V4="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEk2dSe9T8Po=","_parent":{"$ref":"AAAAAAGMEddZT4Ds9GY="},"model":{"$ref":"AAAAAAGMEk2dOu81ioU="},"font":"Arial;13;0","left":3133,"top":1440,"width":198.6279296875,"height":13,"text":"+InviteController(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMcT8XwxtDWQ=","_parent":{"$ref":"AAAAAAGMEddZT4Ds9GY="},"model":{"$ref":"AAAAAAGMMcT8SAxPDsI="},"font":"Arial;13;0","left":3133,"top":1455,"width":198.6279296875,"height":13,"text":"+creerUnePartie()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMcVBqA9KK5E=","_parent":{"$ref":"AAAAAAGMEddZT4Ds9GY="},"model":{"$ref":"AAAAAAGMMcVBlQ8slJM="},"font":"Arial;13;0","left":3133,"top":1470,"width":198.6279296875,"height":13,"text":"+rejoindreUnePartie()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMcVsuxInE70=","_parent":{"$ref":"AAAAAAGMEddZT4Ds9GY="},"model":{"$ref":"AAAAAAGMMcVsrRIJCyY="},"font":"Arial;13;0","left":3133,"top":1485,"width":198.6279296875,"height":13,"text":"+choisirPseudo()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMciKDCj6JEg=","_parent":{"$ref":"AAAAAAGMEddZT4Ds9GY="},"model":{"$ref":"AAAAAAGMMciJ+CjcegI="},"font":"Arial;13;0","left":3133,"top":1500,"width":198.6279296875,"height":13,"text":"+creerUnCompte()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMcjvFS3H6l8=","_parent":{"$ref":"AAAAAAGMEddZT4Ds9GY="},"model":{"$ref":"AAAAAAGMMcju/S2puVk="},"font":"Arial;13;0","left":3133,"top":1515,"width":198.6279296875,"height":13,"text":"+connexion()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMclGeDu6Gjs=","_parent":{"$ref":"AAAAAAGMEddZT4Ds9GY="},"model":{"$ref":"AAAAAAGMMclGZTuc/gA="},"font":"Arial;13;0","left":3133,"top":1530,"width":198.6279296875,"height":13,"text":"+jouer()","horizontalAlignment":0}],"font":"Arial;13;0","left":3128,"top":1435,"width":208.6279296875,"height":113},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEddZT4DtR8U=","_parent":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"model":{"$ref":"AAAAAAGMEdc3xH338V4="},"visible":false,"font":"Arial;13;0","left":-121,"top":-36,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEddZT4DuJLg=","_parent":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"model":{"$ref":"AAAAAAGMEdc3xH338V4="},"visible":false,"font":"Arial;13;0","left":-121,"top":-36,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3128,"top":1400,"width":207.6279296875,"height":148,"nameCompartment":{"$ref":"AAAAAAGMEddZT4Dm5f8="},"attributeCompartment":{"$ref":"AAAAAAGMEddZT4DrsmM="},"operationCompartment":{"$ref":"AAAAAAGMEddZT4Ds9GY="},"receptionCompartment":{"$ref":"AAAAAAGMEddZT4DtR8U="},"templateParameterCompartment":{"$ref":"AAAAAAGMEddZT4DuJLg="}},{"_type":"UMLClassView","_id":"AAAAAAGMEddddYGuAAM=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEdc5334xt+U="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEddddYGv63c=","_parent":{"$ref":"AAAAAAGMEddddYGuAAM="},"model":{"$ref":"AAAAAAGMEdc5334xt+U="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEddddYGwo8o=","_parent":{"$ref":"AAAAAAGMEddddYGv63c="},"visible":false,"font":"Arial;13;0","left":426,"top":-174,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEddddYGxENM=","_parent":{"$ref":"AAAAAAGMEddddYGv63c="},"font":"Arial;13;1","left":3261,"top":1615,"width":202.95703125,"height":13,"text":"UserController"},{"_type":"LabelView","_id":"AAAAAAGMEddddYGyc+M=","_parent":{"$ref":"AAAAAAGMEddddYGv63c="},"visible":false,"font":"Arial;13;0","left":426,"top":-174,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEddddYGzdOI=","_parent":{"$ref":"AAAAAAGMEddddYGv63c="},"visible":false,"font":"Arial;13;0","left":426,"top":-174,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3256,"top":1608,"width":212.95703125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEddddYGwo8o="},"nameLabel":{"$ref":"AAAAAAGMEddddYGxENM="},"namespaceLabel":{"$ref":"AAAAAAGMEddddYGyc+M="},"propertyLabel":{"$ref":"AAAAAAGMEddddYGzdOI="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEddddYG0drQ=","_parent":{"$ref":"AAAAAAGMEddddYGuAAM="},"model":{"$ref":"AAAAAAGMEdc5334xt+U="},"font":"Arial;13;0","left":3256,"top":1633,"width":212.95703125,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEddddYG1FpA=","_parent":{"$ref":"AAAAAAGMEddddYGuAAM="},"model":{"$ref":"AAAAAAGMEdc5334xt+U="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEk4aBvOdNRc=","_parent":{"$ref":"AAAAAAGMEddddYG1FpA="},"model":{"$ref":"AAAAAAGMEk4Z9PN/cJA="},"font":"Arial;13;0","left":3261,"top":1648,"width":202.95703125,"height":13,"text":"+UserController(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMcXxXxXrhRU=","_parent":{"$ref":"AAAAAAGMEddddYG1FpA="},"model":{"$ref":"AAAAAAGMMcXxRxXNsAo="},"font":"Arial;13;0","left":3261,"top":1663,"width":202.95703125,"height":13,"text":"+listerLesScientifiquesDecouvert()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMcYwiBddSO0=","_parent":{"$ref":"AAAAAAGMEddddYG1FpA="},"model":{"$ref":"AAAAAAGMMcYwdRc/b/8="},"visible":false,"font":"Arial;13;0","left":3261,"top":1734,"width":202.95703125,"height":13,"text":"+Connexion()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMcZ2hh2UYjg=","_parent":{"$ref":"AAAAAAGMEddddYG1FpA="},"model":{"$ref":"AAAAAAGMMcZ2ch12YIs="},"font":"Arial;13;0","left":3261,"top":1678,"width":202.95703125,"height":13,"text":"+deconnexion()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMMcaqtCF5jiM=","_parent":{"$ref":"AAAAAAGMEddddYG1FpA="},"model":{"$ref":"AAAAAAGMMcaqpSFbzV0="},"font":"Arial;13;0","left":3261,"top":1693,"width":202.95703125,"height":13,"text":"+afficherDetailScientifique()","horizontalAlignment":0}],"font":"Arial;13;0","left":3256,"top":1643,"width":212.95703125,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEddddYG2yYg=","_parent":{"$ref":"AAAAAAGMEddddYGuAAM="},"model":{"$ref":"AAAAAAGMEdc5334xt+U="},"visible":false,"font":"Arial;13;0","left":397,"top":-279,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEddddYG32p8=","_parent":{"$ref":"AAAAAAGMEddddYGuAAM="},"model":{"$ref":"AAAAAAGMEdc5334xt+U="},"visible":false,"font":"Arial;13;0","left":397,"top":-279,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3256,"top":1608,"width":211.95703125,"height":118,"nameCompartment":{"$ref":"AAAAAAGMEddddYGv63c="},"attributeCompartment":{"$ref":"AAAAAAGMEddddYG0drQ="},"operationCompartment":{"$ref":"AAAAAAGMEddddYG1FpA="},"receptionCompartment":{"$ref":"AAAAAAGMEddddYG2yYg="},"templateParameterCompartment":{"$ref":"AAAAAAGMEddddYG32p8="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEgBBKnYgtuE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEgBBKnYeFjA="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEgBBKnYhugI=","_parent":{"$ref":"AAAAAAGMEgBBKnYgtuE="},"model":{"$ref":"AAAAAAGMEgBBKnYeFjA="},"visible":false,"font":"Arial;13;0","left":2852,"top":1419,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEgBBKnYgtuE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEgBBKnYiXco=","_parent":{"$ref":"AAAAAAGMEgBBKnYgtuE="},"model":{"$ref":"AAAAAAGMEgBBKnYeFjA="},"visible":null,"font":"Arial;13;0","left":2852,"top":1434,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEgBBKnYgtuE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEgBBKnYjlP0=","_parent":{"$ref":"AAAAAAGMEgBBKnYgtuE="},"model":{"$ref":"AAAAAAGMEgBBKnYeFjA="},"visible":false,"font":"Arial;13;0","left":2853,"top":1389,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEgBBKnYgtuE="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"tail":{"$ref":"AAAAAAGMEddVzYAcRLs="},"points":"2853:1310;2853:1410;2756:1410","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEgBBKnYhugI="},"stereotypeLabel":{"$ref":"AAAAAAGMEgBBKnYiXco="},"propertyLabel":{"$ref":"AAAAAAGMEgBBKnYjlP0="}},{"_type":"UMLClassView","_id":"AAAAAAGMEhNgT1pOa9o=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEhNgT1pP8i8=","_parent":{"$ref":"AAAAAAGMEhNgT1pOa9o="},"model":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEhNgT1pQHs4=","_parent":{"$ref":"AAAAAAGMEhNgT1pP8i8="},"visible":false,"font":"Arial;13;0","left":-1452,"top":-404,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEhNgT1pRPIs=","_parent":{"$ref":"AAAAAAGMEhNgT1pP8i8="},"font":"Arial;13;1","left":2821,"top":1631,"width":255,"height":13,"text":"Validation"},{"_type":"LabelView","_id":"AAAAAAGMEhNgT1pSORI=","_parent":{"$ref":"AAAAAAGMEhNgT1pP8i8="},"visible":false,"font":"Arial;13;0","left":-1452,"top":-404,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEhNgT1pTC4s=","_parent":{"$ref":"AAAAAAGMEhNgT1pP8i8="},"visible":false,"font":"Arial;13;0","left":-1452,"top":-404,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2816,"top":1624,"width":265,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEhNgT1pQHs4="},"nameLabel":{"$ref":"AAAAAAGMEhNgT1pRPIs="},"namespaceLabel":{"$ref":"AAAAAAGMEhNgT1pSORI="},"propertyLabel":{"$ref":"AAAAAAGMEhNgT1pTC4s="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEhNgT1pU5H8=","_parent":{"$ref":"AAAAAAGMEhNgT1pOa9o="},"model":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"font":"Arial;13;0","left":2816,"top":1649,"width":265,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEhNgT1pVGco=","_parent":{"$ref":"AAAAAAGMEhNgT1pOa9o="},"model":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEhPEcFzKPUc=","_parent":{"$ref":"AAAAAAGMEhNgT1pVGco="},"model":{"$ref":"AAAAAAGMEhPEX1ysHjI="},"font":"Arial;13;0","left":2821,"top":1664,"width":255,"height":13,"underline":true,"text":"+valAlpha(str: string)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEhRMgWLxWZU=","_parent":{"$ref":"AAAAAAGMEhNgT1pVGco="},"model":{"$ref":"AAAAAAGMEhRMcWLT5dY="},"font":"Arial;13;0","left":2821,"top":1679,"width":255,"height":13,"underline":true,"text":"+valAlphaNum(str: string)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEhRPR2Pqris=","_parent":{"$ref":"AAAAAAGMEhNgT1pVGco="},"model":{"$ref":"AAAAAAGMEhRPOmPMPuk="},"font":"Arial;13;0","left":2821,"top":1694,"width":255,"height":13,"underline":true,"text":"+valInteger(val: int, min: int, max: int)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEhRRsGTjKc0=","_parent":{"$ref":"AAAAAAGMEhNgT1pVGco="},"model":{"$ref":"AAAAAAGMEhRRo2TFB1w="},"font":"Arial;13;0","left":2821,"top":1709,"width":255,"height":13,"underline":true,"text":"+valFloat(val: float, min: float, max: float)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEhRUzWXck/w=","_parent":{"$ref":"AAAAAAGMEhNgT1pVGco="},"model":{"$ref":"AAAAAAGMEhRUwGW+tq0="},"font":"Arial;13;0","left":2821,"top":1724,"width":255,"height":13,"underline":true,"text":"+valEmail(email: string)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEiXrcAKyZgo=","_parent":{"$ref":"AAAAAAGMEhNgT1pVGco="},"model":{"$ref":"AAAAAAGMEiXrXwKUONo="},"font":"Arial;13;0","left":2821,"top":1739,"width":255,"height":13,"underline":true,"text":"+valRole(id: int)","horizontalAlignment":0}],"font":"Arial;13;0","left":2816,"top":1659,"width":265,"height":98},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEhNgT1pWaic=","_parent":{"$ref":"AAAAAAGMEhNgT1pOa9o="},"model":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"visible":false,"font":"Arial;13;0","left":-726,"top":-202,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEhNgT1pXogU=","_parent":{"$ref":"AAAAAAGMEhNgT1pOa9o="},"model":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"visible":false,"font":"Arial;13;0","left":-726,"top":-202,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2816,"top":1624,"width":264,"height":133,"nameCompartment":{"$ref":"AAAAAAGMEhNgT1pP8i8="},"attributeCompartment":{"$ref":"AAAAAAGMEhNgT1pU5H8="},"operationCompartment":{"$ref":"AAAAAAGMEhNgT1pVGco="},"receptionCompartment":{"$ref":"AAAAAAGMEhNgT1pWaic="},"templateParameterCompartment":{"$ref":"AAAAAAGMEhNgT1pXogU="}},{"_type":"UMLClassView","_id":"AAAAAAGMEh+vw6BUxGI=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEh+vw6BVO1c=","_parent":{"$ref":"AAAAAAGMEh+vw6BUxGI="},"model":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEh+vw6BWnh4=","_parent":{"$ref":"AAAAAAGMEh+vw6BVO1c="},"visible":false,"font":"Arial;13;0","left":-294,"top":-1056,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEh+vw6BX328=","_parent":{"$ref":"AAAAAAGMEh+vw6BVO1c="},"font":"Arial;13;1","left":2277,"top":831,"width":234.72705078125,"height":13,"text":"Role"},{"_type":"LabelView","_id":"AAAAAAGMEh+vw6BY2RY=","_parent":{"$ref":"AAAAAAGMEh+vw6BVO1c="},"visible":false,"font":"Arial;13;0","left":-294,"top":-1056,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEh+vw6BZjUs=","_parent":{"$ref":"AAAAAAGMEh+vw6BVO1c="},"visible":false,"font":"Arial;13;0","left":-294,"top":-1056,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2272,"top":824,"width":244.72705078125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEh+vw6BWnh4="},"nameLabel":{"$ref":"AAAAAAGMEh+vw6BX328="},"namespaceLabel":{"$ref":"AAAAAAGMEh+vw6BY2RY="},"propertyLabel":{"$ref":"AAAAAAGMEh+vw6BZjUs="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEh+vw6Ba32I=","_parent":{"$ref":"AAAAAAGMEh+vw6BUxGI="},"model":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMEiAQva7PMj4=","_parent":{"$ref":"AAAAAAGMEh+vw6Ba32I="},"model":{"$ref":"AAAAAAGMEiAQqa6xlHQ="},"font":"Arial;13;0","left":2277,"top":854,"width":234.72705078125,"height":13,"text":"-id: int","horizontalAlignment":0}],"font":"Arial;13;0","left":2272,"top":849,"width":244.72705078125,"height":23},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEh+vw6Bb4lI=","_parent":{"$ref":"AAAAAAGMEh+vw6BUxGI="},"model":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEh+v0KCVx94=","_parent":{"$ref":"AAAAAAGMEh+vw6Bb4lI="},"model":{"$ref":"AAAAAAGMEh+oSqAaFbs="},"visible":false,"font":"Arial;13;0","left":2245,"top":456,"width":234.72705078125,"height":13,"underline":true,"text":"+valAlpha(str: string)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEh+v0KCY83E=","_parent":{"$ref":"AAAAAAGMEh+vw6Bb4lI="},"model":{"$ref":"AAAAAAGMEh+oSqAcD7g="},"visible":false,"font":"Arial;13;0","left":2245,"top":458,"width":234.72705078125,"height":13,"underline":true,"text":"+valAlphaNum(str: string)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEh+v0KCbiY4=","_parent":{"$ref":"AAAAAAGMEh+vw6Bb4lI="},"model":{"$ref":"AAAAAAGMEh+oSqAevp0="},"visible":false,"font":"Arial;13;0","left":2245,"top":473,"width":234.72705078125,"height":13,"underline":true,"text":"+valInteger(val: int, min: int, max: int)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEh+v0aCeud4=","_parent":{"$ref":"AAAAAAGMEh+vw6Bb4lI="},"model":{"$ref":"AAAAAAGMEh+oSqAiuPo="},"visible":false,"font":"Arial;13;0","left":2245,"top":488,"width":234.72705078125,"height":13,"underline":true,"text":"+valFloat(val: float, min: float, max: float)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEh+v0aChpPQ=","_parent":{"$ref":"AAAAAAGMEh+vw6Bb4lI="},"model":{"$ref":"AAAAAAGMEh+oS6AmVtI="},"visible":false,"font":"Arial;13;0","left":2245,"top":503,"width":234.72705078125,"height":13,"underline":true,"text":"+valEmail(email: string)","horizontalAlignment":0}],"font":"Arial;13;0","left":2272,"top":872,"width":244.72705078125,"height":10},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEh+vw6BcdnA=","_parent":{"$ref":"AAAAAAGMEh+vw6BUxGI="},"model":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"visible":false,"font":"Arial;13;0","left":-355,"top":-720,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEh+vw6BdcUA=","_parent":{"$ref":"AAAAAAGMEh+vw6BUxGI="},"model":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"visible":false,"font":"Arial;13;0","left":-355,"top":-720,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2272,"top":824,"width":243.72705078125,"height":58,"nameCompartment":{"$ref":"AAAAAAGMEh+vw6BVO1c="},"attributeCompartment":{"$ref":"AAAAAAGMEh+vw6Ba32I="},"operationCompartment":{"$ref":"AAAAAAGMEh+vw6Bb4lI="},"receptionCompartment":{"$ref":"AAAAAAGMEh+vw6BcdnA="},"templateParameterCompartment":{"$ref":"AAAAAAGMEh+vw6BdcUA="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMEiMvuYzSrHQ=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEiMvuIzQ2h4="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEiMvuYzTmH4=","_parent":{"$ref":"AAAAAAGMEiMvuYzSrHQ="},"model":{"$ref":"AAAAAAGMEiMvuIzQ2h4="},"visible":false,"font":"Arial;13;0","left":2152,"top":832,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEiMvuYzSrHQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEiMvuYzUgbk=","_parent":{"$ref":"AAAAAAGMEiMvuYzSrHQ="},"model":{"$ref":"AAAAAAGMEiMvuIzQ2h4="},"visible":null,"font":"Arial;13;0","left":2152,"top":817,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEiMvuYzSrHQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEiMvuYzVcH0=","_parent":{"$ref":"AAAAAAGMEiMvuYzSrHQ="},"model":{"$ref":"AAAAAAGMEiMvuIzQ2h4="},"visible":false,"font":"Arial;13;0","left":2152,"top":862,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEiMvuYzSrHQ="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEh+vw6BUxGI="},"tail":{"$ref":"AAAAAAGMC/AivaOOebM="},"points":"2152:662;2152:853;2272:853","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEiMvuYzTmH4="},"stereotypeLabel":{"$ref":"AAAAAAGMEiMvuYzUgbk="},"propertyLabel":{"$ref":"AAAAAAGMEiMvuYzVcH0="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMEiNSx5IOTvc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEiNSx5IMhEA="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEiNSyJIP1jU=","_parent":{"$ref":"AAAAAAGMEiNSx5IOTvc="},"model":{"$ref":"AAAAAAGMEiNSx5IMhEA="},"visible":false,"font":"Arial;13;0","left":2365,"top":910,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEiNSx5IOTvc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEiNSyJIQc0Y=","_parent":{"$ref":"AAAAAAGMEiNSx5IOTvc="},"model":{"$ref":"AAAAAAGMEiNSx5IMhEA="},"visible":null,"font":"Arial;13;0","left":2350,"top":910,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEiNSx5IOTvc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEiNSyJIR1eE=","_parent":{"$ref":"AAAAAAGMEiNSx5IOTvc="},"model":{"$ref":"AAAAAAGMEiNSx5IMhEA="},"visible":false,"font":"Arial;13;0","left":2394,"top":911,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEiNSx5IOTvc="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEh+vw6BUxGI="},"tail":{"$ref":"AAAAAAGMDBqwaPw/sTA="},"points":"2380:952;2380:882","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEiNSyJIP1jU="},"stereotypeLabel":{"$ref":"AAAAAAGMEiNSyJIQc0Y="},"propertyLabel":{"$ref":"AAAAAAGMEiNSyJIR1eE="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEjBcDBsCKmM=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEjBcDBsA7/A="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEjBcDBsDVek=","_parent":{"$ref":"AAAAAAGMEjBcDBsCKmM="},"model":{"$ref":"AAAAAAGMEjBcDBsA7/A="},"visible":false,"font":"Arial;13;0","left":3010,"top":1407,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEjBcDBsCKmM="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEjBcDBsEBY8=","_parent":{"$ref":"AAAAAAGMEjBcDBsCKmM="},"model":{"$ref":"AAAAAAGMEjBcDBsA7/A="},"visible":null,"font":"Arial;13;0","left":3010,"top":1392,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEjBcDBsCKmM="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEjBcDBsF/Lc=","_parent":{"$ref":"AAAAAAGMEjBcDBsCKmM="},"model":{"$ref":"AAAAAAGMEjBcDBsA7/A="},"visible":false,"font":"Arial;13;0","left":3010,"top":1437,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEjBcDBsCKmM="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"tail":{"$ref":"AAAAAAGMEddVzYAcRLs="},"points":"3010:1310;3010:1428;3128:1428","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEjBcDBsDVek="},"stereotypeLabel":{"$ref":"AAAAAAGMEjBcDBsEBY8="},"propertyLabel":{"$ref":"AAAAAAGMEjBcDBsF/Lc="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEjDTZilvZWg=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEjDTZiltreo="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEjDTZilw9YA=","_parent":{"$ref":"AAAAAAGMEjDTZilvZWg="},"model":{"$ref":"AAAAAAGMEjDTZiltreo="},"visible":false,"font":"Arial;13;0","left":2636,"top":1669,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEjDTZilvZWg="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEjDTZilxM2U=","_parent":{"$ref":"AAAAAAGMEjDTZilvZWg="},"model":{"$ref":"AAAAAAGMEjDTZiltreo="},"visible":null,"font":"Arial;13;0","left":2636,"top":1654,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEjDTZilvZWg="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEjDTZily/1I=","_parent":{"$ref":"AAAAAAGMEjDTZilvZWg="},"model":{"$ref":"AAAAAAGMEjDTZiltreo="},"visible":false,"font":"Arial;13;0","left":2636,"top":1699,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEjDTZilvZWg="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEhNgT1pOa9o="},"tail":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"points":"2636:1556;2636:1690;2816:1690","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEjDTZilw9YA="},"stereotypeLabel":{"$ref":"AAAAAAGMEjDTZilxM2U="},"propertyLabel":{"$ref":"AAAAAAGMEjDTZily/1I="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEjDjQC52DIc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEjDjQC50Bqg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEjDjQS53tjU=","_parent":{"$ref":"AAAAAAGMEjDjQC52DIc="},"model":{"$ref":"AAAAAAGMEjDjQC50Bqg="},"visible":false,"font":"Arial;13;0","left":3160,"top":1699,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEjDjQC52DIc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEjDjQS54dkA=","_parent":{"$ref":"AAAAAAGMEjDjQC52DIc="},"model":{"$ref":"AAAAAAGMEjDjQC50Bqg="},"visible":null,"font":"Arial;13;0","left":3160,"top":1714,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEjDjQC52DIc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEjDjQS55dmM=","_parent":{"$ref":"AAAAAAGMEjDjQC52DIc="},"model":{"$ref":"AAAAAAGMEjDjQC50Bqg="},"visible":false,"font":"Arial;13;0","left":3161,"top":1669,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEjDjQC52DIc="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEhNgT1pOa9o="},"tail":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"points":"3161:1548;3161:1690;3080:1690","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEjDjQS53tjU="},"stereotypeLabel":{"$ref":"AAAAAAGMEjDjQS54dkA="},"propertyLabel":{"$ref":"AAAAAAGMEjDjQS55dmM="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMEjN1RVj1rts=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEjN1RVjztCU="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEjN1RVj2Qpo=","_parent":{"$ref":"AAAAAAGMEjN1RVj1rts="},"model":{"$ref":"AAAAAAGMEjN1RVjztCU="},"visible":false,"font":"Arial;13;0","left":3294,"top":1585,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEjN1RVj1rts="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEjN1RVj3K2k=","_parent":{"$ref":"AAAAAAGMEjN1RVj1rts="},"model":{"$ref":"AAAAAAGMEjN1RVjztCU="},"visible":null,"font":"Arial;13;0","left":3294,"top":1600,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEjN1RVj1rts="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEjN1RVj417M=","_parent":{"$ref":"AAAAAAGMEjN1RVj1rts="},"model":{"$ref":"AAAAAAGMEjN1RVjztCU="},"visible":false,"font":"Arial;13;0","left":3295,"top":1555,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEjN1RVj1rts="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"tail":{"$ref":"AAAAAAGMEddddYGuAAM="},"points":"3360:1608;3360:1576;3231:1576;3231:1548","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEjN1RVj2Qpo="},"stereotypeLabel":{"$ref":"AAAAAAGMEjN1RVj3K2k="},"propertyLabel":{"$ref":"AAAAAAGMEjN1RVj417M="}},{"_type":"UMLClassView","_id":"AAAAAAGMEkRz23meIjw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEddG/35rkhw="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEkRz23mffl0=","_parent":{"$ref":"AAAAAAGMEkRz23meIjw="},"model":{"$ref":"AAAAAAGMEddG/35rkhw="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEkRz23mgKRQ=","_parent":{"$ref":"AAAAAAGMEkRz23mffl0="},"visible":false,"font":"Arial;13;0","left":-768,"top":-284,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEkRz23mhHXM=","_parent":{"$ref":"AAAAAAGMEkRz23mffl0="},"font":"Arial;13;1","left":3213,"top":1247,"width":348.90869140625,"height":13,"text":"Connection"},{"_type":"LabelView","_id":"AAAAAAGMEkRz23miv9E=","_parent":{"$ref":"AAAAAAGMEkRz23mffl0="},"visible":false,"font":"Arial;13;0","left":-768,"top":-284,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEkRz23mj/Yk=","_parent":{"$ref":"AAAAAAGMEkRz23mffl0="},"visible":false,"font":"Arial;13;0","left":-768,"top":-284,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3208,"top":1240,"width":358.90869140625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEkRz23mgKRQ="},"nameLabel":{"$ref":"AAAAAAGMEkRz23mhHXM="},"namespaceLabel":{"$ref":"AAAAAAGMEkRz23miv9E="},"propertyLabel":{"$ref":"AAAAAAGMEkRz23mj/Yk="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEkRz23mkdrA=","_parent":{"$ref":"AAAAAAGMEkRz23meIjw="},"model":{"$ref":"AAAAAAGMEddG/35rkhw="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMEkukYcdiehQ=","_parent":{"$ref":"AAAAAAGMEkRz23mkdrA="},"model":{"$ref":"AAAAAAGMEkukQcdEpEU="},"font":"Arial;13;0","left":3213,"top":1270,"width":348.90869140625,"height":13,"text":"-stmt: PDOStatement","horizontalAlignment":0}],"font":"Arial;13;0","left":3208,"top":1265,"width":358.90869140625,"height":23},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEkRz23mlPc0=","_parent":{"$ref":"AAAAAAGMEkRz23meIjw="},"model":{"$ref":"AAAAAAGMEddG/35rkhw="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEkvrHc6iqN0=","_parent":{"$ref":"AAAAAAGMEkRz23mlPc0="},"model":{"$ref":"AAAAAAGMEkvrCs6E5Lw="},"font":"Arial;13;0","left":3213,"top":1293,"width":348.90869140625,"height":13,"text":"+Connection(dsn: string, username: string, password: string)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEkxQwNTfUbI=","_parent":{"$ref":"AAAAAAGMEkRz23mlPc0="},"model":{"$ref":"AAAAAAGMEkxQsdTB81s="},"font":"Arial;13;0","left":3213,"top":1308,"width":348.90869140625,"height":13,"text":"+executeQuery(query: string, params: array)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEkyVE9jIheo=","_parent":{"$ref":"AAAAAAGMEkRz23mlPc0="},"model":{"$ref":"AAAAAAGMEkyVAdiqvz0="},"font":"Arial;13;0","left":3213,"top":1323,"width":348.90869140625,"height":13,"text":"+getResults(): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEkzSRd9lQhs=","_parent":{"$ref":"AAAAAAGMEkRz23mlPc0="},"model":{"$ref":"AAAAAAGMEkzSON9HGj0="},"font":"Arial;13;0","left":3213,"top":1338,"width":348.90869140625,"height":13,"text":"+getOneResult(): array","horizontalAlignment":0}],"font":"Arial;13;0","left":3208,"top":1288,"width":358.90869140625,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEkRz23mmSgk=","_parent":{"$ref":"AAAAAAGMEkRz23meIjw="},"model":{"$ref":"AAAAAAGMEddG/35rkhw="},"visible":false,"font":"Arial;13;0","left":-384,"top":-142,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEkRz23mnA/M=","_parent":{"$ref":"AAAAAAGMEkRz23meIjw="},"model":{"$ref":"AAAAAAGMEddG/35rkhw="},"visible":false,"font":"Arial;13;0","left":-384,"top":-142,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3208,"top":1240,"width":357.90869140625,"height":116,"nameCompartment":{"$ref":"AAAAAAGMEkRz23mffl0="},"attributeCompartment":{"$ref":"AAAAAAGMEkRz23mkdrA="},"operationCompartment":{"$ref":"AAAAAAGMEkRz23mlPc0="},"receptionCompartment":{"$ref":"AAAAAAGMEkRz23mmSgk="},"templateParameterCompartment":{"$ref":"AAAAAAGMEkRz23mnA/M="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMEkdh5LayPK4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEkdh47auly4="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5Lazp1c=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47auly4="},"font":"Arial;13;0","left":3131,"top":1244,"width":25.2890625,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="},"edgePosition":1,"text":"-con"},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5La0gMg=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47auly4="},"visible":null,"font":"Arial;13;0","left":3143,"top":1229,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5La1Ow8=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47auly4="},"visible":false,"font":"Arial;13;0","left":3143,"top":1274,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5La2X5w=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47avkO4="},"visible":false,"font":"Arial;13;0","left":3104,"top":1244,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5La3a30=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47avkO4="},"visible":false,"font":"Arial;13;0","left":3107,"top":1230,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5La4K3o=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47avkO4="},"font":"Arial;13;0","left":3091,"top":1271,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5La5Wyc=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47awR4I="},"visible":false,"font":"Arial;13;0","left":3182,"top":1244,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5La6b+s=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47awR4I="},"visible":false,"font":"Arial;13;0","left":3179,"top":1230,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkdh5La7lR0=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47awR4I="},"font":"Arial;13;0","left":3183,"top":1271,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMEkdh5LayPK4="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMEkdh5La8Neg=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47avkO4="},"visible":false,"font":"Arial;13;0","width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMEkdh5La9Br8=","_parent":{"$ref":"AAAAAAGMEkdh5LayPK4="},"model":{"$ref":"AAAAAAGMEkdh47awR4I="},"visible":false,"font":"Arial;13;0","width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEkRz23meIjw="},"tail":{"$ref":"AAAAAAGMEddVzYAcRLs="},"points":"3079:1265;3208:1265","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEkdh5Lazp1c="},"stereotypeLabel":{"$ref":"AAAAAAGMEkdh5La0gMg="},"propertyLabel":{"$ref":"AAAAAAGMEkdh5La1Ow8="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMEkdh5La2X5w="},"tailPropertyLabel":{"$ref":"AAAAAAGMEkdh5La3a30="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMEkdh5La4K3o="},"headRoleNameLabel":{"$ref":"AAAAAAGMEkdh5La5Wyc="},"headPropertyLabel":{"$ref":"AAAAAAGMEkdh5La6b+s="},"headMultiplicityLabel":{"$ref":"AAAAAAGMEkdh5La7lR0="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMEkdh5La8Neg="},"headQualifiersCompartment":{"$ref":"AAAAAAGMEkdh5La9Br8="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMEkkfzT/wRZA=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEkkfzT/sMJM="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/xrrg=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/sMJM="},"font":"Arial;13;0","left":1793,"top":27,"width":25.2890625,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"edgePosition":1,"text":"con"},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/ytZ8=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/sMJM="},"visible":null,"font":"Arial;13;0","left":1805,"top":12,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/zeOA=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/sMJM="},"visible":false,"font":"Arial;13;0","left":1805,"top":57,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/0IHU=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/t+cU="},"visible":false,"font":"Arial;13;0","left":268,"top":48,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/1pEQ=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/t+cU="},"visible":false,"font":"Arial;13;0","left":254,"top":45,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/2j34=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/t+cU="},"font":"Arial;13;0","left":286,"top":52,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/3y70=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/uabQ="},"visible":false,"font":"Arial;13;0","left":3343,"top":1208,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/4KR0=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/uabQ="},"visible":false,"font":"Arial;13;0","left":3356,"top":1205,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMEkkfzT/51oY=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/uabQ="},"font":"Arial;13;0","left":3312,"top":1212,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMEkkfzT/6kLQ=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/t+cU="},"visible":false,"font":"Arial;13;0","left":-232,"top":141,"width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMEkkfzT/7WmE=","_parent":{"$ref":"AAAAAAGMEkkfzT/wRZA="},"model":{"$ref":"AAAAAAGMEkkfzT/uabQ="},"visible":false,"font":"Arial;13;0","left":-232,"top":141,"width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEkRz23meIjw="},"tail":{"$ref":"AAAAAAGMDFj8ltGFB+4="},"points":"283:80;283:48;3328:48;3328:1240","nameLabel":{"$ref":"AAAAAAGMEkkfzT/xrrg="},"stereotypeLabel":{"$ref":"AAAAAAGMEkkfzT/ytZ8="},"propertyLabel":{"$ref":"AAAAAAGMEkkfzT/zeOA="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMEkkfzT/0IHU="},"tailPropertyLabel":{"$ref":"AAAAAAGMEkkfzT/1pEQ="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMEkkfzT/2j34="},"headRoleNameLabel":{"$ref":"AAAAAAGMEkkfzT/3y70="},"headPropertyLabel":{"$ref":"AAAAAAGMEkkfzT/4KR0="},"headMultiplicityLabel":{"$ref":"AAAAAAGMEkkfzT/51oY="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMEkkfzT/6kLQ="},"headQualifiersCompartment":{"$ref":"AAAAAAGMEkkfzT/7WmE="}},{"_type":"UMLClassView","_id":"AAAAAAGMElwCc2Zyfks=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEltwNWWFpxU="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMElwCc2Zzzrw=","_parent":{"$ref":"AAAAAAGMElwCc2Zyfks="},"model":{"$ref":"AAAAAAGMEltwNWWFpxU="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMElwCc2Z0sqI=","_parent":{"$ref":"AAAAAAGMElwCc2Zzzrw="},"visible":false,"font":"Arial;13;0","left":-568,"top":-186,"height":13},{"_type":"LabelView","_id":"AAAAAAGMElwCc2Z1F8I=","_parent":{"$ref":"AAAAAAGMElwCc2Zzzrw="},"font":"Arial;13;1","left":2477,"top":239,"width":214.509765625,"height":13,"text":"InviteModel"},{"_type":"LabelView","_id":"AAAAAAGMElwCc2Z2nhU=","_parent":{"$ref":"AAAAAAGMElwCc2Zzzrw="},"visible":false,"font":"Arial;13;0","left":-568,"top":-186,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMElwCc2Z37Pw=","_parent":{"$ref":"AAAAAAGMElwCc2Zzzrw="},"visible":false,"font":"Arial;13;0","left":-568,"top":-186,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2472,"top":232,"width":224.509765625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMElwCc2Z0sqI="},"nameLabel":{"$ref":"AAAAAAGMElwCc2Z1F8I="},"namespaceLabel":{"$ref":"AAAAAAGMElwCc2Z2nhU="},"propertyLabel":{"$ref":"AAAAAAGMElwCc2Z37Pw="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMElwCc2Z4vR0=","_parent":{"$ref":"AAAAAAGMElwCc2Zyfks="},"model":{"$ref":"AAAAAAGMEltwNWWFpxU="},"font":"Arial;13;0","left":2472,"top":257,"width":224.509765625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMElwCc2Z5omo=","_parent":{"$ref":"AAAAAAGMElwCc2Zyfks="},"model":{"$ref":"AAAAAAGMEltwNWWFpxU="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMElwsp3BI9UE=","_parent":{"$ref":"AAAAAAGMElwCc2Z5omo="},"model":{"$ref":"AAAAAAGMElwslXAkgFc="},"font":"Arial;13;0","left":2477,"top":272,"width":214.509765625,"height":13,"text":"+InviteModel(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmzmTTncRRo=","_parent":{"$ref":"AAAAAAGMElwCc2Z5omo="},"model":{"$ref":"AAAAAAGMEmzmPzm4z58="},"font":"Arial;13;0","left":2477,"top":287,"width":214.509765625,"height":13,"underline":true,"text":"+isInvite(): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMElx83XQvtP0=","_parent":{"$ref":"AAAAAAGMElwCc2Z5omo="},"model":{"$ref":"AAAAAAGMElx8zHQLP1k="},"font":"Arial;13;0","left":2477,"top":302,"width":214.509765625,"height":13,"text":"+getById(int: id): Invite","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmPexW4dEas=","_parent":{"$ref":"AAAAAAGMElwCc2Z5omo="},"model":{"$ref":"AAAAAAGMEmPes235D9M="},"font":"Arial;13;0","left":2477,"top":317,"width":214.509765625,"height":13,"text":"+getFromIdSession(idSession string)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmUHAHWAf4E=","_parent":{"$ref":"AAAAAAGMElwCc2Z5omo="},"model":{"$ref":"AAAAAAGMEmUG53VckF8="},"font":"Arial;13;0","left":2477,"top":332,"width":214.509765625,"height":13,"text":"+supprimerInvite(id int): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmX3VXvddQc=","_parent":{"$ref":"AAAAAAGMElwCc2Z5omo="},"model":{"$ref":"AAAAAAGMEmX3Rnu5Nxw="},"font":"Arial;13;0","left":2477,"top":347,"width":214.509765625,"height":13,"text":"+insertInvite(invite Invite): bool","horizontalAlignment":0}],"font":"Arial;13;0","left":2472,"top":267,"width":224.509765625,"height":98},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMElwCc2Z65jo=","_parent":{"$ref":"AAAAAAGMElwCc2Zyfks="},"model":{"$ref":"AAAAAAGMEltwNWWFpxU="},"visible":false,"font":"Arial;13;0","left":-284,"top":-93,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMElwCc2Z7Zes=","_parent":{"$ref":"AAAAAAGMElwCc2Zyfks="},"model":{"$ref":"AAAAAAGMEltwNWWFpxU="},"visible":false,"font":"Arial;13;0","left":-284,"top":-93,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2472,"top":232,"width":223.509765625,"height":133,"nameCompartment":{"$ref":"AAAAAAGMElwCc2Zzzrw="},"attributeCompartment":{"$ref":"AAAAAAGMElwCc2Z4vR0="},"operationCompartment":{"$ref":"AAAAAAGMElwCc2Z5omo="},"receptionCompartment":{"$ref":"AAAAAAGMElwCc2Z65jo="},"templateParameterCompartment":{"$ref":"AAAAAAGMElwCc2Z7Zes="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEl9uX4S8BxM=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEl9uXoS6pWI="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEl9uX4S9U0Y=","_parent":{"$ref":"AAAAAAGMEl9uX4S8BxM="},"model":{"$ref":"AAAAAAGMEl9uXoS6pWI="},"visible":false,"font":"Arial;13;0","left":2720,"top":267,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEl9uX4S8BxM="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEl9uX4S+R7M=","_parent":{"$ref":"AAAAAAGMEl9uX4S8BxM="},"model":{"$ref":"AAAAAAGMEl9uXoS6pWI="},"visible":null,"font":"Arial;13;0","left":2720,"top":252,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEl9uX4S8BxM="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEl9uX4S/8q4=","_parent":{"$ref":"AAAAAAGMEl9uX4S8BxM="},"model":{"$ref":"AAAAAAGMEl9uXoS6pWI="},"visible":false,"font":"Arial;13;0","left":2720,"top":297,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEl9uX4S8BxM="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDGmmJOtA6I8="},"tail":{"$ref":"AAAAAAGMElwCc2Zyfks="},"points":"2696:288;2744:288","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEl9uX4S9U0Y="},"stereotypeLabel":{"$ref":"AAAAAAGMEl9uX4S+R7M="},"propertyLabel":{"$ref":"AAAAAAGMEl9uX4S/8q4="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEmAeQb5zzBQ=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEmAeQb5xLD8="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEmAeQb50hqM=","_parent":{"$ref":"AAAAAAGMEmAeQb5zzBQ="},"model":{"$ref":"AAAAAAGMEmAeQb5xLD8="},"visible":false,"font":"Arial;13;0","left":2300,"top":281,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEmAeQb5zzBQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEmAeQb51AzY=","_parent":{"$ref":"AAAAAAGMEmAeQb5zzBQ="},"model":{"$ref":"AAAAAAGMEmAeQb5xLD8="},"visible":null,"font":"Arial;13;0","left":2315,"top":281,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEmAeQb5zzBQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEmAeQb52xnQ=","_parent":{"$ref":"AAAAAAGMEmAeQb5zzBQ="},"model":{"$ref":"AAAAAAGMEmAeQb5xLD8="},"visible":false,"font":"Arial;13;0","left":2270,"top":282,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEmAeQb5zzBQ="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDA2vdbQsCdU="},"tail":{"$ref":"AAAAAAGMElwCc2Zyfks="},"points":"2472:288;2285:288;2285:392","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEmAeQb50hqM="},"stereotypeLabel":{"$ref":"AAAAAAGMEmAeQb51AzY="},"propertyLabel":{"$ref":"AAAAAAGMEmAeQb52xnQ="}},{"_type":"UMLClassView","_id":"AAAAAAGMEmdZIJvlofU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEmclypt9yks="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEmdZIJvmUQ4=","_parent":{"$ref":"AAAAAAGMEmdZIJvlofU="},"model":{"$ref":"AAAAAAGMEmclypt9yks="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEmdZIJvnEJ4=","_parent":{"$ref":"AAAAAAGMEmdZIJvmUQ4="},"visible":false,"font":"Arial;13;0","left":-52,"top":-804,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEmdZIZvo9vU=","_parent":{"$ref":"AAAAAAGMEmdZIJvmUQ4="},"font":"Arial;13;1","left":2525,"top":431,"width":403.822265625,"height":13,"text":"UtilisateurModel"},{"_type":"LabelView","_id":"AAAAAAGMEmdZIZvpBRs=","_parent":{"$ref":"AAAAAAGMEmdZIJvmUQ4="},"visible":false,"font":"Arial;13;0","left":-52,"top":-804,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEmdZIZvqEfY=","_parent":{"$ref":"AAAAAAGMEmdZIJvmUQ4="},"visible":false,"font":"Arial;13;0","left":-52,"top":-804,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2520,"top":424,"width":413.822265625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEmdZIJvnEJ4="},"nameLabel":{"$ref":"AAAAAAGMEmdZIZvo9vU="},"namespaceLabel":{"$ref":"AAAAAAGMEmdZIZvpBRs="},"propertyLabel":{"$ref":"AAAAAAGMEmdZIZvqEfY="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEmdZIZvrae8=","_parent":{"$ref":"AAAAAAGMEmdZIJvlofU="},"model":{"$ref":"AAAAAAGMEmclypt9yks="},"font":"Arial;13;0","left":2520,"top":449,"width":413.822265625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEmdZIZvsHwQ=","_parent":{"$ref":"AAAAAAGMEmdZIJvlofU="},"model":{"$ref":"AAAAAAGMEmclypt9yks="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEmeMUKtm6Uo=","_parent":{"$ref":"AAAAAAGMEmdZIZvsHwQ="},"model":{"$ref":"AAAAAAGMEmeMPqtCi/8="},"font":"Arial;13;0","left":2525,"top":464,"width":403.822265625,"height":13,"text":"+UtilisateurModel(con Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEm0szUCac/I=","_parent":{"$ref":"AAAAAAGMEmdZIZvsHwQ="},"model":{"$ref":"AAAAAAGMEm0svEB2qhA="},"font":"Arial;13;0","left":2525,"top":479,"width":403.822265625,"height":13,"underline":true,"text":"+isUtilisateur(): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmf+ELbrqQY=","_parent":{"$ref":"AAAAAAGMEmdZIZvsHwQ="},"model":{"$ref":"AAAAAAGMEmf+AbbHEq8="},"font":"Arial;13;0","left":2525,"top":494,"width":403.822265625,"height":13,"text":"+getFromId(int id): Utilisateur","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmgnQr0mRL4=","_parent":{"$ref":"AAAAAAGMEmdZIZvsHwQ="},"model":{"$ref":"AAAAAAGMEmgnNb0CYoA="},"font":"Arial;13;0","left":2525,"top":509,"width":403.822265625,"height":13,"text":"+getFromEmail(email string): Utilisateur","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmmap8yKqg4=","_parent":{"$ref":"AAAAAAGMEmdZIZvsHwQ="},"model":{"$ref":"AAAAAAGMEmmal8xmpAQ="},"font":"Arial;13;0","left":2525,"top":524,"width":403.822265625,"height":13,"text":"+insertUtilisateur(pseudo string, email string, motdepasse string): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmsffRnA088=","_parent":{"$ref":"AAAAAAGMEmdZIZvsHwQ="},"model":{"$ref":"AAAAAAGMEmsfbBmcY0Q="},"font":"Arial;13;0","left":2525,"top":539,"width":403.822265625,"height":13,"text":"+supprimerUtilisateur(id int): bool","horizontalAlignment":0}],"font":"Arial;13;0","left":2520,"top":459,"width":413.822265625,"height":98},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEmdZIZvtZiQ=","_parent":{"$ref":"AAAAAAGMEmdZIJvlofU="},"model":{"$ref":"AAAAAAGMEmclypt9yks="},"visible":false,"font":"Arial;13;0","left":-26,"top":-402,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEmdZIZvuB88=","_parent":{"$ref":"AAAAAAGMEmdZIJvlofU="},"model":{"$ref":"AAAAAAGMEmclypt9yks="},"visible":false,"font":"Arial;13;0","left":-26,"top":-402,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2520,"top":424,"width":412.822265625,"height":133,"nameCompartment":{"$ref":"AAAAAAGMEmdZIJvmUQ4="},"attributeCompartment":{"$ref":"AAAAAAGMEmdZIZvrae8="},"operationCompartment":{"$ref":"AAAAAAGMEmdZIZvsHwQ="},"receptionCompartment":{"$ref":"AAAAAAGMEmdZIZvtZiQ="},"templateParameterCompartment":{"$ref":"AAAAAAGMEmdZIZvuB88="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEmpZCtcsb4k=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEmpZCtcqwkg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEmpZCtctn6o=","_parent":{"$ref":"AAAAAAGMEmpZCtcsb4k="},"model":{"$ref":"AAAAAAGMEmpZCtcqwkg="},"visible":false,"font":"Arial;13;0","left":2798,"top":575,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEmpZCtcsb4k="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEmpZCtcuBGU=","_parent":{"$ref":"AAAAAAGMEmpZCtcsb4k="},"model":{"$ref":"AAAAAAGMEmpZCtcqwkg="},"visible":null,"font":"Arial;13;0","left":2813,"top":575,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEmpZCtcsb4k="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEmpZCtcvUvU=","_parent":{"$ref":"AAAAAAGMEmpZCtcsb4k="},"model":{"$ref":"AAAAAAGMEmpZCtcqwkg="},"visible":false,"font":"Arial;13;0","left":2769,"top":576,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEmpZCtcsb4k="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDGvvd/xdb+8="},"tail":{"$ref":"AAAAAAGMEmdZIJvlofU="},"points":"2784:557;2784:608","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEmpZCtctn6o="},"stereotypeLabel":{"$ref":"AAAAAAGMEmpZCtcuBGU="},"propertyLabel":{"$ref":"AAAAAAGMEmpZCtcvUvU="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEmrBLQTt2fE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEmpZCtcqwkg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEmrBLQTu8RY=","_parent":{"$ref":"AAAAAAGMEmrBLQTt2fE="},"model":{"$ref":"AAAAAAGMEmpZCtcqwkg="},"visible":false,"font":"Arial;13;0","left":2503,"top":483,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEmrBLQTt2fE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEmrBLQTvwTI=","_parent":{"$ref":"AAAAAAGMEmrBLQTt2fE="},"model":{"$ref":"AAAAAAGMEmpZCtcqwkg="},"visible":null,"font":"Arial;13;0","left":2518,"top":483,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEmrBLQTt2fE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEmrBLQTwF08=","_parent":{"$ref":"AAAAAAGMEmrBLQTt2fE="},"model":{"$ref":"AAAAAAGMEmpZCtcqwkg="},"visible":false,"font":"Arial;13;0","left":2473,"top":484,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEmrBLQTt2fE="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDAzKCK1jetI="},"tail":{"$ref":"AAAAAAGMEmdZIJvlofU="},"points":"2520:490;2488:490;2488:640","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEmrBLQTu8RY="},"stereotypeLabel":{"$ref":"AAAAAAGMEmrBLQTvwTI="},"propertyLabel":{"$ref":"AAAAAAGMEmrBLQTwF08="}},{"_type":"UMLClassView","_id":"AAAAAAGMEmwSRipN88E=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEmuWgSR76X4="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEmwSRipOQho=","_parent":{"$ref":"AAAAAAGMEmwSRipN88E="},"model":{"$ref":"AAAAAAGMEmuWgSR76X4="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEmwSRipPs0c=","_parent":{"$ref":"AAAAAAGMEmwSRipOQho="},"visible":false,"font":"Arial;13;0","left":518,"top":-38,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEmwSRipQf6A=","_parent":{"$ref":"AAAAAAGMEmwSRipOQho="},"font":"Arial;13;1","left":2581,"top":1119,"width":214.47802734375,"height":13,"text":"ModelAdmin"},{"_type":"LabelView","_id":"AAAAAAGMEmwSRypRkBE=","_parent":{"$ref":"AAAAAAGMEmwSRipOQho="},"visible":false,"font":"Arial;13;0","left":518,"top":-38,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEmwSRypS1Vk=","_parent":{"$ref":"AAAAAAGMEmwSRipOQho="},"visible":false,"font":"Arial;13;0","left":518,"top":-38,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2576,"top":1112,"width":224.47802734375,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEmwSRipPs0c="},"nameLabel":{"$ref":"AAAAAAGMEmwSRipQf6A="},"namespaceLabel":{"$ref":"AAAAAAGMEmwSRypRkBE="},"propertyLabel":{"$ref":"AAAAAAGMEmwSRypS1Vk="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEmwSRypT/yc=","_parent":{"$ref":"AAAAAAGMEmwSRipN88E="},"model":{"$ref":"AAAAAAGMEmuWgSR76X4="},"font":"Arial;13;0","left":2576,"top":1137,"width":224.47802734375,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEmwSRypUbzI=","_parent":{"$ref":"AAAAAAGMEmwSRipN88E="},"model":{"$ref":"AAAAAAGMEmuWgSR76X4="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEm19Ukw/UI0=","_parent":{"$ref":"AAAAAAGMEmwSRypUbzI="},"model":{"$ref":"AAAAAAGMEm19Q0wb/Tk="},"font":"Arial;13;0","left":2581,"top":1152,"width":214.47802734375,"height":13,"text":"+ModelAdmin(con Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEmwlSSwC73c=","_parent":{"$ref":"AAAAAAGMEmwSRypUbzI="},"model":{"$ref":"AAAAAAGMEmwlNyveUu8="},"font":"Arial;13;0","left":2581,"top":1167,"width":214.47802734375,"height":13,"underline":true,"text":"+isAdmin(): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEm6S35WXTos=","_parent":{"$ref":"AAAAAAGMEmwSRypUbzI="},"model":{"$ref":"AAAAAAGMEm6Sz5Vzi70="},"font":"Arial;13;0","left":2581,"top":1182,"width":214.47802734375,"height":13,"text":"+getFromId(id: int): Admin","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEm+aGq1CJjI=","_parent":{"$ref":"AAAAAAGMEmwSRypUbzI="},"model":{"$ref":"AAAAAAGMEm+aC60edbc="},"font":"Arial;13;0","left":2581,"top":1197,"width":214.47802734375,"height":13,"text":"+getFromEmail(email: String): Admin","horizontalAlignment":0}],"font":"Arial;13;0","left":2576,"top":1147,"width":224.47802734375,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEmwSRypVsJE=","_parent":{"$ref":"AAAAAAGMEmwSRipN88E="},"model":{"$ref":"AAAAAAGMEmuWgSR76X4="},"visible":false,"font":"Arial;13;0","left":259,"top":-19,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEmwSRypW9GU=","_parent":{"$ref":"AAAAAAGMEmwSRipN88E="},"model":{"$ref":"AAAAAAGMEmuWgSR76X4="},"visible":false,"font":"Arial;13;0","left":259,"top":-19,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2576,"top":1112,"width":223.47802734375,"height":103,"nameCompartment":{"$ref":"AAAAAAGMEmwSRipOQho="},"attributeCompartment":{"$ref":"AAAAAAGMEmwSRypT/yc="},"operationCompartment":{"$ref":"AAAAAAGMEmwSRypUbzI="},"receptionCompartment":{"$ref":"AAAAAAGMEmwSRypVsJE="},"templateParameterCompartment":{"$ref":"AAAAAAGMEmwSRypW9GU="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEm4Swm5bwTE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEm4SwW5ZuD4="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEm4Swm5cyko=","_parent":{"$ref":"AAAAAAGMEm4Swm5bwTE="},"model":{"$ref":"AAAAAAGMEm4SwW5ZuD4="},"visible":false,"font":"Arial;13;0","left":2417,"top":1156,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEm4Swm5bwTE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEm4Swm5drc4=","_parent":{"$ref":"AAAAAAGMEm4Swm5bwTE="},"model":{"$ref":"AAAAAAGMEm4SwW5ZuD4="},"visible":null,"font":"Arial;13;0","left":2402,"top":1156,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEm4Swm5bwTE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEm4Swm5eG7Y=","_parent":{"$ref":"AAAAAAGMEm4Swm5bwTE="},"model":{"$ref":"AAAAAAGMEm4SwW5ZuD4="},"visible":false,"font":"Arial;13;0","left":2447,"top":1157,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEm4Swm5bwTE="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDBqwaPw/sTA="},"tail":{"$ref":"AAAAAAGMEmwSRipN88E="},"points":"2576:1163;2432:1163;2432:1053","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEm4Swm5cyko="},"stereotypeLabel":{"$ref":"AAAAAAGMEm4Swm5drc4="},"propertyLabel":{"$ref":"AAAAAAGMEm4Swm5eG7Y="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEm5yLInLKG0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEm4SwW5ZuD4="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEm5yLInM/qs=","_parent":{"$ref":"AAAAAAGMEm5yLInLKG0="},"model":{"$ref":"AAAAAAGMEm4SwW5ZuD4="},"visible":false,"font":"Arial;13;0","left":2702,"top":1057,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEm5yLInLKG0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEm5yLInNSXo=","_parent":{"$ref":"AAAAAAGMEm5yLInLKG0="},"model":{"$ref":"AAAAAAGMEm4SwW5ZuD4="},"visible":null,"font":"Arial;13;0","left":2687,"top":1057,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEm5yLInLKG0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEm5yLInOrPo=","_parent":{"$ref":"AAAAAAGMEm5yLInLKG0="},"model":{"$ref":"AAAAAAGMEm4SwW5ZuD4="},"visible":false,"font":"Arial;13;0","left":2731,"top":1058,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEm5yLInLKG0="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDGffwa3Y3FM="},"tail":{"$ref":"AAAAAAGMEmwSRipN88E="},"points":"2717:1112;2717:1016","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEm5yLInM/qs="},"stereotypeLabel":{"$ref":"AAAAAAGMEm5yLInNSXo="},"propertyLabel":{"$ref":"AAAAAAGMEm5yLInOrPo="}},{"_type":"UMLClassView","_id":"AAAAAAGMEnLjDQXkiZU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEnLjDQXljvc=","_parent":{"$ref":"AAAAAAGMEnLjDQXkiZU="},"model":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEnLjDQXm2/M=","_parent":{"$ref":"AAAAAAGMEnLjDQXljvc="},"visible":false,"font":"Arial;13;0","left":88,"top":-114,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEnLjDQXnWwA=","_parent":{"$ref":"AAAAAAGMEnLjDQXljvc="},"font":"Arial;13;1","left":725,"top":527,"width":254.98876953125,"height":13,"text":"ReponseModel"},{"_type":"LabelView","_id":"AAAAAAGMEnLjDQXoDk0=","_parent":{"$ref":"AAAAAAGMEnLjDQXljvc="},"visible":false,"font":"Arial;13;0","left":88,"top":-114,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEnLjDQXpyrg=","_parent":{"$ref":"AAAAAAGMEnLjDQXljvc="},"visible":false,"font":"Arial;13;0","left":88,"top":-114,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":720,"top":520,"width":264.98876953125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEnLjDQXm2/M="},"nameLabel":{"$ref":"AAAAAAGMEnLjDQXnWwA="},"namespaceLabel":{"$ref":"AAAAAAGMEnLjDQXoDk0="},"propertyLabel":{"$ref":"AAAAAAGMEnLjDQXpyrg="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEnLjDQXqlKI=","_parent":{"$ref":"AAAAAAGMEnLjDQXkiZU="},"model":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"font":"Arial;13;0","left":720,"top":545,"width":264.98876953125,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEnLjDQXrwhg=","_parent":{"$ref":"AAAAAAGMEnLjDQXkiZU="},"model":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEnM+uwvbYsE=","_parent":{"$ref":"AAAAAAGMEnLjDQXrwhg="},"model":{"$ref":"AAAAAAGMEnM+qQu3sXM="},"font":"Arial;13;0","left":725,"top":560,"width":254.98876953125,"height":13,"text":"+ReponseModel()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEnTsWXvlaT8=","_parent":{"$ref":"AAAAAAGMEnLjDQXrwhg="},"model":{"$ref":"AAAAAAGMEnTsMXvB4p4="},"font":"Arial;13;0","left":725,"top":575,"width":254.98876953125,"height":13,"text":"+getFromId(id: int): Reponse","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEnUtIX+t/Gg=","_parent":{"$ref":"AAAAAAGMEnLjDQXrwhg="},"model":{"$ref":"AAAAAAGMEnUtE3+JhcE="},"font":"Arial;13;0","left":725,"top":590,"width":254.98876953125,"height":13,"text":"+getFromQuestion(idQuestion: int): reponse","horizontalAlignment":0}],"font":"Arial;13;0","left":720,"top":555,"width":264.98876953125,"height":53},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEnLjDQXsFRI=","_parent":{"$ref":"AAAAAAGMEnLjDQXkiZU="},"model":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"visible":false,"font":"Arial;13;0","left":44,"top":-57,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEnLjDQXt0PU=","_parent":{"$ref":"AAAAAAGMEnLjDQXkiZU="},"model":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"visible":false,"font":"Arial;13;0","left":44,"top":-57,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":720,"top":520,"width":263.98876953125,"height":88,"nameCompartment":{"$ref":"AAAAAAGMEnLjDQXljvc="},"attributeCompartment":{"$ref":"AAAAAAGMEnLjDQXqlKI="},"operationCompartment":{"$ref":"AAAAAAGMEnLjDQXrwhg="},"receptionCompartment":{"$ref":"AAAAAAGMEnLjDQXsFRI="},"templateParameterCompartment":{"$ref":"AAAAAAGMEnLjDQXt0PU="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEnPXFjDNjdI=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEnPXFjDLsEo="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEnPXFjDOPrM=","_parent":{"$ref":"AAAAAAGMEnPXFjDNjdI="},"model":{"$ref":"AAAAAAGMEnPXFjDLsEo="},"visible":false,"font":"Arial;13;0","left":750,"top":621,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEnPXFjDNjdI="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEnPXFjDP/l0=","_parent":{"$ref":"AAAAAAGMEnPXFjDNjdI="},"model":{"$ref":"AAAAAAGMEnPXFjDLsEo="},"visible":null,"font":"Arial;13;0","left":765,"top":621,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEnPXFjDNjdI="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEnPXFjDQ608=","_parent":{"$ref":"AAAAAAGMEnPXFjDNjdI="},"model":{"$ref":"AAAAAAGMEnPXFjDLsEo="},"visible":false,"font":"Arial;13;0","left":721,"top":622,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEnPXFjDNjdI="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFhT/MjJLGE="},"tail":{"$ref":"AAAAAAGMEnLjDQXkiZU="},"points":"736:608;736:648","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEnPXFjDOPrM="},"stereotypeLabel":{"$ref":"AAAAAAGMEnPXFjDP/l0="},"propertyLabel":{"$ref":"AAAAAAGMEnPXFjDQ608="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEnQ2FFFDkO4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEnPXFjDLsEo="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEnQ2FFFEylU=","_parent":{"$ref":"AAAAAAGMEnQ2FFFDkO4="},"model":{"$ref":"AAAAAAGMEnPXFjDLsEo="},"visible":false,"font":"Arial;13;0","left":928,"top":667,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEnQ2FFFDkO4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEnQ2FFFF4qY=","_parent":{"$ref":"AAAAAAGMEnQ2FFFDkO4="},"model":{"$ref":"AAAAAAGMEnPXFjDLsEo="},"visible":null,"font":"Arial;13;0","left":928,"top":652,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEnQ2FFFDkO4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEnQ2FFFG7I4=","_parent":{"$ref":"AAAAAAGMEnQ2FFFDkO4="},"model":{"$ref":"AAAAAAGMEnPXFjDLsEo="},"visible":false,"font":"Arial;13;0","left":928,"top":697,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEnQ2FFFDkO4="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDB+zgDfU87A="},"tail":{"$ref":"AAAAAAGMEnLjDQXkiZU="},"points":"928:608;928:688;1008:688","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEnQ2FFFEylU="},"stereotypeLabel":{"$ref":"AAAAAAGMEnQ2FFFF4qY="},"propertyLabel":{"$ref":"AAAAAAGMEnQ2FFFG7I4="}},{"_type":"UMLClassView","_id":"AAAAAAGMEniSPLFtdUU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEnhpYLEF72s="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEniSPLFuH/E=","_parent":{"$ref":"AAAAAAGMEniSPLFtdUU="},"model":{"$ref":"AAAAAAGMEnhpYLEF72s="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEniSPLFv1KY=","_parent":{"$ref":"AAAAAAGMEniSPLFuH/E="},"visible":false,"font":"Arial;13;0","left":-798,"top":-20,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEniSPLFwIJk=","_parent":{"$ref":"AAAAAAGMEniSPLFuH/E="},"font":"Arial;13;1","left":813,"top":855,"width":312.44775390625,"height":13,"text":"IndiceModel"},{"_type":"LabelView","_id":"AAAAAAGMEniSPLFxIFA=","_parent":{"$ref":"AAAAAAGMEniSPLFuH/E="},"visible":false,"font":"Arial;13;0","left":-798,"top":-20,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEniSPLFyOpg=","_parent":{"$ref":"AAAAAAGMEniSPLFuH/E="},"visible":false,"font":"Arial;13;0","left":-798,"top":-20,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":808,"top":848,"width":322.44775390625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEniSPLFv1KY="},"nameLabel":{"$ref":"AAAAAAGMEniSPLFwIJk="},"namespaceLabel":{"$ref":"AAAAAAGMEniSPLFxIFA="},"propertyLabel":{"$ref":"AAAAAAGMEniSPLFyOpg="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEniSPLFzp78=","_parent":{"$ref":"AAAAAAGMEniSPLFtdUU="},"model":{"$ref":"AAAAAAGMEnhpYLEF72s="},"font":"Arial;13;0","left":808,"top":873,"width":322.44775390625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEniSPLF07M4=","_parent":{"$ref":"AAAAAAGMEniSPLFtdUU="},"model":{"$ref":"AAAAAAGMEnhpYLEF72s="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEnl/Rs9H51M=","_parent":{"$ref":"AAAAAAGMEniSPLF07M4="},"model":{"$ref":"AAAAAAGMEnl/NM8jmCU="},"font":"Arial;13;0","left":813,"top":888,"width":312.44775390625,"height":13,"text":"+IndiceModel(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEnpJ7PHhhUM=","_parent":{"$ref":"AAAAAAGMEniSPLF07M4="},"model":{"$ref":"AAAAAAGMEnpJ2/G9klg="},"font":"Arial;13;0","left":813,"top":903,"width":312.44775390625,"height":13,"text":"+getFromId(): Indice","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEny0WAEktxw=","_parent":{"$ref":"AAAAAAGMEniSPLF07M4="},"model":{"$ref":"AAAAAAGMEny0SAEAOyk="},"font":"Arial;13;0","left":813,"top":918,"width":312.44775390625,"height":13,"text":"+getFromScientifique(idScientifique: int): List","horizontalAlignment":0}],"font":"Arial;13;0","left":808,"top":883,"width":322.44775390625,"height":53},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEniSPLF1cZQ=","_parent":{"$ref":"AAAAAAGMEniSPLFtdUU="},"model":{"$ref":"AAAAAAGMEnhpYLEF72s="},"visible":false,"font":"Arial;13;0","left":-399,"top":-10,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEniSPLF2/Jc=","_parent":{"$ref":"AAAAAAGMEniSPLFtdUU="},"model":{"$ref":"AAAAAAGMEnhpYLEF72s="},"visible":false,"font":"Arial;13;0","left":-399,"top":-10,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":808,"top":848,"width":321.44775390625,"height":88,"nameCompartment":{"$ref":"AAAAAAGMEniSPLFuH/E="},"attributeCompartment":{"$ref":"AAAAAAGMEniSPLFzp78="},"operationCompartment":{"$ref":"AAAAAAGMEniSPLF07M4="},"receptionCompartment":{"$ref":"AAAAAAGMEniSPLF1cZQ="},"templateParameterCompartment":{"$ref":"AAAAAAGMEniSPLF2/Jc="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEnilv7Mh6Iw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEnilv7Mf+j0="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEnilv7Miw3Y=","_parent":{"$ref":"AAAAAAGMEnilv7Mh6Iw="},"model":{"$ref":"AAAAAAGMEnilv7Mf+j0="},"visible":false,"font":"Arial;13;0","left":1268,"top":867,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEnilv7Mh6Iw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEnilv7MjcyQ=","_parent":{"$ref":"AAAAAAGMEnilv7Mh6Iw="},"model":{"$ref":"AAAAAAGMEnilv7Mf+j0="},"visible":null,"font":"Arial;13;0","left":1268,"top":852,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEnilv7Mh6Iw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEnilv7Mkl2s=","_parent":{"$ref":"AAAAAAGMEnilv7Mh6Iw="},"model":{"$ref":"AAAAAAGMEnilv7Mf+j0="},"visible":false,"font":"Arial;13;0","left":1268,"top":897,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEnilv7Mh6Iw="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDBuarwhgNik="},"tail":{"$ref":"AAAAAAGMEniSPLFtdUU="},"points":"1129:888;1408:888","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEnilv7Miw3Y="},"stereotypeLabel":{"$ref":"AAAAAAGMEnilv7MjcyQ="},"propertyLabel":{"$ref":"AAAAAAGMEnilv7Mkl2s="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEnjwesb2YLY=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEnilv7Mf+j0="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEnjwesb3WC8=","_parent":{"$ref":"AAAAAAGMEnjwesb2YLY="},"model":{"$ref":"AAAAAAGMEnilv7Mf+j0="},"visible":false,"font":"Arial;13;0","left":776,"top":889,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEnjwesb2YLY="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEnjwesb4pOA=","_parent":{"$ref":"AAAAAAGMEnjwesb2YLY="},"model":{"$ref":"AAAAAAGMEnilv7Mf+j0="},"visible":null,"font":"Arial;13;0","left":776,"top":904,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEnjwesb2YLY="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEnjwesb5Bro=","_parent":{"$ref":"AAAAAAGMEnjwesb2YLY="},"model":{"$ref":"AAAAAAGMEnilv7Mf+j0="},"visible":false,"font":"Arial;13;0","left":777,"top":859,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEnjwesb2YLY="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDFvWtfxbzWQ="},"tail":{"$ref":"AAAAAAGMEniSPLFtdUU="},"points":"808:880;747:880","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEnjwesb3WC8="},"stereotypeLabel":{"$ref":"AAAAAAGMEnjwesb4pOA="},"propertyLabel":{"$ref":"AAAAAAGMEnjwesb5Bro="}},{"_type":"UMLClassView","_id":"AAAAAAGMEn6ixS48XmE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEn6ixS4910U=","_parent":{"$ref":"AAAAAAGMEn6ixS48XmE="},"model":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEn6ixS4+dVg=","_parent":{"$ref":"AAAAAAGMEn6ixS4910U="},"visible":false,"font":"Arial;13;0","left":-122,"top":-328,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEn6ixS4/MQI=","_parent":{"$ref":"AAAAAAGMEn6ixS4910U="},"font":"Arial;13;1","left":677,"top":1271,"width":264.38330078125,"height":13,"text":"SexeModel"},{"_type":"LabelView","_id":"AAAAAAGMEn6ixS5ANP8=","_parent":{"$ref":"AAAAAAGMEn6ixS4910U="},"visible":false,"font":"Arial;13;0","left":-122,"top":-328,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEn6ixS5BQN0=","_parent":{"$ref":"AAAAAAGMEn6ixS4910U="},"visible":false,"font":"Arial;13;0","left":-122,"top":-328,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":672,"top":1264,"width":274.38330078125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEn6ixS4+dVg="},"nameLabel":{"$ref":"AAAAAAGMEn6ixS4/MQI="},"namespaceLabel":{"$ref":"AAAAAAGMEn6ixS5ANP8="},"propertyLabel":{"$ref":"AAAAAAGMEn6ixS5BQN0="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEn6ixS5CPd0=","_parent":{"$ref":"AAAAAAGMEn6ixS48XmE="},"model":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"font":"Arial;13;0","left":672,"top":1289,"width":274.38330078125,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEn6ixS5DghU=","_parent":{"$ref":"AAAAAAGMEn6ixS48XmE="},"model":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEn7NxDOOSB4=","_parent":{"$ref":"AAAAAAGMEn6ixS5DghU="},"model":{"$ref":"AAAAAAGMEn7NsDNq3mo="},"font":"Arial;13;0","left":677,"top":1304,"width":264.38330078125,"height":13,"text":"+SexeModel(con Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEn8vJz90Ki8=","_parent":{"$ref":"AAAAAAGMEn6ixS5DghU="},"model":{"$ref":"AAAAAAGMEn8vFD9Qxhs="},"font":"Arial;13;0","left":677,"top":1319,"width":264.38330078125,"height":13,"text":"+getFromId(): Sexe","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEn+o10e/+qI=","_parent":{"$ref":"AAAAAAGMEn6ixS5DghU="},"model":{"$ref":"AAAAAAGMEn+oxUebAQc="},"font":"Arial;13;0","left":677,"top":1334,"width":264.38330078125,"height":13,"text":"+getFromScientifique(idScientifique int): Sexe","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEoU3W75/3IE=","_parent":{"$ref":"AAAAAAGMEn6ixS5DghU="},"model":{"$ref":"AAAAAAGMEoU3Tb5bmFg="},"font":"Arial;13;0","left":677,"top":1349,"width":264.38330078125,"height":13,"text":"+getAll(): List","horizontalAlignment":0}],"font":"Arial;13;0","left":672,"top":1299,"width":274.38330078125,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEn6ixS5EPSQ=","_parent":{"$ref":"AAAAAAGMEn6ixS48XmE="},"model":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"visible":false,"font":"Arial;13;0","left":-61,"top":-164,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEn6ixS5FcmM=","_parent":{"$ref":"AAAAAAGMEn6ixS48XmE="},"model":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"visible":false,"font":"Arial;13;0","left":-61,"top":-164,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":672,"top":1264,"width":273.38330078125,"height":103,"nameCompartment":{"$ref":"AAAAAAGMEn6ixS4910U="},"attributeCompartment":{"$ref":"AAAAAAGMEn6ixS5CPd0="},"operationCompartment":{"$ref":"AAAAAAGMEn6ixS5DghU="},"receptionCompartment":{"$ref":"AAAAAAGMEn6ixS5EPSQ="},"templateParameterCompartment":{"$ref":"AAAAAAGMEn6ixS5FcmM="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEoETQ1Cv4Hw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEoETQ1CtSms="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEoETQ1CwJz4=","_parent":{"$ref":"AAAAAAGMEoETQ1Cv4Hw="},"model":{"$ref":"AAAAAAGMEoETQ1CtSms="},"visible":false,"font":"Arial;13;0","left":988,"top":1329,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEoETQ1Cv4Hw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEoETQ1CxDuc=","_parent":{"$ref":"AAAAAAGMEoETQ1Cv4Hw="},"model":{"$ref":"AAAAAAGMEoETQ1CtSms="},"visible":null,"font":"Arial;13;0","left":1003,"top":1329,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEoETQ1Cv4Hw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEoETQ1CyEKQ=","_parent":{"$ref":"AAAAAAGMEoETQ1Cv4Hw="},"model":{"$ref":"AAAAAAGMEoETQ1CtSms="},"visible":false,"font":"Arial;13;0","left":959,"top":1330,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEoETQ1Cv4Hw="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC+fb3W5F61E="},"tail":{"$ref":"AAAAAAGMEn6ixS48XmE="},"points":"945:1336;974:1336;974:1392","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEoETQ1CwJz4="},"stereotypeLabel":{"$ref":"AAAAAAGMEoETQ1CxDuc="},"propertyLabel":{"$ref":"AAAAAAGMEoETQ1CyEKQ="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEoFhrGZzN58=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEoETQ1CtSms="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEoFhrGZ0sQs=","_parent":{"$ref":"AAAAAAGMEoFhrGZzN58="},"model":{"$ref":"AAAAAAGMEoETQ1CtSms="},"visible":false,"font":"Arial;13;0","left":670,"top":1329,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEoFhrGZzN58="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEoFhrGZ1mEM=","_parent":{"$ref":"AAAAAAGMEoFhrGZzN58="},"model":{"$ref":"AAAAAAGMEoETQ1CtSms="},"visible":null,"font":"Arial;13;0","left":685,"top":1329,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEoFhrGZzN58="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEoFhrGZ2bvw=","_parent":{"$ref":"AAAAAAGMEoFhrGZzN58="},"model":{"$ref":"AAAAAAGMEoETQ1CtSms="},"visible":false,"font":"Arial;13;0","left":641,"top":1330,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEoFhrGZzN58="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDGNZDFHpsso="},"tail":{"$ref":"AAAAAAGMEn6ixS48XmE="},"points":"672:1336;656:1336;656:1384","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEoFhrGZ0sQs="},"stereotypeLabel":{"$ref":"AAAAAAGMEoFhrGZ1mEM="},"propertyLabel":{"$ref":"AAAAAAGMEoFhrGZ2bvw="}},{"_type":"UMLClassView","_id":"AAAAAAGMEoJz4YhRbp4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEoJz4YhSvUA=","_parent":{"$ref":"AAAAAAGMEoJz4YhRbp4="},"model":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEoJz4ohTQwY=","_parent":{"$ref":"AAAAAAGMEoJz4YhSvUA="},"visible":false,"font":"Arial;13;0","left":-286,"top":-156,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEoJz4ohUqkc=","_parent":{"$ref":"AAAAAAGMEoJz4YhSvUA="},"font":"Arial;13;1","left":517,"top":999,"width":307.01416015625,"height":13,"text":"ThematiqueModel"},{"_type":"LabelView","_id":"AAAAAAGMEoJz4ohVBz4=","_parent":{"$ref":"AAAAAAGMEoJz4YhSvUA="},"visible":false,"font":"Arial;13;0","left":-286,"top":-156,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEoJz4ohWC7U=","_parent":{"$ref":"AAAAAAGMEoJz4YhSvUA="},"visible":false,"font":"Arial;13;0","left":-286,"top":-156,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":512,"top":992,"width":317.01416015625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEoJz4ohTQwY="},"nameLabel":{"$ref":"AAAAAAGMEoJz4ohUqkc="},"namespaceLabel":{"$ref":"AAAAAAGMEoJz4ohVBz4="},"propertyLabel":{"$ref":"AAAAAAGMEoJz4ohWC7U="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEoJz4ohXFqs=","_parent":{"$ref":"AAAAAAGMEoJz4YhRbp4="},"model":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"font":"Arial;13;0","left":512,"top":1017,"width":317.01416015625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEoJz4ohY97I=","_parent":{"$ref":"AAAAAAGMEoJz4YhRbp4="},"model":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEoQDcY7tZpI=","_parent":{"$ref":"AAAAAAGMEoJz4ohY97I="},"model":{"$ref":"AAAAAAGMEoQDW47J95s="},"font":"Arial;13;0","left":517,"top":1032,"width":307.01416015625,"height":13,"text":"+ThematiqueModel(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEoUfUbp5FVE=","_parent":{"$ref":"AAAAAAGMEoJz4ohY97I="},"model":{"$ref":"AAAAAAGMEoUfQbpVk+4="},"font":"Arial;13;0","left":517,"top":1047,"width":307.01416015625,"height":13,"text":"+getFromId(): List","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEofk1tZPe0Q=","_parent":{"$ref":"AAAAAAGMEoJz4ohY97I="},"model":{"$ref":"AAAAAAGMEofkxtYrQP4="},"font":"Arial;13;0","left":517,"top":1062,"width":307.01416015625,"height":13,"text":"+getFromScientifique(idScientifique: int): Thematique","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEoia3e0wXqI=","_parent":{"$ref":"AAAAAAGMEoJz4ohY97I="},"model":{"$ref":"AAAAAAGMEoiapu0MbPg="},"font":"Arial;13;0","left":517,"top":1077,"width":307.01416015625,"height":13,"text":"+getAll(): List","horizontalAlignment":0}],"font":"Arial;13;0","left":512,"top":1027,"width":317.01416015625,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEoJz4ohZV/4=","_parent":{"$ref":"AAAAAAGMEoJz4YhRbp4="},"model":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"visible":false,"font":"Arial;13;0","left":-143,"top":-78,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEoJz4ohas4M=","_parent":{"$ref":"AAAAAAGMEoJz4YhRbp4="},"model":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"visible":false,"font":"Arial;13;0","left":-143,"top":-78,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":512,"top":992,"width":316.01416015625,"height":103,"nameCompartment":{"$ref":"AAAAAAGMEoJz4YhSvUA="},"attributeCompartment":{"$ref":"AAAAAAGMEoJz4ohXFqs="},"operationCompartment":{"$ref":"AAAAAAGMEoJz4ohY97I="},"receptionCompartment":{"$ref":"AAAAAAGMEoJz4ohZV/4="},"templateParameterCompartment":{"$ref":"AAAAAAGMEoJz4ohas4M="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEoSot5b0rSs=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEoSot5byPmg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEoSot5b1Bo4=","_parent":{"$ref":"AAAAAAGMEoSot5b0rSs="},"model":{"$ref":"AAAAAAGMEoSot5byPmg="},"visible":false,"font":"Arial;13;0","left":454,"top":1045,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEoSot5b0rSs="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEoSot5b2pxc=","_parent":{"$ref":"AAAAAAGMEoSot5b0rSs="},"model":{"$ref":"AAAAAAGMEoSot5byPmg="},"visible":null,"font":"Arial;13;0","left":469,"top":1045,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEoSot5b0rSs="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEoSot5b3wf0=","_parent":{"$ref":"AAAAAAGMEoSot5b0rSs="},"model":{"$ref":"AAAAAAGMEoSot5byPmg="},"visible":false,"font":"Arial;13;0","left":425,"top":1046,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEoSot5b0rSs="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDF5TZDXQeNs="},"tail":{"$ref":"AAAAAAGMEoJz4YhRbp4="},"points":"512:1052;440:1052;440:1144","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEoSot5b1Bo4="},"stereotypeLabel":{"$ref":"AAAAAAGMEoSot5b2pxc="},"propertyLabel":{"$ref":"AAAAAAGMEoSot5b3wf0="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEoTO3aNM1A4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEoSot5byPmg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEoTO3aNN1QI=","_parent":{"$ref":"AAAAAAGMEoTO3aNM1A4="},"model":{"$ref":"AAAAAAGMEoSot5byPmg="},"visible":false,"font":"Arial;13;0","left":887,"top":1045,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEoTO3aNM1A4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEoTO3aNODJk=","_parent":{"$ref":"AAAAAAGMEoTO3aNM1A4="},"model":{"$ref":"AAAAAAGMEoSot5byPmg="},"visible":null,"font":"Arial;13;0","left":902,"top":1045,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEoTO3aNM1A4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEoTO3aNPv5E=","_parent":{"$ref":"AAAAAAGMEoTO3aNM1A4="},"model":{"$ref":"AAAAAAGMEoSot5byPmg="},"visible":false,"font":"Arial;13;0","left":857,"top":1046,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEoTO3aNM1A4="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC+P422EPw/o="},"tail":{"$ref":"AAAAAAGMEoJz4YhRbp4="},"points":"828:1052;872:1052;872:1152","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEoTO3aNN1QI="},"stereotypeLabel":{"$ref":"AAAAAAGMEoTO3aNODJk="},"propertyLabel":{"$ref":"AAAAAAGMEoTO3aNPv5E="}},{"_type":"UMLClassView","_id":"AAAAAAGMEooCO/v2I5E=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEomDjPtMKWI="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEooCO/v3C+E=","_parent":{"$ref":"AAAAAAGMEooCO/v2I5E="},"model":{"$ref":"AAAAAAGMEomDjPtMKWI="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEooCO/v4viI=","_parent":{"$ref":"AAAAAAGMEooCO/v3C+E="},"visible":false,"font":"Arial;13;0","left":-250,"top":-70,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEooCO/v5y+k=","_parent":{"$ref":"AAAAAAGMEooCO/v3C+E="},"font":"Arial;13;1","left":677,"top":1559,"width":287.9775390625,"height":13,"text":"DifficulteModel"},{"_type":"LabelView","_id":"AAAAAAGMEooCO/v6HTg=","_parent":{"$ref":"AAAAAAGMEooCO/v3C+E="},"visible":false,"font":"Arial;13;0","left":-250,"top":-70,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEooCO/v7xEc=","_parent":{"$ref":"AAAAAAGMEooCO/v3C+E="},"visible":false,"font":"Arial;13;0","left":-250,"top":-70,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":672,"top":1552,"width":297.9775390625,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEooCO/v4viI="},"nameLabel":{"$ref":"AAAAAAGMEooCO/v5y+k="},"namespaceLabel":{"$ref":"AAAAAAGMEooCO/v6HTg="},"propertyLabel":{"$ref":"AAAAAAGMEooCO/v7xEc="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEooCO/v88Jw=","_parent":{"$ref":"AAAAAAGMEooCO/v2I5E="},"model":{"$ref":"AAAAAAGMEomDjPtMKWI="},"font":"Arial;13;0","left":672,"top":1577,"width":297.9775390625,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEooCO/v9quY=","_parent":{"$ref":"AAAAAAGMEooCO/v2I5E="},"model":{"$ref":"AAAAAAGMEomDjPtMKWI="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEooT+wAflvE=","_parent":{"$ref":"AAAAAAGMEooCO/v9quY="},"model":{"$ref":"AAAAAAGMEooT5//7n/0="},"font":"Arial;13;0","left":677,"top":1592,"width":287.9775390625,"height":13,"text":"+DifficulteModel(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEosJljBsqAc=","_parent":{"$ref":"AAAAAAGMEooCO/v9quY="},"model":{"$ref":"AAAAAAGMEosJhjBImhk="},"font":"Arial;13;0","left":677,"top":1607,"width":287.9775390625,"height":13,"text":"+getFromId(id: int): Difficulte","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEow6hDOP4Hg=","_parent":{"$ref":"AAAAAAGMEooCO/v9quY="},"model":{"$ref":"AAAAAAGMEow6cjNr0K8="},"font":"Arial;13;0","left":677,"top":1622,"width":287.9775390625,"height":13,"text":"+getFromScientifique(idScientifique: int): Difficulte","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEozvklP84Pk=","_parent":{"$ref":"AAAAAAGMEooCO/v9quY="},"model":{"$ref":"AAAAAAGMEozvglPYl/w="},"font":"Arial;13;0","left":677,"top":1637,"width":287.9775390625,"height":13,"text":"+getAll(): List","horizontalAlignment":0}],"font":"Arial;13;0","left":672,"top":1587,"width":297.9775390625,"height":68},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEooCO/v+7VI=","_parent":{"$ref":"AAAAAAGMEooCO/v2I5E="},"model":{"$ref":"AAAAAAGMEomDjPtMKWI="},"visible":false,"font":"Arial;13;0","left":-125,"top":-35,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEooCO/v/47g=","_parent":{"$ref":"AAAAAAGMEooCO/v2I5E="},"model":{"$ref":"AAAAAAGMEomDjPtMKWI="},"visible":false,"font":"Arial;13;0","left":-125,"top":-35,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":672,"top":1552,"width":296.9775390625,"height":103,"nameCompartment":{"$ref":"AAAAAAGMEooCO/v3C+E="},"attributeCompartment":{"$ref":"AAAAAAGMEooCO/v88Jw="},"operationCompartment":{"$ref":"AAAAAAGMEooCO/v9quY="},"receptionCompartment":{"$ref":"AAAAAAGMEooCO/v+7VI="},"templateParameterCompartment":{"$ref":"AAAAAAGMEooCO/v/47g="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEop6KQhHVIw=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEop6KAhFAvY="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEop6KQhIrHg=","_parent":{"$ref":"AAAAAAGMEop6KQhHVIw="},"model":{"$ref":"AAAAAAGMEop6KAhFAvY="},"visible":false,"font":"Arial;13;0","left":992,"top":1595,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEop6KQhHVIw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEop6KQhJd0I=","_parent":{"$ref":"AAAAAAGMEop6KQhHVIw="},"model":{"$ref":"AAAAAAGMEop6KAhFAvY="},"visible":null,"font":"Arial;13;0","left":992,"top":1580,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEop6KQhHVIw="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEop6KQhKcsY=","_parent":{"$ref":"AAAAAAGMEop6KQhHVIw="},"model":{"$ref":"AAAAAAGMEop6KAhFAvY="},"visible":false,"font":"Arial;13;0","left":992,"top":1625,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEop6KQhHVIw="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC+YI82aKmzo="},"tail":{"$ref":"AAAAAAGMEooCO/v2I5E="},"points":"969:1616;1016:1616","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEop6KQhIrHg="},"stereotypeLabel":{"$ref":"AAAAAAGMEop6KQhJd0I="},"propertyLabel":{"$ref":"AAAAAAGMEop6KQhKcsY="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEorZmSNWlMY=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEop6KAhFAvY="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEorZmSNXaHE=","_parent":{"$ref":"AAAAAAGMEorZmSNWlMY="},"model":{"$ref":"AAAAAAGMEop6KAhFAvY="},"visible":false,"font":"Arial;13;0","left":637,"top":1625,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEorZmSNWlMY="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEorZmSNYmEc=","_parent":{"$ref":"AAAAAAGMEorZmSNWlMY="},"model":{"$ref":"AAAAAAGMEop6KAhFAvY="},"visible":null,"font":"Arial;13;0","left":637,"top":1640,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEorZmSNWlMY="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEorZmSNZTuc=","_parent":{"$ref":"AAAAAAGMEorZmSNWlMY="},"model":{"$ref":"AAAAAAGMEop6KAhFAvY="},"visible":false,"font":"Arial;13;0","left":638,"top":1595,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEorZmSNWlMY="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDGYkGpB81dU="},"tail":{"$ref":"AAAAAAGMEooCO/v2I5E="},"points":"672:1616;605:1616","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEorZmSNXaHE="},"stereotypeLabel":{"$ref":"AAAAAAGMEorZmSNYmEc="},"propertyLabel":{"$ref":"AAAAAAGMEorZmSNZTuc="}},{"_type":"UMLClassView","_id":"AAAAAAGMEpN3skepdaI=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMEpN3skeqflY=","_parent":{"$ref":"AAAAAAGMEpN3skepdaI="},"model":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMEpN3skerRz8=","_parent":{"$ref":"AAAAAAGMEpN3skeqflY="},"visible":false,"font":"Arial;13;0","left":-824,"top":-120,"height":13},{"_type":"LabelView","_id":"AAAAAAGMEpN3skesZVA=","_parent":{"$ref":"AAAAAAGMEpN3skeqflY="},"font":"Arial;13;1","left":1229,"top":1327,"width":899.77099609375,"height":13,"text":"ScientifiqueModel"},{"_type":"LabelView","_id":"AAAAAAGMEpN3sketBCY=","_parent":{"$ref":"AAAAAAGMEpN3skeqflY="},"visible":false,"font":"Arial;13;0","left":-824,"top":-120,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMEpN3skeuMRM=","_parent":{"$ref":"AAAAAAGMEpN3skeqflY="},"visible":false,"font":"Arial;13;0","left":-824,"top":-120,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":1224,"top":1320,"width":909.77099609375,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMEpN3skerRz8="},"nameLabel":{"$ref":"AAAAAAGMEpN3skesZVA="},"namespaceLabel":{"$ref":"AAAAAAGMEpN3sketBCY="},"propertyLabel":{"$ref":"AAAAAAGMEpN3skeuMRM="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMEpN3skevQAw=","_parent":{"$ref":"AAAAAAGMEpN3skepdaI="},"model":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"font":"Arial;13;0","left":1224,"top":1345,"width":909.77099609375,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMEpN3skewqkA=","_parent":{"$ref":"AAAAAAGMEpN3skepdaI="},"model":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMEpObd0qptRo=","_parent":{"$ref":"AAAAAAGMEpN3skewqkA="},"model":{"$ref":"AAAAAAGMEpObYkqFlXE="},"font":"Arial;13;0","left":1229,"top":1360,"width":899.77099609375,"height":13,"text":"+ScientifiqueModel(con: Connection)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEpQQW1TB+Os=","_parent":{"$ref":"AAAAAAGMEpN3skewqkA="},"model":{"$ref":"AAAAAAGMEpQQTFSdMMo="},"font":"Arial;13;0","left":1229,"top":1375,"width":899.77099609375,"height":13,"text":"+getFromId(id: int): Scientifique","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEpSyn3eRAlc=","_parent":{"$ref":"AAAAAAGMEpN3skewqkA="},"model":{"$ref":"AAAAAAGMEpSyjndtj/Q="},"font":"Arial;13;0","left":1229,"top":1390,"width":899.77099609375,"height":13,"text":"+getRandomFromDifficulte(difficulte: Difficulte): List","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEpUDhHu6G1o=","_parent":{"$ref":"AAAAAAGMEpN3skewqkA="},"model":{"$ref":"AAAAAAGMEpUDdHuWPCk="},"font":"Arial;13;0","left":1229,"top":1405,"width":899.77099609375,"height":13,"text":"+deleteScientifique(id: int): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMEpjBja7LQNU=","_parent":{"$ref":"AAAAAAGMEpN3skewqkA="},"model":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"font":"Arial;13;0","left":1229,"top":1420,"width":899.77099609375,"height":13,"text":"+insertScientifique(nom: string, prenom: string, dateNaissance: date, descriptif: string, thematique: Thematique, sexe: Sexe, difficulte: Difficulte): Scientifique","horizontalAlignment":0}],"font":"Arial;13;0","left":1224,"top":1355,"width":909.77099609375,"height":83},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMEpN3s0exL0U=","_parent":{"$ref":"AAAAAAGMEpN3skepdaI="},"model":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"visible":false,"font":"Arial;13;0","left":-412,"top":-60,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMEpN3s0eyCQk=","_parent":{"$ref":"AAAAAAGMEpN3skepdaI="},"model":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"visible":false,"font":"Arial;13;0","left":-412,"top":-60,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":1224,"top":1320,"width":908.77099609375,"height":118,"nameCompartment":{"$ref":"AAAAAAGMEpN3skeqflY="},"attributeCompartment":{"$ref":"AAAAAAGMEpN3skevQAw="},"operationCompartment":{"$ref":"AAAAAAGMEpN3skewqkA="},"receptionCompartment":{"$ref":"AAAAAAGMEpN3s0exL0U="},"templateParameterCompartment":{"$ref":"AAAAAAGMEpN3s0eyCQk="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEpRWpF0ucL4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEpRWpF0sjxI="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEpRWpF0vkps=","_parent":{"$ref":"AAAAAAGMEpRWpF0ucL4="},"model":{"$ref":"AAAAAAGMEpRWpF0sjxI="},"visible":false,"font":"Arial;13;0","left":1649,"top":1295,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEpRWpF0ucL4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEpRWpF0w1m4=","_parent":{"$ref":"AAAAAAGMEpRWpF0ucL4="},"model":{"$ref":"AAAAAAGMEpRWpF0sjxI="},"visible":null,"font":"Arial;13;0","left":1634,"top":1295,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEpRWpF0ucL4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEpRWpF0xzFM=","_parent":{"$ref":"AAAAAAGMEpRWpF0ucL4="},"model":{"$ref":"AAAAAAGMEpRWpF0sjxI="},"visible":false,"font":"Arial;13;0","left":1678,"top":1296,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEpRWpF0ucL4="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC95HQGCp4K8="},"tail":{"$ref":"AAAAAAGMEpN3skepdaI="},"points":"1664:1320;1664:1284","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEpRWpF0vkps="},"stereotypeLabel":{"$ref":"AAAAAAGMEpRWpF0w1m4="},"propertyLabel":{"$ref":"AAAAAAGMEpRWpF0xzFM="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMEpWBPpAD/u4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMEpRWpF0sjxI="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMEpWBPpAEP4g=","_parent":{"$ref":"AAAAAAGMEpWBPpAD/u4="},"model":{"$ref":"AAAAAAGMEpRWpF0sjxI="},"visible":false,"font":"Arial;13;0","left":1678,"top":1456,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEpWBPpAD/u4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEpWBPpAFUqo=","_parent":{"$ref":"AAAAAAGMEpWBPpAD/u4="},"model":{"$ref":"AAAAAAGMEpRWpF0sjxI="},"visible":null,"font":"Arial;13;0","left":1693,"top":1456,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMEpWBPpAD/u4="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMEpWBPpAG96U=","_parent":{"$ref":"AAAAAAGMEpWBPpAD/u4="},"model":{"$ref":"AAAAAAGMEpRWpF0sjxI="},"visible":false,"font":"Arial;13;0","left":1649,"top":1457,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMEpWBPpAD/u4="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMDHI224Ty8RM="},"tail":{"$ref":"AAAAAAGMEpN3skepdaI="},"points":"1664:1438;1664:1488","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMEpWBPpAEP4g="},"stereotypeLabel":{"$ref":"AAAAAAGMEpWBPpAFUqo="},"propertyLabel":{"$ref":"AAAAAAGMEpWBPpAG96U="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMMcRT5dA76yM=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMMcRT5NA5S5g="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMMcRT5dA81G8=","_parent":{"$ref":"AAAAAAGMMcRT5dA76yM="},"model":{"$ref":"AAAAAAGMMcRT5NA5S5g="},"visible":false,"font":"Arial;13;0","left":1650,"top":1463,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMMcRT5dA76yM="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMMcRT5dA9oyQ=","_parent":{"$ref":"AAAAAAGMMcRT5dA76yM="},"model":{"$ref":"AAAAAAGMMcRT5NA5S5g="},"visible":null,"font":"Arial;13;0","left":1635,"top":1463,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMMcRT5dA76yM="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMMcRT5dA+wEs=","_parent":{"$ref":"AAAAAAGMMcRT5dA76yM="},"model":{"$ref":"AAAAAAGMMcRT5NA5S5g="},"visible":false,"font":"Arial;13;0","left":1679,"top":1464,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMMcRT5dA76yM="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEpN3skepdaI="},"tail":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"points":"2536:1470;1665:1470;1665:1438","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMMcRT5dA81G8="},"stereotypeLabel":{"$ref":"AAAAAAGMMcRT5dA9oyQ="},"propertyLabel":{"$ref":"AAAAAAGMMcRT5dA+wEs="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMMcSBJer7J1k=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMMcSBJer5hd4="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMMcSBJer8mFY=","_parent":{"$ref":"AAAAAAGMMcSBJer7J1k="},"model":{"$ref":"AAAAAAGMMcSBJer5hd4="},"visible":false,"font":"Arial;13;0","left":2686,"top":1305,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMMcSBJer7J1k="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMMcSBJer9HdA=","_parent":{"$ref":"AAAAAAGMMcSBJer7J1k="},"model":{"$ref":"AAAAAAGMMcSBJer5hd4="},"visible":null,"font":"Arial;13;0","left":2686,"top":1320,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMMcSBJer7J1k="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMMcSBJer+uSE=","_parent":{"$ref":"AAAAAAGMMcSBJer7J1k="},"model":{"$ref":"AAAAAAGMMcSBJer5hd4="},"visible":false,"font":"Arial;13;0","left":2687,"top":1275,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMMcSBJer7J1k="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMEmwSRipN88E="},"tail":{"$ref":"AAAAAAGMEdWBD1zmSGw="},"points":"2688:1408;2688:1296;2686:1296;2686:1215","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMMcSBJer8mFY="},"stereotypeLabel":{"$ref":"AAAAAAGMMcSBJer9HdA="},"propertyLabel":{"$ref":"AAAAAAGMMcSBJer+uSE="}},{"_type":"UMLClassView","_id":"AAAAAAGMNomnSTj+JP0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMNomnSTj8byw="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMNomnSTj/YMg=","_parent":{"$ref":"AAAAAAGMNomnSTj+JP0="},"model":{"$ref":"AAAAAAGMNomnSTj8byw="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMNomnSTkAYKc=","_parent":{"$ref":"AAAAAAGMNomnSTj/YMg="},"visible":false,"font":"Arial;13;0","left":-368,"top":1424,"height":13},{"_type":"LabelView","_id":"AAAAAAGMNomnSjkBvzs=","_parent":{"$ref":"AAAAAAGMNomnSTj/YMg="},"font":"Arial;13;1","left":3149,"top":2447,"width":304.875,"height":13,"text":"MdlPendu"},{"_type":"LabelView","_id":"AAAAAAGMNomnSjkCJKs=","_parent":{"$ref":"AAAAAAGMNomnSTj/YMg="},"visible":false,"font":"Arial;13;0","left":-368,"top":1424,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMNomnSjkDxfE=","_parent":{"$ref":"AAAAAAGMNomnSTj/YMg="},"visible":false,"font":"Arial;13;0","left":-368,"top":1424,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3144,"top":2440,"width":314.875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMNomnSTkAYKc="},"nameLabel":{"$ref":"AAAAAAGMNomnSjkBvzs="},"namespaceLabel":{"$ref":"AAAAAAGMNomnSjkCJKs="},"propertyLabel":{"$ref":"AAAAAAGMNomnSjkDxfE="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMNomnSjkE85A=","_parent":{"$ref":"AAAAAAGMNomnSTj+JP0="},"model":{"$ref":"AAAAAAGMNomnSTj8byw="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMNonD0DwgBnE=","_parent":{"$ref":"AAAAAAGMNomnSjkE85A="},"model":{"$ref":"AAAAAAGMNonDvjv8Vzw="},"font":"Arial;13;0","left":3149,"top":2470,"width":304.875,"height":13,"underline":true,"text":"-idJeu: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMNook4EKb4LY=","_parent":{"$ref":"AAAAAAGMNomnSjkE85A="},"model":{"$ref":"AAAAAAGMNookz0J3yD0="},"visible":false,"font":"Arial;13;0","left":3045,"top":3229,"width":280.31591796875,"height":13,"text":"-scientifique: Scientifique","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMNopkkkV4p+E=","_parent":{"$ref":"AAAAAAGMNomnSjkE85A="},"model":{"$ref":"AAAAAAGMNopkhUVUh1A="},"font":"Arial;13;0","left":3149,"top":2485,"width":304.875,"height":13,"text":"-nbErreur: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMNoqCg0bqzig=","_parent":{"$ref":"AAAAAAGMNomnSjkE85A="},"model":{"$ref":"AAAAAAGMNoqCdEbGUMg="},"font":"Arial;13;0","left":3149,"top":2500,"width":304.875,"height":13,"text":"-nbTours: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMNo0O03G1MtE=","_parent":{"$ref":"AAAAAAGMNomnSjkE85A="},"model":{"$ref":"AAAAAAGMNo0OxHGRHKw="},"font":"Arial;13;0","left":3149,"top":2515,"width":304.875,"height":13,"text":"-lettres: array","horizontalAlignment":0}],"font":"Arial;13;0","left":3144,"top":2465,"width":314.875,"height":68},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMNomnSjkFXS4=","_parent":{"$ref":"AAAAAAGMNomnSTj+JP0="},"model":{"$ref":"AAAAAAGMNomnSTj8byw="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMNorZbUxcqc0=","_parent":{"$ref":"AAAAAAGMNomnSjkFXS4="},"model":{"$ref":"AAAAAAGMNorZX0w45SI="},"font":"Arial;13;0","left":3149,"top":2538,"width":304.875,"height":13,"text":"+MdlPendu(joueur: Joueur, scientifique: Scientifique)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMNotf1mJup/k=","_parent":{"$ref":"AAAAAAGMNomnSjkFXS4="},"model":{"$ref":"AAAAAAGMNotfyGJKbvs="},"font":"Arial;13;0","left":3149,"top":2553,"width":304.875,"height":13,"text":"+jouer(lettre: char): String","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMNowg+2n2JHU=","_parent":{"$ref":"AAAAAAGMNomnSjkFXS4="},"model":{"$ref":"AAAAAAGMNowg7mnSju8="},"font":"Arial;13;0","left":3149,"top":2568,"width":304.875,"height":13,"text":"+aGagne(): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMNox1omuLfl4=","_parent":{"$ref":"AAAAAAGMNomnSjkFXS4="},"model":{"$ref":"AAAAAAGMNox1lmtnw2Q="},"font":"Arial;13;0","left":3149,"top":2583,"width":304.875,"height":13,"text":"+aPerdu(): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMNoyXem0gPkA=","_parent":{"$ref":"AAAAAAGMNomnSjkFXS4="},"model":{"$ref":"AAAAAAGMNoyXbGz8j2I="},"font":"Arial;13;0","left":3149,"top":2598,"width":304.875,"height":13,"text":"+getMot(): String","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMNozoo2613iQ=","_parent":{"$ref":"AAAAAAGMNomnSjkFXS4="},"model":{"$ref":"AAAAAAGMNozomG6RGno="},"font":"Arial;13;0","left":3149,"top":2613,"width":304.875,"height":13,"text":"+getDecouvert(): String","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMNo31GHrF4uo=","_parent":{"$ref":"AAAAAAGMNomnSjkFXS4="},"model":{"$ref":"AAAAAAGMNo31DHqh2VY="},"font":"Arial;13;0","left":3149,"top":2628,"width":304.875,"height":13,"text":"+getScientifique(): Scientifique","horizontalAlignment":0}],"font":"Arial;13;0","left":3144,"top":2533,"width":314.875,"height":113},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMNomnSjkG6vg=","_parent":{"$ref":"AAAAAAGMNomnSTj+JP0="},"model":{"$ref":"AAAAAAGMNomnSTj8byw="},"visible":false,"font":"Arial;13;0","left":-184,"top":712,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMNomnSjkHVdE=","_parent":{"$ref":"AAAAAAGMNomnSTj+JP0="},"model":{"$ref":"AAAAAAGMNomnSTj8byw="},"visible":false,"font":"Arial;13;0","left":-184,"top":712,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3144,"top":2440,"width":313.875,"height":221,"nameCompartment":{"$ref":"AAAAAAGMNomnSTj/YMg="},"attributeCompartment":{"$ref":"AAAAAAGMNomnSjkE85A="},"operationCompartment":{"$ref":"AAAAAAGMNomnSjkFXS4="},"receptionCompartment":{"$ref":"AAAAAAGMNomnSjkG6vg="},"templateParameterCompartment":{"$ref":"AAAAAAGMNomnSjkHVdE="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMNo+gjsYXlxs=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMNo+gjcYT//U="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYY5dM=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYT//U="},"font":"Arial;13;0","left":2199,"top":1905,"width":69.3671875,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"edgePosition":1,"text":"-scientifique"},{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYZ9pk=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYT//U="},"visible":null,"font":"Arial;13;0","left":2218,"top":1905,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYacC0=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYT//U="},"visible":false,"font":"Arial;13;0","left":2263,"top":1906,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYbdKE=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYUK64="},"visible":false,"font":"Arial;13;0","left":3118,"top":2616,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYc9Lk=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYUK64="},"visible":false,"font":"Arial;13;0","left":3115,"top":2630,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYdPcQ=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYUK64="},"font":"Arial;13;0","left":3113,"top":2589,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYeqnM=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYVYU8="},"visible":false,"font":"Arial;13;0","left":2182,"top":1224,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYfXjc=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYVYU8="},"visible":false,"font":"Arial;13;0","left":2185,"top":1238,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMNo+gjsYgva4=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYVYU8="},"font":"Arial;13;0","left":2175,"top":1197,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMNo+gjsYhIAA=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYUK64="},"visible":false,"font":"Arial;13;0","width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMNo+gjsYim6Y=","_parent":{"$ref":"AAAAAAGMNo+gjsYXlxs="},"model":{"$ref":"AAAAAAGMNo+gjcYVYU8="},"visible":false,"font":"Arial;13;0","width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC95HQGCp4K8="},"tail":{"$ref":"AAAAAAGMNomnSTj+JP0="},"points":"3144:2608;2248:2608;2248:1216;2157:1216","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMNo+gjsYY5dM="},"stereotypeLabel":{"$ref":"AAAAAAGMNo+gjsYZ9pk="},"propertyLabel":{"$ref":"AAAAAAGMNo+gjsYacC0="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMNo+gjsYbdKE="},"tailPropertyLabel":{"$ref":"AAAAAAGMNo+gjsYc9Lk="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMNo+gjsYdPcQ="},"headRoleNameLabel":{"$ref":"AAAAAAGMNo+gjsYeqnM="},"headPropertyLabel":{"$ref":"AAAAAAGMNo+gjsYfXjc="},"headMultiplicityLabel":{"$ref":"AAAAAAGMNo+gjsYgva4="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMNo+gjsYhIAA="},"headQualifiersCompartment":{"$ref":"AAAAAAGMNo+gjsYim6Y="}},{"_type":"UMLClassView","_id":"AAAAAAGMO2P4ZEigaU8=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO2P4ZEihJTs=","_parent":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"model":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO2P4ZEiiZZg=","_parent":{"$ref":"AAAAAAGMO2P4ZEihJTs="},"visible":false,"font":"Arial;13;0","left":-284,"top":-98,"height":13},{"_type":"LabelView","_id":"AAAAAAGMO2P4ZEijj3M=","_parent":{"$ref":"AAAAAAGMO2P4ZEihJTs="},"font":"Arial;13;1","left":2437,"top":2351,"width":429.873046875,"height":13,"text":"MdlQuiEstCe"},{"_type":"LabelView","_id":"AAAAAAGMO2P4ZEikqbk=","_parent":{"$ref":"AAAAAAGMO2P4ZEihJTs="},"visible":false,"font":"Arial;13;0","left":-284,"top":-98,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO2P4ZEil8qE=","_parent":{"$ref":"AAAAAAGMO2P4ZEihJTs="},"visible":false,"font":"Arial;13;0","left":-284,"top":-98,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2432,"top":2344,"width":439.873046875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO2P4ZEiiZZg="},"nameLabel":{"$ref":"AAAAAAGMO2P4ZEijj3M="},"namespaceLabel":{"$ref":"AAAAAAGMO2P4ZEikqbk="},"propertyLabel":{"$ref":"AAAAAAGMO2P4ZEil8qE="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO2P4ZEimwGw=","_parent":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"model":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMO2P4ekkzICA=","_parent":{"$ref":"AAAAAAGMO2P4ZEimwGw="},"model":{"$ref":"AAAAAAGMO2Pxy0hCMOQ="},"font":"Arial;13;0","left":2437,"top":2374,"width":429.873046875,"height":13,"underline":true,"text":"-idJeu: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMO2P4e0k8Uos=","_parent":{"$ref":"AAAAAAGMO2P4ZEimwGw="},"model":{"$ref":"AAAAAAGMO2Pxy0hFUUM="},"visible":false,"font":"Arial;13;0","left":2245,"top":2580,"width":406.0439453125,"height":13,"text":"-nbTours: int","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMO4ZYKj9hHg8=","_parent":{"$ref":"AAAAAAGMO2P4ZEimwGw="},"model":{"$ref":"AAAAAAGMO4ZX9D83Zww="},"font":"Arial;13;0","left":2437,"top":2389,"width":429.873046875,"height":13,"text":"-scientifiqueTrouve: bool","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMO4eWfGTTx+g=","_parent":{"$ref":"AAAAAAGMO2P4ZEimwGw="},"model":{"$ref":"AAAAAAGMO4eWamSpzZs="},"font":"Arial;13;0","left":2437,"top":2404,"width":429.873046875,"height":13,"text":"-partieAbandonnee: bool","horizontalAlignment":0}],"font":"Arial;13;0","left":2432,"top":2369,"width":439.873046875,"height":53},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO2P4ZEintSs=","_parent":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"model":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO2P4e0lCO/0=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO2Pxy0hHRfM="},"font":"Arial;13;0","left":2437,"top":2427,"width":429.873046875,"height":13,"text":"+MdlQuiEstCe(joueurA: Joueur, joueurB: Joueur, scientifique: Scientifique)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO2P4e0lFNaM=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO2Pxy0hKb1U="},"font":"Arial;13;0","left":2437,"top":2442,"width":429.873046875,"height":13,"text":"+jouer(question: String)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO2P4e0lIkbA=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO2Pxy0hNFPc="},"font":"Arial;13;0","left":2437,"top":2457,"width":429.873046875,"height":13,"text":"+jouer(reponse: bool)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO2P4e0lOPNE=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO2Pxy0hRMmc="},"font":"Arial;13;0","left":2437,"top":2472,"width":429.873046875,"height":13,"text":"+aGagne(): bool","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO2P4fElRKaQ=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO2Pxy0hTrGc="},"visible":false,"font":"Arial;13;0","left":2237,"top":2702,"width":406.0439453125,"height":13,"text":"+getDecouvert(): String","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO2P4fElUPKk=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO2Pxy0hVnUU="},"font":"Arial;13;0","left":2437,"top":2487,"width":429.873046875,"height":13,"text":"+getScientifique(): Scientifique","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO4WSBzcfD4M=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO4WR8zb1ThQ="},"font":"Arial;13;0","left":2437,"top":2502,"width":429.873046875,"height":13,"text":"+abandonner()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO4X4kzu+bZ8=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO4X4fjuULBI="},"font":"Arial;13;0","left":2437,"top":2517,"width":429.873046875,"height":13,"text":"+scientifiqueTrouve()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO9rzORIo7n0=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO9rzIhIBKt4="},"font":"Arial;13;0","left":2437,"top":2532,"width":429.873046875,"height":13,"text":"+getGagnant(): Joueur","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO9sf7xSVdMY=","_parent":{"$ref":"AAAAAAGMO2P4ZEintSs="},"model":{"$ref":"AAAAAAGMO9sf3xRuJ2Q="},"font":"Arial;13;0","left":2437,"top":2547,"width":429.873046875,"height":13,"text":"+getPerdant(): Joueur","horizontalAlignment":0}],"font":"Arial;13;0","left":2432,"top":2422,"width":439.873046875,"height":143},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO2P4ZEioGLw=","_parent":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"model":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"visible":false,"font":"Arial;13;0","left":-270,"top":7,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO2P4ZEip61w=","_parent":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"model":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"visible":false,"font":"Arial;13;0","left":-270,"top":7,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2432,"top":2344,"width":438.873046875,"height":221,"nameCompartment":{"$ref":"AAAAAAGMO2P4ZEihJTs="},"attributeCompartment":{"$ref":"AAAAAAGMO2P4ZEimwGw="},"operationCompartment":{"$ref":"AAAAAAGMO2P4ZEintSs="},"receptionCompartment":{"$ref":"AAAAAAGMO2P4ZEioGLw="},"templateParameterCompartment":{"$ref":"AAAAAAGMO2P4ZEip61w="}},{"_type":"UMLClassView","_id":"AAAAAAGMO5RSYRuVA+8=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO5RSYRuWL+Q=","_parent":{"$ref":"AAAAAAGMO5RSYRuVA+8="},"model":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO5RSYRuXcH0=","_parent":{"$ref":"AAAAAAGMO5RSYRuWL+Q="},"visible":false,"font":"Arial;13;0","left":224,"top":-1152,"height":13},{"_type":"LabelView","_id":"AAAAAAGMO5RSYRuYOFc=","_parent":{"$ref":"AAAAAAGMO5RSYRuWL+Q="},"font":"Arial;13;1","left":3557,"top":1559,"width":267.2841796875,"height":13,"text":"Configuration"},{"_type":"LabelView","_id":"AAAAAAGMO5RSYRuZey4=","_parent":{"$ref":"AAAAAAGMO5RSYRuWL+Q="},"visible":false,"font":"Arial;13;0","left":224,"top":-1152,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO5RSYRua6RM=","_parent":{"$ref":"AAAAAAGMO5RSYRuWL+Q="},"visible":false,"font":"Arial;13;0","left":224,"top":-1152,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3552,"top":1552,"width":277.2841796875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO5RSYRuXcH0="},"nameLabel":{"$ref":"AAAAAAGMO5RSYRuYOFc="},"namespaceLabel":{"$ref":"AAAAAAGMO5RSYRuZey4="},"propertyLabel":{"$ref":"AAAAAAGMO5RSYRua6RM="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO5RSYRubZvQ=","_parent":{"$ref":"AAAAAAGMO5RSYRuVA+8="},"model":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMO5cjGFhS9wc=","_parent":{"$ref":"AAAAAAGMO5RSYRubZvQ="},"model":{"$ref":"AAAAAAGMO5cjAlglHQo="},"font":"Arial;13;0","left":3557,"top":1582,"width":267.2841796875,"height":13,"text":"-difficultes: array","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMO5dVt14Z/do=","_parent":{"$ref":"AAAAAAGMO5RSYRubZvQ="},"model":{"$ref":"AAAAAAGMO5dVo13sFuQ="},"font":"Arial;13;0","left":3557,"top":1597,"width":267.2841796875,"height":13,"text":"-thematiques: array","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMO5d+AGG8Fgw=","_parent":{"$ref":"AAAAAAGMO5RSYRubZvQ="},"model":{"$ref":"AAAAAAGMO5d97mGPQRo="},"font":"Arial;13;0","left":3557,"top":1612,"width":267.2841796875,"height":13,"text":"-scientifique: Scientifique","horizontalAlignment":0}],"font":"Arial;13;0","left":3552,"top":1577,"width":277.2841796875,"height":53},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO5RSYRucNC4=","_parent":{"$ref":"AAAAAAGMO5RSYRuVA+8="},"model":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO5UctT0Vbm0=","_parent":{"$ref":"AAAAAAGMO5RSYRucNC4="},"model":{"$ref":"AAAAAAGMO5UcojzoEGI="},"font":"Arial;13;0","left":3557,"top":1635,"width":267.2841796875,"height":13,"text":"+Configuration()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO5VgzUiYNWs=","_parent":{"$ref":"AAAAAAGMO5RSYRucNC4="},"model":{"$ref":"AAAAAAGMO5Vgt0hrOYc="},"font":"Arial;13;0","left":3557,"top":1650,"width":267.2841796875,"height":13,"text":"+selectionnerDifficulte(): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO5XSBE05i38=","_parent":{"$ref":"AAAAAAGMO5RSYRucNC4="},"model":{"$ref":"AAAAAAGMO5XR800M6yk="},"font":"Arial;13;0","left":3557,"top":1665,"width":267.2841796875,"height":13,"text":"+selectionnerThematique(): array","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO5YDplFcVTI=","_parent":{"$ref":"AAAAAAGMO5RSYRucNC4="},"model":{"$ref":"AAAAAAGMO5YDk1Ev+rg="},"font":"Arial;13;0","left":3557,"top":1680,"width":267.2841796875,"height":13,"text":"+selectionnerScientifique(): Scientifique","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO5bPz1UrG+g=","_parent":{"$ref":"AAAAAAGMO5RSYRucNC4="},"model":{"$ref":"AAAAAAGMO5bPvlT+Z6o="},"font":"Arial;13;0","left":3557,"top":1695,"width":267.2841796875,"height":13,"text":"+tirageAleratoire(): Scientifique","horizontalAlignment":0}],"font":"Arial;13;0","left":3552,"top":1630,"width":277.2841796875,"height":83},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO5RSYRudHes=","_parent":{"$ref":"AAAAAAGMO5RSYRuVA+8="},"model":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"visible":false,"font":"Arial;13;0","left":112,"top":-576,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO5RSYRuecpc=","_parent":{"$ref":"AAAAAAGMO5RSYRuVA+8="},"model":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"visible":false,"font":"Arial;13;0","left":112,"top":-576,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3552,"top":1552,"width":276.2841796875,"height":161,"nameCompartment":{"$ref":"AAAAAAGMO5RSYRuWL+Q="},"attributeCompartment":{"$ref":"AAAAAAGMO5RSYRubZvQ="},"operationCompartment":{"$ref":"AAAAAAGMO5RSYRucNC4="},"receptionCompartment":{"$ref":"AAAAAAGMO5RSYRudHes="},"templateParameterCompartment":{"$ref":"AAAAAAGMO5RSYRuecpc="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMO51KeKzIhfA=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO51KeKzErwQ="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzJSF4=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzErwQ="},"visible":false,"font":"Arial;13;0","left":2265,"top":1821,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzKW8I=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzErwQ="},"visible":null,"font":"Arial;13;0","left":2250,"top":1821,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzLj/I=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzErwQ="},"visible":false,"font":"Arial;13;0","left":2295,"top":1822,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzMr08=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzFQUU="},"visible":false,"font":"Arial;13;0","left":2406,"top":2448,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzNxZ4=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzFQUU="},"visible":false,"font":"Arial;13;0","left":2403,"top":2462,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzOlD8=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzFQUU="},"font":"Arial;13;0","left":2401,"top":2421,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzPvpY=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzGr44="},"visible":false,"font":"Arial;13;0","left":2182,"top":1224,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzQwPk=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzGr44="},"visible":false,"font":"Arial;13;0","left":2185,"top":1238,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO51KeKzRT4o=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzGr44="},"visible":false,"font":"Arial;13;0","left":2178,"top":1197,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO51KeKzIhfA="}},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO51KeKzSf40=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzFQUU="},"visible":false,"font":"Arial;13;0","width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO51KeazTLMU=","_parent":{"$ref":"AAAAAAGMO51KeKzIhfA="},"model":{"$ref":"AAAAAAGMO51KeKzGr44="},"visible":false,"font":"Arial;13;0","width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC95HQGCp4K8="},"tail":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"points":"2432:2440;2280:2440;2280:1216;2157:1216","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO51KeKzJSF4="},"stereotypeLabel":{"$ref":"AAAAAAGMO51KeKzKW8I="},"propertyLabel":{"$ref":"AAAAAAGMO51KeKzLj/I="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMO51KeKzMr08="},"tailPropertyLabel":{"$ref":"AAAAAAGMO51KeKzNxZ4="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMO51KeKzOlD8="},"headRoleNameLabel":{"$ref":"AAAAAAGMO51KeKzPvpY="},"headPropertyLabel":{"$ref":"AAAAAAGMO51KeKzQwPk="},"headMultiplicityLabel":{"$ref":"AAAAAAGMO51KeKzRT4o="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMO51KeKzSf40="},"headQualifiersCompartment":{"$ref":"AAAAAAGMO51KeazTLMU="}},{"_type":"UMLClassView","_id":"AAAAAAGMO8acZedOXlU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO8acZOdM0GU="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO8acZedPiOg=","_parent":{"$ref":"AAAAAAGMO8acZedOXlU="},"model":{"$ref":"AAAAAAGMO8acZOdM0GU="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO8acZedQ1bk=","_parent":{"$ref":"AAAAAAGMO8acZedPiOg="},"font":"Arial;13;0","left":2589,"top":2021,"width":462.41748046875,"height":13,"text":"«interface»"},{"_type":"LabelView","_id":"AAAAAAGMO8acZedRbQw=","_parent":{"$ref":"AAAAAAGMO8acZedPiOg="},"font":"Arial;13;1","left":2589,"top":2036,"width":462.41748046875,"height":13,"text":"JeuUnContreUn"},{"_type":"LabelView","_id":"AAAAAAGMO8acZedS0Yk=","_parent":{"$ref":"AAAAAAGMO8acZedPiOg="},"visible":false,"font":"Arial;13;0","left":-848,"top":144,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO8acZedTmws=","_parent":{"$ref":"AAAAAAGMO8acZedPiOg="},"visible":false,"font":"Arial;13;0","left":-848,"top":144,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2584,"top":2016,"width":472.41748046875,"height":38,"stereotypeLabel":{"$ref":"AAAAAAGMO8acZedQ1bk="},"nameLabel":{"$ref":"AAAAAAGMO8acZedRbQw="},"namespaceLabel":{"$ref":"AAAAAAGMO8acZedS0Yk="},"propertyLabel":{"$ref":"AAAAAAGMO8acZedTmws="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO8acZedUc/Y=","_parent":{"$ref":"AAAAAAGMO8acZedOXlU="},"model":{"$ref":"AAAAAAGMO8acZOdM0GU="},"subViews":[{"_type":"UMLAttributeView","_id":"AAAAAAGMO8h9vPfDubc=","_parent":{"$ref":"AAAAAAGMO8acZedUc/Y="},"model":{"$ref":"AAAAAAGMO8h9rveWhiI="},"visible":false,"font":"Arial;13;0","left":2165,"top":2118,"width":300.533203125,"height":13,"text":"+Attribute1","horizontalAlignment":0},{"_type":"UMLAttributeView","_id":"AAAAAAGMO+QyPJ7ST4c=","_parent":{"$ref":"AAAAAAGMO8acZedUc/Y="},"model":{"$ref":"AAAAAAGMO+QyLZ6lqx8="},"visible":false,"font":"Arial;13;0","left":2589,"top":2048,"width":446.51025390625,"height":13,"text":"-configuration: Configuration","horizontalAlignment":0}],"font":"Arial;13;0","left":2584,"top":2054,"width":472.41748046875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO8acZedV2QM=","_parent":{"$ref":"AAAAAAGMO8acZedOXlU="},"model":{"$ref":"AAAAAAGMO8acZOdM0GU="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO8caI+2MVGU=","_parent":{"$ref":"AAAAAAGMO8acZedV2QM="},"model":{"$ref":"AAAAAAGMO8caEu1flY8="},"font":"Arial;13;0","left":2589,"top":2069,"width":462.41748046875,"height":13,"text":"+JeuUnContreUn(joueurA: Joueur, joueurB: Joueur, configuration Configuration)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+Hp+y/4v/k=","_parent":{"$ref":"AAAAAAGMO8acZedV2QM="},"model":{"$ref":"AAAAAAGMO+Hp7C/LSLg="},"visible":false,"font":"Arial;13;0","left":2589,"top":2086,"width":446.51025390625,"height":13,"text":"+configurer(): Configuration","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+QFcprN9io=","_parent":{"$ref":"AAAAAAGMO8acZedV2QM="},"model":{"$ref":"AAAAAAGMO+QFYpqg6s0="},"visible":false,"font":"Arial;13;0","left":2589,"top":2086,"width":446.51025390625,"height":13,"text":"+Operation1()","horizontalAlignment":0}],"font":"Arial;13;0","left":2584,"top":2064,"width":472.41748046875,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO8acZedWLMU=","_parent":{"$ref":"AAAAAAGMO8acZedOXlU="},"model":{"$ref":"AAAAAAGMO8acZOdM0GU="},"visible":false,"font":"Arial;13;0","left":-424,"top":72,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO8acZedXZ/o=","_parent":{"$ref":"AAAAAAGMO8acZedOXlU="},"model":{"$ref":"AAAAAAGMO8acZOdM0GU="},"visible":false,"font":"Arial;13;0","left":-424,"top":72,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2584,"top":2016,"width":471.41748046875,"height":80,"nameCompartment":{"$ref":"AAAAAAGMO8acZedPiOg="},"attributeCompartment":{"$ref":"AAAAAAGMO8acZedUc/Y="},"operationCompartment":{"$ref":"AAAAAAGMO8acZedV2QM="},"receptionCompartment":{"$ref":"AAAAAAGMO8acZedWLMU="},"templateParameterCompartment":{"$ref":"AAAAAAGMO8acZedXZ/o="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMO8mpEmdp0G0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO8mpEmdlh60="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdqCf8=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdlh60="},"font":"Arial;13;0","left":2319,"top":1105,"width":49.13720703125,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"edgePosition":1,"text":"-joueurA"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdrz1M=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdlh60="},"visible":null,"font":"Arial;13;0","left":2343,"top":1120,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdsCeU=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdlh60="},"visible":false,"font":"Arial;13;0","left":2344,"top":1075,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdtItQ=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdmTYU="},"visible":false,"font":"Arial;13;0","left":2406,"top":2448,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdum/4=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdmTYU="},"visible":false,"font":"Arial;13;0","left":2403,"top":2462,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdvUy8=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdmTYU="},"font":"Arial;13;0","left":2401,"top":2421,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdw8N4=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdnDDo="},"visible":false,"font":"Arial;13;0","left":2113,"top":681,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdx+XM=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdnDDo="},"visible":false,"font":"Arial;13;0","left":2099,"top":684,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8mpEmdyXbI=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdnDDo="},"font":"Arial;13;0","left":2137,"top":677,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO8mpEmdzzQQ=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdmTYU="},"visible":false,"font":"Arial;13;0","width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO8mpEmd0gNw=","_parent":{"$ref":"AAAAAAGMO8mpEmdp0G0="},"model":{"$ref":"AAAAAAGMO8mpEmdnDDo="},"visible":false,"font":"Arial;13;0","width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC/AivaOOebM="},"tail":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"points":"2432:2440;2344:2440;2344:1096;2128:1096;2128:662","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO8mpEmdqCf8="},"stereotypeLabel":{"$ref":"AAAAAAGMO8mpEmdrz1M="},"propertyLabel":{"$ref":"AAAAAAGMO8mpEmdsCeU="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMO8mpEmdtItQ="},"tailPropertyLabel":{"$ref":"AAAAAAGMO8mpEmdum/4="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMO8mpEmdvUy8="},"headRoleNameLabel":{"$ref":"AAAAAAGMO8mpEmdw8N4="},"headPropertyLabel":{"$ref":"AAAAAAGMO8mpEmdx+XM="},"headMultiplicityLabel":{"$ref":"AAAAAAGMO8mpEmdyXbI="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMO8mpEmdzzQQ="},"headQualifiersCompartment":{"$ref":"AAAAAAGMO8mpEmd0gNw="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMO8nTkXOSNiE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO8nTkXOOE6o="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXOTbsg=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOOE6o="},"font":"Arial;13;0","left":2293,"top":1121,"width":53,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"edgePosition":1,"text":"-joueurB"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXOUhw4=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOOE6o="},"visible":null,"font":"Arial;13;0","left":2319,"top":1136,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXOV2NU=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOOE6o="},"visible":false,"font":"Arial;13;0","left":2320,"top":1091,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXOWxWs=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOPiSo="},"visible":false,"font":"Arial;13;0","left":2406,"top":2448,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXOXEyE=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOPiSo="},"visible":false,"font":"Arial;13;0","left":2403,"top":2462,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXOYeEM=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOPiSo="},"font":"Arial;13;0","left":2401,"top":2421,"width":19.5126953125,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"edgePosition":2,"text":"0..*"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXOZUuI=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOQmHM="},"visible":false,"font":"Arial;13;0","left":2097,"top":681,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXOadlA=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOQmHM="},"visible":false,"font":"Arial;13;0","left":2083,"top":684,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO8nTkXObxGM=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOQmHM="},"font":"Arial;13;0","left":2121,"top":677,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO8nTkXOcdiI=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOPiSo="},"visible":false,"font":"Arial;13;0","width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO8nTkXOdrsM=","_parent":{"$ref":"AAAAAAGMO8nTkXOSNiE="},"model":{"$ref":"AAAAAAGMO8nTkXOQmHM="},"visible":false,"font":"Arial;13;0","width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMC/AivaOOebM="},"tail":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"points":"2432:2440;2320:2440;2320:1112;2112:1112;2112:662","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO8nTkXOTbsg="},"stereotypeLabel":{"$ref":"AAAAAAGMO8nTkXOUhw4="},"propertyLabel":{"$ref":"AAAAAAGMO8nTkXOV2NU="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMO8nTkXOWxWs="},"tailPropertyLabel":{"$ref":"AAAAAAGMO8nTkXOXEyE="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMO8nTkXOYeEM="},"headRoleNameLabel":{"$ref":"AAAAAAGMO8nTkXOZUuI="},"headPropertyLabel":{"$ref":"AAAAAAGMO8nTkXOadlA="},"headMultiplicityLabel":{"$ref":"AAAAAAGMO8nTkXObxGM="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMO8nTkXOcdiI="},"headQualifiersCompartment":{"$ref":"AAAAAAGMO8nTkXOdrsM="}},{"_type":"UMLInterfaceView","_id":"AAAAAAGMO84v21q/9K4=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO84v21q94io="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO84v21rAD9Y=","_parent":{"$ref":"AAAAAAGMO84v21q/9K4="},"model":{"$ref":"AAAAAAGMO84v21q94io="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO84v21rB7Dc=","_parent":{"$ref":"AAAAAAGMO84v21rAD9Y="},"visible":false,"font":"Arial;13;0","left":-304,"top":-144,"width":64.32080078125,"height":13,"text":"«interface»"},{"_type":"LabelView","_id":"AAAAAAGMO84v21rCeTg=","_parent":{"$ref":"AAAAAAGMO84v21rAD9Y="},"font":"Arial;13;1","left":2773,"top":1807,"width":123.47802734375,"height":13,"text":"Prochain tour"},{"_type":"LabelView","_id":"AAAAAAGMO84v21rDQMA=","_parent":{"$ref":"AAAAAAGMO84v21rAD9Y="},"visible":false,"font":"Arial;13;0","left":-304,"top":-144,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO84v21rEubM=","_parent":{"$ref":"AAAAAAGMO84v21rAD9Y="},"visible":false,"font":"Arial;13;0","left":-304,"top":-144,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2768,"top":1800,"width":133.47802734375,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO84v21rB7Dc="},"nameLabel":{"$ref":"AAAAAAGMO84v21rCeTg="},"namespaceLabel":{"$ref":"AAAAAAGMO84v21rDQMA="},"propertyLabel":{"$ref":"AAAAAAGMO84v21rEubM="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO84v21rFDjA=","_parent":{"$ref":"AAAAAAGMO84v21q/9K4="},"model":{"$ref":"AAAAAAGMO84v21q94io="},"visible":false,"font":"Arial;13;0","left":-152,"top":-72,"width":10,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO84v21rGDBA=","_parent":{"$ref":"AAAAAAGMO84v21q/9K4="},"model":{"$ref":"AAAAAAGMO84v21q94io="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO85WQl2Lscw=","_parent":{"$ref":"AAAAAAGMO84v21rGDBA="},"model":{"$ref":"AAAAAAGMO85WMV1YY5U="},"font":"Arial;13;0","left":2773,"top":1830,"width":123.47802734375,"height":13,"text":"+prochainTour(): void","horizontalAlignment":0}],"font":"Arial;13;0","left":2768,"top":1825,"width":133.47802734375,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO84v3FrHD5Y=","_parent":{"$ref":"AAAAAAGMO84v21q/9K4="},"model":{"$ref":"AAAAAAGMO84v21q94io="},"visible":false,"font":"Arial;13;0","left":-152,"top":-72,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO84v3FrIa+E=","_parent":{"$ref":"AAAAAAGMO84v21q/9K4="},"model":{"$ref":"AAAAAAGMO84v21q94io="},"visible":false,"font":"Arial;13;0","left":-152,"top":-72,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2768,"top":1776,"width":132.47802734375,"height":72,"stereotypeDisplay":"icon","nameCompartment":{"$ref":"AAAAAAGMO84v21rAD9Y="},"suppressAttributes":true,"attributeCompartment":{"$ref":"AAAAAAGMO84v21rFDjA="},"operationCompartment":{"$ref":"AAAAAAGMO84v21rGDBA="},"receptionCompartment":{"$ref":"AAAAAAGMO84v3FrHD5Y="},"templateParameterCompartment":{"$ref":"AAAAAAGMO84v3FrIa+E="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO86wPmr6/Cs=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO86wPmr5mBU="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO86wPmr7o/E=","_parent":{"$ref":"AAAAAAGMO86wPmr6/Cs="},"model":{"$ref":"AAAAAAGMO86wPmr5mBU="},"visible":false,"font":"Arial;13;0","left":2819,"top":1901,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO86wPmr6/Cs="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO86wPmr8h0A=","_parent":{"$ref":"AAAAAAGMO86wPmr6/Cs="},"model":{"$ref":"AAAAAAGMO86wPmr5mBU="},"visible":null,"font":"Arial;13;0","left":2804,"top":1901,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO86wPmr6/Cs="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO86wPmr9wfI=","_parent":{"$ref":"AAAAAAGMO86wPmr6/Cs="},"model":{"$ref":"AAAAAAGMO86wPmr5mBU="},"visible":false,"font":"Arial;13;0","left":2849,"top":1902,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO86wPmr6/Cs="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO84v21q/9K4="},"tail":{"$ref":"AAAAAAGMO8acZedOXlU="},"points":"2834:2016;2834:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO86wPmr7o/E="},"stereotypeLabel":{"$ref":"AAAAAAGMO86wPmr8h0A="},"propertyLabel":{"$ref":"AAAAAAGMO86wPmr9wfI="}},{"_type":"UMLInterfaceView","_id":"AAAAAAGMO9JK8w+2+dU=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9JK8w+0cS0="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO9JK8w+3m6c=","_parent":{"$ref":"AAAAAAGMO9JK8w+2+dU="},"model":{"$ref":"AAAAAAGMO9JK8w+0cS0="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO9JK8w+4+0o=","_parent":{"$ref":"AAAAAAGMO9JK8w+3m6c="},"visible":false,"font":"Arial;13;0","left":448,"width":64.32080078125,"height":13,"text":"«interface»"},{"_type":"LabelView","_id":"AAAAAAGMO9JK8w+5klQ=","_parent":{"$ref":"AAAAAAGMO9JK8w+3m6c="},"font":"Arial;13;1","left":2917,"top":1807,"width":128.537109375,"height":13,"text":"Gagnants"},{"_type":"LabelView","_id":"AAAAAAGMO9JK8w+6U2U=","_parent":{"$ref":"AAAAAAGMO9JK8w+3m6c="},"visible":false,"font":"Arial;13;0","left":448,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO9JK8w+7p8o=","_parent":{"$ref":"AAAAAAGMO9JK8w+3m6c="},"visible":false,"font":"Arial;13;0","left":448,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2912,"top":1800,"width":138.537109375,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO9JK8w+4+0o="},"nameLabel":{"$ref":"AAAAAAGMO9JK8w+5klQ="},"namespaceLabel":{"$ref":"AAAAAAGMO9JK8w+6U2U="},"propertyLabel":{"$ref":"AAAAAAGMO9JK8w+7p8o="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO9JK8w+82go=","_parent":{"$ref":"AAAAAAGMO9JK8w+2+dU="},"model":{"$ref":"AAAAAAGMO9JK8w+0cS0="},"visible":false,"font":"Arial;13;0","left":224,"width":10,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO9JK8w+9tvs=","_parent":{"$ref":"AAAAAAGMO9JK8w+2+dU="},"model":{"$ref":"AAAAAAGMO9JK8w+0cS0="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO9JbHxKCWTQ=","_parent":{"$ref":"AAAAAAGMO9JK8w+9tvs="},"model":{"$ref":"AAAAAAGMO9JbDRJP6ks="},"font":"Arial;13;0","left":2917,"top":1830,"width":128.537109375,"height":13,"text":"+getGagnants(): array","horizontalAlignment":0}],"font":"Arial;13;0","left":2912,"top":1825,"width":138.537109375,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO9JK8w++HsA=","_parent":{"$ref":"AAAAAAGMO9JK8w+2+dU="},"model":{"$ref":"AAAAAAGMO9JK8w+0cS0="},"visible":false,"font":"Arial;13;0","left":224,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO9JK8w+/Ihk=","_parent":{"$ref":"AAAAAAGMO9JK8w+2+dU="},"model":{"$ref":"AAAAAAGMO9JK8w+0cS0="},"visible":false,"font":"Arial;13;0","left":224,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2912,"top":1776,"width":137.537109375,"height":72,"stereotypeDisplay":"icon","nameCompartment":{"$ref":"AAAAAAGMO9JK8w+3m6c="},"suppressAttributes":true,"attributeCompartment":{"$ref":"AAAAAAGMO9JK8w+82go="},"operationCompartment":{"$ref":"AAAAAAGMO9JK8w+9tvs="},"receptionCompartment":{"$ref":"AAAAAAGMO9JK8w++HsA="},"templateParameterCompartment":{"$ref":"AAAAAAGMO9JK8w+/Ihk="}},{"_type":"UMLInterfaceView","_id":"AAAAAAGMO9LE+xiJzZ0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9LE+xiHLjQ="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO9LE+xiKswk=","_parent":{"$ref":"AAAAAAGMO9LE+xiJzZ0="},"model":{"$ref":"AAAAAAGMO9LE+xiHLjQ="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO9LE+xiL8q0=","_parent":{"$ref":"AAAAAAGMO9LE+xiKswk="},"visible":false,"font":"Arial;13;0","left":496,"top":-48,"width":64.32080078125,"height":13,"text":"«interface»"},{"_type":"LabelView","_id":"AAAAAAGMO9LE+xiMbD8=","_parent":{"$ref":"AAAAAAGMO9LE+xiKswk="},"font":"Arial;13;1","left":3077,"top":1807,"width":124.1953125,"height":13,"text":"Perdants"},{"_type":"LabelView","_id":"AAAAAAGMO9LE+xiN1vQ=","_parent":{"$ref":"AAAAAAGMO9LE+xiKswk="},"visible":false,"font":"Arial;13;0","left":496,"top":-48,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO9LE+xiOJPU=","_parent":{"$ref":"AAAAAAGMO9LE+xiKswk="},"visible":false,"font":"Arial;13;0","left":496,"top":-48,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3072,"top":1800,"width":134.1953125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO9LE+xiL8q0="},"nameLabel":{"$ref":"AAAAAAGMO9LE+xiMbD8="},"namespaceLabel":{"$ref":"AAAAAAGMO9LE+xiN1vQ="},"propertyLabel":{"$ref":"AAAAAAGMO9LE+xiOJPU="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO9LE+xiPJcc=","_parent":{"$ref":"AAAAAAGMO9LE+xiJzZ0="},"model":{"$ref":"AAAAAAGMO9LE+xiHLjQ="},"visible":false,"font":"Arial;13;0","left":248,"top":-24,"width":10,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO9LE+xiQdE4=","_parent":{"$ref":"AAAAAAGMO9LE+xiJzZ0="},"model":{"$ref":"AAAAAAGMO9LE+xiHLjQ="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO9LaKBtVVTk=","_parent":{"$ref":"AAAAAAGMO9LE+xiQdE4="},"model":{"$ref":"AAAAAAGMO9LaGBsiiVo="},"font":"Arial;13;0","left":3077,"top":1830,"width":124.1953125,"height":13,"text":"+getPerdants(): array","horizontalAlignment":0}],"font":"Arial;13;0","left":3072,"top":1825,"width":134.1953125,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO9LE+xiR9A4=","_parent":{"$ref":"AAAAAAGMO9LE+xiJzZ0="},"model":{"$ref":"AAAAAAGMO9LE+xiHLjQ="},"visible":false,"font":"Arial;13;0","left":248,"top":-24,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO9LE+xiS4ls=","_parent":{"$ref":"AAAAAAGMO9LE+xiJzZ0="},"model":{"$ref":"AAAAAAGMO9LE+xiHLjQ="},"visible":false,"font":"Arial;13;0","left":248,"top":-24,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3072,"top":1776,"width":133.1953125,"height":72,"stereotypeDisplay":"icon","nameCompartment":{"$ref":"AAAAAAGMO9LE+xiKswk="},"suppressAttributes":true,"attributeCompartment":{"$ref":"AAAAAAGMO9LE+xiPJcc="},"operationCompartment":{"$ref":"AAAAAAGMO9LE+xiQdE4="},"receptionCompartment":{"$ref":"AAAAAAGMO9LE+xiR9A4="},"templateParameterCompartment":{"$ref":"AAAAAAGMO9LE+xiS4ls="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO9NSsTXV+zo=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9NSsTXU8/4="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO9NSsTXWlr8=","_parent":{"$ref":"AAAAAAGMO9NSsTXV+zo="},"model":{"$ref":"AAAAAAGMO9NSsTXU8/4="},"visible":false,"font":"Arial;13;0","left":2906,"top":1867,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9NSsTXV+zo="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9NSsTXXiFA=","_parent":{"$ref":"AAAAAAGMO9NSsTXV+zo="},"model":{"$ref":"AAAAAAGMO9NSsTXU8/4="},"visible":null,"font":"Arial;13;0","left":2906,"top":1852,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO9NSsTXV+zo="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9NSsTXYnLc=","_parent":{"$ref":"AAAAAAGMO9NSsTXV+zo="},"model":{"$ref":"AAAAAAGMO9NSsTXU8/4="},"visible":false,"font":"Arial;13;0","left":2906,"top":1897,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9NSsTXV+zo="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO9JK8w+2+dU="},"tail":{"$ref":"AAAAAAGMO8acZedOXlU="},"points":"2832:2016;2832:1888;2980:1888;2980:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO9NSsTXWlr8="},"stereotypeLabel":{"$ref":"AAAAAAGMO9NSsTXXiFA="},"propertyLabel":{"$ref":"AAAAAAGMO9NSsTXYnLc="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO9NfVz0G6hM=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9NfVz0FK/c="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO9NfVz0H0dQ=","_parent":{"$ref":"AAAAAAGMO9NfVz0G6hM="},"model":{"$ref":"AAAAAAGMO9NfVz0FK/c="},"visible":false,"font":"Arial;13;0","left":2993,"top":1883,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9NfVz0G6hM="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9NfVz0IZ4w=","_parent":{"$ref":"AAAAAAGMO9NfVz0G6hM="},"model":{"$ref":"AAAAAAGMO9NfVz0FK/c="},"visible":null,"font":"Arial;13;0","left":2993,"top":1868,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO9NfVz0G6hM="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9NfVz0Jeag=","_parent":{"$ref":"AAAAAAGMO9NfVz0G6hM="},"model":{"$ref":"AAAAAAGMO9NfVz0FK/c="},"visible":false,"font":"Arial;13;0","left":2993,"top":1913,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9NfVz0G6hM="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO9LE+xiJzZ0="},"tail":{"$ref":"AAAAAAGMO8acZedOXlU="},"points":"2848:2016;2848:1904;3138:1904;3138:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO9NfVz0H0dQ="},"stereotypeLabel":{"$ref":"AAAAAAGMO9NfVz0IZ4w="},"propertyLabel":{"$ref":"AAAAAAGMO9NfVz0Jeag="}},{"_type":"UMLInterfaceView","_id":"AAAAAAGMO9NqhD/ojZA=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9NqhD/muTQ="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO9NqhD/pEqc=","_parent":{"$ref":"AAAAAAGMO9NqhD/ojZA="},"model":{"$ref":"AAAAAAGMO9NqhD/muTQ="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO9NqhD/qTkY=","_parent":{"$ref":"AAAAAAGMO9NqhD/pEqc="},"visible":false,"font":"Arial;13;0","left":368,"top":-32,"width":64.32080078125,"height":13,"text":"«interface»"},{"_type":"LabelView","_id":"AAAAAAGMO9NqhD/rcEA=","_parent":{"$ref":"AAAAAAGMO9NqhD/pEqc="},"font":"Arial;13;1","left":3229,"top":1807,"width":112.6298828125,"height":13,"text":"Termine"},{"_type":"LabelView","_id":"AAAAAAGMO9NqhD/sVCw=","_parent":{"$ref":"AAAAAAGMO9NqhD/pEqc="},"visible":false,"font":"Arial;13;0","left":368,"top":-32,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO9NqhD/tUiI=","_parent":{"$ref":"AAAAAAGMO9NqhD/pEqc="},"visible":false,"font":"Arial;13;0","left":368,"top":-32,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3224,"top":1800,"width":122.6298828125,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO9NqhD/qTkY="},"nameLabel":{"$ref":"AAAAAAGMO9NqhD/rcEA="},"namespaceLabel":{"$ref":"AAAAAAGMO9NqhD/sVCw="},"propertyLabel":{"$ref":"AAAAAAGMO9NqhD/tUiI="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO9NqhD/uLlA=","_parent":{"$ref":"AAAAAAGMO9NqhD/ojZA="},"model":{"$ref":"AAAAAAGMO9NqhD/muTQ="},"visible":false,"font":"Arial;13;0","left":184,"top":-16,"width":10,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO9NqhD/vUD4=","_parent":{"$ref":"AAAAAAGMO9NqhD/ojZA="},"model":{"$ref":"AAAAAAGMO9NqhD/muTQ="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO9OOLEK03g4=","_parent":{"$ref":"AAAAAAGMO9NqhD/vUD4="},"model":{"$ref":"AAAAAAGMO9OOHUKBB1U="},"font":"Arial;13;0","left":3229,"top":1830,"width":112.6298828125,"height":13,"text":"+estTermine(): bool","horizontalAlignment":0}],"font":"Arial;13;0","left":3224,"top":1825,"width":122.6298828125,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO9NqhD/weBA=","_parent":{"$ref":"AAAAAAGMO9NqhD/ojZA="},"model":{"$ref":"AAAAAAGMO9NqhD/muTQ="},"visible":false,"font":"Arial;13;0","left":184,"top":-16,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO9NqhD/x8Wo=","_parent":{"$ref":"AAAAAAGMO9NqhD/ojZA="},"model":{"$ref":"AAAAAAGMO9NqhD/muTQ="},"visible":false,"font":"Arial;13;0","left":184,"top":-16,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3224,"top":1776,"width":121.6298828125,"height":72,"stereotypeDisplay":"icon","nameCompartment":{"$ref":"AAAAAAGMO9NqhD/pEqc="},"suppressAttributes":true,"attributeCompartment":{"$ref":"AAAAAAGMO9NqhD/uLlA="},"operationCompartment":{"$ref":"AAAAAAGMO9NqhD/vUD4="},"receptionCompartment":{"$ref":"AAAAAAGMO9NqhD/weBA="},"templateParameterCompartment":{"$ref":"AAAAAAGMO9NqhD/x8Wo="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO9PHT1M8Nyc=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9PHT1M7WGM="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO9PHT1M9e14=","_parent":{"$ref":"AAAAAAGMO9PHT1M8Nyc="},"model":{"$ref":"AAAAAAGMO9PHT1M7WGM="},"visible":false,"font":"Arial;13;0","left":3074,"top":1899,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9PHT1M8Nyc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9PHT1M+QpE=","_parent":{"$ref":"AAAAAAGMO9PHT1M8Nyc="},"model":{"$ref":"AAAAAAGMO9PHT1M7WGM="},"visible":null,"font":"Arial;13;0","left":3074,"top":1884,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO9PHT1M8Nyc="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9PHT1M/uN0=","_parent":{"$ref":"AAAAAAGMO9PHT1M8Nyc="},"model":{"$ref":"AAAAAAGMO9PHT1M7WGM="},"visible":false,"font":"Arial;13;0","left":3074,"top":1929,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9PHT1M8Nyc="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO9NqhD/ojZA="},"tail":{"$ref":"AAAAAAGMO8acZedOXlU="},"points":"2864:2016;2864:1920;3284:1920;3284:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO9PHT1M9e14="},"stereotypeLabel":{"$ref":"AAAAAAGMO9PHT1M+QpE="},"propertyLabel":{"$ref":"AAAAAAGMO9PHT1M/uN0="}},{"_type":"UMLClassView","_id":"AAAAAAGMO9WSOYYo6q0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO9WSOYYpBMw=","_parent":{"$ref":"AAAAAAGMO9WSOYYo6q0="},"model":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO9WSOYYq5xQ=","_parent":{"$ref":"AAAAAAGMO9WSOYYpBMw="},"visible":false,"font":"Arial;13;0","left":240,"top":64,"height":13},{"_type":"LabelView","_id":"AAAAAAGMO9WSOYYrSe0=","_parent":{"$ref":"AAAAAAGMO9WSOYYpBMw="},"font":"Arial;13;1","left":2533,"top":2159,"width":445.79296875,"height":13,"text":"JeuQuiEstCe"},{"_type":"LabelView","_id":"AAAAAAGMO9WSOYYs3DQ=","_parent":{"$ref":"AAAAAAGMO9WSOYYpBMw="},"visible":false,"font":"Arial;13;0","left":240,"top":64,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO9WSOYYt0Pc=","_parent":{"$ref":"AAAAAAGMO9WSOYYpBMw="},"visible":false,"font":"Arial;13;0","left":240,"top":64,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2528,"top":2152,"width":455.79296875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO9WSOYYq5xQ="},"nameLabel":{"$ref":"AAAAAAGMO9WSOYYrSe0="},"namespaceLabel":{"$ref":"AAAAAAGMO9WSOYYs3DQ="},"propertyLabel":{"$ref":"AAAAAAGMO9WSOYYt0Pc="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO9WSOYYu4OA=","_parent":{"$ref":"AAAAAAGMO9WSOYYo6q0="},"model":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"font":"Arial;13;0","left":2528,"top":2177,"width":455.79296875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO9WSOYYvqb0=","_parent":{"$ref":"AAAAAAGMO9WSOYYo6q0="},"model":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO9YyeJelzkw=","_parent":{"$ref":"AAAAAAGMO9WSOYYvqb0="},"model":{"$ref":"AAAAAAGMO9YyZpdysRQ="},"font":"Arial;13;0","left":2533,"top":2192,"width":445.79296875,"height":13,"text":"+JeuQuiEstCe(joueurA: Joueur, joueurB: Joueur, configuration Configuration)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO9ZnnqGjBwc=","_parent":{"$ref":"AAAAAAGMO9WSOYYvqb0="},"model":{"$ref":"AAAAAAGMO9Znj6Fw3mw="},"font":"Arial;13;0","left":2533,"top":2207,"width":445.79296875,"height":13,"text":"+prochainTour()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO9bWC6d6oRg=","_parent":{"$ref":"AAAAAAGMO9WSOYYvqb0="},"model":{"$ref":"AAAAAAGMO9bV8qdHAcA="},"font":"Arial;13;0","left":2533,"top":2222,"width":445.79296875,"height":13,"text":"+getGagnants()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO9cHjqmRYtw=","_parent":{"$ref":"AAAAAAGMO9WSOYYvqb0="},"model":{"$ref":"AAAAAAGMO9cHfqle/g0="},"font":"Arial;13;0","left":2533,"top":2237,"width":445.79296875,"height":13,"text":"+getPerdants()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO9cn4auoqxY=","_parent":{"$ref":"AAAAAAGMO9WSOYYvqb0="},"model":{"$ref":"AAAAAAGMO9cn06t1rhU="},"font":"Arial;13;0","left":2533,"top":2252,"width":445.79296875,"height":13,"text":"+estTermine()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+O0QJDVnW4=","_parent":{"$ref":"AAAAAAGMO9WSOYYvqb0="},"model":{"$ref":"AAAAAAGMO+O0MZCi9L8="},"font":"Arial;13;0","left":2533,"top":2267,"width":445.79296875,"height":13,"text":"+demarrer()","horizontalAlignment":0}],"font":"Arial;13;0","left":2528,"top":2187,"width":455.79296875,"height":98},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO9WSOYYwidU=","_parent":{"$ref":"AAAAAAGMO9WSOYYo6q0="},"model":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"visible":false,"font":"Arial;13;0","left":120,"top":32,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO9WSOYYxNIg=","_parent":{"$ref":"AAAAAAGMO9WSOYYo6q0="},"model":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"visible":false,"font":"Arial;13;0","left":120,"top":32,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2528,"top":2152,"width":454.79296875,"height":133,"nameCompartment":{"$ref":"AAAAAAGMO9WSOYYpBMw="},"attributeCompartment":{"$ref":"AAAAAAGMO9WSOYYu4OA="},"operationCompartment":{"$ref":"AAAAAAGMO9WSOYYvqb0="},"receptionCompartment":{"$ref":"AAAAAAGMO9WSOYYwidU="},"templateParameterCompartment":{"$ref":"AAAAAAGMO9WSOYYxNIg="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMO9XB+Y1yRlo=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9XB+I1w4A8="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO9XB+Y1zwW8=","_parent":{"$ref":"AAAAAAGMO9XB+Y1yRlo="},"model":{"$ref":"AAAAAAGMO9XB+I1w4A8="},"visible":false,"font":"Arial;13;0","left":2645,"top":2117,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9XB+Y1yRlo="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9XB+Y107js=","_parent":{"$ref":"AAAAAAGMO9XB+Y1yRlo="},"model":{"$ref":"AAAAAAGMO9XB+I1w4A8="},"visible":null,"font":"Arial;13;0","left":2630,"top":2117,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO9XB+Y1yRlo="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9XB+Y1138c=","_parent":{"$ref":"AAAAAAGMO9XB+Y1yRlo="},"model":{"$ref":"AAAAAAGMO9XB+I1w4A8="},"visible":false,"font":"Arial;13;0","left":2674,"top":2118,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9XB+Y1yRlo="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO8acZedOXlU="},"tail":{"$ref":"AAAAAAGMO9WSOYYo6q0="},"points":"2660:2152;2660:2096","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO9XB+Y1zwW8="},"stereotypeLabel":{"$ref":"AAAAAAGMO9XB+Y107js="},"propertyLabel":{"$ref":"AAAAAAGMO9XB+Y1138c="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMO9gybrbw5wA=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO9gybbbsVoE="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrbxNXQ=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbsVoE="},"font":"Arial;13;0","left":2633,"top":2307,"width":21.67724609375,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="},"edgePosition":1,"text":"-jeu"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrbyuIg=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbsVoE="},"visible":null,"font":"Arial;13;0","left":2658,"top":2307,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrbzfu4=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbsVoE="},"visible":false,"font":"Arial;13;0","left":2614,"top":2308,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrb0LPU=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbt83U="},"visible":false,"font":"Arial;13;0","left":2644,"top":2304,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrb14dg=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbt83U="},"visible":false,"font":"Arial;13;0","left":2657,"top":2307,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrb285o=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbt83U="},"font":"Arial;13;0","left":2613,"top":2300,"width":7.22998046875,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="},"edgePosition":2,"text":"1"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrb3CkM=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbuk/I="},"visible":false,"font":"Arial;13;0","left":2644,"top":2312,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrb4T3E=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbuk/I="},"visible":false,"font":"Arial;13;0","left":2657,"top":2309,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO9gybrb5n8g=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbuk/I="},"font":"Arial;13;0","left":2613,"top":2316,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO9gybrbw5wA="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO9gybrb6sdM=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbt83U="},"visible":false,"font":"Arial;13;0","width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO9gybrb7tv8=","_parent":{"$ref":"AAAAAAGMO9gybrbw5wA="},"model":{"$ref":"AAAAAAGMO9gybbbuk/I="},"visible":false,"font":"Arial;13;0","width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO2P4ZEigaU8="},"tail":{"$ref":"AAAAAAGMO9WSOYYo6q0="},"points":"2629:2285;2629:2344","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO9gybrbxNXQ="},"stereotypeLabel":{"$ref":"AAAAAAGMO9gybrbyuIg="},"propertyLabel":{"$ref":"AAAAAAGMO9gybrbzfu4="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMO9gybrb0LPU="},"tailPropertyLabel":{"$ref":"AAAAAAGMO9gybrb14dg="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMO9gybrb285o="},"headRoleNameLabel":{"$ref":"AAAAAAGMO9gybrb3CkM="},"headPropertyLabel":{"$ref":"AAAAAAGMO9gybrb4T3E="},"headMultiplicityLabel":{"$ref":"AAAAAAGMO9gybrb5n8g="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMO9gybrb6sdM="},"headQualifiersCompartment":{"$ref":"AAAAAAGMO9gybrb7tv8="}},{"_type":"UMLClassView","_id":"AAAAAAGMO99RGH3qPj8=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO99RF33oZaE="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO99RGH3rTCU=","_parent":{"$ref":"AAAAAAGMO99RGH3qPj8="},"model":{"$ref":"AAAAAAGMO99RF33oZaE="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO99RGH3s6DQ=","_parent":{"$ref":"AAAAAAGMO99RGH3rTCU="},"visible":false,"font":"Arial;13;0","left":96,"height":13},{"_type":"LabelView","_id":"AAAAAAGMO99RGH3tJK4=","_parent":{"$ref":"AAAAAAGMO99RGH3rTCU="},"font":"Arial;13;1","left":3149,"top":2159,"width":320.794921875,"height":13,"text":"JeuPendu"},{"_type":"LabelView","_id":"AAAAAAGMO99RGH3udLU=","_parent":{"$ref":"AAAAAAGMO99RGH3rTCU="},"visible":false,"font":"Arial;13;0","left":96,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO99RGH3vSss=","_parent":{"$ref":"AAAAAAGMO99RGH3rTCU="},"visible":false,"font":"Arial;13;0","left":96,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3144,"top":2152,"width":330.794921875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO99RGH3s6DQ="},"nameLabel":{"$ref":"AAAAAAGMO99RGH3tJK4="},"namespaceLabel":{"$ref":"AAAAAAGMO99RGH3udLU="},"propertyLabel":{"$ref":"AAAAAAGMO99RGH3vSss="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO99RGH3w50Q=","_parent":{"$ref":"AAAAAAGMO99RGH3qPj8="},"model":{"$ref":"AAAAAAGMO99RF33oZaE="},"font":"Arial;13;0","left":3144,"top":2177,"width":330.794921875,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO99RGH3xPiM=","_parent":{"$ref":"AAAAAAGMO99RGH3qPj8="},"model":{"$ref":"AAAAAAGMO99RF33oZaE="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO+n2AonRbiw=","_parent":{"$ref":"AAAAAAGMO99RGH3xPiM="},"model":{"$ref":"AAAAAAGMO+n18omeFxs="},"font":"Arial;13;0","left":3149,"top":2192,"width":320.794921875,"height":13,"text":"+JeuPendu(joueur: Joueur, configuration Configuration)","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+uRX4xMX7c=","_parent":{"$ref":"AAAAAAGMO99RGH3xPiM="},"model":{"$ref":"AAAAAAGMO+uRUYwZCoA="},"font":"Arial;13;0","left":3149,"top":2207,"width":320.794921875,"height":13,"text":"+prochainTour()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+up9o5jj1U=","_parent":{"$ref":"AAAAAAGMO99RGH3xPiM="},"model":{"$ref":"AAAAAAGMO+up6I4wICk="},"font":"Arial;13;0","left":3149,"top":2222,"width":320.794921875,"height":13,"text":"+getGagnants()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+vCRpB67hc=","_parent":{"$ref":"AAAAAAGMO99RGH3xPiM="},"model":{"$ref":"AAAAAAGMO+vCKpBHVUE="},"font":"Arial;13;0","left":3149,"top":2237,"width":320.794921875,"height":13,"text":"+getPerdants()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+vYR5KRVQ8=","_parent":{"$ref":"AAAAAAGMO99RGH3xPiM="},"model":{"$ref":"AAAAAAGMO+vYOJJeXg8="},"font":"Arial;13;0","left":3149,"top":2252,"width":320.794921875,"height":13,"text":"+estTermine()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+v2v5SoNZc=","_parent":{"$ref":"AAAAAAGMO99RGH3xPiM="},"model":{"$ref":"AAAAAAGMO+v2opR1/Bg="},"font":"Arial;13;0","left":3149,"top":2267,"width":320.794921875,"height":13,"text":"+demarrer()","horizontalAlignment":0},{"_type":"UMLOperationView","_id":"AAAAAAGMO+wNSpa/wSM=","_parent":{"$ref":"AAAAAAGMO99RGH3xPiM="},"model":{"$ref":"AAAAAAGMO+wNO5aMB9M="},"visible":false,"font":"Arial;13;0","left":3109,"top":2282,"width":320.794921875,"height":13,"text":"+Operation1()","horizontalAlignment":0}],"font":"Arial;13;0","left":3144,"top":2187,"width":330.794921875,"height":98},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO99RGH3yO3A=","_parent":{"$ref":"AAAAAAGMO99RGH3qPj8="},"model":{"$ref":"AAAAAAGMO99RF33oZaE="},"visible":false,"font":"Arial;13;0","left":48,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO99RGH3zZog=","_parent":{"$ref":"AAAAAAGMO99RGH3qPj8="},"model":{"$ref":"AAAAAAGMO99RF33oZaE="},"visible":false,"font":"Arial;13;0","left":48,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3144,"top":2152,"width":329.794921875,"height":136,"nameCompartment":{"$ref":"AAAAAAGMO99RGH3rTCU="},"attributeCompartment":{"$ref":"AAAAAAGMO99RGH3w50Q="},"operationCompartment":{"$ref":"AAAAAAGMO99RGH3xPiM="},"receptionCompartment":{"$ref":"AAAAAAGMO99RGH3yO3A="},"templateParameterCompartment":{"$ref":"AAAAAAGMO99RGH3zZog="}},{"_type":"UMLInterfaceView","_id":"AAAAAAGMO+KoETkEUyY=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+KoETkCEX0="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO+KoETkFTMI=","_parent":{"$ref":"AAAAAAGMO+KoETkEUyY="},"model":{"$ref":"AAAAAAGMO+KoETkCEX0="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO+KoETkGy7s=","_parent":{"$ref":"AAAAAAGMO+KoETkFTMI="},"visible":false,"font":"Arial;13;0","left":-16,"top":-48,"width":64.32080078125,"height":13,"text":"«interface»"},{"_type":"LabelView","_id":"AAAAAAGMO+KoETkHJKk=","_parent":{"$ref":"AAAAAAGMO+KoETkFTMI="},"font":"Arial;13;1","left":2653,"top":1807,"width":101.05810546875,"height":13,"text":"Demarrer"},{"_type":"LabelView","_id":"AAAAAAGMO+KoETkIpno=","_parent":{"$ref":"AAAAAAGMO+KoETkFTMI="},"visible":false,"font":"Arial;13;0","left":-16,"top":-48,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO+KoETkJqSA=","_parent":{"$ref":"AAAAAAGMO+KoETkFTMI="},"visible":false,"font":"Arial;13;0","left":-16,"top":-48,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":2648,"top":1800,"width":111.05810546875,"height":25,"stereotypeLabel":{"$ref":"AAAAAAGMO+KoETkGy7s="},"nameLabel":{"$ref":"AAAAAAGMO+KoETkHJKk="},"namespaceLabel":{"$ref":"AAAAAAGMO+KoETkIpno="},"propertyLabel":{"$ref":"AAAAAAGMO+KoETkJqSA="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO+KoETkKl50=","_parent":{"$ref":"AAAAAAGMO+KoETkEUyY="},"model":{"$ref":"AAAAAAGMO+KoETkCEX0="},"visible":false,"font":"Arial;13;0","left":-8,"top":-24,"width":10,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO+KoETkL8lE=","_parent":{"$ref":"AAAAAAGMO+KoETkEUyY="},"model":{"$ref":"AAAAAAGMO+KoETkCEX0="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO+LNYTv6rGE=","_parent":{"$ref":"AAAAAAGMO+KoETkL8lE="},"model":{"$ref":"AAAAAAGMO+LNTzvEfa4="},"font":"Arial;13;0","left":2653,"top":1830,"width":101.05810546875,"height":13,"text":"+demarrer(): void","horizontalAlignment":0}],"font":"Arial;13;0","left":2648,"top":1825,"width":111.05810546875,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO+KoETkMj4Q=","_parent":{"$ref":"AAAAAAGMO+KoETkEUyY="},"model":{"$ref":"AAAAAAGMO+KoETkCEX0="},"visible":false,"font":"Arial;13;0","left":-8,"top":-24,"width":10,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO+KoETkNnE0=","_parent":{"$ref":"AAAAAAGMO+KoETkEUyY="},"model":{"$ref":"AAAAAAGMO+KoETkCEX0="},"visible":false,"font":"Arial;13;0","left":-8,"top":-24,"width":10,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":2648,"top":1776,"width":110.05810546875,"height":72,"stereotypeDisplay":"icon","nameCompartment":{"$ref":"AAAAAAGMO+KoETkFTMI="},"suppressAttributes":true,"attributeCompartment":{"$ref":"AAAAAAGMO+KoETkKl50="},"operationCompartment":{"$ref":"AAAAAAGMO+KoETkL8lE="},"receptionCompartment":{"$ref":"AAAAAAGMO+KoETkMj4Q="},"templateParameterCompartment":{"$ref":"AAAAAAGMO+KoETkNnE0="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO+MdNkxZKPE=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+MdNkxYvsg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+MdNkxaPbs=","_parent":{"$ref":"AAAAAAGMO+MdNkxZKPE="},"model":{"$ref":"AAAAAAGMO+MdNkxYvsg="},"visible":false,"font":"Arial;13;0","left":2930,"top":1945,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+MdNkxZKPE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+MdNkxbg0s=","_parent":{"$ref":"AAAAAAGMO+MdNkxZKPE="},"model":{"$ref":"AAAAAAGMO+MdNkxYvsg="},"visible":null,"font":"Arial;13;0","left":2930,"top":1960,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+MdNkxZKPE="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+MdNkxcdZg=","_parent":{"$ref":"AAAAAAGMO+MdNkxZKPE="},"model":{"$ref":"AAAAAAGMO+MdNkxYvsg="},"visible":false,"font":"Arial;13;0","left":2931,"top":1915,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+MdNkxZKPE="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO+KoETkEUyY="},"tail":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"points":"3160:2016;3160:1936;2703:1936;2703:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+MdNkxaPbs="},"stereotypeLabel":{"$ref":"AAAAAAGMO+MdNkxbg0s="},"propertyLabel":{"$ref":"AAAAAAGMO+MdNkxcdZg="}},{"_type":"UMLClassView","_id":"AAAAAAGMO+fPyjsq2lI=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+fPyjsouA4="},"subViews":[{"_type":"UMLNameCompartmentView","_id":"AAAAAAGMO+fPyjsrIGk=","_parent":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"model":{"$ref":"AAAAAAGMO+fPyjsouA4="},"subViews":[{"_type":"LabelView","_id":"AAAAAAGMO+fPyjssV30=","_parent":{"$ref":"AAAAAAGMO+fPyjsrIGk="},"font":"Arial;13;0","left":3165,"top":2021,"width":339.22314453125,"height":13,"text":"«interface»"},{"_type":"LabelView","_id":"AAAAAAGMO+fPyjstDPw=","_parent":{"$ref":"AAAAAAGMO+fPyjsrIGk="},"font":"Arial;13;1","left":3165,"top":2036,"width":339.22314453125,"height":13,"text":"JeuSolo"},{"_type":"LabelView","_id":"AAAAAAGMO+fPyjsuqdA=","_parent":{"$ref":"AAAAAAGMO+fPyjsrIGk="},"visible":false,"font":"Arial;13;0","left":-32,"top":-48,"width":73.67724609375,"height":13,"text":"(from Model)"},{"_type":"LabelView","_id":"AAAAAAGMO+fPyjsvDnc=","_parent":{"$ref":"AAAAAAGMO+fPyjsrIGk="},"visible":false,"font":"Arial;13;0","left":-32,"top":-48,"height":13,"horizontalAlignment":1}],"font":"Arial;13;0","left":3160,"top":2016,"width":349.22314453125,"height":38,"stereotypeLabel":{"$ref":"AAAAAAGMO+fPyjssV30="},"nameLabel":{"$ref":"AAAAAAGMO+fPyjstDPw="},"namespaceLabel":{"$ref":"AAAAAAGMO+fPyjsuqdA="},"propertyLabel":{"$ref":"AAAAAAGMO+fPyjsvDnc="}},{"_type":"UMLAttributeCompartmentView","_id":"AAAAAAGMO+fPyjswsC8=","_parent":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"model":{"$ref":"AAAAAAGMO+fPyjsouA4="},"font":"Arial;13;0","left":3160,"top":2054,"width":349.22314453125,"height":10},{"_type":"UMLOperationCompartmentView","_id":"AAAAAAGMO+fPyjsxBEE=","_parent":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"model":{"$ref":"AAAAAAGMO+fPyjsouA4="},"subViews":[{"_type":"UMLOperationView","_id":"AAAAAAGMO+g7dEdLq0w=","_parent":{"$ref":"AAAAAAGMO+fPyjsxBEE="},"model":{"$ref":"AAAAAAGMO+g7YUcVOVk="},"font":"Arial;13;0","left":3165,"top":2069,"width":339.22314453125,"height":13,"text":"+JeuSolo(joueur: Joueur, configuration Configuration)","horizontalAlignment":0}],"font":"Arial;13;0","left":3160,"top":2064,"width":349.22314453125,"height":23},{"_type":"UMLReceptionCompartmentView","_id":"AAAAAAGMO+fPyjsy2js=","_parent":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"model":{"$ref":"AAAAAAGMO+fPyjsouA4="},"visible":false,"font":"Arial;13;0","left":3160,"top":2087,"width":319.22314453125,"height":10},{"_type":"UMLTemplateParameterCompartmentView","_id":"AAAAAAGMO+fPyjszdpI=","_parent":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"model":{"$ref":"AAAAAAGMO+fPyjsouA4="},"visible":false,"font":"Arial;13;0","left":3377.55419921875,"top":2016,"width":130.6689453125,"height":10}],"font":"Arial;13;0","containerChangeable":true,"left":3160,"top":2016,"width":348.22314453125,"height":80,"nameCompartment":{"$ref":"AAAAAAGMO+fPyjsrIGk="},"attributeCompartment":{"$ref":"AAAAAAGMO+fPyjswsC8="},"operationCompartment":{"$ref":"AAAAAAGMO+fPyjsxBEE="},"receptionCompartment":{"$ref":"AAAAAAGMO+fPyjsy2js="},"templateParameterCompartment":{"$ref":"AAAAAAGMO+fPyjszdpI="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO+ywyeo6u/g=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+ywyeo5biA="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+ywyeo70qM=","_parent":{"$ref":"AAAAAAGMO+ywyeo6u/g="},"model":{"$ref":"AAAAAAGMO+ywyeo5biA="},"visible":false,"font":"Arial;13;0","left":3242,"top":1899,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+ywyeo6u/g="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+ywyeo8kG0=","_parent":{"$ref":"AAAAAAGMO+ywyeo6u/g="},"model":{"$ref":"AAAAAAGMO+ywyeo5biA="},"visible":null,"font":"Arial;13;0","left":3242,"top":1884,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+ywyeo6u/g="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+ywyeo9f0k=","_parent":{"$ref":"AAAAAAGMO+ywyeo6u/g="},"model":{"$ref":"AAAAAAGMO+ywyeo5biA="},"visible":false,"font":"Arial;13;0","left":3242,"top":1929,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+ywyeo6u/g="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO9NqhD/ojZA="},"tail":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"points":"3200:2016;3200:1920;3284:1920;3284:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+ywyeo70qM="},"stereotypeLabel":{"$ref":"AAAAAAGMO+ywyeo8kG0="},"propertyLabel":{"$ref":"AAAAAAGMO+ywyeo9f0k="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO+zHnfWL4UA=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+zHnfWKqEA="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+zHnfWMBxs=","_parent":{"$ref":"AAAAAAGMO+zHnfWL4UA="},"model":{"$ref":"AAAAAAGMO+zHnfWKqEA="},"visible":false,"font":"Arial;13;0","left":3152,"top":1913,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+zHnfWL4UA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+zHnfWNrXY=","_parent":{"$ref":"AAAAAAGMO+zHnfWL4UA="},"model":{"$ref":"AAAAAAGMO+zHnfWKqEA="},"visible":null,"font":"Arial;13;0","left":3152,"top":1928,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+zHnfWL4UA="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+zHnvWOOuA=","_parent":{"$ref":"AAAAAAGMO+zHnfWL4UA="},"model":{"$ref":"AAAAAAGMO+zHnfWKqEA="},"visible":false,"font":"Arial;13;0","left":3153,"top":1883,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+zHnfWL4UA="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO9LE+xiJzZ0="},"tail":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"points":"3168:2016;3168:1904;3138:1904;3138:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+zHnfWMBxs="},"stereotypeLabel":{"$ref":"AAAAAAGMO+zHnfWNrXY="},"propertyLabel":{"$ref":"AAAAAAGMO+zHnvWOOuA="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO+zWjf183Nk=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+zWjf17kIk="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+zWjf19hBA=","_parent":{"$ref":"AAAAAAGMO+zWjf183Nk="},"model":{"$ref":"AAAAAAGMO+zWjf17kIk="},"visible":false,"font":"Arial;13;0","left":3081,"top":1897,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+zWjf183Nk="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+zWjf1+AiM=","_parent":{"$ref":"AAAAAAGMO+zWjf183Nk="},"model":{"$ref":"AAAAAAGMO+zWjf17kIk="},"visible":null,"font":"Arial;13;0","left":3081,"top":1912,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+zWjf183Nk="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+zWjf1/yBg=","_parent":{"$ref":"AAAAAAGMO+zWjf183Nk="},"model":{"$ref":"AAAAAAGMO+zWjf17kIk="},"visible":false,"font":"Arial;13;0","left":3082,"top":1867,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+zWjf183Nk="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO9JK8w+2+dU="},"tail":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"points":"3184:2016;3184:1888;2980:1888;2980:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+zWjf19hBA="},"stereotypeLabel":{"$ref":"AAAAAAGMO+zWjf1+AiM="},"propertyLabel":{"$ref":"AAAAAAGMO+zWjf1/yBg="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO+z9HQetxxg=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+z9HAes714="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+z9HQeuMgg=","_parent":{"$ref":"AAAAAAGMO+z9HQetxxg="},"model":{"$ref":"AAAAAAGMO+z9HAes714="},"visible":false,"font":"Arial;13;0","left":2819,"top":1901,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+z9HQetxxg="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+z9HQev+vs=","_parent":{"$ref":"AAAAAAGMO+z9HQetxxg="},"model":{"$ref":"AAAAAAGMO+z9HAes714="},"visible":null,"font":"Arial;13;0","left":2804,"top":1901,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+z9HQetxxg="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+z9HQew0U4=","_parent":{"$ref":"AAAAAAGMO+z9HQetxxg="},"model":{"$ref":"AAAAAAGMO+z9HAes714="},"visible":false,"font":"Arial;13;0","left":2849,"top":1902,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+z9HQetxxg="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO84v21q/9K4="},"tail":{"$ref":"AAAAAAGMO8acZedOXlU="},"points":"2834:2016;2834:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+z9HQeuMgg="},"stereotypeLabel":{"$ref":"AAAAAAGMO+z9HQev+vs="},"propertyLabel":{"$ref":"AAAAAAGMO+z9HQew0U4="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO+0L6w8+i6k=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+0L6w89M9o="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+0L6w8/Uks=","_parent":{"$ref":"AAAAAAGMO+0L6w8+i6k="},"model":{"$ref":"AAAAAAGMO+0L6w89M9o="},"visible":false,"font":"Arial;13;0","left":2758,"top":1945,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+0L6w8+i6k="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+0L6w9AQCs=","_parent":{"$ref":"AAAAAAGMO+0L6w8+i6k="},"model":{"$ref":"AAAAAAGMO+0L6w89M9o="},"visible":null,"font":"Arial;13;0","left":2758,"top":1960,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+0L6w8+i6k="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+0L6w9BkpQ=","_parent":{"$ref":"AAAAAAGMO+0L6w8+i6k="},"model":{"$ref":"AAAAAAGMO+0L6w89M9o="},"visible":false,"font":"Arial;13;0","left":2759,"top":1915,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+0L6w8+i6k="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO+KoETkEUyY="},"tail":{"$ref":"AAAAAAGMO8acZedOXlU="},"points":"2816:2016;2816:1936;2703:1936;2703:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+0L6w8/Uks="},"stereotypeLabel":{"$ref":"AAAAAAGMO+0L6w9AQCs="},"propertyLabel":{"$ref":"AAAAAAGMO+0L6w9BkpQ="}},{"_type":"UMLInterfaceRealizationView","_id":"AAAAAAGMO+5e/YyhCBQ=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+5e/Yyg2II="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+5e/YyiR9s=","_parent":{"$ref":"AAAAAAGMO+5e/YyhCBQ="},"model":{"$ref":"AAAAAAGMO+5e/Yyg2II="},"visible":false,"font":"Arial;13;0","left":3024,"top":1881,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+5e/YyhCBQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+5e/Yyj+0A=","_parent":{"$ref":"AAAAAAGMO+5e/YyhCBQ="},"model":{"$ref":"AAAAAAGMO+5e/Yyg2II="},"visible":null,"font":"Arial;13;0","left":3024,"top":1896,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+5e/YyhCBQ="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+5e/YykgsE=","_parent":{"$ref":"AAAAAAGMO+5e/YyhCBQ="},"model":{"$ref":"AAAAAAGMO+5e/Yyg2II="},"visible":false,"font":"Arial;13;0","left":3025,"top":1851,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+5e/YyhCBQ="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO84v21q/9K4="},"tail":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"points":"3216:2016;3216:1872;2834:1872;2834:1800","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+5e/YyiR9s="},"stereotypeLabel":{"$ref":"AAAAAAGMO+5e/Yyj+0A="},"propertyLabel":{"$ref":"AAAAAAGMO+5e/YykgsE="}},{"_type":"UMLGeneralizationView","_id":"AAAAAAGMO+6uErhmUug=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+6uErhkH4Q="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+6uErhn3kw=","_parent":{"$ref":"AAAAAAGMO+6uErhmUug="},"model":{"$ref":"AAAAAAGMO+6uErhkH4Q="},"visible":false,"font":"Arial;13;0","left":3302,"top":2117,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+6uErhmUug="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+6uErho6Cc=","_parent":{"$ref":"AAAAAAGMO+6uErhmUug="},"model":{"$ref":"AAAAAAGMO+6uErhkH4Q="},"visible":null,"font":"Arial;13;0","left":3287,"top":2117,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+6uErhmUug="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+6uErhpR6s=","_parent":{"$ref":"AAAAAAGMO+6uErhmUug="},"model":{"$ref":"AAAAAAGMO+6uErhkH4Q="},"visible":false,"font":"Arial;13;0","left":3331,"top":2118,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+6uErhmUug="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO+fPyjsq2lI="},"tail":{"$ref":"AAAAAAGMO99RGH3qPj8="},"points":"3317:2152;3317:2096","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+6uErhn3kw="},"stereotypeLabel":{"$ref":"AAAAAAGMO+6uErho6Cc="},"propertyLabel":{"$ref":"AAAAAAGMO+6uErhpR6s="}},{"_type":"UMLAssociationView","_id":"AAAAAAGMO+7PdMIKj1o=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO+7PdMIGGvg="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMILl1k=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIGGvg="},"font":"Arial;13;0","left":3308,"top":2357,"width":21.67724609375,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"edgePosition":1,"text":"-jeu"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMIMQ8Q=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIGGvg="},"visible":null,"font":"Arial;13;0","left":3333,"top":2357,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMINIC8=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIGGvg="},"visible":false,"font":"Arial;13;0","left":3289,"top":2358,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMIOL+Q=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIHhZo="},"visible":false,"font":"Arial;13;0","left":3319,"top":2307,"height":13,"alpha":0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMIPric=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIHhZo="},"visible":false,"font":"Arial;13;0","left":3332,"top":2310,"height":13,"alpha":0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"edgePosition":2},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMIQH1Q=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIHhZo="},"font":"Arial;13;0","left":3288,"top":2303,"width":7.22998046875,"height":13,"alpha":-0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"edgePosition":2,"text":"1"},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMIRA/U=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIIqVg="},"visible":false,"font":"Arial;13;0","left":3319,"top":2408,"height":13,"alpha":-0.5235987755982988,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMIS4XA=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIIqVg="},"visible":false,"font":"Arial;13;0","left":3332,"top":2405,"height":13,"alpha":-0.7853981633974483,"distance":40,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="}},{"_type":"EdgeLabelView","_id":"AAAAAAGMO+7PdMITzy4=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIIqVg="},"font":"Arial;13;0","left":3288,"top":2412,"width":7.22998046875,"height":13,"alpha":0.5235987755982988,"distance":25,"hostEdge":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"text":"1"},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO+7PdMIUO4I=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIHhZo="},"visible":false,"font":"Arial;13;0","width":10,"height":10},{"_type":"UMLQualifierCompartmentView","_id":"AAAAAAGMO+7PdMIVcsg=","_parent":{"$ref":"AAAAAAGMO+7PdMIKj1o="},"model":{"$ref":"AAAAAAGMO+7PdMIIqVg="},"visible":false,"font":"Arial;13;0","width":10,"height":10}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMNomnSTj+JP0="},"tail":{"$ref":"AAAAAAGMO99RGH3qPj8="},"points":"3304:2288;3304:2440","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO+7PdMILl1k="},"stereotypeLabel":{"$ref":"AAAAAAGMO+7PdMIMQ8Q="},"propertyLabel":{"$ref":"AAAAAAGMO+7PdMINIC8="},"showEndOrder":"hide","tailRoleNameLabel":{"$ref":"AAAAAAGMO+7PdMIOL+Q="},"tailPropertyLabel":{"$ref":"AAAAAAGMO+7PdMIPric="},"tailMultiplicityLabel":{"$ref":"AAAAAAGMO+7PdMIQH1Q="},"headRoleNameLabel":{"$ref":"AAAAAAGMO+7PdMIRA/U="},"headPropertyLabel":{"$ref":"AAAAAAGMO+7PdMIS4XA="},"headMultiplicityLabel":{"$ref":"AAAAAAGMO+7PdMITzy4="},"tailQualifiersCompartment":{"$ref":"AAAAAAGMO+7PdMIUO4I="},"headQualifiersCompartment":{"$ref":"AAAAAAGMO+7PdMIVcsg="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMO/IojjP/Mjo=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO/IojjP9YqQ="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO/IojjQAH5c=","_parent":{"$ref":"AAAAAAGMO/IojjP/Mjo="},"model":{"$ref":"AAAAAAGMO/IojjP9YqQ="},"visible":false,"font":"Arial;13;0","left":3566,"top":1481,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO/IojjP/Mjo="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO/IojjQBtgc=","_parent":{"$ref":"AAAAAAGMO/IojjP/Mjo="},"model":{"$ref":"AAAAAAGMO/IojjP9YqQ="},"visible":null,"font":"Arial;13;0","left":3581,"top":1481,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO/IojjP/Mjo="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO/IojjQC6gQ=","_parent":{"$ref":"AAAAAAGMO/IojjP/Mjo="},"model":{"$ref":"AAAAAAGMO/IojjP9YqQ="},"visible":false,"font":"Arial;13;0","left":3537,"top":1482,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO/IojjP/Mjo="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO5RSYRuVA+8="},"tail":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"points":"3336:1488;3552:1488;3552:1552","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO/IojjQAH5c="},"stereotypeLabel":{"$ref":"AAAAAAGMO/IojjQBtgc="},"propertyLabel":{"$ref":"AAAAAAGMO/IojjQC6gQ="}},{"_type":"UMLDependencyView","_id":"AAAAAAGMO/J901jsmm0=","_parent":{"$ref":"AAAAAAFF+qBtyKM79qY="},"model":{"$ref":"AAAAAAGMO/J901jqTJQ="},"subViews":[{"_type":"EdgeLabelView","_id":"AAAAAAGMO/J91Fjt0fw=","_parent":{"$ref":"AAAAAAGMO/J901jsmm0="},"model":{"$ref":"AAAAAAGMO/J901jqTJQ="},"visible":false,"font":"Arial;13;0","left":2775,"top":1657,"height":13,"alpha":1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO/J901jsmm0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO/J91FjuwCQ=","_parent":{"$ref":"AAAAAAGMO/J901jsmm0="},"model":{"$ref":"AAAAAAGMO/J901jqTJQ="},"visible":null,"font":"Arial;13;0","left":2775,"top":1672,"height":13,"alpha":1.5707963267948966,"distance":30,"hostEdge":{"$ref":"AAAAAAGMO/J901jsmm0="},"edgePosition":1},{"_type":"EdgeLabelView","_id":"AAAAAAGMO/J91FjvVm0=","_parent":{"$ref":"AAAAAAGMO/J901jsmm0="},"model":{"$ref":"AAAAAAGMO/J901jqTJQ="},"visible":false,"font":"Arial;13;0","left":2776,"top":1627,"height":13,"alpha":-1.5707963267948966,"distance":15,"hostEdge":{"$ref":"AAAAAAGMO/J901jsmm0="},"edgePosition":1}],"font":"Arial;13;0","head":{"$ref":"AAAAAAGMO+KoETkEUyY="},"tail":{"$ref":"AAAAAAGMEddZT4Dl/Kc="},"points":"3128:1548;2776:1548;2776:1648;2715:1648;2715:1776","showVisibility":true,"nameLabel":{"$ref":"AAAAAAGMO/J91Fjt0fw="},"stereotypeLabel":{"$ref":"AAAAAAGMO/J91FjuwCQ="},"propertyLabel":{"$ref":"AAAAAAGMO/J91FjvVm0="}}]},{"_type":"UMLClass","_id":"AAAAAAGMDFZUD6SHu5I=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"QuestionGateway","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDFgZpLcxcgs=","_parent":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"source":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"target":{"$ref":"AAAAAAGMDB+czDaCSSs="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDFm6tNwxUSo=","_parent":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"source":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDFc1U69he3g=","_parent":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"name":"QuestionGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFdR/LBbprI=","_parent":{"$ref":"AAAAAAGMDFc1U69he3g="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDFdv0bINGPU=","_parent":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"name":"getRandom","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFeW5LMHyS4=","_parent":{"$ref":"AAAAAAGMDFdv0bINGPU="},"type":{"$ref":"AAAAAAGMDB+czDaCSSs="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDFeXLLNagEc=","_parent":{"$ref":"AAAAAAGMDFZUD6SHu5I="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFgAtLRUrGo=","_parent":{"$ref":"AAAAAAGMDFeXLLNagEc="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDFgAtLRV+4k=","_parent":{"$ref":"AAAAAAGMDFeXLLNagEc="},"type":{"$ref":"AAAAAAGMDB+czDaCSSs="},"direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDFhT+8jHKqU=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"ReponseGateway","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMDFnGTN9sX4g=","_parent":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"source":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}},{"_type":"UMLDependency","_id":"AAAAAAGMDFnyLO5f65M=","_parent":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"source":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"target":{"$ref":"AAAAAAGMDB+zgDfS/MI="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDFwARwBqDhM=","_parent":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"name":"ReponseGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFwf5QFkiLI=","_parent":{"$ref":"AAAAAAGMDFwARwBqDhM="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDFn8FfDdNSM=","_parent":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFpLxfHXt7g=","_parent":{"$ref":"AAAAAAGMDFn8FfDdNSM="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDFpLxfHYEG0=","_parent":{"$ref":"AAAAAAGMDFn8FfDdNSM="},"type":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDFpVqvNwPv8=","_parent":{"$ref":"AAAAAAGMDFhT+8jHKqU="},"name":"getFromQuestion","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFuVDPRqg3w=","_parent":{"$ref":"AAAAAAGMDFpVqvNwPv8="},"name":"idQuestion","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDFuVDPRrAEM=","_parent":{"$ref":"AAAAAAGMDFpVqvNwPv8="},"type":"List","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDFj8ltGDWrs=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Gateway","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMEkkfzT/sMJM=","_parent":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"name":"con","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMEkkfzT/t+cU=","_parent":{"$ref":"AAAAAAGMEkkfzT/sMJM="},"reference":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMEkkfzT/uabQ=","_parent":{"$ref":"AAAAAAGMEkkfzT/sMJM="},"reference":{"$ref":"AAAAAAGMEddG/35rkhw="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDFk/lNbAwpw=","_parent":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"name":"con","visibility":"private","type":"Connection"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDFmHJtkZT84=","_parent":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"name":"Gateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFmm5toTLNQ=","_parent":{"$ref":"AAAAAAGMDFmHJtkZT84="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]}],"isAbstract":true},{"_type":"UMLClass","_id":"AAAAAAGMDFvWtfxZRxc=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"IndiceGateway","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMDF1P1BjfLws=","_parent":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"source":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}},{"_type":"UMLDependency","_id":"AAAAAAGMDF1w6yI2L/M=","_parent":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"source":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"target":{"$ref":"AAAAAAGMDBuarwheVvc="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDFxh9AuOplo=","_parent":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"name":"IndiceGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFyEpgyIY08=","_parent":{"$ref":"AAAAAAGMDFxh9AuOplo="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDFyP/g4EXq8=","_parent":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDFy+uQ7+IS4=","_parent":{"$ref":"AAAAAAGMDFyP/g4EXq8="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDFy+uQ7/uGI=","_parent":{"$ref":"AAAAAAGMDFyP/g4EXq8="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDFy/Cw9uGAE=","_parent":{"$ref":"AAAAAAGMDFvWtfxZRxc="},"name":"getFromScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDF0UHBBoH/g=","_parent":{"$ref":"AAAAAAGMDFy/Cw9uGAE="},"name":"idScientifique","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDF0UHBBpc70=","_parent":{"$ref":"AAAAAAGMDFy/Cw9uGAE="},"type":"array","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDF5TZDXOvGY=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"ThematiqueGateway","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMDGLbbEhHlC4=","_parent":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"source":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}},{"_type":"UMLDependency","_id":"AAAAAAGMDGL6uk1oYNY=","_parent":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"source":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"target":{"$ref":"AAAAAAGMC+P422EN2ug="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDF6eSzsk2es=","_parent":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"name":"ThematiqueGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDF7KDDwe/cU=","_parent":{"$ref":"AAAAAAGMDF6eSzsk2es="},"name":"con Connection","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGAUrD2akJo=","_parent":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGB4bz6Udc0=","_parent":{"$ref":"AAAAAAGMDGAUrD2akJo="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDGB4bz6Vups=","_parent":{"$ref":"AAAAAAGMDGAUrD2akJo="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGB4wz8Eh8s=","_parent":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"name":"getAll","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGCtYT/+fig=","_parent":{"$ref":"AAAAAAGMDGB4wz8Eh8s="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGCttUBR93E=","_parent":{"$ref":"AAAAAAGMDF5TZDXOvGY="},"name":"getFromScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGHmlkFLaGY=","_parent":{"$ref":"AAAAAAGMDGCttUBR93E="},"name":"idScientifique int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDGHmlkFMEyo=","_parent":{"$ref":"AAAAAAGMDGCttUBR93E="},"type":"array","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDGNZDFHn4C0=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"SexeGateway","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMDGN7E1i26xY=","_parent":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"source":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}},{"_type":"UMLDependency","_id":"AAAAAAGMDGR4KWvQub0=","_parent":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"source":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"target":{"$ref":"AAAAAAGMC+fb3W5D+IE="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDGOJAVuF8vU=","_parent":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"name":"SexeGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGOpT1x/yGY=","_parent":{"$ref":"AAAAAAGMDGOJAVuF8vU="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGPBImMLmI0=","_parent":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGP3j2Q7+8s=","_parent":{"$ref":"AAAAAAGMDGPBImMLmI0="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDGP3j2Q8Otk=","_parent":{"$ref":"AAAAAAGMDGPBImMLmI0="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGQA2WXUsh8=","_parent":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"name":"getFromScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGRD+GbOYvo=","_parent":{"$ref":"AAAAAAGMDGQA2WXUsh8="},"name":"idScientifique","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDGRD+WbPy/k=","_parent":{"$ref":"AAAAAAGMDGQA2WXUsh8="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGREV2c+PoM=","_parent":{"$ref":"AAAAAAGMDGNZDFHn4C0="},"name":"getAll","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGRnXGg4zDY=","_parent":{"$ref":"AAAAAAGMDGREV2c+PoM="},"type":"array","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDGYkGpB62Mc=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"DifficulteGateway","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDGc5e51a9A4=","_parent":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"source":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"target":{"$ref":"AAAAAAGMC+YI8maIQdw="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDGdWEqf3YfY=","_parent":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"source":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDGZdGJTdyAc=","_parent":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"name":"DifficulteGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGaEdpXXwFY=","_parent":{"$ref":"AAAAAAGMDGZdGJTdyAc="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGaEuZYq32g=","_parent":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGa6AZckHyg=","_parent":{"$ref":"AAAAAAGMDGaEuZYq32g="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDGa6AZclhs0=","_parent":{"$ref":"AAAAAAGMDGaEuZYq32g="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGa6iJeUru0=","_parent":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"name":"getFromScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGcDhZiOYKQ=","_parent":{"$ref":"AAAAAAGMDGa6iJeUru0="},"name":"idScientifique","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDGcDhZiP/fc=","_parent":{"$ref":"AAAAAAGMDGa6iJeUru0="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGcD95j+3zM=","_parent":{"$ref":"AAAAAAGMDGYkGpB62Mc="},"name":"getAll","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGck35n4g6o=","_parent":{"$ref":"AAAAAAGMDGcD95j+3zM="},"type":"array","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDGffwa3WW6c=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"AdminGateway","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDGkom8YTZyg=","_parent":{"$ref":"AAAAAAGMDGffwa3WW6c="},"source":{"$ref":"AAAAAAGMDGffwa3WW6c="},"target":{"$ref":"AAAAAAGMDBqwaPw9v8g="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDGlOs9U5mfI=","_parent":{"$ref":"AAAAAAGMDGffwa3WW6c="},"source":{"$ref":"AAAAAAGMDGffwa3WW6c="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDGf/brBSXSo=","_parent":{"$ref":"AAAAAAGMDGffwa3WW6c="},"name":"AdminGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGg0/LFMYfs=","_parent":{"$ref":"AAAAAAGMDGf/brBSXSo="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGg1QLGftYQ=","_parent":{"$ref":"AAAAAAGMDGffwa3WW6c="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGhWlLKZ+ws=","_parent":{"$ref":"AAAAAAGMDGg1QLGftYQ="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDGhWlLKahlc=","_parent":{"$ref":"AAAAAAGMDGg1QLGftYQ="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGh/MroA4fk=","_parent":{"$ref":"AAAAAAGMDGffwa3WW6c="},"name":"getFromEmail","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGjQNLr6xwM=","_parent":{"$ref":"AAAAAAGMDGh/MroA4fk="},"name":"email","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDGjQNLr7T+A=","_parent":{"$ref":"AAAAAAGMDGh/MroA4fk="},"type":"array","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDGmmJOs+kMY=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"InviteGateway","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDGzdUBbnCb8=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"source":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"target":{"$ref":"AAAAAAGMDA2vdbQq5xA="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDGz53SFp5fI=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"source":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDGnPN+26W7Y=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"name":"Attribute1","type":""}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDGoVTPC1mJY=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"name":"InviteGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGpBNfGv/iM=","_parent":{"$ref":"AAAAAAGMDGoVTPC1mJY="},"name":"con Connection","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGpBc/ICC+0=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGqK8fPUd80=","_parent":{"$ref":"AAAAAAGMDGpBc/ICC+0="},"name":"int id","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDGqK8fPVeGk=","_parent":{"$ref":"AAAAAAGMDGpBc/ICC+0="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGqLcPREj+A=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"name":"getFromIdSession","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGtvSPU+86g=","_parent":{"$ref":"AAAAAAGMDGqLcPREj+A="},"name":"idSession string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDGtvSPU/iJU=","_parent":{"$ref":"AAAAAAGMDGqLcPREj+A="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGuYDvflrwA=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"name":"Operation1"},{"_type":"UMLOperation","_id":"AAAAAAGMDG2CMDrPNBI=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"name":"insertInvite","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDG32jzvJOjk=","_parent":{"$ref":"AAAAAAGMDG2CMDrPNBI="},"name":"pseudo string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDG32jzvKS/Q=","_parent":{"$ref":"AAAAAAGMDG2CMDrPNBI="},"name":"idSession string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDG32jzvLZ8k=","_parent":{"$ref":"AAAAAAGMDG2CMDrPNBI="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHXVJZww6qo=","_parent":{"$ref":"AAAAAAGMDGmmJOs+kMY="},"name":"supprimerInvite","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHYBT50q208=","_parent":{"$ref":"AAAAAAGMDHXVJZww6qo="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHYBT50rorM=","_parent":{"$ref":"AAAAAAGMDHXVJZww6qo="},"type":"bool","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDGvvd/xb+z4=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"UtilisateurGateway","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDGzQORGrhHA=","_parent":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"source":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"target":{"$ref":"AAAAAAGMDAzKB61hTcc="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDG0H1iT1tHc=","_parent":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"source":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDGwM/f7Xugw=","_parent":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"name":"UtilisateurGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGwsBv/RT6c=","_parent":{"$ref":"AAAAAAGMDGwM/f7Xugw="},"name":"con Connection","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGwsWgAkBlU=","_parent":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGxOUAEeLGE=","_parent":{"$ref":"AAAAAAGMDGwsWgAkBlU="},"name":"int id","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDGxOUAEfXmI=","_parent":{"$ref":"AAAAAAGMDGwsWgAkBlU="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGxOswGOUgc=","_parent":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"name":"getFromEmail","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDGx76AKI6Tk=","_parent":{"$ref":"AAAAAAGMDGxOswGOUgc="},"name":"email string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDGx76AKJG/E=","_parent":{"$ref":"AAAAAAGMDGxOswGOUgc="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDGx8YwL4bPg=","_parent":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"name":"Operation1"},{"_type":"UMLOperation","_id":"AAAAAAGMDG4KbD3rsds=","_parent":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"name":"insertUtilisateur","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDG5Ygj7lSD8=","_parent":{"$ref":"AAAAAAGMDG4KbD3rsds="},"name":"pseudo string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDG5Ygj7m/0Y=","_parent":{"$ref":"AAAAAAGMDG4KbD3rsds="},"name":"email string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDG5Ygj7nfZ0=","_parent":{"$ref":"AAAAAAGMDG4KbD3rsds="},"name":"motdepasse string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDG5Ygj7oj5k=","_parent":{"$ref":"AAAAAAGMDG4KbD3rsds="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHYRgZ/sMWo=","_parent":{"$ref":"AAAAAAGMDGvvd/xb+z4="},"name":"supprimerUtilisateur","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHY4uKDml28=","_parent":{"$ref":"AAAAAAGMDHYRgZ/sMWo="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHY4uKDnMdc=","_parent":{"$ref":"AAAAAAGMDHYRgZ/sMWo="},"type":"bool","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDG0t3i+tqo0=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"PartieGateway","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDHEj4l+WlbI=","_parent":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"source":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"target":{"$ref":"AAAAAAGMDBZil+iGdXI="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDHE6KWn9Lok=","_parent":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"source":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDG7MDUpUBmA=","_parent":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"name":"PartieGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDG7mS0tOQ+Y=","_parent":{"$ref":"AAAAAAGMDG7MDUpUBmA="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDG7sikzKhfc=","_parent":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDG+SeU6cWX8=","_parent":{"$ref":"AAAAAAGMDG7sikzKhfc="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDG+SeU6dPeE=","_parent":{"$ref":"AAAAAAGMDG7sikzKhfc="},"type":{"$ref":"AAAAAAGMDBZil+iGdXI="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDG+heFA1hZY=","_parent":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"name":"getFromCodeInvitation","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDG/oXFEv5as=","_parent":{"$ref":"AAAAAAGMDG+heFA1hZY="},"name":"code","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDG/oXFEw6ng=","_parent":{"$ref":"AAAAAAGMDG+heFA1hZY="},"type":{"$ref":"AAAAAAGMDBZil+iGdXI="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDG/oxlGfEDw=","_parent":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"name":"creerPartie","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHA7RFKZZi4=","_parent":{"$ref":"AAAAAAGMDG/oxlGfEDw="},"name":"jeu","type":{"$ref":"AAAAAAGMDBVhtuKV7iA="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHA7RFKa3pw=","_parent":{"$ref":"AAAAAAGMDG/oxlGfEDw="},"name":"joueur","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHA7RFKbrUk=","_parent":{"$ref":"AAAAAAGMDG/oxlGfEDw="},"type":{"$ref":"AAAAAAGMDBZil+iGdXI="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHBG2VRPEnY=","_parent":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"name":"rejoindrePartie","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHCizFVJ0+s=","_parent":{"$ref":"AAAAAAGMDHBG2VRPEnY="},"name":"codeInvitation","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHCizFVKyp8=","_parent":{"$ref":"AAAAAAGMDHBG2VRPEnY="},"name":"joueur","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHEKIVn9hiQ=","_parent":{"$ref":"AAAAAAGMDHBG2VRPEnY="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHC5xldpdms=","_parent":{"$ref":"AAAAAAGMDG0t3i+tqo0="},"name":"supprimerPartie","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHD3mFhj2rE=","_parent":{"$ref":"AAAAAAGMDHC5xldpdms="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHD3mFhkRWY=","_parent":{"$ref":"AAAAAAGMDHC5xldpdms="},"type":"bool","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDHFVK3EELXY=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"JeuGateway","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDHH7uHmgAlg=","_parent":{"$ref":"AAAAAAGMDHFVK3EELXY="},"source":{"$ref":"AAAAAAGMDHFVK3EELXY="},"target":{"$ref":"AAAAAAGMDBVhtuKV7iA="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDHIaHIIG4xw=","_parent":{"$ref":"AAAAAAGMDHFVK3EELXY="},"source":{"$ref":"AAAAAAGMDHFVK3EELXY="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHFmTnJXebM=","_parent":{"$ref":"AAAAAAGMDHFVK3EELXY="},"name":"JeuGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHGEYnNRMR8=","_parent":{"$ref":"AAAAAAGMDHFmTnJXebM="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHGEtnOkQ84=","_parent":{"$ref":"AAAAAAGMDHFVK3EELXY="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHGqb3SeDpQ=","_parent":{"$ref":"AAAAAAGMDHGEtnOkQ84="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHGqb3SfGIE=","_parent":{"$ref":"AAAAAAGMDHGEtnOkQ84="},"type":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHGq13UOsEs=","_parent":{"$ref":"AAAAAAGMDHFVK3EELXY="},"name":"getAll","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHHqvnYIYDM=","_parent":{"$ref":"AAAAAAGMDHGq13UOsEs="},"type":"List","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDHI224Tw0p0=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"ScientifiqueGateway","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDHZnRbHMKQQ=","_parent":{"$ref":"AAAAAAGMDHI224Tw0p0="},"source":{"$ref":"AAAAAAGMDHI224Tw0p0="},"target":{"$ref":"AAAAAAGMC95HP2Cn+4g="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDHau6713bdw=","_parent":{"$ref":"AAAAAAGMDHI224Tw0p0="},"source":{"$ref":"AAAAAAGMDHI224Tw0p0="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHJzkYZDlH0=","_parent":{"$ref":"AAAAAAGMDHI224Tw0p0="},"name":"ScientifiqueGateway","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHK1G4c9QCQ=","_parent":{"$ref":"AAAAAAGMDHJzkYZDlH0="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHK1XIeQHYQ=","_parent":{"$ref":"AAAAAAGMDHI224Tw0p0="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHMLkoiKIsw=","_parent":{"$ref":"AAAAAAGMDHK1XIeQHYQ="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHMLkoiLQfo=","_parent":{"$ref":"AAAAAAGMDHK1XIeQHYQ="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHML/Ij6luU=","_parent":{"$ref":"AAAAAAGMDHI224Tw0p0="},"name":"getRandomFromDifficulte","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHN7yYn0N1I=","_parent":{"$ref":"AAAAAAGMDHML/Ij6luU="},"name":"difficulte","type":{"$ref":"AAAAAAGMC+YI8maIQdw="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHN7yYn1ll8=","_parent":{"$ref":"AAAAAAGMDHML/Ij6luU="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHN8O4pkvvg=","_parent":{"$ref":"AAAAAAGMDHI224Tw0p0="},"name":"getRandom","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHOaGYteYLE=","_parent":{"$ref":"AAAAAAGMDHN8O4pkvvg="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHO9z41hUGg=","_parent":{"$ref":"AAAAAAGMDHI224Tw0p0="},"name":"deleteScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHP11Y5bYTo=","_parent":{"$ref":"AAAAAAGMDHO9z41hUGg="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHP11Y5cyxQ=","_parent":{"$ref":"AAAAAAGMDHO9z41hUGg="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMDHP2Q47LMBQ=","_parent":{"$ref":"AAAAAAGMDHI224Tw0p0="},"name":"insertScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHUxjI/FdXI=","_parent":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"name":"nom","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHUxjI/G8s0=","_parent":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"name":"prenom","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHUxjI/HzA0=","_parent":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"name":"dateNaissance","type":"date"},{"_type":"UMLParameter","_id":"AAAAAAGMDHUxjI/IfxU=","_parent":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"name":"descriptif","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHUxjI/JT1Q=","_parent":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"name":"thematique","type":{"$ref":"AAAAAAGMC+P422EN2ug="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHUxjI/KNd0=","_parent":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"name":"sexe","type":{"$ref":"AAAAAAGMC+fb3W5D+IE="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHUxjI/Lf5o=","_parent":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"name":"difficulte","type":{"$ref":"AAAAAAGMC+YI8maIQdw="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHUxjI/MjwI=","_parent":{"$ref":"AAAAAAGMDHP2Q47LMBQ="},"type":"bool","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEdVPJFO1Elg=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"AdminController","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEf/IuWAyXWw=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"source":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"target":{"$ref":"AAAAAAGMEdVPJFO1Elg="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMEintrHCMXAk=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"source":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"target":{"$ref":"AAAAAAGMEhNUWVmNCKQ="}},{"_type":"UMLDependency","_id":"AAAAAAGMEjDTZiltreo=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"source":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"target":{"$ref":"AAAAAAGMEhNUWVmNCKQ="}},{"_type":"UMLDependency","_id":"AAAAAAGMMcRT5NA5S5g=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"source":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"target":{"$ref":"AAAAAAGMEpDNCjG7Sgo="}},{"_type":"UMLDependency","_id":"AAAAAAGMMcSBJer5hd4=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"source":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"target":{"$ref":"AAAAAAGMEmuWgSR76X4="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEk1kOutO8os=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"name":"AdminController","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEk2OuO0jE3g=","_parent":{"$ref":"AAAAAAGMEk1kOutO8os="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMEk7IR/ck51o=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"name":"defaultAction","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEk7pgvj5M4s=","_parent":{"$ref":"AAAAAAGMEk7IR/ck51o="},"name":"params","type":"array"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEk8XRPpFqZE=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"name":"notLogged","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEk89IPwaiGQ=","_parent":{"$ref":"AAAAAAGMEk8XRPpFqZE="},"name":"params","type":"array"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEk9Kbf1ma/M=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"name":"stats","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEk+Oggdq/D4=","_parent":{"$ref":"AAAAAAGMEk9Kbf1ma/M="},"name":"params","type":"array"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEk9Vnf++1x0=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"name":"ajouterScientifiques","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEk+2WAk73k0=","_parent":{"$ref":"AAAAAAGMEk9Vnf++1x0="},"name":"params","type":"array"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEk9nZAURlWk=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"name":"listeScientifiques","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEk/jFwsM/Bg=","_parent":{"$ref":"AAAAAAGMEk9nZAURlWk="},"name":"params","type":"array"}]},{"_type":"UMLOperation","_id":"AAAAAAGMElAG4gxYetQ=","_parent":{"$ref":"AAAAAAGMEdVPJFO1Elg="},"name":"verifierDonnees","visibility":"private"}]},{"_type":"UMLClass","_id":"AAAAAAGMEdcp8n0pcY8=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"JouerController","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEg5t3BUq/84=","_parent":{"$ref":"AAAAAAGMEdcp8n0pcY8="},"source":{"$ref":"AAAAAAGMEdcp8n0pcY8="},"target":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLClass","_id":"AAAAAAGMEdc1q329gIA=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"FrontController","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEgBBKnYeFjA=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"source":{"$ref":"AAAAAAGMEdc1q329gIA="},"target":{"$ref":"AAAAAAGMEdVPJFO1Elg="}},{"_type":"UMLDependency","_id":"AAAAAAGMEgBn5HqCV8U=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"source":{"$ref":"AAAAAAGMEdc1q329gIA="},"target":{"$ref":"AAAAAAGMEdc5334xt+U="}},{"_type":"UMLDependency","_id":"AAAAAAGMEgEeO6Xc2KA=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"source":{"$ref":"AAAAAAGMEdc1q329gIA="},"target":{"$ref":"AAAAAAGMEdc3xH338V4="}},{"_type":"UMLDependency","_id":"AAAAAAGMEinCv2s1rOw=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"source":{"$ref":"AAAAAAGMEdc1q329gIA="},"target":{"$ref":"AAAAAAGMEdc3xH338V4="}},{"_type":"UMLDependency","_id":"AAAAAAGMEjBcDBsA7/A=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"source":{"$ref":"AAAAAAGMEdc1q329gIA="},"target":{"$ref":"AAAAAAGMEdc3xH338V4="}},{"_type":"UMLAssociation","_id":"AAAAAAGMEkdh47auly4=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"name":"con","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMEkdh47avkO4=","_parent":{"$ref":"AAAAAAGMEkdh47auly4="},"reference":{"$ref":"AAAAAAGMEdc1q329gIA="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMEkdh47awR4I=","_parent":{"$ref":"AAAAAAGMEkdh47auly4="},"reference":{"$ref":"AAAAAAGMEddG/35rkhw="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMEgF/lqfukfI=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"name":"con","visibility":"private","type":"Connection"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEihVoCGgdIk=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"name":"FrontController"},{"_type":"UMLOperation","_id":"AAAAAAGMEgL/a7oOVdg=","_parent":{"$ref":"AAAAAAGMEdc1q329gIA="},"name":"callController","visibility":"private","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEgNyF7y52as=","_parent":{"$ref":"AAAAAAGMEgL/a7oOVdg="},"name":"controller","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMEgNyF7y6H8g=","_parent":{"$ref":"AAAAAAGMEgL/a7oOVdg="},"name":"match","type":"array"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEdc3xH338V4=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"InviteController","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMEiqMII9GdkA=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"source":{"$ref":"AAAAAAGMEdc3xH338V4="},"target":{"$ref":"AAAAAAGMEhNUWVmNCKQ="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMEi+5Dfqd4U4=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"source":{"$ref":"AAAAAAGMEdc3xH338V4="},"target":{"$ref":"AAAAAAGMEdc5334xt+U="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMEjA+BBGmP/0=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"source":{"$ref":"AAAAAAGMEdc3xH338V4="},"target":{"$ref":"AAAAAAGMEhNUWVmNCKQ="}},{"_type":"UMLDependency","_id":"AAAAAAGMEjDjQC50Bqg=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"source":{"$ref":"AAAAAAGMEdc3xH338V4="},"target":{"$ref":"AAAAAAGMEhNUWVmNCKQ="}},{"_type":"UMLDependency","_id":"AAAAAAGMNpBzBv9DABk=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"source":{"$ref":"AAAAAAGMEdc3xH338V4="},"target":{"$ref":"AAAAAAGMNomnSTj8byw="}},{"_type":"UMLDependency","_id":"AAAAAAGMO3bbA0GrSNc=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"source":{"$ref":"AAAAAAGMEdc3xH338V4="},"target":{"$ref":"AAAAAAGMO2Pxy0g7n24="}},{"_type":"UMLAssociation","_id":"AAAAAAGMO5+4ShHVKtA=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"name":"selectionScientifique","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO5+4ShHW7Nc=","_parent":{"$ref":"AAAAAAGMO5+4ShHVKtA="},"reference":{"$ref":"AAAAAAGMEdc3xH338V4="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO5+4ShHXAiY=","_parent":{"$ref":"AAAAAAGMO5+4ShHVKtA="},"reference":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"},{"_type":"UMLDependency","_id":"AAAAAAGMO/IojjP9YqQ=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"source":{"$ref":"AAAAAAGMEdc3xH338V4="},"target":{"$ref":"AAAAAAGMO5RSYBuTcOo="}},{"_type":"UMLDependency","_id":"AAAAAAGMO/J901jqTJQ=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"source":{"$ref":"AAAAAAGMEdc3xH338V4="},"target":{"$ref":"AAAAAAGMO+KoETkCEX0="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEk2dOu81ioU=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"name":"InviteController","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEk3BIPEKtfw=","_parent":{"$ref":"AAAAAAGMEk2dOu81ioU="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMMcT8SAxPDsI=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"name":"creerUnePartie"},{"_type":"UMLOperation","_id":"AAAAAAGMMcVBlQ8slJM=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"name":"rejoindreUnePartie"},{"_type":"UMLOperation","_id":"AAAAAAGMMcVsrRIJCyY=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"name":"choisirPseudo"},{"_type":"UMLOperation","_id":"AAAAAAGMMciJ+CjcegI=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"name":"creerUnCompte"},{"_type":"UMLOperation","_id":"AAAAAAGMMcju/S2puVk=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"name":"connexion"},{"_type":"UMLOperation","_id":"AAAAAAGMMclGZTuc/gA=","_parent":{"$ref":"AAAAAAGMEdc3xH338V4="},"name":"jouer"}]},{"_type":"UMLClass","_id":"AAAAAAGMEdc5334xt+U=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"UserController","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMEipe04gI2vA=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"source":{"$ref":"AAAAAAGMEdc5334xt+U="},"target":{"$ref":"AAAAAAGMEhNUWVmNCKQ="}},{"_type":"UMLDependency","_id":"AAAAAAGMEitJNMlKt+s=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"source":{"$ref":"AAAAAAGMEdc5334xt+U="},"target":{"$ref":"AAAAAAGMEdcp8n0pcY8="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMEjN1RVjztCU=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"source":{"$ref":"AAAAAAGMEdc5334xt+U="},"target":{"$ref":"AAAAAAGMEdc3xH338V4="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMO55eWOJO+mw=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"name":"selectionScientifique","source":{"$ref":"AAAAAAGMEdc5334xt+U="},"target":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"visibility":"private"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEk4Z9PN/cJA=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"name":"UserController","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEk412vVUMTE=","_parent":{"$ref":"AAAAAAGMEk4Z9PN/cJA="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMMcXxRxXNsAo=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"name":"listerLesScientifiquesDecouvert"},{"_type":"UMLOperation","_id":"AAAAAAGMMcYwdRc/b/8=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"name":"Connexion"},{"_type":"UMLOperation","_id":"AAAAAAGMMcZ2ch12YIs=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"name":"deconnexion"},{"_type":"UMLOperation","_id":"AAAAAAGMMcaqpSFbzV0=","_parent":{"$ref":"AAAAAAGMEdc5334xt+U="},"name":"afficherDetailScientifique"}]},{"_type":"UMLClass","_id":"AAAAAAGMEddG/35rkhw=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Connection","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMEkWlGefH0P4=","_parent":{"$ref":"AAAAAAGMEddG/35rkhw="},"source":{"$ref":"AAAAAAGMEddG/35rkhw="},"target":{"$ref":"AAAAAAGMDFj8ltGDWrs="}},{"_type":"UMLAssociation","_id":"AAAAAAGMEkiSyyc2jUM=","_parent":{"$ref":"AAAAAAGMEddG/35rkhw="},"end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMEkiSyyc3KMM=","_parent":{"$ref":"AAAAAAGMEkiSyyc2jUM="},"reference":{"$ref":"AAAAAAGMEddG/35rkhw="}},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMEkiSyyc4YkE=","_parent":{"$ref":"AAAAAAGMEkiSyyc2jUM="},"reference":{"$ref":"AAAAAAGMDFj8ltGDWrs="},"navigable":"navigable"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMEkukQcdEpEU=","_parent":{"$ref":"AAAAAAGMEddG/35rkhw="},"name":"stmt","visibility":"private","type":"PDOStatement"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEkvrCs6E5Lw=","_parent":{"$ref":"AAAAAAGMEddG/35rkhw="},"name":"Connection","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEkwrxNBZprw=","_parent":{"$ref":"AAAAAAGMEkvrCs6E5Lw="},"name":"dsn","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMEkwrxNBaQxQ=","_parent":{"$ref":"AAAAAAGMEkvrCs6E5Lw="},"name":"username","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMEkwrxdBbxRY=","_parent":{"$ref":"AAAAAAGMEkvrCs6E5Lw="},"name":"password","type":"string"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEkxQsdTB81s=","_parent":{"$ref":"AAAAAAGMEddG/35rkhw="},"name":"executeQuery","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEkx9qdaWbDo=","_parent":{"$ref":"AAAAAAGMEkxQsdTB81s="},"name":"query","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMEkx9qtaXiBw=","_parent":{"$ref":"AAAAAAGMEkxQsdTB81s="},"name":"params","type":"array"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEkyVAdiqvz0=","_parent":{"$ref":"AAAAAAGMEddG/35rkhw="},"name":"getResults","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEkzFV92YdW4=","_parent":{"$ref":"AAAAAAGMEkyVAdiqvz0="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEkzSON9HGj0=","_parent":{"$ref":"AAAAAAGMEddG/35rkhw="},"name":"getOneResult","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEkz+xuEc/BE=","_parent":{"$ref":"AAAAAAGMEkzSON9HGj0="},"type":"array","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDB+zgDfS/MI=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Reponse","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMDCHlLWruLMI=","_parent":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"name":"scientifique","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDCHlLWrvrsY=","_parent":{"$ref":"AAAAAAGMDCHlLWruLMI="},"reference":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDCHlLWrwjrw=","_parent":{"$ref":"AAAAAAGMDCHlLWruLMI="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDCAB3j7EjW4=","_parent":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMDCAdU0CZOjA=","_parent":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"name":"reponse","visibility":"private","type":""}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHcHpMdHSio=","_parent":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"name":"Reponse","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHcqqshBoYc=","_parent":{"$ref":"AAAAAAGMDHcHpMdHSio="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHcqqshCLfI=","_parent":{"$ref":"AAAAAAGMDHcHpMdHSio="},"name":"reponse","type":"string"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDB+czDaCSSs=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Question","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMDCCdtVU1iJQ=","_parent":{"$ref":"AAAAAAGMDB+czDaCSSs="},"name":"reponses","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDCCdtVU27+s=","_parent":{"$ref":"AAAAAAGMDCCdtVU1iJQ="},"reference":{"$ref":"AAAAAAGMDB+czDaCSSs="},"multiplicity":"1"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDCCdtVU3/l4=","_parent":{"$ref":"AAAAAAGMDCCdtVU1iJQ="},"reference":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"navigable":"navigable","multiplicity":"2..*"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDB/QxTpysiU=","_parent":{"$ref":"AAAAAAGMDB+czDaCSSs="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMDB/j4DxHGZI=","_parent":{"$ref":"AAAAAAGMDB+czDaCSSs="},"name":"question","visibility":"private","type":"string"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHbKL8OLehg=","_parent":{"$ref":"AAAAAAGMDB+czDaCSSs="},"name":"Question","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHboT8SFTEY=","_parent":{"$ref":"AAAAAAGMDHbKL8OLehg="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHboT8SG4G8=","_parent":{"$ref":"AAAAAAGMDHbKL8OLehg="},"name":"question","type":"string"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDBuarwheVvc=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Indice","attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDBuv1glOITM=","_parent":{"$ref":"AAAAAAGMDBuarwheVvc="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMDBvBqAobOtM=","_parent":{"$ref":"AAAAAAGMDBuarwheVvc="},"name":"indice","visibility":"private","type":"string"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHc/WsxID0I=","_parent":{"$ref":"AAAAAAGMDBuarwheVvc="},"name":"Indice","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHdp781CIhI=","_parent":{"$ref":"AAAAAAGMDHc/WsxID0I="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHdp781Dm2Y=","_parent":{"$ref":"AAAAAAGMDHc/WsxID0I="},"name":"indice string","type":""}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDBqwaPw9v8g=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Admin","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMEiNSx5IMhEA=","_parent":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"source":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"target":{"$ref":"AAAAAAGMEh+oSqAZdr0="}}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDBrCqf3zBpk=","_parent":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMDBrpdP+GlnM=","_parent":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"name":"email","visibility":"private","type":"string"},{"_type":"UMLAttribute","_id":"AAAAAAGMDBtPGQHxwr8=","_parent":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"name":"motDePasse","visibility":"private","type":"string"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHvMhvW9p7Y=","_parent":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"name":"Admin","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHv5Cva3Ibo=","_parent":{"$ref":"AAAAAAGMDHvMhvW9p7Y="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHv5Cva4C9Y=","_parent":{"$ref":"AAAAAAGMDHvMhvW9p7Y="},"name":"email","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHv5Cva5KdI=","_parent":{"$ref":"AAAAAAGMDHvMhvW9p7Y="},"name":"motDePasse","type":"string"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDBZil+iGdXI=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Partie","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMDBgUxO9bA0s=","_parent":{"$ref":"AAAAAAGMDBZil+iGdXI="},"name":"jeu","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDBgUxO9cOt0=","_parent":{"$ref":"AAAAAAGMDBgUxO9bA0s="},"reference":{"$ref":"AAAAAAGMDBZil+iGdXI="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDBgUxO9dkUI=","_parent":{"$ref":"AAAAAAGMDBgUxO9bA0s="},"reference":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMDBiZJPgV7QA=","_parent":{"$ref":"AAAAAAGMDBZil+iGdXI="},"name":"joueurs","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDBiZJPgWBiE=","_parent":{"$ref":"AAAAAAGMDBiZJPgV7QA="},"reference":{"$ref":"AAAAAAGMDBZil+iGdXI="},"multiplicity":"0..1"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDBiZJPgXaCM=","_parent":{"$ref":"AAAAAAGMDBiZJPgV7QA="},"reference":{"$ref":"AAAAAAGMC/AivKOMyoc="},"navigable":"navigable","multiplicity":"1..*"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDBZzK+k04sI=","_parent":{"$ref":"AAAAAAGMDBZil+iGdXI="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMDBaHu+m/kzQ=","_parent":{"$ref":"AAAAAAGMDBZil+iGdXI="},"name":"codeInvitation","visibility":"private","type":"string"},{"_type":"UMLAttribute","_id":"AAAAAAGMDBaoH+pKCU8=","_parent":{"$ref":"AAAAAAGMDBZil+iGdXI="},"name":"Attribute1","type":""}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHkXT+mETgE=","_parent":{"$ref":"AAAAAAGMDBZil+iGdXI="},"name":"Partie","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHnebep+owE=","_parent":{"$ref":"AAAAAAGMDHkXT+mETgE="},"name":"int","type":"id"},{"_type":"UMLParameter","_id":"AAAAAAGMDHnebep/tgo=","_parent":{"$ref":"AAAAAAGMDHkXT+mETgE="},"name":"codeInvitation","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHnebeqAwgE=","_parent":{"$ref":"AAAAAAGMDHkXT+mETgE="},"name":"jeu","type":{"$ref":"AAAAAAGMDBVhtuKV7iA="}}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDBVhtuKV7iA=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"JeuDB","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMDBYkB+fBmXg=","_parent":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"source":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"target":{"$ref":"AAAAAAGMC95HP2Cn+4g="}},{"_type":"UMLDependency","_id":"AAAAAAGMDBx1bBWeg2U=","_parent":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"source":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"target":{"$ref":"AAAAAAGMDBuarwheVvc="}},{"_type":"UMLDependency","_id":"AAAAAAGMDCBfO1LYx6A=","_parent":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"source":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"target":{"$ref":"AAAAAAGMDB+czDaCSSs="}}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDBV8DOPHf/U=","_parent":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMDBWQY+TWY+U=","_parent":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"name":"nom","visibility":"private","type":"string"},{"_type":"UMLAttribute","_id":"AAAAAAGMDBWye+VhX/M=","_parent":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"name":"nbParties","visibility":"private","type":"int"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHqFney7za4=","_parent":{"$ref":"AAAAAAGMDBVhtuKV7iA="},"name":"Jeu","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHq2s+21LGM=","_parent":{"$ref":"AAAAAAGMDHqFney7za4="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHq2tO22cuA=","_parent":{"$ref":"AAAAAAGMDHqFney7za4="},"name":"nom string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHq2tO23Mh4=","_parent":{"$ref":"AAAAAAGMDHqFney7za4="},"name":"nbParties","type":"int"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDA2vdbQq5xA=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Invite","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMDA6i28LdFGw=","_parent":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDA6i28LeURk=","_parent":{"$ref":"AAAAAAGMDA6i28LdFGw="},"reference":{"$ref":"AAAAAAGMDA2vdbQq5xA="}},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDA6i28LfrvM=","_parent":{"$ref":"AAAAAAGMDA6i28LdFGw="},"reference":{"$ref":"AAAAAAGMC/AivKOMyoc="},"aggregation":"composite"}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDBIHQs4X7Fg=","_parent":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"source":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"target":{"$ref":"AAAAAAGMC/AivKOMyoc="}}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDA38/rUaZxM=","_parent":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"name":"idSession","visibility":"private","type":"string"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHiB1OGCLP4=","_parent":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"name":"Invite","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHjZveJ8UQM=","_parent":{"$ref":"AAAAAAGMDHiB1OGCLP4="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHjZveJ9+dg=","_parent":{"$ref":"AAAAAAGMDHiB1OGCLP4="},"name":"pseudo string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHjZveJ+bFA=","_parent":{"$ref":"AAAAAAGMDHiB1OGCLP4="},"name":"idsession string","type":""}]}]},{"_type":"UMLClass","_id":"AAAAAAGMDAzKB61hTcc=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Utilisateur","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMDA4qFbYnySE=","_parent":{"$ref":"AAAAAAGMDAzKB61hTcc="},"source":{"$ref":"AAAAAAGMDAzKB61hTcc="},"target":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLGeneralization","_id":"AAAAAAGMDA5+iL/F2AA=","_parent":{"$ref":"AAAAAAGMDAzKB61hTcc="},"source":{"$ref":"AAAAAAGMDAzKB61hTcc="},"target":{"$ref":"AAAAAAGMC/AivKOMyoc="}}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDAz3Ra5jMwc=","_parent":{"$ref":"AAAAAAGMDAzKB61hTcc="},"name":"idJoueur","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMDA0PEq8w0/A=","_parent":{"$ref":"AAAAAAGMDAzKB61hTcc="},"name":"email","visibility":"private","type":"string"},{"_type":"UMLAttribute","_id":"AAAAAAGMDA0rAK/9vj8=","_parent":{"$ref":"AAAAAAGMDAzKB61hTcc="},"name":"motDePasse","visibility":"private","type":"string"},{"_type":"UMLAttribute","_id":"AAAAAAGMDA1dlbEt4mY=","_parent":{"$ref":"AAAAAAGMDAzKB61hTcc="},"name":"Attribute1","type":""}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHgUEN1WavU=","_parent":{"$ref":"AAAAAAGMDAzKB61hTcc="},"name":"Utilisateur","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHhpoN5QChs=","_parent":{"$ref":"AAAAAAGMDHgUEN1WavU="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHhpoN5REPM=","_parent":{"$ref":"AAAAAAGMDHgUEN1WavU="},"name":"pseudo string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHhpoN5SZOU=","_parent":{"$ref":"AAAAAAGMDHgUEN1WavU="},"name":"email string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHhpoN5THB4=","_parent":{"$ref":"AAAAAAGMDHgUEN1WavU="},"name":"motdepasse string","type":""}]}]},{"_type":"UMLClass","_id":"AAAAAAGMC/AivKOMyoc=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Joueur","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMDBO6YtIdU6M=","_parent":{"$ref":"AAAAAAGMC/AivKOMyoc="},"name":"scientifiquesDecouverts","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDBO6Y9IeEos=","_parent":{"$ref":"AAAAAAGMDBO6YtIdU6M="},"reference":{"$ref":"AAAAAAGMDAzKB61hTcc="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDBO6Y9IfnJo=","_parent":{"$ref":"AAAAAAGMDBO6YtIdU6M="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"navigable":"navigable","multiplicity":"0..*"},"visibility":"private"},{"_type":"UMLGeneralization","_id":"AAAAAAGMEiMvuIzQ2h4=","_parent":{"$ref":"AAAAAAGMC/AivKOMyoc="},"source":{"$ref":"AAAAAAGMC/AivKOMyoc="},"target":{"$ref":"AAAAAAGMEh+oSqAZdr0="}},{"_type":"UMLAssociation","_id":"AAAAAAGMO8kYHCn7KjE=","_parent":{"$ref":"AAAAAAGMC/AivKOMyoc="},"name":"joueurA","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO8kYHCn8TsY=","_parent":{"$ref":"AAAAAAGMO8kYHCn7KjE="},"reference":{"$ref":"AAAAAAGMC/AivKOMyoc="}},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO8kYHCn9EhE=","_parent":{"$ref":"AAAAAAGMO8kYHCn7KjE="},"reference":{"$ref":"AAAAAAGMO8acZOdM0GU="},"navigable":"navigable"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMDAlZpqs3g/w=","_parent":{"$ref":"AAAAAAGMC/AivKOMyoc="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMDAl4aKwxmE8=","_parent":{"$ref":"AAAAAAGMC/AivKOMyoc="},"name":"pseudo","visibility":"private","type":"string"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHjo5uSf2lQ=","_parent":{"$ref":"AAAAAAGMC/AivKOMyoc="},"name":"Joueur","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHkBd+WZFeM=","_parent":{"$ref":"AAAAAAGMDHjo5uSf2lQ="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMDHkBd+Wa108=","_parent":{"$ref":"AAAAAAGMDHjo5uSf2lQ="},"name":"pseudo string","type":""}]}],"isAbstract":true},{"_type":"UMLClass","_id":"AAAAAAGMC+fb3W5D+IE=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Sexe","attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMC+h3SHIjv6c=","_parent":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+iJ/3K60Eo=","_parent":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"name":"libelle","visibility":"private","type":"string"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHe5+9UFlpg=","_parent":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"name":"Sexe","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHfU4NX/eYo=","_parent":{"$ref":"AAAAAAGMDHe5+9UFlpg="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHfU4NYAxCw=","_parent":{"$ref":"AAAAAAGMDHe5+9UFlpg="},"name":"libelle","type":"string"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMC+YI8maIQdw=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Difficulte","attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMC+Y5RWb6mRU=","_parent":{"$ref":"AAAAAAGMC+YI8maIQdw="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+ZYQmdJHTY=","_parent":{"$ref":"AAAAAAGMC+YI8maIQdw="},"name":"libelle","visibility":"private","type":"string"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHfeMteYAcs=","_parent":{"$ref":"AAAAAAGMC+YI8maIQdw="},"name":"Difficulte","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHf/SdiS34w=","_parent":{"$ref":"AAAAAAGMDHfeMteYAcs="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHf/SdiTnFc=","_parent":{"$ref":"AAAAAAGMDHfeMteYAcs="},"name":"libelle","type":"string"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMC+P422EN2ug=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Thematique","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMC+Sx92FFtPs=","_parent":{"$ref":"AAAAAAGMC+P422EN2ug="},"end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMC+Sx92FGPPc=","_parent":{"$ref":"AAAAAAGMC+Sx92FFtPs="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMC+Sx92FHac8=","_parent":{"$ref":"AAAAAAGMC+Sx92FFtPs="},"name":"thematique","reference":{"$ref":"AAAAAAGMC+P422EN2ug="},"visibility":"private","navigable":"navigable","multiplicity":"1"}}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMC+QvdWE354w=","_parent":{"$ref":"AAAAAAGMC+P422EN2ug="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+RjVWE+Lck=","_parent":{"$ref":"AAAAAAGMC+P422EN2ug="},"name":"libelle","visibility":"private","type":"string"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHeQrNI83BM=","_parent":{"$ref":"AAAAAAGMC+P422EN2ug="},"name":"Thematique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHevVdM2SCg=","_parent":{"$ref":"AAAAAAGMDHeQrNI83BM="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHevVdM3QPM=","_parent":{"$ref":"AAAAAAGMDHeQrNI83BM="},"name":"libelle","type":"string"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMC95HP2Cn+4g=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Scientifique","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMC+aFY2fLJ/c=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"difficulte","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMC+aFY2fM3Vw=","_parent":{"$ref":"AAAAAAGMC+aFY2fLJ/c="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMC+aFY2fNwIg=","_parent":{"$ref":"AAAAAAGMC+aFY2fLJ/c="},"reference":{"$ref":"AAAAAAGMC+YI8maIQdw="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMC+irJnMV3jE=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMC+irJnMWxkQ=","_parent":{"$ref":"AAAAAAGMC+irJnMV3jE="},"reference":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"multiplicity":"1"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMC+irJnMXk2M=","_parent":{"$ref":"AAAAAAGMC+irJnMV3jE="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"multiplicity":"0..*"}},{"_type":"UMLAssociation","_id":"AAAAAAGMDBwMHgzyyTI=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"indices","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDBwMHgzzW3c=","_parent":{"$ref":"AAAAAAGMDBwMHgzyyTI="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"multiplicity":"1"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMDBwMHgz06uw=","_parent":{"$ref":"AAAAAAGMDBwMHgzyyTI="},"reference":{"$ref":"AAAAAAGMDBuarwheVvc="},"navigable":"navigable","multiplicity":"0..*"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMNo7HpKbCU4s=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"scientifique","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMNo7HpKbDDWo=","_parent":{"$ref":"AAAAAAGMNo7HpKbCU4s="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="}},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMNo7HpKbEwdo=","_parent":{"$ref":"AAAAAAGMNo7HpKbCU4s="},"reference":{"$ref":"AAAAAAGMNomnSTj8byw="},"navigable":"navigable"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMC+FAM2DSheU=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"id","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+GR2WDaBwU=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"nom","visibility":"private","type":"string"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+H4xmDk0bM=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"prenom","visibility":"private","type":"string"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+I6G2Dtprs=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"dateNaissance","visibility":"private","type":"date"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+JjJ2D1X58=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"descriptif","visibility":"private","type":"string"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+KloGD9Qi8=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"ratioTrouvee","visibility":"private","type":"float"},{"_type":"UMLAttribute","_id":"AAAAAAGMC+LZb2EF+No=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"Attribute1","type":""}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMDHrIofFRVyo=","_parent":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"name":"Scientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJLO7Q=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJMy0Q=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"nom","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJN06c=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"prenom","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJOQJA=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"dateNaissance","type":"date"},{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJPfQw=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"descriptif","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJQWX0=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"ratiotrouvee","type":"float"},{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJRM4I=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"thematique","type":{"$ref":"AAAAAAGMC+P422EN2ug="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJSkow=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"sexe","type":{"$ref":"AAAAAAGMC+fb3W5D+IE="}},{"_type":"UMLParameter","_id":"AAAAAAGMDHuutvJTgKQ=","_parent":{"$ref":"AAAAAAGMDHrIofFRVyo="},"name":"difficulte","type":{"$ref":"AAAAAAGMC+YI8maIQdw="}}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEhNUWVmNCKQ=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Validation","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEhPEX1ysHjI=","_parent":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"name":"valAlpha","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEhSeKGzXUN8=","_parent":{"$ref":"AAAAAAGMEhPEX1ysHjI="},"name":"str","type":"string"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEhRMcWLT5dY=","_parent":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"name":"valAlphaNum","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEhWbKXRXDC0=","_parent":{"$ref":"AAAAAAGMEhRMcWLT5dY="},"name":"str","type":"string"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEhRPOmPMPuk=","_parent":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"name":"valInteger","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEhowXn4XQWs=","_parent":{"$ref":"AAAAAAGMEhRPOmPMPuk="},"name":"val","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEhowXn4YeGU=","_parent":{"$ref":"AAAAAAGMEhRPOmPMPuk="},"name":"min","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEhowX34ZSC0=","_parent":{"$ref":"AAAAAAGMEhRPOmPMPuk="},"name":"max","type":"int"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEhRRo2TFB1w=","_parent":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"name":"valFloat","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEhpwWX/ObpM=","_parent":{"$ref":"AAAAAAGMEhRRo2TFB1w="},"name":"val","type":"float"},{"_type":"UMLParameter","_id":"AAAAAAGMEhpwWX/Pc40=","_parent":{"$ref":"AAAAAAGMEhRRo2TFB1w="},"name":"min","type":"float"},{"_type":"UMLParameter","_id":"AAAAAAGMEhpwWn/QTLM=","_parent":{"$ref":"AAAAAAGMEhRRo2TFB1w="},"name":"max","type":"float"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEhRUwGW+tq0=","_parent":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"name":"valEmail","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEhqj9oGFlW0=","_parent":{"$ref":"AAAAAAGMEhRUwGW+tq0="},"name":"email","type":"string"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEiXrXwKUONo=","_parent":{"$ref":"AAAAAAGMEhNUWVmNCKQ="},"name":"valRole","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEiYs+gU/oT4=","_parent":{"$ref":"AAAAAAGMEiXrXwKUONo="},"name":"id","type":"int"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEltwNWWFpxU=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"InviteModel","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEl9uXoS6pWI=","_parent":{"$ref":"AAAAAAGMEltwNWWFpxU="},"source":{"$ref":"AAAAAAGMEltwNWWFpxU="},"target":{"$ref":"AAAAAAGMDGmmJOs+kMY="}},{"_type":"UMLDependency","_id":"AAAAAAGMEmAeQb5xLD8=","_parent":{"$ref":"AAAAAAGMEltwNWWFpxU="},"source":{"$ref":"AAAAAAGMEltwNWWFpxU="},"target":{"$ref":"AAAAAAGMDA2vdbQq5xA="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMElwslXAkgFc=","_parent":{"$ref":"AAAAAAGMEltwNWWFpxU="},"name":"InviteModel","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMElxrtXH5lOY=","_parent":{"$ref":"AAAAAAGMElwslXAkgFc="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmzmPzm4z58=","_parent":{"$ref":"AAAAAAGMEltwNWWFpxU="},"name":"isInvite","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEm0IQTroiSg=","_parent":{"$ref":"AAAAAAGMEmzmPzm4z58="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMElx8zHQLP1k=","_parent":{"$ref":"AAAAAAGMEltwNWWFpxU="},"name":"getById","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMElzfk3U7DdQ=","_parent":{"$ref":"AAAAAAGMElx8zHQLP1k="},"name":"int","type":"id"},{"_type":"UMLParameter","_id":"AAAAAAGMElzfk3U8X1w=","_parent":{"$ref":"AAAAAAGMElx8zHQLP1k="},"type":{"$ref":"AAAAAAGMDA2vdbQq5xA="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmPes235D9M=","_parent":{"$ref":"AAAAAAGMEltwNWWFpxU="},"name":"getFromIdSession","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmRQuHEZg5s=","_parent":{"$ref":"AAAAAAGMEmPes235D9M="},"name":"idSession string","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmUG53VckF8=","_parent":{"$ref":"AAAAAAGMEltwNWWFpxU="},"name":"supprimerInvite","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmVER3cxwFs=","_parent":{"$ref":"AAAAAAGMEmUG53VckF8="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEmVER3cyVR4=","_parent":{"$ref":"AAAAAAGMEmUG53VckF8="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmX3Rnu5Nxw=","_parent":{"$ref":"AAAAAAGMEltwNWWFpxU="},"name":"insertInvite","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmaz3H2Osl4=","_parent":{"$ref":"AAAAAAGMEmX3Rnu5Nxw="},"name":"invite Invite","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEmaz3H2P2pw=","_parent":{"$ref":"AAAAAAGMEmX3Rnu5Nxw="},"type":"bool","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEh+oSqAZdr0=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Role","attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMEiAQqa6xlHQ=","_parent":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"name":"id","visibility":"private","type":"int"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEh+oSqAaFbs=","_parent":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"name":"valAlpha","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEh+oSqAbP0c=","_parent":{"$ref":"AAAAAAGMEh+oSqAaFbs="},"name":"str","type":"string"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEh+oSqAcD7g=","_parent":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"name":"valAlphaNum","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEh+oSqAdPCk=","_parent":{"$ref":"AAAAAAGMEh+oSqAcD7g="},"name":"str","type":"string"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEh+oSqAevp0=","_parent":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"name":"valInteger","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEh+oSqAfbV8=","_parent":{"$ref":"AAAAAAGMEh+oSqAevp0="},"name":"val","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEh+oSqAg+j4=","_parent":{"$ref":"AAAAAAGMEh+oSqAevp0="},"name":"min","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEh+oSqAhOV8=","_parent":{"$ref":"AAAAAAGMEh+oSqAevp0="},"name":"max","type":"int"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEh+oSqAiuPo=","_parent":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"name":"valFloat","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEh+oSqAjOsE=","_parent":{"$ref":"AAAAAAGMEh+oSqAiuPo="},"name":"val","type":"float"},{"_type":"UMLParameter","_id":"AAAAAAGMEh+oSqAktis=","_parent":{"$ref":"AAAAAAGMEh+oSqAiuPo="},"name":"min","type":"float"},{"_type":"UMLParameter","_id":"AAAAAAGMEh+oSqAliIk=","_parent":{"$ref":"AAAAAAGMEh+oSqAiuPo="},"name":"max","type":"float"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEh+oS6AmVtI=","_parent":{"$ref":"AAAAAAGMEh+oSqAZdr0="},"name":"valEmail","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEh+oS6AnqKg=","_parent":{"$ref":"AAAAAAGMEh+oS6AmVtI="},"name":"email","type":"string"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEmclypt9yks=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"UtilisateurModel","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEmpZCtcqwkg=","_parent":{"$ref":"AAAAAAGMEmclypt9yks="},"source":{"$ref":"AAAAAAGMEmclypt9yks="},"target":{"$ref":"AAAAAAGMDAzKB61hTcc="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEmeMPqtCi/8=","_parent":{"$ref":"AAAAAAGMEmclypt9yks="},"name":"UtilisateurModel","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmfmmrQQ6lw=","_parent":{"$ref":"AAAAAAGMEmeMPqtCi/8="},"name":"con Connection","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMEm0svEB2qhA=","_parent":{"$ref":"AAAAAAGMEmclypt9yks="},"name":"isUtilisateur","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEm1LTUGmTII=","_parent":{"$ref":"AAAAAAGMEm0svEB2qhA="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmf+AbbHEq8=","_parent":{"$ref":"AAAAAAGMEmclypt9yks="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmgGS7icZdA=","_parent":{"$ref":"AAAAAAGMEmf+AbbHEq8="},"name":"int id","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEmgGS7idPv4=","_parent":{"$ref":"AAAAAAGMEmf+AbbHEq8="},"type":{"$ref":"AAAAAAGMDAzKB61hTcc="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmgnNb0CYoA=","_parent":{"$ref":"AAAAAAGMEmclypt9yks="},"name":"getFromEmail","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmgyib4yZdU=","_parent":{"$ref":"AAAAAAGMEmgnNb0CYoA="},"name":"email string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEmgyib4zOzc=","_parent":{"$ref":"AAAAAAGMEmgnNb0CYoA="},"type":{"$ref":"AAAAAAGMDAzKB61hTcc="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmmal8xmpAQ=","_parent":{"$ref":"AAAAAAGMEmclypt9yks="},"name":"insertUtilisateur","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmnF/s23AZU=","_parent":{"$ref":"AAAAAAGMEmmal8xmpAQ="},"name":"pseudo string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEmnF/s24VGs=","_parent":{"$ref":"AAAAAAGMEmmal8xmpAQ="},"name":"email string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEmnF/s25KcQ=","_parent":{"$ref":"AAAAAAGMEmmal8xmpAQ="},"name":"motdepasse string","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEmnF/s26ip8=","_parent":{"$ref":"AAAAAAGMEmmal8xmpAQ="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmsfbBmcY0Q=","_parent":{"$ref":"AAAAAAGMEmclypt9yks="},"name":"supprimerUtilisateur","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmssgRtxQF8=","_parent":{"$ref":"AAAAAAGMEmsfbBmcY0Q="},"name":"id int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEmssgRtyI1g=","_parent":{"$ref":"AAAAAAGMEmsfbBmcY0Q="},"type":"bool","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEmuWgSR76X4=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"ModelAdmin","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEm4SwW5ZuD4=","_parent":{"$ref":"AAAAAAGMEmuWgSR76X4="},"source":{"$ref":"AAAAAAGMEmuWgSR76X4="},"target":{"$ref":"AAAAAAGMDGffwa3WW6c="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEm19Q0wb/Tk=","_parent":{"$ref":"AAAAAAGMEmuWgSR76X4="},"name":"ModelAdmin","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEm23kU1LQxo=","_parent":{"$ref":"AAAAAAGMEm19Q0wb/Tk="},"name":"con Connection","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMEmwlNyveUu8=","_parent":{"$ref":"AAAAAAGMEmuWgSR76X4="},"name":"isAdmin","isStatic":true,"parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEmyxvjKcLxM=","_parent":{"$ref":"AAAAAAGMEmwlNyveUu8="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEm6Sz5Vzi70=","_parent":{"$ref":"AAAAAAGMEmuWgSR76X4="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEm+KqarpEyk=","_parent":{"$ref":"AAAAAAGMEm6Sz5Vzi70="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEm+Kqarq1Q0=","_parent":{"$ref":"AAAAAAGMEm6Sz5Vzi70="},"type":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEm+aC60edbc=","_parent":{"$ref":"AAAAAAGMEmuWgSR76X4="},"name":"getFromEmail","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEnBHr65O8+Q=","_parent":{"$ref":"AAAAAAGMEm+aC60edbc="},"name":"email","type":"String"},{"_type":"UMLParameter","_id":"AAAAAAGMEnBHr65Pll8=","_parent":{"$ref":"AAAAAAGMEm+aC60edbc="},"type":{"$ref":"AAAAAAGMDBqwaPw9v8g="},"direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEnLCKgV8o3I=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"ReponseModel","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEnPXFjDLsEo=","_parent":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"source":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"target":{"$ref":"AAAAAAGMDB+zgDfS/MI="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEnM+qQu3sXM=","_parent":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"name":"ReponseModel"},{"_type":"UMLOperation","_id":"AAAAAAGMEnTsMXvB4p4=","_parent":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEnUefXzxZjE=","_parent":{"$ref":"AAAAAAGMEnTsMXvB4p4="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEnUefXzyD68=","_parent":{"$ref":"AAAAAAGMEnTsMXvB4p4="},"type":{"$ref":"AAAAAAGMDB+zgDfS/MI="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEnUtE3+JhcE=","_parent":{"$ref":"AAAAAAGMEnLCKgV8o3I="},"name":"getFromQuestion","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEnVZzIC54Dw=","_parent":{"$ref":"AAAAAAGMEnUtE3+JhcE="},"name":"idQuestion","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEnaRZYy9tgE=","_parent":{"$ref":"AAAAAAGMEnUtE3+JhcE="},"type":"reponse","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEnhpYLEF72s=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"IndiceModel","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEnilv7Mf+j0=","_parent":{"$ref":"AAAAAAGMEnhpYLEF72s="},"source":{"$ref":"AAAAAAGMEnhpYLEF72s="},"target":{"$ref":"AAAAAAGMDFvWtfxZRxc="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEnl/NM8jmCU=","_parent":{"$ref":"AAAAAAGMEnhpYLEF72s="},"name":"IndiceModel","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEnm4hdD4n28=","_parent":{"$ref":"AAAAAAGMEnl/NM8jmCU="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMEnpJ2/G9klg=","_parent":{"$ref":"AAAAAAGMEnhpYLEF72s="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEnyGCfybWow=","_parent":{"$ref":"AAAAAAGMEnpJ2/G9klg="},"type":{"$ref":"AAAAAAGMDBuarwheVvc="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEny0SAEAOyk=","_parent":{"$ref":"AAAAAAGMEnhpYLEF72s="},"name":"getFromScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEn1BYALVeVU=","_parent":{"$ref":"AAAAAAGMEny0SAEAOyk="},"name":"idScientifique","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEn1BYALW/5Q=","_parent":{"$ref":"AAAAAAGMEny0SAEAOyk="},"type":"List","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEn5/Fi3UqtI=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"SexeModel","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEoETQ1CtSms=","_parent":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"source":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"target":{"$ref":"AAAAAAGMDGNZDFHn4C0="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEn7NsDNq3mo=","_parent":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"name":"SexeModel","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEn8KGzU/7+w=","_parent":{"$ref":"AAAAAAGMEn7NsDNq3mo="},"name":"con Connection","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMEn8vFD9Qxhs=","_parent":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEn9oFUJwrbE=","_parent":{"$ref":"AAAAAAGMEn8vFD9Qxhs="},"type":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEn+oxUebAQc=","_parent":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"name":"getFromScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEn//t0jL1j4=","_parent":{"$ref":"AAAAAAGMEn+oxUebAQc="},"name":"idScientifique int","type":""},{"_type":"UMLParameter","_id":"AAAAAAGMEn//t0jMUAo=","_parent":{"$ref":"AAAAAAGMEn+oxUebAQc="},"type":{"$ref":"AAAAAAGMC+fb3W5D+IE="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEoU3Tb5bmFg=","_parent":{"$ref":"AAAAAAGMEn5/Fi3UqtI="},"name":"getAll","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEoVcOb+LVfE=","_parent":{"$ref":"AAAAAAGMEoU3Tb5bmFg="},"type":"List","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEoJNfIfpXc8=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"ThematiqueModel","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEoSot5byPmg=","_parent":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"source":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"target":{"$ref":"AAAAAAGMDF5TZDXOvGY="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEoQDW47J95s=","_parent":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"name":"ThematiqueModel","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEoQwbZCebjI=","_parent":{"$ref":"AAAAAAGMEoQDW47J95s="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMEoUfQbpVk+4=","_parent":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEodj38VCuFE=","_parent":{"$ref":"AAAAAAGMEoUfQbpVk+4="},"type":"List","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEofkxtYrQP4=","_parent":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"name":"getFromScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEohfR9dbqaw=","_parent":{"$ref":"AAAAAAGMEofkxtYrQP4="},"name":"idScientifique","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEohfR9dc/MI=","_parent":{"$ref":"AAAAAAGMEofkxtYrQP4="},"type":{"$ref":"AAAAAAGMC+P422EN2ug="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEoiapu0MbPg=","_parent":{"$ref":"AAAAAAGMEoJNfIfpXc8="},"name":"getAll","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEojVbe48a64=","_parent":{"$ref":"AAAAAAGMEoiapu0MbPg="},"type":"List","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEomDjPtMKWI=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"DifficulteModel","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEop6KAhFAvY=","_parent":{"$ref":"AAAAAAGMEomDjPtMKWI="},"source":{"$ref":"AAAAAAGMEomDjPtMKWI="},"target":{"$ref":"AAAAAAGMDGYkGpB62Mc="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEooT5//7n/0=","_parent":{"$ref":"AAAAAAGMEomDjPtMKWI="},"name":"DifficulteModel","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEopGbwISBGc=","_parent":{"$ref":"AAAAAAGMEooT5//7n/0="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMEosJhjBImhk=","_parent":{"$ref":"AAAAAAGMEomDjPtMKWI="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEotQKjF4cVM=","_parent":{"$ref":"AAAAAAGMEosJhjBImhk="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEotQKjF5tsU=","_parent":{"$ref":"AAAAAAGMEosJhjBImhk="},"type":{"$ref":"AAAAAAGMC+YI8maIQdw="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEow6cjNr0K8=","_parent":{"$ref":"AAAAAAGMEomDjPtMKWI="},"name":"getFromScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEoySijSb/l8=","_parent":{"$ref":"AAAAAAGMEow6cjNr0K8="},"name":"idScientifique","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEoySijScsHo=","_parent":{"$ref":"AAAAAAGMEow6cjNr0K8="},"type":{"$ref":"AAAAAAGMC+YI8maIQdw="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEozvglPYl/w=","_parent":{"$ref":"AAAAAAGMEomDjPtMKWI="},"name":"getAll","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEo0i2lUI5h8=","_parent":{"$ref":"AAAAAAGMEozvglPYl/w="},"type":"List","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMEpDNCjG7Sgo=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"ScientifiqueModel","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMEpRWpF0sjxI=","_parent":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"source":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"target":{"$ref":"AAAAAAGMDHI224Tw0p0="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMEpObYkqFlXE=","_parent":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"name":"ScientifiqueModel","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEpP/L0xa464=","_parent":{"$ref":"AAAAAAGMEpObYkqFlXE="},"name":"con","type":{"$ref":"AAAAAAGMEddG/35rkhw="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMEpQQTFSdMMo=","_parent":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"name":"getFromId","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEpQ2Z1XN1GQ=","_parent":{"$ref":"AAAAAAGMEpQQTFSdMMo="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEpQ2Z1XO2K4=","_parent":{"$ref":"AAAAAAGMEpQQTFSdMMo="},"type":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEpSyjndtj/Q=","_parent":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"name":"getRandomFromDifficulte","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEpTwtHidqr0=","_parent":{"$ref":"AAAAAAGMEpSyjndtj/Q="},"name":"difficulte","type":{"$ref":"AAAAAAGMC+YI8maIQdw="}},{"_type":"UMLParameter","_id":"AAAAAAGMEpod3spaaS8=","_parent":{"$ref":"AAAAAAGMEpSyjndtj/Q="},"type":"List","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEpUDdHuWPCk=","_parent":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"name":"deleteScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEpW0O5n+CcQ=","_parent":{"$ref":"AAAAAAGMEpUDdHuWPCk="},"name":"id","type":"int"},{"_type":"UMLParameter","_id":"AAAAAAGMEpW0O5n/8AQ=","_parent":{"$ref":"AAAAAAGMEpUDdHuWPCk="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMEpjBeq6nhLQ=","_parent":{"$ref":"AAAAAAGMEpDNCjG7Sgo="},"name":"insertScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMEpjIWq/X4Xw=","_parent":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"name":"nom","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMEpjIWq/YfGg=","_parent":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"name":"prenom","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMEpjIWq/ZQ/M=","_parent":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"name":"dateNaissance","type":"date"},{"_type":"UMLParameter","_id":"AAAAAAGMEpjIWq/aAjw=","_parent":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"name":"descriptif","type":"string"},{"_type":"UMLParameter","_id":"AAAAAAGMEpjIWq/bd8Y=","_parent":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"name":"thematique","type":{"$ref":"AAAAAAGMC+P422EN2ug="}},{"_type":"UMLParameter","_id":"AAAAAAGMEpjIWq/csPI=","_parent":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"name":"sexe","type":{"$ref":"AAAAAAGMC+fb3W5D+IE="}},{"_type":"UMLParameter","_id":"AAAAAAGMEpjIWq/drHQ=","_parent":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"name":"difficulte","type":{"$ref":"AAAAAAGMC+YI8maIQdw="}},{"_type":"UMLParameter","_id":"AAAAAAGMEpjIWq/ejV8=","_parent":{"$ref":"AAAAAAGMEpjBeq6nhLQ="},"type":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMNomnSTj8byw=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"MdlPendu","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMNo8Jna11S5c=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"scientifique","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMNo8Jna12iOs=","_parent":{"$ref":"AAAAAAGMNo8Jna11S5c="},"name":"1","reference":{"$ref":"AAAAAAGMNomnSTj8byw="},"multiplicity":"1"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMNo8Jna13bb0=","_parent":{"$ref":"AAAAAAGMNo8Jna11S5c="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"navigable":"navigable"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMNo+gjcYT//U=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"scientifique","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMNo+gjcYUK64=","_parent":{"$ref":"AAAAAAGMNo+gjcYT//U="},"reference":{"$ref":"AAAAAAGMNomnSTj8byw="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMNo+gjcYVYU8=","_parent":{"$ref":"AAAAAAGMNo+gjcYT//U="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMO6Qtx4rtoTQ=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"scientifique","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO6Qtx4ruxhU=","_parent":{"$ref":"AAAAAAGMO6Qtx4rtoTQ="},"reference":{"$ref":"AAAAAAGMNomnSTj8byw="},"multiplicity":"1"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO6Qtx4rv+xc=","_parent":{"$ref":"AAAAAAGMO6Qtx4rtoTQ="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"navigable":"navigable"},"visibility":"private"}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMNonDvjv8Vzw=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"idJeu","visibility":"private","isStatic":true,"type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMNookz0J3yD0=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"scientifique","visibility":"private","type":{"$ref":"AAAAAAGMC95HP2Cn+4g="}},{"_type":"UMLAttribute","_id":"AAAAAAGMNopkhUVUh1A=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"nbErreur","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMNoqCdEbGUMg=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"nbTours","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMNo0OxHGRHKw=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"lettres","visibility":"private","type":"array"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMNorZX0w45SI=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"MdlPendu","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMNouge2Tlc/k=","_parent":{"$ref":"AAAAAAGMNorZX0w45SI="},"name":"joueur","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMNo3pNHjRTRg=","_parent":{"$ref":"AAAAAAGMNorZX0w45SI="},"name":"scientifique","type":{"$ref":"AAAAAAGMC95HP2Cn+4g="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMNotfyGJKbvs=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"jouer","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMNov35mffYmA=","_parent":{"$ref":"AAAAAAGMNotfyGJKbvs="},"name":"lettre","type":"char"},{"_type":"UMLParameter","_id":"AAAAAAGMNov35mfg8nQ=","_parent":{"$ref":"AAAAAAGMNotfyGJKbvs="},"type":"String","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMNowg7mnSju8=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"aGagne","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMNox1W2sCwG0=","_parent":{"$ref":"AAAAAAGMNowg7mnSju8="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMNox1lmtnw2Q=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"aPerdu","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMNoyXKWyX1PI=","_parent":{"$ref":"AAAAAAGMNox1lmtnw2Q="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMNoyXbGz8j2I=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"getMot","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMNozoaG4sZuE=","_parent":{"$ref":"AAAAAAGMNoyXbGz8j2I="},"type":"String","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMNozomG6RGno=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"getDecouvert","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMNo0Ebm/B6vI=","_parent":{"$ref":"AAAAAAGMNozomG6RGno="},"type":"String","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMNo31DHqh2VY=","_parent":{"$ref":"AAAAAAGMNomnSTj8byw="},"name":"getScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMNo4blnvR52M=","_parent":{"$ref":"AAAAAAGMNo31DHqh2VY="},"type":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMO2Pxy0g7n24=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"MdlQuiEstCe","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMO2Pxy0g8kwk=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"scientifique","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO2Pxy0g9v+M=","_parent":{"$ref":"AAAAAAGMO2Pxy0g8kwk="},"name":"1","reference":{"$ref":"AAAAAAGMO2Pxy0g7n24="}},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO2Pxy0g+8+o=","_parent":{"$ref":"AAAAAAGMO2Pxy0g8kwk="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"navigable":"navigable"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMO2Pxy0g/Pjc=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"scientifique","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO2Pxy0hAsqw=","_parent":{"$ref":"AAAAAAGMO2Pxy0g/Pjc="},"reference":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO2Pxy0hBiPY=","_parent":{"$ref":"AAAAAAGMO2Pxy0g/Pjc="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMO2W4iQVdK/8=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"scientifiques","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO2W4iQVeOG0=","_parent":{"$ref":"AAAAAAGMO2W4iQVdK/8="},"reference":{"$ref":"AAAAAAGMO2Pxy0g7n24="}},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO2W4iQVfyAk=","_parent":{"$ref":"AAAAAAGMO2W4iQVdK/8="},"reference":{"$ref":"AAAAAAGMDHI224Tw0p0="},"navigable":"navigable"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMO51KeKzErwQ=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO51KeKzFQUU=","_parent":{"$ref":"AAAAAAGMO51KeKzErwQ="},"reference":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO51KeKzGr44=","_parent":{"$ref":"AAAAAAGMO51KeKzErwQ="},"reference":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"navigable":"navigable"}},{"_type":"UMLGeneralization","_id":"AAAAAAGMO8+m8pBbaQ8=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"source":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"target":{"$ref":"AAAAAAGMO8acZOdM0GU="}}],"attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMO2Pxy0hCMOQ=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"idJeu","visibility":"private","isStatic":true,"type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMO2Pxy0hFUUM=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"nbTours","visibility":"private","type":"int"},{"_type":"UMLAttribute","_id":"AAAAAAGMO4ZX9D83Zww=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"scientifiqueTrouve","visibility":"private","type":"bool"},{"_type":"UMLAttribute","_id":"AAAAAAGMO4eWamSpzZs=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"partieAbandonnee","visibility":"private","type":"bool"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO2Pxy0hHRfM=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"MdlQuiEstCe","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO2Pxy0hIhBk=","_parent":{"$ref":"AAAAAAGMO2Pxy0hHRfM="},"name":"joueurA","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMO2Pxy0hJel0=","_parent":{"$ref":"AAAAAAGMO2Pxy0hHRfM="},"name":"joueurB","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMO41n1P0KmC0=","_parent":{"$ref":"AAAAAAGMO2Pxy0hHRfM="},"name":"scientifique","type":{"$ref":"AAAAAAGMC95HP2Cn+4g="}}]},{"_type":"UMLOperation","_id":"AAAAAAGMO2Pxy0hKb1U=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"jouer","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO2Pxy0hLUzg=","_parent":{"$ref":"AAAAAAGMO2Pxy0hKb1U="},"name":"question","type":"String"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO2Pxy0hNFPc=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"jouer","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO3lhSPNKNxU=","_parent":{"$ref":"AAAAAAGMO2Pxy0hNFPc="},"name":"reponse","type":"bool"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO2Pxy0hRMmc=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"aGagne","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO2Pxy0hSk6I=","_parent":{"$ref":"AAAAAAGMO2Pxy0hRMmc="},"type":"bool","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO2Pxy0hTrGc=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"getDecouvert","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO2Pxy0hUC94=","_parent":{"$ref":"AAAAAAGMO2Pxy0hTrGc="},"type":"String","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO2Pxy0hVnUU=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"getScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO2Pxy0hWhbE=","_parent":{"$ref":"AAAAAAGMO2Pxy0hVnUU="},"type":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO4WR8zb1ThQ=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"abandonner"},{"_type":"UMLOperation","_id":"AAAAAAGMO4X4fjuULBI=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"scientifiqueTrouve"},{"_type":"UMLOperation","_id":"AAAAAAGMO9rzIhIBKt4=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"getGagnant","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO9sflBPTsZY=","_parent":{"$ref":"AAAAAAGMO9rzIhIBKt4="},"type":{"$ref":"AAAAAAGMC/AivKOMyoc="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO9sf3xRuJ2Q=","_parent":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"name":"getPerdant","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO9s4dxZABxQ=","_parent":{"$ref":"AAAAAAGMO9sf3xRuJ2Q="},"type":{"$ref":"AAAAAAGMC/AivKOMyoc="},"direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMO5RSYBuTcOo=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Configuration","attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMO5cjAlglHQo=","_parent":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"name":"difficultes","visibility":"private","type":"array"},{"_type":"UMLAttribute","_id":"AAAAAAGMO5dVo13sFuQ=","_parent":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"name":"thematiques","visibility":"private","type":"array"},{"_type":"UMLAttribute","_id":"AAAAAAGMO5d97mGPQRo=","_parent":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"name":"scientifique","visibility":"private","type":{"$ref":"AAAAAAGMC95HP2Cn+4g="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO5UcojzoEGI=","_parent":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"name":"Configuration"},{"_type":"UMLOperation","_id":"AAAAAAGMO5Vgt0hrOYc=","_parent":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"name":"selectionnerDifficulte","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO5WOwUnsSzA=","_parent":{"$ref":"AAAAAAGMO5Vgt0hrOYc="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO5XR800M6yk=","_parent":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"name":"selectionnerThematique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO5XtUE6NXJk=","_parent":{"$ref":"AAAAAAGMO5XR800M6yk="},"type":"array","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO5YDk1Ev+rg=","_parent":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"name":"selectionnerScientifique","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO5bDxVKwjT8=","_parent":{"$ref":"AAAAAAGMO5YDk1Ev+rg="},"type":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO5bPvlT+Z6o=","_parent":{"$ref":"AAAAAAGMO5RSYBuTcOo="},"name":"tirageAleratoire","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO5b3fFZ/aLo=","_parent":{"$ref":"AAAAAAGMO5bPvlT+Z6o="},"type":{"$ref":"AAAAAAGMC95HP2Cn+4g="},"direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMO7zxhrnnKsM=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Jeu","stereotype":"interface","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO8TWSth1Obs=","_parent":{"$ref":"AAAAAAGMO7zxhrnnKsM="},"name":"prochainTour"}],"isAbstract":true},{"_type":"UMLClass","_id":"AAAAAAGMO8acZOdM0GU=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"JeuUnContreUn","ownedElements":[{"_type":"UMLAssociation","_id":"AAAAAAGMO8mpEmdlh60=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"name":"joueurA","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO8mpEmdmTYU=","_parent":{"$ref":"AAAAAAGMO8mpEmdlh60="},"reference":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO8mpEmdnDDo=","_parent":{"$ref":"AAAAAAGMO8mpEmdlh60="},"reference":{"$ref":"AAAAAAGMC/AivKOMyoc="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"},{"_type":"UMLAssociation","_id":"AAAAAAGMO8nTkXOOE6o=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"name":"joueurB","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO8nTkXOPiSo=","_parent":{"$ref":"AAAAAAGMO8nTkXOOE6o="},"reference":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"multiplicity":"0..*"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO8nTkXOQmHM=","_parent":{"$ref":"AAAAAAGMO8nTkXOOE6o="},"reference":{"$ref":"AAAAAAGMC/AivKOMyoc="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"},{"_type":"UMLDependency","_id":"AAAAAAGMO8zyCk/EMxk=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO7zxhrnnKsM="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO86wPmr5mBU=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO84v21q94io="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO9NSsTXU8/4=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO9JK8w+0cS0="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO9NfVz0FK/c=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO9LE+xiHLjQ="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO9PHT1M7WGM=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO9NqhD/muTQ="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO93DPfpP7TE=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO9NqhD/muTQ="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO93bfAq2Cb0=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO9LE+xiHLjQ="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO93mOhS9Ino=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO9JK8w+0cS0="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO93y0h6R/m0=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO84v21q94io="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+BL/7BNNIw=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO9+XyYWlGcM="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+BZ8LkiIPo=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO9+XyYWlGcM="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+MdNkxYvsg=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO+fPyjsouA4="},"target":{"$ref":"AAAAAAGMO+KoETkCEX0="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+Mo7ljDMpk=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO+KoETkCEX0="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+z9HAes714=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO84v21q94io="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+0L6w89M9o=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"source":{"$ref":"AAAAAAGMO8acZOdM0GU="},"target":{"$ref":"AAAAAAGMO+KoETkCEX0="}}],"stereotype":"interface","attributes":[{"_type":"UMLAttribute","_id":"AAAAAAGMO8h9rveWhiI=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"name":"Attribute1","type":""},{"_type":"UMLAttribute","_id":"AAAAAAGMO+QyLZ6lqx8=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"name":"configuration","visibility":"private","type":"Configuration"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO8caEu1flY8=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"name":"JeuUnContreUn","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO8hzrvUcWXA=","_parent":{"$ref":"AAAAAAGMO8caEu1flY8="},"name":"joueurA","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMO+YXEe95G0o=","_parent":{"$ref":"AAAAAAGMO8caEu1flY8="},"name":"joueurB","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMO+Znk/JGNMs=","_parent":{"$ref":"AAAAAAGMO8caEu1flY8="},"name":"configuration Configuration","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMO+Hp7C/LSLg=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"name":"configurer","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO+Ig3TGgh20=","_parent":{"$ref":"AAAAAAGMO+Hp7C/LSLg="},"type":"Configuration","direction":"return"}]},{"_type":"UMLOperation","_id":"AAAAAAGMO+QFYpqg6s0=","_parent":{"$ref":"AAAAAAGMO8acZOdM0GU="},"name":"Operation1"}]},{"_type":"UMLInterface","_id":"AAAAAAGMO84v21q94io=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Prochain tour","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO85WMV1YY5U=","_parent":{"$ref":"AAAAAAGMO84v21q94io="},"name":"prochainTour","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO+F4ZSI87wI=","_parent":{"$ref":"AAAAAAGMO85WMV1YY5U="},"type":"void","direction":"return"}]}]},{"_type":"UMLInterface","_id":"AAAAAAGMO9Gzggk6/+E=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"AGagne","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO9HKPgvVURU=","_parent":{"$ref":"AAAAAAGMO9Gzggk6/+E="},"name":"Operation1"}]},{"_type":"UMLInterface","_id":"AAAAAAGMO9JK8w+0cS0=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Gagnants","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO9JbDRJP6ks=","_parent":{"$ref":"AAAAAAGMO9JK8w+0cS0="},"name":"getGagnants","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO9MNwh98MOU=","_parent":{"$ref":"AAAAAAGMO9JbDRJP6ks="},"type":"array","direction":"return"}]}]},{"_type":"UMLInterface","_id":"AAAAAAGMO9LE+xiHLjQ=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Perdants","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO9LaGBsiiVo=","_parent":{"$ref":"AAAAAAGMO9LE+xiHLjQ="},"name":"getPerdants","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO9L70xzZecA=","_parent":{"$ref":"AAAAAAGMO9LaGBsiiVo="},"type":"array","direction":"return"}]}]},{"_type":"UMLInterface","_id":"AAAAAAGMO9NqhD/muTQ=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Termine","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO9OOHUKBB1U=","_parent":{"$ref":"AAAAAAGMO9NqhD/muTQ="},"name":"estTermine","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO9Oqy0Q4/Eg=","_parent":{"$ref":"AAAAAAGMO9OOHUKBB1U="},"type":"bool","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMO9WSOYYmOnc=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"JeuQuiEstCe","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMO9XB+I1w4A8=","_parent":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"source":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"target":{"$ref":"AAAAAAGMO8acZOdM0GU="}},{"_type":"UMLAssociation","_id":"AAAAAAGMO9gybbbsVoE=","_parent":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"name":"jeu","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO9gybbbt83U=","_parent":{"$ref":"AAAAAAGMO9gybbbsVoE="},"reference":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"multiplicity":"1"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO9gybbbuk/I=","_parent":{"$ref":"AAAAAAGMO9gybbbsVoE="},"reference":{"$ref":"AAAAAAGMO2Pxy0g7n24="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO9YyZpdysRQ=","_parent":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"name":"JeuQuiEstCe","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO9ZEaJs5JBc=","_parent":{"$ref":"AAAAAAGMO9YyZpdysRQ="},"name":"joueurA","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMO9ZEaJs6xM4=","_parent":{"$ref":"AAAAAAGMO9YyZpdysRQ="},"name":"joueurB","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMO+bsIfgw3iA=","_parent":{"$ref":"AAAAAAGMO9YyZpdysRQ="},"name":"configuration Configuration","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMO9Znj6Fw3mw=","_parent":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"name":"prochainTour"},{"_type":"UMLOperation","_id":"AAAAAAGMO9bV8qdHAcA=","_parent":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"name":"getGagnants"},{"_type":"UMLOperation","_id":"AAAAAAGMO9cHfqle/g0=","_parent":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"name":"getPerdants"},{"_type":"UMLOperation","_id":"AAAAAAGMO9cn06t1rhU=","_parent":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"name":"estTermine"},{"_type":"UMLOperation","_id":"AAAAAAGMO+O0MZCi9L8=","_parent":{"$ref":"AAAAAAGMO9WSOYYmOnc="},"name":"demarrer"}]},{"_type":"UMLClass","_id":"AAAAAAGMO99RF33oZaE=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"JeuPendu","ownedElements":[{"_type":"UMLGeneralization","_id":"AAAAAAGMO+6uErhkH4Q=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"source":{"$ref":"AAAAAAGMO99RF33oZaE="},"target":{"$ref":"AAAAAAGMO+fPyjsouA4="}},{"_type":"UMLAssociation","_id":"AAAAAAGMO+7PdMIGGvg=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"name":"jeu","end1":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO+7PdMIHhZo=","_parent":{"$ref":"AAAAAAGMO+7PdMIGGvg="},"reference":{"$ref":"AAAAAAGMO99RF33oZaE="},"multiplicity":"1"},"end2":{"_type":"UMLAssociationEnd","_id":"AAAAAAGMO+7PdMIIqVg=","_parent":{"$ref":"AAAAAAGMO+7PdMIGGvg="},"reference":{"$ref":"AAAAAAGMNomnSTj8byw="},"navigable":"navigable","multiplicity":"1"},"visibility":"private"}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO+n18omeFxs=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"name":"JeuPendu","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO+uQ04tV5Xg=","_parent":{"$ref":"AAAAAAGMO+n18omeFxs="},"name":"joueur","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMO+uQ04tW5Ek=","_parent":{"$ref":"AAAAAAGMO+n18omeFxs="},"name":"configuration Configuration","type":""}]},{"_type":"UMLOperation","_id":"AAAAAAGMO+uRUYwZCoA=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"name":"prochainTour"},{"_type":"UMLOperation","_id":"AAAAAAGMO+up6I4wICk=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"name":"getGagnants"},{"_type":"UMLOperation","_id":"AAAAAAGMO+vCKpBHVUE=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"name":"getPerdants"},{"_type":"UMLOperation","_id":"AAAAAAGMO+vYOJJeXg8=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"name":"estTermine"},{"_type":"UMLOperation","_id":"AAAAAAGMO+v2opR1/Bg=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"name":"demarrer"},{"_type":"UMLOperation","_id":"AAAAAAGMO+wNO5aMB9M=","_parent":{"$ref":"AAAAAAGMO99RF33oZaE="},"name":"Operation1"}]},{"_type":"UMLInterface","_id":"AAAAAAGMO9+XyYWlGcM=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Configurer","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO9+4P4qY3ow=","_parent":{"$ref":"AAAAAAGMO9+XyYWlGcM="},"name":"configurer","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO+AIH5OW9H0=","_parent":{"$ref":"AAAAAAGMO9+4P4qY3ow="},"type":"Configuration","direction":"return"}]}]},{"_type":"UMLInterface","_id":"AAAAAAGMO+KoETkCEX0=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"Demarrer","ownedElements":[{"_type":"UMLDependency","_id":"AAAAAAGMO/JHXkQzRRY=","_parent":{"$ref":"AAAAAAGMO+KoETkCEX0="},"source":{"$ref":"AAAAAAGMO+KoETkCEX0="},"target":{"$ref":"AAAAAAGMEdc3xH338V4="}}],"operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO+LNTzvEfa4=","_parent":{"$ref":"AAAAAAGMO+KoETkCEX0="},"name":"demarrer","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO+Lx1T2WT0g=","_parent":{"$ref":"AAAAAAGMO+LNTzvEfa4="},"type":"void","direction":"return"}]}]},{"_type":"UMLClass","_id":"AAAAAAGMO+fPyjsouA4=","_parent":{"$ref":"AAAAAAFF+qBWK6M3Z8Y="},"name":"JeuSolo","ownedElements":[{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+ywyeo5biA=","_parent":{"$ref":"AAAAAAGMO+fPyjsouA4="},"source":{"$ref":"AAAAAAGMO+fPyjsouA4="},"target":{"$ref":"AAAAAAGMO9NqhD/muTQ="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+zHnfWKqEA=","_parent":{"$ref":"AAAAAAGMO+fPyjsouA4="},"source":{"$ref":"AAAAAAGMO+fPyjsouA4="},"target":{"$ref":"AAAAAAGMO9LE+xiHLjQ="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+zWjf17kIk=","_parent":{"$ref":"AAAAAAGMO+fPyjsouA4="},"source":{"$ref":"AAAAAAGMO+fPyjsouA4="},"target":{"$ref":"AAAAAAGMO9JK8w+0cS0="}},{"_type":"UMLInterfaceRealization","_id":"AAAAAAGMO+5e/Yyg2II=","_parent":{"$ref":"AAAAAAGMO+fPyjsouA4="},"source":{"$ref":"AAAAAAGMO+fPyjsouA4="},"target":{"$ref":"AAAAAAGMO84v21q94io="}}],"stereotype":"interface","operations":[{"_type":"UMLOperation","_id":"AAAAAAGMO+g7YUcVOVk=","_parent":{"$ref":"AAAAAAGMO+fPyjsouA4="},"name":"JeuSolo","parameters":[{"_type":"UMLParameter","_id":"AAAAAAGMO+iJHkjnzsg=","_parent":{"$ref":"AAAAAAGMO+g7YUcVOVk="},"name":"joueur","type":{"$ref":"AAAAAAGMC/AivKOMyoc="}},{"_type":"UMLParameter","_id":"AAAAAAGMO+iJH0jokig=","_parent":{"$ref":"AAAAAAGMO+g7YUcVOVk="},"name":"configuration Configuration","type":""}]}]}]}]} \ No newline at end of file diff --git a/Documentation/diagramme kahoot.drawio b/Documentation/diagramme kahoot.drawio new file mode 100644 index 0000000..50171db --- /dev/null +++ b/Documentation/diagramme kahoot.drawio @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Documentation/diagramme kahoot.svg b/Documentation/diagramme kahoot.svg new file mode 100644 index 0000000..f5274d0 --- /dev/null +++ b/Documentation/diagramme kahoot.svg @@ -0,0 +1,4 @@ + + + +
enseignant
ensei...
kahoot
kahoot
Creer partie
Creer partie
Choisir niveau de difficulté
en fonction de la popularité
Choisir niveau de difficulté...
Choisir le theme des scientifiques
(Math, SVT, Informatique, tous...)
Choisir le theme des scientifiques...
joueur
joueur
Rejoindre partie
non lancée
Rejoindre partie...
Répondre a une question
Répondre a une question
<<include>>
<<include>>
Répondre juste a une question
Répondre juste a une...
Répondre faux a une question
Répondre faux a une q...
Ajouter scientifique dans historique
Ajouter scientifique...
<<include>>
<<include>>
Affiche les questions
Affiche les questions
<<include>>
<<include>>
<<include>>
<<include>>
<<include>>
<<include>>
Lancer partie
Lancer partie
Jouer dans partie lancée
Jouer dans partie lan...
<<include>>
<<include>>
<<include>>
<<include>>
voir résultats finaux
voir résultats finaux
Text is not SVG - cannot display
\ No newline at end of file diff --git a/Documentation/infos.txt b/Documentation/infos.txt new file mode 100644 index 0000000..dded936 --- /dev/null +++ b/Documentation/infos.txt @@ -0,0 +1,26 @@ +PHP SAE + + +Actions disponibles pour admin : + - connexion + - déconnexion + - gestion scientifique + - accéder stats site + +Actions users : + - créer partie + - rejoindre partie + - historique scientifiques trouvés + + +Vues nécessaires : + - Accueil + - création partie + - rejoindre partie + - la partie (dépend des jeux) + - historique des scientifiques trouvés + + Pour admin + - connexion (pop-up si possible) + - Gestion des scientifiques (genre une liste et on peut les supprimer) + - ajouter scientifique \ No newline at end of file diff --git a/Documentation/mcd/mcd.jpg b/Documentation/mcd/mcd.jpg new file mode 100644 index 0000000..e32c304 Binary files /dev/null and b/Documentation/mcd/mcd.jpg differ diff --git a/Documentation/mcd/mcd.loo b/Documentation/mcd/mcd.loo new file mode 100644 index 0000000..bcacf75 Binary files /dev/null and b/Documentation/mcd/mcd.loo differ diff --git a/Documentation/mld/mld graphique.md b/Documentation/mld/mld graphique.md new file mode 100644 index 0000000..7a1d3d2 --- /dev/null +++ b/Documentation/mld/mld graphique.md @@ -0,0 +1,105 @@ +```plantuml +@startuml + +entity "Jeu" as jeu { + id : int + nom : string + nbrParties : int +} + +entity "Scientifique" as scientifique { + id : int + nom : string + prenom : string + photo : string + dateNaissance : date + descriptif : string + ratioTrouvee : float + #idThematique : int + #idDifficulte : int + #idSexe : int +} + +entity "Thematique" as thematique { + id : int + libelle : string +} + +entity "Difficulte" as difficulte { + id : int + libelle : string +} + +entity "Sexe" as sexe { + id : int + libelle : string +} + +entity "Joueur" as joueur { + id : int + pseudo : string +} + +entity "Utilisateur" as utilisateur { + #idJoueur : int + email : string + motDePasse : string + pseudo : string +} + +entity "Invite" as invite { + #idJoueur : int + idSession : int +} + +entity "Partie" as partie { + id : int + codeInvitation : string + #idJoueur : int + #idJeu : int +} + +entity "Admin" as admin { + id : int + email : string + motDePasse : string +} + +entity "Decouvrir" as decouvrir { + #idUtilisateur : int + #idScientifique : int +} + +entity "Indice" as indice { + id : int + indice : string + #idScientifique : int +} + +entity "Reponse" as reponse { + id : int + reponse : string + #idScientifique : int + #idQuestion : int +} + +entity "Question" as question { + id : int + question : string +} + +partie --> jeu +partie --> joueur +invite --> joueur +utilisateur --> joueur +utilisateur --> scientifique +scientifique --> thematique +scientifique --> sexe +scientifique --> difficulte +scientifique --> indice +question --> reponse +reponse --> scientifique +decouvrir --> scientifique +decouvrir --> utilisateur +jeu --> scientifique +@enduml \ No newline at end of file diff --git a/Documentation/mld/mld.md b/Documentation/mld/mld.md new file mode 100644 index 0000000..8bcc7f1 --- /dev/null +++ b/Documentation/mld/mld.md @@ -0,0 +1,53 @@ +**Jeu(id, nom, nbrParties)** +- *id* : clef primaire de la table Jeu + +**Scientifique(id, nom, prenom, photo, dateNaissance, descriptif, ratioTrouvee, #idThematique, #idDifficulte, #idSexe)** +- *id* : clef primaire de la table Scientifique +- *#idThematique* clef étrangère en référence à *id* de la table Thematique +- *#idDifficulte* clef étrangère en référence à *id* de la table Difficulté +- *#idSexe* clef étrangère en référence à *id* de la table Sexe + +**Thematique(id, libelle)** +- *id* : clef primaire de la table Thematique + +**Difficulté(id, libelle)** +- *id* : clef primaire de la table Difficulté + +**Sexe(id, libelle)** +- *id* : clef primaire de la table Sexe + +**Joueur(id, pseudo)** +- *id* : clef primaire de la table Joueur + +**Utilisateur(#idJoueur, email, motDePasse, pseudo)** +- *idJoueur* : clef primaire de la table Joueur +- *#idJoueur* : clef étrangère en référence à *id* de la table Joueur + +**Invite(#idJoueur, idSession)** +- *idJoueur* : clef primaire de la table Joueur +- *#idJoueur* : clef étrangère en référence à *id* de la table Joueur + +**Partie(id, codeInvitation, #idJoueur, #idJeu)** +- *id* : clef primaire de la table Partie +- *#idJoueur* : clef étrangère en référence à *id* de la table Joueur +- *#idJeu* : clef étrangère en référence à *id* de la table Jeu + +**Admin(#id, email, motDePasse)** +- *id* : clef primaire de la table Admin + +**Decouvrir(#idUtilisateur, #idScientifique)** +- *idUtilisateur*, *idScientifique* : clef primaire de la table découvrir +- *#idUtilisateur* : clef étangère en référence à *idJoueur* de la table Utilisateur +- *#idScientifique* : clef étrangère en référence à *id* de la table Scientifique + +**Indice(id, indice, #idScientifique)** +- *id* : clef primaire de la table Indice +- *#idScientifique* : clef étrangère en référence à *id* de la table Scientifique + +**Reponse(id, reponse, #idScientifique, #idQuestion)** +- *id* : clef primaire de la table Reponse +- *#idScientifique* : clef étrangère en référence à *id* de la table Scientifique +- *#idQuestion* : clef étrangère en référence à *id* de la table Question + +**Question(id, question)** +- *id* : clef primaire de la table Question \ No newline at end of file diff --git a/Documentation/use_case/use_case.md b/Documentation/use_case/use_case.md new file mode 100644 index 0000000..8dfc66a --- /dev/null +++ b/Documentation/use_case/use_case.md @@ -0,0 +1,59 @@ +```plantuml + +@startuml +:Utilisateur: as u +:Utilisateur avec compte: as uc +:Administrateur: as admin + +uc <|-- u +package Mini-jeux{ + + u --> (Rejoindre une partie avec un code d'invitation) + u --> (Accéder à la liste des jeux) + u --> (Se créer un compte) + u --> (Choisir un jeu) + (Choisir un jeu) <|-- (chosir de façon aléatoire) + (Choisir un jeu) <|-- (choisir dans la liste) + + + (Choisir un jeu) <.. (Créer une partie) : <> + (Créer une partie) <.. (générer un code d'invitation) : <> + (Créer une partie) ..> (configurer la thématique des scientifiques) : <> + (Créer une partie) ..> (configure la difficulté des scientifiques) : <> + (Créer une partie) ..> (Lancer une partie) : <> + (Créer une partie) ..> (Saisir pseudo) : <> + + note "Pour l'utilisateur connecté : utilisera le pseudo associé à son compte" as notePseudo + note "Pour l'utilisateur connecté : on garde les scientifiques découverts pendant la partie dans son compte" as noteUC + noteUC .. (Lancer une partie) + notePseudo .. (Saisir pseudo) + + uc --> (Se déconnecter) + (Saisir son pseudo) <.. (Se connecter) : <> + uc --> (Saisir son pseudo) + (Supprimer son compte) <.. (Se connecter) : <> + uc --> (Supprimer son compte) + (Accéder à la liste des scientifiques découverts) <.. (Se connecter) : <> + uc --> (Accéder à la liste des scientifiques découverts) + (Accéder à la liste des scientifiques découverts) <.. (Afficher la fiche détaillé du scientifique) : <> +} + +package "Mini-jeux Administration"{ + admin --> (Se déconnecter du panel) + admin --> (Lister les scientifiques) + (Lister les scientifiques) <.. (Se connecter en tant qu'admin) : <> + (Lister les scientifiques) <.. (Ajouter Scientifique): <> + (Lister les scientifiques) <.. (Modifier Scientifique): <> + (Lister les scientifiques) <.. (Supprimer Scientifique): <> + admin --> (Lister les scientifiques qui posent le plus de problèmes aux joueurs) + (Lister les scientifiques qui posent le plus de problèmes aux joueurs) <.. (Se connecter en tant qu'admin) : <> + + admin --> (Lister les statistiques d'utilisation des jeux) + (Lister les statistiques d'utilisation des jeux) <.. (Se connecter en tant qu'admin) : <> +} + + + +@enduml + +``` \ No newline at end of file diff --git a/Documentation/use_case/use_case.png b/Documentation/use_case/use_case.png new file mode 100644 index 0000000..6591dbc Binary files /dev/null and b/Documentation/use_case/use_case.png differ diff --git a/Documentation/use_case/use_case.svg b/Documentation/use_case/use_case.svg new file mode 100644 index 0000000..6c90fcc --- /dev/null +++ b/Documentation/use_case/use_case.svg @@ -0,0 +1 @@ +Mini-jeuxMini-jeux AdministrationRejoindre une partie avec un code d'invitationAccéder à la liste des jeuxSe créer un compteChoisir un jeuchosir de façon aléatoirechoisir dans la listeCréer une partiegénérer un code d'invitationconfigurer la thématique des scientifiquesconfigure la difficulté des scientifiquesLancer une partieSaisir pseudoPour l'utilisateur connecté : utilisera le pseudo associé à son comptePour l'utilisateur connecté : on garde les scientifiques découverts pendant la partie dans son compteSe déconnecterSaisir son pseudoSe connecterSupprimer son compteAccéder à la liste des scientifiques découvertsAfficher la fiche détaillé du scientifiqueSe déconnecter du panelLister les scientifiquesSe connecter en tant qu'adminAjouter ScientifiqueModifier ScientifiqueSupprimer ScientifiqueLister les scientifiques qui posent le plus de problèmes aux joueursLister les statistiques d'utilisation des jeuxUtilisateurUtilisateur avec compteAdministrateur«include»«include»«extends»«extends»«extends»«extends»«include»«include»«include»«extends»«include»«extends»«extends»«extends»«include»«include» \ No newline at end of file