File: insert.sql

package info (click to toggle)
derby 10.14.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 79,056 kB
  • sloc: java: 691,961; sql: 42,686; xml: 20,512; sh: 3,373; sed: 96; makefile: 60
file content (643 lines) | stat: -rw-r--r-- 172,461 bytes parent folder | download | duplicates (4)
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
--
--   Licensed to the Apache Software Foundation (ASF) under one or more
--   contributor license agreements.  See the NOTICE file distributed with
--   this work for additional information regarding copyright ownership.
--   The ASF licenses this file to You under the Apache License, Version 2.0
--   (the "License"); you may not use this file except in compliance with
--   the License.  You may obtain a copy of the License at
--
--      http://www.apache.org/licenses/LICENSE-2.0
--
--   Unless required by applicable law or agreed to in writing, software
--   distributed under the License is distributed on an "AS IS" BASIS,
--   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
--   See the License for the specific language governing permissions and
--   limitations under the License.
--

--
-- this test is for basic insert functionality
--

-- NOTE: drop, create, select from the same table doesn't work yet either.

-- create the tables
create table t1 (i int, j int);
create table t2 (k int, l int);

-- populate t2
insert into t2 values (1, 2);
insert into t2 values (3, 4);

-- select * from t2
insert into t1 select * from t2;
insert into t1 (i, j) select * from t2;
insert into t1 (j, i) select * from t2;
select * from t1;

-- drop and recreate t1
drop table t1;
create table t1 (i int, j int);

-- select column list from t2
insert into t1 select k, l from t2;
insert into t1 select l, k from t2;
insert into t1 (i, j) select k, l from t2;
insert into t1 (j, i) select k, l from t2;
select * from t1;

-- drop and recreate t1
drop table t1;
create table t1 (i int, j int);

-- select constants from t2
insert into t1 select 5, 6 from t2;
insert into t1 (i, j) select 5, 6 from t2;
insert into t1 (j, i) select 6, 5 from t2;
select * from t1;

-- drop and recreate t1
drop table t1;
create table t1 (i int, j int);
insert into t1 (i) select 666 from t2;
insert into t1 (j) select 666 from t2;
select * from t1 where i = 666 or j = 666;

-- drop and recreate t1
drop table t1;
create table t1 (i int, j int);

-- Negative test cases - column references in values clause
insert into t1 values(1, c1);
insert into t1 values("asdf asdf", 2);

-- Negative test case - syntax error
insert into t1 values;

-- Too many values in values clause
insert into t1 values(1,1,1);
-- insert select with too many result columns in select
insert into t1 select 1, 2, 3 from t2;
-- multiple instances of same column in colum list
insert into t1 (i, i) values(2,2);

-- target column list size != source size
insert into t1 (i, j) values(1);
insert into t1 (i) values (1, 2);

-- Negative test cases - column name not specified
insert into t1 select 666 from t2;

-- target table in source - deferred mode
insert into t1 values (1,1);
insert into t1 values (2,2);
delete from t2;
insert into t2 select * from t1;

autocommit off;

select * from t1;
insert into t1 select t1.* from t1, t2;
select * from t1 order by 1, 2;
rollback;

insert into t1 (i) select (select i from t1 where i = 1) from t2;
select * from t1;
rollback;

insert into t1 (i) select 1 from t2 where 1 = (select i from t1 where i = 1);
select * from t1;
rollback;

insert into t1 select * from (select * from t1) a;
select * from t1;
rollback;

-- bug 5638
insert into t1 select * from t2 union select * from t1;
select * from t1;
rollback;

-- bug 5638
insert into t1 select * from t2 union select * from (select * from t1) a;
select * from t1;
rollback;

-- single-row deferred insert
insert into t1 select * from t1 where i = 1;
select * from t1;
rollback;

-- zero-row deferred insert - degenerate case
insert into t1 select * from t1 where i = 17;
select * from t1;
rollback;

-- insert-select with ? parameters
prepare i1 as 'insert into t1 (j, i) select 101,102 from t1 where i = ?';
execute i1 using 'values (1)';
select * from t1;
rollback;


autocommit on;

-- test atomicity of multi row inserts
create table atom_test_target (c1 smallint);
create table atom_test_source (c1 smallint);
insert into atom_test_source values 1, 30000,0, 2;

-- overflow
insert into atom_test_target select c1 + c1 from atom_test_source;
select * from atom_test_target;

-- divide by 0
insert into atom_test_target select c1 / c1 from atom_test_source;
select * from atom_test_target;

-- Derby-34
create table tchar( i int, c char(1) for bit data default x'02');
create table tchar1 (i int, c char(5) for bit data default x'2020202020',
			v varchar(5) for bit data default x'2020',
			l long varchar for bit data default x'303030');

drop table tchar;
drop table tchar1;

-- insert various numeric types into other numeric types
create table i1 (i int, t int, s smallint, l bigint, r real, dp double, dc dec);
create table i2 (i int, t int, s smallint, l bigint, r real, dp double, dc dec);
create table tab1 (
				i integer, 
				t integer, 
				s integer, 
				l bigint,
				r real, 
				dp double,
				dc decimal);

