blob: 181c1853ad4c1e23481aba11415ee15b8f6c19aa [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
2use Inline C;
3use Mojolicious::Lite;
Marc Kupietzc4893362016-02-25 08:04:46 +01004use Mojo::JSON qw(decode_json encode_json to_json);
Marc Kupietz247500f2015-10-09 11:29:01 +02005use Encode qw(decode encode);
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01006use Mojo::Server::Daemon;
Marc Kupietzdc22b982015-10-09 09:19:34 +02007
Marc Kupietzc5990da2016-02-26 08:47:12 +01008print STDERR $ARGV[0];
Marc Kupietz7bc85fd2016-02-24 11:42:41 +01009# -cbow 1 -size 200 -window 8 -negative 25 -hs 0 -sample 1e-4 -threads 40 -binary 1 -iter 15
Marc Kupietz44bee3c2016-02-25 16:26:29 +010010init_net("vectors15.bin");
Marc Kupietzdc22b982015-10-09 09:19:34 +020011
12get '/' => sub {
13 my $c = shift;
14 my $word=$c->param('word');
Marc Kupietz44bee3c2016-02-25 16:26:29 +010015 my $no_nbs=$c->param('n') || 100;
16 my $no_iterations=$c->param('N') || 2000;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010017 my @lists;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010018 if(defined($word) && $word !~ /^\s*$/) {
19 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +010020 $word =~ s/\s+/ /g;
21 for my $w (split(' *\| *', $word)) {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +010022 $c->app->log->debug('Looking for neighbours of '.$w);
23 push(@lists, get_neighbours(encode("iso-8859-1", $w), $no_nbs));
24 }
Marc Kupietz247500f2015-10-09 11:29:01 +020025 }
Marc Kupietz44bee3c2016-02-25 16:26:29 +010026 $c->render(template=>"index", word=>$word, no_nbs=>$no_nbs, no_iterations => $no_iterations, lists=> \@lists);
Marc Kupietzdc22b982015-10-09 09:19:34 +020027};
28
29app->start;
30
31exit;
32
33__END__
34
35__C__
36#include <stdio.h>
37#include <string.h>
38#include <math.h>
39#include <malloc.h>
40#include <stdlib.h> //strlen
41
42#define max_size 2000
43#define max_w 50
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010044#define MAX_NEIGHBOURS 1000
Marc Kupietz44bee3c2016-02-25 16:26:29 +010045#define MAX_WORDS -1
Marc Kupietzdc22b982015-10-09 09:19:34 +020046
47//the thread function
48void *connection_handler(void *);
49
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010050char *bestw[MAX_NEIGHBOURS];
Marc Kupietzdc22b982015-10-09 09:19:34 +020051char file_name[max_size], st[100][max_size];
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010052float dist, len, bestd[MAX_NEIGHBOURS], vec[max_size];
Marc Kupietzc4893362016-02-25 08:04:46 +010053long long words, size, a, b, c, d, cn, bi[100], besti[MAX_NEIGHBOURS];
Marc Kupietzdc22b982015-10-09 09:19:34 +020054char ch;
55float *M;
56char *vocab;
57char *stringBuffer;
58
59int init_net(char *file_name) {
60 FILE *f;
61
62 stringBuffer = malloc(64000);
63 f = fopen(file_name, "rb");
64 if (f == NULL) {
65 printf("Input file %s not found\n", file_name);
66 return -1;
67 }
68 fscanf(f, "%lld", &words);
Marc Kupietz44bee3c2016-02-25 16:26:29 +010069 if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS;
Marc Kupietzdc22b982015-10-09 09:19:34 +020070 fscanf(f, "%lld", &size);
71 vocab = (char *)malloc((long long)words * max_w * sizeof(char));
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010072 for (a = 0; a < MAX_NEIGHBOURS; a++) bestw[a] = (char *)malloc(max_size * sizeof(char));
Marc Kupietzdc22b982015-10-09 09:19:34 +020073 M = (float *)malloc((long long)words * (long long)size * sizeof(float));
74 if (M == NULL) {
75 printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size);
76 return -1;
77 }
78 for (b = 0; b < words; b++) {
79 a = 0;
80 while (1) {
81 vocab[b * max_w + a] = fgetc(f);
82 if (feof(f) || (vocab[b * max_w + a] == ' ')) break;
83 if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++;
84 }
85 vocab[b * max_w + a] = 0;
Marc Kupietz30a43212016-02-25 08:12:00 +010086 fread(&M[b * size], sizeof(float), size, f);
Marc Kupietzdc22b982015-10-09 09:19:34 +020087 len = 0;
88 for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size];
89 len = sqrt(len);
90 for (a = 0; a < size; a++) M[a + b * size] /= len;
91 }
92 fclose(f);
93 return 0;
94}
95
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010096SV *get_neighbours(char *st1, int N) {
97 if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS;
98
Marc Kupietzdc22b982015-10-09 09:19:34 +020099 FILE *out=stdout;
100 *stringBuffer=0;
101
102 for (a = 0; a < N; a++) bestd[a] = 0;
103 for (a = 0; a < N; a++) bestw[a][0] = 0;
104 a = 0;
105 cn = 0;
106 b = 0;
107 c = 0;
108 while (1) {
109 st[cn][b] = st1[c];
110 b++;
111 c++;
112 st[cn][b] = 0;
113 if (st1[c] == 0) break;
114 if (st1[c] == ' ') {
115 cn++;
116 b = 0;
117 c++;
118 }
119 }
120 cn++;
121 for (a = 0; a < cn; a++) {
122 for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break;
123 if (b == words) b = -1;
124 bi[a] = b;
Marc Kupietze8da3062016-02-25 08:37:53 +0100125 fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", st[a], bi[a]);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200126 if (b == -1) {
Marc Kupietze8da3062016-02-25 08:37:53 +0100127 fprintf(stderr, "Out of dictionary word!\n");
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100128 cn--;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200129 break;
130 }
131 }
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100132 if (b == -1 && cn <= 0) {
133 N = 0;
134 goto end;
135 }
Marc Kupietzdc22b982015-10-09 09:19:34 +0200136 for (a = 0; a < size; a++) vec[a] = 0;
137 for (b = 0; b < cn; b++) {
138 if (bi[b] == -1) continue;
139 for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size];
140 }
141 len = 0;
142 for (a = 0; a < size; a++) len += vec[a] * vec[a];
143 len = sqrt(len);
144 for (a = 0; a < size; a++) vec[a] /= len;
145 for (a = 0; a < N; a++) bestd[a] = -1;
146 for (a = 0; a < N; a++) bestw[a][0] = 0;
147 for (c = 0; c < words; c++) {
148 a = 0;
Marc Kupietz34020dc2016-02-25 08:44:19 +0100149// do not skip taget word
Marc Kupietze8da3062016-02-25 08:37:53 +0100150// for (b = 0; b < cn; b++) if (bi[b] == c) a = 1;
151// if (a == 1) continue;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200152 dist = 0;
153 for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size];
154 for (a = 0; a < N; a++) {
155 if (dist > bestd[a]) {
156 for (d = N - 1; d > a; d--) {
157 bestd[d] = bestd[d - 1];
Marc Kupietz34020dc2016-02-25 08:44:19 +0100158 besti[d] = besti[d - 1];
Marc Kupietzdc22b982015-10-09 09:19:34 +0200159 }
160 bestd[a] = dist;
Marc Kupietzc4893362016-02-25 08:04:46 +0100161 besti[a] = c;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200162 break;
163 }
164 }
165 }
Marc Kupietz34020dc2016-02-25 08:44:19 +0100166
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100167end:
168 a=0;
Marc Kupietz247500f2015-10-09 11:29:01 +0200169 AV* array = newAV();
170 for (a = 0; a < N; a++) {
Marc Kupietz34020dc2016-02-25 08:44:19 +0100171 strcpy(bestw[a], &vocab[besti[a] * max_w]);
Marc Kupietz247500f2015-10-09 11:29:01 +0200172 HV* hash = newHV();
173 hv_store(hash, "word", strlen("word"), newSVpvf(bestw[a], 0), 0);
174 hv_store(hash, "dist", strlen("dist"), newSVnv(bestd[a]), 0);
Marc Kupietz5f780672016-02-25 17:15:54 +0100175 hv_store(hash, "rank", strlen("rank"), newSVuv(besti[a]), 0);
Marc Kupietzc4893362016-02-25 08:04:46 +0100176 AV *vector = newAV();
177 for (b = 0; b < size; b++) {
178 av_push(vector, newSVnv(M[b + besti[a] * size]));
179 }
180 hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0);
Marc Kupietz247500f2015-10-09 11:29:01 +0200181 av_push(array, newRV_noinc((SV*)hash));
182 }
Marc Kupietz247500f2015-10-09 11:29:01 +0200183 return newRV_noinc((SV*)array);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200184}
185
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100186
Marc Kupietzdc22b982015-10-09 09:19:34 +0200187__DATA__
188
189@@ index.html.ep
190<!DOCTYPE html>
191<html>
Marc Kupietzc4893362016-02-25 08:04:46 +0100192<head>
193 <title>DeReKo-Word-Vector-Distances</title>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100194 <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
Marc Kupietzc4893362016-02-25 08:04:46 +0100195 <script src="http://code.jquery.com/jquery-latest.min.js"></script>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100196 <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
197 <script>
198 $(function() {
Marc Kupietz5f780672016-02-25 17:15:54 +0100199 $( document ).tooltip({
200 content: function() {
201 return $(this).attr('title');
202 }}
203 )
204 })
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100205 </script>
Marc Kupietzc4893362016-02-25 08:04:46 +0100206 <script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
207 <script src="http://klinux10/word2vec/tsne.js"></script>
Marc Kupietzc5990da2016-02-26 08:47:12 +0100208 <script src="http://klinux10/word2vec/labeler.js"></script>
Marc Kupietzc4893362016-02-25 08:04:46 +0100209<style>
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100210body, input {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100211 font-family: Arial, sans-serif;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100212 font-size: 11pt;
213}
214
215.ui-tooltip-content {
216 font-size: 9pt;
217 colour: #222222;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100218}
Marc Kupietz5f780672016-02-25 17:15:54 +0100219
220svg > .ui-tooltip-content {
221 font-size: 7pt;
222 colour: #222222;
223}
224
Marc Kupietzc4893362016-02-25 08:04:46 +0100225svg {
226// border: 1px solid #333;
Marc Kupietz4aa62172016-02-25 10:39:27 +0100227 margin-right: 10px;
228 margin-bottom:10px;
Marc Kupietzc4893362016-02-25 08:04:46 +0100229}
230#wrapper {
231 width: 100%;
232// border: 1px solid red;
233 overflow: hidden; /* will contain if #first is longer than #second */
234}
235#first {
Marc Kupietzc4893362016-02-25 08:04:46 +0100236 margin-right: 20px;
237 float:left; /* add this */
238// border: 1px solid green;
239}
240#second {
241 border: 1px solid #333;
Marc Kupietz4aa62172016-02-25 10:39:27 +0100242 height: 850px;
Marc Kupietzc4893362016-02-25 08:04:46 +0100243 overflow: hidden; /* if you don't want #second to wrap below #first */
244}
Marc Kupietz4aa62172016-02-25 10:39:27 +0100245#cost {
246 z-index: 1;
247 position: fixed;
248 font-size: 10px;
249 color: #222222;
250 margin-bottom: 10px;
251}
Marc Kupietzc4893362016-02-25 08:04:46 +0100252</style>
253<script>
254
Marc Kupietz4aa62172016-02-25 10:39:27 +0100255var opt = {epsilon: 1, perplexity: 20};
Marc Kupietzc4893362016-02-25 08:04:46 +0100256var T = new tsnejs.tSNE(opt); // create a tSNE instance
257
258var Y;
259
260var data;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100261var labeler;
Marc Kupietzc4893362016-02-25 08:04:46 +0100262
Marc Kupietzc5990da2016-02-26 08:47:12 +0100263
264function applyJitter() {
265 svg.selectAll('.u')
266 .data(labels)
267 .transition()
268 .duration(50)
269 .attr("transform", function(d, i) {
270 T.Y[i][0] = (d.x - 400 - tx)/ss/20;
271 T.Y[i][1] = (d.y - 400 - ty)/ss/20;
272 return "translate(" +
273 (d.x) + "," +
274 (d.y) + ")";
275 });
276}
277
Marc Kupietzc4893362016-02-25 08:04:46 +0100278function updateEmbedding() {
279 var Y = T.getSolution();
280 svg.selectAll('.u')
281 .data(data.words)
Marc Kupietzc5990da2016-02-26 08:47:12 +0100282 .attr("transform", function(d, i) {
283 return "translate(" +
284 ((Y[i][0]*20*ss + tx) + 400) + "," +
285 ((Y[i][1]*20*ss + ty) + 400) + ")"; });
Marc Kupietzc4893362016-02-25 08:04:46 +0100286}
287
288var svg;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100289var labels = [];
290var anchor_array = [];
291var text;
292
Marc Kupietzc4893362016-02-25 08:04:46 +0100293function drawEmbedding() {
Marc Kupietza350bce2016-02-25 09:34:25 +0100294 $("#embed").empty();
295 var div = d3.select("#embed");
296
297 // get min and max in each column of Y
298 var Y = T.Y;
299
300 svg = div.append("svg") // svg is global
301 .attr("width", 800)
302 .attr("height", 800);
303
304 var g = svg.selectAll(".b")
305 .data(data.words)
306 .enter().append("g")
307 .attr("class", "u");
308
309 g.append("a")
310 .attr("xlink:href", function(word) {return "/?word="+word;})
Marc Kupietz5f780672016-02-25 17:15:54 +0100311 .attr("title", function(d, i) {
312 return "rank: "+i +" "+"freq. rank: "+data.ranks[i];
313 })
Marc Kupietza350bce2016-02-25 09:34:25 +0100314 .append("text")
315 .attr("text-anchor", "top")
316 .attr("font-size", 12)
317 .attr("fill", function(d) {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100318 if(data.target.indexOf(" "+d+" ") >= 0) {
Marc Kupietza350bce2016-02-25 09:34:25 +0100319 return "red";
320 } else {
321 return "#333"
Marc Kupietzc4893362016-02-25 08:04:46 +0100322 }
Marc Kupietza350bce2016-02-25 09:34:25 +0100323 })
324 .text(function(d) { return d; });
325
326 var zoomListener = d3.behavior.zoom()
327 .scaleExtent([0.1, 10])
328 .center([0,0])
329 .on("zoom", zoomHandler);
330 zoomListener(svg);
331 }
332
333 var tx=0, ty=0;
334 var ss=1;
335 var iter_id=-1;
336
337 function zoomHandler() {
338 tx = d3.event.translate[0];
339 ty = d3.event.translate[1];
340 ss = d3.event.scale;
341 updateEmbedding();
342 }
343
344 var stepnum = 0;
Marc Kupietzc5990da2016-02-26 08:47:12 +0100345
Marc Kupietza350bce2016-02-25 09:34:25 +0100346 function stopStep() {
347 clearInterval(iter_id);
Marc Kupietzc5990da2016-02-26 08:47:12 +0100348 text = svg.selectAll("text");
349
350 labels = d3.range(data.words.length).map(function(i) {
351 var x = (T.Y[i][0]*20*ss + tx) + 400;
352 var y = (T.Y[i][1]*20*ss + ty) + 400;
353 anchor_array.push({x: x, y: y, r: 5});
354 return {
355 x: x,
356 y: y,
357 name: data.words[i]
358 };
359 });
360
361 var index = 0;
362 text.each(function() {
363 labels[index].width = this.getBBox().width;
364 labels[index].height = this.getBBox().height;
365 index += 1;
366 });
367
368
369// setTimeout(updateEmbedding, 1);
370// setTimeout(
371 labeler = d3.labeler()
372 .label(labels)
373 .anchor(anchor_array)
374 .width(800)
375 .height(800)
376 .update(applyJitter);
377// .start(1000);
378
379 iter_id = setInterval(jitterStep, 1);
380
Marc Kupietza350bce2016-02-25 09:34:25 +0100381 }
Marc Kupietzc5990da2016-02-26 08:47:12 +0100382
383var jitter_i=0;;
384
385function jitterStep() {
386 if(jitter_i++ > 100) {
387 clearInterval(iter_id);
388 } else {
389 labeler.start2(10);
390 applyJitter();
391 }
392}
Marc Kupietza350bce2016-02-25 09:34:25 +0100393
394 function step() {
395 var i = T.iter;
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100396 if(i > <%= $no_iterations %>) {
Marc Kupietza350bce2016-02-25 09:34:25 +0100397 stopStep();
398 } else {
Marc Kupietz4aa62172016-02-25 10:39:27 +0100399 var cost = Math.round(T.step() *1000) / 1000; // do a few steps
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100400 $("#cost").html("tsne iteration " + i + ", cost: " + cost.toFixed(3));
Marc Kupietza350bce2016-02-25 09:34:25 +0100401 updateEmbedding();
402 }
403 }
Marc Kupietzc5990da2016-02-26 08:47:12 +0100404
Marc Kupietza350bce2016-02-25 09:34:25 +0100405 function showMap(j) {
406 data=j;
407 T.iter=0;
408 T.initDataRaw(data.vecs); // init embedding
409 drawEmbedding(); // draw initial embedding
410
411 if(iter_id >= 0) {
412 clearInterval(iter_id);
413 }
414 //T.debugGrad();
415 iter_id = setInterval(step, 1);
416 //step();
417 }
418
Marc Kupietzc5990da2016-02-26 08:47:12 +0100419 function update() {
420
421 text.transition().duration(800)
422 .attr("transform", transform);
423 }
424
425
Marc Kupietzc4893362016-02-25 08:04:46 +0100426</script>
427</head>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200428<body>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100429 <form action="<%=url_for('/')->to_abs%>" method="GET">
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100430 word(s):
431 <input type="text" name="word" size="20" value="<%= $word %>" title="When looking for multiple words use spaces as separators to search around the average vector and | as separator to get the neighbours for each word.">
432 max. neighbours: <input type="text" size="8" name="n" value="<%= $no_nbs %>">
433 iterations: <input type="text" name="N" size="8" value="<%= $no_iterations %>">
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100434 <input type="submit" value="Show">
Marc Kupietz4aa62172016-02-25 10:39:27 +0100435 </form>
436 <br>
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100437 % if($lists) {
Marc Kupietz4aa62172016-02-25 10:39:27 +0100438 <div id="wrapper">
439 <table id="first">
440 <tr>
Marc Kupietz5f780672016-02-25 17:15:54 +0100441 <th align="right">Pos.</th><th align="left">Word</th><th align="right">Cosine dist.</th><th>Freq. rank</th>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100442 </tr>
Marc Kupietz5f780672016-02-25 17:15:54 +0100443 % my $j=0; my @words; my @vecs; my @ranks; for my $list (@$lists) {
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100444 % my $i=1; for my $item (@$list) {
445 % if(!grep{$_ eq $item->{word}} @words) {
446 % push @vecs, $item->{vector};
447 % push @words, $item->{word};
Marc Kupietz5f780672016-02-25 17:15:54 +0100448 % push @ranks, $item->{rank};
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100449 % }
Marc Kupietz4aa62172016-02-25 10:39:27 +0100450 <tr>
451 <td align="right">
452 <%= $i++ %>.
453 </td>
454 <td>
455 <a href="/?word=<%= $item->{word} %>">
456 <%= $item->{word} %>
457 </a>
458 </td>
459 <td align="right">
460 <%= sprintf("%.3f", $item->{dist}) %>
461 </td>
Marc Kupietz5f780672016-02-25 17:15:54 +0100462 <td align="right">
463 <%= $item->{rank} %>
464 </td>
Marc Kupietz4aa62172016-02-25 10:39:27 +0100465 </tr>
466 % }
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100467 % }
Marc Kupietz4aa62172016-02-25 10:39:27 +0100468 </table>
469 <script>
470 % use Mojo::ByteStream 'b';
471 $(window).load(function() {
Marc Kupietz5f780672016-02-25 17:15:54 +0100472 showMap(<%= b(Mojo::JSON::to_json({target => " $word ", words => \@words, vecs => \@vecs, ranks => \@ranks})); %>);
Marc Kupietz4aa62172016-02-25 10:39:27 +0100473 });
474 </script>
475 % }
476 <div id="second" style="width:800px; height:800px; font-family: arial;">
477 <div id="embed">
478 </div>
479 <div id="cost"></div>
480 </div>
481 </div>
482 <p>
483 Word vector model based on DeReKo-2015-II. Trained with <a href="https://code.google.com/p/word2vec/">word2vec</a> using the following parameters:</p>
Marc Kupietz247500f2015-10-09 11:29:01 +0200484 <pre>
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100485-cbow 1 -size 300 -window 7 -negative 5 -hs 0 -sample 1e-5 -threads 44 -binary 1 -iter 5
Marc Kupietz4aa62172016-02-25 10:39:27 +0100486 </pre>
487 </p>
488</body>
Marc Kupietzdc22b982015-10-09 09:19:34 +0200489</html>
490