This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpositions.sql
445 lines (386 loc) · 960 KB
/
positions.sql
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
-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: positions_explorer
-- ------------------------------------------------------
-- Server version 5.5.40-0ubuntu0.14.04.1
/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `auth_group`
--
DROP TABLE IF EXISTS `auth_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(80) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group`
--
LOCK TABLES `auth_group` WRITE;
/*!40000 ALTER TABLE `auth_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_group_permissions`
--
DROP TABLE IF EXISTS `auth_group_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `group_id` (`group_id`,`permission_id`),
KEY `auth_group_permissions_0e939a4f` (`group_id`),
KEY `auth_group_permissions_8373b171` (`permission_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group_permissions`
--
LOCK TABLES `auth_group_permissions` WRITE;
/*!40000 ALTER TABLE `auth_group_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_permission`
--
DROP TABLE IF EXISTS `auth_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_permission` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`content_type_id` int(11) NOT NULL,
`codename` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `content_type_id` (`content_type_id`,`codename`),
KEY `auth_permission_417f1b1c` (`content_type_id`)
) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_permission`
--
LOCK TABLES `auth_permission` WRITE;
/*!40000 ALTER TABLE `auth_permission` DISABLE KEYS */;
INSERT INTO `auth_permission` VALUES (1,'Can add log entry',1,'add_logentry'),(2,'Can change log entry',1,'change_logentry'),(3,'Can delete log entry',1,'delete_logentry'),(4,'Can add permission',2,'add_permission'),(5,'Can change permission',2,'change_permission'),(6,'Can delete permission',2,'delete_permission'),(7,'Can add group',3,'add_group'),(8,'Can change group',3,'change_group'),(9,'Can delete group',3,'delete_group'),(10,'Can add user',4,'add_user'),(11,'Can change user',4,'change_user'),(12,'Can delete user',4,'delete_user'),(13,'Can add content type',5,'add_contenttype'),(14,'Can change content type',5,'change_contenttype'),(15,'Can delete content type',5,'delete_contenttype'),(16,'Can add session',6,'add_session'),(17,'Can change session',6,'change_session'),(18,'Can delete session',6,'delete_session'),(19,'Can add axis',7,'add_axis'),(20,'Can change axis',7,'change_axis'),(21,'Can delete axis',7,'delete_axis'),(22,'Can add axis values',8,'add_axisvalues'),(23,'Can change axis values',8,'change_axisvalues'),(24,'Can delete axis values',8,'delete_axisvalues'),(25,'Can add contributor',9,'add_contributor'),(26,'Can change contributor',9,'change_contributor'),(27,'Can delete contributor',9,'delete_contributor');
/*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user`
--
DROP TABLE IF EXISTS `auth_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`password` varchar(128) NOT NULL,
`last_login` datetime NOT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(30) NOT NULL,
`first_name` varchar(30) NOT NULL,
`last_name` varchar(30) NOT NULL,
`email` varchar(75) NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user`
--
LOCK TABLES `auth_user` WRITE;
/*!40000 ALTER TABLE `auth_user` DISABLE KEYS */;
INSERT INTO `auth_user` VALUES (1,'pbkdf2_sha256$12000$eNsYQOuepCyY$jy97HUx89Vsm3KDd99tD2f7sQbTm4DfDNCNSXqpbYJ8=','2014-12-03 08:54:09',1,'admin','','','cirotteau@gmail.com',1,1,'2014-12-02 20:23:59');
/*!40000 ALTER TABLE `auth_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user_groups`
--
DROP TABLE IF EXISTS `auth_user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`,`group_id`),
KEY `auth_user_groups_e8701ad4` (`user_id`),
KEY `auth_user_groups_0e939a4f` (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user_groups`
--
LOCK TABLES `auth_user_groups` WRITE;
/*!40000 ALTER TABLE `auth_user_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_user_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user_user_permissions`
--
DROP TABLE IF EXISTS `auth_user_user_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_user_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`,`permission_id`),
KEY `auth_user_user_permissions_e8701ad4` (`user_id`),
KEY `auth_user_user_permissions_8373b171` (`permission_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user_user_permissions`
--
LOCK TABLES `auth_user_user_permissions` WRITE;
/*!40000 ALTER TABLE `auth_user_user_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_admin_log`
--
DROP TABLE IF EXISTS `django_admin_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_admin_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`action_time` datetime NOT NULL,
`object_id` longtext,
`object_repr` varchar(200) NOT NULL,
`action_flag` smallint(5) unsigned NOT NULL,
`change_message` longtext NOT NULL,
`content_type_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `django_admin_log_417f1b1c` (`content_type_id`),
KEY `django_admin_log_e8701ad4` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=746 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_admin_log`
--
LOCK TABLES `django_admin_log` WRITE;
/*!40000 ALTER TABLE `django_admin_log` DISABLE KEYS */;
INSERT INTO `django_admin_log` VALUES (1,'2014-12-02 21:15:47','19','None',3,'',9,1),(2,'2014-12-02 21:15:47','18','None',3,'',9,1),(3,'2014-12-02 21:15:47','17','None',3,'',9,1),(4,'2014-12-02 21:15:47','16','None',3,'',9,1),(5,'2014-12-02 21:15:47','15','None',3,'',9,1),(6,'2014-12-02 21:15:47','14','None',3,'',9,1),(7,'2014-12-02 21:15:47','13','None',3,'',9,1),(8,'2014-12-02 21:15:47','12','None',3,'',9,1),(9,'2014-12-02 21:15:47','11','None',3,'',9,1),(10,'2014-12-02 21:15:47','10','None',3,'',9,1),(11,'2014-12-02 21:15:47','9','None',3,'',9,1),(12,'2014-12-02 21:15:47','8','None',3,'',9,1),(13,'2014-12-02 21:15:47','7','None',3,'',9,1),(14,'2014-12-02 21:15:47','6','None',3,'',9,1),(15,'2014-12-02 21:15:47','5','None',3,'',9,1),(16,'2014-12-02 21:15:47','4','None',3,'',9,1),(17,'2014-12-02 21:15:47','3','None',3,'',9,1),(18,'2014-12-02 21:15:47','2','None',3,'',9,1),(19,'2014-12-02 21:15:47','1','None',3,'',9,1),(20,'2014-12-02 21:17:32','26','None',3,'',9,1),(21,'2014-12-02 21:17:32','25','None',3,'',9,1),(22,'2014-12-02 21:17:32','24','None',3,'',9,1),(23,'2014-12-02 21:17:32','23','None',3,'',9,1),(24,'2014-12-02 21:17:32','22','None',3,'',9,1),(25,'2014-12-02 21:17:32','21','None',3,'',9,1),(26,'2014-12-02 21:17:32','20','None',3,'',9,1),(27,'2014-12-02 22:29:53','85','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(28,'2014-12-02 22:29:53','84','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(29,'2014-12-02 22:29:53','83','None',3,'',9,1),(30,'2014-12-02 22:29:53','82','None',3,'',9,1),(31,'2014-12-02 22:29:53','81','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(32,'2014-12-02 22:29:53','80','None',3,'',9,1),(33,'2014-12-02 22:29:53','79','None',3,'',9,1),(34,'2014-12-02 22:29:53','78','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(35,'2014-12-02 22:29:53','77','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(36,'2014-12-02 22:29:53','76','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(37,'2014-12-02 22:29:53','75','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(38,'2014-12-02 22:29:53','74','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(39,'2014-12-02 22:29:53','73','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(40,'2014-12-02 22:29:53','72','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(41,'2014-12-02 22:29:53','71','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(42,'2014-12-02 22:29:53','70','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(43,'2014-12-02 22:29:53','69','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(44,'2014-12-02 22:29:53','68','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(45,'2014-12-02 22:29:53','67','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(46,'2014-12-02 22:29:53','66','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(47,'2014-12-02 22:29:53','65','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(48,'2014-12-02 22:29:53','64','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(49,'2014-12-02 22:29:53','63','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(50,'2014-12-02 22:29:53','62','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(51,'2014-12-02 22:29:53','61','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(52,'2014-12-02 22:29:53','60','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(53,'2014-12-02 22:29:53','59','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(54,'2014-12-02 22:29:53','58','None',3,'',9,1),(55,'2014-12-02 22:29:53','57','None',3,'',9,1),(56,'2014-12-02 22:29:53','56','None',3,'',9,1),(57,'2014-12-02 22:29:53','55','None',3,'',9,1),(58,'2014-12-02 22:29:53','54','None',3,'',9,1),(59,'2014-12-02 22:29:53','53','None',3,'',9,1),(60,'2014-12-02 22:29:53','52','None',3,'',9,1),(61,'2014-12-02 22:29:53','51','None',3,'',9,1),(62,'2014-12-02 22:29:53','50','None',3,'',9,1),(63,'2014-12-02 22:29:53','49','None',3,'',9,1),(64,'2014-12-02 22:29:53','48','None',3,'',9,1),(65,'2014-12-02 22:29:53','47','None',3,'',9,1),(66,'2014-12-02 22:29:53','46','None',3,'',9,1),(67,'2014-12-02 22:29:53','45','None',3,'',9,1),(68,'2014-12-02 22:29:53','44','None',3,'',9,1),(69,'2014-12-02 22:29:53','43','None',3,'',9,1),(70,'2014-12-02 22:29:53','42','None',3,'',9,1),(71,'2014-12-02 22:29:53','41','None',3,'',9,1),(72,'2014-12-02 22:29:53','40','None',3,'',9,1),(73,'2014-12-02 22:29:53','39','None',3,'',9,1),(74,'2014-12-02 22:29:53','38','None',3,'',9,1),(75,'2014-12-02 22:29:53','37','None',3,'',9,1),(76,'2014-12-02 22:29:53','36','None',3,'',9,1),(77,'2014-12-02 22:29:53','35','None',3,'',9,1),(78,'2014-12-02 22:29:53','34','None',3,'',9,1),(79,'2014-12-02 22:29:53','33','None',3,'',9,1),(80,'2014-12-02 22:29:53','32','None',3,'',9,1),(81,'2014-12-02 22:29:53','31','None',3,'',9,1),(82,'2014-12-02 22:29:53','30','None',3,'',9,1),(83,'2014-12-02 22:29:53','29','None',3,'',9,1),(84,'2014-12-02 22:29:53','28','None',3,'',9,1),(85,'2014-12-02 22:29:53','27','None',3,'',9,1),(86,'2014-12-02 22:30:32','95','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(87,'2014-12-02 22:30:32','94','NUOVO IMAIE',3,'',9,1),(88,'2014-12-02 22:30:32','93','None',3,'',9,1),(89,'2014-12-02 22:30:32','92','None',3,'',9,1),(90,'2014-12-02 22:30:32','91','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(91,'2014-12-02 22:30:32','90','None',3,'',9,1),(92,'2014-12-02 22:30:32','89','None',3,'',9,1),(93,'2014-12-02 22:30:32','88','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(94,'2014-12-02 22:30:32','87','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(95,'2014-12-02 22:30:32','86','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(96,'2014-12-02 22:31:38','103','None',3,'',9,1),(97,'2014-12-02 22:31:38','102','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(98,'2014-12-02 22:31:38','101','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(99,'2014-12-02 22:31:38','100','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(100,'2014-12-02 22:31:38','99','None',3,'',9,1),(101,'2014-12-02 22:31:38','98','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(102,'2014-12-02 22:31:38','97','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(103,'2014-12-02 22:31:38','96','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(104,'2014-12-02 22:45:15','150','None',3,'',9,1),(105,'2014-12-02 22:45:15','149','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(106,'2014-12-02 22:45:15','148','None',3,'',9,1),(107,'2014-12-02 22:45:15','147','None',3,'',9,1),(108,'2014-12-02 22:45:15','146','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(109,'2014-12-02 22:45:15','145','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(110,'2014-12-02 22:45:15','144','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(111,'2014-12-02 22:45:15','143','None',3,'',9,1),(112,'2014-12-02 22:45:15','142','None',3,'',9,1),(113,'2014-12-02 22:45:15','141','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(114,'2014-12-02 22:45:15','140','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(115,'2014-12-02 22:45:15','139','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(116,'2014-12-02 22:45:15','138','NUOVO IMAIE',3,'',9,1),(117,'2014-12-02 22:45:15','137','None',3,'',9,1),(118,'2014-12-02 22:45:15','136','None',3,'',9,1),(119,'2014-12-02 22:45:15','135','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(120,'2014-12-02 22:45:15','134','None',3,'',9,1),(121,'2014-12-02 22:45:15','133','None',3,'',9,1),(122,'2014-12-02 22:45:15','132','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(123,'2014-12-02 22:45:15','131','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(124,'2014-12-02 22:45:15','130','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(125,'2014-12-02 22:45:15','129','None',3,'',9,1),(126,'2014-12-02 22:45:15','128','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(127,'2014-12-02 22:45:15','127','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(128,'2014-12-02 22:45:15','126','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(129,'2014-12-02 22:45:15','125','None',3,'',9,1),(130,'2014-12-02 22:45:15','124','European Visual Artists',3,'',9,1),(131,'2014-12-02 22:45:15','123','None',3,'',9,1),(132,'2014-12-02 22:45:15','122','None',3,'',9,1),(133,'2014-12-02 22:45:15','121','Pictoright',3,'',9,1),(134,'2014-12-02 22:45:15','120','None',3,'',9,1),(135,'2014-12-02 22:45:15','119','International Confederation of Societies of Authors and Composers',3,'',9,1),(136,'2014-12-02 22:45:15','118','None',3,'',9,1),(137,'2014-12-02 22:45:15','117','None',3,'',9,1),(138,'2014-12-02 22:45:15','116','None',3,'',9,1),(139,'2014-12-02 22:45:15','115','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(140,'2014-12-02 22:45:15','114','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(141,'2014-12-02 22:45:15','113','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(142,'2014-12-02 22:45:15','112','NUOVO IMAIE',3,'',9,1),(143,'2014-12-02 22:45:15','111','None',3,'',9,1),(144,'2014-12-02 22:45:15','110','None',3,'',9,1),(145,'2014-12-02 22:45:15','109','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(146,'2014-12-02 22:45:15','108','None',3,'',9,1),(147,'2014-12-02 22:45:15','107','None',3,'',9,1),(148,'2014-12-02 22:45:15','106','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(149,'2014-12-02 22:45:15','105','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(150,'2014-12-02 22:45:15','104','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(151,'2014-12-02 22:45:43','155','None',3,'',9,1),(152,'2014-12-02 22:45:43','154','None',3,'',9,1),(153,'2014-12-02 22:45:43','153','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(154,'2014-12-02 22:45:43','152','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(155,'2014-12-02 22:45:43','151','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(156,'2014-12-02 22:50:59','186','None',3,'',9,1),(157,'2014-12-02 22:50:59','185','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(158,'2014-12-02 22:50:59','184','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(159,'2014-12-02 22:50:59','183','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(160,'2014-12-02 22:50:59','182','None',3,'',9,1),(161,'2014-12-02 22:50:59','181','None',3,'',9,1),(162,'2014-12-02 22:50:59','180','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(163,'2014-12-02 22:50:59','179','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(164,'2014-12-02 22:50:59','178','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(165,'2014-12-02 22:50:59','177','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(166,'2014-12-02 22:50:59','176','None',3,'',9,1),(167,'2014-12-02 22:50:59','175','None',3,'',9,1),(168,'2014-12-02 22:50:59','174','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(169,'2014-12-02 22:50:59','173','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(170,'2014-12-02 22:50:59','172','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(171,'2014-12-02 22:50:59','171','None',3,'',9,1),(172,'2014-12-02 22:50:59','170','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(173,'2014-12-02 22:50:59','169','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(174,'2014-12-02 22:50:59','168','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(175,'2014-12-02 22:50:59','167','None',3,'',9,1),(176,'2014-12-02 22:50:59','166','International Confederation of Societies of Authors and Composers',3,'',9,1),(177,'2014-12-02 22:50:59','165','None',3,'',9,1),(178,'2014-12-02 22:50:59','164','None',3,'',9,1),(179,'2014-12-02 22:50:59','163','None',3,'',9,1),(180,'2014-12-02 22:50:59','162','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(181,'2014-12-02 22:50:59','161','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(182,'2014-12-02 22:50:59','160','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(183,'2014-12-02 22:50:59','159','NUOVO IMAIE',3,'',9,1),(184,'2014-12-02 22:50:59','158','None',3,'',9,1),(185,'2014-12-02 22:50:59','157','None',3,'',9,1),(186,'2014-12-02 22:50:59','156','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(187,'2014-12-02 22:54:26','211','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(188,'2014-12-02 22:54:26','210','None',3,'',9,1),(189,'2014-12-02 22:54:26','209','ADAMI',3,'',9,1),(190,'2014-12-02 22:54:26','208','None',3,'',9,1),(191,'2014-12-02 22:54:26','207','European Visual Artists',3,'',9,1),(192,'2014-12-02 22:54:26','206','None',3,'',9,1),(193,'2014-12-02 22:54:26','205','None',3,'',9,1),(194,'2014-12-02 22:54:26','204','Pictoright',3,'',9,1),(195,'2014-12-02 22:54:26','203','None',3,'',9,1),(196,'2014-12-02 22:54:26','202','International Confederation of Societies of Authors and Composers',3,'',9,1),(197,'2014-12-02 22:54:26','201','None',3,'',9,1),(198,'2014-12-02 22:54:26','200','None',3,'',9,1),(199,'2014-12-02 22:54:26','199','None',3,'',9,1),(200,'2014-12-02 22:54:26','198','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(201,'2014-12-02 22:54:26','197','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(202,'2014-12-02 22:54:26','196','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(203,'2014-12-02 22:54:26','195','NUOVO IMAIE',3,'',9,1),(204,'2014-12-02 22:54:26','194','None',3,'',9,1),(205,'2014-12-02 22:54:26','193','None',3,'',9,1),(206,'2014-12-02 22:54:26','192','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(207,'2014-12-02 22:54:26','191','None',3,'',9,1),(208,'2014-12-02 22:54:26','190','None',3,'',9,1),(209,'2014-12-02 22:54:26','189','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(210,'2014-12-02 22:54:26','188','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(211,'2014-12-02 22:54:26','187','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(212,'2014-12-02 23:10:07','274','None',3,'',9,1),(213,'2014-12-02 23:10:07','273','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(214,'2014-12-02 23:10:07','272','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(215,'2014-12-02 23:10:07','271','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(216,'2014-12-02 23:10:07','270','NUOVO IMAIE',3,'',9,1),(217,'2014-12-02 23:10:07','269','None',3,'',9,1),(218,'2014-12-02 23:10:07','268','None',3,'',9,1),(219,'2014-12-02 23:10:07','267','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(220,'2014-12-02 23:10:07','266','None',3,'',9,1),(221,'2014-12-02 23:10:07','265','None',3,'',9,1),(222,'2014-12-02 23:10:07','264','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(223,'2014-12-02 23:10:07','263','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(224,'2014-12-02 23:10:07','262','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(225,'2014-12-02 23:10:07','261','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(226,'2014-12-02 23:10:07','260','None',3,'',9,1),(227,'2014-12-02 23:10:07','259','ADAMI',3,'',9,1),(228,'2014-12-02 23:10:07','258','None',3,'',9,1),(229,'2014-12-02 23:10:07','257','European Visual Artists',3,'',9,1),(230,'2014-12-02 23:10:07','256','None',3,'',9,1),(231,'2014-12-02 23:10:07','255','None',3,'',9,1),(232,'2014-12-02 23:10:07','254','Pictoright',3,'',9,1),(233,'2014-12-02 23:10:07','253','None',3,'',9,1),(234,'2014-12-02 23:10:07','252','International Confederation of Societies of Authors and Composers',3,'',9,1),(235,'2014-12-02 23:10:07','251','None',3,'',9,1),(236,'2014-12-02 23:10:07','250','None',3,'',9,1),(237,'2014-12-02 23:10:07','249','None',3,'',9,1),(238,'2014-12-02 23:10:07','248','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(239,'2014-12-02 23:10:07','247','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(240,'2014-12-02 23:10:07','246','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(241,'2014-12-02 23:10:07','245','NUOVO IMAIE',3,'',9,1),(242,'2014-12-02 23:10:07','244','None',3,'',9,1),(243,'2014-12-02 23:10:07','243','None',3,'',9,1),(244,'2014-12-02 23:10:07','242','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(245,'2014-12-02 23:10:07','241','None',3,'',9,1),(246,'2014-12-02 23:10:07','240','None',3,'',9,1),(247,'2014-12-02 23:10:07','239','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(248,'2014-12-02 23:10:07','238','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(249,'2014-12-02 23:10:07','237','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(250,'2014-12-02 23:10:07','236','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(251,'2014-12-02 23:10:07','235','None',3,'',9,1),(252,'2014-12-02 23:10:07','234','ADAMI',3,'',9,1),(253,'2014-12-02 23:10:07','233','None',3,'',9,1),(254,'2014-12-02 23:10:07','232','European Visual Artists',3,'',9,1),(255,'2014-12-02 23:10:07','231','None',3,'',9,1),(256,'2014-12-02 23:10:07','230','None',3,'',9,1),(257,'2014-12-02 23:10:07','229','Pictoright',3,'',9,1),(258,'2014-12-02 23:10:07','228','None',3,'',9,1),(259,'2014-12-02 23:10:07','227','International Confederation of Societies of Authors and Composers',3,'',9,1),(260,'2014-12-02 23:10:07','226','None',3,'',9,1),(261,'2014-12-02 23:10:07','225','None',3,'',9,1),(262,'2014-12-02 23:10:07','224','None',3,'',9,1),(263,'2014-12-02 23:10:07','223','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(264,'2014-12-02 23:10:07','222','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(265,'2014-12-02 23:10:07','221','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(266,'2014-12-02 23:10:07','220','NUOVO IMAIE',3,'',9,1),(267,'2014-12-02 23:10:07','219','None',3,'',9,1),(268,'2014-12-02 23:10:07','218','None',3,'',9,1),(269,'2014-12-02 23:10:07','217','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(270,'2014-12-02 23:10:07','216','None',3,'',9,1),(271,'2014-12-02 23:10:07','215','None',3,'',9,1),(272,'2014-12-02 23:10:07','214','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(273,'2014-12-02 23:10:07','213','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(274,'2014-12-02 23:10:07','212','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(275,'2014-12-02 23:25:34','299','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(276,'2014-12-02 23:25:34','298','None',3,'',9,1),(277,'2014-12-02 23:25:34','297','ADAMI',3,'',9,1),(278,'2014-12-02 23:25:34','296','None',3,'',9,1),(279,'2014-12-02 23:25:34','295','European Visual Artists',3,'',9,1),(280,'2014-12-02 23:25:34','294','None',3,'',9,1),(281,'2014-12-02 23:25:34','293','None',3,'',9,1),(282,'2014-12-02 23:25:34','292','Pictoright',3,'',9,1),(283,'2014-12-02 23:25:34','291','None',3,'',9,1),(284,'2014-12-02 23:25:34','290','International Confederation of Societies of Authors and Composers',3,'',9,1),(285,'2014-12-02 23:25:34','289','None',3,'',9,1),(286,'2014-12-02 23:25:34','288','None',3,'',9,1),(287,'2014-12-02 23:25:34','287','None',3,'',9,1),(288,'2014-12-02 23:25:34','286','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(289,'2014-12-02 23:25:34','285','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(290,'2014-12-02 23:25:34','284','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(291,'2014-12-02 23:25:34','283','NUOVO IMAIE',3,'',9,1),(292,'2014-12-02 23:25:34','282','None',3,'',9,1),(293,'2014-12-02 23:25:34','281','None',3,'',9,1),(294,'2014-12-02 23:25:34','280','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(295,'2014-12-02 23:25:34','279','None',3,'',9,1),(296,'2014-12-02 23:25:34','278','None',3,'',9,1),(297,'2014-12-02 23:25:34','277','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(298,'2014-12-02 23:25:34','276','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(299,'2014-12-02 23:25:34','275','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(300,'2014-12-02 23:51:50','354','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(301,'2014-12-02 23:51:50','353','None',3,'',9,1),(302,'2014-12-02 23:51:50','352','ADAMI',3,'',9,1),(303,'2014-12-02 23:51:50','351','None',3,'',9,1),(304,'2014-12-02 23:51:50','350','European Visual Artists',3,'',9,1),(305,'2014-12-02 23:51:50','349','None',3,'',9,1),(306,'2014-12-02 23:51:50','348','None',3,'',9,1),(307,'2014-12-02 23:51:50','347','Pictoright',3,'',9,1),(308,'2014-12-02 23:51:50','346','None',3,'',9,1),(309,'2014-12-02 23:51:50','345','International Confederation of Societies of Authors and Composers',3,'',9,1),(310,'2014-12-02 23:51:50','344','None',3,'',9,1),(311,'2014-12-02 23:51:50','343','None',3,'',9,1),(312,'2014-12-02 23:51:50','342','None',3,'',9,1),(313,'2014-12-02 23:51:50','341','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(314,'2014-12-02 23:51:50','340','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(315,'2014-12-02 23:51:50','339','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(316,'2014-12-02 23:51:50','338','NUOVO IMAIE',3,'',9,1),(317,'2014-12-02 23:51:50','337','None',3,'',9,1),(318,'2014-12-02 23:51:50','336','None',3,'',9,1),(319,'2014-12-02 23:51:50','335','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(320,'2014-12-02 23:51:50','334','None',3,'',9,1),(321,'2014-12-02 23:51:50','333','None',3,'',9,1),(322,'2014-12-02 23:51:50','332','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(323,'2014-12-02 23:51:50','331','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(324,'2014-12-02 23:51:50','330','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(325,'2014-12-02 23:51:50','329','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(326,'2014-12-02 23:51:51','328','None',3,'',9,1),(327,'2014-12-02 23:51:51','327','None',3,'',9,1),(328,'2014-12-02 23:51:51','326','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(329,'2014-12-02 23:51:51','325','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(330,'2014-12-02 23:51:51','324','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(331,'2014-12-02 23:51:51','323','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(332,'2014-12-02 23:51:51','322','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(333,'2014-12-02 23:51:51','321','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(334,'2014-12-02 23:51:51','320','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(335,'2014-12-02 23:51:51','319','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(336,'2014-12-02 23:51:51','318','None',3,'',9,1),(337,'2014-12-02 23:51:51','317','Pictoright',3,'',9,1),(338,'2014-12-02 23:51:51','316','None',3,'',9,1),(339,'2014-12-02 23:51:51','315','International Confederation of Societies of Authors and Composers',3,'',9,1),(340,'2014-12-02 23:51:51','314','None',3,'',9,1),(341,'2014-12-02 23:51:51','313','None',3,'',9,1),(342,'2014-12-02 23:51:51','312','None',3,'',9,1),(343,'2014-12-02 23:51:51','311','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(344,'2014-12-02 23:51:51','310','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(345,'2014-12-02 23:51:51','309','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(346,'2014-12-02 23:51:51','308','NUOVO IMAIE',3,'',9,1),(347,'2014-12-02 23:51:51','307','None',3,'',9,1),(348,'2014-12-02 23:51:51','306','None',3,'',9,1),(349,'2014-12-02 23:51:51','305','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(350,'2014-12-02 23:51:51','304','None',3,'',9,1),(351,'2014-12-02 23:51:51','303','None',3,'',9,1),(352,'2014-12-02 23:51:51','302','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(353,'2014-12-02 23:51:51','301','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(354,'2014-12-02 23:51:51','300','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(355,'2014-12-02 23:57:26','413','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(356,'2014-12-02 23:57:26','412','None',3,'',9,1),(357,'2014-12-02 23:57:26','411','Free Software Foundation Europe e.V.',3,'',9,1),(358,'2014-12-02 23:57:26','410','Bundesarbeitskammer Österreich',3,'',9,1),(359,'2014-12-02 23:57:26','409','None',3,'',9,1),(360,'2014-12-02 23:57:26','408','None',3,'',9,1),(361,'2014-12-02 23:57:26','407','European Blind Union',3,'',9,1),(362,'2014-12-02 23:57:26','406','None',3,'',9,1),(363,'2014-12-02 23:57:26','405','Verein für Internet-Benutzer Österreichs',3,'',9,1),(364,'2014-12-02 23:57:26','404','None',3,'',9,1),(365,'2014-12-02 23:57:26','403','None',3,'',9,1),(366,'2014-12-02 23:57:26','402','Audiovisual Translators Europe',3,'',9,1),(367,'2014-12-02 23:57:26','401','None',3,'',9,1),(368,'2014-12-02 23:57:26','400','None',3,'',9,1),(369,'2014-12-02 23:57:26','399','La Quadrature Du Net',3,'',9,1),(370,'2014-12-02 23:57:26','398','European Digital Rights',3,'',9,1),(371,'2014-12-02 23:57:26','397','None',3,'',9,1),(372,'2014-12-02 23:57:26','396','Electronic Frontier Finland ry',3,'',9,1),(373,'2014-12-02 23:57:26','395','None',3,'',9,1),(374,'2014-12-02 23:57:26','394','None',3,'',9,1),(375,'2014-12-02 23:57:26','393','Société Civile des Producteurs Phonographiques',3,'',9,1),(376,'2014-12-02 23:57:26','392','The International Federation of Reproduction Rights Organisations',3,'',9,1),(377,'2014-12-02 23:57:26','391','None',3,'',9,1),(378,'2014-12-02 23:57:26','390','IG Autorinnen Autoren',3,'',9,1),(379,'2014-12-02 23:57:26','389','None',3,'',9,1),(380,'2014-12-02 23:57:26','388','None',3,'',9,1),(381,'2014-12-02 23:57:26','387','Entidad de Gestión de Derechos de los Productores Audiovisuales',3,'',9,1),(382,'2014-12-02 23:57:26','386','Verwertungsgesellschaft für audiovisuelle Medien',3,'',9,1),(383,'2014-12-02 23:57:26','385','Groupement Européen des Sociétés d\'Auteurs et Compositeurs',3,'',9,1),(384,'2014-12-02 23:57:26','384','None',3,'',9,1),(385,'2014-12-02 23:57:26','383','Society of Audiovisual Authors',3,'',9,1),(386,'2014-12-02 23:57:26','382','Gesellschaft für musikalische Aufführungs- und mechanische Vervielfältigungsrechte',3,'',9,1),(387,'2014-12-02 23:57:26','381','None',3,'',9,1),(388,'2014-12-02 23:57:26','380','None',3,'',9,1),(389,'2014-12-02 23:57:26','379','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(390,'2014-12-02 23:57:26','378','None',3,'',9,1),(391,'2014-12-02 23:57:26','377','ADAMI',3,'',9,1),(392,'2014-12-02 23:57:26','376','None',3,'',9,1),(393,'2014-12-02 23:57:26','375','European Visual Artists',3,'',9,1),(394,'2014-12-02 23:57:26','374','None',3,'',9,1),(395,'2014-12-02 23:57:26','373','None',3,'',9,1),(396,'2014-12-02 23:57:26','372','Pictoright',3,'',9,1),(397,'2014-12-02 23:57:26','371','None',3,'',9,1),(398,'2014-12-02 23:57:26','370','International Confederation of Societies of Authors and Composers',3,'',9,1),(399,'2014-12-02 23:57:26','369','None',3,'',9,1),(400,'2014-12-02 23:57:26','368','None',3,'',9,1),(401,'2014-12-02 23:57:26','367','None',3,'',9,1),(402,'2014-12-02 23:57:26','366','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(403,'2014-12-02 23:57:26','365','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(404,'2014-12-02 23:57:26','364','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(405,'2014-12-02 23:57:26','363','NUOVO IMAIE',3,'',9,1),(406,'2014-12-02 23:57:26','362','None',3,'',9,1),(407,'2014-12-02 23:57:26','361','None',3,'',9,1),(408,'2014-12-02 23:57:26','360','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(409,'2014-12-02 23:57:26','359','None',3,'',9,1),(410,'2014-12-02 23:57:26','358','None',3,'',9,1),(411,'2014-12-02 23:57:26','357','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(412,'2014-12-02 23:57:26','356','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(413,'2014-12-02 23:57:26','355','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(414,'2014-12-03 00:01:15','531','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(415,'2014-12-03 00:01:15','530','None',3,'',9,1),(416,'2014-12-03 00:01:15','529','Free Software Foundation Europe e.V.',3,'',9,1),(417,'2014-12-03 00:01:15','528','Bundesarbeitskammer Österreich',3,'',9,1),(418,'2014-12-03 00:01:15','527','None',3,'',9,1),(419,'2014-12-03 00:01:15','526','None',3,'',9,1),(420,'2014-12-03 00:01:15','525','European Blind Union',3,'',9,1),(421,'2014-12-03 00:01:15','524','None',3,'',9,1),(422,'2014-12-03 00:01:15','523','Verein für Internet-Benutzer Österreichs',3,'',9,1),(423,'2014-12-03 00:01:15','522','None',3,'',9,1),(424,'2014-12-03 00:01:15','521','None',3,'',9,1),(425,'2014-12-03 00:01:15','520','Audiovisual Translators Europe',3,'',9,1),(426,'2014-12-03 00:01:15','519','None',3,'',9,1),(427,'2014-12-03 00:01:15','518','None',3,'',9,1),(428,'2014-12-03 00:01:15','517','La Quadrature Du Net',3,'',9,1),(429,'2014-12-03 00:01:15','516','European Digital Rights',3,'',9,1),(430,'2014-12-03 00:01:15','515','None',3,'',9,1),(431,'2014-12-03 00:01:15','514','Electronic Frontier Finland ry',3,'',9,1),(432,'2014-12-03 00:01:15','513','None',3,'',9,1),(433,'2014-12-03 00:01:15','512','None',3,'',9,1),(434,'2014-12-03 00:01:15','511','Société Civile des Producteurs Phonographiques',3,'',9,1),(435,'2014-12-03 00:01:15','510','The International Federation of Reproduction Rights Organisations',3,'',9,1),(436,'2014-12-03 00:01:15','509','None',3,'',9,1),(437,'2014-12-03 00:01:15','508','IG Autorinnen Autoren',3,'',9,1),(438,'2014-12-03 00:01:15','507','None',3,'',9,1),(439,'2014-12-03 00:01:15','506','None',3,'',9,1),(440,'2014-12-03 00:01:15','505','Entidad de Gestión de Derechos de los Productores Audiovisuales',3,'',9,1),(441,'2014-12-03 00:01:15','504','Verwertungsgesellschaft für audiovisuelle Medien',3,'',9,1),(442,'2014-12-03 00:01:15','503','Groupement Européen des Sociétés d\'Auteurs et Compositeurs',3,'',9,1),(443,'2014-12-03 00:01:15','502','None',3,'',9,1),(444,'2014-12-03 00:01:15','501','Society of Audiovisual Authors',3,'',9,1),(445,'2014-12-03 00:01:15','500','Gesellschaft für musikalische Aufführungs- und mechanische Vervielfältigungsrechte',3,'',9,1),(446,'2014-12-03 00:01:15','499','None',3,'',9,1),(447,'2014-12-03 00:01:15','498','None',3,'',9,1),(448,'2014-12-03 00:01:15','497','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(449,'2014-12-03 00:01:15','496','None',3,'',9,1),(450,'2014-12-03 00:01:15','495','ADAMI',3,'',9,1),(451,'2014-12-03 00:01:15','494','None',3,'',9,1),(452,'2014-12-03 00:01:15','493','European Visual Artists',3,'',9,1),(453,'2014-12-03 00:01:15','492','None',3,'',9,1),(454,'2014-12-03 00:01:15','491','None',3,'',9,1),(455,'2014-12-03 00:01:15','490','Pictoright',3,'',9,1),(456,'2014-12-03 00:01:15','489','None',3,'',9,1),(457,'2014-12-03 00:01:15','488','International Confederation of Societies of Authors and Composers',3,'',9,1),(458,'2014-12-03 00:01:15','487','None',3,'',9,1),(459,'2014-12-03 00:01:15','486','None',3,'',9,1),(460,'2014-12-03 00:01:15','485','None',3,'',9,1),(461,'2014-12-03 00:01:15','484','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(462,'2014-12-03 00:01:15','483','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(463,'2014-12-03 00:01:15','482','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(464,'2014-12-03 00:01:15','481','NUOVO IMAIE',3,'',9,1),(465,'2014-12-03 00:01:15','480','None',3,'',9,1),(466,'2014-12-03 00:01:15','479','None',3,'',9,1),(467,'2014-12-03 00:01:15','478','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(468,'2014-12-03 00:01:15','477','None',3,'',9,1),(469,'2014-12-03 00:01:15','476','None',3,'',9,1),(470,'2014-12-03 00:01:15','475','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(471,'2014-12-03 00:01:15','474','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(472,'2014-12-03 00:01:15','473','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(473,'2014-12-03 00:01:15','472','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(474,'2014-12-03 00:01:15','471','None',3,'',9,1),(475,'2014-12-03 00:01:15','470','Free Software Foundation Europe e.V.',3,'',9,1),(476,'2014-12-03 00:01:15','469','Bundesarbeitskammer Österreich',3,'',9,1),(477,'2014-12-03 00:01:15','468','None',3,'',9,1),(478,'2014-12-03 00:01:15','467','None',3,'',9,1),(479,'2014-12-03 00:01:15','466','European Blind Union',3,'',9,1),(480,'2014-12-03 00:01:15','465','None',3,'',9,1),(481,'2014-12-03 00:01:15','464','Verein für Internet-Benutzer Österreichs',3,'',9,1),(482,'2014-12-03 00:01:15','463','None',3,'',9,1),(483,'2014-12-03 00:01:15','462','None',3,'',9,1),(484,'2014-12-03 00:01:15','461','Audiovisual Translators Europe',3,'',9,1),(485,'2014-12-03 00:01:15','460','None',3,'',9,1),(486,'2014-12-03 00:01:15','459','None',3,'',9,1),(487,'2014-12-03 00:01:15','458','La Quadrature Du Net',3,'',9,1),(488,'2014-12-03 00:01:15','457','European Digital Rights',3,'',9,1),(489,'2014-12-03 00:01:15','456','None',3,'',9,1),(490,'2014-12-03 00:01:15','455','Electronic Frontier Finland ry',3,'',9,1),(491,'2014-12-03 00:01:15','454','None',3,'',9,1),(492,'2014-12-03 00:01:15','453','None',3,'',9,1),(493,'2014-12-03 00:01:15','452','Société Civile des Producteurs Phonographiques',3,'',9,1),(494,'2014-12-03 00:01:15','451','The International Federation of Reproduction Rights Organisations',3,'',9,1),(495,'2014-12-03 00:01:15','450','None',3,'',9,1),(496,'2014-12-03 00:01:15','449','IG Autorinnen Autoren',3,'',9,1),(497,'2014-12-03 00:01:15','448','None',3,'',9,1),(498,'2014-12-03 00:01:15','447','None',3,'',9,1),(499,'2014-12-03 00:01:15','446','Entidad de Gestión de Derechos de los Productores Audiovisuales',3,'',9,1),(500,'2014-12-03 00:01:15','445','Verwertungsgesellschaft für audiovisuelle Medien',3,'',9,1),(501,'2014-12-03 00:01:15','444','Groupement Européen des Sociétés d\'Auteurs et Compositeurs',3,'',9,1),(502,'2014-12-03 00:01:15','443','None',3,'',9,1),(503,'2014-12-03 00:01:15','442','Society of Audiovisual Authors',3,'',9,1),(504,'2014-12-03 00:01:15','441','Gesellschaft für musikalische Aufführungs- und mechanische Vervielfältigungsrechte',3,'',9,1),(505,'2014-12-03 00:01:15','440','None',3,'',9,1),(506,'2014-12-03 00:01:15','439','None',3,'',9,1),(507,'2014-12-03 00:01:15','438','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(508,'2014-12-03 00:01:15','437','None',3,'',9,1),(509,'2014-12-03 00:01:15','436','ADAMI',3,'',9,1),(510,'2014-12-03 00:01:15','435','None',3,'',9,1),(511,'2014-12-03 00:01:15','434','European Visual Artists',3,'',9,1),(512,'2014-12-03 00:01:15','433','None',3,'',9,1),(513,'2014-12-03 00:01:15','432','None',3,'',9,1),(514,'2014-12-03 00:01:15','431','Pictoright',3,'',9,1),(515,'2014-12-03 00:01:15','430','None',3,'',9,1),(516,'2014-12-03 00:01:15','429','International Confederation of Societies of Authors and Composers',3,'',9,1),(517,'2014-12-03 00:01:15','428','None',3,'',9,1),(518,'2014-12-03 00:01:15','427','None',3,'',9,1),(519,'2014-12-03 00:01:15','426','None',3,'',9,1),(520,'2014-12-03 00:01:15','425','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(521,'2014-12-03 00:01:15','424','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(522,'2014-12-03 00:01:15','423','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(523,'2014-12-03 00:01:15','422','NUOVO IMAIE',3,'',9,1),(524,'2014-12-03 00:01:15','421','None',3,'',9,1),(525,'2014-12-03 00:01:15','420','None',3,'',9,1),(526,'2014-12-03 00:01:15','419','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(527,'2014-12-03 00:01:15','418','None',3,'',9,1),(528,'2014-12-03 00:01:15','417','None',3,'',9,1),(529,'2014-12-03 00:01:15','416','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(530,'2014-12-03 00:01:15','415','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(531,'2014-12-03 00:01:15','414','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(532,'2014-12-03 00:06:32','684','Seznam.cz, a.s.',3,'',9,1),(533,'2014-12-03 00:06:32','683','Detailhandel Nederland',3,'',9,1),(534,'2014-12-03 00:06:32','682','Syndicat national des auteurs et des compositeurs',3,'',9,1),(535,'2014-12-03 00:06:32','681','None',3,'',9,1),(536,'2014-12-03 00:06:32','680','None',3,'',9,1),(537,'2014-12-03 00:06:32','679','None',3,'',9,1),(538,'2014-12-03 00:06:32','678','Fondation pour le droit continental/Civil Law Initiative',3,'',9,1),(539,'2014-12-03 00:06:32','677','The Federation of Finnish Technology Industries',3,'',9,1),(540,'2014-12-03 00:06:32','676','Vereniging van Nederlandse Gemeenten',3,'',9,1),(541,'2014-12-03 00:06:32','675','None',3,'',9,1),(542,'2014-12-03 00:06:32','674','Suomen Anti-piratismiyhdistys ry',3,'',9,1),(543,'2014-12-03 00:06:32','673','Allianz deutscher Designer',3,'',9,1),(544,'2014-12-03 00:06:32','672','Philips (Royal Philips) Electronics N.V.',3,'',9,1),(545,'2014-12-03 00:06:32','671','None',3,'',9,1),(546,'2014-12-03 00:06:32','670','None',3,'',9,1),(547,'2014-12-03 00:06:32','669','None',3,'',9,1),(548,'2014-12-03 00:06:32','668','None',3,'',9,1),(549,'2014-12-03 00:06:32','667','O\'BROTHER DISTRIBUTION',3,'',9,1),(550,'2014-12-03 00:06:32','666','SYNTEC NUMERIQUE',3,'',9,1),(551,'2014-12-03 00:06:32','665','None',3,'',9,1),(552,'2014-12-03 00:06:32','664','La Quadrature Du Net',3,'',9,1),(553,'2014-12-03 00:06:32','663','Bureau Européen des Unions de Consommateurs',3,'',9,1),(554,'2014-12-03 00:06:32','662','None',3,'',9,1),(555,'2014-12-03 00:06:32','661','None',3,'',9,1),(556,'2014-12-03 00:06:32','660','Helmholtz-Gemeinschaft Deutscher Forschungszentren e.V.',3,'',9,1),(557,'2014-12-03 00:06:32','659','Deutscher Fussball-Bund e.V.',3,'',9,1),(558,'2014-12-03 00:06:32','658','None',3,'',9,1),(559,'2014-12-03 00:06:32','657','Film and Music Austria',3,'',9,1),(560,'2014-12-03 00:06:32','656','None',3,'',9,1),(561,'2014-12-03 00:06:32','655','servus.at',3,'',9,1),(562,'2014-12-03 00:06:32','654','Stichting Vrijschrift',3,'',9,1),(563,'2014-12-03 00:06:32','653','Network of EuRopean Digital Youth',3,'',9,1),(564,'2014-12-03 00:06:32','652','None',3,'',9,1),(565,'2014-12-03 00:06:32','651','None',3,'',9,1),(566,'2014-12-03 00:06:32','650','Finnish Open Access Work Group',3,'',9,1),(567,'2014-12-03 00:06:32','649','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(568,'2014-12-03 00:07:02','684','Seznam.cz, a.s.',3,'',9,1),(569,'2014-12-03 00:07:02','683','Detailhandel Nederland',3,'',9,1),(570,'2014-12-03 00:07:02','682','Syndicat national des auteurs et des compositeurs',3,'',9,1),(571,'2014-12-03 00:07:02','681','None',3,'',9,1),(572,'2014-12-03 00:07:02','680','None',3,'',9,1),(573,'2014-12-03 00:07:02','679','None',3,'',9,1),(574,'2014-12-03 00:07:02','678','Fondation pour le droit continental/Civil Law Initiative',3,'',9,1),(575,'2014-12-03 00:07:02','677','The Federation of Finnish Technology Industries',3,'',9,1),(576,'2014-12-03 00:07:02','676','Vereniging van Nederlandse Gemeenten',3,'',9,1),(577,'2014-12-03 00:07:02','675','None',3,'',9,1),(578,'2014-12-03 00:07:02','674','Suomen Anti-piratismiyhdistys ry',3,'',9,1),(579,'2014-12-03 00:07:02','673','Allianz deutscher Designer',3,'',9,1),(580,'2014-12-03 00:07:02','672','Philips (Royal Philips) Electronics N.V.',3,'',9,1),(581,'2014-12-03 00:07:02','671','None',3,'',9,1),(582,'2014-12-03 00:07:02','670','None',3,'',9,1),(583,'2014-12-03 00:07:02','669','None',3,'',9,1),(584,'2014-12-03 00:07:02','668','None',3,'',9,1),(585,'2014-12-03 00:07:02','667','O\'BROTHER DISTRIBUTION',3,'',9,1),(586,'2014-12-03 00:07:02','666','SYNTEC NUMERIQUE',3,'',9,1),(587,'2014-12-03 00:07:02','665','None',3,'',9,1),(588,'2014-12-03 00:07:11','664','La Quadrature Du Net',3,'',9,1),(589,'2014-12-03 00:07:11','663','Bureau Européen des Unions de Consommateurs',3,'',9,1),(590,'2014-12-03 00:07:11','662','None',3,'',9,1),(591,'2014-12-03 00:07:11','661','None',3,'',9,1),(592,'2014-12-03 00:07:11','660','Helmholtz-Gemeinschaft Deutscher Forschungszentren e.V.',3,'',9,1),(593,'2014-12-03 00:07:11','659','Deutscher Fussball-Bund e.V.',3,'',9,1),(594,'2014-12-03 00:07:11','658','None',3,'',9,1),(595,'2014-12-03 00:07:11','657','Film and Music Austria',3,'',9,1),(596,'2014-12-03 00:07:11','656','None',3,'',9,1),(597,'2014-12-03 00:07:11','655','servus.at',3,'',9,1),(598,'2014-12-03 00:07:11','654','Stichting Vrijschrift',3,'',9,1),(599,'2014-12-03 00:07:11','653','Network of EuRopean Digital Youth',3,'',9,1),(600,'2014-12-03 00:07:11','652','None',3,'',9,1),(601,'2014-12-03 00:07:11','651','None',3,'',9,1),(602,'2014-12-03 00:07:11','650','Finnish Open Access Work Group',3,'',9,1),(603,'2014-12-03 00:07:11','649','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(604,'2014-12-03 00:09:04','644','None',3,'',9,1),(605,'2014-12-03 00:09:04','643','European Blind Union',3,'',9,1),(606,'2014-12-03 00:09:04','642','None',3,'',9,1),(607,'2014-12-03 00:09:04','641','Verein für Internet-Benutzer Österreichs',3,'',9,1),(608,'2014-12-03 00:09:04','640','None',3,'',9,1),(609,'2014-12-03 00:09:04','639','None',3,'',9,1),(610,'2014-12-03 00:09:04','638','Audiovisual Translators Europe',3,'',9,1),(611,'2014-12-03 00:09:04','637','None',3,'',9,1),(612,'2014-12-03 00:09:04','636','None',3,'',9,1),(613,'2014-12-03 00:09:04','635','La Quadrature Du Net',3,'',9,1),(614,'2014-12-03 00:09:04','634','European Digital Rights',3,'',9,1),(615,'2014-12-03 00:09:04','633','None',3,'',9,1),(616,'2014-12-03 00:09:04','632','Electronic Frontier Finland ry',3,'',9,1),(617,'2014-12-03 00:09:04','631','None',3,'',9,1),(618,'2014-12-03 00:09:04','630','None',3,'',9,1),(619,'2014-12-03 00:09:04','629','Société Civile des Producteurs Phonographiques',3,'',9,1),(620,'2014-12-03 00:09:04','628','The International Federation of Reproduction Rights Organisations',3,'',9,1),(621,'2014-12-03 00:09:04','627','None',3,'',9,1),(622,'2014-12-03 00:09:04','626','IG Autorinnen Autoren',3,'',9,1),(623,'2014-12-03 00:09:04','625','None',3,'',9,1),(624,'2014-12-03 00:09:13','544','None',3,'',9,1),(625,'2014-12-03 00:09:13','543','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(626,'2014-12-03 00:09:13','542','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(627,'2014-12-03 00:09:13','541','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(628,'2014-12-03 00:09:13','540','NUOVO IMAIE',3,'',9,1),(629,'2014-12-03 00:09:13','539','None',3,'',9,1),(630,'2014-12-03 00:09:13','538','None',3,'',9,1),(631,'2014-12-03 00:09:13','537','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(632,'2014-12-03 00:09:13','536','None',3,'',9,1),(633,'2014-12-03 00:09:13','535','None',3,'',9,1),(634,'2014-12-03 00:09:13','534','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(635,'2014-12-03 00:09:13','533','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(636,'2014-12-03 00:09:13','532','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(637,'2014-12-03 00:09:23','564','Entidad de Gestión de Derechos de los Productores Audiovisuales',3,'',9,1),(638,'2014-12-03 00:09:23','563','Verwertungsgesellschaft für audiovisuelle Medien',3,'',9,1),(639,'2014-12-03 00:09:23','562','Groupement Européen des Sociétés d\'Auteurs et Compositeurs',3,'',9,1),(640,'2014-12-03 00:09:23','561','None',3,'',9,1),(641,'2014-12-03 00:09:23','560','Society of Audiovisual Authors',3,'',9,1),(642,'2014-12-03 00:09:23','559','Gesellschaft für musikalische Aufführungs- und mechanische Vervielfältigungsrechte',3,'',9,1),(643,'2014-12-03 00:09:23','558','None',3,'',9,1),(644,'2014-12-03 00:09:23','557','None',3,'',9,1),(645,'2014-12-03 00:09:23','556','Société des Auteurs, Compositeurs et Editeurs de Musique',3,'',9,1),(646,'2014-12-03 00:09:23','555','None',3,'',9,1),(647,'2014-12-03 00:09:23','554','ADAMI',3,'',9,1),(648,'2014-12-03 00:09:23','553','None',3,'',9,1),(649,'2014-12-03 00:09:23','552','European Visual Artists',3,'',9,1),(650,'2014-12-03 00:09:23','551','None',3,'',9,1),(651,'2014-12-03 00:09:23','550','None',3,'',9,1),(652,'2014-12-03 00:09:23','549','Pictoright',3,'',9,1),(653,'2014-12-03 00:09:23','548','None',3,'',9,1),(654,'2014-12-03 00:09:23','547','International Confederation of Societies of Authors and Composers',3,'',9,1),(655,'2014-12-03 00:09:23','546','None',3,'',9,1),(656,'2014-12-03 00:09:23','545','None',3,'',9,1),(657,'2014-12-03 00:09:30','664','La Quadrature Du Net',3,'',9,1),(658,'2014-12-03 00:09:30','663','Bureau Européen des Unions de Consommateurs',3,'',9,1),(659,'2014-12-03 00:09:30','662','None',3,'',9,1),(660,'2014-12-03 00:09:30','661','None',3,'',9,1),(661,'2014-12-03 00:09:30','660','Helmholtz-Gemeinschaft Deutscher Forschungszentren e.V.',3,'',9,1),(662,'2014-12-03 00:09:30','659','Deutscher Fussball-Bund e.V.',3,'',9,1),(663,'2014-12-03 00:09:30','658','None',3,'',9,1),(664,'2014-12-03 00:09:30','657','Film and Music Austria',3,'',9,1),(665,'2014-12-03 00:09:30','656','None',3,'',9,1),(666,'2014-12-03 00:09:30','655','servus.at',3,'',9,1),(667,'2014-12-03 00:09:30','654','Stichting Vrijschrift',3,'',9,1),(668,'2014-12-03 00:09:30','653','Network of EuRopean Digital Youth',3,'',9,1),(669,'2014-12-03 00:09:30','652','None',3,'',9,1),(670,'2014-12-03 00:09:30','651','None',3,'',9,1),(671,'2014-12-03 00:09:30','650','Finnish Open Access Work Group',3,'',9,1),(672,'2014-12-03 00:09:30','649','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(673,'2014-12-03 00:09:40','584','European Blind Union',3,'',9,1),(674,'2014-12-03 00:09:40','583','None',3,'',9,1),(675,'2014-12-03 00:09:40','582','Verein für Internet-Benutzer Österreichs',3,'',9,1),(676,'2014-12-03 00:09:40','581','None',3,'',9,1),(677,'2014-12-03 00:09:40','580','None',3,'',9,1),(678,'2014-12-03 00:09:40','579','Audiovisual Translators Europe',3,'',9,1),(679,'2014-12-03 00:09:40','578','None',3,'',9,1),(680,'2014-12-03 00:09:40','577','None',3,'',9,1),(681,'2014-12-03 00:09:40','576','La Quadrature Du Net',3,'',9,1),(682,'2014-12-03 00:09:40','575','European Digital Rights',3,'',9,1),(683,'2014-12-03 00:09:40','574','None',3,'',9,1),(684,'2014-12-03 00:09:40','573','Electronic Frontier Finland ry',3,'',9,1),(685,'2014-12-03 00:09:40','572','None',3,'',9,1),(686,'2014-12-03 00:09:40','571','None',3,'',9,1),(687,'2014-12-03 00:09:40','570','Société Civile des Producteurs Phonographiques',3,'',9,1),(688,'2014-12-03 00:09:40','569','The International Federation of Reproduction Rights Organisations',3,'',9,1),(689,'2014-12-03 00:09:40','568','None',3,'',9,1),(690,'2014-12-03 00:09:40','567','IG Autorinnen Autoren',3,'',9,1),(691,'2014-12-03 00:09:40','566','None',3,'',9,1),(692,'2014-12-03 00:09:40','565','None',3,'',9,1),(693,'2014-12-03 00:09:48','604','None',3,'',9,1),(694,'2014-12-03 00:09:48','603','None',3,'',9,1),(695,'2014-12-03 00:09:48','602','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(696,'2014-12-03 00:09:48','601','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(697,'2014-12-03 00:09:48','600','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(698,'2014-12-03 00:09:48','599','NUOVO IMAIE',3,'',9,1),(699,'2014-12-03 00:09:48','598','None',3,'',9,1),(700,'2014-12-03 00:09:48','597','None',3,'',9,1),(701,'2014-12-03 00:09:48','596','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(702,'2014-12-03 00:09:48','595','None',3,'',9,1),(703,'2014-12-03 00:09:48','594','None',3,'',9,1),(704,'2014-12-03 00:09:48','593','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(705,'2014-12-03 00:09:48','592','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(706,'2014-12-03 00:09:48','591','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(707,'2014-12-03 00:09:48','590','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(708,'2014-12-03 00:10:06','604','None',3,'',9,1),(709,'2014-12-03 00:10:06','603','None',3,'',9,1),(710,'2014-12-03 00:10:06','602','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(711,'2014-12-03 00:10:06','601','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(712,'2014-12-03 00:10:06','600','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(713,'2014-12-03 00:10:06','599','NUOVO IMAIE',3,'',9,1),(714,'2014-12-03 00:10:06','598','None',3,'',9,1),(715,'2014-12-03 00:10:06','597','None',3,'',9,1),(716,'2014-12-03 00:10:06','596','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(717,'2014-12-03 00:10:06','595','None',3,'',9,1),(718,'2014-12-03 00:10:06','594','None',3,'',9,1),(719,'2014-12-03 00:10:06','593','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(720,'2014-12-03 00:10:06','592','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(721,'2014-12-03 00:10:06','591','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(722,'2014-12-03 00:10:06','590','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(723,'2014-12-03 06:08:17','604','None',3,'',9,1),(724,'2014-12-03 06:08:17','603','None',3,'',9,1),(725,'2014-12-03 06:08:17','602','société des auteurs des arts visuels et de l\'image fixe',3,'',9,1),(726,'2014-12-03 06:08:17','601','Finnish Authors´ Copyright Society Sanasto',3,'',9,1),(727,'2014-12-03 06:08:17','600','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH',3,'',9,1),(728,'2014-12-03 06:08:17','599','NUOVO IMAIE',3,'',9,1),(729,'2014-12-03 06:08:17','598','None',3,'',9,1),(730,'2014-12-03 06:08:17','597','None',3,'',9,1),(731,'2014-12-03 06:08:17','596','Société des auteurs dans les arts graphiques et plastiques',3,'',9,1),(732,'2014-12-03 06:08:17','595','None',3,'',9,1),(733,'2014-12-03 06:08:17','594','None',3,'',9,1),(734,'2014-12-03 06:08:17','593','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte',3,'',9,1),(735,'2014-12-03 06:08:17','592','Provinciebestuur Oost-Vlaanderen',3,'',9,1),(736,'2014-12-03 06:08:17','591','Vlaamse Overheid. Agentschap Kunsten en Erfgoed',3,'',9,1),(737,'2014-12-03 06:08:17','590','Sdružení uživatel? autorských práv Vsetín',3,'',9,1),(738,'2014-12-03 09:08:29','1','Cross-border access',1,'',7,1),(739,'2014-12-03 09:08:59','2','Private-copying and reprography',1,'',7,1),(740,'2014-12-03 09:09:32','3','Creation of a registration system at EU level',1,'',7,1),(741,'2014-12-03 09:09:55','4','Fair remuneration of authors and performers',1,'',7,1),(742,'2014-12-03 09:10:24','5','Harmonisation of the exceptions for individuals',1,'',7,1),(743,'2014-12-03 09:10:55','6','Text and Data mining ',1,'',7,1),(744,'2014-12-03 09:11:21','7','e-lending',1,'',7,1),(745,'2014-12-03 09:11:46','8','Off-premises access to academic collections',1,'',7,1);
/*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_content_type`
--
DROP TABLE IF EXISTS `django_content_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_content_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`app_label` varchar(100) NOT NULL,
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_45f3b1d93ec8c61c_uniq` (`app_label`,`model`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_content_type`
--
LOCK TABLES `django_content_type` WRITE;
/*!40000 ALTER TABLE `django_content_type` DISABLE KEYS */;
INSERT INTO `django_content_type` VALUES (1,'log entry','admin','logentry'),(2,'permission','auth','permission'),(3,'group','auth','group'),(4,'user','auth','user'),(5,'content type','contenttypes','contenttype'),(6,'session','sessions','session'),(7,'axis','positions','axis'),(8,'axis values','positions','axisvalues'),(9,'contributor','positions','contributor');
/*!40000 ALTER TABLE `django_content_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_migrations`
--
DROP TABLE IF EXISTS `django_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_migrations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`applied` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_migrations`
--
LOCK TABLES `django_migrations` WRITE;
/*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */;
INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2014-12-02 20:23:42'),(2,'auth','0001_initial','2014-12-02 20:23:42'),(3,'admin','0001_initial','2014-12-02 20:23:42'),(4,'positions','0001_initial','2014-12-02 20:23:42'),(5,'positions','0002_auto_20141202_1041','2014-12-02 20:23:42'),(6,'positions','0003_auto_20141202_1138','2014-12-02 20:23:42'),(7,'positions','0004_contributor_contribution_values','2014-12-02 20:23:42'),(8,'positions','0005_contributor_contribution_file','2014-12-02 20:23:42'),(9,'positions','0006_auto_20141202_1329','2014-12-02 20:23:43'),(10,'positions','0007_contributor_language_code','2014-12-02 20:23:43'),(11,'positions','0008_remove_contributor_contribution_axes','2014-12-02 20:23:43'),(12,'sessions','0001_initial','2014-12-02 20:23:43'),(13,'positions','0009_auto_20141202_2109','2014-12-02 21:09:34'),(14,'positions','0010_auto_20141202_2212','2014-12-02 22:12:31'),(15,'positions','0011_auto_20141202_2214','2014-12-02 22:14:14'),(16,'positions','0012_contributor_status','2014-12-02 22:43:13'),(17,'positions','0013_auto_20141203_0734','2014-12-03 07:35:08'),(18,'positions','0014_auto_20141203_0857','2014-12-03 09:07:39');
/*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_session`
--
DROP TABLE IF EXISTS `django_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_session` (
`session_key` varchar(40) NOT NULL,
`session_data` longtext NOT NULL,
`expire_date` datetime NOT NULL,
PRIMARY KEY (`session_key`),
KEY `django_session_de54fa62` (`expire_date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_session`
--
LOCK TABLES `django_session` WRITE;
/*!40000 ALTER TABLE `django_session` DISABLE KEYS */;
INSERT INTO `django_session` VALUES ('s317m3ghkavkvdvtd6f1v5ctx5v7bttr','ODQwNjI0MDZkN2U2YjkwYWJiZjcyMjk5NWVmODkzODRjNmFhYzc0MDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc3N2IxYjZhYjBjYTY4YmZlYTk3YmMzNjliYjFhZTFiNDgwODViZDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOjF9','2014-12-16 21:15:17'),('3t7joeiorg5x1qpml9mrifpwdwp04k93','ODQwNjI0MDZkN2U2YjkwYWJiZjcyMjk5NWVmODkzODRjNmFhYzc0MDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc3N2IxYjZhYjBjYTY4YmZlYTk3YmMzNjliYjFhZTFiNDgwODViZDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOjF9','2014-12-17 08:54:09');
/*!40000 ALTER TABLE `django_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `positions_axis`
--
DROP TABLE IF EXISTS `positions_axis`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `positions_axis` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`description` longtext,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `positions_axis`
--
LOCK TABLES `positions_axis` WRITE;
/*!40000 ALTER TABLE `positions_axis` DISABLE KEYS */;
INSERT INTO `positions_axis` VALUES (1,'Cross-border access','Nowadays, copyright is based on national borders. It means that consummers are not able to access services available in Member Stats other than their own. \r\n'),(2,'Private-copying and reprography','Private copying levy is a right for consumers to copy, for private use, goods that he has legally acquired, without having to ask permission. The private copying levy used to compensate rightholders for this shortfall. 22 out of 28 countries have introduced this tax, usually collected by the manufacturers of the devices used for copying.\r\n'),(3,'Creation of a registration system at EU level','Distributors and consumeurs claim that there is insufficient clarity with respect to the ownership of rights in the EU and that this undermines the ability of the market to deliver efficient licensing.\r\n'),(4,'Fair remuneration of authors and performers','Nowadays, each member state defines its own rules regarding the authors remuneration and the transfer of rights. An harmonisation would simplify the cross-borders contracts.\r\n'),(5,'Harmonisation of the exceptions for individuals','Users can copy, use and distribute content at little to no financial cost. On Internet, new types of online activities are developing rapidly, including the making of so-called “user-generated content” (UGC), which includes situations where users take one or several pre-existing works, change or add something to the work(s) and upload the result. The divergences between national laws on user-generated contents (UGC) create legal uncertainties. \r\n'),(6,'Text and Data mining ','Text and data mining, content mining, data analytics are different terms used to describe increasingly important techniques for the exploration of vast amounts of text and data. there is legal uncertainty, notably with regard to the application or not of rules on copyright and the sui generis protection of databases\r\n'),(7,'e-lending','Libraries, archives and universities are subject to copyright under specific licensing schemes. The digitisation and an easier online diffusion are seen as threats by rightholders.\r\n'),(8,'Off-premises access to academic collections','Libraries, archives and universities are subject to copyright under specific licensing schemes. The digitisation and an easier online diffusion are seen as threats by rightholders.\r\n');
/*!40000 ALTER TABLE `positions_axis` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `positions_axisvalues`
--
DROP TABLE IF EXISTS `positions_axisvalues`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `positions_axisvalues` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`axis_id` int(11) NOT NULL,
`value` varchar(140) NOT NULL,
PRIMARY KEY (`id`),
KEY `positions_axisvalues_daa44272` (`axis_id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `positions_axisvalues`
--
LOCK TABLES `positions_axisvalues` WRITE;
/*!40000 ALTER TABLE `positions_axisvalues` DISABLE KEYS */;
INSERT INTO `positions_axisvalues` VALUES (1,1,'Status quo'),(2,1,'Porus barriers for users'),(3,1,'Scraping territorial restrictions'),(4,2,'Status quo'),(5,2,'Harmonised practices for Member states using private copying levy'),(6,2,'Removal of the private-copying'),(7,3,'In favor'),(8,3,'Against'),(9,3,'Fostering national initiatives / european cooperation'),(10,4,'In favor'),(11,4,'Against'),(12,5,'Current situation is satisfactory'),(13,5,'Need to harmonise'),(14,5,'Creation of a UGC-specific exception'),(15,6,'Only for non-commercial purposes'),(16,6,'For commercial and non-commercial purposes'),(17,6,'Against the idea of an exception'),(18,7,'E-books lendings allowed'),(19,7,'E-books lendings not allowed (insufficient technology)'),(20,8,'Simplify off-premises access to works'),(21,8,'Keep the licensing schemes-based system between institutions and rightholders');
/*!40000 ALTER TABLE `positions_axisvalues` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `positions_contributor`
--
DROP TABLE IF EXISTS `positions_contributor`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `positions_contributor` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`kind` varchar(19) NOT NULL,
`contribution_file` varchar(100) DEFAULT NULL,
`activities` longtext CHARACTER SET utf8,
`area_of_interest` longtext,
`countries` longtext,
`extra_financial_info` longtext CHARACTER SET utf8,
`fax_number` longtext CHARACTER SET utf8,
`financial_year` longtext,
`goals` longtext CHARACTER SET utf8,
`head_office_address` longtext CHARACTER SET utf8,
`lobbying_expenditure` longtext,
`lobbying_section` longtext,
`lobbying_subsection` longtext,
`lobbyists_contact_position` longtext CHARACTER SET utf8,
`name` longtext CHARACTER SET utf8,
`networking` longtext CHARACTER SET utf8,
`num_natural_members` longtext,
`num_org_members` longtext,
`org_members` longtext CHARACTER SET utf8,
`original_id` longtext,
`register_url` longtext,
`registration_date` longtext,
`retrieved_at` longtext,
`telephone` longtext,
`update_date` longtext,
`language_code` varchar(2) DEFAULT NULL,
`acronym` longtext,
`chief_contact_name` longtext,
`chief_contact_position` longtext,
`fields_of_interest` longtext,
`legal_status` longtext,
`lobbying_activties` longtext,
`lobbyists_contact_name` longtext,
`rep_name` longtext,
`scrape_date` longtext,
`website` varchar(200) DEFAULT NULL,
`status` int(11) NOT NULL,
`org_subtype` varchar(40) DEFAULT NULL,
`org_type` varchar(40) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=497 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `positions_contributor`
--
LOCK TABLES `positions_contributor` WRITE;
/*!40000 ALTER TABLE `positions_contributor` DISABLE KEYS */;
INSERT INTO `positions_contributor` VALUES (1,'other','./contribution_wzfw283.pdf','Obecně se jedná o oblast informačních a komunikačních technologií a k ní se vztahující iniciativy EU (ochrana osobních údajů, audiovize, autorské právo, kybernetická bezpečnost ...).','sub-national',NULL,'Získali jsme finanční prostředky na realizaci vývojových a vzdělávacích projektů z národních operačních programů. Poskytovatelem finančních prostředků tedy byly národní řídící orgány/zprostředkující subjekty, nikoli orgány EU jako takové. Z komunitárních programů řízených a financovaných přímo orgány EU (Evropskou komisí) jsme tedy žádné finanční prostředky nezískali.','','01/2013\r\n - \r\n 12/2013','Seznam.cz má zájem se aktivně podílet na diskusi k jednotlivým tématům v oblasti informačních a komunikačních technologií (a dalším dle relevance) a svými znalostmi a zkušenostmi přispívat k tvorbě kvalitního a bezpečného prostředí pro podnikání a život v Evropské unii.','3294/10 Radlická \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Praha 15000\r\n CZECH REPUBLIC','','II - In-house lobbyists and trade/professional associations','Companies & groups','Manažer pro kontakt se státní správou','Seznam.cz, a.s.','',NULL,NULL,NULL,'202560512850-84','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=202560512850-84','05/02/14 11:17:17','2014-12-03T06:34:31.382747','(+420) 234694173','05/02/14 11:18:06','cs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(2,'other','./contribution_BI9QxY4.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'385734710440-04',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(3,'other','./contribution_TDhwsmc.pdf','Recearch & development, technical regulation, environment, education, social and labour market policy.','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','A multisectoral industry association, representing some 1600 Finnish enterprises in the technology industry, i.e. Electronics and the Electrotechnical Industry, Mechanical Engineering, Metals Industry, Information Technology Industries and Consulting Engineering.','10 Etelaranta \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 10\r\n \r\n \r\n \r\n \r\n Helsinki 00131\r\n FINLAND','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director','The Federation of Finnish Technology Industries','FFTI is a member of DigitalEurope, ORGALIME, CEEMET, Eurofer, Eurometaux.',NULL,NULL,NULL,'39705603497-38','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=39705603497-38','23/04/10 13:14:08','2014-12-03T06:38:10.361175','(+358 9) 19231','15/04/14 13:08:12','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(4,'other','./contribution_0UY4CHP.pdf','European Retail Action Plan','national;European',NULL,'','The address of Detailhandel Nederland, the Dutch Retail Association, in Brussels is:Nerviërslaan 851040 Brussel (België)T 0032.2.732 49 41','01/2010\r\n - \r\n 12/2010','Detailhandel Nederland, the Dutch Retail Association, furthers the interests of all Dutch retailers in Brussels.','13 Overgoo \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Leidschendam 2266 JZ\r\n NETHERLANDS','250000\r\n € - 300000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','head of Brussels office','Detailhandel Nederland','Detailhandel Nederland, the Dutch Retail Association, is an active member of EuroCommerce.',NULL,NULL,NULL,'22232504133-92','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=22232504133-92','08/09/10 11:10:56','2014-12-03T07:15:28.904604','(+0031) 70 320 23 45','18/08/14 13:37:36','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(5,'other','./contribution_2snqjdq.pdf','- Umweltpolitik- Klimapolitik- Energiepolitik- Handelspolitik- Binnenmarktpolitik- Rechtspolitik- Gesundheitspolitik- Verbraucherpolitik','sub-national;national;European;global',NULL,'','VCI Europabüro, 31 rue du Commerce, 1000 Brüssel, Belgien; Telefon: +32 25480690VCI Hauptstadtbüro, Neustädtische Kirchstraße 8, 10117 Berlin, Deutschland; Telefon: +49 30 20059910','10/2013\r\n - \r\n 10/2014','„Der VCI vertritt die wirtschaftspolitischen Interessen von rund 1.650 deutschen Chemieunternehmen und deutschen Tochterunternehmen ausländischer Konzerne gegenüber Politik, Behörden, anderen Bereichen der Wirtschaft, der Wissenschaft und den Medien. Der VCI steht für mehr als 90 Prozent der deutschen Chemie. Die Branche setzte 2013 über 190 Milliarden Euro um und beschäftigte rund 438.000 Mitarbeiter.“','55 Mainzer Landstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Frankfurt am Main 69329\r\n GERMANY','3,700,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführer','Verband der Chemischen Industrie e.V.','Der VCI ist Mitglied im Bundesverband der deutschen Industrie, e.V. (BDI) und Mitglied von Cefic, The European Chemical Industry Council. Über unsere BDI-Mitgliedschaft arbeiten wir auch in einigen Ausschüssen von BusinessEurope mit.',NULL,NULL,NULL,'15423437054-40','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=15423437054-40','02/11/11 11:39:59','2014-12-03T06:58:11.518093','(+49) 6925560','06/10/14 16:02:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(6,'other','./contribution_Ok26eAj.pdf','EBF\'s lobbying efforts in recent years have focused on:-VAT: Reduced VAT rate for books, as a tool to promote reading (TAXUD)-COPYRIGHT: Creative content, intellectual property and DRM, the fight against piracy (MARKT & DG INFO SOCIETEY & MEDIA)-STATISTICS and the booksellers\' claim for meaningful data on bookselling (EUROSTAT)- DIGITAL AGENDA: How can booksellers adapt to digital bookselling and make sure that a fair playing field is guaranteed for all the stakeholders in the digital arena- EUROPEANA (European Digital Library) and the booksellers claim to be involved in the project -OPEN ACCESS and knowledge sharing (DG RESEARCH)-EU CULTURAL POLICY in general and the support to reading in particular','European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','EBF represents Booksellers Associations in the EU and EEA. Through its Member Associations, EBF represents more than 25.000 individual booksellers.In this capacity, EBF is the legitimate voice of the European booksellers.The objectives of EBF are to enhance the perception of the booktrade in general and to represent the interests of the booksellers in particular vis-à-vis the European institution.By gathering booksellers associations from across Europe, EBF also fosters exchange of best practice between its members and acts as an forum for discussion and cooperation between the national booksellers associations.','10 Rue de la Science \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 1\r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director','European Booksellers Federation','',NULL,NULL,NULL,'9031106115-62','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=9031106115-62','01/07/08 17:18:03','2014-12-03T06:15:59.755418','(+32) 2 223 49 40','16/06/14 15:01:18','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(7,'other','./contribution_AGwElwp.pdf','TTVK ry ei ole toimittanut EU-aloitteita','national',NULL,'Jäsenet kattavat TTVK ry:n budjetin. Tiedotus- ja valistustoimintaan saadaan hankekohtaista rahoitusta myös opetus- ja kulttuuriministeriöltä.','','01/2012\r\n - \r\n 01/2013','Tekijänoikeuden tiedotus- ja valvontakeskus ry (TTVK) on rekisteröity ja voittoa tavoittelematon yhdistys. Yhdistys valvoo jäsentensä oikeuksia ja tiedottaa ja kouluttaa tekijänoikeudesta.Tekijänoikeuden tiedotus- ja valvontakeskus ry antaa neuvontaa yleisistä tekijänoikeusasioista, julkaisee tekijänoikeudellista tiedotusaineistoa ja tiedottaa ajankohtaisista tekijänoikeutta ja piratismia koskevista aiheista. Lisäksi TTVK antaa tekijänoikeuskoulutusta muun muassa viranomaisille ja oppilaitoksissa. TTVK valvoo valtakirjoin jäsentensä tekijänoikeuksia Suomessa. Valvontatyötä tehdään yhteistyössä oikeudenhaltijoiden ja viranomaisten kanssa niin fyysisillä markkinoilla kuin internetissäkin.','16 A Pieni Roobertinkatu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00120\r\n FINLAND','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Apulaisjohtaja','Tekijänoikeuden tiedotus- ja valvontakeskus ry','TTVK ry on mukana LYHTY-projektissa (Luovan työn tekijät ja yrittäjät (Lyhty) on luovan alan toimintaedellytyksistä huolehtiva yhteistyöprojekti).',NULL,NULL,NULL,'766565512767-11','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=766565512767-11','29/01/14 14:13:30','2014-12-03T06:38:05.367182','(+3589) 68034059','29/01/14 14:14:32','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(8,'other','./contribution_XKSsHJW.pdf','Distribution of audiovisual works','European',NULL,'','Christine Eloyc/o O\'Brother Distribution71 Rue de la Consolation1030 BrusselsTel: 0032 496 20 86 22','01/2013\r\n - \r\n 12/2013','Europa Distribution is a professional network that gathers more than 140 film distributors from all over Europe. It acts as a lobby, a think tank and a network.','51 rue Piat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75020\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','General Manager','Europa Distribution','',NULL,NULL,NULL,'626116910064-95','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=626116910064-95','06/11/12 16:37:08','2014-12-03T06:42:11.710368','(+33) 01 43 58 29 55','24/10/14 10:51:02','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(9,'other','./contribution_NoH0Gz1.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(10,'other','./contribution_JmpK2t4.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'278153413127-87',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(11,'other','./contribution_XHVuae3.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'80684221309-53',NULL,NULL,NULL,NULL,NULL,'sv',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(12,'other','./contribution_ANqmruB.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(13,'other','./contribution_gviwiXc.pdf','i2010; e-Inclusion;IPR;Copyright;Counterfeiting; Private copyright levies; Software liability & consumer acquis; Digital Rights Charta;eGovernment;Interoperability; Public Procurement; Critical infrastructure protection; Telecommunication;Trade policy;Data Privacy;','global',NULL,'Cost of BSA Global Annual Studies (Piracy, IT Competiveness Index and IDC Piracy Economic Impact) sponsored by BSA (US) are not included in the above calculation','Other contact information: Thomas BouéDirector for Government Affairs EMEA44 Avenue des Arts 1000 Brussels+ 32 2 274 13 15','01/2012\r\n - \r\n 01/2013','BSA | The Software Alliance is the voice of the world\'s software industry and its hardware partners on a wide range of business and policy affairs. BSA’s mission is to promote conditions in which the information technology (IT) industry can thrive and contribute to the prosperity, security, and quality of life of all people.Most of BSA policy, legal, and educational efforts are led and conducted at the national level, with a growing emphasis on emerging economies. BSA is active in 88 countries. BSA’s European policy work is focused on a number of areas which include Copyright and Intellectual Property, Security and Cybercrime, Piracy and Enforcement, Trade and E-Commerce. In Europe the BSA government affairs and public policy program provides the following specific member services:•Provide strategic advice to BSA member companies on public policy and legal developments affecting the IT/software industry in Europe, the Middle East and Africa, notably on intellectual property protection and sector-specific technology and IT competiveness issues.•Develop sound government affairs and advocacy initiatives promoting the objectives of the BSA members•Work with the media to increase public support of the IT sector, including to promote the value of Intellectual Property•Reach out to EU policy makers and support, as appropriate, public policy initiatives, advocacy platforms and other alliances involving BSA members together with EU policy makers and key industry players BSA public policy activites are developed and implemented on the basis of a consensus-based decision process involving all BSA member companies approach','20 F Street, NW Suite 800\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Washington, DC 20001\r\n UNITED STATES','300000\r\n € - 350000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director, Government Affairs, EMEA','BSA | The Software Alliance','European Internet Foundation (EIF)',NULL,NULL,NULL,'75039383277-48','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=75039383277-48','26/02/10 10:15:26','2014-12-03T07:44:27.969547','(+001) 202 872 5500','30/01/14 08:40:40','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(14,'other','./contribution_w7vb6oO.pdf','DG MARKT Copyright consultationOrganised a World Book and Copyright Day Discussion with DG MARKT and DG CONNECT participationParticipation in Network Neutrality DebatesTalking to JURI and IMCO MEPs about Copyright Reform','sub-national;national;European;global','AUSTRIA;BELGIUM;CZECH REPUBLIC;ESTONIA;FRANCE;GERMANY;HUNGARY;ITALY;NETHERLANDS;POLAND;SPAIN;SWEDEN;UNITED KINGDOM','Annual plan for 2014: https://meta.wikimedia.org/wiki/Wikimedia_Deutschland/2014_annual_plan/enAnnual report for 2013:https://wikimedia.de/w/images.homepage/f/fb/Wmde_jb_2013_engl_RZ_web.pdf','Brussels contact:Wikimedian in BrusselsDimitar DimitrovRue du Trône 51 TroonstraatIxelles 1050 Elsene Brussels+32 497 720 374dimitar.dimitrov@wikimedia.de','01/2014\r\n - \r\n 09/2014','Wikimedia Deutschland e.V. is a non-profit organisation promoting free knowledge. Founded in 2004 Wikimedia Deutschland e.V. supports Wikimedia projects with fundraising, infrastructure and public relations. The best known project is Wikipedia - The Free Enzyclopedia, one of the most popular websites worldwide. Wikimedia Deutschland supports Wikipedia\'s mission of creating and spreading free knowledge throughout the world. We consider the free and open access to knowledge as an integral part of the human right of education. Wikipedia, as well as other projects are independent, commercial-free and facilitated by volunteers and donations. Wikimedia Deutschland supports the growing Wikimedia projects with awareness raising campaigns, assists volunteer projects and represents the idea of free knowledge in the political field. We organize conferences and workshops, award prizes and scholarships, advise cultural and educational institutions and realize projects in cooperation with civil society partners and education projects. Furthermore we support the German Wikipedia-Community with technical and administrative assistance.','23-24 Tempelhofer Ufer \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10963\r\n GERMANY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Executive Director','Wikimedia Deutschland e.V.-Gesellschaft zur Förderung freien Wissens','Wikimedia Movement, Wikimedia Foundaitonwww.wikimedia.org','12,000','','','17599199655-43','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=17599199655-43','09/10/12 13:27:27','2014-12-03T06:59:15.008047','(+49) 30219158260','16/09/14 11:00:28','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(15,'other','./contribution_Kvm87Id.pdf','Consultation on guidelines on recommended standard licences, datasets and charging for the re-use of public sector information (PSI).Participation in the activities of policy support projects in the PSI domain, in particular LAPSI 2.0 (http://lapsi-project.eu/).[Older consultations on topics such as Network Neutrality, copyright term extension, etc.]','national;European;global','ITALY','See Chapter 8 of the Annual Report of the Nexa Center, available at: http://nexa.polito.it/2013-annual-reportSee also the Transparency and accountability principles, available at: http://nexa.polito.it/transparency-and-accountability','- Mailing address:Centro Nexa su Internet & SocietàPolitecnico di Torino - DAUINCorso Duca degli Abruzzi, 2410129 TORINO TO ITALY- Venue:via Pier Carlo Boggio 65/A,10138 TORINOSee also: http://nexa.polito.it/contacts-en','01/2012\r\n - \r\n 12/2012','Internet is a powerful technology, disruptive and generative at the same time. Founded in November 2006, the Nexa Research Center for Internet and Society at the Politecnico of Torino is an independent research centre, focusing on quantitative and interdisciplinary analysis of the force of the Internet and of its impact on society. A force that can produce radical changes in the way reality is lived, perceived, organized, as well as trigger extraordinary opportunities for development. As usual when facing new phenomena, the novelty and complexity of these changes, of their dynamics and of their interactions with development opportunities beg significant efforts in order to revise concepts and methodologies of research. Understanding the Internet, its limitations and potential not only deserves such effort, but it is an indispensable course of action to ensure economic, technical, scientific, cultural and social development for the years to come.The Nexa Center for Internet & Society is born from the activities of an initially informal interdisciplinary group – with expertise in technology, law and economics – that grew up in Torino from 2003 and that has conceived, designed and implemented a number of initiatives: Creative Commons Italia (2003-present), CyberLaw Torino (2004), Harvard Internet Law Program Torino (2005), SeLiLi, free legal advice on open licenses for creators and programmers (2006-present), COMMUNIA, the European Commission-funded thematic network of 50 partners aimed at studying the digital public domain (2007-2011) and LAPSI, the European thematic network on legal aspects of public sector information (2010-2012). The Center is a member of the Global Network Initiative.On the basis of such experiences, the Nexa Center aims at becoming one of the main actors working on Internet research worldwide. More specifically, the Nexa Center wishes to become a point of reference in Europe, interacting with the European Commission, regulators, local and national governments, as well as with business and other institutions – careful at preserving its academic and intellectual independence and with a special attention to the policy implications of its activities.The Trustees of the Nexa Center – among which prof. Charles Nesson, co-founder and co-director of the Berkman Center for Internet & Society at Harvard University and other renown scholars and thinkers, such as prof. Stefano Rodotà and Maestro Michelangelo Pistoletto – meet in Torino at least once a year to hear about the activities of the previous twelve months and to give the Nexa staff the benefit of their judgement regarding both past activities and the priorities for the following year.- See more at: http://nexa.polito.it','24 Corso Duca degli Abruzzi \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: Centro Nexa\r\n \r\n \r\n \r\n \r\n Torino 10129\r\n ITALY','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','co-founder and faculty co-director of the Nexa Center','Nexa Center for Internet & Society','The Nexa Center cooperates with international partners for the development of joint interdisciplinary research projects and initiatives.The Nexa Center has bilateral collaboration agreements with the Berkman Center for Internet & Society at Harvard University and with the Internet & Society Lab at Keio University. Below is an overview of the partnerships in broader networks.- Network of Interdisciplinary Internet & Society Research CentersFrom December 2012 the Nexa Center is part of the global Network of Internet & Society Centers (NoC), a collaborative initiative among academic institutions with a focus on interdisciplinary research on the development, social impact, policy implications, and legal issues concerning the Internet. This collective aims to increase interoperability between participating centers in order to stimulate the creation of new cross-national, cross-disciplinary conversation, debate, teaching, learning, and engagement regarding the most pressing questions around new technologies, social change, and related policy and regulatory developments. Together with seven international co-hosts, the Berkman Center for Internet & Society launched NoC at an international Symposium on Internet-Driven Developments: Structural Changes and Tipping Points (SCTP), which took place on December 6-8, 2012.fellow- Global Network InitiativeIn March 2013 the Global Network Initiative (GNI) welcomed new participant the Nexa Center for Internet & Society. GNI is a non-governmental organization with the dual goals of preventing Internet censorship by authoritarian governments and protecting the Internet privacy rights of individuals. “We’re pleased to welcome GNI’s first participant from Italy\", says GNI Executive Director Susan Morgan. “The Nexa Center is a critical source of interdisciplinary research, informed by expertise in technology, law, and economics, on Internet policy from a European perspective\". Colin Maclay, GNI Board Member and Managing Director of the Berkman Center for Internet & Society at Harvard University said: \"Since its founding, the Nexa Center\'s leadership by example—within Italy and across Europe—has proven the power of thoughtfully blending rigorous interdisciplinary research with sustained public engagement. Their collaborative approach to taking on many of the most pressing policy issues of our time is especially timely given GNI\'s increasing engagement with European companies, and I am simply thrilled to have them aboard.”fellow- See more at: http://nexa.polito.it/partnerships','32','','','234305412738-21','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=234305412738-21','27/01/14 16:45:29','2014-12-03T07:10:08.962988','(+39) 0110907217','27/01/14 16:46:35','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(16,'other','./contribution_HNMgqIh.pdf','Monitoring of EU legislation, consultation with experts of national associations, preprations of positions, participation in consultations, meetings, EU projects, etc. Main focus on Environment and industrial policies. intergraf has an ongoing Social Dialogue with UNI Europa Graphical.','European',NULL,'Financing for EU Project on Skills in the Graphic Industry from DG Employment together with the Trade Unions for EUR 235,000 in 2014 (project not yet completed).','','01/2013\r\n - \r\n 12/2013','Intergraf represents 23 national printing federations in 20 countries in Europe. Intergraf\'s main task is to promote and enhance the interests of the printing and digital communication industry, working with the European Institutions to support the sectors\' competitiveness. Intergraf covers a wide range of European policies related to the graphic industry in areas such as Competitiveness, Economics, Image, Environment, Health & Safety and Education. Intergraf is the source of information for its members regarding the different policies of the European Union affecting the print value chain. The printing industry in the 28 European countries comprises some 118,000 firms and employs some 685,000 people. The turnover in the printing industry is about €88 billion.','130A Avenue Louise \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1050\r\n BELGIUM','450000\r\n € - 500000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Secretary General','Intergraf European Federation for Print and Digital Communication','Intergraf is a member of and has the secretariat of the World Print & Communication Forum which is the international organisation representing the printing industries with members in the US & Canada, Japan, China, Hong Kong, India, Australia, Korea, Brazil and Europe.',NULL,NULL,NULL,'15519132837-45','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=15519132837-45','18/12/09 11:42:41','2014-12-03T06:24:40.754147','(+32) 22308646','21/11/14 13:34:54','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(17,'other','./contribution_vnN84sZ.pdf','1 - Position sur le périmètre du mandat des négociateurs européens dans les négociations UE et USA sur la culture et l\'audiovisuel.2- Participation aux travaux de ECSA European Composer and Songwriter Alliance (ECSA)- Avenue de la Toison d\'Or 60C - 1060 Brussels - Belgium - L\'un des 3 représentants français dans le réseau européen des auteurs et compositeurs de musiques3- Participation et suivi des travaux de la Coalition française pour la diversité culturelle','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Objectif : Défendre le Droit d’auteur et les auteursLe SNAC c\'est environ 1100 adhérents, professionnels des différents secteurs de la création : scénaristes, dialoguistes, réalisateurs, auteurs de chansons, compositeurs de musique, écrivains, auteurs de BD, auteurs de théâtre (dramaturges, metteurs en scène) chorégraphes, scénographes, ou de dramatiques radio, adaptateurs auteurs de doublages et de sous-titrages. Le SNAC unit les créateurs pour défendre leur droit d\'expression, leurs conditions de travail, leurs moyens de production, bref tout ce qui permet l\'éclosion des œuvres. Au service des professionnels, il est là pour aider les auteurs, les conseiller dans la négociation de leurs contrats, les soutenir dans leurs litiges, les défendre sur tous les plans, individuellement et collectivement.','80 rue Taitbout \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75009\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Trade unions','délégué général','Syndicat national des auteurs et des compositeurs','',NULL,NULL,NULL,'048943912698-60','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=048943912698-60','23/01/14 13:40:07','2014-12-03T06:47:14.338590','(+33) 0148749630','23/01/14 14:04:00','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(18,'other','./contribution_cJQsRWD.pdf','High Level Group on Business Services','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','Design schafft Differenzierung, sinnliche Wirkung und wirtschaftlichen Mehrwert. Dazu nutzt es vielfältiges Wissen, Fertigkeiten und Technologien. Denn erst gutes Design macht Produkte und Unternehmen zu erfolgreichen Marken. Die Allianz deutscher Designer AGD ist mit rund 3.000 Mitgliedern einer der größten Berufsverbände für freiberufliche Designer in Europa. Er bietet ein starkes Netzwerk für qualifizierte und engagierte Kreative aus allen Design-Bereichen und unterstützt seine Mitglieder bei berufswirtschaftlichen Fragen, Professionalisierung, Spezialisierung und erfolgreichen Kooperationen. Für Wirtschaft, Politik und Institutionen ist die Allianz deutscher Designer ein kompetenter Ansprechpartner. Denn Design ist überall. Dafür steht die AGD. Seit über dreißig Jahren.','3 Steinstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Braunschweig 38100\r\n GERMANY','1,200 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführerin','Allianz deutscher Designer','',NULL,NULL,NULL,'777717112773-92','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=777717112773-92','30/01/14 11:59:47','2014-12-03T06:48:47.900549','(+49531) 16757','30/01/14 12:00:18','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(19,'other','./contribution_rA2yXvI.pdf','Cooperation in the LAPSI (Legal Aspects of Public Sector Information) 2.0, which is a Thematic Network funded by the European Commission under the Competitiveness and Innovation Framework Programme 2007-2013. LAPSI 2.0’s objective is to identify the remaining legal barriers and obstacles to access and re-use of public sector information (PSI) on the European content market, and to propose measures and tools to stimulate the progress of the European market towards open data.','sub-national;national;European;global','SLOVENIA','','','01/2013\r\n - \r\n 01/2014','Intellectual Property Institute - IPI is a consulting, research, academic and educational institution, which operates in the fields of intellectual property law, Internet law, media law, privacy and personality law.It acts as a legal advisor to Slovenian companies, small as well as the largest leading companies in the country, while also advising individual creators and entrepreneurs. IPI is a leading entity in the field of copyright law, and also acts as a representative for trademarks and designs. IPI also advises start-up companies in their first steps in dealing with intellectual property as well as in other legal issues that they encounter in their business journey. It also helps the start-up companies with funding issues.Additionally, it is very active in the research field, especially regarding copyright law, where it frequently cooperates with universities, research institutes, art centers and other cultural and non-government organizations in Slovenia as well as abroad. It takes part in European and international projects in the wider field of intellectual property law.By participating in debates in the field of intellectual property law, its goal is to mark the Slovenian mind set with new perspectives, crucial for the development of a creative and innovative society in the new millennium.','54 Slovenska cesta \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Ljubljana 1000\r\n SLOVENIA','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','CEO','Intellectual Property Institute','Part of the LAPSI (Legal Aspects of Public Sector Information) 2.0 Thematic Network','3','','','737480313171-27','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=737480313171-27','04/03/14 16:56:32','2014-12-03T07:25:24.073810','(+386) 59942437','04/03/14 17:01:58','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(20,'other','./contribution_ONQqjP8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'287556411631-86',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(21,'other','./contribution_r9l4GcE.pdf','Proposal to Call for Proposals - Civil Justice Action Grants 2012 and 2013Priority DStudy about comercial secrets protectionStudy about enterprise governance','European;global','BELGIUM;FRANCE;GERMANY;GREECE;ITALY;PORTUGAL;ROMANIA;SPAIN;ALGERIA;ARGENTINA;AUSTRALIA;BRAZIL;CAMBODIA;CANADA;CHILE;CHINA;COLOMBIA;JAPAN;LEBANON;MEXICO;MOROCCO;RUSSIA, FEDERATION OF;TUNISIA;UNITED STATES;VIETNAM','','','01/2013\r\n - \r\n 12/2013','The mission of the Fondation pour le droit continental is to reinforce the dissemination of civil law at the global level and to ensure its position as a point of reference on an international scale.','2-14 Rue des Cévennes \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75015\r\n FRANCE','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','CEO','Fondation pour le droit continental/Civil Law Initiative','','0','13','Conseil national des Barreaux (55,000 members);Fondation des notaires de France (8,000 members);Caisse des dépôts et consigantions (0 members);Chambre national des Huissiers de justice (3,300 members);Conseil National des Administrateurs Judiciaires et Mandataires (619 members);Conseil National des Greffiers des Tribunaux de Commerce (146 members);EDF (0 members);Total (0 members);Schneider-Electric (0 members);Etat français (0 members);Conseil d\'Etat (300 members);Cour de Cassation (300 members);Vivendi (0 members)','31141499130-30','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=31141499130-30','10/07/12 13:32:20','2014-12-03T06:43:39.205987','(+331) 70224141','27/06/14 12:07:32','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(22,'other','./contribution_0bTdBYL.pdf','ICOMP is an industry initiative for organisations and businesses involved in Internet commerce. ICOMP organises conferences, webinars and press roundtables, issues policy briefs and newsletters, conducts research and studies, and advocates generally for a more competitive, transparent, and secure online marketplace with data privacy and respect for IPRs, all in keeping with the rule of law. During the course of the previous year, ICOMP has continued to work towards the achievement of its goals (outlined in more detail above), in order to promote sustainable growth in the online marketplace in a way which is transparent and based on competition on the merits. In order to pursue these aims, in recent months, ICOMP has continued to increase its focus on the need for privacy and data protection online, as well as incentives to innovate. In particular, from March 2013 to February 2014, ICOMP has engaged in activities falling under the scope of the Transparency Register, including:- Maintaining its blog, (http://www.i-comp.org/blog/).- Meeting with Members of the European Parliament and with Commission officials.- Circulation of newsletters.- Organising events in Brussels (most recently, its event \"Your content, their profits – How online copyright theft threatens culture and creativity\").- Organising conferences, webinars and press-round tables.- Issuing policy briefs and discussion papers.','national;European;global',NULL,'In response to question 2 above and in keeping with the guidance provided by the Commission in its Communication of October 2009, the subsequent Interinstitutional Agreement signed between the European Parliament and the Commission on 22 July 2011, and the Transparency Register Compliance Guidelines of 4 October 2012, ICOMP has not excluded double-counting from its entry on the Transparency Register and has included relevant expenditure, even if this has been reported elsewhere in the Register.The financial information provided by ICOMP in its entry relates to the turnover attributable to the activities falling within the scope of the Transparency Register as defined in Part IV of the Interinstitutional Agreement, i.e., activities carried out with the objective of directly or indirectly influencing the formulation or implementation of policy and the decision-making processes of the EU institutions. ICOMP has also included in this figure the cost of activities relating to its organisation of events and public gatherings.ICOMP is a formal complainant before the European Commission in administrative proceedings in Case 39.740 Google. For this reason, turnover relevant to activities directly pertaining to this case have been excluded from the scope of ICOMP’s entry on the Transparency Register in accordance with the exclusions set out in paragraph 10(a) of the Interinstitutional Agreement.','','03/2013\r\n - \r\n 02/2014','ICOMP’s goal is to promote widespread support for principles that are essential to a healthy online environment, with the overall objective of achieving sustainable growth on the Internet consistent with the rule of law, namely through the encouragement of competition and transparency. ICOMP’s other key goals are:- Data privacy- Respect for intellectual property- Adoption of best practices to stimulate creativity & innovation- Fostering of an online environment founded on security, respect & trustIn order to achieve these goals, ICOMP:- Helps to educate and inform stakeholders and decision-makers as regards the functioning of the online marketplace and the application of competition rules.- Encourages companies to act responsibly with user data and to compete on the basis of user privacy safeguards.- Brings participants from across the Internet together to identify and promote best practices.ICOMP’s work is guided by the following principles:- Competition: Advertisers, web publishers and consumers all rely on healthy competition in online advertising to generate online innovation and content. Online advertising will continue to serve as the engine that drives the online economy, but only if vibrant competition in this critical sector is preserved.- Transparency: Companies benefiting from a very strong market position can sometimes achieve the status of “gate-keepers to the Internet”. There is a special obligation on such companies to be completely transparent about their business practices.- Security: The Internet and e-commerce will reach their full potential only if consumers are informed of the ways in which their information is used and are confident that their privacy will be respected.- IPR: Intellectual property rights foster creativity, innovation and online growth by enabling firms and individuals to enjoy the commercial fruits of their hard work and investments.','See below - \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: BCM Box ICOMP\r\n \r\n \r\n \r\n \r\n London WC1N 3XY\r\n UNITED KINGDOM','250000\r\n € - 300000\r\n €','II - In-house lobbyists and trade/professional associations','Other similar organisations','Chief Operating Officer, Burson Marsteller, Brussels','The Initiative for a Competitive Online Marketplace','At the time of this update, ICOMP represents the interests of 31 council members and also has signatories who sign up to its principles. A list of ICOMP council members is maintained on ICOMP’s website: http://www.i-comp.org/members/. (1) The Council & Council MembersThe Council is the guiding body of ICOMP and consists of ICOMP members who make financial contributions to ICOMP. The Council is chaired by Lord Alan Watson. It includes members which are associations, including the Centre of the Picture Industry (“CEPIC”); Associaçío Portuguesa De Software (“ASSOFT”);and SUMA-EV, as well as a number of indiviudal enterprises.(2) SignatoriesICOMP also has signatories who have signed ICOMP’s principles and aims: they agree on the need for a more competitive, transparent, privacy friendly and secure online marketplace. At the time of this update, ICOMP is supported by 51 such signatories, including the Spanish Chapter of the International Advertising Association and the Association of Spanish Editors of Newspapers, (“AEDE”).ICOMP council members and signatories reside across 18 different countries around the world.Other than the Council, ICOMP also has a Secretariat which is run by a UK registered company, Burson Marsteller, and which is responsible for the administration and Secretariat of ICOMP. In terms of ICOMP’s membership of other bodies, ICOMP is an associate member of the European Internet Foundation.',NULL,NULL,NULL,'94410281407-45','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=94410281407-45','23/03/09 10:42:03','2014-12-03T07:42:59.193175','(+44) 2073006236','23/03/14 13:12:34','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(23,'other','./contribution_6Tp6b9H.pdf','Keine','national','GERMANY','Die DDB wird von Bund und Ländern auf der Grundlage des Verwaltungs- und Finanzierungsabkommens vom Dezember 2009 finanziert. Für den Aufbau der Infrastruktur stellte der Bund bis Ende 2011 rund 8,5 Millionen Euro zur Verfügung. Für Aufbau und Betrieb der DDB-Infrastruktur haben Bund und Länder bis Ende 2012 gemeinsam weitere 7,8 Millionen Euro aufgewendet. Bis 2015 werden jährlich zusätzlich 2,6 Millionen Euro für den Betrieb der DDB zur Verfügung stehen. Danach werden Bund und Länder auf der Grundlage einer Evaluierung der bisherigen Strukturen und Arbeiten über die weitere Finanzierung des Betriebs entscheiden. Ferner wird der Bund 2013 zusätzlich 1 Million Euro in den Ausbau der Beta- zur Vollversion der DDB und weitere 4 Millionen Euro in Sonderprojekte zur Digitaliserung von Kulturgut in Einrichtungen des Bundes investieren, deren Ergebnisse dann direkt in die DDB Eingang finden werden. Damit beläuft sich das Investitionsvolumen für Aufbau und Betrieb des DDB-Portals bis Ende 2013 auf rund 24 Millionen Euro.','','01/2013\r\n - \r\n 12/2013','The DDB is Germany’s central, complete and publicly operated national portal for culture and science. TheDDB is a network of the cultural and scientific institutions in Germany. It enables and encourages them tonetwork, cooperate and to develop and use together services and innovative tools. These make possible, inparticular, new and more effective forms of presenting, managing and processing digitised contents. Thewebsite will successively link up the digitised inventories of Germany’s cultural and scientific institutions andmake these available for the public. The DDB is the national data aggregator for Europeana.','38 Geschäftsstelle mit Sitz bei der Stiftung Preußischer Kulturbesitz Genthinerstrasse\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10785\r\n GERMANY','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Other public or mixed entities, etc.','Stellevertreterin des Geschäftsführers','Deutsche Digitale Bibliothek','','0','13','Bayrische Staatsbibliothek (0 members);Landesarchiv Baden-Württemberg (0 members);Bibliotheksservicezentrum Baden-Württemberg (0 members);Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Land (0 members);Bundesarchiv (0 members);Deutsches Filminstitut (0 members);Deutsche Nationalbibliothek (0 members);digiCULT-Verbund eG (0 members);Digitales Kunst- und Kulturarchiv Düsseldorf (d:kult) / Kulturamt der (0 members);Max-Planck-Institut für Wissenschaftsgeschichte (0 members);Max-Planck-Institut für Wissenschaftsgeschichte Niedersächsische Staat (0 members);Sächsische Landesbibliothek – Staats- und Universitätsbibliothek Dresd (0 members);Niedersächsische Staats- und Universitätsbibliothek Göttingen, hier da (0 members)','142216412679-25','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=142216412679-25','21/01/14 17:48:22','2014-12-03T06:51:39.901910','(+0049) 030266411432','21/01/14 17:48:49','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Public entity','Government'),(24,'other','./contribution_ST3a2wM.pdf','N/A previously.',NULL,NULL,'','Every single year, more than one billion dollars in income is delayed or forfeited by songwriters and music publishers due to their inability to confirm and/or demonstrate their ownership interest in songs. The current market solution to this problem is an often unstructured, time-intensive process of telephone calls, emails and circulating documents attempting to validate song splits as proof or rights to a writer or publishers share of this revenue. An increasing amount of time by publishers or publishing companies is spent \'tracking down splits\' requiring a human resource cost as a cost center for these publishers.’Enter SongSplits. SongSplits.com is a rights-holder focused, web-based platform that captures and verifies copyright ownership information directly from rights-holders and manages that information for publishers and copyright collecting organizations. As a result, the Company has created a simple and universal process for global creators to submit and declare their ownership in created works while simultaneously enabling business stakeholders to execute on their core business: claiming copyright ownership and distributing those credits and/or royalties to their rights-holders.Since the Company beta launched the first app in June 2012, and has attracted more than 30,000 creator representatives in nearly 30 countries. Song Splits Solutions LLC is based in New York City. For more information visit www.songsplits.com','03/2013\r\n - \r\n 03/2014','The CompanySongSplits is an information technology company that is eliminating the friction of licensing digital media.The OpportunityRights-holder credits and royalities go undistributed each year due to the inability to confirm and/or verify ownership of copyrights. Additional revenue is never generated because missing data prevents licensing. The current method for managing the data that is required for content licensing is an unstructured, time-intensive process of telephone calls, emails and circulating documents. This is an inefficient, high-cost business practice in the music industry that produces limited, and often costly, results.The Product/ServiceSong Splits Solutions LLC has developed an end-to-end platform to definitively capture, confirm, display and distribute copyright information from any web-enabled device; directly from the creators. Through an intuitive interface, songwriters can add and confirm information all within a few clicks. Meanwhile, the managers, publishers, attorneys and societies that work on behalf of these rights-holdres can access real-time, synchronized data, which allows them to work more efficiently. This technology-enabled approach reduces the time, costs and the margin of error of managing copyright information on an individual basis for all stakeholders in the process and provides a uniform data structure for the music industry to rely upon.','8 West 40th Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n New York 10018\r\n UNITED STATES',NULL,'I - Professional consultancies/law firms/self-employed consultants','Professional consultancies','Writer Relations and User Experience','Song Splits Solutions LLC','',NULL,NULL,NULL,'071520513186-13','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=071520513186-13','05/03/14 02:27:19','2014-12-03T07:45:42.898928','(+347) 803 3052','05/03/14 02:52:52','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Consultancy','Business'),(25,'other','./contribution_M2XaSW4.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(26,'other','./contribution_tnd9hPw.pdf','Most EU initiatives likely to affect UEFA\'s interests.','European',NULL,'','','07/2013\r\n - \r\n 06/2014','UEFA is the governing body for football in Europe with a membership comprising 54 national football associations across the entire continent, including all 28 Member States of the European Union. Our mission is to develop football at all levels, amateur and professional, and to deal with all questions relating to European football.At EU level, we aim at strengthening the notion of specificity of sport and building on the structures of the European sports model, underpinned by the sports federations. We communicate UEFA policy to the EU institutions and contribute to the growing European debate on sports policy. More generally, we have a duty to develop good relations with individual MEPs, EC officials and representatives from EU Member States that have an interest in sports policy.','46 Route de Genève \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Nyon 1260\r\n SWITZERLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Legal Counsel','Union of European Football Associations','UEFA is a member of:- the Association of European Team Sports (ETS);- the Sports Rights Owners\' Coalition (SROC).',NULL,NULL,NULL,'39217046408-27','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=39217046408-27','10/08/11 14:24:22','2014-12-03T07:34:23.347755','(+41) 848002727','14/07/14 13:35:56','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(27,'other','./contribution_xoNMtsH.pdf','Interservice consultation on Plain Packaging','global','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ARGENTINA;AUSTRALIA;BELARUS;BOLIVIA;BRAZIL;CANADA;CHILE;CHINA;COLOMBIA;ECUADOR;EGYPT;GEORGIA;ICELAND;INDIA;INDONESIA;ISRAEL;JAPAN;KOREA, REPUBLIC OF;MALAYSIA;MEXICO;NEW ZEALAND;NIGERIA;NORWAY;PANAMA;PARAGUAY;PERU;PHILIPPINES;RUSSIA, FEDERATION OF;SERBIA;SINGAPORE;SOUTH AFRICA;SRI LANKA;SWITZERLAND;THAILAND;TURKEY;UKRAINE;UNITED STATES;URUGUAY;VENEZUELA','','','01/2013\r\n - \r\n 12/2013','The International Association for the Protection of Intellecutal Property, generally known under the abbreviated name AIPPI, is the world\'s leading International Organization dedicated to the development and improvement of the regimes for the protection of intellectual property.It is a politically neutral, non-profit organization, domiciled in Switzerland which currently has almost 9000 members in more than 100 countries. the objective of AIPPI is to improve and promote the protection of IP on both an international and national basis. It pursues this objective by working for the development, expansion and improvement of international and regional treaties and agreements and also of national laws relating to IP. It operates by conducting studies of existing national laws and proposes measures to achieve harmonization of these laws on an international basis. In this context AIPPI has become increasingly concerned with issues concerning the enforcement of intellectual property rights.','16 Tödistrasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Zürich 8027\r\n SWITZERLAND','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','External Relations Executive','International Association for the Protection of Intellectual Property','None.','8,250','65','AIPPI Argentina (66 members);AIPPI Australia (86 members);AIPPI Austria (80 members);AIPPI Belarus (14 members);AIPPI Belgium (128 members);AIPPI Bolivia (7 members);AIPPI Brazil (154 members);AIPPI Bulgaria (24 members);AIPPI Canada (164 members);AIPPI Chile (51 members);AIPPI China (289 members);AIPPI Colombia (21 members);AIPPI Croatia (15 members);AIPPI Czech Republic (33 members);AIPPI Denmark (196 members);AIPPI Ecuador (9 members);AIPPI Egypt (44 members);AIPPI Estonia (24 members);AIPPI Finland (203 members);AIPPI France (603 members);AIPPI Georgia (24 members);AIPPI Germany (931 members);AIPPI Greece (39 members);AIPPI Hungary (59 members);AIPPI Iceland (2 members);AIPPI India (137 members);AIPPI Indonesia (20 members);AIPPI Ireland (17 members);AIPPI Israel (176 members);AIPPI Italy (497 members);AIPPI Japan (1,079 members);AIPPI Latvia (36 members);AIPPI Lithuania (14 members);AIPPI Luxembourg (34 members);AIPPI Malaysia (15 members);AIPPI Mexico (69 members);AIPPI Netherlands (376 members);AIPPI New Zealand (14 members);AIPPI Norway (111 members);AIPPI Panama (14 members);AIPPI Paraguay (15 members);AIPPI Peru (33 members);AIPPI Philippines (42 members);AIPPI Poland (61 members);AIPPI Portugal (108 members);AIPPI Rep. of Korea (180 members);AIPPI Romania (29 members);AIPPI Russia (100 members);AIPPI Serbia (30 members);AIPPI Singapore (40 members);AIPPI Slovenia (32 members);AIPPI South Africa (33 members);AIPPI Spain (329 members);AIPPI Sweden (211 members);AIPPI Switzerland (323 members);AIPPI Turkey (141 members);AIPPI Ukraine (36 members);AIPPI United Kingdom (353 members);AIPPI United States (255 members);AIPPI Venezuela (18 members);AIPPI Thailand (29 members);AIPPI Arab Regional Group (74 members);Caribbean Regional Group (57 members);Sri Lanka (7 members);Uruguay (13 members)','645977412278-25','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=645977412278-25','18/11/13 16:04:36','2014-12-03T07:33:36.606691','(+41) 044 280 58 80','10/11/14 11:14:32','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(28,'other','./contribution_yW0Ieqa.pdf','Legal services for defense of tradmark and lobby actions.','national',NULL,'','','01/2013\r\n - \r\n 01/2014','ANDEMA es una asociación privada, sin ánimo de lucro, formada por más de 70 empresas, pertenecientes a diversos sectores económicos, pero con un nexo en común: la creencia en el poder de la marca, de los diseños y de las patentes como principal activo de las empresas, como herramienta de competitividad e internacionalización y como elemento generador de riqueza y empleo en la economía y en la sociedad.','12 C/ Ribera del Loira Nº12 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Madrid 28042\r\n SPAIN','10,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director General','Asociación Nacional para la defensa de la Marca','Oficina de Armonización del Mercado Interior (OAMI).Observatorio Europeo de Infracciones contra los Derechos de Propiedad Intelectual.Dirección General de Mercado Interior y Protección del Consumidor de la Comisión Europea.Comisión del Mercado Interior y Consumo del Parlamento Europeo.Global Anti-Counterfeiting GroupAssociation des Industries de Marques',NULL,NULL,NULL,'615373310628-08','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=615373310628-08','13/02/13 16:59:47','2014-12-03T07:26:49.949994','(+34) 915906939','20/01/14 09:27:07','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(29,'other','./contribution_hrhGSDR.pdf','Distribution d’œuvres audiovisuelles','sub-national;national;European;global',NULL,'','Brussels officeO’Brother Distribution72 Rue de la Consolation1030 BruxellesBelgiqueT +32 2 739 47 20','01/2012\r\n - \r\n 12/2012','O’Brother Distribution est une société de distribution cinématographique active au Benelux dont l’ambition est de proposer une offre différente en diffusant des œuvres de qualité belges et étrangères, tout en se donnant les moyens de les défendre avec l’enthousiasme nécessaire.','9 QUAI DE LA GOFFE \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n LIEGE 4000\r\n BELGIUM','300000\r\n € - 350000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','HEAD OF SALES & ACQUISITIONS','O\'BROTHER DISTRIBUTION','O\'Brother est membre d\'Europa Distribution.',NULL,NULL,NULL,'771168713043-32','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=771168713043-32','04/03/14 16:30:20','2014-12-03T06:27:11.302311','(+32) 42324050','04/03/14 16:35:56','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(30,'other','./contribution_WBlYN79.pdf','State AidCohesion PolicyPublic ProcurementEnvironementTransportClimate ChangeEurope2020Multi-level governance','sub-national;national;European;global','NETHERLANDS','VNG annual financial statement is published online: www.vng.nlhttp://www.vng.nl/files/vng/05a-bijlage-financieel-jaarverslag-vng-2013.pdfOverview of representation of Dutch Municipalities in EU organisations:http://www.vng.nl/smartsite.dws?id=65853','House of Cities, Municipalities and Regions Square De Meeûs 11000 BrusselBelgië','01/2013\r\n - \r\n 12/2013','Represent the interests of Dutch municipalities.','12 Nassaulaan \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 30435\r\n \r\n \r\n \r\n \r\n Den Haag 2500 GK\r\n NETHERLANDS','500000\r\n € - 600000\r\n €','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Local, regional and municipal authorities (at sub-national level)','Directeur Europa','Vereniging van Nederlandse Gemeenten','Council of European Municipalities and Regions (CEMR)European Centre of Employers and Enterprises providing Public services (CEEP)United Cities and Local Governments (UCLG)','0','0','','32705794105-55','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=32705794105-55','01/09/10 14:48:08','2014-12-03T07:18:49.850868','(+3170) 3738393','15/08/14 17:57:37','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Local authority','Government'),(31,'other','./contribution_5iX82vT.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(32,'other','./contribution_diHs32V.pdf','Ei aloitteita.','national',NULL,'Yhdistys rahoittaa toimintansa jäsenmaksuilla. Yhdistyksen tarkoituksena ei ole taloudellisen edun tavoitteleminen.','FACG ry on osa GACG:tä: http://www.gacg.org/','01/2013\r\n - \r\n 01/2014','Yhdistyksen tarkoituksena on pyrkiä estämään tuoteväärennösten ja piraattikopioiden valmistusta, kauppaa, jakelua ja muuta levitystä. Lisäksi yhdistys pyrkii välittämään tietoa keinoista, lainsäädännöstä ja oikeuskäytännöstä tuoteväärennöstoiminnan ehkäisemiseksi ja vähentämiseksi sekä luomaan tehokkaita vastatoimia piratismille.Tarkoituksensa toteuttamiseksi yhdistys toimii yhteydenpitovälineenä ja tapaamisten järjestäjänä yhdistyksen jäsenistön keskuudessa sekä järjestää erilaisia koulutustilaisuuksia viranomaisille ja yhdistyksen toiminnasta kiinnostuneille.Lisäksi yhdistys pyrkii luomaan ja ylläpitämään yhteyksiä toimimalla yhteistyössä muiden suomalaisten sekä kansainvälisten alan yhdistysten ja muiden tahojen kanssa. Edelleen yhdistyksen tarkoituksen toteuttamiseksi voidaan harjoittaa julkaisutoimintaa.','16 A Pieni Roobertinkatu \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: PL 186\r\n \r\n \r\n \r\n \r\n Helsinki 00121\r\n FINLAND','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','hallituksen puheenjohtaja 2013 -','Suomen Anti-piratismiyhdistys ry','FACG ry on osa GACG:tä (Global Anti-Counterfeiting Network):http://www.gacg.org/',NULL,NULL,NULL,'064792712901-58','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=064792712901-58','10/02/14 11:37:14','2014-12-03T06:37:50.942850','(+358) 968034059','10/02/14 11:38:13','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(33,'other','./contribution_tEP9ENg.pdf','Keine','national','GERMANY','Die DDB wird von Bund und Ländern auf der Grundlage des Verwaltungs- und Finanzierungsabkommens vom Dezember 2009 finanziert. Für den Aufbau der Infrastruktur stellte der Bund bis Ende 2011 rund 8,5 Millionen Euro zur Verfügung. Für Aufbau und Betrieb der DDB-Infrastruktur haben Bund und Länder bis Ende 2012 gemeinsam weitere 7,8 Millionen Euro aufgewendet. Bis 2015 werden jährlich zusätzlich 2,6 Millionen Euro für den Betrieb der DDB zur Verfügung stehen. Danach werden Bund und Länder auf der Grundlage einer Evaluierung der bisherigen Strukturen und Arbeiten über die weitere Finanzierung des Betriebs entscheiden. Ferner wird der Bund 2013 zusätzlich 1 Million Euro in den Ausbau der Beta- zur Vollversion der DDB und weitere 4 Millionen Euro in Sonderprojekte zur Digitaliserung von Kulturgut in Einrichtungen des Bundes investieren, deren Ergebnisse dann direkt in die DDB Eingang finden werden. Damit beläuft sich das Investitionsvolumen für Aufbau und Betrieb des DDB-Portals bis Ende 2013 auf rund 24 Millionen Euro.','','01/2013\r\n - \r\n 12/2013','The DDB is Germany’s central, complete and publicly operated national portal for culture and science. TheDDB is a network of the cultural and scientific institutions in Germany. It enables and encourages them tonetwork, cooperate and to develop and use together services and innovative tools. These make possible, inparticular, new and more effective forms of presenting, managing and processing digitised contents. Thewebsite will successively link up the digitised inventories of Germany’s cultural and scientific institutions andmake these available for the public. The DDB is the national data aggregator for Europeana.','38 Geschäftsstelle mit Sitz bei der Stiftung Preußischer Kulturbesitz Genthinerstrasse\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10785\r\n GERMANY','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Other public or mixed entities, etc.','Stellevertreterin des Geschäftsführers','Deutsche Digitale Bibliothek','','0','13','Bayrische Staatsbibliothek (0 members);Landesarchiv Baden-Württemberg (0 members);Bibliotheksservicezentrum Baden-Württemberg (0 members);Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Land (0 members);Bundesarchiv (0 members);Deutsches Filminstitut (0 members);Deutsche Nationalbibliothek (0 members);digiCULT-Verbund eG (0 members);Digitales Kunst- und Kulturarchiv Düsseldorf (d:kult) / Kulturamt der (0 members);Max-Planck-Institut für Wissenschaftsgeschichte (0 members);Max-Planck-Institut für Wissenschaftsgeschichte Niedersächsische Staat (0 members);Sächsische Landesbibliothek – Staats- und Universitätsbibliothek Dresd (0 members);Niedersächsische Staats- und Universitätsbibliothek Göttingen, hier da (0 members)','142216412679-25','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=142216412679-25','21/01/14 17:48:22','2014-12-03T06:51:39.901910','(+0049) 030266411432','21/01/14 17:48:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Public entity','Government'),(34,'other','./contribution_JhOqzGz.pdf','The main sectors where Pearle*\'s actions are focusing on are:- Culture & education- Employment and Social Affairs - Taxation - Intellectual Property/Copyright affairs - Consumer protection- Health & Safety - Trade- Entreprise- Radio spectrum- Mobility for cultural workers- Visas- State aid - Environment- Other issues discussed within the European sectoral social dialogue committee \'live performance\'','European',NULL,'','Fax: +32.2.201 17 27E-mail: info@pearle.wsDirector: Anita Debaereanita@pearle.ws','01/2013\r\n - \r\n 12/2013','PEARLE*-Live Performance Europe is the European sector federation of Live Performance organisations: it represents through its members associations more than 5,000 theatres, theatre production companies, orchestras and music ensembles, opera houses, ballet and dance companies, festivals, and other organisations within the performing arts sector across Europe. Its objects are: the exchange of information, experiences and ideas of common interest to members working in the Performing Arts sector; the obtaining of information concerning all European issues relating to members’ interests; facilitating collective decisions in areas of common interest; expressing Pearle*’s views in discussions with bodies whose activities are relevant to Pearle*; lobbying in accordance with collective decisions reached by the members’ representatives toEU and other authorities; carrying out all activities connected with the above mentioned activities.','19 Square Sainctelette \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director','Performing Arts Employers Associations League Europe','PEARLE*:- has an observer status with WIPO (World Intellectual Property Organisation; - is member of EEN (European Employers’ Network) facilitated by Businesseurope (the Confederation of European Business); - is registered as an employers’ organisation by ILO (International Labour Office) with observer status at the International Labour Conference; - is a partner of the European Sectoral Social Dialogue Committee ‘Live Performance’ together with European Arts & Entertainment Alliance (EAEA), representing FIM (International Federation of Musicians), FIA (International Federation of Actors) and UNI-MEI (Media Arts and Entertainment International). - is a founding member of Culture Action Europe(the European Forum for the Arts and Heritage) - is a member of CUP (Copyright Users Platform)- is a member of EFSC (European Forum for Spectrum Coexistence)- registered as civil society stakeholder with DG Trade- participates to the civil society platforms ‘Access to Culture’ and ‘Cultural and Creative Industries’set up at the initiative of the European Commission, DG Culture- registered on the reserve list of the platform for Good Tax Governance facilitated by DG Taxud',NULL,NULL,NULL,'4817795559-48','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=4817795559-48','27/10/08 17:28:11','2014-12-03T06:27:42.495197','(+32) 2 203 62 96','30/09/14 08:10:43','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(35,'other','./contribution_YVjNUnf.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(36,'other','./contribution_J9mYZSi.pdf','New ChallengesThe protection of intellectual property rights is gaining in significance. Whereas 50 years ago real property, machinery and material goods formed the major part of the assets of an enterprise, these are now determined increasingly by elements of intellectual property. The globalisation of the economy generates a need for appropriate global protection.GRUR has responded to these developments and established a position for \"international affairs\" in its secretariat in 2004, the aim being to develop the international engagement of the Association and to present itself as a discussion partner to the competent international authorities, particularly the European Commission, WIPO, the European Union\'s Trade Marks and Designs Office (OHIM) and the European Patent Office (EPO).In the course of this \"internationalisation\" of the Association, GRUR was granted the status of an observer at WIPO in 2005, participating since then in meetings of the competent committees of this important organisation. Since 2006 GRUR is a member of the \"Users\' Group\" of OHIM, participates in hearings of the EU Commission, organises since 2005 the \"GRUR meets Brussels\" workshop in Brussels, and is also engaged in an exchange of views and cooperation with European and international sister organisations. In order to enhance the professional academic exchange of views, GRUR takes part in international conferences and meetings, also inviting foreign speakers and guests to its own events. The working programme of the annual meetings also regularly includes international subjects. To this end German-English simultaneous interpretation has been made available to foreign participants since 2008.Professional EventsFor the purpose of information and legal education, GRUR offers the following events to its members and other interested circles in Germany and abroad:At the Association\'s annual meetings national and international intellectual property issues are debated in speeches, podium discussions and symposia. The annual meetings are organised by different regional GRUR groups each year. They allow participants to broaden their specialist knowledge, to participate in discussions and to meet with friends and colleagues.The regional groups hold - usually monthly - meetings with lectures and discussions on current problems and developments.In cooperation with the \"DeutscheAnwaltAkademie\" of the German Bar Association (Deutscher Anwaltsverein) and the German Chamber of Patent Attorneys (Patentanwaltskammer), training seminars held by experienced judges, lawyers, administrative officials and acad emics are offered.Special courses are held for lawyers wishing to qualify as specialists in intellectual property law.Every one or two years GRUR holds the workshop \"GRUR meets Brussels\" for an exchange of views with representatives of the European Commission, the European Parliament and interested circles on issues of European law.','national;European;global','AUSTRIA;BELGIUM;FRANCE;GERMANY;GREECE;IRELAND;ITALY;LUXEMBOURG;MALTA;NETHERLANDS;PORTUGAL;SPAIN;SWEDEN;UNITED KINGDOM','','','01/2013\r\n - \r\n 12/2013','The German Association for the Protection of Intellectual Property (GRUR), founded in 1891, is the largest and oldest association in Germany that is devoted to the protection of intellectual property.MembersMembers of the GRUR Association are German and foreign individuals - lawyers, patent attorneys, judges, academics, professors, as well as enterprises, associations of enterprises and their respective staff members and representatives. Staff members of the German and European trademark and patent authorities and of the international organisations competent for the protection of intellectual property are also among the members. GRUR has remained an organisation constantly attracting new members, due to the broad scope and the constant high quality of its activities. In 2013 approximately 5,300 natural and legal persons were GRUR members, including a considerable and increasing number of foreign persons.The members are organised in seven domestic regional groups and working groups.Working MethodsGRUR discusses issues of intellectual property protection at annual meetings, monthly events at the regional groups and in academic publications, thus contributing to the academic discussion and further development of this area of law, while at the same time enhancing the knowledge of its members. Assistance provided to the national, European and international legislative bodies and to the authorities competent for issues of intellectual property protection remains a major part of the activities. In contact with national and international associations and organisations devoted to the same or a similar subject matter, GRUR participates in the discussion of current issues and developments in the field of intellectual property. GRUR does not pursue personal, professional or commercial interests, but exclusively and directly academic objectives of a non-profit nature.New ChallengesThe protection of intellectual property rights is gaining in significance. Whereas 50 years ago real property, machinery and material goods formed the major part of the assets of an enterprise, these are now determined increasingly by elements of intellectual property. The globalisation of the economy generates a need for appropriate global protection.GRUR has responded to these developments and established a position for \"international affairs\" in its secretariat in 2004, the aim being to develop the international engagement of the Association and to present itself as a discussion partner to the competent international authorities, particularly the European Commission, WIPO, the European Union\'s Trade Marks and Designs Office (OHIM) and the European Patent Office (EPO).PublicationsSince its foundation over 100 years ago the Association has published the renowned monthly professional journal \"Gewerblicher Rechtsschutz und Urheberrecht\", also abbreviated as \"GRUR\", which was supplemented in 1953 by the monthly journal \"GRUR International.\"The case law report \"GRUR-RR\" has been published since 2001, and since 1967 a series of monographs under the title \"GRUR Abhandlungen\". The publications include academic contributions on issues of German, European and international intellectual property law as well as significant case law and legislative material. Since the covers of the printed publications are in a distinctive green, for several decades now the names \"Grüne Zeitschriften\" (\"Green Journals\") and \"Grüner Verein\" (\"Green Association\") have become the commonly used names of the publications and the Association itself. Furthermore, the platform \"Beck-Online\" enables electronic access to all journals, which are also available on CD-ROM and DVD. Further information can be found under journals.Financial SupportGRUR maintains an academic fund which provides financial aid to selected university chairs and research projects, among other things by granting fellowships.','11 Konrad-Adenauer-Ufer \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Cologne 50668\r\n GERMANY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Manager International Affairs','German Association for the Protection of Intellectual Property','','5,300','','','051800211149-90','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=051800211149-90','15/05/13 15:44:49','2014-12-03T06:54:45.147733','(+49) 22165065151','18/04/14 11:15:36','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(37,'other','./contribution_xHInjGd.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(38,'other','./contribution_34KQhx8.pdf','New ChallengesThe protection of intellectual property rights is gaining in significance. Whereas 50 years ago real property, machinery and material goods formed the major part of the assets of an enterprise, these are now determined increasingly by elements of intellectual property. The globalisation of the economy generates a need for appropriate global protection.GRUR has responded to these developments and established a position for \"international affairs\" in its secretariat in 2004, the aim being to develop the international engagement of the Association and to present itself as a discussion partner to the competent international authorities, particularly the European Commission, WIPO, the European Union\'s Trade Marks and Designs Office (OHIM) and the European Patent Office (EPO).In the course of this \"internationalisation\" of the Association, GRUR was granted the status of an observer at WIPO in 2005, participating since then in meetings of the competent committees of this important organisation. Since 2006 GRUR is a member of the \"Users\' Group\" of OHIM, participates in hearings of the EU Commission, organises since 2005 the \"GRUR meets Brussels\" workshop in Brussels, and is also engaged in an exchange of views and cooperation with European and international sister organisations. In order to enhance the professional academic exchange of views, GRUR takes part in international conferences and meetings, also inviting foreign speakers and guests to its own events. The working programme of the annual meetings also regularly includes international subjects. To this end German-English simultaneous interpretation has been made available to foreign participants since 2008.Professional EventsFor the purpose of information and legal education, GRUR offers the following events to its members and other interested circles in Germany and abroad:At the Association\'s annual meetings national and international intellectual property issues are debated in speeches, podium discussions and symposia. The annual meetings are organised by different regional GRUR groups each year. They allow participants to broaden their specialist knowledge, to participate in discussions and to meet with friends and colleagues.The regional groups hold - usually monthly - meetings with lectures and discussions on current problems and developments.In cooperation with the \"DeutscheAnwaltAkademie\" of the German Bar Association (Deutscher Anwaltsverein) and the German Chamber of Patent Attorneys (Patentanwaltskammer), training seminars held by experienced judges, lawyers, administrative officials and acad emics are offered.Special courses are held for lawyers wishing to qualify as specialists in intellectual property law.Every one or two years GRUR holds the workshop \"GRUR meets Brussels\" for an exchange of views with representatives of the European Commission, the European Parliament and interested circles on issues of European law.','national;European;global','AUSTRIA;BELGIUM;FRANCE;GERMANY;GREECE;IRELAND;ITALY;LUXEMBOURG;MALTA;NETHERLANDS;PORTUGAL;SPAIN;SWEDEN;UNITED KINGDOM','','','01/2013\r\n - \r\n 12/2013','The German Association for the Protection of Intellectual Property (GRUR), founded in 1891, is the largest and oldest association in Germany that is devoted to the protection of intellectual property.MembersMembers of the GRUR Association are German and foreign individuals - lawyers, patent attorneys, judges, academics, professors, as well as enterprises, associations of enterprises and their respective staff members and representatives. Staff members of the German and European trademark and patent authorities and of the international organisations competent for the protection of intellectual property are also among the members. GRUR has remained an organisation constantly attracting new members, due to the broad scope and the constant high quality of its activities. In 2013 approximately 5,300 natural and legal persons were GRUR members, including a considerable and increasing number of foreign persons.The members are organised in seven domestic regional groups and working groups.Working MethodsGRUR discusses issues of intellectual property protection at annual meetings, monthly events at the regional groups and in academic publications, thus contributing to the academic discussion and further development of this area of law, while at the same time enhancing the knowledge of its members. Assistance provided to the national, European and international legislative bodies and to the authorities competent for issues of intellectual property protection remains a major part of the activities. In contact with national and international associations and organisations devoted to the same or a similar subject matter, GRUR participates in the discussion of current issues and developments in the field of intellectual property. GRUR does not pursue personal, professional or commercial interests, but exclusively and directly academic objectives of a non-profit nature.New ChallengesThe protection of intellectual property rights is gaining in significance. Whereas 50 years ago real property, machinery and material goods formed the major part of the assets of an enterprise, these are now determined increasingly by elements of intellectual property. The globalisation of the economy generates a need for appropriate global protection.GRUR has responded to these developments and established a position for \"international affairs\" in its secretariat in 2004, the aim being to develop the international engagement of the Association and to present itself as a discussion partner to the competent international authorities, particularly the European Commission, WIPO, the European Union\'s Trade Marks and Designs Office (OHIM) and the European Patent Office (EPO).PublicationsSince its foundation over 100 years ago the Association has published the renowned monthly professional journal \"Gewerblicher Rechtsschutz und Urheberrecht\", also abbreviated as \"GRUR\", which was supplemented in 1953 by the monthly journal \"GRUR International.\"The case law report \"GRUR-RR\" has been published since 2001, and since 1967 a series of monographs under the title \"GRUR Abhandlungen\". The publications include academic contributions on issues of German, European and international intellectual property law as well as significant case law and legislative material. Since the covers of the printed publications are in a distinctive green, for several decades now the names \"Grüne Zeitschriften\" (\"Green Journals\") and \"Grüner Verein\" (\"Green Association\") have become the commonly used names of the publications and the Association itself. Furthermore, the platform \"Beck-Online\" enables electronic access to all journals, which are also available on CD-ROM and DVD. Further information can be found under journals.Financial SupportGRUR maintains an academic fund which provides financial aid to selected university chairs and research projects, among other things by granting fellowships.','11 Konrad-Adenauer-Ufer \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Cologne 50668\r\n GERMANY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Manager International Affairs','German Association for the Protection of Intellectual Property','','5,300','','','051800211149-90','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=051800211149-90','15/05/13 15:44:49','2014-12-03T06:54:45.147733','(+49) 22165065151','18/04/14 11:15:36','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(39,'other','./contribution_dRjvxxc.pdf','PPL licenses on behalf of performers and record companies and provides vital revenue for music and for investment in future creativity and innovation. We are engaged in any issue at European level which affects the licensing of recorded music. PPL aims to work closely with the EU institutions towards a legal and regulatory framework in which artists, session musicians and record producers can receive a fair reward for their work.','global',NULL,'','','01/2013\r\n - \r\n 01/2014','PPL is the UK-based music licensing company which licenses recorded music to be played in public or broadcast (including online). Established in 1934, PPL carries out this role on behalf of its tens of thousands of record company and performer members.PPL licenses hundreds of thousands of businesses and organisations from all sectors across the UK, Channel Islands and Isle of Man who play recorded music to their staff or customers and who therefore require a licence by law. These can range from pubs, bars, nightclubs and hotels to shops, offices, factories, gyms, schools, universities and local authorities. PPL also licenses music service providers to copy recorded music for services such as in-store music systems, jukeboxes, fitness compilations and in-flight entertainment systems.PPL also operates an International service, used by many of its members. Through over 65 agreements with music licensing companies globally, PPL is able to collect licensing revenue from the use of its members’ recorded music around the world. Under these agreements with other music licensing companies, PPL also acts on behalf of their members to collect their UK licensing revenue. After the deduction of PPL’s operating costs, the revenue collected by PPL is distributed to its members based on information about the music used by licensees and the data contained in the PPL Repertoire Database, which holds the details of the millions of recorded music tracks covered by PPL’s licences. PPL has a large and diverse membership. Members include major record companies and globally successful performers, as well as many independent record companies, sole traders, session musicians and emerging artists – all of whom are legally entitled to be fairly paid for the use of their work.','1 Upper James St \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London W1F 9DE\r\n UNITED KINGDOM','','II - In-house lobbyists and trade/professional associations','Companies & groups','Director of Legal & Business Affairs','Phonographic Performance Limited','',NULL,NULL,NULL,'20379155588-27','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=20379155588-27','31/03/11 19:39:05','2014-12-03T07:41:32.680387','(+44) 2075341000','28/03/14 19:10:20','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(40,'other','./contribution_ax3qXJz.pdf','MARQUES is an accredited organization before the OHIM – Office for Harmonization in the Internal Market, appointed observer at the ABBC – the Administrative Board and Budget Committee, an official non-governmental observer at WIPO - World Intellectual Property Organization and a registered interest representative association at the European Commission. MARQUES has been attentively active in promoting the knowledge of the European Commission\'s initiatives on IPRs matters amongst its membership, and has continued relations with the Commission to whom it has provided consistent contributions upon public consultations or specifically demanded consultations.MARQUES is actively promoting the dialogue between the brand owners it represents and the national, regional and international trademark institutions. To this purpose MARQUES promotes and organizes itself or takes part to the following initiatives: Regular seminars and worshops on main IPR topics Regular intermediate and annual conferences for the membership with full professional programmes on IPR matters, notably trade marks Participation to the OHIM Administrative Board and Budget Committee meetings Participation to the Cooperation Fund and Convergence Programme projects as developed by the OHIM Participation to the meetings of the Observatory on the Infringements of IPRs Participation to the joint meetings with the sister organisations APRAM, BMM, ECTA, GRUR, ITMA and UNION Participation to the initiatives of other IPR organisations, such as AIM, BUSINESSEUROPE, INTA, ICC-BASCAP, GACG, ASIPI, AIPPI, etc. Participation to the WIPO Working Group meetings on the Madrid System, the SCT meetings on the law of trademarks, the meetings on international industrial designs under the Hague system and on geographical indications under the Lisbon Agreement Participation to the consultations on the EU Commission’s Study on the European trademark systems: MARQUES created an Ad Hoc \"Study Task Force\". The Study Task Force completed and submitted comments to the MPI Report on 6 May 2011. Cf.: http://www.marques.org/EuropeanCommissionStudy/ Organisation of the meetings with the CTM national judges: the meetings with CTM national judges are organized once a year, in the EU jurisdictions. The first was held in Spain in 2008, the second in Italy in 2009 and the third was organized in Germany on December 2010. In 2011 the meeting was repeated in Germany and run in The Netherlands and in the UK. In 2012 similar events will be held in Spain and in Italy. Participation to the Commission\'s initiatives of the bilateral IPR Dialogues. Participation to the Commission\'s consultations on the draft customs enforcement regulation, the review of the Enforcement Directive and on the review of the Tobacco Directive with respect to the envisaged introduction of plain packaging policies.','European;global',NULL,'Provisional figures ending 31/3/2014 (still subject to auditors\' review)Income - Euro 2,404,000Expenditure Euro 2,281,000Profit Euro 120,000','Contact details of MARQUES Company\'s SecretaryAlan Ramsey, Esq.info@marques.orgContact details of MARQUES External Relations Officer:Ms. Alessandra Romeoaromeo@marques.org+39 011 8392920+39 335 487251','03/2013\r\n - \r\n 03/2014','MARQUES is a European association representing brand owners\' interests worldwide. Established in 1986 and later incorporated in the United Kingdom as a not for profit company limited by guarantee, MARQUES unites Europe’s and International brand owners across all product sectors to address issues associated with use, protection and value of intellectual property rights as these are vital to innovation, growth and job creation, which ultimately enhance internal markets. Its membership includes brand owners and IP professionals in more than 80 countries. MARQUES is at the forefront of all those institutional and policy-making processes that lead to reform of IP legislation and practice. MARQUES aims to:• be a trusted voice for brand owners• educate in the field of management and exploitation of IP rights;• promote the professional development of our members; and,• be a reliable partner in advancing these aims.An important objective of MARQUES is to safeguard the interests of the public by ensuring the proper protection of trademarks and of all IP rights in general, and to safeguard the interests of IPR proprietors with regard to the regime of IPR protection. MARQUES attempts to achieve this objective by advancing the cause of the trade mark and IPR laws which protect the public from deception and confusion.MARQUES is an accredited organization before the OHIM – Office for Harmonization in the Internal Market, appointed observer at the OHIM’s ABBC – the Administrative Board and Budget Committee, an official non-governmental observer at WIPO - World Intellectual Property Organization and a registered interest representative organization (ID number 97131823590-44) in the “Transparency register” set up by the European Parliament and the Commission, which extends and replaces the former “Register of interest representatives” opened by the Commission in 2008.More information about the Association, its activities and upcoming events is available at www.marques.org.','000 Unit Q, Troon Way Business Centre Humberstone Lane, Thurmaston\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Leicester LE4 9HA\r\n UNITED KINGDOM','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','External Relations Officer','MARQUES','A member of the European Sister Associations networkA member of the GACG - Global Anti-Counterfeiting Networkhttp://www.gacg.org/ Party to the ICC-BASCAP anti-counterfeiting/piracy organization leaders group activities',NULL,NULL,NULL,'97131823590-44','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=97131823590-44','16/05/10 20:04:45','2014-12-03T07:40:40.316575','(+44116) 274 7355','23/04/14 16:18:17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(41,'other','./contribution_KjJGL4T.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(42,'other','./contribution_zjggruy.pdf','- Consultarile deschise de observatorul pentru armonizarea pieței interne','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Asociaţia Editorilor din România este o persoană juridică de drept privat, fără scop patrimonial, neguvernamentală şi apolitică, ce funcţionează în temeiul O.G. nr. 26/2000 și al Legii nr. 356/2001, privind patronatul. Asociaţia Editorilor din România este o organizaţie profesională și patronală a persoanelor juridice înmatriculate sau a persoanelor fizice autorizate potrivit legii, care au ca activitate producţia, difuzarea şi promovarea culturii scrise şi a cărţii şcolare.Asociaţia Editorilor din România reprezintă, susține și apără interesele membrilor lor în relațiile cu autoritățile publice, cu sindicatele și cu alte persoane juridice și fizice, în raport cu obiectul și scopul lor de activitate, atât în plan național, cât și internațional, potrivit propriilor statute și în acord cu prevederile legii.Asociaţia este însărcinată să vegheze la justa concurenţă între editori, să analizeze şi să facă cunoscută editarea românească de carte, să promoveze noile tehnologii în acest sector, să promoveze editarea de carte românească.Asociaţia îşi propune în mod special să promoveze lectura de carte de calitate şi scrisul, să uşureze accesul cititorilor la carte din punct de vedere material şi informaţional, contribuind astfel la o liberă circulaţie a ideilor, precum şi la integrarea culturii şi limbii române în circuitul mondial de valori.Nu în ultimul rând, Asociaţia Editorilor din România urmăreşte instituirea unei strategii naţionale a creaţiei, editării, comercializării, difuzării şi promovării cărţii româneşti, prin medierea unei relaţii permanente şi constructive dintre editorii de carte şi Stat.','18 Soseaua Nicolae Titulescu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bucuresti 011142\r\n ROMANIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director executiv','Asociația Editorilor din Romania','AER este membră a Federației Editorilor din Europa, prin intermediul Federației Editorilor din România.',NULL,NULL,NULL,'937956012628-94','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=937956012628-94','15/01/14 15:00:58','2014-12-03T07:23:20.446799','(+40) 213110650','15/01/14 15:08:39','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(43,'other','./contribution_hCyxvg3.pdf','La Federación de Cines de España es el interlocutor válido con la Administración Pública Española y en representación de todos los empresarios de exhibición, para consultas a nuevos proyectos legislativos, normativas, procesos de cambio sectoriales, etc...','national',NULL,'','La Federación de Cines de España (FECE) está representada en Bruselas a través de la Asociación Europea de Exhibidores (UNIC). Datos de contacto de UNIC:Jan Runge, CEOAv. des Arts 10-11 boîte 11 | 1210 Brussels (Saint-Josse-ten-Noode) | BelgiumT +32 2 8809939 | M +32 485 469 203jrunge@unic-cinemas.org | www.unic-cinemas.org','01/2013\r\n - \r\n 12/2013','La Federación de Cines de España (FECE) es una asociación profesional sin animo de lucro que agrupa a los empresarios de salas de exhibición de toda España, con una representación próxima al 90% del total. Los OBJETIVOS de esta Federación son: - Fomentar la asistencia a salas de cine. - Posicionar a las salas de cine como el lugar natural para ver una película resaltando sus fortalezas - Crear un modelo sostenible de transición al digital para todas las salas. - Defensa y compromiso con el cine español, como un miembro más de la Industria Cinematográfica Española. - Lucha contra la piratería audiovisual) - Trabajar junto al resto de asociaciones y organismos representativos de la Industria del Cine para la creación de un frente de unidad de actuación en defensa de intereses comunes - Crear una corriente de noticias positivas sobre la Industria del Cine en general y sobre las salas de cine en particular, en los medios de comunicación. - Participación en los principales foros de la industria tanto a nivel nacional como internacional. Por otro lado, las FUNCIONES de FECE son: - La defensa corporativa de sus Asociados. - Promover y defender la unidad de los empresarios de cine. - Facilitar e impulsar la mejora permanente de las condiciones en las que se desarrolla la actividad de sus miembros. - Desarrollar una estructura asociativa empresarial que responda eficazmente a las necesidades de sus miembros. - Representar, gestionar y defender los intereses generales y comunes de sus miembros ante la Administración y los distintos organismos tanto nacionales como internacionales.','9 CAMPOAMOR \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n MADRID 28004\r\n SPAIN','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','PRESIDENTE','FEDERACION DE CINES DE ESPAÑA','La Federación de Cines de España es miembro en España de la Confederacion Española de Organizaciones Empresariales (CEOE). A nivel Europeo, FECE es miembro de la UNIC (International Union of Cinemas) ocupando una de las dos Vicepresidencias; y también es socio de la organización MEDIA SALLES.',NULL,NULL,NULL,'39137934367-48','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=39137934367-48','19/10/10 11:38:15','2014-12-03T07:28:25.634495','(+34) 91 319 22 92','06/10/14 11:45:08','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(44,'other','./contribution_KZsWiXF.pdf','Advanced ManufacturingAktuelle EU-FTA-Verhandlungen (TTIP etc.)BeihilfenBetter RegulationBrancheninitiative ELECTRA / ELECTRA 2Connecting Europe FacilityCorporate Social Responsibility (CSR)CybersecurityDatenschutzDigitale AgendaeHealth/ TelemedizinElektroaltgeräte-Richtlinie/ WEEEElektromobilitätElektronikstrategie für Mikro- und NanoelektrikEnergie- und Klimarahmen 2030EnergiebinnenmarktEnergieeffizienzEnergieinfrastrukturen/ Smart GridEnergieverbrauchskennzeichnungsrichtlinieEntwicklungskooperation und Erschließung neuer MärkteEU-Forschungs- und EntwicklungspolitikEU-HandelspolitikEU-IndustriepolitikEU-Innovationspolitik und F&E-Förderung (JTIs und PPP)EU-KaufrechtEU-Klimaschutz- und EnergiepolitikEU-Mitteilungen im Bereich EnergiepolitikEuropa 2020EU-UmweltpolitikGrüne ProdukteHarmonisierung im BinnenmarktHorizon 2020Industrie 4.0Internet der DingeInvestitionsschutzKohäsionspolitikLeitmärkte/ neue TechnologienMarktüberwachungMarktzugangsfragenMedizinproduktegesetzgebungÖffentliches BeschaffungswesenÖkodesignrichtliniePatente und UrheberrechteProduktsicherheit REACHRegionalpolitikRessourceneffizienzRoHSSchlüsseltechnologien (KETs)SET-PlanSingle Market ActSmart CitiesStandardisierung/ NormungTechnische RichtlinienTrade Defence InstrumentsTransatlantic Economic Council (TEC)Trans-European Transport Network (TEN-T)Transparenzinitiativen bei RohstoffenTTIPVerbraucherschutz/ SammelklagenWHO Doha-RundeZoll-Aktionsprogrammetc.','sub-national;national;European;global',NULL,'Der ZVEI finanziert sich durch die Beiträge seiner mehr als 1.600 Mitglieder. Die jeweilige Beitragshöhe ist in einer von der Mitgliederversammlung verabschiedeten Beitragsordnung geregelt. Die Mitgliedschaft im ZVEI ist freiwillig.','ZVEI European OfficeRue du Commerce 31B-1000 BrüsselTel: 0032/ 2892 4615Fax: 0032/ 2892 4629','01/2013\r\n - \r\n 12/2013','Der ZVEI vertritt die wirtschafts-, technologie- und umweltpolitischen Interessen der deutschen Elektroindustrie auf nationaler, europäischer und internationaler Ebene. Er informiert gezielt über die wirtschaftlichen, technischen und rechtlichen Rahmenbedingungen für die Elektroindustrie in Deutschland.Der ZVEI vertritt seine mehr als 1.600 Mitgliedsunternehmen und deren 840.000 Beschäftigte in Deutschland. Er repräsentiert die zweitgrößte Branche Deutschlands mit einem globalen Exportvolumen von 167 Mrd. Euro in 2013. Die ZVEI-Branche ist eine der innovativsten Wirtschaftszweige in Europa. Der ZVEI fördert die Entwicklung und den Einsatz von Innovationen durch Vorschläge zur Industrie-, Forschungs-,Technologie-, Klimaschutz-, Energie-, Umweltschutz-, Handels-, Bildungs- und Wissenschaftspolitik. Er unterstützt eine marktbezogene, internationale Normungs- und Standardisierungsarbeit.Grundlage der Verbandsarbeit ist der Erfahrungs- und Meinungsaustausch zwischen den Mitgliedern über aktuelle technische, wirtschaftliche, rechtliche und gesellschaftspolitische Themen im Umfeld der Elektroindustrie. Hieraus werden gemeinsame Positionen erarbeitet.','9 Lyoner Straße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Frankfurt am Main 60528\r\n GERMANY','450000\r\n € - 500000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Leiter European Affairs','Zentralverband Elektrotechnik- und Elektronikindustrie e.V.','BDIBIAC/ OECDBUSINESSEUROPECAPIELCECAPICECEDCELMACEMEPCLEPACOCIRDIGITALEUROPEDIHKEECA-ESIA-EPCIAENTSO-EEPBAEPCEPCIAEPTAETSIEURALARMEURELECTRICEUROBATEUROPACABLEEUROPEAN FORUM FOR MANUFACTURING (EFM)EUROPELECTRO CHINAFRIENDS OF EUROPEGESALIGHTINGEUROPEORGALIMESME UNIONT&D Europeetc.',NULL,NULL,NULL,'94770746469-09','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=94770746469-09','24/08/11 13:55:22','2014-12-03T06:59:34.523884','(+49 69) 6302 0','30/07/14 09:22:45','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(45,'other','./contribution_SrQFVSJ.pdf','European Commission consultations on the future of European copyright law','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','Stowarzyszenie Dystrybutorów Filmowych (Association of Film Distributors) was established to support and develop good condtitions of the film distribution in Poland. It was set up in 2002. Ordinary members of SDF are natural persons which actively work in the field of film distribution. Supportive members of SDF are film industry entities (Imperial Cinepix, ITI Cinema, Warner Bros., United International Pictures, Galapagos, TIM). SDF represents interests of film distributors before public authorities, administrative bodies, non-governmental organisations and other institutions. SDF actively participates in proceedings before the Copyright Commission (a Polish body responsible for approval of tables of remuneration for the use of works and objects of related rights for certain entitled parties collected by copyright collective management societies). SDF regularly contributes to public consultations regarding changes in areas of law related to audiovisual content distribution.','61 Wołodyjowskiego \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Warsaw 02-724\r\n POLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','legal advisor','Stowarzyszenie Dystrybutorów Filmowych (Association of Film Distributors)','',NULL,NULL,NULL,'932167313124-35','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=932167313124-35','05/03/14 18:20:25','2014-12-03T07:21:36.167759','(+48) 228580404','05/03/14 18:21:38','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(46,'other','./contribution_Beq7Dm5.pdf','Der WKÖ obliegt die Vertretung der gemeinsamen wirtschaftlichen und rechtlichen Interessen ihrer Mitglieder. Gemäß § 31(3)Z 2 WKG hat sie diese Interessen in und gegenüber der Europäischen Union zu vertreten. Sie ist daher in allen Angelegenheiten aktiv, die von Relevanz für die österreichische Wirtschaft sind.','sub-national;national;European;global',NULL,'Die Finanzierung erfolgt durch Umlagen. Diese sind von den Mitgliedern nach Maßgabe des Wirtschaftskammergesetzes 1998 (WKG) zu entrichten.','EU-Büro der Wirtschaftskammer Österreich Ständige Vertretung Österreichs bei der EU Avenue de Cortenbergh 30 1040 Brüssel BelgienTel.: +32 2 286 58 80 Fax: +32 2 286 58 99 E-Mail: eu@eu.austria.be Website: http://wko.at/eu','01/2012\r\n - \r\n 12/2012','Die Wirtschaftskammer Österreich (WKÖ) ist die gesetzliche Interessenvertretung des überwiegenden Teils der österreichischen Wirtschaft. Sie vertritt die Interessen von rund 400.000 österreichischen Unternehmen aus allen Sektoren (Industrie, Gewerbe und Handwerk, Handel, Banken und Versicherungen, Verkehr, Tourismus und Freizeitwirtschaft, Information und Consulting). Die WKÖ ist eine als Selbstverwaltungskörper eingerichtete Körperschaft öffentlichen Rechts mit Pflichtmitgliedschaft. Die WKÖ ist Sozialpartner auf nationaler Ebene und über ihren Dachverband UEAPME auch im Europäischen Sozialen Dialog vertreten.','63 Wiedner Hauptstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1045\r\n AUSTRIA','900000\r\n € - 1000000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Leiter EU-Büro der WKÖ','Wirtschaftskammer Österreich','Die WKÖ ist Mitglied bei folgenden europäischen Wirtschaftsdachverbänden:- EUROCHAMBRES- EuroCommerce- UEAPME',NULL,NULL,NULL,'10405322962-08','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=10405322962-08','07/01/10 14:04:27','2014-12-03T06:07:28.091173','(+43) 590900','08/01/14 09:00:47','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(47,'other','./contribution_BddRniR.pdf','None.','global',NULL,'In this development phase the organization pays only to the employees, not the CEO or the CFO, so the work done for example for the questionnaires is free for the organization.','','08/2012\r\n - \r\n 07/2013','We are managing a platform for independent audiovisual content producers and sales agents which makes the global sales directly to the consumers easier by lowering marketing costs and helping to take care of paying correctly both taxes and copyright licenses when the vendors and customers are located in different countries both inside and outside the EU. A functional music licensing process is the most important thing for our business.','5 Ryytimaantie \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00320\r\n FINLAND','0 €','II - In-house lobbyists and trade/professional associations','Companies & groups','CEO','Indie Film Revolution Ltd','',NULL,NULL,NULL,'948985013158-12','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=948985013158-12','04/03/14 14:21:42','2014-12-03T06:37:25.157971','(+358) 443713713','04/03/14 14:25:46','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(48,'other','./contribution_ln4jncr.pdf','The EFC’s “Fashion Europe” program of 157 activities is adopted in support of the “Europe2020” strategy and you can see that for the following link, here:http://ec.europa.eu/dgs/secretariat_general/eu2020/docs/european_fashion_council_en.pdfThe European Fashion Council was approved among 41 invited organizations as one of the 16 eligible organizations with official status in implementing the EU-UNESCO Convention on the protection and promotion of the diversity of cultural expressions:http://ec.europa.eu/culture/our-policy-development/documents/ec-staff-working-doc_en.pdf(Pages 73-74 for European Fashion Council as eligible organisation)(Pages 100-105 for European Fashion Council worldwide program by EU-UNESCO-UN)Moreover, much other active participation, the last one of which was regarding the long-term financing of the European economy, where we received great recognition of the conceptual ideas that we proposed like connection fashion and sport, also new “Creative Europe 2014-2020” program: http://ec.europa.eu/culture/our-programmes-and-actions/consultation/programme/EU_org/A-901-OE-EU_fashion_Council_BG.pdfAnd also the last contribution of the European Fashion Council to the Consultation on the Green paper on the long-term financing of the European Economy:http://ec.europa.eu/internal_market/consultations/2013/long-term-financing/docs/contributions/registered-organisations/european-fashion-council_en.pdf','sub-national;national;European;global','AUSTRIA;BELGIUM;BULGARIA;CZECH REPUBLIC;DENMARK;ESTONIA;HUNGARY;LATVIA;MALTA;NETHERLANDS;PORTUGAL;ROMANIA;SWEDEN;ALBANIA;ARMENIA;BOSNIA-HERZEGOVINA;ICELAND;MACEDONIA, FORMER YUGOSLAV REPUBLIC OF;MONTENEGRO;NORWAY;SERBIA;UKRAINE','The discrepancy between the EFC total budget (1,900 €) and the budget declared under: \"Estimated costs to the organisation directly related to representing interests to EU institutions in that year\" ( < 50 000 €) is due to the fact that we include in the calculations expenses incurred by the EFC members as they are not registered themselves in the Transparency Register.','1.AUSTRIA: The national representative in the EFC is under re-structuring processes, E-mail: austria@europeanfashioncouncil.eu forwards to the EFC Chairman e-mail2.BELGIUM: The national representative in the EFC is under re-structuring processes, E-mail: belgium@europeanfashioncouncil.eu forwards to the EFC Chairman e-mail3.BULGARIA: the National Fashion Chamber of Bulgaria, 51 Kn. Al.I Battenberg str., 4000 Plovdiv, E-mail: bulgaria@europeanfashioncouncil.eu4.CZECH REPUBLIC: the National Fashion Chamber of Czech Republic, Sevřená 1621/10, 140 00, Praha-4, E-mail: czechrepublic@europeanfashioncouncil.eu5.DENMARK: Denmark Fashion Tomorrow management, 19.4 Skindergade, 1159 Copenhagen K, E-mail: denmark@europeanfashioncouncil.eu6.ESTONIA: The national representative in the EFC is under re-structuring processes, E-mail: estonia@europeanfashioncouncil.eu forwards to the EFC Chairman e-mail7.HUNGARY: The national representative in the EFC is under re-structuring processes, E-mail: hungary@europeanfashioncouncil.eu forwards to the EFC Chairman e-mail8.LATVIA: Baltic Fashion Federation, Stabu 19-301, Riga, LV 1011, E-mail: latvia@europeanfashioncouncil.eu9.MALTA: Association of the Malta National Fashion Awards, Sir Paul Boffa Avenue, Paola, E-mail: malta@europeanfashioncouncil.eu10.The NETHERLANDS: Europa Regina Organization, 14-3 Van Woustraat, 1073 LL Amsterdam, E-mail: netherlands@europeanfashioncouncil.eu11.PORTUGAL: Associação ModaLisboa, Rua do Arsenal, 251100-038 Lisboa, E-mail: portugal@europeanfashioncouncil.eu12.ROMANIA: The Research-Development National Institute for Textile and Leather, Lucretiu Patrascanu 16, sector 3, Bucharest, E-mail: romania@europeanfashioncouncil.eu13.SWEDEN: The national representative in the EFC is under re-structuring processes, E-mail: sweden@europeanfashioncouncil.eu forwards to the EFC Chairman e-mail14.ICELAND: Iceland Fashion Week Organization, E-mail: iceland@europeanfashioncouncil.eu15.NORWAY: The national representative in the EFC is under re-structuring processes, E-mail: norway@europeanfashioncouncil.eu forwards to the EFC Chairman e-mail16.ALBANIA: Albanian Fashion Designers Association, Rr. Asim Vokshi, Pall. 134\\1 Tirana, E-mail: albania@europeanfashioncouncil.eu17.ARMENIA: Armenian Fashion Council, 4 Byron str., #2, Yerevan 0009, E-mail: armenia@europeanfashioncouncil.eu18.BOSNIA&HERZEGOVINA: Saraewo Fashion Week SFW Studio Fashion Organization, 16 Envera Sehovica, Sarajevo, E-mail: bih@europeanfashioncouncil.eu19.F.Y.R. MACEDONIA: Macedonian Fashion Association \"Concept Fashion Cluster\", Makedonija Str. No. 19, 1000 Skopje, FYROM, E-mail: f.y.r.macedonia@europeanfashioncouncil.eu20.MONTENEGRO: National Fashion Chamber of Montenegro, Piperska 370 lllul, 29s, Podgorica, Montenegro, E-mail: montenegro@europeanfashioncouncil.eu21.SERBIA: the National Fashion Chamber of Serbia, Bulevar Cara Lazara 79b, Novi Sad 21000, Serbia, E-mail: serbia@europeanfashioncouncil.eu 22.UKRAINE: Ukrainian Fashion Council, Post:a.29, 1\\3, Desiatynna str., Kyiv 01025, E-mail: ukraine@europeanfashioncouncil.eu','01/2013\r\n - \r\n 12/2013','Putting design in the European society as major important, because of it is cultural and economical importance; Preparing, accepting and observing of the Ethical Code and with it and its activity to be an example for integration, tolerance and cooperation; Holding conversations with politicians from the participating countries for popularizing, support and establishment of the fashion art on European level; Placing the organization as an institutional structure of the European Commission and the business structures of the European Union, supporting the fashion design and everything related to it; Building entirely of the European Fashion Council (ЕFC) with the participation of all Member States of the European Union and the rest of the European countries; Building of a European Lobby Structure in support of the fashion design and the activities related to it; Building of European Maecenas Lodge in support of the Fashion design and the Design as a whole. Development of the cooperation entirely between the business circles of the represented countries, and also with the business circles of third parties, working not only in the field of fashion and fashion design. Acting as a representative of the fashion business community of the Member States in front of other similar international organizations or unions. Exchanging and joint implementation of ideas, events, initiatives of the organizations from the founder countries, on license of the respective country and author. Extending the possibilities for representing the respective countries in cultural and economic aspect.To achieve its goals, the EFC: 1)Examines its legal acts and the economic situation in the different countries, the touching points between them, and also the trends in its development; 2)Helps for the establishment of a climate, appropriate for cooperation between the companies in the represented countries, as also the development and the extension of such existing contacts between companies; 3)Organizes the cooperation between its members-Unions/Chambers/Сouncils/Аssociations through extension of the volume of the information’s exchange, through establishment of constant internal connection between the business data base and through establishment of constant contacts between the companies of the represented countries; 4)Assists the lobbying of the members in front of their official institutions with the goal acceptance of legal acts and appropriate economical decisions, which will stimulate the mutual benefit cooperation in the field of the fashion design and the activities related to it, production, commerce, services and finances; 5)Works with its own funds, funds from sponsors and funds, received on projects, as uses also the efforts of its members in direction of establishing and supporting of contacts between the companies in atmosphere of business cooperation and in terms of loyal competition; 6)Insists in front of the official institutions of the countries on facilitating the business visits from one to another country, as well as between the represented countries and for more useful journeys for the purposes of development of the economical cooperation; 7)Presents structural changes in the economics of the countries in accordance with the criteria and the standards of EU. 8)Assists the countries to solve their arguments by means of negotiations. If it is not reached within a reasonable term or if the countries don’t reach an agreement, to recommend the solution of the argument through arbitrary or the argument to be transferred in front of the Arbiter court in the country of the defendant or of the represented countries. The Members of the ЕFС have to be informed about the possibility for Arbiter court. 9)Prepares and manages a representative Internet website of the organization: www.europeanfashioncouncil.eu 10)Accepts distinctive logo. 11)Defines the means and the ways for advertise','39 Knyaz Alexander I Battenberg street floor 2, office 7\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Plovdiv 4000\r\n BULGARIA','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Secretary-General','European Fashion Council','The 1st report of the EU-UNESCO Convention for protection and implementation of new forms of culture, namely fashion and fashion design such as a new form of world level is published in its final form. From 41 Organizations only 16 have been approved and between these 16 the European Fashion Council (EFC) is the only one eligible for fashion and fashion design on a global level. This is a tremendous recognition for all ideas of the \"Fashion Europe\" program, which is included and complemented by 127 activities to 157 outlets.http://ec.europa.eu/culture/our-policy-development/documents/ec-staff-working-doc_en.pdfPages 73-74 for European Fashion Council as eligible organisationPages 100-105 for European Fashion Council worldwide program by EU-UNESCO-UNEFC Facebook Page: http://www.facebook.com/europeanfashioncouncilEFC Program \"Fashion EUROPE\": http://www.facebook.com/ProgramFashionEuropeEuropean Fashion Rise contest: http://www.facebook.com/europeanfashionriseEuropean Job Bank: http://www.facebook.com/EuropeanJobBankEuropean Designers Exchange:http://www.facebook.com/EuropeanDesignersExchangeNapoleon Fashion Awards: http://www.facebook.com/napoleonfashionawards.eu','13,463','22','in re-structuring processes (Austria) (1 members);in re-structuring processes (Belgium) (3 members);National Fashion Chamber of Bulgaria (200 members);Denmark Fashion (100 members);in re-structuring processes (Estonia) (1 members);in re-structuring processes (Hungary) (1 members);Europa Regina (10,000 members);The National Research-Development Institute for Textile and Leather (150 members);in re-structuring processes (Norway) (1 members);Albanian Fashion Designers Assosiation (50 members);SFW Studio Fashion Saraewo (50 members);Iceland Fashion Week (50 members);Ukrainian Fashion Council (250 members);Malta National Fashion Awards (100 members);Armenian Fashion Council (60 members);Baltic Fashion Federation (200 members);National Fashion Chamber of Czech Republic (50 members);in re-structuring processes (Sweden) (1 members);National Fashion Chamber of Serbia (90 members);ModaLisboa Association (2,000 members);National Fashion Chamber of Montenegro (100 members);Macedonian Fashion Association \"Concept Fashion Cluster\" (5 members)','25337543032-09','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=25337543032-09','15/01/10 10:22:20','2014-12-03T06:32:10.252209','(+359) 32620929','13/10/14 17:07:21','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(49,'other','./contribution_UNuiGjY.pdf','European Digital AgendaEU 2020 StrategyIPR StrategyRadio Spectrum Policy ProgramCommission NGA Recommendation','European',NULL,'','','01/2012\r\n - \r\n 12/2012','Cable Europe is a trade asociation that groups all leading broadband cable TV operators and their national associations in Europe. The European TV industry provides digital TV, broadband Internet and telephony services to more than 70 million customers. In September 2006 the association changed its name from ECCA to Cable EUrope. The Association is active since 1955.','41 avenue des Arts \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bruxelles 1040\r\n BELGIUM','1,000,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Managing Director','Cable Europe','FAIBEuractivEIFCUP',NULL,NULL,NULL,'42178977290-80','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=42178977290-80','29/11/11 14:43:40','2014-12-03T06:10:56.944220','(+32) 25211763','15/10/14 10:30:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(50,'other','./contribution_1c5LJJ8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(51,'other','./contribution_B6Ajfyw.pdf','Letter to Competition DG, in support of proposed Video Games Tax Reliefs.Response to EU Green Paper, \'Preparing for a fully converged audiovisual world\'.Response to IPO (UK) consultation on Copyright Policy and Europe.Contribution to EU Commission\'s \'Licenses for Europe\' working group on cross-border access and portability of services.','national',NULL,'An audited copy of our accounts, and that of our sister company, \'B.S.A.C. Events ltd\', are available from Companies House (UK), company numbers:- British Screen Advisory Council: 03771572- B.S.A.C. Events ltd: 03446702','Postal address:BSAC14 Newburgh StreetLondonW1F 7RTUNITED KINGDOMEmail: bsac@bsacouncil.co.ukTelephone: +44(0)2072871111Website: www.bsac.uk.com','01/2013\r\n - \r\n 12/2013','The British Screen Advisory Council (BSAC) is an independent industry-funded body. It represents the audiovisual sector in the UK, including film, TV, games and new media, and serves as a unique forum for identifying new business trends and providing thought leadership to Government, policy makers and the audiovisual industries.BSAC brings together the widest range of UK interests, knowledge and contacts in the industry to provide an independent platform for the regular exchange of ideas and information.On Business Issues BSAC works closely with industry leaders and policy makers to provide an informed lead on emerging business trends.On Policy Issues BSAC helps the audiovisual industry, wherever possible, speak with a single and authoritative voice.','14 Newburgh Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London W1F 7RT\r\n UNITED KINGDOM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Chief Executive','British Screen Advisory Council','',NULL,NULL,NULL,'661038313177-42','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=661038313177-42','04/03/14 19:17:31','2014-12-03T07:36:25.569630','(+44) 2072871111','04/03/14 19:17:57','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(52,'other','./contribution_l4WKW8r.pdf','DGRI does not pursue any lobbying activities in the interest of any entity or organization. DGRI is an independent scientific association with charitable status, whose members are specializing as practitioners, professors or judges in the area of IT law; their common goal is to identify new topics in this area, to exchange their views on these issues and to promote the quality of law making and jurisdiction in IT law.','European','AUSTRIA;GERMANY;SWITZERLAND','','Address of President of DGRI:Dr. Anselm Brandi-DohrnPresident of DGRI e.V.c/o von Boetticher Hasse LohmannOranienstr. 164D-10969 BerlinTel.: +49-30-6168 9403Fax.: +49-30-6168 9456','01/2012\r\n - \r\n 12/2012','The German Association of Law and Informatics (Deutsche Gesellschaft für Recht und Informatik e.V., hereinafter: DGRI) is an independent registered association under German law with charitable status. As the leading think tank in Germany for IT law, DGRI addresses issues that lie at the interface between informatics and computer technology on the one hand, and the law and business, on the other hand. The objective of DGRI is to promote the interaction between academia, research and practice in the following areas: * Legal issues relating to the processing of information; * The use of information technology within the legal system; and * Shaping the legal framework conditions for information technology.Within its area of interest DGRI has been addressing for more than 30 years both academics and practitioners, seeking an exchange of knowledge, experiences and views. The information thus obtained is placed at the disposal of the DGRI members and other interested parties, and is also utilized in order to promote the legislative process and the quality of judicial decisions insofar as possible and appropriate.In order to fulfill these objectives DGRI has established Expert Committees where experts and interested parties regularly exchange their views on present issues within the area of the Association’s interest, in addition to developing and organizing both internal and public events. The Association also organizes public congresses, conferences, workshops and other events devoted to current themes within its area of interest.','17 c/o Vogel&Partner Rechtsanwälte Emmy-Noether-Straße\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Karlsruhe 76131\r\n GERMANY','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','President','Deutsche Gesellschaft für Recht und Informatik e.V.','DGRI is member - together with other national think tanks active throughout the world in the area of IT law - of IFCLA, the International Federation of Computer Law Associations:IFCLA is an international scientific association created in 1989.It contributes to the advancement of IT Law through 3 main missions:- creating scientific exchange about the development and legal, economic and social impact of IT law,- organizing meetings and forums on these topics,- coordinating actions of its members with the European institutions and the other international organizations concerned with IT law.IFCLA\'s members are National Associations involved in IT Law. Presently, 13 National Associations are taking part in the active mission of the IFCLA: Argentina, Belgium, Brazil, Canada, Denmark, Finland, France, Germany, the Netherlands, Norway, Portugal, Sweden and the United Kingdom.','800','','','21625424990-18','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=21625424990-18','14/01/11 11:50:32','2014-12-03T06:51:45.584778','(+49721) 78202729','03/01/14 13:36:27','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(53,'other','./contribution_TDSRmqJ.pdf','Digital Agenda and its objectivesThe Single Digital Market regulationFurther initiatives of the Juncker Commission','national;European',NULL,'','','06/2013\r\n - \r\n 06/2014','Since 1999, the year it was established in Milan, FASTWEB has invested over € 5 billion in a new-generation fiber optics network spanning more than 32,000 km. Today, TLC providers all over the world are promising NGNs, the super-fast new generation networks integrating voice, data, video and advanced services. At FASTWEB, this network is already a reality: by implementing the IP protocol on its alternative fiber optics network, FASTWEB provides a triple play offer, voice, data/Internet and video services, available simultaneously on a single connection, for residential and business clients. Today the fiber optocs network of FASTWEB is widest in Europe. FASTWEB has been the first company in the world to launch the IPTV service since 2001.The multiplatform digital decorder of FASTWEB allows customers to access to digital channels, to a wide library of contents always available through video-on-demand and to interactive services such as the catch up tv service. FASTWEB has also launched the first universal decoder for all current analog and digital TV contents, as well as support for High Definition content.With its flexible network architecture, FASTWEB is ready to meet the technological challenges of the future. Recent challenges include new advances in digital TV and fixed/mobile convergence. As of September 2008, FASTWEB became a mobile virtual network operator and launched its mobile voice and data service (Quadruple Play) revolutionizing its residential offer in order to make it even more convergent. With FASTWEB, users can make VoIP calls (Voice over IP) on their home phones, surf the Internet at the top access rate available today in Italy and simultaneously watch digital cable TV. In September 2010 and for the first time in Italy, FASTWEB launched the broadband connection up to 100 Mbit/s for residential customers and small enterprises in the cities of Milan, Rome, Genoa, Turin, Bologna, Naples and Bari. With FIBRA 100, FASTWEB has confirmed its technological leadership in broadband access in Italy.Our goal is customer satisfaction and providing Italy with a new fiber infrastructure.','51 Via Caracciolo \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Milano 20155\r\n ITALY','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Public Affairs Manager','Fastweb','ECTA - European Competitive Telecommunications Association',NULL,NULL,NULL,'58272867322-27','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=58272867322-27','01/12/11 14:43:29','2014-12-03T07:07:45.441011','(+39) 45451','04/11/14 12:33:06','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(54,'other','./contribution_yQxqHjW.pdf','- Proposal for a Regulation on a Common European Sales Law- Proposal for a Regulation on the Statute for a European Foundation','European','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ALBANIA;AUSTRALIA;BOSNIA-HERZEGOVINA;BRAZIL;CANADA;CHINA;COLOMBIA;INDIA;IRAN, ISLAMIC REPUBLIC OF;ISRAEL;JAPAN;MOLDOVA, REPUBLIC OF;MONTENEGRO;MOROCCO;NORWAY;RUSSIA, FEDERATION OF;SERBIA;SWITZERLAND;TURKEY;UKRAINE;UNITED STATES','The Secretariat/headquarters of the European Law Institute is hosted by the University of Vienna under a four-year contract (2011 - 2015) worth roughly 1 million euro. This money has not been transferred directly to the ELI, but rather the Secretariat can finance its staff and expenses through the University up to this amount. The expenses for the year 2013 paid from the University of Vienna for mainly staff, rent and other administrative costs amounts to 316,167.26 euro. The remaining University budget on 31/12/2013 amounted to 432,332.05 euro, which needs to cover the year 2014 as well as nine months of 2015.','secretariat@europeanlawinstitute.eu','01/2013\r\n - \r\n 12/2013','The European Law Institute (ELI) is an independent non-profit organisation established to initiate, conduct and facilitate research, make recommendations and provide practical guidance in the field of European legal development. Building on the wealth of diverse legal traditions, its mission is the quest for better law-making in Europe and the enhancement of European legal integration. By its endeavours, the ELI seeks to contribute to the formation of a more vigorous European legal community, integrating the achievements of the various legal cultures, endorsing the value of comparative knowledge, and taking a genuinely pan-European perspective. As such its work covers all branches of the law: substantive and procedural; private and public. Among ELI’s core tasks are: to evaluate and stimulate the development of EU law, legal policy and practice, and in particular to make proposals for the further development of the acquis and for the enhancement of EU law implementation by the Member States;to identify and analyse legal developments in areas within the competence of Member States which are relevant at EU level;to study EU approaches regarding international law and enhance the role EU law could play globally, for instance in drafting international instruments or model rules; to conduct and facilitate pan-European research, in particular to draft, evaluate or improve principles and rules which are common to the European legal systems; andto provide a forum for discussion and cooperation between jurists (irrespective of their vocation or occupation), inter alia academics, judges, lawyers and other legal professionals, who take an active interest in European legal development and together represent a broad range of legal traditions.To accomplish its tasks, the ELI operates on its own initiative. It is also, however, available for consultation with institutions involved in the development of law on a European, international or national level. As its perspective is not limited to the European experience, the ELI is ready to seek cooperation with non-European or international organisations such as the American Law Institute or UNIDROIT. The ELI is committed to the principles of comprehensiveness and collaborative working, and strives to bridge the oft-perceived gap between the different legal cultures, between public and private law, as well as between scholarship and practice. To further that commitment it seeks to involve a diverse range of personalities, reflecting the richness of the legal traditions, legal disciplines and vocational frameworks found throughout Europe. The ELI is also open to the use of different methodological approaches and to canvassing insights and perspectives from as wide an audience as possible of those who share its vision.','14 Schottenring \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Vienna 1010\r\n AUSTRIA','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','President','European Law Institute','','1,007','','','455458212010-50','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=455458212010-50','03/10/13 10:31:29','2014-12-03T06:05:49.022678','(+43) 1 4277 221 01','03/10/14 09:49:13','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(55,'other','./contribution_iiPH7wU.pdf','Der Verein setzt sich für die bestehenden Bedürfnisse der ansässigen Mitglieder ein und hat sich zum Ziel gesetzt, die unzureichenden Bedingungen für die Mitglieder nachhaltig zu verbessern','national','GERMANY','','Register: Amtsgericht Dortmund VR 6849','01/2013\r\n - \r\n 12/2013','Als Berufsverband hat der Nick die Aufgabe der Vertretung der wirtschaftlichen und politischen Interessen der Gastronomie, des Nightlife, der Clubbetreiber, der Kunst und Kultur sowie die Förderung und Unterstützung ihrer Vorhaben.','1 Obermarkstraße 27 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Dortmund 44267\r\n GERMANY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Vorstand','Netzwerk: Initiative Club & Kultur','VUT','5','','','535055712846-19','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=535055712846-19','05/02/14 00:03:55','2014-12-03T06:56:48.952792','(+0231) 22566584','05/02/14 00:04:46','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(56,'other','./contribution_6fZ8iWs.pdf','To raise awareness of Governments, Public Sector, Businesses, Consumers, and other Official Bodies of the European benefits of open standards and open source.','European','DENMARK;FRANCE;IRELAND;PORTUGAL;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM','','OpenForum EuropeBISCHOFFSHEIM BUSINESS CENTERBischoffsheimlaan 36, 1000 BrusselBelgiumT: 0032 (0) 22 100280','04/2013\r\n - \r\n 03/2014','OpenForum Europe pursues the vision of an open, competitive choice for IT users.','73 Hillside Road \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Ashtead KT21 1SD\r\n UNITED KINGDOM','50000\r\n € - 100000\r\n €','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Policy Analyst','OFE Limited','','0','0','','2702114689-05','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=2702114689-05','28/11/08 13:13:03','2014-12-03T07:41:13.626185','(+44) 1372815168','03/11/14 12:59:40','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(57,'other','./contribution_2OeGHc8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(58,'other','./contribution_F1lUEYf.pdf','Proposal to Call for Proposals - Civil Justice Action Grants 2012 and 2013Priority DStudy about comercial secrets protectionStudy about enterprise governance','European;global','BELGIUM;FRANCE;GERMANY;GREECE;ITALY;PORTUGAL;ROMANIA;SPAIN;ALGERIA;ARGENTINA;AUSTRALIA;BRAZIL;CAMBODIA;CANADA;CHILE;CHINA;COLOMBIA;JAPAN;LEBANON;MEXICO;MOROCCO;RUSSIA, FEDERATION OF;TUNISIA;UNITED STATES;VIETNAM','','','01/2013\r\n - \r\n 12/2013','The mission of the Fondation pour le droit continental is to reinforce the dissemination of civil law at the global level and to ensure its position as a point of reference on an international scale.','2-14 Rue des Cévennes \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75015\r\n FRANCE','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','CEO','Fondation pour le droit continental/Civil Law Initiative','','0','13','Conseil national des Barreaux (55,000 members);Fondation des notaires de France (8,000 members);Caisse des dépôts et consigantions (0 members);Chambre national des Huissiers de justice (3,300 members);Conseil National des Administrateurs Judiciaires et Mandataires (619 members);Conseil National des Greffiers des Tribunaux de Commerce (146 members);EDF (0 members);Total (0 members);Schneider-Electric (0 members);Etat français (0 members);Conseil d\'Etat (300 members);Cour de Cassation (300 members);Vivendi (0 members)','31141499130-30','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=31141499130-30','10/07/12 13:32:20','2014-12-03T06:43:39.205987','(+331) 70224141','27/06/14 12:07:32','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(59,'other','./contribution_bLiaMKS.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(60,'other','./contribution_DBL0SPO.pdf',NULL,'sub-national;national;European;global',NULL,'','Philips European Affairs OfficeTweestationsstraat 80B-1070 BrusselsTel: +32 2 525 8001General Manager: Mr. Gerd Goetz','2010-2011','Royal Philips Electronics is a diversified Health and Well-being company, focused on improving people’s lives through timely innovations. As a world leader in healthcare, lifestyle and lighting, Philips integrates technologies and design into people-centric solutions, based on fundamental customer insights and the brand promise of “sense and simplicity” The company is a market leader in cardiac care, acute care and home healthcare, energy efficient lighting solutions and new lighting applications, as well as lifestyle products for personal well-being and pleasure with strong leadership positions in flat TV, male shaving and grooming, portable entertainment and oral healthcare.','2 Amstelplein Breitner Center\r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 77900\r\n \r\n \r\n \r\n \r\n Amsterdam 1070 MX\r\n NETHERLANDS','250000\r\n € - 300000\r\n €','«in-house» lobbyists and trade associations active in lobbying','company',NULL,'Philips (Royal Philips) Electronics N.V.','Philips is a member of a number of associations, including but not limited to: British Chamber of Commerce, BUSINESSEUROPE, CECED, CELMA, CLEPA, COCIR, DIGITALEUROPE, ELC, EUCOMED, EuroAce, EU ASE, EPC, ERT, Friends of Europe.',NULL,NULL,NULL,'02341041540-74','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=02341041540-74','17/04/09 14:24:01','2011-10-05T09:32:24.634843','(+31) 205977777','04/04/11 13:43:13','en','','Mr \r\n \r\n Frans van Houten','President/CEO','Budget;Competition;Consumer affairs;Customs;Economic affairs;Education;Employment and social affairs;Energy;Enterprise;Environment;External relations;External trade;General and institutional affairs;Information society;Internal market;Public health;Regional policy;Research and technology;Taxation;Trans-European networks','Naamloze vennootschap','Activities in the following policy areas: Education, Energy Efficiency, Resource Efficiency, Environment, Healthcare, Innovation, Intellectual Property, International Trade, Market Access, Research & Development, Taxation & Customs, Technical & Regulatory Issues.',NULL,'Philips (Royal Philips) Electronics N.V.',NULL,'http://www.philips.com',2,NULL,NULL),(61,'other','./contribution_D2U3RbY.pdf','EU Observatory on infringements of intellectual property rights participation (by Wikimedia Deutschland)Copyright Consultation responses (numerous chapters)','European;global','AUSTRIA;BELGIUM;CZECH REPUBLIC;ESTONIA;FRANCE;GERMANY;ITALY;NETHERLANDS;POLAND;SWEDEN;UNITED KINGDOM','The cost of this group are carried by the participant Wikimedia Chapters. The main share is financed by Wkimedia Deutschland, who contract a full-time position dedicated to the project. Wikimedia UK, Wikimedia Sverige and Wikimedia Nederland have set aside travel budgets dedicated to help participants take part in Free Knowledge meetings.','dimitar.dimitrov@wikimedia.de','01/2013\r\n - \r\n 01/2014','The Free Knowledge Advocacy Group EU aims at coordinating mainly the European Wikimedia chapters so they can have a unified and clear position on major legislative and political changes affecting the vision, mission and values of the Wikimedia movement.It promotes Free Knowledge through popularising Wikimedia projects and advocating for a legal framework supporting the public domain and enlarging the knowledge commons.','140 Rue Defacqz \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 13\r\n \r\n \r\n \r\n \r\n Saint-Gilles 1060\r\n BELGIUM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Wikimedian in Brussels','Free Knowledge Advocacy Group EU','One of the members of our group (Wikimedia Deutschland) has an observer status in European Digital Rights.','0','11','Wikimedia UK (224 members);Wikimedia Sverige (230 members);Wikimedia Polska (126 members);Wikimedia Nederland (200 members);Wikimedia Italia (471 members);Wikimedia France (470 members);Wikimedia Eesti (31 members);Wikimedia Deutschland (10,000 members);Wikimedia Czeska Republika (41 members);Wikimedia Osterreich (220 members);Wikimedia Belgium (40 members)','191538712765-84','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=191538712765-84','29/01/14 11:37:45','2014-12-03T06:23:07.446596','(+32) 497720374','29/01/14 11:38:50','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(62,'other','./contribution_qw4OceQ.pdf','N/A','national;European',NULL,'The operations of Finland Chamber of Commerce are based on Act on Chambers of Commerce of 2002.','Finland Chamber of Commerce is a national body for co-operation of Finland\'s nineteen independent regional Chambers of Commerce in Finland. The Chambers of Commerce have 19,000 companies or organizations as their members, representing all the fields and branches of trade and industry. Most of the members are small or medium-sized enterprises. Companies have the opportunity to influence their business environment in the committees of Chambers of Commerce which introduce and stress the point of view of businesses in the proposals for bills concerning trade and industry.','01/2013\r\n - \r\n 12/2013','Finland Chamber of Commerce promotes entrepreneurship and a favourable business environment in Finland and coordinates the operations of the nineteen independent regional Chambers of Commerce in Finland. The 19 Finnish Chambers of Commerce have approximately 19,000 member companies.Finland Chamber of Commerce ensures self-regulation in business; offers services related to, for example, dispute resolution, goods inspection and property valuation, as well as issues recommendations concerning corporate governance and awards Medals of Merit. The Auditing Board of Finland Chamber of Commerce authorises and oversees auditors.','17 Aleksanterinkatu \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: POB 1000\r\n \r\n \r\n \r\n \r\n Helsinki 00101\r\n FINLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Deputy Chief Executive','Finland Chamber of Commerce (Keskuskauppakamari)','Finland Chamber of Commerce is a member of Eurochambres. Eurochambres is a co-operation body and network of European Chambers of Commerce and Industry.',NULL,NULL,NULL,'5552918474-13','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=5552918474-13','07/10/08 07:07:48','2014-12-03T06:37:08.486730','(+358) 942426200','10/09/14 14:06:55','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(63,'other','./contribution_91OFGZc.pdf','Audiovisual policiesDigital AgendaCopyright enforcementCultural diversity','European;global',NULL,'The costs have been calculated in line with SEAP\'s ETI Registration Guidelines. www.seap.be','','01/2013\r\n - \r\n 12/2013','UNIC’s mission is to promote and to protect the value of cinema exhibition in Europe and in its member territories by:• Providing UNIC members with up-to-date information on policy developments and market trends in Europe and elsewhere.• Representing the exhibition sector at EU-meetings, conferences and trade-related events and working with government institutions throughout Europe on implementing strategies that promote cinemas as well as a more creative and innovative European Union.• Liaising on the sector’s behalf with other industry stakeholders in Europe (distributors, producers, artists, other content industries, etc.) and with partners in the US.• Enabling high-level executives from the cinema industry to come together and share experiences in an informal way, benchmark progress and network in a trusted environment.• Co-organising CineEurope, Europe’s premier get-together of the exhibition community.','10-11 Avenue des Arts \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1210\r\n BELGIUM','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','CEO','Union Internationale des Cinémas','',NULL,NULL,NULL,'74301917747-65','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=74301917747-65','20/01/12 12:57:57','2014-12-03T06:30:36.918012','(+32) 28809939','03/01/14 10:50:59','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(64,'other','./contribution_miqieSn.pdf','- policy paper reaction to the European Commission’s proposal for a directive on collective management of copyright and related rights and multi-territorial licensing of rights in musical works for online uses in the internal market, including a reaction on transparency, followed by contacts with the MEPs in the committees voting the directive- policy paper entitled Position on EC Horizon 2020 Open Access policy before the vote taking place at the European Parliament in November 2012, contacts with the MEPs in the committees voting the directive- Progressive Agenda for the Digital Public Domain: A reply to the Call of the Greens/EFA group at the European Parliament- Response to the European Commission’s consultation on recommended standard licenses, datasets and charging for the re-use of public sector information (PSI)- Participation and withdrawing from the Licences for Europe dialogue on text and data mining- Member of LAPSI 2.0 European Thematic Network on Legal Aspects of Public Sector Information- WIPO permanent observer- Blog posts about EC policy','European;global','BELGIUM;FRANCE;GERMANY;GREECE;ITALY;NETHERLANDS;POLAND;SLOVENIA;SPAIN;UNITED KINGDOM;ARGENTINA;MACEDONIA, FORMER YUGOSLAV REPUBLIC OF;SWITZERLAND;UNITED STATES','La subvention européenne correspond à la participation à un projet de recherche européen (LAPSI 2.0) et a été utilisée jusqu\'ici pour des remboursements de frais de mission.Les cotisations des membres servent à financer les frais administratifs de la tenue d\'une association en Belgique.Les activités de représentation auprès des institutions européennes sont effectuées de manière bénévole par les membres.','','05/2012\r\n - \r\n 05/2013','COMMUNIA, association indépendante et internationale dépourvue de tout esprit de lucre a pour objet de promouvoir, renforcer et enrichir le « Domaine public ». Le domaine public, tel que l’entend l’Association, est constitué de toute la richesse des informations qui sont accessibles et utilisables sans les obstacles habituellement associés à la protection par le droit d\'auteur et le copyright. Cela peut être parce que ces productions sont libres de droits, ou parce que les détenteurs de ces droits ont décidé de lever les obstacles liés aux droits restrictifs. Dans ce sens, le domaine public est la base de notre compréhension de nous-mêmes, telle qu\'elle s\'exprime dans notre savoir partagé et notre culture. C\'est la matière première à partir de laquelle de nouvelles connaissances et de nouvelles œuvres culturelles sont créées.La mission de COMMUNIA et de ses membres vise à promouvoir le domaine public, grâce à une capacité d’expertise et de recherche. Les objectifs de COMMUNIA sont mis en œuvre par les activités suivantes (sans s\'y limiter), en partenariat avec d\'autres associations et entités à Bruxelles, en Europe et dans le monde :- des publications, des conférences et autres réunions ouvertes au public, - la représentation de Communia et des questions liées au domaine public numérique auprès des institutions, notamment politiques ;- la réalisation d’études, de recherches et de projets, la réponse à des consultations. Par ailleurs, l’association peut accomplir toute opération civile, mobilière immobilière et accorder son aide ou sa collaboration et participation, par tout moyen, à des entreprises ou organismes poursuivant les mêmes buts ou dont l’activité contribuerait ou pourrait contribuer à la réalisation de ceux-ci.','32 Avenue de Tervueren BP 6 Etterbeek Tervueren\r\n \r\n \r\n \r\n \r\n \r\n P.O. box: BP 6\r\n \r\n \r\n \r\n \r\n Bruxelles 1040\r\n BELGIUM','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Directrice executive','COMMUNIA International Association on the Public Domain','','11','0','','498007413139-18','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=498007413139-18','04/03/14 10:27:44','2014-12-03T06:12:14.550152','(+32) 47 39 99 792','04/03/14 14:43:21','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(65,'other','./contribution_n6wTVud.pdf','The OTW has not had any previous EU initiatives. It intends to submit comments in response to the Copyright Consultation.','global','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CZECH REPUBLIC;DENMARK;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;AUSTRALIA;CANADA;UNITED STATES','The OTW is a 501(c)(3) nonprofit under US law.','Permanent email address: legal@transformativeworks.org','01/2013\r\n - \r\n 01/2014','The Organization for Transformative Works (OTW) is a nonprofit organization established under US law in 2007 to promote the acceptance of noncommercial fanworks as legitimate creative works, to preserve the history of fan culture, and to protect and defend fanworks from commercial exploitation and legal challenge. “Fanworks” are new, noncommercial creative works based on existing media; outside media fandom, the term “remix” is often used.','2576 Broadway #119 New York, NY\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n New York 10025\r\n UNITED STATES','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Legal Committee','Organization for Transformative Works','','3,948','','','215153212771-05','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=215153212771-05','30/01/14 01:44:12','2014-12-03T07:45:35.856219','(+1) 7035936759','30/01/14 01:44:47','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(66,'other','./contribution_zIeIb41.pdf','projet de règlement sur la protection des Données personnelles','national;European',NULL,'','','07/2013\r\n - \r\n 01/2014','Syntec Numérique, French professional association for the digital industry, welcomes digitaltechnology professionals from IT services and consulting firms, software manufacturers, andtechnology consulting firms. Its mission is to shape the digital industry of the future, servingas an advocate for digital technology professionals and influencing government agenciesand other institutions both in France and across Europe.Key figuresExponential growth of 80%: 500 companies have joined Syntec Numérique in just three yearsOur 1,200 members are highly representative of the digital industry, with:Software manufacturers80% of France’s top 20 software manufacturers (source PAC)60% of France’s top 100 software manufacturers (sources: Syntec Numérique Top250and Ernst & Young)IT services and consulting95% of France’s top 20 IT services and consulting firms (source: PAC)Technology consulting95% of France’s top 10 technology consulting firms (source Syntec Numérique)Syntec Numérique also counts among its members businesses operating in the fields of personaldigital services, video gaming, networks, telecommunications, mobility, Green IT, economic interestgroups, and corporate IT divisions.These companies account for 80% of the industry’s total revenue (42 billion) and employ369 000 people. Syntec Numérique represents:25 corporations, 75 large companies, 800 SMEs, and 300 start-ups ; SMEs make up 80% ofour membership and 40% of these companies are located outside the greater Paris area.800 members that contribute actively to association activities.7 industry associations and competitive clusters (including the System@tic global competitivecluster) under group memberships.8 regional delegations.For more than 30 years Syntec Numérique has been driving the expansion of theinformation and communication technology (ICT) sector through a broad range ofinitiatives.The digital economyNew applications for information and communication technology have fuelled growth within thedigital industry and across France’s entire economy. Syntec Numérique promotes the developmentof breakthrough applications that provide tangible benefits for users.New marketsThe digital revolution is sweeping industries of all kinds, from government, healthcare, andeducation to Green IT and energy. Syntec Numérique is there to help manage change as newapplications change the face of the digital industry.EmploymentThe future of the digital industry depends on the three pillars of education, training, and jobopportunities. Because labor laws are constantly changing, Syntec Numérique is committed toensuring that any new legislation takes into account the unique needs of the digital industry.Labor relationsSyntec Numérique—through Fédération Syntec—has the power to represent its members andnegotiate on their behalf with France’s industry regulators and labor organizations. Activities rangefrom lobbying to negotiating collective bargaining agreements on behalf of members.EducationSyntec Numérique—through Fédération Syntec—collects the French “apprenticeship tax” used tofund education and training, and plays a key role promoting careers in the digital industry. SyntecNumérique also works closely with institutions of higher learning to develop programs that preparestudents for digital careers.Member servicesSyntec Numérique members benefit from a range of exclusive services designed to boost businessperformance and deliver immediate savings. Member services currently include: tax and legalassistance; personalized advice for implementing national collective bargaining agreements onworking conditions and continuing professional development; morning workshops; networkingevents; special rates on insurance, financing, and factoring; trade publications (e.g., white papers,green papers, and fact sheets); and the Syntec pricing index.LobbyingSyntec Numérique informs an','3 Léon Bonnat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n PARIS 75016\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Trade unions','Délégué juridique','SYNTEC NUMERIQUE','membre de Force Numérique et Digital Europe',NULL,NULL,NULL,'104054012794-58','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=104054012794-58','31/01/14 11:00:32','2014-12-03T06:47:22.013308','(+33) 144304900','31/01/14 16:47:27','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(67,'other','./contribution_G0CHLo8.pdf','The MPA monitors the development of EU policies and legislation, notably in the fields of Intellectual Property, Culture, Audiovisual Policy, the Internal Market, Competition and the Information Society. In this context, the MPA regularly meets with national governments, EU officials, MEPs as well as industry counterparts and seeks to contribute constructively to public consultations associated with the EU\'s policy-development process. These objectives involve written submissions, participation in hearings, conferences and seminars as well as some amount of traveling (e.g. Strasbourg for EP Plenary sessions and Member States holding the Presidency of the Council).','national;European;global',NULL,'Our cost-estimate takes into account \"EU representation\" personnel costs and - as a pro-rata figure - costs related to rent, insurance and various office expenses.','EMEA Office of the Motion Picture Association (MPA)Chris Marcich, President and Managing DirectorAvenue des Arts, 46B-1000 BrusselsBelgiumPhone: +32-2-778.27.11Fax: +32-2-778.27.00','01/2013\r\n - \r\n 01/2014','Founded as a trade association, the MPAA (1922) and the MPA (1945) have broadened their mandate over the years to reflect the diversity of the ever-changing and expanding audiovisual industry. Its members include: Walt Disney Studios Motion Pictures; Paramount Pictures Corporation; Sony Pictures Entertainment Inc.; Twentieth Century Fox Film Corporation; Universal City Studios LLC; and Warner Bros. Entertainment Inc. Today the association advocates strong protection of the creative works produced and distributed by the audiovisual industry and seeks to promote a responsible internet. The Brussels-based MPA office acts as regional hub for Europe, Middle East and Africa. A large part of our work consists in providing support to local partner organisations active in the EMEA region on content protection and anti-piracy work. Another important part of the mission of the EMEA office is to working with film industries and creative communities throughout the region in pursuit of common interests. EU advocacy and government relations to champion the cause of strong legislation that protects rightholders’ needs and interests constitutes another element of the EMEA’s office work. Lobbying activities - including EU-related outreach - constitutes only a certain portion of the EMEA office\'s work.','1600 Eye Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Washington D.C. 20006\r\n UNITED STATES','800000\r\n € - 900000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','EU Affairs Director','Motion Picture Association','European Internet Foundation (EIF)Creative Media Business Alliance (CMBA)International Federation of Film Producers Associations (FIAPF)International Video Federation (IVF)Creativity Works !',NULL,NULL,NULL,'95201401713-39','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=95201401713-39','18/05/09 17:08:47','2014-12-03T07:45:27.375954','(+1-202) 2931966','05/05/14 13:13:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(68,'other','./contribution_NWsm90z.pdf','keine','sub-national;national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','Der Hauptverband des Österreichischen Buchhandels vertritt die Interessen der Buchbranche. Er ist parteiunabhängig und als Verein auf Basis freiwilliger Mitgliedschaft organisiert.','4 Gruenangergasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1010\r\n AUSTRIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführerin','Hauptverband des Österreichischen Buchhandels','',NULL,NULL,NULL,'718988812812-02','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=718988812812-02','01/02/14 13:20:54','2014-12-03T06:06:04.892548','(+43) 15121535','04/02/14 10:09:41','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(69,'other','./contribution_pRGsHmg.pdf','Copyright and related rightsProject Licenses for Europe','European',NULL,'','Secretary GeneralErik NylenNorrtullsgatan 5, 11329 Stockholm, SwedenTel: +46 739 865272Email: erik-n@telia.com','01/2013\r\n - \r\n 01/2014','Pan-European organisation for news agencies','7 c/o SDA Länggassstrasse\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berne CH 3001\r\n SWITZERLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Secretary General','European Alliance of News Agencies','',NULL,NULL,NULL,'526968412531-40','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=526968412531-40','03/01/14 14:25:35','2014-12-03T07:33:15.932398','(+41) 313093333','03/01/14 14:27:41','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(70,'other','./contribution_BXdoxjZ.pdf','Media','sub-national;national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Film Producers Netherlands is the association of film producers in the Netherlands. Our aim is to stimulate and support a dynamic and creative film industry. We represent the majority of Dutch film producers (thirty (30) associations which have 50 single producers working), promoting their common interests by lobbying in government and collaborating with parties in the film industry on their behalf at a national and international level. Our members are active in all segments of the film and television production content sector in Europe.','2 Korte Zoutkeetsgracht \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Amsterdam 1013 MC\r\n NETHERLANDS','10,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','directeur','Filmproducenten Nederland','FIAPF',NULL,NULL,NULL,'748083512798-74','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=748083512798-74','31/01/14 13:03:33','2014-12-03T07:16:29.306890','(+31) 20 627 00 61','31/01/14 13:04:04','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(71,'other','./contribution_6BiSJkP.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(72,'other','./contribution_vjSqLSb.pdf','participation à Licenses for Europe','global',NULL,'','Les bureaux sont à Berlin.','01/2012\r\n - \r\n 12/2012','Représentation des intérêts des agences photographiques et d\'images auprès des institutions européennes et internationales.','46 rue de la Mare \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75020\r\n FRANCE','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Other similar organisations','directrice executive','Coordination of European Picture Agencies Press Stock Heritage','IPTCLinked Content CoalitionICOMPCreativity Works!',NULL,NULL,NULL,'197834213050-71','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=197834213050-71','25/02/14 10:43:17','2014-12-03T06:41:35.918797','(+00331) 49 29 69 78','25/02/14 10:52:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(73,'other','./contribution_c0gz58k.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(74,'other','./contribution_BG06TZo.pdf','Siehe unter Ziele und Aufgaben.','European',NULL,'Die ARD und die in ihr zusammengeschlossenen Landesrundfunkanstalten werden ganz überwiegend aus Rundfunkgebühren finanziert, die die Rundfunkteilnehmer in der Bundesrepublik Deutschland entrichten.','','12/2012\r\n - \r\n 12/2013','Das ARD-Verbindungsbüro in Brüssel vertritt unter Leitung des Westdeutschen Rundfunks die Interessen der ARD gegenüber den europäischen und weiteren internationalen Institutionen in allen medienpolitischen und -rechtlichen Fragen. Neben der Europäischen Kommission, dem Europäischen Parlament und dem Rat gehören dazu auch z.B. der Europarat, die UNESCO und die WTO.Der Aufgabenbereich des Büros umfasst die Beobachtung, strategische Analyse und pro-aktive Begleitung aller für die ARD relevanten rechtlichen und politischen Entwicklungen auf europäischer Ebene. Es gibt Impulse für Positionierungen der ARD, wirkt an ihrer Entwicklung und Abstimmung mit und übernimmt deren externe Vermittlung. Zu seiner Arbeit gehört auch der ständige Kontakt und Informationsaustausch mit Vertretern anderer öffentlich-rechtlicher Rundfunkanstalten in Brüssel, Pressearbeit und die Erstellung eines vierteljährlichen Newsletters.','28 Rue Jacques de Lalaing \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brüssel 1040\r\n BELGIUM','400000\r\n € - 450000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Büroleiter','ARD-Verbindungsbüro Brüssel','Die ARD und die in ihr zusammengeschlossenen Landesrundfunkanstalten sind Mitglieder der Europäischen Rundfunkunion (EBU/UER).',NULL,NULL,NULL,'6774178922-55','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=6774178922-55','06/01/09 10:14:34','2014-12-03T06:08:47.678698','(+322) 2359666','10/12/13 13:58:26','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(75,'other','./contribution_OZvgPhD.pdf','Affaires intérieuresAudiovisual et mediaCommerce extérieurConcurrenceConsommateursCultureDouanesEmploi et Affaires socialesFiscalitéJustice et droits fondamentauxMarché intérieurSociété de l\'information','European;global',NULL,'','SECRETARIAT GENERAL : FEDERATION INTERNATIONALE DES ASSOCIATIONS DE PRODUCTEURS DE FILMS / 9 RUE DE L\'ECHELLE /75001 PARIS / FRANCE','01/2013\r\n - \r\n 12/2013','Set up in 1933,the International Federation of Films Producers Associations\' mandate is to represent the economic, legal and regulatory interests which film and audiovisual producers in five continents have in common. FIAPF members are located in all continents, with a strong European presence.As an advocate for producers, FIAPF helps formulate policies and coordinate political action in these key areas, including:- Copyright and related intellectual property rights\' legislation- Enforcement of IPR legislation- Deployment of digital technologies and their impact on the audiovisual value chain- Media regulation- Private and public sector film financing mechanisms.','16 Zinggstrasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BERNE 30007\r\n SWITZERLAND','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','DIRECTEUR GENERAL','FEDERATION INTERNATIONALE DES ASSOCIATIONS DE PRODUCTEURS DE FILMS','FIAPF is a member of the Creativity Works ! coalition',NULL,NULL,NULL,'12561298754-14','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=12561298754-14','11/05/12 10:22:13','2014-12-03T07:33:25.345308','(+33) 144779750','14/04/14 12:35:29','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(76,'other','./contribution_YE001aI.pdf','Affaires intérieuresAudiovisual et mediaCommerce extérieurConcurrenceConsommateursCultureDouanesEmploi et Affaires socialesFiscalitéJustice et droits fondamentauxMarché intérieurSociété de l\'information','European;global',NULL,'','SECRETARIAT GENERAL : FEDERATION INTERNATIONALE DES ASSOCIATIONS DE PRODUCTEURS DE FILMS / 9 RUE DE L\'ECHELLE /75001 PARIS / FRANCE','01/2013\r\n - \r\n 12/2013','Set up in 1933,the International Federation of Films Producers Associations\' mandate is to represent the economic, legal and regulatory interests which film and audiovisual producers in five continents have in common. FIAPF members are located in all continents, with a strong European presence.As an advocate for producers, FIAPF helps formulate policies and coordinate political action in these key areas, including:- Copyright and related intellectual property rights\' legislation- Enforcement of IPR legislation- Deployment of digital technologies and their impact on the audiovisual value chain- Media regulation- Private and public sector film financing mechanisms.','16 Zinggstrasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BERNE 30007\r\n SWITZERLAND','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','DIRECTEUR GENERAL','FEDERATION INTERNATIONALE DES ASSOCIATIONS DE PRODUCTEURS DE FILMS','FIAPF is a member of the Creativity Works ! coalition',NULL,NULL,NULL,'12561298754-14','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=12561298754-14','11/05/12 10:22:13','2014-12-03T07:33:25.345308','(+33) 144779750','14/04/14 12:35:29','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(77,'other','./contribution_tL5zKDt.pdf','Participation in Working Group 4 of the Licences for Europe Stakeholder Dialogue','global',NULL,'Annual turnover for current financial year: £1.8 million','','03/2013\r\n - \r\n 03/2014','To support the collective management of publishers\' rights and in particular to oversee the collective licensing of their rights and to distibrute collective licence fees to publishers fairly, transparently, efficiently and swiftly.','55-56 Russell Square \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London WC1B 4HP\r\n UNITED KINGDOM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Chief Executive','Publishers Licensing Society Limited','Interntional Federation of Reproduction Rights Organisation (IFRRO)British Copyright Council (BCC)Alliance for Intellectual Property',NULL,NULL,NULL,'608956713225-76','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=608956713225-76','05/03/14 21:14:19','2014-12-03T07:41:43.164186','(+44) 2070795930','05/03/14 21:15:16','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(78,'other','./contribution_xsaCQ8k.pdf','noch keine','global',NULL,'eigene Lobbying-Tätigkeit, keine Fremdkosten','','07/2012\r\n - \r\n 06/2013','Musikverlag','6 Karlsplatz \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1010\r\n AUSTRIA','0 €','II - In-house lobbyists and trade/professional associations','Companies & groups','Copyright Department','Universal Edition AG','Musikverleger Union Österreich, Deutscher Musikverleger Verband, ICMP',NULL,NULL,NULL,'559110212796-79','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=559110212796-79','03/02/14 10:36:46','2014-12-03T06:07:00.895112','(+431) 337230','03/02/14 10:37:07','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(79,'other','./contribution_MU69Nuu.pdf','participation à Licenses for Europe','global',NULL,'','Les bureaux sont à Berlin.','01/2012\r\n - \r\n 12/2012','Représentation des intérêts des agences photographiques et d\'images auprès des institutions européennes et internationales.','46 rue de la Mare \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75020\r\n FRANCE','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Other similar organisations','directrice executive','Coordination of European Picture Agencies Press Stock Heritage','IPTCLinked Content CoalitionICOMPCreativity Works!',NULL,NULL,NULL,'197834213050-71','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=197834213050-71','25/02/14 10:43:17','2014-12-03T06:41:35.918797','(+00331) 49 29 69 78','25/02/14 10:52:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(80,'other','./contribution_9ttaqXn.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'217307412669-09',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(81,'other','./contribution_l6T3sty.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(82,'other','./contribution_PlDD7iw.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(83,'other','./contribution_2INFDCm.pdf','Suivi des activités liées au cadre juridique du livre: la culture, le droit d\'auteur, la TVA, la concurrence, les accords de commerce...','national',NULL,'','','01/2013\r\n - \r\n 12/2013','The French Publishers Association (SNE) is France\'s trade association of book publishers. It represents approximately 670 member companies whose combined business endeavors account for the bulk of French publishing.The SNE\'s missions include :•advocating publishers\' interests,•supporting creativity by defending freedom to publish and promoting the respect of intellectual property rights,•promoting and defending the fixed book price,•promoting literacy.The SNE represents the French publishing profession as a member of both the Federation of European Publishers (FEP) and the International Publishers Association (IPA).','115 bd, St Germain \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75006\r\n FRANCE','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Counsellor, International Policy','French Publishers Association (Syndicat National de l\'Edition)','',NULL,NULL,NULL,'54534356472-92','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=54534356472-92','24/08/11 16:35:27','2014-12-03T06:43:51.221227','(+33) 1 44 41 40 50','28/07/14 11:02:30','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(84,'other','./contribution_Q1uUn7H.pdf','Independent producers recognise the importance of discussing collective issues, exchanging appropriate experiences and adopting common positions. Therefore, CEPI brings national independent producers together in order to:Represent independent television and cinema production on a European scale, protecting its general interests and furthering its development; Strengthen exchanges of information concerning audiovisual production; Develop commercial relations between European producers;Create a network of information and dialogue about the various problems affecting the profession in Europe, whether these are economic, legal, technical, social or other;Promote the interests of independent producers vis-a-vis the various European, national and international authorities.','national;European',NULL,'','','01/2013\r\n - \r\n 01/2014','The European Coordination of Independent Producers (CEPI) was founded in 1989, to organise and represent the interests of independent cinema and television producers in Europe. Today the Coordination represents approximately 4000 independent production companies in Europe.All together, our members supply over 16000 hours of new programming each year to broadcasters in Europe, ranging from single documentaries and special event programming, to game shows, light entertainment and high-cost drama serials. As the producers form the basic support of the audiovisual industry, it is necessary to articulate the interests of those producers within a unique European organisation.','26 Avenue Livingstone \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 3\r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Secretary General','European Coordination of Independent Producers','The European Coordination of Independent Producers is a member of the European Commission Social Dialogue, as well as the Advisory Committee of the European Audiovisual Observatory (www.obs.coe.int) and holds observer status with the World Intellectual Property Organisation (www.wipo.int) in Geneva, and the Council of Europe (www.coe.int) in Strasbourg.',NULL,NULL,NULL,'59052572261-62','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=59052572261-62','11/09/09 16:53:26','2014-12-03T06:16:59.684834','(+32) 022315633','08/09/14 16:58:53','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(85,'other','./contribution_QO6vowV.pdf','participation à Licenses for Europe','global',NULL,'','Les bureaux sont à Berlin.','01/2012\r\n - \r\n 12/2012','Représentation des intérêts des agences photographiques et d\'images auprès des institutions européennes et internationales.','46 rue de la Mare \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75020\r\n FRANCE','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Other similar organisations','directrice executive','Coordination of European Picture Agencies Press Stock Heritage','IPTCLinked Content CoalitionICOMPCreativity Works!',NULL,NULL,NULL,'197834213050-71','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=197834213050-71','25/02/14 10:43:17','2014-12-03T06:41:35.918797','(+00331) 49 29 69 78','25/02/14 10:52:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(86,'other','./contribution_gRJFyIm.pdf','copyright legislationdata protection legislationBrussels Iconsumer rights directiveCar labelling directiveenergy labelling directiveVAT directiveand others','European',NULL,'','','01/2013\r\n - \r\n 12/2013','The European Magazine Media Association, EMMA, is a non-profit organization based in Brussels. This European umbrella association represents towards the Institutions of the Europe Union the interests of the different national associations of magazine media in Europe, as well as a number of corporate members. EMMA’s mission is to promote and protect the interests of publishers of magazine media within the European Union, thus ensuring the long-term survival and prosperity of a plural, diverse and economically successful magazine media in the EU. In this logic, EMMA defends the freedom of expression, thus promoting pluralism and diversity, and make certain that Europe’s magazine media sector remains competitive and vibrant.','1A Square du Bastion \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1050\r\n BELGIUM','400000\r\n € - 450000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Senior Legal Advisor','European Magazine Media Association','CMBAAIGEASAPMGIFFROEDAAEIF',NULL,NULL,NULL,'37937886834-69','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=37937886834-69','29/09/11 23:21:32','2014-12-03T06:19:16.204363','(+32) 25360606','02/09/14 14:58:24','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(87,'other','./contribution_cSqSHTS.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(88,'other','./contribution_V2gOYqT.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(89,'other','./contribution_lAyvhG3.pdf','Copyright, VAT, Corporate Governance','national',NULL,'','','01/2013\r\n - \r\n 12/2013','La Federazione Italiana Editori Giornali (FIEG), fondata nel 1950, rappresenta le aziende editrici di giornali quotidiani e periodici e le agenzie nazionali di stampa. Alla FIEG aderiscono l\'Associazione Stampatori Italiana Giornali, la Federazione delle Concessionarie di Pubblicità a mezzo stampa e l\'Associazione Distributori Nazionali.Tra i suoi scopi, previsti dallo Statuto, rientrano la tutela della libertà di informazione; la tutela della economicità delle aziende editrici quale condizione essenziale per l\'esercizio della libertà di informazione; lo sviluppo della diffusione dei mezzi di comunicazione come strumenti di informazione e veicoli di pubblicità; la difesa dei diritti e degli interessi morali e materiali delle imprese associate.In ambito internazionale, la FIEG rappresenta gli editori italiani presso la World Association of Newspapers (WAN), la European Newspaper Publishers Association (ENPA), la International Federation of the Periodical Press (FIPP), la European Media Magazine Association(EMMA). Partecipa in qualità di socio alle attività di ADS (Accertamento Diffusione Stampa), Audipress, IAP (Istituto per l\'Autodisciplina Pubblicitaria), Pubblicità Progresso.La Federazione stipula i contratti di lavoro del settore (giornalisti, poligrafici e dirigenti di aziende editrici e stampatrici di giornali); stipula e gestisce l\'accordo nazionale per la rivendita della stampa quotidiana e periodica; presta consulenza legale per l\'interpretazione e l\'applicazione della normativa di interesse per il settore; elabora studi ed analisi sulle principali tendenze del mercato dell\'editoria; assiste le associate in materia di vendita, distribuzione, trasporti e pubblicità.','64 Piemonte \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Roma 00187\r\n ITALY','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Dirigente - Responsabile Area Giuridica e Internazionale','Federazione Italiana Editori Giornali','',NULL,NULL,NULL,'094027413034-49','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=094027413034-49','24/02/14 11:19:46','2014-12-03T07:07:54.520410','(+06) 46201432','24/02/14 11:20:36','it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(90,'other','./contribution_9Daku0W.pdf','Convergence review, copyright review','national',NULL,'','','01/2013\r\n - \r\n 01/2014','The Commercial Broadcasters Association is the industry body for digital, cable and satellite services in the commercial television and on-demand sector.','18 Marshall Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London W1F 7BE\r\n UNITED KINGDOM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Executive Director','Commercial Broadcasters Association','',NULL,NULL,NULL,'542169713111-72','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=542169713111-72','03/03/14 11:28:28','2014-12-03T07:37:05.023412','(+44) 2033274101','03/03/14 11:30:55','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(91,'other','./contribution_zQO2LkV.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(92,'other','./contribution_sWaybao.pdf','Freedom of the press Commercial communications Multimedia developments Advertising Self-regulation Copyright and related rights Internet Security and RegulationMedia pluralism eLearning Data protection Access to major events and sports rights Electronic commerceVAT harmonization Environmental questions','national;European;global',NULL,'','Brussels Officec/o Europe Analytica26 Avenue LivingstoneB-1000 BrusselsTel: +322 231 1299','12/2012\r\n - \r\n 12/2013','The European Publishers Council (EPC) is a high level lobby group of Chairmen and Chief Executives of leading European media corporations. Our goal is to protect the freedom of expression in editorial and advertising content and to represent the business interests of EPC members. These span newspapers, magazines, books, journals, online database and internet publishing as well as in many cases interests in private television and radio.','49 Park Town \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Oxford OX2 6SL\r\n UNITED KINGDOM','300000\r\n € - 350000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Executive Director','European Publishers Council','Members of - Creative and Media Business Alliance (CBMA)- Linked Content Coalition (LCC)- The Industry Coalition for Data Protection- News Media Coalition (NMC)- European Advertising Standards Alliance (EASA)- Advertising Information Group (AIG)- Postal Users Group (PUG)- European Interactive Digital Advertising Alliance (EDAA)',NULL,NULL,NULL,'4456380381-30','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=4456380381-30','09/09/08 18:37:11','2014-12-03T07:38:22.112182','(+44) 1865310732','26/08/14 18:28:34','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(93,'other','./contribution_nB6YlkG.pdf','AER is composed of private radio national associations and organisations whose target is to promote private radio broadcasters\' interests in Europe and to offer assistance to its members. Main fields of interest:Advertising StandardsAudiovisual Media ServicesCompetitionConsumer AffairsCopyrightData ProtectionDigital AgendaeCommerceFreedom of expressionInformation SocietyInternal MarketMedia PluralismNet neutralityServicesSocial DialogueSpectrum ManagementTechnology and Transmission Standards','European',NULL,'','','01/2013\r\n - \r\n 12/2013','The Association of European Radios (AER) is a Europe-wide trade body representing the interests of over 4,500 private/commercial radio stations across the EU27 and in Switzerland.AER\'s main objective is to develop and improve the most suitable framework for private commercial radio activity. AER constantly follows EU actions in order to contribute, to enrich and develop the radio sector.Furthermore, AER intends to promote the diffusion and the use of new technologies in radio transmission.AER encourages co-operation between its members and with other European radio stations and associations, in order to preserve and develop freedom of speech, freedom of enterprise, private initiative and the protection of listeners.','76 Avenue d\'Auderghem \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1040\r\n BELGIUM','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Manager','Association of European Radios','European Advertising Standards Alliance',NULL,NULL,NULL,'6822083232-32','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=6822083232-32','23/07/08 17:46:11','2014-12-03T06:09:31.613459','(+32) 27369131','26/06/14 14:38:18','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(94,'other','./contribution_H873XMd.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(95,'other','./contribution_AQUeJzU.pdf','...','national;European',NULL,'.','','06/2013\r\n - \r\n 12/2013','Obiettivo di Confindustria Radio Televisioni è promuovere l’innovazione e la crescita culturale e strategica delle imprese del settore dei media audiovisivi e radiofonici nel rispetto dei valori dell’etica professionale, della libertà di concorrenza e della libertà d’impresa nonchè favorire il confronto e la rappresentanza unitaria del settore sul piano legislativo, istituzionale, nell’ambito di altre associazioni di categoria nazionali e internazionali e presso la società civile. Quale socio effettivo della Confederazione Generale dell’Industria Italiana, l’Associazione si propone in particolare la tutela giuridica e morale e l’assistenza alle imprese associate, lo studio dell’assetto legislativo e regolamentare meglio rispondente alla natura e alle funzioni di tali imprese, la stipula di contratti e di accordi collettivi nazionali nella disciplina del rapporto di lavoro e la rappresentanza sindacale. Confindustria Radio Televisioni promuove inoltre lo sviluppo del settore tramite Web e Internet e la rappresentanza unitaria per la tutela dei contenuti audiovisivi prodotti e/o distribuiti dagli Associati e il connesso Copyright On-Line. Si adopera (in costante consultazione con il MISE, l’Autorità Garante nelle Comunicazioni, l’Autorità Garante della Concorrenza e del Mercato e ogni altra autorità competente) per individuare regole di trasmissione e standard tecnici degli apparati di ricezione aperti e a carattere orizzontale al fine di assicurare la migliore possibilità di ricezione e qualità tecnica all’utente finale (fatta salva ogni legittima iniziativa delle singole imprese di avviare proprie attività finalizzate alla diffusione di apparati di ricezione con standard verticali e a carattere proprietario) e per consentire lo sviluppo di condizioni equilibrate ed efficienti di concorrenza. Promuove tra gli associati la conoscenza dello stato dell’arte delle nuove tecnologie, l’aggiornamento professionale. Favorisce iniziative di comunicazione e di confronto che coinvolgano tutti gli operatori del settore (broadcasters, operatori di rete, ISP, fornitori di contenuti e di servizi, costruttori di apparati, installatori, operatori Internet, operatori di telecomunicazione, ecc) e che assicurino all’utente finale la più completa informazione sulle nuove modalità di fruizione. CRTV rappresenta oggi il 98% del mercato e circa 30.000 addetti diretti (oltre ad alcune decine di migliaia di lavoratori indiretti).','286 Viale Regina Margherita \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n ROMA 00198\r\n ITALY','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Vice Presidente','Confindustria Radio Televisioni','CONFINDUSTRIA - Confederazione Generale dell\'Industria Italiana (socio effettivo)',NULL,NULL,NULL,'635586913151-39','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=635586913151-39','04/03/14 12:20:08','2014-12-03T07:06:39.241824','(+39) 064402104','04/03/14 13:44:23','it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(96,'other','./contribution_JgRkflW.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(97,'other','./contribution_eOlUpOm.pdf','- Oeuvres orphelines- Gestion collective des DA- Aides d\'Etat au cinéma- Europe Créative- Copie privée- TTIP- Révision des règles du droit d\'auteur','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','La mission d\'Eurocinéma est double:• Constituer une instance de représentation des intérêts des producteurs de films et des producteurs audiovisuels près des Communautés européennes sur l\'ensemble des dossiers ayant un impact direct ou indirect sur la production cinématographique (propriété intellectuelle, OMC, programme Média…).• Créer une concertation continue avec les organisations représentatives des producteurs audiovisuels des autres Etats membres de la Communauté, une plate-forme de principes et de positions communes permettant d\'assurer la promotion efficace du cinéma européen dans le cadre de la Communauté européenne.','19 des Chartreux \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 12\r\n \r\n \r\n \r\n \r\n Bruxelles 1000\r\n BELGIUM','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Délégué général','EUROCINEMA, Association de producteurs de cinéma et de télévision','',NULL,NULL,NULL,'43245696854-79','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=43245696854-79','03/10/11 12:49:24','2014-12-03T06:14:34.609511','(+322) 7325830','29/09/14 14:57:47','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(98,'other','./contribution_niMbPxX.pdf','participation à Licenses for Europe','global',NULL,'','Les bureaux sont à Berlin.','01/2012\r\n - \r\n 12/2012','Représentation des intérêts des agences photographiques et d\'images auprès des institutions européennes et internationales.','46 rue de la Mare \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75020\r\n FRANCE','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Other similar organisations','directrice executive','Coordination of European Picture Agencies Press Stock Heritage','IPTCLinked Content CoalitionICOMPCreativity Works!',NULL,NULL,NULL,'197834213050-71','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=197834213050-71','25/02/14 10:43:17','2014-12-03T06:41:35.918797','(+00331) 49 29 69 78','25/02/14 10:52:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(99,'other','./contribution_80xLstJ.pdf','\"Licenses for Europe\" stakeholder dialogue','global',NULL,'','','01/2013\r\n - \r\n 12/2013','The Independent Film & Television Alliance® (IFTA®) is the global trade association of the independent motion picture and television industry and the voice and advocate for the Independents worldwide.IFTA is a non-profit organization that represents more than 150 members from 23 countries consisting of independent production and distribution companies, sales agents, television companies, and institutions engaged in film finance. IFTA Members rely heavily on Europe as a major marketplace to conduct business and roughly one-third of IFTA Member companies are established in European countries.Headquartered in Los Angeles, IFTA is dedicated to protecting and strengthening its Members’ ability to finance, produce, market and distribute independent films and television programs in an ever-changing and challenging global marketplace. IFTA actively speaks out and lobbies government officials on critical matters directly affecting the Independents and their business.','10850 Wilshire Blvd., 9th Floor \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Los Angeles 90024\r\n UNITED STATES','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Consultant','Independent Film & Television Alliance','International Federation of Film Producers Associations (FIAPF)',NULL,NULL,NULL,'359167112876-43','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=359167112876-43','06/02/14 01:03:21','2014-12-03T07:45:04.719626','(+310) 4461000','06/02/14 02:41:09','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(100,'other','./contribution_hrrXXN4.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(101,'other','./contribution_sTtKbt7.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(102,'other','./contribution_M36O6AY.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(103,'other','./contribution_q5qC8if.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(104,'other','./contribution_5ZxIOdq.pdf','Aucune activité particulière n\'est à relever. L\'ICMP/CIEM intervient habituellement dans notre champ d\'activité au niveau européen et la CSDEM au niveau français. Nous cherchons à soutenir les intérêts du droit d\'auteur dans la musique en l\'enrichissant de notre expérience locale.','national;European',NULL,'','','04/2012\r\n - \r\n 03/2013','« Parce que l’édition musicale est un métier exigeant. Parce que la musique est confrontée sans cesse à de nouveaux défis, la Chambre Syndicale de l’Edition Musicale rassemble et agit pour toute la profession. »La CSDEM réunit les éditeurs de musique de variété. Elle a pour objet principal : la représentation et la défense de la profession et des intérêts nationaux et internationaux des ses membres la promotion et la valorisation de la musique la défense du droit d’auteurSur le plan international, la CSDEM est membre de la Confédération internationale des éditeurs de musique (CIEM-ICMP), à laquelle adhèrent tous les syndicats professionnels d’éditeurs existant au monde, pour examiner, instruire et proposer aux sociétés d’auteurs des systèmes permettant de parfaire la gestion et l’administration collective des droits d’auteurs. La CIEM-ICMP représente également les intérêts des éditeurs de musique auprès des institutions européennes.L’action de la CSDEM s’exerce dans plusieurs domaines :- 1. Le domaine de la gestion collective : les rapports des éditeurs avec la SACEM - SDRMC’est à ce titre que : Nous intervenons pour l’amélioration des relations des éditeurs avec les services de la documentation, de la répartition et des vérifications ; Nous intervenons pour obtenir une plus grande souplesse et une meilleure perception dans l’exploitation internationale de nos catalogues.- 2. Le domaine de la gestion individuelleIl concerne toutes les formes d’exploitation qui ne font pas partie des apports faits aux sociétés d’auteurs, c’est-à-dire celles où notre autorisation préalable est nécessaire avant toute forme de reproduction ou de représentation publiques, soit celles où nous sommes seuls opérateurs.Dans tous ces domaines, nous voulons être vigilants : ainsi nous avons été en justice aux côtés de certains de nos membres ou tout simplement pour défendre notre profession en raison d’utilisation illicites d’œuvres.A ce titre, la CSDEM a mis en place BOEM (Base de données de l’édition musicale) au service des éditeurs de musique. Il s’agit d’une base de données de paroles de chansons à destination des plateformes internet désireuses d’enrichir leurs sites grâce aux paroles de chansons. Boem a permis d’ouvrir légalement l’accès des du public aux paroles de chansons.- 3. Représentation de la profession auprès des acteurs de la filière musicale et des pouvoirs publicsA ce titre, la CSDEM est sollicitée par le Ministère de la Culture et la Communication pour participer aux différents travaux et réflexions conduits dans le domaine musical (diversité musicale dans les médias, lutte contre la piraterie, financement à l’ère numérique, acte 2 de l’exception culturelle...).La CSDEM est également en relation constante avec les organisations d’auteurs compositeurs (SNAC-UNAC-UCMF), de producteurs (SNEP-UPFI), de managers MMF)...Elle est en outre représentée par ses membres dans des associations et organismes qui défendent les intérêts des auteurs, compositeurs et éditeurs de musique exerçant leur activité en France (Victoires de la Musique, Tous Pour La Musique, Fonds pour la Création Musicale, Association pour la Création et la Diffusion de la Musique Française, Société des Editeurs et Auteurs de Musique, Agessa, etc...).Afin d’assurer la visibilité du métier d’éditeur de musique, la CSDEM publie tous les 2 ans le baromètre de l’édition musicale comprenant les principaux indicateurs du marché de l’édition musicale.Depuis 2011, la CSDEM organise chaque année les Prix de la Création Musicale, vitrine des différentes facette du métier d’éditeur de musique.Des commissions qui réunissent des membres de notre Chambre et leurs collaborateurs ont été créées depuis plusieurs années. Elles ont pour mission de recevoir, instruire et proposer au Conseil d’administration les sujets intéressants notre profession. Certains peuvent revêtir un caractère d’urgence.','74 rue de la Fédération \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75015\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','déléguée générale','Chambre Syndicale de l\'Edition Musicale','La CSDEM est membre de la Confédération international des éditeurs de musique = ICMP/CIEM. Un administrateur de la CSDEM représente cette organisation au sein du Conseil d\'administration de l\'ICMP/CIEM.',NULL,NULL,NULL,'425820712529-31','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=425820712529-31','03/01/14 12:52:03','2014-12-03T06:40:35.442474','(+0033) 1 48 74 09 29','03/01/14 12:52:35','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(105,'other','./contribution_swc7yMA.pdf','- Proposed Regulation establishing the Creative Europe Programme- Proposed Directive on Collective management of copyright and related rights and multi-territorial licensing of rights in musical works for online uses in the internal market- EP report on private copying- EU copyright policy','European;global',NULL,'','info@impalamusic.org','07/2013\r\n - \r\n 06/2014','IMPALA represents 4,000 independent music companies and national associations across Europe.As far as we are aware, IMPALA is the only organisation in Brussels wholly dedicated to representing cultural and creative SMEs and promoting their growth and competitiveness in the interests of entrepreneurial and cultural diversity. Known as “independents” in the music sector, music SMEs are world leaders in terms of innovation and discovering new music and artists - they produce more than 80% of all new releases in Europe today. They are also key employers, providing more than 80% of jobs in the sector in Europe. IMPALA\'s mission is to grow the independent music sector, promote cultural diversity and cultural entrepreneurship, improve political access and modernise the perception of the music industry.. Grow the independent music sectorMarket concentration reduces commercial opportunity and cultural diversity. Reversal of this trend is vital to close the gap between the majors and the independents. We can only grow through proper regulatory support, market access, real finance, collective action and promotion of independent music.. Promote cultural diversity and entrepreneurshipMusic is an excellent example of the world\'s cultural diversity, and independents have always been at the forefront of promoting this. The economic and regulatory environment must actively foster cultural entrepreneurship and economic diversity.. Improve political accessSmaller businesses do not have the influence of larger companies and often lose out at political level. IMPALA corrects this imbalance as an active single voice for the independent sector.. Modernise the perception of the music industryBy broadening the agenda and offering new solutions to long standing issues, IMPALA aims to promote independent music, inspire decision-makers to fulfil their new promises to cultural SMEs and open doors to future investment.IMPALA’s aims and challenges are to: - Promote independent music in the interests of cultural diversity;- Assess market access conditions in the music sector;- Review the impact of antitrust rules on competition, consumer choice and industry concentration;- Highlight discrimination against small companies by large ones, from inside and outside the music industry;- Examine which specific financial support mechanisms are required for the independent music industry;- Adopt international trade measures which contribute to upholding cultural diversity;- Promote strong but fair copyright protection to fight against unauthorised and illegitimate use of artists works;- Provide promotional, business intelligence and other information and research services to members;- Promote the vital role of music and micro, small and medium sized enterprises in driving Europe\'s knowledge and innovation economies;- Function as a network for members and national associations to enhance cultural and artistic diversity;- Look at possible positive discrimination measures for cultural SMEs;- The interests of the \"independents\" are in many respects different to those of the “majors”: this needs to be recognised, and appropriate actions need to be taken;- Study what an effective and properly funded music programme at a European institutional level would consist of;- Research access by independents to emerging markets including the online market place;- Study collective licensing; - Examine easier access to capital and grants available under EU cultural and R&D programmes;- Research and defend the principle of adequate copyright protection;- Study what is required for a level playing field and fair competition;- Promote the innovative and artistic role of the independents.','70 Coudenberg \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bruxelles 1000\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Public Affairs Manager','IMPALA Association Internationale AISBL','-IMPALA is board member of the European Platform on Cultural and Creative Industries, launched by the European Commission\'s DG EAC in the framework of the structured dialogue with the cultural and creative sectors.- IMPALA is also a member of the informal \'Creativity Works\' coalition of like-minded organisations, federations and associations from the European cultural and creative sectors (http://creativityworks.eu/)',NULL,NULL,NULL,'12383069253-19','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=12383069253-19','16/08/12 11:46:25','2014-12-03T06:24:22.539175','(+32) 25033138','22/07/14 16:14:07','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(106,'other','./contribution_VFryuWY.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(107,'other','./contribution_FFBWOTC.pdf','Investeren in de productie of distributie van muziek, films en games is dezer dagen een riskante onderneming. Nochtans zijn films, games en muziek nog nooit zo populair en beschikbaar geweest. De producenten moeten dan ook samen hun stem laten horen via een representatieve organisatie die de collectieve belangen van deze branches verdedigen. BEA neemt die taak op zich op verschillende wijzen: Verdediging sectorbelangen BEA heeft veelvuldig contact met de overheid op alle niveau’s over diverse zaken in het belang van de entertainment sector en is geassocieerd met UNIZO. BEA ijvert voor een laag BTW tarief, de bescherming van auteursrechten, fiscale stimuli voor investering in creativiteit,… zowel bij nationale als bij Europese instanties. Informatie voor de leden BEA kan voor haar leden een beroep doen op de studiedienst van UNIZO, die over een groot aantal materies met betrekking tot het ondernemen (juridisch) advies kan leveren. Verder kan BEA haar leden bijstaan voor advies inzake auteursrechten en naburige rechten. Marktinformatie BEA verzamelt informatie over de entertinmentmarkt en verspreid die onder haar leden met inachtname van de wettelijke regelgeving. Pers en Public relations BEA informeert publiek en pers over de entertainmentsector en de markt en treedt op als woordvoerder. Tevens draagt zij rechtstreeks of onrechtstreeks bij aan verschillende activiteiten ter promotie van de sector. Piraterijbestrijding Om de efficiëntie van de bestrijding van namaak te verhogen heeft BEA een samenwerkingsovereenkomst met BAF (Belgian Anti-piracy Federation) en SABAM. Ze zijn actief in de bestrijding van games-, film- en muziekpiraterij, zowel on- als offline en dit uitsluitend voor het repertoire van aangesloten leden. Het bespaart de leden veel tijd en kosten.','national',NULL,'','','01/2012\r\n - \r\n 12/2012','BEA is de beroepsvereniging van de Belgische games-, muziek- en video-industrie. De Belgische entertainmentindustrie (games, muziek en video) realiseerde in 2009 een omzet van € 615 miljoen en stelt meer dan 15 000 mensen tewerk. BEA bundelde in 2008 de krachten van BLISA, BVF en IFPI Belgium, respectievelijk de beroepsfederaties van de Belgische interactieve software- (kortweg games), video- en muziekindustrie om de belangen van de Belgische Entertainmentsector nog beter te verdedigen. BEA verenigt zo meer dan 50 bedrijven actief in de productie en/distributie van games, interactieve software, muziek en video. Samen vertegenwoordigen de leden van BEA bijna 90% van de Belgische entertainmentindustrie. De opdrachten van BEA zijn: ► het bevorderen van de waarde van muziek, film en games in de samenleving, zowel in het sociaal, economisch als het cultureel leven; ► de bescherming en de verdediging van de belangen van de sectoren in het algemeen en haar leden in het bijzonder; ► het bevorderen van een redelijke toegang tot de markt en het streven naar aangepaste auteurswetten; ► het verstrekken van informatie over de werking van de entertainmentsector in het algemeen en van haar leden in het bijzonder.','3 Almaplein \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 2\r\n \r\n \r\n \r\n \r\n Brussel 1200\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','directeur','Belgian Entertainment Association','BEA is lid van UNIZO,IFPI, IVF en ISFE',NULL,NULL,NULL,'88267013456-85','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=88267013456-85','15/04/10 11:40:45','2014-12-03T06:10:00.908966','(+32) 27794174','22/04/14 09:38:04','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(108,'other','./contribution_aCKdFoa.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(109,'other','./contribution_4ZaHceD.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(110,'other','./contribution_CESEt1H.pdf','The CMFE stands for- obtaining recognition of the 3rd Media Sector by the European Union and the Council of Europe as a point of reference for national culture and media policy;the drawing up of a Framework Convention on Community Media to guarantee the basic requirements on a national level;- establishing funding possibilities for community media within EU budget lines;raising awareness about the large number of social and cultural issues which are covered and supported by the activities of community media;- building up a platform for continuous dialogue and discussion on how to ensure media pluralism, freedom of expression and access to information throughout Europe;- strengthening cooperation and giving support to new independent civic media initiatives in transition countries, this being a key condition for democratic participation and development in their societies.','European','AUSTRIA;BELGIUM;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;NETHERLANDS;POLAND;ROMANIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;BANGLADESH;BOSNIA-HERZEGOVINA;BURUNDI;MONTENEGRO;NEPAL;NORWAY;PAKISTAN;SWITZERLAND;TURKEY;UNITED STATES','','CMFE is registered in Belgium as an International NGO, business n.0822992342.','01/2013\r\n - \r\n 12/2013','The CMFE is founded in 2004 to strengthen the participation of the “Third Media Sector” in European discussion and decision-making processes at a moment when freedom of expression and free access to information are increasingly endangered by the consequences of concentration in the media field. It is a network of policy experts, organizations and federations from now 26 European countries, which aim to support the role of Community Media on the European level.','3 Heliodoorstraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Nijmegen 6534SH\r\n NETHERLANDS','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Treasurer','Community Media Forum Europe','AMARC-Europe, OpenChannelsEuropeCouncil of Europe:- Observer for the Steering Committee on the Media and New Communications (CDMC) and the Committee of Experts on New Media (MC-NM) (until 2012)- Observer Steering Committee on Media and Information Society (CDMSI) (from 2012)- Associate member of DRM Consortium- Member of Council of Europe INGO Forum','56','61','AMARC Europe (300 members);Associació d’amics de Ràdio Televisió Cardedeu (RTVC) (1 members);Community Media Association (600 members);NRO-Närradion Riksorganisation(Community Radio Association of Sweden) (74 members);DILEM-Danske Idebaseredé Lokale Elektroniske Medier (68 members);FÖRBUNDET FINLANDSSVENSK LOKAL-TV r.f. (Finland Swedish Local TV Assoc (15 members);Freier Rundfunk Freistadt GmbH58 (1 members);Aarhus GlobalMedia c/o Mediahus Aarhus (1 members);Göteborgs Närradioförening (Gothenburg Community Radio Association) (3 members);Szabad Rádiók Magyarországi-SzervezeHungarianFederation of FreeRadios (36 members);NEMEZA - Croatia (1 members);OLON-Organisatie van Lokale Omroepen in Nederland (285 members);R.A.D.I.O. e.V. / Radio Z (1 members);Corax e.V. (Radio Corax) - Germany (1 members);Radio Zinzine (1 members);RadUni (University Radio Network) (36 members);Riksförbundet Öppna Kanaler Sverige (Swedish Community TV Association) (13 members);Tele K - Fedekas (1 members);UNIKOM - Switzerland (15 members);Verband Freier Radios Österreich (16 members);Sammenslutningen af lokale radio- og TV-stationer i Danmark (SLRTV) (98 members);Station House Media Unit (shmu) (1 members);STUDIO 12 - Slovenia (1 members);Bundesverband Offene Kanäle e.V. (21 members);Central Eastern European University (1 members);Community Radio Forum of Ireland (CRAOL) (19 members);Finnish Community Radio Association (FCRA) (50 members);Foreningen Frikanalen Norway (1 members);NEAR Media Co-op - Ireland (1 members);COMMIT - Community Media Institute for Training, Research and Consulta (9 members);Community Television Association Ireland (3 members);Fédération des Vidéos des Pays et des Quartiers (FVDPQ) (27 members);CCMC - Cyprus Community Media Centre (1 members);Bundesverband Freie Radios (15 members);SAML (Sammenslutningen Af Media i Lokalsamfundet) c/o SRLTV (10 members);Syndicat National des Radios Libres (150 members);Association \"Prijatelji Srebrenice\" (1 members);SINDH MEDIA COMMUNITY FORUM (1 members);Bangladesh NGOs Network for Radio and Communication (150 members);Red de Medios Comunitarios (ReMC) (1 members);Associazione Unis@und - Oltre i Confini del Web (1 members);Community TV Trust (3 members);Siren FM (1 members);BvBam - Bundesverband Bürger- und Ausbildungsmedien e.V. (45 members);Youth Awareness Environmental Forum (YAEF/Nepal) (1 members);RADIO HELSINKI 92,6fm - Verein freies Radio Steiermark (1 members);AMISnet - Agenzia Multimediale Informazione Sociale (1 members);CNRA - Confédération Nationale des Radios Associatives (150 members);TIDE GmbH (1 members);CENZURA PLUS - Association for promotion of human rights and media fre (15 members);Community Media Network (15 members);Radio FRO-Freier Rundfunk Ober Österreich VFRÖ (1 members);Union of Local Public Broadcasters of Montenegro (15 members);Civil Szfera Foundation (1 members);FS1 - Community TV Salzburg Ltd. (1 members);VCFÖ - Federation Community Television Austria (5 members);Publieke Omroep Amsterdam (1 members);m-cult Finland (1 members);Pi Radio Germany (1 members);KLFM.ORG - Croatia (1 members);Udruga Polka - Crpatia (1 members)','40306691699-12','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=40306691699-12','15/05/09 12:11:08','2014-12-03T07:15:20.540469','(+31) 634150581','28/04/14 10:05:33','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(111,'other','./contribution_7zsru9H.pdf','- Révision des règles en matière de droit d\'auteur- La directive Oeuvres orphelines- La directie Gestion collective des DA- La Copie privée','European',NULL,'','Bureau de représentation à Bruxelles:19 rue des Chartreux, bte 12B-1000 BruxellesTél.: +32.2.643.01.34Fax: +32.2.643.01.39','01/2013\r\n - \r\n 12/2013','Réunir les sociétés de producteurs en charge de la gestion collective des droits de copie privée audiovisuelle, favoriser la coopération entre ces sociétés et défendre les intérêts de leurs membres producteurs au niveau international.','11 bis Jean Goujon \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n PARIS 75008\r\n FRANCE','50,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Réprésentante','EUROCOPYA','',NULL,NULL,NULL,'89874817197-02','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=89874817197-02','18/11/11 13:41:25','2014-12-03T06:42:08.024887','(+331) 53839191','27/10/14 16:08:22','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(112,'other','./contribution_zRiNluT.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(113,'other','./contribution_CpBvPSz.pdf','Our priority issues are: regulation of media content (especially Audiovisual Media Services directive); regulation of Information Society infrastructure (New Regulatory Framework/spectrum policy); regulation of advertising;competition, including state aid; copyright; protection of content against piracy;We also deal with any other issue affecting our member companies\' business interests, including taxation, sport, employment law, extension of the acquis, trade negotiations and others. We are also active in several international fora, incuding the World Intellectual Property Organisation and Council of Europe','national;European;global',NULL,'The above estimate represents the salary costs of staff engaged full-time on liaising with the EU institutions, plus a proportion of other costs. This figure will vary from year to year, depending on the extent to which regulation impacting on our member companies\' business interests is proposed by the European Commission, as some staff work both on lobbying and non-lobbying activities.','','01/2013\r\n - \r\n 12/2013','Our statutory objective is to promote co-operation among our member companies and with other enterprises active in audiovisual media, relating to ethics, the regulatory environment, programming, production and financing.Inter alia, we facilitate the development of joint positions on matters of common interest vis-à-vis the EU institutions.','9/13 Rue Joseph II \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bruxelles 1000\r\n BELGIUM','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director-General','Association of Commercial Television (Europe)','European Advertising Standards AllianceCreative & Media Business AllianceAdvertising Information GroupEuropean Policy Centre',NULL,NULL,NULL,'18574111503-28','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=18574111503-28','09/04/09 13:03:05','2014-12-03T06:09:21.900796','(+322) 736 0052','14/03/14 09:35:28','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(114,'other','./contribution_Rm0lHSf.pdf','- Kontaktaufnahme zu Mitgliedern oder Beamten der EU-Organe,- Erstellung, Verbreitung und Übermittlung von Schreiben, Informationsmaterial und Positionspapieren,Enforcement-Directive','national;European',NULL,'','','01/2012\r\n - \r\n 12/2012','Web-Guard - Verein zur Förderung der Rechte im Internet e.V.vertritt die Interessen von Filmprogrammanbietern und Videothekengruppierungen, darunter der Interessenverband des Video- und Medienfachhandels in Deutschland e.V. sowie Einkaufskooperationen des Videomarktes. Der Verein Web-Guard hat es sich zur Aufgabe gemacht, Verstöße gegen das Urheberrecht undden Jugendschutz im Internet zu verfolgen. Dabei werden folgende Schwerpunkte gesetzt:• Entwicklung innovativer Ansätze zur Verfolgung der Rechtsverletzer• Musterverfahren zur Erprobung dieser neuen Ansätze• Musterverfahren zur Klärung von rechtlichen Fragestellungen im Bereich Raubkopien, die viele Mitglieder betreffen• Maßnahmen zur Behinderung der Refinanzierung der Raubkopierbranche• Information und Lobbyarbeit','15 Mercatorstr. \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Düsseldorf 40545\r\n GERMANY','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführer','Web-Guard','',NULL,NULL,NULL,'938641310866-54','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=938641310866-54','21/03/13 14:03:40','2014-12-03T06:59:09.687736','(+211) 5773900','11/03/14 09:56:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(115,'other','./contribution_Sb5PEuq.pdf','Radio Spectrum Policy ProgrammeCopyrightNet neutralityData protectionUniversal serviceCultural and creative industriesMedia LiteracyPublic procurementTrade Media Pluralism and Media FreedomConnected TV','European',NULL,'','Mrs Nicola FrankHead of European Affairs','01/2013\r\n - \r\n 12/2013','- To promote and defend the interests of its Members in the field of broadcasting (i.e. radio, television and other electronic media) vis-à-vis international organisations, and particularly the European Union;This includes:o promoting and developing the concept and values of public service broadcasting;o safeguarding and improving freedom of expression and information;o enhancing the freedom and pluralism of the media, the free flow of information and ideas, and the free formation of opinions;o developing cultural diversity, intercultural dialogue and exchanges in conditions which safeguard such fundamental values as tolerance and solidarity;o protecting and promoting Europe’s cultural heritage and the development of its audiovisual creation by offering an increasing choice of programmes and services;o reinforcing the identity of the peoples, social cohesion and the integration of all individuals, groups and communities;o fulfilling the public’s expectations in the information, educational, cultural and entertainment fields through the production and dissemination of a diversified range of high-quality programmes.- To monitor European policies and inform Members about relevant developments;- To promote cooperation between its Members in the field of broadcasting;- To inform, to assist and - if requested - to represent its Members in calls for proposals in response to calls issued by the European Union; - To represent its Members vis-à-vis other professional associations;- To maintain close cooperation with EBU Geneva.','56 avenue des Arts 56 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','900000\r\n € - 1000000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Head of European Affairs/Director of EBU-UER AISBL','European Broadcasting Union / Union Européenne de Radio-télévision AISBL','CEEP - European Centre of Employers and Enterprises providing Public services ESF - European Services ForumEIF - European Internet Foundation',NULL,NULL,NULL,'93288301615-56','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=93288301615-56','30/04/09 14:38:44','2014-12-03T06:16:03.438609','(+32-2-) 2869115','03/04/14 10:39:01','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(116,'other','./contribution_fNaoiuV.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(117,'other','./contribution_2HRtrUS.pdf','Vaikuttaminen Teoston ja Kopioston jäsenenä sekä Lyhty-yhteistyön kautta, lausuntojen antaminen ministeriöille ja EU-komissiolle, vaikuttaminen alan kansainvälisen järjestön ICMP:n kautta','national;European;global',NULL,'Toiminnan rahoituksen keskeiset lähteet: Teoston toiminta-avustus, jäsenmaksut, Kopioston valokopiointikorvaukset opetus- ja kulttuuriministeriön sallimiin käyttötarkoituksiin:- Teoston toiminta-avustus vuodelle 2013 oli 156 736 euroa. Vastaavalla tavalla Teosto tukee musiikin tekijöitä edustavia jäsenjärjestöjään (Suomen Säveltäjät ry, Säveltäjät ja sanoittajat ELVIS ry).- Kopiosto ry tilittää valokopiointikorvaukset omille jäsnejärjestöilleen, joiden jäsenkokouksilla on valtuudet päättää korvausten käytöstä. Suomen Musiikkikustantajat ry:n kevätkokous 2014 päätti, että 97,2 prosenttia korvauksista tilitetään liikevaihtojen suhteessa jäsenille ja että yhdistys voi käyttää 2,8 prosenttia yhteisiin, koko alaa hyödyttäviin tarkoituksiin. Hyväksytyt käyttömuodot on vahvistanut Kopioston hallitus, ja näitä ovat mm. tiedotus, koulutus, asianajo ja kansainvälinen toiminta. Yhdistys käytti näihin tarkoituksiin vuonna 2012 yhteensä 8 533 euroa.','','01/2013\r\n - \r\n 12/2013','Yhdistys on musiikin kustantajien valtakunnallinen järjestö, jonka tarkoituksena on parantaa musiikinkustannusalan yleisiä toimintaedellytyksiä, kulttuuripoliittista asemaa ja oikeudellisen suojan yleisiä edellytyksiä.','2 C Urho Kekkosen katu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00100\r\n FINLAND','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','toiminnanjohtaja','Suomen Musiikkikustantajat ry','Säveltäjäin tekijänoikeustomisto Teosto r.y., Kopiosto ry, ICMP (International Confederation of Music Publishers), Music Finland ry, Suomen Tekijänoikeudellinen yhdistys ry, Luovan työn tekijät ja yrittäjät Lyhty, Tekijänoikeuden tiedotus- ja valvontakeskus TTVK ry',NULL,NULL,NULL,'32990893689-87','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=32990893689-87','31/05/10 14:13:46','2014-12-03T06:37:57.541610','(+358 9) 5860 870','13/05/14 09:08:27','fi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(118,'other','./contribution_rHI7X0m.pdf','- Audiovisual media policy- Intellectual property and copyright- Digital agenda- Advertising- Information society','global',NULL,'The calculation of costs of activities falling under the scope of the register is made according to the EU\'s Transparency Register Compliance Guidelines (http://europa.eu/transparency-register/pdf/guideline_en.pdf) and the corresponding guidelines of the Society of European Affairs Professionals (SEAP). It does not include association membership fees as the associations of which RTL Group is a member are registered. Both European Affairs employees are signatories to the SEAP Code of Conduct.Funding: European Parliament grant received by RTL Group for the production of radio programmes in Germany, Belgium, Spain and Luxembourg to promote citizen engagement in the 2014 European elections.','Bernardo MatosEuropean Affairs Policy Manager+32 2 230 86 75bernardo.matos@rtlgroup.com','01/2013\r\n - \r\n 12/2013','With 56 television channels and 27 radio stations in twelve countries, RTL Group is the leading European entertainment network. The Luxembourg-based company operates TV channels and radio stations in Germany, France, Belgium, the Netherlands, Luxembourg, Spain, Hungary, Croatia, India and South East Asia. It is one of the world’s leading producers of television content such as talent and game shows, drama, daily soaps and telenovelas, including Idols, Got Talent, The X Factor, Good Times - Bad Times and Family Feud.RTL Group strives to provide its audiences with high quality products. We are acutely aware of the special nature of the media business, as both an opinion former and information provider, and the responsibilities of a media company towards its communities. Our aim is to offer a broad range of content addressing all of society including both quality information and popular entertainment. The wide range of our activities and initiatives reflects our decentralised corporate structure.','45 Boulevard Pierre Frieden \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Luxembourg 1543\r\n LUXEMBOURG','200000\r\n € - 250000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Senior Vice President European Affairs','RTL Group','ACT, European Policy Centre, EBU, EGTA',NULL,NULL,NULL,'59267165790-45','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=59267165790-45','05/05/11 12:40:35','2014-12-03T07:13:34.070681','(+352) 2486 0','17/04/14 11:49:10','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(119,'other','./contribution_CbMZoYf.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'954343313199-94',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(120,'other','./contribution_VYDNHTL.pdf','Production d’œuvres audiovisuelles','sub-national;national;European;global',NULL,'','BUREAUX BRUXELLESVERSUS PRODUCTION72 RUE DE LA CONSOLATIONB-1030 BRUXELLESTEL +32 2 588 27 90FAX +32 4 223 21 71','01/2012\r\n - \r\n 12/2012','Fondé en 1999 par Jacques-Henri et Olivier Bronckart, Versus production est devenu en quelques années l\'un des acteurs majeurs du cinéma belge et international par la production essentiellement de longs métrages de fiction.','9 QUAI DE LA GOFFE \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n LIEGE 4000\r\n BELGIUM','1250000\r\n € - 1500000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','DIRECTEUR FINANCIER','VERSUS PRODUCTION','Versus production est membre de l\'Union des Producteurs de Films Francophones (UPFF).',NULL,NULL,NULL,'824715913041-50','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=824715913041-50','04/03/14 16:40:26','2014-12-03T06:30:54.825648','(+32) 25882790','04/03/14 16:41:51','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(121,'other','./contribution_ykICCvc.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(122,'other','./contribution_2U8q6GC.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(123,'other','./contribution_MPcGTx4.pdf','Der Bundesverband der Film- und Fernsehregisseure in Deutschland e.V. ist Mitglied der Federation of European Film Directors Association (FERA), mit Sitz in Brüssel. Er stellt hier ein Vorstandsmitglied. Über die FERA werden die europäischen Aktivitäten wahrgenommen. Der BVR behält sich aber auch vor, eigene Stellungnahmen gegenüber der EU abzugeben.','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','Der Bundesverband der Film- und Fernsehregisseure e.V. ist der Berufsverband der Filmemacher in Deutschland. Er vertritt die Interessen von Film- und Fernsehregisseuren in: Urheberrecht, Kulturpolitik, kollektivvertraglichen Vereinbarungen, tarifvertragsrechtlichen sowie sozialpolitischen Angelegenheiten.Er berät seine Mitglieder in allen diesen Angelegenheiten individuell und vertritt ihre Interessen gegenüber dem Gesetzgeber in Deutschland und in der EU. Er ist in verschiedenen Kultur- und Filmförderungseinrichtungen aktiv und stellt hier Mitglieder im Verwaltungsrat und in Vergabegremien. Er vertritt die Interessen der Regisseure bei Verwertungsgesellschaften. Er nimmt selbst Wahrnehmungsaufträge der Mitglieder wahr und schließt für sie Gemeinsame Vergütungsregeln oder Tarifverträge.','33 Augsburger Straße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10789\r\n GERMANY','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Managing Director (CEO)','Bundesverband der Film- und Fernsehregisseure in Deutschland e.V.','Federation of European Film Directors (FERA)Deutscher KulturratBund Freier Berufe in Deutschland (BFB)',NULL,NULL,NULL,'96464667072-09','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=96464667072-09','03/11/11 18:19:43','2014-12-03T06:50:17.607104','(+0049) 3021005159','31/10/14 18:59:08','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(124,'other','./contribution_JbPvxzA.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'83200488975-08',NULL,NULL,NULL,NULL,NULL,'pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(125,'other','./contribution_n212UQB.pdf','Proposed Directive on Collective management of copyright and related rights and multiterritorial licensing of rights in musical works for online uses in the internal market','sub-national;national;European;global',NULL,'Der VUT verfügt nicht über ausreichend finanzielle Ressourcen, um Geld für die Lobbyarbeit auf europäischer Ebene ausgeben zu können.','','01/2013\r\n - \r\n 12/2013','Der Verband unabhängiger Musikunternehmen VUT vertritt die Interessen der deutschen Kreativwirtschaft im Bereich Musik. Zu seinen Mitgliedern zählen rund 1.300 Labels, Verleger, Produzenten, Vertriebe sowie eine zunehmende Anzahl von Künstlern, die sich selbst vermarkten. Unabhängige Unternehmen erzielen mehr als 60 Prozent der Unternehmensumsätze in der deutschen Musikwirtschaft.Als Verband engagiert sich der VUT auf deutscher, europäischer und internationaler Ebene für die Interessen der Musikwirtschaft, deren Kern die Musiker und Autoren bilden. Als Dienstleister bietet der VUT seinen Mitgliedern ein breites Spektrum an Beratungs-, Informations- und Serviceleistungen wie Mitgliederberatung, regelmäßige Aus- und Weiterbildungsveranstaltungen, Abschluss von Rahmenverträgen, Branchennewsletter.Darüber hinaus leistet der VUT durch seine praxisbezogene Beratung einen Beitrag dazu, den Nachwuchs der Musikwirtschaft auf dem Weg in eine neue Musikwirtschaftswelt zu begleiten und zu fördern.','3 Fidicinstr. \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10965\r\n GERMANY','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Referentin für Öffentlichkeitsarbeit und politische Kommunikation','VUT – Verband unabhängiger Musikunternehmen e.V.','IMPALA, WIN, Gründungsmitglied und Genossenschafter der Berlin Music Commission, CLASS, IMUC',NULL,NULL,NULL,'078270512631-90','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=078270512631-90','16/01/14 17:01:52','2014-12-03T06:59:06.340596','(+49) 030 53065856','15/09/14 13:13:33','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(126,'other','./contribution_Hiy3Ywv.pdf','Intellectual property, audiovisual and media, cultural diversity, education, e-commerce, information society, competition, consumer affairs, taxation, data protection','global',NULL,'','','01/2013\r\n - \r\n 12/2013','The IVF was set up in 1988 with the aim of providing national video associations with international representation of their members\' interests.The members of the IVF’s national associations are publishers of audiovisual content on digital media and online.The IVF\'s primary focus is on European regulatory and legal issues relevant to the audiovisual sector in Europe.','83 rue Ducale \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bruxelles 1000\r\n BELGIUM','250000\r\n € - 300000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director General','International Video Federation','The European Internet Foundation (EIF)www.eifonline.orgThe Creative Media & Business Alliance (CMBA)www.cmba-alliance.euCreativity Works!http://creativityworks.euNetopiawww.netopia.eu',NULL,NULL,NULL,'7013477846-25','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=7013477846-25','22/12/08 11:11:32','2014-12-03T06:25:15.054246','(+32) 2 503 40 63','09/12/13 09:48:55','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(127,'other','./contribution_Y3o723G.pdf','-','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Musiikkituottajat - IFPI Finland ry on Suomessa toimivien äänitetuottajien kattojärjestö, jonka tarkoitus on kehittää suomalaisen musiikkialan toimintaedellytyksiä. Alan edunvalvonnan lisäksi vastaamme mm. musiikkimyynnin tilastoista, ISRC-koodin hallinnoinnista, kultalevyistä, Suomen Virallisista Listoista ja Emma-gaalan järjestämisestä.','3 B Yrjönkatu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00120\r\n FINLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','toiminnanjohtaja','Musiikkituottajat - IFPI Finland ry','Musiikkituottajat - IFPI Finland ry on kansainvälisen tuottajajärjestön IFPI:n kansallinen ryhmä Suomessa. IFPI on ääniteteollisuuden kansainvälinen toimialajärjestö, joka edustaa n. 1.400 äänitetuottajaa 66 maassa.',NULL,NULL,NULL,'844898913174-75','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=844898913174-75','04/03/14 17:48:57','2014-12-03T06:37:36.916216','(+358) 9 6803 4050','23/09/14 13:28:27','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(128,'other','./contribution_3l2jI38.pdf','S\'agissant d\'information et de diffusion des connaissances sur l\'administration, la gestion et le droit, l\'activité de Victoires Editions est principalement nationale. Mais certaines revues sont membres de l\'EEP (European Environmental Press) www.eep.org. Victoires Editions a également lancé un magazine international (France Greentech magazine). Pour sa publication, il travaille avec le PEXE (www.pexe.org) et UBIFRANCE.','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Victoires Editions est une société d\'édition de presse professionnelle sur les thèmes de l\'environnement et de revues juridiques sur la communication, l\'environnement et les collectivités territoriales. A cette activité principale, s\'ajoute une activité d\'édition d\'ouvrages présents en librairies sur les mêmes thèmes. Victoires Editions tire ses revenus de la vente d\'abonnements, de la publicité, de la vente à l\'unité et de vente de contenus sur Internet.','38 Croix-des-Petits-Champs \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n PARIS CEDEX 01 75038\r\n FRANCE','20,000 €','II - In-house lobbyists and trade/professional associations','Companies & groups','Gérant','VICTOIRES EDITIONS','Victoires Editions est adhérent de :La Fédération Nationale de la Presse spécialisée (FNPS)Le Syndicat National de l\'Edition (SNE)Le Groupement Français de l\'Industrie de l\'Information (GFII)Cap Digital, pôle de compétitivité des services et contenus numériques L\'association European Environmental Press (EEP)Le Comité 21 (réseau d\'acteurs pour le développement durable)L\'Association Française des Ingénieurs et Techniciens de l\'Environnement (AFITE)La Fondation pour l\'Education à l\'Environnement en Europe (FEEE)',NULL,NULL,NULL,'852931113161-15','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=852931113161-15','04/03/14 15:07:37','2014-12-03T06:47:56.472448','(+33) 153458913','04/03/14 15:12:56','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(129,'other','./contribution_weYwpB5.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'001378613168-85',NULL,NULL,NULL,NULL,NULL,'fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(130,'other','./contribution_Bxxie8M.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(131,'other','./contribution_PwEC2HR.pdf','Der Börsenverein des Deutschen Buchhandels versteht sich als Sprachrohr der deutschen Buchbranche und steht Öffentlichkeit und Politik beratend zur Seite. Die Teilnahme an Konsultationen und Anhörungen und Gespräche mit Vertretern des Europäischen Parlaments und der Europäischen Kommission sind Hauptlobbyaktivitäten des Verbandes. In unregelmäßigen Abständen organisiert der Börsenverein darüberhinaus Informationsveranstaltungen und kulturelle Abende in Brüssel.','sub-national;national;European;global',NULL,'','Adresse in Berlin:Börsenverein des Deutschen Buchhandels e.V.Berliner BüroSchiffbauerdamm 510117 BerlinDeutschlandTel: +49 30 2800783-41','01/2013\r\n - \r\n 01/2014','Der Börsenverein des Deutschen Buchhandels ist der Spitzenverband der deutschen Buchbranche. Der Verband vertritt die Interessen sowohl der Buchverlage als auch der Buchhandlungen und des Zwischenbuchhandels. Er versteht sich als Sprachrohr der Buchbranche und steht Öffentlichkeit und Politik beratend zur Seite. Als Berufsverband setzt sich der Börsenverein für wirtschaftlich und politisch optimale Rahmenbedingungen im Sinne seiner Mitglieder ein. Dazu gehören insbesondere die Mittelstandsförderung, die Erhaltung der Buchpreisbindung und ein faires Urheberrecht.Mit der wirtschaftspolitischen Arbeit für das Buch ist untrennbar ein kultureller und gesellschaftlicher Auftrag verbunden. Deshalb veranstaltet der Börsenverein die Frankfurter Buchmesse und verleiht jährlich den Friedenspreis des Deutschen Buchhandels, einen der bedeutendsten Kulturpreise der Bundesrepublik, sowie den Deutschen Buchpreis für den besten deutschsprachigen Roman des Jahres. Er engagiert sich für das Kulturgut Buch und das Lesen, für die Meinungsfreiheit und die kulturelle Vielfalt der Gesellschaft.','16 Braubachstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Frankfurt am Main 60311\r\n GERMANY','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Referentin für Europapolitik','Börsenverein des Deutschen Buchhandels e.V.','Mitgliedschaft:FEP - Federation of European PublishersEIBF - European and International Booksellers FederationIPA - International Publishers Association',NULL,NULL,NULL,'043646212614-30','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=043646212614-30','14/01/14 12:25:49','2014-12-03T06:49:38.920810','(+49) 06913060','14/01/14 14:12:04','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(132,'other','./contribution_82FkuIC.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'581283413206-03',NULL,NULL,NULL,NULL,NULL,'pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(133,'other','./contribution_G5fwxKC.pdf','Member of CEPI (The European Coordination of Independent Producers), FIAT (International Federation of Film Distributors’ Associations) and FIAPF (Fédération Internationale des Associations de Producteurs de Films)','national',NULL,'','','01/2013\r\n - \r\n 12/2013','The \"Fachverband der Film- und Musikindustrie\" (Film and Music Austria) represents the interests of enterprises operating in the film and music industry throughout Austria. The association is a corporation under public law and is an independent specialist organisation with its own sphere of influence within the chambers of commerce. All companies dealing with the manufacture of moving pictures on video carriers of all kinds (film/video production and multimediaproduction), incl. programming companies as defined by the law on cable and satellite broadcasting, film distributing companies, video distribution companies are members of the professional association; in addition, the membership includes copying and reversal shops, studios, sound studios, video finishing firms and the manufacturers and copiers of sound recordings onto sound carriers of all kinds. Firms involved in record pressing and CD manufacture are also members of our professional association.','63 Wiedner Hauptstrasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Vienna 1045\r\n AUSTRIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','General Manger','Film and Music Austria','',NULL,NULL,NULL,'293640312756-23','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=293640312756-23','28/01/14 14:43:24','2014-12-03T06:05:59.844387','(+43) 5909003012','28/01/14 14:48:47','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(134,'other','./contribution_rmySBmA.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(135,'other','./contribution_tTUDiHd.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(136,'other','./contribution_B8BOHX3.pdf','• Response to the Consultation on Policy Options for the Blueprint to Safeguard Europe\'s waters was submitted in June 2012.• Response to the Science Committees consultation on ‘the Discussion Paper addressing the New Challenges for Risk Assessment’ was submitted in November 2012.• A RSC report, ‘Resources That Don’t Cost the Earth’ was published in 2012. This report summarises the discussions at a workshop that brought together leading academics, industrialists, government agencies and policymakers from across Europe to identify challenges and solutions related to resource efficiency as well as opportunities for collaboration.• RSC position papers on the subjects of nanotechnology and predictive toxicology were released in 2012.• Members of RSC staff have been in contact with Julie Girling, MEP and officials from the European Chemical Agency as well as the Commission.','national;European;global','AUSTRIA;BELGIUM;BULGARIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ANDORRA;ARGENTINA;AUSTRALIA;BAHAMAS;BAHRAIN;BANGLADESH;BARBADOS;BERMUDA;BOTSWANA;BRAZIL;BRUNEI;BURKINA FASO;CAMEROON;CANADA;CAYMAN ISLANDS;CHILE;CHINA;COLOMBIA;COSTA RICA;ECUADOR;EGYPT;ETHIOPIA;GEORGIA;GHANA;GIBRALTAR;GUYANA;HONG KONG;ICELAND;INDIA;INDONESIA;IRAN, ISLAMIC REPUBLIC OF;IRAQ;ISRAEL;JAMAICA;JAPAN;JORDAN;KAZAKHSTAN;KENYA;KOREA, REPUBLIC OF;KUWAIT;LEBANON;LIBYA;MACAO;MALAYSIA;MAURITIUS;MEXICO;MOROCCO;NAMIBIA;NEPAL;NEW ZEALAND;NIGERIA;NORWAY;OMAN;PAKISTAN;PANAMA;PERU;PHILIPPINES;PUERTO RICO;QATAR;RUSSIA, FEDERATION OF;SENEGAL;SERBIA;SIERRA LEONE;SINGAPORE;SOUTH AFRICA;SRI LANKA;SUDAN;SWAZILAND;SWITZERLAND;SYRIA, ARAB REPUBLIC;TAIWAN;TANZANIA, UNITED RE UBLIC OF;THAILAND;TRINIDAD AND TOBAGO;TUNISIA;TURKEY;UGANDA;UKRAINE;UNITED ARAB EMIRATES;UNITED STATES;URUGUAY;VENEZUELA;VIETNAM;ZAMBIA;ZIMBABWE','','Cambridge Office:Thomas Graham House (290), Science Park, Milton Road,Cambridge CB4 0WFTel: +44 (0)1223 420066 Fax: +44 (0)1223 423623','01/2013\r\n - \r\n 12/2013','The RSC is the largest organisation in Europe for advancing the chemical sciences. Supported by a worldwide network of members and an international publishing business, our activities span education, conferences, science policy and the promotion of chemistry to the public.To secure the best environment for the chemical sciences to flourish the RSC develops and supports science and technology policy and activities in chemical biology; environment, sustainability and energy; industry and technology; materials chemistry and analytical sciences as well as the in the core chemical sciences of inorganic, organic and physical chemistry.Many RSC members share common goals of establishing and promoting research, education and training and are recognised by the RSC as the primary source of expertise and policy advice on a huge range of issues.','n/a Burlington House Piccadilly\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London W1J 0BA\r\n UNITED KINGDOM','50000\r\n € - 100000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Executive Director - Communications, Policy, and Campaigns','Royal Society of Chemistry','The RSC is a member society of EuCheMS (the European Association for Chemical and Molecular Sciences). The RSC was involved in creating SusChem in a joint initiative with Cefic DECHEMA EuropaBio, GDCh and ESAB.','47,000','0','','622934711000-42','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=622934711000-42','15/04/13 14:58:19','2014-12-03T07:42:06.038864','(+44) 020 7437 8656','14/04/14 10:55:58','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(137,'other','./contribution_iXU3ybI.pdf','Media,E-commerce, Intellectual Property, Information Society, Data Protection, International Trade Agreements','global',NULL,'','','04/2012\r\n - \r\n 04/2013','Reed Elsevier is a world leading provider of professional information solutions in the Science, Medical, Risk, Legal & Business sectors.It combines content and data with analytics and technology to create innovative services and outstanding products.Reed Elsevier\'s heritage stretches back to the late nineteenth century and to the pioneering work of two industrialists, one English and one Dutch. The two companies merged in 1993.','1-3 Strand \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London WC2N 5JR\r\n UNITED KINGDOM','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Head of Government Affairs - Brussels','Reed Elsevier','European Internet Foundation (EIF)American Chamber of Commerce to the EU (Amcham EU)Creative and Media Business Alliance (CMBA)European Publishers Council (EPC)',NULL,NULL,NULL,'338398611148-62','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=338398611148-62','15/05/13 15:06:16','2014-12-03T07:41:48.796917','(+4420) 79307077','20/06/14 11:29:50','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(138,'other','./contribution_63U6VvN.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(139,'other','./contribution_vjGn5Ti.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(140,'other','./contribution_cgdrlU6.pdf','Freedom of Press and Media Pluralism, Digital Agenda, Copyright, Advertising, Consumer rights, Sports’ rights, VAT, Media Literacy, Sustainability, Market research on the industry.','European',NULL,'All of our income comes from membership fees.','','01/2013\r\n - \r\n 12/2013','The European Newspaper Publishers\' Association (ENPA) is an advocate of the newspaper publishing industry in Europe. ENPA represents the interests of European newspaper and news media publishers working on all platforms, both print and digital. ENPA represents over 5,200 national, regional and local newspaper titles. These daily and weekly titles are published in most European Union Member States as well as in Norway, Switzerland and Serbia.','1a Square du Bastion \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 3\r\n \r\n \r\n \r\n \r\n Brussels 1050\r\n BELGIUM','650,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Executive Director','European Newspaper Publishers\' Association','World Association of Newspapers and News Publishers, WAN-IFRACreative Media Business Alliance - http://www.cmba-alliance.euEuropean Advertising Standards Alliance - http://www.easa-alliance.orgNews Media Coalition',NULL,NULL,NULL,'5950962136-12','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=5950962136-12','04/07/08 10:47:01','2014-12-03T06:19:49.428028','(+32) 25510190','07/10/14 12:37:01','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(141,'other','./contribution_P3hRMIv.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(142,'other','./contribution_4JkFWDg.pdf','The MPA monitors the development of EU policies and legislation, notably in the fields of Intellectual Property, Culture, Audiovisual Policy, the Internal Market, Competition and the Information Society. In this context, the MPA regularly meets with national governments, EU officials, MEPs as well as industry counterparts and seeks to contribute constructively to public consultations associated with the EU\'s policy-development process. These objectives involve written submissions, participation in hearings, conferences and seminars as well as some amount of traveling (e.g. Strasbourg for EP Plenary sessions and Member States holding the Presidency of the Council).','national;European;global',NULL,'Our cost-estimate takes into account \"EU representation\" personnel costs and - as a pro-rata figure - costs related to rent, insurance and various office expenses.','EMEA Office of the Motion Picture Association (MPA)Chris Marcich, President and Managing DirectorAvenue des Arts, 46B-1000 BrusselsBelgiumPhone: +32-2-778.27.11Fax: +32-2-778.27.00','01/2013\r\n - \r\n 01/2014','Founded as a trade association, the MPAA (1922) and the MPA (1945) have broadened their mandate over the years to reflect the diversity of the ever-changing and expanding audiovisual industry. Its members include: Walt Disney Studios Motion Pictures; Paramount Pictures Corporation; Sony Pictures Entertainment Inc.; Twentieth Century Fox Film Corporation; Universal City Studios LLC; and Warner Bros. Entertainment Inc. Today the association advocates strong protection of the creative works produced and distributed by the audiovisual industry and seeks to promote a responsible internet. The Brussels-based MPA office acts as regional hub for Europe, Middle East and Africa. A large part of our work consists in providing support to local partner organisations active in the EMEA region on content protection and anti-piracy work. Another important part of the mission of the EMEA office is to working with film industries and creative communities throughout the region in pursuit of common interests. EU advocacy and government relations to champion the cause of strong legislation that protects rightholders’ needs and interests constitutes another element of the EMEA’s office work. Lobbying activities - including EU-related outreach - constitutes only a certain portion of the EMEA office\'s work.','1600 Eye Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Washington D.C. 20006\r\n UNITED STATES','800000\r\n € - 900000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','EU Affairs Director','Motion Picture Association','European Internet Foundation (EIF)Creative Media Business Alliance (CMBA)International Federation of Film Producers Associations (FIAPF)International Video Federation (IVF)Creativity Works !',NULL,NULL,NULL,'95201401713-39','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=95201401713-39','18/05/09 17:08:47','2014-12-03T07:45:27.375954','(+1-202) 2931966','05/05/14 13:13:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(143,'other','./contribution_RYys0wK.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(144,'other','./contribution_D2RkT49.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'876337512823-29',NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(145,'other','./contribution_FhZFxck.pdf','néant','national',NULL,'','','10/2012\r\n - \r\n 09/2013','Groupe de presse et d\'édition spécialisé dans les domaines juridique, fiscal, comptable, social, paye et patrimoine dans le but d\'apporter des solutions pratiques aux professionnels.','100 La Fayette \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n PARIS 75010\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Companies & groups','CEO','GROUPE REVUE FIDUCIAIRE','FNPS',NULL,NULL,NULL,'626385713140-49','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=626385713140-49','04/03/14 10:38:25','2014-12-03T06:44:21.564137','(+33) 147704242','04/03/14 10:45:58','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(146,'other','./contribution_dv5Gy1Y.pdf','ICMP is active in copyright protection, international trade, IP, Internet and digital issues, and consumer affairs.','global',NULL,'ICMP is financed by its members, mainly music publishing associations around the world.','Head office:ICMP P.O. Box 80Wangen/ZH 8602Switzerland','01/2011\r\n - \r\n 12/2011','ICMP is the world trade association representing the interests of the music publishing community internationally. The constituent members of ICMP are music publishers’ associations from Europe, Middle East, North and South America, Africa and Asia-Pacific. Included are the leading independent multinational and international companies and regional and national music publishers, mainly SMEs, throughout the world.As the voice and point of reference of music publishers, and the community of composers and songwriters, ICMP\'s mission is to increase copyright protection internationally, encourage a better environment for our business and act as an industry forum for consolidating global positions.','40 Square de Meeus \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','1000000\r\n € - 1250000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Legal and Regulatory Affairs','ICMP, the global voice of music publishing','',NULL,NULL,NULL,'65684839099-72','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=65684839099-72','05/07/12 16:51:17','2014-12-03T06:24:16.352011','(+0032) 24016894','10/06/14 09:57:48','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(147,'other','./contribution_DzAvUFN.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(148,'other','./contribution_Sbe5PBq.pdf','participation à Licenses for Europe','global',NULL,'','Les bureaux sont à Berlin.','01/2012\r\n - \r\n 12/2012','Représentation des intérêts des agences photographiques et d\'images auprès des institutions européennes et internationales.','46 rue de la Mare \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75020\r\n FRANCE','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Other similar organisations','directrice executive','Coordination of European Picture Agencies Press Stock Heritage','IPTCLinked Content CoalitionICOMPCreativity Works!',NULL,NULL,NULL,'197834213050-71','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=197834213050-71','25/02/14 10:43:17','2014-12-03T06:41:35.918797','(+00331) 49 29 69 78','25/02/14 10:52:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(149,'other','./contribution_XaewL49.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(150,'other','./contribution_6LoAuUx.pdf','-','national',NULL,'This statement does not include the costs made by group associations of the Dutch Publishers Association.','The Dutch Publishers Association has the following member groups, and seeks to provide an optimum representation of the specific interests of individual members within these groups:- General Publishing Group (GAU)- Educational Publishing Group (GEU)- Media for science and profession (MVW)- Dutch Newspaper Publishers Association (NDP Nieuwsmedia)- Consumer Magazines Group (GPT)','01/2013\r\n - \r\n 12/2013','The Dutch Publishers Association represents the collective interests of publishers of literature, entertainment & lifestyle, news and information products for education, the professional market and science.','6 Hogehilweg \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: Postbus 12040\r\n \r\n \r\n \r\n \r\n Amsterdam-Zuidoost 1100 AA\r\n NETHERLANDS','20,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Directeur','Nederlands Uitgeversverbond','',NULL,NULL,NULL,'522616312801-02','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=522616312801-02','31/01/14 14:22:57','2014-12-03T07:17:18.835493','(+31) 204309150','31/01/14 14:23:09','nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(151,'other','./contribution_6SSAS1v.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(152,'other','./contribution_UawIm5Z.pdf','- Digital Agenda- Digital Single Market- Copyright reform- Data Protection- e-Privacy- e-Commerce- Universal service- State Aid- Radio Spectrum Policy Programme- Data Retention- ICT Research and Development','global',NULL,'None','Liberty Global(Brussels office)Avenue des Arts 41 - 4th floor1040 BrusselsBelgium','01/2013\r\n - \r\n 12/2013','Liberty Global, Inc. (“Liberty Global”) is the leading international cable operator offering advanced video, telephone, and broadband internet services. We operate broadband communications networks in 14 countries principally located in Europe operating under the brands UPC, Unitymedia (Germany), and Telenet (Belgium), VTR (Chile), and AUSTAR (Australia). Liberty Global’s operations also include significant media and programming businesses such as Chellomedia, a world class multimedia content provider based in Europe, as well as interests in content businesses in each of our regional markets. Through the efforts of 20,000 employees worldwide, Liberty Global connects 17.9 million customers to the world of information, communications, and entertainment. As of September 30, 2011, Liberty Global’s networks passed approximately 32.0 million homes and served more than 29.3 million Revenue Generating Units (RGUs), including approximately 16.9 million video subscribers, of which 9.0 million were digital cable and Direct-to-Home (DTH) satellite subscribers, 7.2 million broadband internet subscribers, and 5.2 million voice subscribers.In the converging world of broadband video, voice and internet, Liberty Global is at the forefront in driving technological innovation to deliver transformational new products and advanced services that are “simply for everyone”. Our affiliate operations are differentiated by the powerful combination of Liberty Global\'s global scale, robust network infrastructure, and centralized technology platforms, together with unparalleled local-level content and service expertise. Liberty Global has a representative office to the European Union Institutions in Brussels. We use this as a base for ongoing dialogue to the European Commission, Members of the European Parliament, and the EU competition authority on major regulatory and public policy issues we face, and in order to manage our relationships with key EU trade associations.','53 Boeing Avenue \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: Catrina Neale\r\n \r\n \r\n \r\n \r\n Schiphol-Rijk 1119 PE\r\n NETHERLANDS','1000000\r\n € - 1250000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Vice-President European Policy','Liberty Global, Inc.','- Cable Europe- European Internet Foundation- American Chamber of Commerce (AmCham) EU- EuroISPA- Digital Interoperability Forum (DIF)- AEPOC (Anti-piracy association)British Chamber of Commerce (Britcham)',NULL,NULL,NULL,'82853397708-89','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=82853397708-89','02/02/12 12:24:21','2014-12-03T07:17:03.134211','(+31) 207789860','08/01/14 17:05:29','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(153,'other','./contribution_Z5OZSDi.pdf','Management of Copyright and Related RightsPrivate Copying LeviesCreative Europe','national',NULL,'','','01/2013\r\n - \r\n 12/2013','The Unión Fonográfica Independiente (UFi) is a non-for-profit association of music producers in Spain, which represents more than 50 companies. Its main objective is to represent the independent music sector at institutions and national and international organizations. It also has as its mission:To promote understanding by society of the importance of the cultural industry in general, and music in particular; the importance of the phonogram as cultural heritage, both as tangible cultural asset and intangible heritage container; and also to foster respect for and to defend intellectual property.To foster the recognition, protection and promotion of artistic and cultural diversity and to promote cultural expression in the languages and dialects of the Spanish state.To promote scientific and technological innovation, cultural information exchange and coordination relationships, and collaboration and support among SMEs in the music industry, both nationally and internationally.','4 Abdón Terradas \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Madrid 28015\r\n SPAIN','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','International Relations','Unión Fonográfica Independiente','UFi is a board member of IMPALA (Independent Music Companies Association) and a member of WIN (Worldwide Independent Music Industry Network).',NULL,NULL,NULL,'727640710082-69','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=727640710082-69','12/11/12 09:34:09','2014-12-03T07:30:50.164465','(+34) 913658303','16/10/14 11:31:18','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(154,'other','./contribution_FaKlDOG.pdf','Green Paper on the online distribution of audiovisual works, Radio Spectrum Policy Programme, Communication on Net Neutrality, Communication on E-Commerce and online services, Data Protection Regulation proposal, Media Programme/Creative Europe, Digital Agenda, Enforcement Directive.','sub-national',NULL,'','EU Liaison Office in BrusselsRue des Chartreux, 19 – 1000 Brussels Tel. +32.2.735 55 53 Fax +32.2.735 4019rep@mediaset.be','01/2013\r\n - \r\n 12/2013','Mediaset S.p.A. encompasses the leading commercial TV network in Italy (founded in 1978) within one of Europe’s most innovative multimedia production and distribution groups, with total employees amounting to 6,113 (4,735 in Italy and 1,378 in Spain) as of 31 December 2011.The Group’s activities range from free commercial digital terrestrial TV and Pay TV (Mediaset Premium) to content production and new media services on the web. Since 2004, further to the launch of DTT in Italy, Mediaset has complemented its flagship FTA channels (Canale5, Italia1 and Rete4) with additional free services, among which: Boing, the first free DTT themed channel expressly designed for children, Cartoonito, an infants’ channel, Iris, a cultural themed channel, and TGCOM24, a 24-hours news programme with a dedicated TV channel that can also be viewed in streaming on computers, tablets and smartphones. Ongoing developments towards multi-platform distribution are carried out as follows: Mediaset Premium, launched in 2005, offering a DTT pay-TV service with six bespoke packages including football, cinema, documentaries and TV-series; Premium Play, available since November 2011, a non–linear TV system featuring over 2000 content items available across different platforms (including Xbox and Ipad).On 30 December 2011, El Towers - wholly owned by Mediaset through the subsidiary Elettronica Industriale S.p.A, (responsible for planning, construction and running network infrastructure, electronic communication services and all connected business activities) - and Digital Multimedia Technologies S.p.A. (DMT) signed the agreement for the merger of El Towers into DMT. In 2007, Mediaset acquired Medusa Film SpA, one of Italy’s main concerns in the production and distribution of Italian and foreign films, engaged in the entire post-production cycle, from cinema release to home videos and the marketing of television rights. With the acquisition of Telecinco in 1990 and the creation of Mediaset España in April 2011, the Mediaset Group is one of the most successful commercial broadcasters in Spain. At the end of 2010, Telecinco completed the acquisition of 100% of the free-to-air television operations of Cuatro and of 22% of the pay TV operations of Digital Plus (controlled by Prisa TV Group with a 56% stake and partly owned by Telefonica with a 22% participation). As a result of these operations, Mediaset España aims at consolidating its leadership position in the commercial television market in Spain.','3 Via Paleocapa \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Milan 20121\r\n ITALY','300000\r\n € - 350000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Director, International Affairs','MEDIASET S.p.A.','Association of Commercial Television in Europe – ACTCONFINDUSTRIAAssociation of Television and Radio sales houses – EGTABroadcast Networks Europe – BNECreative and Media Business Alliance (CMBA)',NULL,NULL,NULL,'91471238809-21','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=91471238809-21','22/05/12 12:32:26','2014-12-03T07:09:56.916497','(+39) 02 2514 7423','28/04/14 15:53:31','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(155,'other','./contribution_d1J1Sjk.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(156,'other','./contribution_p12VyGK.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(157,'other','./contribution_4rA4nZW.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(158,'other','./contribution_xlEpZqz.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(159,'other','./contribution_iIpsTsm.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(160,'other','./contribution_Rihaxdz.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(161,'other','./contribution_w0BS97h.pdf','As the voice of scholarly and academic publishers, STM actively engages with an international community of stakeholders on copyright and legal issues in the digital age, and advocates public policies that recognize the importance of the intellectual contribution of STM publishing to society (quality, innovation, distribution and preservation)The mission of STM is to create and improve a positive, healthy and sustainable international business environment for STM\'s worldwide industry by streamlining and enabling the communication path between involved stakeholders. We do so by:educating key stakeholders about the value that STM publishers add to scholarly communicationadvocating the adoption of policies that recognize and support the key role of STM publishers in implementing innovative solutions to advance science and contributing positively to the knowledge societyacting with integrity and honesty in fulfilling our role in the dissemination and discovery of scholarly communication STM participates in the development of information identification protocols and electronic copyright management systems. STM members are kept fully up to date (via newsletters, the STM website, and e-mail) about the issues which will ultimately affect their business. STM organises seminars,training courses, and conferences. Its General Assembly is held annually, one day preceding the Frankfurt Book Fair.','global',NULL,'','Square du Bastion 1 A, 1050 Brussels','01/2013\r\n - \r\n 12/2013','The mission of STM is to create a platform for exchanging ideas and information and to represent the interest of the STM publishing community in the fields of copyright, technology developments, and end user / library relations.STM Aims and Objectives1.1. to assist publishers and their authors in their activities in disseminating the results of research in the fields of science, technology and medicine; 2. to assist national and international organisations and communications industries in the electronic environment, who are concerned with improving the dissemination, storage and retrieval of scientific, technical and medical information; 3. to carry out the foregoing work of the Association in conjunction with the International Publishers Association (IPA) and with the national publishers associations and such other governmental and professional bodies, international and national, who may be concerned with these tasks.','267 Prama House, Banburry Road Summertown\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Oxford OX27HT\r\n UNITED KINGDOM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director Public Affairs','International Association of Scientific, Technical and Medical Publishers','International Publishers Association (IPA/UIE)Federation of European Publishers (FEP/FEE)International Federation of Reprographic Rights Organisations (IFRRO)',NULL,NULL,NULL,'98356852465-08','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=98356852465-08','08/10/09 16:01:19','2014-12-03T07:39:50.026673','(+44) 1865 339321','15/09/14 16:38:23','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(162,'other','./contribution_UNAfWRv.pdf','De belangrijkste aandachtsgebieden zijn het auteurs- en naburig recht, mediawijsheid en leeftijdsclassificatie en kwesties die te maken hebben met de distributie van audiovisuele producten on line.','national;European',NULL,'Belangenbehartiging bij de Europese instellingen vindt plaats door inzet van eigen personeel, te weten de Directeur-voorzitter. Hij wordt daarbij indien nodig ondersteund door een interne jurist. Voorts wordt van tijd tot tijd samengewerkt met medewerkers van de internationale organisaties waar NVPI lid van is (IFPI, ISFE en IVF).','NVPI is de branchevereniging van de entertainmentindustrie en vertegenwoordigt het merendeel van de Nederlandse muziekmaatschappijen, uitgevers van audiovisuele content op digitale media en online en uitgevers van games en andere interactieve software. NVPI bestaat uit drie verenigingen: NVPI Audio, NVPI Video en NVPI Interactief. Elke vereniging kent zijn eigen bestuur. Uit deze drie besturen wordt een federatiebestuur gevormd. Dit federatiebestuur is verantwoordelijk voor het bureau van NVPI. NVPI Audio is aangesloten bij de internationale branchegorganisatie, IFPI. NVPI Video is aangesloten bij de internationale videofederatie, IVF. NVPI Interactief is lid van de Europese organisatie ISFE.','01/2013\r\n - \r\n 12/2013','NVPI stelt zich ten doel een zo vruchtbaar mogelijk businessklimaat voor haar leden te scheppen. Om dat te bereiken vertegenwoordigt NVPI de entertainmentbranche bij overheid, pers, politiek en in relevante overlegstructuren. Daarnaast levert NVPI een aantal diensten uitsluitend of tegen korting aan haar leden.','6 Hogehilweg \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Amsterdam 1101 CC\r\n NETHERLANDS','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Directeur-voorzitter','NVPI','NVPI is aangesloten bij IFPI, IVF en ISFE.',NULL,NULL,NULL,'35784911929-52','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=35784911929-52','29/06/09 18:02:06','2014-12-03T07:17:29.910755','(+020) 3116010','11/06/14 13:41:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(163,'other','./contribution_WB9EnQz.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(164,'other','./contribution_obvgHLe.pdf','IFPI is active in the field of copyright protection, internet issues, consumer affairs, international trade.','national;European;global',NULL,'IFPI is wholly financed by contributions from its member companies and national associations. We have no other form of financing.','IFPI is an international organisation representing the music industry worldwide. It has 1300 member companies, including the major record companies, many small and medium sized record companies. It\'s head office is based in London.','07/2013\r\n - \r\n 06/2014','IFPI is a worldwide organisation representing the music industry. Its 3 main priorities are:- Defending and extending rights of the industry around the world;- Enforcement of the industry rights;- Market access to third country markets','40 Square de Meeus \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','1000000\r\n € - 1250000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Head EU Parliamentary Relations and Government Affairs','IFPI Representing recording industry worldwide','AIM: Association of Independent Music EIF: European Internet FoundationBASCAP: Business Action to Stop Counterfeiting and Piracy',NULL,NULL,NULL,'60394321918-91','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=60394321918-91','29/06/09 11:16:28','2014-12-03T06:24:20.245829','(+322) 5119208','02/06/14 10:22:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(165,'other','./contribution_t7ioOda.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(166,'other','./contribution_FIix4Xa.pdf','Diffusion photographique','global',NULL,'','Diffuseur d\'ouvrages photographiques et éditeur, auteur texte des livres Gilles Régnier, photographe','01/2013\r\n - \r\n 12/2013','Diffusion édition auteur texte des ouvrages et reportages photographiques de Gilles Régnier','11 rémy de gourmont \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75019\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Companies & groups','Diffuseur éditeur auteur','Diffusion Gilles Régnier','Auteur à la SAIF, société des auteurs et images fixes',NULL,NULL,NULL,'837982712869-85','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=837982712869-85','05/02/14 19:27:32','2014-12-03T06:41:48.768273','(+33) 0601765644','05/02/14 19:28:41','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(167,'other','./contribution_YoN3SC8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(168,'other','./contribution_csuCtrF.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(169,'other','./contribution_F4cz4L5.pdf','- représenter les services de bibliothèques publiques et universitaires, les services d\'archives, les services de documentation- représenter les intérêts des usagers de nos services','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','L’IABD… se donne pour objectifs :de favoriser l’accès du plus grand nombre à l’information et à la culture ;de promouvoir et faire connaître les missions, activités et services des organismes oeuvrant pour la collecte, la conservation, la mise en valeur et la diffusion des œuvres de l’esprit et de l’information, quels qu’en soient les supports ;d’être force de proposition lors de la définition des politiques publiques dans le cadre des traités internationaux, des législations européenne et française ;dans le respect des compétences et missions des associations membres, et dans celui du principe de subsidiarité :d’exercer une veille sur toute question les concernant,de représenter les associations qui la constituent auprès de tous partenaires et interlocuteurs,de communiquer par tous moyens auprès du grand public et de publics et interlocuteurs ciblés.','31 de Chabrol \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75010\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','président','Interassociation Archives Bibliothèques Documentation...','',NULL,NULL,NULL,'807794813079-23','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=807794813079-23','27/02/14 21:22:45','2014-12-03T06:44:43.201264','(+33) 155331030','27/02/14 21:23:06','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(170,'other','./contribution_gtk0BgV.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sk',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(171,'other','./contribution_cy3I7Mt.pdf','Active participation on activities of European library organisations (EBLIDA, LIBER, CENL)','national','FINLAND','The total budget of our Library is roughly 12 million euros.','','01/2013\r\n - \r\n 01/2014','To preserve and provide access to national cultural heritage materials.','36 Unioninkatu \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 15\r\n \r\n \r\n \r\n \r\n Helsinki 00014\r\n FINLAND','','IV - Think tanks, research and academic institutions','Academic institutions','Chief Legal Advisor','The National Library of Finland','','280','','','722458912747-25','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=722458912747-25','28/01/14 08:56:44','2014-12-03T06:38:13.107831','(+358) 91911','28/01/14 09:00:10','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(172,'other','./contribution_dWvHoou.pdf','Harmonisierung des europäischen Rechtsrahmens im Urheber- und Datenschutzrecht','global','GERMANY','Die Finanzierung des Instituts erfolgt durch die Universität zu Köln','','01/2014\r\n - \r\n 02/2014','Universitäre Forschung und Lehre im Bereich des gesamten Medienrechts, einschließlich des Urheber- und Wettbewerbsrechts, des Persönlichkeits- und Datenschutzes, Ausbildung von Studierenden, Doktoranden und sonstigen Postgraduierten; Publikation im Bereich des Medienrechts, Erstellung von Gutachten und Expertisen.','22a Albertus Magnus Platz \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Köln 50923\r\n GERMANY','','IV - Think tanks, research and academic institutions','Academic institutions','Direktor','Institut für Medienrecht und Kommunikationsrecht der Universität zu Köln','','15','0','','221549413148-92','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=221549413148-92','04/03/14 11:35:44','2014-12-03T06:55:43.400988','(+221) 4708364','04/03/14 11:36:24','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(173,'other','./contribution_8LTXm9K.pdf','2013 keine','national;European;global','GERMANY','Die Deutsche Nationalbibliothek wird aus dem Haushalt der Bundesrepublik Deutschland finanziert.','German National Library','01/2013\r\n - \r\n 12/2013','The German National Library is the central archival library and national bibliographic centre for the Federal Republic of Germany. Its task, unique in Germany, is to collect, permanently archive, comprehensively document and record bibliographically all German and German-language publications from 1913 on, foreign publications about Germany, translations of German works, and the works of German-speaking emigrants published abroad between 1933 and 1945, and to make them available to the public. Furthermore, all music-related publications are collected, irrespective of the form of publication and the data carrier. The German National Library maintains co-operative external relations on the national and international level. It is also the leading partner in developing and maintaining rules and standards in Germany and plays a significant role in the development of international bibliographic standards.','1 Adickesallee \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Frankfurt 60322\r\n GERMANY','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Other public or mixed entities, etc.','Head of Administration','Deutsche Nationalbibliothek','Organisationen, Verbünde und Verbände (national wie international), die sich mit nachstehenden Themenbereichen befassen:Bibliothekarische Themen (einschließlich Museen und Archive)InformationstechnikAllgemeine Verwaltungsthemen','800','','','227784612834-18','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=227784612834-18','20/02/14 13:24:21','2014-12-03T06:51:51.458726','(+49 69) 15252000','20/02/14 13:25:54','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Public entity','Government'),(174,'other','./contribution_fwwsIgZ.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'344425713120-93',NULL,NULL,NULL,NULL,NULL,'cs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(175,'other','./contribution_C4ojOre.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'235816012858-33',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(176,'other','./contribution_RiHLKhn.pdf','Konzultace k přezkumu evropského autorského práva','sub-national;national','CZECH REPUBLIC','','','01/2013\r\n - \r\n 12/2013','Západočeská univerzita v Plzni je podle zákona č. 111/1998 Sb., o vysokých školách a o změně a doplnění dalších zákonů ve znění pozdějších předpisů veřejnou vysokou školou univerzitního typu. Předmět činnosti ZČU v souladu se zákonem tvoří vzdělávací, výzkumná a vývojová, umělecká a další tvůrčí činnost v didaktické, dopravní, ekonomické, elektronické, elektrotechnické a fyzikální oblasti, oblasti geomatiky, energetiky, ekologie, sdělovací techniky, dále humanitní, informační, kybernetické, matematické oblasti, oblasti mechaniky, dále pedagogické, počítačové, právní, přírodovědné, psychologické, zdravotnických studií, společenskovědní, strojní, tělovýchovné, umělecké a uměnovědné oblasti a související oblasti hraniční a interdisciplinární.Vzdělávací činnost se uskutečňuje v akreditovaných studijních programech nebo v programech celoživotního vzdělávání v souladu s řádem celoživotního vzdělávání. Výzkumná, vývojová, umělecká a další tvůrčí činnost se uskutečňuje v celém rozsahu, od činností badatelských k vývojovým a aplikačním činnostem ve vztahu na potřeby praxe.Předmětem činnosti ZČU je dále vytváření podmínek pro spolupráci na národní a mezinárodní vysokoškolské úrovni a její podpora, účast v národních a nadnárodních vysokoškolských institucích a podpora mobility studentů s ohledem na její přínosy ve vzdělávání a organizace další činnosti pro rozvoj a posilování vztahů zejména mezi vysokými školami, k ústavům Akademie věd České republiky, s absolventy ZČU a s orgány státní správy a samosprávy a podpora aktivit směřujících k naplnění poslání, které pro ZČU vyplývá ze zákona a z obecných akademických zásad a principů.','2732/8 Univerzitní \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Plzeň 306 14\r\n CZECH REPUBLIC','','IV - Think tanks, research and academic institutions','Academic institutions','kancléřka','Západočeská univerzita v Plzni','EUA -European University AssociationUNEECC - University Network of the European Capitals of Culture EU','2,284','','','420959313187-85','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=420959313187-85','05/03/14 08:01:27','2014-12-03T06:34:39.426275','(+420) 377631000','05/03/14 08:12:59','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(177,'other','./contribution_46SbwrC.pdf','• Europe 2020 Strategy• Digital Agenda/Information Society• Single Market and Digital Single Market• Environmental policies and Sustainable Development• Data Protection and Network Security• Innovation, Research and Development • Intellectual Property Rights • Copyright Levies Reform • Trade policy• Consumer policy• Spectrum policy• Telecommunications policy• Standardization • Competition policy• Corporate Governance and Tax policies','global',NULL,'','Leo BaumannHead of Nokia EU OfficeRond Point Schuman 6B - 1040 Brussels','01/2013\r\n - \r\n 12/2013','At Nokia, we are committed to connecting people. We combine advanced technology with personalized services thatenable people to stay close to what matters to them. Every day, more than 1.2 billion people connect to one another with a Nokia device – from mobile phones to advanced smartphones and high-performance mobile computers. Today, Nokia is integrating its devices with innovative services through Ovi (www.ovi.com), including music, maps, apps, email and more.Nokia\'s NAVTEQ is a leader in comprehensive digital mapping and navigation services, while Nokia Siemens Networksprovides equipment, services and solutions for communications networks globally.','2-4 Keilalahdentie Nokia House AB \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 226\r\n \r\n \r\n \r\n \r\n Espoo 02150\r\n FINLAND','600000\r\n € - 700000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Head of EU Representative Office','Nokia','The main associations we belong to in Europe are:Digital EuropeEDIMAEK (Confederation of Finnish Industries)EABCEPCEIF',NULL,NULL,NULL,'35167875358-33','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=35167875358-33','21/02/11 15:53:49','2014-12-03T06:37:38.281440','(+358) 718034219','27/01/14 11:47:10','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(178,'other','./contribution_CbzWbe4.pdf','- konsultacje w sprawie reformy prawa autorskiego (KE)- dyrektywa UE dot. dzieł osieroconych i strategii IPR','sub-national;national;European;global','POLAND','Koalicja Otwartej Edukacji nie posiada jako instytucja społeczna bez osobowości prawnej żadnego finansowania, nie prowadzi księgowości ani nie pozyskuje finansowania ze środków publicznych. Działania takie podejmują poszczególne instytucje, będące jej członkami i decydujące o tym, czy i jak przeznaczyć część środków na działania KOED.','Koalicja Otwartej Edukacji jest porozumieniem organizacjipozarządowych i instytucji działających w obszarze edukacji, nauki i kultury. Celem jej działania jest budowanie, promocja i aktywizm na rzecz otwartych zasobów edukacyjnych rozumianych jako materiały, które są udostępnione w sposób otwarty i gwarantujący ich odbiorcom wolność wykorzystywania i odtwarzania utworu, wolność poznawania dzieła oraz stosowania zawartych w nim informacji, wolność redystrybucji i wolność dystrybucji dzieł pochodnych.Obecnie członkami KOED są: Fundacja Nowoczesna Polska, Stowarzyszenie Wikimedia Polska, Stowarzyszenie Bibliotekarzy Polskich, Interdyscyplinarne Centrum Modelowania Matematycznego i Komputerowego, Fundacja Instytutu Rozwoju Regionalnego, Stowarzyszenie EBIB, CentrumEdukacji Obywatelskiej, Fundacja Nowe Media, Fundacja Orange, Centrum Cyfrowe Projekt: Polska, Zachęta Narodowa Galeria Sztuki, Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie, Fundacja Wolnego i Otwartego Oprogramowania, Fundacja Liternet, Collegium Artium,Stowarzyszenie OpenStreetMap Polska, Fundacja Kolonia Artystów, Fundacja Laboratorium Badań i Działań Społecznych \"SocLab\", Instytut Kultury Miejskiej, Fundacja Pomocy Matematykom i Informatykom Niepełnosprawnych Ruchowo,Biblioteka Uniwersytecka w Toruniu, Fundacja Naukowa Przyjaciół Instytutu Historycznego UW KLIO, Instytut Kultury Polskiej na Wydziale Polonistyki UW, Ruch społeczny Obywatele Nauki, Stowarzyszenie Bibliosfera.org.Biuro Koalicji prowadzi Fundacja Nowoczesna Polska (Warszawa).','01/2013\r\n - \r\n 01/2014','Koalicja Otwartej Edukacji to nieposiadająca osobowości prawnej sieć współpracy 25 polskich instytucji kultury i nauki oraz organizacji pozarządowych. Jej celem jest tworzenie i upowszechnianie otwartych zasobów edukacyjnych oraz działalność na rzecz wdrożenia zasady otwartej edukacji w politykę edukacyjną na poziomie samorządów, kraju (Polski) oraz UE.Koalicja obok działalności edukacyjnej (warsztaty, wykłady, tworzenie i dystrybucja materiałów o prawie autorskim i otwartej edukacji) publikuje także analizy i stanowiska, których adresatami są instytucje państwa, a które dotyczą przepisów prawa autorskiego w kontekście praktyk edukacyjnych, systemu nauki i działalności publicznych instytucji kultury.','lok. 125 ul. Marszałkowska 84/92 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Warszawa 00-514\r\n POLAND','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Przewodniczący Prezydium','Koalicja Otwartej Edukacji','Koalicja Otwartej Edukacji formalnie nie może należeć do żadnych koalicji, stowarzyszeń czy federacji. Poszczególne tworzące ją instytucje nawiązują współpracę z licznymi stowarzyszeniami i środowiskami działającymi na rzecz reformy prawa autorskiego dla edukacji, na rzecz efektywnej polityki open access czy na rzecz społecznego prawa dostępu i korzystania ze zbiorów z domeny publicznej.Członkami Koalicji Otwartej Edukacji jest aktualnie 25 podmiotów:Fundacja Nowoczesna PolskaStowarzyszenie Wikimedia Polska Stowarzyszenie Bibliotekarzy PolskichInterdyscyplinarne Centrum Modelowania Matematycznego i KomputerowegoFundacja Instytutu Rozwoju RegionalnegoStowarzyszenie EBIBCentrum Edukacji ObywatelskiejFundacja Nowe MediaFundacja OrangeCentrum Cyfrowe Projekt: PolskaZachęta Narodowa Galeria SztukiAkademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie Fundacja Wolnego i Otwartego OprogramowaniaFundacja LiternetCollegium ArtiumStowarzyszenie OpenStreetMap PolskaFundacja Kolonia Artystów Fundacja Laboratorium Badań i Działań Społecznych „SocLab”Instytut Kultury MiejskiejFundacja Pomocy Matematykom i Informatykom Niepełnosprawnych RuchowoBiblioteka Uniwersytecka w ToruniuFundacja Naukowa Przyjaciół Instytutu Historycznego UW KLIO Instytut Kultury Polskiej na Wydziale Polonistyki UWRuch społeczny Obywatele NaukiStowarzyszenie Bibliosfera.org.','25','0','','813401113189-16','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=813401113189-16','24/03/14 13:59:20','2014-12-03T07:21:00.194272','(+58) 22 6213017','24/03/14 13:59:56','pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(179,'other','./contribution_0Bv9Dve.pdf','initiatieven met betrekking tot het auteursrecht','sub-national',NULL,'','','01/2013\r\n - \r\n 12/2013','Missie:De VVBAD is dé beroepsvereniging in Vlaanderen van bibliothecarissen, archivarissen en documentalisten. Onze ledenvereniging, ondersteund door een professioneel team, stimuleert overleg en samenwerking in het werkveld, met zin voor verdieping en vernieuwing. Voor al onze leden, zowel personen als organisaties, zijn we een platform voor uitwisseling van kennis en expertise. Door te netwerken, te informeren en activiteiten te organiseren, streven we naar de verdere professionalisering en ontwikkeling van de sector. De VVBAD vertegenwoordigt de sector bij overheden en andere partners. Wij treden op als adviseur en belangenbehartiger.Zo ijveren we ervoor dat alle burgers nu en in de toekomst gebruik kunnen maken van goed bewaarde en toegankelijke informatie.','179 Statiestraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berchem 2600\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','coördinator','Vlaamse Vereniging voor Bibliotheek, Archief & Documentatie','De VVBAD is lid van internationale beroepsorganisaties voor bibliotheek en archief: * International Federation of Libary Associations and Institutions (IFLA)* International Council on Archives* European Bureau of Library, Information and Documentation Associations (Eblida)',NULL,NULL,NULL,'843408612805-93','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=843408612805-93','31/01/14 15:46:07','2014-12-03T06:31:04.767032','(+03) 281 44 57','31/01/14 15:53:25','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(180,'other','./contribution_Fw53fDC.pdf','consultatie auteursrechtherziening','national',NULL,'nvt','','01/2013\r\n - \r\n 12/2013','De Vereniging van Openbare Bibliotheken (VOB) is de brancheorganisatie van de openbare bibliotheken en landelijke en provinciale ondersteuningsorganisaties. De VOB verenigt de branche openbare bibliotheken. De openbare bibliotheken verlenen diensten aan zo\'n zes miljoen gebruikers - waarvan er vier miljoen lid zijn - en alle scholen. 9.000 mensen (4400 fte) hebben een baan in de openbare bibliotheek. Onze branche zet meer dan 600 miljoen euro om.BelangenNamens haar leden behartigt de VOB de gemeenschappelijke belangen van de openbare bibliotheken, de provinciale en de landelijke ondersteuningsorganisaties. Vanuit het perspectief van maatschappelijk ondernemerschap. Zo kunnen wij de aangesloten organisaties versterken. Kerntaken van de VOB zijn:Collectieve belangenbehartiging en gezamenlijke strategieontwikkeling; Afspraken maken tussen de leden onderling en met derden namens de leden (in- en extern organiseren van de branche);Diensten leveren op basis van bovenstaande taken; De vereniging onderhouden.','6 Wijnhaven \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 16146\r\n \r\n \r\n \r\n \r\n Den Haag 2500 BC\r\n NETHERLANDS','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','public affairs','Vereniging van Openbare Bibliotheken','Wij zijn lid van EBLIDA, IFLA en FOBID',NULL,NULL,NULL,'898112012990-20','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=898112012990-20','26/02/14 10:31:36','2014-12-03T07:18:52.345576','(+31) 703090500','26/02/14 10:55:38','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(181,'other','./contribution_fBYUbIj.pdf','Autorské právo - veřejná konzultace k přezkumu evropského autorského práva.','national',NULL,'Celkové příjmy organizace v roce 2012 činily 2 343 596 Kč, z toho členské příspěvky 1 136 300 Kč a dotace z Ministerstva kultury a Ministerstva zemědělství 393 000 Kč.','','01/2013\r\n - \r\n 12/2013','Svaz knihovníků a informačních pracovníků České republiky (SKIP) je dobrovolnou profesní a stavovskou organizací knihovníků a informačních pracovníků, která má charakter občanského sdružení.Posláním SKIP je usilovat o soustavné zvyšování úrovně knihovnické a informační práce a s tím spojené prestiže oboru a o to, aby ze strany státu, zřizovatelů knihoven a informačních institucí byly vytvářeny příznivé podmínky pro jejich rozvoj a činnost.SKIP sdružuje na 1 500 členů a je organizován na regionálním principu. Má 11 regionálních výborů. Po odborné linii zajišťují činnost sekce (knihovníků trenérů paměti, veřejných knihoven, vzdělávání, zaměstnavatelská), kluby (dětských knihoven, školních knihoven, tvořivých knihovníků, vysokoškolských knihovníků, frankofonní, klub lékařských knihoven) a komise (ediční, pro zahraniční styky).Z ČINNOSTI SKIP podílí se na tvorbě a realizaci koncepcí oboru a jeho legislativyúčastní se odborné přípravy specialistů a přispívá k celoživotnímu vzdělávání knihovníků a informačních pracovníků, zejména pořádáním odborných akcíspolupracuje se vzdělávacími institucemi a dalšími organizacemi, které se doma i v zahraničí zabývají knihovnictvím a informační činnostírozvíjí kontakty s profesními spolky a organizacemi stejného nebo podobného zaměření doma i v zahraničí, je členem Mezinárodní federace knihovnických asociací - IFLA a EBLIDAorganizuje společenské akce pro knihovníky a informační pracovníkyvydává 4x ročně svazové periodikum Bulletin SKIP','190 Klementinum \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Praha 1 110 01\r\n CZECH REPUBLIC','4,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Předseda komise SKIP pro zahraniční styky','Svaz knihovníků a informačních pracovníků České republiky','SKIP je národním členem IFLA (International Federation of Library Associations and Institutions, Mezinárodní federace knihovnických sdružení a institucí) od roku 1990.SKIP je členem EBLIDA (European Bureau of Library, Information and Documentation Associations, Evropská kancelář knihovnických, informačních a dokumentačních sdružení) od podzimu 2008.',NULL,NULL,NULL,'174820513026-88','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=174820513026-88','26/02/14 08:38:03','2014-12-03T06:34:32.069840','(+420) 221 663 379','05/03/14 12:19:43','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(182,'other','./contribution_XlzhJcI.pdf','- research and national libraries- research and education- copyright- digitisation- information literacy- (Open) access to research information - innovation in end-user services from research libraries in support of teaching, learning and research- preservation of cultural heritage- efficient and effective management in research libraries','European','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;CANADA;UNITED STATES','','','01/2012\r\n - \r\n 12/2012','LIBER is the principal organisation representing research libraries in Europe. Its current membership includes 420 national and university libraries in more than 40 countries. LIBER’s mission is to represent the interests of research libraries of Europe, their universities and researchers. LIBER promotes in particular:- efficient information services- access to research information, in any form whatsoever- innovation in end-user services from research libraries in support of teaching, learning and research- preservation of cultural heritage- efficient and effective management in research libraries','5 Prins Willem-Alexanderhof \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 90407\r\n \r\n \r\n \r\n \r\n The Hague 2509 LK\r\n NETHERLANDS','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Executive Director','LIBER - Association of European Research Libraries','','0','0','','24973952940-04','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=24973952940-04','05/01/10 10:43:52','2014-12-03T07:17:02.424860','(+31) 629047952','11/12/13 14:14:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(183,'other','./contribution_tAb3Pg4.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(184,'other','./contribution_VNn5uba.pdf','Contribution to Public Consultationon the review of the EU copyright rules','national;European',NULL,'inscription a registre au 04 mars 2014','','01/2013\r\n - \r\n 12/2013','Identité L’ADBU, association des directeurs et personnels de direction des bibliothèques universitaires et de la documentation, dont les statuts ont été déposés en 1974, existe comme amicale depuis 1970. Il s\'agit d\'une association de cadres, dirigée par un conseil d’administration de 10 personnes. Elle possède un bureau et 5 commissions permanentes : recherche et documentation, pédagogie et documentation, pilotage et évaluation, signalement et systèmes d’information, évolution des métiers et compétencesElle possède un permanent depuis le 1er Juillet 2013.Elle a comme principaux objectifs d\'oeuvrer à la promotion et au développement de la documentation et des bibliothèques de l’ESR (Enseignement supérieur et Recherche en France), de repositionner la fonction documentaire au centre des décisions liées notamment au numérique et la pédagogie. Elle a aussi vocation à quantifier l\'impact sociétal des bibliothèques de l\'ESR dans l’écosystème économique et juridique de la connaissance et du web.Dans une logique d’ouverture inter associative et à l’international elle est membre des instances suivantes : IFLA, LIBER, EBLIDAPositionnementL\'ADBU se positionne comme fonction structurante pour la recherche et la formation et comme un des acteurs essentiels de l’économie de la connaissance et du web. L\'ADBU est en résonnance avec les valeurs de l’internet : neutralité et pluralisme de l’information, libre-accès à la connaissance, pratiques collaboratives et centrée sur les usages (user centric) et les contenus.L\'ADBU représente l\'ensemble des acteurs de la documentation de l\'enseignement supérieur et de la recherche qui sont des créateurs de valeur via la médiation, la structuration, la conservation, la valorisation de l’information et du savoir (sous toutes leurs formes)L’ADBU peut ainsi contribuer à une grande variété de sujets : rénovation pédagogique, learning center, optimisation de l’évaluation scientométrique, web sémantique, web de données, open data, record and data management, open access, impact du numérique sur les usages et les pratiques, droit de l’information et de la propriété intellectuelle.L\'ADBU est membre actif de :IFLA : International Federation of Library Associations and Institutions, http://www.ifla.orgLIBER : Ligue des Bibliothèques Européennes de Recherche, http://www.libereurope.euEBLIDA : The European Bureau of Library, Information and documentation Associations, http://www.eblida.org','103 Boulevard Saint Michel \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75005\r\n FRANCE','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Directeur exécutif','Association des directeurs et personnels de direction des Bibliothèques Universitaires et de la documentation','L\'ADBU est membre actif de :IFLA : International Federation of Library Associations and Institutions, http://www.ifla.orgLIBER : Ligue des Bibliothèques Européennes de Recherche, http://www.libereurope.euEBLIDA : The European Bureau of Library, Information and documentation Associations, http://www.eblida.org',NULL,NULL,NULL,'662270213147-71','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=662270213147-71','04/03/14 12:14:23','2014-12-03T06:39:12.901785','(+33) 181691817','04/03/14 12:43:39','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(185,'other','./contribution_8293ZF6.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(186,'other','./contribution_Ofrk0Rh.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(187,'other','./contribution_be92uE8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(188,'other','./contribution_P5Zz6iB.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(189,'other','./contribution_iZe42v7.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sv',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(190,'other','./contribution_Yx5J0QH.pdf','Couperin est impliqué dans les projets européens OpenAIRE et FOSTER','national;European;global',NULL,'Couperin n\'a pas de dépenses liées à la représentation de ses intérêts. L\'association organise des journées d\'étude promouvant ses idées et rend public ses prises de position mais n\'en retire pas de bénéfices financiers.','siège hébergé par la Maison des Universités','01/2012\r\n - \r\n 12/2012','Principales missions :Recueil et analyse des besoins de ses membres.Évaluation, négociation et organisation de l’achat des ressources numériques aux meilleures conditions.Animation et développement d’un réseau national de compétences et d’échanges pour l’acquisition et la valorisation des ressources électroniques.Coopération nationale, européenne et internationale dans le domaine de la documentation et des publications numériquespromotion de l\'open access','103 Boulevard Saint Michel \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75005\r\n FRANCE','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','coordinateur du département services et prospective','Couperin','Couperin est membre de l\'ICOLC, de SELL, de l\'UKSG',NULL,NULL,NULL,'619265713096-78','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=619265713096-78','28/02/14 18:37:38','2014-12-03T06:41:37.324757','(+33) 0142864342','28/02/14 21:07:08','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(191,'other','./contribution_7mMeFWQ.pdf','Active participation in activities of Europpean Library organisations (CENL, LIBER, EBLIDA)','national','NORWAY','The total annual budget of the NLN is approx. 60M euro.','','01/2013\r\n - \r\n 12/2013','It is the ambition of the National Library of Norway to be the nation\'s memory and a multimedia centre for knowledge and culture.The main goals of the National Library are to:be one of Europe\'s most exciting and modern national librariespreserve, give access to and actively mediate the cultural heritage through the development of modern digital library servicesbe a source of and an infrastructure for research, learning, culture and language developmentcontribute to making the research and public libraries into active and topical institutions of society','110 Henrik Ibsens gate \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 2674 Solli\r\n \r\n \r\n \r\n \r\n Oslo 0203\r\n NORWAY','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Other public or mixed entities, etc.','acting National Librarian','the National Library of Norway','','480','','','315285713106-90','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=315285713106-90','03/03/14 10:03:45','2014-12-03T07:20:02.509633','(+47) 81001300','03/03/14 12:15:59','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Public entity','Government'),(192,'other','./contribution_0Z0WHnt.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'244423113077-54',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(193,'other','./contribution_pJ9XKvx.pdf','Pas d\'initiative liée à l\'UE l\'année précédente.','national',NULL,'Pas d\'activité liée à l\'UE l\'année précédente.','','01/2013\r\n - \r\n 12/2013','Cette association a pour buts :- l\'échange, la capitalisation et la diffusion d\'informations, d\'expériences et de savoir-faire,- la réalisation d\'études et d\'enquêtes,- la réalisation ou le référencement d\'outils répondant à des besoins communs,- la prospective sur l\'évolution des missions,- l\'ouverture sur les expériences étrangères,- la représentation des directeurs des bibliothèques municipales et intercommunales des grandes villes de France auprès de tout partenaire institutionnel, public ou privé.','43 rue Stanislas \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Nancy 54000\r\n FRANCE','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Présidente','Association des Directrices et directeurs des Bibliothèques municipales et Groupements intercommunaux des Villes de France','IABD...',NULL,NULL,NULL,'274950912610-52','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=274950912610-52','14/01/14 10:58:40','2014-12-03T06:39:13.763055','(+3) 83373883','14/01/14 10:59:07','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(194,'other','./contribution_9Pvp9WI.pdf','Open Access Roundtable Event','sub-national','CZECH REPUBLIC','','','01/2013\r\n - \r\n 12/2013','Jsme veřejná univerzální knihovna, kterou může využívat úplně každý. Naším posláním je získávat, zpracovávat, uchovávat a poskytovat informace, literaturu a další kulturní hodnoty. Zvláštní důraz klademe na služby pro rodiče s dětmi, mládež a studenty, služby seniorům, sociálně slabým a handicapovaným. Jsme tu pro všechny, kteří se chtějí rozvíjet, učit, studovat a bavit se podle vlastního výběru.Městská knihovna v Praze je krajská knihovna, jejíž funkce je definována § 11 zákona č. 257/2001 Sb., o knihovnách a podmínkách provozování veřejných knihovnických a informačních služeb (knihovní zákon), zejména potom následující:(1) Krajská knihovna je knihovnou s univerzálním knihovním fondem, případně doplněným specializovanými fondy. Krajská knihovna trvale uchovává konzervační fond a historický fond.(2) Krajská knihovna je součástí systému knihoven vykonávající koordinační, odborné, informační, vzdělávací, analytické, výzkumné, metodické a poradenské činnosti, v jejichž rámci téža) spolupracuje s Národní knihovnou při zpracování národní bibliografie a při zpracování souborného katalogu,b) zpracovává a zpřístupňuje regionální informační databáze a zabezpečuje koordinaci krajského bibliografického systému,c) je krajským centrem meziknihovních služeb,d) spolupracuje s knihovnami v kraji při zavádění nových technologií v oblasti zajištění veřejných knihovnických a informačních služeb.','1 Mariánské náměstí \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Praha 11572\r\n CZECH REPUBLIC','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Local, regional and municipal authorities (at sub-national level)','Fundraiser','Městská knihovna v Praze','Městská knihovna v Praze je členem:Sdružení knihoven - www.sdruk.czIFLA (The International Federation of Library Associations and Institutions) - www.ifla.orgSítě partnerských knihoven Open Library - openlibrary.orgIAML (International Association of Music Libraries Archives and Documentation Centres) - www.iaml.infoSIBMAS (International Association of Libraries and Museums of the Performing Arts) - www.sibmas.org','427','','','499776613030-41','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=499776613030-41','27/02/14 11:21:06','2014-12-03T06:34:22.481788','(+420) 222113555','27/02/14 11:25:20','cs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Local authority','Government'),(195,'other','./contribution_VEtnP6W.pdf','Within the NILDE Library Committee (CBN, Comitato Biblioteche NILDE) working group on \"Resource sharing\", thematic area 4.2 on \"Copyright impact on ILL and end-users\", we have contributed to the Public Consultation on the review of the EU copyright rules (March 2014).','national;European','GREECE;ITALY;SPAIN;SWEDEN;SWITZERLAND','The budget is based only on the annual subscription fees from member organisations.Membership is free for the first year, after which a subscription is paid.Three types of membership:- Single library: used by a public or private, not for profit, library- Public institution: used by a public institution to register all its libraries- Project or consortium: used by a consortium or by a given project to register all their libraries.','Consiglio Nazionale delle Ricerche Area di Ricerca di Bologna - Bibliotecanilde-info [at] area.bo.cnr.it','01/2013\r\n - \r\n 12/2013','NILDE (Network for Inter-Library Document Exchange) was conceived by the CNR (Italian National Research Council) Research Area Library in Bologna (https://biblio.bo.cnr.it/) within the context of the CNR BiblioMIME project.The NILDE network is a community of libraries formed around the use of the NILDE system to share their bibliographic resources on the basis of reciprocal collaboration, and to guarantee access to and circulation of scientific information.NILDE is, therefore, both a network of libraries sharing a precise and innovative idea of service, as well as a web-based application for Document Supply and Inter-Library Loan services.The founding principles of the NILDE network are stated in its Rules and Regulation (https://nilde.bo.cnr.it/learn.php?inc=rules), drafted with the participation of the member libraries themselves, which define the commitments of each library towards the others and the scope of the network and can be summarized as follows:- Guarantee maximum speed in locating, requesting and supplying documents.- Facilitate the spread and the use of a homogeneous standard of quality and participate in Document Supply and InterLibrary Loan services.- Stimulate interlibrary cooperation at all levels, starting with Document Supply and InterLibrary Loans.The NILDE network currently consists of more than 800 member libraries of the most important universities, public research and health organisations in Italy, Spain and Greece, and serves more than 20.000 users at those institutions.','101 Via Piero Gobetti \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bologna 40129\r\n ITALY','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Responsabile Biblioteca Area della Ricerca CNR di Bologna','Network for Inter-Library Document Exchange','','0','113','Università di Roma La Sapienza - IT (79 members);Hellenic Academic Libraries Link (HEAL Link) - GR (58 members);Università di Bologna - IT (58 members);Istituti di Ricovero e Cura a Carattere Scientifico (IRCCS) - IT (51 members);Università di Torino - IT (43 members);Università di Napoli Federico II (42 members);Università di Bari - IT (37 members);Consiglio Nazionale Ricerche (CNR) - IT (33 members);Università di Palermo - IT (32 members);Università di Padova - IT (22 members);Università di Milano statale - IT (21 members);Università di Cagliari - IT (19 members);Università di Parma - IT (19 members);Università di Pisa - IT (16 members);Università di Perugia - IT (13 members);Università di Genova - IT (12 members);Università di Milano Politecnico - IT (12 members);Università di Catania - IT (11 members);Università di Roma Tre - IT (11 members);Università di Sassari - IT (11 members);Istituto Nazionale di Astrofisica (INAF) - IT (10 members);Istituti Zooprofilattici Sperimentali (IIZZSS) - IT (10 members);Università di Macerata - IT (10 members);Università di Napoli Seconda Università - IT (10 members);Università di Firenze - IT (10 members);Università di Ferrara - IT (8 members);Università di Siena - IT (8 members);Università di Pavia - IT (8 members);Università di L\'Aquila - IT (7 members);Università di Trieste - IT (7 members);Università di Modena e Reggio Emilia - IT (7 members);Istituto Nazionale Geofisica e Vulcanologia (INGV) - IT (6 members);Aziende Sanitarie Locali (ASL) - IT (6 members);Università di Camerino - IT (6 members);Università di Vercelli - Università Piemonte Orientale - IT (6 members);Aziende Ospedaliere - IT (6 members);Università di Chieti-Pescara G. D Annunzio - IT (6 members);Università di Lecce - IT (5 members);Università di Roma Tor Vergata - IT (5 members);Università di Foggia - IT (5 members);Università di Varese - Università dell\'Insubria - IT (4 members);Università di Venezia Ca Foscari - IT (4 members);Università di Udine - IT (3 members);Università di Brescia - IT (3 members);Università di Salerno - IT (3 members);Università di Bergamo - IT (3 members);Università di Cassino - IT (3 members);ENEA - IT (3 members);Università di Viterbo - Università della Tuscia - IT (3 members);Università di Milano Bicocca - IT (3 members);Università di Benevento - Università del Sannio - IT (3 members);Agenzia Regionale per la Protezione dell\'Ambiente (ARPA) - IT (3 members);Università di Urbino - IT (3 members);Universidad de Extremadura - ES (2 members);Università di Milano Cattolica S. Cuore - IT (2 members);Universidad Castilla - La Mancha - ES (2 members);Università di Teramo - IT (2 members);Università di Verona - IT (2 members);Università di Reggio Calabria - IT (2 members);Università di Ancona - Università Politecnica delle Marche - IT (2 members);Università di Potenza - Università della Basilicata - IT (2 members);Università di Napoli Parthenope - IT (1 members);Universidad de Cantabria - ES (1 members);Università di Trento - IT (1 members);Università di Campobasso - IT (1 members);Ist. Naz. di Ricerca per gli Alimenti e la Nutrizione (INRAN) - IT (1 members);Universidad Granada - ES (1 members);Universidade da Coruña - ES (1 members);Universidad de Burgos - ES (1 members);Università di IMT Institute for Advanced Studies Lucca - IT (1 members);Università di Catanzaro - Magna Graecia - IT (1 members);Universitat Catòlica de San Vicènt Màrtir - ES (1 members);Agenzia nazionale per i Servizi Sanitari Regionali (AGENAS) - IT (1 members);Balearic Health Service - ES (1 members);Università di Cosenza - Università della Calabria - IT (1 members);Università di Venezia IUAV - IT (1 members);Organizzazione Sociopsichiatrica Cantonale (OSC) - CH (1 members);Università di Trieste SISSA - IT (1 members);Universidad Pablo Olavide - ES (1 members);Universidad Politécnica de Madrid - ES (1 members);Universidad de León - ES (1 members);Universidad de Salamanca - ES (1 members);Karolinska Institutet - SE (1 members);Universidad Rey Juan Carlos - ES (1 members);Università di Bari Politecnico - IT (1 members);Università di Milano IULM - IT (1 members);Universitat Internacional de Catalunya - ES (1 members);Universidad de Murcia - ES (1 members);Ist. Nazionale di Oceanografia e di Geofisica Sperimentale (OGS) - IT (1 members);Universidad Carlos III de Madrid - ES (1 members);Ist. Superiore per la Protezione e la Ricerca Ambientale (ISPRA) - IT (1 members);Università di Roma Campus Bio Medico - IT (1 members);Universitàt Politècnica de València - ES (1 members);Università di Bolzano - IT (1 members);Fondazione Edmund Mach - IT (1 members);Ist.Naz. per la Valutazione del Sistema dell\'Istruzione (INVALSI) - IT (1 members);Universidad Politécnica de Cartagena - ES (1 members);Istituto Nazionale di Ricerca Metrologica (INRIM) - IT (1 members);Consejo Superior de Investigaciones Cientificas - ES (1 members);Universidad de Cordoba - ES (1 members);Universidad Nacional de Educación a Distancia (UNED) - ES (1 members);Universidad de Jaén - ES (1 members);Universitat d\'Alacant - ES (1 members);Universidad de Alcalá - ES (1 members);Universidad Abat Oliba CEU - ES (1 members);Universidad de Almería - ES (1 members);Istituto Superiore di Sanità (ISS) - IT (1 members);Istituto Nazionale Fisica Nucleare (INFN) - IT (1 members);Universidad Pontificia de Comillas - ES (1 members);Università per stranieri di Perugia - IT (1 members);Università di Pisa Scuola Sup. S.Anna - IT (1 members);Universidad Cardenal Herrera CEU - ES (1 members);Universidade de Vigo - ES (1 members)','544030713098-06','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=544030713098-06','28/02/14 19:06:55','2014-12-03T07:10:08.101220','(+39) 0516398028','11/03/14 17:53:50','it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(196,'other','./contribution_Z4SYbMV.pdf','None.','sub-national','SWEDEN','Sixty percent of Regionarkivet\'s budget comes from the Region of Västra Götaland, forty percent from the City of Gothenburg.','Regionarkivet is the joint archival authority of two municipal organisations: the City of Gothenburg and the Region of Västra Götaland.','01/2013\r\n - \r\n 12/2013','Regionarkivet is to receive archival material from the various authorities and municipal companies within the City of Gothenburg and the Region of Västra Götaland, to preserve this information and to make it available to current and future researchers. Due to a special initiative from the City, the organisation also accepts archives from private associations.','5 Otterhällegatan \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 2154\r\n \r\n \r\n \r\n \r\n Gothenburg 403 13\r\n SWEDEN','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Local, regional and municipal authorities (at sub-national level)','Regional Archivist','Regionarkivet för Västra Götalandsregionen och Göteborgs Stad','Svenska arkivsamfundet [The Swedish Archives\' Association]Wikimedia Sverige','65','','','839203912832-24','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=839203912832-24','03/02/14 15:45:34','2014-12-03T07:32:06.006080','(+46) 317015000','03/02/14 15:47:51','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Local authority','Government'),(197,'other','./contribution_Om76slw.pdf','kultura','national','CZECH REPUBLIC','','','01/2013\r\n - \r\n 12/2013','Galerie je státní příspěvková organizace, jejímž hlavním posláním je v souladu se z. č. 148/49 Sb., o Národní galerii v Praze odborně spravovat, zpřístupňovat veřejnosti a vědecky zpracovávat díla malířská, sochařská a grafická.','12 Staroměstské náměstí \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Praha 1 110 15\r\n CZECH REPUBLIC','','IV - Think tanks, research and academic institutions','Academic institutions','registrar','Národní galerie v Praze','ICOMRada galerií ČRAsociace muzeí a galerií ČR','252','','','652810413081-60','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=652810413081-60','28/02/14 14:45:55','2014-12-03T06:34:23.438600','(+420) 222329331','03/03/14 11:37:30','pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(198,'other','./contribution_T79iOyU.pdf','Konzultace k přezkumu evropského autorského práva','national','CZECH REPUBLIC','','','01/2013\r\n - \r\n 12/2013','Postavení, cíle a úkoly Národní knihovny ČR jsou stanoveny zákonem (č. 257/2001 Sb., knihovní zákon, v platném znění)a zřizovací listina Národní knihovny České republiky vydaná ministrem kultury 30. 11. 2011, ve znění z 26. 4. 2012.Ustanovení § 9 zákona č. 257/2001 Sb.:Národní knihovna (1) Národní knihovna je knihovnou s univerzálním knihovním fondem doplněným specializovanými fondy. Národní knihovna trvale uchovává konzervační fond a historický fond. (2) Národní knihovna je centrem systému knihoven. V systému knihoven vykonává koordinační, odborné, informační, vzdělávací, analytické, výzkumné, standardizační, metodické a poradenské činnosti, v jejichž rámci zejménaa) formou souborného katalogu zpracovává evidenci knihovních dokumentů v knihovních fondech knihoven na území České republiky, kterou zpřístupňuje knihovnám,b) zpracovává národní bibliografii a zabezpečuje koordinaci národního bibliografického systému,c) plní funkci národní agentury pro mezinárodní standardní číslování knih a hudebnin,d) plní funkci národního centra meziknihovních služeb České republiky,e) plní funkci národního centra mezinárodní výměny oficiálních publikací,6)f) zastupuje knihovny systému knihoven při jednání s kolektivními správci autorských práv ve věci úhrady odměn za užití předmětů ochrany podle zvláštního právního předpisu7) a provádí úhradu odměn za jejich půjčování,g) zabezpečuje celostátní koordinaci regionálních funkcí a vyhodnocuje jejich plnění.','190 Klementinum \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Praha 11000\r\n CZECH REPUBLIC','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Other public or mixed entities, etc.','ředitel Knihovnického institutu','Národní knihovna ČR','Národní knihovna ČR je ze zákona centrem systému knihoven v České republice.Je členkou Sdružení knihoven - http://www.sdruk.cz/Je členkou IFLA - http://www.ifla.org/Je členkou CENL - http://web3.nlib.ee/cenl/index.phpJe členkou LIBER - http://www.libereurope.eu','446','','','737332212774-57','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=737332212774-57','20/02/14 12:53:04','2014-12-03T06:34:24.320367','(+420) 221663338','20/02/14 14:14:21','cs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Public entity','Government'),(199,'other','./contribution_DvChFfe.pdf','No actions.','sub-national;national;European;global','FINLAND','','','01/2013\r\n - \r\n 12/2013','MissionThe Aalto University strives to change the world through top-quality interdisciplinary research, pioneering education, surpassing traditional boundaries, and renewal. The Aalto University educates responsible, broadminded experts with a comprehensive understanding of complex subjects to act as society\'s visionaries.VisionThe best connect and succeed at Aalto University, an institution internationally recognized for the impact of its science, art, and learning.Values * A passion for exploring boundaries. * The freedom to be creative and critical. * The courage to influence and excel. * The responsibility to care, accept and inspire. * Founded on high ethics, openness, and equality.The increasing societal impact of universities creates both challenges and opportunities, which can be summarized as follows: * Focusing of operations based on quality * Making use of multidisciplinary expertise and partnerships to develop innovation know-how * Internationalization * Autonomy * Professionalizing university services and exploitation of information technology','1 Otakaari \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 11000\r\n \r\n \r\n \r\n \r\n Espoo FI-00076 AALTO\r\n FINLAND','','IV - Think tanks, research and academic institutions','Academic institutions','päällikkö','Aalto-korkeakoulusäätiö / Aalto University','','5,000','0','','25901146020-53','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=25901146020-53','14/06/11 09:58:37','2014-12-03T06:36:50.875299','(+358) 9 47001','20/05/14 11:19:08','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(200,'other','./contribution_djUfszV.pdf','EU Consultation','national','NETHERLANDS','Geen budget, middelen komen vanuit de hogescholen en SURF','Contact via e-mail is gewenst.','01/2013\r\n - \r\n 12/2013','Het netwerk auteursrechten informatiepunten-hbo coördineert de werkzaamheden van de auteursrechten informatiepunten binnen het hbo.','340 Graadt van Roggenweg \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Utrecht 3531 AH\r\n NETHERLANDS','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Documentair informatiespecialist','Netwerk Auteursrechten Informatiepunten HBO','SURF - ICT-samenwerkingsorganisatie van het hoger onderwijs en onderzoek','55','22','Amsterdamse Hogeschool voor de Kunsten (1 members);Avans Hogeschool (4 members);Fontys (1 members);Gereformeerde Hogeschool (1 members);De Haagse Hogeschool (1 members);Hanzehogeschool Groningen (8 members);HAS Hogeschool (2 members);Hogeschool Arnhem en Nijmegen (3 members);Hogeschool Utrecht (2 members);Hogeschool Van Hall Larenstein (2 members);HZ University of Applied Sciences (5 members);Inholland Hogeschool (2 members);Iselinge Hogeschool (1 members);Katholieke Pabo Zwolle (1 members);Marnix Academie (1 members);NHL Hogeschool (1 members);NHTV (1 members);Politieacademie (4 members);Saxion (4 members);Stenden Hogeschool (4 members);Windesheim (1 members);Zuyd Hogeschool (4 members)','439881912942-31','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=439881912942-31','13/02/14 10:25:39','2014-12-03T07:17:23.587519','(+31) 302346600','13/02/14 10:26:00','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(201,'other','./contribution_ygx9Lh4.pdf','Europeana','global','','','','01/2013\r\n - \r\n 12/2013','The mission of the Biblioteca de Catalunya (BC) is to gather, conserve and disseminate the bibliographical output of Catalonia and that production related with the Catalan linguistic field, and to watch over conservation and dissemination of the bibliographical heritage, and to maintain its condition of centre of consultation and scientific research of universal character, in both analogical and digital context.','56 Hospital \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Barcelona 08001\r\n SPAIN','','IV - Think tanks, research and academic institutions','Academic institutions','Head of Bibliographic Unit','Biblioteca de Catalunya','The library mantains links and contributes in several international projects, and it is member of organisations like EBLIDA, LIBER, IIPC, Europeana.','162','','','646483213226-44','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=646483213226-44','05/03/14 23:08:11','2014-12-03T07:27:11.385328','(+34) 932702300','05/03/14 23:08:37','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(202,'other','./contribution_fGlsD7R.pdf','Requirements from the QTLaunchPad stakeholder groups and survey of their needs and expectations in relation to quality translation. Specification of Multidimensional Translation Quality Metrics and preparation of pilot error corpora together with an analysis of the errors found in near-miss translations. Quality estimation baseline software and extensions. Launch of a platform for documentation, sharing, search and retrieval of all Machine translation -related resources. Planning of the big European quality translation initiative QT21.','European','GERMANY;GREECE;IRELAND;UNITED KINGDOM','','','07/2012\r\n - \r\n 07/2013','QTLaunchPad is a European Commission-funded collaborative research initiative dedicated to overcoming quality barriers in machine and human translation and in language technologies. It is preparing for a large-scale translation quality initiative for Europe. The QTLaunchPad consortium consists of world-leading research centres:- German Research Center for Artificial Intelligence (DFKI)- Dublin City University- University of Sheffield- Athena R.C. / Institute for Language and Speech Processing','6 Artemidos & Epidavrou \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Maroussi, Athens 151 25\r\n GREECE','','IV - Think tanks, research and academic institutions','Academic institutions','Head of Department','QTLaunchPad','','0','4','DFKI (15 members);Dublin City University (7 members);University of Sheffield (4 members);Athena RC/ILSP (10 members)','812234013183-61','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=812234013183-61','04/03/14 23:31:20','2014-12-03T07:00:14.110818','(+30) 2106875300','04/03/14 23:39:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(203,'other','./contribution_dtX2714.pdf','El grupo de trabajo sobre Propiedad Intelectual inscrito en la Línea estratégica 2 de REBIUN (objetivo 5), ha trabajado en cooperación con el grupo FESABID de Propiedad Intelectual y han consensuado una respuesta común en respuesta a la consulta de la Comisión Europea para la reforma de la regulación de derechos de autor.','national','','El presupuesto de la Red de Bibliotecas Españolas (REBIUN) proviene fundamentalmente de una cuota anual de 1950 euros por cada una de las 75 universidades españolas. Los gastos anuales fijos son: la contratación anual de una persona para la coordinación de grupos y líneas de trabajo y el mantenimiento del catálogo colectivo de REBIUN.','','01/2013\r\n - \r\n 12/2013','La Red de Bibliotecas Universitarias Españolas (REBIUN) es una comisión sectorial de la Conferencia de Rectores de las Universidades Españolas (CRUE) desde 1994.Desde su creación, a iniciativa de un grupo de directores de bibliotecas en 1988, REBIUN constituye un organismo estable en el que están representadas todas las bibliotecas universitarias y científicas españolas.REBIUN está formada por las bibliotecas de las 75 universidades miembros de la CRUE (50 de ámbito universitario público y 25 de ámbito universitario privado) y el CSIC (Consejo Superior de Investigaciones Científicas).MISIÓNLiderar, coordinar y dar directrices a las bibliotecas universitarias y cientíticas potenciando la cooperación y la realización de proyectos conjuntos para dar respuesta a los nuevos retos que las universidades tienen planteados en los ámbitos del aprendizaje, la docencia la investigación y la formación a lo largo de la vida.','2, 7º Plaza de las Cortes \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Madrid 28014\r\n SPAIN','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Secretario Ejecutivo de REBIUN','Red de Bibliotecas Universitarias Españolas (Network of Spanish University Libraries)','REBIUN pertenece a la Conferencia de Rectores de las Universidades Españolas (CRUE). Constituida en el año 1994, es una asociación sin ánimo de lucro formada por un total de 75 universidades españolas: 50 públicas y 25 privadas.La CRUE es el principal interlocutor de las universidades con el gobierno central y desempeña un papel clave en todos los desarrollos normativos que afectan a la educación superior de nuestro país. Asimismo, promuve iniciativas de distinta índole con el fin de fomentar las relaciones con el tejido productivo y social, las relaciones institucionales, tanto nacionales como internacionales, y trabaja para poner en valor a la Universidad española.Misión:La CRUE es la voz de las universidades, tanto a nivel nacional como internacional:Coordina acciones de interés común en temas de política universitaria.Traslada la voz de las universidades al gobierno, a los agentes sociales y económicos y a la sociedad en su conjunto.Lidera proyectos en pro del Sistema Universitario Español: publicaciones, convenios con otras instituciones, estudios e informes, entre otros.Promueve actividades para dar a conocer a las universidades españolas en el ámbito internacional.Defiende el posicionamiento y los intereses del Sistema Universitario Español en la sociedad.Visión:Contribuir a la evolución y al progreso de la sociedad actual y futura, a través de la mejora de la educación superior, la investigación científica y la transferencia del conocimiento.Valores:La fuerza del trabajo conjunto y de la unión, a través de la colaboración y el diálogo, en un tiempo de desafíos muy importantes para las universidades.','75','','','568443512993-43','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=568443512993-43','18/02/14 11:47:29','2014-12-03T07:30:16.149726','(+34) 913697471','19/02/14 13:36:20','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(204,'other','./contribution_lpWERqA.pdf','Lobbyarbeit für Bibliotheken, für Bildung, für Kultur','sub-national;national;European;global',NULL,'Der Deutsche Bibliotheksverband ist als eingetragener Verein als gemeinnützig anerkannt','','01/2010\r\n - \r\n 12/2010','Der Deutsche Bibliotheksverband e.V. (dbv) setzt sich seit 60 Jahren für die Bibliotheken in Deutschland ein und hat bundesweit ca. 2.000 Mitgliedsbibliotheken (Mitgliedsbibliotheken inkl. Zweigstellen: ca. 2.900 Bibliotheken). Sein Anliegen ist es, die Wirkung der Bibliotheken in Kultur und Bildung sichtbar zu machen und ihre Rolle in der Gesellschaft zu stärken. Deutschlands Bibliotheken sind die am stärksten genutzten Kultur- und Bildungseinrichtungen in Deutschland. Sie sind zukunftsgerichtete Orte des freien Zugangs zu Wissen, Lernen und Forschen.','114 Strasse des 17. Juni \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10623\r\n GERMANY','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Internationale Kooperation','Deutscher Bibliotheksverband e.V.','Der Deutsche Bibliotheksverband e.V. ist Mitglied des Dachverbandes \'Bundesvereinigung Deutscher Bibliotheksverbände Bibliothek und Information Deutschland - BIDEr ist ebenfalls Mitglied des internationalen Bibliotheksverbandes IFLA sowie des europäischen Bibliotheksverbandes EBLIDA',NULL,NULL,NULL,'40954793950-39','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=40954793950-39','29/07/10 15:41:13','2011-10-05T09:14:10.698255','(+030) 644989912','04/07/11 12:31:46','de',NULL,NULL,NULL,'Audiovisual and media;Culture;Education;General and institutional affairs;Information society;Regional policy;Research and technology;Youth',NULL,NULL,'Mrs \r\n \r\n Hella Klauser',NULL,NULL,NULL,2,'Business association','Business'),(205,'other','./contribution_GYjdlD4.pdf','-','national','SLOVENIA','','','01/2013\r\n - \r\n 12/2013','Narodna in univerzitetna knjižnica (NUK) je javni zavod. Ustanovitelj zavoda je Republika Slovenija, ustanoviteljske pravice in obveznosti pa opravlja Vlada Republike Slovenije. NUK je slovenska nacionalna knjižnica, univerzitetna knjižnica Univerze v Ljubljani, center za razvoj slovenskih knjižnic in po definiciji mednarodnega bibliotekarskega združenja IFLA (International Federation of Library Associations and Institutions) osrednja znanstvena knjižnica v Sloveniji. Status NUK kot javnega zavoda na področju kulture opredeljujejo Zakon o zavodih (Ur. l. RS, št. 12/91, 45/94, 8/96, 18/98, 36/00, 127/06), Zakon o uresničevanju javnega interesa za kulturo (Ur. l. RS, št. 77/07 UPB-1, 56/08, 94/09, 4/10), Zakon o knjižničarstvu (Ur. l. RS, št. 87/01, 96/02) in Sklep o ustanovitvi javnega zavoda Narodna in univerzitetna knjižnica (Ur. l. RS, št. 46/03, 85/08). Status NUK kot nacionalne knjižnice določa Zakon o knjižničarstvu v 66. členu, status NUK kot univerzitetne knjižnice pa v 68. členu. Statut Univerze v Ljubljani (Ur. l. RS, št. 64/01) je v 21. členu opredelil možnost pridruženega članstva samostojnih zavodov, kar je omogočilo NUK, da uredi v okviru univerze svoj status kot pridružena članica. Sklep o pridruženem članstvu je sprejel senat univerze na svoji 16. seji, 14. 10. 2003, Pogodba o pridruženem članstvu NUK v Univerzi v Ljubljani je bila podpisana 29. 10. 2003, v veljavi pa ostaja tudi Pogodba o zagotavljanju knjižničnih storitev in načinu obračunavanja članarine-vpisnine (5. 10. 2001). Dejavnost in naloge NUK opredeljuje Zakon o knjižničarstvu. V 2. členu določa dejavnost knjižnice, ki je javna služba, v 33. členu pa opredeljuje \"nacionalno knjižnico\", ki je ena od temeljnih nacionalnih kulturnih institucij v Sloveniji. Poleg dejavnosti iz 2. člena Zakona izvaja še naslednje: zbira, obdeluje, hrani in posreduje temeljno nacionalno zbirko vsega knjižničnega gradiva v slovenskem jeziku, o Sloveniji in Slovencih, slovenskih avtorjev, slovenskih založb, pripadnikov italijanske in madžarske narodne skupnosti, romske skupnosti in drugih manjšinskih skupnosti v Sloveniji (Slovenika) ter temeljne tuje literature, skrbi za dostopnost gradiva iz prejšnje alinee v tujini in še posebej Slovencem, ki živijo zunaj Republike Slovenije, kot nacionalni bibliografski center zagotavlja uporabnikom doma in v tujini dostopnost do informacij o knjižničnem gradivu, tako da vključuje podatke o založniški produkciji Slovenike v bibliografske zbirke ter izdeluje in objavlja tekočo in retrospektivno slovensko nacionalno bibliografijo, opravlja naloge državnega referalnega centra, opremlja publikacije z osnovnim kataložnim opisom (CIP), v sodelovanju z mednarodnimi institucijami dodeljuje oznake mednarodne bibliografske kontrole (ISSN, ISBN, ISMN) in druge identifikacijske oznake tiskanih in elektronskih publikacij, vodi in izvaja program varovanja knjižničnega gradiva, ki je kulturna dediščina, ter organizira in izvaja zaščito in restavriranje knjižničnega gradiva, izvaja raziskovalno, razvojno in svetovalno delo na svojem delovnem področju, zbira, obdeluje in posreduje statistične in druge podatke o delovanju knjižnic, organizira in izvaja strokovno izpopolnjevanje in usposabljanje knjižničnih delavcev, organizira in usklajuje delovanje sistema medknjižnične izposoje, vodi razvid knjižnic, opravlja naloge centra za razvoj knjižnic, organizira in usmerja izločanje gradiva in deponiranje nacionalno pomembnega knjižničnega gradiva, izdaja predhodno mnenje za izvoz nacionalno pomembnega knjižničnega gradiva, izdaja predhodno mnenje o izpolnjevanju pogojev iz pravilnika iz 36. člena tega zakona, pripravlja strokovne podlage za sprejem splošnih predpisov in strokovnih priporočil s področja knjižničarstva, koordinira pripravo triletnih načrtov za razvoj splošnih knjižnic iz 37. člena tega zakona, sprejema navodila za strokovno obdelavo in hranjenje nacionalno pomembnega','4163590131 Turjaška 1 \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 259\r\n \r\n \r\n \r\n \r\n Ljubljana 1000\r\n SLOVENIA','','IV - Think tanks, research and academic institutions','Academic institutions','Deputy Director','National and University Library','','9,840','49','- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members);- (0 members)','416359013159-69','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=416359013159-69','04/03/14 20:32:45','2014-12-03T07:25:24.944543','(+386) 1 2001 193','04/03/14 20:33:37','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(206,'other','./contribution_Zipqm7Z.pdf','Activities carried out with the objective of directly or indirectly influencing the formulation or implementation of policy and decision-making processes of the EU institutions: contacting members and officials of the EU institutions, organising events, meetings or promotional activities (in the offices and in other venues), submitting responses to open consultations.','global','ITALY;NETHERLANDS','We are not a membership organization but partner with library consortia in 49 developing and transition countries.','','01/2013\r\n - \r\n 12/2013','Working in collaboration with libraries in more than 60 developing and transition countries in Europe, Africa, Asia,and Latin America EIFL enables access to knowledge for education, learning, research and sustainable community development.','9 Piazza Mastai \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Rome 00153\r\n ITALY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Director','Stichting eIFL.net','EIFL is a founding member of the Confederation of Open Access Repositories (COAR), an associate member of Open Access Scholarly Publishers Association (OASPA) and a member of International Federation of Library Associations and Institutions (IFLA). We also have MoUs with The Scholarly Publishing and Academic Resources Coalition (SPARC), Networked Digital Library of Theses and Dissertations (NDLTD) and World Blind Union.','10','','','13020287260-60','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=13020287260-60','30/11/11 10:46:29','2014-12-03T07:11:21.692082','(+39) 06 5807217','03/11/14 17:20:47','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(207,'other','./contribution_HEZHISL.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'cs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(208,'other','./contribution_wg1RVGs.pdf','N/A','sub-national;national;European;global','SWEDEN','','Academy of Intellectual Property, Marketing and Competition Law (IMC)Uppsala UniversityFaculty of LawBox 512SE-751 20 UppsalaSweden','01/2013\r\n - \r\n 12/2013','IMC\'s main task is to foster scientific research of intellectual property law, marketing law and competition law.This occurs, inter alia, through research, seminars and conferences, university education as well as through documentation and publication activity','5 Riddartorget \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Uppsala SE-753 10\r\n SWEDEN','','IV - Think tanks, research and academic institutions','Academic institutions','Executive Committee','Academy of Intellectual Property, Marketing and Competition Law','Within IMC there is a Practitioner Council and a research council divided into a Senior and Junior Council. Nordic senior and junior academics are part of the respective research councils whose aim is to establish a nordic dialogue in the areas of intellectual property and market law.','8','','','193066712447-09','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=193066712447-09','16/12/13 15:31:59','2014-12-03T07:31:16.231959','(+46) 18471 20 69','16/12/13 15:35:49','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(209,'other','./contribution_HMCTuXG.pdf','Treffen mit Ansprechpartnern aus dem Bereich Forschung und Bildung in den EU-Institutionen zu folgenden Themen: Europäischer Forschungsraum; Horizont 2020; Strukturfonds der EU; Erasmus+','sub-national;national;European;global','BELGIUM;GERMANY','','Adresse der Vertretung in Brüssel:Hochschulrektorenkonferenz (HRK) / German Rectors\' Conference Avenue des Arts 50B-1000 BrüsselTelefon: +32 2 502 61 03','01/2012\r\n - \r\n 12/2012','Die Hochschulrektorenkonferenz (HRK) ist der freiwillige Zusammenschluss der staatlichen und staatlich anerkannten Universitäten und Hochschulen in Deutschland. Die HRK ist die Stimme der Hochschulen gegenüber Politik und Öffentlichkeit, und sie ist das Forum für den gemeinsamen Meinungsbildungsprozess der Hochschulen. Sie befasst sich mit allen Themen, die Aufgaben der Hochschulen betreffen: Forschung, Lehre und Studium, wissenschaftliche Weiterbildung, Wissens- und Technologietransfer, internationale Kooperationen sowie Selbstverwaltung. Die inhaltliche Arbeit der HRK umfasst Bereiche wie Information der Mitgliedshochschulen, Formulierung und Vertretung gemeinsamer hochschulpolitischer Positionen der Mitgliedshochschulen, Information der Öffentlichkeit, Unterstützung der Mitgliedshochschulen bei der Umsetzung von Reformen, Beratung von Politik und Verwaltung in Bund und Ländern, Sicherung der Qualität von Lehre und Studium sowie der Mobilität von Studierenden, Zusammenarbeit mit anderen Organisationen und Verbänden, internationale Hochschulzusammenarbeit, Vertretung der deutschen Hochschulen im Rahmen der EU-Bildungs- und Wissenschaftspolitik, Sammlung und Dokumentation einschlägiger Literatur.Rechts- und Finanzträger der HRK ist die Stiftung zur Förderung der HRK. Ihr Zweck besteht darin, das Personal und die sachlichen Mittel zur Erfüllung der Aufgaben der HRK bereitzustellenDas Büro Brüssel verfolgt die forschungs- und bildungspolitischen Entwicklungen und Entscheidungsprozesse im europäischen Umfeld.','39 Ahrstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bonn 53175\r\n GERMANY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Büroleiter Brüssel','Hochschulrektorenkonferenz','- Die HRK ist Mitglied der EUA, der Europäische Universitätsvereinigung. Die EUA ist die größte Hochschulvertretung auf europäischer Ebene. Mitglieder sind Universitäten und andere forschungsstarke Hochschulen sowie nationale Rektorenkonferenzen- Die HRK ist Mitglied der „Allianz“ der Wissenschaftsorganisationen. Diese Allianz ist ein Zusammenschluss der bedeutendsten Wissenschafts- und Forschungsorganisationen in Deutschland. Sie nimmt regelmäßig zu Fragen der Wissenschaftspolitik, Forschungsförderung und strukturellen Weiterentwicklung des deutschen Wissenschaftssystems Stellung.','0','267','Universität Freiburg im Breisgau (0 members);Universität Heidelberg (0 members);Universität Hohenheim (0 members);KIT Karlsruhe (0 members);Universität Konstanz (0 members);Universität Mannheim (0 members);Universität Stuttgart (0 members);Universität Tübingen (0 members);Universität Ulm (0 members);Universität Augsburg (0 members);Universität Bamberg (0 members);Universität Bayreuth (0 members);Katholische Universität Eichstätt-Ingolstadt (0 members);Universität Erlangen-Nürnberg (0 members);Technische Universität München (0 members);Universität München (0 members);Universität der Bundeswehr München (0 members);Universität Passau (0 members);Universität Regensburg (0 members);Universität Würzburg (0 members);Freie Universität Berlin (0 members);Humboldt-Universität Berlin (0 members);Technische Universität Berlin (0 members);Technische Universität Cottbus-Senftenberg (0 members);Europa-Universität Frankfurt (Oder) (0 members);Universität Potsdam (0 members);Universität Bremen (0 members);Jacobs University Bremen (0 members);HafenCity Universität Hamburg (0 members);Technische Universität Hamburg-Harburg (0 members);Universität Hamburg (0 members);Universität der Bundeswehr Hamburg (0 members);Technische Universität Darmstadt (0 members);Universität Frankfurt am Main (0 members);Universität Gießen (0 members);Universität Kassel (0 members);Universität Marburg (0 members);Universität Greifswald (0 members);Universität Rostock (0 members);Technische Universität Braunschweig (0 members);Technische Universität Clausthal (0 members);Universität Göttingen (0 members);Universität Hannover (0 members);Medizinische Hochschule Hannover (0 members);Tierärztliche Hochschule Hannover (0 members);Universität Hildesheim (0 members);Leuphana Universität Lüneburg (0 members);Universität Oldenburg (0 members);Universität Osnabrück (0 members);Technische Hochschule Aachen (0 members);Universität Bielefeld (0 members);Universität Bochum (0 members);Universität Bonn (0 members);Technische Universität Dortmund (0 members);Universität Duisburg-Essen (0 members);Universität Düsseldorf (0 members);FernUniversität in Hagen (0 members);Universität Köln (0 members);Sporthochschule Köln (0 members);Universität Münster (0 members);Universität Paderborn (0 members);Universität Siegen (0 members);Universität Witten/Herdecke (0 members);Universität Wuppertal (0 members);Technische Universität Kaiserslautern (0 members);Universität Koblenz-Landau (0 members);Universität Mainz (0 members);Universität für Verwaltungswissenschaften Speyer (0 members);Universität Trier (0 members);Universität des Saarlandes (0 members);Technische Universität Chemnitz (0 members);Technische Universität Dresden (0 members);Technische Universität Bergakademie Freiberg (0 members);Universität Leipzig (0 members);Universität Halle-Wittenberg (0 members);Universität Magdeburg (0 members);Universität Flensburg (0 members);Universität Kiel (0 members);Universität zu Lübeck (0 members);Universität Erfurt (0 members);Technische Universität Ilmenau (0 members);Universität Jena (0 members);Bauhaus-Universität Weimar (0 members);Hochschule Aalen (0 members);Hochschule Albstadt-Sigmaringen (0 members);Hochschule Biberach (0 members);Hochschule Esslingen (0 members);Evangelische Hochschule Freiburg (0 members);Katholische Hochschule Freiburg (0 members);Hochschule Furtwangen (0 members);Hochschule Heidelberg der SRH Hochschulen (0 members);Hochschule Heilbronn (0 members);Hochschule Karlsruhe - Technik und Wirtschaft (0 members);Hochschule Konstanz (0 members);Evangelische Hochschule Ludwigsburg (0 members);Hochschule Mannheim (0 members);Hochschule für Wirtschaft und Umwelt Nürtingen-Geislingen (0 members);Hochschule für Technik, Wirtschaft und Medien Offenburg (0 members);Hochschule Pforzheim (0 members);Hochschule Ravensburg-Weingarten (0 members);Hochschule Reutlingen (0 members);Hochschule für Forstwirtschaft Rottenburg (0 members);Hochschule für Gestaltung Schwäbisch-Gmünd (0 members);Hochschule der Medien Stuttgart (0 members);Hochschule für Technik Stuttgart (0 members);Hochschule Ulm (0 members);Technische Hochschule Amberg-Weiden (0 members);Hochschule Ansbach (0 members);Hochschule Aschaffenburg (0 members);Hochschule Augsburg (0 members);Hochschule Coburg (0 members);Hochschule Deggendorf (0 members);Fachhochschule Hof (0 members);Technische Hochschule Ingolstadt (0 members);Hochschule Kempten (0 members);Hochschule Landshut (0 members);Hochschule München (0 members);Katholische Stiftungsfachhochschule München (0 members);Hochschule Neu-Ulm (0 members);Evangelische Fachhochschule Nürnberg (0 members);Technische Hochschule Nürnberg (0 members);Technische Hochschule Regensburg (0 members);Hochschule Rosenheim (0 members);Hochschule Weihenstephan-Triesdorf (0 members);Hochschule Würzburg-Schweinfurt (0 members);Alice Salomon Hochschule Berlin (0 members);Evangelische Hochschule Berlin (0 members);Hochschule für Technik und Wirtschaft Berlin (0 members);Hochschule für Wirtschaft und Recht Berlin (0 members);Katholische Hochschule für Sozialwesen Berlin (0 members);Beuth-Hochschule für Technik Berlin (0 members);Fachhochschule Brandenburg (0 members);Hochschule Eberswalde (0 members);Fachhochschule Potsdam (0 members);Technische Hochschule Wildau (0 members);Hochschule Bremen (0 members);Hochschule Bremerhaven (0 members);Evangelische Hochschule für Sozialarbeit & Diakonie Hamburg (0 members);Hochschule für Angewandte Wissenschaften Hamburg (0 members);Evangelische Hochschule Darmstadt (0 members);Hochschule Darmstadt (0 members);Fachhochschule Frankfurt am Main (0 members);Hochschule Fulda (0 members);Technische Hochschule Mittelhessen (0 members);Hochschule RheinMain (0 members);Hochschule Neubrandenburg (0 members);Fachhochschule Stralsund (0 members);Hochschule Wismar (0 members);Hochschule Braunschweig-Wolfenbüttel (0 members);Hochschule Emden/Leer (0 members);Hochschule Hannover (0 members);Hochschule Hildesheim/Holzminden/Göttingen (0 members);Hochschule Osnabrück (0 members);Hochschule Wilhelmshaven/Oldenburg/Elsfleth (0 members);Fachhochschule Aachen (0 members);Internationale Hochschule Bad-Honnef - Bonn (0 members);Fachhochschule Bielefeld (0 members);Hochschule Bochum (0 members);Hochschule für Gesundheit Bochum (0 members);Technische Fachhochschule Bochum (0 members);Hochschule Bonn-Rhein-Sieg (0 members);Fachhochschule Dortmund (0 members);Fachhochschule Düsseldorf (0 members);Hochschule Hamm-Lippstadt (0 members);Fachhochschule Köln (0 members);Rheinische Fachhochschule Köln (0 members);Fachhochschule Münster (0 members);Hochschule Niederrhein (0 members);Katholische Hochschule Nordrhein-Westfalen (0 members);Hochschule Ostwestfalen-Lippe (0 members);Hochschule Rhein-Waal (0 members);Evangelische Fachhochschule Rheinland-Westfalen-Lippe Bochum (0 members);Hochschule Ruhr West (0 members);Fachhochschule Südwestfalen (0 members);Westfälische Hochschule Gelsenkirchen, Bocholt, Recklinghausen (0 members);Fachhochschule Bingen (0 members);Fachhochschule Kaiserslautern (0 members);Fachhochschule Koblenz (0 members);Hochschule Ludwigshafen (0 members);Fachhochschule Mainz (0 members);Katholische Hochschule Mainz (0 members);Hochschule Trier (0 members);Fachhochschule Worms (0 members);Hochschule für Technik und Wirtschaft des Saarlandes (0 members);Hochschule für Technik und Wirtschaft Dresden (0 members);Hochschule für Technik, Wirtschaft und Kultur Leipzig (0 members);Hochschule Mittweida (0 members);Hochschule Zittau-Görlitz (0 members);Westsächsische Hochschule Zwickau (0 members);Hochschule Anhalt (0 members);Hochschule Harz (0 members);Hochschule Magdeburg (0 members);Hochschule Merseburg (0 members);Fachhochschule Flensburg (0 members);Fachhochschule Kiel (0 members);Fachhochschule Lübeck (0 members);Fachhochschule Westküste (0 members);Fachhochschule Erfurt (0 members);Fachhochschule Jena (0 members);Fachhochschule Nordhausen (0 members);Fachhochschule Schmalkalden (0 members);Pädagogische Hochschule Freiburg (0 members);Pädagogische Hochschule Heidelberg (0 members);Pädagogische Hochschule Karlsruhe (0 members);Pädagogische Hochschule Ludwigsburg (0 members);Pädagogische Hochschule Schwäbisch-Gmünd (0 members);Pädagogische Hochschule Weingarten (0 members);Staatliche Hochschule für Musik Freiburg im Breisgau (0 members);Staatliche Akademie der Bildenden Künste Karlsruhe (0 members);Staatliche Hochschule für Gestaltung Karlsruhe (0 members);Hochschule für Musik Karlsruhe (0 members);Staatliche Hochschule für Musik und Darstellende Kunst Mannheim (0 members);Staatliche Akademie der Bildenden Künste Stuttgart (0 members);Staatliche Hochschule für Musik und Darstellende Kunst Stuttgart (0 members);Staatliche Hochschule für Musik Trossingen (0 members);Akademie der Bildenden Künste München (0 members);Hochschule für Musik und Theater München (0 members);Akademie der Bildenden Künste in Nürnberg (0 members);Hochschule für Musik Nürnberg (0 members);Hochschule für Musik Würzburg (0 members);Hochschule für Musik Berlin (0 members);Hochschule für Schauspielkunst Berlin (0 members);Universität der Künste Berlin (0 members);Kunsthochschule Berlin-Weißensee (0 members);Hochschule für Film und Fernsehen Potsdam-Babelsberg (0 members);Hochschule für Künste Bremen (0 members);Hochschule für Bildende Künste Hamburg (0 members);Hochschule für Musik und Theater Hamburg (0 members);Staatliche Hochschule für Bildende Künste Frankfurt am Main (0 members);Hochschule für Musik und Darstellende Kunst Frankfurt am Main (0 members);Hochschule für Gestaltung Offenbach (0 members);Hochschule für Musik und Theater Rostock (0 members);Hochschule für Bildende Künste Braunschweig (0 members);Hochschule für Musik, Theater und Medien Hannover (0 members);Hochschule für Musik Detmold (0 members);Robert-Schumann-Hochschule Düsseldorf (0 members);Kunstakademie Düsseldorf (0 members);Universität der Künste Essen (0 members);Hochschule für Musik und Tanz Köln (0 members);Kunsthochschule für Medien Köln (0 members);Kunstakademie Münster (0 members);Hochschule für Musik Saar (0 members);Hochschule der Bildenden Künste Saar (0 members);Hochschule für Bildende Künste Dresden (0 members);Hochschule für Musik Dresden (0 members);Palucca Hochschule für Tanz Dresden (0 members);Hochschule für Grafik und Buchkunst Leipzig (0 members);Hochschule für Musik und Theater Leipzig (0 members);Burg Giebichenstein Kunsthochschule Halle (0 members);Muthesius Kunsthochschule Kiel (0 members);Musikhochschule Lübeck (0 members);Hochschule für Musik Weimar (0 members);Philosophisch-Theologische Hochschule Frankfurt am Main (0 members);Theologische Fakultät Fulda (0 members);Hochschule für Philosophie München (0 members);Theologische Fakultät Paderborn (0 members);Theologische Fakultät Trier (0 members);Hochschule für Jüdische Studien Heidelberg (0 members);Augustana-Hochschule Neuendettelsau (0 members);Lutherische Theologische Hochschule Oberursel (0 members);Kirchliche Hochschule Wuppertal/Bethel (0 members);Duale Hochschule Baden-Württemberg (0 members);Hochschule Geisenheim (0 members);Bucerius Law School Hamburg (0 members);Handelshochschule Leipzig (0 members);EBS Universität für Wirtschaft und Recht Wiesbaden (0 members);Wissenschaftliche Hochschule für Unternehmensführung Vallendar (0 members)','416841712322-37','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=416841712322-37','25/11/13 16:26:02','2014-12-03T06:55:19.388384','(+49) 228 887 0','30/10/14 10:06:25','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(210,'other','./contribution_cQhHdMz.pdf','The Centre collaborates with:Parliament Committee for Science and Education of UkraineMinistry of JusticeState Agency for Science, Innovation and NormalisationState Intellectual Property Service of Ukraine and other state bodies, providing advisory support and working out of draft laws and regulations.With the Centre specialists\' participation a number of Laws of Ukraine and sub laws, state body decisions had been worked out, including:LawsCivil Code, part \"Intellectual Property\",Law \"On state regulation of the activity in the sphere of technology transfer\",Law \"On Science and Technical activity\",Law \"On Innovation Activity\",Draft Law \"On collective management of copyright\",Draft Law \"On scientific discoveries\" etc.Parliament\'s decisionsResolution of Parliament of Ukraine on Parliaments hearings \"Protection of intellectual property in Ukraine: issues of legal provision and law enforcement\", 21 March 2007,Resolutions of Parliament Committee for Science and Education of Ukraine:\"On current situation concerning state regulation and management in the sphere of development, legal protection and enforcement of intellectual property and innovation activity in Ukraine\", 16 April 2008,\"Effectiveness of application of Ukraine\'s legislation on copyright and related rights\", 08June 2009.Approximation of Ukraine IPR legislation to international and EU legislationThe Centre is a leading Ukrainian academic institution that provides evaluation and research on correspondence of Ukrainian IPR legislation to EU legislation under the request of government bodies.In 2003-2004 under Centre\'s co-ordination the Ministry of Justice of Ukraine project: \"Intellectual Property Law of the European Union and the Approximation of Ukrainian Intellectual Property legislation to EU standards\" was realised.The aim of the project was to make a background comparative research of the legislation of Ukraine in the field of intellectual property to that of the EU according to the Law \"On Ukrainian program on approximation of the legislation of Ukraine to the legislation of the European Union\".Main tasks included:organisation of a complex legal comparative analysis on conformity of Ukrainian law with the EU law in the sphere of IPR, including IPR enforcement,preparation of a Scoreboard, which included approximation objectives in the IPR sphere; the EU legal provisions subject to implementation; list of the specific measures on implementation of relevant EU legal provisions,organisation of official translation of EU legal acts.Based on that work the drafts of new laws were drafted and passed to the Cabinet of Ministries and Parliament.','national;European','UKRAINE','','Centre of Intellectual Property and Technology Transfer is a special institution that works in the National Academy of Sciences of Ukraine (NAS) conducting academic researches on comparative intellectual property law, EU Law, IPR enforcement, international and internal transfer of technology.The expertise of the Centre was used in a number of projects of European Commission, WTO, World Bank, USAID working in Ukraine, post soviet countries: Kazakhstan, Azerbaijan, Kirgizstan etc as well as providing training for government officials from Central and Eastern Europe, Central Asia and the Caucasus region.The Centre collaborates with:Parliament Committee for Science and Education of Ukraine,Ministry of Justice of Ukraine,State Agency for Science, Innovation and Informatization of Ukraine,State Intellectual Property Service of Ukraineand other bodies providing advisory support and working out of draft laws and regulations, such as Civil Code of Ukraine, Law on Science and Technical activity etc.The Centre is empowered by the NAS to coordinate management of the intellectual property departments of the Academy institutes and it has elaborated guidance manuals for management of intellectual property and technology transfer in the Academy.The Centre holds conferences on IPR and is a National Contact Point of FP7 (EU Research funding program) on \"IPR Protection\", \"Research infrastructures\", \"Regions of Knowledge\".Publications of the Centres\' academics include studies on a wide range of problems, i.e.:Comparative intellectual property lawEU intellectual property protectionTechnology transferNational regulation of IPR protectionInnovation activity developmentRegulation of InternetThe Centre is opened for collaboration on research projects, EU framework programs, international institutions assistance projects.','01/2013\r\n - \r\n 12/2013','The Centre conducts researches on comparative intellectual property law, EU Law, IPR enforcement, international and internal transfer of technology such as: Studies of intellectual property rights in the digital environment and problem of improving the legal regulation of relations in information networks (2010 - 2014)Contractual provision of technology transfer in academic institutions (2010-2014)Problems of improvement of Ukraine\'s legislation on intellectual property and technology transfer in accordance with the standards of the European Union (2006-2010)Research activities on protection of intellectual property and technology transfer in the scientific institutions of NAS of Ukraine, development of its methodology provisions (2007-2010)Center also performs other researches, commissioned by the NAS of Ukraine, governmental bodies and international organizations.The Centre’s specialists collaborate in a number of international projects on approximation of national IPR and innovation legislation to international and EU standards, improvement of enforcement of intellectual property and IPR training, particularly (further Centres\' participation is reflected):European Commissions\' EuroAid, Tacis, Framework R&D programs,WTO,World Bank,USAIDWith the Centre specialists\' participation a number of Laws of Ukraine and sub laws, state body decisions had been worked out, including:LawsCivil Code, part \"Intellectual Property\",Law \"On state regulation of the activity in the sphere of technology transfer\",Law \"On Science and Technical activity\",Law \"On Innovation Activity\",Draft Law \"On collective management of copyright\",Draft Law \"On scientific discoveries\" etc.Parliament\'s decisionsResolution of Parliament of Ukraine on Parliaments hearings \"Protection of intellectual property in Ukraine: issues of legal provision and law enforcement\", 21 March 2007,Resolutions of Parliament Committee for Science and Education of Ukraine:\"On current situation concerning state regulation and management in the sphere of development, legal protection and enforcement of intellectual property and innovation activity in Ukraine\", 16 April 2008,\"Effectiveness of application of Ukraine\'s legislation on copyright and related rights\", 08June 2009.Approximation of Ukraine IPR legislation to international and EU legislationThe Centre is a leading Ukrainian academic institution that provides evaluation and research on correspondence of Ukrainian IPR legislation to EU legislation under the request of government bodies.In 2003-2004 under Centre\'s co-ordination the Ministry of Justice of Ukraine project: \"Intellectual Property Law of the European Union and the Approximation of Ukrainian Intellectual Property legislation to EU standards\" was realised.The aim of the project was to make a background comparative research of the legislation of Ukraine in the field of intellectual property to that of the EU according to the Law \"On Ukrainian program on approximation of the legislation of Ukraine to the legislation of the European Union\".The Centre is empowered by the National Academy of Sciences:- To work out guidance for management of intellectual property and technology transfer which transfer for consideration and adoption to Presidium of the Academy.- To coordinate the management of the intellectual property departments which operate in 90 of Academy\'s natural scientists and technical institutes.','54 Volodimirskaya \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 01601\r\n \r\n \r\n \r\n \r\n Kiev 01601\r\n UKRAINE','','IV - Think tanks, research and academic institutions','Academic institutions','chief scientific officer','Center of Intellectual Property and Technology Transfer of National Academy of Sciences of Ukraine','CIPTT is the institution of the structure of the National Academy of Sciences of Ukraine,CIPTT representative is the member of the IPR Working Group of the ALLEA','15','','','465174912454-88','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=465174912454-88','17/12/13 15:48:27','2014-12-03T07:35:07.936720','(+38044) 2396764','19/01/14 23:09:39','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(211,'other','./contribution_DJZdtz1.pdf','FP7 R&D projects, projects funded by Structural & Regional programmes.','national;European','GREECE','','','01/2012\r\n - \r\n 12/2012','The advancement of excellence, innovativeness and competitiveness in the crucial sector of Information and Knowledge Technologies lies at the center of the Athena Research and Innovation Center value system. Through national and international R&D projects, technological ecosystem development initiatives, innovative application activities and knowledge transfer to the social and economic environment, Athena RIC fulfills its mission to support the participation of Greece both in the “Europe 2020” strategy and the global movement towards smart and sustainable growth for all.The Athena Research and Innovation Center in Information, Communication and Knowledge Technologies was founded in 2003 comprising of three previously existing and two new institutes. It operates under the auspices of the Ministry of Education and Religious Affairs (General Secretariat for Research and Technology). It is based in Athens, with its Institutes located in Athens, Patras and Xanthi.The Athena Research and Innovation Center aims include the following:- Promotion of innovative information, communication and knowledge technologies in the industrial and services sectors- Development of scientific and technological research in the sectors of information technology, knowledge, communication and automating production processes and the implementation and exploitation of results aiming at the production of laboratory prototypes, products and services- Support of development activities in the above sectors and in their applications- Life-long learning and training in the respective sectors- Management of funding programmes aiming at supporting businesses that act in its sector; promotion of state research and technology policiesFor the achievement of these goals the Athena RIC:- Develops innovative approaches for Information and Communication technologies (ICT) in the form of laboratory and industrial prototypes and cooperates with companies for the commercial exploitation of the prototypes- Customizes technologies for the needs of companies as well as for public services; it observes and studies the ICT developments and penetration into the private and public sector- Suggests solutions, which combine various ICTs and lead to new approaches and services for the benefit of companies, organizations and other users- Specifies the conditions for the development of products and services with ICTs by creating the infrastructure, the hardware, the software and the information content in electronic format etc- Specializes and trains scientists and technicians in the aforementioned fields by organising and funding research projects, postgraduate seminars, publications, seminars and conference- Provides special technical services, undertakes technical and economical studies, feasibility studies in the aforementioned areas, so that commercial exploitation of the results is ensured- Cooperates under various frameworks with Universities and Technical Universities, research institutes and companies or participates in Scientific Committees, consortia etc. - It is also eligible to found or to co-found companies which share the same goals as “Athena”.','6 Artemidos & Epidavrou \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n MAROUSI 15125\r\n GREECE','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','PRESIDENT OF THE BOARD','\"Athena\" Research and Innovation Center in Information, Communication and Knowledge Technologies','','230','','','981304913214-76','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=981304913214-76','05/03/14 20:33:40','2014-12-03T06:59:52.376918','(+30210) 6875300','05/03/14 20:34:31','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(212,'other','./contribution_uKGz40B.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(213,'other','./contribution_n0pGIOg.pdf','INDICAM paertecipa attivamente a vari workgroups dell\'Osservatorio OHIM sull\'IP.Supporto e collaborazione con AIM ed altre associazioni comunitarie in temi come- TM package- Transiti- UE-Russia- UE-Turkey- CopyrightInoltre come founder -member di GACG, INDICAM è soggetto attivo di varie iniziative internazionali','sub-national;national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','INDICAM è la più ampia associazione di titolari di marchio e si occupa di contrasto alla contraffazione. Raggruppa oltre 150 imprese e cura azioni di - enforcement e supporto forze dell\'ordine- intervento in consultazioni legislative nazionali ed UE- ruolo di advisor sia per policy makers che per stakeholders nel tema della contraffazione- definizione di nuovi modelli di contrasto alla contraffazione','5 Via Serbelloni \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Milano 20122\r\n ITALY','','II - In-house lobbyists and trade/professional associations','Companies & groups','Segretario Generale','INDICAM - Istituto di Centromarca per la lotta alla contraffazione','AIM - membro attivo e parte del committee anticontraffazioneGACG - founder member',NULL,NULL,NULL,'691120913198-11','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=691120913198-11','05/03/14 12:01:38','2014-12-03T07:08:59.507198','(+39) 0276014174','05/03/14 12:02:01','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(214,'other','./contribution_gr8hfZQ.pdf','META-TRUST AISBL is the legal person of the META-NET Network of Excellence which used to be funded by a total of four EC projects (from 2010/2011-2013). Up to now META-TRUST AISBL itself has not been active as a legal person (for example, by engaging in project contracts). In the past year, META-NET has been doing some work towards raising more awareness for the topic of language technologies, especially multilingual technologies (i.e., machine translation technologies) and how multilingual technologies can help overcoming languages barriers. META-NET thinks that overcoming language barriers and enabling language-barrier-free communication is an important prerequisite for establishing the single digital market. To this end, we published strategy papers (\"META-NET Strategic Research Agenda for Multilingual Europe 2020\") and a multi-volume study (\"META-NET White Paper Series: Europe\'s Languages in the Digital Age\"). We also presented our key findings, strategies and plans in multiple national and international workshops and conferences. More information (including the documents themselves and a list of events) is available at http://www.meta-net.eu','European','BELGIUM;BULGARIA;CROATIA;CZECH REPUBLIC;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;MALTA;POLAND;PORTUGAL;SPAIN;NORWAY','n.a.','META-TRUST AISBL is the legal person of the network of excellence META-NET (http://www.meta-net.eu) and the Multilingual Europe Technology Alliance (META). META-TRUST AISBL (Association internationale sans but lucratif) is an international not-for-profit organisation based on Belgian law and located in Antwerp, Belgium.The community of European language technology researchers, to a large part assembled in META-NET, delegates persons as members of META-TRUST AISBL who, by their long standing work and reputation, stand surety for being neutral procurators of the public interest.META-TRUST AISBL sees itself as acting in line with all of META\'s and META-NET\'s goals, objectives and activities. In a general sense, META-TRUST AISBL is meant to be a trustee of the community behind META and META-NET.The main objectives of META-NET are to establish META as an open alliance of all stakeholders and to foster a multilingual European information society in which Language Technologies enable communication and cooperation across languages, secure users of any language equal access to information and knowledge, and build upon as well as advance functionalities of networked information and communication technology.','01/2013\r\n - \r\n 12/2013','META-TRUST is established for the purpose of being the legal person of the network of excellence META-NET and the Multilingual Europe Technology Alliance (META). The main objectives of META-NET are to establish META as an open alliance of all stakeholders and to foster a multilingual European information society in which Language Technologies enable communication and cooperation across languages, secure users of any language equal access to information and knowledge, and build upon as well as advance functionalities of networked information and communication technology. The community of European language technology researchers, to a large part assembled in META-NET, delegates persons as members of META-TRUST who, by their long standing work and reputation, stand surety for being neutral procurators of the public interest. META-TRUST sees itself as acting in line with all of META\'s and META-NET\'s goals, objectives and activities. In a general sense, META-TRUST wants to be a trustee of the community behind META and META-NET. The following is a non-exhaustive list of activities through which META-TRUST is meant to achieve the objectives described above: META-TRUST will encourage academic and commercial research organisations to make available language resources, especially via META-SHARE, an open resource exchange infrastructure built and advocated by META-NET. The role of META-TRUST will be that of a neutral trustee, warranting an execution of rights free from vested interests and entirely oriented towards the public weal. META-TRUST will provide support to the named organisations, also financially, if and as far as that appears reasonable and serves META-TRUST\'s purpose. META-TRUST will act as the formal copyright holder of software created by the META-NET network of excellence and the META community, where and to the extent these want META-TRUST to do so.As far as it serves its purpose and resources allow, META-TRUST will support, enable and promote research and innovation activities in the language technology area. This is not limited to these parts of the research community already participating in META-NET or META. In order to reach its goals, META-TRUST can draw on the full range of means of the legal person it is. This means, inter alia:META-TRUST can enter into contracts or agreements of any kind. META-TRUST can have rights and obligations transferred to it by natural or legal persons as well as institutions and other entities. META-TRUST can safeguard rights transferred to it by seeking enforcement of these rights. It can also do this on behalf of others, if they wish so.As far as rights are vested in META-TRUST, it can act as licensor for public licenses on behalf of the initial rights holders. META-TRUST can issue and answer tenders for all kinds of projects that are related to language resources, language technologies and related topics. As far as it receives capacity to do so, META-TRUST can act on behalf of META or META-NET as a partner in projects, so that these can jointly participate and be represented in research activities and other initiatives.','125 De Hulsten \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Zoersel 2980\r\n BELGIUM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','First Vice President','META-TRUST AISBL','META-TRUST AISBL is the legal person of the META-NET network of excellence. META-NET currently consists of 60 research centres in 34 European countries. The list of members is available online at http://www.meta-net.eu/members','20','','','051208813179-33','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=051208813179-33','04/03/14 22:15:18','2014-12-03T06:26:35.383646','(+32) 3 2655222','04/03/14 22:19:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(215,'other','./contribution_w4HHeZG.pdf','Involvement of ACE in the following EU initiatives: Transposition of the Orphan Works Directive in the Member States;Cinema Communication / State aid for films: film heritage is included as assessment criteria in the new communication; Member of Licences for Europe, WG3 Audioviusal Heritage: Voluntary agreement between ACE, rights holders and CMOs to facilitate the digitisation and use of cinematographic works; CREATIVE EUROPE: film heritage is covered in the new programmeCouncil Recommendation on Digital Film','European','AUSTRIA;BELGIUM;CROATIA;CZECH REPUBLIC;DENMARK;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LUXEMBOURG;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;HOLY SEE (VATICAN CITY STATE);MACEDONIA, FORMER YUGOSLAV REPUBLIC OF;MONTENEGRO;NORWAY;RUSSIA, FEDERATION OF;SERBIA;SWITZERLAND','','SecretariatKerstin HerltACE c/o Deutsches Filminstitut - DIF e.V.Schaumainkai 4160596 FrankfurtGermanyT: 49 69 961220-621','01/2013\r\n - \r\n 12/2013','ACE is an affilation of 44 national and regional preservation film archives from all over Europe. The main aims of ACE are:to guarantee the survival of the European film heritage,to ensure and enhance its visibility on the cinema screen as well as through new moving image technologies,to raise awareness of its cultural and economic value among European decision makers,to promote public interest in European film culture and film history;to coordinate support for the conservation, restoration and digitisation of films deposited in European archives;to raise sufficient funds to preserve analogue and digital film; to initiate joint projects and training measures;to develop European-wide technical and scientific research into conservation, digitisation and restoration of Europe\'s cinema','3 Rue Ravenstein \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','600000\r\n € - 700000\r\n €','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Other public or mixed entities, etc.','President','Association des Cinémathèques Européennes','FIAF=Federation International des Archives du FilmAudiovisual ObservatoryEuropeana Foundation, Europeana Network','0','44','Eye Film Institute Netherlands, Amsterdam (0 members);Greek Film Archive, Athens (0 members);FILMOTECA DE CATALUNYA, Barcelona (0 members);JUGOSLOVENSKA KINOTEKA, Beograd (0 members);BUNDESARCHIV-FILMARCHIV,Berlin (0 members);DEUTSCHE KINEMATHEK - Museum für Film und Fernsehen, Berlin (0 members);LICHTSPIEL - KINEMATHEK BERN (0 members);CINETECA DEL COMUNE DI BOLOGNA (0 members);CINEMATHEQUE ROYALE DE BELGIQUE, Brussels (0 members);ARHIVA NATIONALA DE FILME, Bucuresti (0 members);HUNGARIAN FILM ARCHIVE, Budapest (0 members);DEUTSCHES FILMINSTITUT - DIF, Frankfurt (0 members);CINETECA DEL FRIULI, Gemona (0 members);NATIONAL AUDIOVISUAL ARCHIVE , Helsinki (0 members);DFI - ARCHIVE AND CINEMATHEQUE, Kobenhavn (0 members);CINEMATHEQUE SUISSE , Lausanne (0 members);CINEMATECA PORTUGUESA - MUSEO DO CINEMA, Lisboa (0 members);ARHIV REPUBLIKE SLOVENIJE - SLOVENSKI FILMSKI ARHIV, Ljubljana (0 members);SLOVENIAN CINEMATHEQUE - SLOVENSKA KINOTEKA, Ljubljana (0 members);BFI COLLECTIONS DEPARTMENT, London (0 members);CINEMATHEQUE MUNICIPALE DE LUXEMBOURG (0 members);FILMOTECA ESPANOLA, Madrid (0 members);FONDAZIONE CINETECA ITALIANA, Milano (0 members);GOSFILMOFOND OF RUSSIA, Moskva (0 members);NORSK FILMINSTITUTT , Oslo (0 members);CINEMATHEQUE FRANCAISE - MUSEE DU CINEMA, Paris (0 members);ARCHIVES FRANCAISES DU FILM - CNC, Paris (0 members);CRNOGORSKA KINOTEKA/ FILM ARCHIVES OF MONTENEGRO, Podgorica (0 members);NARODNI FILMOVY ARCHIV, Praha (0 members);FONDAZIONE CENTRO SPERIMENTALE/ CINETECA NAZIONALE, Roma (0 members);KINOTEKA NA MAKEDONIJA, Skopje (0 members);CINEMATEKET - SVENSKA FILMINSTITUTET , Stockholm (0 members);MUSEO NAZIONALE DEL CINEMA, Torino (0 members);LA CINEMATHEQUE DE TOULOUSE (0 members);IVAC - INSTITUTO VALENCIANO DE CINEMATOGRAFIA , Valencia (0 members);FILMOTECA VATICANA (0 members);FILMOTEKA NARODOWA, Warszawa (0 members);ÖSTERREICHISCHES FILMMUSEUM, Wien (0 members);FILMARCHIV AUSTRIA, Wien (0 members);HRVATSKA KINOTEKA - HRVATSKI DRZAVNI ARHIV, Zagreb (0 members);Najonalbiblioteket Norway (0 members);Imperial War Museums (0 members);Filmmuseum München (0 members);Irish Film Institute and Archive (0 members)','45960464757-14','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=45960464757-14','13/12/10 15:19:55','2014-12-03T06:08:56.706216','(+32) 255119 02','04/12/13 13:03:09','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Public entity','Government'),(216,'other','./contribution_rTdRnS2.pdf','FP 7 program participation: Project OpenAire PlusCulture Programme participation: Project EOD Culture','national;European;global','SLOVAKIA','','','01/2013\r\n - \r\n 12/2013','The University Library in Bratislava is a major cultural, information, scientific and educational instution. It is a universal state research library allowing the general public open access to knowledge and information distributed through many types of media. The Library carries out coordination, statistical, educational and methodological work for libraries in Slovakia, fulfils statewide functions, provides literary, information, bibliographic applied research, and cultural activities and provides and takes part in international, regional and national development of library and information systems. The University library in Bratislava acts as:• depository library of the Slovak Republic• depository library for the UN• depository library and information center for UNESCO• depository library for NATO• conservation and depositary library for dissertations approved in Slovakia• Slovak national retrospective bibliography research cebter• Slovak Union Catalogue of Periodicals provider• National Agency for the International Standard Serial Number (ISSN)• inter-library loans and the national head office for international inter-library loans• coordinator of international library cooperation, restoration and conservation of documents, photoduplication, scanning and digitisation centre','1 Michalská \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bratislava 814 17\r\n SLOVAKIA','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','deputy general director','Univerzitná knižnica v Bratislave','','245','','','993542312800-18','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=993542312800-18','31/01/14 13:37:33','2014-12-03T07:25:09.769363','(+4212) 59804222','31/01/14 13:38:42','sk',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(217,'other','./contribution_cEiyakM.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'38395686849-02',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(218,'other','./contribution_aFtUKfo.pdf','Following a preparatory phase, CLARIN-EL is currently at the implementation phase. The aim of the consortium is to - collect and integrate digital multimedia/multimodal content (text, audio, image, video) and the relevant Language Resources (LRs, such as annotated recordings, texts, lexica, ontologies etc.) and Language Technologies (LTs, such as speech recognizers, lemmatisers, parsers, summarizers, information extractors etc.) into a coherent federation of distributed repositories,- make these resources available to the scholars of all disciplines in the SSH via web services.','national;European','GREECE','','','11/2012\r\n - \r\n 11/2013','CLARIN-EL constitutes the Greek counterpart of the European CLARIN infrastructure (www.clarin.eu) that aims to enhance and promote research in the Social Sciences and Humanities (SSH) deploying Language Resources & Technology (LRT).CLARIN-EL is a large-scale national collaborative effort focusing on Greek LRT. More specifically, it seeks to provide researchers unified single sign-on access to a platform which integrates language-based resources and advanced tools. To this end, it- collects and integrates digital multimedia/multimodal content (text, audio, image, video) and the relevant Language Resources (LRs, such as annotated recordings, texts, lexica, ontologies etc.) and Language Technologies (LTs, such as speech recognizers, lemmatisers, parsers, summarizers, information extractors etc.) into a coherent federation of distributed repositories,- makes these resources available to the scholars of all disciplines in the SSH via web services.As part of the European infrastructure, it seeks to make available all Greek-language related material to scholars all over Europe as well as to provide access to LRTs offered by the CLARIN RI to the Greek scholars.','6 Artemidos & Epidavrou \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Athens 15125\r\n GREECE','','IV - Think tanks, research and academic institutions','Academic institutions','Head of Department','CLARIN ATTIKI - Support and development of greek partners for the participation in the European Research Infrastructure Consortia','CLARIN-EL is the Greek counterpart of the European CLARIN Research Infrastructure, which aims at providing easy and sustainable access for SSH scholars to digital LRs and advanced tools to discover, explore, exploit, annotate, analyse or combine them, independent of where they are located. CLARIN is conceived as a distributed data infrastructure, with sites all over Europe. Typical sites are universities, research institutions, libraries and public archives.The CLARIN Governance and Coordination body at the European level is CLARIN ERIC.','0','3','Athena R.C. / Institute for Language and Speech Processing (ILSP) (19 members);NCSR Demokritos (5 members);Greek Research & Technology Network (GRNET) (3 members)','834530213180-71','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=834530213180-71','05/03/14 11:22:24','2014-12-03T06:59:55.471115','(+30) 2106875300','05/03/14 12:19:05','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(219,'other','./contribution_yAl8SSl.pdf','Im Vorjahr wurden keine Tätigkeiten im Rahmen des Transparenzregisters abgedeckt.','sub-national;national;European;global','GERMANY','Der Bericht über Finanzen und die Mitgliederentwicklung für das Geschäftsjahr 2012 findet sich unter http://www.gi.de/fileadmin/redaktion/Download/GI_Jahresbericht_2012-2013.pdf.Die Aufwendungen für EU-Lobbytätigkeiten der GI betragen bislang 0 Euro.','','01/2012\r\n - \r\n 12/2012','Die Gesellschaft für Informatik e.V. (GI) wurde 1969 in Bonn mit dem Ziel gegründet, die Informatik zu fördern. Sie verfolgt ausschließlich gemeinnützige Zwecke. Diese werden erreicht durch:- Unterstützung der fachlichen und beruflichen Arbeit von Informatikern und Informatikerinnen- Herausgabe und Förderung von Fachpublikationen- Mitwirkung im Vorfeld politischer Planung und Gesetzgebung zur Forschungs-, Bildungs- und Technologiepolitik- Abgabe von öffentlichen Empfehlungen und Stellungnahmen zur Informatik- Förderung des wissenschaftlichen Nachwuchses und Ausrichtung von Informatik- Wettbewerben- Förderung von in der Informatik tätigen Frauen mit dem Ziel ihrer faktischen Gleichstellung- Bereitstellung fachlicher Kommunikationsforen durch Veranstaltung von Arbeitstreffen, Fachtagungen, Kongressen und Ausstellungen- Mitwirkung im Bereich von Normen, Standards und Validierungen- Zusammenarbeit mit nationalen und internationalen VereinigungenDie GI veranstaltet jedes Jahr in einer anderen Stadt gemeinsam mit einer örtlichen Hochschule die \"INFORMATIK 20XX\", auf der aktuelle Entwicklungen und Trends aus Sicht von Wissenschaft und Wirtschaft dargestellt werden.Die GI ist Mitglied in der International Federation for Information Processing (IFIP) und dem Council for European Professional Informatics Societies (CEPIS) Sie hat außerdem Sitz und Stimme im Stiftungsrat der Stiftung Werner-von-Siemens-Ring.Die GI ist zusammen mit den Universitäten Kaiserslautern, Karlsruhe und Saarbrücken und anderen Institutionen Gesellschafter des Schloß Dagstuhl - Leibniz-Zentrum für Informatik - einem Mitglied der Leibniz-Gemeinschaft . Schloß Dagstuhl wird getragen von den Bundesländern Saarland und Rheinland-Pfalz.Neben dem Bund, den Bundesländern und anderen Fachgesellschaften ist sie Gesellschafter des Fachinformationszentrums FIZ Karlsruhe (ebenfalls ein Mitglied der Leibniz-Gemeinschaft).Zusammmen mit der Fraunhofer- Gesellschaft ist die GI Trägerin des Bundeswettbewerbs Informatik, der unter der Schirmherrschaft des Bundespräsidenten steht.Die DIA Deutsche Informatik Akademie GmbH, initiert und mehrheitlich getragen von der GI, bietet ein anspruchsvolles Weiterbildungsprogramm in Informatik an.Die Mitglieder der GI kommen aus allen Bereichen der Wissenschaft, der Informatikindustrie, der Anwendungen, der Lehre und der Ausbildung. Derzeit hat die GI ca. 20.000 Mitglieder.Mehr Informationen finden Sie unter http://www.gi.de/startseite.html und zur Organisationsstruktur unter http://www.gi.de/gliederungen.html.','45 Ahrstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bonn 53175\r\n GERMANY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Mitglied des Präsidiums und erweiterten Vorstandes','Gesellschaft für Informatik e.V.','Die GI ist Mitglied in CEPIS (Council of European Professional Informatics Societies), Informationen unter: http://www.cepis.org und der IFIP (International Federation of InformationProcessing), Informationen unter http://www.ifip.org.','20,000','','','786100813031-55','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=786100813031-55','22/02/14 13:17:02','2014-12-03T06:54:54.492730','(+49) 0228 302145','23/02/14 15:23:17','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(220,'other','./contribution_ZyT6CV6.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(221,'other','./contribution_zYzsMxg.pdf','Nessuna','global','ITALY','','','01/2012\r\n - \r\n 12/2012','La Fondazione Centro Sperimentale di Cinematografia è la più importante istituzione italiana di insegnamento, ricerca e sperimentazione nel campo della cinematografia, intesa nel suo senso più ampio: film, documentario, fiction, animazione. Nato nel 1935, il Centro Sperimentale di Cinematografia si articola oggi in due distinti settori: la Scuola Nazionale di Cinema e la Cineteca Nazionale.La Scuola Nazionale di Cinema, che ha la sede principale a Roma e sedi distaccate in Abruzzo, Lombardia, Piemonte e Sicilia, ha quale finalità lo sviluppo dell\'arte e della tecnica cinematografica e audiovisiva a livello d\'eccellenza attraverso la ricerca, la sperimentazione e la produzione in costante riferimento all’attività didattica. Costituisce un incubatore culturale per tutti i profili della cinematografia e dell’audiovisivo: produttori, registi, fotografi, sceneggiatori, scenografi, attori, montatori, musicisti e tecnici del suono oltre a esperti della cinematografia digitale e professionisti di tutto il mondo. Tra le strutture a disposizione di allievi, docenti e studenti internazionali vi è la Biblioteca \"Luigi Chiarini\", specializzata in fondi e collezioni di materiali librari e documentali di argomento cinematografico, nonchè centro di raccolta di sceneggiature originali e di altri importanti materiali cartacei d\'autore, quali disegni, bozzetti, press-book. Inoltre, la Fondazione Centro Sperimentale di Cinematografia pubblica libri e riviste cinematografiche, tra cui Bianco e Nero, rivista quadrimestrale di critica e tecnica cinematografica nata nel 1937. La Cineteca Nazionale, nata nel 1949 per legge istitutiva dello Stato, è uno tra i maggiori archivi cinematografici europei, ricco di oltre 120.000 pellicole che includono il patrimonio dell\'Archivio Nazionale del Cinema d\'Impresa di Ivrea e gestisce il deposito obbligatorio di tutti i film prodotti e co-prodotti in Italia e iscritti al pubblico registro della cinematografia della SIAE.La Cineteca Nazionale conserva dunque il patrimonio filmico nazionale e film stranieri acquisiti attraverso scambi con cineteche di altri paesi aderenti alla Fédération Internationale des Archives du Film (FIAF). Si occupa della preservazione e del restauro delle opere cinematografiche, svolge, in Italia e all\'estero, un ruolo fondamentale di ricerca, di valorizzazione e di promozione del cinema italiano, anche mediante convenzioni con enti, accademie e istituti di cultura, associazioni culturali, scuole e università. Alla conservazione di questo prezioso patrimonio, la Cineteca Nazionale affianca un\'intensa attività di diffusione culturale attraverso rassegne e festival realizzati in collaborazione in tutto il mondo e anche con una propria programmazione presso il Cinema Trevi di Roma','1520 TUSCOLANA \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n ROMA 00173\r\n ITALY','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','DIRETTORE GENERALE','FONDAZIONE CENTRO SPERIMENTALE DI CINEMATOGRAFIA','La Fondazione Centro Sperimentale di Cinematografia aderisce attraverso la Cineteca Nazionale alla Féderation Internationale des Archives du Film - FIAF e all’Association des Cinémathèques Européennes - ACE e attraverso la Scuola Nazionale di Cinema al Centre International de Liaison des Ecoles de Cinéma et de Télévision - CILECT.','153','','','322755913215-82','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=322755913215-82','25/03/14 16:37:22','2014-12-03T07:08:13.807178','(+06) 722941','25/06/14 12:45:08','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(222,'other','./contribution_bibMloH.pdf','As a library we always work on and support:- E-learning- Intellectual property- Author rights- Remote access to information/documents- Institutional repositories- Global visibility- Data management and Data preservation challenges- Support open data and open access by collaborating with faculty, researchers, students, and other partners to ensure the long-term curation and accessibility of scholarly works in all formats.','national;European;global','SPAIN','IE Library doesn\'t receive any money outside its own budget.','','09/2012\r\n - \r\n 08/2013','The IE Library works to support research, teaching and learning, providing access to the necessary information resources, besides to facilitate their conservation and diffusion.','8 Castellón de la Plana \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Madrid 28006\r\n SPAIN','900000\r\n € - 1000000\r\n €','IV - Think tanks, research and academic institutions','Academic institutions','Head Librarian','IE Business School and IE University.','','20','0','','847552513093-34','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=847552513093-34','28/02/14 16:36:13','2014-12-03T07:29:21.511304','(+34) 91 782 17 08','28/02/14 16:36:37','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Academic institutions','Civil society'),(223,'other','./contribution_Ge5jbPX.pdf','Copyright and related rights issues affecting access to knowledge through libraries and archives.','national','UNITED KINGDOM','LACA is a voluntary body convened by CILIP: the Chartered Institute of Library and Information Professionals, which provides some administrative support in kind. LACA receives no financial support and has no income or expenditure. Its members support LACA\'s work on a voluntary basis.','Contact: Barbara Stratton barbara.stratton1@gmail.com Chair: Naomi Korn Email: naomi@naomikorn.com','01/2012\r\n - \r\n 12/2012','LACA: the Libraries and Archives Copyright Alliance, is a voluntary umbrella committee bringing together the United Kingdom\'s major professional organisations and experts representing librarians and archivists to advocate a fair and balanced copyright regime. LACA works with government and stakeholders to address the copyright and related rights issues affecting the ability of library, archive and information services to fully deliver access to knowledge in the digital age. LACA collaborates with EBLIDA: the European Bureau of Library, Information and Documentation Associations and IFLA: the International Federation of Library Associations and Institutions.LACA is a voluntary body convened by CILIP: the Chartered Institute of Library and Information Professionals. LACA personal members are either experts or represent the following organisations and institutions:ARA: The Archives & Records Association Art Libraries Society of the UK and IrelandBIALL: British and Irish Association of Law Librarians The British LibraryCILIP: the Chartered Institute of Library and Information ProfessionalsInternational Association of Music Libraries, Archives and Documentation Centres (IAML UK & Ireland)JISC: Joint Information Services CommitteeLIS-COPYSEEK online communityThe National ArchivesNational Library of ScotlandNational Library of WalesShare the VisionSociety of Chief Librarians in England and WalesSCONUL: Society of College, National and University Libraries','c/o CILIP 7 Ridgmount Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London WC1E 7AE\r\n UNITED KINGDOM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','International Spokesperson','Libraries and Archives Copyright Alliance','Liaison with CILIP: the Chartered Institute of Library and Information Professionals with EBLIDA: the European Bureau of Library, Information and Documentation Associations IFLA: the International Federation of Library Associations and Institutions.','21','0','','11749694961-85','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=11749694961-85','12/01/11 19:52:46','2014-12-03T07:40:29.263251','(+44) 20 7255 0500','16/12/13 11:01:30','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(224,'other','./contribution_4sb7Byx.pdf','-','European','BELGIUM','','The Flemish Art Collection is the structural partnership between three art-historical museums in Flanders: The Royal Museum of Fine Arts Antwerp, the Groeninge Museum Bruges and the Museum of Fine Arts Ghent. Based on their historically grown identities, these three museums wish to adopt collection policy that both complements and is attuned to one another, and that covers collection management and acquisition, research and presentation. The museums see each other as partners who have a joint responsibility with regard to Flanders’ cultural heritage. By joining forces and exchanging expertise, the museums wish to manage this heritage in a more sustainable and quality-based manner, and enhance their international reputation. Moreover, the Flemish Art Collection seeks to become a hub of networking and expertise development in the cultural heritage sector.','01/2012\r\n - \r\n 12/2012','The Flemish Art Collection is the structural partnership between three art-historical museums in Flanders: The Royal Museum of Fine Arts Antwerp, the Groeninge Museum Bruges and the Museum of Fine Arts Ghent. Based on their historically grown identities, these three museums wish to adopt collection policy that both complements and is attuned to one another, and that covers collection management and acquisition, research and presentation. The museums see each other as partners who have a joint responsibility with regard to Flanders’ cultural heritage. By joining forces and exchanging expertise, the museums wish to manage this heritage in a more sustainable and quality-based manner, and enhance their international reputation. Moreover, the Flemish Art Collection seeks to become a hub of networking and expertise development in the cultural heritage sector.','13 Abrahamstraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Gent 9000\r\n BELGIUM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Coördinator','Vlaamse Kunstcollectie','NEMO: Network of European Museum Organisations','2','3','KMSKA (0 members);MSK (0 members);Groeningemuseum (0 members)','139754412542-82','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=139754412542-82','06/01/14 11:48:26','2014-12-03T06:31:00.971450','(+32) 092254924','06/01/14 11:49:34','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(225,'other','./contribution_GAbEkER.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(226,'other','./contribution_2O8hexT.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(227,'other','./contribution_c55cvkI.pdf','in 2014 we had no activities in the European Parliament because of the election year','sub-national;national;European;global','GERMANY','Drittmittel Bund 110,45Drittmittel Länder 33,95Drittmittel DFG 59,64Drittmittel EU 46,43Drittmittel Leibniz-Wettbewerb: 24,19Drittmittel aus der Wirtschaft 35,34Drittmittel von Stiftungen 15,09Sonstige Drittmittel/andere Förderer (bspw. international) 24,31Sonstige Einnahmen (Lizenzen und Patente, Dienst- und Serviceleistungen, Publikationen, staatliche Transferzahlungen der Sozialversicherung etc.) 120,17Überträge aus dem Vorjahr/Kassenreste 76,93','Leibniz-Gemeinschaft Büro-Brüssel98 Rue du Trône, 4°BE-1050 Brüssel','01/2013\r\n - \r\n 11/2013','Die Leibniz-GemeinschaftDie Leibniz-Gemeinschaft verbindet 89 selbständige Forschungseinrichtungen. Deren Ausrichtung reicht von den Natur-, Ingenieur- und Umweltwissenschaften über die Wirtschafts-, Raum- und Sozialwissenschaften bis zu den Geisteswissenschaften. Leibniz-Institute bearbeiten gesellschaftlich, ökonomisch und ökologisch relevante Fragestellungen. Sie betreiben erkenntnis- und anwendungsorientierte Grundlagenforschung. Sie unterhalten wissenschaftliche Infrastrukturen und bieten forschungsbasierte Dienstleistungen an. Die Leibniz-Gemeinschaft setzt Schwerpunkte im Wissenstransfer in Richtung Politik, Wissenschaft, Wirtschaft und Öffentlichkeit. Leibniz-Institute pflegen intensive Kooperationen mit den Hochschulen u.a. in Form der WissenschaftsCampi , mit der Industrie und anderen Partnern im In- und Ausland. Sie unterliegen einem maßstabsetzenden transparenten und unabhängigen Begutachtungsverfahren. Aufgrund ihrer gesamtstaatlichen Bedeutung fördern Bund und Länder die Institute der Leibniz-Gemeinschaft gemeinsam. Die Leibniz-Institute beschäftigen rund 17.500 Personen, darunter 8.800 Wissenschaftlerinnen und Wissenschaftler. Der Gesamtetat der Institute liegt bei 1,5 Milliarden Euro.www.leibniz-gemeinschaft.deThe Leibniz AssociationThe Leibniz Association connects 89 independent research institutions that range in focus from the natural, engineering and environmental sciences via economics, spatial and social sciences to the humanities. Leibniz Institutes address issues of social, economic and ecological relevance. They conduct knowledge-driven and applied basic research, maintain scientific infrastructure and provide research-based services. The Leibniz Association identifies focus areas for knowledge transfer to policy-makers, academia, business and the public. Leibniz Institutes collaborate intensively with universities – in the form of “WissenschaftsCampi” (thematic partnerships between university and non-university research institutes), for example – as well as with industry and other partners at home and abroad. They are subject to an independent evaluation procedure that is unparalleled in its transparency. Due to the institutes’ importance for the country as a whole, they are funded jointly by the Federation and the Länder, employing some 17,500 individuals, including 8,800 researchers. The entire budget of all the institutes is approximately 1.5 billion EUR.www.leibniz-association.eu','111 Chausseestrasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10115\r\n GERMANY','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Büroleitung','Leibniz-Gemeinschaft','Science Europe, europäischer Dachverband, der die Stimme von Forschungsförderorganisationen und Forschungsorganisationen aus den EU-Mitgliedstaaten in Brüssel ist und deren Interessen vertritt.','0','5','Sektion A - Geisteswissenschaften und Bildungsforschung (0 members);Sektion B - Wirtschafts- und Sozialwissenschaften, Raumwissenschaften (0 members);Sektion C - Lebenswissenschaften (0 members);Sektion D - Mathematik, Natur- und Ingenieurwissenschaften (0 members);Sektion E - Umweltwissenschaften (0 members)','92825497182-59','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=92825497182-59','17/11/11 16:03:48','2014-12-03T06:56:23.613017','(+49) 302060490','05/11/14 17:46:18','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(228,'other','./contribution_kI9qF2G.pdf','EU Research Policy; EU Higher Education Policy; European Research Area; Horizon 2020','national;European;global','BELGIUM;FINLAND;FRANCE;GERMANY;ITALY;NETHERLANDS;SPAIN;SWEDEN;UNITED KINGDOM','','','01/2013\r\n - \r\n 12/2013','The League of European Research Universities (LERU) is an association of twenty-one leading research-intensive universities that share the values of high-quality teaching within an environment of internationally competitive research.Founded in 2002, LERU advocates education through an awareness of the frontiers of human understanding; the creation of new knowledge through basic research, which is the ultimate source of innovation in society; and the promotion of research across a broad front in partnership with industry and society at large.The purpose of the League is to advocate these values, to influence policy in Europe and to develop best practice through mutual exchange of experience. LERU regularly publishes a variety of papers and reports which make high-level policy statements, provide in-depth analyses and make concrete recommendations for policymakers, universities, researchers and other stakeholders','8 Minderbroedersstraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Leuven 3000\r\n BELGIUM','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Secretary-General','League of European Research Universities','','6','21','KU Leuven (0 members);University of Helsinki (0 members);Universite Paris-Sud (0 members);Universite de Satrsbourg (0 members);University of Freiburg (0 members);Universität Heidelberg (0 members);Ludwig-Maximilians-Universität München (0 members);University of Milan (0 members);Universitat de Barcelona (0 members);Lund University (0 members);Universite de Genève (0 members);University of Zurich (0 members);Pierre & Marie Curie University (0 members);University of Amsterdam (0 members);Utrecht University (0 members);Universiteit Leiden (0 members);University of Cambridge (0 members);University of Edinburgh (0 members);Imperial College London (0 members);University College London (0 members);University of Oxford (0 members)','823693912705-83','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=823693912705-83','24/01/14 11:54:59','2014-12-03T06:26:03.843170','(+0032) 16329971','24/01/14 11:57:09','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(229,'other','./contribution_QHYKFXx.pdf','There are no structural lobbying activities that are undertaken by Kennisland. We do respond to consultations, participate in various European networks en engage in public discussions related to topics we are working on.','national;European','NETHERLANDS','KL does not receive structural funding from any source. The amounts refer to contributions received by Kennisland for various projects. The composition of these sources fluctuates signifficantly over the years.','','01/2013\r\n - \r\n 12/2013','Knowledgeland (KL) is an independent Dutch thinktank based in Amsterdam. Founded in 1999, its mission is to help establish the Netherlands as one of the key regions in the international knowledge economy. And preferably in a way that creates both economic and social value. The activities of KL are threefold:* Together with government, private sector, knowledge institutions and civil society we develop innovation strategies. Strategies that help the Netherlands to realise its potential in the knowledge economy by changing its structures and actions.* We initiate projects that help people and organisations to take action. These projects are aimed at enlarging the opportunities for people to participate in knowledge economy, creating the best climate for knowledge workers (and their companies) and stimulating the innovation of public institutions to help them work effectively in the knowledge economy and society. More information on these projects can be found here.* We organise learning networks around these innovation strategies and projects. These networks help organisations to understand the need and impact of knowledge economy and share experiences while taking action.Thus, KL brings together a network of government, private sector, knowledge institutions and civil society to think about the consequences of the knowledge economy and how to respond to it as a society. But that is not its final destination. KL also translates this response into concrete action and supports learning in this transformation process. In short, we learn by acting.','174 Keizersgracht \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 2960\r\n \r\n \r\n \r\n \r\n Amsterdam 1000CZ\r\n NETHERLANDS','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Vice-Chair','Stichting Nederland Kennisland','Kennisland is a signatory of Copyright for Creativity. We are a member of Kunsten 92 (Dutch art sector interest group), a member of the COMMUNIA association for the Public Domain and a member of the Social Innovation Exchange','16','0','','78964012479-25','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=78964012479-25','09/10/09 11:35:54','2014-12-03T07:18:13.140944','(+31) 205756720','12/09/14 11:37:17','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(230,'other','./contribution_SskTatu.pdf','Licences for Europe initiativeCopyright review consultation','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Created in 2010, C4C is a broad-based coalition that seeks an informed debate on how copyright can more effectively promote innovation, access, and creativity. C4C represents libraries, scientific and research institutions, consumers, digital rights groups, technology businesses and educational institutions that share a common view on copyright embodied in C4C’s Declaration .','33 Kreupelstraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Schepdaal 1703\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Other similar organisations','Coordinator','Copyright for Creativity','Our network is comprised of the following signatories:AI - Asociación de InternautasAIB - Associazione Italiane Biblioteche (Italian Library Association)BEUC - The European Consumers\' OrganisationBLIA - Bulgarian Library and Information AssociationCC - Centrum CyfroweCCIA - Computer and Communications Industry AssociationCoadec - Coalition for a digital economyDINI - Deutsche Initiative für Netzwerkinformation e. V. (German Initiative for Network Information)EBLIDA - European Bureau of Library, Information, and Documentation AssociationsEDRi - European Digital RightsEFF - Electronic Frontier FoundationENCES - European Network for Copyright in support of Education and ScienceEIFL - Electronic Information for LibrariesEuroISPA - European ISP AssociationFCForum - Free Culture Forum of BarcelonaFOBID - Netherlands Library AssociationFSFE - Free Software Foundation EuropeFundacja Nowoczesna Polska - Modern Poland FoundationGLA - German Library Association (dbv)iCommons - iCommonsIFLA - International Federation of Library Associations and InstitutionsIMMF - International Music Managers\' ForumIP Justice - IP JusticeKEI - Knowledge Ecology InternationalLACA - Libraries and Archives Copyright AllianceLIBER - Association of European Research Libraries (Stichting LIBER Foundation)DINI - Deutsche Initiative für Netzwerkinformation e. V. (German Initiative for Network Information)ORG - Open Rights GroupRLUK - Research Libraries UKSLA - Special Libraries AssociationX.net - X.netThe latest version of this list can be found at: http://copyright4creativity.eu/about-us/',NULL,NULL,NULL,'342464912839-08','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=342464912839-08','04/02/14 11:44:54','2014-12-03T06:12:50.611470','(+0474) 840515','18/11/14 15:22:45','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(231,'other','./contribution_0sDYIz2.pdf','Organisatie van tentoonstellingen','sub-national','BELGIUM','','','12/2012\r\n - \r\n 12/2013','Het Museum van Deinze en de Leiestreek is het portaal tot de Leiestreek.Het verzamelt en toont het werk van kunstenaars die in de Leiestreek gewoond en/of gewerkt hebben. Door wetenschappelijk onderzoek, presentatie van de collectie en tijdelijke tentoonstellingen wordt de nationale uitstraling van deze kunstenaars bestendigd en het internationaal belang versterkt. Het museum vertelt eveneens het verhaal van het industriële en agrarische leven dat zich ontwikkelde rond de rivier de Leie in deze regio. De erfgoedcollectie wordt thematisch getoond met voldoende aandacht voor het informatieve en educatieve aspect. Waar het zinvol en mogelijk is, worden plastische kunsten verweven met de erfgoedcollectie. Het museum streeft naar een onbevangen tentoonstellingsbeleid dat enerzijds de vaste collectie valoriseert en anderzijds via nieuwe invalshoeken een breed publiek aantrekt.De doelgroep voor het museum zijn geïnteresseerden voor de kunst en geschiedenis van Deinze en de Leiestreek in het algemeen. Als stedelijk museum wordt ook rekening gehouden met de inwoners van de Leiestreek en het museum speelt in op nieuwe toeristische tendensen in de regio. Het versterken van het regionale netwerk is immers één van de cruciale functies. Parallel met de genoemde publiekswerking en de versterking van de uitstraling, zal ook de actieradius vergroten inzake het aantal bereikte bezoekers.','3-5 L. Matthyslaan \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Deinze 9800\r\n BELGIUM','600000\r\n € - 700000\r\n €','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Local, regional and municipal authorities (at sub-national level)','Conservator','Museum van Deinze en de Leiestreek','','9','','','045500812772-22','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=045500812772-22','30/01/14 09:37:51','2014-12-03T06:26:46.835517','(+09) 3819670','30/01/14 09:38:24','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Local authority','Government'),(232,'other','./contribution_k5zsFGS.pdf','Copyright consultation','European','BELGIUM','','','01/2012\r\n - \r\n 12/2012','MissieVlaanderen wil een toppositie bekleden in de informatiemaatschappij. Om een Europese topregio te zijn heeft onze samenleving behoefte aan een betrouwbaar, kwaliteitsvol en duurzaam digitaal geheugen. PACKED vzw wil als kennisknooppunt bijdragen aan de creatie hiervan.VisiePACKED vzw wil als expertisecentrum een centrale rol opnemen om in Vlaanderen de vorming van kennis, ervaring en deskundigheid omtrent digitalisering en digitale archivering te centraliseren én de opgebouwde kennis, ervaring en deskundigheid te verspreiden. Het expertisecentrum wil zo de kwaliteit en de doeltreffendheid van de acties op het vlak van digitalisering en digitale archivering in het ruime cultureel erfgoedveld verbeteren en bewaken.PACKED vzw bouwt de reeds aanwezige kennis, ervaring en deskundigheid omtrent het creëren, beheren en toegankelijk maken van digitale collecties verder uit. Gezien haar historische achtergrond, doet PACKED vzw dit voornamelijk in functie van de museumsector en heeft ze hierbij een bijzondere maar niet-exclusieve aandacht voor audiovisuele kunst en audiovisueel erfgoed. Deze kennis, ervaring en expertise wil PACKED vzw in de toekomst niet alleen beschikbaar stellen van musea maar ook van andere (collectiebeherende) instellingen en organisaties binnen (en buiten) het cultureel erfgoedveld, zoals bijvoorbeeld archieven en bewaarbibliotheken.PACKED vzw coördineert hiernaast de samenwerking met en tussen de diverse actoren in het brede erfgoedveld die werken aan de verwerving en verspreiding van kennis, ervaring en expertise omtrent digitalisering en digitale archivering van uiteenlopende soorten cultureel erfgoed. Het expertisecentrum streeft ook naar afstemming met instellingen en projecten die gelijkaardige activiteiten ontplooien buiten het cultureel erfgoedveld, bv. universiteitsbibliotheken en omroepen.PACKED vzw is er op deze manier voor alle instellingen en organisaties in Vlaanderen die zich de zorg voor het cultureel erfgoed tot taak stellen. De organisatie werkt complementair aan FARO, het Vlaams steunpunt voor cultureel erfgoed. Het expertisecentrum stimuleert de standaardisering en innovatie binnen de cultureel erfgoedinstellingen en ondersteunt hen bij de aanpassing van hun diensten aan de eisen en mogelijkheden van de hedendaagse en toekomstige digitale samenleving.PACKED vzw bedt haar werking niet enkel in in de context van Vlaanderen en Brussel, maar uiteraard ook in de Belgische, Europese en bredere internationale context. Werken aan een digitale samenleving is per definitie grensoverschrijdend.','58 Delaunoystraat \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 23\r\n \r\n \r\n \r\n \r\n Brussel 1080\r\n BELGIUM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Coördinator','PACKED vzw - Expertisecentrum Digitaal Erfgoed','','0','','','047466312933-14','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=047466312933-14','04/03/14 15:46:41','2014-12-03T06:27:33.062316','(+32) 022171405','04/03/14 15:46:59','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(233,'other','./contribution_YmidKDZ.pdf','Subjects on which EBLIDA concentrates are European information society issues, including copyright & licensing, culture & education, and the role of libraries and archives.','national;European','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;BOSNIA-HERZEGOVINA;ICELAND;MOLDOVA, REPUBLIC OF;MONTENEGRO;NORWAY;SERBIA;SWITZERLAND;TURKEY','','','01/2013\r\n - \r\n 12/2013','EBLIDA is the European Bureau of Library, Information and Documentation Associations. We are an independent umbrella association of national library, information, documentation and archive associations and institutions in Europe.Subjects on which EBLIDA concentrates are European information society issues, including copyright & licensing, culture & education and EU enlargement. We promote unhindered access to information in the digital age and the role of archives and libraries in achieving this goal.','5 Prins Willem-Alexanderhof \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n The Hague 2595 BE\r\n NETHERLANDS','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Director','European Bureau of Library, Information and Documentation Associations','IFLA - International Federation of Library Associations and InstitutionsCAE - Culture Action Europe','0','0','','32997432484-79','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=32997432484-79','09/10/09 15:37:28','2014-12-03T07:15:52.420890','(+31) 7031401307','10/10/14 09:16:48','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(234,'other','./contribution_LwjFnwo.pdf','Daguerreobase project (ICT PSP)','global','','','','01/2013\r\n - \r\n 12/2013','Het FoMu is het expertise- en ontmoetingscentrum in Vlaanderen voor actuele en historische fotografiein al haar vormen. Onze frisse en dynamische aanpak met betrekking tot de vier museale basisfunctiesbevordert de passie voor en de kennis over fotografie bij een breed en divers publiek.Het FoMu inspireert bezoekers. Het stimuleert experiment en creativiteit. Met een duurzaam, kwalitatiefen up-to-date museumbeleid draagt het FoMu zijn collectie, tentoonstellingen en publieksaanbod uit totbuiten de landsgrenzen en versterkt zijn positie, invloed en uitstraling op nationaal en internationaal vlak.','47 Waalsekaai \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Antwerpen 2000\r\n BELGIUM','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Local, regional and municipal authorities (at sub-national level)','Directeur','AP FotoMuseum Provincie Antwerpen','FoMu is een Landelijk Erkend Vlaams Museum','42','','','353054713089-56','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=353054713089-56','28/02/14 15:34:15','2014-12-03T06:08:40.191109','(+32) 032429300','28/02/14 15:36:13','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Local authority','Government'),(235,'other','./contribution_vKjnzk6.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(236,'other','./contribution_fabHVlW.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(237,'other','./contribution_fuQyfSc.pdf','Tekijänoikeuden kollektiivihallinnointidirektiivi','sub-national;national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Sanasto on kirjailijoiden ja kääntäjien perustama tekijänoikeusjärjestö. Sanasto mahdollistaa tekijöiden luovan työn tekemisen ja tarjoaa kirjallisuuden käyttäjille toimivia ratkaisuja kirjallisuuden luvalliseen käyttöön.','29 A,7.krs Annankatu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n HELSINKI 00200\r\n FINLAND','','II - In-house lobbyists and trade/professional associations','Companies & groups','lakimies, legal counsel','Finnish Authors´ Copyright Society Sanasto','European Writers´Council (EWC)',NULL,NULL,NULL,'025938212702-61','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=025938212702-61','24/01/14 09:19:58','2014-12-03T06:37:10.960370','(+358) 9 5629 3300','24/01/14 09:23:58','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(238,'other','./contribution_miW2BSy.pdf','Öffentliche Konsultationen zur Überprüfung der Regeln zum EU-Urheberrecht','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Die Verwertungsgesellschaft für audiovisuelle Medien GmbH hat eine Betriebsgenehmigung der österreichischen Aufsichtsbehörde für Verwertungsgesellschaften, um die Rechte an Werken der Filmkunst und Laufbilder kollektiv wahrzunehmen. Sie nimmt insbesondere Vergütungsansprüche, wie diese im österreichischem Urheberrechtsgesetz definiert sind, für Filmhersteller und andere vergleichbare Rechteinhaber wahr und verteilt die vereinnahmten Entgelte an ihre Bezugsberechtigten.','25/1/9 Neubaugasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1070\r\n AUSTRIA','1,500 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','rechtlicher Vertreter','Verwertungsgesellschaft für audiovisuelle Medien','EUROCOPYA',NULL,NULL,NULL,'639712612740-87','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=639712612740-87','27/01/14 18:19:51','2014-12-03T06:07:16.668564','(+431) 526 43 01','27/01/14 18:21:21','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(239,'other','./contribution_tW2tDUf.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ro',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(240,'other','./contribution_Lowj8DZ.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(241,'other','./contribution_G448EhV.pdf','op dit moment geen','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','Incasso en verdeling van Thuiskopievergoedingen in Nederland','793-795 Kruisweg \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Hoofddorp 2132 NG\r\n NETHERLANDS','','II - In-house lobbyists and trade/professional associations','Other similar organisations','Manager','Stichting de Thuiskopie','',NULL,NULL,NULL,'444533913086-35','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=444533913086-35','28/02/14 13:56:02','2014-12-03T07:18:06.555013','(+3123) 7997019','28/02/14 13:57:15','nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(242,'other','./contribution_b0BFnFj.pdf','- Propuesta de Directiva del Parlamento Europeo y del Consejo relativa a la gestión colectiva de los derechos de autor y derechos afines y a la concesión de licencias multiterritoriales de derechos sobre las obras musicales para su utilización en el Mercado Interior.- Iniciativas varias en materia de copia privada.- Diálogo \"Licenses for Europe\".','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','AISGE es una asociación sin ánimo de lucro autorizada por el Ministerio español de Cultura para actuar como entidad de gestión colectiva de los derechos de propiedad intelectual. Su misión principal es la defensa y administración de los derechos de propiedad intelectual de los artistas intérpretes o ejecutantes del medio audiovisual.','11 Ruiz de Alarcón \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Madrid 28014\r\n SPAIN','','II - In-house lobbyists and trade/professional associations','Other similar organisations','Director de Relaciones Internacionales','Artistas Intérpretes, Sociedad de Gestión','AEPO-ARTISSCAPRLATIN ARTIS',NULL,NULL,NULL,'590758612684-66','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=590758612684-66','22/01/14 11:04:47','2014-12-03T07:25:54.132630','(+34) 915210412','22/01/14 11:05:55','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(243,'other','./contribution_7R3MOpk.pdf','1. Prace związane z projektem dyrektywy w sprawie zbiorowego zarządzania prawami autorskimi i prawami pokrewnymi orazudzielania licencji wieloterytorialnych dotyczących praw do utworów muzycznych na potrzeby ich wykorzystania na internetowym polu eksploatacji na rynku wewnętrznym.2. Prace związane z projektem dyrektywy w sprawie niektórych dozwolonych możliwości wykorzystywania utworów osieroconych.3. Prace związane z Komunikatem Komisji Europejskiej w sprawie treści na jednolitym rynku cyfrowym COM(2012)789 i konsultacjami \"Licences for Europe\".4. Prace związane z konsultacjami ogłoszonymi przez Komisję Europejską dotyczącymi przyszłości europejskiego prawa autorskiego.','national',NULL,'ZAPA, organizacja zbiorowego zarządzania prawami działająca w ramach SFP, sporządza corocznie - zgodnie z wymogami polskiej ustawy z 1994 r. o prawie autorskim i prawach pokrewnych - sprawozdanie finansowe i merytoryczne ze swojej działalności. Sprawozdania przekazywane są do organu nadzorczego SFP - Ministra Kultury i Dziedzictwa Narodowego, a także podawane do publicznej wiadomości na stronie www.zapa.org.pl','Stowarzyszenie Filmowców Polskich to największa w Polsce organizacja zrzeszająca ludzi filmu. Od 1966 roku nieprzerwanie dba o interesy twórców i środowiska filmowego. SFP ma niezwykle szeroki zakres działania. Od ochrony filmowców i zawodów filmowych, poprzez zbiorowy zarząd prawami autorskimi, aż po promocję i upowszechnianie kultury filmowej w Polsce i zagranicą oraz produkcję filmową. Zdania SFP:• reprezentowanie interesów środowiska filmowego w Polsce i zagranicą;• obrona interesów moralnych, prawnych i materialnych polskich twórców filmowych;• zbiorowe zarządzanie i ochrona praw autorskich i pokrewnych;• współpraca z instytucjami i organami administracji publicznej w sprawach ważnych dla kinematografii i branży audiowizualnej;• promocja polskiego kina i upowszechnianie jego dorobku w Polsce i na świecie;• wspieranie projektów naukowych i edukacyjnych z dziedziny filmu;• współudział w prawidłowym kształtowaniu stosunków między twórcami a producentami.29 maja 1995 roku Stowarzyszenie Filmowców Polskich otrzymało decyzją Ministra Kultury i Sztuki zezwolenie na zbiorowe zarządzanie prawami autorskimi do utworów audiowizualnych. Na tej podstawie SFP utworzyło w ramach swoich struktur komórkę o nazwie Związek Autorów i Producentów Audiowizualnych (ZAPA), której zadaniem jest działanie zgodnie z wymienionym zezwoleniem. ZAPA reprezentuje reżyserów, scenarzystów, operatorów obrazu, scenografów, kostiumografów, operatorów dźwięku, montażystów oraz producentów dzieł audiowizualnych. ZAPA jest jedną z najbardziej skutecznych organizacji zbiorowego zarządu w Polsce. Od momentu powstania konsekwentnie umacnia swoją pozycję na rynku praw autorskich w Polsce oraz swoją pozycję międzynarodową. Ma wynegocjowane i podpisane umowy z użytkownikami publicznymi i prywatnymi, współpracuje z wieloma organizacjami krajowymi i zagranicznymi, monitoruje dynamiczny rynek operatorów kablowych. Fundamentalnym elementem aktywności ZAPA jest właściwa identyfikacja dzieł audiowizualnych, pozwalająca na szybkie wypłaty należnych autorom i producentom tantiem, a także wspieranie walki z piractwem w obrocie utworami filmowymi. ZAPA współpracuje z licznymi organizacjami krajowymi i międzynarodowymi. W Polsce działa w porozumieniu z podobnymi organizacjami zbiorowego zarządzania prawami autorskimi i pokrewnymi, m.in. z ZAiKS, ZPAV, ZASP. ZAPA jest członkiem najważniejszych międzynarodowych organizacji zajmujących się ochroną dzieł audiowizualnych np.: CISAC, SAA, EUROCOPYA. ZAPA współpracuje również z AGICOA. ZAPA podpisała kilkadziesiąt umów z organizacjami zbiorowego zarządu w innych krajach (m.in. z SACD we Francji, The Directors Guild of Japan, SIAE we Włoszech, VG Wort i Bild Kunst w Niemczech) oraz z wielkimi studiami i gildiami amerykańskimi (m.in. 20th Century Fox, CBS, Paramount Pictures, Warner Bros, Walt Disney, Universal Studios Int., Sony Pictures Television, RHI International). W chwili obecnej w Polsce ZAPA reprezentuje ponad 3000 twórców i ich spadkobierców, ponad 300 producentów oraz na podstawie umów o wzajemnej reprezentacji z organizacjami zagranicznymi - dziesiątki tysięcy uprawnionych autorów i producentów na całym świecie, jak również setki tysięcy utworów audiowizualnych.','01/2013\r\n - \r\n 12/2013','Zdania SFP:• reprezentowanie interesów środowiska filmowego w Polsce i zagranicą;• obrona interesów moralnych, prawnych i materialnych polskich twórców filmowych;• zbiorowe zarządzanie i ochrona praw autorskich i pokrewnych;• współpraca z instytucjami i organami administracji publicznej w sprawach ważnych dla kinematografii i branży audiowizualnej;• promocja polskiego kina i upowszechnianie jego dorobku w Polsce i na świecie;• wspieranie projektów naukowych i edukacyjnych z dziedziny filmu;• współudział w prawidłowym kształtowaniu stosunków między twórcami a producentami','7 Krakowskie Przedmieście \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Warszawa 00-068\r\n POLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Pełnomocnik SFP-ZAPA','Stowarzyszenie Filmowców Polskich','SFP jest członkiem CISAC, SAA, AGICOA, EUROCOPYA a także współpracuje z innymi organizacjami',NULL,NULL,NULL,'122158812891-33','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=122158812891-33','07/02/14 15:29:20','2014-12-03T07:21:37.553220','(+4822) 5814360','10/02/14 12:09:40','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(244,'other','./contribution_ygbJSF1.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(245,'other','./contribution_8D6T5GQ.pdf','Public Consultation on the review of the EU copyright rulesDirective on collective rights management and multi-territorial licensing of musical works for online use','sub-national;national',NULL,'','','01/2013\r\n - \r\n 12/2013','SOZA je právnická osoba, neziskové občianske združenie autorov a vydavateľov hudobných diel. Toto združenie predstavuje záujmovú samosprávu, ktorou si nositelia majetkových práv cestou zvolených orgánov spravujú majetkové záujmy spoločenstva ako celku. V súlade s oprávnením Ministerstva kultúry Slovenskej republiky spravujeme na území Slovenska majetkové autorské práva k hudbe z celého sveta a vykonávame kolektívnu správu práv podľa Autorského zákona.SOZA má uzavretých 63 medzinárodných recipročných zmlúv o vzájomnom zastúpení, na základe ktorých zabezpečuje uplatňovanie práv slovenských hudobných tvorcov vo všetkých krajinách sveta, v ktorých existuje autorsko-právna ochrana. Recipročne SOZA zabezpečuje na území SR uplatňovanie práv zahraničných tvorcov rovnocenne právam domácich autorov.','3 Rastislavova \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bratislava 82108\r\n SLOVAKIA','','II - In-house lobbyists and trade/professional associations','Other similar organisations','Manažér vzťahov so zahraničím','Slovenský ochranný zväz autorský pre práva k hudobným dielam','CISAC - Confédération Internationale des Sociétes d´Auteurs et CompositeursBIEM - Bureau International des Sociétés Gérant les Droits d´Enregistrement et de Reproduction MécaniqueGESAC - Groupement Europeen des Societes d´Auteurs et Compositeurs',NULL,NULL,NULL,'502016313109-36','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=502016313109-36','03/03/14 11:22:59','2014-12-03T07:25:08.043267','(+421) 250202707','03/03/14 11:23:31','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(246,'other','./contribution_M9guzdg.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'937862813121-33',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(247,'other','./contribution_WaUOr1i.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(248,'other','./contribution_CKRatuY.pdf','Öffentliche Konsultation zur Überprüfung der Regeln zum EU-Urheberrecht','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Die Interessengemeinschaft österreichischer Autorinnen und Autoren (IG Autorinnen Autoren) wurde 1971 als gemeinsame Verhandlungsdelegation österreichischer Schriftstellerverbände gegründet und 1981 als eigenständige Organisation mit derzeit rund 3.500 Mitgliedern und 70 Mitgliederverbänden neu aufgebaut.Die IG Autorinnen Autoren ist unter anderem in folgenden Bereichen aktiv:•Förderung und Wahrung der beruflichen, rechtlichen und sozialen Interessen der österreichischen Schriftstellerinnen und Schriftsteller - insbesonders Vertragspartnern und Behörden gegenüber•Generelle und individuelle soziale und rechtliche Beratung und Information•Beratung und Unterstützung in vertraglichen Angelegenheiten und in allen Fällen von Zensur•Initiativen auf dem Gebiet des Steuer-, Sozial- und Urheberrechts•Entwicklung und Begutachtung von für schriftstellerisches Arbeiten relevanten Gesetzen und generellen vertraglichen Regelungen•Gemeinschaftsausstellungen und -präsentationen österreichischer Kunst-, Kultur- und Autorenverlage auf den internationalen Buchmessen in Leipzig, Frankfurt sowie auf der Buch Wien. Seit 2001 in Kooperation mit LiteRadio auch Buchpräsentationen, Lesungen, Diskussionen etc. am Buchmessenstand in Frankfurt, seit 2006 auch in Leipzig.','13 Seidengasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1070\r\n AUSTRIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführer','IG Autorinnen Autoren','',NULL,NULL,NULL,'192527912753-95','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=192527912753-95','28/01/14 13:18:46','2014-12-03T06:06:09.863499','(+43) 1 526204413','28/01/14 15:11:32','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(249,'other','./contribution_ztlKjV1.pdf','Lobbying en matière de droit d\'auteur et gestion collective','European',NULL,'','','01/2013\r\n - \r\n 12/2013','Créé en décembre 1990, le GESAC regroupe 34 des plus importantes sociétés d\'auteurs de l\'Union Européenne, de Norvège, de Suisse et d\'Islande.A ce titre, le GESAC représente près de 500.000 auteurs ou ayants droit d\'auteurs dans les domaines de la musique, des arts graphiques et plastiques, des oeuvres littéraires et dramatiques et de l\'audiovisuel ainsi que des éditeurs de musique.Le Groupement a pour objet, notamment à l\'égard des institutions de l\'Union Européenne, le soutien et le développement des activités juridiques, économiques et culturelles de ses membres.Dans le cadre de la construction européenne, le GESAC oeuvre en faveur d\'une protection efficace et au plus haut niveau du droit d\'auteur.','23 Rue Montoyer \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bruxelles 1000\r\n BELGIUM','800000\r\n € - 900000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Consultant','Groupement Européen des Sociétés d\'Auteurs et Compositeurs','',NULL,NULL,NULL,'36529354479-57','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=36529354479-57','05/11/10 11:07:23','2014-12-03T06:23:49.898849','(+322) 511 44 54','09/10/14 09:38:37','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(250,'other','./contribution_TJjz533.pdf','Diverses consultations et contributions.','sub-national;national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Société civile française de perception et de répartition de droit d’auteur, la SAIF compte près de 6000 auteurs des arts visuels dont près de 4000 photographes et près de 2000 auteurs des autres catégories des arts visuels : architectes, auteurs de bande dessinées, designers, peintres, plasticiens, sculpteurs …. La SAIF gère tout ou partie de l’ensemble des droits d’auteur de chaque auteur en fonction des apports qu’il a fait à la société. La SAIF intervient pour tous les supports et tous les modes d’exploitation et dans le monde entier soit directement soit par l’intermédiaire de ses accords avec les sociétés soeurs.','205 rue du Faubourg saint Martin \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75010\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Companies & groups','Directrice juridique','société des auteurs des arts visuels et de l\'image fixe','La SAIF est membre de la CISAC.',NULL,NULL,NULL,'039441312675-31','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=039441312675-31','21/01/14 16:01:02','2014-12-03T06:46:45.754915','(+33) 144610782','21/01/14 16:13:57','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(251,'other','./contribution_RkR5xO6.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(252,'other','./contribution_Ty8PTR7.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ro',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(253,'other','./contribution_7aP2acy.pdf','Lobbying activity related to the proposal of a Directive on collective rights management and multi-territorial licensing of rights in musical works for online uses.','global','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM','','','01/2013\r\n - \r\n 12/2013','CISAC is the umbrella organisation representing collective management organisations (CMOs) for authors worldwide. Founded in 1926, CISAC is a non-governmental, not for profit organisation based in Paris, France, with regional offices in Hungary, Chile, Burkina Faso and China. CISAC counts 227 authors societies as its members. These societies are based in 120 countries, including all EU Member States. Together, CISAC societies around the world represent over 3 million creators from all artistic disciplines including music, film, literature, drama and visual arts. Music composers and lyricists, filmmakers, screenwriters, painters, illustrators, sculptors, book writers, journalists, playwrights and other creators shape the world in which we live and enrich our lives with their creativity. CISAC’s key mission is to promote the interests of these creators and safeguard the future of creative activity and cultural diversity, in Europe and around the world. A main part of the work CISAC does is through its International Councils of Creators and other creator-led forums and think-tanks. CISAC is constantly working to enrich the modern copyright debate and to secure a position for creators in the international, regional and national scenes. As the umbrella organisation for authors’ societies, CISAC fosters the global network of collective management and promotes good governance, transparency and best practices among its members. Through a network of reciprocal agreements signed between its members, CISAC societies can administer and license foreign repertoire in their respective territories. This ensures that creative content is available globally and that royalties flow to creators wherever they are. For example, royalties that are collected for Spanish songs played in the UK will be dealt with by the British society on behalf of its Spanish counterpart, and vice versa. CISAC strives to enlarge the global network of authors’ societies, by supporting the creation of new societies and offering them its political, legal, logistical and technical expertise and assistance.','20-26 Boulevard du Parc \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Neuilly Sur Seine 92200\r\n FRANCE','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','General Counsel','International Confederation of Societies of Authors and Composers','','0','0','','322787612775-56','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=322787612775-56','30/01/14 10:24:56','2014-12-03T06:44:45.294363','(+33) 1 55 62 08 50','30/01/14 10:26:45','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(254,'other','./contribution_HvMSr5F.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(255,'other','./contribution_mrSYiYF.pdf','Richtlinie des Europ. Parlaments und des Rates über kollektive Wahrnehmung von Urheber- und verwandten Schutzrechten und die Vergabe von Mehrgebietslizenzen für die Online-Nutzung von Rechten an Musikwerken im Binnenmarkt','global','','','','01/2013\r\n - \r\n 12/2013','Die SUISA wahrt treuhänderisch die Rechte der Urheber und Urheberinnen von nichttheatralischen musikalischen Werken, welche ihr von den Urhebern und Urheberinnen oder ihren Verlegern und Verlegerinnen aus Liechtenstein (und der Schweiz) zur Verwaltung übertragen werden.','82 Bellariastrasse \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 782\r\n \r\n \r\n \r\n \r\n Zürich 8038\r\n SWITZERLAND','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Leiterin Internationale Beziehungen','SUISA, Genossenschaft der Urheber und Verleger von Musik','CISAC (Confédération Internationale des Sociétés d\'Auteurs et Compositeurs)BIEM ( Bureau International des Sociétés gérant les Droits d’Enregistrement et de Reproduction Mécanique)GESAC (Groupement Européen des Sociétés d\'Auteurs et Compositeurs)','31,712','','','782521712689-37','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=782521712689-37','23/01/14 10:35:15','2014-12-03T07:34:10.902177','(+4144) 485 6666','23/01/14 10:36:48','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(256,'other','./contribution_6VZnBbb.pdf',NULL,'national','ITALY','The bidget refers to the periodo from the 15 july 2010 to the 31 december 2010 due to the fact that the Institute has been founded on the july 2010.','','2010','As provided and disciplined by article 7 of Italian Law Act n. 100/10 “Provisions on the Istituto Mutualistico Artisti Interpreti Esecutori”, on July 12, 2010, the Nuovo IMAIE was established by a group of well-known artists representatives of the music and audiovisual areas.As a result of the above mentioned legislative act, the Nuovo IMAIE is the entity in charge, in Italy, for the protection and management of neighbouring rights granted to performing artists of the musical and audiovisual areas by Italian legislation and International Treaties. Nuovo IMAIE undertakes the tasks and functions already carried out by IMAIE until the date of the Declaration of Extinction by the Prefect of Rome.The Nuovo IMAIE operates under the joint vigilance of the Presidency of the Council of Ministers, Information and Publishing Department, the Ministry of Culture and the Ministry of Labour and Social Politics, that on September 29, 2010, approved its Statute and its Charter.','66 VIA PIAVE \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n ROME 00187\r\n ITALY','','other organisations','other (similar) organisation',NULL,'NUOVO IMAIE','','2,600','13','ACEP associazione autori compositori e piccoli editori (200 members);AIE 77 (200 members);AMOR Associazione Mondiale Organizzazioni Riunite (200 members);ARTISTI 7607 (200 members);ARTISTI INDIPENDENTI 2010 (200 members);ASAE associazione sindacale autori editori (200 members);ASSOARTISTI (200 members);DO RE MI (200 members);FIOFA federazione italiana organizzazioni festival D\'AUTORE (200 members);UNCLA (200 members);NOTE LEGALI (200 members);ASSODEJAY (200 members);A.N.P.A.D. associazione nazionale produttori autori dj (200 members)','50247435357-70','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=50247435357-70','21/02/11 14:21:14','2011-10-05T09:26:27.333037','(+06) 46208431','21/02/11 15:42:24','en','NUOVO IMAIE','Mr \r\n \r\n ANDREA MICCICHE\'','PRESIDENT','Audiovisual and media;Culture;Education;Information society;Internal market;Justice and home affairs;Regional policy','PRIVATE BODY','Nuovo IMAIE is strongly committed in all institutional activities aiming at promoting the adoption of legal initiatives and policies in favour of the performers\' rights and the enforcement of the national and European legal framework in the contest of IPR protection.',NULL,'NUOVO IMAIE',NULL,'http://www.nuovoimaie.it',2,NULL,NULL),(257,'other','./contribution_P91ENfI.pdf','Collectief rechtenbeheer','national;European;global',NULL,'','Lira is de auteursrechtenorganisatie en belangenbehartiger voor schrijvers, vertalers en freelance journalisten. Lira beheert collectief de rechten van duizenden schrijvende makers in Nederland.','01/2013\r\n - \r\n 12/2013','Lira zet zich in voor een betere positie van makers van tekst door uitoefening, bescherming en bevordering van auteursrechten. Lira beheert (collectief) auteursrechten van schrijvers en verdeelt vergoedingen onder alle tekstmakers die daar recht op hebben.','793-795 Kruisweg \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Hoofddorp 2132 NG\r\n NETHERLANDS','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','manager','Stichting Literaire Rechten Auteurs','- Vereniging van Organisaties die Intellectueel eigendom Collectief Exploiteren (VOI©E)- The International Confederation of Authors and Composers Societies (CISAC)- Society of Audiovisual Authors (SAA)- European Grouping of Societies of Authors and Composers (GESAC)- International Federation of Reproduction Rights Organisations (IFRRO)',NULL,NULL,NULL,'381918013157-40','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=381918013157-40','04/03/14 13:17:58','2014-12-03T07:18:12.413570','(+3123) 8700202','04/03/14 13:35:58','nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(258,'other','./contribution_N8DGkPV.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(259,'other','./contribution_q6WYvKS.pdf','1) Richtlinienvorschlag über kollektive Wahrnehmung von Urheber- und verwandten Schutzrechten.2) Stakeholder Dialog \"Licenses for Europe\".3) Stakeholder Dialog \"Resale Right\".4) Public consultation on the review of the EU copyright rules.','national;European;global',NULL,'Die Ausgaben beziehen sich auf die Kosten für das Handeln der für die VG Bild-Kunst handelnden Personen.','Berliner Büro:Köthener Straße 4410963 BerlinTelefon: ++49 / 30 / 261 38 45','01/2013\r\n - \r\n 12/2013','Die VG Bild-Kunst vertritt als deutsche Verwertungsgesellschaft knapp 55.000 Rechteinhaber, meist Urheberinnen und Urheber, aus dem visuellen Bereich (Bildende Kunst, Fotografie und Design sowie Film). Sie nimmt vor allem gesetzliche Vergütungsansprüche wahr, ist jedoch im Bereich der Bildenden Kunst auch in der Erstrechteverwertung tätig.Die VG Bild-Kunst ist ein wirtschaftlicher Verein und vertritt die Interessen ihrer Mitglieder im Bereich des Urheberrechts.','61 Weberstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bonn 53113\r\n GERMANY','20,000 €','II - In-house lobbyists and trade/professional associations','Other similar organisations','Justitiarin','Verwertungsgesellschaft Bild-Kunst','Die VG Bild-Kunst ist Mitglied in den Organisationen CISAC, IFFRO, SAA und EVA.',NULL,NULL,NULL,'038215812569-88','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=038215812569-88','08/01/14 12:40:12','2014-12-03T06:59:01.158039','(+49228) 915340','08/01/14 15:04:41','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(260,'other','./contribution_6QsOtck.pdf','Néant','national',NULL,'','','01/2013\r\n - \r\n 12/2013','La SCPP est une société de gestion collective des droits des producteurs phonographiques en France. Elle a également pour mission la défense de l\'intérêt collectif de la profession.','14 Blvd du Général LECLERC \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Neuilly-sur-Seine 92200\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Other similar organisations','Directeur Général Gérant','Société Civile des Producteurs Phonographiques','',NULL,NULL,NULL,'810218112458-75','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=810218112458-75','17/12/13 18:38:40','2014-12-03T06:46:43.538456','(+33) 141430303','21/11/14 17:53:44','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(261,'other','./contribution_imVMueo.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'825908213022-11',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(262,'other','./contribution_X9NeQun.pdf','Collective Management Society collecting and distributing remuneration to visual artists','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Norwegian Visual Artists Copyrights Society (BONO), established in 1992, is a Collective Managment Organisation for Visual Artists. Our society administers the copyright to the works of more than 2.100 Norwegian visual artists. Through agreements with foreign sister-societies it additionally represents more than 75.000 foreign artists in Norway.Norwegian Visual Artists Copyright Society (BONO) ensures easy licensing of the works of visual artists it represents, and is also responsible for administering the resale right in Norway.','3 Kjeld Stubs gate \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Oslo 0160\r\n NORWAY','','II - In-house lobbyists and trade/professional associations','Other similar organisations','Chief Executive','Norwegian Visual Artists Copyright Society (BONO)','Reciprocal and unilateral agreements with similar societies worldwide. Also member of CISAC, EVA (European Visual Artists)and OLA (OnLine Art).',NULL,NULL,NULL,'758345712751-18','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=758345712751-18','28/01/14 12:00:27','2014-12-03T07:19:52.814486','(+47) 23100350','28/01/14 12:09:34','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(263,'other','./contribution_g3RQI6D.pdf','SAA drafted written contributions to the following consultations:- 1st meeting of the Media intergroup of the European Parliament, chaired by Jean-Marie Cavada, French conservative MEP on February 2010.- European Commission Green Paper – Unlocking the potential of cultural and creative industries, July 2010.- European Commission consultation on behalf of the Reflection Group (Comité des Sages) on boosting cultural heritage online in Europe, September 2010.- European Commission consultation on the implementation of the Electronic Commerce Directive (200/31/EC) on November 2010.- European Commission consultation on the future of the MEDIA programme after 2013.','European',NULL,'','info@saa-authors.eu','01/2012\r\n - \r\n 12/2012','About SAAThe Society of Audiovisual Authors (SAA) is the grouping of Audiovisual Authors’ Collective Management Societies in Europe. Through its 25 members in 18 countries, it currently represents 120,000 screenwriters and directors of films, TV programmes and other audiovisual works. The organisation’s objectives are: • To defend and strengthen the economic and moral rights of audiovisual authors (screenwriters and directors); • To develop, promote and facilitate the management of rights by member societies; • To secure fair remuneration for audiovisual authors for every use of their works. SAA was established in 2010 because of a perceived need to strengthen the legal position of audiovisual authors (screenwriters and directors) and to lobby for a fair, transparent and harmonised system of remuneration for the digital use of films and other audiovisual programmes.','87 Rue du Prince Royal \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1050\r\n BELGIUM','200000\r\n € - 250000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Executive Director','Society of Audiovisual Authors','',NULL,NULL,NULL,'99336382936-11','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=99336382936-11','04/01/10 16:30:23','2014-12-03T06:29:09.681183','(+0032) 02 894 93 30','09/12/13 09:44:05','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(264,'other','./contribution_DhCf6Zc.pdf','Participation au Stakeholder Dialogue on the Resale Right (droit de suite)','sub-national;national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','L\'ADAGP est une société de perception et de répartition des droits d\'auteur dans le domaine des arts visuels.L\'ADAGP représente en 2013 plus de 115 000 auteurs dans le domaine des arts visuels (peinture, sculpture, photographie, bande-dessinée, architecture, design, création numérique, art vidéo…).Forte d’un réseau de près de 50 sociétés sœurs dans le monde, elle assure depuis plus de 60 ans la gestion et la répartition des droits d’auteur, pour tous les modes d’exploitation : livres, presse, produits dérivés, télévision, vidéo à la demande, sites internet, plateformes d’échange web 2.0…L\'ADAGP gère pour le compte de ses membres le droit de reproduction, le droit de représentation, le droit de suite et les droits dits collectifs (rémunération pour copie privée, reprographie, droit de prêt en bibliothèque...).','11 rue Berryer \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n PARIS 75008\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Companies & groups','Directrice générale','Société des auteurs dans les arts graphiques et plastiques','Confédération Internationale des Sociétés d\'Auteurs et Compositeurs (CISAC) / Conseil International des Créateurs des Arts Graphiques, Plastiques et Photographiques (CIAGP)Groupement européen des sociétés d\'auteurs et compositeurs (GESAC)European Visual Artists (EVA)',NULL,NULL,NULL,'155530512505-26','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=155530512505-26','13/01/14 14:21:17','2014-12-03T06:46:44.915216','(+33) 143590979','13/01/14 14:21:36','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(265,'other','./contribution_5Gi2q6z.pdf','Orpaned worksCopyrightscollective rights managementonline music licensing2005 Recommendation on collective cross-border management of copyright and related rights for legitimate online music servicesCulture','global',NULL,'','Public Affairs:Lange Voorhout 86/12 2514 EJ Den Haag+31 70 3109102','01/2012\r\n - \r\n 12/2012','Bij Buma/Stemra zijn ongeveer 20.000 componisten, tekstschrijvers en auteurs aangesloten. Buma/Stemra zorgt ervoor dat wanneer hun creaties gebruikt worden zij daar een eerlijke vergoeding voor krijgen. Buma/Stemra incasseert via zusterorganisaties in het buitenland deze vergoedingen wereldwijd voor hun leden. Ook biedt Buma/Stemra het wereldrepertoire aan in Nederland en incasseert voor buitenlandse componisten, tekstschrijvers en auteurs de vergoeding voor het gebruik en draagt dit af aan zusterorganisaties.','22-28 Siriusdreef \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Hoofddorp 2132 WT\r\n NETHERLANDS','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Manager Public Affairs','Buma/Stemra','GESACCISAC',NULL,NULL,NULL,'56091957679-64','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=56091957679-64','11/01/12 11:41:09','2014-12-03T07:15:11.087801','(+31) 23799 79 99','16/12/13 11:40:16','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(266,'other','./contribution_Nz4kHtz.pdf','COM(2012) 789 final, COMMUNICATION FROM THE COMMISSION, On content in the Digital Single MarketCOM(2012) 372 final2012/0180 (COD)Proposal for aDIRECTIVE OF THE EUROPEAN PARLIAMENT AND OF THE COUNCILon collective management of copyright and related rights and multi-territorial licensingof rights in musical works for online uses in the internal market','global',NULL,'','','01/2013\r\n - \r\n 12/2013','Stim är en upphovsrättsorganisation som företräder över 60.000 medlemmar och anslutna kompositörer och textförfattare på musikområdet.Verksamheten fokuserar på att aggregera musikrättigheter och licensiera dessa till musikanvändare. Verksamheten innefattar också kulturella inslag, såsom främjande av musikutvecklingen och användning.','103 Hornsgatan \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 17092\r\n \r\n \r\n \r\n \r\n Stockholm 10462\r\n SWEDEN','12,000 €','II - In-house lobbyists and trade/professional associations','Companies & groups','Jurist','Svenska tonsättares internationella musikbyrå','Stim är medlem i ett antal branschorganisationer, bland annat International Confederation of Societies of Authors and Composers (CISAC) and European Grouping of Societies of Authors and Composers',NULL,NULL,NULL,'806222410477-65','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=806222410477-65','17/01/13 11:19:44','2014-12-03T07:32:22.235528','(+46) 76 772 48 24','10/01/14 15:01:08','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(267,'other','./contribution_sBRSPLR.pdf','Directive on Collective Rights Management EU Copyright Rules Consultation','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','Collective rights management society licensing the music rights of its composer, songwriter and music publisher members to users of music.','29-33 Berners Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London W1T 3AA\r\n UNITED KINGDOM','25,000 €','II - In-house lobbyists and trade/professional associations','Companies & groups','Head of Legal, Policy and Public Affairs','PRS for Music','Member of GESAC',NULL,NULL,NULL,'798071410461-65','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=798071410461-65','15/01/13 08:47:56','2014-12-03T07:41:41.794553','(+44) 2073064234','13/01/14 11:21:10','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(268,'other','./contribution_Svnb6Na.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(269,'other','./contribution_6hhOV7B.pdf','Collective Management Society collecting and distributing remuneration to visual artists','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Norwegian Visual Artists Copyrights Society (BONO), established in 1992, is a Collective Managment Organisation for Visual Artists. Our society administers the copyright to the works of more than 2.100 Norwegian visual artists. Through agreements with foreign sister-societies it additionally represents more than 75.000 foreign artists in Norway.Norwegian Visual Artists Copyright Society (BONO) ensures easy licensing of the works of visual artists it represents, and is also responsible for administering the resale right in Norway.','3 Kjeld Stubs gate \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Oslo 0160\r\n NORWAY','','II - In-house lobbyists and trade/professional associations','Other similar organisations','Chief Executive','Norwegian Visual Artists Copyright Society (BONO)','Reciprocal and unilateral agreements with similar societies worldwide. Also member of CISAC, EVA (European Visual Artists)and OLA (OnLine Art).',NULL,NULL,NULL,'758345712751-18','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=758345712751-18','28/01/14 12:00:27','2014-12-03T07:19:52.814486','(+47) 23100350','28/01/14 12:09:34','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(270,'other','./contribution_OMBbFq8.pdf','Copyright in the Information society','global',NULL,'','','01/2013\r\n - \r\n 12/2013','In 1974 Dutch authors and publishers founded Stichting Reprorecht. In 1985 the Dutch Minister of Justice appointed Stichting Reprorecht as the organisation responsible for collecting reprographic reproduction fees. As such, it acts as a single office for both the public sector and educational institutions, businesses and other organisations. Stichting Reprorecht distributes these fees proportionately to writers and publishers in accordance with regulations approved by the Dutch government.Stichting Reprorecht is a Reproduction Rights Organisation (RRO). RROs are Collective Management Organisations (CMO) in the text and image sector. This sector includes the publication of books, journals, magazine newspapers, musical works in print and the like. The RROs administer reproduction and other relevant rights, including certain forms of digital uses, in copyright text- and image-based works on behalf of publishers and authors, including visual artists, when the authors and publishers do not want to or cannot administer the rights themselves. In print and publishing, the primary use of books, journals, newspapers, magazines, etc., be it in the form of sales, licensing or other ways of offering access, is generally provided directly by the publisher, author or other copyright holder, or via a retailer or an agent. RROs typically administer rights for certain secondary uses of already published works. The remuneration for such uses is vital to encourage authors and publishers to continue to create and publish high quality works. It is therefore crucial that the issue of remuneration of copyright holders for uses of their works is addressed appropriately.Stichting Reprorecht is affiliated to the International Federation of Reproduction Rights Organisations (IFRRO).','793 Kruisweg \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 3060\r\n \r\n \r\n \r\n \r\n Hoofddorp 2130 KB\r\n NETHERLANDS','','II - In-house lobbyists and trade/professional associations','Other similar organisations','onafhankelijk voorzitter','Stichting Reprorecht','Stichting Reprorecht is affiliated to the International Federation of Reproduction Rights Organisations (IFRRO).',NULL,NULL,NULL,'527979313085-96','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=527979313085-96','28/02/14 13:27:01','2014-12-03T07:18:16.733997','(+31) 238700207','28/02/14 13:28:00','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(271,'other','./contribution_Cwtl6Se.pdf','exchange of information with bodies of EU and member states.','European',NULL,'Finanzierung vollständig aus Mitgliedsbeiträgen','','01/2013\r\n - \r\n 12/2013','EVA represents the interests of artists of fine arts and photography and their collective management organisation.','87 rue du Prince Royal \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1050\r\n BELGIUM','150000\r\n € - 200000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Generalsekretärin','European Visual Artists','',NULL,NULL,NULL,'65338683969-01','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=65338683969-01','30/07/10 17:34:24','2014-12-03T06:21:35.380362','(+32) 25510890','07/07/14 10:10:07','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(272,'other','./contribution_cI5XMzw.pdf','Öffentliche Konsultation zur Überprüfung der Regeln zum EU-Urheberrecht','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Die Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte Gesellschaft m.b.H. hat eine Betriebsgenehmigung der österreichischen Aufsichtsbehörde für Verwertungsgesellschaften, um die Rechte an Sprachwerken kollektiv wahrzunehmen.Sie hebt als Treuhänder der Rechteinhaber Entgelte und Vergütungsansprüche für Nutzungen urheberrechtlich geschützter Werke ein und leitet sie an über 16.000 österreichische Bezugsberechtigte wie Schriftsteller, Drehbuchautoren, Journalisten, wissenschaftliche Autoren und Übersetzer sowie deren Rechtsnachfolger und Verleger weiter.Die Literar-Mechana schließt dazu aufgrund der ihr eingeräumten Rechte Gesamtverträge mit Nutzerorganisationen und Einzelverträge mit Werknutzern, sie verwaltet soziale und kulturelle Einrichtungen und setzt sich für ein modernes Urheberrechtsgesetz ein.','18 Linke Wienzeile \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1060\r\n AUSTRIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführerin','Literar-Mechana Wahrnehmungsgesellschaft für Urheberrechte GesmbH','CISAC, IFRRO, SAA',NULL,NULL,NULL,'399272912673-60','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=399272912673-60','21/01/14 14:02:33','2014-12-03T06:06:28.601937','(+43) 1 5872161','21/01/14 14:03:44','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(273,'other','./contribution_sCOdbvD.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'862803613164-64',NULL,NULL,NULL,NULL,NULL,'bg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(274,'other','./contribution_CAC3ACg.pdf','Public Consultation on the review of the EU copyright rules','global',NULL,'','','01/2013\r\n - \r\n 01/2014','Die Bildrecht1977 wurde die Bildrecht, damals noch VBK, als gemeinnütziger, unpolitischer und überparteilicher Verein von österreichischen Künstlern und Künstlerinnen ins Leben gerufen.Die Bildrecht ist zudem eine staatlich genehmigte Urheberrechtsgesellschaft. Sie vertritt BildurheberInnen gegenüber öffentlichen und privaten Stellen, um Einnahmen aus der Nutzung kreativer Leistungen zu Gunsten der KünstlerInnen zu erzielen. Die Bildrecht kümmert sich um die Einhebung und Verteilung der Einnahmen für die Nutzung der Werke an ihre Mitglieder. Sie nimmt kollektive Rechte wahr, die man aus praktischen oder gesetzlichen Gründen nicht individuell wahrnehmen kann. Die Bildrecht unterhält Partnerschaften mit dreißig internationalen Urheberrechtsgesellschaften. Neben 2.400 inländischen Kunstschaffenden vertritt sie stellvertretend an die 80.000 Künstler und Künstlerinnen aus aller Welt. Die Bildrecht verfolgt keine eigenen wirtschaftlichen Interessen. Die Erträge aus der Lizenzvergabe und kollektiven Rechtewahrnehmung werden - nach Abzug der im Durchschnitt bei 10 Prozent liegenden Verwaltungskosten – vollständig an den/die UrheberIn ausbezahlt. Wir sind von der Bedeutung modernen Kunstschaffens für eine positive Gesellschaftsentwicklung überzeugt. Deshalb unterstützt die Bildrecht KünstlerInnen in finanziellen Notlagen und jene, die noch am Anfang ihrer Karriere stehen. Auch stellen wir unseren Mitgliedern kostenlos die Ausstellungsflächen Bildraum 01 und Bildraum 07 zur Verfügung.Die Bildrecht will sicher gehen, dass ein fairer und respektvoller Umgang mit geistigem Eigentum auch zukünftig gewahrt wird. Folglich setzt sich die Bildrecht für eine Balance zwischen den Interessen ihrer Mitglieder und den Interessen ihrer Partner, den Kulturinstitutionen, ein. Darüber hinaus engagiert sie sich für die Gestaltung eines zeitgemäßen Urheberrechts. Die Tätigkeit der Bildrecht wird jährlich von mehreren Stellen geprüft - der Jahresabschluss von einem Wirtschaftsprüfer, die Ordnungsmäßigkeit der wirtschaftlichen Unternehmungen von einem Rechnungsprüfer und die Einhaltung der Bestimmungen des Verwertungsgesellschaftengesetzes von der Aufsichtsbehörde.','7-9/6 Burggasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1070\r\n AUSTRIA','1,000 €','II - In-house lobbyists and trade/professional associations','Other similar organisations','Geschäftsführer','Bildrecht GmbH Gesellschaft zur Wahrnehmung visueller Rechte','Die Bildrecht unterhält Partnerschaften mit dreißig internationalen Urheberrechtsgesellschaften. Auf europäischer Ebene ist die Bildrecht Mitglied der European Visual Artists (EVA) und auf globaler Ebene der International Confederation of Societies of Authors and Composers (Cisac)und OLA (Online Art).Gemeinsam wollen die Urherberechtsgesellschaften sicher gehen, dass ein fairer und respektvoller Umgang mit geistigem Eigentum auch zukünftig gewahrt wird.Ein weiteres Hauptziel dieser Verbindung ist es die Zusammenarbeit unter den Urheberrechtsgesellschaften ständig zu verbessern und das Service für die Kunstschaffenden zu erhöhen.',NULL,NULL,NULL,'091663613108-77','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=091663613108-77','03/03/14 10:30:41','2014-12-03T06:05:25.433009','(+43) 18152691','03/03/14 10:31:33','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(275,'other','./contribution_62EAk70.pdf','Közös Jogkezelési Irányelv módosításaSzerzői Jogi szabályozás módosításai','national;European;global',NULL,'','','01/2013\r\n - \r\n 11/2013','A MAHASZ a magyarországi hangfelvétel-előállítok érdekképviselete és közös jogkezelő szervezete.','5 Harcos tér \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Budapest 1113\r\n HUNGARY','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Elnök','Magyar Hangfelvétel-kiadók Szövetsége Közös jogkezelő Egyesület','A MAHASZ az IFPI (International Federation of the Phonographic Industry), a hangfelvétel-előállítók nemzetközi szervezetének tagja.',NULL,NULL,NULL,'089393612249-37','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=089393612249-37','12/11/13 14:09:44','2014-12-03T07:01:42.011379','(+36) 13914200','23/10/14 19:16:05','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(276,'other','./contribution_hukUMNG.pdf','- Directive concernant la gestion collective des droits d’auteur et des droits voisins et la concession de licences multiterritoriales de droits portant sur des oeuvres musicales en vue de leur utilisation en ligne dans le marché intérieur- Droit d\'auteur- Creative Europe','sub-national;national;European;global',NULL,'','','01/2012\r\n - \r\n 12/2012','La Sacem (Société des Auteurs, Compositeurs et Editeurs de musique) est une société civile à but non lucratif, gérée par les créateurs et éditeurs de musique.Elle favorise la création musicale en protégeant, représentant et servant les intérêts des auteurs, compositeurs et éditeurs de musique. Elle a pour mission essentielle d\'assurer la gestion collective des droits d’auteur en France et de les redistribuer aux créateurs français et du monde entier (145 000 membres).','225 avenue Charles de Gaulle \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Neuilly sur Seine 92200\r\n FRANCE','100000\r\n € - 150000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Responsable des affaires européennes','Société des Auteurs, Compositeurs et Editeurs de Musique','GESACCISAC',NULL,NULL,NULL,'829208810503-45','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=829208810503-45','23/01/13 12:49:52','2014-12-03T06:46:44.216734','(+33) 1 47 15 47 15','10/01/14 10:09:59','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(277,'other','./contribution_n2YJhA8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(278,'other','./contribution_e1kegLY.pdf','IFRRO works to increase, on an international basis, the lawful use of text and image based copyright works and to eliminate unauthorised copying by promoting efficient Collective Management of rights through Reproduction Rights Organisations (RROs) to complement creators\' and publishers\' own activities. In this way, IFRRO stimulates creativity, diversity and investment in cultural goods as a useful tool for rightholders, consumers, the economy and society as a whole.','global','AUSTRIA;BELGIUM;BULGARIA;CZECH REPUBLIC;DENMARK;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;NETHERLANDS;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ARGENTINA;AUSTRALIA;BARBADOS;BRAZIL;BURKINA FASO;CAMEROON;CANADA;CHILE;CHINA;COLOMBIA;CROATIA;FAROE ISLANDS;GEORGIA;GHANA;HONG KONG;ICELAND;INDIA;ISRAEL;JAMAICA;JAPAN;KENYA;KOREA, REPUBLIC OF;MALAWI;MAURITIUS;MEXICO;NEW ZEALAND;NIGERIA;NORWAY;PERU;PHILIPPINES;RUSSIA, FEDERATION OF;SINGAPORE;SOUTH AFRICA;TAIWAN;TRINIDAD AND TOBAGO;UNITED STATES;URUGUAY;VIETNAM;ZIMBABWE','','','07/2010\r\n - \r\n 07/2011','The International Federation of Reproduction Rights Organisations (IFRRO) is an independent organisation established on the basis of the fundamental international copyright principles embodied in the Berne and Universal Copyright Conventions. Its purpose is to facilitate, on an international basis, the collective management of reproduction and other rights relevant to copyrighted works through the co-operation of national Reproduction Rights Organisations (RROs). Collective or centralised rights management is preferable where individual exercise of rights is impractical. IFRRO through its members supports creators and publishers alike and provides internationally a common platform for them to foster the establishment of appropriate legal frameworks for the protection and use of their works.IFRRO works to develop and increase public awareness of the need for effective RROs and to support joint efforts of publishers, authors and other rightsholders to develop rights management systems world-wide. To accomplish its mission, IFRRO fosters the development of studies and information-exchange systems; relationships between, among and on behalf of members; and effective methods for conveyance of rights and fees among rightsholders and users, consistent with the principle of national treatment.IFRRO facilitates co-operation among RROs as well as with and among creators, publishers and their associations. Through this work and its fight against copyright infringement and unauthorised use of text and image based works, IFRRO stimulates creativity, diversity and investment in cultural goods as a useful tool for rightholders, consumers, the economy and society as a whole.','9 Rue Joseph II \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Senior Legal Adviser','The International Federation of Reproduction Rights Organisations','IFRRO has NGO Status with WIPO and UNESCO. IFRRO and WIPO collaborate on a number of different activities including training courses in Africa, Latin America, Asia, the Caribbean, the Middle East, the Pacific and Europe. On the regional level, IFRRO has signed cooperation agreements with the African Regional Intellectual Property Office (ARIPO), the Organisation Africaine de la Propriété Intellectuelle (OAPI), Centro Regional para el Fomento del Libro en América Latina y el Caribe (CERLALC) and also cooperates with the Intellectual Property Expert Group of the Asia Pacific Economic Cooperation (APEC/IPEG) and with the European Commission.','0','131','ABDR (102 members);ACCESS COPYRIGHT (11,000 members);AIDRO (200 members);AUTOR (67 members);BBDA (10 members);B COPY (15 members);BONUS PRESSKOPIA (30 members);CADRA (610 members);CAL (18,814 members);CCC (800 members);CDR (153 members);CEDRO (19,275 members);CEMPRO (115 members);CFC (433 members);CLA (100,000 members);CLASS (74 members);CLL (353 members);COLCCMA (42 members);COPIBEC (14,900 members);COPYDAN WRITING (80,000 members);COPYGHANA (2,000 members);COPYRO (1,664 members);COPYRUS (200,000 members);COSOMA (3,000 members);DALRO (1,000 members);FILCOLS (184 members);FJOLIS (6,100 members);FJOLRIT (300 members);HARR (30 members);HKRRLS (70 members);ICLA (170 members);IRRO (102 members);JAACC (4,113 members);JAMCOPY (10 members);JRRC (13,106 members);KOPIKEN (18 members);KOPINOR (42 members);KOPIOSTO (4,600 members);KOPITAN (21 members);KRTRA (15,750 members);LITERAR MECHANA (14,333 members);LUXORR (130 members);MASA (3,853 members);OSDEL (1,935 members);PROLITTERIS (10,024 members);REPROBEL (31 members);REPRONIG (12 members);SADEL (200 members);SAZOR (722 members);SIAE (20,800 members);SOCILADRA (10 members);STICHTING REPRORECHT (3,300 members);TTRRO (35 members);VGBILKUNST (49,000 members);VGWORT (431,362 members);VIETRRO (20 members);YRCI (20 members);ZARRSO (10 members);ZIMCOPY (8 members);AMCOS (14 members);SEAM (130 members);SEMU (84 members);VGMUSIKEDITION (1,520 members);CWWCS (2,136 members);DHK (20 members);DILIA (3,460 members);IPRO (14 members);KOPIPOL (81 members);LATGA A (5,027 members);LIBRIUS (20 members);LITA (1,946 members);NLA (1,500 members);NLI (41 members);POLSKA KSIAZKA (30 members);SAMIKOPIIJA (1,000 members);ZANA (80 members);ADAGP (42 members);AIP (3,500 members);ASMP (7,500 members);BUS (7,500 members);DACS (20,000 members);GAG (1,215 members);OOA-S (2,285 members);STICHTING PICTORIGHT (50 members);VEGAP (93,020 members);VISARTA (270 members);VISCOPY (7,964 members);SOFIA (100 members);ACA (50 members);ALCS (70,000 members);ALIS (3,500 members);ASSUCOPIE (500 members);AUTHORS GUILD (8,400 members);DJU (25,000 members);DJV (38,000 members);GPA DJP (4,114 members);KOSA (300 members);LIRA (8,500 members);NUJ (25,000 members);NWU (6,000 members);SAJ-JAM (100 members);SAS (150 members);SCAM (29,576 members);SPA (19,917 members);TAA (150 members);UFW (1,000 members);VLCC (700 members);AAP (250 members);CANIEM (295 members);CPC (21 members);JBPA (484 members);PA (100 members);PASA (100 members);PLS (100 members);SNE (575 members);TBPAI (80 members);ENPA (25 members);EVA (15 members);EWC (60 members);FAEP (50 members);FEP-FEE (27 members);FIPP (757 members);FIT (107 members);ICOGRADA (242 members);IFJ (600,000 members);IPA (65 members);PDLN (17 members);PYRAMIDE (12 members);STM (120 members);AGECOP (10 members);DHK (10 members)','91217342449-83','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=91217342449-83','06/10/09 12:01:49','2011-10-05T08:58:53.291953','(+32) 22346260','28/09/11 11:53:17','en',NULL,NULL,NULL,'Audiovisual and media;Culture;Information society;Internal market',NULL,NULL,'Ms \r\n \r\n Ingrid de Ribaucourt',NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(279,'other','./contribution_tUIGigc.pdf','Direktivet för kollektiv rättighetsförvaltning samt skyddstidsförlängningen för inspelad musik.','national;European;global',NULL,'','','01/2012\r\n - \r\n 12/2012','Svenska Artisters och Musikers Intresseorganisation, SAMI, är den organisation som administrerar utövande konstnärers rätt till ersättning vid offentligt nyttjande av ljudupptagningar enligt tvångslicensen i den svenska upphovsrättslagens 47§ (URL). Förutom ersättningar som samlas in med stöd av tvångslicensen, företräder SAMI de utövande konstnärerna såvitt gäller licensiering av och insamling för vissa nyttjanden av deras exklusiva rättigheter enligt 45 § URL. SAMI företräder cirka 30 000 svenska artister och musiker. SAMI företräder därutöver ett mycket stort antal utländska rättighetshavare med stöd av ömsesidighetsavtal med utländska utövarsällskap.SAMIs mål är att tillvarata musiker och artisters rätt och att samla in samt betala ut så mycket ersättning som möjligt till dessa.','75 Söder Mälarstrand \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Stockholm 11825\r\n SWEDEN','22,600 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Jurist','Svenska Artisters och Musikers Intresseorganisation, SAMI ek. för.','Aepo-Artis',NULL,NULL,NULL,'198926413191-20','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=198926413191-20','05/03/14 09:55:38','2014-12-03T07:32:17.354732','(+46) 84533400','05/03/14 09:56:26','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(280,'other','./contribution_kSeg5Fr.pdf','- Réunions avec des représentants des institutions européennes- Participation à des auditions publiques organisées par des Commissions parlementaires','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','L’Adami est une société de gestion collective des droits de propriété intellectuelle des artistes-interprètes.L\'Adami a pour mission de défendre les droits des artistes-interprètes.','14-16-18 Ballu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris Cedex 09 75311\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Companies & groups','Directeur des Affaires Juridiques et Internationales','ADAMI','',NULL,NULL,NULL,'432988711018-81','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=432988711018-81','06/05/13 14:58:54','2014-12-03T06:38:26.158926','(+33) 144631000','14/04/14 09:05:18','FR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(281,'other','./contribution_x4PF19u.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(282,'other','./contribution_wX2uspL.pdf','1. Prace związane z projektem dyrektywy w sprawie zbiorowego zarządzania prawami autorskimi i prawami pokrewnymi orazudzielania licencji wieloterytorialnych dotyczących praw do utworów muzycznych na potrzeby ich wykorzystania na internetowym polu eksploatacji na rynku wewnętrznym.2. Prace związane z projektem dyrektywy w sprawie niektórych dozwolonych możliwości wykorzystywania utworów osieroconych.3. Prace związane z Komunikatem Komisji Europejskiej w sprawie treści na jednolitym rynku cyfrowym COM(2012)789 i konsultacjami \"Licences for Europe\".4. Prace związane z konsultacjami ogłoszonymi przez Komisję Europejską dotyczącymi przyszłości europejskiego prawa autorskiego.','national',NULL,'ZAPA, organizacja zbiorowego zarządzania prawami działająca w ramach SFP, sporządza corocznie - zgodnie z wymogami polskiej ustawy z 1994 r. o prawie autorskim i prawach pokrewnych - sprawozdanie finansowe i merytoryczne ze swojej działalności. Sprawozdania przekazywane są do organu nadzorczego SFP - Ministra Kultury i Dziedzictwa Narodowego, a także podawane do publicznej wiadomości na stronie www.zapa.org.pl','Stowarzyszenie Filmowców Polskich to największa w Polsce organizacja zrzeszająca ludzi filmu. Od 1966 roku nieprzerwanie dba o interesy twórców i środowiska filmowego. SFP ma niezwykle szeroki zakres działania. Od ochrony filmowców i zawodów filmowych, poprzez zbiorowy zarząd prawami autorskimi, aż po promocję i upowszechnianie kultury filmowej w Polsce i zagranicą oraz produkcję filmową. Zdania SFP:• reprezentowanie interesów środowiska filmowego w Polsce i zagranicą;• obrona interesów moralnych, prawnych i materialnych polskich twórców filmowych;• zbiorowe zarządzanie i ochrona praw autorskich i pokrewnych;• współpraca z instytucjami i organami administracji publicznej w sprawach ważnych dla kinematografii i branży audiowizualnej;• promocja polskiego kina i upowszechnianie jego dorobku w Polsce i na świecie;• wspieranie projektów naukowych i edukacyjnych z dziedziny filmu;• współudział w prawidłowym kształtowaniu stosunków między twórcami a producentami.29 maja 1995 roku Stowarzyszenie Filmowców Polskich otrzymało decyzją Ministra Kultury i Sztuki zezwolenie na zbiorowe zarządzanie prawami autorskimi do utworów audiowizualnych. Na tej podstawie SFP utworzyło w ramach swoich struktur komórkę o nazwie Związek Autorów i Producentów Audiowizualnych (ZAPA), której zadaniem jest działanie zgodnie z wymienionym zezwoleniem. ZAPA reprezentuje reżyserów, scenarzystów, operatorów obrazu, scenografów, kostiumografów, operatorów dźwięku, montażystów oraz producentów dzieł audiowizualnych. ZAPA jest jedną z najbardziej skutecznych organizacji zbiorowego zarządu w Polsce. Od momentu powstania konsekwentnie umacnia swoją pozycję na rynku praw autorskich w Polsce oraz swoją pozycję międzynarodową. Ma wynegocjowane i podpisane umowy z użytkownikami publicznymi i prywatnymi, współpracuje z wieloma organizacjami krajowymi i zagranicznymi, monitoruje dynamiczny rynek operatorów kablowych. Fundamentalnym elementem aktywności ZAPA jest właściwa identyfikacja dzieł audiowizualnych, pozwalająca na szybkie wypłaty należnych autorom i producentom tantiem, a także wspieranie walki z piractwem w obrocie utworami filmowymi. ZAPA współpracuje z licznymi organizacjami krajowymi i międzynarodowymi. W Polsce działa w porozumieniu z podobnymi organizacjami zbiorowego zarządzania prawami autorskimi i pokrewnymi, m.in. z ZAiKS, ZPAV, ZASP. ZAPA jest członkiem najważniejszych międzynarodowych organizacji zajmujących się ochroną dzieł audiowizualnych np.: CISAC, SAA, EUROCOPYA. ZAPA współpracuje również z AGICOA. ZAPA podpisała kilkadziesiąt umów z organizacjami zbiorowego zarządu w innych krajach (m.in. z SACD we Francji, The Directors Guild of Japan, SIAE we Włoszech, VG Wort i Bild Kunst w Niemczech) oraz z wielkimi studiami i gildiami amerykańskimi (m.in. 20th Century Fox, CBS, Paramount Pictures, Warner Bros, Walt Disney, Universal Studios Int., Sony Pictures Television, RHI International). W chwili obecnej w Polsce ZAPA reprezentuje ponad 3000 twórców i ich spadkobierców, ponad 300 producentów oraz na podstawie umów o wzajemnej reprezentacji z organizacjami zagranicznymi - dziesiątki tysięcy uprawnionych autorów i producentów na całym świecie, jak również setki tysięcy utworów audiowizualnych.','01/2013\r\n - \r\n 12/2013','Zdania SFP:• reprezentowanie interesów środowiska filmowego w Polsce i zagranicą;• obrona interesów moralnych, prawnych i materialnych polskich twórców filmowych;• zbiorowe zarządzanie i ochrona praw autorskich i pokrewnych;• współpraca z instytucjami i organami administracji publicznej w sprawach ważnych dla kinematografii i branży audiowizualnej;• promocja polskiego kina i upowszechnianie jego dorobku w Polsce i na świecie;• wspieranie projektów naukowych i edukacyjnych z dziedziny filmu;• współudział w prawidłowym kształtowaniu stosunków między twórcami a producentami','7 Krakowskie Przedmieście \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Warszawa 00-068\r\n POLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Pełnomocnik SFP-ZAPA','Stowarzyszenie Filmowców Polskich','SFP jest członkiem CISAC, SAA, AGICOA, EUROCOPYA a także współpracuje z innymi organizacjami',NULL,NULL,NULL,'122158812891-33','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=122158812891-33','07/02/14 15:29:20','2014-12-03T07:21:37.553220','(+4822) 5814360','10/02/14 12:09:40','pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(283,'other','./contribution_UtSwTn3.pdf','Richtlinienvorschlag über kollektive Wahrnehmung von Urheber- und verwandten Schutzrechten und die Vergabe von Mehrgebietslizenzen für die Online-Nutzung von Rechten an Musikwerken im Binnenmarkt','national;European;global',NULL,'','GEMA Brüsseler BüroSquare de Meeûs 38/40B-1000 BrüsselTel.: +32 2 4018752','01/2013\r\n - \r\n 12/2013','Als staatlich anerkannte Treuhänderin vertritt die GEMA in Deutschland die Urheberrechte von mehr als 67.000 Mitgliedern (Komponisten, Textautoren und Musikverleger) sowie von über zwei Millionen Rechteinhabern aus aller Welt.','11 Rosenheimer Straße \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 800706\r\n \r\n \r\n \r\n \r\n München 81607\r\n GERMANY','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Other similar organisations','Direktor Politische Kommunikation','Gesellschaft für musikalische Aufführungs- und mechanische Vervielfältigungsrechte','Die GEMA ist u.a. Mitglied der GESAC, der CISAC sowie im Netzwerk Europäische Bewegung.',NULL,NULL,NULL,'63284686285-78','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=63284686285-78','25/07/11 11:20:00','2014-12-03T06:54:55.034975','(+49) 89 4800300','09/07/14 13:29:18','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(284,'other','./contribution_7aGPEZ2.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(285,'other','./contribution_IMYXnjJ.pdf','copyright for visual artists, resale rights, rights for digitization','national;European;global',NULL,'','Pictoright is the Dutch copyright organization for visual artists, representing copyrights and resale rights of approx. 50.000 visual artists in the Netherlands and distributing collective rights on behalf of all visual artists. Pictoright is member of EVA, which represents 24 European collective management societies for fine arts, photography and other visual works.','01/2013\r\n - \r\n 12/2013','Maintaining and improving the (copyright) position of visual artists in the Netherlands.','606-608 sarphatistraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Amsterdam 1018 AV\r\n NETHERLANDS','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director','Pictoright','EVACISACOLA',NULL,NULL,NULL,'71661405464-53','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=71661405464-53','10/03/11 11:01:19','2014-12-03T07:17:34.783170','(+20) 5891840','11/02/14 08:58:30','nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(286,'other','./contribution_5bGCgEo.pdf','Intellectual Property RightsCultural diversityTrade in Audiovisual Services','national;European;global','SPAIN;ARGENTINA;CHILE;COLOMBIA;DOMINICAN REPUBLIC;ECUADOR;MEXICO;PARAGUAY;PERU;UNITED STATES;URUGUAY','','EGEDAp/a KEA European AffairsMaría Iglesias51 Rue du Trône1050 BrusselsBELGIUM+322892600','01/2013\r\n - \r\n 12/2013','EGEDA is a non-profit association that represents and defends the interests of audiovisual producers in Spain and manages their rights as recognised and protected in the Spanish Intellectual Property Act (as amended, dated April 12th 1996). EGEDA has the authority of the Spanish Ministry of Culture for its activities, and operates on a non-profit making basis.','2 Calle Luis Buñuel \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Ciudad de la Imagen - Pozuelo de Alarcón (MADRID) 28223\r\n SPAIN','50000\r\n € - 100000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Director administrativo-financiero','Entidad de Gestión de Derechos de los Productores Audiovisuales','EUROCOPYA, AGICOA','2,122','','','52417673283-47','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=52417673283-47','26/02/10 17:35:53','2014-12-03T07:28:12.275696','(+34) 915121610','08/05/14 09:56:15','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(287,'other','./contribution_8aavp2T.pdf','Als regionale overheid worden we betrokken bij de opmaak, implementatie en evaluatie van regelgeving.','sub-national;national;European;global','','We zijn overheid','','01/2013\r\n - \r\n 12/2013','missieKunsten en Erfgoed draagt als uitvoerder van het beleid van de Vlaamse Regering, actief bij aan de ontwikkeling van een kwalitatief en divers (professioneel) kunsten- en cultureel-erfgoedlandschap.Wij gaan het engagement aan om een uniek en centraal knooppunt van expertise te worden.In onze permanente professionele ontwikkeling staan toekomstgerichtheid, resultaten, verantwoordelijkheid, voortdurend verbeteren, samenwerken, betrouwbaarheid, klantgerichtheid enthousiasme en integriteit centraal. Kernopdrachten Kunsten en Erfgoed•de erkenning, subsidiëring, advisering, inspectie en evaluatie van actoren binnen de beleidsvelden professionele kunsten en cultureel erfgoed. •de bescherming van cultureel erfgoed.•het beheer van het roerend cultureel erfgoed van de Vlaamse Gemeenschap – collectie vlaamse Gemeenschap. •de ondersteuning van de commissies, beoordelingscommissies, ad hoc-commissies en raden binnen de beleidsvelden professionele kunsten en cultureel erfgoed. •het overleg met provincie- en gemeentebesturen over materies die tot de bevoegdheden van het agentschap behoren. •de aansturing en evaluatie van sectorale steunpunten binnen de beleidsvelden professionele kunsten en cultureel erfgoed.•de aansturing van particuliere voorzieningen die overheidstaken uitvoeren binnen de sectoren die tot de bevoegdheid van het agentschap behoren.•de organisatie van cultuurspreidende initiatieven. •de uitbouw van een internationaal sectoraal beleid met actoren binnen de beleidsvelden professionele kunsten en cultureel erfgoed. •het advies en overleg met het departement in functie van beleidsvoorbereiding en beleidsevaluatie.•de borging van een kwaliteitsvolle werking van de buitendiensten.','9 Arenbergstraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussel 1000\r\n BELGIUM','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Local, regional and municipal authorities (at sub-national level)','staflid','Vlaamse Overheid. Agentschap Kunsten en Erfgoed','','100','','','104340112790-31','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=104340112790-31','04/02/14 15:51:49','2014-12-03T06:31:01.709803','(+0032) 25536868','04/02/14 16:02:08','nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Local authority','Government'),(288,'other','./contribution_1bakgOk.pdf','///','sub-national','BELGIUM','','','01/2013\r\n - \r\n 12/2013','The three pillars:1. Innovation, creativity and sustainability2. A tailored policy - inter- and area-collaboration3. A future -oriented organizationThe 10 priorities:1. Contribute to a competitive agricultural complex by creating development opportunities2. Revitalize the East Flanders economics and develop the East Flanders into a versatile knowledge area and a logistics region3. Contribute to the qualitative development of cycling and pedestrian networks4. Coordinate the entire water policy 5 .Broaden and distribute the cultural offerings, monitor and increase the quality and accessibility of it6. Deal with the climate change7. Gear the sport and recreation to the nature, environment and spatial planning8. Stimulate day-, and residential tourism and recreation, by extending the top local offerings and by developing in a sustainable and high-quality way9. Increase the quality and accessibility of the well-being and care10. Support social policy and expand the social map to a reference database \' Welfare \' for professionals and citizens','1 Gouvernementstraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Gent 9000\r\n BELGIUM','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Local, regional and municipal authorities (at sub-national level)','directeur','Provinciebestuur Oost-Vlaanderen','','1,465,000','','','216707913135-46','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=216707913135-46','04/03/14 08:51:45','2014-12-03T06:28:13.285612','(+09) 267 80 20','04/03/14 08:59:08','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Local authority','Government'),(289,'other','./contribution_UuVDBJK.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(290,'other','./contribution_CbDUvpY.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(291,'other','./contribution_MLyeiVI.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(292,'other','./contribution_K10z0sk.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(293,'other','./contribution_dW9klt1.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(294,'other','./contribution_bvywSrV.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(295,'other','./contribution_VxwD3m7.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(296,'other','./contribution_dwHCDsY.pdf','In the context of the upcoming Multi-Annual Financial Framework 2014-2020 / Connecting Europe Facility, consulting MEPs and Council on the importance of making cultural heritage openly accessible in a digital way, to promote the exchange of ideas and information, understand our cultural diversity better and contribute to a thriving knowledge economy.','European;global','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM','','','01/2013\r\n - \r\n 12/2013','Europeana is a catalyst for change in the world of cultural heritage.Our mission: The Europeana Foundation and its Network create new ways for people to engage with their cultural history, whether it\'s for work, learning or pleasure.Our vision: We believe in making cultural heritage openly accessible in a digital way, to promote the exchange of ideas and information. This helps us all to understand our cultural diversity better and contributes to a thriving knowledge economy.The objectives of the Europeana Foundation are • to make Europe\'s cultural and scientific heritage available through a cross-domain portal (Europeana.eu)• to work with museums, archives, audio-visual archives and libraries to deliver the portal and make it sustainable• to bring items that have already been digitised into the portal• to encourage and support the digitisation of more of Europe\'s cultural and scientific heritageWe work with a member-network of 800 institutions from every EU member state, who contribute digitised cultural heritage material to Europeana. At present, some 30 million heritage items can be seen at the website Europeana.eu. The current strategy is to distribute material to social media sites and mobile platforms. To this end, Europeana has developed an API, is collaborating on the development of apps, and is partnering with the Wiki community.','5 Prins Willem-Alexanderhof \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n The Hague 2595 BE\r\n NETHERLANDS','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Chief Networking Officer','Europeana Foundation','See previous notes on structure. The Foundation consists of associations/federations.The Europeana Network consists of 800 individual members who represent associations.','53','','','770007812381-96','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=770007812381-96','18/12/13 17:19:28','2014-12-03T07:15:48.005201','(+070) 3140991','26/11/14 09:59:07','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(297,'other','./contribution_HxGPYn1.pdf','Beratungen über die Umsetzung des Artikels 165 AEUV. Entwicklung des Glücksspiels auf EU-Ebene. Urheberrechte.','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Der DFB ist ein gemeinnütziger, eingetragener Verein, dessen Aufgabe es ist, den Fußballsport und seine Entwicklung, vor allem in seinem Jugendbereich, zu fördern und den deutschen Fußballsport im In- und Ausland zu vertreten.','6 Otto-Fleck-Schneise \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Frankfurt 60528\r\n GERMANY','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Other similar organisations','Leiter EU-Verbindungsbüro','Deutscher Fussball-Bund e.V.','',NULL,NULL,NULL,'51323296463-55','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=51323296463-55','23/08/11 12:21:25','2014-12-03T06:52:05.125185','(+4969) 67880','25/08/14 09:06:43','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(298,'other','./contribution_qUgQ81L.pdf','We would also like to emphasize that EDRi is not involved in lobbying activities, because we don\'t have any direct or indirect financial gain from these activities. EDRi is active in advocating the European Institutions for human rights and their recognition in the information society and the inclusion of these principles in any act adopted by the European Union. EDRi\'s main advocacy activities are related to digital civil rights issues, including: freedom of expression on the Internet, privacy issues (RFID regulation, data retention, etc.) , copyright issues, etc. At the same time we believe that this register fails basictransparency standards and that it does not provide EU lobbying transparency. A credible EU lobbying transparency register should include names of individual lobbyists and the issues that they try to influence, provide precise and comparable financial information on lobbying, and have effective sanctions to ensure the accuracy and completeness of the information disclosed.','European','AUSTRIA;BELGIUM;BULGARIA;CZECH REPUBLIC;DENMARK;FINLAND;FRANCE;GERMANY;IRELAND;ITALY;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SPAIN;SWEDEN;UNITED KINGDOM;ICELAND;MACEDONIA, FORMER YUGOSLAV REPUBLIC OF;TURKEY;UNITED STATES','None','President Andreas KrischWestbahnstraße No. 46/1A, 1070, ViennaAustria+43(1)4805025, andreas.krisch@edri.org','01/2013\r\n - \r\n 12/2013','European Digital Rights was founded in June 2002. Currently 35 privacy and civil rights organisations have EDRI membership. They are based or have offices in 21 different countries in Europe.Members of European Digital Rights have joined forces to defend civil rights in the information society. The need for cooperation among organizations active in Europe is increasing as more regulation regarding the internet, copyright and privacy is originating from European institutions, or from International institutions with strong impact in Europe.Some examples of regulations and developments that have the attention of European Digital Rights are data retention requirements, spam, telecommunications interception, copyright and fair use restrictions, the cyber-crime treaty, rating, filtering and blocking of internet content and notice-and-takedown procedures of websites.European Digital Rights takes an active interest in developments regarding these subjects in all 45 member states of the Council of Europe.Since January 2003, European Digital Rights produces EDRI-gram, a bi-weekly newsletter about digital civil rights in Europe.','20 Rue Belliard \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bruxelles 1040\r\n BELGIUM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Executive Director','European Digital Rights','EDRi is a member of the Civil Society Information Society Advisory Council (CSISAC) contributing to the policy work of the OECD (Organisation for Economic Co-operation and Development)Committee for Information, Computer and Communications Policy (ICCP).EDRi is a member of European Association for the defense of Human Rights (AEDH).EDRi is also a member of the European Observatory on Infringments of Intellectual Property Rights.','0','35','Association for Technology and Internet (APTI) - Romania (25 members);ALCEI Italy (6 members);Associaçio Nacional para o Software Livre (ANSOL) - Portugal (62 members);Bits of Freedom - Netherlands (1,500 members);Chaos Computer Club (CCC e.V.) - Germany (4,000 members);Comunicació per a la Cooperació (Pangea) - Spain (400 members);DFRI - Sweden (40 members);FoeBuD - Germany (516 members);Digitale Gesellschaft - Germany (35 members);Digital Rights - Ireland (6 members);Electronic Frontier Finland (EFFI) - Finland (1,700 members);Electronic Frontier Foundation (EFF) - USA, with European Office in BE (44 members);Förderverein Informationstechnik und Gesellschaft (FITUG e.V.) - DE (10 members);FIfF e.V.- Forum InformatikerInnen für Frieden und gesellschaftliche (668 members);Foundation for Information Policy Research (FIPR) (35 members);GreenNet - United Kingdom (8 members);Internet Society Bulgaria (665 members);The IT-Political Association of Denmark (IT-Pol) - Denmark (250 members);Iuridicum Remedium - Czech Republic (5 members);Imaginons un Réseau Internet Solidaire (IRIS) - France (6 members);Liga voor Mensenrechten - Belgium (401 members);Metamorphosis - Macedonia (8 members);Nodo50.org - Spain (1,181 members);Open Rights Group - UK (1,500 members);Panoptykon Foundation - Poland (7 members);quintessenz - Austria (12 members);Society for Open Information Technologies - SOIT - Slovakia (73 members);Vrijschrift - The Netherlands (8 members);VIBE!AT - Austria (60 members);Alternative Informatics Association (Turkey) (8 members);Article19 (UK) (10 members);Associazione per la Libertà nella Comunicazione Elet. Interatt.(Italy) (5 members);Initiative fur Netzfreiheit (50 members);Modern Poland Foundation (Poland) (3 members);Statewatch (UK) (3 members)','16311905144-06','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=16311905144-06','28/01/11 16:46:21','2014-12-03T06:17:16.028434','(+32) 2 274 25 70','16/01/14 16:21:26','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(299,'other','./contribution_Fv7exq9.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(300,'other','./contribution_G0JGDYv.pdf','PSI DirectiveCreative Europe ProgrammeEU 2020 Strategy review','European','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;NORWAY;RUSSIA, FEDERATION OF;SWITZERLAND','','','01/2013\r\n - \r\n 12/2013','The Network of European Museum Organisations (NEMO) was founded in 1992 as an independent network of national museum organisations representing the museum community of the member states of the Council of Europe. Together, NEMO’s members speak for over 30.000 museums across Europe.NEMO connects European museums and their organisations to help to ensure their place in the cultural development of Europe.NEMO fosters European policies that help museums in fulfilling their role as keepers of cultural heritage by promoting their importance to European policy makers.NEMO supports European museums in their aim to learn from each other by networking and co-operation and shows them ways to participate in the existing European cultural policies in its function as an information channel between European institutions and museums.NEMO believes that museums are key players in safeguarding cultural heritage and they are central figures on the way for a better understanding within Europe.','1 c/o Deutscher Museumsbund e.V. In der Halde\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 14195\r\n GERMANY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Secretary General','Network of European Museum Organisations','Mitglied bei Culture Action Europe','55','','','435166212247-84','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=435166212247-84','12/11/13 11:27:26','2014-12-03T06:56:48.221020','(+49) 3084109517','24/10/14 13:17:32','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(301,'other','./contribution_SxNwfBQ.pdf','Transport (bus and coach regulation) European Disability Strategy, Digital Agenda for Europe, Copyright, EU2020, etc.','sub-national;national;European;global','UNITED KINGDOM','','','04/2012\r\n - \r\n 03/2013','RNIB (www.rnib.org.uk) is the leading UK charity working for blind and partially sighted people. RNIB is a membership charity, offering information, support and advice to over two million people with sight problems. Our pioneering work helps anyone with a sight problem – not just with Braille, Talking Books and computer training, but with imaginative and practical solutions to everyday challenges to make a difference to people’s lives. We fight for equal rights for people with sight problems. We also fund pioneering research into preventing and treating eye disease.','105 Judd Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London WC1H 9NE\r\n UNITED KINGDOM','50000\r\n € - 100000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Campaigns Manager - Europe, International and Accessibility','Royal National Institute of Blind People','European Blind UnionWorld Blind UnionSocial Platform','10,230','','','34063417604-07','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=34063417604-07','04/01/12 16:50:23','2014-12-03T07:42:03.693187','(+0207) 3881266','17/12/13 12:04:48','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(302,'other','./contribution_kwqyDcA.pdf','General Data Protection RegulationNet Neutrality','global','FRANCE','It is quite complex to estimate the budget to be spent this year on defending fundamental freedoms online for on top of travel expenses, an important part of our human ressources goes to analysing legislative drafts, texts and the continuously evolving global context.','','10/2012\r\n - \r\n 10/2013','Human Rights in the digital society Access to a free and open Internet Sharing of culture and knowledge','19 Richard Lenoir \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75011\r\n FRANCE','50000\r\n € - 100000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Responsable de l\'analyse','La Quadrature Du Net','','9','','','789158412311-88','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=789158412311-88','29/11/13 16:59:39','2014-12-03T06:45:01.609187','(+33) 972294426','28/11/14 10:23:10','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(303,'other','./contribution_yZ75FKM.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(304,'other','./contribution_z4lVStv.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(305,'other','./contribution_4RnNp42.pdf','Legislazione sul softare e sul diritto d\'autore.','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Openlabs è un\'associazione culturale senza fini di lucro per la promozione e diffusione del software libero.','11 Via Val di Ledro \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Milano 20162\r\n ITALY','','II - In-house lobbyists and trade/professional associations','Other similar organisations','presidente','Openlabs','',NULL,NULL,NULL,'302618813194-25','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=302618813194-25','05/03/14 11:13:58','2014-12-03T07:10:21.206258','(+39) 3487063124','05/03/14 11:14:37','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(306,'other','./contribution_fc1HPZm.pdf','BEUC\'s activities cover a wide range of EU policies affecting the interest of European consumers. According to our workprogramme, we work on food, financial services, consumer and passenger rights , digital environment, consumer enforcement and redress, energy, safety, health and sustainability as well as on international trade;','European','AUSTRIA;BELGIUM;BULGARIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ICELAND;MACEDONIA, FORMER YUGOSLAV REPUBLIC OF;NORWAY;SWITZERLAND','BEUC’s expenses for interest representation activities in the year 2013 amount\'d to 1 500 000,- € (43,4 % of our total budget).These expenses were calculated according to guidelines agreed by the civil society contact group: http://www.act4europe.org/registerBEUC would also like to underline that the amounts indicated under the heading “public funding” have to be submitted to the following breakdown :Operational budget: 1 304 467,- €Budget for projects : 262 158,- €These projects have been granted to BEUC as a result of competitive calls for tender/proposals issued by the European Commission. The major part of the funding related to these projects is linked to reimbursement of direct expenses (such as travel and accommodation expenses of participants to training programs, meeting facilities, documentation for participants, trainers, etc.. This major part is not to be considered as a source of income to BEUC.','e-mail adress: consumers@beuc.eu','01/2013\r\n - \r\n 12/2013','BEUC investigates EU decisions and developments likely to affect consumers, with a special focus on eight areas identified as priorities by our members: energy and sustainability, group actions, health, food (including food safety, labelling and fight against obesity), safety of products, financial services, consumer contracts and consumer rights in the digital world. In 2013 our members include 40 well respected, independent national consumer organisations from some thirty European countries. BEUC acts as a sort of “embassy” for these organisations in Brussels and our main task is to represent our members and defend the interests of all Europe’s consumers. Through BEUC, the national consumer organisations are able to speak out with one voice. BEUC is committed to transparency about EU interest representation. BEUC believes that this register fails basic transparency standards and that it does not provide EU lobbying transparency. When registering, we have therefore chosen to give all relevant information that we consider necessary for lobbying transparency. A credible EU lobbying transparency register should include names of individual lobbyists and the issues that they try to influence, provide precise and comparable financial information on lobbying, and have effective sanctions to ensure the accuracy and completeness of the information disclosed. In an effort to arrive at a more objective way of calculating lobbying expenditures, we follow guidelines that result from consultations with public interest organisations, professionals working on lobby transparency as well as experts of US lobby disclosure legislation. Our registration is therefore providing a more comprehensive calculation of our lobbying expenses, and a list of those who, on behalf of BEUC, carry out activities with the objective of influencing the policy formulation and decision-making processes of the European institutions. Our registration is based on the guidelines for transparent registration developed by the Civil Society Contact Group and ALTER-EU ( which can be accessed at: http://www.act4europe.org/register)','80 Rue d\'Arlon \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels B-1040\r\n BELGIUM','1500000\r\n € - 1750000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Deputy Director General','Bureau Européen des Unions de Consommateurs','BEUC maintains close contacts with our “big sister”, the international consumer organisation, Consumers International (CI). BEUC also plays an active role in the TransAtlantic Consumer Dialogue (TACD), which is designed to promote contacts and exchanges with our colleagues in the US. Our aim, in close collaboration with Consumers International, is to reinforce consumerism and to get the voice of European consumers heard at world level.','0','40','Verein für Konsumenten-information - VKI (1 members);Association Belge des Consommateurs - Test Achats – Test Aankoop (1 members);Cyprus Consumers\' Association (1 members);Bulgarian National Consumers Association - BNAP (1 members);Fédération Romande des Consommateurs - FRC CH (1 members);Verbraucherzentrale Bundesverband (1 members);Forbrugerrådet - FR (1 members);Estonian Consumers Union - ETL - Eesti Tarbijakaitse Liit (1 members);Organizacion de Consumidores y Usuarios - OCU (1 members);Confederacion de Consumidores y Usuarios - CECU (1 members);Consommation, Logement et Cadre de Vie - CLCV (1 members);Union Fédérale des Consommateurs - UFC - Que Choisir (1 members);Which? (1 members);Consumers\' Protection Center - KEPKA (1 members);Association for the Quality of Life - E.K.PI.ZO (1 members);National Association for Consumer Protection in Hungary - NACPH - OFE (1 members);Consumers\' Association of Ireland - CAI (1 members);Neytendasamtökin - NS (1 members);Altroconsumo (1 members);Union Luxembourgeoise des Consommateurs - ULC (1 members);Latvia Consumer Association - PIAA (1 members);Consumers’ Organisation of Macedonia - OPM (1 members);Ghaqda tal-Konsumaturi - CA Malta (1 members);Consumentenbond - CB (1 members);Forbrukerrådet - FR-NO (1 members);Associação Portuguesa para a Defesa do Consumidor - DECO (1 members);Polish Consumer Federation National Council - FK (1 members);Association of Polish Consumers - SKP (1 members);Romanian Association for Consumers’ Protection – APC Romania (1 members);Sveriges Konsumenter - The Swedish Consumers’ Association (1 members);Zveza Potrošnikov Slovenije - ZPS (1 members);ZSS - Association of Slovak Consumers (1 members);Arbeiterkammer - AK (1 members);Stiftung Warentest (1 members);TEST Czech association of consumers (1 members);Kuluttajaliitto – Konsumentförbundet ry (1 members);Kilpailu- ja kuluttajavirasto (KKV) (1 members);Consumatori Italiani per l\'Europa (CIE) (1 members);National Federation of Associations for Consumer Protection in Hung (1 members);Alliance of Lithuanian Consumer Organisations (1 members)','9505781573-45','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=9505781573-45','29/10/08 13:05:00','2014-12-03T06:10:45.250893','(+322) 7431590','16/10/14 15:53:47','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(307,'other','./contribution_WJzVI3I.pdf','None','sub-national','AUSTRIA','','','01/2012\r\n - \r\n 01/2013','servus.at is a cultural network-based initiative in Linz, Austria. We are an association of artists, with over 250 Members - 40 of them associations themself - who join for network-centric arts projects and for running an autonomous network service provider for their needs.','4 Kirchengasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Linz 4040\r\n AUSTRIA','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Manager','servus.at','','250','','','202853613115-54','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=202853613115-54','03/03/14 13:28:26','2014-12-03T06:06:54.909054','(+43) 732731209','03/03/14 13:29:58','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(308,'other','./contribution_GCEU41Q.pdf','-','national;European;global','FINLAND','FinnOA do not have own budget.','FinnOa is constituted by a group of professionals interested in promoting open access to scientific information. These people come mainly from the academia, libraries and data management. Initially FinnOa concentrated on studying and promoting different open access publishing methods but today it is focusing on the whole spectrum of scientific knowledge production and dissemination. In particular it is working on the issues related to opening access to publicly funded research data.','01/2013\r\n - \r\n 12/2013','FinnOa is constituted by a group of professionals interested in promoting open access to scientific information. These people come mainly from the academia, libraries and data management. Initially FinnOa concentrated on studying and promoting different open access publishing methods but today it is focusing on the whole spectrum of scientific knowledge production and dissemination. In particular it is working on the issues related to opening access to publicly funded research data.','0 Haartmaninkatu 4 Haartmaninkatu 4\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n University of Helsinki 00014\r\n FINLAND','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Chair of FinnOA','Finnish Open Access Work Group','','50','','','384363613197-89','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=384363613197-89','05/03/14 11:29:19','2014-12-03T06:37:15.609123','(+35850) 358503513036','05/03/14 11:30:06','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(309,'other','./contribution_NuVBfsq.pdf','• Information of our members through our newsletter, emails and social media;• Representation at meetings of national organisations;• Writing and submission of responses to national consultations.','national;global',NULL,'The Association of Art Historians produce annual audited accounts that are open to the public. Accounts are submitted to and held by the Charity Commission of England and Wales. They are also downloadable from the AAH\'s website: http://aah.org.uk/about.','','01/2013\r\n - \r\n 12/2013','The AAH\'s mission is to promote the professional practice and public understanding of art history.Our aims are to:• promote and publish art-historical research• promote, represent and advocate for art history• support and train art historians for the future• engage our members• make art history accessible','70 Cowcross Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London EC1M 6EJ\r\n UNITED KINGDOM','','II - In-house lobbyists and trade/professional associations','Other similar organisations','Trustee','Association of Art Historians','The AAH is a member of:• The Association of Learned and Professional Society Publishers• The National Council for Voluntary Organisations',NULL,NULL,NULL,'199899413067-26','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=199899413067-26','26/02/14 15:04:25','2014-12-03T07:35:35.020049','(+44207) 442074903211','05/03/14 13:26:02','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(310,'other','./contribution_eICJ909.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(311,'other','./contribution_KoJ3KIk.pdf','Member of CEPI (The European Coordination of Independent Producers), FIAT (International Federation of Film Distributors’ Associations) and FIAPF (Fédération Internationale des Associations de Producteurs de Films)','national',NULL,'','','01/2013\r\n - \r\n 12/2013','The \"Fachverband der Film- und Musikindustrie\" (Film and Music Austria) represents the interests of enterprises operating in the film and music industry throughout Austria. The association is a corporation under public law and is an independent specialist organisation with its own sphere of influence within the chambers of commerce. All companies dealing with the manufacture of moving pictures on video carriers of all kinds (film/video production and multimediaproduction), incl. programming companies as defined by the law on cable and satellite broadcasting, film distributing companies, video distribution companies are members of the professional association; in addition, the membership includes copying and reversal shops, studios, sound studios, video finishing firms and the manufacturers and copiers of sound recordings onto sound carriers of all kinds. Firms involved in record pressing and CD manufacture are also members of our professional association.','63 Wiedner Hauptstrasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Vienna 1045\r\n AUSTRIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','General Manger','Film and Music Austria','',NULL,NULL,NULL,'293640312756-23','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=293640312756-23','28/01/14 14:43:24','2014-12-03T06:05:59.844387','(+43) 5909003012','28/01/14 14:48:47','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(312,'other','./contribution_SdME6sk.pdf','Konsultationen zur Informationsgesellschaft und zum Urheberrecht','sub-national;national;European;global',NULL,'Der VS finanziert sich aus den Beiträgen seiner Mitglieder','','01/2013\r\n - \r\n 12/2013','Der VS hat den Zweck, die kulturellen, rechtlichen, beruflichen, sozialen und tariflichen Interessen seiner Mitglieder in Übereinstimmung mit der Satzung der ver.di und den Zielen des Deutschen Gewerkschaftsbundes zu fördern und zu vertreten sowie die internationalen Beziehungen der Autorinnen und Autoren, Übersetzerinnen und Übersetzer zu pflegen. Zu den Zielen des VS gehört es insbesondere, auf den Abschluß von Tarif- bzw. Honorarverträgen für seinen Bereich hinzuwirken.','10 Paula-Thiede-Ufer \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10179\r\n GERMANY','2,000 €','II - In-house lobbyists and trade/professional associations','Trade unions','Bundesgeschäftsführer','Verband deutscher Schriftsteller in ver.di','Der VS ist Mitglied im EWC und auf nationaler Ebene im Deutschen Kulturrat.Auf europäischer und Weltebene ist der VS über ver.di mit UNI-MEI und UNI Global Union vernetzt.',NULL,NULL,NULL,'162030112815-45','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=162030112815-45','01/02/14 17:22:28','2014-12-03T06:58:31.655724','(+49 30) 6956 2327','01/02/14 17:36:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(313,'other','./contribution_BGlUmtU.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(314,'other','./contribution_7mq3qZ9.pdf','Reform des Urheberrechts','national','AUSTRIA;GERMANY','Tätigkeit hauptsächlich durch Ehrenamt und Sachspenden','','01/2013\r\n - \r\n 12/2013','Vertretung von Video- und Computerspielern (als Verbraucherverband)','6a Fichtenweg c/o Zöller\r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 211013\r\n \r\n \r\n \r\n \r\n Karlsruhe 76160\r\n GERMANY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Vorsitzender','Verband für Deutschlands Video- und Computerspieler','','1,400','','','380437512816-28','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=380437512816-28','01/02/14 21:37:59','2014-12-03T06:58:35.926780','(+49) 15155273955','01/02/14 21:38:35','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(315,'other','./contribution_7z272nX.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(316,'other','./contribution_jW4JGyf.pdf','General Data Protection RegulationNet Neutrality','global','FRANCE','It is quite complex to estimate the budget to be spent this year on defending fundamental freedoms online for on top of travel expenses, an important part of our human ressources goes to analysing legislative drafts, texts and the continuously evolving global context.','','10/2012\r\n - \r\n 10/2013','Human Rights in the digital society Access to a free and open Internet Sharing of culture and knowledge','19 Richard Lenoir \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75011\r\n FRANCE','50000\r\n € - 100000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Responsable de l\'analyse','La Quadrature Du Net','','9','','','789158412311-88','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=789158412311-88','29/11/13 16:59:39','2014-12-03T06:45:01.609187','(+33) 972294426','28/11/14 10:23:10','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(317,'other','./contribution_raQ73Eo.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(318,'other','./contribution_Ewo8utN.pdf','Keine','national','AUSTRIA','','','07/2012\r\n - \r\n 06/2013','Der Verein, dessen Tätigkeit nicht auf Gewinn gerichtet ist, verfolgt ausschließlich und unmittelbar gemeinnützige Zwecke im Sinne der §§ 34 ff Bundesabgabenordnung. Er bezweckt folgende Ziele: Förderung des Internet und ähnlicher elektronischer Medien in Österreich Beteiligung an der Meinungsbildung und an der Entscheidungsfindung im Dialog mit Behörden, Internet-Service-Providern (ISPs) und anderen für die Benutzbarkeit des Internet bedeutenden Organisationen Sicherung des Rechtes der freien Meinungsäußerung, der Privatsphäre, des Briefgeheimnisses, sowie anderer Menschenrechte und Grundfreiheiten im Internet Wissenschaftliche Untersuchung, Vorbereitung, Durchführung und Unterstützung von Maßnahmen, die zu einer Förderung des Internet und ähnlicher elektronischer Medien beitragen sowie zu einer Sicherung des Rechts der freien Meinungsäußerung, der Privatsphäre, des Briefgeheimnisses, sowie anderer Menschenrechte und Grundfreiheiten im Internet beitragen können Aufklärung der Öffentlichkeit über das Internet (Möglichkeiten, Gefahren) Information der Öffentlichkeit über Entwicklungen, die der Benutzung des Internet gem. Punkt 3. zuwiderlaufen Mitgliedschaft bei Verbänden (national und international) mit gleichen oder ähnlichen Zielsetzungen','7/5 Kirchberggasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1070\r\n AUSTRIA','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Obmann','Verein für Internet-Benutzer Österreichs','EDRI - European Digital Rights','60','0','','775446412744-85','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=775446412744-85','27/01/14 22:09:57','2014-12-03T06:07:12.565771','(+43660) 4396643','27/01/14 22:10:15','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(319,'other','./contribution_SExJkt9.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(320,'other','./contribution_s37NMNZ.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(321,'other','./contribution_ck7uLZp.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(322,'other','./contribution_acWaR0D.pdf','None',NULL,NULL,'We are new firm starting out','NAD Consultants works to create value and generate professional employment by helping improve inefficiencies and minimizing waste in organizations.','04/2012\r\n - \r\n 03/2013','As stated above we create value by increasing efficiency and minimizing waste','11 Chetak Marg Near Police Memorial\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Jaipur 302004\r\n INDIA',NULL,'I - Professional consultancies/law firms/self-employed consultants','Professional consultancies','Consultant','MOHIT SONI','',NULL,NULL,NULL,'261332612555-42','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=261332612555-42','07/01/14 09:08:58','2014-12-03T07:02:12.959398','(+91) 9929344401','07/01/14 09:10:49','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Consultancy','Business'),(323,'other','./contribution_lngcfim.pdf','Proces konsultacyjny Komisji Europejskiej \"Licences for Europe\"Konsultacje prawa autorskiego ogłoszone przez Komisję Europejską 5.12.2013Negocjacje umowy handlowej pomiędzy Unią Europejską a Stanami Zjednoczonymi (TTIP)','national','POLAND','Budżet,którym dysponowała Fundacja w roku 2013 wynosił 538 590 euro, na który składały się:- zysk za rok 2012 w wysokości 149 471 euro- przychód w roku 2013 w wysokości 389 119 euro','','01/2013\r\n - \r\n 12/2013','Fundacja Nowoczesna Polska konsekwentnie działa na rzecz nowoczesnej edukacji. Realizujemy cenione i potrzebne projekty promując wykorzystanie możliwości internetu do celu polepszenia jakości edukacji w Polsce.Fundacja jest aktywnie zaangażowana w rozwijanie w Polsce świadomości nowoczesnej edukacji na wszystkich etapach nauczania dzieci i dorosłych. Dlatego nie tylko realizujemy nasze projekty, ale także angażujemy się w kształtowanie polityki edukacyjnej w Polsce. Wierzymy, że umiejętne wykorzystanie technologii jest to drogą do innowacyjności i rozwoju całego społeczeństwa.Naszą misją jest edukacja nowoczesnego społeczeństwa informacyjnego. Wierzymy, że dla tego celu kluczowym narzędziem jest otwarty, darmowy dostęp do materiałów edukacyjnych potrzebnych uczniom i nauczycielom w procesie dydaktycznym. Wszystkie nasze projekty służą realizacji tego celu – żeby lektury szkolne, podręczniki i wszelkie materiały dodatkowe były dostępne za darmo przez internet.','84/92 m125 Marszałkowska \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Warszawa 00-514\r\n POLAND','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','prezes','Fundacja Nowoczesna Polska','Krajowe:KOED - Koalicja Otwartej EdukacjiOFOP - Ogólnopolska Federacja Organizacji PozarządowychMiędzynarodowe:EDRI - European Digital RigtsC4C - Copyright for Creativity','0','','','832148410842-68','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=832148410842-68','03/04/13 11:15:24','2014-12-03T07:20:44.455035','(+48) 226213017','28/03/14 11:03:13','pl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(324,'other','./contribution_Dhoj1MZ.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(325,'other','./contribution_32YsLAr.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(326,'other','./contribution_gKF8sjk.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(327,'other','./contribution_qUHbfND.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(328,'other','./contribution_lwlj2Bi.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'353105313182-50',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(329,'other','./contribution_oXA5rxv.pdf','1. Διαβούλευση για τα ηλεκτρονικά βιβλία.2. Διαβούλευση για τα ορφανά έργα.','national',NULL,'Τα έσοδα της ΕΕΒΕΠ προέρχονται από:1. Συνδρομές μελών της.2. Πωλήσεις εκδόσεών της.3. Συμμετοχές σε εκπαιδευτικά και άλλα σεμινάρια που διοργανώνει.4. Δωρεές.5. Διαφημιστικές καταχωρήσεις στην ιστοσελίδα της.','Μέλος της IFLA και της EBLIDA.','01/2013\r\n - \r\n 12/2013','Σκοποί της Ένωσης είναι: α) Η προαγωγή της επιστήµης της βιβλιοθηκονοµίας, της πληροφόρησης και της βιβλιολογίας γενικότερα στη χώρα µας. Η συµβολή της στη δηµιουργία και ανάπτυξη βιβλιοθηκών και κέντρων τεκµηρίωσης και πληροφόρησης, καθώς και στη δηµιουργία της απαραίτητης επιστηµονικής και τεχνικής υποδοµής για την ορθή και σε σύγχρονες βάσεις λειτουργία τους. β) Η µε όλα τα δυνατά µέσα γνωµοδότηση και προώθηση των θεµάτων της βιβλιοθηκονοµικής παιδείας όλων των βαθµίδων στη χώρα µας, γ) Η παρακολούθηση της νοµοθεσίας που σχετίζεται µε τις βιβλιοθήκες και η προσπάθεια για την προώθηση νέων κατάλληλων νοµοθετικών µέτρων. δ) Η παρακολούθηση και ο συντονισµός του συνόλου των δραστηριοτήτων που έχουν σχέση µε το βιβλίο, η γνωµοδότηση σε θέµατα που αφορούν την οργάνωση και λειτουργία των ελληνικών βιβλιοθηκών. ε) Η στήριξη και προώθηση των επαγγελµατικών συµφερόντων των µελών. στ) Η µε όλα τα πρόσφορα και νόµιµα µέσα συµβολή της Ένωσης στην οικονοµική και πολιτιστική ανάπτυξη του έθνους.Τους σκοπούς της η Ένωση πραγµατώνει µε τα ακόλουθα µέσα: α) Κατάρτιση Μητρώου Βιβλιοθηκονόµων και Επιστηµόνων της Πληροφόρησης. β) Με τη συγκρότηση Επιτροπών και οµάδων εργασίας από στελέχη-µέλη της Ένωσης που έχουν ειδικότητα και εµπειρία πάνω στο θέµα για το οποίο συγκροτήθηκε η επιτροπή. γ) Με τη διοργάνωση συνεδρίων, ηµερίδων, διαλέξεων, σεµιναρίων και άλλων εκπαιδευτικών προγραµµάτων. δ) Με τη δηµιουργία και συντήρηση Βιβλιοθήκης ειδικού περιεχοµένου. ε) Με εκδοτική δραστηριότητα και διάδοση πληροφορίας µε οποιοδήποτε µέσο (παραδοσιακό ή ηλεκτρονικό), αυτόνοµα ή σε συνεργασία µε τρίτους. στ) Με την επιδίωξη και προώθηση των οικονοµικών, κοινωνικών ασφαλιστικών και εργασιακών γενικότερα αιτηµάτων και συµφερόντων των µελών της για την καλύτερη επιστηµονική και επαγγελµατική µόρφωσή τους. ζ) Με την ανάπτυξη σχέσεων συνεργασίας µε τα αρµόδια κρατικά όργανα, τις επαγγελµατικές και επιστηµονικές οργανώσεις και συλλόγους, που έχουν ανάλογους στόχους, για την προώθηση των σκοπών της Ένωσης, τόσο στην Ελλάδα, όσο και στο εξωτερικό. η) Με τη συγκρότηση από τακτικά µέλη της Ε.Ε.Β. περιφερειακών τµηµάτων, ως παραρτηµάτων σε γεωγραφικές περιφέρειες και πόλεις της επικράτειας, µετά από σχετική απόφαση της Γ.Σ. των µελών, για την καλύτερη, ευέλικτη, αποκεντρωµένη και αποτελεσµατική λειτουργία της Ε.Ε.Β. και την προώθηση των σκοπών της.','84 Ακαδημίας \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Αθήνα 106 78\r\n GREECE','2,000 €','II - In-house lobbyists and trade/professional associations','Other similar organisations','Πρόεδρος ΔΣ ΕΕΒΕΠ','Ένωση Ελλήνων Βιβλιοθηκονόμων & Επιστημόνων Πληροφόρησης','Μέλος της EBLIDA και εκπροσωπούμενη διά του προέδρου στο ΔΣ της.Μέλος της IFLA και εκπροσωπούμενη διά του προέδρου στο MLA Section της.',NULL,NULL,NULL,'252639413222-67','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=252639413222-67','05/03/14 18:08:19','2014-12-03T07:00:19.596957','(+30) 6942963386','05/03/14 18:09:17','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(330,'other','./contribution_UZrd5tD.pdf','Transporte, no discriminación y mercado interior','national','SPAIN','','','01/2012\r\n - \r\n 12/2012','La Organización Nacional de Ciegos Españoles (ONCE) es una Institución sin ánimo de lucro formada por todas las personas ciegas o con deficiencia visual grave de España. Su misión es la de atender a las personas con necesidades derivadas de la ceguera desde el nacimiento o desde la pérdida de la visión, según los casos, e integrarlas plenamente en la sociedad.Esto es posible gracias a la concesión pública de la explotación de una lotería denominada cupón, así como de otros juegos a través de los cuales se permite la prestación de servicios sociales a los algo más de 70.000 afiliados en los ámbitos de la educación, la rehabilitación, la formación profesional, el empleo, la accesibilidad, la cultura y el deporte, entre otros.','66 Almansa \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n MADRID 28039\r\n SPAIN','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Directora de Relaciones Internacionales','ORGANIZACIÓN NACIONAL DE CIEGOS ESPAÑOLES','','70,300','','','68612977691-59','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=68612977691-59','12/01/12 10:51:30','2014-12-03T07:30:00.675618','(+34) 914365300','16/12/13 08:31:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(331,'other','./contribution_pfpa6pU.pdf','aun ninguna','global','SPAIN','no hay ningun dato que aportar','PARTE ACTIVA EN ESPAÑA SOBRE DERECHOS DE AUTOR DESDE EL AÑO 2001','01/2012\r\n - \r\n 12/2012','reconocimiento derecho de autor periodista en las informaciones que llevan su firma','14 ISAAC PERAL \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n MADRID 28015\r\n SPAIN','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','directora','DOCUMENTACION DE MEDIOS S.A.','','3','','','650905112434-20','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=650905112434-20','18/12/13 10:30:48','2014-12-03T07:28:06.357254','(+34) 915444544','21/11/14 11:41:28','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(332,'other','./contribution_CLuMZqa.pdf','The European Blind Union is actively working with European Institutions inall areas of policy development that have an impact on the lives of blindand partially sighted citizens. We respond to European Commission Greenpapers and consultations and take part in stakeholder events organised bythe Commission; we also regularly publish position papers on issues that areof importance to us in order to keep EU policy makers informed about thechallenges that blind and partially people face and how EU policy canaddress these. Our members work on a wide range of policy areas in order to influencefuture EU policy so that blind and partially people can have access to equalopportunities in employment and outside of employment; equal access to goodsand services; equal access to the information society and to culture,including TV and radio; equal access to books and print media, equal accessto telecommunications, equal access to financial services (e.g. banking andinsurance) etc. We also take an interest in, inter alia, consumer rights,copyright law, welfare rights (e.g. social security, disability benefits,pensions), internal market policy (including e-commerce, public procurementpolicy, public health and transport policy.','European','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM','','','01/2013\r\n - \r\n 12/2013','EBU works towards an accessible and inclusive society with equal opportunities for blind and partially sighted people to fully participate in all aspects of social, economic, cultural and political life. Its membership includes the national organisations of the blind and partially sighted in 44 European countries.EBU’s goals areTo enable the blind and partially sighted people of Europe to join together to express their views and aspirations and take collective action, in accordance with democratically adopted decisions, to protect and promote their human, civil, political, economic, social and cultural rights; to enhance their self-esteem and enable them to realise their full potential; and to represent their interests.1.2 To promote the advancement of blind and partially sighted people, including those with additional impairments, with the goal of achieving their equal rights as citizens and full participation in society, if necessary by special legal or administrative measures.1.3 To provide a European forum for exchange of knowledge and experience in the field of blindness and partial sight.1.4 To promote the prevention and cure of blindness and partial sight.1.5 To strive for equal representation and participation of gender and age in its activities and in particular in the selection by National Members of delegations to the General Assembly, in elections to the Board and committees and in appointments to commissions, committees and working groups.1.6 To co-operate with and support blind and partially sighted people and their organizations in countries outside Europe.1.7 To seek to achieve equalisation of opportunities for all women and all men with disabilities, especially men and women who are blind or partially sighted, in all areas of life; to oppose and seek to eliminate discrimination against disabled people in all its forms; and to promote positive action to meet their needs whenever appropriate.','6 rue Gager-Gabillot \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75015\r\n FRANCE','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','EBU Executive Director','European Blind Union','EBU is a member of European Disability ForumEuropean Platform of Social NGOsEURAGWorld Blind UnionEBU has participatory status with the Council of Europe.','0','27','Austrian Federation of the Blind and Partially Sighted (318,000 members);Belgian Confederation of the Blind and Partially Sighted (15,000 members);Bulgarian Blind Union (20,000 members);Pancyprian Organization of the Blind (2,200 members);Czech Blind United SONS (60,000 members);Estonian Federation of the Blind (2,000 members);Danish Association of the Blind (53,700 members);Finnish Federation of the Visually Impaired (80,000 members);Confederation Francaise pour la Promotion Sociale des Aveugles et Ambl (1,200,000 members);German Federation of Blind and Visually Impaired People DBSV (1,155,000 members);Panhellenic Association of the Blind (22,000 members);Hungarian Federation of the Blind (44,000 members);National Council of the Blind of Ireland (17,000 members);Italian Blind Union (368,000 members);Lithuanian Association of Blind and Visually Handicapped (8,600 members);Association des Aveugles du Luxembourg (550 members);Malta Society of the Blind (1,000 members);Viziris (Netherlands) (158,000 members);Polish Association of the Blind (200,000 members);ACAPO (Portugal) (165,500 members);Romanian Association of the Blind (80,000 members);Slovak Blind and Partially Sighted Union (23,400 members);Slovenian Association of the Blind and Partially (4,200 members);Organizacion Nacional de Ciegos de Espana (933,225 members);Swedish Association of the Visually Impaired (102,600 members);Royal National Institute of the Blind (2,000,000 members);Croatian Association of the Blind (0 members)','42378755934-87','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=42378755934-87','27/05/11 14:30:31','2014-12-03T06:42:17.114397','(+33 1) 47 05 38 20','26/05/14 17:07:07','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(333,'other','./contribution_Nd5Mug9.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(334,'other','./contribution_Hgd6wed.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(335,'other','./contribution_7BLA7AK.pdf','ZItCo took part in the MEDIATION ON PRIVATE COPYING AND REPROGRAPHY LEVIES conducted by Mr. Vitorino for the European Commission regarding “A Single Market for Intellectual Property Rights Boosting creativity and innovation to provide economic growth, high quality jobs and first class products and services in Europe”, s. here, page 24: http://ec.europa.eu/internal_market/copyright/docs/levy_reform/130131_levies-vitorino-recommendations_en.pdf. Also, ZItCo spoke to several policy makers on the German national level, such as former minister of Justice Sabine Leutheuser-Schnarrenberger.','sub-national;national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','Zentralverband Informationstechnik und Computerindustrie e.V. (\"ZItCo\") is an interest-group representing about 100 small and medium sized Producers, Importers and Vendors of Personal Computers and related hardware products. Our member companies are small and medium sized companies (SMEs) who\'s administration and production facilities are located in Germany. In general they are owned by their founders or founder families, and they are run by their owners. Oftentimes production takes place in remoter areas of Germany with underdeveloped public and private infrastructure and above average unemployment rates. In theses cases ZItCo\'s members are the main employers and main tax payers in their region, with a significant responsibility for their workforce and local and regional communities. Overall our members are best described with the German expression \"Mittelstand\".ZITCO supports its member companies in all political and legal matters, especially relating to Copying Levies on products produced and imported by its members (PCs, Tablets, Mobile Phones etc.). ZItCo\'s members are directly affected in many ways by copyright levies on PCs and other hardware components such as DVD- and CD-Drives, Mass Storage Media/Hard Drives, USB-Sticks and Storage Cards, etc. under the current legal system in Germany (§§ 54 ff. UrhG, §§ 12 ff. UrhWahrnG). Due to complete legal uncertainty about the levies under the current system -- whether levies have to be paid for PCs and other devices at all, for what sub-groups of such devices, and what specific amount in each case -- makes it impossible for ZitCo\'s members to act in conformity with the legal requirements and cause them high cost for legal consultation and representation; they encounter severe disadvantages in national competition as well as in cross-border transactions within the European market; the levies and payments requested by the German collecting societies from ZItCo\'s members reach back many years (back to the year 2002) and sum up to amounts, which will cause mass insolvencies among ZItCo\'s members, if successfully enforced. The current copyright levy regime is a mix of tariffs randomly applied to different goods, at different levels, in different ways within different countries of the EU. In countries such as Germany, with an exceptional high number and degree of levies, this results in unfair, uneven and un-proportionate burdens especially on SMEs, who cannot flee the country and conduct cross border business from outside the country. At the same time the current system hinder timely and just payments to rights holders.','24 Oranienstraße c/o KVLEGAL\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10999\r\n GERMANY','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Attorney at Law','Zentralverband Informationstechnik und Computerindustrie e.V.','',NULL,NULL,NULL,'343960013054-11','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=343960013054-11','25/02/14 17:24:50','2014-12-03T06:59:38.191703','(+49) 3091904036','25/02/14 17:45:14','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(336,'other','./contribution_ITsWWWQ.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(337,'other','./contribution_2rlqe01.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(338,'other','./contribution_VCl5JPe.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(339,'other','./contribution_DI6cdVn.pdf','None.',NULL,NULL,'I do not have this information.','','01/2013\r\n - \r\n 12/2013','Alluve provides consultancy in software development and quantitative analysis. Alluve develops and markets software solutions for assessing risks on the portfolios of financial derivatives.','58 Violenstraat 58\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Hilversum 1214CM\r\n NETHERLANDS',NULL,'I - Professional consultancies/law firms/self-employed consultants','Self-employed consultants','Owner','Alluve','',NULL,NULL,NULL,'985326712597-47','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=985326712597-47','11/01/14 12:40:01','2014-12-03T07:14:53.668181','(+31627) 181642','11/01/14 18:03:56','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Consultancy','Business'),(340,'other','./contribution_I99p8yd.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(341,'other','./contribution_WsNsZI1.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(342,'other','./contribution_Ssg1pFE.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(343,'other','./contribution_rE8vg9g.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(344,'other','./contribution_DsI7cXN.pdf',NULL,'national;European;global','AUSTRIA;BELGIUM;BULGARIA;CYPRUS;CZECH REPUBLIC;DENMARK;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LUXEMBOURG;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ALBANIA;LIECHTENSTEIN;RUSSIA, FEDERATION OF;SWITZERLAND;UNITED STATES','','Berlin OfficeFree Software Foundation Europe e.V.Linienstr. 14110115 BerlinGermanyPhone: +49-30-27595290','2010','Free Software Foundation Europe is dedicated to the furthering of Free Software and working for freedom in the emerging digital society.FSFE maintains that the freedoms to use, study, share and improve software are critical to ensure equal participation in the information age. We work to create general understanding and support for software freedom in politics, law and society-at-large. We also promote the development of technologies, such as the GNU/Linux operating system, that deliver these freedoms to all participants in digital society.','110 Talstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Düsseldorf 40217\r\n GERMANY','','NGO / think-tank','non-governmental organisation / association of NGOs',NULL,'Free Software Foundation Europe e.V.','The Fellowship is the primary way people can identify with and support the Free Software Foundation Europe. It provides collaborative tools for supporters to describe what they are doing and interact with each other. The Fellowship is a society for people who want to help the Free Software movement grow.','16','1','Fellowship of FSFE (910 members)','16346143489-02','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=16346143489-02','22/04/10 11:55:46','2011-10-05T09:16:17.727351','(+49) 2113107317','19/04/11 14:36:11','en','FSFE','Mr \r\n \r\n Karsten GERLOFF','President','Information society','Charitable, registered association (\"e.V.\") under German law','- Free Software- Open Standards- Digital Freedom- Competition',NULL,'Free Software Foundation Europe e.V.',NULL,'http://www.fsfe.org',2,NULL,NULL),(345,'other','./contribution_i7Jb7Ma.pdf','Demandes de rendez-vous auprès de Mme Leticia Zuleta de Reales Ansaldo, administratice dde la commission des affaires juridiques et de Mme Ewa Biernat, de la commission du marché internet, en charge du dossier sur le copyright.','European',NULL,'','','06/2012\r\n - \r\n 06/2013','AVTE est une association de loi 1901 crée en 2011.C\'est une fédération d\'associations et de syndicats de traducteurs de l\'audiovisuel européen. Son but est de favoriser l\'échange d\'expériences et d\'informations entre ses membres et d\'oeuvrer à l\'amélioration du statut et des conditions de travail des traducteurs de l\'audiovisuel.','31 Bd Henri IV \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75004\r\n FRANCE','500 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Présidente','Audiovisual Translators Europe','',NULL,NULL,NULL,'765450813131-56','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=765450813131-56','03/03/14 20:47:14','2014-12-03T06:39:59.381560','(+33) 624478014','03/03/14 20:47:43','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(346,'other','./contribution_f6TKF6G.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(347,'other','./contribution_xoFBJUT.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(348,'other','./contribution_tUeQSO4.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(349,'other','./contribution_HS597pl.pdf','připomínkování změn legislativy k autorským právům a audiovizuální oblasti','national','CZECH REPUBLIC','','','01/2013\r\n - \r\n 12/2013','zastupovat členy sdružení v jednáních s autory a kolektivními správci autorských práv v případech, kdy to bude požadováno.podporovat právní vědomí členů a jiných uživatelů autorských práv v oblasti užití autorských práv.vyměňovat si mezi členy praktické zkušenosti v oblasti užití autorských práv.sepisovat kolektivní a hromadné smlouvy v oblasti užití autorských práv za sdružení s kolektivními správci autorských práv.prosazovat zájmy členů sdružení v této oblasti před zastupitelskými sbory ČR.','1055 Svárov \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Vsetín 75501\r\n CZECH REPUBLIC','','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Other public or mixed entities, etc.','předseda sdružení','Sdružení uživatelů autorských práv Vsetín','','0','35','Agentura AURA,Karel Mikuš (1 members);Asociace studentů a přátel Slezské univerzity (1 members);CEKUS Chotěboř,s.r.o. (1 members);Centrum kultury Mor.Ostrava p.o. (1 members);Muzeum Umění Olomouc p.o. (1 members);Dům Kultury (DK) Akord Ostrava,s.r.o. (1 members);DK Hodonín p.o. (1 members);DK města Orlová p.o. (1 members);DK města Ostravy a.s. (1 members);DK Teplice,p.o. (1 members);DK Uherský Brod, p.o. (1 members);DK Kroměříž, p.o. (1 members);DK Vsetín,p.o. (1 members);Judr: Petr Holub (1 members);K3 Bohumín,p.o. (1 members);Klub Kultury Uherské hradiště p.o. (1 members);Kultura Žďár nad Sázavou,p.o. (1 members);Kulturní středisko Valašské Klobouky p.o. (1 members);Kulturní centrum Hlučín,p.o. (1 members);Kulturní centrum Kaskáda Bílina, p.o. (1 members);DK Strážnice,p.o. (1 members);Kulturní zařízení Valašské meziříčí,p.o. (1 members);Kulturní zařízení Ostrava Jih,p.o. (1 members);Město Vizovice _DK (1 members);MKZ Litoměřice,p.o. (1 members);KZ Veselí nad Moravou,p.o. (1 members);MKZ Jeseník,p.o. (1 members);Měsrtské kulturní středisko Havířov (1 members);Městské kulturní středisko Nový Jičín (1 members);Městské kulturní zařízení Třebíč,p.o. (1 members);Městské kulturní středisko Vyškov p.o. (1 members);Otrokovická Beseda, s.r.o. (1 members);Středisko volného času Lipník nad Bečvou p.o. (1 members);T Klub kulturní agentura Rožnov pod Radhoštěm p.o. (1 members);Trisia a.s. Třinec (1 members)','398803713114-40','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=398803713114-40','03/03/14 12:51:46','2014-12-03T06:34:29.794019','(+420) 575 755 201','03/03/14 12:54:10','cs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Public entity','Government'),(350,'other','./contribution_mqRgfp1.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(351,'other','./contribution_93TX3So.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(352,'other','./contribution_DCtsri8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(353,'other','./contribution_AiXYPmQ.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(354,'other','./contribution_2T0X3xX.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(355,'other','./contribution_uGL6GiD.pdf','- Licenses for Europe- European Dialogue on Internet Governance','European','AUSTRIA;BELGIUM;FINLAND;GERMANY;IRELAND;NETHERLANDS;PORTUGAL;SLOVAKIA;IRAN, ISLAMIC REPUBLIC OF;RUSSIA, FEDERATION OF','NERDY is an informal network providing educational services to international youth organisations','','08/2013\r\n - \r\n 02/2014','NERDY is a pan-European network of young net activists promoting Digital Rights and youth participation in Internet Governance processes.','- - \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n . -\r\n AUSTRIA','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','-','Network of EuRopean Digital Youth','','10','','','850942913073-46','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=850942913073-46','26/02/14 19:31:44','2014-12-03T06:06:32.636044','(+-) 0','26/02/14 19:32:29','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(356,'other','./contribution_yjN8X0K.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(357,'other','./contribution_qyaxmeJ.pdf','Optimizing fair and true competition and stimulating free knowledge by trying to achieve an optimum concerning exclusive rights (i.e. patents and copyrights in particular).','national;European;global','NETHERLANDS','ScriptumLibre is run by unpaid volunteers.','Vrijschrift/ScriptumLibre is a member of EDRi and as such can also be contacted through EDRi:European Digital Rights39/9 Rue Montoyer1000 BruxellesBelgium','01/2013\r\n - \r\n 12/2013','ScriptumLibre works on creating awareness of the economic and social meaning of free knowledge and culture for our society. ScriptumLibre fulfills a protecting and promoting role. On the one hand free information ensures more competition and better market working because monopoly shaping is reduced. On the other hand, free knowledge and free culture offer unhindered access to that information, and that serves the development of mankind directly. Moreover ScriptumLibre is concerned about the erosion of privacy by legislators. ScriptumLibre cooperates internationally with the Foundation for a Free Information Infrastructure, Free Software Foundation Europe, Project Gutenberg, European Digital Rights and a lot of other organisations. ScriptumLibre.org Foundation is the international branch of the Dutch \"Stichting Vrijschrift.org\".','7 Trekwei \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Workum 8711 GR\r\n NETHERLANDS','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','chairman','Stichting Vrijschrift','Vrijschrift/ScriptumLibre is a member of European Digital Rights (EDRi).','0','0','','91345912471-63','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=91345912471-63','08/10/09 22:55:53','2014-12-03T07:18:19.743229','(+31) 515543434','18/09/14 19:33:52','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(358,'other','./contribution_cTbOB0P.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(359,'other','./contribution_nHQZXSK.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(360,'other','./contribution_TKiCdBl.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(361,'other','./contribution_SqYiWVp.pdf','Gemäß ihrem gesetzlichen Auftrag (§ 1 Arbeiterkammergesetz) setzt sich die Bundesarbeitskammer dafür ein, die „sozialen, wirtschaftlichen, beruflichen und kulturellen Interessen der Arbeitnehmer und Arbeitnehmerinnen zu vertreten und zu fördern“. Gemäß § 93 AK-Gesetz umfasst dies ausdrücklich auch „Vorhaben betreffend die Rechtsetzung im Rahmen der Europäischen Union“, insbesondere „Stellungnahme(n) zu Entwürfen von Richtlinien, Verordnungen oder Empfehlungen der EU“.Vor diesem Hintergrund befasste sich die BAK insbesondere mit folgenden Themen:Institutionell:Neuausrichtung der Eurozone unter spezieller Beachtung sozilpolitischer und demokratischer Fortschritte, Entgegenwirken dem eklatanten Ungleichgewicht der Interessen zwischen Wirtschaft und Arbeit auf europäischer Ebene Soziales und Bildung:Weißbuch Pensionen, Strategie zur Gleichstellung 2010-2015, Erhöhung des Frauenanteils in Aufsichtsräten, Antidiskriminierung, der Mutterschutzrichtlinie, der Arbeitszeitrichtlinie, der EU-Richtlinie über die Arbeitszeit von LenkerInnen, der wissenschaftlichen Kooperation im Bereich sozialer Sicherung auf europäischer Ebene, der EU-Erweiterung, der Anwendung der Übergangsfristen auf den Arbeitsmarkt auf die Arbeitskräfteüberlassung, der Entsenderichtlinie, der Bekämpfung von Lohn- und Sozialdumping, der Saisonarbeiterrichtlinie und innerbetriebliche Entsenderichtlinie, dem einheitliches Antragsverfahren für eine kombinierte Erlaubnis zum Aufenthalt und zur Arbeit im Gebiet eines Mitgliedstaaten, der EU-Kampagne „Gesunde Arbeitsplätze – sichere Instandhaltung“,dem Europäisches Kollisionsrecht mit Relevanz für die ArbeitnehmerInnen, sozialen Dienstleistungen, der 2. Qualitätsnetzwerkkonferenz, dem QualifikationsrahmenWirtschaftspolitik:EU-Wirtschaftrspolitik und deren soziale Folgen, Finanzmarktregulierung, Economic Governance, EU 2020 Strategie, Kampagne für die Einführung einer Finanztransaktionssteuer auf europäischer Ebene, ManagerInnengehälter und Wirtschaftskrise, Vergaberecht, Dienstleistungskonzessionen, Umsetzung 3. Energie-Binnenmarktpaket, Bekämpfung des Steuerwettbewerbs, dem EU-Haushalt ab 2014, Binnenmarktpolitik – Monti-Bericht, arbeitsrelevante Menschenrechte und Wirtschaft, einem Nachhaltigkeitskapitel in bilateralen Freihandelsabkommen, der Mitteilung „Handel, Wachstum und Weltgeschehen – Handelspolitik als Kernbestandteil der EU-Strategie Europa 2020“, diversen bilateralen Freihandelsabkommen, dem Assoziationsabkommen mit Kolumbien & gewerkschaftlichen Grundrechten, dem Schwerpunktland China, der Europäischen Investitionspolitik, dem EU-GlobalisierungsfondsVerbraucherschutz:EU-Kaufrecht, Richtlinie über Rechte der Verbraucher, Nachhaltiger Konsum und nachhaltige Produktion, EU-Verordnung zur Lebensmittelkennzeichnung, Umsetzung Verbraucherkreditrichtlinie, Konsultationen und Stellungnahmen an die EU-Kommission im Bereich Finanzdienstleistungen, Recht auf ein Girokonto, Einlagensicherung Banken, Anlegerentschädigung Wertpapierfirmen, Einlagensicherung – Versicherungen, Packaged Retail Investment Products, Umsetzung des EU-Telekomrichtlinienpaketes, Umsetzung der RL Vorratsdatenspeicherung, Datenschutz in sozialen Netzwerken, Umwelt- und Verkehrspolitik:Feinstaub und Luftreinhaltepolitik, Green Jobs, Anlagenrecht, Wasserwirtschaft, Gentechnik, Abfallpolitik, Lärmpolitik, Klimaschutz, Energieeffizienz und erneuerbare Energien, Chemikalienpolitik, Verankerung von Sozial- und Qualitätskriterien im Öffentlichen Verkehr, Kostenwahrheit im Güterverkehr, Die künftige Politik für das transeuropäische Verkehrsnetz, Binnenschifffahrt, EU-Eisenbahnpolitik – Recast der Eisenbahnpakete.','sub-national;national;European;global',NULL,'Alle österreichischen ArbeitnehmerInnen sind per Gesetz Mitglied der Arbeiterkammern. Die Mitgliedsbeiträge sind gesetzlich geregelt und betragen 0,5 Prozent des Bruttoeinkommens (maximal bis zur Höchstbemessungsgrundlage in der Sozialversicherung). 560.000 (ua Arbeitslose, Eltern in Karenz, Präsenz- und Zivildiener) der rund 3,4 Millionen Mitglieder sind von der Zahlung des Mitgliedsbeitrages befreit, haben aber Anspruch auf das volle AK-Leistungsangebot. Als gesetzliche berufliche Interessenvertretung unterliegt die Gebarung der AK der Kontrolle des österreichischen Rechnungshofes.','Büro in Brüssel:AK EUROPAStändige Vertretung Österreichs bei der EUAvenue de Cortenbergh 301040 BrüsselBELGIENTel. Nr.: +32 2 2306254','01/2013\r\n - \r\n 12/2013','Die Bundesarbeitskammer ist die gesetzliche Interessenvertretung von rund 3,4 Millionen ArbeitnehmerInnen und KonsumentInnen in Österreich. Sie vertritt ihre Mitglieder in allen sozial-, bildungs-, wirtschafts- und verbraucherpolitischen Angelegenheiten auf nationaler als auch auf EU-Ebene. Darüber hinaus ist die Bundesarbeitskammer Teil der österreichischen Sozialpartnerschaft. Die Bundesarbeitskammer Österreichs bildet die Dachorganisation von neun Arbeiterkammern auf Bundesländerebene, die gemeinsam den gesetzlichen Auftrag haben, die Interessen ihrer Mitglieder zu vertreten. Im Rahmen ihrer Aufgaben beraten die Arbeiterkammern ihre Mitglieder unter anderem in Fragen des Arbeitsrechts, des Konsumentenschutzes, in Sozial- und Bildungsangelegenheiten. Mehr als drei Viertel der rund 2 Millionen Beratungen jährlich betreffen arbeits-, sozial- und insolvenzrechtliche Fragestellungen. Darüber hinaus nimmt die Bundesarbeitskammer im Rahmen von legislativen Begutachtungsverfahren die Aufgabe wahr, die Positionen der ArbeitnehmerInnen und der KonsumentInnen gegenüber dem Gesetzgeber in Österreich als auch auf EU-Ebene einzubringen.Das AK EUROPA Büro in Brüssel wurde 1991 errichtet, um die Interessen aller Mitglieder der Bundesarbeitskammer gegenüber den Europäischen Institutionen vor Ort einzubringen.','20-22 Prinz-Eugen-Straße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1040\r\n AUSTRIA','300000\r\n € - 350000\r\n €','II - In-house lobbyists and trade/professional associations','Trade unions','Head of AK Europa','Bundesarbeitskammer Österreich','Die BAK ist beobachtendes Mitglied in der BEUC (Bureau Européen des Unions de Consommateurs).Die BAK ist Mitglied bei ALTER EU (Allianz für Lobbying Transparenz und Ethik Regulierung).Die BAK ist Mitglied bei Finance Watch.',NULL,NULL,NULL,'23869471911-54','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=23869471911-54','26/06/09 15:24:56','2014-12-03T06:05:27.940382','(+43) 1501650','13/06/14 16:35:13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(362,'other','./contribution_ZYayYHl.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(363,'other','./contribution_9PfSNYB.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(364,'other','./contribution_TFryaNJ.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(365,'other','./contribution_MYhQflr.pdf','The Foundation has not been involved in substantial EU policy initiatives during the previous year. Wikimedia chapters, formed by European Wikimedia volunteers, may have chosen individually to become involved in EU initiatives.','global','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;LITUANIA;LUXEMBOURG;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM','Our financial model is based on support from a broad number of individuals, rather than any specific large donors. During the 2012-2013 fiscal year, donations totaling 95% of our revenue came in the form of small donations from over two million individuals. This gives us the independence to represent individuals, rather than the interests of specific large donors.','','07/2013\r\n - \r\n 03/2014','The mission of the Wikimedia Foundation is to empower and engage people around the world to collect and develop educational content under a free license or in the public domain, and to disseminate it effectively and globally, through websites like Wikipedia. In collaboration with a network of chapters, the Foundation provides the essential infrastructure and an organizational framework for the support and development of multilingual wiki projects and other endeavors which serve this mission. The Foundation will make and keep useful information from its projects available on the Internet free of charge, in perpetuity.','149 New Montgomery St. \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n San Francisco 94105\r\n UNITED STATES','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Legal Counsel','Wikimedia Foundation','','0','0','','596597913132-95','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=596597913132-95','03/03/14 21:03:01','2014-12-03T07:46:09.060063','(+1) 4158396885','03/03/14 21:04:04','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(366,'other','./contribution_u3pdAPJ.pdf','Yhdistyksen alaan liittyvien lainsäädäntö- ja muiden hankkeiden seuranta ja kommentointi.','global','FINLAND','','','01/2013\r\n - \r\n 12/2013','Electronic Frontier Finland ry on perustettu puolustamaan kansalaisten sähköisiä oikeuksia. Tällaisia ovat esim. oikeus sensuroimattomaan viestintään, kohtuullisiin käyttöehtoihin digitaalista sisältöä ostettaessa sekä vapaus kehittää ja julkaista avoimia tietokoneohjelmia. Yhdistys herättää keskustelua ja pyrkii vaikuttamaan muun muassa lainsäädäntöhankkeisiin sananvapaudesta ja tekijänoikeudesta Suomessa ja Euroopassa.','2-4 A Bulevardi \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00120\r\n FINLAND','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','puheenjohtaja','Electronic Frontier Finland ry','European Digital Rights (EDRi)','1,725','','','84885152435-03','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=84885152435-03','02/10/09 06:11:23','2014-12-03T06:37:00.347352','(+358) 505903763','05/09/14 22:16:50','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(367,'other','./contribution_c4eDXWK.pdf','Konsultationen','national','GERMANY','Die angegebene Summe ist die Summe des Gesamtbudgets der Helmholtz Gemeinschaft e.V. in 2013.','Büro BrüsselRue du Trône 981050 BruxellesBelgienTel: +32 2 5000 970Fax: +32 2 5000 980','01/2013\r\n - \r\n 12/2013','Mission der Helmholtz-GemeinschaftWir leisten Beiträge zur Lösung großer und drängender Fragen von Gesellschaft, Wissenschaft und Wirtschaft durch strategisch-programmatisch ausgerichtete Spitzenforschung in den Bereichen Energie, Erde und Umwelt, Gesundheit, Luftfahrt, Raumfahrt und Verkehr, Schlüsseltechnologien sowie Struktur der Materie.Wir erforschen Systeme hoher Komplexität unter Einsatz von Großgeräten und wissenschaftlichen Infrastrukturen gemeinsam mit nationalen und internationalen Partnern.Wir tragen bei zur Gestaltung unserer Zukunft durch Verbindung von Forschung und Technologieentwicklung mit innovativen Anwendungs- und Vorsorgeperspektiven.Helmholtz: Nachhaltige Forschung gestaltet ZukunftDie Helmholtz-Gemeinschaft ist die größte Wissenschaftsorganisation Deutschlands. In ihren 18 naturwissenschaftlich-technischen und biologisch-medizinischen Forschungszentren arbeiten rund 36.000 Beschäftigte. Das jährliche Budget der Gemeinschaft beträgt mehr als 3,8 Milliarden Euro. Es wird zu circa 70 Prozent von Bund und Ländern im Verhältnis 90:10 aufgebracht. Rund 30 Prozent des Gesamtbudgets werben die Zentren selbst als Drittmittel ein.Der Auftrag der Helmholtz-Gemeinschaft ist Forschung, die wesentlich dazu beiträgt, große und drängende Fragen von Wissenschaft, Gesellschaft und Wirtschaft zu beantworten. Die Wissenschaftler konzentrieren sich auf Systeme von hoher Komplexität, die Mensch und Umwelt bestimmen. Dabei geht es zum Beispiel darum, Mobilität und Energieversorgung zu sichern, eine intakte Umwelt für künftige Generationen zu erhalten oder Therapien für bisher unheilbare Krankheiten zu finden. Die Arbeit der Helmholtz-Gemeinschaft zielt darauf, die Lebensgrundlagen des Menschen langfristig zu sichern und die technologische Basis für eine wettbewerbsfähige Wirtschaft zu schaffen. Das Potenzial der Gemeinschaft, um dieses Ziel zu erreichen - das sind exzellente Wissenschaftlerinnen und Wissenschaftler in den Forschungszentren, leistungsfähige Infrastruktur und modernes Forschungsmanagement.Um ihre Aufgaben erfolgreich anzugehen, bündelt die Helmholtz-Gemeinschaft ihre Kräfte in sechs Forschungsbereichen: Energie, Erde und Umwelt, Gesundheit, Luftfahrt, Raumfahrt und Verkehr, Schlüsseltechnologien sowie Struktur der Materie. Für jeden Forschungsbereich entwickeln die Wissenschaftler Forschungsprogramme, die von internationalen Experten bewertet werden. Diese Bewertung bildet die Grundlage für die Programmorientierte Förderung der Helmholtz-Forschung. In den sechs Forschungsbereichen kooperieren die Helmholtz-Wissenschaftler untereinander und mit externen Partnern - über die Grenzen von Disziplinen, Organisationen und Nationen hinweg. Denn der Name Helmholtz steht für nachhaltige Forschung, die die Vernetzung als Prinzip für forschendes Denken und Handeln voraussetzt. Nachhaltige und konzertierte Forschung ist leistungsfähig und flexibel. Mit ihr verfolgt Helmholtz das Ziel, tragfähige Grundlagen für die Gestaltung der Zukunft zu schaffen.','45 Ahrstrasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bonn 53175\r\n GERMANY','','IV - Think tanks, research and academic institutions','Think tanks and research institutions','Leiterin Büro Brüssel','Helmholtz-Gemeinschaft Deutscher Forschungszentren e.V.','Science Europe','0','18','AWI - Alfred-Wegener-Institut für Polar- und Meeresforschung (0 members);DESY - Deutsches Elektronen-Synchrotron (0 members);DKFZ - Deutsches Krebsforschungszentrum (0 members);DLR - Deutsches Zentrum für Luft- und Raumfahrt (0 members);DZNE - Deutsches Zentrum für Neurodegenerative Erkrankungen (0 members);FZJ - Forschungszentrum Jülich (0 members);GSI - Helmholtzzentrum für Schwerionenforschung (0 members);HZB - Helmholtz-Zentrum Berlin für Materialien und Energie (0 members);HZDR - Helmholtz-Zentrum Dresden-Rossendorf (0 members);HZI - Helmholtz-Zentrum für Infektionsforschung (0 members);UFZ - Helmholtz-Zentrum für Umweltforschung (0 members);HZG - Helmholtz-Zentrum Geesthacht Zentrum für Material- und Küstenf. (0 members);HMGU - Helmholtz-Zentrum München - Dt. Forschungszentrum f. Gesundheit (0 members);GFZ - Helmholtz-Zentrum Potsdam - Deutsches GeoForschungsZentrum (0 members);KIT - Karlsruher Institut für Technologie (0 members);MDC - Max-Delbrück-Centrum für Molekulare Medizin Berlin-Buch (0 members);IPP - Max-Planck-Institut für Plasmaphysik (0 members);GEOMAR - Helmholtz-Zentrum für Ozeanforschung (0 members)','73792436593-97','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=73792436593-97','07/09/11 08:45:30','2014-12-03T06:55:15.785235','(+49228) 308180','25/08/14 08:13:22','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Think tanks and research institutions','Civil society'),(368,'other','./contribution_jek1Nlc.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(369,'other','./contribution_Tr5oiVK.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(370,'other','./contribution_4x3sn0C.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(371,'other','./contribution_YwEFURE.pdf','UKTV is a UK broadcaster and reaches over 42 million viewers per month.UKTV\'s ten imaginative channel brands - Watch, Dave, Gold, Alibi, Eden, Yesterday, Drama, Really, Home and Good Food - include the most watched non-PSB channel, the most watched channel in the Factual genre and the most watched channels in the Lifestyle genre (Pay and Free). UKTV curates brand-defining commissions, high-profile acquisitions and the very best of BBC and Channel 4 content, and embracing technology to deliver inspired channels to audiences through Freeview, Sky, Virgin Media, BT Vision, TalkTalk, YouView, plus direct On Demand digital services. The network distributes its highly valued programmes to 200 territories around the world and supplies Sky with more hours of HD content than anyone else.Now celebrating its 21st year at the forefront of digital television, UKTV - an independent commercial joint venture between BBC Worldwide and Scripps Networks Interactive, Inc. (SNI) - is proud to be the only British broadcaster to be recognised by Best CompaniesIts channels are also available in the Republic of Ireland via DTH satellite and cable re-transmission.','national;European','UNITED KINGDOM','','','01/2012\r\n - \r\n 04/2012','UKTV is a UK broadcaster and reaches over 42 million viewers per month.UKTV\'s ten imaginative channel brands - Watch, Dave, Gold, Alibi, Eden, Yesterday, Drama, Really, Home and Good Food - include the most watched non-PSB channel, the most watched channel in the Factual genre and the most watched channels in the Lifestyle genre (Pay and Free). UKTV curates brand-defining commissions, high-profile acquisitions and the very best of BBC and Channel 4 content, and embracing technology to deliver inspired channels to audiences through Freeview, Sky, Virgin Media, BT Vision, TalkTalk, YouView, plus direct On Demand digital services. The network distributes its highly valued programmes to 200 territories around the world and supplies Sky with more hours of HD content than anyone else.Now celebrating its 21st year at the forefront of digital television, UKTV - an independent commercial joint venture between BBC Worldwide and Scripps Networks Interactive, Inc. (SNI) - is proud to be the only British broadcaster to be recognised by Best CompaniesIts channels are also available in the Republic of Ireland via DTH satellite and cable re-transmission.','245 Hammersmith Road \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London W6 8PW\r\n UNITED KINGDOM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Director of Regulatory Affairs and Compliance','UKTV Media Limited','','240','','','937527713118-20','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=937527713118-20','03/03/14 18:07:49','2014-12-03T07:43:32.233301','(+44) 722996200','04/03/14 10:46:59','EN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(372,'other','./contribution_QQzAKjU.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(373,'other','./contribution_OddOWLx.pdf','Udział w konsultacjach społecznych dotyczących reformy prawa autorskiego oraz jednolitego rynku cyforowego.','European','NETHERLANDS;POLAND;SWITZERLAND','','','01/2013\r\n - \r\n 12/2013','Stowarzyszenie Sygnał służy ochronie praw konsumentów, nadawców, dystrybutorów i licencjodawców programów. Walcząc ze zjawiskiem piractwa, promuje uczciwość w obrocie sygnałem telewizyjnym oraz prawami własności intelektualnej. Działaniom Stowarzyszenia przyświecają dwa naczelne cele: przeciwdziałanie kradzieży sygnału telewizyjnego w sieciach kablowych oraz na platformach cyfrowych, wyłudzaniu i podrabianiu oryginalnego sprzętu, wprowadzaniu do obrotu fałszywych kart i dekoderów; dążenie do zmiany mentalności i ukształtowania jednoznacznej postawy wobec piractwa telewizyjnego, które powinno być postrzegane jako przestępstwo karane przez prawo.Stowarzyszenie informuje ponadto o regulacjach prawnych dotyczących ochrony praw dóbr niematerialnych w Polsce i poza jej granicami, a także o przyjętych w Europie i USA standardach ochrony sygnału telewizyjnego. Inicjuje i wspiera działania na rzecz dostosowania polskiego prawa autorskiego do prawa europejskiego w zakresie ochrony sygnału telewizyjnego.','8 al. gen. W. Sikorskiego \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Warszawa 02-758\r\n POLAND','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Prezes Zarządu','Stowarzyszenie Dystrybutorów Programów Telewizyjnych \"Sygnał\"','Stowarzyszenie Filmowców PolskichZwiązek Pracodawców Branży Internetowej IAB PolskaKreatywna Polska','0','20','Cyfrowy Polsat SA (17 members);Canal+ Cyfrowy (5 members);Orange (2 members);BBC Worldwide Polska (2 members);Discovery Polska (2 members);Fox International Channels Polska (3 members);HBO Polska (4 members);Inea (2 members);Irdeto (0 members);ITI Neovision (3 members);Kino Polska TV (1 members);Nagra (0 members);Redefine sp. z. o. o. (1 members);Sony Pictures Television (2 members);Telewizja Polsat (1 members);TVN (2 members);Viacom International Media Networks Northern Europe (2 members);Walt Disney Polska (1 members);A+E Networks (1 members);Turner (2 members)','084497913019-90','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=084497913019-90','20/02/14 11:46:19','2014-12-03T07:21:36.867770','(+48) 223282701','11/03/14 14:30:36','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(374,'other','./contribution_CkP8FG9.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(375,'other','./contribution_eyteToL.pdf','Public consultations and hearings related to the proposal for a directive on collective rights management and multi-territorial licensing of rights in musical works for online uses','European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Jamendo is the first European music platform for the promotion and discovery of independent artists. Created in 2005, Jamendo now features over 30,000 artists who choose to share more than 380,000 songs freely, by publishing them under a Creative Commons license (http://creativecommons.org/).','76 Avenue de la Liberté \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Luxembourg L-1930\r\n LUXEMBOURG','','II - In-house lobbyists and trade/professional associations','Companies & groups','Legal Advisor','Jamendo S.A.','',NULL,NULL,NULL,'068408912611-19','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=068408912611-19','14/01/14 11:21:07','2014-12-03T07:13:30.726988','(+352) 2653421','14/01/14 11:21:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(376,'other','./contribution_fCZ6Ms6.pdf','Communication and Coordination of particular actions with European Commission during Lithuanian Presidency period.','national;European',NULL,'','Association INFOBALT is a member of DIGITAL EUROPE, EU Digital Economy association http://www.digitaleurope.org','01/2013\r\n - \r\n 12/2013','INFOBALT is a single point of contact for any international requests, including investment and cooperation opportunities in the Lithuanian ICT industry. It is well connected to the other creative sectors of digital economy in the country and EU.INFOBALT aims at promoting Information and Communication Technologies\' input to the welfare of people, public and private interests. Representation of national ICT industry, lobbying, fostering of IT export and promotion of ICT education are the key guidelines for INFOBALT\'s activities. The association unites 130 members - key national and global businesses organizations, universities, education and research institutions, with a network of 10,000 experienced ICT professionals. INFOBALT’s mission is to define and defend the interests of the Lithuanian ICT sector by creating new opportunities for business development.INFOBALT has more than 10 years experience in number of EU and international projects as a partner, as well as a coordinator nationally (budget of some close to 5mln Eur). Association has a broad experience and advocates authorities on digital economy, IT technologies and policies, as well as consults its members on different related issues. Association had organized number of Trade Fairs and high level policy events. Association INFOBALT is a member of DIGITAL EUROPE, EU Digital Economy association.','2A-128 Mokslininku \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Vilnius LT-08412\r\n LITUANIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','EU affairs and Intellectual Property manager','Association INFOBALT','Association INFOBALT is a member of DIGITAL EUROPE, EU Digital Economy association.',NULL,NULL,NULL,'363337212637-45','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=363337212637-45','17/01/14 09:55:07','2014-12-03T07:13:02.437855','(+370) 5 262 2623','17/01/14 09:55:35','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(377,'other','./contribution_LLJGUwo.pdf','auteursrecht consultatie','global',NULL,'','The Nederlandse Vereniging van Filmdistributeurs (NVF) represents the common interests of 22 filmdistributors based in the Netherlands. The NVF is a member of FIAD, the International Federation of Film Distributors’ Associations / Fedération International des Associations des Distributeurs de Film (FIAD). The main activity of NVF’s members is the release of cinematographic works in cinemas and further exploitation as home-entertainment, including video, blu ray, internet and television exploitation in the Netherlands. NVF’s members cover the entire range of companies: small and medium-sized companies specialised in art house films, as well as larger companies focused on mainstream films. Film distributors are the intermediates between film producers and cinema exhibitors, playing an important role in film financing and promotion. Distributors give films the profile they deserve with the release in the first – theatrical – window of rights exploitation. Depending upon the contracts they have with producers, the distributors may have rights for part or all of the following markets: cinema, physical video, video on demand, television and internet.The members of NVF are :A-film Benelux MSD B.V.Amstelfilm B.V.Arti film v.o.f.Benelux Film Distributors B.V.Cinéart Nederland B.V.Cinema DelicatessenABC Theatrical Distribution B.V. / CinemienDutch Film Works B.V.Entertainment One Benelux B.V.EYE Film InstituutDe Filmfreak Distributie v.o.f.Imagine Filmdistributie Nederland B.V.Independent Films B.V.Just Film Distribution B.V.Lumière Publishing B.V.Paradiso Entertainment Nederland B.V.Shooting Star B.V.Twin FilmUniversal Pictures International (Netherlands) B.V.The Walt Disney Company (Benelux) B.V.Warner Bros. Pictures International Holland B.V.Wild Bunch Benelux Distribution B.V.','01/2013\r\n - \r\n 12/2013','De NVF behartigt de gemeenschappelijke belangen van haar leden en verleent de leden gemeenschappelijke diensten op het gebied van filmdistributie.','412 Krijn Taconiskade \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Amsterdam 1087 HW\r\n NETHERLANDS','5,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','directeur','Nederlandse Vereniging van Filmdistributeurs','De NVF is aangesloten bij FIAD, de Féderation Internationale des Associations de Distributeurs de film.',NULL,NULL,NULL,'926423413061-72','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=926423413061-72','25/02/14 19:00:55','2014-12-03T07:17:16.709468','(+31) 203868630','25/02/14 19:04:52','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(378,'other','./contribution_Dq8mfRd.pdf','Our main focus is on Information Society related policies, such as the European Digital Agenda, the telecommunications single market package, data protection, intellectual property, cyber security, consumer policy and internet governance. We also follow wider EU policies including the Internal Market, competition, innovation and economic relations with the EU’s major trading partners, such as with the US (TTIP), Japan, India or Brazil as well as plurilateral and multilateral trade negotiations (TiSA and at WTO level). As a provider of the UK’s largest occupational pension fund, we also take an interest in the EU’s pension policy. Given BT’s strong commitment to reduce CO2 emissions we take an active interest in Climate Change policy and Green ICT and energy efficiency debate. For further information on our European Affairs team as well as our recent and current positions on legislative proposals and other EU initiatives important to BT please go to:http://www.btplc.com/Thegroup/UKPublicAffairs/EuropeanAffairs/Briefings/index.htm','national;European;global',NULL,'Procurement: BT supplies managed networked IT services to multinational corporations, domestic businesses, non-governmental organisations and local, national and international institutions, including from the EU.Grants: BT participates in EU funded R&D projects and we are involved in the roll-out of regional broad band in the UK, which in some regions is also EU funded. Although, not all of the latter funding goes directly to BT, but to the regional governments, we included it. N.B. the numbers are for our financial year running from 04/2013 to 03/2014 and represent an indicative calculation based on the data we collected in-house. Our declared EU Affairs budget is for the same period and represents the proportional share in working time, office space and other spending, which occurs in lobbying the European Institutions. It also comprises membership fees (or where appropriate the relevant share of) in organisations and payments for consultants supporting our lobbying activities at EU level.','BT Brussels 40 Rue MontoyerBrussels 1000 Belgium+32 2 2371715','04/2013\r\n - \r\n 03/2014','BT is one of the world’s leading providers of communications services and solutions, serving customers in more than 170 countries. Its principal activities include the provision of networked IT services globally; local, national and international telecommunications services to its customers for use at home, at work and on the move; broadband, TV and internet products and services; and converged fixed/mobile products and services. BT consists principally of five lines of business: BT Global Services, BT Business, BT Consumer, BT Wholesale and Openreach. For the year ended 31 March 2014, BT Group’s reported revenue was £18,287m with reported profit before taxation of £2,312m.British Telecommunications plc (BT) is a wholly-owned subsidiary of BT Group plc and encompasses virtually all businesses and assets of the BT Group. BT Group plc is listed on stock exchanges in London and New York.BT Group plc is listed on stock exchanges in London and New York. Registered Office: 81 Newgate Street, London, EC1A 7AJRegistered in England and Wales No. 4190816','81 BT Centre Newgate Street\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London EC1A 7AJ\r\n UNITED KINGDOM','950,000 €','II - In-house lobbyists and trade/professional associations','Companies & groups','VP European Affairs','BT Group plc','In 2013-2014, BT has been a member of the following organisations relevant to its European affairs and European regulatory work: British Chamber of Commerce in Belgium (BCCB)Business for New Europe (BNE)German Association for Information Technology, Telecommunication and New Media (BITKOM)Confederation of British Industry (CBI)Centre for European Reform (CER)European CompetitiveTelecommunication Association (ECTA)European Internet Foundation (EIF)European Policy Centre (EPC)European Policy Forum (EPF)European Services Forum (ESF)Friends of EuropeFuture of Occupational Pensions in Europe (FOPE)Kangaroo GroupTransatlantic Business Council (TABC)Verband der Anbieter von Telekommunikations- und Mehrwertdiensten (VATM)',NULL,NULL,NULL,'00919034091-89','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=00919034091-89','30/08/10 17:34:52','2014-12-03T07:36:29.662123','(+44) 20 7356 5000','27/08/14 16:41:36','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(379,'other','./contribution_zJ7psLq.pdf','Public consultations and hearings related to the proposal for a directive on collective rights management and multi-territorial licensing of rights in musical works for online uses','European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Jamendo is the first European music platform for the promotion and discovery of independent artists. Created in 2005, Jamendo now features over 30,000 artists who choose to share more than 380,000 songs freely, by publishing them under a Creative Commons license (http://creativecommons.org/).','76 Avenue de la Liberté \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Luxembourg L-1930\r\n LUXEMBOURG','','II - In-house lobbyists and trade/professional associations','Companies & groups','Legal Advisor','Jamendo S.A.','',NULL,NULL,NULL,'068408912611-19','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=068408912611-19','14/01/14 11:21:07','2014-12-03T07:13:30.726988','(+352) 2653421','14/01/14 11:21:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(380,'other','./contribution_oEfsWVN.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'287556411631-86',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(381,'other','./contribution_H5ONlcd.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(382,'other','./contribution_VxRLIJG.pdf','*Promotes Finland\'s welfare, which is ultimately based on successful companies* Communicates to civil servants and decision-makers about the way the decisions concerning companies impact the success of these companies and Finland\'s welfare.* Influences legislative projects, e.g. by providing statements and acting in expert committees.* Co-ordinates employers\'labour market policies and negotiates on labour projects pertaining to bipartite and tripartite system.* Act as a collective voice that defines and communicates the common opinions of business life.* EK\'s subsidiaries offer training and advice to companies.','sub-national;national;European;global',NULL,'','EK BrusselsAvenue de Cortenbergh 172B - 1000 Bruxelles +32-2-735 63 35+32- 476 600 998','01/2014\r\n - \r\n 11/2014','Confederation of Finnish Industries (EK) is the leading business organization in Finland. Our main task is to make Finland an internationally attractive and competitive business environment. Successful business activities are the foundation for the Finnish welfare society.We represent and defend interests of the Finnish business community both on the national level, as well as in the EU. We are engaged in dialogue with decisions makers in all subjects relevant to our members such as company law, taxation, trade policy, innovation environment, SME and entrepreneurship as well as energy and climate politics. Furthermore, we are centrally involved in labour market with our member associations.EK represents the entire private sector and companies of all sizes :* 27 member associations* 16,000 member companies across all business sectors* member companies employ 980,000 workersEK\'s organization consists of 115 professionals, located in our Helsinki headquarters and Brussels office.EK is a member of BusinessEurope, and we are also active in the OECD and the ILO.','10 Eteläranta \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 30\r\n \r\n \r\n \r\n \r\n Helsinki 00131\r\n FINLAND','400000\r\n € - 450000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Head of Brussels Office','Confederation of Finnish Industries EK','BUSINESSEUROPE',NULL,NULL,NULL,'1274604847-34','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=1274604847-34','22/12/08 12:00:11','2014-12-03T06:36:58.670697','(+358) 942020','26/11/14 10:26:56','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(383,'other','./contribution_ATQDqVv.pdf','EDiMA has taken part in relevant public consultations related to online intermediaries and the Internet sector such as the public consultation on the review of the EU copyright rules. In addition, EDiMA is following any progress and legislative development within the European Parliament by attending parliamentary committee meetings (IMCO, ITRE, CULT) and new initiatives from the European Commission re: Communication, Public consultation etc.','European',NULL,'','Brussels office:60 rue du Trone1050 BrusselsT: +32 (0)2 626 1990F: +32 (0)2 626 9501General email: info@europeandigitalmedia.org','07/2010\r\n - \r\n 06/2011','EDiMA, the European Digital Media Association, is an alliance of Internet and new media companies who\'s members provide online platforms offering users a wide range of online services, including the provision of audiovisual content, media, E-commerce, communications and information/search services. EDiMA represents Internet platform businesses in EU policy formation, on matters affecting the online environment and believes EU policy should maximise the development of new online services and business models to the benefit of innovators and EU consumers. Accordingly, EDiMA follows and is engaged at EU-level in regulatory and policy developments relating to content online, intellectual property rights in the online environment, the liability regime for Internet intermediaries, consumer rights issues related to E-Commerce and the use of online platforms, and more broadly, the development of a European Digital Single Market facilitating innovative online services.','20 Mortlake Highstreet \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London SW14 8JN\r\n UNITED KINGDOM','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Executive Director','European Digital Media Association','',NULL,NULL,NULL,'53905947933-43','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=53905947933-43','01/02/12 19:24:17','2014-12-03T07:38:11.100616','(+44) 020 8392 6673','05/06/14 10:46:51','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(384,'other','./contribution_GxxrOSE.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(385,'other','./contribution_aVgsHCt.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(386,'other','./contribution_8x5H82b.pdf','The main activities of DIGITALEUROPE in the previous year include work related to the following programmesDrafting Technical Regulations of the Customs Union on Energy Efficiency RequirementsConsultations on Smart citiesPublic consultation on the Green Paper on a common strategic framework for EU research on Innovation fundingCommission Green Paper on the Modernisation of EU Public Procurement Policy Towards a More Efficient European Procurement MarketCommission consultation on the legal framework for the fundamental right to protection of personal dataEuropean Commission’s reflection document on \"Creative Content in a European Digital Single Market: Challenges for the Future\"The European Commission\'s public consultation on universal service principles in e-CommunicationsConsultation on open internet and net neutrality in EuropeFuture of Cohesion PolicyFramework Directive on Collective Rights ManagementHorizon2020Work for the harmonisation of mobile phone chargers.e-Skills Week campaignsDIGITALEUROPE organised several events in the European Parliament in collaboration with MEPs.','European;global',NULL,'DIGITALEUROPE estimates that the amount declared above, which represents approximately 45% of the overall costs budgeted of the association is associated with the direct lobbying of EU institutions. Further costs are dedicated to activities such as information gathering and distribution, policy and sector/ industry monitoring, preparation of publications and participation on an ad hoc basis in EU funded service contracts/','','01/2012\r\n - \r\n 01/2013','DIGITALEUROPE is the voice of the European digital technology industry, which includes large and small companies in the Information and Communications Technology and Consumer Electronics Industry sectors. It is composed of major multinational companies and national associations from 28 European countries.DIGITALEUROPE is the association for the European Digital Technology Industry, which includes inter alia the information technology, communications technology and the consumer electronics industry sectors (together the \"Digital Technology Industry”). Given the increasingly global nature of the Digital Technology Industry, DIGITALEUROPE’s activities, including consideration of membership, cover Europe in a geographic sense, including EU accession countries, EU accession candidate countries and non EU countries.DIGITALEUROPE aims to facilitate non-commercial collaboration and coordination between member companies and national trade associations across the European Union, and assist them in sharing best-practices in many business operations and facilitating the agreement of international standards in close collaboration with international standards bodies. DIGITALEUROPE provides a full range of services to its membership and generally to stakeholders in the digital economy, including: Promoting the development of best practices and benchmarking within the DIGITALEUROPE membership;Providing up-to-date, high-value industry data and information to members on all aspects of the Digital Economy in Europe and around the world;Delivering a forum for knowledge exchange and information sharing between members through industry programmes and pan European events;Monitoring all relevant initiatives to industring, informing members through regular mailings, emails, newsletters and information transfer, as well as the hosting and and organisation of meetings and events.Corporate Members:Acer, Alcatel-Lucent, AMD, Apple, BlackBerry, Bose, Brother, CA Technologies, Canon, Cassidian, Cisco, Dell, Epson, Ericsson, Fujitsu, Hitachi, Hewlett Packard, Huawei, IBM, Ingram Micro, Intel, iQor, JVC Kenwood Group, Konica Minolta, Kyocera, Lenovo, Lexmark, LG Electronics, Loewe, Microsoft, Mitsubishi Electric Europe, Motorola Mobility, Motorola Solutions, NEC, Nokia, Nokia Siemens Networks, Nvidia Ltd., Océ, Oki, Oracle, Panasonic Europe, Philips, Pioneer, Qualcomm, Ricoh Europe PLC, Samsung, SAP, Schneider Electric IT Corporation, Sharp Electronics, Siemens, Sony, Swatch Group, Technicolor, Texas Instruments, Toshiba, TP Vision, Western Digital, Xerox, ZTE Corporation.National Trade Associations:Belarus: INFOPARKBelgium: AGORIABulgaria: BAITCyprus: CITEADenmark: DI ITEK, IT-BRANCHENEstonia: ITLFinland: FTTIFrance: Force Numérique, SIMAVELEC Germany: BITKOM, ZVEIGreece: SEPEHungary: IVSZIreland: ICT IRELANDItaly: ANITECLithuania: INFOBALTNetherlands: Nederland ICT, FIAR Norway: IKT NORGEPoland: KIGEIT, PIITPortugal: AGEFERomania: ANIS, APDETICSlovakia: ITASSlovenia: GZSSpain: AMETICSweden: Foreningen Teknikföretagen, IT&TelekomföretagenSwitzerland: SWICOTurkey: ECID, TESID, TÜBISADUkraine: IT UKRAINEUnited Kingdom: techUK','14 rue de la Science \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1040\r\n BELGIUM','800000\r\n € - 900000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director','DIGITALEUROPE','DIGITALEUROPE is a founding member of the ICT4EE Forum created in response to the EC Recommendation to adopt and implement a common framework to increase the sector’s energy and carbon footprints, set targets and benchmark progress.DIGITALEUROPE is a member of CENELEC.',NULL,NULL,NULL,'64270747023-20','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=64270747023-20','26/10/11 09:42:25','2014-12-03T06:13:21.562134','(+32 2) 609 53 10','29/09/14 11:23:45','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(387,'other','./contribution_Bey7T0U.pdf','EBF\'s lobbying efforts in recent years have focused on:-VAT: Reduced VAT rate for books, as a tool to promote reading (TAXUD)-COPYRIGHT: Creative content, intellectual property and DRM, the fight against piracy (MARKT & DG INFO SOCIETEY & MEDIA)-STATISTICS and the booksellers\' claim for meaningful data on bookselling (EUROSTAT)- DIGITAL AGENDA: How can booksellers adapt to digital bookselling and make sure that a fair playing field is guaranteed for all the stakeholders in the digital arena- EUROPEANA (European Digital Library) and the booksellers claim to be involved in the project -OPEN ACCESS and knowledge sharing (DG RESEARCH)-EU CULTURAL POLICY in general and the support to reading in particular','European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','EBF represents Booksellers Associations in the EU and EEA. Through its Member Associations, EBF represents more than 25.000 individual booksellers.In this capacity, EBF is the legitimate voice of the European booksellers.The objectives of EBF are to enhance the perception of the booktrade in general and to represent the interests of the booksellers in particular vis-à-vis the European institution.By gathering booksellers associations from across Europe, EBF also fosters exchange of best practice between its members and acts as an forum for discussion and cooperation between the national booksellers associations.','10 Rue de la Science \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 1\r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director','European Booksellers Federation','',NULL,NULL,NULL,'9031106115-62','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=9031106115-62','01/07/08 17:18:03','2014-12-03T06:15:59.755418','(+32) 2 223 49 40','16/06/14 15:01:18','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(388,'other','./contribution_fVmqw31.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(389,'other','./contribution_Y1bOgg0.pdf','Roaming Regulation; Digital Agenda; State Aid Guidelines on Broadband','European',NULL,'','ECTA Brussels officeRue de Trèves 49-51,1040 BrusselsBelgiumSwitchboard: +32 (0)2 290 0100','01/2013\r\n - \r\n 12/2013','- Assist and encourage market liberalisation and competition - Represent the telecommunications industry to key government and regulatory bodies - Maintain a forum for networking and business development throughout Europe - Assist new market entrants through pro-competitive policies - Continually reflect the dynamic nature of the telecommunications industry','1a Eastheath Avenue Eastheath House\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wokingham RG41 2PR\r\n UNITED KINGDOM','650,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director','European Competitive Telecommuniations Association','European Internet Foundation',NULL,NULL,NULL,'24627752238-32','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=24627752238-32','08/09/09 18:34:21','2014-12-03T07:38:09.407309','(+44) 1189793282','05/09/14 10:40:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(390,'other','./contribution_dJxJIOv.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(391,'other','./contribution_mHHtMdJ.pdf','Information Society and ICT policy, Competition Policy','national;European;global',NULL,'','Brussels Representative OfficeAv. des Arts 531000 BrusselsBelgiumTel. +32-(0)2-7750500Fax +32-(0)2-7750509','01/2013\r\n - \r\n 12/2013','Deutsche Telekom AG is a leading integrated telecom operator with 230.000 employees worldwide. Deutsche Telekom is active in the fields of telecommunication, information technology, multimedia, entertainment as well as cloud and security solutions. Deutsche Telekom is present in nearly all European countries as an operator of fixed and wireless communication infrastructures and as a provider of communication technology for large private and public clients. The following network operators are forming parts of Deutsche Telekom Group in member states of the European Union:Deutsche Telekom AG (Germany), Magyar Telekom NyRt. (Hungary),OTE (Hellenic Telecommunications Organization S.A.) and Cosmote Mobile Telecommunications S.A. (both Greece),T-Mobile Polska S.A. (Poland),Romtelecom S.A. and Cosmote Romania (S.C. Cosmote Romanian Mobile Telecommunications S.A.) in Romania,Slovak Telekom a.s.(Slovakia),Hrvatski Telekom d.d. (Croatia),T-Mobile Austria GmbH,T-Mobile Czech Republic a.s. andT-Mobile Netherlands BVGTS Central Europe Gruppe (GTS) Everything Everywhere (UK), 50/50 Joint VentureOutside Europe Deutsche Telekom is active as an operator as T-Mobile US Inc.The Brussels Representation of Deutsche Telekom is participating in all policy developments related to electronic communications, contributing the expertise of Deutsche Telekom Group to the European debate on all aspects of the dynamically changing digital information society. Our contributions cover the conditions for investment and innovation, the competitiveness of EU businesses and ICT experience of its consumers as well as corporate responsibility. These contributions intend to help Europe to keep its leading role in the area of network security,in the global climate change policy and fully exploit the potential of electronic communications to maintain Europes competitive position in the global economy.','140 Friedrich Ebert Allee \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bonn 53113\r\n GERMANY','1,230,000 €','II - In-house lobbyists and trade/professional associations','Companies & groups','Director','Deutsche Telekom','Deutsche Telekom is inter alia member ofEuropean Telecommunications Network Operators\' Association (ETNO), GSMA,GSMA Europe,Global e-Sustainability Initiative (GeSI),European Internet Foundation (EIF),Centre of European Policy Studies (CEPS),Bruegel,European Services Forum (ESF),Transatlantic Business Council (TABC), World Economic Forum (WEF),International Chamber of Commerce (ICC),Federation of German Industries (BDI),Confederation of German Employers´ Associations (BDA),German Association for Information Technology, Telecommunications and New Media (BITKOM)',NULL,NULL,NULL,'60052162589-72','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=60052162589-72','06/11/09 14:26:22','2014-12-03T06:52:39.107664','(+49) 228 181 0','13/10/14 16:10:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(392,'other','./contribution_AfKM1jo.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(393,'other','./contribution_0aFcGhI.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(394,'other','./contribution_JkBpe0v.pdf','* Joined the https://meta.wikimedia.org/wiki/EU_policy/Statement_of_Intent* Helped draft https://meta.wikimedia.org/wiki/European_Commission_copyright_consultation* Joined Italian activities by multiple organisations, like beniculturaliaperti.it, aimed at free culture promotion in Italy, also with an EU-level scope.','national;European;global','FRANCE;GERMANY;ITALY;UNITED KINGDOM','Some of our volunteer members may spend out of their own pocket, or conduct EU-related activies as part of meetings and other missions reimbursed by Wikimedia Italia or friend organisations. Such expenses are typically below 300 € per year.','info@wikimedia.it','01/2012\r\n - \r\n 12/2012','Wikimedia Italia persegue esclusivamente finalità di solidarietà sociale nel campo della promozione della cultura. L\'Associazione ha per obiettivo di contribuire attivamente a diffusione, miglioramento e avanzamento del sapere e della cultura promuovendo la produzione, raccolta e diffusione gratuita di contenuti liberi (Open Content) per incentivare le possibilità di accesso alla conoscenza e alla formazione. Sono definiti \"contenuti liberi\" nel senso inteso dall\'associazione tutte le opere che sono state contrassegnate dai loro autori con una licenza che ne permetta l\'elaborazione e/o la diffusione gratuita. In aggiunta a ciò sarà approfondita anche la conoscenza e la consapevolezza delle questioni sociali e filosofiche correlate.In particolare Wikimedia Italia si dà come obiettivo di promuovere e sostenere, direttamente o indirettamente, gli sviluppi, i trasferimenti, le traduzioni in lingua italiana dei progetti della Wikimedia Foundation, Inc.Anche se Wikimedia Italia è soggetta alla legge italiana, i suoi obiettivi includono il sostegno ai progetti di Wikimedia Foundation, Inc. nel suo complesso e non solamente a quelli in lingua italiana. Wikimedia Italia non ha interesse a intervenire nella gestione dei siti di Wikimedia Foundation, Inc.----\"Wikimedia italiana\" has no profit purpose. It intends to operate in the field of the culture and knowledge. In order to actively contribute to the diffusion, the improvement and the progress of the knowledge and culture in the world, Wikimedia italiana aims at supporting the development of encyclopedias, quote collections, educational books and collections of other documents, information and electronic databases having the following characteristics: they are completely free they are available on-line through the internet technologies and their derivatives they have a content editable by the user they have a free content, that can be distributed freely under the conditions of licenses like the GNU Free Documentation License, issued by the Free Software Association Inc., and particularly by its European branch on the site http://www.fsfeurope.org/.Particularly, Wikimedia italiana intends to promote and support, directly and indirectly, the developments, the transfers, the translations in Italian language of the projects of the Wikimedia Foundation, Inc.Even though Wikimedia italiana is subject to the Italian laws, its purposes include the support to the projects of the Association on the whole, and not only to the ones in Italian language. The usage of the Italian language is functional to the work of the association but it does not mean a definition of the association purposes on a national basis.','24 via Roberto Ardigò \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Monza (MB) 20900\r\n ITALY','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Board member and projects director','Associazione Wikimedia Italia','* wikimedia.org* https://meta.wikimedia.org/wiki/Wikimedia_chapters* https://meta.wikimedia.org/wiki/Wikimedia_Chapters_Association* frontieredigitali.it* beniculturaliaperti.it','391','','','070762412733-39','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=070762412733-39','27/01/14 13:07:45','2014-12-03T07:05:25.999438','(+39) 0395962256','27/01/14 13:16:03','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(395,'other','./contribution_JDJYHYL.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'10774909452-08',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(396,'other','./contribution_UgF3anh.pdf','Digital Agenda','national;European',NULL,'Zuschüsse für Projektpartnerschaft im EU-kofinanzierten Projekt saferinternet.at (www.saferinternet.at).Weiterer Projektpartner www.stopline.atProjektkoordinator: ÖIAT','','01/2010\r\n - \r\n 12/2010','ISPA - Der Verband der österreichischen Internet Service ProviderISPA Mission StatementDie ISPA ist die Dachorganisation der Internet-Wirtschaft und vertritt deren Interessen. Ihr Anliegen ist die Gestaltung der optimalen wirtschaftlichen und rechtlichen Bedingungen für die Entwicklung des Internets. Die ISPA betrachtet die Nutzung des Internets als entscheidende Kulturtechnik und nimmt die sich daraus ergebende gesellschaftspolitische Verantwortung wahr. Die ISPA repräsentiert die österreichische Internet-WirtschaftDie ISPA – Internet Service Providers Austria – ist der Dachverband der österreichischen Internet Service-Anbieter und wurde im Jahr 1997 als eingetragener Verein gegründet. Ziel des Verbandes ist die Förderung des Internets in Österreich und die Unterstützung der Anliegen und Interessen von rund 200 Mitglieder aus Bereichen wie etwa Access, Services, Hosting und Content. Die ISPA versteht sich als Sprachrohr der österreichischen Internet-Wirtschaft gegenüber Regierung, Behörden und anderen Institutionen, Verbänden und Gremien und fördert die Kommunikation der Markt-Teilnehmer untereinander.','3/18 Währinger Straße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien A-1090\r\n AUSTRIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Generalsekretär','Internet Service Providers Austria','EuroISPA (www.euroispa.org)Creativwirtschaft (www.creativwirtschaft.at)vibe.at',NULL,NULL,NULL,'56028372438-43','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=56028372438-43','02/10/09 16:02:33','2014-12-03T06:06:21.006989','(+43 1) 4095576','05/09/14 18:54:13','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(397,'other','./contribution_AHFyLHw.pdf','Data Protection, eCommerce, Intellectual Property, Human Rights, Telecoms','global',NULL,'Following a restructuring of European operations completed in late 2013, Yahoo!’s legal entity in Europe changed from Yahoo! SARL to Yahoo! EMEA Ltd. The financial data supplied for 2013 is related to activities carried out first by Yahoo! SARL, then by Yahoo! EMEA Ltd. following this restructuring.','Yahoo!Brussels Representative Office4th floorRue de la Loi 2271040 BrusselsBELGIUM','01/2013\r\n - \r\n 12/2013','Yahoo! is focused on making the world\'s daily habits inspiring and entertaining. By creating highly personalized experiences for our users, we keep people connected to what matters most to them, across devices and around the world. In turn, we create value for advertisers by connecting them with the audiences that build their businesses. Yahoo! is headquartered in Sunnyvale, Calif., and has offices located throughout the Americas, Asia Pacific (APAC) and the Europe, Middle East and Africa (EMEA) regions.','Pinnacle 1 Block P8 East Point Business Park\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Clontarf, Dublin 3\r\n IRELAND','200000\r\n € - 250000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Director, EU Public Policy','Yahoo! EMEA Ltd.','IAB Europe, EDiMA, EuroISPA, AmCham EU, CCIA, European Internet Foundation',NULL,NULL,NULL,'58885623470-56','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=58885623470-56','19/04/10 17:02:38','2014-12-03T07:03:32.377208','(+353) 1 8663100','17/09/14 16:19:42','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(398,'other','./contribution_61N34Ud.pdf','Investeren in de productie of distributie van muziek, films en games is dezer dagen een riskante onderneming. Nochtans zijn films, games en muziek nog nooit zo populair en beschikbaar geweest. De producenten moeten dan ook samen hun stem laten horen via een representatieve organisatie die de collectieve belangen van deze branches verdedigen. BEA neemt die taak op zich op verschillende wijzen: Verdediging sectorbelangen BEA heeft veelvuldig contact met de overheid op alle niveau’s over diverse zaken in het belang van de entertainment sector en is geassocieerd met UNIZO. BEA ijvert voor een laag BTW tarief, de bescherming van auteursrechten, fiscale stimuli voor investering in creativiteit,… zowel bij nationale als bij Europese instanties. Informatie voor de leden BEA kan voor haar leden een beroep doen op de studiedienst van UNIZO, die over een groot aantal materies met betrekking tot het ondernemen (juridisch) advies kan leveren. Verder kan BEA haar leden bijstaan voor advies inzake auteursrechten en naburige rechten. Marktinformatie BEA verzamelt informatie over de entertinmentmarkt en verspreid die onder haar leden met inachtname van de wettelijke regelgeving. Pers en Public relations BEA informeert publiek en pers over de entertainmentsector en de markt en treedt op als woordvoerder. Tevens draagt zij rechtstreeks of onrechtstreeks bij aan verschillende activiteiten ter promotie van de sector. Piraterijbestrijding Om de efficiëntie van de bestrijding van namaak te verhogen heeft BEA een samenwerkingsovereenkomst met BAF (Belgian Anti-piracy Federation) en SABAM. Ze zijn actief in de bestrijding van games-, film- en muziekpiraterij, zowel on- als offline en dit uitsluitend voor het repertoire van aangesloten leden. Het bespaart de leden veel tijd en kosten.','national',NULL,'','','01/2012\r\n - \r\n 12/2012','BEA is de beroepsvereniging van de Belgische games-, muziek- en video-industrie. De Belgische entertainmentindustrie (games, muziek en video) realiseerde in 2009 een omzet van € 615 miljoen en stelt meer dan 15 000 mensen tewerk. BEA bundelde in 2008 de krachten van BLISA, BVF en IFPI Belgium, respectievelijk de beroepsfederaties van de Belgische interactieve software- (kortweg games), video- en muziekindustrie om de belangen van de Belgische Entertainmentsector nog beter te verdedigen. BEA verenigt zo meer dan 50 bedrijven actief in de productie en/distributie van games, interactieve software, muziek en video. Samen vertegenwoordigen de leden van BEA bijna 90% van de Belgische entertainmentindustrie. De opdrachten van BEA zijn: ► het bevorderen van de waarde van muziek, film en games in de samenleving, zowel in het sociaal, economisch als het cultureel leven; ► de bescherming en de verdediging van de belangen van de sectoren in het algemeen en haar leden in het bijzonder; ► het bevorderen van een redelijke toegang tot de markt en het streven naar aangepaste auteurswetten; ► het verstrekken van informatie over de werking van de entertainmentsector in het algemeen en van haar leden in het bijzonder.','3 Almaplein \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 2\r\n \r\n \r\n \r\n \r\n Brussel 1200\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','directeur','Belgian Entertainment Association','BEA is lid van UNIZO,IFPI, IVF en ISFE',NULL,NULL,NULL,'88267013456-85','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=88267013456-85','15/04/10 11:40:45','2014-12-03T06:10:00.908966','(+32) 27794174','22/04/14 09:38:04','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(399,'other','./contribution_2R3KwyS.pdf','Proposal of Data Protection RegulatoryDigital Agenda Policies','national;European;global',NULL,'The budget of Confidustria Digitale for the year 2013 amounted to about 950 thousands €; all the revenues are from volountary fees from associated companies','','01/2013\r\n - \r\n 12/2013','La digitalizzazione del Paese:Realizzazione dell’Agenda Digitale Europea da parte del Governo nazionaleAdozione di un’Agenda Digitale da parte di ogni Regione Politiche di alfabetizzazione digitale Politiche di sviluppo della domanda di servizi digitali Politiche di sviluppo delle infrastrutture digitali Politiche di ammodernamento del sistema legislativo e regolamentare per favorire lo sviluppo dell’economia e della società digitale nel PaesePolitiche volte a favorire gli investimenti nel settore ICT e politiche per la digitalizzazione delle imprese.La valorizzazione del settore ICT:Sostenere e incoraggiare le buone pratiche e i casi di successo della filiera ICT italiana.Valorizzare i territori/i cluster dove l’ICT italiana è presente in modo aggregato (i distretti dell’ICT/dell’innovazione italiana).Supportare l’internazionalizzazione dell’ICT italiana, sia tramite Confindustria che attraverso azioni dirette.Veicolare alle associazioni/alle aziende federate le molte opportunità provenienti dall’Europa in termini di fondi europei per la ricerca e per l’innovazione, attivando eventuali progetti condivisi.','11 Barberini \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n ROMA 00187\r\n ITALY','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','DIRETTORE GENERALE','FEDERAZIONE CONFINDUSTRIA DIGITALE','Confindustria Digitale belongs to CONFINDUSTRIA, the main organisation representing Italian manufactoring and services companies',NULL,NULL,NULL,'884009612779-18','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=884009612779-18','30/01/14 12:09:08','2014-12-03T07:07:47.535565','(+39) 0645417541','30/01/14 12:13:10','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(400,'other','./contribution_TZ0LIn3.pdf','Das Europabüro befasst sich mit der Vertretung der geschäfts- und ordnungspolitischen Interesssen des ZDF gegenüber den EU-Institutionen. Des weiteren gehört die Interessenvertretung gegenüber dem Europarat, der UNESCO und der WTO zum Aufgabenbereich.','national;European;global','','','ZDF-EuropabüroAvenue des Arts 561000 Brüssel','01/2012\r\n - \r\n 12/2012','Das Zweite Deutsche Fernsehen (ZDF) ist eine gemeinnützige Anstalt des öffentlichen Rechts mit Sitz in Mainz. Das ZDF bietet ein Vollprogramm aus Information, Bildung, Kultur und Unterhaltung an. Auftrag, Funktion und Finanzierung sind im Rundfunkstaatsvertrag der Länder festgelegt.','1 ZDF-Strasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Mainz 55100\r\n GERMANY','300000\r\n € - 350000\r\n €','VI - Organisations representing local, regional and municipal authorities, other public or mixed entities, etc.','Other public or mixed entities, etc.','Directeur ZDF-Europabüro','Zweites Deutsches Fernsehen','Das Zweite Deutsche Fernsehen ist Mitglied der Union der Europäischen Rundfunkanstalten (EBU-UER).','0','','','3209361971-85','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=3209361971-85','15/01/09 16:50:42','2014-12-03T06:59:42.156649','(+49) 61317010','15/01/14 09:04:20','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Public entity','Government'),(401,'other','./contribution_EkP2L8p.pdf','The main activities of DIGITALEUROPE in the previous year include work related to the following programmesDrafting Technical Regulations of the Customs Union on Energy Efficiency RequirementsConsultations on Smart citiesPublic consultation on the Green Paper on a common strategic framework for EU research on Innovation fundingCommission Green Paper on the Modernisation of EU Public Procurement Policy Towards a More Efficient European Procurement MarketCommission consultation on the legal framework for the fundamental right to protection of personal dataEuropean Commission’s reflection document on \"Creative Content in a European Digital Single Market: Challenges for the Future\"The European Commission\'s public consultation on universal service principles in e-CommunicationsConsultation on open internet and net neutrality in EuropeFuture of Cohesion PolicyFramework Directive on Collective Rights ManagementHorizon2020Work for the harmonisation of mobile phone chargers.e-Skills Week campaignsDIGITALEUROPE organised several events in the European Parliament in collaboration with MEPs.','European;global',NULL,'DIGITALEUROPE estimates that the amount declared above, which represents approximately 45% of the overall costs budgeted of the association is associated with the direct lobbying of EU institutions. Further costs are dedicated to activities such as information gathering and distribution, policy and sector/ industry monitoring, preparation of publications and participation on an ad hoc basis in EU funded service contracts/','','01/2012\r\n - \r\n 01/2013','DIGITALEUROPE is the voice of the European digital technology industry, which includes large and small companies in the Information and Communications Technology and Consumer Electronics Industry sectors. It is composed of major multinational companies and national associations from 28 European countries.DIGITALEUROPE is the association for the European Digital Technology Industry, which includes inter alia the information technology, communications technology and the consumer electronics industry sectors (together the \"Digital Technology Industry”). Given the increasingly global nature of the Digital Technology Industry, DIGITALEUROPE’s activities, including consideration of membership, cover Europe in a geographic sense, including EU accession countries, EU accession candidate countries and non EU countries.DIGITALEUROPE aims to facilitate non-commercial collaboration and coordination between member companies and national trade associations across the European Union, and assist them in sharing best-practices in many business operations and facilitating the agreement of international standards in close collaboration with international standards bodies. DIGITALEUROPE provides a full range of services to its membership and generally to stakeholders in the digital economy, including: Promoting the development of best practices and benchmarking within the DIGITALEUROPE membership;Providing up-to-date, high-value industry data and information to members on all aspects of the Digital Economy in Europe and around the world;Delivering a forum for knowledge exchange and information sharing between members through industry programmes and pan European events;Monitoring all relevant initiatives to industring, informing members through regular mailings, emails, newsletters and information transfer, as well as the hosting and and organisation of meetings and events.Corporate Members:Acer, Alcatel-Lucent, AMD, Apple, BlackBerry, Bose, Brother, CA Technologies, Canon, Cassidian, Cisco, Dell, Epson, Ericsson, Fujitsu, Hitachi, Hewlett Packard, Huawei, IBM, Ingram Micro, Intel, iQor, JVC Kenwood Group, Konica Minolta, Kyocera, Lenovo, Lexmark, LG Electronics, Loewe, Microsoft, Mitsubishi Electric Europe, Motorola Mobility, Motorola Solutions, NEC, Nokia, Nokia Siemens Networks, Nvidia Ltd., Océ, Oki, Oracle, Panasonic Europe, Philips, Pioneer, Qualcomm, Ricoh Europe PLC, Samsung, SAP, Schneider Electric IT Corporation, Sharp Electronics, Siemens, Sony, Swatch Group, Technicolor, Texas Instruments, Toshiba, TP Vision, Western Digital, Xerox, ZTE Corporation.National Trade Associations:Belarus: INFOPARKBelgium: AGORIABulgaria: BAITCyprus: CITEADenmark: DI ITEK, IT-BRANCHENEstonia: ITLFinland: FTTIFrance: Force Numérique, SIMAVELEC Germany: BITKOM, ZVEIGreece: SEPEHungary: IVSZIreland: ICT IRELANDItaly: ANITECLithuania: INFOBALTNetherlands: Nederland ICT, FIAR Norway: IKT NORGEPoland: KIGEIT, PIITPortugal: AGEFERomania: ANIS, APDETICSlovakia: ITASSlovenia: GZSSpain: AMETICSweden: Foreningen Teknikföretagen, IT&TelekomföretagenSwitzerland: SWICOTurkey: ECID, TESID, TÜBISADUkraine: IT UKRAINEUnited Kingdom: techUK','14 rue de la Science \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1040\r\n BELGIUM','800000\r\n € - 900000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Director','DIGITALEUROPE','DIGITALEUROPE is a founding member of the ICT4EE Forum created in response to the EC Recommendation to adopt and implement a common framework to increase the sector’s energy and carbon footprints, set targets and benchmark progress.DIGITALEUROPE is a member of CENELEC.',NULL,NULL,NULL,'64270747023-20','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=64270747023-20','26/10/11 09:42:25','2014-12-03T06:13:21.562134','(+32 2) 609 53 10','29/09/14 11:23:45','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(402,'other','./contribution_Ii2ubMa.pdf','Digital Agenda, eco-design, accessibility, standardisation, data protection/privayc by design, interoperability, digital piracy,','European',NULL,'','','01/2013\r\n - \r\n 12/2013','Informing and influencing debate, legislation and regulation affecting the technologies used in the media and communications industries, particularly the sectors involved in distributing paid-for content. Advocating market-led solutions which facilitate innovation and are investment-friendly.','39 Belgarum Place Staple Gardens\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WINCHESTER SO23 8SL\r\n UNITED KINGDOM','800000\r\n € - 900000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Executive Director','Digital Interoperability Forum','',NULL,NULL,NULL,'77946677931-57','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=77946677931-57','01/02/12 16:31:10','2014-12-03T07:37:35.103674','(+44) 1962 861975','06/01/14 15:55:47','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(403,'other','./contribution_iWrwkMd.pdf','Main ECIS activities that were undertaken the year before, and fall under the scope of the Transparency Register include:The Commission\'s Communication regarding its cloud computing strategy for the EU, and follow-up actions such as the ETSI initiative with respect to the coordination of cloud standardisation activitiesParticipation in the European Multi-Stakeholder Platform on ICT standardisation\"Action 23 of the Digital Agenda on ICT standardisation and public procurement\"The ongoing review of EU copyright rules More generally, the Commission\'s Digital Agenda for Europe and initiatives deriving from the Digital Agenda','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','ECIS is an international non-profit association founded in 1989 that endeavours to promote a favourable environment for interoperable ICT solutions. It has actively represented its members regarding issues related to interoperability and competition before European, international and national fora, including the EU institutions and WIPO. ECIS’ members include large and smaller information and communications technology hardware and software providers. In particular, ECIS\' members are IBM, Kolab Systems, Oracle Corporation, Opera Software ASA, Red Hat Inc., Real Networks, Corel.','65 Avenue Louise \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1050\r\n BELGIUM','150000\r\n € - 200000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Chairman & President','European Committee for Interoperable Systems','',NULL,NULL,NULL,'32238324913-44','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=32238324913-44','07/01/11 09:42:33','2014-12-03T06:16:40.927981','(+32) 2 706 24 15','28/01/14 15:15:36','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(404,'other','./contribution_wtcNzeN.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(405,'other','./contribution_xyp1RNw.pdf','Freihandelsabkommen TTIP und CETA, Konsultattion EU Copyright','national',NULL,'','SPIO Büro BerlinKurfürstenstraße 5710785 Berlin','01/2014\r\n - \r\n 11/2014','Die SPIO vertritt die Interessen der deutschen Film-, Fernseh- und Videowirtschaft in den Sparten Filmproduktion, Filmverleih, Filmtheater, Videoprogramm und Fernsehen. Als Dachverband von derzeit 18 Berufsverbänden repräsentiert sie mehr als 1.100 Mitgliedsfirmen mit mehr als 60.000 ständig und 130.000 auf Projektbasis Beschäftigten, die einen Jahresumsatz von rund 8 Milliarden Euro erwirtschaften. Ziel der SPIO ist es, den deutschen Film als Kulturgut in seiner Vielfalt, Qualität und internationalen Wahrnehmung zu stärken und seine Wettbewerbsfähigkeit als Wirtschafts- und Kulturgut zu sichern.','6 Murnaustraße \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 5129\r\n \r\n \r\n \r\n \r\n Wiesbaden 65189\r\n GERMANY','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Beauftragter der SPIO für Urheberrecht','Spitzenorganisation der Filmwirtschaft e.V.','',NULL,NULL,NULL,'314741112399-87','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=314741112399-87','06/12/13 16:02:50','2014-12-03T06:57:31.871604','(+49) 030 25794450','24/11/14 09:25:42','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(406,'other','./contribution_pPkXSOf.pdf','-','European',NULL,'','','01/2013\r\n - \r\n 12/2013','The European Games Developer Federation is committed to the stimulation and development of a stable, vibrant and creative European games development sector that is competitive globally and recognized culturally.The EGDF will act to advance the political and economic interests of the European computer and video games industry by providing a platform for collaboration and discussion between European institutions and game developers.The federation represents some 600 studios based in Austria, Denmark, Finland, France, Germany, Norway, Spain, Sweden and the United Kingdom, which together employ about 17,000 people. The European computer and video games industry, including distributors and students in game educations, encompasses almost 100,000 individuals.','10 Eteläranta \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00130\r\n FINLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','COO','European Games Developer Federation','- European Internet Foundation (EIF)',NULL,NULL,NULL,'57235487137-80','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=57235487137-80','14/11/11 18:44:08','2014-12-03T06:37:01.802822','(+358) 9 4289 1606','20/10/14 15:59:40','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(407,'other','./contribution_Khgfjf8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(408,'other','./contribution_CgBVT09.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(409,'other','./contribution_hz9nxlS.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(410,'other','./contribution_9mx8BS2.pdf','EU-Consultation Urheberrecht EU Handelsabkommen mit USA, Ausnahme für Film','national;European;global',NULL,'','','01/2013\r\n - \r\n 01/2014','Zweck des Vereines ist (Auszug aus den Statuten):- die Wahrnehmung und Förderung der künstlerischen, wirtschaftlichen, rechtlichen und kulturellen Interessen der österreichischen DrehbuchautorInnen;- deren Interessenvertretung gegenüber den Rundfunk- und Fernsehanstalten, Verlagen, der Filmwirtschaft, den Gewerkschaften und Ministerien, gesetzgebenden Körperschaften und allen nationalen wie internationalen Institutionen- Förderung des österreichischen Films, aktive Beteiligung der DrehbuchautorInnen am kulturellen Leben sowie auf allen Gebieten der Film- und Fernsehpolitik.','6 Stiftgasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1070\r\n AUSTRIA','2,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführerin','Drehbuchverband Austria','Dachverband der Österreichischen FilmschaffendenFSE – Federation of Screenwriters in Europe',NULL,NULL,NULL,'609330612778-39','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=609330612778-39','30/01/14 11:42:36','2014-12-03T06:05:35.341878','(+431) 5268503','30/01/14 12:23:45','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(411,'other','./contribution_sIgGeAx.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(412,'other','./contribution_wLjsXfs.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(413,'other','./contribution_NlZzL52.pdf','- Professional musicians\' Intellectual Property Rights (Copyright and related rights)- Professional musicians\' social status- Professional musicians\' access to basic rights (right to unionize ,access to social security, health and safety protection at work, fair contracts, etc.)','global','AUSTRIA;BELGIUM;BULGARIA;CYPRUS;DENMARK;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;MALTA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ARGENTINA;AUSTRALIA;BENIN;BRAZIL;BURKINA FASO;CAMEROON;CANADA;CENTRAL AFRICAN, REPUBLIC;CHILE;GAMBIA;GHANA;GUINEA;INDIA;IRAN, ISLAMIC REPUBLIC OF;JAPAN;KENYA;LIBERIA;MALAWI;MEXICO;NAMIBIA;NEW ZEALAND;PANAMA;PERU;SENEGAL;SOUTH AFRICA;TANZANIA, UNITED RE UBLIC OF;TOGO;UGANDA;UNITED STATES;URUGUAY;ZIMBABWE','','','01/2012\r\n - \r\n 12/2012','La Fédération Internationale des Musiciens, fondée en 1948, est l’organisation représentant les syndicats, guildes et associations professionnelles de musiciens au niveau mondial. À ce jour, elle compte environ 65 membres dans 57 pays.La FIM a créé trois groupes régionaux, pour l\'Afrique (le CAF, Comité africain de la FIM), l\'Amérique latine (le GLM, Grupo Latinoamericano de Musicos) et l\'Europe (le groupe européen de la FIM).La FIM a pour but de sauvegarder et de développer les intérêts d’ordre économique, social et artistique des musiciens représentés par ses associations membres.Ses objectifs sont notamment les suivants : - Encourager dans tous les pays l\'organisation professionnelle des musiciens.- Grouper en son sein les organisations de musiciens du monde entier, stimuler et renforcer la coopération internationale.- Prendre toutes initiatives utiles afin de faire naître des dispositions législatives (ou autres), sur le plan national et international, pour la protection des musiciens.- Conclure des accords avec d\'autres organisations internationales dans l\'intérêt des associations membres et dans celui de la profession.- Recueillir des statistiques et d\'autres éléments documentaires relatifs à la profession de musicien et assurer leur diffusion parmi les associations membres.- Apporter un appui moral et matériel aux associations membres lorsque celles-ci se trouvent engagées dans une lutte de défense professionnelle en accord avec les buts poursuivis par la FIM.- Encourager tous les efforts tendant à assurer que la bonne musique devienne un patrimoine commun à tous les peuples.- Organiser des conférences et congrès internationaux.- Collaborer étroitement avec l\'Organisation Mondiale de la Propriété Intellectuelle (OMPI), avec le Bureau International du Travail (BIT) et avec l\'UNESCO, et assurer enfin des relations permanentes avec toutes les organisations internationales dont l\'activité peut être utile à la FIM.En tant qu’organisation non gouvernementale, la FIM est en relation permanente avec les principales organisations intergouvernementales telles que l’UNESCO, l\'OIT, l’OMPI. Elle est reconnue et consultée par le Conseil de l’Europe, la Commission européenne et le Parlement européen. La FIM a donc la possibilité de participer aux négociations internationales sur la protection des artistes interprètes et d\'y faire entendre la position des musiciens.La FIM est membre du Conseil International de la musique (CIM). Elle collabore également avec toutes les organisations nationales et internationales représentant les intérêts des travailleurs artistiques. Avec la Fédération Internationale des acteurs (FIA) et la Fédération UNI des médias et du spectacle (UNI-MEI), elle a créé l’Alliance Internationale des Arts et du Spectacle (IAEA). L\'IAEA est membre du Conseil des Fédérations Mondiales Sectorielles (CGU).','21 bis Rue Victor Massé \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris F-75009\r\n FRANCE','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Secrétaire général','INTERNATIONAL FEDERATION OF MUSICIANS','IAEA (International Arts and Entertainment Alliance)EAEA (European Arts and Entertainment Alliance)IMC (International Music Council)EMC (European Music Council)CGU (Council of Global Unions)ETUC (European Trade Union Confederation)','0','65','GDG-KMSFB (1,502 members);ACOD (360 members);CSC-TRANSCOM (250 members);ACV-TRANSCOM (250 members);UBMD (500 members);HGU (591 members);DMF (5,428 members);SML (3,250 members);SNAM (1,900 members);DOV (10,417 members);VER.DI (4,300 members);PMU (1,200 members);MZTSZ (4,000 members);IMU (460 members);IMU (1,050 members);KNTV (2,000 members);FNV-KIEM (1,446 members);MFO (3,500 members);FORUM (200 members);SMP (300 members);FAIR (703 members);UNIA (252 members);FSC-CCOO (154 members);SMF (2,800 members);BMU (30,925 members);AFM (16,000 members);MUJ (2,600 members);SINDMUSI (1,250 members);SITMUCH (127 members);SIMUHS (308 members);JFM (1,086 members);SITMAS (600 members);FMB (300 members);SYNAM (300 members);SYCAMU (350 members);MUSIGA (750 members);AMIG (300 members);MAM (600 members);ORUUANO (320 members);ANACIMM (304 members);AMS (600 members);CWUSA (600 members);SARIAC (300 members);UMU (652 members);SIMCCAP (300 members);TAMUNET (420 members);KAU (158 members);MEAA (858 members);MUI (300 members);SMU (402 members);SFWU (200 members);SMV-USDAM (1,449 members);MFI (375 members);LKDAF (153 members);SADEM (1,300 members);APFUTU (151 members);PA-SY-NEK (200 members);GWU (50 members);UMCA (530 members);FUDEM (300 members);IMU (300 members);MUSIGAM (310 members);MULIB (314 members);SLC-CGIL (2,000 members);SUTM (10,000 members)','01953872943-65','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=01953872943-65','05/01/10 12:50:26','2014-12-03T06:44:46.926109','(+33) 145263123','23/01/14 12:10:47','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(414,'other','./contribution_IvOMhDk.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(415,'other','./contribution_onDXKyF.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(416,'other','./contribution_s3T1eom.pdf','ei ole','national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Muusikkojen ammattijärjestö. Huolehdimme ammattimuusikkojen ammatillisesta edunvalvonnasta mm. tekemällä työehtosopimuksia, ja annamme yksilöllistä oikeudellista ym. neuvontaa. Muita palvelujamme ovat mm. Muusikko-lehti, sairauskassa ja taiteilijaresidenssit.','16 Pieni Roobertinkatu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00700\r\n FINLAND','','II - In-house lobbyists and trade/professional associations','Trade unions','puheenjohtaja','Suomen Muusikkojen Liitto ry','SAK, NMU (pohjoismainen muusikkojen liitto), FIM (kansainvälinen muusikkojen liitto), Gramex, Kopiosto, Suomen Musiikkineuvosto',NULL,NULL,NULL,'220274412730-79','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=220274412730-79','27/01/14 10:14:05','2014-12-03T06:37:58.235008','(+3589) 68034072','27/01/14 10:16:34','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(417,'other','./contribution_gcy3Uor.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(418,'other','./contribution_ILBeR7D.pdf','Joint Work with the oteher authors in Denmark in EU matters for useful e.g. ECSA/CIAM/GRD','national;European','DENMARK','','','01/2012\r\n - \r\n 12/2012','Hope to get influence in EU matters related to copyright for authors an songwriters','16, 1 Graabroedretorv \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Copenhagen K 1154\r\n DENMARK','50000\r\n € - 100000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Viceprecident','DPA - Danish Songwriters Guilt','KODA (author organixation)DKFDJBFADanish Arts CouncilECSA/CIAM/GRD','701','','','844895011136-19','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=844895011136-19','14/05/13 13:41:12','2014-12-03T06:35:22.135576','(+45) 33120085','22/05/14 11:06:15','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(419,'other','./contribution_t321EKb.pdf','Semplificazione delle norme sull\'occupazione nello spettalo, previdenza nel lavoro nello spettacolo, diritto d\'autore, insegnamento della musica anche a livello non statale.','national',NULL,'A tutt\'oggi SOS MUSICISTI è basata sul volontariato, con modesti apporti economici di carattere liberale.','','01/2013\r\n - \r\n 12/2013','SOS musicisti è un Sodalizio Nazionale a carattere sindacale per la tutela dell\'arte della musica e dei musicisti. Gli obiettivi della Associazione sono essenzialmente volti al miglioramento delle attuali leggi sullo Spettacolo, che in Italia sono obsolete, confuse, intrise di burocrazia all’inverosimile e foriere d’ingiustizia sociale. Occorrono riforme chiare ed efficaci che ridiano dignità al settore e soprattutto non creino situazioni conflittuali tra i musicisti professionisti e non professionisti.','44 via Ferro di Cavallo \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Lanciano 66034\r\n LITUANIA','','II - In-house lobbyists and trade/professional associations','Trade unions','Consulente artististico e scientifico','Sos Musicisti','',NULL,NULL,NULL,'559722213060-69','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=559722213060-69','25/02/14 18:21:30','2014-12-03T07:13:09.286637','(+39) 3356981277','25/02/14 20:33:31','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(420,'other','./contribution_2bhPNCs.pdf','Getty Images participated in the \"Licenses For Europe\" stakeholder dialogue in 2013.','national;European;global',NULL,'Getty Images (UK) Ltd is partaking in a R&D project titled \"Rights Data Integration\" for which it is expecting to receive a partial subsidy from the EU as a contribution towards some of its costs incurred in connection with this project.','','12/2012\r\n - \r\n 12/2013','Getty Images (UK) Ltd is a commercial organisation, responsible to its shareholders. It is part of a group of companies, the parent of which is Getty Images, Inc.The group\'s primary business is the licensing of images and other copyright works (including video clips and music tracks) to other businesses, across all industries. The group licenses its own copyright works as well as representing the copyright of many freelance contributing artists and third party copyright holders from around the world.','101 Bayham Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London NW1 0AG\r\n UNITED KINGDOM','','II - In-house lobbyists and trade/professional associations','Companies & groups','Vice President, Corporate Counsel','Getty Images (UK) Ltd','Getty Images is a member of BAPLA and, through BAPLA, a member of CEPIC. These are the trade organisations representing photo agencies in the UK and throughout Europe, respectively.',NULL,NULL,NULL,'019743413190-88','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=019743413190-88','05/03/14 09:44:55','2014-12-03T07:38:57.978007','(+44) 2032272900','05/03/14 12:28:53','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(421,'other','./contribution_YqwhHFa.pdf','Öffentliche Konsultation zur Überprüfung der Regeln zum EU-Urheberrecht','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Der Zweck des Vereines ist der Schutz, die Wahrung, die Förderung und die Vertretung der künstlerischen und wirtschaftlichen Interessen von Dramatikern und Dramatikerinnen und deren Rechtsnachfolgern.','18 Linke Wienzeile \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Wien 1060\r\n AUSTRIA','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführerin der Literar-Mechana','Verband der Dramatiker und Dramatikerinnen','',NULL,NULL,NULL,'696751212755-90','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=696751212755-90','28/01/14 14:29:27','2014-12-03T06:07:04.162351','(+43) 1 5872161','28/01/14 14:57:31','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(422,'other','./contribution_HIQR4ry.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(423,'other','./contribution_ctgrI7K.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(424,'other','./contribution_4xVDgBs.pdf','Nessuna','national',NULL,'0','','01/2012\r\n - \r\n 12/2012','SLC CGIL organizza i lavoratori dei settori della comunicazione: telecomunicazioni, servizi postali, industria grafico-editoriale e cartaria, spettacolo dal vivo, emittenza radiotelevisiva, industria cinematografica,sport.Svolge l\'attività della contrattazione collettiva in tali settori, a livello nazionale e decentrato. Aggrega direttamente o tramite accordi con associazioni professionali autori e artisti interpreti-esecutori, per una più efficace tutela dei loro interessi.Agisce anche nei confornti delle istituzioni nazionali al fine di migliorare le tutele sociali dei lavoratori che rappresenta.L\'azione sindacale di SLC CGIL si ispira ai valori della solidarietà e della giustizia sociale, della libertà e del pluralismo dell\'informazione, dell\'uguaglianza di opprtunità fra donne e uomini.','24 Piazza Sallustio \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Roma 00187\r\n ITALY','0 €','II - In-house lobbyists and trade/professional associations','Trade unions','Responsabile rapporti internazionali','Sindacato Lavoratori della Comunicazione','SLC CGIL fa parte, come sindacato di categoria, della Confederazione Generale Italiana del Lavoro (CGIL).E\' affiliato a UNI Europa.Ha un protocollo di intesa con STRADE (Sindacato dei Traduttori Editoriali)che prevede consultazione reciproca e iniziative comuni.E\' affiliato con il Sindacato Nazionale Giornalai Italiani.',NULL,NULL,NULL,'918531713195-55','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=918531713195-55','05/03/14 12:02:06','2014-12-03T07:11:07.346443','(+39) 0642048201','05/03/14 12:03:36','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(425,'other','./contribution_X66T9HJ.pdf','None','national;European',NULL,'No','The Dutch Association of Writers and Translators (Vereniging van Schrijvers en Vertalers – VSenV) organizes Dutch writers of many kinds (from novelists and screen writers to poets and children’s authors) and literary translators. The association embeds four departments: VvL (literary writers and translators), Netwerk Scenarioschrijvers (screenwriters), FLA (journalists) and VvEA (writers of educational material).','01/2013\r\n - \r\n 12/2013','The Dutch Association of Writers and Translators (Vereniging van Schrijvers en Vertalers – VSenV) organizes Dutch writers of many kinds (from novelists and screen writers to poets and children’s authors) and literary translators.Started in 1905 as Vereniging van Letterkundigen (VvL), it reconstituted itself in 1998 as VSenV, an umbrella organization covering four departments: the VvL (with working groups for translators, children’s authors, etc.), the Network of Screenwriters (film, television, and new media), the FreeLancers Association (freelance journalists), and since 2014 the Vereniging van Educatieve Auteurs (writers of educational works).The VSenV serves both the individual and the collective interests of authors. It assists individual authors in matters of copyright, including bringing cases to court, if necessary, or provide mediation. In the collective field the VSenV and its departments negotiate with their respective partners, from publishers to producers and government ministries, in some cases resulting in standard agreements. Please consult the VvL website (www.vvl.nu) for the English texts of two of the standard contracts.In the past hundred years several other organizations have been founded as a result of the work of our Association. These include the Dutch Literary Fund, the Translators’ House and the Dutch Collecting Society LIRA.','125 De Lairessestraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Amsterdam 1075 HH\r\n NETHERLANDS','2,500 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','legal','Vereniging van Schrijvers en Vertalers (VSenV)','The VSenV is a member of the European Writers’ Counsil (EWC).The VvL is a member of CEATL (Conseil Européen des Associations de Traducteurs Littéraires) and IBBY (International Board on Books for Young People).The Network of Screenwriters is a member of FSE (Federation of Scriptwriters in Europe).The departments of the VSenV are members of Platform Makers, which is a member of the International Authors Forum (IAF)',NULL,NULL,NULL,'369679213112-04','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=369679213112-04','03/03/14 11:45:45','2014-12-03T07:18:53.159048','(+3120) 6240803','03/03/14 11:53:24','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(426,'other','./contribution_eDDSCbC.pdf','1. Collaboration with Commissioner for Education, Culture, Youth and Multilingualism Mrs. A. Vassiliou, all year, on the EU Prize for Literature, and the promotion of reading and literacy in Europe.2. Close collaboration with several MEPs from different parties and different committees; in 2014 we have a joint project of the November conference on authors\'rights at the European Parliament. 3. Ongoing collaboration with MEPs and several Units of the European Commission in terms of providing evidence-based information and surveys results on authors, the text-sector, and the publishing industry.4. Ongoing work to suport access to works for the visually impaired, as co-chair of ETIN the European Trusted Intermediaries Network on access to books in special formats for the visually impaired in the EU.5. Participation in EP events on different aspects of professional creators in Europe.','European',NULL,'2006-2010 Operational grant received from the Culture Programme as a European network active in the field of culture','','01/2013\r\n - \r\n 12/2013','The AISBL has no commercial objective and pursues the following not profitable objectives of international utility: - inform and support its member organisations, defend authors’ economic and moral rights, promote the professional and cultural interests of authors, improve the legal and social status of writers and literary translators in the whole of Europe ; - encourage general debate in the fields of freedom of expression, intellectual property and artistic creativity, social status, contractual and working conditions of writers and literary translators ; - Improve public awareness about copyright and the conditions of authors in Europe ; - circulate pertinent information to its member organisations, particularly that relating to community initiatives in cultural, legal and regulatory matters. In order to achieve its objectives, the association may : - represent its members and defend their interests vis-à-vis the European authorities ; - inform and assist literary professionals : improve the conditions prior to literary creation ; - facilitate and encourage both trans-European cooperation and cultural exchange as well as the mobility of literary works – while promoting and defending the diversity of languages and the variety of artistic expression in the literary field ; - organise and co-organise European events such as international conferences, seminars, workshops and symposia. Generally, the association can undertake all activities relating directly or indirectly to its aims and objectives, or which could facilitate their achievement.','87 Rue du Prince Royal \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels B1050\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Secretary-General','European Writers’ Council-Féderation des associations européennes d’écrivains','1. Status of Official Observer of the World Intellectual Property Organisation WIPO2. Associate member of IFRRO the International Federation of Reproduction Rights Organisations, representing European writers',NULL,NULL,NULL,'56788289570-24','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=56788289570-24','15/09/12 15:32:06','2014-12-03T06:21:43.551584','(+32) 25510893','20/08/14 14:23:59','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(427,'other','./contribution_8jnhjvS.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(428,'other','./contribution_5KQG9U0.pdf','-','sub-national;national;European',NULL,'-','','01/2013\r\n - \r\n 12/2013','Vi arbetar med att stärka och utveckla yrkesrollen för illustratörer, grafiska formgivare, animatörer och serietcknare men strävar samtidigt efter att stödja alla som är verksamma inom fältet.','103 Hornsgatan \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Stockholm 11728\r\n SWEDEN','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Jurist','Svenska Tecknare','EIF - European Illustrators ForumIcograda - The International Council of Graphic Design Associations',NULL,NULL,NULL,'336578813113-46','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=336578813113-46','03/03/14 11:48:25','2014-12-03T07:32:20.817300','(+46) 855602910','03/03/14 11:49:09','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(429,'other','./contribution_4PP02qn.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(430,'other','./contribution_qKIcEYk.pdf','Convention OMPI sur les Interprétations et Exécutions AudiovisuellesCopie PrivéeExtension durée de protection des droits des artistes interprètes de l\'audiovisuelDialogue Social - Spectacle VivantDialogue Social - AudiovisuelDirective Gestion CollectiveLicences pour l\'EuropeTTIPConsultation de la Commission sur la révision de l\'acquis communautaire en matière de propriété intellectuelleSanté et sécurité','European;global','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ARGENTINA;AUSTRALIA;AZERBAIJAN;BELARUS;BRAZIL;BURKINA FASO;CAMEROON;CANADA;CHILE;COLOMBIA;COTE D\'IVOIRE;CUBA;ECUADOR;GEORGIA;GHANA;ICELAND;ISRAEL;JAPAN;KAZAKHSTAN;KYRGYZSTAN;MADAGASCAR;MEXICO;MOROCCO;NAMIBIA;NEPAL;NEW ZEALAND;NIGERIA;NORWAY;PANAMA;PERU;RUSSIA, FEDERATION OF;SERBIA;SWITZERLAND;UKRAINE;UNITED STATES;URUGUAY;ZAMBIA','','','01/2013\r\n - \r\n 12/2013','Set up in 1952, the International federation of Actors (FIA) represents performers\' trade unions, guilds and professional associations around the world. With a membership of approximately 100 affiliates in 73 countries, it mainly voices the professional interests of audiovisual performers, including actors, singers, dancers, variety artists, broadcast professionals and circus artists.FIA works globally and regionally on any subject matter that may impact on the terms and conditions of the professionals it represents. Its world Congress meets once every four years and its Executive Committee on a yearly basis. FIA also includes several regional and linguistic groups, whose members meet regularly to discuss issues of common interest and also to enlighten the global policy of the federation.The objects of the Federation are the protection and promotion, on a strictly professional basis, of the artistic, economic, social and legal interests of actors, singers, dancers, variety and circus artists, choreographers, directors, broadcast professionals, etc., organised in national affiliated unions.FIA’s main objectives and goals are:a. Promoting the trade union representation of performers;b. Promoting the intellectual property rights of performers; c. Promoting agreements between affiliated members, e.g. re: the mobility of performers; the transfer of membership from one union to the other; the protection of the professional interests of performers as they work or seek employment abroad;d. Safeguarding and campaigning for the development of live performance;e. Promoting the professional employment of performers working in all media as well as in live performance;f. Compiling surveys of value to its members;g. Providing expertise and advice – including legal - on national matters when requested by its members;h. Advocacing and lobbying to enhance the moral, intellectual property, contractual and social rights of performers at international level and, where relevant, at national level;i. Conveying and coordinating international solidarity to member unions involved in industrial disputes;j. Collaborating with the ILO, UNESCO, WIPO, the Council of Europe, all main institutions of the European Union and with other international organisations on all matters of relevance to its members;k. Organising international congresses, regular conferences and meetings for its members to exchange information and experience;l. Negotiating agreements with other international organisations on behalf of its members;m. Supporting its members in their efforts to maintain the principles established by the Federation, where assistance is required beyond their individual capacity.','40 Rue Joseph II \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 4\r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','150000\r\n € - 200000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Deputy General Secretary','International Federation of Actors','As an NGO, FIA enjoys permanent consultative and participatory status with the World Intellectual Property organisation (WIPO); the International Labour Organisation (ILO); UNESCO and the Council of Europe, where it is entitled to advocate the professional interests of the performers it represents. At EU level, FIA is recognised by the Council of Ministers, the Commission and the Parliament, among other institutions, and is regularly consulted on any subject matter pertaining to its field of jurisdiction.FIA is a member of the International Arts and Entertainment Alliance (IAEA), together with the International Federation of Musicians (FIM) and the International federation of Media and Entertainment Workers (UNI-MEI). The IAEA is itself a member of the Council of Global Unions (CGU) and is recognised by the ITUC as a Global Union Federation.','0','88','AAA (2,565 members);MEAA (6,210 members);GdG-KMSfB (1,000 members);BSAG (109 members);ACOD-Cultuur (298 members);CSC-Transcom (300 members);CGSP (597 members);SATED/ES (86 members);SATED/SP (450 members);SATED/RJ (1,885 members);SATED/CE (80 members);SATED/MG (250 members);UBA (139 members);SYNACOB (100 members);SCAS (300 members);ACTRA (8,634 members);CAEA (3,359 members);UDA (4,034 members);SIDARTE (420 members);CICA (46 members);SIAC (100 members);HDDU (840 members);UNEAC (497 members);AUC (109 members);HA (503 members);DAF (1,313 members);DSF (2,076 members);FENARPE (502 members);ENL (366 members);EKTL (70 members);FSS (140 members);STTL (507 members);SNL (1,059 members);SFA (2,171 members);ICSTEU (225 members);GDBA (715 members);VERDI (1,098 members);GAG (300 members);HAU (814 members);SDS (1,105 members);FIL (388 members);IE-SIPTU (701 members);IUPA (600 members);SLC-CGIL (1,336 members);JAU (1,950 members);CWU-KAZ (356 members);CWU-KYR (200 members);LKDAF (167 members);LAA (69 members);AATM (103 members);ANDA (2,293 members);SLCRM (225 members);SMPT (555 members);ORUUANO (325 members);FAAN (500 members);FNV-KIEM (2,429 members);NZAE (133 members);AGN (245 members);NANTAP (350 members);NSF (1,054 members);NODA (528 members);UNAP (172 members);SAIP (274 members);ZASP (2,360 members);ZZAP (400 members);STE (225 members);FAIR (231 members);USIS (327 members);CWU-RUS (525 members);SINGLUS (109 members);GLOSA (170 members);CONARTE (3,500 members);FCT-CCOO (150 members);TF (3,886 members);SSRS (301 members);SBKV (1,088 members);CASOD (205 members);CWU-UKR (425 members);Equity (36,100 members);SAG-AFTRA (88,700 members);AEA (5,480 members);SUA (357 members);NATAAZ (300 members);CWU-AZE (300 members);IFTAU (133 members);SHAHAM (1,950 members);VDO (1,800 members);BFFS (2,500 members)','24070646198-51','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=24070646198-51','13/07/11 17:55:45','2014-12-03T06:24:57.821449','(+32) 2345653','08/10/14 11:13:01','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(431,'other','./contribution_wzPGdwU.pdf','-','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Edistämme ja valvomme suomalaisten säveltäjien, sanoittajien ja sovittajien taloudellisia ja ammatillisia etuja, yhteiskunnallista arvostusta sekä yhteisöllisyyttä.','6 krs. Urho Kekkosen katu 2 C \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00100\r\n FINLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','toiminnanjohtaja','Säveltäjät ja Sanoittajat Elvis ry','Säveltäjäin tekijänoikeustoimisto Teosto ry:n jäsen.',NULL,NULL,NULL,'798841212699-17','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=798841212699-17','23/01/14 14:02:15','2014-12-03T06:37:47.734662','(+3589) 407991','23/01/14 14:07:02','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(432,'other','./contribution_zNERX0V.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sv',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(433,'other','./contribution_NzdMvwx.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(434,'other','./contribution_TqN8TLw.pdf','Orpaned worksCopyrightscollective rights managementonline music licensing2005 Recommendation on collective cross-border management of copyright and related rights for legitimate online music servicesCulture','global',NULL,'','Public Affairs:Lange Voorhout 86/12 2514 EJ Den Haag+31 70 3109102','01/2012\r\n - \r\n 12/2012','Bij Buma/Stemra zijn ongeveer 20.000 componisten, tekstschrijvers en auteurs aangesloten. Buma/Stemra zorgt ervoor dat wanneer hun creaties gebruikt worden zij daar een eerlijke vergoeding voor krijgen. Buma/Stemra incasseert via zusterorganisaties in het buitenland deze vergoedingen wereldwijd voor hun leden. Ook biedt Buma/Stemra het wereldrepertoire aan in Nederland en incasseert voor buitenlandse componisten, tekstschrijvers en auteurs de vergoeding voor het gebruik en draagt dit af aan zusterorganisaties.','22-28 Siriusdreef \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Hoofddorp 2132 WT\r\n NETHERLANDS','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Companies & groups','Manager Public Affairs','Buma/Stemra','GESACCISAC',NULL,NULL,NULL,'56091957679-64','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=56091957679-64','11/01/12 11:41:09','2014-12-03T07:15:11.087801','(+31) 23799 79 99','16/12/13 11:40:16','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(435,'other','./contribution_kGeHlHn.pdf','Submitting a response to the Public Consultation on the Review of the EU Copyright Rules.','European',NULL,'Budgetary constraints','','01/2013\r\n - \r\n 12/2013','The British Association of Picture Libraries and Agencies, or BAPLA, is the trade association for picture libraries in the UK and has been a trade body since 1975.Members include the major news, stock and production agencies as well as sole traders and cultural heritage institutions. A substantial percentage of images seen every day in print and digital media is supplied by BAPLA members.BAPLA’s core objectives:- Represent picture libraries and agencies of all sizes and types.- Encourage best practice within the industry.- Lobby at UK and international level to ensure the core principles of our industry are protected.- Develop and deliver solutions on 21st Century copyright.- Channel the knowledge and expertise of the wider picture community.BAPLA is steered by an elected voluntary Executive Committee of seven officers, supported by two permanent office staff, a freelance senior lobbying consultant and a number of subcommittees. Our work is funded by membership fees and in return we are dedicated to supporting our members by providing day-to-day business support and by representing our industry on a national and international level.','59 Tranquil Vale \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London SE3 0BS\r\n UNITED KINGDOM','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Secretary','British Association of Picture Libraries & Agencies','',NULL,NULL,NULL,'045004613212-61','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=045004613212-61','05/03/14 14:05:15','2014-12-03T07:36:10.736261','(+44) 2082971198','05/03/14 14:05:47','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(436,'other','./contribution_3a2a3eN.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(437,'other','./contribution_pVEPswk.pdf','Defence of literary translation and literary translators.','European','AUSTRIA;BELGIUM;BULGARIA;CZECH REPUBLIC;DENMARK;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LITUANIA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVAKIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ICELAND;SERBIA;TURKEY','','Contact e-mail addresses:General: info@ceatl.euExecutive committee: bureau@ceatl.euPresident: president@ceatl.eu','01/2012\r\n - \r\n 11/2012','CEATL is an international non-profit association (AISBL) under Belgian law, officially created in 1993 as a platform where literary translators’ associations from different European countries could exchange views and information, and join forces to improve status and working conditions of literary translators. CEATL has two sets of aims, one internal and one external. On the internal front we gather information on the situation of literary translation and translators in the member countries and share experiences and examples of best practice. On the external front we defend the legal, social and economic interests of literary translators in a European context, which includes EU lobbying and reacting publicly to trends or events impacting on our profession and on the quality of literary translation. We help individual member associations to strengthen the position of literary translators in their countries.','37 Te Boelaerlei \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Borgerhout 2140\r\n BELGIUM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','President','Conseil Européen des Associations de Traducteurs Littéraires','Culture Action EuropeCivil Platform for Multilingualism in EuropeInternational Authors Forum','0','35','IG ÜBERSETZERINNEN ÜBERSETZER, Austria (0 members);EIZIE, Basque Country (0 members);ASSOCIATION DES TRADUCTEURS LITTÉRAIRES DE BELGIQUE (ATLB), Belgium (0 members);VLAAMSE AUTEURSVERENIGING (VAV), Belgium (0 members);UDRUZENJE PREVODILACA U BOSNI I HERCEGOVINI, Bosinia and Herzegovina (0 members);BULGARIAN TRANSLATORS’ UNION (BTU), Bulgaria (0 members);ASSOCIACIÓ COLLEGIAL D’ESCRIPTORS DE CATALUNYA, Catalonia (0 members);ASSOCIACIÓ D’ESCRIPTORS EN LLENGUA CATALANA, Catalonia (0 members);DRUŠTVO HRVATSKIH KNJIŽEVNIH PREVODILACA, Croatia (0 members);OBEC PŘEKLADATELŮ, Czech Republic (0 members);DANSK OVERSAETTERFORBUND, Denmark (0 members);SUOMEN KÄÄNTÄJIEN JA TULKKIEN LIITTO, Finland (0 members);VdÜ/BUNDESSPARTE ÜBERSETZER, Germany (0 members);TRANSLATORS’ ASSOCIATION, Great Britain (0 members);HELLENIC AUTHORS’ SOCIETY, Greece (0 members);MAGYAR MŰFORDÍTÓK EGYESÜLETE (MEGY), Hungary (0 members);IRISH TRANSLATORS’ AND INTERPRETERS’ ASSOCIATION, Ireland (0 members);ASSOCIAZIONE ITALIANA TRADUTTORI E INTERPRETI (AITI), Italy (0 members);SINDACATO TRADUTTORI EDITORIALI, Italy (0 members);LIETUVOS LITERATŪROS VERTĖJŲ SĄJUNGA, Lithuania (0 members);VERENIGING VAN LETTERKUNDIGEN (VvL), The Netherlands (0 members);NORSK OVERSETTERFORENING, Normay (0 members);NORSK FAGLITTERÆR FORFATTER- OG OVERSETTERFORENING (NFF), Norway (0 members);ASSOCIACÃO PORTUGUESA DE TRADUTORES (APT), Portugal (0 members);UNIUNEA SCRIITORILOR DIN ROMÂNIA (WUR) (0 members);SLOVENSKÁ SPOLOCNOSŤ PREKLADATEL’OV UMELECKEJ LITERATÚRY, Slovakia (0 members);DRUŠTVO SLOVENSKIH KNJIŽEVNIH PREVAJALCEV, Slovenia (0 members);SECCIÓN AUTONÓMA DE TRADUCTORES DE LIBROS (ACEtt), Spain (0 members);ÖVERSÄTTARSEKTIONEN SVERIGES FÖRFATTARFÖRBUND, Sweden (0 members);AUTRICES ET AUTEURS DE SUISSE (ADS), Switzerland (0 members);ÇEVBİR, Turkey (0 members);ASSOCIATION DES TRADUCTEURS LITTÉRAIRES DE FRANCE (ATLF), France (0 members);UKPS/ALTS, Serbia (0 members);POLISH SOCIETY OF LITERARY TRANSLATORS, Poland (0 members);BANDALAG ÞÝÐENDA OG TÚLKA (0 members)','65913704675-82','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=65913704675-82','05/12/10 15:14:13','2014-12-03T06:12:39.872231','(+32) 3 287 66 97','10/11/14 10:41:35','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(438,'other','./contribution_3hRWvpV.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(439,'other','./contribution_Qurcsmi.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(440,'other','./contribution_j21AvRa.pdf','ECSA’s principal aim is to defend and promote music authors’ rights at national, European and international levels by any lawful means.In detail this means: 1. joining the efforts of European music authors organizations and/or federations in order to ensure that the voice of music creators is duly taken into account both at the European and international level; 2. protecting and defending music creators’ rights both at the European and international level; 3. reinforcing the perception of the cultural and economic value of music in Europe and the world; 4. creating and inspiring European and international politicians and regulators to encourage the creation of new music of all kind; 5. actively supporting the principle and development of copyright (“droit d’auteur”) and defending the collective management of authors’ rights;substantially contributing to the work of the European Union and UNESCO on the “Statut de l’Artiste” and the “Déclaration sur la diversité culturelle”; and 6. creating fair commercial conditions for all the music authors and composers and encouraging the adoption of “codes of conduct” in order to ensure the social and economic development of music creation in Europe.','European',NULL,'','','01/2013\r\n - \r\n 12/2013','ECSA’s principal aim is to defend and promote music authors’ rights at national, European and international levels by any lawful means.In detail this means: 1. joining the efforts of European music authors organizations and/or federations in order to ensure that the voice of music creators is duly taken into account both at the European and international level; 2. protecting and defending music creators’ rights both at the European and international level; 3. reinforcing the perception of the cultural and economic value of music in Europe and the world; 4. creating and inspiring European and international politicians and regulators to encourage the creation of new music of all kind; 5. actively supporting the principle and development of copyright (“droit d’auteur”) and defending the collective management of authors’ rights;substantially contributing to the work of the European Union and UNESCO on the “Statut de l’Artiste” and the “Déclaration sur la diversité culturelle”; and 6. creating fair commercial conditions for all the music authors and composers and encouraging the adoption of “codes of conduct” in order to ensure the social and economic development of music creation in Europe.','60C Avenue de la Toison d\'Or \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Brussels 1060\r\n BELGIUM','150000\r\n € - 200000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Secretary General','European Composer and Songwriter Alliance','',NULL,NULL,NULL,'71423433087-91','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=71423433087-91','19/01/10 11:22:03','2014-12-03T06:16:46.968890','(+32) 2544 0333','25/02/14 14:07:13','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(441,'other','./contribution_bdzlzY2.pdf','ongekend','global',NULL,'','','01/2013\r\n - \r\n 12/2013','Toneelhuis ziet zichzelf als een artistieke microsamenleving die theater van nu over nu maakt. Het beschouwt de wereld als zijn biotoop, Antwerpen als zijn uitvalsbasis, en de Bourlaschouwburg als het hart van zijn werking. Toneelhuis wil lokaal, nationaal en internationaal een merknaam van hoge artistieke kwaliteit zijn en blijven. Toneelhuis bevindt zich institutioneel in het centrum van het podiumkunstenlandschap, maar zoekt ook welbewust vernieuwing en experiment op.Toneelhuis definieert zichzelf sinds 2006 als een ‘ensemble van makers’. Vanaf 2013 wordt Toneelhuis ‘een ensemble van makers en spelers’. De onderlinge artistieke verschillen tussen de makers en de aanwezigheid van verschillende artistieke disciplines blijven de creatieve motor van het huis. In een zeer persoonlijke, eigentijdse theatertaal gaan de Toneelhuismakers op zoek naar enthousiasmerende, kritische en alternatieve manieren om met de werkelijkheid om te gaan. Een veelheid van antwoorden op de complexe werkelijkheid van vandaag. Nieuw is dat, met ingang van de beleidsperiode 2013-2016, een vaste acteurskern de makersploeg vervoegt. Deze acteurskern staat garant voor de continuïteit en de herkenbaarheid voor het publiek over de verschillen heen.De focus van Toneelhuis ligt op een inventieve en relevante bespeling van de grote zaal, de Bourla. Dat vertaalt zich in een zich steeds vernieuwende aanpak bij die Toneelhuismakers die de grote zaal al sinds jaren bespelen, en in een goed begeleide doorgroei naar de grote zaal (en het daarbij horende métier) voor die makers die daar iets minder vertrouwd mee zijn. Tenslotte biedt het locatiewerk en het meer kleinschalige werk van een aantal Toneelhuismakers een artistiek tegengewicht aan en een permanente bevraging van deze grote-zaalpraktijk. Met deze artistieke diversiteit wil Toneelhuis de hand reiken aan een breed en gediversifieerd publiek.','7 Orgelstraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Antwerpen 2000\r\n BELGIUM','','II - In-house lobbyists and trade/professional associations','Companies & groups','Zakelijk directeur','Toneelhuis','',NULL,NULL,NULL,'249088913053-29','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=249088913053-29','25/02/14 12:32:55','2014-12-03T06:30:08.936636','(+03) 2248828','25/02/14 12:33:08','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(442,'other','./contribution_wojD0vM.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(443,'other','./contribution_BJnyDjF.pdf','Activité liée au droit d\'auteur, copie privée, TVA, prix du livre','national',NULL,'','','01/2013\r\n - \r\n 12/2013','La Société a pour objet :1 - l’exercice et l’administration, dans tous pays :de tous les droits reconnus aux auteurs par le Code de la Propriété Intellectuelle et par toute disposition nationale, communautaire ou internationale, et plus particulièrement dans l\'environnement numérique, relativement aux attributs patrimoniaux correspondant à la reproduction, la représentation et la communication au public, la traduction et l’adaptation, sous quelque forme que ce soit, des œuvres de ses associés, Auteurs, Editeurs, qui en auront fait l\'apport dans le cadre défini par l\'article 3.5 ci-dessus, de même que, spécifiquement, des droits de prêt public, de copie privée numérique et de location des œuvres, des droits patrimoniaux de propriété intellectuelle ou de leur administration dont ses associés, Auteurs, personnes physiques, Editeurs ou Société civile d\'Editeurs, personnes morales, auront fait l\'apport en gérance dans le cadre défini à l\'article 3.4 ci-dessus, et notamment la perception et la répartition des redevances provenant de l’exercice desdits droits et plus généralement de toutes sommes de toute nature, dues au titre de l’utilisation licite ou illicite des œuvres et/ou de tout droit à rémunération.2 - la conclusion de contrats ou conventions de représentation avec des organismes français et étrangers ayant le même objet et poursuivant les mêmes buts que ceux définis aux présents statuts, et l’exercice et l’administration des droits ainsi confiés par ces organismes ;3 - une action culturelle par la mise en œuvre de tous moyens propres à assurer la promotion et la valorisation des œuvres de ses associés au plan national ou international ;4 - une action de prévoyance, de solidarité et d’entraide au profit de ses associés ou, pour les auteurs, de leur famille ;5 - la mise en commun d’une partie des droits perçus ;6 - l’exercice et l’administration de tous droits tels que visés à l’alinéa 1 ci-dessus dans le cadre de l’article L 122 - 9 du Code de la Propriété Intellectuelle ;7 - et d’une façon plus générale, la défense des intérêts matériels et moraux de ses associés ou de leurs ayants droits en vue et dans la limite de l’objet social, ainsi que la détermination de règles d’éthique professionnelle en rapport avec l’activité de ses membres.A cet effet, elle prend toute initiative, notamment d’études, de démarches et d’actions juridiques et judiciaires propres à satisfaire la réalisation de son objet, tant en France que dans l’Union Européenne et dans le monde.Elle réalise son objet par elle même et, le cas échéant, par tout délégataire de son choix sur décision du Conseil d’Administration.','199 bis Boulevard Saint Germain \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 75345 Cedex\r\n \r\n \r\n \r\n \r\n Paris 75007\r\n FRANCE','10,000 €','II - In-house lobbyists and trade/professional associations','Companies & groups','Directeur','Société Française des Intérêts des Auteurs de l\'écrit','',NULL,NULL,NULL,'818622412844-86','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=818622412844-86','04/02/14 17:23:19','2014-12-03T06:46:50.384120','(+33) 144070648','04/02/14 17:27:26','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(444,'other','./contribution_xgVVZca.pdf','* Woordvoering tijdens hoorzittingen van het Europees Parlement* Individuele gesprekken met leden van het Europees Parlement* Individuele gesprekken met leden van nationale parlementen* Gesprekken met ambtenaren van de Europese Commissie* Publiceren van standpuntennota\'s* Publiceren van artikelen over de positie van uitvoerend kunstenaars','global',NULL,'','Kobalt Neighbouring Rights Ltd is member of the Kobalt Music Group, the leading independent music publisher and music services company offering unparalleled transparency, online global copyright administration, creative and synch/licensing services, digital collections, label services, neighbouring rights management and pipeline advances to artists, writers, publishers, labels and other rights holders. Kobalt directly collects from 37 territories worldwide, administering more than 250,000 copyrights worldwide on behalf of over 1,200 content holders including the world\'s top songwriters, artists and other music publishers.','01/2013\r\n - \r\n 12/2013','Bevorderen van wet- en regelgeving die de auteursrechtelijke en nabuurrechtelijke positie van uitvoerende kunstenaars versterkt met als doel een efficiënt en effectief stelsel van vergoedingen voor de maker(s) van auteursrechtelijk beschermde werken voor de secundaire exploitatie van die werken.','4 Valantine Place \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London SE1 8QH\r\n UNITED KINGDOM','','II - In-house lobbyists and trade/professional associations','Companies & groups','CEO','Kobalt Neighbouring Rights Ltd','',NULL,NULL,NULL,'678058812546-06','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=678058812546-06','07/01/14 14:08:00','2014-12-03T07:40:21.640214','(+44) 207 401 5500','07/01/14 14:13:13','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(445,'other','./contribution_ojjXcon.pdf','Public consultation on Copyright','national;European',NULL,'Het Platform Makers wordt financieel mede ondersteund door:PictorightBumaLiraSenaNormaVevam','','01/2013\r\n - \r\n 12/2013','Het Platform Makers is het samenwerkingsverband van de Nederlandse beroepsorganisaties en vakbonden van auteurs en uitvoerend kunstenaars. Het platform heeft als doel het versterken van het auteurs en het naburig recht en het verbeteren van de onderhandelingspositie van makers ten opzichte van producenten en opdrachtgevers. Het Platform Makers treedt op als woordvoerder en aanspreekpunt namens de aangesloten belangenorganisaties.','22 p/a Joh. Vermeerstraat \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 75997\r\n \r\n \r\n \r\n \r\n Amsterdam 1070 AZ\r\n NETHERLANDS','1,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','voorzitter','Platform Makers','* Federatie van Auteursrechtbelangen - organisatie voor auteursrecht en naburige rechten is het samenwerkingsverband van Platform Makers, het Platform Creatieve Media Industrie en VOI@CE. De Federatie heeft als doelstellingen vergroten en versterken van het draagvlak voor auteursrecht en de bescherming en verbetering van de positie van de rechthebbenden.* International Authors Forum (IAF) - overkoepelende organisatie van nationale verenigingen vergelijkbaar met Platform Makers. Het IAF, opgericht in 2009, streeft naar stroomlijning in de veelheid aan verschillen en overeenkomsten van de aangesloten organisaties. Doel is te komen tot internationale wetgeving die zijn weg naar de nationale organisaties kan vinden.',NULL,NULL,NULL,'544402613100-56','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=544402613100-56','01/03/14 00:14:35','2014-12-03T07:17:37.476688','(+020) 6766771','04/03/14 15:43:31','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(446,'other','./contribution_9kVSgC4.pdf','Convention OMPI sur les Interprétations et Exécutions AudiovisuellesCopie PrivéeExtension durée de protection des droits des artistes interprètes de l\'audiovisuelDialogue Social - Spectacle VivantDialogue Social - AudiovisuelDirective Gestion CollectiveLicences pour l\'EuropeTTIPConsultation de la Commission sur la révision de l\'acquis communautaire en matière de propriété intellectuelleSanté et sécurité','European;global','AUSTRIA;BELGIUM;BULGARIA;CROATIA;CYPRUS;CZECH REPUBLIC;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;GREECE;HUNGARY;IRELAND;ITALY;LATVIA;NETHERLANDS;POLAND;PORTUGAL;ROMANIA;SLOVENIA;SPAIN;SWEDEN;UNITED KINGDOM;ARGENTINA;AUSTRALIA;AZERBAIJAN;BELARUS;BRAZIL;BURKINA FASO;CAMEROON;CANADA;CHILE;COLOMBIA;COTE D\'IVOIRE;CUBA;ECUADOR;GEORGIA;GHANA;ICELAND;ISRAEL;JAPAN;KAZAKHSTAN;KYRGYZSTAN;MADAGASCAR;MEXICO;MOROCCO;NAMIBIA;NEPAL;NEW ZEALAND;NIGERIA;NORWAY;PANAMA;PERU;RUSSIA, FEDERATION OF;SERBIA;SWITZERLAND;UKRAINE;UNITED STATES;URUGUAY;ZAMBIA','','','01/2013\r\n - \r\n 12/2013','Set up in 1952, the International federation of Actors (FIA) represents performers\' trade unions, guilds and professional associations around the world. With a membership of approximately 100 affiliates in 73 countries, it mainly voices the professional interests of audiovisual performers, including actors, singers, dancers, variety artists, broadcast professionals and circus artists.FIA works globally and regionally on any subject matter that may impact on the terms and conditions of the professionals it represents. Its world Congress meets once every four years and its Executive Committee on a yearly basis. FIA also includes several regional and linguistic groups, whose members meet regularly to discuss issues of common interest and also to enlighten the global policy of the federation.The objects of the Federation are the protection and promotion, on a strictly professional basis, of the artistic, economic, social and legal interests of actors, singers, dancers, variety and circus artists, choreographers, directors, broadcast professionals, etc., organised in national affiliated unions.FIA’s main objectives and goals are:a. Promoting the trade union representation of performers;b. Promoting the intellectual property rights of performers; c. Promoting agreements between affiliated members, e.g. re: the mobility of performers; the transfer of membership from one union to the other; the protection of the professional interests of performers as they work or seek employment abroad;d. Safeguarding and campaigning for the development of live performance;e. Promoting the professional employment of performers working in all media as well as in live performance;f. Compiling surveys of value to its members;g. Providing expertise and advice – including legal - on national matters when requested by its members;h. Advocacing and lobbying to enhance the moral, intellectual property, contractual and social rights of performers at international level and, where relevant, at national level;i. Conveying and coordinating international solidarity to member unions involved in industrial disputes;j. Collaborating with the ILO, UNESCO, WIPO, the Council of Europe, all main institutions of the European Union and with other international organisations on all matters of relevance to its members;k. Organising international congresses, regular conferences and meetings for its members to exchange information and experience;l. Negotiating agreements with other international organisations on behalf of its members;m. Supporting its members in their efforts to maintain the principles established by the Federation, where assistance is required beyond their individual capacity.','40 Rue Joseph II \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 4\r\n \r\n \r\n \r\n \r\n Brussels 1000\r\n BELGIUM','150000\r\n € - 200000\r\n €','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Deputy General Secretary','International Federation of Actors','As an NGO, FIA enjoys permanent consultative and participatory status with the World Intellectual Property organisation (WIPO); the International Labour Organisation (ILO); UNESCO and the Council of Europe, where it is entitled to advocate the professional interests of the performers it represents. At EU level, FIA is recognised by the Council of Ministers, the Commission and the Parliament, among other institutions, and is regularly consulted on any subject matter pertaining to its field of jurisdiction.FIA is a member of the International Arts and Entertainment Alliance (IAEA), together with the International Federation of Musicians (FIM) and the International federation of Media and Entertainment Workers (UNI-MEI). The IAEA is itself a member of the Council of Global Unions (CGU) and is recognised by the ITUC as a Global Union Federation.','0','88','AAA (2,565 members);MEAA (6,210 members);GdG-KMSfB (1,000 members);BSAG (109 members);ACOD-Cultuur (298 members);CSC-Transcom (300 members);CGSP (597 members);SATED/ES (86 members);SATED/SP (450 members);SATED/RJ (1,885 members);SATED/CE (80 members);SATED/MG (250 members);UBA (139 members);SYNACOB (100 members);SCAS (300 members);ACTRA (8,634 members);CAEA (3,359 members);UDA (4,034 members);SIDARTE (420 members);CICA (46 members);SIAC (100 members);HDDU (840 members);UNEAC (497 members);AUC (109 members);HA (503 members);DAF (1,313 members);DSF (2,076 members);FENARPE (502 members);ENL (366 members);EKTL (70 members);FSS (140 members);STTL (507 members);SNL (1,059 members);SFA (2,171 members);ICSTEU (225 members);GDBA (715 members);VERDI (1,098 members);GAG (300 members);HAU (814 members);SDS (1,105 members);FIL (388 members);IE-SIPTU (701 members);IUPA (600 members);SLC-CGIL (1,336 members);JAU (1,950 members);CWU-KAZ (356 members);CWU-KYR (200 members);LKDAF (167 members);LAA (69 members);AATM (103 members);ANDA (2,293 members);SLCRM (225 members);SMPT (555 members);ORUUANO (325 members);FAAN (500 members);FNV-KIEM (2,429 members);NZAE (133 members);AGN (245 members);NANTAP (350 members);NSF (1,054 members);NODA (528 members);UNAP (172 members);SAIP (274 members);ZASP (2,360 members);ZZAP (400 members);STE (225 members);FAIR (231 members);USIS (327 members);CWU-RUS (525 members);SINGLUS (109 members);GLOSA (170 members);CONARTE (3,500 members);FCT-CCOO (150 members);TF (3,886 members);SSRS (301 members);SBKV (1,088 members);CASOD (205 members);CWU-UKR (425 members);Equity (36,100 members);SAG-AFTRA (88,700 members);AEA (5,480 members);SUA (357 members);NATAAZ (300 members);CWU-AZE (300 members);IFTAU (133 members);SHAHAM (1,950 members);VDO (1,800 members);BFFS (2,500 members)','24070646198-51','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=24070646198-51','13/07/11 17:55:45','2014-12-03T06:24:57.821449','(+32) 2345653','08/10/14 11:13:01','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(447,'other','./contribution_QApc0mY.pdf','Public consultation on Copyright','sub-national;national;European',NULL,'Ntb ontvangt subsidie (op basis van het aantal relevante leden) van Sena sectie Uitvoerend Kunstenaars','','01/2013\r\n - \r\n 12/2013','De Ntb is de vakbond voor musici, dansers en acteurs. \"De Ntb heeft ten doel -door middel van het behartigen van de belangen van haar leden- welzijn en bestaanszekerheid te bereiken voor zijn leden, alles in de meest uitgebreide zin van het woord.\"(Art 3 lid 1 statuten)','317 Keizersgracht \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Amsterdam 1016 EE\r\n NETHERLANDS','','II - In-house lobbyists and trade/professional associations','Trade unions','secretaris','Nederlandse Toonkunstenaarsbond','Platform Makers -het samenwerkingsverband van de Nederlandse vakbonden en beroepsorganisaties van auteurs en uitvoerend kunstenaars. Het platform heeft als doel het versterken van het auteurs- en naburig recht en het verbeteren van de onderhandelingspositie van makers ten opzichte van producenten en opdrachtgevers. Het Platform Makers treedt op als woordvoerder en aanspreekpunt namens de aangesloten belangenorganisaties.Kunsten \'92 -Nederlandse bovensectorale belangenorganisatie voor de hele kunst-, cultuur- en erfgoedsector, met 390 leden uit alle disciplines. Doel is om met een gezamenlijke stem het maatschappelijke en politieke klimaat voor kunst en cultuur in Nederland te verstevigen.',NULL,NULL,NULL,'537530113133-87','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=537530113133-87','03/03/14 23:40:14','2014-12-03T07:17:13.086918','(+31) 0206203131','03/03/14 23:46:13','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(448,'other','./contribution_0mkhieZ.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(449,'other','./contribution_zNKKMki.pdf','NONE','national','ROMANIA;MOLDOVA, REPUBLIC OF','','','01/2013\r\n - \r\n 12/2013','Between 1949 and 1989 UNIUNEA SCRIITORILOR DIN ROMANIA - herein USR - functioned as a “professional and public creators’ organization”, legally subordinated to and financially dependent from the state. Nevertheless, USR managed to maintain its autonomy regarding its organization and activities, which gave it a status of a troublesome organization in the opinion of the communist officials. Among its members were both writers who followed the official political and ideological line, but also writers who asserted their independent thinking and original writing. Between the two groups there arose tensions and even open conflicts, but never did the “loyalists” succeed in imposing their absolute dominance. The Board was elected by ballot and maintained a certain independence as towards the communist party and state. Within USR the Literary Fund was set up in 1969, as a financial body meant to administrate the authors’ copyrights and to financially support the writers. Its activity stopped in 1990 when other institutions dealing with copyright matters were set up independently from USR.Since December 1989, USR has become a non-governmental, non-profit, apolitical and self-financing creators’ association. USR represents the interests of the writers of Romania in their relations with the authorities, with other creators’ organizations, with legal and natural persons in the country and abroad. USR is an apolitical, non-profit, professional creators’ association of public utility. Its basic purpose is to support and defend literature and the writers’ professional, economic, social and moral interests.Aiming at being an active factor in the internal and international cultural dialogue, USR promotes as fundamental principles of its existence and activity the freedom of creation and opinion, the pre-eminence of value, the professional solidarity, efficiency and transparency. USR subscribes to the Fundamental Human Rights Charter, forbidding in its activity and condemning the promoting of and adhesion to any activity that endanger human dignity, freedom, democracy and the state of law.Before 1989, USR organized general conferences to discuss its problems and to admit new members. The last conference was held in 1981, thereafter the communist officials forbidding the writers to come together again, a clear proof of the fact that W.U.R. and its conferences were perceived as a menace to the official ideology.After 1989, USR has organized several general conferences, the main scope being to elect its Board, but also to discuss matters concerning the writers’ and literature’s new status, conditions and opportunities. The periodicity of the general conferences is every 4 years. In case of necessity, the general conferences can be organized sooner.USR has several branches and local offices, without legal personality. The branches have administrative autonomy and bank accounts. The branches can function both in the country and abroad.','133-135 Calea Victoriei \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n București 010071\r\n ROMANIA','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','consultant','UNIUNEA SCRIITORILOR DIN ROMÂNIA','USR is a member of CEATL and of EWC','2,500','','','889457113103-52','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=889457113103-52','20/03/14 22:48:49','2014-12-03T07:24:18.769438','(+40) 213165829','03/04/14 12:31:19','ro',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(450,'other','./contribution_U0m8Ka7.pdf','Kollektiivihallinnon direktiivi','sub-national;national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Teoston missio: Ammattimaisten musiikintekijöidemme menestykseksi. Teoston visio: Monimuotoinen musiikkimme tavoittaa, tuottaa ja kukoistaa.','2 C Urho Kekkosen katu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n HELSINKI 00100\r\n FINLAND','','II - In-house lobbyists and trade/professional associations','Companies & groups','Edunvalvonta','Finnish Composers\' Copyright Society Teosto','GESAC, CISAC',NULL,NULL,NULL,'162360211825-62','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=162360211825-62','09/09/13 15:08:31','2014-12-03T06:37:12.772990','(+358) 9 681 011','29/08/14 13:13:54','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(451,'other','./contribution_IgzPCT0.pdf','Nessuna','national',NULL,'0','','01/2012\r\n - \r\n 12/2012','SLC CGIL organizza i lavoratori dei settori della comunicazione: telecomunicazioni, servizi postali, industria grafico-editoriale e cartaria, spettacolo dal vivo, emittenza radiotelevisiva, industria cinematografica,sport.Svolge l\'attività della contrattazione collettiva in tali settori, a livello nazionale e decentrato. Aggrega direttamente o tramite accordi con associazioni professionali autori e artisti interpreti-esecutori, per una più efficace tutela dei loro interessi.Agisce anche nei confornti delle istituzioni nazionali al fine di migliorare le tutele sociali dei lavoratori che rappresenta.L\'azione sindacale di SLC CGIL si ispira ai valori della solidarietà e della giustizia sociale, della libertà e del pluralismo dell\'informazione, dell\'uguaglianza di opprtunità fra donne e uomini.','24 Piazza Sallustio \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Roma 00187\r\n ITALY','0 €','II - In-house lobbyists and trade/professional associations','Trade unions','Responsabile rapporti internazionali','Sindacato Lavoratori della Comunicazione','SLC CGIL fa parte, come sindacato di categoria, della Confederazione Generale Italiana del Lavoro (CGIL).E\' affiliato a UNI Europa.Ha un protocollo di intesa con STRADE (Sindacato dei Traduttori Editoriali)che prevede consultazione reciproca e iniziative comuni.E\' affiliato con il Sindacato Nazionale Giornalai Italiani.',NULL,NULL,NULL,'918531713195-55','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=918531713195-55','05/03/14 12:02:06','2014-12-03T07:11:07.346443','(+39) 0642048201','05/03/14 12:03:36','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Trade union','Business'),(452,'other','./contribution_GlOskl2.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(453,'other','./contribution_mXyH3Pf.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(454,'other','./contribution_8hHWqsW.pdf','Distribution of films via Cinema, Television, DVD/BD and online VoD platforms.','national;European',NULL,'','mobile: +447773427129','01/2013\r\n - \r\n 12/2013','To distribute the best European Film and World Cinema titles to the UK and Republic of Ireland.','55 Farringdon Road \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London EC1M 3JB\r\n UNITED KINGDOM','1,200 €','II - In-house lobbyists and trade/professional associations','Companies & groups','Managing Director','Peccadillo Pictures Ltd','Europa Distribution',NULL,NULL,NULL,'669553113094-36','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=669553113094-36','28/02/14 17:02:27','2014-12-03T07:41:26.562075','(+44) 2074192710','28/02/14 17:02:52','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(455,'other','./contribution_0FdLH4P.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(456,'other','./contribution_O0aL6oe.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(457,'other','./contribution_2xGT6fN.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(458,'other','./contribution_nqZfzSt.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(459,'other','./contribution_LHCjsCD.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(460,'other','./contribution_dKY3htL.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(461,'other','./contribution_wp9DA5v.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(462,'other','./contribution_wTT0wOr.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(463,'other','./contribution_2HJdBxE.pdf','From 05.12.2013 to 05.03.2014 Public Consultation on the review of the EU copyright rules','European;global',NULL,'','Address for postal correspondence:100 Doggett Rd. SE6 4QA London, United Kingdomattn. Miroslav Gechevemail: miro@my2am.com','01/2013\r\n - \r\n 12/2013','2AM is an award-winning record label and music publisher established 2005 in Sofia, Bulgaria; We think good music should be created from inspired musicians and not from rich corporations this is why as an indie label and music publisher we are proud that we are assisting our creators to achive their proven track of chart success. We are also supporting them to create line up of hit records favourited from audiences across the globe.We are specialised in music production, copyright management, licensing and publishing administration.We have built an excellent network of licensing partners giving our creators better exposure and providing them with an optimised stream of royalties revenue.We provide wide range of services:- Repertoires for film, advertising, TV and radio; Licensing;- Label services: copyright and related rights assistance for performers and writers;- Production: song writing, audio and video production; - TV and Radio jingles and packaging;- Distribution and promotion; strategic campaigns;- Live events;- In-store music curation;','bl 46 Droujba - 1, bl 46, entr. V, 5th floor, 67 app \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Sofia 1592\r\n BULGARIA','','II - In-house lobbyists and trade/professional associations','Companies & groups','Managing Director, Producer','2AM','2AM is member of collective societies:Musicautor (Bulgaria)STIM (Sweden)Prophon (Bulgaria)PPL (United Kingdom)ADAMI (France)SoundExchange (USA)',NULL,NULL,NULL,'498420612490-84','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=498420612490-84','22/12/13 13:49:52','2014-12-03T06:31:59.478189','(+44778) 5350855','02/09/14 17:49:20','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Company','Business'),(464,'other','./contribution_QOVe2hS.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'448896513169-09',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(465,'other','./contribution_MxNUzuj.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(466,'other','./contribution_eZjyhn9.pdf','Aucune','national','BELGIUM','','','01/2013\r\n - \r\n 12/2013','L\'association a pour but : - la promotion des auteurs ainsi que la promotion et la diffusion de leurs œuvres ;- la défense des droits moraux et matériels et des intérêts des auteurs. Elle peut réaliser son but par tout moyen et sous toutes formes, notamment : - organiser des manifestations de nature à développer ou promouvoir son but social, tels que notamment les moyens de diffusion électronique et analogique, organiser des conférences et colloques ; - éditer et produire par tout moyen des oeuvres de tous genres et sous toutes formes ;- développer des méthodes d’indexation d’œuvres et d’archives, numériser ces œuvres et archives et faciliter leur accès par tout moyen ;- fournir aux autorités officielles compétentes des informations ou des avis concernant tous problèmes d\'ordre législatif ou pratique, relatifs à la création, au patrimoine artistique et aux droits d\'auteur ;- aider les auteurs par l\'organisation d\'un service de dépôt d\'oeuvres manuscrites, audiovisuelles et multimédia ;- aider les sociétés de gestion collective et leurs membres ;- conclure des conventions d\'association, de représentation, de mandat ou autres avec toutes autres associations ou, de façon générale, toutes personnes publiques ou privées, physiques ou morale et, de façon générale, elle peut accomplir tous actes qui favorisent directement ou indirectement son objet social ou l\'intérêt de ses membres ;- notamment prêter son concours et s\'intéresser à toute activité similaire à son objet ;- apporter aide, notamment financière, et conseil juridique en toute matière concernant directement ou indirectement son objet social.Elle favorise les rapports entre les auteurs entre eux et de ceux-ci avec les autres catégories professionnelles, notamment par un dialogue régulier avec les autres Associations professionnelles existantes.','87 Rue du Prince Royal \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bruxelles 1050\r\n BELGIUM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','President','La Maison des Auteurs','','5','','','111683113219-24','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=111683113219-24','05/03/14 16:14:17','2014-12-03T06:25:58.361035','(+322) 5510320','05/03/14 16:14:39','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(467,'other','./contribution_SWlrkDS.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'es',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(468,'other','./contribution_eLL1nQy.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(469,'other','./contribution_7OdfUKj.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'886003813107-64',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(470,'other','./contribution_1xnv62Q.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'198570213145-37',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(471,'other','./contribution_epIQgTP.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(472,'other','./contribution_0KV6X8t.pdf','Participation aux réflexions législatives sur la transposition en droit français des directives européennes (oeuvres orphelines, réouverture de la directive 2001/29, MoU sur les oeuvres indisponibles...) ainsi que sur les grandes problématiques à l\'étude au niveau européen (oeuvres transformatives, prêt numérique, exceptions au droit d\'auteur, data mining...). Réponse aux enquêtes et questionnaires issus de l\'Union européenne (étude comparative sur les lois et pratiques concernant les accords contractuels applicables aux créateurs en Europe, colloque Avenir du livre à Berlin en septembre 2013...)','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','La SGDL est la principale association d\'auteurs de l\'écrit en France, en particulier dans le secteur du livre. Elle est chargée de défendre les intérêts des auteurs par un soutien à ses membres ou par la réflexion juridique sur les dispositions législatives, au niveau français ou européen, concernant le droit d\'auteur. Elle est l\'interlocuteur privilégié des pouvoirs publics et des organisations professionnelles du secteur du livre. Elle a également une action sociale (soutien aux auteurs en difficulté) et culturelle (remise de prix littéraires, organisation de forums et manifestations). Elle a dans ses statuts les missions suivantes : étudier toutes mesures garantissant les droits moraux et patrimoniaux des auteurs; intervenir auprès de tous organismes culturels publics ou privés; stimuler la création et la publication des oeuvres de l\'esprit..etc.','38 Rue du Faubourg Saint Jacques \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75014\r\n FRANCE','50000\r\n € - 100000\r\n €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Président','Société des Gens de Lettres','Au niveau européen, la SGDL fait partie de l\'Europeen Writers Council (EWC). Au niveau mondial, de la CISAC. La SGDL est en outre membre des principales structures concernant le statut de l\'auteur et le droit d\'auteur, au niveau national : Conseil supérieur de la propriété littéraire et artistique (CSPLA), Centre national du livre (CNL), AGESSA; MOTif...etc.',NULL,NULL,NULL,'984280912695-87','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=984280912695-87','23/01/14 09:52:49','2014-12-03T06:46:48.297784','(+33) 53101200','23/01/14 09:53:31','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(473,'other','./contribution_KQIOv5A.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(474,'other','./contribution_6qu6fib.pdf','X','sub-national;national;European',NULL,'X','','12/2012\r\n - \r\n 12/2013','Bevaka författares och översättares arbetssituation, värna yttrandefriheten, m.m.','88b Drottninggatan \r\n \r\n \r\n \r\n \r\n \r\n P.O. box: 3157\r\n \r\n \r\n \r\n \r\n Stockholm 10363\r\n SWEDEN','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Förbundsjurist','Sveriges Författarförbund','European Writers\' Council',NULL,NULL,NULL,'735344513021-89','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=735344513021-89','20/02/14 13:57:43','2014-12-03T07:32:27.544775','(+46) 854513200','20/02/14 13:58:05','sv',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(475,'other','./contribution_1HTPvbU.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(476,'other','./contribution_FEyGmCY.pdf','discussion of the effects of INDECT (FP7 programme)lobbying around CleanIT (FP7 programme)data retention directivedata protectionmobile roamingnet neutrality','national;European;global','LUXEMBOURG','','','01/2013\r\n - \r\n 12/2013','The Pirate Party is a democratic political party built on grassroots support and the work of volunteers.We stand for Digital Rights, Civil Liberties and a politics fit for the 21st Century. We want a world where all can be part of our shared culture and economy.We are a party with no parallel in global politics, wholly transparent to the public, accountable to our members and not dependent on external groups for our funding or direction.','1 Sonnestrooss \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Dalheim 5683\r\n LUXEMBOURG','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','President','Piratepartei Lëtzebuerg','Pirate Parties InternationalPP-EUAll the european Pirate Parties and their youth wings, incl. the youth wing of Pirate Party Luxembourg','315','','','310619510376-60','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=310619510376-60','20/12/12 10:54:13','2014-12-03T07:13:33.385544','(+352) 621632118','10/12/13 17:31:18','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(477,'other','./contribution_Fsw5JxS.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(478,'other','./contribution_J8pBGY2.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(479,'other','./contribution_XMYV0y8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(480,'other','./contribution_Ca2FGvb.pdf','-','sub-national;national;European;global',NULL,'','','01/2013\r\n - \r\n 12/2013','Suomen Kirjailijaliitto on vuonna 1897 perustettu suomenkielisten kaunokirjailijoiden ammatillinen ja aatteellinen järjestö. Kirjailijaliiton tehtävänä on valvoa ja kehittää kirjailijoiden taiteellisia, ammatillisia ja taloudellisia etuja ja edistää suomalaista kirjallisuutta. Kirjailijaliitto puolustaa sanan- ja julkaisemisen vapautta sekä muita kirjailijantyön perustana olevia oikeuksia.Suomen Kirjailijaliitolla on noin 670 jäsentä.','32 C 28 Runeberginkatu \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Helsinki 00100\r\n FINLAND','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','toiminnanjohtaja','Suomen Kirjailijaliitto ry.','- Kopiosto ry.- Sanasto ry.- International Confederation of Societies of Authors and Composers (CISAC)- International Federation of Reproduction Rights Organisations (IFRRO)- Forum Artis ry.- Tekijäfoorum- European Writers’ Councilin (EWC)- Pohjoismainen kirjailija- ja kääntäjäneuvosto - Baltic Writers Council- Fenno-Ugrian Writers’ Council',NULL,NULL,NULL,'728016713216-04','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=728016713216-04','05/03/14 15:33:04','2014-12-03T06:37:52.318195','(+358) 9 554 392','05/03/14 15:33:19','fi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(481,'other','./contribution_M9MN9eP.pdf','L\'anno scorso abbiamo partecipato ad attività con influenza a livello UE tramite il CEATL (organizzazione di cui siamo membri). Effettuiamo l\'iscrizione al registro per poter partecipare alla consultazione sulla revisione del diritto d\'autore nel\'era digitale promossa dalla Commissione Europea.','national',NULL,'Siamo totalmente autofinanziati dagli iscritti e non abbiamo ricevuto alcun finanziamento da alcuna istituzione dell\'UE nel 2013.','Contatto e-mail: segreteria@traduttoristrade.it','01/2013\r\n - \r\n 12/2013','STRADE è un’associazione senza fini di lucro che riunisce i traduttori editoriali di ogni tipo e in generale tutti i traduttori operanti in regime di diritto d’autore.STRADE persegue i seguenti obiettivi:– tutelare gli interessi morali, giuridici ed economici dei traduttori editoriali, in particolare promuovendo la piena attuazione dei diritti d’autore dei traduttori sanciti dalla normativa italiana, europea e internazionale e il loro riconoscimento da parte delle istituzioni, dei committenti, della critica e del pubblico, nella consapevolezza che la valorizzazione del ruolo del traduttore è un prerequisito per la crescita culturale della società;– promuovere il raggiungimento di dignitose condizioni di lavoro per i traduttori, che rendano possibili le migliori prestazioni, anche tramite l’elaborazione di contratti tipo;– ottenere modifiche migliorative della Legge sul diritto d’autore ;– lottare per il riconoscimento del diritto alle tutele sociali per i traduttori editoriali;– promuovere, in collaborazione con tutti gli operatori del settore, la qualità delle traduzioni editoriali pubblicate in italiano e la loro pluralità in termini di genere, lingua e paese di provenienza dell’opera originale;– incentivare l’aggiornamento professionale dei traduttori e la collaborazione con gli istituti di formazione dei traduttori;– partecipare ad associazioni internazionali che perseguano gli stessi scopi, nonché appoggiare la formazione e l’operato di sindacati e associazioni stranieri che tutelino gli interessi dei traduttori.','100 Pietro Adami \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Roma 00168\r\n ITALY','0 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','responsabile rapporti internazionali e rappresentante presso il CEATL','Sindacato dei traduttori editoriali','STRADE è membro del CEATL, il Connsiglio europeo delle associazioni dei traduttori letterari: http://www.ceatl.euAbbiamo inoltre un protocollo d\'intesa con il sindacato SLC (sindacato lavoratori della comunicazione)-CGIL in quanto abbiamo problematiche in comune con altre categorie di autori operanti nel vasto settore della comunicazione.',NULL,NULL,NULL,'123389713163-71','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=123389713163-71','04/03/14 15:08:51','2014-12-03T07:11:06.497912','(+39) 0699700616','05/03/14 09:08:21','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(482,'other','./contribution_jUyxRYM.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(483,'other','./contribution_f0dCTRs.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'530301413201-47',NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL),(484,'other','./contribution_bbllAY8.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(485,'other','./contribution_qaP1EoT.pdf','On-line distributie van audiovisuele productiesEuropese regelgeving of beleid over audiovisuele producties en media','national;European',NULL,'','','01/2013\r\n - \r\n 01/2014','Behartigen belangen van Nederlandse filmmakers','125 De Lairessestraat \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Amsterdam 1075 HH\r\n NETHERLANDS','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','projectmanager','Portal Audiovisuele Makers','',NULL,NULL,NULL,'677137112984-67','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=677137112984-67','17/02/14 16:30:38','2014-12-03T07:17:38.156384','(+31) 206234296','17/02/14 16:31:09','nl',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(486,'other','./contribution_DI04x5j.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(487,'other','./contribution_kGLUASq.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(488,'other','./contribution_lG9JYe6.pdf','Konsultationen zur Mobilität von LiteraturübersetzernUrheberrechtliche Fragestellungen','national;European;global',NULL,'Wir üben unsere Arbeit vollständig ehrenamtlich aus. 1000 € beträgt unser Beitrag zum CEATL, ca. 1000 € kommen als Reise- und Aufenthaltskosten unseres Delegierten zum CEATL hinzu.Im Jahr 2014 veranstaltet der VdÜ außerdem zum zweiten Mal nach 1999 die jährliche Generalversammlung des CEATL in Berlin. Die Kosten dafür betragen ca. 8.000 bis 9.000 Euro.','Berufsverband der Literaturübersetzer','01/2013\r\n - \r\n 12/2013','Der VdÜ berät seine Mitglieder, die professionelle Literaturübersetzende in Teil oder Vollzeit sind, vertritt sie nach außen und strebt in Verhandlungen mit anderen Branchenakteuren nach dem Abschluss von Vergütungsregeln. Er bemüht sich um Sichtbarkeit und Wertschätzung der Literaturübersetzenden, organisiert Auftritte auf Fachmessen, veranstaltet Tagungen und Fortbildungsmaßnahmen. Er vertritt die Belange der Literaturübersetzenden gegenüber der Öffentlichkeit, Branchenvertretern und der Politik.','25 Niedstrasse \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 12159\r\n GERMANY','2,000 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Delegierter zum CEATL','Verband deutschsprachiger Übersetzer literarischer und wissenschaftlicher Werke e.V./Bundessparte Übersetzer im VS in ver.di','Als Bundessparte Übersetzer sind wir Teil des Schriftstellerverbandes und mit ihm eine Gliederung der vereinten Dienstleistungsgewerkschaft ver.di sowie Mitglied in European Writers Congress EWC.Als \"Verband deutschsprachiger Übersetzer literarischer und wissenschaftlicher Werke e.V.\" sind wir Mitglied des europäischen Dachverbandes der Literaturübersetzerverbände CEATL, \"Conseil Européen des Associations des Traducteurs Littéraires\"',NULL,NULL,NULL,'637154812573-02','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=637154812573-02','08/01/14 15:59:27','2014-12-03T06:58:33.185095','(+4930) 6127510','08/01/14 16:37:52','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(489,'other','./contribution_2XwuuRy.pdf','None',NULL,NULL,'','','01/2013\r\n - \r\n 01/2014','Free/Libre Open Source Software development and consulting','24 Grey Rock \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Milford Co Donegal\r\n IRELAND',NULL,'I - Professional consultancies/law firms/self-employed consultants','Self-employed consultants','CTO','Akeo','Member of the FSF (Free Software Foundation)',NULL,NULL,NULL,'052124712560-94','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=052124712560-94','07/01/14 12:38:44','2014-12-03T07:02:30.429042','(+353) 74 916 3465','07/01/14 13:31:58','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Consultancy','Business'),(490,'other','./contribution_9x9vbby.pdf','Néant.','national',NULL,'','','01/2013\r\n - \r\n 12/2013','Défendre les intérêts des traducteurs littéraires (revenus, droit d\'auteur, statut juridique et social) et promouvoir la traduction littéraire (visibilité, circulation des oeuvres).','38 rue du faubourg Saint-Jacques \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Paris 75014\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','chargé de mission','Association des traducteurs littéraires de France','L\'ATLF appartient au CEATL, Centre Européen des Associations de Traducteurs Littéraires.',NULL,NULL,NULL,'123424413039-46','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=123424413039-46','24/02/14 15:09:01','2014-12-03T06:39:21.763863','(+33) 1 45 49 26 44','24/02/14 15:25:01','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(491,'other','./contribution_CnQyL6Z.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(492,'other','./contribution_5loQKwP.pdf','NetworkingLobbying','sub-national;national;European;global','BELGIUM;DENMARK;ESTONIA;FINLAND;FRANCE;GERMANY;IRELAND;ITALY;LATVIA;LUXEMBOURG;NETHERLANDS;PORTUGAL;SPAIN;SWEDEN;UNITED KINGDOM;AUSTRALIA;CANADA;GHANA;NEW ZEALAND;SOUTH AFRICA;UNITED STATES','','Association for the business representatives of musical artists. Some artists represent themselves, some have specialised personal managers. The aim of the association is to act as the international umbrella for musical artiste representatives in creating better trading conditions for the artists.Lobbying and policy contact: Jake Beaumont-Nesbitt','01/2013\r\n - \r\n 01/2014','To improve the trading conditions for musical artistes','3A Val Ste Croix \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Luxembourg L-1371\r\n LUXEMBOURG','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Policy Executive','International Music Managers Forum','','0','22','MMF Belgium (1 members);MMF Denmark (1 members);MMF Estonia (1 members);MMF Finland (1 members);MMF France (1 members);IMUC Germany (1 members);MMF Ireland (1 members);MMF Italy (1 members);MMF ,Latvia (1 members);MMF Luxembourg (1 members);MMF Netherlands (1 members);MMF Portugal (1 members);MMF Spain (1 members);MMF Sweden (1 members);MMF UK (1 members);AAM Australia (1 members);MMF Australia (1 members);MMF New Zealand (1 members);MMF Canada (1 members);MMF USA (1 members);MMF West Africa (1 members);MMF South Africa (1 members)','095629613128-57','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=095629613128-57','03/03/14 17:44:50','2014-12-03T07:13:28.776985','(+44) 207 609 7501','03/03/14 17:45:19','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(493,'other','./contribution_NaKSQOZ.pdf','Communication on E-CommerceOffice for harmonisation of the internal market (OHIM) - regulation regarding OHIM\'s responsibilities for enforcement of IP RightsDirective on certain permitted uses of Orphan WorksDirective on Collective ManagementA clean and open internet: procedures for notifying and acting on illegal content hosted by online intermediariesInitiative report on Online distribution of audiovisual works in the EUOrientation debate for modernising copyright in the digital economyCivil enforcement of IPRs: public consultation on the efficiency of proceedings and accessibility of measuresMediation process on private copying and reprographic leviesConsultation on the review of copyright rules','national','UNITED KINGDOM','The BCC\'s turnover is made up of membership subscriptions (see above). It also manages a £50,000 budget paid by UK CMOs for the Independent Code Review (a self regulatory process for which the BCC receives no fee. The BCC also raises funds and organises the BCC WIPO Advanced Level Seminar in Copyright and Related Rights for Governments of Developing Countries which is run on a break even basis. For its operations and any \"lobbying\" activities, the BCC relies on its core income from membership subscriptions.','','07/2012\r\n - \r\n 06/2013','We aim to provide an effective, authoritative and representative voice for the copyright community, and to encourage greater understanding of copyright in the UK and around the world.We monitor changes in law, social practice and technology that may affect copyright and related rights, consulting with our members and working closely with the British Government, regional and international groups on current issues and policies.Our objectives are to inform and represent our membership, to promote the effectiveness of copyright and to encourage respect for copyright','29-33 Berners Street \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n London W1T 3AB\r\n UNITED KINGDOM','','III - Non-governmental organisations','Non-governmental organisations, platforms and networks and similar','Chief Executive Officer','British Copyright Council','NGO Observer Member of WIPO','0','30','Artists Collecting Society (800 members);Association of Authors Agents (99 members);Association of Illustrators (1,450 members);ALPSP (210 members);AOP (950 members);ALCS (85,000 members);BPI (303 members);BACS (2,000 members);BAPLA (300 members);BECS (27,000 members);BECTU (25,000 members);Chartered Institute of Journalists (2,000 members);CLA (3 members);DACS (60,000 members);Directors UK (4,500 members);ERA (20 members);Equity (36,000 members);Incorporated Society of Musicians (6,500 members);MPA (259 members);Musicians Union (30,500 members);National Union of Journalists (32,000 members);PPL (65,000 members);Professional Publishers Assoication (250 members);PRS for Music (MCPS) (100,000 members);Publishers Licensing Society (2,325 members);Publishers Association (200 members);The Royal Photographic Society (11,000 members);Society of Authors (9,000 members);Writers Guild of Great Britain (2,100 members);PRS for Music (PRS (0 members)','756006910472-32','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=756006910472-32','16/01/13 18:15:10','2014-12-03T07:36:16.693576','(+01986) 788 122','05/01/14 15:47:40','en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'NGO','Civil society'),(494,'other','./contribution_uEi1oQT.pdf','Aucune activité liées à à l\'UE couvertes par des activités relevant du champ d\'application du registre de transparence n\'ont été menées l\'année précédente.','national;European',NULL,'','','01/2013\r\n - \r\n 12/2013','La Maison des Artistes est l\'association agréée pour la gestion des assurances sociales des artistes auteurs des arts visuels exerçant en France.Depuis sa création en 1952 elle mène également des missions d\'intérêt général axées autour de la solidarité, l\'information et la veille professionnelle et le conseil.Elle délivre une carte d\'adhérent permettant aux artistes professionnels l\'accès à un panel de services dédiés allant de l\'entrée dans les lieux d\'exposition à des réductions fournisseurs en passant par des contrats mutuelle et assurances négociés.','11 rue Berryer Hôtel Salomon de Rithschild\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n PARIS 75008\r\n FRANCE','','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Directrice','LA MAISON DES ARTISTES','',NULL,NULL,NULL,'939976013110-75','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=939976013110-75','03/03/14 11:11:43','2014-12-03T06:44:59.304203','(+33) 142250653','03/03/14 11:29:55','fr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business'),(495,'other','./contribution_EggDFRR.pdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(496,'other','./contribution_9TsuCYG.pdf','.','national;European',NULL,'Lobbytätigkeit dess Organisation bei den Europäischen Institutionen während 2103 kosteten die FEE der FSE von 2.400€','','01/2013\r\n - \r\n 12/2013','DER VERBAND DEUTSCHER DREHBUCHAUTOREN e.V. (VDD) ist speziell auf die Interessen von Film- und Fernsehautoren zugeschnitten und vertritt sie gegenüber Sendern, Produzenten, Ministerien, den Filmförderungen und der Öffentlichkeit. Der VDD ist darüber hinaus auch im Verbund mit anderen Verbänden und Vereinigungen wie auch international berufspolitisch aktiv. Rund 480 namhafte Autoren gehören dem VDD an.','95 Charlottenstraße \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Berlin 10969\r\n GERMANY','2,400 €','II - In-house lobbyists and trade/professional associations','Trade, business & professional associations','Geschäftsführung','Verband Deutscher Drehbuchautoren e.V.','FSE - Federation of Scriptwriters in Europe, Brüsselassociate member der IAWG, Toronto',NULL,NULL,NULL,'187686813152-27','http://ec.europa.eu/transparencyregister/public/consultation/displaylobbyist.do?id=187686813152-27','04/03/14 12:32:52','2014-12-03T06:58:28.273030','(+4930) 25762973','04/03/14 12:33:05','de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Business association','Business');
/*!40000 ALTER TABLE `positions_contributor` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `positions_contributor_contribution_values`
--
DROP TABLE IF EXISTS `positions_contributor_contribution_values`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `positions_contributor_contribution_values` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contributor_id` int(11) NOT NULL,
`axisvalues_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `contributor_id` (`contributor_id`,`axisvalues_id`),
KEY `positions_contributor_contribution_values_6daa3819` (`contributor_id`),
KEY `positions_contributor_contribution_values_313cc853` (`axisvalues_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `positions_contributor_contribution_values`
--
LOCK TABLES `positions_contributor_contribution_values` WRITE;
/*!40000 ALTER TABLE `positions_contributor_contribution_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `positions_contributor_contribution_values` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2014-12-03 10:12:44