insert into i1 values (1, 2, 3, 4, 5.5, 6.6, 7.7);
insert into i1 values (null, null, null, null, null, null, null);

insert into tab1 values(1, 
				cast(2 as int), 
				cast(3 as smallint), 
				cast(4 as bigint), 
				cast(5.5 as real), 
				cast(6.6 as double), 
				7.7);
insert into tab1 values (null, null, null, null, null, null, null);

insert into i2 select i, i, i, i, i, i, i from i1;
insert into i2 select t, t, t, t, t, t, t from i1;
insert into i2 select s, s, s, s, s, s, s from i1;
insert into i2 select l, l, l, l, l, l, l from i1;
insert into i2 select r, r, r, r, r, r, r from i1;
insert into i2 select dp, dp, dp, dp, dp, dp, dp from i1;
insert into i2 select dc, dc, dc, dc, dc, dc, dc from i1;
select * from i2;
delete from i2;

insert into i2 select i, t, s, l, r, dp, dc from tab1;
select * from i2;

-- get the rest
create table i3 (b char(1) for bit data, 
			bv varchar(1) for bit data, 
			lbv long varchar for bit data,
			c char(10),
			cv varchar(10),
			lvc long varchar,
			dt date,
			t time,
			ts timestamp);

create table i4 (b char (1) for bit data, 
			bv varchar(1) for bit data, 
			lbv long varchar for bit data,
			c char(10),
			cv varchar(10),
			lvc long varchar,
			dt date,
			t time,
			ts timestamp);

insert into i3 values (X'11', X'22', X'25', '3', '4', '5', '1990-10-10', 
			'11:11:11', '1990-11-11 11:11:11');
insert into i3 values (null, null, null, null, null, null, null, null, null);

insert into i4 select * from i3;
select * from i4;
delete from i4;

create table tab2 (
	c char,
	cv varchar(10),
	lvc long varchar,
	dt date,	
	t time,	
	ts timestamp);

insert into tab2 values ('3', '4', '5', '1990-10-10', 
			'11:11:11', '1990-11-11 11:11:11');
insert into tab2 values (null, null, null, null, null, null);
insert into i4 (c, cv, lvc, dt, t, ts) select c, cv, lvc, dt, t, ts from tab2;
select * from i4;


-- drop the tables
drop table t1;
drop table t2;
drop table atom_test_target;
drop table atom_test_source;
drop table i1;
drop table i2;
drop table i3;
drop table i4;
drop table tab1;
drop table tab2;

-- test bug 4293, extremely huge insert statement, not using FileImport.

create table POLICY_STATEMENTS (c1 int, c2 int, c3 int, c4 long varchar, c5 long varchar, c6 int, c7 int, c8 int, c9 int, c10 int, c11 int);

INSERT INTO POLICY_STATEMENTS VALUES
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 101,1,null,'All information systems within %%short_company_name%% are the property of %%short_company_name%% and will be used in compliance with %%short_company_name%% policy statements.','This is a specific and clear statement about ownership of corporate assets.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets.',null,1,1,null,null,1),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 102,1,null,'Any personal information placed on %%short_company_name%% information system resources becomes the property of %%short_company_name%%.','This is a specific and clear statement about who owns information residing on corporate assets.  Failure to include this statement would lead to confusion over ownership of information residing on corporate assets and would reduce the ability to recover and/or use such information.',null,1,2,null,null,2),
( 103,1,null,'Any attempt to circumvent %%short_company_name%% security policy statements and procedures (i.e., disconnecting or tunneling a protocol through a firewall) is strictly prohibited.','All security policy statements will be followed, and attempts to circumvent them will not be tolerated.  Failure to include this policy statement may lead users to incorrectly believe that they can circumvent policies.',null,1,3,null,null,3),
( 104,1,null,'Unauthorized use, destruction, modification, and/or distribution of %%short_company_name%% information or information systems is prohibited.','This defines some of the many restrictions on the use of %%short_company_name%% information systems.  Failure to include this policy statement may lead to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions against users who abuse company assets to the unauthorized use of company resources and eliminate the company''s ability to take disciplinary actions to users who abuse company assets.',null,1,4,null,null,4);

select count(*) from POLICY_STATEMENTS;

drop table POLICY_STATEMENTS;

-- DERBY-3310 type conversions in insert

create table  U (SNAME varchar(32000), TNAME Varchar(32000), C1 bigint);
insert into U(SNAME, TNAME, C1) select distinct SCHEMANAME, TABLENAME, 2
 from SYS.SYSTABLES T join  SYS.SYSSCHEMAS S on T.SCHEMAID = S.SCHEMAID where TABLENAME = 'U';
select * from U;
drop table  U;

create table d3310 (x bigint);
insert into d3310 select distinct * from (values 2.0, 2.1, 2.2) v;
select * from d3310;
drop table d3310;