-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGoW.sql
More file actions
executable file
·452 lines (402 loc) · 15.8 KB
/
GoW.sql
File metadata and controls
executable file
·452 lines (402 loc) · 15.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Client: localhost
-- Généré le: Sam 28 Novembre 2015 à 13:41
-- Version du serveur: 5.5.46-MariaDB-1ubuntu0.14.04.2-log
-- Version de PHP: 5.5.9-1ubuntu4.14
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Base de données: `GoW`
--
-- --------------------------------------------------------
--
-- Structure de la table `arbitrage`
--
CREATE TABLE IF NOT EXISTS `arbitrage` (
`arbitrageID` int(11) NOT NULL AUTO_INCREMENT,
`enregistrementID` int(11) NOT NULL,
`idDruide` int(11) NOT NULL,
`tpsArbitrage` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`validation` enum('valid','invalid') NOT NULL,
PRIMARY KEY (`arbitrageID`),
KEY `validation` (`validation`),
KEY `enregistrementID` (`enregistrementID`),
KEY `idDruide` (`idDruide`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Structure de la table `cartes`
--
CREATE TABLE IF NOT EXISTS `cartes` (
`idCarte` int(16) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'identifiant',
`langue` varchar(3) NOT NULL COMMENT 'la langue de la carte (ISO 639)',
`extLangue` varchar(16) DEFAULT NULL COMMENT 'extension de langue (IETF)',
`niveau` enum('A1','A1.1','A1.2','A2','B1','B2','C1','C2') NOT NULL COMMENT 'Niveau CECRL',
`categorie` enum('nom','nom propre','pronom','adjectif','adverbe','verbe','expression idiomatique') DEFAULT NULL COMMENT 'Une catégorie qui pourra être une aide',
`idDruide` int(16) UNSIGNED NOT NULL COMMENT 'auteur',
`mot` varchar(128) NOT NULL,
`dateCreation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`dateSuppression` timestamp NULL DEFAULT NULL,
`idEraser` int(16) DEFAULT NULL COMMENT 'Id de la personne qui a supprimé la carte',
PRIMARY KEY (`idCarte`),
KEY `idDruide` (`idDruide`),
KEY `langue` (`langue`),
KEY `idEraser` (`idEraser`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Les cartes, attention nécessitent jointures' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Structure de la table `enregistrement`
--
CREATE TABLE IF NOT EXISTS `enregistrement` (
`enregistrementID` int(11) NOT NULL AUTO_INCREMENT,
`cheminEnregistrement` varchar(100) DEFAULT NULL,
`duration` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'the length in seconds of the recording (max 255 sec)',
`idOracle` int(30) NOT NULL,
`OracleLang` varchar(3) NOT NULL,
`carteID` int(11) NOT NULL,
`nivcarte` enum('A1','A1.1','A1.2','A2','B1','B2','C1','C2') NOT NULL DEFAULT 'B1',
`nivpartie` enum('easy','medium','hard') NOT NULL DEFAULT 'easy' COMMENT 'niveau de la partie oracle',
`tpsEnregistrement` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`validation` enum('valid','invalid','limbo','given up') NOT NULL DEFAULT 'limbo',
`nbSucces` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Combien de fois l''enregistrement a permis de trouver le mot',
`nbTentatives` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Combien de fois l''enregistrement a été passé à un devin',
`miseD` tinyint(4) UNSIGNED NOT NULL DEFAULT '1' COMMENT 'La mise en cas de défaite calculée en fonction du niveau de la carte du joueur et de la difficulté choisie',
`miseV` tinyint(4) UNSIGNED NOT NULL DEFAULT '1' COMMENT 'La mise calculée en cas de victoire en fonction du niveau de la carte du joueur et de la difficulté choisie',
PRIMARY KEY (`enregistrementID`),
UNIQUE KEY `no_replay` (`OracleLang`,`carteID`,`idOracle`) USING BTREE,
UNIQUE KEY `cheminEnregistrement` (`cheminEnregistrement`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Structure de la table `mots_interdits`
--
CREATE TABLE IF NOT EXISTS `mots_interdits` (
`idCarte` int(16) NOT NULL COMMENT 'le mot auquel il se rapporte',
`mot` varchar(48) NOT NULL COMMENT 'le mot interdit',
`ordre` int(4) NOT NULL COMMENT 'l''ordre du mot interdit',
UNIQUE KEY `idCarte` (`idCarte`,`mot`),
UNIQUE KEY `idCarte_2` (`idCarte`,`ordre`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Liste des mots tabous pour un mot';
-- --------------------------------------------------------
--
-- Structure de la table `notif`
--
CREATE TABLE IF NOT EXISTS `notif` (
`userid` int(11) NOT NULL,
`type` tinyint(3) UNSIGNED DEFAULT NULL COMMENT 'type of the message',
`message` varchar(200) NOT NULL,
`emetteur` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`state` int(11) NOT NULL,
`game` varchar(20) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table `parties`
--
CREATE TABLE IF NOT EXISTS `parties` (
`partieID` int(11) NOT NULL AUTO_INCREMENT,
`enregistrementID` int(11) NOT NULL,
`idDevin` int(11) NOT NULL,
`nivPartie` enum('easy','medium','hard') NOT NULL DEFAULT 'medium',
`nivCarte` enum('A1','A1.1','A1.2','A2','B1','B2','C1','C2') NOT NULL DEFAULT 'B1',
`tpsDevin` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'heure de début de la partie',
`duree_Partie` tinyint(4) DEFAULT NULL COMMENT 'Au bout de combien de temps le joueur a trouvé (ou abandonné)',
`reussite` enum('en cours','non','oui') NOT NULL DEFAULT 'en cours',
`mise` tinyint(3) UNSIGNED NOT NULL COMMENT 'la mise de la partie (pas de miseV/miseD)',
PRIMARY KEY (`partieID`),
UNIQUE KEY `un_enr_par_joueur` (`idDevin`,`enregistrementID`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Structure de la table `stats`
--
CREATE TABLE IF NOT EXISTS `stats` (
`userid` int(11) NOT NULL,
`langue` varchar(3) NOT NULL,
`nbJeux_oracle` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Nombre de parties',
`nbAbandons_oracle` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Nombre d''abandons',
`nbEnregistrements_oracle` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Nombre d''enregistrements envoyés',
`nbErreurs_oracle` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Nombre d''enregistrements erronés ou techniquement ratés',
`nbLectures_oracle` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Nombre de devins qui ont lu un enregistrement de l''utilisateur',
`nbSucces_oracle` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Nombre de succès des devins',
`score_oracle` mediumint(8) NOT NULL DEFAULT '0' COMMENT 'Score résultant (prends aussi en compte les niveaux, ne peut être calculé directement à partir des infos de la table)',
`nbCartes_druide` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'nb cartes créées',
`nbArbitrages_druide` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'nb arbitrages effectués',
`nbErrArbitrage_druide` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'nb d''erreurs d''arbitrage',
`score_druide` mediumint(9) NOT NULL DEFAULT '0' COMMENT 'score (peut être calculé uniquement avec les données de la table)',
`nbEnregistrements_devin` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'nombre d''enregistrements écoutés',
`nbMotsTrouves_devin` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'nombres de mots associés aux enregistrements trouvés',
`sommeMises_devin` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'La somme des mises des parties gagnées en tant que devin',
`score_devin` mediumint(9) NOT NULL DEFAULT '0' COMMENT 'score de devin (pas calculable avec les données de la table)',
PRIMARY KEY (`userid`,`langue`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Statistiques et scores des joueurs';
-- --------------------------------------------------------
--
-- Structure de la table `themes`
--
CREATE TABLE IF NOT EXISTS `themes` (
`idTheme` int(8) unsigned NOT NULL AUTO_INCREMENT,
`themeFR` varchar(64) NOT NULL COMMENT 'la traductions ce sera pour plus tard',
PRIMARY KEY (`idTheme`),
UNIQUE KEY `themeFR` (`themeFR`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='liste des thèmes' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Structure de la table `themes_cartes`
--
CREATE TABLE IF NOT EXISTS `themes_cartes` (
`idCarte` int(16) NOT NULL,
`idTheme` int(8) NOT NULL,
UNIQUE KEY `idCarte` (`idCarte`,`idTheme`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table de jointure';
-- --------------------------------------------------------
--
-- Structure de la table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`userid` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(32) NOT NULL,
`useremail` varchar(100) NOT NULL,
`userpass` varchar(32) NOT NULL,
`userlang` varchar(32) NOT NULL,
`valkey` varchar(100) NOT NULL,
`userlang_game` varchar(100) NOT NULL,
`photo` varchar(100) NOT NULL,
`userlvl` varchar(40) NOT NULL,
PRIMARY KEY (`userid`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `useremail` (`useremail`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Structure de la table `user_niveau`
--
CREATE TABLE IF NOT EXISTS `user_niveau` (
`id` int(50) NOT NULL AUTO_INCREMENT,
`userid` int(50) NOT NULL,
`spoken_lang` varchar(100) NOT NULL,
`niveau` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
-- --------------------------------------------------------
-- --------------------------------------------------------
-- --------------------------------------------------------
-- créer admin:admin pour les cartes existantes
INSERT INTO `user` (`userid`, `username`, `useremail`, `userpass`, `userlang`, `valkey`, `userlang_game`, `photo`, `userlvl`) VALUES
(1, 'admin', 'your.email@mail.you', '21232f297a57a5a743894a0e4a801fc3', 'fr', '', 'fr', '', 'easy');
INSERT INTO `user_niveau` (`id`, `userid`, `spoken_lang`, `niveau`) VALUES
(1, 1, 'Français;', 'Natif;');
INSERT INTO `stats` (`userid`, `langue`, `nbJeux_oracle`, `nbAbandons_oracle`, `nbEnregistrements_oracle`, `nbErreurs_oracle`, `nbLectures_oracle`, `nbSucces_oracle`, `score_oracle`, `nbCartes_druide`, `nbArbitrages_druide`, `nbErrArbitrage_druide`, `score_druide`, `nbEnregistrements_devin`, `nbMotsTrouves_devin`, `sommeMises_devin`, `score_devin`) VALUES
(1, 'fr', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
-- --------------------------------------------------------
--
-- Structure de la table `langues`
--
CREATE TABLE IF NOT EXISTS `langues` (
`iso_code` varchar(3) NOT NULL COMMENT 'iso language code',
`french` varchar(16) NOT NULL COMMENT 'nom de la langue en FR',
`english` varchar(16) DEFAULT NULL COMMENT 'language name in English',
PRIMARY KEY (`iso_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `langues`
--
INSERT INTO `langues` (`iso_code`, `french`, `english`) VALUES
('aa', 'Afar', NULL),
('ab', 'Abkhaze', NULL),
('ae', 'Avestique', NULL),
('af', 'Afrikaans', NULL),
('ak', 'Akan', NULL),
('am', 'Amharique', NULL),
('an', 'Aragonais', NULL),
('ar', 'Arabe', NULL),
('as', 'Assamais', NULL),
('av', 'Avar', NULL),
('ay', 'Aymara', NULL),
('az', 'Azéri', NULL),
('ba', 'Bachkir', NULL),
('be', 'Biélorusse', NULL),
('bg', 'Bulgare', NULL),
('bh', 'Bihari', NULL),
('bi', 'Bichelamar', NULL),
('bm', 'Bambara', NULL),
('bn', 'Bengali', NULL),
('bo', 'Tibétain', NULL),
('br', 'Breton', NULL),
('bs', 'Bosnien', NULL),
('ca', 'Catalan', NULL),
('ce', 'Tchétchène', NULL),
('ch', 'Chamorro', NULL),
('co', 'Corse', NULL),
('cr', 'Cri', NULL),
('cs', 'Tchèque', NULL),
('cu', 'Vieux-slave', NULL),
('cv', 'Tchouvache', NULL),
('cy', 'Gallois', NULL),
('da', 'Danois', NULL),
('de', 'Allemand', NULL),
('dv', 'Maldivien', NULL),
('dz', 'Dzongkha', NULL),
('ee', 'Ewe', NULL),
('el', 'Grec moderne', NULL),
('en', 'Anglais', 'English'),
('eo', 'Espéranto', NULL),
('es', 'Espagnol', NULL),
('et', 'Estonien', NULL),
('eu', 'Basque', NULL),
('fa', 'Persan', NULL),
('ff', 'Peul', NULL),
('fi', 'Finnois', NULL),
('fj', 'Fidjien', NULL),
('fo', 'Féroïen', NULL),
('fr', 'Français', NULL),
('fy', 'Frison', NULL),
('ga', 'Irlandais', NULL),
('gd', 'Écossais', NULL),
('gl', 'Galicien', NULL),
('gn', 'Guarani', NULL),
('gu', 'Gujarati', NULL),
('gv', 'Mannois', NULL),
('ha', 'Haoussa', NULL),
('he', 'Hébreu', NULL),
('hi', 'Hindi', NULL),
('ho', 'Hiri motu', NULL),
('hr', 'Croate', NULL),
('ht', 'Créole haïtien', NULL),
('hu', 'Hongrois', NULL),
('hy', 'Arménien', NULL),
('hz', 'Héréro', NULL),
('ia', 'Interlingua', NULL),
('id', 'Indonésien', NULL),
('ie', 'Occidental', NULL),
('ig', 'Igbo', NULL),
('ii', 'Yi', NULL),
('ik', 'Inupiak', NULL),
('io', 'Ido', NULL),
('is', 'Islandais', NULL),
('it', 'Italien', NULL),
('iu', 'Inuktitut', NULL),
('ja', 'Japonais', NULL),
('jv', 'Javanais', NULL),
('ka', 'Géorgien', NULL),
('kg', 'Kikongo', NULL),
('ki', 'Kikuyu', NULL),
('kj', 'Kuanyama', NULL),
('kk', 'Kazakh', NULL),
('kl', 'Groenlandais', NULL),
('km', 'Khmer', NULL),
('kn', 'Kannada', NULL),
('ko', 'Coréen', NULL),
('kr', 'Kanouri', NULL),
('ks', 'Cachemiri', NULL),
('ku', 'Kurde', NULL),
('kv', 'Komi', NULL),
('kw', 'Cornique', NULL),
('ky', 'Kirghiz', NULL),
('la', 'Latin', NULL),
('lb', 'Luxembourgeois', NULL),
('lg', 'Ganda', NULL),
('li', 'Limbourgeois', NULL),
('ln', 'Lingala', NULL),
('lo', 'Lao', NULL),
('lt', 'Lituanien', NULL),
('lu', 'Luba-katanga', NULL),
('lv', 'Letton', NULL),
('mg', 'Malgache', NULL),
('mh', 'Marshallais', NULL),
('mi', 'Maori de Nouvell', NULL),
('mk', 'Macédonien', NULL),
('ml', 'Malayalam', NULL),
('mn', 'Mongol', NULL),
('mo', 'Moldave', NULL),
('mr', 'Marathi', NULL),
('ms', 'Malais', NULL),
('mt', 'Maltais', NULL),
('my', 'Birman', NULL),
('na', 'Nauruan', NULL),
('nb', 'Norvégien Bokmål', NULL),
('nd', 'Sindebele', NULL),
('ne', 'Népalais', NULL),
('ng', 'Ndonga', NULL),
('nl', 'Néerlandais', NULL),
('nn', 'Norvégien Nynors', NULL),
('no', 'Norvégien', NULL),
('nr', 'Nrebele', NULL),
('nv', 'Navajo', NULL),
('ny', 'Chichewa', NULL),
('oc', 'Occitan', NULL),
('oj', 'Ojibwé', NULL),
('om', 'Oromo', NULL),
('or', 'Oriya', NULL),
('os', 'Ossète', NULL),
('pa', 'Pendjabi', NULL),
('pi', 'Pali', NULL),
('pl', 'Polonais', NULL),
('ps', 'Pachto', NULL),
('pt', 'Portugais', NULL),
('qu', 'Quechua', NULL),
('rm', 'Romanche', NULL),
('rn', 'Kirundi', NULL),
('ro', 'Roumain', NULL),
('ru', 'Russe', NULL),
('rw', 'Kinyarwanda', NULL),
('sa', 'Sanskrit', NULL),
('sc', 'Sarde', NULL),
('sd', 'Sindhi', NULL),
('se', 'Same du Nord', NULL),
('sg', 'Sango', NULL),
('si', 'Cingalais', NULL),
('sk', 'Slovaque', NULL),
('sl', 'Slovène', NULL),
('sm', 'Samoan', NULL),
('sn', 'Shona', NULL),
('so', 'Somali', NULL),
('sq', 'Albanais', NULL),
('sr', 'Serbe', NULL),
('ss', 'Swati', NULL),
('st', 'Sotho du Sud', NULL),
('su', 'Soundanais', NULL),
('sv', 'Suédois', NULL),
('sw', 'Swahili', NULL),
('ta', 'Tamoul', NULL),
('te', 'Télougou', NULL),
('tg', 'Tadjik', NULL),
('th', 'Thaï', NULL),
('ti', 'Tigrigna', NULL),
('tk', 'Turkmène', NULL),
('tl', 'Tagalog', NULL),
('tn', 'Tswana', NULL),
('to', 'Tongien', NULL),
('tr', 'Turc', NULL),
('ts', 'Tsonga', NULL),
('tt', 'Tatar', NULL),
('tw', 'Twi', NULL),
('ty', 'Tahitien', NULL),
('ug', 'Ouïghour', NULL),
('uk', 'Ukrainien', NULL),
('ur', 'Ourdou', NULL),
('uz', 'Ouzbek', NULL),
('ve', 'Venda', NULL),
('vi', 'Vietnamien', NULL),
('vo', 'Volapük', NULL),
('wa', 'Wallon', NULL),
('wo', 'Wolof', NULL),
('xh', 'Xhosa', NULL),
('yi', 'Yiddish', NULL),
('yo', 'Yoruba', NULL),
('za', 'Zhuang', NULL),
('zh', 'Chinois', NULL),
('zu', 'Zoulou', NULL);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;