-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsigeri.sql
2727 lines (2340 loc) · 263 KB
/
sigeri.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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 5.5.47, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: sigeri
-- ------------------------------------------------------
-- Server version 5.5.47-0+deb8u1
/*!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 `ComplianceType`
--
DROP TABLE IF EXISTS `ComplianceType`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ComplianceType` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ComplianceType`
--
LOCK TABLES `ComplianceType` WRITE;
/*!40000 ALTER TABLE `ComplianceType` DISABLE KEYS */;
INSERT INTO `ComplianceType` VALUES (1,'Governance'),(2,'Security');
/*!40000 ALTER TABLE `ComplianceType` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset`
--
DROP TABLE IF EXISTS `asset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type_id` int(11) DEFAULT NULL,
`analyst_id` int(11) DEFAULT NULL,
`unit_id` int(11) DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`discr` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`value_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_2AF5A5CC54C8C93` (`type_id`),
KEY `IDX_2AF5A5CF65B3645` (`analyst_id`),
KEY `IDX_2AF5A5CF8BD700D` (`unit_id`),
KEY `IDX_2AF5A5CF920BBA2` (`value_id`),
CONSTRAINT `FK_2AF5A5CC54C8C93` FOREIGN KEY (`type_id`) REFERENCES `assettype` (`id`),
CONSTRAINT `FK_2AF5A5CF65B3645` FOREIGN KEY (`analyst_id`) REFERENCES `user` (`id`),
CONSTRAINT `FK_2AF5A5CF8BD700D` FOREIGN KEY (`unit_id`) REFERENCES `unit` (`id`),
CONSTRAINT `FK_2AF5A5CF920BBA2` FOREIGN KEY (`value_id`) REFERENCES `assetrelevance` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset`
--
LOCK TABLES `asset` WRITE;
/*!40000 ALTER TABLE `asset` DISABLE KEYS */;
INSERT INTO `asset` VALUES (1,1,1,2,'WWW_01','','serverasset',5),(2,1,1,1,'WWW_02','','serverasset',1),(3,2,2,1,'DNS_003','','serverasset',2),(4,1,1,1,'DNS_004','','serverasset',2),(5,1,1,1,'FILESERVER_05','','serverasset',2),(6,2,2,1,'SAMBA_06','','serverasset',2),(7,1,1,1,'SAMBA_07','','serverasset',5),(8,1,1,1,'APPSERVER_08','','serverasset',5),(9,2,2,1,'APPSERVER_09','','serverasset',5),(10,1,1,1,'APPSERVER_10','','serverasset',5),(11,1,1,1,'JBOSS_11','','serverasset',5),(12,2,2,1,'JBOSS_12','','serverasset',5),(13,1,1,1,'SQLSERVER_13','','serverasset',1),(14,1,1,1,'POSTGRES_14','','serverasset',1),(15,2,2,1,'ORACLE_15','','serverasset',3),(16,1,1,1,'WWW_33','','serverasset',4),(17,1,1,2,'CoreHP','','serverasset',2),(18,1,1,1,'Main','','processasset',1),(19,1,1,1,'sub 01','','processasset',1),(20,1,1,1,'sub 02','','processasset',1),(21,1,1,1,'SERVER 004','','serverasset',1),(22,1,1,1,'asdf','','serverasset',2),(23,1,1,1,'asdf','','serverasset',2),(24,1,1,1,'SERVER 005','','serverasset',1),(25,1,1,1,'server003','','serverasset',1),(26,1,1,1,'server003','','serverasset',1),(27,1,1,1,'SERVER 006','','serverasset',1);
/*!40000 ALTER TABLE `asset` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_asset`
--
DROP TABLE IF EXISTS `asset_asset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_asset` (
`asset_source` int(11) NOT NULL,
`asset_target` int(11) NOT NULL,
PRIMARY KEY (`asset_source`,`asset_target`),
KEY `IDX_97F4741BB7A7F06E` (`asset_source`),
KEY `IDX_97F4741BAE42A0E1` (`asset_target`),
CONSTRAINT `FK_97F4741BAE42A0E1` FOREIGN KEY (`asset_target`) REFERENCES `asset` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_97F4741BB7A7F06E` FOREIGN KEY (`asset_source`) REFERENCES `asset` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_asset`
--
LOCK TABLES `asset_asset` WRITE;
/*!40000 ALTER TABLE `asset_asset` DISABLE KEYS */;
INSERT INTO `asset_asset` VALUES (1,2),(1,3),(1,4),(1,5),(18,1),(18,3);
/*!40000 ALTER TABLE `asset_asset` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_assetgroup`
--
DROP TABLE IF EXISTS `asset_assetgroup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_assetgroup` (
`asset_id` int(11) NOT NULL,
`assetgroup_id` int(11) NOT NULL,
PRIMARY KEY (`asset_id`,`assetgroup_id`),
KEY `IDX_1260124C5DA1941` (`asset_id`),
KEY `IDX_1260124CE9F2796C` (`assetgroup_id`),
CONSTRAINT `FK_1260124C5DA1941` FOREIGN KEY (`asset_id`) REFERENCES `asset` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_1260124CE9F2796C` FOREIGN KEY (`assetgroup_id`) REFERENCES `assetgroup` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_assetgroup`
--
LOCK TABLES `asset_assetgroup` WRITE;
/*!40000 ALTER TABLE `asset_assetgroup` DISABLE KEYS */;
INSERT INTO `asset_assetgroup` VALUES (1,2),(3,1),(3,2);
/*!40000 ALTER TABLE `asset_assetgroup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_consequence`
--
DROP TABLE IF EXISTS `asset_consequence`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_consequence` (
`asset_id` int(11) NOT NULL,
`consequence_id` int(11) NOT NULL,
PRIMARY KEY (`asset_id`,`consequence_id`),
KEY `IDX_AA2015555DA1941` (`asset_id`),
KEY `IDX_AA2015553A9BCB0A` (`consequence_id`),
CONSTRAINT `FK_AA2015553A9BCB0A` FOREIGN KEY (`consequence_id`) REFERENCES `consequence` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_AA2015555DA1941` FOREIGN KEY (`asset_id`) REFERENCES `asset` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_consequence`
--
LOCK TABLES `asset_consequence` WRITE;
/*!40000 ALTER TABLE `asset_consequence` DISABLE KEYS */;
/*!40000 ALTER TABLE `asset_consequence` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_document`
--
DROP TABLE IF EXISTS `asset_document`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_document` (
`asset_id` int(11) NOT NULL,
`document_id` int(11) NOT NULL,
PRIMARY KEY (`asset_id`,`document_id`),
KEY `IDX_5A0290F65DA1941` (`asset_id`),
KEY `IDX_5A0290F6C33F7837` (`document_id`),
CONSTRAINT `FK_5A0290F65DA1941` FOREIGN KEY (`asset_id`) REFERENCES `asset` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_5A0290F6C33F7837` FOREIGN KEY (`document_id`) REFERENCES `document` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_document`
--
LOCK TABLES `asset_document` WRITE;
/*!40000 ALTER TABLE `asset_document` DISABLE KEYS */;
INSERT INTO `asset_document` VALUES (1,5),(1,6);
/*!40000 ALTER TABLE `asset_document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_plan`
--
DROP TABLE IF EXISTS `asset_plan`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_plan` (
`asset_id` int(11) NOT NULL,
`plan_id` int(11) NOT NULL,
PRIMARY KEY (`asset_id`,`plan_id`),
KEY `IDX_393E9EB55DA1941` (`asset_id`),
KEY `IDX_393E9EB5E899029B` (`plan_id`),
CONSTRAINT `FK_393E9EB55DA1941` FOREIGN KEY (`asset_id`) REFERENCES `asset` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_393E9EB5E899029B` FOREIGN KEY (`plan_id`) REFERENCES `plan` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_plan`
--
LOCK TABLES `asset_plan` WRITE;
/*!40000 ALTER TABLE `asset_plan` DISABLE KEYS */;
/*!40000 ALTER TABLE `asset_plan` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_risk`
--
DROP TABLE IF EXISTS `asset_risk`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_risk` (
`asset_id` int(11) NOT NULL,
`risk_id` int(11) NOT NULL,
PRIMARY KEY (`asset_id`,`risk_id`),
KEY `IDX_9D6210895DA1941` (`asset_id`),
KEY `IDX_9D621089235B6D1` (`risk_id`),
CONSTRAINT `FK_9D621089235B6D1` FOREIGN KEY (`risk_id`) REFERENCES `risk` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_9D6210895DA1941` FOREIGN KEY (`asset_id`) REFERENCES `asset` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_risk`
--
LOCK TABLES `asset_risk` WRITE;
/*!40000 ALTER TABLE `asset_risk` DISABLE KEYS */;
INSERT INTO `asset_risk` VALUES (1,1),(1,2),(1,3),(1,4),(1,7),(1,9),(2,4),(2,5),(2,9),(2,11),(2,14),(2,17),(3,11),(3,12),(4,17),(5,1),(5,11),(5,19),(6,1),(7,1),(8,1),(9,1),(9,4),(9,7),(9,19),(10,18),(11,17),(12,16),(13,14),(14,15),(15,10),(15,11),(15,12),(15,13);
/*!40000 ALTER TABLE `asset_risk` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_threat`
--
DROP TABLE IF EXISTS `asset_threat`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_threat` (
`asset_id` int(11) NOT NULL,
`threat_id` int(11) NOT NULL,
PRIMARY KEY (`asset_id`,`threat_id`),
KEY `IDX_C4BAD3FA5DA1941` (`asset_id`),
KEY `IDX_C4BAD3FAB2891786` (`threat_id`),
CONSTRAINT `FK_C4BAD3FA5DA1941` FOREIGN KEY (`asset_id`) REFERENCES `asset` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_C4BAD3FAB2891786` FOREIGN KEY (`threat_id`) REFERENCES `threat` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_threat`
--
LOCK TABLES `asset_threat` WRITE;
/*!40000 ALTER TABLE `asset_threat` DISABLE KEYS */;
/*!40000 ALTER TABLE `asset_threat` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_vulnerability`
--
DROP TABLE IF EXISTS `asset_vulnerability`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_vulnerability` (
`asset_id` int(11) NOT NULL,
`vulnerability_id` int(11) NOT NULL,
PRIMARY KEY (`asset_id`,`vulnerability_id`),
KEY `IDX_AF3B99265DA1941` (`asset_id`),
KEY `IDX_AF3B992672897D8B` (`vulnerability_id`),
CONSTRAINT `FK_AF3B99265DA1941` FOREIGN KEY (`asset_id`) REFERENCES `asset` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_AF3B992672897D8B` FOREIGN KEY (`vulnerability_id`) REFERENCES `vulnerability` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_vulnerability`
--
LOCK TABLES `asset_vulnerability` WRITE;
/*!40000 ALTER TABLE `asset_vulnerability` DISABLE KEYS */;
/*!40000 ALTER TABLE `asset_vulnerability` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetgroup`
--
DROP TABLE IF EXISTS `assetgroup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetgroup` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetgroup`
--
LOCK TABLES `assetgroup` WRITE;
/*!40000 ALTER TABLE `assetgroup` DISABLE KEYS */;
INSERT INTO `assetgroup` VALUES (1,'Nginx Servers',''),(2,'Samba Servers','');
/*!40000 ALTER TABLE `assetgroup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetgroup_asset`
--
DROP TABLE IF EXISTS `assetgroup_asset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetgroup_asset` (
`assetgroup_id` int(11) NOT NULL,
`asset_id` int(11) NOT NULL,
PRIMARY KEY (`assetgroup_id`,`asset_id`),
KEY `IDX_F7296219E9F2796C` (`assetgroup_id`),
KEY `IDX_F72962195DA1941` (`asset_id`),
CONSTRAINT `FK_F72962195DA1941` FOREIGN KEY (`asset_id`) REFERENCES `asset` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_F7296219E9F2796C` FOREIGN KEY (`assetgroup_id`) REFERENCES `assetgroup` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetgroup_asset`
--
LOCK TABLES `assetgroup_asset` WRITE;
/*!40000 ALTER TABLE `assetgroup_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `assetgroup_asset` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetgroup_document`
--
DROP TABLE IF EXISTS `assetgroup_document`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetgroup_document` (
`assetgroup_id` int(11) NOT NULL,
`document_id` int(11) NOT NULL,
PRIMARY KEY (`assetgroup_id`,`document_id`),
KEY `IDX_BD7C5F46E9F2796C` (`assetgroup_id`),
KEY `IDX_BD7C5F46C33F7837` (`document_id`),
CONSTRAINT `FK_BD7C5F46C33F7837` FOREIGN KEY (`document_id`) REFERENCES `document` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_BD7C5F46E9F2796C` FOREIGN KEY (`assetgroup_id`) REFERENCES `assetgroup` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetgroup_document`
--
LOCK TABLES `assetgroup_document` WRITE;
/*!40000 ALTER TABLE `assetgroup_document` DISABLE KEYS */;
/*!40000 ALTER TABLE `assetgroup_document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetgroup_plan`
--
DROP TABLE IF EXISTS `assetgroup_plan`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetgroup_plan` (
`assetgroup_id` int(11) NOT NULL,
`plan_id` int(11) NOT NULL,
PRIMARY KEY (`assetgroup_id`,`plan_id`),
KEY `IDX_54A6492AE9F2796C` (`assetgroup_id`),
KEY `IDX_54A6492AE899029B` (`plan_id`),
CONSTRAINT `FK_54A6492AE899029B` FOREIGN KEY (`plan_id`) REFERENCES `plan` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_54A6492AE9F2796C` FOREIGN KEY (`assetgroup_id`) REFERENCES `assetgroup` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetgroup_plan`
--
LOCK TABLES `assetgroup_plan` WRITE;
/*!40000 ALTER TABLE `assetgroup_plan` DISABLE KEYS */;
/*!40000 ALTER TABLE `assetgroup_plan` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetgroup_risk`
--
DROP TABLE IF EXISTS `assetgroup_risk`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetgroup_risk` (
`assetgroup_id` int(11) NOT NULL,
`risk_id` int(11) NOT NULL,
PRIMARY KEY (`assetgroup_id`,`risk_id`),
KEY `IDX_F0FAC716E9F2796C` (`assetgroup_id`),
KEY `IDX_F0FAC716235B6D1` (`risk_id`),
CONSTRAINT `FK_F0FAC716235B6D1` FOREIGN KEY (`risk_id`) REFERENCES `risk` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_F0FAC716E9F2796C` FOREIGN KEY (`assetgroup_id`) REFERENCES `assetgroup` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetgroup_risk`
--
LOCK TABLES `assetgroup_risk` WRITE;
/*!40000 ALTER TABLE `assetgroup_risk` DISABLE KEYS */;
/*!40000 ALTER TABLE `assetgroup_risk` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetgroup_threat`
--
DROP TABLE IF EXISTS `assetgroup_threat`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetgroup_threat` (
`assetgroup_id` int(11) NOT NULL,
`threat_id` int(11) NOT NULL,
PRIMARY KEY (`assetgroup_id`,`threat_id`),
KEY `IDX_2AD46FC0E9F2796C` (`assetgroup_id`),
KEY `IDX_2AD46FC0B2891786` (`threat_id`),
CONSTRAINT `FK_2AD46FC0B2891786` FOREIGN KEY (`threat_id`) REFERENCES `threat` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_2AD46FC0E9F2796C` FOREIGN KEY (`assetgroup_id`) REFERENCES `assetgroup` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetgroup_threat`
--
LOCK TABLES `assetgroup_threat` WRITE;
/*!40000 ALTER TABLE `assetgroup_threat` DISABLE KEYS */;
/*!40000 ALTER TABLE `assetgroup_threat` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetgroup_vulnerability`
--
DROP TABLE IF EXISTS `assetgroup_vulnerability`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetgroup_vulnerability` (
`assetgroup_id` int(11) NOT NULL,
`vulnerability_id` int(11) NOT NULL,
PRIMARY KEY (`assetgroup_id`,`vulnerability_id`),
KEY `IDX_DE824F13E9F2796C` (`assetgroup_id`),
KEY `IDX_DE824F1372897D8B` (`vulnerability_id`),
CONSTRAINT `FK_DE824F1372897D8B` FOREIGN KEY (`vulnerability_id`) REFERENCES `vulnerability` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_DE824F13E9F2796C` FOREIGN KEY (`assetgroup_id`) REFERENCES `assetgroup` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetgroup_vulnerability`
--
LOCK TABLES `assetgroup_vulnerability` WRITE;
/*!40000 ALTER TABLE `assetgroup_vulnerability` DISABLE KEYS */;
/*!40000 ALTER TABLE `assetgroup_vulnerability` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetmanager`
--
DROP TABLE IF EXISTS `assetmanager`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetmanager` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetmanager`
--
LOCK TABLES `assetmanager` WRITE;
/*!40000 ALTER TABLE `assetmanager` DISABLE KEYS */;
/*!40000 ALTER TABLE `assetmanager` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetrelevance`
--
DROP TABLE IF EXISTS `assetrelevance`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetrelevance` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`value` int(11) NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetrelevance`
--
LOCK TABLES `assetrelevance` WRITE;
/*!40000 ALTER TABLE `assetrelevance` DISABLE KEYS */;
INSERT INTO `assetrelevance` VALUES (1,1,'No significant losses.'),(2,2,'Low probability of monetary and reputation loss.'),(3,3,'Possible monetary and reputation loss.'),(4,4,'High probability of monetary, reputation and legal loss.'),(5,5,'Great monetary losses with high reputation and legal impact.');
/*!40000 ALTER TABLE `assetrelevance` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetscale`
--
DROP TABLE IF EXISTS `assetscale`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetscale` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`value` int(11) NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetscale`
--
LOCK TABLES `assetscale` WRITE;
/*!40000 ALTER TABLE `assetscale` DISABLE KEYS */;
INSERT INTO `assetscale` VALUES (1,1,'Lowest');
/*!40000 ALTER TABLE `assetscale` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assettype`
--
DROP TABLE IF EXISTS `assettype`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assettype` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assettype`
--
LOCK TABLES `assettype` WRITE;
/*!40000 ALTER TABLE `assettype` DISABLE KEYS */;
INSERT INTO `assettype` VALUES (1,'Generic Server',''),(2,'Web Server',''),(3,'DNS Server',''),(4,'Application Server',''),(5,'File Server','');
/*!40000 ALTER TABLE `assettype` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assetvalue`
--
DROP TABLE IF EXISTS `assetvalue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `assetvalue` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`value` int(11) NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assetvalue`
--
LOCK TABLES `assetvalue` WRITE;
/*!40000 ALTER TABLE `assetvalue` DISABLE KEYS */;
INSERT INTO `assetvalue` VALUES (1,1,'No significant losses.'),(2,2,'Low probability of monetary and reputation loss.'),(3,3,'Possible monetary and reputation loss.'),(4,4,'High probability of monetary, reputation and legal loss.'),(5,5,'Great monetary losses with high reputation and legal impact.');
/*!40000 ALTER TABLE `assetvalue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `compliance`
--
DROP TABLE IF EXISTS `compliance`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `compliance` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `compliance`
--
LOCK TABLES `compliance` WRITE;
/*!40000 ALTER TABLE `compliance` DISABLE KEYS */;
INSERT INTO `compliance` VALUES (1,'ITIL V3','<p>adfasdfa</p>'),(2,'COBIT','');
/*!40000 ALTER TABLE `compliance` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `compliance_document`
--
DROP TABLE IF EXISTS `compliance_document`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `compliance_document` (
`compliance_id` int(11) NOT NULL,
`document_id` int(11) NOT NULL,
PRIMARY KEY (`compliance_id`,`document_id`),
KEY `IDX_64453AD1AA24AB19` (`compliance_id`),
KEY `IDX_64453AD1C33F7837` (`document_id`),
CONSTRAINT `FK_64453AD1AA24AB19` FOREIGN KEY (`compliance_id`) REFERENCES `compliance` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_64453AD1C33F7837` FOREIGN KEY (`document_id`) REFERENCES `document` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `compliance_document`
--
LOCK TABLES `compliance_document` WRITE;
/*!40000 ALTER TABLE `compliance_document` DISABLE KEYS */;
INSERT INTO `compliance_document` VALUES (1,5),(1,6);
/*!40000 ALTER TABLE `compliance_document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `compliancerule`
--
DROP TABLE IF EXISTS `compliancerule`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `compliancerule` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`annotations` longtext COLLATE utf8_unicode_ci,
`type_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_4A651CEC54C8C93` (`type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `compliancerule`
--
LOCK TABLES `compliancerule` WRITE;
/*!40000 ALTER TABLE `compliancerule` DISABLE KEYS */;
INSERT INTO `compliancerule` VALUES (1,'Implement Change Management','','',2),(2,'Implement Incident Managemet','','',1);
/*!40000 ALTER TABLE `compliancerule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `consequence`
--
DROP TABLE IF EXISTS `consequence`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `consequence` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `consequence`
--
LOCK TABLES `consequence` WRITE;
/*!40000 ALTER TABLE `consequence` DISABLE KEYS */;
INSERT INTO `consequence` VALUES (1,'Violation of legislation and/or regulation',''),(2,'Impairment of business performance',''),(3,'Loss of goodwill/negative effect on reputation',''),(4,'Breach associated with personal information',''),(5,'Endangerment of personal safety',''),(6,'Adverse effects on law enforcement',''),(7,'Breach of confidentiality',''),(8,'Breach of public order',''),(9,'Financial loss',''),(10,'Disruption to business activities',''),(11,'Endangerment of environmental safety','');
/*!40000 ALTER TABLE `consequence` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `control`
--
DROP TABLE IF EXISTS `control`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `control` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`status_id` int(11) DEFAULT NULL,
`type_id` int(11) DEFAULT NULL,
`analyst_id` int(11) DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`annotations` longtext COLLATE utf8_unicode_ci,
`created` datetime DEFAULT NULL,
`updated` datetime DEFAULT NULL,
`content_changed` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_EDDB2C4B6BF700BD` (`status_id`),
KEY `IDX_EDDB2C4BC54C8C93` (`type_id`),
KEY `IDX_EDDB2C4BF65B3645` (`analyst_id`),
CONSTRAINT `FK_EDDB2C4B6BF700BD` FOREIGN KEY (`status_id`) REFERENCES `controlstatus` (`id`),
CONSTRAINT `FK_EDDB2C4BC54C8C93` FOREIGN KEY (`type_id`) REFERENCES `controltype` (`id`),
CONSTRAINT `FK_EDDB2C4BF65B3645` FOREIGN KEY (`analyst_id`) REFERENCES `user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `control`
--
LOCK TABLES `control` WRITE;
/*!40000 ALTER TABLE `control` DISABLE KEYS */;
INSERT INTO `control` VALUES (1,1,1,2,'Control 0001133','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>',NULL,'2016-01-21 08:28:01','2016-01-21 08:28:01'),(2,1,1,1,'Control 002','<h2>Guides and such</h2>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/quickstart/html/\">Getting Started Guide</a></p>\r\n\r\n<p>A quickstart-style guide with tutorials. See also the Obtaining Hibernate section discussing the Hibernate artifacts and how to obtain them.</p>\r\n\r\n<p><a href=\"http://github.com/hibernate/hibernate-orm/tree/5.0/migration-guide.adoc\">Migration Guide</a></p>\r\n\r\n<p>Migration guide covering migration from 4.3 to 5.0</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/userGuide/en-US/html_single/\">User Guide</a></p>\r\n\r\n<p>Guide covering most user facing concepts and APIs of Hibernate</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/mappingGuide/en-US/html_single/\">Domain Model Mapping Guide</a></p>\r\n\r\n<p>Guide covering mapping an application domain model</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/integrationsGuide/en-US/html_single/\">Integrations Guide</a></p>\r\n\r\n<p>Guide covering topics of interest for developers looking to develop integrations with Hibernate.</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/javadocs/\">Hibernate JavaDoc</a></p>\r\n\r\n<p>The Hibernate JavaDocs</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/jpa/2.1/api/\">JPA 2.1 JavaDoc</a></p>\r\n\r\n<p>The JPA (2.1) JavaDocs</p>\r\n\r\n<p><a href=\"http://hibernate.org/orm/faq/\">FAQ</a></p>\r\n\r\n<p>The FAQ</p>\r\n\r\n<p><a href=\"https://community.jboss.org/en/hibernate\">JBoss-hosted wiki</a></p>\r\n\r\n<p>Wiki (older content) hosted at JBoss.org</p>\r\n\r\n<p><a href=\"https://github.com/hibernate/hibernate-orm/wiki/_pages\">GitHub-hosted wiki</a></p>\r\n\r\n<p>Wiki hosted at GitHub</p>\r\n\r\n<h2>Presentations</h2>\r\n\r\n<p>Brett did a few interesting presentations available on Slideshare:</p>\r\n\r\n<ul>\r\n <li>\r\n <p><a href=\"http://www.slideshare.net/brmeyer/orm-jpa-hibernate-overview\">Gentle introduction on ORMs and JPA</a></p>\r\n </li>\r\n <li>\r\n <p><a href=\"http://www.slideshare.net/brmeyer/hibernate-orm-performance-31550150\">Hibernate ORM: tips, tricks and performance techniques</a></p>\r\n </li>\r\n <li>\r\n <p><a href=\"http://www.slideshare.net/brmeyer/hibernate-orm-features\">Not Just ORM: Powerful Hibernate ORM Features and Capabilities</a></p>\r\n </li>\r\n</ul>','<h1>Getting Started with JBoss Application Server 7</h1>\r\n\r\n<p>JBoss Application Server 7 is the latest release in a series of JBoss application server offerings. JBoss Application Server 7, is a fast, powerful, implementation of the Java Enterprise Edition 6 specification. The state-of-the-art architecture built on the Modular Service Container enables services on-demand when your application requires them. JBoss Application Server 7.0.0.Final release is a certified implementation of the Java Enterprise Edition 6 Web Profile specification. The table below lists the Java Enterprise Edition 6 technologies and what is provided in our JBoss Application Server 7.0.0.Final release distributions.<br />\r\n<img src=\"https://docs.jboss.org/author/download/attachments/4588133/JBossAS7-JavaEE.png?version=1&modificationDate=1310399117000\" style=\"height:583px; width:918px\" /><br />\r\n*PRUNED (Refer to the Java Enterprise Edition 6 Platform Specification, EE.6.1.3 Pruned Java Technologies for an overview of this concept).<br />\r\nThis document provides a quick overview on how to download and get started using JBoss Application Server 7 for your application development. For in-depth content on administrative features, refer to the JBoss Application Server 7 Admin Guide.</p>\r\n\r\n<h2><a name=\"GettingStartedGuide-Download\"></a>Download</h2>\r\n\r\n<p>JBoss Application Server 7 distributions can be obtained from the usual place:<br />\r\n<a href=\"http://www.jboss.org/jbossas/downloads\">http://www.jboss.org/jbossas/downloads</a><br />\r\nStarting with JBoss Application Server 7.0.0.Final, there will be two distributions available for download available in zip or tar file formats.</p>\r\n\r\n<ul>\r\n <li>Java EE 6 Full Profile Preview\r\n <ul>\r\n <li><strong>jboss-as-7.0.0.Final.zip</strong></li>\r\n <li><strong>jboss-as-7.0.0.Final.tar.gz</strong></li>\r\n </ul>\r\n </li>\r\n <li>Java EE 6 Certified Web Profile\r\n <ul>\r\n <li><strong>jboss-as-web-7.0.0.Final.zip</strong></li>\r\n <li><strong>jboss-as-web-7.0.0.Final.tar.gz</strong></li>\r\n </ul>\r\n </li>\r\n</ul>',NULL,NULL,NULL),(3,1,1,1,'Control005','','',NULL,NULL,NULL),(5,1,2,1,'Control 5','','','2016-01-14 08:34:32','2016-01-14 08:34:49','2016-01-14 08:34:49');
/*!40000 ALTER TABLE `control` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `control_document`
--
DROP TABLE IF EXISTS `control_document`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `control_document` (
`control_id` int(11) NOT NULL,
`document_id` int(11) NOT NULL,
PRIMARY KEY (`control_id`,`document_id`),
KEY `IDX_7A97A3632BEC70E` (`control_id`),
KEY `IDX_7A97A36C33F7837` (`document_id`),
CONSTRAINT `FK_7A97A3632BEC70E` FOREIGN KEY (`control_id`) REFERENCES `control` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_7A97A36C33F7837` FOREIGN KEY (`document_id`) REFERENCES `document` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `control_document`
--
LOCK TABLES `control_document` WRITE;
/*!40000 ALTER TABLE `control_document` DISABLE KEYS */;
INSERT INTO `control_document` VALUES (1,5),(1,6),(2,5),(2,6);
/*!40000 ALTER TABLE `control_document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `controlreview`
--
DROP TABLE IF EXISTS `controlreview`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `controlreview` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`control_id` int(11) DEFAULT NULL,
`analyst_id` int(11) DEFAULT NULL,
`status_id` int(11) DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_4882C40732BEC70E` (`control_id`),
KEY `IDX_4882C407F65B3645` (`analyst_id`),
KEY `IDX_4882C4076BF700BD` (`status_id`),
CONSTRAINT `FK_4882C40732BEC70E` FOREIGN KEY (`control_id`) REFERENCES `control` (`id`),
CONSTRAINT `FK_4882C4076BF700BD` FOREIGN KEY (`status_id`) REFERENCES `controlstatus` (`id`),
CONSTRAINT `FK_4882C407F65B3645` FOREIGN KEY (`analyst_id`) REFERENCES `user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `controlreview`
--
LOCK TABLES `controlreview` WRITE;
/*!40000 ALTER TABLE `controlreview` DISABLE KEYS */;
/*!40000 ALTER TABLE `controlreview` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `controlstatus`
--
DROP TABLE IF EXISTS `controlstatus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `controlstatus` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `controlstatus`
--
LOCK TABLES `controlstatus` WRITE;
/*!40000 ALTER TABLE `controlstatus` DISABLE KEYS */;
INSERT INTO `controlstatus` VALUES (1,'Status','Status');
/*!40000 ALTER TABLE `controlstatus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `controltype`
--
DROP TABLE IF EXISTS `controltype`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `controltype` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `controltype`
--
LOCK TABLES `controltype` WRITE;
/*!40000 ALTER TABLE `controltype` DISABLE KEYS */;
INSERT INTO `controltype` VALUES (1,'Type001','Types'),(2,'Firewall 001','Firewall para proteção de rede de dados');
/*!40000 ALTER TABLE `controltype` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `controlversion`
--
DROP TABLE IF EXISTS `controlversion`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `controlversion` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`status_id` int(11) DEFAULT NULL,
`type_id` int(11) DEFAULT NULL,
`analyst_id` int(11) DEFAULT NULL,
`entity_id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`annotations` longtext COLLATE utf8_unicode_ci,
`created` datetime DEFAULT NULL,
`updated` datetime DEFAULT NULL,
`content_changed` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_534EE0A06BF700BD` (`status_id`),
KEY `IDX_534EE0A0C54C8C93` (`type_id`),
KEY `IDX_534EE0A0F65B3645` (`analyst_id`),
CONSTRAINT `FK_534EE0A06BF700BD` FOREIGN KEY (`status_id`) REFERENCES `controlstatus` (`id`),
CONSTRAINT `FK_534EE0A0C54C8C93` FOREIGN KEY (`type_id`) REFERENCES `controltype` (`id`),
CONSTRAINT `FK_534EE0A0F65B3645` FOREIGN KEY (`analyst_id`) REFERENCES `user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `controlversion`
--
LOCK TABLES `controlversion` WRITE;
/*!40000 ALTER TABLE `controlversion` DISABLE KEYS */;
INSERT INTO `controlversion` VALUES (2,1,NULL,1,2,'Control 002','<h2>Guides and such</h2>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/quickstart/html/\">Getting Started Guide</a></p>\r\n\r\n<p>A quickstart-style guide with tutorials. See also the Obtaining Hibernate section discussing the Hibernate artifacts and how to obtain them.</p>\r\n\r\n<p><a href=\"http://github.com/hibernate/hibernate-orm/tree/5.0/migration-guide.adoc\">Migration Guide</a></p>\r\n\r\n<p>Migration guide covering migration from 4.3 to 5.0</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/userGuide/en-US/html_single/\">User Guide</a></p>\r\n\r\n<p>Guide covering most user facing concepts and APIs of Hibernate</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/mappingGuide/en-US/html_single/\">Domain Model Mapping Guide</a></p>\r\n\r\n<p>Guide covering mapping an application domain model</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/integrationsGuide/en-US/html_single/\">Integrations Guide</a></p>\r\n\r\n<p>Guide covering topics of interest for developers looking to develop integrations with Hibernate.</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/orm/5.0/javadocs/\">Hibernate JavaDoc</a></p>\r\n\r\n<p>The Hibernate JavaDocs</p>\r\n\r\n<p><a href=\"http://docs.jboss.org/hibernate/jpa/2.1/api/\">JPA 2.1 JavaDoc</a></p>\r\n\r\n<p>The JPA (2.1) JavaDocs</p>\r\n\r\n<p><a href=\"http://hibernate.org/orm/faq/\">FAQ</a></p>\r\n\r\n<p>The FAQ</p>\r\n\r\n<p><a href=\"https://community.jboss.org/en/hibernate\">JBoss-hosted wiki</a></p>\r\n\r\n<p>Wiki (older content) hosted at JBoss.org</p>\r\n\r\n<p><a href=\"https://github.com/hibernate/hibernate-orm/wiki/_pages\">GitHub-hosted wiki</a></p>\r\n\r\n<p>Wiki hosted at GitHub</p>\r\n\r\n<h2>Presentations</h2>\r\n\r\n<p>Brett did a few interesting presentations available on Slideshare:</p>\r\n\r\n<ul>\r\n <li>\r\n <p><a href=\"http://www.slideshare.net/brmeyer/orm-jpa-hibernate-overview\">Gentle introduction on ORMs and JPA</a></p>\r\n </li>\r\n <li>\r\n <p><a href=\"http://www.slideshare.net/brmeyer/hibernate-orm-performance-31550150\">Hibernate ORM: tips, tricks and performance techniques</a></p>\r\n </li>\r\n <li>\r\n <p><a href=\"http://www.slideshare.net/brmeyer/hibernate-orm-features\">Not Just ORM: Powerful Hibernate ORM Features and Capabilities</a></p>\r\n </li>\r\n</ul>','<h1>Getting Started with JBoss Application Server 7</h1>\r\n\r\n<p>JBoss Application Server 7 is the latest release in a series of JBoss application server offerings. JBoss Application Server 7, is a fast, powerful, implementation of the Java Enterprise Edition 6 specification. The state-of-the-art architecture built on the Modular Service Container enables services on-demand when your application requires them. JBoss Application Server 7.0.0.Final release is a certified implementation of the Java Enterprise Edition 6 Web Profile specification. The table below lists the Java Enterprise Edition 6 technologies and what is provided in our JBoss Application Server 7.0.0.Final release distributions.<br />\r\n<img src=\"https://docs.jboss.org/author/download/attachments/4588133/JBossAS7-JavaEE.png?version=1&modificationDate=1310399117000\" style=\"height:583px; width:918px\" /><br />\r\n*PRUNED (Refer to the Java Enterprise Edition 6 Platform Specification, EE.6.1.3 Pruned Java Technologies for an overview of this concept).<br />\r\nThis document provides a quick overview on how to download and get started using JBoss Application Server 7 for your application development. For in-depth content on administrative features, refer to the JBoss Application Server 7 Admin Guide.</p>\r\n\r\n<h2><a name=\"GettingStartedGuide-Download\"></a>Download</h2>\r\n\r\n<p>JBoss Application Server 7 distributions can be obtained from the usual place:<br />\r\n<a href=\"http://www.jboss.org/jbossas/downloads\">http://www.jboss.org/jbossas/downloads</a><br />\r\nStarting with JBoss Application Server 7.0.0.Final, there will be two distributions available for download available in zip or tar file formats.</p>\r\n\r\n<ul>\r\n <li>Java EE 6 Full Profile Preview\r\n <ul>\r\n <li><strong>jboss-as-7.0.0.Final.zip</strong></li>\r\n <li><strong>jboss-as-7.0.0.Final.tar.gz</strong></li>\r\n </ul>\r\n </li>\r\n <li>Java EE 6 Certified Web Profile\r\n <ul>\r\n <li><strong>jboss-as-web-7.0.0.Final.zip</strong></li>\r\n <li><strong>jboss-as-web-7.0.0.Final.tar.gz</strong></li>\r\n </ul>\r\n </li>\r\n</ul>',NULL,NULL,NULL),(4,1,1,2,1,'Control 0001','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>',NULL,'2016-01-14 10:53:49','2016-01-14 10:53:49'),(5,1,NULL,2,1,'Control 00011','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>',NULL,NULL,NULL),(6,1,NULL,1,3,'Control005','','',NULL,NULL,NULL),(7,1,NULL,2,1,'Control 00011','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>','2016-01-14 08:33:34','2016-01-14 08:33:34',NULL),(8,1,NULL,1,5,'Control 5','','','2016-01-14 08:34:32','2016-01-14 08:34:32',NULL),(10,1,NULL,2,1,'Control 0001133','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>','<p>A company based in Santa Cruz, California, says it obtained a temporary restraining order against a Chinese firm for copying its Onewheel electric hoverboard.</p>\r\n\r\n<p>Future Motion Inc. had U.S. marshals seize the company's assets and marketing materials from the floor of the CES gadget show in Las Vegas on Thursday.</p>\r\n\r\n<p>Future Motion accuses Changzhou First International Trade Co. of patent infringement and obtained the order late Wednesday. Marshals accompanied Future Motion lawyers in the seizure of Changzhou's "Surfing Electric Scooter."</p>\r\n\r\n<p>Future Motion lead attorney Shawn Kolitch says the Chinese company's product was identical to the Onewheel, including a reversible light system that glows different colors depending on the direction of travel.</p>\r\n\r\n<p>A message seeking comment from Changzhou was not immediately returned.</p>\r\n\r\n<p><img alt=\"Onewheel\" src=\"http://i.cbc.ca/1.3395159.1452264202!/fileImage/httpImage/image.jpg_gen/derivatives/original_620/onewheel.jpg\" style=\"width:100%\" /></p>\r\n\r\n<p>U.S. based Future Motion alleges the Chinese company's product was identical to its one-wheeled hoverboard Onewheel, pictured here, and infringes on its patent. (Onewheel)</p>\r\n\r\n<p><a href=\"http://www.cp.org/\" target=\"_blank\">© The Associated Press, 2016 <br />\r\n<img alt=\"The Canadian Press\" src=\"http://www.cbc.ca/gfx/icon_cponline07.gif\" /></a></p>\r\n\r\n<ul>\r\n <li>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/facebook-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/twitter-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/reddit-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/plus-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/share-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td> </td>\r\n <td><img alt=\"\" src=\"http://www.cbc.ca/i/img/theme/default/email-up.png\" /></td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </li>\r\n</ul>\r\n\r\n<p><a href=\"http://www.cbc.ca/news2/feedback/index_typo.html?\" onclick=\"location.href=this.href + document.title + (new Date()); return false;\">Report Typo</a></p>\r\n\r\n<p><a href=\"http://www.cbc.ca/contact/\">Send Feedback</a></p>','2016-01-21 08:28:01','2016-01-21 08:28:01',NULL);
/*!40000 ALTER TABLE `controlversion` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `controlversion_document`
--
DROP TABLE IF EXISTS `controlversion_document`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `controlversion_document` (
`controlversion_id` int(11) NOT NULL,
`document_id` int(11) NOT NULL,
PRIMARY KEY (`controlversion_id`,`document_id`),
KEY `IDX_FF31CE670230778` (`controlversion_id`),
KEY `IDX_FF31CE6C33F7837` (`document_id`),
CONSTRAINT `FK_FF31CE670230778` FOREIGN KEY (`controlversion_id`) REFERENCES `controlversion` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_FF31CE6C33F7837` FOREIGN KEY (`document_id`) REFERENCES `document` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `controlversion_document`
--
LOCK TABLES `controlversion_document` WRITE;
/*!40000 ALTER TABLE `controlversion_document` DISABLE KEYS */;
INSERT INTO `controlversion_document` VALUES (2,5),(2,6),(4,5),(4,6),(5,5),(5,6),(7,5),(7,6),(10,5),(10,6);
/*!40000 ALTER TABLE `controlversion_document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `document`
--
DROP TABLE IF EXISTS `document`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `document` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `document`
--
LOCK TABLES `document` WRITE;
/*!40000 ALTER TABLE `document` DISABLE KEYS */;
INSERT INTO `document` VALUES (2,'','teste23',''),(5,'sigedelogo.png','Logo Sigede','image/png'),(6,'PCI_DSS_Risk_Assmt_Guidelines_v1.pdf','PCI DSS Model','application/pdf');
/*!40000 ALTER TABLE `document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `equipment`
--
DROP TABLE IF EXISTS `equipment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `equipment` (
`id` int(11) NOT NULL,
`ipaddress` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`services` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `equipment`
--
LOCK TABLES `equipment` WRITE;
/*!40000 ALTER TABLE `equipment` DISABLE KEYS */;
/*!40000 ALTER TABLE `equipment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `folder`
--
DROP TABLE IF EXISTS `folder`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `folder` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `folder`
--