Supporter.
[dcpomatic.git] / src / wx / about_dialog.cc
1 /*
2     Copyright (C) 2013-2017 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/wx/about_dialog.cc
22  *  @brief The "about DCP-o-matic" dialogue box.
23  */
24
25 #include "about_dialog.h"
26 #include "wx_util.h"
27 #include "lib/version.h"
28 #include "lib/compose.hpp"
29 #include <wx/notebook.h>
30 #include <wx/hyperlink.h>
31
32 using std::vector;
33
34 AboutDialog::AboutDialog (wxWindow* parent)
35         : wxDialog (parent, wxID_ANY, _("About DCP-o-matic"))
36 {
37         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
38         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
39
40         wxFont title_font (*wxNORMAL_FONT);
41         title_font.SetPointSize (title_font.GetPointSize() + 12);
42         title_font.SetWeight (wxFONTWEIGHT_BOLD);
43
44         wxFont subtitle_font (*wxNORMAL_FONT);
45         subtitle_font.SetPointSize (subtitle_font.GetPointSize() + 2);
46
47         wxFont version_font (*wxNORMAL_FONT);
48         version_font.SetWeight (wxFONTWEIGHT_BOLD);
49
50         wxStaticText* t = new wxStaticText (this, wxID_ANY, _("DCP-o-matic"));
51         t->SetFont (title_font);
52         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 16));
53
54         wxString s;
55         if (strcmp (dcpomatic_git_commit, "release") == 0) {
56                 t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1", dcpomatic_version)));
57         } else {
58                 t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1 git %2", dcpomatic_version, dcpomatic_git_commit)));
59         }
60         t->SetFont (version_font);
61         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 2));
62         sizer->AddSpacer (12);
63
64         t = new wxStaticText (
65                 this, wxID_ANY,
66                 _("Free, open-source DCP creation from almost anything."),
67                 wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
68                 );
69         t->SetFont (subtitle_font);
70
71         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 8));
72
73         wxHyperlinkCtrl* h = new wxHyperlinkCtrl (
74                 this, wxID_ANY,
75                 wxT ("dcpomatic.com"),
76                 wxT ("http://dcpomatic.com")
77                 );
78
79         sizer->Add (h, wxSizerFlags().Centre().Border(wxALL, 8));
80
81         t = new wxStaticText (
82                 this, wxID_ANY,
83                 _("(C) 2012-2018 Carl Hetherington, Terrence Meiczinger\n Ole Laursen, Brecht Sanders"),
84                 wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
85                 );
86
87         sizer->Add (t, wxSizerFlags().Centre().Border(wxLEFT | wxRIGHT, 16));
88
89         _notebook = new wxNotebook (this, wxID_ANY);
90
91         wxArrayString written_by;
92         written_by.Add (wxT ("Carl Hetherington"));
93         written_by.Add (wxT ("Terrence Meiczinger"));
94         written_by.Add (wxT ("Ole Laursen"));
95         written_by.Add (wxT ("Brecht Sanders"));
96         written_by.Add (wxT ("Jianguo Huang"));
97         add_section (_("Written by"), written_by);
98
99         wxArrayString translated_by;
100         translated_by.Add (wxT ("Manuel AC"));
101         translated_by.Add (wxT ("Max Aeschlimann"));
102         translated_by.Add (wxT ("Thiago Andre"));
103         translated_by.Add (wxT ("Grégoire Ausina"));
104         translated_by.Add (wxT ("Tomáš Begeni"));
105         translated_by.Add (wxT ("Fabio \"Zak\" Belli"));
106         translated_by.Add (wxT ("Cherif Ben Brahim"));
107         translated_by.Add (wxT ("Massimiliano Broggi"));
108         translated_by.Add (wxT ("Davide Dall'AraCiao"));
109         translated_by.Add (wxT ("William Fanelli"));
110         translated_by.Add (wxT ("Max M. Fuhlendorf"));
111         translated_by.Add (wxT ("Tomáš Hlaváč"));
112         translated_by.Add (wxT ("Thierry Journet"));
113         translated_by.Add (wxT ("Adam Klotblixt"));
114         translated_by.Add (wxT ("Theo Kooijmans"));
115         translated_by.Add (wxT ("Carsten Kurz"));
116         translated_by.Add (wxT ("Lilian Lefranc"));
117         translated_by.Add (wxT ("Gérald Maruccia"));
118         translated_by.Add (wxT ("Mike Mazur"));
119         translated_by.Add (wxT ("Rob van Nieuwkerk"));
120         translated_by.Add (wxT ("Anders Uhl Pedersen"));
121         translated_by.Add (wxT ("Olivier Perriere"));
122         translated_by.Add (wxT ("Markus Raab"));
123         translated_by.Add (wxT ("Tiago Casal Ribeiro"));
124         translated_by.Add (wxT ("Davide Sanvito"));
125         translated_by.Add (wxT ("Marek Skrzelowski"));
126         translated_by.Add (wxT ("Igor Voytovich"));
127         translated_by.Add (wxT ("Rov (若文)"));
128         translated_by.Add (wxT ("刘汉源"));
129         add_section (_("Translated by"), translated_by);
130
131         wxArrayString with_help_from;
132         with_help_from.Add (wxT ("David Vignoni"));
133         with_help_from.Add (wxT ("Dennis Couzin"));
134         with_help_from.Add (wxT ("Gérald Maruccia"));
135         with_help_from.Add (wxT ("Julian van Mil"));
136         add_section (_("With help from"), with_help_from);
137
138         wxArrayString supported_by;
139         supported_by.Add (wxT ("Manuel AC"));
140         supported_by.Add (wxT ("Kambiz Afshar"));
141         supported_by.Add (wxT ("Louis Albini"));
142         supported_by.Add (wxT ("Esteban Arrangoiz"));
143         supported_by.Add (wxT ("Alex Asp"));
144         supported_by.Add (wxT ("Georges Asmar"));
145         supported_by.Add (wxT ("Eric Audurier"));
146         supported_by.Add (wxT ("Kenneth Beals"));
147         supported_by.Add (wxT ("Jean-Pierre Beauviala"));
148         supported_by.Add (wxT ("Louis Belloisy"));
149         supported_by.Add (wxT ("Frans van den Berg"));
150         supported_by.Add (wxT ("Mike Blakesley"));
151         supported_by.Add (wxT ("Silvio Bonomi"));
152         supported_by.Add (wxT ("Fabio Bozzoli"));
153         supported_by.Add (wxT ("Pierre-Alexis Bontemps"));
154         supported_by.Add (wxT ("Jeff Boot"));
155         supported_by.Add (wxT ("Cédric Bourquard"));
156         supported_by.Add (wxT ("Alexander Buchholz"));
157         supported_by.Add (wxT ("Paul Carey"));
158         supported_by.Add (wxT ("Nathan Carpenter"));
159         supported_by.Add (wxT ("Kieran Carroll"));
160         supported_by.Add (wxT ("Matt Carter"));
161         supported_by.Add (wxT ("Frank Cianciolo"));
162         supported_by.Add (wxT ("Central Cinema"));
163         supported_by.Add (wxT ("Cinema Clarici"));
164         supported_by.Add (wxT ("Dan Cohen"));
165         supported_by.Add (wxT ("Adam Colt"));
166         supported_by.Add (wxT ("Adam Cousins"));
167         supported_by.Add (wxT ("Miller Creative Limited"));
168         supported_by.Add (wxT ("Matthias Damm"));
169         supported_by.Add (wxT ("JP Davidson"));
170         supported_by.Add (wxT ("Yohann Dedy"));
171         supported_by.Add (wxT ("Agostino Dall'Olio"));
172         supported_by.Add (wxT ("Oriol Didier"));
173         supported_by.Add (wxT ("Susanne Deicker"));
174         supported_by.Add (wxT ("Alexey Derevyanko"));
175         supported_by.Add (wxT ("Thomas Dickens"));
176         supported_by.Add (wxT ("e22.digital"));
177         supported_by.Add (wxT ("Roger Dubief"));
178         supported_by.Add (wxT ("Unwana Essien"));
179         supported_by.Add (wxT ("Maxime Estoppey"));
180         supported_by.Add (wxT ("Peter Ericson"));
181         supported_by.Add (wxT ("Arthur Factor"));
182         supported_by.Add (wxT ("Darius Family"));
183         supported_by.Add (wxT ("Rasitha Ferdinando"));
184         supported_by.Add (wxT ("Santiago Ferreira"));
185         supported_by.Add (wxT ("Jose Angel Velasco Fernandez"));
186         supported_by.Add (wxT ("Traverso City Film Festival"));
187         supported_by.Add (wxT ("Andres Fink"));
188         supported_by.Add (wxT ("Dave Fleegel"));
189         supported_by.Add (wxT ("Björn Forseth"));
190         supported_by.Add (wxT ("Evan Freeze"));
191         supported_by.Add (wxT ("Brett Friedman"));
192         supported_by.Add (wxT ("Stephen Furley"));
193         supported_by.Add (wxT ("filmtechniek.nl"));
194         supported_by.Add (wxT ("Peter Gara"));
195         supported_by.Add (wxT ("Jose Delio Ares Garcia"));
196         supported_by.Add (wxT ("Gartenbaukino"));
197         supported_by.Add (wxT ("Silvio Giuliano"));
198         supported_by.Add (wxT ("Alan Gouger"));
199         supported_by.Add (wxT ("Christopher Gray"));
200         supported_by.Add (wxT ("Vincent Grenier"));
201         supported_by.Add (wxT ("Gerhard Gruber"));
202         supported_by.Add (wxT ("Flor Guillaume"));
203         supported_by.Add (wxT ("Patrick Haderer"));
204         supported_by.Add (wxT ("刘汉源"));
205         supported_by.Add (wxT ("Jeff Hemingway"));
206         supported_by.Add (wxT ("Antonio Ruiz Hernandez"));
207         supported_by.Add (wxT ("Johannes Hoffmann"));
208         supported_by.Add (wxT ("Joseph Huether"));
209         supported_by.Add (wxT ("Film.Ca Inc."));
210         supported_by.Add (wxT ("Denis Ivashvkevych"));
211         supported_by.Add (wxT ("Karl Jacob"));
212         supported_by.Add (wxT ("Henrik Jäger"));
213         supported_by.Add (wxT ("Tomasz Jagi"));
214         supported_by.Add (wxT ("Jonathan Jensen"));
215         supported_by.Add (wxT ("Mathew Johns"));
216         supported_by.Add (wxT ("Thierry Journet"));
217         supported_by.Add (wxT ("Mario Kalogjera"));
218         supported_by.Add (wxT ("Zbigniew Kamiński"));
219         supported_by.Add (wxT ("Karn Karamad"));
220         supported_by.Add (wxT ("Klaus Karger"));
221         supported_by.Add (wxT ("Ikram Karimov"));
222         supported_by.Add (wxT ("Chris Kay"));
223         supported_by.Add (wxT ("Lars Kelto"));
224         supported_by.Add (wxT ("Erwan Kerzanet"));
225         supported_by.Add (wxT ("Kert Kiima"));
226         supported_by.Add (wxT ("Alabama Kino"));
227         supported_by.Add (wxT ("James Kirst"));
228         supported_by.Add (wxT ("Adam Klotblixt"));
229         supported_by.Add (wxT ("Filip Kovcin"));
230         supported_by.Add (wxT ("Timm Kröger"));
231         supported_by.Add (wxT ("Cihan Kulaber"));
232         supported_by.Add (wxT ("Carsten Kurz"));
233         supported_by.Add (wxT ("Stuart Leask"));
234         supported_by.Add (wxT ("David Armati Lechner"));
235         supported_by.Add (wxT ("Lilian Lefranc"));
236         supported_by.Add (wxT ("Robert Legato"));
237         supported_by.Add (wxT ("Sean Leigh"));
238         supported_by.Add (wxT ("Olivier Lemaire"));
239         supported_by.Add (wxT ("Eric Lesachet"));
240         supported_by.Add (wxT ("Gavin Lewarne"));
241         supported_by.Add (wxT ("Theo Lipfert"));
242         supported_by.Add (wxT ("Paweł Lipiński"));
243         supported_by.Add (wxT ("Marco Löber"));
244         supported_by.Add (wxT ("Riccardo Mantani"));
245         supported_by.Add (wxT ("Juan Marin Lorenzo"));
246         supported_by.Add (wxT ("Cinéma Le Louxor"));
247         supported_by.Add (wxT ("Michael Luce"));
248         supported_by.Add (wxT ("Mandorla"));
249         supported_by.Add (wxT ("Andrea Maguolo"));
250         supported_by.Add (wxT ("Gerard Manshanden"));
251         supported_by.Add (wxT ("Daniel Martinez Lara"));
252         supported_by.Add (wxT ("Stefan Massopust"));
253         supported_by.Add (wxT ("Richard Malmberg"));
254         supported_by.Add (wxT ("Adrian Manolescu"));
255         supported_by.Add (wxT ("Mattias Mattsson"));
256         supported_by.Add (wxT ("George Mazarakis"));
257         supported_by.Add (wxT ("Mike Mazur"));
258         supported_by.Add (wxT ("Gordon McLeod"));
259         supported_by.Add (wxT ("P. Meijer"));
260         supported_by.Add (wxT ("Brian Mendelssohn"));
261         supported_by.Add (wxT ("Olaf Merker"));
262         supported_by.Add (wxT ("Kjarten Michaelsen"));
263         supported_by.Add (wxT ("Aldo Midali"));
264         supported_by.Add (wxT ("Sylvain Mielle"));
265         supported_by.Add (wxT ("Jill Mobley"));
266         supported_by.Add (wxT ("Michal Moc"));
267         supported_by.Add (wxT ("Bobby Moloney"));
268         supported_by.Add (wxT ("Howard Molton"));
269         supported_by.Add (wxT ("Lindsay Morris"));
270         supported_by.Add (wxT ("Moviemento Kino"));
271         supported_by.Add (wxT ("NT Next"));
272         supported_by.Add (wxT ("David Nedrow"));
273         supported_by.Add (wxT ("Morten Nielsen"));
274         supported_by.Add (wxT ("Niclas Nornemark"));
275         supported_by.Add (wxT ("Casablanca Nuernberg"));
276         supported_by.Add (wxT ("Pascal Nussbaum"));
277         supported_by.Add (wxT ("Tim O'Brien"));
278         supported_by.Add (wxT ("Jerome Cohen Olivar"));
279         supported_by.Add (wxT ("Tito Oliveira"));
280         supported_by.Add (wxT ("Anders Olsson"));
281         supported_by.Add (wxT ("Kevin Orman"));
282         supported_by.Add (wxT ("Olov Östlund"));
283         supported_by.Add (wxT ("Nat Phong"));
284         supported_by.Add (wxT ("Vasiliy Popov"));
285         supported_by.Add (wxT ("Rui Pereira"));
286         supported_by.Add (wxT ("Armin Peterhans"));
287         supported_by.Add (wxT ("Andrea Pieri"));
288         supported_by.Add (wxT ("Denis Postle"));
289         supported_by.Add (wxT ("Aditya Pratama"));
290         supported_by.Add (wxT ("ProCinema GmbH"));
291         supported_by.Add (wxT ("Ceridwen Productions"));
292         supported_by.Add (wxT ("Ivan Pullman"));
293         supported_by.Add (wxT ("Arts Quest"));
294         supported_by.Add (wxT ("Desiderio Garcia Ramirez"));
295         supported_by.Add (wxT ("Steve Reverand"));
296         supported_by.Add (wxT ("Mark Rolfe"));
297         supported_by.Add (wxT ("Leigh Rosin"));
298         supported_by.Add (wxT ("David Rozenthal"));
299         supported_by.Add (wxT ("Lasse Salling"));
300         supported_by.Add (wxT ("Jussi Siponen"));
301         supported_by.Add (wxT ("Gregg Smith"));
302         supported_by.Add (wxT ("Marco Spiaggi"));
303         supported_by.Add (wxT ("Peter Sprenger"));
304         supported_by.Add (wxT ("Randy Stankey"));
305         supported_by.Add (wxT ("Andrä Steiner"));
306         supported_by.Add (wxT ("Mike Stiebing"));
307         supported_by.Add (wxT ("Rapid Stream Media"));
308         supported_by.Add (wxT ("Tomislav Stojanović"));
309         supported_by.Add (wxT ("Christian Suhren"));
310         supported_by.Add (wxT ("Bruce Taylor"));
311         supported_by.Add (wxT ("OpsCenter Technologies, Inc."));
312         supported_by.Add (wxT ("Texas Theatre"));
313         supported_by.Add (wxT ("Lawrence Towers"));
314         supported_by.Add (wxT ("Petter Trønsdal"));
315         supported_by.Add (wxT ("Richard Turner"));
316         supported_by.Add (wxT ("Tilman Vatteroth"));
317         supported_by.Add (wxT ("Alexey Vinokurov"));
318         supported_by.Add (wxT ("Bjørn Uhrbrand"));
319         supported_by.Add (wxT ("Anthony Urgo"));
320         supported_by.Add (wxT ("Stéphane Wagneur"));
321         supported_by.Add (wxT ("Andrew Walls"));
322         supported_by.Add (wxT ("Raoul Walzer"));
323         supported_by.Add (wxT ("Wolfram Weber"));
324         supported_by.Add (wxT ("Frank Wenz"));
325         supported_by.Add (wxT ("Anja Wenz"));
326         supported_by.Add (wxT ("Johannes Wilbrand"));
327         supported_by.Add (wxT ("Roland Wirtz"));
328         supported_by.Add (wxT ("Wolfgang Woehl"));
329         supported_by.Add (wxT ("Frank de Wulf"));
330         supported_by.Add (wxT ("Pavel Zhdanko"));
331         supported_by.Add (wxT ("Daniel Židek"));
332         supported_by.Add (wxT ("Гуляев Михаил"));
333         supported_by.Add (wxT ("Arrow Media Services"));
334         supported_by.Add (wxT ("Ceridwen Productions LLC"));
335         supported_by.Add (wxT ("Cinéma de la Neuveville"));
336         supported_by.Add (wxT ("cinetech Landfried GmbH"));
337         supported_by.Add (wxT ("Frechen-Film e.V."));
338         supported_by.Add (wxT ("Mobiles Kino e.V."));
339         supported_by.Add (wxT ("Kino Völkerfreundschaft"));
340         supported_by.Add (wxT ("Ernst Zimmerman"));
341         add_section (_("Supported by"), supported_by);
342
343         wxArrayString tested_by;
344         tested_by.Add (wxT ("Manuel AC"));
345         tested_by.Add (wxT ("Trever Anderson"));
346         tested_by.Add (wxT ("Mike Blakesley"));
347         tested_by.Add (wxT ("David Booty"));
348         tested_by.Add (wxT ("Roop Chand"));
349         tested_by.Add (wxT ("Daniel Chauvet"));
350         tested_by.Add (wxT ("Adam Colt"));
351         tested_by.Add (wxT ("John Convertino"));
352         tested_by.Add (wxT ("Andreas Eli"));
353         tested_by.Add (wxT ("Leo Enticknap"));
354         tested_by.Add (wxT ("Jose Angel Velasco Fernandez"));
355         tested_by.Add (wxT ("Maurizio Giampà"));
356         tested_by.Add (wxT ("Luke Granger-Brown"));
357         tested_by.Add (wxT ("Sumit Guha"));
358         tested_by.Add (wxT ("Steve Guttag"));
359         tested_by.Add (wxT ("Patrick Haderer"));
360         tested_by.Add (wxT ("Bill Hamell"));
361         tested_by.Add (wxT ("Jonathan Jensen"));
362         tested_by.Add (wxT ("Thierry Journet"));
363         tested_by.Add (wxT ("Markus Kalb"));
364         tested_by.Add (wxT ("Ada de Kamper"));
365         tested_by.Add (wxT ("Stefan Karner"));
366         tested_by.Add (wxT ("Adam Keay"));
367         tested_by.Add (wxT ("Simon Kesselman"));
368         tested_by.Add (wxT ("Pepijn Klijs"));
369         tested_by.Add (wxT ("Denzil Kriekenbeek"));
370         tested_by.Add (wxT ("Carsten Kurz"));
371         tested_by.Add (wxT ("Bill Lam"));
372         tested_by.Add (wxT ("Lilian Lefranc"));
373         tested_by.Add (wxT ("Olivier Lemaire"));
374         tested_by.Add (wxT ("Gavin Lewarne"));
375         tested_by.Add (wxT ("Gérald Maruccia"));
376         tested_by.Add (wxT ("George Mazarakis"));
377         tested_by.Add (wxT ("Mattias Mattsson"));
378         tested_by.Add (wxT ("Will Meadows"));
379         tested_by.Add (wxT ("Brad Miller"));
380         tested_by.Add (wxT ("Ash Mitchell"));
381         tested_by.Add (wxT ("Rob van Nieuwkerk"));
382         tested_by.Add (wxT ("Anders Nordentoft-Madsen"));
383         tested_by.Add (wxT ("Mauro Ottonello"));
384         tested_by.Add (wxT ("Peter Puchner"));
385         tested_by.Add (wxT ("Markus Raab"));
386         tested_by.Add (wxT ("Michael Reckert"));
387         tested_by.Add (wxT ("Greg Rooke"));
388         tested_by.Add (wxT ("Elad Saad"));
389         tested_by.Add (wxT ("Karim Senoucci"));
390         tested_by.Add (wxT ("Hordur Valgardsson"));
391         tested_by.Add (wxT ("Xenophon the Vampire"));
392         tested_by.Add (wxT ("Simon Vannarath"));
393         tested_by.Add (wxT ("Igor Voytovich"));
394         tested_by.Add (wxT ("Andrew Walls"));
395         tested_by.Add (wxT ("Andreas Weiss"));
396         tested_by.Add (wxT ("Paul Willmott"));
397         tested_by.Add (wxT ("Wolfgang Woehl"));
398         add_section (_("Tested by"), tested_by);
399
400         sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 16).Expand());
401
402         overall_sizer->Add (sizer);
403
404         wxSizer* buttons = CreateButtonSizer (wxOK);
405         if (buttons) {
406                 overall_sizer->Add (buttons, 1, wxEXPAND | wxALL, 4);
407         }
408
409         SetSizerAndFit (overall_sizer);
410 }
411
412 /** Add a section of credits.
413  *  @param name Name of section.
414  *  @param credits List of names.
415  */
416 void
417 AboutDialog::add_section (wxString name, wxArrayString credits)
418 {
419         static bool first = true;
420         int const N = 4;
421
422         wxScrolledWindow* panel = new wxScrolledWindow (_notebook);
423         panel->SetMaxSize (wxSize (-1, 380));
424         panel->EnableScrolling (false, true);
425         panel->SetScrollRate (0, 32);
426         wxSizer* overall_sizer = new wxBoxSizer (wxHORIZONTAL);
427
428         vector<wxSizer*> sizers;
429
430         for (int i = 0; i < N; ++i) {
431                 sizers.push_back (new wxBoxSizer (wxVERTICAL));
432                 overall_sizer->Add (sizers.back (), 1, wxEXPAND | wxALL, 6);
433         }
434
435         int c = 0;
436         for (size_t i = 0; i < credits.Count(); ++i) {
437                 add_label_to_sizer (sizers[c], panel, credits[i], false);
438                 ++c;
439                 if (c == N) {
440                         c = 0;
441                 }
442         }
443
444         panel->SetSizerAndFit (overall_sizer);
445         _notebook->AddPage (panel, name, first);
446         first = false;
447 }